diff --git a/src/Classes/Item.lua b/src/Classes/Item.lua index e4d7270a65..01fd0baec8 100644 --- a/src/Classes/Item.lua +++ b/src/Classes/Item.lua @@ -778,6 +778,27 @@ function ItemClass:ParseRaw(raw, rarity, highQuality) self.canHaveShieldCrucibleTree = true elseif lineLower == "has a two handed sword crucible passive skill tree" then self.canHaveTwoHandedSwordCrucibleTree = true + elseif lineLower == "cannot roll caster modifiers" then + self.restrictTag = true + self.noCaster = true + elseif lineLower == "cannot roll attack modifiers" then + self.restrictTag = true + self.noAttack = true + elseif lineLower == "cannot roll modifiers of non-cold damage types" then + self.restrictDamageType = true + self.onlyColdDamage = true + elseif lineLower == "cannot roll modifiers of non-fire damage types" then + self.restrictDamageType = true + self.onlyFireDamage = true + elseif lineLower == "cannot roll modifiers of non-lightning damage types" then + self.restrictDamageType = true + self.onlyLightningDamage = true + elseif lineLower == "cannot roll modifiers of non-chaos damage types" then + self.restrictDamageType = true + self.onlyChaosDamage = true + elseif lineLower == "cannot roll modifiers of non-physical damage types" then + self.restrictDamageType = true + self.onlyPhysicalDamage = true end local modLines @@ -954,6 +975,32 @@ function ItemClass:GetModSpawnWeight(mod, includeTags, excludeTags) local function HasMavenInfluence(modAffix) return modAffix:match("Elevated") end + if self.restrictTag then + for _, key in ipairs(mod.modTags) do + local flagName = "no" .. key:gsub("^%l", string.upper) + if flagName and self[flagName] then + return 0 + end + end + end + if self.restrictDamageType then + local required, restricted = false, {} + for _, element in ipairs({ "fire", "cold", "lightning", "chaos", "physical" }) do + local flagName = "only" .. element:gsub("^%l", string.upper) .. "Damage" + if self[flagName] then + required = true + else + restricted[element] = true + end + end + if required then + for _, key in ipairs(mod.modTags) do + if restricted[key] then + return 0 + end + end + end + end for i, key in ipairs(mod.weightKey) do if (self.base.tags[key] or (includeTags and includeTags[key]) or HasInfluenceTag(key)) and not (excludeTags and excludeTags[key]) then diff --git a/src/Data/Bases/amulet.lua b/src/Data/Bases/amulet.lua index df60f7c05c..52c461cb89 100644 --- a/src/Data/Bases/amulet.lua +++ b/src/Data/Bases/amulet.lua @@ -149,7 +149,6 @@ itemBases["Focused Amulet"] = { } itemBases["Jet Amulet"] = { type = "Amulet", - hidden = true, tags = { amulet = true, default = true, demigods = true, not_for_sale = true, }, influenceTags = { shaper = "amulet_shaper", elder = "amulet_elder", adjudicator = "amulet_adjudicator", basilisk = "amulet_basilisk", crusader = "amulet_crusader", eyrie = "amulet_eyrie", cleansing = "amulet_cleansing", tangle = "amulet_tangle" }, implicit = "+(8-12)% to all Elemental Resistances", diff --git a/src/Data/Bases/bow.lua b/src/Data/Bases/bow.lua index 692bc49098..d7dc14f392 100644 --- a/src/Data/Bases/bow.lua +++ b/src/Data/Bases/bow.lua @@ -271,7 +271,6 @@ itemBases["Solarine Bow"] = { } itemBases["Ethereal Bow"] = { type = "Bow", - hidden = true, socketLimit = 6, tags = { bow = true, default = true, not_for_sale = true, ranged = true, two_hand_weapon = true, twohand = true, weapon = true, }, influenceTags = { shaper = "bow_shaper", elder = "bow_elder", adjudicator = "bow_adjudicator", basilisk = "bow_basilisk", crusader = "bow_crusader", eyrie = "bow_eyrie", cleansing = "bow_cleansing", tangle = "bow_tangle" }, diff --git a/src/Data/Bases/dagger.lua b/src/Data/Bases/dagger.lua index 1a5beff3b2..764bfc9f71 100644 --- a/src/Data/Bases/dagger.lua +++ b/src/Data/Bases/dagger.lua @@ -9,7 +9,7 @@ itemBases["Glass Shank"] = { influenceTags = { shaper = "dagger_shaper", elder = "dagger_elder", adjudicator = "dagger_adjudicator", basilisk = "dagger_basilisk", crusader = "dagger_crusader", eyrie = "dagger_eyrie", cleansing = "dagger_cleansing", tangle = "dagger_tangle" }, implicit = "30% increased Global Critical Strike Chance", implicitModTypes = { { "critical" }, }, - weapon = { PhysicalMin = 6, PhysicalMax = 10, CritChanceBase = 7.5, AttackRateBase = 1.5, Range = 10, }, + weapon = { PhysicalMin = 6, PhysicalMax = 10, CritChanceBase = 8, AttackRateBase = 1.5, Range = 10, }, req = { dex = 9, int = 6, }, } itemBases["Skinning Knife"] = { @@ -19,7 +19,7 @@ itemBases["Skinning Knife"] = { influenceTags = { shaper = "dagger_shaper", elder = "dagger_elder", adjudicator = "dagger_adjudicator", basilisk = "dagger_basilisk", crusader = "dagger_crusader", eyrie = "dagger_eyrie", cleansing = "dagger_cleansing", tangle = "dagger_tangle" }, implicit = "30% increased Global Critical Strike Chance", implicitModTypes = { { "critical" }, }, - weapon = { PhysicalMin = 4, PhysicalMax = 17, CritChanceBase = 7.5, AttackRateBase = 1.45, Range = 10, }, + weapon = { PhysicalMin = 4, PhysicalMax = 17, CritChanceBase = 8, AttackRateBase = 1.45, Range = 10, }, req = { level = 5, dex = 16, int = 11, }, } itemBases["Stiletto"] = { @@ -29,7 +29,7 @@ itemBases["Stiletto"] = { influenceTags = { shaper = "dagger_shaper", elder = "dagger_elder", adjudicator = "dagger_adjudicator", basilisk = "dagger_basilisk", crusader = "dagger_crusader", eyrie = "dagger_eyrie", cleansing = "dagger_cleansing", tangle = "dagger_tangle" }, implicit = "30% increased Global Critical Strike Chance", implicitModTypes = { { "critical" }, }, - weapon = { PhysicalMin = 7, PhysicalMax = 27, CritChanceBase = 7.8, AttackRateBase = 1.5, Range = 10, }, + weapon = { PhysicalMin = 7, PhysicalMax = 27, CritChanceBase = 8.3, AttackRateBase = 1.5, Range = 10, }, req = { level = 15, dex = 30, int = 30, }, } itemBases["Prong Dagger"] = { @@ -39,7 +39,7 @@ itemBases["Prong Dagger"] = { influenceTags = { shaper = "dagger_shaper", elder = "dagger_elder", adjudicator = "dagger_adjudicator", basilisk = "dagger_basilisk", crusader = "dagger_crusader", eyrie = "dagger_eyrie", cleansing = "dagger_cleansing", tangle = "dagger_tangle" }, implicit = "4% Chance to Block Attack Damage", implicitModTypes = { { "block" }, }, - weapon = { PhysicalMin = 14, PhysicalMax = 54, CritChanceBase = 8, AttackRateBase = 1.35, Range = 10, }, + weapon = { PhysicalMin = 14, PhysicalMax = 54, CritChanceBase = 8.5, AttackRateBase = 1.35, Range = 10, }, req = { level = 36, dex = 55, int = 77, }, } itemBases["Flaying Knife"] = { @@ -49,7 +49,7 @@ itemBases["Flaying Knife"] = { influenceTags = { shaper = "dagger_shaper", elder = "dagger_elder", adjudicator = "dagger_adjudicator", basilisk = "dagger_basilisk", crusader = "dagger_crusader", eyrie = "dagger_eyrie", cleansing = "dagger_cleansing", tangle = "dagger_tangle" }, implicit = "30% increased Global Critical Strike Chance", implicitModTypes = { { "critical" }, }, - weapon = { PhysicalMin = 11, PhysicalMax = 45, CritChanceBase = 7.5, AttackRateBase = 1.4, Range = 10, }, + weapon = { PhysicalMin = 11, PhysicalMax = 45, CritChanceBase = 8, AttackRateBase = 1.4, Range = 10, }, req = { level = 30, dex = 64, int = 44, }, } itemBases["Poignard"] = { @@ -59,7 +59,7 @@ itemBases["Poignard"] = { influenceTags = { shaper = "dagger_shaper", elder = "dagger_elder", adjudicator = "dagger_adjudicator", basilisk = "dagger_basilisk", crusader = "dagger_crusader", eyrie = "dagger_eyrie", cleansing = "dagger_cleansing", tangle = "dagger_tangle" }, implicit = "30% increased Global Critical Strike Chance", implicitModTypes = { { "critical" }, }, - weapon = { PhysicalMin = 13, PhysicalMax = 52, CritChanceBase = 7.8, AttackRateBase = 1.5, Range = 10, }, + weapon = { PhysicalMin = 13, PhysicalMax = 52, CritChanceBase = 8.3, AttackRateBase = 1.5, Range = 10, }, req = { level = 41, dex = 72, int = 72, }, } itemBases["Trisula"] = { @@ -69,7 +69,7 @@ itemBases["Trisula"] = { influenceTags = { shaper = "dagger_shaper", elder = "dagger_elder", adjudicator = "dagger_adjudicator", basilisk = "dagger_basilisk", crusader = "dagger_crusader", eyrie = "dagger_eyrie", cleansing = "dagger_cleansing", tangle = "dagger_tangle" }, implicit = "4% Chance to Block Attack Damage", implicitModTypes = { { "block" }, }, - weapon = { PhysicalMin = 19, PhysicalMax = 74, CritChanceBase = 8.5, AttackRateBase = 1.35, Range = 10, }, + weapon = { PhysicalMin = 19, PhysicalMax = 74, CritChanceBase = 9, AttackRateBase = 1.35, Range = 10, }, req = { level = 51, dex = 83, int = 99, }, } itemBases["Gutting Knife"] = { @@ -79,7 +79,7 @@ itemBases["Gutting Knife"] = { influenceTags = { shaper = "dagger_shaper", elder = "dagger_elder", adjudicator = "dagger_adjudicator", basilisk = "dagger_basilisk", crusader = "dagger_crusader", eyrie = "dagger_eyrie", cleansing = "dagger_cleansing", tangle = "dagger_tangle" }, implicit = "30% increased Global Critical Strike Chance", implicitModTypes = { { "critical" }, }, - weapon = { PhysicalMin = 19, PhysicalMax = 76, CritChanceBase = 8.5, AttackRateBase = 1.4, Range = 10, }, + weapon = { PhysicalMin = 19, PhysicalMax = 76, CritChanceBase = 9, AttackRateBase = 1.4, Range = 10, }, req = { level = 56, dex = 113, int = 78, }, } itemBases["Ambusher"] = { @@ -89,7 +89,7 @@ itemBases["Ambusher"] = { influenceTags = { shaper = "dagger_shaper", elder = "dagger_elder", adjudicator = "dagger_adjudicator", basilisk = "dagger_basilisk", crusader = "dagger_crusader", eyrie = "dagger_eyrie", cleansing = "dagger_cleansing", tangle = "dagger_tangle" }, implicit = "30% increased Global Critical Strike Chance", implicitModTypes = { { "critical" }, }, - weapon = { PhysicalMin = 19, PhysicalMax = 74, CritChanceBase = 7.8, AttackRateBase = 1.5, Range = 10, }, + weapon = { PhysicalMin = 19, PhysicalMax = 74, CritChanceBase = 8.3, AttackRateBase = 1.5, Range = 10, }, req = { level = 60, dex = 113, int = 113, }, } itemBases["Sai"] = { @@ -99,7 +99,7 @@ itemBases["Sai"] = { influenceTags = { shaper = "dagger_shaper", elder = "dagger_elder", adjudicator = "dagger_adjudicator", basilisk = "dagger_basilisk", crusader = "dagger_crusader", eyrie = "dagger_eyrie", cleansing = "dagger_cleansing", tangle = "dagger_tangle" }, implicit = "6% Chance to Block Attack Damage", implicitModTypes = { { "block" }, }, - weapon = { PhysicalMin = 22, PhysicalMax = 88, CritChanceBase = 8, AttackRateBase = 1.35, Range = 10, }, + weapon = { PhysicalMin = 22, PhysicalMax = 88, CritChanceBase = 8.5, AttackRateBase = 1.35, Range = 10, }, req = { level = 70, dex = 121, int = 121, }, } itemBases["Hollowpoint Dagger"] = { @@ -109,7 +109,7 @@ itemBases["Hollowpoint Dagger"] = { influenceTags = { shaper = "dagger_shaper", elder = "dagger_elder", adjudicator = "dagger_adjudicator", basilisk = "dagger_basilisk", crusader = "dagger_crusader", eyrie = "dagger_eyrie", cleansing = "dagger_cleansing", tangle = "dagger_tangle" }, implicit = "All Damage from Hits with This Weapon can Poison", implicitModTypes = { { }, }, - weapon = { PhysicalMin = 12, PhysicalMax = 46, CritChanceBase = 8.3, AttackRateBase = 1.4, Range = 10, }, + weapon = { PhysicalMin = 12, PhysicalMax = 46, CritChanceBase = 8.8, AttackRateBase = 1.4, Range = 10, }, req = { level = 30, dex = 54, int = 54, }, } itemBases["Pressurised Dagger"] = { @@ -119,7 +119,7 @@ itemBases["Pressurised Dagger"] = { influenceTags = { shaper = "dagger_shaper", elder = "dagger_elder", adjudicator = "dagger_adjudicator", basilisk = "dagger_basilisk", crusader = "dagger_crusader", eyrie = "dagger_eyrie", cleansing = "dagger_cleansing", tangle = "dagger_tangle" }, implicit = "All Damage from Hits with This Weapon can Poison", implicitModTypes = { { }, }, - weapon = { PhysicalMin = 18, PhysicalMax = 71, CritChanceBase = 8.3, AttackRateBase = 1.4, Range = 10, }, + weapon = { PhysicalMin = 18, PhysicalMax = 71, CritChanceBase = 8.8, AttackRateBase = 1.4, Range = 10, }, req = { level = 50, dex = 86, int = 86, }, } itemBases["Pneumatic Dagger"] = { @@ -129,17 +129,16 @@ itemBases["Pneumatic Dagger"] = { influenceTags = { shaper = "dagger_shaper", elder = "dagger_elder", adjudicator = "dagger_adjudicator", basilisk = "dagger_basilisk", crusader = "dagger_crusader", eyrie = "dagger_eyrie", cleansing = "dagger_cleansing", tangle = "dagger_tangle" }, implicit = "All Damage from Hits with This Weapon can Poison", implicitModTypes = { { }, }, - weapon = { PhysicalMin = 20, PhysicalMax = 79, CritChanceBase = 8.3, AttackRateBase = 1.4, Range = 10, }, + weapon = { PhysicalMin = 20, PhysicalMax = 79, CritChanceBase = 8.8, AttackRateBase = 1.4, Range = 10, }, req = { level = 70, dex = 121, int = 121, }, } itemBases["Ethereal Blade"] = { type = "Dagger", - hidden = true, socketLimit = 3, tags = { attack_dagger = true, dagger = true, default = true, not_for_sale = true, one_hand_weapon = true, onehand = true, weapon = true, }, influenceTags = { shaper = "dagger_shaper", elder = "dagger_elder", adjudicator = "dagger_adjudicator", basilisk = "dagger_basilisk", crusader = "dagger_crusader", eyrie = "dagger_eyrie", cleansing = "dagger_cleansing", tangle = "dagger_tangle" }, implicitModTypes = { }, - weapon = { PhysicalMin = 4, PhysicalMax = 8, CritChanceBase = 7.5, AttackRateBase = 1.5, Range = 10, }, + weapon = { PhysicalMin = 4, PhysicalMax = 8, CritChanceBase = 8, AttackRateBase = 1.5, Range = 10, }, req = { dex = 9, int = 6, }, } @@ -151,7 +150,7 @@ itemBases["Carving Knife"] = { influenceTags = { shaper = "rune_dagger_shaper", elder = "rune_dagger_elder", adjudicator = "rune_dagger_adjudicator", basilisk = "rune_dagger_basilisk", crusader = "rune_dagger_crusader", eyrie = "rune_dagger_eyrie", cleansing = "rune_dagger_cleansing", tangle = "rune_dagger_tangle" }, implicit = "30% increased Global Critical Strike Chance", implicitModTypes = { { "critical" }, }, - weapon = { PhysicalMin = 3, PhysicalMax = 26, CritChanceBase = 8, AttackRateBase = 1.45, Range = 10, }, + weapon = { PhysicalMin = 3, PhysicalMax = 26, CritChanceBase = 8.5, AttackRateBase = 1.45, Range = 10, }, req = { level = 10, dex = 18, int = 26, }, } itemBases["Boot Knife"] = { @@ -162,7 +161,7 @@ itemBases["Boot Knife"] = { influenceTags = { shaper = "rune_dagger_shaper", elder = "rune_dagger_elder", adjudicator = "rune_dagger_adjudicator", basilisk = "rune_dagger_basilisk", crusader = "rune_dagger_crusader", eyrie = "rune_dagger_eyrie", cleansing = "rune_dagger_cleansing", tangle = "rune_dagger_tangle" }, implicit = "30% increased Global Critical Strike Chance", implicitModTypes = { { "critical" }, }, - weapon = { PhysicalMin = 8, PhysicalMax = 34, CritChanceBase = 8, AttackRateBase = 1.45, Range = 10, }, + weapon = { PhysicalMin = 8, PhysicalMax = 34, CritChanceBase = 8.5, AttackRateBase = 1.45, Range = 10, }, req = { level = 20, dex = 31, int = 45, }, } itemBases["Copper Kris"] = { @@ -173,7 +172,7 @@ itemBases["Copper Kris"] = { influenceTags = { shaper = "rune_dagger_shaper", elder = "rune_dagger_elder", adjudicator = "rune_dagger_adjudicator", basilisk = "rune_dagger_basilisk", crusader = "rune_dagger_crusader", eyrie = "rune_dagger_eyrie", cleansing = "rune_dagger_cleansing", tangle = "rune_dagger_tangle" }, implicit = "50% increased Global Critical Strike Chance", implicitModTypes = { { "critical" }, }, - weapon = { PhysicalMin = 10, PhysicalMax = 41, CritChanceBase = 8.5, AttackRateBase = 1.3, Range = 10, }, + weapon = { PhysicalMin = 10, PhysicalMax = 41, CritChanceBase = 9, AttackRateBase = 1.3, Range = 10, }, req = { level = 24, dex = 28, int = 60, }, } itemBases["Skean"] = { @@ -184,7 +183,7 @@ itemBases["Skean"] = { influenceTags = { shaper = "rune_dagger_shaper", elder = "rune_dagger_elder", adjudicator = "rune_dagger_adjudicator", basilisk = "rune_dagger_basilisk", crusader = "rune_dagger_crusader", eyrie = "rune_dagger_eyrie", cleansing = "rune_dagger_cleansing", tangle = "rune_dagger_tangle" }, implicit = "30% increased Global Critical Strike Chance", implicitModTypes = { { "critical" }, }, - weapon = { PhysicalMin = 11, PhysicalMax = 43, CritChanceBase = 8, AttackRateBase = 1.45, Range = 10, }, + weapon = { PhysicalMin = 11, PhysicalMax = 43, CritChanceBase = 8.5, AttackRateBase = 1.45, Range = 10, }, req = { level = 28, dex = 42, int = 60, }, } itemBases["Imp Dagger"] = { @@ -195,7 +194,7 @@ itemBases["Imp Dagger"] = { influenceTags = { shaper = "rune_dagger_shaper", elder = "rune_dagger_elder", adjudicator = "rune_dagger_adjudicator", basilisk = "rune_dagger_basilisk", crusader = "rune_dagger_crusader", eyrie = "rune_dagger_eyrie", cleansing = "rune_dagger_cleansing", tangle = "rune_dagger_tangle" }, implicit = "40% increased Global Critical Strike Chance", implicitModTypes = { { "critical" }, }, - weapon = { PhysicalMin = 15, PhysicalMax = 59, CritChanceBase = 8.5, AttackRateBase = 1.2, Range = 10, }, + weapon = { PhysicalMin = 15, PhysicalMax = 59, CritChanceBase = 9, AttackRateBase = 1.2, Range = 10, }, req = { level = 32, dex = 36, int = 78, }, } itemBases["Butcher Knife"] = { @@ -206,7 +205,7 @@ itemBases["Butcher Knife"] = { influenceTags = { shaper = "rune_dagger_shaper", elder = "rune_dagger_elder", adjudicator = "rune_dagger_adjudicator", basilisk = "rune_dagger_basilisk", crusader = "rune_dagger_crusader", eyrie = "rune_dagger_eyrie", cleansing = "rune_dagger_cleansing", tangle = "rune_dagger_tangle" }, implicit = "30% increased Global Critical Strike Chance", implicitModTypes = { { "critical" }, }, - weapon = { PhysicalMin = 7, PhysicalMax = 62, CritChanceBase = 8, AttackRateBase = 1.4, Range = 10, }, + weapon = { PhysicalMin = 7, PhysicalMax = 62, CritChanceBase = 8.5, AttackRateBase = 1.4, Range = 10, }, req = { level = 38, dex = 55, int = 79, }, } itemBases["Boot Blade"] = { @@ -217,7 +216,7 @@ itemBases["Boot Blade"] = { influenceTags = { shaper = "rune_dagger_shaper", elder = "rune_dagger_elder", adjudicator = "rune_dagger_adjudicator", basilisk = "rune_dagger_basilisk", crusader = "rune_dagger_crusader", eyrie = "rune_dagger_eyrie", cleansing = "rune_dagger_cleansing", tangle = "rune_dagger_tangle" }, implicit = "30% increased Global Critical Strike Chance", implicitModTypes = { { "critical" }, }, - weapon = { PhysicalMin = 15, PhysicalMax = 59, CritChanceBase = 8, AttackRateBase = 1.4, Range = 10, }, + weapon = { PhysicalMin = 15, PhysicalMax = 59, CritChanceBase = 8.5, AttackRateBase = 1.4, Range = 10, }, req = { level = 44, dex = 63, int = 90, }, } itemBases["Golden Kris"] = { @@ -228,7 +227,7 @@ itemBases["Golden Kris"] = { influenceTags = { shaper = "rune_dagger_shaper", elder = "rune_dagger_elder", adjudicator = "rune_dagger_adjudicator", basilisk = "rune_dagger_basilisk", crusader = "rune_dagger_crusader", eyrie = "rune_dagger_eyrie", cleansing = "rune_dagger_cleansing", tangle = "rune_dagger_tangle" }, implicit = "50% increased Global Critical Strike Chance", implicitModTypes = { { "critical" }, }, - weapon = { PhysicalMin = 19, PhysicalMax = 75, CritChanceBase = 8.5, AttackRateBase = 1.2, Range = 10, }, + weapon = { PhysicalMin = 19, PhysicalMax = 75, CritChanceBase = 9, AttackRateBase = 1.2, Range = 10, }, req = { level = 47, dex = 51, int = 110, }, } itemBases["Royal Skean"] = { @@ -239,7 +238,7 @@ itemBases["Royal Skean"] = { influenceTags = { shaper = "rune_dagger_shaper", elder = "rune_dagger_elder", adjudicator = "rune_dagger_adjudicator", basilisk = "rune_dagger_basilisk", crusader = "rune_dagger_crusader", eyrie = "rune_dagger_eyrie", cleansing = "rune_dagger_cleansing", tangle = "rune_dagger_tangle" }, implicit = "30% increased Global Critical Strike Chance", implicitModTypes = { { "critical" }, }, - weapon = { PhysicalMin = 16, PhysicalMax = 64, CritChanceBase = 8, AttackRateBase = 1.45, Range = 10, }, + weapon = { PhysicalMin = 16, PhysicalMax = 64, CritChanceBase = 8.5, AttackRateBase = 1.45, Range = 10, }, req = { level = 50, dex = 71, int = 102, }, } itemBases["Fiend Dagger"] = { @@ -250,7 +249,7 @@ itemBases["Fiend Dagger"] = { influenceTags = { shaper = "rune_dagger_shaper", elder = "rune_dagger_elder", adjudicator = "rune_dagger_adjudicator", basilisk = "rune_dagger_basilisk", crusader = "rune_dagger_crusader", eyrie = "rune_dagger_eyrie", cleansing = "rune_dagger_cleansing", tangle = "rune_dagger_tangle" }, implicit = "40% increased Global Critical Strike Chance", implicitModTypes = { { "critical" }, }, - weapon = { PhysicalMin = 22, PhysicalMax = 87, CritChanceBase = 8.5, AttackRateBase = 1.2, Range = 10, }, + weapon = { PhysicalMin = 22, PhysicalMax = 87, CritChanceBase = 9, AttackRateBase = 1.2, Range = 10, }, req = { level = 53, dex = 58, int = 123, }, } itemBases["Slaughter Knife"] = { @@ -261,7 +260,7 @@ itemBases["Slaughter Knife"] = { influenceTags = { shaper = "rune_dagger_shaper", elder = "rune_dagger_elder", adjudicator = "rune_dagger_adjudicator", basilisk = "rune_dagger_basilisk", crusader = "rune_dagger_crusader", eyrie = "rune_dagger_eyrie", cleansing = "rune_dagger_cleansing", tangle = "rune_dagger_tangle" }, implicit = "30% increased Global Critical Strike Chance", implicitModTypes = { { "critical" }, }, - weapon = { PhysicalMin = 10, PhysicalMax = 86, CritChanceBase = 8, AttackRateBase = 1.4, Range = 10, }, + weapon = { PhysicalMin = 10, PhysicalMax = 86, CritChanceBase = 8.5, AttackRateBase = 1.4, Range = 10, }, req = { level = 58, dex = 81, int = 117, }, } itemBases["Ezomyte Dagger"] = { @@ -272,7 +271,7 @@ itemBases["Ezomyte Dagger"] = { influenceTags = { shaper = "rune_dagger_shaper", elder = "rune_dagger_elder", adjudicator = "rune_dagger_adjudicator", basilisk = "rune_dagger_basilisk", crusader = "rune_dagger_crusader", eyrie = "rune_dagger_eyrie", cleansing = "rune_dagger_cleansing", tangle = "rune_dagger_tangle" }, implicit = "30% increased Global Critical Strike Chance", implicitModTypes = { { "critical" }, }, - weapon = { PhysicalMin = 20, PhysicalMax = 79, CritChanceBase = 8, AttackRateBase = 1.4, Range = 10, }, + weapon = { PhysicalMin = 20, PhysicalMax = 79, CritChanceBase = 8.5, AttackRateBase = 1.4, Range = 10, }, req = { level = 62, dex = 95, int = 131, }, } itemBases["Platinum Kris"] = { @@ -283,7 +282,7 @@ itemBases["Platinum Kris"] = { influenceTags = { shaper = "rune_dagger_shaper", elder = "rune_dagger_elder", adjudicator = "rune_dagger_adjudicator", basilisk = "rune_dagger_basilisk", crusader = "rune_dagger_crusader", eyrie = "rune_dagger_eyrie", cleansing = "rune_dagger_cleansing", tangle = "rune_dagger_tangle" }, implicit = "50% increased Global Critical Strike Chance", implicitModTypes = { { "critical" }, }, - weapon = { PhysicalMin = 24, PhysicalMax = 95, CritChanceBase = 8.5, AttackRateBase = 1.2, Range = 10, }, + weapon = { PhysicalMin = 24, PhysicalMax = 95, CritChanceBase = 9, AttackRateBase = 1.2, Range = 10, }, req = { level = 64, dex = 76, int = 149, }, } itemBases["Imperial Skean"] = { @@ -294,7 +293,7 @@ itemBases["Imperial Skean"] = { influenceTags = { shaper = "rune_dagger_shaper", elder = "rune_dagger_elder", adjudicator = "rune_dagger_adjudicator", basilisk = "rune_dagger_basilisk", crusader = "rune_dagger_crusader", eyrie = "rune_dagger_eyrie", cleansing = "rune_dagger_cleansing", tangle = "rune_dagger_tangle" }, implicit = "30% increased Global Critical Strike Chance", implicitModTypes = { { "critical" }, }, - weapon = { PhysicalMin = 18, PhysicalMax = 73, CritChanceBase = 8, AttackRateBase = 1.5, Range = 10, }, + weapon = { PhysicalMin = 18, PhysicalMax = 73, CritChanceBase = 8.5, AttackRateBase = 1.5, Range = 10, }, req = { level = 66, dex = 95, int = 131, }, } itemBases["Demon Dagger"] = { @@ -305,7 +304,7 @@ itemBases["Demon Dagger"] = { influenceTags = { shaper = "rune_dagger_shaper", elder = "rune_dagger_elder", adjudicator = "rune_dagger_adjudicator", basilisk = "rune_dagger_basilisk", crusader = "rune_dagger_crusader", eyrie = "rune_dagger_eyrie", cleansing = "rune_dagger_cleansing", tangle = "rune_dagger_tangle" }, implicit = "40% increased Global Critical Strike Chance", implicitModTypes = { { "critical" }, }, - weapon = { PhysicalMin = 24, PhysicalMax = 97, CritChanceBase = 8.5, AttackRateBase = 1.2, Range = 10, }, + weapon = { PhysicalMin = 24, PhysicalMax = 97, CritChanceBase = 9, AttackRateBase = 1.2, Range = 10, }, req = { level = 68, dex = 76, int = 149, }, } itemBases["Flickerflame Blade"] = { @@ -316,7 +315,7 @@ itemBases["Flickerflame Blade"] = { influenceTags = { shaper = "rune_dagger_shaper", elder = "rune_dagger_elder", adjudicator = "rune_dagger_adjudicator", basilisk = "rune_dagger_basilisk", crusader = "rune_dagger_crusader", eyrie = "rune_dagger_eyrie", cleansing = "rune_dagger_cleansing", tangle = "rune_dagger_tangle" }, implicit = "Trigger Level 10 Flame Dash when you use a Socketed Skill", implicitModTypes = { { }, }, - weapon = { PhysicalMin = 12, PhysicalMax = 47, CritChanceBase = 8, AttackRateBase = 1.45, Range = 10, }, + weapon = { PhysicalMin = 12, PhysicalMax = 47, CritChanceBase = 8.5, AttackRateBase = 1.45, Range = 10, }, req = { level = 30, dex = 54, int = 54, }, } itemBases["Flashfire Blade"] = { @@ -327,7 +326,7 @@ itemBases["Flashfire Blade"] = { influenceTags = { shaper = "rune_dagger_shaper", elder = "rune_dagger_elder", adjudicator = "rune_dagger_adjudicator", basilisk = "rune_dagger_basilisk", crusader = "rune_dagger_crusader", eyrie = "rune_dagger_eyrie", cleansing = "rune_dagger_cleansing", tangle = "rune_dagger_tangle" }, implicit = "Trigger Level 20 Flame Dash when you use a Socketed Skill\n20% increased Cooldown Recovery Rate of Travel Skills", implicitModTypes = { { }, { }, }, - weapon = { PhysicalMin = 18, PhysicalMax = 73, CritChanceBase = 8, AttackRateBase = 1.45, Range = 10, }, + weapon = { PhysicalMin = 18, PhysicalMax = 73, CritChanceBase = 8.5, AttackRateBase = 1.45, Range = 10, }, req = { level = 50, dex = 86, int = 86, }, } itemBases["Infernal Blade"] = { @@ -338,6 +337,6 @@ itemBases["Infernal Blade"] = { influenceTags = { shaper = "rune_dagger_shaper", elder = "rune_dagger_elder", adjudicator = "rune_dagger_adjudicator", basilisk = "rune_dagger_basilisk", crusader = "rune_dagger_crusader", eyrie = "rune_dagger_eyrie", cleansing = "rune_dagger_cleansing", tangle = "rune_dagger_tangle" }, implicit = "Trigger Level 30 Flame Dash when you use a Socketed Skill\n40% increased Cooldown Recovery Rate of Travel Skills", implicitModTypes = { { }, { }, }, - weapon = { PhysicalMin = 21, PhysicalMax = 85, CritChanceBase = 8, AttackRateBase = 1.45, Range = 10, }, + weapon = { PhysicalMin = 21, PhysicalMax = 85, CritChanceBase = 8.5, AttackRateBase = 1.45, Range = 10, }, req = { level = 70, dex = 121, int = 121, }, } diff --git a/src/Data/Bases/jewel.lua b/src/Data/Bases/jewel.lua index b2206e4ebf..522d736a64 100644 --- a/src/Data/Bases/jewel.lua +++ b/src/Data/Bases/jewel.lua @@ -89,7 +89,6 @@ itemBases["Timeless Jewel"] = { itemBases["Ursine Charm"] = { type = "Jewel", subType = "Charm", - hidden = true, tags = { animal_charm = true, default = true, str_animal_charm = true, }, implicitModTypes = { }, req = { }, @@ -97,7 +96,6 @@ itemBases["Ursine Charm"] = { itemBases["Lupine Charm"] = { type = "Jewel", subType = "Charm", - hidden = true, tags = { animal_charm = true, default = true, dex_animal_charm = true, }, implicitModTypes = { }, req = { }, @@ -105,7 +103,6 @@ itemBases["Lupine Charm"] = { itemBases["Corvine Charm"] = { type = "Jewel", subType = "Charm", - hidden = true, tags = { animal_charm = true, default = true, int_animal_charm = true, }, implicitModTypes = { }, req = { }, diff --git a/src/Data/Bases/ring.lua b/src/Data/Bases/ring.lua index 9076d051d4..8b0d69e394 100644 --- a/src/Data/Bases/ring.lua +++ b/src/Data/Bases/ring.lua @@ -101,7 +101,6 @@ itemBases["Two-Stone Ring"] = { } itemBases["Two-Stone Ring"] = { type = "Ring", - hidden = true, tags = { default = true, ring = true, twostonering = true, }, influenceTags = { shaper = "ring_shaper", elder = "ring_elder", adjudicator = "ring_adjudicator", basilisk = "ring_basilisk", crusader = "ring_crusader", eyrie = "ring_eyrie", cleansing = "ring_cleansing", tangle = "ring_tangle" }, implicit = "+(12-16)% to Cold and Lightning Resistances", @@ -110,7 +109,6 @@ itemBases["Two-Stone Ring"] = { } itemBases["Two-Stone Ring"] = { type = "Ring", - hidden = true, tags = { default = true, ring = true, twostonering = true, }, influenceTags = { shaper = "ring_shaper", elder = "ring_elder", adjudicator = "ring_adjudicator", basilisk = "ring_basilisk", crusader = "ring_crusader", eyrie = "ring_eyrie", cleansing = "ring_cleansing", tangle = "ring_tangle" }, implicit = "+(12-16)% to Fire and Cold Resistances", @@ -309,6 +307,54 @@ itemBases["Nameless Ring"] = { implicitModTypes = { { "elemental" }, { "elemental" }, }, req = { level = 24, }, } +itemBases["Cryonic Ring"] = { + type = "Ring", + tags = { default = true, not_for_sale = true, ring = true, }, + influenceTags = { shaper = "ring_shaper", elder = "ring_elder", adjudicator = "ring_adjudicator", basilisk = "ring_basilisk", crusader = "ring_crusader", eyrie = "ring_eyrie", cleansing = "ring_cleansing", tangle = "ring_tangle" }, + implicit = "+2% to maximum Cold Resistance\nCannot roll Modifiers of Non-Cold Damage Types", + implicitModTypes = { { "elemental", "cold", "resistance" }, { "elemental", "cold", "resistance" }, }, + req = { level = 32, }, +} +itemBases["Enthalpic Ring"] = { + type = "Ring", + tags = { default = true, not_for_sale = true, ring = true, }, + influenceTags = { shaper = "ring_shaper", elder = "ring_elder", adjudicator = "ring_adjudicator", basilisk = "ring_basilisk", crusader = "ring_crusader", eyrie = "ring_eyrie", cleansing = "ring_cleansing", tangle = "ring_tangle" }, + implicit = "+2% to maximum Fire Resistance\nCannot roll Modifiers of Non-Fire Damage Types", + implicitModTypes = { { "elemental", "fire", "resistance" }, { "elemental", "fire", "resistance" }, }, + req = { level = 32, }, +} +itemBases["Synaptic Ring"] = { + type = "Ring", + tags = { default = true, not_for_sale = true, ring = true, }, + influenceTags = { shaper = "ring_shaper", elder = "ring_elder", adjudicator = "ring_adjudicator", basilisk = "ring_basilisk", crusader = "ring_crusader", eyrie = "ring_eyrie", cleansing = "ring_cleansing", tangle = "ring_tangle" }, + implicit = "+2% to maximum Lightning Resistance\nCannot roll Modifiers of Non-Lightning Damage Types", + implicitModTypes = { { "elemental", "lightning", "resistance" }, { "elemental", "lightning", "resistance" }, }, + req = { level = 32, }, +} +itemBases["Organic Ring"] = { + type = "Ring", + tags = { default = true, not_for_sale = true, ring = true, }, + influenceTags = { shaper = "ring_shaper", elder = "ring_elder", adjudicator = "ring_adjudicator", basilisk = "ring_basilisk", crusader = "ring_crusader", eyrie = "ring_eyrie", cleansing = "ring_cleansing", tangle = "ring_tangle" }, + implicit = "3% additional Physical Damage Reduction\nCannot roll Modifiers of Non-Physical Damage Types", + implicitModTypes = { { "physical" }, { "physical" }, }, + req = { level = 32, }, +} +itemBases["Fugitive Ring"] = { + type = "Ring", + tags = { default = true, not_for_sale = true, ring = true, }, + influenceTags = { shaper = "ring_shaper", elder = "ring_elder", adjudicator = "ring_adjudicator", basilisk = "ring_basilisk", crusader = "ring_crusader", eyrie = "ring_eyrie", cleansing = "ring_cleansing", tangle = "ring_tangle" }, + implicit = "+2% to maximum Chaos Resistance\nCannot roll Modifiers of Non-Chaos Damage Types", + implicitModTypes = { { "chaos", "resistance" }, { "chaos", "resistance" }, }, + req = { level = 32, }, +} +itemBases["Formless Ring"] = { + type = "Ring", + tags = { default = true, not_for_sale = true, ring = true, }, + influenceTags = { shaper = "ring_shaper", elder = "ring_elder", adjudicator = "ring_adjudicator", basilisk = "ring_basilisk", crusader = "ring_crusader", eyrie = "ring_eyrie", cleansing = "ring_cleansing", tangle = "ring_tangle" }, + implicit = "(5-7)% increased Global Defences", + implicitModTypes = { { "defences" }, }, + req = { level = 42, }, +} itemBases["Ring"] = { type = "Ring", tags = { default = true, not_for_sale = true, ring = true, }, @@ -335,7 +381,6 @@ itemBases["Golden Hoop"] = { } itemBases["Jet Ring"] = { type = "Ring", - hidden = true, tags = { default = true, demigods = true, not_for_sale = true, ring = true, }, influenceTags = { shaper = "ring_shaper", elder = "ring_elder", adjudicator = "ring_adjudicator", basilisk = "ring_basilisk", crusader = "ring_crusader", eyrie = "ring_eyrie", cleansing = "ring_cleansing", tangle = "ring_tangle" }, implicit = "(5-10)% increased Global Defences", diff --git a/src/Data/Bases/sword.lua b/src/Data/Bases/sword.lua index 7d35e63e86..eefc7f71ab 100644 --- a/src/Data/Bases/sword.lua +++ b/src/Data/Bases/sword.lua @@ -285,7 +285,6 @@ itemBases["Anarchic Spiritblade"] = { } itemBases["Random One Hand Sword"] = { type = "One Handed Sword", - hidden = true, socketLimit = 3, tags = { default = true, }, influenceTags = { shaper = "sword_shaper", elder = "sword_elder", adjudicator = "sword_adjudicator", basilisk = "sword_basilisk", crusader = "sword_crusader", eyrie = "sword_eyrie", cleansing = "sword_cleansing", tangle = "sword_tangle" }, @@ -593,7 +592,6 @@ itemBases["Dragoon Sword"] = { itemBases["Keyblade"] = { type = "Two Handed Sword", - hidden = true, socketLimit = 6, tags = { default = true, not_for_sale = true, sword = true, two_hand_weapon = true, twohand = true, weapon = true, }, influenceTags = { shaper = "2h_sword_shaper", elder = "2h_sword_elder", adjudicator = "2h_sword_adjudicator", basilisk = "2h_sword_basilisk", crusader = "2h_sword_crusader", eyrie = "2h_sword_eyrie", cleansing = "2h_sword_cleansing", tangle = "2h_sword_tangle" }, @@ -853,7 +851,6 @@ itemBases["Banishing Blade"] = { } itemBases["Random Two Hand Sword"] = { type = "Two Handed Sword", - hidden = true, socketLimit = 6, tags = { default = true, }, influenceTags = { shaper = "2h_sword_shaper", elder = "2h_sword_elder", adjudicator = "2h_sword_adjudicator", basilisk = "2h_sword_basilisk", crusader = "2h_sword_crusader", eyrie = "2h_sword_eyrie", cleansing = "2h_sword_cleansing", tangle = "2h_sword_tangle" }, diff --git a/src/Data/Bases/wand.lua b/src/Data/Bases/wand.lua index 89134e9a8e..3f7ae8c2c2 100644 --- a/src/Data/Bases/wand.lua +++ b/src/Data/Bases/wand.lua @@ -5,7 +5,7 @@ local itemBases = ... itemBases["Driftwood Wand"] = { type = "Wand", socketLimit = 3, - tags = { default = true, one_hand_weapon = true, onehand = true, ranged = true, wand = true, weapon = true, }, + tags = { default = true, one_hand_weapon = true, onehand = true, ranged = true, wand = true, wand_can_roll_caster_modifiers = true, weapon = true, }, influenceTags = { shaper = "wand_shaper", elder = "wand_elder", adjudicator = "wand_adjudicator", basilisk = "wand_basilisk", crusader = "wand_crusader", eyrie = "wand_eyrie", cleansing = "wand_cleansing", tangle = "wand_tangle" }, implicit = "(8-12)% increased Spell Damage", implicitModTypes = { { "caster_damage", "damage", "caster" }, }, @@ -15,17 +15,17 @@ itemBases["Driftwood Wand"] = { itemBases["Goat's Horn"] = { type = "Wand", socketLimit = 3, - tags = { default = true, one_hand_weapon = true, onehand = true, ranged = true, wand = true, weapon = true, }, + tags = { default = true, one_hand_weapon = true, onehand = true, ranged = true, wand = true, wand_can_roll_caster_modifiers = true, weapon = true, }, influenceTags = { shaper = "wand_shaper", elder = "wand_elder", adjudicator = "wand_adjudicator", basilisk = "wand_basilisk", crusader = "wand_crusader", eyrie = "wand_eyrie", cleansing = "wand_cleansing", tangle = "wand_tangle" }, implicit = "Adds (1-2) to (3-4) Fire Damage to Spells and Attacks", implicitModTypes = { { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "attack", "caster" }, }, - weapon = { PhysicalMin = 7, PhysicalMax = 13, CritChanceBase = 9, AttackRateBase = 1.4, Range = 120, }, + weapon = { PhysicalMin = 7, PhysicalMax = 13, CritChanceBase = 8, AttackRateBase = 1.4, Range = 120, }, req = { level = 6, int = 29, }, } itemBases["Carved Wand"] = { type = "Wand", socketLimit = 3, - tags = { default = true, one_hand_weapon = true, onehand = true, ranged = true, wand = true, weapon = true, }, + tags = { default = true, one_hand_weapon = true, onehand = true, ranged = true, wand = true, wand_can_roll_caster_modifiers = true, weapon = true, }, influenceTags = { shaper = "wand_shaper", elder = "wand_elder", adjudicator = "wand_adjudicator", basilisk = "wand_basilisk", crusader = "wand_crusader", eyrie = "wand_eyrie", cleansing = "wand_cleansing", tangle = "wand_tangle" }, implicit = "(11-15)% increased Spell Damage", implicitModTypes = { { "caster_damage", "damage", "caster" }, }, @@ -35,57 +35,57 @@ itemBases["Carved Wand"] = { itemBases["Quartz Wand"] = { type = "Wand", socketLimit = 3, - tags = { default = true, one_hand_weapon = true, onehand = true, ranged = true, wand = true, weapon = true, }, + tags = { default = true, one_hand_weapon = true, onehand = true, ranged = true, wand = true, wand_can_roll_caster_modifiers = true, weapon = true, }, influenceTags = { shaper = "wand_shaper", elder = "wand_elder", adjudicator = "wand_adjudicator", basilisk = "wand_basilisk", crusader = "wand_crusader", eyrie = "wand_eyrie", cleansing = "wand_cleansing", tangle = "wand_tangle" }, implicit = "Adds (2-3) to (4-7) Cold Damage to Spells and Attacks", implicitModTypes = { { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, }, - weapon = { PhysicalMin = 12, PhysicalMax = 23, CritChanceBase = 9, AttackRateBase = 1.45, Range = 120, }, + weapon = { PhysicalMin = 12, PhysicalMax = 23, CritChanceBase = 8, AttackRateBase = 1.45, Range = 120, }, req = { level = 18, int = 65, }, } itemBases["Spiraled Wand"] = { type = "Wand", socketLimit = 3, - tags = { default = true, one_hand_weapon = true, onehand = true, ranged = true, wand = true, weapon = true, }, + tags = { default = true, one_hand_weapon = true, onehand = true, ranged = true, wand = true, wand_can_roll_caster_modifiers = true, weapon = true, }, influenceTags = { shaper = "wand_shaper", elder = "wand_elder", adjudicator = "wand_adjudicator", basilisk = "wand_basilisk", crusader = "wand_crusader", eyrie = "wand_eyrie", cleansing = "wand_cleansing", tangle = "wand_tangle" }, implicit = "Adds (1-2) to (9-11) Lightning Damage to Spells and Attacks", implicitModTypes = { { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "attack", "caster" }, }, - weapon = { PhysicalMin = 11, PhysicalMax = 32, CritChanceBase = 9, AttackRateBase = 1.45, Range = 120, }, + weapon = { PhysicalMin = 11, PhysicalMax = 32, CritChanceBase = 8, AttackRateBase = 1.45, Range = 120, }, req = { level = 24, int = 83, }, } itemBases["Sage Wand"] = { type = "Wand", socketLimit = 3, - tags = { default = true, one_hand_weapon = true, onehand = true, ranged = true, wand = true, weapon = true, }, + tags = { default = true, one_hand_weapon = true, onehand = true, ranged = true, wand = true, wand_can_roll_caster_modifiers = true, weapon = true, }, influenceTags = { shaper = "wand_shaper", elder = "wand_elder", adjudicator = "wand_adjudicator", basilisk = "wand_basilisk", crusader = "wand_crusader", eyrie = "wand_eyrie", cleansing = "wand_cleansing", tangle = "wand_tangle" }, implicit = "(17-21)% increased Spell Damage", implicitModTypes = { { "caster_damage", "damage", "caster" }, }, - weapon = { PhysicalMin = 18, PhysicalMax = 34, CritChanceBase = 10, AttackRateBase = 1.4, Range = 120, }, + weapon = { PhysicalMin = 17, PhysicalMax = 32, CritChanceBase = 8.7, AttackRateBase = 1.5, Range = 120, }, req = { level = 30, int = 119, }, } itemBases["Pagan Wand"] = { type = "Wand", socketLimit = 3, - tags = { default = true, maraketh = true, not_for_sale = true, one_hand_weapon = true, onehand = true, ranged = true, wand = true, weapon = true, }, + tags = { default = true, maraketh = true, not_for_sale = true, one_hand_weapon = true, onehand = true, ranged = true, wand = true, wand_can_roll_caster_modifiers = true, weapon = true, }, influenceTags = { shaper = "wand_shaper", elder = "wand_elder", adjudicator = "wand_adjudicator", basilisk = "wand_basilisk", crusader = "wand_crusader", eyrie = "wand_eyrie", cleansing = "wand_cleansing", tangle = "wand_tangle" }, implicit = "10% increased Cast Speed", implicitModTypes = { { "caster", "speed" }, }, - weapon = { PhysicalMin = 20, PhysicalMax = 37, CritChanceBase = 8.5, AttackRateBase = 1.45, Range = 120, }, + weapon = { PhysicalMin = 20, PhysicalMax = 37, CritChanceBase = 8, AttackRateBase = 1.45, Range = 120, }, req = { level = 34, int = 118, }, } itemBases["Faun's Horn"] = { type = "Wand", socketLimit = 3, - tags = { default = true, one_hand_weapon = true, onehand = true, ranged = true, wand = true, weapon = true, }, + tags = { default = true, one_hand_weapon = true, onehand = true, ranged = true, wand = true, wand_can_roll_caster_modifiers = true, weapon = true, }, influenceTags = { shaper = "wand_shaper", elder = "wand_elder", adjudicator = "wand_adjudicator", basilisk = "wand_basilisk", crusader = "wand_crusader", eyrie = "wand_eyrie", cleansing = "wand_cleansing", tangle = "wand_tangle" }, implicit = "Adds (5-10) to (11-13) Fire Damage to Spells and Attacks", implicitModTypes = { { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "attack", "caster" }, }, - weapon = { PhysicalMin = 21, PhysicalMax = 38, CritChanceBase = 8.5, AttackRateBase = 1.4, Range = 120, }, + weapon = { PhysicalMin = 21, PhysicalMax = 38, CritChanceBase = 8, AttackRateBase = 1.4, Range = 120, }, req = { level = 35, int = 116, }, } itemBases["Engraved Wand"] = { type = "Wand", socketLimit = 3, - tags = { default = true, one_hand_weapon = true, onehand = true, ranged = true, wand = true, weapon = true, }, + tags = { default = true, one_hand_weapon = true, onehand = true, ranged = true, wand = true, wand_can_roll_caster_modifiers = true, weapon = true, }, influenceTags = { shaper = "wand_shaper", elder = "wand_elder", adjudicator = "wand_adjudicator", basilisk = "wand_basilisk", crusader = "wand_crusader", eyrie = "wand_eyrie", cleansing = "wand_cleansing", tangle = "wand_tangle" }, implicit = "(22-26)% increased Spell Damage", implicitModTypes = { { "caster_damage", "damage", "caster" }, }, @@ -95,37 +95,37 @@ itemBases["Engraved Wand"] = { itemBases["Crystal Wand"] = { type = "Wand", socketLimit = 3, - tags = { default = true, one_hand_weapon = true, onehand = true, ranged = true, wand = true, weapon = true, }, + tags = { default = true, one_hand_weapon = true, onehand = true, ranged = true, wand = true, wand_can_roll_caster_modifiers = true, weapon = true, }, influenceTags = { shaper = "wand_shaper", elder = "wand_elder", adjudicator = "wand_adjudicator", basilisk = "wand_basilisk", crusader = "wand_crusader", eyrie = "wand_eyrie", cleansing = "wand_cleansing", tangle = "wand_tangle" }, implicit = "Adds (4-8) to (10-12) Cold Damage to Spells and Attacks", implicitModTypes = { { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, }, - weapon = { PhysicalMin = 24, PhysicalMax = 45, CritChanceBase = 9, AttackRateBase = 1.45, Range = 120, }, + weapon = { PhysicalMin = 24, PhysicalMax = 45, CritChanceBase = 8, AttackRateBase = 1.45, Range = 120, }, req = { level = 45, int = 146, }, } itemBases["Coiled Wand"] = { type = "Wand", socketLimit = 3, - tags = { default = true, one_hand_weapon = true, onehand = true, ranged = true, wand = true, weapon = true, }, + tags = { default = true, one_hand_weapon = true, onehand = true, ranged = true, wand = true, wand_can_roll_caster_modifiers = true, weapon = true, }, influenceTags = { shaper = "wand_shaper", elder = "wand_elder", adjudicator = "wand_adjudicator", basilisk = "wand_basilisk", crusader = "wand_crusader", eyrie = "wand_eyrie", cleansing = "wand_cleansing", tangle = "wand_tangle" }, implicit = "Adds (1-2) to (22-24) Lightning Damage to Spells and Attacks", implicitModTypes = { { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "attack", "caster" }, }, - weapon = { PhysicalMin = 18, PhysicalMax = 55, CritChanceBase = 9, AttackRateBase = 1.45, Range = 120, }, + weapon = { PhysicalMin = 18, PhysicalMax = 55, CritChanceBase = 8, AttackRateBase = 1.45, Range = 120, }, req = { level = 49, int = 158, }, } itemBases["Omen Wand"] = { type = "Wand", socketLimit = 3, - tags = { default = true, one_hand_weapon = true, onehand = true, ranged = true, wand = true, weapon = true, }, + tags = { default = true, one_hand_weapon = true, onehand = true, ranged = true, wand = true, wand_can_roll_caster_modifiers = true, weapon = true, }, influenceTags = { shaper = "wand_shaper", elder = "wand_elder", adjudicator = "wand_adjudicator", basilisk = "wand_basilisk", crusader = "wand_crusader", eyrie = "wand_eyrie", cleansing = "wand_cleansing", tangle = "wand_tangle" }, implicit = "(27-31)% increased Spell Damage", implicitModTypes = { { "caster_damage", "damage", "caster" }, }, - weapon = { PhysicalMin = 26, PhysicalMax = 49, CritChanceBase = 10, AttackRateBase = 1.4, Range = 120, }, + weapon = { PhysicalMin = 24, PhysicalMax = 45, CritChanceBase = 8.7, AttackRateBase = 1.5, Range = 120, }, req = { level = 53, int = 200, }, } itemBases["Heathen Wand"] = { type = "Wand", socketLimit = 3, - tags = { default = true, maraketh = true, not_for_sale = true, one_hand_weapon = true, onehand = true, ranged = true, wand = true, weapon = true, }, + tags = { default = true, maraketh = true, not_for_sale = true, one_hand_weapon = true, onehand = true, ranged = true, wand = true, wand_can_roll_caster_modifiers = true, weapon = true, }, influenceTags = { shaper = "wand_shaper", elder = "wand_elder", adjudicator = "wand_adjudicator", basilisk = "wand_basilisk", crusader = "wand_crusader", eyrie = "wand_eyrie", cleansing = "wand_cleansing", tangle = "wand_tangle" }, implicit = "10% increased Cast Speed", implicitModTypes = { { "caster", "speed" }, }, @@ -135,17 +135,17 @@ itemBases["Heathen Wand"] = { itemBases["Demon's Horn"] = { type = "Wand", socketLimit = 3, - tags = { default = true, one_hand_weapon = true, onehand = true, ranged = true, wand = true, weapon = true, }, + tags = { default = true, one_hand_weapon = true, onehand = true, ranged = true, wand = true, wand_can_roll_caster_modifiers = true, weapon = true, }, influenceTags = { shaper = "wand_shaper", elder = "wand_elder", adjudicator = "wand_adjudicator", basilisk = "wand_basilisk", crusader = "wand_crusader", eyrie = "wand_eyrie", cleansing = "wand_cleansing", tangle = "wand_tangle" }, implicit = "Adds (18-36) to (53-59) Fire Damage to Spells and Attacks", implicitModTypes = { { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "attack", "caster" }, }, - weapon = { PhysicalMin = 31, PhysicalMax = 57, CritChanceBase = 9.5, AttackRateBase = 1.4, Range = 120, }, + weapon = { PhysicalMin = 31, PhysicalMax = 57, CritChanceBase = 8, AttackRateBase = 1.4, Range = 120, }, req = { level = 56, int = 179, }, } itemBases["Imbued Wand"] = { type = "Wand", socketLimit = 3, - tags = { default = true, one_hand_weapon = true, onehand = true, ranged = true, wand = true, weapon = true, }, + tags = { default = true, one_hand_weapon = true, onehand = true, ranged = true, wand = true, wand_can_roll_caster_modifiers = true, weapon = true, }, influenceTags = { shaper = "wand_shaper", elder = "wand_elder", adjudicator = "wand_adjudicator", basilisk = "wand_basilisk", crusader = "wand_crusader", eyrie = "wand_eyrie", cleansing = "wand_cleansing", tangle = "wand_tangle" }, implicit = "(33-37)% increased Spell Damage", implicitModTypes = { { "caster_damage", "damage", "caster" }, }, @@ -155,103 +155,133 @@ itemBases["Imbued Wand"] = { itemBases["Opal Wand"] = { type = "Wand", socketLimit = 3, - tags = { default = true, one_hand_weapon = true, onehand = true, ranged = true, top_tier_base_item_type = true, wand = true, weapon = true, }, + tags = { default = true, one_hand_weapon = true, onehand = true, ranged = true, top_tier_base_item_type = true, wand = true, wand_can_roll_caster_modifiers = true, weapon = true, }, influenceTags = { shaper = "wand_shaper", elder = "wand_elder", adjudicator = "wand_adjudicator", basilisk = "wand_basilisk", crusader = "wand_crusader", eyrie = "wand_eyrie", cleansing = "wand_cleansing", tangle = "wand_tangle" }, implicit = "Adds (14-29) to (42-47) Cold Damage to Spells and Attacks", implicitModTypes = { { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, }, - weapon = { PhysicalMin = 30, PhysicalMax = 56, CritChanceBase = 9, AttackRateBase = 1.45, Range = 120, }, + weapon = { PhysicalMin = 30, PhysicalMax = 56, CritChanceBase = 8, AttackRateBase = 1.45, Range = 120, }, req = { level = 62, int = 212, }, } itemBases["Tornado Wand"] = { type = "Wand", socketLimit = 3, - tags = { default = true, one_hand_weapon = true, onehand = true, ranged = true, top_tier_base_item_type = true, wand = true, weapon = true, }, + tags = { default = true, one_hand_weapon = true, onehand = true, ranged = true, top_tier_base_item_type = true, wand = true, wand_can_roll_caster_modifiers = true, weapon = true, }, influenceTags = { shaper = "wand_shaper", elder = "wand_elder", adjudicator = "wand_adjudicator", basilisk = "wand_basilisk", crusader = "wand_crusader", eyrie = "wand_eyrie", cleansing = "wand_cleansing", tangle = "wand_tangle" }, implicit = "Adds (3-5) to (70-82) Lightning Damage to Spells and Attacks", implicitModTypes = { { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "attack", "caster" }, }, - weapon = { PhysicalMin = 22, PhysicalMax = 65, CritChanceBase = 9, AttackRateBase = 1.45, Range = 120, }, + weapon = { PhysicalMin = 22, PhysicalMax = 65, CritChanceBase = 8, AttackRateBase = 1.45, Range = 120, }, req = { level = 65, int = 212, }, } itemBases["Prophecy Wand"] = { type = "Wand", socketLimit = 3, - tags = { default = true, one_hand_weapon = true, onehand = true, ranged = true, top_tier_base_item_type = true, wand = true, weapon = true, }, + tags = { default = true, one_hand_weapon = true, onehand = true, ranged = true, top_tier_base_item_type = true, wand = true, wand_can_roll_caster_modifiers = true, weapon = true, }, influenceTags = { shaper = "wand_shaper", elder = "wand_elder", adjudicator = "wand_adjudicator", basilisk = "wand_basilisk", crusader = "wand_crusader", eyrie = "wand_eyrie", cleansing = "wand_cleansing", tangle = "wand_tangle" }, implicit = "(36-40)% increased Spell Damage", implicitModTypes = { { "caster_damage", "damage", "caster" }, }, - weapon = { PhysicalMin = 28, PhysicalMax = 52, CritChanceBase = 10, AttackRateBase = 1.4, Range = 120, }, + weapon = { PhysicalMin = 26, PhysicalMax = 48, CritChanceBase = 8.7, AttackRateBase = 1.5, Range = 120, }, req = { level = 68, int = 245, }, } itemBases["Profane Wand"] = { type = "Wand", socketLimit = 3, - tags = { default = true, maraketh = true, not_for_sale = true, one_hand_weapon = true, onehand = true, ranged = true, wand = true, weapon = true, }, + tags = { default = true, maraketh = true, not_for_sale = true, one_hand_weapon = true, onehand = true, ranged = true, wand = true, wand_can_roll_caster_modifiers = true, weapon = true, }, influenceTags = { shaper = "wand_shaper", elder = "wand_elder", adjudicator = "wand_adjudicator", basilisk = "wand_basilisk", crusader = "wand_crusader", eyrie = "wand_eyrie", cleansing = "wand_cleansing", tangle = "wand_tangle" }, implicit = "14% increased Cast Speed", implicitModTypes = { { "caster", "speed" }, }, - weapon = { PhysicalMin = 30, PhysicalMax = 56, CritChanceBase = 8.5, AttackRateBase = 1.45, Range = 120, }, + weapon = { PhysicalMin = 30, PhysicalMax = 56, CritChanceBase = 8, AttackRateBase = 1.45, Range = 120, }, req = { level = 70, int = 237, }, } itemBases["Assembler Wand"] = { type = "Wand", socketLimit = 3, - tags = { default = true, experimental_base = true, not_for_sale = true, one_hand_weapon = true, onehand = true, ranged = true, wand = true, weapon = true, }, + tags = { default = true, experimental_base = true, not_for_sale = true, one_hand_weapon = true, onehand = true, ranged = true, wand = true, wand_can_roll_caster_modifiers = true, weapon = true, }, influenceTags = { shaper = "wand_shaper", elder = "wand_elder", adjudicator = "wand_adjudicator", basilisk = "wand_basilisk", crusader = "wand_crusader", eyrie = "wand_eyrie", cleansing = "wand_cleansing", tangle = "wand_tangle" }, implicit = "Gain an Endurance, Frenzy or Power Charge every 6 seconds", implicitModTypes = { { }, }, - weapon = { PhysicalMin = 15, PhysicalMax = 28, CritChanceBase = 9, AttackRateBase = 1.5, Range = 120, }, + weapon = { PhysicalMin = 15, PhysicalMax = 28, CritChanceBase = 8.5, AttackRateBase = 1.5, Range = 120, }, req = { level = 30, int = 101, }, } itemBases["Congregator Wand"] = { type = "Wand", socketLimit = 3, - tags = { default = true, experimental_base = true, not_for_sale = true, one_hand_weapon = true, onehand = true, ranged = true, wand = true, weapon = true, }, + tags = { default = true, experimental_base = true, not_for_sale = true, one_hand_weapon = true, onehand = true, ranged = true, wand = true, wand_can_roll_caster_modifiers = true, weapon = true, }, influenceTags = { shaper = "wand_shaper", elder = "wand_elder", adjudicator = "wand_adjudicator", basilisk = "wand_basilisk", crusader = "wand_crusader", eyrie = "wand_eyrie", cleansing = "wand_cleansing", tangle = "wand_tangle" }, implicit = "Gain an Endurance, Frenzy or Power Charge every 6 seconds", implicitModTypes = { { }, }, - weapon = { PhysicalMin = 23, PhysicalMax = 43, CritChanceBase = 9, AttackRateBase = 1.5, Range = 120, }, + weapon = { PhysicalMin = 23, PhysicalMax = 43, CritChanceBase = 8.5, AttackRateBase = 1.5, Range = 120, }, req = { level = 50, int = 168, }, } itemBases["Accumulator Wand"] = { type = "Wand", socketLimit = 3, - tags = { default = true, experimental_base = true, not_for_sale = true, one_hand_weapon = true, onehand = true, ranged = true, wand = true, weapon = true, }, + tags = { default = true, experimental_base = true, not_for_sale = true, one_hand_weapon = true, onehand = true, ranged = true, wand = true, wand_can_roll_caster_modifiers = true, weapon = true, }, influenceTags = { shaper = "wand_shaper", elder = "wand_elder", adjudicator = "wand_adjudicator", basilisk = "wand_basilisk", crusader = "wand_crusader", eyrie = "wand_eyrie", cleansing = "wand_cleansing", tangle = "wand_tangle" }, implicit = "Gain 2 Endurance, Frenzy or Power Charges every 6 seconds", implicitModTypes = { { }, }, - weapon = { PhysicalMin = 27, PhysicalMax = 50, CritChanceBase = 9, AttackRateBase = 1.5, Range = 120, }, + weapon = { PhysicalMin = 27, PhysicalMax = 50, CritChanceBase = 8.5, AttackRateBase = 1.5, Range = 120, }, req = { level = 70, int = 237, }, } +itemBases["Somatic Wand"] = { + type = "Wand", + socketLimit = 3, + tags = { default = true, one_hand_weapon = true, onehand = true, ranged = true, wand = true, weapon = true, }, + influenceTags = { shaper = "wand_shaper", elder = "wand_elder", adjudicator = "wand_adjudicator", basilisk = "wand_basilisk", crusader = "wand_crusader", eyrie = "wand_eyrie", cleansing = "wand_cleansing", tangle = "wand_tangle" }, + implicit = "Cannot roll Caster Modifiers", + implicitModTypes = { { }, }, + weapon = { PhysicalMin = 9, PhysicalMax = 18, CritChanceBase = 8.5, AttackRateBase = 1.6, Range = 120, }, + req = { level = 12, int = 47, }, +} +itemBases["Blasting Wand"] = { + type = "Wand", + socketLimit = 3, + tags = { default = true, one_hand_weapon = true, onehand = true, ranged = true, wand = true, weapon = true, }, + influenceTags = { shaper = "wand_shaper", elder = "wand_elder", adjudicator = "wand_adjudicator", basilisk = "wand_basilisk", crusader = "wand_crusader", eyrie = "wand_eyrie", cleansing = "wand_cleansing", tangle = "wand_tangle" }, + implicit = "Cannot roll Caster Modifiers", + implicitModTypes = { { }, }, + weapon = { PhysicalMin = 21, PhysicalMax = 39, CritChanceBase = 8.5, AttackRateBase = 1.6, Range = 120, }, + req = { level = 40, int = 131, }, +} +itemBases["Kinetic Wand"] = { + type = "Wand", + socketLimit = 3, + tags = { default = true, one_hand_weapon = true, onehand = true, ranged = true, top_tier_base_item_type = true, wand = true, weapon = true, }, + influenceTags = { shaper = "wand_shaper", elder = "wand_elder", adjudicator = "wand_adjudicator", basilisk = "wand_basilisk", crusader = "wand_crusader", eyrie = "wand_eyrie", cleansing = "wand_cleansing", tangle = "wand_tangle" }, + implicit = "Cannot roll Caster Modifiers", + implicitModTypes = { { }, }, + weapon = { PhysicalMin = 29, PhysicalMax = 54, CritChanceBase = 8.5, AttackRateBase = 1.6, Range = 120, }, + req = { level = 59, int = 188, }, +} itemBases["Convoking Wand"] = { type = "Wand", socketLimit = 3, - tags = { atlas_base_type = true, default = true, one_hand_weapon = true, onehand = true, ranged = true, top_tier_base_item_type = true, wand = true, wandatlas1 = true, weapon = true, weapon_can_roll_minion_modifiers = true, }, + tags = { atlas_base_type = true, default = true, one_hand_weapon = true, onehand = true, ranged = true, top_tier_base_item_type = true, wand = true, wand_can_roll_caster_modifiers = true, wandatlas1 = true, weapon = true, weapon_can_roll_minion_modifiers = true, }, influenceTags = { shaper = "wand_shaper", elder = "wand_elder", adjudicator = "wand_adjudicator", basilisk = "wand_basilisk", crusader = "wand_crusader", eyrie = "wand_eyrie", cleansing = "wand_cleansing", tangle = "wand_tangle" }, implicit = "Minions deal (26-30)% increased Damage", implicitModTypes = { { "damage", "minion" }, }, - weapon = { PhysicalMin = 28, PhysicalMax = 52, CritChanceBase = 8.3, AttackRateBase = 1.5, Range = 120, }, + weapon = { PhysicalMin = 28, PhysicalMax = 52, CritChanceBase = 8, AttackRateBase = 1.5, Range = 120, }, req = { level = 72, int = 242, }, } itemBases["Calling Wand"] = { type = "Wand", socketLimit = 3, - tags = { default = true, one_hand_weapon = true, onehand = true, ranged = true, wand = true, weapon = true, weapon_can_roll_minion_modifiers = true, }, + tags = { default = true, one_hand_weapon = true, onehand = true, ranged = true, wand = true, wand_can_roll_caster_modifiers = true, weapon = true, weapon_can_roll_minion_modifiers = true, }, influenceTags = { shaper = "wand_shaper", elder = "wand_elder", adjudicator = "wand_adjudicator", basilisk = "wand_basilisk", crusader = "wand_crusader", eyrie = "wand_eyrie", cleansing = "wand_cleansing", tangle = "wand_tangle" }, implicit = "Minions deal (12-16)% increased Damage", implicitModTypes = { { "damage", "minion" }, }, - weapon = { PhysicalMin = 13, PhysicalMax = 23, CritChanceBase = 8.3, AttackRateBase = 1.5, Range = 120, }, + weapon = { PhysicalMin = 13, PhysicalMax = 23, CritChanceBase = 8, AttackRateBase = 1.5, Range = 120, }, req = { level = 20, int = 81, }, } itemBases["Convening Wand"] = { type = "Wand", socketLimit = 3, - tags = { default = true, one_hand_weapon = true, onehand = true, ranged = true, wand = true, weapon = true, weapon_can_roll_minion_modifiers = true, }, + tags = { default = true, one_hand_weapon = true, onehand = true, ranged = true, wand = true, wand_can_roll_caster_modifiers = true, weapon = true, weapon_can_roll_minion_modifiers = true, }, influenceTags = { shaper = "wand_shaper", elder = "wand_elder", adjudicator = "wand_adjudicator", basilisk = "wand_basilisk", crusader = "wand_crusader", eyrie = "wand_eyrie", cleansing = "wand_cleansing", tangle = "wand_tangle" }, implicit = "Minions deal (20-24)% increased Damage", implicitModTypes = { { "damage", "minion" }, }, - weapon = { PhysicalMin = 25, PhysicalMax = 47, CritChanceBase = 8.3, AttackRateBase = 1.5, Range = 120, }, + weapon = { PhysicalMin = 25, PhysicalMax = 47, CritChanceBase = 8, AttackRateBase = 1.5, Range = 120, }, req = { level = 50, int = 183, }, } diff --git a/src/Data/BeastCraft.lua b/src/Data/BeastCraft.lua index 0ad4f80ad3..c30d5f075f 100644 --- a/src/Data/BeastCraft.lua +++ b/src/Data/BeastCraft.lua @@ -2,12 +2,12 @@ -- Item data (c) Grinding Gear Games return { - ["GrantsCatAspectCrafted"] = { type = "Suffix", affix = "of Farrul", "Grants Level 20 Aspect of the Cat Skill", statOrder = { 597 }, level = 20, group = "GrantsCatAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, }, - ["GrantsBirdAspectCrafted"] = { type = "Suffix", affix = "of Saqawal", "Grants Level 20 Aspect of the Avian Skill", statOrder = { 593 }, level = 20, group = "GrantsBirdAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, }, - ["GrantsSpiderAspectCrafted"] = { type = "Suffix", affix = "of Fenumus", "Grants Level 20 Aspect of the Spider Skill", statOrder = { 621 }, level = 20, group = "GrantsSpiderAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, }, - ["GrantsCrabAspectCrafted"] = { type = "Suffix", affix = "of Craiceann", "Grants Level 20 Aspect of the Crab Skill", statOrder = { 599 }, level = 20, group = "GrantsCrabAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "blue_herring", "skill" }, }, - ["GrantsCatAspectCrafted30"] = { type = "Suffix", affix = "of Farrul", "Grants Level 30 Aspect of the Cat Skill", statOrder = { 597 }, level = 20, group = "GrantsCatAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, }, - ["GrantsBirdAspectCrafted30"] = { type = "Suffix", affix = "of Saqawal", "Grants Level 30 Aspect of the Avian Skill", statOrder = { 593 }, level = 20, group = "GrantsBirdAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, }, - ["GrantsSpiderAspectCrafted30"] = { type = "Suffix", affix = "of Fenumus", "Grants Level 30 Aspect of the Spider Skill", statOrder = { 621 }, level = 20, group = "GrantsSpiderAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, }, - ["GrantsCrabAspectCrafted30"] = { type = "Suffix", affix = "of Craiceann", "Grants Level 30 Aspect of the Crab Skill", statOrder = { 599 }, level = 20, group = "GrantsCrabAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "blue_herring", "skill" }, }, + ["GrantsCatAspectCrafted"] = { type = "Suffix", affix = "of Farrul", "Grants Level 20 Aspect of the Cat Skill", statOrder = { 609 }, level = 20, group = "GrantsCatAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, }, + ["GrantsBirdAspectCrafted"] = { type = "Suffix", affix = "of Saqawal", "Grants Level 20 Aspect of the Avian Skill", statOrder = { 604 }, level = 20, group = "GrantsBirdAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, }, + ["GrantsSpiderAspectCrafted"] = { type = "Suffix", affix = "of Fenumus", "Grants Level 20 Aspect of the Spider Skill", statOrder = { 634 }, level = 20, group = "GrantsSpiderAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, }, + ["GrantsCrabAspectCrafted"] = { type = "Suffix", affix = "of Craiceann", "Grants Level 20 Aspect of the Crab Skill", statOrder = { 611 }, level = 20, group = "GrantsCrabAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "blue_herring", "skill" }, }, + ["GrantsCatAspectCrafted30"] = { type = "Suffix", affix = "of Farrul", "Grants Level 30 Aspect of the Cat Skill", statOrder = { 609 }, level = 20, group = "GrantsCatAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, }, + ["GrantsBirdAspectCrafted30"] = { type = "Suffix", affix = "of Saqawal", "Grants Level 30 Aspect of the Avian Skill", statOrder = { 604 }, level = 20, group = "GrantsBirdAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, }, + ["GrantsSpiderAspectCrafted30"] = { type = "Suffix", affix = "of Fenumus", "Grants Level 30 Aspect of the Spider Skill", statOrder = { 634 }, level = 20, group = "GrantsSpiderAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, }, + ["GrantsCrabAspectCrafted30"] = { type = "Suffix", affix = "of Craiceann", "Grants Level 30 Aspect of the Crab Skill", statOrder = { 611 }, level = 20, group = "GrantsCrabAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "blue_herring", "skill" }, }, } \ No newline at end of file diff --git a/src/Data/BossSkills.lua b/src/Data/BossSkills.lua index e6010de8cb..c954ae67d9 100644 --- a/src/Data/BossSkills.lua +++ b/src/Data/BossSkills.lua @@ -69,7 +69,7 @@ return { ["Sirus Meteor"] = { DamageType = "Spell", DamageMultipliers = { - Physical = { 45.087560245599, 0.22541711316695 } + Physical = { 28.179207951973, 0.14090638379039 } }, UberDamageMultiplier = 1.52, speed = 1500, diff --git a/src/Data/ClusterJewels.lua b/src/Data/ClusterJewels.lua index b0a32408da..a05c269dd0 100644 --- a/src/Data/ClusterJewels.lua +++ b/src/Data/ClusterJewels.lua @@ -580,305 +580,305 @@ return { }, }, notableSortOrder = { - ["Prodigious Defence"] = 11077, - ["Advance Guard"] = 11078, - ["Gladiatorial Combat"] = 11079, - ["Strike Leader"] = 11080, - ["Powerful Ward"] = 11081, - ["Enduring Ward"] = 11082, - ["Gladiator's Fortitude"] = 11083, - ["Precise Retaliation"] = 11084, - ["Veteran Defender"] = 11085, - ["Iron Breaker"] = 11086, - ["Deep Cuts"] = 11087, - ["Master the Fundamentals"] = 11088, - ["Force Multiplier"] = 11089, - ["Furious Assault"] = 11090, - ["Vicious Skewering"] = 11091, - ["Grim Oath"] = 11092, - ["Battle-Hardened"] = 11093, - ["Replenishing Presence"] = 11094, - ["Master of Command"] = 11095, - ["Spiteful Presence"] = 11096, - ["Purposeful Harbinger"] = 11097, - ["Destructive Aspect"] = 11098, - ["Electric Presence"] = 11099, - ["Volatile Presence"] = 11100, - ["Righteous Path"] = 11101, - ["Skullbreaker"] = 11102, - ["Pressure Points"] = 11103, - ["Overwhelming Malice"] = 11104, - ["Magnifier"] = 11105, - ["Savage Response"] = 11106, - ["Eye of the Storm"] = 11107, - ["Basics of Pain"] = 11108, - ["Quick Getaway"] = 11109, - ["Assert Dominance"] = 11110, - ["Vast Power"] = 11111, - ["Powerful Assault"] = 11112, - ["Intensity"] = 11113, - ["Titanic Swings"] = 11114, - ["Towering Threat"] = 11115, - ["Ancestral Echo"] = 11116, - ["Ancestral Reach"] = 11117, - ["Ancestral Might"] = 11118, - ["Ancestral Preservation"] = 11119, - ["Snaring Spirits"] = 11120, - ["Sleepless Sentries"] = 11121, - ["Ancestral Guidance"] = 11122, - ["Ancestral Inspiration"] = 11123, - ["Vital Focus"] = 11124, - ["Unrestrained Focus"] = 11125, - ["Unwavering Focus"] = 11126, - ["Enduring Focus"] = 11127, - ["Precise Focus"] = 11128, - ["Stoic Focus"] = 11129, - ["Hex Breaker"] = 11130, - ["Arcane Adept"] = 11131, - ["Distilled Perfection"] = 11132, - ["Spiked Concoction"] = 11133, - ["Fasting"] = 11134, - ["Mender's Wellspring"] = 11135, - ["Special Reserve"] = 11136, - ["Numbing Elixir"] = 11137, - ["Mob Mentality"] = 11138, - ["Cry Wolf"] = 11139, - ["Haunting Shout"] = 11140, - ["Lead By Example"] = 11141, - ["Provocateur"] = 11142, - ["Warning Call"] = 11143, - ["Rattling Bellow"] = 11144, - ["Bloodscent"] = 11145, - ["Run Through"] = 11146, - ["Wound Aggravation"] = 11147, - ["Overlord"] = 11148, - ["Expansive Might"] = 11149, - ["Weight Advantage"] = 11150, - ["Wind-up"] = 11151, - ["Fan of Blades"] = 11152, - ["Disease Vector"] = 11153, - ["Arcing Shot"] = 11154, - ["Tempered Arrowheads"] = 11155, - ["Broadside"] = 11156, - ["Explosive Force"] = 11157, - ["Opportunistic Fusilade"] = 11158, - ["Storm's Hand"] = 11159, - ["Battlefield Dominator"] = 11160, - ["Martial Mastery"] = 11161, - ["Surefooted Striker"] = 11162, - ["Graceful Execution"] = 11163, - ["Brutal Infamy"] = 11164, - ["Fearsome Warrior"] = 11165, - ["Combat Rhythm"] = 11166, - ["Hit and Run"] = 11167, - ["Insatiable Killer"] = 11168, - ["Mage Bane"] = 11169, - ["Martial Momentum"] = 11170, - ["Deadly Repartee"] = 11171, - ["Quick and Deadly"] = 11172, - ["Smite the Weak"] = 11173, - ["Heavy Hitter"] = 11174, - ["Martial Prowess"] = 11175, - ["Calamitous"] = 11176, - ["Devastator"] = 11177, - ["Fuel the Fight"] = 11178, - ["Drive the Destruction"] = 11179, - ["Feed the Fury"] = 11180, - ["Seal Mender"] = 11181, - ["Conjured Wall"] = 11182, - ["Arcane Heroism"] = 11183, - ["Practiced Caster"] = 11184, - ["Burden Projection"] = 11185, - ["Thaumophage"] = 11186, - ["Essence Rush"] = 11187, - ["Sap Psyche"] = 11188, - ["Sadist"] = 11189, - ["Corrosive Elements"] = 11190, - ["Doryani's Lesson"] = 11191, - ["Disorienting Display"] = 11192, - ["Prismatic Heart"] = 11193, - ["Widespread Destruction"] = 11194, - ["Master of Fire"] = 11195, - ["Smoking Remains"] = 11196, - ["Cremator"] = 11197, - ["Snowstorm"] = 11198, - ["Storm Drinker"] = 11199, - ["Paralysis"] = 11200, - ["Supercharge"] = 11201, - ["Blanketed Snow"] = 11202, - ["Cold to the Core"] = 11203, - ["Cold-Blooded Killer"] = 11204, - ["Touch of Cruelty"] = 11205, - ["Unwaveringly Evil"] = 11206, - ["Unspeakable Gifts"] = 11207, - ["Dark Ideation"] = 11208, - ["Unholy Grace"] = 11209, - ["Wicked Pall"] = 11210, - ["Renewal"] = 11211, - ["Raze and Pillage"] = 11212, - ["Rotten Claws"] = 11213, - ["Call to the Slaughter"] = 11214, - ["Skeletal Atrophy"] = 11501, - ["Hulking Corpses"] = 11215, - ["Vicious Bite"] = 11216, - ["Primordial Bond"] = 11217, - ["Blowback"] = 11218, - ["Fan the Flames"] = 11219, - ["Cooked Alive"] = 11220, - ["Burning Bright"] = 11221, - ["Wrapped in Flame"] = 11222, - ["Vivid Hues"] = 11223, - ["Rend"] = 11224, - ["Disorienting Wounds"] = 11225, - ["Compound Injury"] = 11226, - ["Blood Artist"] = 13887, - ["Phlebotomist"] = 13888, - ["Septic Spells"] = 11227, - ["Low Tolerance"] = 11228, - ["Steady Torment"] = 11229, - ["Eternal Suffering"] = 11230, - ["Eldritch Inspiration"] = 11231, - ["Wasting Affliction"] = 11232, - ["Haemorrhage"] = 11233, - ["Flow of Life"] = 11234, - ["Exposure Therapy"] = 11235, - ["Brush with Death"] = 11236, - ["Vile Reinvigoration"] = 11237, - ["Circling Oblivion"] = 11238, - ["Brewed for Potency"] = 11239, - ["Astonishing Affliction"] = 11240, - ["Cold Conduction"] = 11241, - ["Inspired Oppression"] = 11242, - ["Chilling Presence"] = 11243, - ["Deep Chill"] = 11244, - ["Blast-Freeze"] = 11245, - ["Thunderstruck"] = 11246, - ["Stormrider"] = 11247, - ["Overshock"] = 11248, - ["Evil Eye"] = 11249, - ["Evil Eye"] = 11250, - ["Forbidden Words"] = 11251, - ["Doedre's Spite"] = 11252, - ["Victim Maker"] = 11253, - ["Master of Fear"] = 11254, - ["Wish for Death"] = 11255, - ["Heraldry"] = 11256, - ["Endbringer"] = 11257, - ["Cult-Leader"] = 11258, - ["Empowered Envoy"] = 11259, - ["Dark Messenger"] = 11260, - ["Agent of Destruction"] = 11261, - ["Lasting Impression"] = 11262, - ["Self-Fulfilling Prophecy"] = 11263, - ["Invigorating Portents"] = 11264, - ["Pure Agony"] = 11265, - ["Disciples"] = 11266, - ["Dread March"] = 11267, - ["Blessed Rebirth"] = 11268, - ["Life from Death"] = 11269, - ["Feasting Fiends"] = 11270, - ["Bodyguards"] = 11271, - ["Follow-Through"] = 11272, - ["Streamlined"] = 11273, - ["Shrieking Bolts"] = 11274, - ["Eye to Eye"] = 11275, - ["Repeater"] = 11276, - ["Aerodynamics"] = 11277, - ["Chip Away"] = 11278, - ["Seeker Runes"] = 11279, - ["Remarkable"] = 11280, - ["Brand Loyalty"] = 11281, - ["Holy Conquest"] = 11282, - ["Grand Design"] = 11283, - ["Set and Forget"] = 11284, - ["Expert Sabotage"] = 11285, - ["Guerilla Tactics"] = 11286, - ["Expendability"] = 11287, - ["Arcane Pyrotechnics"] = 11288, - ["Surprise Sabotage"] = 11289, - ["Careful Handling"] = 11290, - ["Peak Vigour"] = 11291, - ["Fettle"] = 11292, - ["Feast of Flesh"] = 11293, - ["Sublime Sensation"] = 11294, - ["Surging Vitality"] = 11295, - ["Peace Amidst Chaos"] = 11296, - ["Adrenaline"] = 11297, - ["Wall of Muscle"] = 11298, - ["Mindfulness"] = 11299, - ["Liquid Inspiration"] = 11300, - ["Openness"] = 11301, - ["Daring Ideas"] = 11302, - ["Clarity of Purpose"] = 11303, - ["Scintillating Idea"] = 11304, - ["Holistic Health"] = 11305, - ["Genius"] = 11306, - ["Improvisor"] = 11307, - ["Stubborn Student"] = 11308, - ["Savour the Moment"] = 11309, - ["Energy From Naught"] = 11310, - ["Will Shaper"] = 11311, - ["Spring Back"] = 11312, - ["Conservation of Energy"] = 11313, - ["Heart of Iron"] = 11314, - ["Prismatic Carapace"] = 11315, - ["Militarism"] = 11316, - ["Second Skin"] = 11317, - ["Dragon Hunter"] = 11318, - ["Enduring Composure"] = 11319, - ["Prismatic Dance"] = 11320, - ["Natural Vigour"] = 11321, - ["Untouchable"] = 11322, - ["Shifting Shadow"] = 11323, - ["Readiness"] = 11324, - ["Confident Combatant"] = 11325, - ["Flexible Sentry"] = 11326, - ["Vicious Guard"] = 11327, - ["Mystical Ward"] = 11328, - ["Rote Reinforcement"] = 11329, - ["Mage Hunter"] = 11330, - ["Riot Queller"] = 11331, - ["One with the Shield"] = 11332, - ["Aerialist"] = 11333, - ["Elegant Form"] = 11334, - ["Darting Movements"] = 11335, - ["No Witnesses"] = 11336, - ["Molten One's Mark"] = 11337, - ["Fire Attunement"] = 11338, - ["Pure Might"] = 11339, - ["Blacksmith"] = 11340, - ["Non-Flammable"] = 11341, - ["Winter Prowler"] = 11342, - ["Hibernator"] = 11343, - ["Pure Guile"] = 11344, - ["Alchemist"] = 11345, - ["Antifreeze"] = 11346, - ["Wizardry"] = 11347, - ["Capacitor"] = 11348, - ["Pure Aptitude"] = 11349, - ["Sage"] = 11350, - ["Insulated"] = 11351, - ["Born of Chaos"] = 11352, - ["Antivenom"] = 11353, - ["Rot-Resistant"] = 11354, - ["Blessed"] = 11355, - ["Student of Decay"] = 11356, - ["Lord of Drought"] = 12195, - ["Blizzard Caller"] = 12196, - ["Tempt the Storm"] = 12197, - ["Misery Everlasting"] = 12198, - ["Exploit Weakness"] = 12199, - ["Self-Control"] = 12204, - ["Uncompromising"] = 12205, - ["Sublime Form"] = 12206, - ["Mortifying Aspect"] = 12262, - ["Frantic Aspect"] = 12263, - ["Introspection"] = 12264, - ["Hound's Mark"] = 12200, - ["Doedre's Gluttony"] = 12201, - ["Doedre's Apathy"] = 12202, - ["Master of the Maelstrom"] = 12203, - ["Aggressive Defence"] = 15338, + ["Prodigious Defence"] = 11159, + ["Advance Guard"] = 11160, + ["Gladiatorial Combat"] = 11161, + ["Strike Leader"] = 11162, + ["Powerful Ward"] = 11163, + ["Enduring Ward"] = 11164, + ["Gladiator's Fortitude"] = 11165, + ["Precise Retaliation"] = 11166, + ["Veteran Defender"] = 11167, + ["Iron Breaker"] = 11168, + ["Deep Cuts"] = 11169, + ["Master the Fundamentals"] = 11170, + ["Force Multiplier"] = 11171, + ["Furious Assault"] = 11172, + ["Vicious Skewering"] = 11173, + ["Grim Oath"] = 11174, + ["Battle-Hardened"] = 11175, + ["Replenishing Presence"] = 11176, + ["Master of Command"] = 11177, + ["Spiteful Presence"] = 11178, + ["Purposeful Harbinger"] = 11179, + ["Destructive Aspect"] = 11180, + ["Electric Presence"] = 11181, + ["Volatile Presence"] = 11182, + ["Righteous Path"] = 11183, + ["Skullbreaker"] = 11184, + ["Pressure Points"] = 11185, + ["Overwhelming Malice"] = 11186, + ["Magnifier"] = 11187, + ["Savage Response"] = 11188, + ["Eye of the Storm"] = 11189, + ["Basics of Pain"] = 11190, + ["Quick Getaway"] = 11191, + ["Assert Dominance"] = 11192, + ["Vast Power"] = 11193, + ["Powerful Assault"] = 11194, + ["Intensity"] = 11195, + ["Titanic Swings"] = 11196, + ["Towering Threat"] = 11197, + ["Ancestral Echo"] = 11198, + ["Ancestral Reach"] = 11199, + ["Ancestral Might"] = 11200, + ["Ancestral Preservation"] = 11201, + ["Snaring Spirits"] = 11202, + ["Sleepless Sentries"] = 11203, + ["Ancestral Guidance"] = 11204, + ["Ancestral Inspiration"] = 11205, + ["Vital Focus"] = 11206, + ["Unrestrained Focus"] = 11207, + ["Unwavering Focus"] = 11208, + ["Enduring Focus"] = 11209, + ["Precise Focus"] = 11210, + ["Stoic Focus"] = 11211, + ["Hex Breaker"] = 11212, + ["Arcane Adept"] = 11213, + ["Distilled Perfection"] = 11214, + ["Spiked Concoction"] = 11215, + ["Fasting"] = 11216, + ["Mender's Wellspring"] = 11217, + ["Special Reserve"] = 11218, + ["Numbing Elixir"] = 11219, + ["Mob Mentality"] = 11220, + ["Cry Wolf"] = 11221, + ["Haunting Shout"] = 11222, + ["Lead By Example"] = 11223, + ["Provocateur"] = 11224, + ["Warning Call"] = 11225, + ["Rattling Bellow"] = 11226, + ["Bloodscent"] = 11227, + ["Run Through"] = 11228, + ["Wound Aggravation"] = 11229, + ["Overlord"] = 11230, + ["Expansive Might"] = 11231, + ["Weight Advantage"] = 11232, + ["Wind-up"] = 11233, + ["Fan of Blades"] = 11234, + ["Disease Vector"] = 11235, + ["Arcing Shot"] = 11236, + ["Tempered Arrowheads"] = 11237, + ["Broadside"] = 11238, + ["Explosive Force"] = 11239, + ["Opportunistic Fusilade"] = 11240, + ["Storm's Hand"] = 11241, + ["Battlefield Dominator"] = 11242, + ["Martial Mastery"] = 11243, + ["Surefooted Striker"] = 11244, + ["Graceful Execution"] = 11245, + ["Brutal Infamy"] = 11246, + ["Fearsome Warrior"] = 11247, + ["Combat Rhythm"] = 11248, + ["Hit and Run"] = 11249, + ["Insatiable Killer"] = 11250, + ["Mage Bane"] = 11251, + ["Martial Momentum"] = 11252, + ["Deadly Repartee"] = 11253, + ["Quick and Deadly"] = 11254, + ["Smite the Weak"] = 11255, + ["Heavy Hitter"] = 11256, + ["Martial Prowess"] = 11257, + ["Calamitous"] = 11258, + ["Devastator"] = 11259, + ["Fuel the Fight"] = 11260, + ["Drive the Destruction"] = 11261, + ["Feed the Fury"] = 11262, + ["Seal Mender"] = 11263, + ["Conjured Wall"] = 11264, + ["Arcane Heroism"] = 11265, + ["Practiced Caster"] = 11266, + ["Burden Projection"] = 11267, + ["Thaumophage"] = 11268, + ["Essence Rush"] = 11269, + ["Sap Psyche"] = 11270, + ["Sadist"] = 11271, + ["Corrosive Elements"] = 11272, + ["Doryani's Lesson"] = 11273, + ["Disorienting Display"] = 11274, + ["Prismatic Heart"] = 11275, + ["Widespread Destruction"] = 11276, + ["Master of Fire"] = 11277, + ["Smoking Remains"] = 11278, + ["Cremator"] = 11279, + ["Snowstorm"] = 11280, + ["Storm Drinker"] = 11281, + ["Paralysis"] = 11282, + ["Supercharge"] = 11283, + ["Blanketed Snow"] = 11284, + ["Cold to the Core"] = 11285, + ["Cold-Blooded Killer"] = 11286, + ["Touch of Cruelty"] = 11287, + ["Unwaveringly Evil"] = 11288, + ["Unspeakable Gifts"] = 11289, + ["Dark Ideation"] = 11290, + ["Unholy Grace"] = 11291, + ["Wicked Pall"] = 11292, + ["Renewal"] = 11293, + ["Raze and Pillage"] = 11294, + ["Rotten Claws"] = 11295, + ["Call to the Slaughter"] = 11296, + ["Skeletal Atrophy"] = 11589, + ["Hulking Corpses"] = 11297, + ["Vicious Bite"] = 11298, + ["Primordial Bond"] = 11299, + ["Blowback"] = 11300, + ["Fan the Flames"] = 11301, + ["Cooked Alive"] = 11302, + ["Burning Bright"] = 11303, + ["Wrapped in Flame"] = 11304, + ["Vivid Hues"] = 11305, + ["Rend"] = 11306, + ["Disorienting Wounds"] = 11307, + ["Compound Injury"] = 11308, + ["Blood Artist"] = 13982, + ["Phlebotomist"] = 13983, + ["Septic Spells"] = 11309, + ["Low Tolerance"] = 11310, + ["Steady Torment"] = 11311, + ["Eternal Suffering"] = 11312, + ["Eldritch Inspiration"] = 11313, + ["Wasting Affliction"] = 11314, + ["Haemorrhage"] = 11315, + ["Flow of Life"] = 11316, + ["Exposure Therapy"] = 11317, + ["Brush with Death"] = 11318, + ["Vile Reinvigoration"] = 11319, + ["Circling Oblivion"] = 11320, + ["Brewed for Potency"] = 11321, + ["Astonishing Affliction"] = 11322, + ["Cold Conduction"] = 11323, + ["Inspired Oppression"] = 11324, + ["Chilling Presence"] = 11325, + ["Deep Chill"] = 11326, + ["Blast-Freeze"] = 11327, + ["Thunderstruck"] = 11328, + ["Stormrider"] = 11329, + ["Overshock"] = 11330, + ["Evil Eye"] = 11331, + ["Evil Eye"] = 11332, + ["Forbidden Words"] = 11333, + ["Doedre's Spite"] = 11334, + ["Victim Maker"] = 11335, + ["Master of Fear"] = 11336, + ["Wish for Death"] = 11337, + ["Heraldry"] = 11338, + ["Endbringer"] = 11339, + ["Cult-Leader"] = 11340, + ["Empowered Envoy"] = 11341, + ["Dark Messenger"] = 11342, + ["Agent of Destruction"] = 11343, + ["Lasting Impression"] = 11344, + ["Self-Fulfilling Prophecy"] = 11345, + ["Invigorating Portents"] = 11346, + ["Pure Agony"] = 11347, + ["Disciples"] = 11348, + ["Dread March"] = 11349, + ["Blessed Rebirth"] = 11350, + ["Life from Death"] = 11351, + ["Feasting Fiends"] = 11352, + ["Bodyguards"] = 11353, + ["Follow-Through"] = 11354, + ["Streamlined"] = 11355, + ["Shrieking Bolts"] = 11356, + ["Eye to Eye"] = 11357, + ["Repeater"] = 11358, + ["Aerodynamics"] = 11359, + ["Chip Away"] = 11360, + ["Seeker Runes"] = 11361, + ["Remarkable"] = 11362, + ["Brand Loyalty"] = 11363, + ["Holy Conquest"] = 11364, + ["Grand Design"] = 11365, + ["Set and Forget"] = 11366, + ["Expert Sabotage"] = 11367, + ["Guerilla Tactics"] = 11368, + ["Expendability"] = 11369, + ["Arcane Pyrotechnics"] = 11370, + ["Surprise Sabotage"] = 11371, + ["Careful Handling"] = 11372, + ["Peak Vigour"] = 11373, + ["Fettle"] = 11374, + ["Feast of Flesh"] = 11375, + ["Sublime Sensation"] = 11376, + ["Surging Vitality"] = 11377, + ["Peace Amidst Chaos"] = 11378, + ["Adrenaline"] = 11379, + ["Wall of Muscle"] = 11380, + ["Mindfulness"] = 11381, + ["Liquid Inspiration"] = 11382, + ["Openness"] = 11383, + ["Daring Ideas"] = 11384, + ["Clarity of Purpose"] = 11385, + ["Scintillating Idea"] = 11386, + ["Holistic Health"] = 11387, + ["Genius"] = 11388, + ["Improvisor"] = 11389, + ["Stubborn Student"] = 11390, + ["Savour the Moment"] = 11391, + ["Energy From Naught"] = 11392, + ["Will Shaper"] = 11393, + ["Spring Back"] = 11394, + ["Conservation of Energy"] = 11395, + ["Heart of Iron"] = 11396, + ["Prismatic Carapace"] = 11397, + ["Militarism"] = 11398, + ["Second Skin"] = 11399, + ["Dragon Hunter"] = 11400, + ["Enduring Composure"] = 11401, + ["Prismatic Dance"] = 11402, + ["Natural Vigour"] = 11403, + ["Untouchable"] = 11404, + ["Shifting Shadow"] = 11405, + ["Readiness"] = 11406, + ["Confident Combatant"] = 11407, + ["Flexible Sentry"] = 11408, + ["Vicious Guard"] = 11409, + ["Mystical Ward"] = 11410, + ["Rote Reinforcement"] = 11411, + ["Mage Hunter"] = 11412, + ["Riot Queller"] = 11413, + ["One with the Shield"] = 11414, + ["Aerialist"] = 11415, + ["Elegant Form"] = 11416, + ["Darting Movements"] = 11417, + ["No Witnesses"] = 11418, + ["Molten One's Mark"] = 11419, + ["Fire Attunement"] = 11420, + ["Pure Might"] = 11421, + ["Blacksmith"] = 11422, + ["Non-Flammable"] = 11423, + ["Winter Prowler"] = 11424, + ["Hibernator"] = 11425, + ["Pure Guile"] = 11426, + ["Alchemist"] = 11427, + ["Antifreeze"] = 11428, + ["Wizardry"] = 11429, + ["Capacitor"] = 11430, + ["Pure Aptitude"] = 11431, + ["Sage"] = 11432, + ["Insulated"] = 11433, + ["Born of Chaos"] = 11434, + ["Antivenom"] = 11435, + ["Rot-Resistant"] = 11436, + ["Blessed"] = 11437, + ["Student of Decay"] = 11438, + ["Lord of Drought"] = 12283, + ["Blizzard Caller"] = 12284, + ["Tempt the Storm"] = 12285, + ["Misery Everlasting"] = 12286, + ["Exploit Weakness"] = 12287, + ["Self-Control"] = 12292, + ["Uncompromising"] = 12293, + ["Sublime Form"] = 12294, + ["Mortifying Aspect"] = 12350, + ["Frantic Aspect"] = 12351, + ["Introspection"] = 12352, + ["Hound's Mark"] = 12288, + ["Doedre's Gluttony"] = 12289, + ["Doedre's Apathy"] = 12290, + ["Master of the Maelstrom"] = 12291, + ["Aggressive Defence"] = 15445, }, keystones = { "Disciple of Kitava", diff --git a/src/Data/Crucible.lua b/src/Data/Crucible.lua index 9f2b34f4ee..78654d1230 100644 --- a/src/Data/Crucible.lua +++ b/src/Data/Crucible.lua @@ -2,1747 +2,1747 @@ -- Item data (c) Grinding Gear Games return { - ["WeaponTreeAddedPhysicalHighReducedAttackSpeed1"] = { type = "Spawn", tier = 1, "Adds 2 to 7 Physical Damage", "6% reduced Attack Speed", statOrder = { 1160, 1297 }, level = 1, group = "WeaponTreeLocalPhysicalDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalHighReducedAttackSpeed2"] = { type = "Spawn", tier = 2, "Adds 3 to 11 Physical Damage", "6% reduced Attack Speed", statOrder = { 1160, 1297 }, level = 21, group = "WeaponTreeLocalPhysicalDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalHighReducedAttackSpeed3"] = { type = "Spawn", tier = 3, "Adds 6 to 12 Physical Damage", "6% reduced Attack Speed", statOrder = { 1160, 1297 }, level = 46, group = "WeaponTreeLocalPhysicalDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalHighReducedAttackSpeed4"] = { type = "Spawn", tier = 4, "Adds 6 to 16 Physical Damage", "6% reduced Attack Speed", statOrder = { 1160, 1297 }, level = 65, group = "WeaponTreeLocalPhysicalDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalHighReducedAttackSpeed5"] = { type = "Spawn", tier = 5, "Adds 8 to 19 Physical Damage", "6% reduced Attack Speed", statOrder = { 1160, 1297 }, level = 77, group = "WeaponTreeLocalPhysicalDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hHighReducedAttackSpeed1"] = { type = "Spawn", tier = 1, "Adds 4 to 12 Physical Damage", "6% reduced Attack Speed", statOrder = { 1160, 1297 }, level = 1, group = "WeaponTreeLocalPhysicalDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hHighReducedAttackSpeed2"] = { type = "Spawn", tier = 2, "Adds 6 to 16 Physical Damage", "6% reduced Attack Speed", statOrder = { 1160, 1297 }, level = 21, group = "WeaponTreeLocalPhysicalDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hHighReducedAttackSpeed3"] = { type = "Spawn", tier = 3, "Adds 9 to 20 Physical Damage", "6% reduced Attack Speed", statOrder = { 1160, 1297 }, level = 46, group = "WeaponTreeLocalPhysicalDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hHighReducedAttackSpeed4"] = { type = "Spawn", tier = 4, "Adds 11 to 25 Physical Damage", "6% reduced Attack Speed", statOrder = { 1160, 1297 }, level = 65, group = "WeaponTreeLocalPhysicalDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hHighReducedAttackSpeed5"] = { type = "Spawn", tier = 5, "Adds 14 to 33 Physical Damage", "6% reduced Attack Speed", statOrder = { 1160, 1297 }, level = 77, group = "WeaponTreeLocalPhysicalDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical1"] = { type = "Spawn", tier = 1, "Adds 2 to 6 Physical Damage", statOrder = { 1160 }, level = 1, group = "WeaponTreeLocalPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2"] = { type = "Spawn", tier = 2, "Adds 2 to 8 Physical Damage", statOrder = { 1160 }, level = 21, group = "WeaponTreeLocalPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical3"] = { type = "Spawn", tier = 3, "Adds 3 to 10 Physical Damage", statOrder = { 1160 }, level = 46, group = "WeaponTreeLocalPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical4"] = { type = "Spawn", tier = 4, "Adds 5 to 13 Physical Damage", statOrder = { 1160 }, level = 65, group = "WeaponTreeLocalPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical5"] = { type = "Spawn", tier = 5, "Adds 6 to 15 Physical Damage", statOrder = { 1160 }, level = 77, group = "WeaponTreeLocalPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2h1"] = { type = "Spawn", tier = 1, "Adds 4 to 9 Physical Damage", statOrder = { 1160 }, level = 1, group = "WeaponTreeLocalPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2h2"] = { type = "Spawn", tier = 2, "Adds 6 to 11 Physical Damage", statOrder = { 1160 }, level = 21, group = "WeaponTreeLocalPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2h3"] = { type = "Spawn", tier = 3, "Adds 7 to 16 Physical Damage", statOrder = { 1160 }, level = 46, group = "WeaponTreeLocalPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2h4"] = { type = "Spawn", tier = 4, "Adds 8 to 19 Physical Damage", statOrder = { 1160 }, level = 65, group = "WeaponTreeLocalPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2h5"] = { type = "Spawn", tier = 5, "Adds 11 to 26 Physical Damage", statOrder = { 1160 }, level = 77, group = "WeaponTreeLocalPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowFireConvert1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage", "15% of Physical Damage Converted to Fire Damage", statOrder = { 1160, 1834 }, level = 10, group = "WeaponTreeLocalPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowFireConvert2"] = { type = "Spawn", tier = 2, "Adds 1 to 4 Physical Damage", "15% of Physical Damage Converted to Fire Damage", statOrder = { 1160, 1834 }, level = 31, group = "WeaponTreeLocalPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowFireConvert3"] = { type = "Spawn", tier = 3, "Adds 2 to 6 Physical Damage", "15% of Physical Damage Converted to Fire Damage", statOrder = { 1160, 1834 }, level = 54, group = "WeaponTreeLocalPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowFireConvert4"] = { type = "Spawn", tier = 4, "Adds 3 to 7 Physical Damage", "15% of Physical Damage Converted to Fire Damage", statOrder = { 1160, 1834 }, level = 72, group = "WeaponTreeLocalPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowFireConvert5"] = { type = "Spawn", tier = 5, "Adds 5 to 8 Physical Damage", "15% of Physical Damage Converted to Fire Damage", statOrder = { 1160, 1834 }, level = 84, group = "WeaponTreeLocalPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 25, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowFireConvert1"] = { type = "Spawn", tier = 1, "Adds 2 to 6 Physical Damage", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1160, 1834 }, level = 10, group = "WeaponTreeLocalPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowFireConvert2"] = { type = "Spawn", tier = 2, "Adds 3 to 8 Physical Damage", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1160, 1834 }, level = 31, group = "WeaponTreeLocalPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowFireConvert3"] = { type = "Spawn", tier = 3, "Adds 3 to 10 Physical Damage", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1160, 1834 }, level = 54, group = "WeaponTreeLocalPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowFireConvert4"] = { type = "Spawn", tier = 4, "Adds 5 to 13 Physical Damage", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1160, 1834 }, level = 72, group = "WeaponTreeLocalPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowFireConvert5"] = { type = "Spawn", tier = 5, "Adds 6 to 15 Physical Damage", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1160, 1834 }, level = 84, group = "WeaponTreeLocalPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 25, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowColdConvert1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage", "15% of Physical Damage Converted to Cold Damage", statOrder = { 1160, 1836 }, level = 10, group = "WeaponTreeLocalPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowColdConvert2"] = { type = "Spawn", tier = 2, "Adds 1 to 4 Physical Damage", "15% of Physical Damage Converted to Cold Damage", statOrder = { 1160, 1836 }, level = 31, group = "WeaponTreeLocalPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowColdConvert3"] = { type = "Spawn", tier = 3, "Adds 2 to 6 Physical Damage", "15% of Physical Damage Converted to Cold Damage", statOrder = { 1160, 1836 }, level = 54, group = "WeaponTreeLocalPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowColdConvert4"] = { type = "Spawn", tier = 4, "Adds 3 to 7 Physical Damage", "15% of Physical Damage Converted to Cold Damage", statOrder = { 1160, 1836 }, level = 72, group = "WeaponTreeLocalPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowColdConvert5"] = { type = "Spawn", tier = 5, "Adds 5 to 8 Physical Damage", "15% of Physical Damage Converted to Cold Damage", statOrder = { 1160, 1836 }, level = 84, group = "WeaponTreeLocalPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 25, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowColdConvert1"] = { type = "Spawn", tier = 1, "Adds 2 to 6 Physical Damage", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1160, 1836 }, level = 10, group = "WeaponTreeLocalPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowColdConvert2"] = { type = "Spawn", tier = 2, "Adds 3 to 8 Physical Damage", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1160, 1836 }, level = 31, group = "WeaponTreeLocalPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowColdConvert3"] = { type = "Spawn", tier = 3, "Adds 3 to 10 Physical Damage", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1160, 1836 }, level = 54, group = "WeaponTreeLocalPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowColdConvert4"] = { type = "Spawn", tier = 4, "Adds 5 to 13 Physical Damage", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1160, 1836 }, level = 72, group = "WeaponTreeLocalPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowColdConvert5"] = { type = "Spawn", tier = 5, "Adds 6 to 15 Physical Damage", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1160, 1836 }, level = 84, group = "WeaponTreeLocalPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 25, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowLightningConvert1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage", "15% of Physical Damage Converted to Lightning Damage", statOrder = { 1160, 1838 }, level = 10, group = "WeaponTreeLocalPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowLightningConvert2"] = { type = "Spawn", tier = 2, "Adds 1 to 4 Physical Damage", "15% of Physical Damage Converted to Lightning Damage", statOrder = { 1160, 1838 }, level = 31, group = "WeaponTreeLocalPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowLightningConvert3"] = { type = "Spawn", tier = 3, "Adds 2 to 6 Physical Damage", "15% of Physical Damage Converted to Lightning Damage", statOrder = { 1160, 1838 }, level = 54, group = "WeaponTreeLocalPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowLightningConvert4"] = { type = "Spawn", tier = 4, "Adds 3 to 7 Physical Damage", "15% of Physical Damage Converted to Lightning Damage", statOrder = { 1160, 1838 }, level = 72, group = "WeaponTreeLocalPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowLightningConvert5"] = { type = "Spawn", tier = 5, "Adds 5 to 8 Physical Damage", "15% of Physical Damage Converted to Lightning Damage", statOrder = { 1160, 1838 }, level = 84, group = "WeaponTreeLocalPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 25, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowLightningConvert1"] = { type = "Spawn", tier = 1, "Adds 2 to 6 Physical Damage", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1160, 1838 }, level = 10, group = "WeaponTreeLocalPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowLightningConvert2"] = { type = "Spawn", tier = 2, "Adds 3 to 8 Physical Damage", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1160, 1838 }, level = 31, group = "WeaponTreeLocalPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowLightningConvert3"] = { type = "Spawn", tier = 3, "Adds 3 to 10 Physical Damage", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1160, 1838 }, level = 54, group = "WeaponTreeLocalPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowLightningConvert4"] = { type = "Spawn", tier = 4, "Adds 5 to 13 Physical Damage", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1160, 1838 }, level = 72, group = "WeaponTreeLocalPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowLightningConvert5"] = { type = "Spawn", tier = 5, "Adds 6 to 15 Physical Damage", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1160, 1838 }, level = 84, group = "WeaponTreeLocalPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 25, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowChaosConvert1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage", "15% of Physical Damage Converted to Chaos Damage", statOrder = { 1160, 1841 }, level = 13, group = "WeaponTreeLocalPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowChaosConvert2"] = { type = "Spawn", tier = 2, "Adds 1 to 4 Physical Damage", "15% of Physical Damage Converted to Chaos Damage", statOrder = { 1160, 1841 }, level = 27, group = "WeaponTreeLocalPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowChaosConvert3"] = { type = "Spawn", tier = 3, "Adds 2 to 6 Physical Damage", "15% of Physical Damage Converted to Chaos Damage", statOrder = { 1160, 1841 }, level = 57, group = "WeaponTreeLocalPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowChaosConvert4"] = { type = "Spawn", tier = 4, "Adds 3 to 7 Physical Damage", "15% of Physical Damage Converted to Chaos Damage", statOrder = { 1160, 1841 }, level = 74, group = "WeaponTreeLocalPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 25, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowChaosConvert5"] = { type = "Spawn", tier = 5, "Adds 5 to 8 Physical Damage", "15% of Physical Damage Converted to Chaos Damage", statOrder = { 1160, 1841 }, level = 85, group = "WeaponTreeLocalPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 12, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowChaosConvert1"] = { type = "Spawn", tier = 1, "Adds 2 to 6 Physical Damage", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1160, 1841 }, level = 13, group = "WeaponTreeLocalPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowChaosConvert2"] = { type = "Spawn", tier = 2, "Adds 3 to 8 Physical Damage", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1160, 1841 }, level = 27, group = "WeaponTreeLocalPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowChaosConvert3"] = { type = "Spawn", tier = 3, "Adds 3 to 10 Physical Damage", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1160, 1841 }, level = 57, group = "WeaponTreeLocalPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowChaosConvert4"] = { type = "Spawn", tier = 4, "Adds 5 to 13 Physical Damage", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1160, 1841 }, level = 74, group = "WeaponTreeLocalPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 25, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowChaosConvert5"] = { type = "Spawn", tier = 5, "Adds 6 to 15 Physical Damage", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1160, 1841 }, level = 85, group = "WeaponTreeLocalPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 12, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowRandomElementConvert1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage", "20% of Physical Damage converted to a random Element", statOrder = { 1160, 1840 }, level = 13, group = "WeaponTreeLocalPhysicalDamageAndRandomElementConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowRandomElementConvert2"] = { type = "Spawn", tier = 2, "Adds 1 to 4 Physical Damage", "20% of Physical Damage converted to a random Element", statOrder = { 1160, 1840 }, level = 27, group = "WeaponTreeLocalPhysicalDamageAndRandomElementConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowRandomElementConvert3"] = { type = "Spawn", tier = 3, "Adds 2 to 6 Physical Damage", "20% of Physical Damage converted to a random Element", statOrder = { 1160, 1840 }, level = 57, group = "WeaponTreeLocalPhysicalDamageAndRandomElementConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowRandomElementConvert4"] = { type = "Spawn", tier = 4, "Adds 3 to 7 Physical Damage", "20% of Physical Damage converted to a random Element", statOrder = { 1160, 1840 }, level = 74, group = "WeaponTreeLocalPhysicalDamageAndRandomElementConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 25, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowRandomElementConvert5"] = { type = "Spawn", tier = 5, "Adds 5 to 8 Physical Damage", "20% of Physical Damage converted to a random Element", statOrder = { 1160, 1840 }, level = 85, group = "WeaponTreeLocalPhysicalDamageAndRandomElementConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 12, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowRandomElementConvert1"] = { type = "Spawn", tier = 1, "Adds 2 to 6 Physical Damage", "35% of Physical Damage converted to a random Element", statOrder = { 1160, 1840 }, level = 13, group = "WeaponTreeLocalPhysicalDamageAndRandomElementConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowRandomElementConvert2"] = { type = "Spawn", tier = 2, "Adds 3 to 8 Physical Damage", "35% of Physical Damage converted to a random Element", statOrder = { 1160, 1840 }, level = 27, group = "WeaponTreeLocalPhysicalDamageAndRandomElementConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowRandomElementConvert3"] = { type = "Spawn", tier = 3, "Adds 3 to 10 Physical Damage", "35% of Physical Damage converted to a random Element", statOrder = { 1160, 1840 }, level = 57, group = "WeaponTreeLocalPhysicalDamageAndRandomElementConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowRandomElementConvert4"] = { type = "Spawn", tier = 4, "Adds 5 to 13 Physical Damage", "35% of Physical Damage converted to a random Element", statOrder = { 1160, 1840 }, level = 74, group = "WeaponTreeLocalPhysicalDamageAndRandomElementConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 25, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowRandomElementConvert5"] = { type = "Spawn", tier = 5, "Adds 6 to 15 Physical Damage", "35% of Physical Damage converted to a random Element", statOrder = { 1160, 1840 }, level = 85, group = "WeaponTreeLocalPhysicalDamageAndRandomElementConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 12, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowBleedChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage", "15% chance to cause Bleeding on Hit", statOrder = { 1160, 2359 }, level = 1, group = "WeaponTreeLocalPhysicalDamageAndBleedChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowBleedChance2"] = { type = "Spawn", tier = 2, "Adds 1 to 4 Physical Damage", "15% chance to cause Bleeding on Hit", statOrder = { 1160, 2359 }, level = 21, group = "WeaponTreeLocalPhysicalDamageAndBleedChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowBleedChance3"] = { type = "Spawn", tier = 3, "Adds 2 to 6 Physical Damage", "15% chance to cause Bleeding on Hit", statOrder = { 1160, 2359 }, level = 46, group = "WeaponTreeLocalPhysicalDamageAndBleedChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowBleedChance4"] = { type = "Spawn", tier = 4, "Adds 3 to 7 Physical Damage", "15% chance to cause Bleeding on Hit", statOrder = { 1160, 2359 }, level = 65, group = "WeaponTreeLocalPhysicalDamageAndBleedChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowBleedChance5"] = { type = "Spawn", tier = 5, "Adds 5 to 8 Physical Damage", "15% chance to cause Bleeding on Hit", statOrder = { 1160, 2359 }, level = 77, group = "WeaponTreeLocalPhysicalDamageAndBleedChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowBleedChance1"] = { type = "Spawn", tier = 1, "Adds 2 to 6 Physical Damage", "15% chance to cause Bleeding on Hit", statOrder = { 1160, 2359 }, level = 1, group = "WeaponTreeLocalPhysicalDamageAndBleedChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowBleedChance2"] = { type = "Spawn", tier = 2, "Adds 3 to 8 Physical Damage", "15% chance to cause Bleeding on Hit", statOrder = { 1160, 2359 }, level = 21, group = "WeaponTreeLocalPhysicalDamageAndBleedChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowBleedChance3"] = { type = "Spawn", tier = 3, "Adds 3 to 10 Physical Damage", "15% chance to cause Bleeding on Hit", statOrder = { 1160, 2359 }, level = 46, group = "WeaponTreeLocalPhysicalDamageAndBleedChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowBleedChance4"] = { type = "Spawn", tier = 4, "Adds 5 to 13 Physical Damage", "15% chance to cause Bleeding on Hit", statOrder = { 1160, 2359 }, level = 65, group = "WeaponTreeLocalPhysicalDamageAndBleedChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowBleedChance5"] = { type = "Spawn", tier = 5, "Adds 6 to 15 Physical Damage", "15% chance to cause Bleeding on Hit", statOrder = { 1160, 2359 }, level = 77, group = "WeaponTreeLocalPhysicalDamageAndBleedChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowImpaleChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage", "15% chance to Impale Enemies on Hit with Attacks", statOrder = { 1160, 7467 }, level = 1, group = "WeaponTreeLocalPhysicalDamageAndImpaleChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowImpaleChance2"] = { type = "Spawn", tier = 2, "Adds 1 to 4 Physical Damage", "15% chance to Impale Enemies on Hit with Attacks", statOrder = { 1160, 7467 }, level = 21, group = "WeaponTreeLocalPhysicalDamageAndImpaleChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowImpaleChance3"] = { type = "Spawn", tier = 3, "Adds 2 to 6 Physical Damage", "15% chance to Impale Enemies on Hit with Attacks", statOrder = { 1160, 7467 }, level = 46, group = "WeaponTreeLocalPhysicalDamageAndImpaleChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowImpaleChance4"] = { type = "Spawn", tier = 4, "Adds 3 to 7 Physical Damage", "15% chance to Impale Enemies on Hit with Attacks", statOrder = { 1160, 7467 }, level = 65, group = "WeaponTreeLocalPhysicalDamageAndImpaleChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysicalLowImpaleChance5"] = { type = "Spawn", tier = 5, "Adds 5 to 8 Physical Damage", "15% chance to Impale Enemies on Hit with Attacks", statOrder = { 1160, 7467 }, level = 77, group = "WeaponTreeLocalPhysicalDamageAndImpaleChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowImpaleChance1"] = { type = "Spawn", tier = 1, "Adds 2 to 6 Physical Damage", "15% chance to Impale Enemies on Hit with Attacks", statOrder = { 1160, 7467 }, level = 1, group = "WeaponTreeLocalPhysicalDamageAndImpaleChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowImpaleChance2"] = { type = "Spawn", tier = 2, "Adds 3 to 8 Physical Damage", "15% chance to Impale Enemies on Hit with Attacks", statOrder = { 1160, 7467 }, level = 21, group = "WeaponTreeLocalPhysicalDamageAndImpaleChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowImpaleChance3"] = { type = "Spawn", tier = 3, "Adds 3 to 10 Physical Damage", "15% chance to Impale Enemies on Hit with Attacks", statOrder = { 1160, 7467 }, level = 46, group = "WeaponTreeLocalPhysicalDamageAndImpaleChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowImpaleChance4"] = { type = "Spawn", tier = 4, "Adds 5 to 13 Physical Damage", "15% chance to Impale Enemies on Hit with Attacks", statOrder = { 1160, 7467 }, level = 65, group = "WeaponTreeLocalPhysicalDamageAndImpaleChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedPhysical2hLowImpaleChance5"] = { type = "Spawn", tier = 5, "Adds 6 to 15 Physical Damage", "15% chance to Impale Enemies on Hit with Attacks", statOrder = { 1160, 7467 }, level = 77, group = "WeaponTreeLocalPhysicalDamageAndImpaleChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeAddedFireHighReducedAttackSpeed1"] = { type = "Spawn", tier = 1, "Adds 5 to 9 Fire Damage", "6% reduced Attack Speed", statOrder = { 1246, 1297 }, level = 1, group = "WeaponTreeLocalFireDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedFireHighReducedAttackSpeed2"] = { type = "Spawn", tier = 2, "Adds 9 to 13 Fire Damage", "6% reduced Attack Speed", statOrder = { 1246, 1297 }, level = 26, group = "WeaponTreeLocalFireDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedFireHighReducedAttackSpeed3"] = { type = "Spawn", tier = 3, "Adds 16 to 26 Fire Damage", "6% reduced Attack Speed", statOrder = { 1246, 1297 }, level = 42, group = "WeaponTreeLocalFireDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedFireHighReducedAttackSpeed4"] = { type = "Spawn", tier = 4, "Adds 27 to 42 Fire Damage", "6% reduced Attack Speed", statOrder = { 1246, 1297 }, level = 62, group = "WeaponTreeLocalFireDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedFireHighReducedAttackSpeed5"] = { type = "Spawn", tier = 5, "Adds 55 to 83 Fire Damage", "6% reduced Attack Speed", statOrder = { 1246, 1297 }, level = 82, group = "WeaponTreeLocalFireDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedFire2hHighReducedAttackSpeed1"] = { type = "Spawn", tier = 1, "Adds 9 to 14 Fire Damage", "6% reduced Attack Speed", statOrder = { 1246, 1297 }, level = 1, group = "WeaponTreeLocalFireDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedFire2hHighReducedAttackSpeed2"] = { type = "Spawn", tier = 2, "Adds 16 to 24 Fire Damage", "6% reduced Attack Speed", statOrder = { 1246, 1297 }, level = 26, group = "WeaponTreeLocalFireDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedFire2hHighReducedAttackSpeed3"] = { type = "Spawn", tier = 3, "Adds 30 to 47 Fire Damage", "6% reduced Attack Speed", statOrder = { 1246, 1297 }, level = 42, group = "WeaponTreeLocalFireDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedFire2hHighReducedAttackSpeed4"] = { type = "Spawn", tier = 4, "Adds 52 to 77 Fire Damage", "6% reduced Attack Speed", statOrder = { 1246, 1297 }, level = 62, group = "WeaponTreeLocalFireDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedFire2hHighReducedAttackSpeed5"] = { type = "Spawn", tier = 5, "Adds 102 to 153 Fire Damage", "6% reduced Attack Speed", statOrder = { 1246, 1297 }, level = 82, group = "WeaponTreeLocalFireDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedFire1"] = { type = "Spawn", tier = 1, "Adds 4 to 6 Fire Damage", statOrder = { 1246 }, level = 1, group = "WeaponTreeLocalFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeAddedFire2"] = { type = "Spawn", tier = 2, "Adds 7 to 10 Fire Damage", statOrder = { 1246 }, level = 26, group = "WeaponTreeLocalFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeAddedFire3"] = { type = "Spawn", tier = 3, "Adds 13 to 18 Fire Damage", statOrder = { 1246 }, level = 42, group = "WeaponTreeLocalFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeAddedFire4"] = { type = "Spawn", tier = 4, "Adds 22 to 32 Fire Damage", statOrder = { 1246 }, level = 62, group = "WeaponTreeLocalFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeAddedFire5"] = { type = "Spawn", tier = 5, "Adds 42 to 63 Fire Damage", statOrder = { 1246 }, level = 82, group = "WeaponTreeLocalFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedFire2h1"] = { type = "Spawn", tier = 1, "Adds 8 to 10 Fire Damage", statOrder = { 1246 }, level = 1, group = "WeaponTreeLocalFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeAddedFire2h2"] = { type = "Spawn", tier = 2, "Adds 13 to 19 Fire Damage", statOrder = { 1246 }, level = 26, group = "WeaponTreeLocalFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeAddedFire2h3"] = { type = "Spawn", tier = 3, "Adds 24 to 35 Fire Damage", statOrder = { 1246 }, level = 42, group = "WeaponTreeLocalFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeAddedFire2h4"] = { type = "Spawn", tier = 4, "Adds 39 to 61 Fire Damage", statOrder = { 1246 }, level = 62, group = "WeaponTreeLocalFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeAddedFire2h5"] = { type = "Spawn", tier = 5, "Adds 78 to 118 Fire Damage", statOrder = { 1246 }, level = 82, group = "WeaponTreeLocalFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedFireLowIgniteChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 5 Fire Damage", "10% chance to Ignite", statOrder = { 1246, 1903 }, level = 1, group = "WeaponTreeLocalFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedFireLowIgniteChance2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Fire Damage", "10% chance to Ignite", statOrder = { 1246, 1903 }, level = 26, group = "WeaponTreeLocalFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedFireLowIgniteChance3"] = { type = "Spawn", tier = 3, "Adds 7 to 12 Fire Damage", "10% chance to Ignite", statOrder = { 1246, 1903 }, level = 42, group = "WeaponTreeLocalFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedFireLowIgniteChance4"] = { type = "Spawn", tier = 4, "Adds 12 to 19 Fire Damage", "10% chance to Ignite", statOrder = { 1246, 1903 }, level = 62, group = "WeaponTreeLocalFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedFireLowIgniteChance5"] = { type = "Spawn", tier = 5, "Adds 25 to 39 Fire Damage", "10% chance to Ignite", statOrder = { 1246, 1903 }, level = 82, group = "WeaponTreeLocalFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeAddedFire2hLowIgniteChance1"] = { type = "Spawn", tier = 1, "Adds 4 to 9 Fire Damage", "20% chance to Ignite", statOrder = { 1246, 1903 }, level = 1, group = "WeaponTreeLocalFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedFire2hLowIgniteChance2"] = { type = "Spawn", tier = 2, "Adds 7 to 11 Fire Damage", "20% chance to Ignite", statOrder = { 1246, 1903 }, level = 26, group = "WeaponTreeLocalFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedFire2hLowIgniteChance3"] = { type = "Spawn", tier = 3, "Adds 13 to 22 Fire Damage", "20% chance to Ignite", statOrder = { 1246, 1903 }, level = 42, group = "WeaponTreeLocalFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedFire2hLowIgniteChance4"] = { type = "Spawn", tier = 4, "Adds 23 to 36 Fire Damage", "20% chance to Ignite", statOrder = { 1246, 1903 }, level = 62, group = "WeaponTreeLocalFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedFire2hLowIgniteChance5"] = { type = "Spawn", tier = 5, "Adds 48 to 71 Fire Damage", "20% chance to Ignite", statOrder = { 1246, 1903 }, level = 82, group = "WeaponTreeLocalFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeAddedFireLowImplicitEffect1"] = { type = "Spawn", tier = 1, "25% increased Implicit Modifier magnitudes", "Adds 1 to 5 Fire Damage", statOrder = { 40, 1246 }, level = 10, group = "WeaponTreeLocalFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedFireLowImplicitEffect2"] = { type = "Spawn", tier = 2, "25% increased Implicit Modifier magnitudes", "Adds 3 to 6 Fire Damage", statOrder = { 40, 1246 }, level = 30, group = "WeaponTreeLocalFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedFireLowImplicitEffect3"] = { type = "Spawn", tier = 3, "25% increased Implicit Modifier magnitudes", "Adds 7 to 12 Fire Damage", statOrder = { 40, 1246 }, level = 48, group = "WeaponTreeLocalFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedFireLowImplicitEffect4"] = { type = "Spawn", tier = 4, "25% increased Implicit Modifier magnitudes", "Adds 12 to 19 Fire Damage", statOrder = { 40, 1246 }, level = 66, group = "WeaponTreeLocalFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedFireLowImplicitEffect5"] = { type = "Spawn", tier = 5, "25% increased Implicit Modifier magnitudes", "Adds 25 to 39 Fire Damage", statOrder = { 40, 1246 }, level = 84, group = "WeaponTreeLocalFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeAddedFire2hLowImplicitEffect1"] = { type = "Spawn", tier = 1, "25% increased Implicit Modifier magnitudes", "Adds 4 to 9 Fire Damage", statOrder = { 40, 1246 }, level = 10, group = "WeaponTreeLocalFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedFire2hLowImplicitEffect2"] = { type = "Spawn", tier = 2, "25% increased Implicit Modifier magnitudes", "Adds 7 to 11 Fire Damage", statOrder = { 40, 1246 }, level = 30, group = "WeaponTreeLocalFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedFire2hLowImplicitEffect3"] = { type = "Spawn", tier = 3, "25% increased Implicit Modifier magnitudes", "Adds 13 to 22 Fire Damage", statOrder = { 40, 1246 }, level = 48, group = "WeaponTreeLocalFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedFire2hLowImplicitEffect4"] = { type = "Spawn", tier = 4, "25% increased Implicit Modifier magnitudes", "Adds 23 to 36 Fire Damage", statOrder = { 40, 1246 }, level = 66, group = "WeaponTreeLocalFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedFire2hLowImplicitEffect5"] = { type = "Spawn", tier = 5, "25% increased Implicit Modifier magnitudes", "Adds 48 to 71 Fire Damage", statOrder = { 40, 1246 }, level = 84, group = "WeaponTreeLocalFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeAddedColdHighCannotChill1"] = { type = "Spawn", tier = 1, "Adds 4 to 9 Cold Damage", "Your Cold Damage cannot Chill", statOrder = { 1255, 2760 }, level = 1, group = "WeaponTreeLocalColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedColdHighCannotChill2"] = { type = "Spawn", tier = 2, "Adds 7 to 11 Cold Damage", "Your Cold Damage cannot Chill", statOrder = { 1255, 2760 }, level = 26, group = "WeaponTreeLocalColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedColdHighCannotChill3"] = { type = "Spawn", tier = 3, "Adds 15 to 24 Cold Damage", "Your Cold Damage cannot Chill", statOrder = { 1255, 2760 }, level = 42, group = "WeaponTreeLocalColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedColdHighCannotChill4"] = { type = "Spawn", tier = 4, "Adds 26 to 39 Cold Damage", "Your Cold Damage cannot Chill", statOrder = { 1255, 2760 }, level = 62, group = "WeaponTreeLocalColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedColdHighCannotChill5"] = { type = "Spawn", tier = 5, "Adds 52 to 78 Cold Damage", "Your Cold Damage cannot Chill", statOrder = { 1255, 2760 }, level = 82, group = "WeaponTreeLocalColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedCold2hHighCannotChill1"] = { type = "Spawn", tier = 1, "Adds 8 to 14 Cold Damage", "Your Cold Damage cannot Chill", statOrder = { 1255, 2760 }, level = 1, group = "WeaponTreeLocalColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedCold2hHighCannotChill2"] = { type = "Spawn", tier = 2, "Adds 14 to 23 Cold Damage", "Your Cold Damage cannot Chill", statOrder = { 1255, 2760 }, level = 26, group = "WeaponTreeLocalColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedCold2hHighCannotChill3"] = { type = "Spawn", tier = 3, "Adds 28 to 44 Cold Damage", "Your Cold Damage cannot Chill", statOrder = { 1255, 2760 }, level = 42, group = "WeaponTreeLocalColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedCold2hHighCannotChill4"] = { type = "Spawn", tier = 4, "Adds 47 to 73 Cold Damage", "Your Cold Damage cannot Chill", statOrder = { 1255, 2760 }, level = 62, group = "WeaponTreeLocalColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedCold2hHighCannotChill5"] = { type = "Spawn", tier = 5, "Adds 95 to 144 Cold Damage", "Your Cold Damage cannot Chill", statOrder = { 1255, 2760 }, level = 82, group = "WeaponTreeLocalColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedCold1"] = { type = "Spawn", tier = 1, "Adds 4 to 6 Cold Damage", statOrder = { 1255 }, level = 1, group = "WeaponTreeLocalColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeAddedCold2"] = { type = "Spawn", tier = 2, "Adds 5 to 10 Cold Damage", statOrder = { 1255 }, level = 26, group = "WeaponTreeLocalColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeAddedCold3"] = { type = "Spawn", tier = 3, "Adds 12 to 18 Cold Damage", statOrder = { 1255 }, level = 42, group = "WeaponTreeLocalColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeAddedCold4"] = { type = "Spawn", tier = 4, "Adds 19 to 30 Cold Damage", statOrder = { 1255 }, level = 62, group = "WeaponTreeLocalColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeAddedCold5"] = { type = "Spawn", tier = 5, "Adds 41 to 60 Cold Damage", statOrder = { 1255 }, level = 82, group = "WeaponTreeLocalColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedCold2h1"] = { type = "Spawn", tier = 1, "Adds 5 to 10 Cold Damage", statOrder = { 1255 }, level = 1, group = "WeaponTreeLocalColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeAddedCold2h2"] = { type = "Spawn", tier = 2, "Adds 10 to 17 Cold Damage", statOrder = { 1255 }, level = 26, group = "WeaponTreeLocalColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeAddedCold2h3"] = { type = "Spawn", tier = 3, "Adds 21 to 34 Cold Damage", statOrder = { 1255 }, level = 42, group = "WeaponTreeLocalColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeAddedCold2h4"] = { type = "Spawn", tier = 4, "Adds 37 to 55 Cold Damage", statOrder = { 1255 }, level = 62, group = "WeaponTreeLocalColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeAddedCold2h5"] = { type = "Spawn", tier = 5, "Adds 74 to 111 Cold Damage", statOrder = { 1255 }, level = 82, group = "WeaponTreeLocalColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedColdLowFreezeChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 5 Cold Damage", "10% chance to Freeze", statOrder = { 1255, 1906 }, level = 1, group = "WeaponTreeLocalColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedColdLowFreezeChance2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Cold Damage", "10% chance to Freeze", statOrder = { 1255, 1906 }, level = 26, group = "WeaponTreeLocalColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedColdLowFreezeChance3"] = { type = "Spawn", tier = 3, "Adds 7 to 10 Cold Damage", "10% chance to Freeze", statOrder = { 1255, 1906 }, level = 42, group = "WeaponTreeLocalColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedColdLowFreezeChance4"] = { type = "Spawn", tier = 4, "Adds 12 to 19 Cold Damage", "10% chance to Freeze", statOrder = { 1255, 1906 }, level = 62, group = "WeaponTreeLocalColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedColdLowFreezeChance5"] = { type = "Spawn", tier = 5, "Adds 24 to 35 Cold Damage", "10% chance to Freeze", statOrder = { 1255, 1906 }, level = 82, group = "WeaponTreeLocalColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeAddedCold2hLowFreezeChance1"] = { type = "Spawn", tier = 1, "Adds 4 to 6 Cold Damage", "20% chance to Freeze", statOrder = { 1255, 1906 }, level = 1, group = "WeaponTreeLocalColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedCold2hLowFreezeChance2"] = { type = "Spawn", tier = 2, "Adds 7 to 11 Cold Damage", "20% chance to Freeze", statOrder = { 1255, 1906 }, level = 26, group = "WeaponTreeLocalColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedCold2hLowFreezeChance3"] = { type = "Spawn", tier = 3, "Adds 13 to 21 Cold Damage", "20% chance to Freeze", statOrder = { 1255, 1906 }, level = 42, group = "WeaponTreeLocalColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedCold2hLowFreezeChance4"] = { type = "Spawn", tier = 4, "Adds 23 to 35 Cold Damage", "20% chance to Freeze", statOrder = { 1255, 1906 }, level = 62, group = "WeaponTreeLocalColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedCold2hLowFreezeChance5"] = { type = "Spawn", tier = 5, "Adds 45 to 66 Cold Damage", "20% chance to Freeze", statOrder = { 1255, 1906 }, level = 82, group = "WeaponTreeLocalColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeAddedColdLowAttackSpeed1"] = { type = "Spawn", tier = 1, "Adds 1 to 5 Cold Damage", "4% increased Attack Speed", statOrder = { 1255, 1297 }, level = 10, group = "WeaponTreeLocalColdDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedColdLowAttackSpeed2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Cold Damage", "4% increased Attack Speed", statOrder = { 1255, 1297 }, level = 30, group = "WeaponTreeLocalColdDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedColdLowAttackSpeed3"] = { type = "Spawn", tier = 3, "Adds 7 to 10 Cold Damage", "4% increased Attack Speed", statOrder = { 1255, 1297 }, level = 48, group = "WeaponTreeLocalColdDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedColdLowAttackSpeed4"] = { type = "Spawn", tier = 4, "Adds 12 to 19 Cold Damage", "4% increased Attack Speed", statOrder = { 1255, 1297 }, level = 66, group = "WeaponTreeLocalColdDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedColdLowAttackSpeed5"] = { type = "Spawn", tier = 5, "Adds 24 to 35 Cold Damage", "4% increased Attack Speed", statOrder = { 1255, 1297 }, level = 84, group = "WeaponTreeLocalColdDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeAddedCold2hLowAttackSpeed1"] = { type = "Spawn", tier = 1, "Adds 4 to 6 Cold Damage", "4% increased Attack Speed", statOrder = { 1255, 1297 }, level = 10, group = "WeaponTreeLocalColdDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedCold2hLowAttackSpeed2"] = { type = "Spawn", tier = 2, "Adds 7 to 11 Cold Damage", "4% increased Attack Speed", statOrder = { 1255, 1297 }, level = 30, group = "WeaponTreeLocalColdDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedCold2hLowAttackSpeed3"] = { type = "Spawn", tier = 3, "Adds 13 to 21 Cold Damage", "4% increased Attack Speed", statOrder = { 1255, 1297 }, level = 48, group = "WeaponTreeLocalColdDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedCold2hLowAttackSpeed4"] = { type = "Spawn", tier = 4, "Adds 23 to 35 Cold Damage", "4% increased Attack Speed", statOrder = { 1255, 1297 }, level = 66, group = "WeaponTreeLocalColdDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedCold2hLowAttackSpeed5"] = { type = "Spawn", tier = 5, "Adds 45 to 66 Cold Damage", "4% increased Attack Speed", statOrder = { 1255, 1297 }, level = 84, group = "WeaponTreeLocalColdDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightningHighIncreasedDamageTaken1"] = { type = "Spawn", tier = 1, "Adds 1 to 12 Lightning Damage", "4% increased Lightning Damage taken", statOrder = { 1266, 3254 }, level = 1, group = "WeaponTreeLocalLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightningHighIncreasedDamageTaken2"] = { type = "Spawn", tier = 2, "Adds 1 to 20 Lightning Damage", "4% increased Lightning Damage taken", statOrder = { 1266, 3254 }, level = 26, group = "WeaponTreeLocalLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightningHighIncreasedDamageTaken3"] = { type = "Spawn", tier = 3, "Adds 1 to 41 Lightning Damage", "4% increased Lightning Damage taken", statOrder = { 1266, 3254 }, level = 42, group = "WeaponTreeLocalLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightningHighIncreasedDamageTaken4"] = { type = "Spawn", tier = 4, "Adds 3 to 66 Lightning Damage", "4% increased Lightning Damage taken", statOrder = { 1266, 3254 }, level = 62, group = "WeaponTreeLocalLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightningHighIncreasedDamageTaken5"] = { type = "Spawn", tier = 5, "Adds 7 to 132 Lightning Damage", "4% increased Lightning Damage taken", statOrder = { 1266, 3254 }, level = 82, group = "WeaponTreeLocalLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightning2hHighIncreasedDamageTaken1"] = { type = "Spawn", tier = 1, "Adds 1 to 21 Lightning Damage", "6% increased Lightning Damage taken", statOrder = { 1266, 3254 }, level = 1, group = "WeaponTreeLocalLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightning2hHighIncreasedDamageTaken2"] = { type = "Spawn", tier = 2, "Adds 1 to 38 Lightning Damage", "6% increased Lightning Damage taken", statOrder = { 1266, 3254 }, level = 26, group = "WeaponTreeLocalLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightning2hHighIncreasedDamageTaken3"] = { type = "Spawn", tier = 3, "Adds 3 to 75 Lightning Damage", "6% increased Lightning Damage taken", statOrder = { 1266, 3254 }, level = 42, group = "WeaponTreeLocalLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightning2hHighIncreasedDamageTaken4"] = { type = "Spawn", tier = 4, "Adds 6 to 124 Lightning Damage", "6% increased Lightning Damage taken", statOrder = { 1266, 3254 }, level = 62, group = "WeaponTreeLocalLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightning2hHighIncreasedDamageTaken5"] = { type = "Spawn", tier = 5, "Adds 13 to 242 Lightning Damage", "6% increased Lightning Damage taken", statOrder = { 1266, 3254 }, level = 82, group = "WeaponTreeLocalLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightning1"] = { type = "Spawn", tier = 1, "Adds 1 to 9 Lightning Damage", statOrder = { 1266 }, level = 1, group = "WeaponTreeLocalLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightning2"] = { type = "Spawn", tier = 2, "Adds 1 to 17 Lightning Damage", statOrder = { 1266 }, level = 26, group = "WeaponTreeLocalLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightning3"] = { type = "Spawn", tier = 3, "Adds 1 to 30 Lightning Damage", statOrder = { 1266 }, level = 42, group = "WeaponTreeLocalLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightning4"] = { type = "Spawn", tier = 4, "Adds 3 to 51 Lightning Damage", statOrder = { 1266 }, level = 62, group = "WeaponTreeLocalLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightning5"] = { type = "Spawn", tier = 5, "Adds 6 to 101 Lightning Damage", statOrder = { 1266 }, level = 82, group = "WeaponTreeLocalLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightning2h1"] = { type = "Spawn", tier = 1, "Adds 1 to 16 Lightning Damage", statOrder = { 1266 }, level = 1, group = "WeaponTreeLocalLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightning2h2"] = { type = "Spawn", tier = 2, "Adds 1 to 29 Lightning Damage", statOrder = { 1266 }, level = 26, group = "WeaponTreeLocalLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightning2h3"] = { type = "Spawn", tier = 3, "Adds 3 to 58 Lightning Damage", statOrder = { 1266 }, level = 42, group = "WeaponTreeLocalLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightning2h4"] = { type = "Spawn", tier = 4, "Adds 4 to 94 Lightning Damage", statOrder = { 1266 }, level = 62, group = "WeaponTreeLocalLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightning2h5"] = { type = "Spawn", tier = 5, "Adds 10 to 186 Lightning Damage", statOrder = { 1266 }, level = 82, group = "WeaponTreeLocalLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightningLowShockChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 6 Lightning Damage", "10% chance to Shock", statOrder = { 1266, 1910 }, level = 1, group = "WeaponTreeLocalLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightningLowShockChance2"] = { type = "Spawn", tier = 2, "Adds 1 to 10 Lightning Damage", "10% chance to Shock", statOrder = { 1266, 1910 }, level = 26, group = "WeaponTreeLocalLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightningLowShockChance3"] = { type = "Spawn", tier = 3, "Adds 1 to 18 Lightning Damage", "10% chance to Shock", statOrder = { 1266, 1910 }, level = 42, group = "WeaponTreeLocalLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightningLowShockChance4"] = { type = "Spawn", tier = 4, "Adds 3 to 31 Lightning Damage", "10% chance to Shock", statOrder = { 1266, 1910 }, level = 62, group = "WeaponTreeLocalLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightningLowShockChance5"] = { type = "Spawn", tier = 5, "Adds 3 to 60 Lightning Damage", "10% chance to Shock", statOrder = { 1266, 1910 }, level = 82, group = "WeaponTreeLocalLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightning2hLowShockChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 10 Lightning Damage", "20% chance to Shock", statOrder = { 1266, 1910 }, level = 1, group = "WeaponTreeLocalLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightning2hLowShockChance2"] = { type = "Spawn", tier = 2, "Adds 1 to 19 Lightning Damage", "20% chance to Shock", statOrder = { 1266, 1910 }, level = 26, group = "WeaponTreeLocalLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightning2hLowShockChance3"] = { type = "Spawn", tier = 3, "Adds 3 to 34 Lightning Damage", "20% chance to Shock", statOrder = { 1266, 1910 }, level = 42, group = "WeaponTreeLocalLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightning2hLowShockChance4"] = { type = "Spawn", tier = 4, "Adds 4 to 58 Lightning Damage", "20% chance to Shock", statOrder = { 1266, 1910 }, level = 62, group = "WeaponTreeLocalLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightning2hLowShockChance5"] = { type = "Spawn", tier = 5, "Adds 6 to 112 Lightning Damage", "20% chance to Shock", statOrder = { 1266, 1910 }, level = 82, group = "WeaponTreeLocalLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightningLowCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 6 Lightning Damage", "10% increased Critical Strike Chance", statOrder = { 1266, 1348 }, level = 10, group = "WeaponTreeLocalLightningDamageAndCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightningLowCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "Adds 1 to 10 Lightning Damage", "10% increased Critical Strike Chance", statOrder = { 1266, 1348 }, level = 30, group = "WeaponTreeLocalLightningDamageAndCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightningLowCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "Adds 1 to 18 Lightning Damage", "10% increased Critical Strike Chance", statOrder = { 1266, 1348 }, level = 48, group = "WeaponTreeLocalLightningDamageAndCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightningLowCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "Adds 3 to 31 Lightning Damage", "10% increased Critical Strike Chance", statOrder = { 1266, 1348 }, level = 66, group = "WeaponTreeLocalLightningDamageAndCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightningLowCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "Adds 3 to 60 Lightning Damage", "10% increased Critical Strike Chance", statOrder = { 1266, 1348 }, level = 84, group = "WeaponTreeLocalLightningDamageAndCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightning2hLowCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 10 Lightning Damage", "10% increased Critical Strike Chance", statOrder = { 1266, 1348 }, level = 10, group = "WeaponTreeLocalLightningDamageAndCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightning2hLowCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "Adds 1 to 19 Lightning Damage", "10% increased Critical Strike Chance", statOrder = { 1266, 1348 }, level = 30, group = "WeaponTreeLocalLightningDamageAndCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightning2hLowCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "Adds 3 to 34 Lightning Damage", "10% increased Critical Strike Chance", statOrder = { 1266, 1348 }, level = 48, group = "WeaponTreeLocalLightningDamageAndCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightning2hLowCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "Adds 4 to 58 Lightning Damage", "10% increased Critical Strike Chance", statOrder = { 1266, 1348 }, level = 66, group = "WeaponTreeLocalLightningDamageAndCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightning2hLowCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "Adds 6 to 112 Lightning Damage", "10% increased Critical Strike Chance", statOrder = { 1266, 1348 }, level = 84, group = "WeaponTreeLocalLightningDamageAndCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaosHighReducedLife1"] = { type = "Spawn", tier = 1, "Adds 4 to 6 Chaos Damage", "5% reduced maximum Life", statOrder = { 1274, 1453 }, level = 8, group = "WeaponTreeLocalChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaosHighReducedLife2"] = { type = "Spawn", tier = 2, "Adds 7 to 10 Chaos Damage", "5% reduced maximum Life", statOrder = { 1274, 1453 }, level = 28, group = "WeaponTreeLocalChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaosHighReducedLife3"] = { type = "Spawn", tier = 3, "Adds 12 to 18 Chaos Damage", "5% reduced maximum Life", statOrder = { 1274, 1453 }, level = 44, group = "WeaponTreeLocalChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaosHighReducedLife4"] = { type = "Spawn", tier = 4, "Adds 19 to 31 Chaos Damage", "5% reduced maximum Life", statOrder = { 1274, 1453 }, level = 70, group = "WeaponTreeLocalChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaosHighReducedLife5"] = { type = "Spawn", tier = 5, "Adds 39 to 59 Chaos Damage", "5% reduced maximum Life", statOrder = { 1274, 1453 }, level = 85, group = "WeaponTreeLocalChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaos2hHighReducedLife1"] = { type = "Spawn", tier = 1, "Adds 5 to 10 Chaos Damage", "7% reduced maximum Life", statOrder = { 1274, 1453 }, level = 8, group = "WeaponTreeLocalChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaos2hHighReducedLife2"] = { type = "Spawn", tier = 2, "Adds 10 to 17 Chaos Damage", "7% reduced maximum Life", statOrder = { 1274, 1453 }, level = 28, group = "WeaponTreeLocalChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaos2hHighReducedLife3"] = { type = "Spawn", tier = 3, "Adds 20 to 30 Chaos Damage", "7% reduced maximum Life", statOrder = { 1274, 1453 }, level = 44, group = "WeaponTreeLocalChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaos2hHighReducedLife4"] = { type = "Spawn", tier = 4, "Adds 34 to 51 Chaos Damage", "7% reduced maximum Life", statOrder = { 1274, 1453 }, level = 70, group = "WeaponTreeLocalChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaos2hHighReducedLife5"] = { type = "Spawn", tier = 5, "Adds 66 to 99 Chaos Damage", "7% reduced maximum Life", statOrder = { 1274, 1453 }, level = 85, group = "WeaponTreeLocalChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaos1"] = { type = "Spawn", tier = 1, "Adds 1 to 6 Chaos Damage", statOrder = { 1274 }, level = 8, group = "WeaponTreeLocalChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaos2"] = { type = "Spawn", tier = 2, "Adds 3 to 8 Chaos Damage", statOrder = { 1274 }, level = 28, group = "WeaponTreeLocalChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaos3"] = { type = "Spawn", tier = 3, "Adds 8 to 14 Chaos Damage", statOrder = { 1274 }, level = 44, group = "WeaponTreeLocalChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaos4"] = { type = "Spawn", tier = 4, "Adds 15 to 24 Chaos Damage", statOrder = { 1274 }, level = 70, group = "WeaponTreeLocalChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaos5"] = { type = "Spawn", tier = 5, "Adds 29 to 46 Chaos Damage", statOrder = { 1274 }, level = 85, group = "WeaponTreeLocalChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaos2h1"] = { type = "Spawn", tier = 1, "Adds 4 to 6 Chaos Damage", statOrder = { 1274 }, level = 8, group = "WeaponTreeLocalChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaos2h2"] = { type = "Spawn", tier = 2, "Adds 7 to 13 Chaos Damage", statOrder = { 1274 }, level = 28, group = "WeaponTreeLocalChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaos2h3"] = { type = "Spawn", tier = 3, "Adds 15 to 24 Chaos Damage", statOrder = { 1274 }, level = 44, group = "WeaponTreeLocalChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaos2h4"] = { type = "Spawn", tier = 4, "Adds 26 to 39 Chaos Damage", statOrder = { 1274 }, level = 70, group = "WeaponTreeLocalChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaos2h5"] = { type = "Spawn", tier = 5, "Adds 50 to 77 Chaos Damage", statOrder = { 1274 }, level = 85, group = "WeaponTreeLocalChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaosLowPoisonChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 5 Chaos Damage", "15% chance to Poison on Hit", statOrder = { 1274, 7593 }, level = 8, group = "WeaponTreeLocalChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaosLowPoisonChance2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Chaos Damage", "15% chance to Poison on Hit", statOrder = { 1274, 7593 }, level = 28, group = "WeaponTreeLocalChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaosLowPoisonChance3"] = { type = "Spawn", tier = 3, "Adds 7 to 9 Chaos Damage", "15% chance to Poison on Hit", statOrder = { 1274, 7593 }, level = 44, group = "WeaponTreeLocalChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaosLowPoisonChance4"] = { type = "Spawn", tier = 4, "Adds 8 to 15 Chaos Damage", "15% chance to Poison on Hit", statOrder = { 1274, 7593 }, level = 70, group = "WeaponTreeLocalChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaosLowPoisonChance5"] = { type = "Spawn", tier = 5, "Adds 18 to 28 Chaos Damage", "15% chance to Poison on Hit", statOrder = { 1274, 7593 }, level = 85, group = "WeaponTreeLocalChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 31, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaos2hLowPoisonChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 5 Chaos Damage", "15% chance to Poison on Hit", statOrder = { 1274, 7593 }, level = 8, group = "WeaponTreeLocalChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaos2hLowPoisonChance2"] = { type = "Spawn", tier = 2, "Adds 5 to 8 Chaos Damage", "15% chance to Poison on Hit", statOrder = { 1274, 7593 }, level = 28, group = "WeaponTreeLocalChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaos2hLowPoisonChance3"] = { type = "Spawn", tier = 3, "Adds 9 to 14 Chaos Damage", "15% chance to Poison on Hit", statOrder = { 1274, 7593 }, level = 44, group = "WeaponTreeLocalChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaos2hLowPoisonChance4"] = { type = "Spawn", tier = 4, "Adds 15 to 24 Chaos Damage", "15% chance to Poison on Hit", statOrder = { 1274, 7593 }, level = 70, group = "WeaponTreeLocalChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaos2hLowPoisonChance5"] = { type = "Spawn", tier = 5, "Adds 31 to 46 Chaos Damage", "15% chance to Poison on Hit", statOrder = { 1274, 7593 }, level = 85, group = "WeaponTreeLocalChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 31, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaosLowWitheredEffect1"] = { type = "Spawn", tier = 1, "Adds 1 to 5 Chaos Damage", "10% increased Effect of Withered", statOrder = { 1274, 10090 }, level = 8, group = "WeaponTreeLocalChaosDamageAndWitheredEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaosLowWitheredEffect2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Chaos Damage", "10% increased Effect of Withered", statOrder = { 1274, 10090 }, level = 28, group = "WeaponTreeLocalChaosDamageAndWitheredEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaosLowWitheredEffect3"] = { type = "Spawn", tier = 3, "Adds 7 to 9 Chaos Damage", "10% increased Effect of Withered", statOrder = { 1274, 10090 }, level = 44, group = "WeaponTreeLocalChaosDamageAndWitheredEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaosLowWitheredEffect4"] = { type = "Spawn", tier = 4, "Adds 8 to 15 Chaos Damage", "10% increased Effect of Withered", statOrder = { 1274, 10090 }, level = 70, group = "WeaponTreeLocalChaosDamageAndWitheredEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaosLowWitheredEffect5"] = { type = "Spawn", tier = 5, "Adds 18 to 28 Chaos Damage", "10% increased Effect of Withered", statOrder = { 1274, 10090 }, level = 85, group = "WeaponTreeLocalChaosDamageAndWitheredEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 31, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaos2hLowWitheredEffect1"] = { type = "Spawn", tier = 1, "Adds 1 to 5 Chaos Damage", "20% increased Effect of Withered", statOrder = { 1274, 10090 }, level = 8, group = "WeaponTreeLocalChaosDamageAndWitheredEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaos2hLowWitheredEffect2"] = { type = "Spawn", tier = 2, "Adds 5 to 8 Chaos Damage", "20% increased Effect of Withered", statOrder = { 1274, 10090 }, level = 28, group = "WeaponTreeLocalChaosDamageAndWitheredEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaos2hLowWitheredEffect3"] = { type = "Spawn", tier = 3, "Adds 9 to 14 Chaos Damage", "20% increased Effect of Withered", statOrder = { 1274, 10090 }, level = 44, group = "WeaponTreeLocalChaosDamageAndWitheredEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaos2hLowWitheredEffect4"] = { type = "Spawn", tier = 4, "Adds 15 to 24 Chaos Damage", "20% increased Effect of Withered", statOrder = { 1274, 10090 }, level = 70, group = "WeaponTreeLocalChaosDamageAndWitheredEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaos2hLowWitheredEffect5"] = { type = "Spawn", tier = 5, "Adds 31 to 46 Chaos Damage", "20% increased Effect of Withered", statOrder = { 1274, 10090 }, level = 85, group = "WeaponTreeLocalChaosDamageAndWitheredEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 31, 0 }, modTags = { }, }, - ["WeaponTreeAddedElementalHighCannotInflictElementalAilments1"] = { type = "Spawn", tier = 1, "Adds 7 to 11 Fire Damage", "Adds 7 to 11 Cold Damage", "Adds 1 to 19 Lightning Damage", statOrder = { 1246, 1255, 1266 }, level = 36, group = "WeaponTreeLocalElementalDamageAndCannotInflictElementalAilments", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedElementalHighCannotInflictElementalAilments2"] = { type = "Spawn", tier = 2, "Adds 12 to 18 Fire Damage", "Adds 12 to 18 Cold Damage", "Adds 3 to 29 Lightning Damage", statOrder = { 1246, 1255, 1266 }, level = 60, group = "WeaponTreeLocalElementalDamageAndCannotInflictElementalAilments", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedElementalHighCannotInflictElementalAilments3"] = { type = "Spawn", tier = 3, "Adds 24 to 35 Fire Damage", "Adds 24 to 35 Cold Damage", "Adds 3 to 55 Lightning Damage", statOrder = { 1246, 1255, 1266 }, level = 85, group = "WeaponTreeLocalElementalDamageAndCannotInflictElementalAilments", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedElemental2hHighCannotInflictElementalAilments1"] = { type = "Spawn", tier = 1, "Adds 14 to 23 Fire Damage", "Adds 14 to 23 Cold Damage", "Adds 3 to 33 Lightning Damage", statOrder = { 1246, 1255, 1266 }, level = 36, group = "WeaponTreeLocalElementalDamageAndCannotInflictElementalAilments", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedElemental2hHighCannotInflictElementalAilments2"] = { type = "Spawn", tier = 2, "Adds 23 to 34 Fire Damage", "Adds 23 to 34 Cold Damage", "Adds 4 to 56 Lightning Damage", statOrder = { 1246, 1255, 1266 }, level = 60, group = "WeaponTreeLocalElementalDamageAndCannotInflictElementalAilments", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedElemental2hHighCannotInflictElementalAilments3"] = { type = "Spawn", tier = 3, "Adds 43 to 64 Fire Damage", "Adds 43 to 64 Cold Damage", "Adds 6 to 102 Lightning Damage", statOrder = { 1246, 1255, 1266 }, level = 85, group = "WeaponTreeLocalElementalDamageAndCannotInflictElementalAilments", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeAddedElemental1"] = { type = "Spawn", tier = 1, "Adds 5 to 10 Fire Damage", "Adds 5 to 10 Cold Damage", "Adds 1 to 15 Lightning Damage", statOrder = { 1246, 1255, 1266 }, level = 36, group = "WeaponTreeLocalElementalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeAddedElemental2"] = { type = "Spawn", tier = 2, "Adds 9 to 15 Fire Damage", "Adds 9 to 15 Cold Damage", "Adds 1 to 23 Lightning Damage", statOrder = { 1246, 1255, 1266 }, level = 60, group = "WeaponTreeLocalElementalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedElemental3"] = { type = "Spawn", tier = 3, "Adds 18 to 27 Fire Damage", "Adds 18 to 27 Cold Damage", "Adds 3 to 42 Lightning Damage", statOrder = { 1246, 1255, 1266 }, level = 85, group = "WeaponTreeLocalElementalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedElemental2h1"] = { type = "Spawn", tier = 1, "Adds 10 to 17 Fire Damage", "Adds 10 to 17 Cold Damage", "Adds 3 to 26 Lightning Damage", statOrder = { 1246, 1255, 1266 }, level = 36, group = "WeaponTreeLocalElementalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeAddedElemental2h2"] = { type = "Spawn", tier = 2, "Adds 17 to 26 Fire Damage", "Adds 17 to 26 Cold Damage", "Adds 3 to 42 Lightning Damage", statOrder = { 1246, 1255, 1266 }, level = 60, group = "WeaponTreeLocalElementalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedElemental2h3"] = { type = "Spawn", tier = 3, "Adds 34 to 49 Fire Damage", "Adds 34 to 49 Cold Damage", "Adds 4 to 78 Lightning Damage", statOrder = { 1246, 1255, 1266 }, level = 85, group = "WeaponTreeLocalElementalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedElementalLowElementalAilmentChance1"] = { type = "Spawn", tier = 1, "Adds 3 to 6 Fire Damage", "Adds 3 to 6 Cold Damage", "Adds 1 to 8 Lightning Damage", statOrder = { 1246, 1255, 1266 }, level = 36, group = "WeaponTreeLocalElementalDamageAndElementalAilmentChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedElementalLowElementalAilmentChance2"] = { type = "Spawn", tier = 2, "Adds 6 to 10 Fire Damage", "Adds 6 to 10 Cold Damage", "Adds 1 to 13 Lightning Damage", statOrder = { 1246, 1255, 1266 }, level = 60, group = "WeaponTreeLocalElementalDamageAndElementalAilmentChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeAddedElementalLowElementalAilmentChance3"] = { type = "Spawn", tier = 3, "Adds 13 to 20 Fire Damage", "Adds 13 to 20 Cold Damage", "Adds 3 to 25 Lightning Damage", statOrder = { 1246, 1255, 1266 }, level = 85, group = "WeaponTreeLocalElementalDamageAndElementalAilmentChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 31, 0 }, modTags = { }, }, - ["WeaponTreeAddedElemental2hLowElementalAilmentChance1"] = { type = "Spawn", tier = 1, "Adds 7 to 11 Fire Damage", "Adds 7 to 11 Cold Damage", "Adds 3 to 15 Lightning Damage", statOrder = { 1246, 1255, 1266 }, level = 36, group = "WeaponTreeLocalElementalDamageAndElementalAilmentChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedElemental2hLowElementalAilmentChance2"] = { type = "Spawn", tier = 2, "Adds 12 to 20 Fire Damage", "Adds 12 to 20 Cold Damage", "Adds 3 to 25 Lightning Damage", statOrder = { 1246, 1255, 1266 }, level = 60, group = "WeaponTreeLocalElementalDamageAndElementalAilmentChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeAddedElemental2hLowElementalAilmentChance3"] = { type = "Spawn", tier = 3, "Adds 24 to 35 Fire Damage", "Adds 24 to 35 Cold Damage", "Adds 4 to 46 Lightning Damage", statOrder = { 1246, 1255, 1266 }, level = 85, group = "WeaponTreeLocalElementalDamageAndElementalAilmentChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 31, 0 }, modTags = { }, }, - ["WeaponTreeAddedElementalLowElementalAilmentEffect1"] = { type = "Spawn", tier = 1, "Adds 3 to 6 Fire Damage", "Adds 3 to 6 Cold Damage", "Adds 1 to 8 Lightning Damage", statOrder = { 1246, 1255, 1266 }, level = 36, group = "WeaponTreeLocalElementalDamageAndElementalAilmentEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedElementalLowElementalAilmentEffect2"] = { type = "Spawn", tier = 2, "Adds 4 to 9 Fire Damage", "Adds 4 to 9 Cold Damage", "Adds 1 to 13 Lightning Damage", statOrder = { 1246, 1255, 1266 }, level = 60, group = "WeaponTreeLocalElementalDamageAndElementalAilmentEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeAddedElementalLowElementalAilmentEffect3"] = { type = "Spawn", tier = 3, "Adds 11 to 15 Fire Damage", "Adds 11 to 15 Cold Damage", "Adds 3 to 25 Lightning Damage", statOrder = { 1246, 1255, 1266 }, level = 85, group = "WeaponTreeLocalElementalDamageAndElementalAilmentEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 31, 0 }, modTags = { }, }, - ["WeaponTreeAddedElemental2hLowElementalAilmentEffect1"] = { type = "Spawn", tier = 1, "Adds 7 to 10 Fire Damage", "Adds 7 to 10 Cold Damage", "Adds 3 to 15 Lightning Damage", statOrder = { 1246, 1255, 1266 }, level = 36, group = "WeaponTreeLocalElementalDamageAndElementalAilmentEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeAddedElemental2hLowElementalAilmentEffect2"] = { type = "Spawn", tier = 2, "Adds 9 to 17 Fire Damage", "Adds 9 to 17 Cold Damage", "Adds 3 to 25 Lightning Damage", statOrder = { 1246, 1255, 1266 }, level = 60, group = "WeaponTreeLocalElementalDamageAndElementalAilmentEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeAddedElemental2hLowElementalAilmentEffect3"] = { type = "Spawn", tier = 3, "Adds 20 to 29 Fire Damage", "Adds 20 to 29 Cold Damage", "Adds 4 to 46 Lightning Damage", statOrder = { 1246, 1255, 1266 }, level = 85, group = "WeaponTreeLocalElementalDamageAndElementalAilmentEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 31, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalHighReducedCastSpeed1"] = { type = "Spawn", tier = 1, "Adds 2 to 5 Physical Damage to Spells", "6% reduced Cast Speed", statOrder = { 1287, 1330 }, level = 1, group = "WeaponTreeSpellAddedPhysicalDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalHighReducedCastSpeed2"] = { type = "Spawn", tier = 2, "Adds 5 to 7 Physical Damage to Spells", "6% reduced Cast Speed", statOrder = { 1287, 1330 }, level = 26, group = "WeaponTreeSpellAddedPhysicalDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalHighReducedCastSpeed3"] = { type = "Spawn", tier = 3, "Adds 8 to 14 Physical Damage to Spells", "6% reduced Cast Speed", statOrder = { 1287, 1330 }, level = 42, group = "WeaponTreeSpellAddedPhysicalDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalHighReducedCastSpeed4"] = { type = "Spawn", tier = 4, "Adds 14 to 22 Physical Damage to Spells", "6% reduced Cast Speed", statOrder = { 1287, 1330 }, level = 62, group = "WeaponTreeSpellAddedPhysicalDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalHighReducedCastSpeed5"] = { type = "Spawn", tier = 5, "Adds 28 to 42 Physical Damage to Spells", "6% reduced Cast Speed", statOrder = { 1287, 1330 }, level = 82, group = "WeaponTreeSpellAddedPhysicalDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hHighReducedCastSpeed1"] = { type = "Spawn", tier = 1, "Adds 4 to 7 Physical Damage to Spells", "10% reduced Cast Speed", statOrder = { 1287, 1330 }, level = 1, group = "WeaponTreeSpellAddedPhysicalDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hHighReducedCastSpeed2"] = { type = "Spawn", tier = 2, "Adds 7 to 12 Physical Damage to Spells", "10% reduced Cast Speed", statOrder = { 1287, 1330 }, level = 26, group = "WeaponTreeSpellAddedPhysicalDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hHighReducedCastSpeed3"] = { type = "Spawn", tier = 3, "Adds 14 to 22 Physical Damage to Spells", "10% reduced Cast Speed", statOrder = { 1287, 1330 }, level = 42, group = "WeaponTreeSpellAddedPhysicalDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hHighReducedCastSpeed4"] = { type = "Spawn", tier = 4, "Adds 24 to 37 Physical Damage to Spells", "10% reduced Cast Speed", statOrder = { 1287, 1330 }, level = 62, group = "WeaponTreeSpellAddedPhysicalDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hHighReducedCastSpeed5"] = { type = "Spawn", tier = 5, "Adds 47 to 71 Physical Damage to Spells", "10% reduced Cast Speed", statOrder = { 1287, 1330 }, level = 82, group = "WeaponTreeSpellAddedPhysicalDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical1"] = { type = "Spawn", tier = 1, "Adds 1 to 5 Physical Damage to Spells", statOrder = { 1287 }, level = 1, group = "WeaponTreeSpellAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2"] = { type = "Spawn", tier = 2, "Adds 2 to 6 Physical Damage to Spells", statOrder = { 1287 }, level = 26, group = "WeaponTreeSpellAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical3"] = { type = "Spawn", tier = 3, "Adds 6 to 10 Physical Damage to Spells", statOrder = { 1287 }, level = 42, group = "WeaponTreeSpellAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical4"] = { type = "Spawn", tier = 4, "Adds 11 to 17 Physical Damage to Spells", statOrder = { 1287 }, level = 62, group = "WeaponTreeSpellAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical5"] = { type = "Spawn", tier = 5, "Adds 21 to 33 Physical Damage to Spells", statOrder = { 1287 }, level = 82, group = "WeaponTreeSpellAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2h1"] = { type = "Spawn", tier = 1, "Adds 2 to 5 Physical Damage to Spells", statOrder = { 1287 }, level = 1, group = "WeaponTreeSpellAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2h2"] = { type = "Spawn", tier = 2, "Adds 5 to 10 Physical Damage to Spells", statOrder = { 1287 }, level = 26, group = "WeaponTreeSpellAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2h3"] = { type = "Spawn", tier = 3, "Adds 10 to 17 Physical Damage to Spells", statOrder = { 1287 }, level = 42, group = "WeaponTreeSpellAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2h4"] = { type = "Spawn", tier = 4, "Adds 18 to 28 Physical Damage to Spells", statOrder = { 1287 }, level = 62, group = "WeaponTreeSpellAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2h5"] = { type = "Spawn", tier = 5, "Adds 36 to 55 Physical Damage to Spells", statOrder = { 1287 }, level = 82, group = "WeaponTreeSpellAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowFireConversion1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage to Spells", "15% of Physical Damage Converted to Fire Damage", statOrder = { 1287, 1834 }, level = 10, group = "WeaponTreeSpellAddedPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowFireConversion2"] = { type = "Spawn", tier = 2, "Adds 2 to 4 Physical Damage to Spells", "15% of Physical Damage Converted to Fire Damage", statOrder = { 1287, 1834 }, level = 31, group = "WeaponTreeSpellAddedPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowFireConversion3"] = { type = "Spawn", tier = 3, "Adds 4 to 6 Physical Damage to Spells", "15% of Physical Damage Converted to Fire Damage", statOrder = { 1287, 1834 }, level = 54, group = "WeaponTreeSpellAddedPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowFireConversion4"] = { type = "Spawn", tier = 4, "Adds 6 to 10 Physical Damage to Spells", "15% of Physical Damage Converted to Fire Damage", statOrder = { 1287, 1834 }, level = 72, group = "WeaponTreeSpellAddedPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 32, 0, 32, 32, 32, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowFireConversion5"] = { type = "Spawn", tier = 5, "Adds 13 to 20 Physical Damage to Spells", "15% of Physical Damage Converted to Fire Damage", statOrder = { 1287, 1834 }, level = 84, group = "WeaponTreeSpellAddedPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 16, 0, 16, 16, 16, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowFireConversion1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage to Spells", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1287, 1834 }, level = 10, group = "WeaponTreeSpellAddedPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowFireConversion2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Physical Damage to Spells", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1287, 1834 }, level = 31, group = "WeaponTreeSpellAddedPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowFireConversion3"] = { type = "Spawn", tier = 3, "Adds 7 to 10 Physical Damage to Spells", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1287, 1834 }, level = 54, group = "WeaponTreeSpellAddedPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowFireConversion4"] = { type = "Spawn", tier = 4, "Adds 11 to 17 Physical Damage to Spells", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1287, 1834 }, level = 72, group = "WeaponTreeSpellAddedPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 32, 0, 32, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowFireConversion5"] = { type = "Spawn", tier = 5, "Adds 22 to 33 Physical Damage to Spells", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1287, 1834 }, level = 84, group = "WeaponTreeSpellAddedPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 16, 0, 16, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowColdConversion1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage to Spells", "15% of Physical Damage Converted to Cold Damage", statOrder = { 1287, 1836 }, level = 10, group = "WeaponTreeSpellAddedPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowColdConversion2"] = { type = "Spawn", tier = 2, "Adds 2 to 4 Physical Damage to Spells", "15% of Physical Damage Converted to Cold Damage", statOrder = { 1287, 1836 }, level = 31, group = "WeaponTreeSpellAddedPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowColdConversion3"] = { type = "Spawn", tier = 3, "Adds 4 to 6 Physical Damage to Spells", "15% of Physical Damage Converted to Cold Damage", statOrder = { 1287, 1836 }, level = 54, group = "WeaponTreeSpellAddedPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowColdConversion4"] = { type = "Spawn", tier = 4, "Adds 6 to 10 Physical Damage to Spells", "15% of Physical Damage Converted to Cold Damage", statOrder = { 1287, 1836 }, level = 72, group = "WeaponTreeSpellAddedPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 32, 0, 32, 32, 32, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowColdConversion5"] = { type = "Spawn", tier = 5, "Adds 13 to 20 Physical Damage to Spells", "15% of Physical Damage Converted to Cold Damage", statOrder = { 1287, 1836 }, level = 84, group = "WeaponTreeSpellAddedPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 16, 0, 16, 16, 16, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowColdConversion1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage to Spells", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1287, 1836 }, level = 10, group = "WeaponTreeSpellAddedPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowColdConversion2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Physical Damage to Spells", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1287, 1836 }, level = 31, group = "WeaponTreeSpellAddedPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowColdConversion3"] = { type = "Spawn", tier = 3, "Adds 7 to 10 Physical Damage to Spells", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1287, 1836 }, level = 54, group = "WeaponTreeSpellAddedPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowColdConversion4"] = { type = "Spawn", tier = 4, "Adds 11 to 17 Physical Damage to Spells", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1287, 1836 }, level = 72, group = "WeaponTreeSpellAddedPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 32, 0, 32, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowColdConversion5"] = { type = "Spawn", tier = 5, "Adds 22 to 33 Physical Damage to Spells", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1287, 1836 }, level = 84, group = "WeaponTreeSpellAddedPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 16, 0, 16, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowLightningConversion1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage to Spells", "15% of Physical Damage Converted to Lightning Damage", statOrder = { 1287, 1838 }, level = 10, group = "WeaponTreeSpellAddedPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowLightningConversion2"] = { type = "Spawn", tier = 2, "Adds 2 to 4 Physical Damage to Spells", "15% of Physical Damage Converted to Lightning Damage", statOrder = { 1287, 1838 }, level = 31, group = "WeaponTreeSpellAddedPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowLightningConversion3"] = { type = "Spawn", tier = 3, "Adds 4 to 6 Physical Damage to Spells", "15% of Physical Damage Converted to Lightning Damage", statOrder = { 1287, 1838 }, level = 54, group = "WeaponTreeSpellAddedPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowLightningConversion4"] = { type = "Spawn", tier = 4, "Adds 6 to 10 Physical Damage to Spells", "15% of Physical Damage Converted to Lightning Damage", statOrder = { 1287, 1838 }, level = 72, group = "WeaponTreeSpellAddedPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 32, 0, 32, 32, 32, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowLightningConversion5"] = { type = "Spawn", tier = 5, "Adds 13 to 20 Physical Damage to Spells", "15% of Physical Damage Converted to Lightning Damage", statOrder = { 1287, 1838 }, level = 84, group = "WeaponTreeSpellAddedPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 16, 0, 16, 16, 16, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowLightningConversion1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage to Spells", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1287, 1838 }, level = 10, group = "WeaponTreeSpellAddedPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowLightningConversion2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Physical Damage to Spells", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1287, 1838 }, level = 31, group = "WeaponTreeSpellAddedPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowLightningConversion3"] = { type = "Spawn", tier = 3, "Adds 7 to 10 Physical Damage to Spells", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1287, 1838 }, level = 54, group = "WeaponTreeSpellAddedPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowLightningConversion4"] = { type = "Spawn", tier = 4, "Adds 11 to 17 Physical Damage to Spells", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1287, 1838 }, level = 72, group = "WeaponTreeSpellAddedPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 32, 0, 32, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowLightningConversion5"] = { type = "Spawn", tier = 5, "Adds 22 to 33 Physical Damage to Spells", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1287, 1838 }, level = 84, group = "WeaponTreeSpellAddedPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 16, 0, 16, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowChaosConversion1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage to Spells", "15% of Physical Damage Converted to Chaos Damage", statOrder = { 1287, 1841 }, level = 13, group = "WeaponTreeSpellAddedPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowChaosConversion2"] = { type = "Spawn", tier = 2, "Adds 2 to 4 Physical Damage to Spells", "15% of Physical Damage Converted to Chaos Damage", statOrder = { 1287, 1841 }, level = 27, group = "WeaponTreeSpellAddedPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowChaosConversion3"] = { type = "Spawn", tier = 3, "Adds 4 to 6 Physical Damage to Spells", "15% of Physical Damage Converted to Chaos Damage", statOrder = { 1287, 1841 }, level = 57, group = "WeaponTreeSpellAddedPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowChaosConversion4"] = { type = "Spawn", tier = 4, "Adds 6 to 10 Physical Damage to Spells", "15% of Physical Damage Converted to Chaos Damage", statOrder = { 1287, 1841 }, level = 74, group = "WeaponTreeSpellAddedPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 32, 0, 32, 32, 32, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowChaosConversion5"] = { type = "Spawn", tier = 5, "Adds 13 to 20 Physical Damage to Spells", "15% of Physical Damage Converted to Chaos Damage", statOrder = { 1287, 1841 }, level = 85, group = "WeaponTreeSpellAddedPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 16, 0, 16, 16, 16, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowChaosConversion1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage to Spells", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1287, 1841 }, level = 13, group = "WeaponTreeSpellAddedPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowChaosConversion2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Physical Damage to Spells", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1287, 1841 }, level = 27, group = "WeaponTreeSpellAddedPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowChaosConversion3"] = { type = "Spawn", tier = 3, "Adds 7 to 10 Physical Damage to Spells", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1287, 1841 }, level = 57, group = "WeaponTreeSpellAddedPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowChaosConversion4"] = { type = "Spawn", tier = 4, "Adds 11 to 17 Physical Damage to Spells", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1287, 1841 }, level = 74, group = "WeaponTreeSpellAddedPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 32, 0, 32, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowChaosConversion5"] = { type = "Spawn", tier = 5, "Adds 22 to 33 Physical Damage to Spells", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1287, 1841 }, level = 85, group = "WeaponTreeSpellAddedPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 16, 0, 16, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowOverwhelm1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage to Spells", "Overwhelm 5% Physical Damage Reduction", statOrder = { 1287, 2850 }, level = 13, group = "WeaponTreeSpellAddedPhysicalDamageAndOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowOverwhelm2"] = { type = "Spawn", tier = 2, "Adds 2 to 4 Physical Damage to Spells", "Overwhelm 5% Physical Damage Reduction", statOrder = { 1287, 2850 }, level = 27, group = "WeaponTreeSpellAddedPhysicalDamageAndOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowOverwhelm3"] = { type = "Spawn", tier = 3, "Adds 4 to 6 Physical Damage to Spells", "Overwhelm 5% Physical Damage Reduction", statOrder = { 1287, 2850 }, level = 57, group = "WeaponTreeSpellAddedPhysicalDamageAndOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowOverwhelm4"] = { type = "Spawn", tier = 4, "Adds 6 to 10 Physical Damage to Spells", "Overwhelm 5% Physical Damage Reduction", statOrder = { 1287, 2850 }, level = 74, group = "WeaponTreeSpellAddedPhysicalDamageAndOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysicalLowOverwhelm5"] = { type = "Spawn", tier = 5, "Adds 13 to 20 Physical Damage to Spells", "Overwhelm 5% Physical Damage Reduction", statOrder = { 1287, 2850 }, level = 85, group = "WeaponTreeSpellAddedPhysicalDamageAndOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowOverwhelm1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage to Spells", "Overwhelm 10% Physical Damage Reduction", statOrder = { 1287, 2850 }, level = 13, group = "WeaponTreeSpellAddedPhysicalDamageAndOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowOverwhelm2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Physical Damage to Spells", "Overwhelm 10% Physical Damage Reduction", statOrder = { 1287, 2850 }, level = 27, group = "WeaponTreeSpellAddedPhysicalDamageAndOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowOverwhelm3"] = { type = "Spawn", tier = 3, "Adds 7 to 10 Physical Damage to Spells", "Overwhelm 10% Physical Damage Reduction", statOrder = { 1287, 2850 }, level = 57, group = "WeaponTreeSpellAddedPhysicalDamageAndOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowOverwhelm4"] = { type = "Spawn", tier = 4, "Adds 11 to 17 Physical Damage to Spells", "Overwhelm 10% Physical Damage Reduction", statOrder = { 1287, 2850 }, level = 74, group = "WeaponTreeSpellAddedPhysicalDamageAndOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedPhysical2hLowOverwhelm5"] = { type = "Spawn", tier = 5, "Adds 22 to 33 Physical Damage to Spells", "Overwhelm 10% Physical Damage Reduction", statOrder = { 1287, 2850 }, level = 85, group = "WeaponTreeSpellAddedPhysicalDamageAndOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFireHighReducedCastSpeed1"] = { type = "Spawn", tier = 1, "Adds 4 to 6 Fire Damage to Spells", "6% reduced Cast Speed", statOrder = { 1288, 1330 }, level = 1, group = "WeaponTreeSpellAddedFireDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFireHighReducedCastSpeed2"] = { type = "Spawn", tier = 2, "Adds 6 to 10 Fire Damage to Spells", "6% reduced Cast Speed", statOrder = { 1288, 1330 }, level = 26, group = "WeaponTreeSpellAddedFireDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFireHighReducedCastSpeed3"] = { type = "Spawn", tier = 3, "Adds 12 to 18 Fire Damage to Spells", "6% reduced Cast Speed", statOrder = { 1288, 1330 }, level = 42, group = "WeaponTreeSpellAddedFireDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFireHighReducedCastSpeed4"] = { type = "Spawn", tier = 4, "Adds 19 to 30 Fire Damage to Spells", "6% reduced Cast Speed", statOrder = { 1288, 1330 }, level = 62, group = "WeaponTreeSpellAddedFireDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFireHighReducedCastSpeed5"] = { type = "Spawn", tier = 5, "Adds 39 to 59 Fire Damage to Spells", "6% reduced Cast Speed", statOrder = { 1288, 1330 }, level = 82, group = "WeaponTreeSpellAddedFireDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFire2hHighReducedCastSpeed1"] = { type = "Spawn", tier = 1, "Adds 7 to 10 Fire Damage to Spells", "10% reduced Cast Speed", statOrder = { 1288, 1330 }, level = 1, group = "WeaponTreeSpellAddedFireDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFire2hHighReducedCastSpeed2"] = { type = "Spawn", tier = 2, "Adds 11 to 17 Fire Damage to Spells", "10% reduced Cast Speed", statOrder = { 1288, 1330 }, level = 26, group = "WeaponTreeSpellAddedFireDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFire2hHighReducedCastSpeed3"] = { type = "Spawn", tier = 3, "Adds 21 to 34 Fire Damage to Spells", "10% reduced Cast Speed", statOrder = { 1288, 1330 }, level = 42, group = "WeaponTreeSpellAddedFireDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFire2hHighReducedCastSpeed4"] = { type = "Spawn", tier = 4, "Adds 37 to 55 Fire Damage to Spells", "10% reduced Cast Speed", statOrder = { 1288, 1330 }, level = 62, group = "WeaponTreeSpellAddedFireDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFire2hHighReducedCastSpeed5"] = { type = "Spawn", tier = 5, "Adds 73 to 109 Fire Damage to Spells", "10% reduced Cast Speed", statOrder = { 1288, 1330 }, level = 82, group = "WeaponTreeSpellAddedFireDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFire1"] = { type = "Spawn", tier = 1, "Adds 2 to 5 Fire Damage to Spells", statOrder = { 1288 }, level = 1, group = "WeaponTreeSpellAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFire2"] = { type = "Spawn", tier = 2, "Adds 5 to 7 Fire Damage to Spells", statOrder = { 1288 }, level = 26, group = "WeaponTreeSpellAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFire3"] = { type = "Spawn", tier = 3, "Adds 9 to 14 Fire Damage to Spells", statOrder = { 1288 }, level = 42, group = "WeaponTreeSpellAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFire4"] = { type = "Spawn", tier = 4, "Adds 15 to 24 Fire Damage to Spells", statOrder = { 1288 }, level = 62, group = "WeaponTreeSpellAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFire5"] = { type = "Spawn", tier = 5, "Adds 30 to 45 Fire Damage to Spells", statOrder = { 1288 }, level = 82, group = "WeaponTreeSpellAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFire2h1"] = { type = "Spawn", tier = 1, "Adds 5 to 7 Fire Damage to Spells", statOrder = { 1288 }, level = 1, group = "WeaponTreeSpellAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFire2h2"] = { type = "Spawn", tier = 2, "Adds 9 to 13 Fire Damage to Spells", statOrder = { 1288 }, level = 26, group = "WeaponTreeSpellAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFire2h3"] = { type = "Spawn", tier = 3, "Adds 16 to 26 Fire Damage to Spells", statOrder = { 1288 }, level = 42, group = "WeaponTreeSpellAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFire2h4"] = { type = "Spawn", tier = 4, "Adds 28 to 43 Fire Damage to Spells", statOrder = { 1288 }, level = 62, group = "WeaponTreeSpellAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFire2h5"] = { type = "Spawn", tier = 5, "Adds 56 to 84 Fire Damage to Spells", statOrder = { 1288 }, level = 82, group = "WeaponTreeSpellAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFireLowIgniteChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Fire Damage to Spells", "10% chance to Ignite", statOrder = { 1288, 1903 }, level = 1, group = "WeaponTreeSpellAddedFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFireLowIgniteChance2"] = { type = "Spawn", tier = 2, "Adds 2 to 4 Fire Damage to Spells", "10% chance to Ignite", statOrder = { 1288, 1903 }, level = 26, group = "WeaponTreeSpellAddedFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFireLowIgniteChance3"] = { type = "Spawn", tier = 3, "Adds 4 to 9 Fire Damage to Spells", "10% chance to Ignite", statOrder = { 1288, 1903 }, level = 42, group = "WeaponTreeSpellAddedFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFireLowIgniteChance4"] = { type = "Spawn", tier = 4, "Adds 8 to 14 Fire Damage to Spells", "10% chance to Ignite", statOrder = { 1288, 1903 }, level = 62, group = "WeaponTreeSpellAddedFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFireLowIgniteChance5"] = { type = "Spawn", tier = 5, "Adds 18 to 28 Fire Damage to Spells", "10% chance to Ignite", statOrder = { 1288, 1903 }, level = 82, group = "WeaponTreeSpellAddedFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFire2hLowIgniteChance1"] = { type = "Spawn", tier = 1, "Adds 2 to 6 Fire Damage to Spells", "20% chance to Ignite", statOrder = { 1288, 1903 }, level = 1, group = "WeaponTreeSpellAddedFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFire2hLowIgniteChance2"] = { type = "Spawn", tier = 2, "Adds 5 to 8 Fire Damage to Spells", "20% chance to Ignite", statOrder = { 1288, 1903 }, level = 26, group = "WeaponTreeSpellAddedFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFire2hLowIgniteChance3"] = { type = "Spawn", tier = 3, "Adds 9 to 16 Fire Damage to Spells", "20% chance to Ignite", statOrder = { 1288, 1903 }, level = 42, group = "WeaponTreeSpellAddedFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFire2hLowIgniteChance4"] = { type = "Spawn", tier = 4, "Adds 16 to 26 Fire Damage to Spells", "20% chance to Ignite", statOrder = { 1288, 1903 }, level = 62, group = "WeaponTreeSpellAddedFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFire2hLowIgniteChance5"] = { type = "Spawn", tier = 5, "Adds 34 to 51 Fire Damage to Spells", "20% chance to Ignite", statOrder = { 1288, 1903 }, level = 82, group = "WeaponTreeSpellAddedFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFireLowImplicitEffect1"] = { type = "Spawn", tier = 1, "25% increased Implicit Modifier magnitudes", "Adds 1 to 3 Fire Damage to Spells", statOrder = { 40, 1288 }, level = 10, group = "WeaponTreeSpellAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFireLowImplicitEffect2"] = { type = "Spawn", tier = 2, "25% increased Implicit Modifier magnitudes", "Adds 2 to 4 Fire Damage to Spells", statOrder = { 40, 1288 }, level = 30, group = "WeaponTreeSpellAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFireLowImplicitEffect3"] = { type = "Spawn", tier = 3, "25% increased Implicit Modifier magnitudes", "Adds 4 to 9 Fire Damage to Spells", statOrder = { 40, 1288 }, level = 48, group = "WeaponTreeSpellAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFireLowImplicitEffect4"] = { type = "Spawn", tier = 4, "25% increased Implicit Modifier magnitudes", "Adds 8 to 14 Fire Damage to Spells", statOrder = { 40, 1288 }, level = 66, group = "WeaponTreeSpellAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFireLowImplicitEffect5"] = { type = "Spawn", tier = 5, "25% increased Implicit Modifier magnitudes", "Adds 18 to 28 Fire Damage to Spells", statOrder = { 40, 1288 }, level = 84, group = "WeaponTreeSpellAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFire2hLowImplicitEffect1"] = { type = "Spawn", tier = 1, "25% increased Implicit Modifier magnitudes", "Adds 2 to 6 Fire Damage to Spells", statOrder = { 40, 1288 }, level = 10, group = "WeaponTreeSpellAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFire2hLowImplicitEffect2"] = { type = "Spawn", tier = 2, "25% increased Implicit Modifier magnitudes", "Adds 5 to 8 Fire Damage to Spells", statOrder = { 40, 1288 }, level = 30, group = "WeaponTreeSpellAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFire2hLowImplicitEffect3"] = { type = "Spawn", tier = 3, "25% increased Implicit Modifier magnitudes", "Adds 9 to 16 Fire Damage to Spells", statOrder = { 40, 1288 }, level = 48, group = "WeaponTreeSpellAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFire2hLowImplicitEffect4"] = { type = "Spawn", tier = 4, "25% increased Implicit Modifier magnitudes", "Adds 16 to 26 Fire Damage to Spells", statOrder = { 40, 1288 }, level = 66, group = "WeaponTreeSpellAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedFire2hLowImplicitEffect5"] = { type = "Spawn", tier = 5, "25% increased Implicit Modifier magnitudes", "Adds 34 to 51 Fire Damage to Spells", statOrder = { 40, 1288 }, level = 84, group = "WeaponTreeSpellAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedColdHighCannotChill1"] = { type = "Spawn", tier = 1, "Adds 2 to 6 Cold Damage to Spells", "Your Cold Damage cannot Chill", statOrder = { 1289, 2760 }, level = 1, group = "WeaponTreeSpellAddedColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedColdHighCannotChill2"] = { type = "Spawn", tier = 2, "Adds 5 to 8 Cold Damage to Spells", "Your Cold Damage cannot Chill", statOrder = { 1289, 2760 }, level = 26, group = "WeaponTreeSpellAddedColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedColdHighCannotChill3"] = { type = "Spawn", tier = 3, "Adds 10 to 17 Cold Damage to Spells", "Your Cold Damage cannot Chill", statOrder = { 1289, 2760 }, level = 42, group = "WeaponTreeSpellAddedColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedColdHighCannotChill4"] = { type = "Spawn", tier = 4, "Adds 18 to 28 Cold Damage to Spells", "Your Cold Damage cannot Chill", statOrder = { 1289, 2760 }, level = 62, group = "WeaponTreeSpellAddedColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedColdHighCannotChill5"] = { type = "Spawn", tier = 5, "Adds 37 to 56 Cold Damage to Spells", "Your Cold Damage cannot Chill", statOrder = { 1289, 2760 }, level = 82, group = "WeaponTreeSpellAddedColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedCold2hHighCannotChill1"] = { type = "Spawn", tier = 1, "Adds 5 to 10 Cold Damage to Spells", "Your Cold Damage cannot Chill", statOrder = { 1289, 2760 }, level = 1, group = "WeaponTreeSpellAddedColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedCold2hHighCannotChill2"] = { type = "Spawn", tier = 2, "Adds 10 to 16 Cold Damage to Spells", "Your Cold Damage cannot Chill", statOrder = { 1289, 2760 }, level = 26, group = "WeaponTreeSpellAddedColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedCold2hHighCannotChill3"] = { type = "Spawn", tier = 3, "Adds 20 to 32 Cold Damage to Spells", "Your Cold Damage cannot Chill", statOrder = { 1289, 2760 }, level = 42, group = "WeaponTreeSpellAddedColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedCold2hHighCannotChill4"] = { type = "Spawn", tier = 4, "Adds 34 to 52 Cold Damage to Spells", "Your Cold Damage cannot Chill", statOrder = { 1289, 2760 }, level = 62, group = "WeaponTreeSpellAddedColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedCold2hHighCannotChill5"] = { type = "Spawn", tier = 5, "Adds 68 to 103 Cold Damage to Spells", "Your Cold Damage cannot Chill", statOrder = { 1289, 2760 }, level = 82, group = "WeaponTreeSpellAddedColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedCold1"] = { type = "Spawn", tier = 1, "Adds 2 to 5 Cold Damage to Spells", statOrder = { 1289 }, level = 1, group = "WeaponTreeSpellAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedCold2"] = { type = "Spawn", tier = 2, "Adds 3 to 7 Cold Damage to Spells", statOrder = { 1289 }, level = 26, group = "WeaponTreeSpellAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedCold3"] = { type = "Spawn", tier = 3, "Adds 8 to 14 Cold Damage to Spells", statOrder = { 1289 }, level = 42, group = "WeaponTreeSpellAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedCold4"] = { type = "Spawn", tier = 4, "Adds 14 to 21 Cold Damage to Spells", statOrder = { 1289 }, level = 62, group = "WeaponTreeSpellAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedCold5"] = { type = "Spawn", tier = 5, "Adds 29 to 43 Cold Damage to Spells", statOrder = { 1289 }, level = 82, group = "WeaponTreeSpellAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedCold2h1"] = { type = "Spawn", tier = 1, "Adds 4 to 7 Cold Damage to Spells", statOrder = { 1289 }, level = 1, group = "WeaponTreeSpellAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedCold2h2"] = { type = "Spawn", tier = 2, "Adds 7 to 12 Cold Damage to Spells", statOrder = { 1289 }, level = 26, group = "WeaponTreeSpellAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedCold2h3"] = { type = "Spawn", tier = 3, "Adds 15 to 24 Cold Damage to Spells", statOrder = { 1289 }, level = 42, group = "WeaponTreeSpellAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedCold2h4"] = { type = "Spawn", tier = 4, "Adds 26 to 40 Cold Damage to Spells", statOrder = { 1289 }, level = 62, group = "WeaponTreeSpellAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedCold2h5"] = { type = "Spawn", tier = 5, "Adds 53 to 79 Cold Damage to Spells", statOrder = { 1289 }, level = 82, group = "WeaponTreeSpellAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedColdLowFreezeChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Cold Damage to Spells", "10% chance to Freeze", statOrder = { 1289, 1906 }, level = 1, group = "WeaponTreeSpellAddedColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedColdLowFreezeChance2"] = { type = "Spawn", tier = 2, "Adds 2 to 4 Cold Damage to Spells", "10% chance to Freeze", statOrder = { 1289, 1906 }, level = 26, group = "WeaponTreeSpellAddedColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedColdLowFreezeChance3"] = { type = "Spawn", tier = 3, "Adds 4 to 8 Cold Damage to Spells", "10% chance to Freeze", statOrder = { 1289, 1906 }, level = 42, group = "WeaponTreeSpellAddedColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedColdLowFreezeChance4"] = { type = "Spawn", tier = 4, "Adds 8 to 14 Cold Damage to Spells", "10% chance to Freeze", statOrder = { 1289, 1906 }, level = 62, group = "WeaponTreeSpellAddedColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedColdLowFreezeChance5"] = { type = "Spawn", tier = 5, "Adds 17 to 25 Cold Damage to Spells", "10% chance to Freeze", statOrder = { 1289, 1906 }, level = 82, group = "WeaponTreeSpellAddedColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedCold2hLowFreezeChance1"] = { type = "Spawn", tier = 1, "Adds 2 to 5 Cold Damage to Spells", "20% chance to Freeze", statOrder = { 1289, 1906 }, level = 1, group = "WeaponTreeSpellAddedColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedCold2hLowFreezeChance2"] = { type = "Spawn", tier = 2, "Adds 5 to 8 Cold Damage to Spells", "20% chance to Freeze", statOrder = { 1289, 1906 }, level = 26, group = "WeaponTreeSpellAddedColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedCold2hLowFreezeChance3"] = { type = "Spawn", tier = 3, "Adds 9 to 15 Cold Damage to Spells", "20% chance to Freeze", statOrder = { 1289, 1906 }, level = 42, group = "WeaponTreeSpellAddedColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedCold2hLowFreezeChance4"] = { type = "Spawn", tier = 4, "Adds 16 to 25 Cold Damage to Spells", "20% chance to Freeze", statOrder = { 1289, 1906 }, level = 62, group = "WeaponTreeSpellAddedColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedCold2hLowFreezeChance5"] = { type = "Spawn", tier = 5, "Adds 32 to 47 Cold Damage to Spells", "20% chance to Freeze", statOrder = { 1289, 1906 }, level = 82, group = "WeaponTreeSpellAddedColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedColdLowCastSpeed1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Cold Damage to Spells", "5% increased Cast Speed", statOrder = { 1289, 1330 }, level = 10, group = "WeaponTreeSpellAddedColdDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedColdLowCastSpeed2"] = { type = "Spawn", tier = 2, "Adds 2 to 4 Cold Damage to Spells", "5% increased Cast Speed", statOrder = { 1289, 1330 }, level = 30, group = "WeaponTreeSpellAddedColdDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedColdLowCastSpeed3"] = { type = "Spawn", tier = 3, "Adds 4 to 8 Cold Damage to Spells", "5% increased Cast Speed", statOrder = { 1289, 1330 }, level = 48, group = "WeaponTreeSpellAddedColdDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedColdLowCastSpeed4"] = { type = "Spawn", tier = 4, "Adds 8 to 14 Cold Damage to Spells", "5% increased Cast Speed", statOrder = { 1289, 1330 }, level = 66, group = "WeaponTreeSpellAddedColdDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedColdLowCastSpeed5"] = { type = "Spawn", tier = 5, "Adds 17 to 25 Cold Damage to Spells", "5% increased Cast Speed", statOrder = { 1289, 1330 }, level = 84, group = "WeaponTreeSpellAddedColdDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedCold2hLowCastSpeed1"] = { type = "Spawn", tier = 1, "Adds 2 to 5 Cold Damage to Spells", "10% increased Cast Speed", statOrder = { 1289, 1330 }, level = 10, group = "WeaponTreeSpellAddedColdDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedCold2hLowCastSpeed2"] = { type = "Spawn", tier = 2, "Adds 5 to 8 Cold Damage to Spells", "10% increased Cast Speed", statOrder = { 1289, 1330 }, level = 30, group = "WeaponTreeSpellAddedColdDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedCold2hLowCastSpeed3"] = { type = "Spawn", tier = 3, "Adds 9 to 15 Cold Damage to Spells", "10% increased Cast Speed", statOrder = { 1289, 1330 }, level = 48, group = "WeaponTreeSpellAddedColdDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedCold2hLowCastSpeed4"] = { type = "Spawn", tier = 4, "Adds 16 to 25 Cold Damage to Spells", "10% increased Cast Speed", statOrder = { 1289, 1330 }, level = 66, group = "WeaponTreeSpellAddedColdDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedCold2hLowCastSpeed5"] = { type = "Spawn", tier = 5, "Adds 32 to 47 Cold Damage to Spells", "10% increased Cast Speed", statOrder = { 1289, 1330 }, level = 84, group = "WeaponTreeSpellAddedColdDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightningHighDamageTaken1"] = { type = "Spawn", tier = 1, "Adds 1 to 9 Lightning Damage to Spells", "4% increased Lightning Damage taken", statOrder = { 1290, 3254 }, level = 1, group = "WeaponTreeSpellAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightningHighDamageTaken2"] = { type = "Spawn", tier = 2, "Adds 1 to 15 Lightning Damage to Spells", "4% increased Lightning Damage taken", statOrder = { 1290, 3254 }, level = 26, group = "WeaponTreeSpellAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightningHighDamageTaken3"] = { type = "Spawn", tier = 3, "Adds 1 to 29 Lightning Damage to Spells", "4% increased Lightning Damage taken", statOrder = { 1290, 3254 }, level = 42, group = "WeaponTreeSpellAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightningHighDamageTaken4"] = { type = "Spawn", tier = 4, "Adds 2 to 48 Lightning Damage to Spells", "4% increased Lightning Damage taken", statOrder = { 1290, 3254 }, level = 62, group = "WeaponTreeSpellAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightningHighDamageTaken5"] = { type = "Spawn", tier = 5, "Adds 5 to 94 Lightning Damage to Spells", "4% increased Lightning Damage taken", statOrder = { 1290, 3254 }, level = 82, group = "WeaponTreeSpellAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning2hHighDamageTaken1"] = { type = "Spawn", tier = 1, "Adds 1 to 16 Lightning Damage to Spells", "6% increased Lightning Damage taken", statOrder = { 1290, 3254 }, level = 1, group = "WeaponTreeSpellAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning2hHighDamageTaken2"] = { type = "Spawn", tier = 2, "Adds 1 to 28 Lightning Damage to Spells", "6% increased Lightning Damage taken", statOrder = { 1290, 3254 }, level = 26, group = "WeaponTreeSpellAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning2hHighDamageTaken3"] = { type = "Spawn", tier = 3, "Adds 2 to 53 Lightning Damage to Spells", "6% increased Lightning Damage taken", statOrder = { 1290, 3254 }, level = 42, group = "WeaponTreeSpellAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning2hHighDamageTaken4"] = { type = "Spawn", tier = 4, "Adds 4 to 88 Lightning Damage to Spells", "6% increased Lightning Damage taken", statOrder = { 1290, 3254 }, level = 62, group = "WeaponTreeSpellAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning2hHighDamageTaken5"] = { type = "Spawn", tier = 5, "Adds 9 to 173 Lightning Damage to Spells", "6% increased Lightning Damage taken", statOrder = { 1290, 3254 }, level = 82, group = "WeaponTreeSpellAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning1"] = { type = "Spawn", tier = 1, "Adds 1 to 6 Lightning Damage to Spells", statOrder = { 1290 }, level = 1, group = "WeaponTreeSpellAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning2"] = { type = "Spawn", tier = 2, "Adds 1 to 12 Lightning Damage to Spells", statOrder = { 1290 }, level = 26, group = "WeaponTreeSpellAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning3"] = { type = "Spawn", tier = 3, "Adds 1 to 22 Lightning Damage to Spells", statOrder = { 1290 }, level = 42, group = "WeaponTreeSpellAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning4"] = { type = "Spawn", tier = 4, "Adds 2 to 37 Lightning Damage to Spells", statOrder = { 1290 }, level = 62, group = "WeaponTreeSpellAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning5"] = { type = "Spawn", tier = 5, "Adds 4 to 72 Lightning Damage to Spells", statOrder = { 1290 }, level = 82, group = "WeaponTreeSpellAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning2h1"] = { type = "Spawn", tier = 1, "Adds 1 to 12 Lightning Damage to Spells", statOrder = { 1290 }, level = 1, group = "WeaponTreeSpellAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning2h2"] = { type = "Spawn", tier = 2, "Adds 1 to 21 Lightning Damage to Spells", statOrder = { 1290 }, level = 26, group = "WeaponTreeSpellAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning2h3"] = { type = "Spawn", tier = 3, "Adds 2 to 41 Lightning Damage to Spells", statOrder = { 1290 }, level = 42, group = "WeaponTreeSpellAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning2h4"] = { type = "Spawn", tier = 4, "Adds 3 to 68 Lightning Damage to Spells", statOrder = { 1290 }, level = 62, group = "WeaponTreeSpellAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning2h5"] = { type = "Spawn", tier = 5, "Adds 7 to 133 Lightning Damage to Spells", statOrder = { 1290 }, level = 82, group = "WeaponTreeSpellAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightningLowShockChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 5 Lightning Damage to Spells", "10% chance to Shock", statOrder = { 1290, 1910 }, level = 1, group = "WeaponTreeSpellAddedLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightningLowShockChance2"] = { type = "Spawn", tier = 2, "Adds 1 to 7 Lightning Damage to Spells", "10% chance to Shock", statOrder = { 1290, 1910 }, level = 26, group = "WeaponTreeSpellAddedLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightningLowShockChance3"] = { type = "Spawn", tier = 3, "Adds 1 to 14 Lightning Damage to Spells", "10% chance to Shock", statOrder = { 1290, 1910 }, level = 42, group = "WeaponTreeSpellAddedLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightningLowShockChance4"] = { type = "Spawn", tier = 4, "Adds 2 to 22 Lightning Damage to Spells", "10% chance to Shock", statOrder = { 1290, 1910 }, level = 62, group = "WeaponTreeSpellAddedLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightningLowShockChance5"] = { type = "Spawn", tier = 5, "Adds 2 to 43 Lightning Damage to Spells", "10% chance to Shock", statOrder = { 1290, 1910 }, level = 82, group = "WeaponTreeSpellAddedLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning2hLowShockChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 7 Lightning Damage to Spells", "20% chance to Shock", statOrder = { 1290, 1910 }, level = 1, group = "WeaponTreeSpellAddedLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning2hLowShockChance2"] = { type = "Spawn", tier = 2, "Adds 1 to 13 Lightning Damage to Spells", "20% chance to Shock", statOrder = { 1290, 1910 }, level = 26, group = "WeaponTreeSpellAddedLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning2hLowShockChance3"] = { type = "Spawn", tier = 3, "Adds 2 to 24 Lightning Damage to Spells", "20% chance to Shock", statOrder = { 1290, 1910 }, level = 42, group = "WeaponTreeSpellAddedLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning2hLowShockChance4"] = { type = "Spawn", tier = 4, "Adds 3 to 41 Lightning Damage to Spells", "20% chance to Shock", statOrder = { 1290, 1910 }, level = 62, group = "WeaponTreeSpellAddedLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning2hLowShockChance5"] = { type = "Spawn", tier = 5, "Adds 4 to 80 Lightning Damage to Spells", "20% chance to Shock", statOrder = { 1290, 1910 }, level = 82, group = "WeaponTreeSpellAddedLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightningLowSpellCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 5 Lightning Damage to Spells", "25% increased Spell Critical Strike Chance", statOrder = { 1290, 1342 }, level = 10, group = "WeaponTreeSpellAddedLightningDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightningLowSpellCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "Adds 1 to 7 Lightning Damage to Spells", "25% increased Spell Critical Strike Chance", statOrder = { 1290, 1342 }, level = 30, group = "WeaponTreeSpellAddedLightningDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightningLowSpellCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "Adds 1 to 14 Lightning Damage to Spells", "25% increased Spell Critical Strike Chance", statOrder = { 1290, 1342 }, level = 48, group = "WeaponTreeSpellAddedLightningDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightningLowSpellCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "Adds 2 to 22 Lightning Damage to Spells", "25% increased Spell Critical Strike Chance", statOrder = { 1290, 1342 }, level = 66, group = "WeaponTreeSpellAddedLightningDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightningLowSpellCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "Adds 2 to 43 Lightning Damage to Spells", "25% increased Spell Critical Strike Chance", statOrder = { 1290, 1342 }, level = 84, group = "WeaponTreeSpellAddedLightningDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning2hLowSpellCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 7 Lightning Damage to Spells", "40% increased Spell Critical Strike Chance", statOrder = { 1290, 1342 }, level = 10, group = "WeaponTreeSpellAddedLightningDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning2hLowSpellCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "Adds 1 to 13 Lightning Damage to Spells", "40% increased Spell Critical Strike Chance", statOrder = { 1290, 1342 }, level = 30, group = "WeaponTreeSpellAddedLightningDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning2hLowSpellCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "Adds 2 to 24 Lightning Damage to Spells", "40% increased Spell Critical Strike Chance", statOrder = { 1290, 1342 }, level = 48, group = "WeaponTreeSpellAddedLightningDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning2hLowSpellCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "Adds 3 to 41 Lightning Damage to Spells", "40% increased Spell Critical Strike Chance", statOrder = { 1290, 1342 }, level = 66, group = "WeaponTreeSpellAddedLightningDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedLightning2hLowSpellCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "Adds 4 to 80 Lightning Damage to Spells", "40% increased Spell Critical Strike Chance", statOrder = { 1290, 1342 }, level = 84, group = "WeaponTreeSpellAddedLightningDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaosHighReducedLife1"] = { type = "Spawn", tier = 1, "Adds 2 to 5 Chaos Damage to Spells", "5% reduced maximum Life", statOrder = { 1291, 1453 }, level = 8, group = "WeaponTreeSpellAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaosHighReducedLife2"] = { type = "Spawn", tier = 2, "Adds 5 to 7 Chaos Damage to Spells", "5% reduced maximum Life", statOrder = { 1291, 1453 }, level = 28, group = "WeaponTreeSpellAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaosHighReducedLife3"] = { type = "Spawn", tier = 3, "Adds 8 to 14 Chaos Damage to Spells", "5% reduced maximum Life", statOrder = { 1291, 1453 }, level = 44, group = "WeaponTreeSpellAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaosHighReducedLife4"] = { type = "Spawn", tier = 4, "Adds 14 to 22 Chaos Damage to Spells", "5% reduced maximum Life", statOrder = { 1291, 1453 }, level = 70, group = "WeaponTreeSpellAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaosHighReducedLife5"] = { type = "Spawn", tier = 5, "Adds 28 to 42 Chaos Damage to Spells", "5% reduced maximum Life", statOrder = { 1291, 1453 }, level = 85, group = "WeaponTreeSpellAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 32, 0, 32, 32, 32, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos2hHighReducedLife1"] = { type = "Spawn", tier = 1, "Adds 4 to 7 Chaos Damage to Spells", "7% reduced maximum Life", statOrder = { 1291, 1453 }, level = 8, group = "WeaponTreeSpellAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos2hHighReducedLife2"] = { type = "Spawn", tier = 2, "Adds 7 to 12 Chaos Damage to Spells", "7% reduced maximum Life", statOrder = { 1291, 1453 }, level = 28, group = "WeaponTreeSpellAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos2hHighReducedLife3"] = { type = "Spawn", tier = 3, "Adds 14 to 22 Chaos Damage to Spells", "7% reduced maximum Life", statOrder = { 1291, 1453 }, level = 44, group = "WeaponTreeSpellAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos2hHighReducedLife4"] = { type = "Spawn", tier = 4, "Adds 24 to 37 Chaos Damage to Spells", "7% reduced maximum Life", statOrder = { 1291, 1453 }, level = 70, group = "WeaponTreeSpellAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos2hHighReducedLife5"] = { type = "Spawn", tier = 5, "Adds 47 to 71 Chaos Damage to Spells", "7% reduced maximum Life", statOrder = { 1291, 1453 }, level = 85, group = "WeaponTreeSpellAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 32, 0, 32, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos1"] = { type = "Spawn", tier = 1, "Adds 1 to 5 Chaos Damage to Spells", statOrder = { 1291 }, level = 8, group = "WeaponTreeSpellAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos2"] = { type = "Spawn", tier = 2, "Adds 2 to 6 Chaos Damage to Spells", statOrder = { 1291 }, level = 28, group = "WeaponTreeSpellAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos3"] = { type = "Spawn", tier = 3, "Adds 6 to 10 Chaos Damage to Spells", statOrder = { 1291 }, level = 44, group = "WeaponTreeSpellAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos4"] = { type = "Spawn", tier = 4, "Adds 11 to 17 Chaos Damage to Spells", statOrder = { 1291 }, level = 70, group = "WeaponTreeSpellAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos5"] = { type = "Spawn", tier = 5, "Adds 21 to 33 Chaos Damage to Spells", statOrder = { 1291 }, level = 85, group = "WeaponTreeSpellAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos2h1"] = { type = "Spawn", tier = 1, "Adds 2 to 5 Chaos Damage to Spells", statOrder = { 1291 }, level = 8, group = "WeaponTreeSpellAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos2h2"] = { type = "Spawn", tier = 2, "Adds 5 to 10 Chaos Damage to Spells", statOrder = { 1291 }, level = 28, group = "WeaponTreeSpellAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos2h3"] = { type = "Spawn", tier = 3, "Adds 10 to 17 Chaos Damage to Spells", statOrder = { 1291 }, level = 44, group = "WeaponTreeSpellAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos2h4"] = { type = "Spawn", tier = 4, "Adds 18 to 28 Chaos Damage to Spells", statOrder = { 1291 }, level = 70, group = "WeaponTreeSpellAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos2h5"] = { type = "Spawn", tier = 5, "Adds 36 to 55 Chaos Damage to Spells", statOrder = { 1291 }, level = 85, group = "WeaponTreeSpellAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaosLowPoisonChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Chaos Damage to Spells", "10% chance to Poison on Hit with Spell Damage", statOrder = { 1291, 9672 }, level = 8, group = "WeaponTreeSpellAddedChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaosLowPoisonChance2"] = { type = "Spawn", tier = 2, "Adds 2 to 4 Chaos Damage to Spells", "10% chance to Poison on Hit with Spell Damage", statOrder = { 1291, 9672 }, level = 28, group = "WeaponTreeSpellAddedChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaosLowPoisonChance3"] = { type = "Spawn", tier = 3, "Adds 4 to 6 Chaos Damage to Spells", "10% chance to Poison on Hit with Spell Damage", statOrder = { 1291, 9672 }, level = 44, group = "WeaponTreeSpellAddedChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaosLowPoisonChance4"] = { type = "Spawn", tier = 4, "Adds 6 to 10 Chaos Damage to Spells", "10% chance to Poison on Hit with Spell Damage", statOrder = { 1291, 9672 }, level = 70, group = "WeaponTreeSpellAddedChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaosLowPoisonChance5"] = { type = "Spawn", tier = 5, "Adds 13 to 20 Chaos Damage to Spells", "10% chance to Poison on Hit with Spell Damage", statOrder = { 1291, 9672 }, level = 85, group = "WeaponTreeSpellAddedChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 32, 0, 32, 32, 32, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos2hLowPoisonChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Chaos Damage to Spells", "20% chance to Poison on Hit with Spell Damage", statOrder = { 1291, 9672 }, level = 8, group = "WeaponTreeSpellAddedChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos2hLowPoisonChance2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Chaos Damage to Spells", "20% chance to Poison on Hit with Spell Damage", statOrder = { 1291, 9672 }, level = 28, group = "WeaponTreeSpellAddedChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos2hLowPoisonChance3"] = { type = "Spawn", tier = 3, "Adds 7 to 10 Chaos Damage to Spells", "20% chance to Poison on Hit with Spell Damage", statOrder = { 1291, 9672 }, level = 44, group = "WeaponTreeSpellAddedChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos2hLowPoisonChance4"] = { type = "Spawn", tier = 4, "Adds 11 to 17 Chaos Damage to Spells", "20% chance to Poison on Hit with Spell Damage", statOrder = { 1291, 9672 }, level = 70, group = "WeaponTreeSpellAddedChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos2hLowPoisonChance5"] = { type = "Spawn", tier = 5, "Adds 22 to 33 Chaos Damage to Spells", "20% chance to Poison on Hit with Spell Damage", statOrder = { 1291, 9672 }, level = 85, group = "WeaponTreeSpellAddedChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 32, 0, 32, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaosLowWitheredEffect1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Chaos Damage to Spells", "10% increased Effect of Withered", statOrder = { 1291, 10090 }, level = 8, group = "WeaponTreeSpellAddedChaosDamageAndWitherEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaosLowWitheredEffect2"] = { type = "Spawn", tier = 2, "Adds 2 to 4 Chaos Damage to Spells", "10% increased Effect of Withered", statOrder = { 1291, 10090 }, level = 28, group = "WeaponTreeSpellAddedChaosDamageAndWitherEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaosLowWitheredEffect3"] = { type = "Spawn", tier = 3, "Adds 4 to 6 Chaos Damage to Spells", "10% increased Effect of Withered", statOrder = { 1291, 10090 }, level = 44, group = "WeaponTreeSpellAddedChaosDamageAndWitherEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaosLowWitheredEffect4"] = { type = "Spawn", tier = 4, "Adds 6 to 10 Chaos Damage to Spells", "10% increased Effect of Withered", statOrder = { 1291, 10090 }, level = 70, group = "WeaponTreeSpellAddedChaosDamageAndWitherEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaosLowWitheredEffect5"] = { type = "Spawn", tier = 5, "Adds 13 to 20 Chaos Damage to Spells", "10% increased Effect of Withered", statOrder = { 1291, 10090 }, level = 85, group = "WeaponTreeSpellAddedChaosDamageAndWitherEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 32, 0, 32, 32, 32, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos2hLowWitheredEffect1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Chaos Damage to Spells", "20% increased Effect of Withered", statOrder = { 1291, 10090 }, level = 8, group = "WeaponTreeSpellAddedChaosDamageAndWitherEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos2hLowWitheredEffect2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Chaos Damage to Spells", "20% increased Effect of Withered", statOrder = { 1291, 10090 }, level = 28, group = "WeaponTreeSpellAddedChaosDamageAndWitherEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos2hLowWitheredEffect3"] = { type = "Spawn", tier = 3, "Adds 7 to 10 Chaos Damage to Spells", "20% increased Effect of Withered", statOrder = { 1291, 10090 }, level = 44, group = "WeaponTreeSpellAddedChaosDamageAndWitherEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos2hLowWitheredEffect4"] = { type = "Spawn", tier = 4, "Adds 11 to 17 Chaos Damage to Spells", "20% increased Effect of Withered", statOrder = { 1291, 10090 }, level = 70, group = "WeaponTreeSpellAddedChaosDamageAndWitherEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, - ["WeaponTreeSpellAddedChaos2hLowWitheredEffect5"] = { type = "Spawn", tier = 5, "Adds 22 to 33 Chaos Damage to Spells", "20% increased Effect of Withered", statOrder = { 1291, 10090 }, level = 85, group = "WeaponTreeSpellAddedChaosDamageAndWitherEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 32, 0, 32, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamageHighReducedSpellCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "14% increased Spell Damage", "40% reduced Spell Critical Strike Chance", statOrder = { 1108, 1342 }, level = 1, group = "WeaponTreeSpellDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamageHighReducedSpellCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "21% increased Spell Damage", "40% reduced Spell Critical Strike Chance", statOrder = { 1108, 1342 }, level = 21, group = "WeaponTreeSpellDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamageHighReducedSpellCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "28% increased Spell Damage", "40% reduced Spell Critical Strike Chance", statOrder = { 1108, 1342 }, level = 46, group = "WeaponTreeSpellDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamageHighReducedSpellCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "35% increased Spell Damage", "40% reduced Spell Critical Strike Chance", statOrder = { 1108, 1342 }, level = 65, group = "WeaponTreeSpellDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 375, 0, 375, 375, 375, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamageHighReducedSpellCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "42% increased Spell Damage", "40% reduced Spell Critical Strike Chance", statOrder = { 1108, 1342 }, level = 77, group = "WeaponTreeSpellDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 187, 0, 187, 187, 187, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamage2hHighReducedSpellCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "22% increased Spell Damage", "80% reduced Spell Critical Strike Chance", statOrder = { 1108, 1342 }, level = 1, group = "WeaponTreeSpellDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamage2hHighReducedSpellCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "34% increased Spell Damage", "80% reduced Spell Critical Strike Chance", statOrder = { 1108, 1342 }, level = 21, group = "WeaponTreeSpellDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamage2hHighReducedSpellCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "45% increased Spell Damage", "80% reduced Spell Critical Strike Chance", statOrder = { 1108, 1342 }, level = 46, group = "WeaponTreeSpellDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamage2hHighReducedSpellCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "56% increased Spell Damage", "80% reduced Spell Critical Strike Chance", statOrder = { 1108, 1342 }, level = 65, group = "WeaponTreeSpellDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 375, 0, 375, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamage2hHighReducedSpellCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "68% increased Spell Damage", "80% reduced Spell Critical Strike Chance", statOrder = { 1108, 1342 }, level = 77, group = "WeaponTreeSpellDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 187, 0, 187, 0 }, modTags = { }, }, - ["SpellDamage1"] = { tier = 1, "(3-7)% increased Spell Damage", statOrder = { 1108 }, level = 5, group = "SpellDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamage2"] = { tier = 2, "(8-12)% increased Spell Damage", statOrder = { 1108 }, level = 20, group = "SpellDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamage3"] = { tier = 3, "(13-17)% increased Spell Damage", statOrder = { 1108 }, level = 38, group = "SpellDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamage4"] = { tier = 4, "(18-22)% increased Spell Damage", statOrder = { 1108 }, level = 56, group = "SpellDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamage5"] = { tier = 5, "(23-26)% increased Spell Damage", statOrder = { 1108 }, level = 76, group = "SpellDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["WeaponTreeSpellDamage2h1"] = { type = "Spawn", tier = 1, "16% increased Spell Damage", statOrder = { 1108 }, level = 1, group = "WeaponTreeSpellDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1500, 0, 1500, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamage2h2"] = { type = "Spawn", tier = 2, "24% increased Spell Damage", statOrder = { 1108 }, level = 21, group = "WeaponTreeSpellDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1500, 0, 1500, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamage2h3"] = { type = "Spawn", tier = 3, "32% increased Spell Damage", statOrder = { 1108 }, level = 46, group = "WeaponTreeSpellDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1500, 0, 1500, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamage2h4"] = { type = "Spawn", tier = 4, "40% increased Spell Damage", statOrder = { 1108 }, level = 65, group = "WeaponTreeSpellDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 750, 0, 750, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamage2h5"] = { type = "Spawn", tier = 5, "48% increased Spell Damage", statOrder = { 1108 }, level = 77, group = "WeaponTreeSpellDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 375, 0, 375, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamageLowMana1"] = { type = "Spawn", tier = 1, "7% increased Spell Damage", "10% increased maximum Mana", statOrder = { 1108, 1462 }, level = 1, group = "WeaponTreeSpellDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 750, 0, 750, 750, 750, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamageLowMana2"] = { type = "Spawn", tier = 2, "10% increased Spell Damage", "10% increased maximum Mana", statOrder = { 1108, 1462 }, level = 21, group = "WeaponTreeSpellDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 750, 0, 750, 750, 750, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamageLowMana3"] = { type = "Spawn", tier = 3, "13% increased Spell Damage", "10% increased maximum Mana", statOrder = { 1108, 1462 }, level = 46, group = "WeaponTreeSpellDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 750, 0, 750, 750, 750, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamageLowMana4"] = { type = "Spawn", tier = 4, "17% increased Spell Damage", "10% increased maximum Mana", statOrder = { 1108, 1462 }, level = 65, group = "WeaponTreeSpellDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 375, 0, 375, 375, 375, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamageLowMana5"] = { type = "Spawn", tier = 5, "20% increased Spell Damage", "10% increased maximum Mana", statOrder = { 1108, 1462 }, level = 77, group = "WeaponTreeSpellDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 187, 0, 187, 187, 187, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamage2hLowMana1"] = { type = "Spawn", tier = 1, "11% increased Spell Damage", "20% increased maximum Mana", statOrder = { 1108, 1462 }, level = 1, group = "WeaponTreeSpellDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 750, 0, 750, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamage2hLowMana2"] = { type = "Spawn", tier = 2, "16% increased Spell Damage", "20% increased maximum Mana", statOrder = { 1108, 1462 }, level = 21, group = "WeaponTreeSpellDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 750, 0, 750, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamage2hLowMana3"] = { type = "Spawn", tier = 3, "21% increased Spell Damage", "20% increased maximum Mana", statOrder = { 1108, 1462 }, level = 46, group = "WeaponTreeSpellDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 750, 0, 750, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamage2hLowMana4"] = { type = "Spawn", tier = 4, "26% increased Spell Damage", "20% increased maximum Mana", statOrder = { 1108, 1462 }, level = 65, group = "WeaponTreeSpellDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 375, 0, 375, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamage2hLowMana5"] = { type = "Spawn", tier = 5, "32% increased Spell Damage", "20% increased maximum Mana", statOrder = { 1108, 1462 }, level = 77, group = "WeaponTreeSpellDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 187, 0, 187, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamageLowEnergyShield1"] = { type = "Spawn", tier = 1, "7% increased Spell Damage", "10% increased maximum Energy Shield", statOrder = { 1108, 1443 }, level = 1, group = "WeaponTreeSpellDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 750, 0, 750, 750, 750, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamageLowEnergyShield2"] = { type = "Spawn", tier = 2, "10% increased Spell Damage", "10% increased maximum Energy Shield", statOrder = { 1108, 1443 }, level = 21, group = "WeaponTreeSpellDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 750, 0, 750, 750, 750, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamageLowEnergyShield3"] = { type = "Spawn", tier = 3, "13% increased Spell Damage", "10% increased maximum Energy Shield", statOrder = { 1108, 1443 }, level = 46, group = "WeaponTreeSpellDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 750, 0, 750, 750, 750, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamageLowEnergyShield4"] = { type = "Spawn", tier = 4, "17% increased Spell Damage", "10% increased maximum Energy Shield", statOrder = { 1108, 1443 }, level = 65, group = "WeaponTreeSpellDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 375, 0, 375, 375, 375, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamageLowEnergyShield5"] = { type = "Spawn", tier = 5, "20% increased Spell Damage", "10% increased maximum Energy Shield", statOrder = { 1108, 1443 }, level = 77, group = "WeaponTreeSpellDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 187, 0, 187, 187, 187, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamage2hLowEnergyShield1"] = { type = "Spawn", tier = 1, "11% increased Spell Damage", "20% increased maximum Energy Shield", statOrder = { 1108, 1443 }, level = 1, group = "WeaponTreeSpellDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 750, 0, 750, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamage2hLowEnergyShield2"] = { type = "Spawn", tier = 2, "16% increased Spell Damage", "20% increased maximum Energy Shield", statOrder = { 1108, 1443 }, level = 21, group = "WeaponTreeSpellDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 750, 0, 750, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamage2hLowEnergyShield3"] = { type = "Spawn", tier = 3, "21% increased Spell Damage", "20% increased maximum Energy Shield", statOrder = { 1108, 1443 }, level = 46, group = "WeaponTreeSpellDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 750, 0, 750, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamage2hLowEnergyShield4"] = { type = "Spawn", tier = 4, "26% increased Spell Damage", "20% increased maximum Energy Shield", statOrder = { 1108, 1443 }, level = 65, group = "WeaponTreeSpellDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 375, 0, 375, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamage2hLowEnergyShield5"] = { type = "Spawn", tier = 5, "32% increased Spell Damage", "20% increased maximum Energy Shield", statOrder = { 1108, 1443 }, level = 77, group = "WeaponTreeSpellDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 187, 0, 187, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTimeHighLifeRecoveryRate1"] = { type = "Spawn", tier = 1, "14% increased Damage over Time", "10% reduced Life Recovery rate", statOrder = { 1095, 1460 }, level = 5, group = "WeaponTreeDamageOverTimeAndLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTimeHighLifeRecoveryRate2"] = { type = "Spawn", tier = 2, "21% increased Damage over Time", "10% reduced Life Recovery rate", statOrder = { 1095, 1460 }, level = 23, group = "WeaponTreeDamageOverTimeAndLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTimeHighLifeRecoveryRate3"] = { type = "Spawn", tier = 3, "28% increased Damage over Time", "10% reduced Life Recovery rate", statOrder = { 1095, 1460 }, level = 51, group = "WeaponTreeDamageOverTimeAndLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTimeHighLifeRecoveryRate4"] = { type = "Spawn", tier = 4, "35% increased Damage over Time", "10% reduced Life Recovery rate", statOrder = { 1095, 1460 }, level = 69, group = "WeaponTreeDamageOverTimeAndLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTimeHighLifeRecoveryRate5"] = { type = "Spawn", tier = 5, "42% increased Damage over Time", "10% reduced Life Recovery rate", statOrder = { 1095, 1460 }, level = 80, group = "WeaponTreeDamageOverTimeAndLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 31, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTime2hHighLifeRecoveryRate1"] = { type = "Spawn", tier = 1, "22% increased Damage over Time", "16% reduced Life Recovery rate", statOrder = { 1095, 1460 }, level = 5, group = "WeaponTreeDamageOverTimeAndLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTime2hHighLifeRecoveryRate2"] = { type = "Spawn", tier = 2, "34% increased Damage over Time", "16% reduced Life Recovery rate", statOrder = { 1095, 1460 }, level = 23, group = "WeaponTreeDamageOverTimeAndLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTime2hHighLifeRecoveryRate3"] = { type = "Spawn", tier = 3, "45% increased Damage over Time", "16% reduced Life Recovery rate", statOrder = { 1095, 1460 }, level = 51, group = "WeaponTreeDamageOverTimeAndLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTime2hHighLifeRecoveryRate4"] = { type = "Spawn", tier = 4, "56% increased Damage over Time", "16% reduced Life Recovery rate", statOrder = { 1095, 1460 }, level = 69, group = "WeaponTreeDamageOverTimeAndLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTime2hHighLifeRecoveryRate5"] = { type = "Spawn", tier = 5, "68% increased Damage over Time", "16% reduced Life Recovery rate", statOrder = { 1095, 1460 }, level = 80, group = "WeaponTreeDamageOverTimeAndLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 31, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTime1"] = { type = "Spawn", tier = 1, "10% increased Damage over Time", statOrder = { 1095 }, level = 5, group = "WeaponTreeDamageOverTime", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTime2"] = { type = "Spawn", tier = 2, "15% increased Damage over Time", statOrder = { 1095 }, level = 23, group = "WeaponTreeDamageOverTime", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTime3"] = { type = "Spawn", tier = 3, "20% increased Damage over Time", statOrder = { 1095 }, level = 51, group = "WeaponTreeDamageOverTime", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTime4"] = { type = "Spawn", tier = 4, "25% increased Damage over Time", statOrder = { 1095 }, level = 69, group = "WeaponTreeDamageOverTime", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTime5"] = { type = "Spawn", tier = 5, "30% increased Damage over Time", statOrder = { 1095 }, level = 80, group = "WeaponTreeDamageOverTime", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTime2h1"] = { type = "Spawn", tier = 1, "16% increased Damage over Time", statOrder = { 1095 }, level = 5, group = "WeaponTreeDamageOverTime", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTime2h2"] = { type = "Spawn", tier = 2, "24% increased Damage over Time", statOrder = { 1095 }, level = 23, group = "WeaponTreeDamageOverTime", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTime2h3"] = { type = "Spawn", tier = 3, "32% increased Damage over Time", statOrder = { 1095 }, level = 51, group = "WeaponTreeDamageOverTime", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTime2h4"] = { type = "Spawn", tier = 4, "40% increased Damage over Time", statOrder = { 1095 }, level = 69, group = "WeaponTreeDamageOverTime", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTime2h5"] = { type = "Spawn", tier = 5, "48% increased Damage over Time", statOrder = { 1095 }, level = 80, group = "WeaponTreeDamageOverTime", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTimeLowSkillEffectDuration1"] = { type = "Spawn", tier = 1, "7% increased Damage over Time", "5% increased Skill Effect Duration", statOrder = { 1095, 1776 }, level = 5, group = "WeaponTreeDamageOverTimeAndSkillEffectDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTimeLowSkillEffectDuration2"] = { type = "Spawn", tier = 2, "10% increased Damage over Time", "5% increased Skill Effect Duration", statOrder = { 1095, 1776 }, level = 23, group = "WeaponTreeDamageOverTimeAndSkillEffectDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTimeLowSkillEffectDuration3"] = { type = "Spawn", tier = 3, "13% increased Damage over Time", "5% increased Skill Effect Duration", statOrder = { 1095, 1776 }, level = 51, group = "WeaponTreeDamageOverTimeAndSkillEffectDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTimeLowSkillEffectDuration4"] = { type = "Spawn", tier = 4, "17% increased Damage over Time", "5% increased Skill Effect Duration", statOrder = { 1095, 1776 }, level = 69, group = "WeaponTreeDamageOverTimeAndSkillEffectDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTimeLowSkillEffectDuration5"] = { type = "Spawn", tier = 5, "20% increased Damage over Time", "5% increased Skill Effect Duration", statOrder = { 1095, 1776 }, level = 80, group = "WeaponTreeDamageOverTimeAndSkillEffectDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 31, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTime2hLowSkillEffectDuration1"] = { type = "Spawn", tier = 1, "11% increased Damage over Time", "10% increased Skill Effect Duration", statOrder = { 1095, 1776 }, level = 5, group = "WeaponTreeDamageOverTimeAndSkillEffectDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTime2hLowSkillEffectDuration2"] = { type = "Spawn", tier = 2, "16% increased Damage over Time", "10% increased Skill Effect Duration", statOrder = { 1095, 1776 }, level = 23, group = "WeaponTreeDamageOverTimeAndSkillEffectDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTime2hLowSkillEffectDuration3"] = { type = "Spawn", tier = 3, "21% increased Damage over Time", "10% increased Skill Effect Duration", statOrder = { 1095, 1776 }, level = 51, group = "WeaponTreeDamageOverTimeAndSkillEffectDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTime2hLowSkillEffectDuration4"] = { type = "Spawn", tier = 4, "26% increased Damage over Time", "10% increased Skill Effect Duration", statOrder = { 1095, 1776 }, level = 69, group = "WeaponTreeDamageOverTimeAndSkillEffectDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTime2hLowSkillEffectDuration5"] = { type = "Spawn", tier = 5, "32% increased Damage over Time", "10% increased Skill Effect Duration", statOrder = { 1095, 1776 }, level = 80, group = "WeaponTreeDamageOverTimeAndSkillEffectDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 31, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTimeLowAilmentDurationOnYou1"] = { type = "Spawn", tier = 1, "7% increased Damage over Time", "15% reduced Duration of Ailments on You", statOrder = { 1095, 4802 }, level = 5, group = "WeaponTreeDamageOverTimeAndSelfAilmentDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTimeLowAilmentDurationOnYou2"] = { type = "Spawn", tier = 2, "10% increased Damage over Time", "15% reduced Duration of Ailments on You", statOrder = { 1095, 4802 }, level = 23, group = "WeaponTreeDamageOverTimeAndSelfAilmentDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTimeLowAilmentDurationOnYou3"] = { type = "Spawn", tier = 3, "13% increased Damage over Time", "15% reduced Duration of Ailments on You", statOrder = { 1095, 4802 }, level = 51, group = "WeaponTreeDamageOverTimeAndSelfAilmentDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTimeLowAilmentDurationOnYou4"] = { type = "Spawn", tier = 4, "17% increased Damage over Time", "15% reduced Duration of Ailments on You", statOrder = { 1095, 4802 }, level = 69, group = "WeaponTreeDamageOverTimeAndSelfAilmentDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTimeLowAilmentDurationOnYou5"] = { type = "Spawn", tier = 5, "20% increased Damage over Time", "15% reduced Duration of Ailments on You", statOrder = { 1095, 4802 }, level = 80, group = "WeaponTreeDamageOverTimeAndSelfAilmentDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 31, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTime2hLowAilmentDurationOnYou1"] = { type = "Spawn", tier = 1, "11% increased Damage over Time", "25% reduced Duration of Ailments on You", statOrder = { 1095, 4802 }, level = 5, group = "WeaponTreeDamageOverTimeAndSelfAilmentDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTime2hLowAilmentDurationOnYou2"] = { type = "Spawn", tier = 2, "16% increased Damage over Time", "25% reduced Duration of Ailments on You", statOrder = { 1095, 4802 }, level = 23, group = "WeaponTreeDamageOverTimeAndSelfAilmentDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTime2hLowAilmentDurationOnYou3"] = { type = "Spawn", tier = 3, "21% increased Damage over Time", "25% reduced Duration of Ailments on You", statOrder = { 1095, 4802 }, level = 51, group = "WeaponTreeDamageOverTimeAndSelfAilmentDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTime2hLowAilmentDurationOnYou4"] = { type = "Spawn", tier = 4, "26% increased Damage over Time", "25% reduced Duration of Ailments on You", statOrder = { 1095, 4802 }, level = 69, group = "WeaponTreeDamageOverTimeAndSelfAilmentDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, - ["WeaponTreeDamageOverTime2hLowAilmentDurationOnYou5"] = { type = "Spawn", tier = 5, "32% increased Damage over Time", "25% reduced Duration of Ailments on You", statOrder = { 1095, 4802 }, level = 80, group = "WeaponTreeDamageOverTimeAndSelfAilmentDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 31, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalHighMinionReducedAttackAndCastSpeed1"] = { type = "Spawn", tier = 1, "Minions deal 2 to 5 additional Physical Damage", "Minions have 6% reduced Attack and Cast Speed", statOrder = { 3636, 8810 }, level = 1, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalHighMinionReducedAttackAndCastSpeed2"] = { type = "Spawn", tier = 2, "Minions deal 5 to 7 additional Physical Damage", "Minions have 6% reduced Attack and Cast Speed", statOrder = { 3636, 8810 }, level = 26, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalHighMinionReducedAttackAndCastSpeed3"] = { type = "Spawn", tier = 3, "Minions deal 8 to 14 additional Physical Damage", "Minions have 6% reduced Attack and Cast Speed", statOrder = { 3636, 8810 }, level = 42, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalHighMinionReducedAttackAndCastSpeed4"] = { type = "Spawn", tier = 4, "Minions deal 14 to 22 additional Physical Damage", "Minions have 6% reduced Attack and Cast Speed", statOrder = { 3636, 8810 }, level = 62, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalHighMinionReducedAttackAndCastSpeed5"] = { type = "Spawn", tier = 5, "Minions deal 28 to 42 additional Physical Damage", "Minions have 6% reduced Attack and Cast Speed", statOrder = { 3636, 8810 }, level = 82, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hHighMinionReducedAttackAndCastSpeed1"] = { type = "Spawn", tier = 1, "Minions deal 4 to 7 additional Physical Damage", "Minions have 10% reduced Attack and Cast Speed", statOrder = { 3636, 8810 }, level = 1, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hHighMinionReducedAttackAndCastSpeed2"] = { type = "Spawn", tier = 2, "Minions deal 7 to 12 additional Physical Damage", "Minions have 10% reduced Attack and Cast Speed", statOrder = { 3636, 8810 }, level = 26, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hHighMinionReducedAttackAndCastSpeed3"] = { type = "Spawn", tier = 3, "Minions deal 14 to 22 additional Physical Damage", "Minions have 10% reduced Attack and Cast Speed", statOrder = { 3636, 8810 }, level = 42, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hHighMinionReducedAttackAndCastSpeed4"] = { type = "Spawn", tier = 4, "Minions deal 24 to 37 additional Physical Damage", "Minions have 10% reduced Attack and Cast Speed", statOrder = { 3636, 8810 }, level = 62, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hHighMinionReducedAttackAndCastSpeed5"] = { type = "Spawn", tier = 5, "Minions deal 47 to 71 additional Physical Damage", "Minions have 10% reduced Attack and Cast Speed", statOrder = { 3636, 8810 }, level = 82, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 5 additional Physical Damage", statOrder = { 3636 }, level = 1, group = "WeaponTreeMinionAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2"] = { type = "Spawn", tier = 2, "Minions deal 2 to 6 additional Physical Damage", statOrder = { 3636 }, level = 26, group = "WeaponTreeMinionAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical3"] = { type = "Spawn", tier = 3, "Minions deal 6 to 10 additional Physical Damage", statOrder = { 3636 }, level = 42, group = "WeaponTreeMinionAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical4"] = { type = "Spawn", tier = 4, "Minions deal 11 to 17 additional Physical Damage", statOrder = { 3636 }, level = 62, group = "WeaponTreeMinionAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical5"] = { type = "Spawn", tier = 5, "Minions deal 21 to 33 additional Physical Damage", statOrder = { 3636 }, level = 82, group = "WeaponTreeMinionAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2h1"] = { type = "Spawn", tier = 1, "Minions deal 2 to 5 additional Physical Damage", statOrder = { 3636 }, level = 1, group = "WeaponTreeMinionAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2h2"] = { type = "Spawn", tier = 2, "Minions deal 5 to 10 additional Physical Damage", statOrder = { 3636 }, level = 26, group = "WeaponTreeMinionAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2h3"] = { type = "Spawn", tier = 3, "Minions deal 10 to 17 additional Physical Damage", statOrder = { 3636 }, level = 42, group = "WeaponTreeMinionAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2h4"] = { type = "Spawn", tier = 4, "Minions deal 18 to 28 additional Physical Damage", statOrder = { 3636 }, level = 62, group = "WeaponTreeMinionAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2h5"] = { type = "Spawn", tier = 5, "Minions deal 36 to 55 additional Physical Damage", statOrder = { 3636 }, level = 82, group = "WeaponTreeMinionAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionFireConversion1"] = { type = "Spawn", tier = 1, "Minions convert 15% of Physical Damage to Fire Damage", "Minions deal 1 to 3 additional Physical Damage", statOrder = { 1835, 3636 }, level = 10, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionFireConversion2"] = { type = "Spawn", tier = 2, "Minions convert 15% of Physical Damage to Fire Damage", "Minions deal 2 to 4 additional Physical Damage", statOrder = { 1835, 3636 }, level = 31, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionFireConversion3"] = { type = "Spawn", tier = 3, "Minions convert 15% of Physical Damage to Fire Damage", "Minions deal 4 to 6 additional Physical Damage", statOrder = { 1835, 3636 }, level = 54, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionFireConversion4"] = { type = "Spawn", tier = 4, "Minions convert 15% of Physical Damage to Fire Damage", "Minions deal 6 to 10 additional Physical Damage", statOrder = { 1835, 3636 }, level = 72, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionFireConversion5"] = { type = "Spawn", tier = 5, "Minions convert 15% of Physical Damage to Fire Damage", "Minions deal 13 to 20 additional Physical Damage", statOrder = { 1835, 3636 }, level = 84, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 160, 160, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionFireConversion1"] = { type = "Spawn", tier = 1, "Minions convert 25% of Physical Damage to Fire Damage", "Minions deal 1 to 3 additional Physical Damage", statOrder = { 1835, 3636 }, level = 10, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionFireConversion2"] = { type = "Spawn", tier = 2, "Minions convert 25% of Physical Damage to Fire Damage", "Minions deal 3 to 6 additional Physical Damage", statOrder = { 1835, 3636 }, level = 31, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionFireConversion3"] = { type = "Spawn", tier = 3, "Minions convert 25% of Physical Damage to Fire Damage", "Minions deal 7 to 10 additional Physical Damage", statOrder = { 1835, 3636 }, level = 54, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionFireConversion4"] = { type = "Spawn", tier = 4, "Minions convert 25% of Physical Damage to Fire Damage", "Minions deal 11 to 17 additional Physical Damage", statOrder = { 1835, 3636 }, level = 72, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionFireConversion5"] = { type = "Spawn", tier = 5, "Minions convert 25% of Physical Damage to Fire Damage", "Minions deal 22 to 33 additional Physical Damage", statOrder = { 1835, 3636 }, level = 84, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 160, 160, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionColdConversion1"] = { type = "Spawn", tier = 1, "Minions convert 15% of Physical Damage to Cold Damage", "Minions deal 1 to 3 additional Physical Damage", statOrder = { 1837, 3636 }, level = 10, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionColdConversion2"] = { type = "Spawn", tier = 2, "Minions convert 15% of Physical Damage to Cold Damage", "Minions deal 2 to 4 additional Physical Damage", statOrder = { 1837, 3636 }, level = 31, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionColdConversion3"] = { type = "Spawn", tier = 3, "Minions convert 15% of Physical Damage to Cold Damage", "Minions deal 4 to 6 additional Physical Damage", statOrder = { 1837, 3636 }, level = 54, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionColdConversion4"] = { type = "Spawn", tier = 4, "Minions convert 15% of Physical Damage to Cold Damage", "Minions deal 6 to 10 additional Physical Damage", statOrder = { 1837, 3636 }, level = 72, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionColdConversion5"] = { type = "Spawn", tier = 5, "Minions convert 15% of Physical Damage to Cold Damage", "Minions deal 13 to 20 additional Physical Damage", statOrder = { 1837, 3636 }, level = 84, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 160, 160, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionColdConversion1"] = { type = "Spawn", tier = 1, "Minions convert 25% of Physical Damage to Cold Damage", "Minions deal 1 to 3 additional Physical Damage", statOrder = { 1837, 3636 }, level = 10, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionColdConversion2"] = { type = "Spawn", tier = 2, "Minions convert 25% of Physical Damage to Cold Damage", "Minions deal 3 to 6 additional Physical Damage", statOrder = { 1837, 3636 }, level = 31, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionColdConversion3"] = { type = "Spawn", tier = 3, "Minions convert 25% of Physical Damage to Cold Damage", "Minions deal 7 to 10 additional Physical Damage", statOrder = { 1837, 3636 }, level = 54, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionColdConversion4"] = { type = "Spawn", tier = 4, "Minions convert 25% of Physical Damage to Cold Damage", "Minions deal 11 to 17 additional Physical Damage", statOrder = { 1837, 3636 }, level = 72, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionColdConversion5"] = { type = "Spawn", tier = 5, "Minions convert 25% of Physical Damage to Cold Damage", "Minions deal 22 to 33 additional Physical Damage", statOrder = { 1837, 3636 }, level = 84, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 160, 160, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionLightningConversion1"] = { type = "Spawn", tier = 1, "Minions convert 15% of Physical Damage to Lightning Damage", "Minions deal 1 to 3 additional Physical Damage", statOrder = { 1839, 3636 }, level = 10, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionLightningConversion2"] = { type = "Spawn", tier = 2, "Minions convert 15% of Physical Damage to Lightning Damage", "Minions deal 2 to 4 additional Physical Damage", statOrder = { 1839, 3636 }, level = 31, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionLightningConversion3"] = { type = "Spawn", tier = 3, "Minions convert 15% of Physical Damage to Lightning Damage", "Minions deal 4 to 6 additional Physical Damage", statOrder = { 1839, 3636 }, level = 54, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionLightningConversion4"] = { type = "Spawn", tier = 4, "Minions convert 15% of Physical Damage to Lightning Damage", "Minions deal 6 to 10 additional Physical Damage", statOrder = { 1839, 3636 }, level = 72, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionLightningConversion5"] = { type = "Spawn", tier = 5, "Minions convert 15% of Physical Damage to Lightning Damage", "Minions deal 13 to 20 additional Physical Damage", statOrder = { 1839, 3636 }, level = 84, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 160, 160, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionLightningConversion1"] = { type = "Spawn", tier = 1, "Minions convert 25% of Physical Damage to Lightning Damage", "Minions deal 1 to 3 additional Physical Damage", statOrder = { 1839, 3636 }, level = 10, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionLightningConversion2"] = { type = "Spawn", tier = 2, "Minions convert 25% of Physical Damage to Lightning Damage", "Minions deal 3 to 6 additional Physical Damage", statOrder = { 1839, 3636 }, level = 31, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionLightningConversion3"] = { type = "Spawn", tier = 3, "Minions convert 25% of Physical Damage to Lightning Damage", "Minions deal 7 to 10 additional Physical Damage", statOrder = { 1839, 3636 }, level = 54, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionLightningConversion4"] = { type = "Spawn", tier = 4, "Minions convert 25% of Physical Damage to Lightning Damage", "Minions deal 11 to 17 additional Physical Damage", statOrder = { 1839, 3636 }, level = 72, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionLightningConversion5"] = { type = "Spawn", tier = 5, "Minions convert 25% of Physical Damage to Lightning Damage", "Minions deal 22 to 33 additional Physical Damage", statOrder = { 1839, 3636 }, level = 84, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 160, 160, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionChaosConversion1"] = { type = "Spawn", tier = 1, "Minions convert 15% of Physical Damage to Chaos Damage", "Minions deal 1 to 3 additional Physical Damage", statOrder = { 1842, 3636 }, level = 13, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionChaosConversion2"] = { type = "Spawn", tier = 2, "Minions convert 15% of Physical Damage to Chaos Damage", "Minions deal 2 to 4 additional Physical Damage", statOrder = { 1842, 3636 }, level = 27, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionChaosConversion3"] = { type = "Spawn", tier = 3, "Minions convert 15% of Physical Damage to Chaos Damage", "Minions deal 4 to 6 additional Physical Damage", statOrder = { 1842, 3636 }, level = 57, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionChaosConversion4"] = { type = "Spawn", tier = 4, "Minions convert 15% of Physical Damage to Chaos Damage", "Minions deal 6 to 10 additional Physical Damage", statOrder = { 1842, 3636 }, level = 74, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionChaosConversion5"] = { type = "Spawn", tier = 5, "Minions convert 15% of Physical Damage to Chaos Damage", "Minions deal 13 to 20 additional Physical Damage", statOrder = { 1842, 3636 }, level = 85, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 160, 160, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionChaosConversion1"] = { type = "Spawn", tier = 1, "Minions convert 25% of Physical Damage to Chaos Damage", "Minions deal 1 to 3 additional Physical Damage", statOrder = { 1842, 3636 }, level = 13, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionChaosConversion2"] = { type = "Spawn", tier = 2, "Minions convert 25% of Physical Damage to Chaos Damage", "Minions deal 3 to 6 additional Physical Damage", statOrder = { 1842, 3636 }, level = 27, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionChaosConversion3"] = { type = "Spawn", tier = 3, "Minions convert 25% of Physical Damage to Chaos Damage", "Minions deal 7 to 10 additional Physical Damage", statOrder = { 1842, 3636 }, level = 57, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionChaosConversion4"] = { type = "Spawn", tier = 4, "Minions convert 25% of Physical Damage to Chaos Damage", "Minions deal 11 to 17 additional Physical Damage", statOrder = { 1842, 3636 }, level = 74, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionChaosConversion5"] = { type = "Spawn", tier = 5, "Minions convert 25% of Physical Damage to Chaos Damage", "Minions deal 22 to 33 additional Physical Damage", statOrder = { 1842, 3636 }, level = 85, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 160, 160, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionOverwhelm1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 3 additional Physical Damage", "Minions Attacks Overwhelm 5% Physical Damage Reduction", statOrder = { 3636, 8879 }, level = 13, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionOverwhelm2"] = { type = "Spawn", tier = 2, "Minions deal 2 to 4 additional Physical Damage", "Minions Attacks Overwhelm 5% Physical Damage Reduction", statOrder = { 3636, 8879 }, level = 27, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionOverwhelm3"] = { type = "Spawn", tier = 3, "Minions deal 4 to 6 additional Physical Damage", "Minions Attacks Overwhelm 5% Physical Damage Reduction", statOrder = { 3636, 8879 }, level = 57, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionOverwhelm4"] = { type = "Spawn", tier = 4, "Minions deal 6 to 10 additional Physical Damage", "Minions Attacks Overwhelm 5% Physical Damage Reduction", statOrder = { 3636, 8879 }, level = 74, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysicalLowMinionOverwhelm5"] = { type = "Spawn", tier = 5, "Minions deal 13 to 20 additional Physical Damage", "Minions Attacks Overwhelm 5% Physical Damage Reduction", statOrder = { 3636, 8879 }, level = 85, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionOverwhelm1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 3 additional Physical Damage", "Minions Attacks Overwhelm 10% Physical Damage Reduction", statOrder = { 3636, 8879 }, level = 13, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionOverwhelm2"] = { type = "Spawn", tier = 2, "Minions deal 3 to 6 additional Physical Damage", "Minions Attacks Overwhelm 10% Physical Damage Reduction", statOrder = { 3636, 8879 }, level = 27, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionOverwhelm3"] = { type = "Spawn", tier = 3, "Minions deal 7 to 10 additional Physical Damage", "Minions Attacks Overwhelm 10% Physical Damage Reduction", statOrder = { 3636, 8879 }, level = 57, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionOverwhelm4"] = { type = "Spawn", tier = 4, "Minions deal 11 to 17 additional Physical Damage", "Minions Attacks Overwhelm 10% Physical Damage Reduction", statOrder = { 3636, 8879 }, level = 74, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedPhysical2hLowMinionOverwhelm5"] = { type = "Spawn", tier = 5, "Minions deal 22 to 33 additional Physical Damage", "Minions Attacks Overwhelm 10% Physical Damage Reduction", statOrder = { 3636, 8879 }, level = 85, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFireHighMinionReducedAttackAndCastSpeed1"] = { type = "Spawn", tier = 1, "Minions deal 4 to 6 additional Fire Damage", "Minions have 6% reduced Attack and Cast Speed", statOrder = { 3634, 8810 }, level = 1, group = "WeaponTreeMinionAddedFireDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFireHighMinionReducedAttackAndCastSpeed2"] = { type = "Spawn", tier = 2, "Minions deal 6 to 10 additional Fire Damage", "Minions have 6% reduced Attack and Cast Speed", statOrder = { 3634, 8810 }, level = 26, group = "WeaponTreeMinionAddedFireDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFireHighMinionReducedAttackAndCastSpeed3"] = { type = "Spawn", tier = 3, "Minions deal 12 to 18 additional Fire Damage", "Minions have 6% reduced Attack and Cast Speed", statOrder = { 3634, 8810 }, level = 42, group = "WeaponTreeMinionAddedFireDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFireHighMinionReducedAttackAndCastSpeed4"] = { type = "Spawn", tier = 4, "Minions deal 19 to 30 additional Fire Damage", "Minions have 6% reduced Attack and Cast Speed", statOrder = { 3634, 8810 }, level = 62, group = "WeaponTreeMinionAddedFireDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFireHighMinionReducedAttackAndCastSpeed5"] = { type = "Spawn", tier = 5, "Minions deal 39 to 59 additional Fire Damage", "Minions have 6% reduced Attack and Cast Speed", statOrder = { 3634, 8810 }, level = 82, group = "WeaponTreeMinionAddedFireDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFire2hHighMinionReducedAttackAndCastSpeed1"] = { type = "Spawn", tier = 1, "Minions deal 7 to 10 additional Fire Damage", "Minions have 10% reduced Attack and Cast Speed", statOrder = { 3634, 8810 }, level = 1, group = "WeaponTreeMinionAddedFireDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFire2hHighMinionReducedAttackAndCastSpeed2"] = { type = "Spawn", tier = 2, "Minions deal 11 to 17 additional Fire Damage", "Minions have 10% reduced Attack and Cast Speed", statOrder = { 3634, 8810 }, level = 26, group = "WeaponTreeMinionAddedFireDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFire2hHighMinionReducedAttackAndCastSpeed3"] = { type = "Spawn", tier = 3, "Minions deal 21 to 34 additional Fire Damage", "Minions have 10% reduced Attack and Cast Speed", statOrder = { 3634, 8810 }, level = 42, group = "WeaponTreeMinionAddedFireDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFire2hHighMinionReducedAttackAndCastSpeed4"] = { type = "Spawn", tier = 4, "Minions deal 37 to 55 additional Fire Damage", "Minions have 10% reduced Attack and Cast Speed", statOrder = { 3634, 8810 }, level = 62, group = "WeaponTreeMinionAddedFireDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFire2hHighMinionReducedAttackAndCastSpeed5"] = { type = "Spawn", tier = 5, "Minions deal 73 to 109 additional Fire Damage", "Minions have 10% reduced Attack and Cast Speed", statOrder = { 3634, 8810 }, level = 82, group = "WeaponTreeMinionAddedFireDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFire1"] = { type = "Spawn", tier = 1, "Minions deal 2 to 5 additional Fire Damage", statOrder = { 3634 }, level = 1, group = "WeaponTreeMinionAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFire2"] = { type = "Spawn", tier = 2, "Minions deal 5 to 7 additional Fire Damage", statOrder = { 3634 }, level = 26, group = "WeaponTreeMinionAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFire3"] = { type = "Spawn", tier = 3, "Minions deal 9 to 14 additional Fire Damage", statOrder = { 3634 }, level = 42, group = "WeaponTreeMinionAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFire4"] = { type = "Spawn", tier = 4, "Minions deal 15 to 24 additional Fire Damage", statOrder = { 3634 }, level = 62, group = "WeaponTreeMinionAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFire5"] = { type = "Spawn", tier = 5, "Minions deal 30 to 45 additional Fire Damage", statOrder = { 3634 }, level = 82, group = "WeaponTreeMinionAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFire2h1"] = { type = "Spawn", tier = 1, "Minions deal 5 to 7 additional Fire Damage", statOrder = { 3634 }, level = 1, group = "WeaponTreeMinionAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFire2h2"] = { type = "Spawn", tier = 2, "Minions deal 9 to 13 additional Fire Damage", statOrder = { 3634 }, level = 26, group = "WeaponTreeMinionAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFire2h3"] = { type = "Spawn", tier = 3, "Minions deal 16 to 26 additional Fire Damage", statOrder = { 3634 }, level = 42, group = "WeaponTreeMinionAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFire2h4"] = { type = "Spawn", tier = 4, "Minions deal 28 to 43 additional Fire Damage", statOrder = { 3634 }, level = 62, group = "WeaponTreeMinionAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFire2h5"] = { type = "Spawn", tier = 5, "Minions deal 56 to 84 additional Fire Damage", statOrder = { 3634 }, level = 82, group = "WeaponTreeMinionAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFireLowMinionIgniteChance1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 3 additional Fire Damage", "Minions have 8% chance to Ignite", statOrder = { 3634, 8825 }, level = 1, group = "WeaponTreeMinionAddedFireDamageAndMinionIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFireLowMinionIgniteChance2"] = { type = "Spawn", tier = 2, "Minions deal 2 to 4 additional Fire Damage", "Minions have 8% chance to Ignite", statOrder = { 3634, 8825 }, level = 26, group = "WeaponTreeMinionAddedFireDamageAndMinionIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFireLowMinionIgniteChance3"] = { type = "Spawn", tier = 3, "Minions deal 4 to 9 additional Fire Damage", "Minions have 8% chance to Ignite", statOrder = { 3634, 8825 }, level = 42, group = "WeaponTreeMinionAddedFireDamageAndMinionIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFireLowMinionIgniteChance4"] = { type = "Spawn", tier = 4, "Minions deal 8 to 14 additional Fire Damage", "Minions have 8% chance to Ignite", statOrder = { 3634, 8825 }, level = 62, group = "WeaponTreeMinionAddedFireDamageAndMinionIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFireLowMinionIgniteChance5"] = { type = "Spawn", tier = 5, "Minions deal 18 to 28 additional Fire Damage", "Minions have 8% chance to Ignite", statOrder = { 3634, 8825 }, level = 82, group = "WeaponTreeMinionAddedFireDamageAndMinionIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFire2hLowMinionIgniteChance1"] = { type = "Spawn", tier = 1, "Minions deal 2 to 6 additional Fire Damage", "Minions have 16% chance to Ignite", statOrder = { 3634, 8825 }, level = 1, group = "WeaponTreeMinionAddedFireDamageAndMinionIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFire2hLowMinionIgniteChance2"] = { type = "Spawn", tier = 2, "Minions deal 5 to 8 additional Fire Damage", "Minions have 16% chance to Ignite", statOrder = { 3634, 8825 }, level = 26, group = "WeaponTreeMinionAddedFireDamageAndMinionIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFire2hLowMinionIgniteChance3"] = { type = "Spawn", tier = 3, "Minions deal 9 to 16 additional Fire Damage", "Minions have 16% chance to Ignite", statOrder = { 3634, 8825 }, level = 42, group = "WeaponTreeMinionAddedFireDamageAndMinionIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFire2hLowMinionIgniteChance4"] = { type = "Spawn", tier = 4, "Minions deal 16 to 26 additional Fire Damage", "Minions have 16% chance to Ignite", statOrder = { 3634, 8825 }, level = 62, group = "WeaponTreeMinionAddedFireDamageAndMinionIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFire2hLowMinionIgniteChance5"] = { type = "Spawn", tier = 5, "Minions deal 34 to 51 additional Fire Damage", "Minions have 16% chance to Ignite", statOrder = { 3634, 8825 }, level = 82, group = "WeaponTreeMinionAddedFireDamageAndMinionIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFireLowImplicitEffect1"] = { type = "Spawn", tier = 1, "25% increased Implicit Modifier magnitudes", "Minions deal 1 to 3 additional Fire Damage", statOrder = { 40, 3634 }, level = 10, group = "WeaponTreeMinionAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFireLowImplicitEffect2"] = { type = "Spawn", tier = 2, "25% increased Implicit Modifier magnitudes", "Minions deal 2 to 4 additional Fire Damage", statOrder = { 40, 3634 }, level = 30, group = "WeaponTreeMinionAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFireLowImplicitEffect3"] = { type = "Spawn", tier = 3, "25% increased Implicit Modifier magnitudes", "Minions deal 4 to 9 additional Fire Damage", statOrder = { 40, 3634 }, level = 48, group = "WeaponTreeMinionAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFireLowImplicitEffect4"] = { type = "Spawn", tier = 4, "25% increased Implicit Modifier magnitudes", "Minions deal 8 to 14 additional Fire Damage", statOrder = { 40, 3634 }, level = 66, group = "WeaponTreeMinionAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFireLowImplicitEffect5"] = { type = "Spawn", tier = 5, "25% increased Implicit Modifier magnitudes", "Minions deal 18 to 28 additional Fire Damage", statOrder = { 40, 3634 }, level = 84, group = "WeaponTreeMinionAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFire2hLowImplicitEffect1"] = { type = "Spawn", tier = 1, "25% increased Implicit Modifier magnitudes", "Minions deal 2 to 6 additional Fire Damage", statOrder = { 40, 3634 }, level = 10, group = "WeaponTreeMinionAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFire2hLowImplicitEffect2"] = { type = "Spawn", tier = 2, "25% increased Implicit Modifier magnitudes", "Minions deal 5 to 8 additional Fire Damage", statOrder = { 40, 3634 }, level = 30, group = "WeaponTreeMinionAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFire2hLowImplicitEffect3"] = { type = "Spawn", tier = 3, "25% increased Implicit Modifier magnitudes", "Minions deal 9 to 16 additional Fire Damage", statOrder = { 40, 3634 }, level = 48, group = "WeaponTreeMinionAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFire2hLowImplicitEffect4"] = { type = "Spawn", tier = 4, "25% increased Implicit Modifier magnitudes", "Minions deal 16 to 26 additional Fire Damage", statOrder = { 40, 3634 }, level = 66, group = "WeaponTreeMinionAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedFire2hLowImplicitEffect5"] = { type = "Spawn", tier = 5, "25% increased Implicit Modifier magnitudes", "Minions deal 34 to 51 additional Fire Damage", statOrder = { 40, 3634 }, level = 84, group = "WeaponTreeMinionAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedColdHighMinionReducedCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "Minions deal 4 to 6 additional Cold Damage", "Minions have 40% reduced Critical Strike Chance", statOrder = { 3633, 8829 }, level = 1, group = "WeaponTreeMinionAddedColdDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedColdHighMinionReducedCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "Minions deal 6 to 10 additional Cold Damage", "Minions have 40% reduced Critical Strike Chance", statOrder = { 3633, 8829 }, level = 26, group = "WeaponTreeMinionAddedColdDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedColdHighMinionReducedCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "Minions deal 12 to 18 additional Cold Damage", "Minions have 40% reduced Critical Strike Chance", statOrder = { 3633, 8829 }, level = 42, group = "WeaponTreeMinionAddedColdDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedColdHighMinionReducedCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "Minions deal 19 to 30 additional Cold Damage", "Minions have 40% reduced Critical Strike Chance", statOrder = { 3633, 8829 }, level = 62, group = "WeaponTreeMinionAddedColdDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedColdHighMinionReducedCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "Minions deal 39 to 59 additional Cold Damage", "Minions have 40% reduced Critical Strike Chance", statOrder = { 3633, 8829 }, level = 82, group = "WeaponTreeMinionAddedColdDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedCold2hHighMinionReducedCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "Minions deal 7 to 10 additional Cold Damage", "Minions have 80% reduced Critical Strike Chance", statOrder = { 3633, 8829 }, level = 1, group = "WeaponTreeMinionAddedColdDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedCold2hHighMinionReducedCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "Minions deal 11 to 17 additional Cold Damage", "Minions have 80% reduced Critical Strike Chance", statOrder = { 3633, 8829 }, level = 26, group = "WeaponTreeMinionAddedColdDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedCold2hHighMinionReducedCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "Minions deal 21 to 34 additional Cold Damage", "Minions have 80% reduced Critical Strike Chance", statOrder = { 3633, 8829 }, level = 42, group = "WeaponTreeMinionAddedColdDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedCold2hHighMinionReducedCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "Minions deal 37 to 55 additional Cold Damage", "Minions have 80% reduced Critical Strike Chance", statOrder = { 3633, 8829 }, level = 62, group = "WeaponTreeMinionAddedColdDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedCold2hHighMinionReducedCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "Minions deal 73 to 109 additional Cold Damage", "Minions have 80% reduced Critical Strike Chance", statOrder = { 3633, 8829 }, level = 82, group = "WeaponTreeMinionAddedColdDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedCold1"] = { type = "Spawn", tier = 1, "Minions deal 2 to 6 additional Cold Damage", statOrder = { 3633 }, level = 1, group = "WeaponTreeMinionAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedCold2"] = { type = "Spawn", tier = 2, "Minions deal 5 to 8 additional Cold Damage", statOrder = { 3633 }, level = 26, group = "WeaponTreeMinionAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedCold3"] = { type = "Spawn", tier = 3, "Minions deal 10 to 17 additional Cold Damage", statOrder = { 3633 }, level = 42, group = "WeaponTreeMinionAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedCold4"] = { type = "Spawn", tier = 4, "Minions deal 18 to 28 additional Cold Damage", statOrder = { 3633 }, level = 62, group = "WeaponTreeMinionAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedCold5"] = { type = "Spawn", tier = 5, "Minions deal 37 to 56 additional Cold Damage", statOrder = { 3633 }, level = 82, group = "WeaponTreeMinionAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedCold2h1"] = { type = "Spawn", tier = 1, "Minions deal 5 to 10 additional Cold Damage", statOrder = { 3633 }, level = 1, group = "WeaponTreeMinionAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedCold2h2"] = { type = "Spawn", tier = 2, "Minions deal 10 to 16 additional Cold Damage", statOrder = { 3633 }, level = 26, group = "WeaponTreeMinionAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedCold2h3"] = { type = "Spawn", tier = 3, "Minions deal 20 to 32 additional Cold Damage", statOrder = { 3633 }, level = 42, group = "WeaponTreeMinionAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedCold2h4"] = { type = "Spawn", tier = 4, "Minions deal 34 to 52 additional Cold Damage", statOrder = { 3633 }, level = 62, group = "WeaponTreeMinionAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedCold2h5"] = { type = "Spawn", tier = 5, "Minions deal 68 to 103 additional Cold Damage", statOrder = { 3633 }, level = 82, group = "WeaponTreeMinionAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedColdLowMinionFreezeChance1"] = { type = "Spawn", tier = 1, "Minions deal 2 to 5 additional Cold Damage", "Minions have 8% chance to Freeze", statOrder = { 3633, 8822 }, level = 1, group = "WeaponTreeMinionAddedColdDamageAndMinionFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedColdLowMinionFreezeChance2"] = { type = "Spawn", tier = 2, "Minions deal 3 to 7 additional Cold Damage", "Minions have 8% chance to Freeze", statOrder = { 3633, 8822 }, level = 26, group = "WeaponTreeMinionAddedColdDamageAndMinionFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedColdLowMinionFreezeChance3"] = { type = "Spawn", tier = 3, "Minions deal 8 to 14 additional Cold Damage", "Minions have 8% chance to Freeze", statOrder = { 3633, 8822 }, level = 42, group = "WeaponTreeMinionAddedColdDamageAndMinionFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedColdLowMinionFreezeChance4"] = { type = "Spawn", tier = 4, "Minions deal 14 to 21 additional Cold Damage", "Minions have 8% chance to Freeze", statOrder = { 3633, 8822 }, level = 62, group = "WeaponTreeMinionAddedColdDamageAndMinionFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedColdLowMinionFreezeChance5"] = { type = "Spawn", tier = 5, "Minions deal 29 to 43 additional Cold Damage", "Minions have 8% chance to Freeze", statOrder = { 3633, 8822 }, level = 82, group = "WeaponTreeMinionAddedColdDamageAndMinionFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedCold2hLowMinionFreezeChance1"] = { type = "Spawn", tier = 1, "Minions deal 4 to 7 additional Cold Damage", "Minions have 16% chance to Freeze", statOrder = { 3633, 8822 }, level = 1, group = "WeaponTreeMinionAddedColdDamageAndMinionFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedCold2hLowMinionFreezeChance2"] = { type = "Spawn", tier = 2, "Minions deal 7 to 12 additional Cold Damage", "Minions have 16% chance to Freeze", statOrder = { 3633, 8822 }, level = 26, group = "WeaponTreeMinionAddedColdDamageAndMinionFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedCold2hLowMinionFreezeChance3"] = { type = "Spawn", tier = 3, "Minions deal 15 to 24 additional Cold Damage", "Minions have 16% chance to Freeze", statOrder = { 3633, 8822 }, level = 42, group = "WeaponTreeMinionAddedColdDamageAndMinionFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedCold2hLowMinionFreezeChance4"] = { type = "Spawn", tier = 4, "Minions deal 26 to 40 additional Cold Damage", "Minions have 16% chance to Freeze", statOrder = { 3633, 8822 }, level = 62, group = "WeaponTreeMinionAddedColdDamageAndMinionFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedCold2hLowMinionFreezeChance5"] = { type = "Spawn", tier = 5, "Minions deal 53 to 79 additional Cold Damage", "Minions have 16% chance to Freeze", statOrder = { 3633, 8822 }, level = 82, group = "WeaponTreeMinionAddedColdDamageAndMinionFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedColdLowMinionAttackAndCastSpeed1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 3 additional Cold Damage", "Minions have 6% increased Attack and Cast Speed", statOrder = { 3633, 8810 }, level = 10, group = "WeaponTreeMinionAddedColdDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedColdLowMinionAttackAndCastSpeed2"] = { type = "Spawn", tier = 2, "Minions deal 2 to 4 additional Cold Damage", "Minions have 6% increased Attack and Cast Speed", statOrder = { 3633, 8810 }, level = 30, group = "WeaponTreeMinionAddedColdDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedColdLowMinionAttackAndCastSpeed3"] = { type = "Spawn", tier = 3, "Minions deal 4 to 8 additional Cold Damage", "Minions have 6% increased Attack and Cast Speed", statOrder = { 3633, 8810 }, level = 48, group = "WeaponTreeMinionAddedColdDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedColdLowMinionAttackAndCastSpeed4"] = { type = "Spawn", tier = 4, "Minions deal 8 to 14 additional Cold Damage", "Minions have 6% increased Attack and Cast Speed", statOrder = { 3633, 8810 }, level = 66, group = "WeaponTreeMinionAddedColdDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedColdLowMinionAttackAndCastSpeed5"] = { type = "Spawn", tier = 5, "Minions deal 17 to 25 additional Cold Damage", "Minions have 6% increased Attack and Cast Speed", statOrder = { 3633, 8810 }, level = 84, group = "WeaponTreeMinionAddedColdDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedCold2hLowMinionAttackAndCastSpeed1"] = { type = "Spawn", tier = 1, "Minions deal 2 to 5 additional Cold Damage", "Minions have 10% increased Attack and Cast Speed", statOrder = { 3633, 8810 }, level = 10, group = "WeaponTreeMinionAddedColdDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedCold2hLowMinionAttackAndCastSpeed2"] = { type = "Spawn", tier = 2, "Minions deal 5 to 8 additional Cold Damage", "Minions have 10% increased Attack and Cast Speed", statOrder = { 3633, 8810 }, level = 30, group = "WeaponTreeMinionAddedColdDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedCold2hLowMinionAttackAndCastSpeed3"] = { type = "Spawn", tier = 3, "Minions deal 9 to 15 additional Cold Damage", "Minions have 10% increased Attack and Cast Speed", statOrder = { 3633, 8810 }, level = 48, group = "WeaponTreeMinionAddedColdDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedCold2hLowMinionAttackAndCastSpeed4"] = { type = "Spawn", tier = 4, "Minions deal 16 to 25 additional Cold Damage", "Minions have 10% increased Attack and Cast Speed", statOrder = { 3633, 8810 }, level = 66, group = "WeaponTreeMinionAddedColdDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedCold2hLowMinionAttackAndCastSpeed5"] = { type = "Spawn", tier = 5, "Minions deal 32 to 47 additional Cold Damage", "Minions have 10% increased Attack and Cast Speed", statOrder = { 3633, 8810 }, level = 84, group = "WeaponTreeMinionAddedColdDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightningHighDamageTaken1"] = { type = "Spawn", tier = 1, "4% increased Lightning Damage taken", "Minions deal 1 to 9 additional Lightning Damage", statOrder = { 3254, 3635 }, level = 1, group = "WeaponTreeMinionAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightningHighDamageTaken2"] = { type = "Spawn", tier = 2, "4% increased Lightning Damage taken", "Minions deal 1 to 15 additional Lightning Damage", statOrder = { 3254, 3635 }, level = 26, group = "WeaponTreeMinionAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightningHighDamageTaken3"] = { type = "Spawn", tier = 3, "4% increased Lightning Damage taken", "Minions deal 1 to 29 additional Lightning Damage", statOrder = { 3254, 3635 }, level = 42, group = "WeaponTreeMinionAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightningHighDamageTaken4"] = { type = "Spawn", tier = 4, "4% increased Lightning Damage taken", "Minions deal 2 to 48 additional Lightning Damage", statOrder = { 3254, 3635 }, level = 62, group = "WeaponTreeMinionAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightningHighDamageTaken5"] = { type = "Spawn", tier = 5, "4% increased Lightning Damage taken", "Minions deal 5 to 94 additional Lightning Damage", statOrder = { 3254, 3635 }, level = 82, group = "WeaponTreeMinionAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning2hHighDamageTaken1"] = { type = "Spawn", tier = 1, "6% increased Lightning Damage taken", "Minions deal 1 to 16 additional Lightning Damage", statOrder = { 3254, 3635 }, level = 1, group = "WeaponTreeMinionAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning2hHighDamageTaken2"] = { type = "Spawn", tier = 2, "6% increased Lightning Damage taken", "Minions deal 1 to 28 additional Lightning Damage", statOrder = { 3254, 3635 }, level = 26, group = "WeaponTreeMinionAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning2hHighDamageTaken3"] = { type = "Spawn", tier = 3, "6% increased Lightning Damage taken", "Minions deal 2 to 53 additional Lightning Damage", statOrder = { 3254, 3635 }, level = 42, group = "WeaponTreeMinionAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning2hHighDamageTaken4"] = { type = "Spawn", tier = 4, "6% increased Lightning Damage taken", "Minions deal 4 to 88 additional Lightning Damage", statOrder = { 3254, 3635 }, level = 62, group = "WeaponTreeMinionAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning2hHighDamageTaken5"] = { type = "Spawn", tier = 5, "6% increased Lightning Damage taken", "Minions deal 9 to 173 additional Lightning Damage", statOrder = { 3254, 3635 }, level = 82, group = "WeaponTreeMinionAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 6 additional Lightning Damage", statOrder = { 3635 }, level = 1, group = "WeaponTreeMinionAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning2"] = { type = "Spawn", tier = 2, "Minions deal 1 to 12 additional Lightning Damage", statOrder = { 3635 }, level = 26, group = "WeaponTreeMinionAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning3"] = { type = "Spawn", tier = 3, "Minions deal 1 to 22 additional Lightning Damage", statOrder = { 3635 }, level = 42, group = "WeaponTreeMinionAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning4"] = { type = "Spawn", tier = 4, "Minions deal 2 to 37 additional Lightning Damage", statOrder = { 3635 }, level = 62, group = "WeaponTreeMinionAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning5"] = { type = "Spawn", tier = 5, "Minions deal 4 to 72 additional Lightning Damage", statOrder = { 3635 }, level = 82, group = "WeaponTreeMinionAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning2h1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 12 additional Lightning Damage", statOrder = { 3635 }, level = 1, group = "WeaponTreeMinionAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning2h2"] = { type = "Spawn", tier = 2, "Minions deal 1 to 21 additional Lightning Damage", statOrder = { 3635 }, level = 26, group = "WeaponTreeMinionAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning2h3"] = { type = "Spawn", tier = 3, "Minions deal 2 to 41 additional Lightning Damage", statOrder = { 3635 }, level = 42, group = "WeaponTreeMinionAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning2h4"] = { type = "Spawn", tier = 4, "Minions deal 3 to 68 additional Lightning Damage", statOrder = { 3635 }, level = 62, group = "WeaponTreeMinionAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning2h5"] = { type = "Spawn", tier = 5, "Minions deal 7 to 133 additional Lightning Damage", statOrder = { 3635 }, level = 82, group = "WeaponTreeMinionAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightningLowMinionShockChance1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 5 additional Lightning Damage", "Minions have 8% chance to Shock", statOrder = { 3635, 8827 }, level = 1, group = "WeaponTreeMinionAddedLightningDamageAndMinionShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightningLowMinionShockChance2"] = { type = "Spawn", tier = 2, "Minions deal 1 to 7 additional Lightning Damage", "Minions have 8% chance to Shock", statOrder = { 3635, 8827 }, level = 26, group = "WeaponTreeMinionAddedLightningDamageAndMinionShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightningLowMinionShockChance3"] = { type = "Spawn", tier = 3, "Minions deal 1 to 14 additional Lightning Damage", "Minions have 8% chance to Shock", statOrder = { 3635, 8827 }, level = 42, group = "WeaponTreeMinionAddedLightningDamageAndMinionShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightningLowMinionShockChance4"] = { type = "Spawn", tier = 4, "Minions deal 2 to 22 additional Lightning Damage", "Minions have 8% chance to Shock", statOrder = { 3635, 8827 }, level = 62, group = "WeaponTreeMinionAddedLightningDamageAndMinionShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightningLowMinionShockChance5"] = { type = "Spawn", tier = 5, "Minions deal 2 to 43 additional Lightning Damage", "Minions have 8% chance to Shock", statOrder = { 3635, 8827 }, level = 82, group = "WeaponTreeMinionAddedLightningDamageAndMinionShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning2hLowMinionShockChance1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 7 additional Lightning Damage", "Minions have 16% chance to Shock", statOrder = { 3635, 8827 }, level = 1, group = "WeaponTreeMinionAddedLightningDamageAndMinionShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning2hLowMinionShockChance2"] = { type = "Spawn", tier = 2, "Minions deal 1 to 13 additional Lightning Damage", "Minions have 16% chance to Shock", statOrder = { 3635, 8827 }, level = 26, group = "WeaponTreeMinionAddedLightningDamageAndMinionShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning2hLowMinionShockChance3"] = { type = "Spawn", tier = 3, "Minions deal 2 to 24 additional Lightning Damage", "Minions have 16% chance to Shock", statOrder = { 3635, 8827 }, level = 42, group = "WeaponTreeMinionAddedLightningDamageAndMinionShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning2hLowMinionShockChance4"] = { type = "Spawn", tier = 4, "Minions deal 3 to 41 additional Lightning Damage", "Minions have 16% chance to Shock", statOrder = { 3635, 8827 }, level = 62, group = "WeaponTreeMinionAddedLightningDamageAndMinionShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning2hLowMinionShockChance5"] = { type = "Spawn", tier = 5, "Minions deal 4 to 80 additional Lightning Damage", "Minions have 16% chance to Shock", statOrder = { 3635, 8827 }, level = 82, group = "WeaponTreeMinionAddedLightningDamageAndMinionShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightningLowMinionCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 5 additional Lightning Damage", "Minions have 25% increased Critical Strike Chance", statOrder = { 3635, 8829 }, level = 10, group = "WeaponTreeMinionAddedLightningDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightningLowMinionCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "Minions deal 1 to 7 additional Lightning Damage", "Minions have 25% increased Critical Strike Chance", statOrder = { 3635, 8829 }, level = 30, group = "WeaponTreeMinionAddedLightningDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightningLowMinionCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "Minions deal 1 to 14 additional Lightning Damage", "Minions have 25% increased Critical Strike Chance", statOrder = { 3635, 8829 }, level = 48, group = "WeaponTreeMinionAddedLightningDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightningLowMinionCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "Minions deal 2 to 22 additional Lightning Damage", "Minions have 25% increased Critical Strike Chance", statOrder = { 3635, 8829 }, level = 66, group = "WeaponTreeMinionAddedLightningDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightningLowMinionCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "Minions deal 2 to 43 additional Lightning Damage", "Minions have 25% increased Critical Strike Chance", statOrder = { 3635, 8829 }, level = 84, group = "WeaponTreeMinionAddedLightningDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning2hLowMinionCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 7 additional Lightning Damage", "Minions have 40% increased Critical Strike Chance", statOrder = { 3635, 8829 }, level = 10, group = "WeaponTreeMinionAddedLightningDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning2hLowMinionCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "Minions deal 1 to 13 additional Lightning Damage", "Minions have 40% increased Critical Strike Chance", statOrder = { 3635, 8829 }, level = 30, group = "WeaponTreeMinionAddedLightningDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning2hLowMinionCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "Minions deal 2 to 24 additional Lightning Damage", "Minions have 40% increased Critical Strike Chance", statOrder = { 3635, 8829 }, level = 48, group = "WeaponTreeMinionAddedLightningDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning2hLowMinionCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "Minions deal 3 to 41 additional Lightning Damage", "Minions have 40% increased Critical Strike Chance", statOrder = { 3635, 8829 }, level = 66, group = "WeaponTreeMinionAddedLightningDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedLightning2hLowMinionCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "Minions deal 4 to 80 additional Lightning Damage", "Minions have 40% increased Critical Strike Chance", statOrder = { 3635, 8829 }, level = 84, group = "WeaponTreeMinionAddedLightningDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaosHighReducedLife1"] = { type = "Spawn", tier = 1, "6% reduced maximum Life", "Minions deal 2 to 5 additional Chaos Damage", statOrder = { 1453, 3632 }, level = 8, group = "WeaponTreeMinionAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaosHighReducedLife2"] = { type = "Spawn", tier = 2, "6% reduced maximum Life", "Minions deal 5 to 7 additional Chaos Damage", statOrder = { 1453, 3632 }, level = 28, group = "WeaponTreeMinionAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaosHighReducedLife3"] = { type = "Spawn", tier = 3, "6% reduced maximum Life", "Minions deal 8 to 14 additional Chaos Damage", statOrder = { 1453, 3632 }, level = 44, group = "WeaponTreeMinionAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaosHighReducedLife4"] = { type = "Spawn", tier = 4, "6% reduced maximum Life", "Minions deal 14 to 22 additional Chaos Damage", statOrder = { 1453, 3632 }, level = 70, group = "WeaponTreeMinionAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaosHighReducedLife5"] = { type = "Spawn", tier = 5, "6% reduced maximum Life", "Minions deal 28 to 42 additional Chaos Damage", statOrder = { 1453, 3632 }, level = 85, group = "WeaponTreeMinionAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos2hHighReducedLife1"] = { type = "Spawn", tier = 1, "10% reduced maximum Life", "Minions deal 4 to 7 additional Chaos Damage", statOrder = { 1453, 3632 }, level = 8, group = "WeaponTreeMinionAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos2hHighReducedLife2"] = { type = "Spawn", tier = 2, "10% reduced maximum Life", "Minions deal 7 to 12 additional Chaos Damage", statOrder = { 1453, 3632 }, level = 28, group = "WeaponTreeMinionAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos2hHighReducedLife3"] = { type = "Spawn", tier = 3, "10% reduced maximum Life", "Minions deal 14 to 22 additional Chaos Damage", statOrder = { 1453, 3632 }, level = 44, group = "WeaponTreeMinionAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos2hHighReducedLife4"] = { type = "Spawn", tier = 4, "10% reduced maximum Life", "Minions deal 24 to 37 additional Chaos Damage", statOrder = { 1453, 3632 }, level = 70, group = "WeaponTreeMinionAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos2hHighReducedLife5"] = { type = "Spawn", tier = 5, "10% reduced maximum Life", "Minions deal 47 to 71 additional Chaos Damage", statOrder = { 1453, 3632 }, level = 85, group = "WeaponTreeMinionAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 5 additional Chaos Damage", statOrder = { 3632 }, level = 8, group = "WeaponTreeMinionAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos2"] = { type = "Spawn", tier = 2, "Minions deal 2 to 6 additional Chaos Damage", statOrder = { 3632 }, level = 28, group = "WeaponTreeMinionAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos3"] = { type = "Spawn", tier = 3, "Minions deal 6 to 10 additional Chaos Damage", statOrder = { 3632 }, level = 44, group = "WeaponTreeMinionAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos4"] = { type = "Spawn", tier = 4, "Minions deal 11 to 17 additional Chaos Damage", statOrder = { 3632 }, level = 70, group = "WeaponTreeMinionAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos5"] = { type = "Spawn", tier = 5, "Minions deal 21 to 33 additional Chaos Damage", statOrder = { 3632 }, level = 85, group = "WeaponTreeMinionAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos2h1"] = { type = "Spawn", tier = 1, "Minions deal 2 to 5 additional Chaos Damage", statOrder = { 3632 }, level = 8, group = "WeaponTreeMinionAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos2h2"] = { type = "Spawn", tier = 2, "Minions deal 5 to 10 additional Chaos Damage", statOrder = { 3632 }, level = 28, group = "WeaponTreeMinionAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos2h3"] = { type = "Spawn", tier = 3, "Minions deal 10 to 17 additional Chaos Damage", statOrder = { 3632 }, level = 44, group = "WeaponTreeMinionAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos2h4"] = { type = "Spawn", tier = 4, "Minions deal 18 to 28 additional Chaos Damage", statOrder = { 3632 }, level = 70, group = "WeaponTreeMinionAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos2h5"] = { type = "Spawn", tier = 5, "Minions deal 36 to 55 additional Chaos Damage", statOrder = { 3632 }, level = 85, group = "WeaponTreeMinionAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaosLowMinionPoisonChance1"] = { type = "Spawn", tier = 1, "Minions have 8% chance to Poison Enemies on Hit", "Minions deal 1 to 3 additional Chaos Damage", statOrder = { 3040, 3632 }, level = 8, group = "WeaponTreeMinionAddedChaosDamageAndMinionPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaosLowMinionPoisonChance2"] = { type = "Spawn", tier = 2, "Minions have 8% chance to Poison Enemies on Hit", "Minions deal 2 to 4 additional Chaos Damage", statOrder = { 3040, 3632 }, level = 28, group = "WeaponTreeMinionAddedChaosDamageAndMinionPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaosLowMinionPoisonChance3"] = { type = "Spawn", tier = 3, "Minions have 8% chance to Poison Enemies on Hit", "Minions deal 4 to 6 additional Chaos Damage", statOrder = { 3040, 3632 }, level = 44, group = "WeaponTreeMinionAddedChaosDamageAndMinionPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaosLowMinionPoisonChance4"] = { type = "Spawn", tier = 4, "Minions have 8% chance to Poison Enemies on Hit", "Minions deal 6 to 10 additional Chaos Damage", statOrder = { 3040, 3632 }, level = 70, group = "WeaponTreeMinionAddedChaosDamageAndMinionPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaosLowMinionPoisonChance5"] = { type = "Spawn", tier = 5, "Minions have 8% chance to Poison Enemies on Hit", "Minions deal 13 to 20 additional Chaos Damage", statOrder = { 3040, 3632 }, level = 85, group = "WeaponTreeMinionAddedChaosDamageAndMinionPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos2hLowMinionPoisonChance1"] = { type = "Spawn", tier = 1, "Minions have 16% chance to Poison Enemies on Hit", "Minions deal 1 to 3 additional Chaos Damage", statOrder = { 3040, 3632 }, level = 8, group = "WeaponTreeMinionAddedChaosDamageAndMinionPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos2hLowMinionPoisonChance2"] = { type = "Spawn", tier = 2, "Minions have 16% chance to Poison Enemies on Hit", "Minions deal 3 to 6 additional Chaos Damage", statOrder = { 3040, 3632 }, level = 28, group = "WeaponTreeMinionAddedChaosDamageAndMinionPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos2hLowMinionPoisonChance3"] = { type = "Spawn", tier = 3, "Minions have 16% chance to Poison Enemies on Hit", "Minions deal 7 to 10 additional Chaos Damage", statOrder = { 3040, 3632 }, level = 44, group = "WeaponTreeMinionAddedChaosDamageAndMinionPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos2hLowMinionPoisonChance4"] = { type = "Spawn", tier = 4, "Minions have 16% chance to Poison Enemies on Hit", "Minions deal 11 to 17 additional Chaos Damage", statOrder = { 3040, 3632 }, level = 70, group = "WeaponTreeMinionAddedChaosDamageAndMinionPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos2hLowMinionPoisonChance5"] = { type = "Spawn", tier = 5, "Minions have 16% chance to Poison Enemies on Hit", "Minions deal 22 to 33 additional Chaos Damage", statOrder = { 3040, 3632 }, level = 85, group = "WeaponTreeMinionAddedChaosDamageAndMinionPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaosLowChaosResistance1"] = { type = "Spawn", tier = 1, "+7% to Chaos Resistance", "Minions deal 1 to 3 additional Chaos Damage", statOrder = { 1522, 3632 }, level = 8, group = "WeaponTreeMinionAddedChaosDamageAndChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaosLowChaosResistance2"] = { type = "Spawn", tier = 2, "+7% to Chaos Resistance", "Minions deal 2 to 4 additional Chaos Damage", statOrder = { 1522, 3632 }, level = 28, group = "WeaponTreeMinionAddedChaosDamageAndChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaosLowChaosResistance3"] = { type = "Spawn", tier = 3, "+7% to Chaos Resistance", "Minions deal 4 to 6 additional Chaos Damage", statOrder = { 1522, 3632 }, level = 44, group = "WeaponTreeMinionAddedChaosDamageAndChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaosLowChaosResistance4"] = { type = "Spawn", tier = 4, "+7% to Chaos Resistance", "Minions deal 6 to 10 additional Chaos Damage", statOrder = { 1522, 3632 }, level = 70, group = "WeaponTreeMinionAddedChaosDamageAndChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaosLowChaosResistance5"] = { type = "Spawn", tier = 5, "+7% to Chaos Resistance", "Minions deal 13 to 20 additional Chaos Damage", statOrder = { 1522, 3632 }, level = 85, group = "WeaponTreeMinionAddedChaosDamageAndChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos2hLowChaosResistance1"] = { type = "Spawn", tier = 1, "+13% to Chaos Resistance", "Minions deal 1 to 3 additional Chaos Damage", statOrder = { 1522, 3632 }, level = 8, group = "WeaponTreeMinionAddedChaosDamageAndChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos2hLowChaosResistance2"] = { type = "Spawn", tier = 2, "+13% to Chaos Resistance", "Minions deal 3 to 6 additional Chaos Damage", statOrder = { 1522, 3632 }, level = 28, group = "WeaponTreeMinionAddedChaosDamageAndChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos2hLowChaosResistance3"] = { type = "Spawn", tier = 3, "+13% to Chaos Resistance", "Minions deal 7 to 10 additional Chaos Damage", statOrder = { 1522, 3632 }, level = 44, group = "WeaponTreeMinionAddedChaosDamageAndChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos2hLowChaosResistance4"] = { type = "Spawn", tier = 4, "+13% to Chaos Resistance", "Minions deal 11 to 17 additional Chaos Damage", statOrder = { 1522, 3632 }, level = 70, group = "WeaponTreeMinionAddedChaosDamageAndChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, - ["WeaponTreeMinionAddedChaos2hLowChaosResistance5"] = { type = "Spawn", tier = 5, "+13% to Chaos Resistance", "Minions deal 22 to 33 additional Chaos Damage", statOrder = { 1522, 3632 }, level = 85, group = "WeaponTreeMinionAddedChaosDamageAndChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamageHighReducedMinionCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "Minions deal 14% increased Damage", "Minions have 40% reduced Critical Strike Chance", statOrder = { 1852, 8829 }, level = 1, group = "WeaponTreeMinionDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamageHighReducedMinionCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "Minions deal 21% increased Damage", "Minions have 40% reduced Critical Strike Chance", statOrder = { 1852, 8829 }, level = 21, group = "WeaponTreeMinionDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamageHighReducedMinionCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "Minions deal 28% increased Damage", "Minions have 40% reduced Critical Strike Chance", statOrder = { 1852, 8829 }, level = 46, group = "WeaponTreeMinionDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamageHighReducedMinionCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "Minions deal 35% increased Damage", "Minions have 40% reduced Critical Strike Chance", statOrder = { 1852, 8829 }, level = 65, group = "WeaponTreeMinionDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3750, 3750, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamageHighReducedMinionCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "Minions deal 42% increased Damage", "Minions have 40% reduced Critical Strike Chance", statOrder = { 1852, 8829 }, level = 77, group = "WeaponTreeMinionDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1870, 1870, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamage2hHighReducedMinionCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "Minions deal 22% increased Damage", "Minions have 80% reduced Critical Strike Chance", statOrder = { 1852, 8829 }, level = 1, group = "WeaponTreeMinionDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamage2hHighReducedMinionCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "Minions deal 34% increased Damage", "Minions have 80% reduced Critical Strike Chance", statOrder = { 1852, 8829 }, level = 21, group = "WeaponTreeMinionDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamage2hHighReducedMinionCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "Minions deal 45% increased Damage", "Minions have 80% reduced Critical Strike Chance", statOrder = { 1852, 8829 }, level = 46, group = "WeaponTreeMinionDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamage2hHighReducedMinionCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "Minions deal 56% increased Damage", "Minions have 80% reduced Critical Strike Chance", statOrder = { 1852, 8829 }, level = 65, group = "WeaponTreeMinionDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3750, 3750, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamage2hHighReducedMinionCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "Minions deal 68% increased Damage", "Minions have 80% reduced Critical Strike Chance", statOrder = { 1852, 8829 }, level = 77, group = "WeaponTreeMinionDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1870, 1870, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamage1"] = { type = "Spawn", tier = 1, "Minions deal 10% increased Damage", statOrder = { 1852 }, level = 1, group = "WeaponTreeMinionDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 15000, 15000, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamage2"] = { type = "Spawn", tier = 2, "Minions deal 15% increased Damage", statOrder = { 1852 }, level = 21, group = "WeaponTreeMinionDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 15000, 15000, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamage3"] = { type = "Spawn", tier = 3, "Minions deal 20% increased Damage", statOrder = { 1852 }, level = 46, group = "WeaponTreeMinionDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 15000, 15000, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamage4"] = { type = "Spawn", tier = 4, "Minions deal 25% increased Damage", statOrder = { 1852 }, level = 65, group = "WeaponTreeMinionDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamage5"] = { type = "Spawn", tier = 5, "Minions deal 30% increased Damage", statOrder = { 1852 }, level = 77, group = "WeaponTreeMinionDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3750, 3750, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamage2h1"] = { type = "Spawn", tier = 1, "Minions deal 16% increased Damage", statOrder = { 1852 }, level = 1, group = "WeaponTreeMinionDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 15000, 15000, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamage2h2"] = { type = "Spawn", tier = 2, "Minions deal 24% increased Damage", statOrder = { 1852 }, level = 21, group = "WeaponTreeMinionDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 15000, 15000, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamage2h3"] = { type = "Spawn", tier = 3, "Minions deal 32% increased Damage", statOrder = { 1852 }, level = 46, group = "WeaponTreeMinionDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 15000, 15000, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamage2h4"] = { type = "Spawn", tier = 4, "Minions deal 40% increased Damage", statOrder = { 1852 }, level = 65, group = "WeaponTreeMinionDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamage2h5"] = { type = "Spawn", tier = 5, "Minions deal 48% increased Damage", statOrder = { 1852 }, level = 77, group = "WeaponTreeMinionDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3750, 3750, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamageLowMana1"] = { type = "Spawn", tier = 1, "10% increased maximum Mana", "Minions deal 7% increased Damage", statOrder = { 1462, 1852 }, level = 1, group = "WeaponTreeMinionDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamageLowMana2"] = { type = "Spawn", tier = 2, "10% increased maximum Mana", "Minions deal 10% increased Damage", statOrder = { 1462, 1852 }, level = 21, group = "WeaponTreeMinionDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamageLowMana3"] = { type = "Spawn", tier = 3, "10% increased maximum Mana", "Minions deal 13% increased Damage", statOrder = { 1462, 1852 }, level = 46, group = "WeaponTreeMinionDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamageLowMana4"] = { type = "Spawn", tier = 4, "10% increased maximum Mana", "Minions deal 17% increased Damage", statOrder = { 1462, 1852 }, level = 65, group = "WeaponTreeMinionDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3750, 3750, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamageLowMana5"] = { type = "Spawn", tier = 5, "10% increased maximum Mana", "Minions deal 20% increased Damage", statOrder = { 1462, 1852 }, level = 77, group = "WeaponTreeMinionDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1870, 1870, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamage2hLowMana1"] = { type = "Spawn", tier = 1, "20% increased maximum Mana", "Minions deal 11% increased Damage", statOrder = { 1462, 1852 }, level = 1, group = "WeaponTreeMinionDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamage2hLowMana2"] = { type = "Spawn", tier = 2, "20% increased maximum Mana", "Minions deal 16% increased Damage", statOrder = { 1462, 1852 }, level = 21, group = "WeaponTreeMinionDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamage2hLowMana3"] = { type = "Spawn", tier = 3, "20% increased maximum Mana", "Minions deal 21% increased Damage", statOrder = { 1462, 1852 }, level = 46, group = "WeaponTreeMinionDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamage2hLowMana4"] = { type = "Spawn", tier = 4, "20% increased maximum Mana", "Minions deal 26% increased Damage", statOrder = { 1462, 1852 }, level = 65, group = "WeaponTreeMinionDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3750, 3750, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamage2hLowMana5"] = { type = "Spawn", tier = 5, "20% increased maximum Mana", "Minions deal 32% increased Damage", statOrder = { 1462, 1852 }, level = 77, group = "WeaponTreeMinionDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1870, 1870, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamageLowEnergyShield1"] = { type = "Spawn", tier = 1, "10% increased maximum Energy Shield", "Minions deal 7% increased Damage", statOrder = { 1443, 1852 }, level = 1, group = "WeaponTreeMinionDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamageLowEnergyShield2"] = { type = "Spawn", tier = 2, "10% increased maximum Energy Shield", "Minions deal 10% increased Damage", statOrder = { 1443, 1852 }, level = 21, group = "WeaponTreeMinionDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamageLowEnergyShield3"] = { type = "Spawn", tier = 3, "10% increased maximum Energy Shield", "Minions deal 13% increased Damage", statOrder = { 1443, 1852 }, level = 46, group = "WeaponTreeMinionDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamageLowEnergyShield4"] = { type = "Spawn", tier = 4, "10% increased maximum Energy Shield", "Minions deal 17% increased Damage", statOrder = { 1443, 1852 }, level = 65, group = "WeaponTreeMinionDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3750, 3750, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamageLowEnergyShield5"] = { type = "Spawn", tier = 5, "10% increased maximum Energy Shield", "Minions deal 20% increased Damage", statOrder = { 1443, 1852 }, level = 77, group = "WeaponTreeMinionDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1870, 1870, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamage2hLowEnergyShield1"] = { type = "Spawn", tier = 1, "20% increased maximum Energy Shield", "Minions deal 11% increased Damage", statOrder = { 1443, 1852 }, level = 1, group = "WeaponTreeMinionDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamage2hLowEnergyShield2"] = { type = "Spawn", tier = 2, "20% increased maximum Energy Shield", "Minions deal 16% increased Damage", statOrder = { 1443, 1852 }, level = 21, group = "WeaponTreeMinionDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamage2hLowEnergyShield3"] = { type = "Spawn", tier = 3, "20% increased maximum Energy Shield", "Minions deal 21% increased Damage", statOrder = { 1443, 1852 }, level = 46, group = "WeaponTreeMinionDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamage2hLowEnergyShield4"] = { type = "Spawn", tier = 4, "20% increased maximum Energy Shield", "Minions deal 26% increased Damage", statOrder = { 1443, 1852 }, level = 65, group = "WeaponTreeMinionDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3750, 3750, 0 }, modTags = { }, }, - ["WeaponTreeMinionDamage2hLowEnergyShield5"] = { type = "Spawn", tier = 5, "20% increased maximum Energy Shield", "Minions deal 32% increased Damage", statOrder = { 1443, 1852 }, level = 77, group = "WeaponTreeMinionDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1870, 1870, 0 }, modTags = { }, }, - ["WeaponTreeBowGemLevel"] = { type = "Spawn", tier = 1, "+1 to Level of Socketed Bow Gems", statOrder = { 157 }, level = 10, group = "WeaponTreeLocalIncreaseSocketedBowGemLevel", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeMeleeGemLevel"] = { type = "Spawn", tier = 1, "+2 to Level of Socketed Melee Gems", statOrder = { 158 }, level = 10, group = "WeaponTreeLocalIncreaseSocketedMeleeGemLevel", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "mace", "sword", "sceptre", "axe", "dagger", "claw", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeMeleeGemLevel2h"] = { type = "Spawn", tier = 1, "+1 to Level of Socketed Melee Gems", statOrder = { 158 }, level = 10, group = "WeaponTreeLocalIncreaseSocketedMeleeGemLevel", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "staff", "mace", "axe", "sword", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSpellGemLevel"] = { type = "Spawn", tier = 1, "+2 to Level of Socketed Spell Gems", statOrder = { 153 }, level = 10, group = "WeaponTreeLocalIncreaseSocketedSpellGemLevel", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "sceptre", "wand", "dagger", "default", }, weightVal = { 0, 1000, 0, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSpellGemLevel2h"] = { type = "Spawn", tier = 1, "+1 to Level of Socketed Spell Gems", statOrder = { 153 }, level = 10, group = "WeaponTreeLocalIncreaseSocketedSpellGemLevel", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeMinionGemLevel"] = { type = "Spawn", tier = 1, "+2 to Level of Socketed Minion Gems", statOrder = { 159 }, level = 10, group = "WeaponTreeLocalIncreaseSocketedMinionGemLevel", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 10000, 10000, 0 }, modTags = { }, }, - ["WeaponTreeMinionGemLevel2h"] = { type = "Spawn", tier = 1, "+1 to Level of Socketed Minion Gems", statOrder = { 159 }, level = 10, group = "WeaponTreeLocalIncreaseSocketedMinionGemLevel", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 10000, 10000, 0 }, modTags = { }, }, - ["WeaponTreeDexterityGemLevel"] = { type = "Spawn", tier = 1, "+1 to Level of Socketed Dexterity Gems", statOrder = { 139 }, level = 45, group = "WeaponTreeLocalIncreaseSocketedDexterityGemLevel", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 250, 250, 250, 500, 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysicalHighReducedAttackSpeed1"] = { type = "Spawn", tier = 1, "Adds 2 to 7 Physical Damage", "6% reduced Attack Speed", statOrder = { 1187, 1324 }, level = 1, group = "WeaponTreeLocalPhysicalDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysicalHighReducedAttackSpeed2"] = { type = "Spawn", tier = 2, "Adds 3 to 11 Physical Damage", "6% reduced Attack Speed", statOrder = { 1187, 1324 }, level = 21, group = "WeaponTreeLocalPhysicalDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysicalHighReducedAttackSpeed3"] = { type = "Spawn", tier = 3, "Adds 6 to 12 Physical Damage", "6% reduced Attack Speed", statOrder = { 1187, 1324 }, level = 46, group = "WeaponTreeLocalPhysicalDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysicalHighReducedAttackSpeed4"] = { type = "Spawn", tier = 4, "Adds 6 to 16 Physical Damage", "6% reduced Attack Speed", statOrder = { 1187, 1324 }, level = 65, group = "WeaponTreeLocalPhysicalDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysicalHighReducedAttackSpeed5"] = { type = "Spawn", tier = 5, "Adds 8 to 19 Physical Damage", "6% reduced Attack Speed", statOrder = { 1187, 1324 }, level = 77, group = "WeaponTreeLocalPhysicalDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hHighReducedAttackSpeed1"] = { type = "Spawn", tier = 1, "Adds 4 to 12 Physical Damage", "6% reduced Attack Speed", statOrder = { 1187, 1324 }, level = 1, group = "WeaponTreeLocalPhysicalDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hHighReducedAttackSpeed2"] = { type = "Spawn", tier = 2, "Adds 6 to 16 Physical Damage", "6% reduced Attack Speed", statOrder = { 1187, 1324 }, level = 21, group = "WeaponTreeLocalPhysicalDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hHighReducedAttackSpeed3"] = { type = "Spawn", tier = 3, "Adds 9 to 20 Physical Damage", "6% reduced Attack Speed", statOrder = { 1187, 1324 }, level = 46, group = "WeaponTreeLocalPhysicalDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hHighReducedAttackSpeed4"] = { type = "Spawn", tier = 4, "Adds 11 to 25 Physical Damage", "6% reduced Attack Speed", statOrder = { 1187, 1324 }, level = 65, group = "WeaponTreeLocalPhysicalDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hHighReducedAttackSpeed5"] = { type = "Spawn", tier = 5, "Adds 14 to 33 Physical Damage", "6% reduced Attack Speed", statOrder = { 1187, 1324 }, level = 77, group = "WeaponTreeLocalPhysicalDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical1"] = { type = "Spawn", tier = 1, "Adds 2 to 6 Physical Damage", statOrder = { 1187 }, level = 1, group = "WeaponTreeLocalPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical2"] = { type = "Spawn", tier = 2, "Adds 2 to 8 Physical Damage", statOrder = { 1187 }, level = 21, group = "WeaponTreeLocalPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical3"] = { type = "Spawn", tier = 3, "Adds 3 to 10 Physical Damage", statOrder = { 1187 }, level = 46, group = "WeaponTreeLocalPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical4"] = { type = "Spawn", tier = 4, "Adds 5 to 13 Physical Damage", statOrder = { 1187 }, level = 65, group = "WeaponTreeLocalPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical5"] = { type = "Spawn", tier = 5, "Adds 6 to 15 Physical Damage", statOrder = { 1187 }, level = 77, group = "WeaponTreeLocalPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical2h1"] = { type = "Spawn", tier = 1, "Adds 4 to 9 Physical Damage", statOrder = { 1187 }, level = 1, group = "WeaponTreeLocalPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical2h2"] = { type = "Spawn", tier = 2, "Adds 6 to 11 Physical Damage", statOrder = { 1187 }, level = 21, group = "WeaponTreeLocalPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical2h3"] = { type = "Spawn", tier = 3, "Adds 7 to 16 Physical Damage", statOrder = { 1187 }, level = 46, group = "WeaponTreeLocalPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical2h4"] = { type = "Spawn", tier = 4, "Adds 8 to 19 Physical Damage", statOrder = { 1187 }, level = 65, group = "WeaponTreeLocalPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical2h5"] = { type = "Spawn", tier = 5, "Adds 11 to 26 Physical Damage", statOrder = { 1187 }, level = 77, group = "WeaponTreeLocalPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowFireConvert1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage", "15% of Physical Damage Converted to Fire Damage", statOrder = { 1187, 1864 }, level = 10, group = "WeaponTreeLocalPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowFireConvert2"] = { type = "Spawn", tier = 2, "Adds 1 to 4 Physical Damage", "15% of Physical Damage Converted to Fire Damage", statOrder = { 1187, 1864 }, level = 31, group = "WeaponTreeLocalPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowFireConvert3"] = { type = "Spawn", tier = 3, "Adds 2 to 6 Physical Damage", "15% of Physical Damage Converted to Fire Damage", statOrder = { 1187, 1864 }, level = 54, group = "WeaponTreeLocalPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowFireConvert4"] = { type = "Spawn", tier = 4, "Adds 3 to 7 Physical Damage", "15% of Physical Damage Converted to Fire Damage", statOrder = { 1187, 1864 }, level = 72, group = "WeaponTreeLocalPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowFireConvert5"] = { type = "Spawn", tier = 5, "Adds 5 to 8 Physical Damage", "15% of Physical Damage Converted to Fire Damage", statOrder = { 1187, 1864 }, level = 84, group = "WeaponTreeLocalPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 25, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowFireConvert1"] = { type = "Spawn", tier = 1, "Adds 2 to 6 Physical Damage", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1187, 1864 }, level = 10, group = "WeaponTreeLocalPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowFireConvert2"] = { type = "Spawn", tier = 2, "Adds 3 to 8 Physical Damage", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1187, 1864 }, level = 31, group = "WeaponTreeLocalPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowFireConvert3"] = { type = "Spawn", tier = 3, "Adds 3 to 10 Physical Damage", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1187, 1864 }, level = 54, group = "WeaponTreeLocalPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowFireConvert4"] = { type = "Spawn", tier = 4, "Adds 5 to 13 Physical Damage", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1187, 1864 }, level = 72, group = "WeaponTreeLocalPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowFireConvert5"] = { type = "Spawn", tier = 5, "Adds 6 to 15 Physical Damage", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1187, 1864 }, level = 84, group = "WeaponTreeLocalPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 25, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowColdConvert1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage", "15% of Physical Damage Converted to Cold Damage", statOrder = { 1187, 1866 }, level = 10, group = "WeaponTreeLocalPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowColdConvert2"] = { type = "Spawn", tier = 2, "Adds 1 to 4 Physical Damage", "15% of Physical Damage Converted to Cold Damage", statOrder = { 1187, 1866 }, level = 31, group = "WeaponTreeLocalPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowColdConvert3"] = { type = "Spawn", tier = 3, "Adds 2 to 6 Physical Damage", "15% of Physical Damage Converted to Cold Damage", statOrder = { 1187, 1866 }, level = 54, group = "WeaponTreeLocalPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowColdConvert4"] = { type = "Spawn", tier = 4, "Adds 3 to 7 Physical Damage", "15% of Physical Damage Converted to Cold Damage", statOrder = { 1187, 1866 }, level = 72, group = "WeaponTreeLocalPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowColdConvert5"] = { type = "Spawn", tier = 5, "Adds 5 to 8 Physical Damage", "15% of Physical Damage Converted to Cold Damage", statOrder = { 1187, 1866 }, level = 84, group = "WeaponTreeLocalPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 25, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowColdConvert1"] = { type = "Spawn", tier = 1, "Adds 2 to 6 Physical Damage", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1187, 1866 }, level = 10, group = "WeaponTreeLocalPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowColdConvert2"] = { type = "Spawn", tier = 2, "Adds 3 to 8 Physical Damage", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1187, 1866 }, level = 31, group = "WeaponTreeLocalPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowColdConvert3"] = { type = "Spawn", tier = 3, "Adds 3 to 10 Physical Damage", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1187, 1866 }, level = 54, group = "WeaponTreeLocalPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowColdConvert4"] = { type = "Spawn", tier = 4, "Adds 5 to 13 Physical Damage", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1187, 1866 }, level = 72, group = "WeaponTreeLocalPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowColdConvert5"] = { type = "Spawn", tier = 5, "Adds 6 to 15 Physical Damage", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1187, 1866 }, level = 84, group = "WeaponTreeLocalPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 25, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowLightningConvert1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage", "15% of Physical Damage Converted to Lightning Damage", statOrder = { 1187, 1868 }, level = 10, group = "WeaponTreeLocalPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowLightningConvert2"] = { type = "Spawn", tier = 2, "Adds 1 to 4 Physical Damage", "15% of Physical Damage Converted to Lightning Damage", statOrder = { 1187, 1868 }, level = 31, group = "WeaponTreeLocalPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowLightningConvert3"] = { type = "Spawn", tier = 3, "Adds 2 to 6 Physical Damage", "15% of Physical Damage Converted to Lightning Damage", statOrder = { 1187, 1868 }, level = 54, group = "WeaponTreeLocalPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowLightningConvert4"] = { type = "Spawn", tier = 4, "Adds 3 to 7 Physical Damage", "15% of Physical Damage Converted to Lightning Damage", statOrder = { 1187, 1868 }, level = 72, group = "WeaponTreeLocalPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowLightningConvert5"] = { type = "Spawn", tier = 5, "Adds 5 to 8 Physical Damage", "15% of Physical Damage Converted to Lightning Damage", statOrder = { 1187, 1868 }, level = 84, group = "WeaponTreeLocalPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 25, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowLightningConvert1"] = { type = "Spawn", tier = 1, "Adds 2 to 6 Physical Damage", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1187, 1868 }, level = 10, group = "WeaponTreeLocalPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowLightningConvert2"] = { type = "Spawn", tier = 2, "Adds 3 to 8 Physical Damage", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1187, 1868 }, level = 31, group = "WeaponTreeLocalPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowLightningConvert3"] = { type = "Spawn", tier = 3, "Adds 3 to 10 Physical Damage", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1187, 1868 }, level = 54, group = "WeaponTreeLocalPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowLightningConvert4"] = { type = "Spawn", tier = 4, "Adds 5 to 13 Physical Damage", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1187, 1868 }, level = 72, group = "WeaponTreeLocalPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowLightningConvert5"] = { type = "Spawn", tier = 5, "Adds 6 to 15 Physical Damage", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1187, 1868 }, level = 84, group = "WeaponTreeLocalPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 25, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowChaosConvert1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage", "15% of Physical Damage Converted to Chaos Damage", statOrder = { 1187, 1871 }, level = 13, group = "WeaponTreeLocalPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowChaosConvert2"] = { type = "Spawn", tier = 2, "Adds 1 to 4 Physical Damage", "15% of Physical Damage Converted to Chaos Damage", statOrder = { 1187, 1871 }, level = 27, group = "WeaponTreeLocalPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowChaosConvert3"] = { type = "Spawn", tier = 3, "Adds 2 to 6 Physical Damage", "15% of Physical Damage Converted to Chaos Damage", statOrder = { 1187, 1871 }, level = 57, group = "WeaponTreeLocalPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowChaosConvert4"] = { type = "Spawn", tier = 4, "Adds 3 to 7 Physical Damage", "15% of Physical Damage Converted to Chaos Damage", statOrder = { 1187, 1871 }, level = 74, group = "WeaponTreeLocalPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 25, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowChaosConvert5"] = { type = "Spawn", tier = 5, "Adds 5 to 8 Physical Damage", "15% of Physical Damage Converted to Chaos Damage", statOrder = { 1187, 1871 }, level = 85, group = "WeaponTreeLocalPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 12, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowChaosConvert1"] = { type = "Spawn", tier = 1, "Adds 2 to 6 Physical Damage", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1187, 1871 }, level = 13, group = "WeaponTreeLocalPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowChaosConvert2"] = { type = "Spawn", tier = 2, "Adds 3 to 8 Physical Damage", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1187, 1871 }, level = 27, group = "WeaponTreeLocalPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowChaosConvert3"] = { type = "Spawn", tier = 3, "Adds 3 to 10 Physical Damage", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1187, 1871 }, level = 57, group = "WeaponTreeLocalPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowChaosConvert4"] = { type = "Spawn", tier = 4, "Adds 5 to 13 Physical Damage", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1187, 1871 }, level = 74, group = "WeaponTreeLocalPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 25, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowChaosConvert5"] = { type = "Spawn", tier = 5, "Adds 6 to 15 Physical Damage", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1187, 1871 }, level = 85, group = "WeaponTreeLocalPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 12, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowRandomElementConvert1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage", "20% of Physical Damage converted to a random Element", statOrder = { 1187, 1870 }, level = 13, group = "WeaponTreeLocalPhysicalDamageAndRandomElementConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowRandomElementConvert2"] = { type = "Spawn", tier = 2, "Adds 1 to 4 Physical Damage", "20% of Physical Damage converted to a random Element", statOrder = { 1187, 1870 }, level = 27, group = "WeaponTreeLocalPhysicalDamageAndRandomElementConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowRandomElementConvert3"] = { type = "Spawn", tier = 3, "Adds 2 to 6 Physical Damage", "20% of Physical Damage converted to a random Element", statOrder = { 1187, 1870 }, level = 57, group = "WeaponTreeLocalPhysicalDamageAndRandomElementConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowRandomElementConvert4"] = { type = "Spawn", tier = 4, "Adds 3 to 7 Physical Damage", "20% of Physical Damage converted to a random Element", statOrder = { 1187, 1870 }, level = 74, group = "WeaponTreeLocalPhysicalDamageAndRandomElementConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 25, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowRandomElementConvert5"] = { type = "Spawn", tier = 5, "Adds 5 to 8 Physical Damage", "20% of Physical Damage converted to a random Element", statOrder = { 1187, 1870 }, level = 85, group = "WeaponTreeLocalPhysicalDamageAndRandomElementConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 12, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowRandomElementConvert1"] = { type = "Spawn", tier = 1, "Adds 2 to 6 Physical Damage", "35% of Physical Damage converted to a random Element", statOrder = { 1187, 1870 }, level = 13, group = "WeaponTreeLocalPhysicalDamageAndRandomElementConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowRandomElementConvert2"] = { type = "Spawn", tier = 2, "Adds 3 to 8 Physical Damage", "35% of Physical Damage converted to a random Element", statOrder = { 1187, 1870 }, level = 27, group = "WeaponTreeLocalPhysicalDamageAndRandomElementConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowRandomElementConvert3"] = { type = "Spawn", tier = 3, "Adds 3 to 10 Physical Damage", "35% of Physical Damage converted to a random Element", statOrder = { 1187, 1870 }, level = 57, group = "WeaponTreeLocalPhysicalDamageAndRandomElementConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 50, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowRandomElementConvert4"] = { type = "Spawn", tier = 4, "Adds 5 to 13 Physical Damage", "35% of Physical Damage converted to a random Element", statOrder = { 1187, 1870 }, level = 74, group = "WeaponTreeLocalPhysicalDamageAndRandomElementConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 25, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowRandomElementConvert5"] = { type = "Spawn", tier = 5, "Adds 6 to 15 Physical Damage", "35% of Physical Damage converted to a random Element", statOrder = { 1187, 1870 }, level = 85, group = "WeaponTreeLocalPhysicalDamageAndRandomElementConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 12, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowBleedChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage", "15% chance to cause Bleeding on Hit", statOrder = { 1187, 2392 }, level = 1, group = "WeaponTreeLocalPhysicalDamageAndBleedChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowBleedChance2"] = { type = "Spawn", tier = 2, "Adds 1 to 4 Physical Damage", "15% chance to cause Bleeding on Hit", statOrder = { 1187, 2392 }, level = 21, group = "WeaponTreeLocalPhysicalDamageAndBleedChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowBleedChance3"] = { type = "Spawn", tier = 3, "Adds 2 to 6 Physical Damage", "15% chance to cause Bleeding on Hit", statOrder = { 1187, 2392 }, level = 46, group = "WeaponTreeLocalPhysicalDamageAndBleedChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowBleedChance4"] = { type = "Spawn", tier = 4, "Adds 3 to 7 Physical Damage", "15% chance to cause Bleeding on Hit", statOrder = { 1187, 2392 }, level = 65, group = "WeaponTreeLocalPhysicalDamageAndBleedChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowBleedChance5"] = { type = "Spawn", tier = 5, "Adds 5 to 8 Physical Damage", "15% chance to cause Bleeding on Hit", statOrder = { 1187, 2392 }, level = 77, group = "WeaponTreeLocalPhysicalDamageAndBleedChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowBleedChance1"] = { type = "Spawn", tier = 1, "Adds 2 to 6 Physical Damage", "15% chance to cause Bleeding on Hit", statOrder = { 1187, 2392 }, level = 1, group = "WeaponTreeLocalPhysicalDamageAndBleedChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowBleedChance2"] = { type = "Spawn", tier = 2, "Adds 3 to 8 Physical Damage", "15% chance to cause Bleeding on Hit", statOrder = { 1187, 2392 }, level = 21, group = "WeaponTreeLocalPhysicalDamageAndBleedChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowBleedChance3"] = { type = "Spawn", tier = 3, "Adds 3 to 10 Physical Damage", "15% chance to cause Bleeding on Hit", statOrder = { 1187, 2392 }, level = 46, group = "WeaponTreeLocalPhysicalDamageAndBleedChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowBleedChance4"] = { type = "Spawn", tier = 4, "Adds 5 to 13 Physical Damage", "15% chance to cause Bleeding on Hit", statOrder = { 1187, 2392 }, level = 65, group = "WeaponTreeLocalPhysicalDamageAndBleedChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowBleedChance5"] = { type = "Spawn", tier = 5, "Adds 6 to 15 Physical Damage", "15% chance to cause Bleeding on Hit", statOrder = { 1187, 2392 }, level = 77, group = "WeaponTreeLocalPhysicalDamageAndBleedChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowImpaleChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage", "15% chance to Impale Enemies on Hit with Attacks", statOrder = { 1187, 7718 }, level = 1, group = "WeaponTreeLocalPhysicalDamageAndImpaleChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowImpaleChance2"] = { type = "Spawn", tier = 2, "Adds 1 to 4 Physical Damage", "15% chance to Impale Enemies on Hit with Attacks", statOrder = { 1187, 7718 }, level = 21, group = "WeaponTreeLocalPhysicalDamageAndImpaleChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowImpaleChance3"] = { type = "Spawn", tier = 3, "Adds 2 to 6 Physical Damage", "15% chance to Impale Enemies on Hit with Attacks", statOrder = { 1187, 7718 }, level = 46, group = "WeaponTreeLocalPhysicalDamageAndImpaleChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowImpaleChance4"] = { type = "Spawn", tier = 4, "Adds 3 to 7 Physical Damage", "15% chance to Impale Enemies on Hit with Attacks", statOrder = { 1187, 7718 }, level = 65, group = "WeaponTreeLocalPhysicalDamageAndImpaleChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysicalLowImpaleChance5"] = { type = "Spawn", tier = 5, "Adds 5 to 8 Physical Damage", "15% chance to Impale Enemies on Hit with Attacks", statOrder = { 1187, 7718 }, level = 77, group = "WeaponTreeLocalPhysicalDamageAndImpaleChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowImpaleChance1"] = { type = "Spawn", tier = 1, "Adds 2 to 6 Physical Damage", "15% chance to Impale Enemies on Hit with Attacks", statOrder = { 1187, 7718 }, level = 1, group = "WeaponTreeLocalPhysicalDamageAndImpaleChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowImpaleChance2"] = { type = "Spawn", tier = 2, "Adds 3 to 8 Physical Damage", "15% chance to Impale Enemies on Hit with Attacks", statOrder = { 1187, 7718 }, level = 21, group = "WeaponTreeLocalPhysicalDamageAndImpaleChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowImpaleChance3"] = { type = "Spawn", tier = 3, "Adds 3 to 10 Physical Damage", "15% chance to Impale Enemies on Hit with Attacks", statOrder = { 1187, 7718 }, level = 46, group = "WeaponTreeLocalPhysicalDamageAndImpaleChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowImpaleChance4"] = { type = "Spawn", tier = 4, "Adds 5 to 13 Physical Damage", "15% chance to Impale Enemies on Hit with Attacks", statOrder = { 1187, 7718 }, level = 65, group = "WeaponTreeLocalPhysicalDamageAndImpaleChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeAddedPhysical2hLowImpaleChance5"] = { type = "Spawn", tier = 5, "Adds 6 to 15 Physical Damage", "15% chance to Impale Enemies on Hit with Attacks", statOrder = { 1187, 7718 }, level = 77, group = "WeaponTreeLocalPhysicalDamageAndImpaleChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, + ["WeaponTreeAddedFireHighReducedAttackSpeed1"] = { type = "Spawn", tier = 1, "Adds 5 to 9 Fire Damage", "6% reduced Attack Speed", statOrder = { 1273, 1324 }, level = 1, group = "WeaponTreeLocalFireDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["WeaponTreeAddedFireHighReducedAttackSpeed2"] = { type = "Spawn", tier = 2, "Adds 9 to 13 Fire Damage", "6% reduced Attack Speed", statOrder = { 1273, 1324 }, level = 26, group = "WeaponTreeLocalFireDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["WeaponTreeAddedFireHighReducedAttackSpeed3"] = { type = "Spawn", tier = 3, "Adds 16 to 26 Fire Damage", "6% reduced Attack Speed", statOrder = { 1273, 1324 }, level = 42, group = "WeaponTreeLocalFireDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["WeaponTreeAddedFireHighReducedAttackSpeed4"] = { type = "Spawn", tier = 4, "Adds 27 to 42 Fire Damage", "6% reduced Attack Speed", statOrder = { 1273, 1324 }, level = 62, group = "WeaponTreeLocalFireDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedFireHighReducedAttackSpeed5"] = { type = "Spawn", tier = 5, "Adds 55 to 83 Fire Damage", "6% reduced Attack Speed", statOrder = { 1273, 1324 }, level = 82, group = "WeaponTreeLocalFireDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeAddedFire2hHighReducedAttackSpeed1"] = { type = "Spawn", tier = 1, "Adds 9 to 14 Fire Damage", "6% reduced Attack Speed", statOrder = { 1273, 1324 }, level = 1, group = "WeaponTreeLocalFireDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["WeaponTreeAddedFire2hHighReducedAttackSpeed2"] = { type = "Spawn", tier = 2, "Adds 16 to 24 Fire Damage", "6% reduced Attack Speed", statOrder = { 1273, 1324 }, level = 26, group = "WeaponTreeLocalFireDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["WeaponTreeAddedFire2hHighReducedAttackSpeed3"] = { type = "Spawn", tier = 3, "Adds 30 to 47 Fire Damage", "6% reduced Attack Speed", statOrder = { 1273, 1324 }, level = 42, group = "WeaponTreeLocalFireDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["WeaponTreeAddedFire2hHighReducedAttackSpeed4"] = { type = "Spawn", tier = 4, "Adds 52 to 77 Fire Damage", "6% reduced Attack Speed", statOrder = { 1273, 1324 }, level = 62, group = "WeaponTreeLocalFireDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedFire2hHighReducedAttackSpeed5"] = { type = "Spawn", tier = 5, "Adds 102 to 153 Fire Damage", "6% reduced Attack Speed", statOrder = { 1273, 1324 }, level = 82, group = "WeaponTreeLocalFireDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeAddedFire1"] = { type = "Spawn", tier = 1, "Adds 4 to 6 Fire Damage", statOrder = { 1273 }, level = 1, group = "WeaponTreeLocalFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeAddedFire2"] = { type = "Spawn", tier = 2, "Adds 7 to 10 Fire Damage", statOrder = { 1273 }, level = 26, group = "WeaponTreeLocalFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeAddedFire3"] = { type = "Spawn", tier = 3, "Adds 13 to 18 Fire Damage", statOrder = { 1273 }, level = 42, group = "WeaponTreeLocalFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeAddedFire4"] = { type = "Spawn", tier = 4, "Adds 22 to 32 Fire Damage", statOrder = { 1273 }, level = 62, group = "WeaponTreeLocalFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeAddedFire5"] = { type = "Spawn", tier = 5, "Adds 42 to 63 Fire Damage", statOrder = { 1273 }, level = 82, group = "WeaponTreeLocalFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedFire2h1"] = { type = "Spawn", tier = 1, "Adds 8 to 10 Fire Damage", statOrder = { 1273 }, level = 1, group = "WeaponTreeLocalFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeAddedFire2h2"] = { type = "Spawn", tier = 2, "Adds 13 to 19 Fire Damage", statOrder = { 1273 }, level = 26, group = "WeaponTreeLocalFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeAddedFire2h3"] = { type = "Spawn", tier = 3, "Adds 24 to 35 Fire Damage", statOrder = { 1273 }, level = 42, group = "WeaponTreeLocalFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeAddedFire2h4"] = { type = "Spawn", tier = 4, "Adds 39 to 61 Fire Damage", statOrder = { 1273 }, level = 62, group = "WeaponTreeLocalFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeAddedFire2h5"] = { type = "Spawn", tier = 5, "Adds 78 to 118 Fire Damage", statOrder = { 1273 }, level = 82, group = "WeaponTreeLocalFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedFireLowIgniteChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 5 Fire Damage", "10% chance to Ignite", statOrder = { 1273, 1935 }, level = 1, group = "WeaponTreeLocalFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedFireLowIgniteChance2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Fire Damage", "10% chance to Ignite", statOrder = { 1273, 1935 }, level = 26, group = "WeaponTreeLocalFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedFireLowIgniteChance3"] = { type = "Spawn", tier = 3, "Adds 7 to 12 Fire Damage", "10% chance to Ignite", statOrder = { 1273, 1935 }, level = 42, group = "WeaponTreeLocalFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedFireLowIgniteChance4"] = { type = "Spawn", tier = 4, "Adds 12 to 19 Fire Damage", "10% chance to Ignite", statOrder = { 1273, 1935 }, level = 62, group = "WeaponTreeLocalFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeAddedFireLowIgniteChance5"] = { type = "Spawn", tier = 5, "Adds 25 to 39 Fire Damage", "10% chance to Ignite", statOrder = { 1273, 1935 }, level = 82, group = "WeaponTreeLocalFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, + ["WeaponTreeAddedFire2hLowIgniteChance1"] = { type = "Spawn", tier = 1, "Adds 4 to 9 Fire Damage", "20% chance to Ignite", statOrder = { 1273, 1935 }, level = 1, group = "WeaponTreeLocalFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedFire2hLowIgniteChance2"] = { type = "Spawn", tier = 2, "Adds 7 to 11 Fire Damage", "20% chance to Ignite", statOrder = { 1273, 1935 }, level = 26, group = "WeaponTreeLocalFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedFire2hLowIgniteChance3"] = { type = "Spawn", tier = 3, "Adds 13 to 22 Fire Damage", "20% chance to Ignite", statOrder = { 1273, 1935 }, level = 42, group = "WeaponTreeLocalFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedFire2hLowIgniteChance4"] = { type = "Spawn", tier = 4, "Adds 23 to 36 Fire Damage", "20% chance to Ignite", statOrder = { 1273, 1935 }, level = 62, group = "WeaponTreeLocalFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeAddedFire2hLowIgniteChance5"] = { type = "Spawn", tier = 5, "Adds 48 to 71 Fire Damage", "20% chance to Ignite", statOrder = { 1273, 1935 }, level = 82, group = "WeaponTreeLocalFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, + ["WeaponTreeAddedFireLowImplicitEffect1"] = { type = "Spawn", tier = 1, "25% increased Implicit Modifier magnitudes", "Adds 1 to 5 Fire Damage", statOrder = { 40, 1273 }, level = 10, group = "WeaponTreeLocalFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedFireLowImplicitEffect2"] = { type = "Spawn", tier = 2, "25% increased Implicit Modifier magnitudes", "Adds 3 to 6 Fire Damage", statOrder = { 40, 1273 }, level = 30, group = "WeaponTreeLocalFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedFireLowImplicitEffect3"] = { type = "Spawn", tier = 3, "25% increased Implicit Modifier magnitudes", "Adds 7 to 12 Fire Damage", statOrder = { 40, 1273 }, level = 48, group = "WeaponTreeLocalFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedFireLowImplicitEffect4"] = { type = "Spawn", tier = 4, "25% increased Implicit Modifier magnitudes", "Adds 12 to 19 Fire Damage", statOrder = { 40, 1273 }, level = 66, group = "WeaponTreeLocalFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeAddedFireLowImplicitEffect5"] = { type = "Spawn", tier = 5, "25% increased Implicit Modifier magnitudes", "Adds 25 to 39 Fire Damage", statOrder = { 40, 1273 }, level = 84, group = "WeaponTreeLocalFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, + ["WeaponTreeAddedFire2hLowImplicitEffect1"] = { type = "Spawn", tier = 1, "25% increased Implicit Modifier magnitudes", "Adds 4 to 9 Fire Damage", statOrder = { 40, 1273 }, level = 10, group = "WeaponTreeLocalFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedFire2hLowImplicitEffect2"] = { type = "Spawn", tier = 2, "25% increased Implicit Modifier magnitudes", "Adds 7 to 11 Fire Damage", statOrder = { 40, 1273 }, level = 30, group = "WeaponTreeLocalFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedFire2hLowImplicitEffect3"] = { type = "Spawn", tier = 3, "25% increased Implicit Modifier magnitudes", "Adds 13 to 22 Fire Damage", statOrder = { 40, 1273 }, level = 48, group = "WeaponTreeLocalFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedFire2hLowImplicitEffect4"] = { type = "Spawn", tier = 4, "25% increased Implicit Modifier magnitudes", "Adds 23 to 36 Fire Damage", statOrder = { 40, 1273 }, level = 66, group = "WeaponTreeLocalFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeAddedFire2hLowImplicitEffect5"] = { type = "Spawn", tier = 5, "25% increased Implicit Modifier magnitudes", "Adds 48 to 71 Fire Damage", statOrder = { 40, 1273 }, level = 84, group = "WeaponTreeLocalFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, + ["WeaponTreeAddedColdHighCannotChill1"] = { type = "Spawn", tier = 1, "Adds 4 to 9 Cold Damage", "Your Cold Damage cannot Chill", statOrder = { 1282, 2796 }, level = 1, group = "WeaponTreeLocalColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["WeaponTreeAddedColdHighCannotChill2"] = { type = "Spawn", tier = 2, "Adds 7 to 11 Cold Damage", "Your Cold Damage cannot Chill", statOrder = { 1282, 2796 }, level = 26, group = "WeaponTreeLocalColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["WeaponTreeAddedColdHighCannotChill3"] = { type = "Spawn", tier = 3, "Adds 15 to 24 Cold Damage", "Your Cold Damage cannot Chill", statOrder = { 1282, 2796 }, level = 42, group = "WeaponTreeLocalColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["WeaponTreeAddedColdHighCannotChill4"] = { type = "Spawn", tier = 4, "Adds 26 to 39 Cold Damage", "Your Cold Damage cannot Chill", statOrder = { 1282, 2796 }, level = 62, group = "WeaponTreeLocalColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedColdHighCannotChill5"] = { type = "Spawn", tier = 5, "Adds 52 to 78 Cold Damage", "Your Cold Damage cannot Chill", statOrder = { 1282, 2796 }, level = 82, group = "WeaponTreeLocalColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeAddedCold2hHighCannotChill1"] = { type = "Spawn", tier = 1, "Adds 8 to 14 Cold Damage", "Your Cold Damage cannot Chill", statOrder = { 1282, 2796 }, level = 1, group = "WeaponTreeLocalColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["WeaponTreeAddedCold2hHighCannotChill2"] = { type = "Spawn", tier = 2, "Adds 14 to 23 Cold Damage", "Your Cold Damage cannot Chill", statOrder = { 1282, 2796 }, level = 26, group = "WeaponTreeLocalColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["WeaponTreeAddedCold2hHighCannotChill3"] = { type = "Spawn", tier = 3, "Adds 28 to 44 Cold Damage", "Your Cold Damage cannot Chill", statOrder = { 1282, 2796 }, level = 42, group = "WeaponTreeLocalColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["WeaponTreeAddedCold2hHighCannotChill4"] = { type = "Spawn", tier = 4, "Adds 47 to 73 Cold Damage", "Your Cold Damage cannot Chill", statOrder = { 1282, 2796 }, level = 62, group = "WeaponTreeLocalColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedCold2hHighCannotChill5"] = { type = "Spawn", tier = 5, "Adds 95 to 144 Cold Damage", "Your Cold Damage cannot Chill", statOrder = { 1282, 2796 }, level = 82, group = "WeaponTreeLocalColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeAddedCold1"] = { type = "Spawn", tier = 1, "Adds 4 to 6 Cold Damage", statOrder = { 1282 }, level = 1, group = "WeaponTreeLocalColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeAddedCold2"] = { type = "Spawn", tier = 2, "Adds 5 to 10 Cold Damage", statOrder = { 1282 }, level = 26, group = "WeaponTreeLocalColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeAddedCold3"] = { type = "Spawn", tier = 3, "Adds 12 to 18 Cold Damage", statOrder = { 1282 }, level = 42, group = "WeaponTreeLocalColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeAddedCold4"] = { type = "Spawn", tier = 4, "Adds 19 to 30 Cold Damage", statOrder = { 1282 }, level = 62, group = "WeaponTreeLocalColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeAddedCold5"] = { type = "Spawn", tier = 5, "Adds 41 to 60 Cold Damage", statOrder = { 1282 }, level = 82, group = "WeaponTreeLocalColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedCold2h1"] = { type = "Spawn", tier = 1, "Adds 5 to 10 Cold Damage", statOrder = { 1282 }, level = 1, group = "WeaponTreeLocalColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeAddedCold2h2"] = { type = "Spawn", tier = 2, "Adds 10 to 17 Cold Damage", statOrder = { 1282 }, level = 26, group = "WeaponTreeLocalColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeAddedCold2h3"] = { type = "Spawn", tier = 3, "Adds 21 to 34 Cold Damage", statOrder = { 1282 }, level = 42, group = "WeaponTreeLocalColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeAddedCold2h4"] = { type = "Spawn", tier = 4, "Adds 37 to 55 Cold Damage", statOrder = { 1282 }, level = 62, group = "WeaponTreeLocalColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeAddedCold2h5"] = { type = "Spawn", tier = 5, "Adds 74 to 111 Cold Damage", statOrder = { 1282 }, level = 82, group = "WeaponTreeLocalColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedColdLowFreezeChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 5 Cold Damage", "10% chance to Freeze", statOrder = { 1282, 1938 }, level = 1, group = "WeaponTreeLocalColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedColdLowFreezeChance2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Cold Damage", "10% chance to Freeze", statOrder = { 1282, 1938 }, level = 26, group = "WeaponTreeLocalColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedColdLowFreezeChance3"] = { type = "Spawn", tier = 3, "Adds 7 to 10 Cold Damage", "10% chance to Freeze", statOrder = { 1282, 1938 }, level = 42, group = "WeaponTreeLocalColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedColdLowFreezeChance4"] = { type = "Spawn", tier = 4, "Adds 12 to 19 Cold Damage", "10% chance to Freeze", statOrder = { 1282, 1938 }, level = 62, group = "WeaponTreeLocalColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeAddedColdLowFreezeChance5"] = { type = "Spawn", tier = 5, "Adds 24 to 35 Cold Damage", "10% chance to Freeze", statOrder = { 1282, 1938 }, level = 82, group = "WeaponTreeLocalColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, + ["WeaponTreeAddedCold2hLowFreezeChance1"] = { type = "Spawn", tier = 1, "Adds 4 to 6 Cold Damage", "20% chance to Freeze", statOrder = { 1282, 1938 }, level = 1, group = "WeaponTreeLocalColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedCold2hLowFreezeChance2"] = { type = "Spawn", tier = 2, "Adds 7 to 11 Cold Damage", "20% chance to Freeze", statOrder = { 1282, 1938 }, level = 26, group = "WeaponTreeLocalColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedCold2hLowFreezeChance3"] = { type = "Spawn", tier = 3, "Adds 13 to 21 Cold Damage", "20% chance to Freeze", statOrder = { 1282, 1938 }, level = 42, group = "WeaponTreeLocalColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedCold2hLowFreezeChance4"] = { type = "Spawn", tier = 4, "Adds 23 to 35 Cold Damage", "20% chance to Freeze", statOrder = { 1282, 1938 }, level = 62, group = "WeaponTreeLocalColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeAddedCold2hLowFreezeChance5"] = { type = "Spawn", tier = 5, "Adds 45 to 66 Cold Damage", "20% chance to Freeze", statOrder = { 1282, 1938 }, level = 82, group = "WeaponTreeLocalColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, + ["WeaponTreeAddedColdLowAttackSpeed1"] = { type = "Spawn", tier = 1, "Adds 1 to 5 Cold Damage", "4% increased Attack Speed", statOrder = { 1282, 1324 }, level = 10, group = "WeaponTreeLocalColdDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedColdLowAttackSpeed2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Cold Damage", "4% increased Attack Speed", statOrder = { 1282, 1324 }, level = 30, group = "WeaponTreeLocalColdDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedColdLowAttackSpeed3"] = { type = "Spawn", tier = 3, "Adds 7 to 10 Cold Damage", "4% increased Attack Speed", statOrder = { 1282, 1324 }, level = 48, group = "WeaponTreeLocalColdDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedColdLowAttackSpeed4"] = { type = "Spawn", tier = 4, "Adds 12 to 19 Cold Damage", "4% increased Attack Speed", statOrder = { 1282, 1324 }, level = 66, group = "WeaponTreeLocalColdDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeAddedColdLowAttackSpeed5"] = { type = "Spawn", tier = 5, "Adds 24 to 35 Cold Damage", "4% increased Attack Speed", statOrder = { 1282, 1324 }, level = 84, group = "WeaponTreeLocalColdDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, + ["WeaponTreeAddedCold2hLowAttackSpeed1"] = { type = "Spawn", tier = 1, "Adds 4 to 6 Cold Damage", "4% increased Attack Speed", statOrder = { 1282, 1324 }, level = 10, group = "WeaponTreeLocalColdDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedCold2hLowAttackSpeed2"] = { type = "Spawn", tier = 2, "Adds 7 to 11 Cold Damage", "4% increased Attack Speed", statOrder = { 1282, 1324 }, level = 30, group = "WeaponTreeLocalColdDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedCold2hLowAttackSpeed3"] = { type = "Spawn", tier = 3, "Adds 13 to 21 Cold Damage", "4% increased Attack Speed", statOrder = { 1282, 1324 }, level = 48, group = "WeaponTreeLocalColdDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedCold2hLowAttackSpeed4"] = { type = "Spawn", tier = 4, "Adds 23 to 35 Cold Damage", "4% increased Attack Speed", statOrder = { 1282, 1324 }, level = 66, group = "WeaponTreeLocalColdDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeAddedCold2hLowAttackSpeed5"] = { type = "Spawn", tier = 5, "Adds 45 to 66 Cold Damage", "4% increased Attack Speed", statOrder = { 1282, 1324 }, level = 84, group = "WeaponTreeLocalColdDamageAndAttackSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, + ["WeaponTreeAddedLightningHighIncreasedDamageTaken1"] = { type = "Spawn", tier = 1, "Adds 1 to 12 Lightning Damage", "4% increased Lightning Damage taken", statOrder = { 1293, 3296 }, level = 1, group = "WeaponTreeLocalLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["WeaponTreeAddedLightningHighIncreasedDamageTaken2"] = { type = "Spawn", tier = 2, "Adds 1 to 20 Lightning Damage", "4% increased Lightning Damage taken", statOrder = { 1293, 3296 }, level = 26, group = "WeaponTreeLocalLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["WeaponTreeAddedLightningHighIncreasedDamageTaken3"] = { type = "Spawn", tier = 3, "Adds 1 to 41 Lightning Damage", "4% increased Lightning Damage taken", statOrder = { 1293, 3296 }, level = 42, group = "WeaponTreeLocalLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["WeaponTreeAddedLightningHighIncreasedDamageTaken4"] = { type = "Spawn", tier = 4, "Adds 3 to 66 Lightning Damage", "4% increased Lightning Damage taken", statOrder = { 1293, 3296 }, level = 62, group = "WeaponTreeLocalLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedLightningHighIncreasedDamageTaken5"] = { type = "Spawn", tier = 5, "Adds 7 to 132 Lightning Damage", "4% increased Lightning Damage taken", statOrder = { 1293, 3296 }, level = 82, group = "WeaponTreeLocalLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeAddedLightning2hHighIncreasedDamageTaken1"] = { type = "Spawn", tier = 1, "Adds 1 to 21 Lightning Damage", "6% increased Lightning Damage taken", statOrder = { 1293, 3296 }, level = 1, group = "WeaponTreeLocalLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["WeaponTreeAddedLightning2hHighIncreasedDamageTaken2"] = { type = "Spawn", tier = 2, "Adds 1 to 38 Lightning Damage", "6% increased Lightning Damage taken", statOrder = { 1293, 3296 }, level = 26, group = "WeaponTreeLocalLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["WeaponTreeAddedLightning2hHighIncreasedDamageTaken3"] = { type = "Spawn", tier = 3, "Adds 3 to 75 Lightning Damage", "6% increased Lightning Damage taken", statOrder = { 1293, 3296 }, level = 42, group = "WeaponTreeLocalLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["WeaponTreeAddedLightning2hHighIncreasedDamageTaken4"] = { type = "Spawn", tier = 4, "Adds 6 to 124 Lightning Damage", "6% increased Lightning Damage taken", statOrder = { 1293, 3296 }, level = 62, group = "WeaponTreeLocalLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedLightning2hHighIncreasedDamageTaken5"] = { type = "Spawn", tier = 5, "Adds 13 to 242 Lightning Damage", "6% increased Lightning Damage taken", statOrder = { 1293, 3296 }, level = 82, group = "WeaponTreeLocalLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeAddedLightning1"] = { type = "Spawn", tier = 1, "Adds 1 to 9 Lightning Damage", statOrder = { 1293 }, level = 1, group = "WeaponTreeLocalLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeAddedLightning2"] = { type = "Spawn", tier = 2, "Adds 1 to 17 Lightning Damage", statOrder = { 1293 }, level = 26, group = "WeaponTreeLocalLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeAddedLightning3"] = { type = "Spawn", tier = 3, "Adds 1 to 30 Lightning Damage", statOrder = { 1293 }, level = 42, group = "WeaponTreeLocalLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeAddedLightning4"] = { type = "Spawn", tier = 4, "Adds 3 to 51 Lightning Damage", statOrder = { 1293 }, level = 62, group = "WeaponTreeLocalLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeAddedLightning5"] = { type = "Spawn", tier = 5, "Adds 6 to 101 Lightning Damage", statOrder = { 1293 }, level = 82, group = "WeaponTreeLocalLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedLightning2h1"] = { type = "Spawn", tier = 1, "Adds 1 to 16 Lightning Damage", statOrder = { 1293 }, level = 1, group = "WeaponTreeLocalLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeAddedLightning2h2"] = { type = "Spawn", tier = 2, "Adds 1 to 29 Lightning Damage", statOrder = { 1293 }, level = 26, group = "WeaponTreeLocalLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeAddedLightning2h3"] = { type = "Spawn", tier = 3, "Adds 3 to 58 Lightning Damage", statOrder = { 1293 }, level = 42, group = "WeaponTreeLocalLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeAddedLightning2h4"] = { type = "Spawn", tier = 4, "Adds 4 to 94 Lightning Damage", statOrder = { 1293 }, level = 62, group = "WeaponTreeLocalLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeAddedLightning2h5"] = { type = "Spawn", tier = 5, "Adds 10 to 186 Lightning Damage", statOrder = { 1293 }, level = 82, group = "WeaponTreeLocalLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedLightningLowShockChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 6 Lightning Damage", "10% chance to Shock", statOrder = { 1293, 1942 }, level = 1, group = "WeaponTreeLocalLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedLightningLowShockChance2"] = { type = "Spawn", tier = 2, "Adds 1 to 10 Lightning Damage", "10% chance to Shock", statOrder = { 1293, 1942 }, level = 26, group = "WeaponTreeLocalLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedLightningLowShockChance3"] = { type = "Spawn", tier = 3, "Adds 1 to 18 Lightning Damage", "10% chance to Shock", statOrder = { 1293, 1942 }, level = 42, group = "WeaponTreeLocalLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedLightningLowShockChance4"] = { type = "Spawn", tier = 4, "Adds 3 to 31 Lightning Damage", "10% chance to Shock", statOrder = { 1293, 1942 }, level = 62, group = "WeaponTreeLocalLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeAddedLightningLowShockChance5"] = { type = "Spawn", tier = 5, "Adds 3 to 60 Lightning Damage", "10% chance to Shock", statOrder = { 1293, 1942 }, level = 82, group = "WeaponTreeLocalLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, + ["WeaponTreeAddedLightning2hLowShockChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 10 Lightning Damage", "20% chance to Shock", statOrder = { 1293, 1942 }, level = 1, group = "WeaponTreeLocalLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedLightning2hLowShockChance2"] = { type = "Spawn", tier = 2, "Adds 1 to 19 Lightning Damage", "20% chance to Shock", statOrder = { 1293, 1942 }, level = 26, group = "WeaponTreeLocalLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedLightning2hLowShockChance3"] = { type = "Spawn", tier = 3, "Adds 3 to 34 Lightning Damage", "20% chance to Shock", statOrder = { 1293, 1942 }, level = 42, group = "WeaponTreeLocalLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedLightning2hLowShockChance4"] = { type = "Spawn", tier = 4, "Adds 4 to 58 Lightning Damage", "20% chance to Shock", statOrder = { 1293, 1942 }, level = 62, group = "WeaponTreeLocalLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeAddedLightning2hLowShockChance5"] = { type = "Spawn", tier = 5, "Adds 6 to 112 Lightning Damage", "20% chance to Shock", statOrder = { 1293, 1942 }, level = 82, group = "WeaponTreeLocalLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, + ["WeaponTreeAddedLightningLowCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 6 Lightning Damage", "10% increased Critical Strike Chance", statOrder = { 1293, 1375 }, level = 10, group = "WeaponTreeLocalLightningDamageAndCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedLightningLowCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "Adds 1 to 10 Lightning Damage", "10% increased Critical Strike Chance", statOrder = { 1293, 1375 }, level = 30, group = "WeaponTreeLocalLightningDamageAndCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedLightningLowCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "Adds 1 to 18 Lightning Damage", "10% increased Critical Strike Chance", statOrder = { 1293, 1375 }, level = 48, group = "WeaponTreeLocalLightningDamageAndCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedLightningLowCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "Adds 3 to 31 Lightning Damage", "10% increased Critical Strike Chance", statOrder = { 1293, 1375 }, level = 66, group = "WeaponTreeLocalLightningDamageAndCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeAddedLightningLowCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "Adds 3 to 60 Lightning Damage", "10% increased Critical Strike Chance", statOrder = { 1293, 1375 }, level = 84, group = "WeaponTreeLocalLightningDamageAndCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, + ["WeaponTreeAddedLightning2hLowCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 10 Lightning Damage", "10% increased Critical Strike Chance", statOrder = { 1293, 1375 }, level = 10, group = "WeaponTreeLocalLightningDamageAndCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedLightning2hLowCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "Adds 1 to 19 Lightning Damage", "10% increased Critical Strike Chance", statOrder = { 1293, 1375 }, level = 30, group = "WeaponTreeLocalLightningDamageAndCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedLightning2hLowCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "Adds 3 to 34 Lightning Damage", "10% increased Critical Strike Chance", statOrder = { 1293, 1375 }, level = 48, group = "WeaponTreeLocalLightningDamageAndCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedLightning2hLowCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "Adds 4 to 58 Lightning Damage", "10% increased Critical Strike Chance", statOrder = { 1293, 1375 }, level = 66, group = "WeaponTreeLocalLightningDamageAndCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeAddedLightning2hLowCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "Adds 6 to 112 Lightning Damage", "10% increased Critical Strike Chance", statOrder = { 1293, 1375 }, level = 84, group = "WeaponTreeLocalLightningDamageAndCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, + ["WeaponTreeAddedChaosHighReducedLife1"] = { type = "Spawn", tier = 1, "Adds 4 to 6 Chaos Damage", "5% reduced maximum Life", statOrder = { 1301, 1482 }, level = 8, group = "WeaponTreeLocalChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["WeaponTreeAddedChaosHighReducedLife2"] = { type = "Spawn", tier = 2, "Adds 7 to 10 Chaos Damage", "5% reduced maximum Life", statOrder = { 1301, 1482 }, level = 28, group = "WeaponTreeLocalChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["WeaponTreeAddedChaosHighReducedLife3"] = { type = "Spawn", tier = 3, "Adds 12 to 18 Chaos Damage", "5% reduced maximum Life", statOrder = { 1301, 1482 }, level = 44, group = "WeaponTreeLocalChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["WeaponTreeAddedChaosHighReducedLife4"] = { type = "Spawn", tier = 4, "Adds 19 to 31 Chaos Damage", "5% reduced maximum Life", statOrder = { 1301, 1482 }, level = 70, group = "WeaponTreeLocalChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeAddedChaosHighReducedLife5"] = { type = "Spawn", tier = 5, "Adds 39 to 59 Chaos Damage", "5% reduced maximum Life", statOrder = { 1301, 1482 }, level = 85, group = "WeaponTreeLocalChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, + ["WeaponTreeAddedChaos2hHighReducedLife1"] = { type = "Spawn", tier = 1, "Adds 5 to 10 Chaos Damage", "7% reduced maximum Life", statOrder = { 1301, 1482 }, level = 8, group = "WeaponTreeLocalChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["WeaponTreeAddedChaos2hHighReducedLife2"] = { type = "Spawn", tier = 2, "Adds 10 to 17 Chaos Damage", "7% reduced maximum Life", statOrder = { 1301, 1482 }, level = 28, group = "WeaponTreeLocalChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["WeaponTreeAddedChaos2hHighReducedLife3"] = { type = "Spawn", tier = 3, "Adds 20 to 30 Chaos Damage", "7% reduced maximum Life", statOrder = { 1301, 1482 }, level = 44, group = "WeaponTreeLocalChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["WeaponTreeAddedChaos2hHighReducedLife4"] = { type = "Spawn", tier = 4, "Adds 34 to 51 Chaos Damage", "7% reduced maximum Life", statOrder = { 1301, 1482 }, level = 70, group = "WeaponTreeLocalChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeAddedChaos2hHighReducedLife5"] = { type = "Spawn", tier = 5, "Adds 66 to 99 Chaos Damage", "7% reduced maximum Life", statOrder = { 1301, 1482 }, level = 85, group = "WeaponTreeLocalChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, + ["WeaponTreeAddedChaos1"] = { type = "Spawn", tier = 1, "Adds 1 to 6 Chaos Damage", statOrder = { 1301 }, level = 8, group = "WeaponTreeLocalChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeAddedChaos2"] = { type = "Spawn", tier = 2, "Adds 3 to 8 Chaos Damage", statOrder = { 1301 }, level = 28, group = "WeaponTreeLocalChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeAddedChaos3"] = { type = "Spawn", tier = 3, "Adds 8 to 14 Chaos Damage", statOrder = { 1301 }, level = 44, group = "WeaponTreeLocalChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeAddedChaos4"] = { type = "Spawn", tier = 4, "Adds 15 to 24 Chaos Damage", statOrder = { 1301 }, level = 70, group = "WeaponTreeLocalChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedChaos5"] = { type = "Spawn", tier = 5, "Adds 29 to 46 Chaos Damage", statOrder = { 1301 }, level = 85, group = "WeaponTreeLocalChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeAddedChaos2h1"] = { type = "Spawn", tier = 1, "Adds 4 to 6 Chaos Damage", statOrder = { 1301 }, level = 8, group = "WeaponTreeLocalChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeAddedChaos2h2"] = { type = "Spawn", tier = 2, "Adds 7 to 13 Chaos Damage", statOrder = { 1301 }, level = 28, group = "WeaponTreeLocalChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeAddedChaos2h3"] = { type = "Spawn", tier = 3, "Adds 15 to 24 Chaos Damage", statOrder = { 1301 }, level = 44, group = "WeaponTreeLocalChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeAddedChaos2h4"] = { type = "Spawn", tier = 4, "Adds 26 to 39 Chaos Damage", statOrder = { 1301 }, level = 70, group = "WeaponTreeLocalChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedChaos2h5"] = { type = "Spawn", tier = 5, "Adds 50 to 77 Chaos Damage", statOrder = { 1301 }, level = 85, group = "WeaponTreeLocalChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeAddedChaosLowPoisonChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 5 Chaos Damage", "15% chance to Poison on Hit", statOrder = { 1301, 7849 }, level = 8, group = "WeaponTreeLocalChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeAddedChaosLowPoisonChance2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Chaos Damage", "15% chance to Poison on Hit", statOrder = { 1301, 7849 }, level = 28, group = "WeaponTreeLocalChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeAddedChaosLowPoisonChance3"] = { type = "Spawn", tier = 3, "Adds 7 to 9 Chaos Damage", "15% chance to Poison on Hit", statOrder = { 1301, 7849 }, level = 44, group = "WeaponTreeLocalChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeAddedChaosLowPoisonChance4"] = { type = "Spawn", tier = 4, "Adds 8 to 15 Chaos Damage", "15% chance to Poison on Hit", statOrder = { 1301, 7849 }, level = 70, group = "WeaponTreeLocalChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, + ["WeaponTreeAddedChaosLowPoisonChance5"] = { type = "Spawn", tier = 5, "Adds 18 to 28 Chaos Damage", "15% chance to Poison on Hit", statOrder = { 1301, 7849 }, level = 85, group = "WeaponTreeLocalChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 31, 0 }, modTags = { }, }, + ["WeaponTreeAddedChaos2hLowPoisonChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 5 Chaos Damage", "15% chance to Poison on Hit", statOrder = { 1301, 7849 }, level = 8, group = "WeaponTreeLocalChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeAddedChaos2hLowPoisonChance2"] = { type = "Spawn", tier = 2, "Adds 5 to 8 Chaos Damage", "15% chance to Poison on Hit", statOrder = { 1301, 7849 }, level = 28, group = "WeaponTreeLocalChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeAddedChaos2hLowPoisonChance3"] = { type = "Spawn", tier = 3, "Adds 9 to 14 Chaos Damage", "15% chance to Poison on Hit", statOrder = { 1301, 7849 }, level = 44, group = "WeaponTreeLocalChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeAddedChaos2hLowPoisonChance4"] = { type = "Spawn", tier = 4, "Adds 15 to 24 Chaos Damage", "15% chance to Poison on Hit", statOrder = { 1301, 7849 }, level = 70, group = "WeaponTreeLocalChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, + ["WeaponTreeAddedChaos2hLowPoisonChance5"] = { type = "Spawn", tier = 5, "Adds 31 to 46 Chaos Damage", "15% chance to Poison on Hit", statOrder = { 1301, 7849 }, level = 85, group = "WeaponTreeLocalChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 31, 0 }, modTags = { }, }, + ["WeaponTreeAddedChaosLowWitheredEffect1"] = { type = "Spawn", tier = 1, "Adds 1 to 5 Chaos Damage", "10% increased Effect of Withered", statOrder = { 1301, 10405 }, level = 8, group = "WeaponTreeLocalChaosDamageAndWitheredEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeAddedChaosLowWitheredEffect2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Chaos Damage", "10% increased Effect of Withered", statOrder = { 1301, 10405 }, level = 28, group = "WeaponTreeLocalChaosDamageAndWitheredEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeAddedChaosLowWitheredEffect3"] = { type = "Spawn", tier = 3, "Adds 7 to 9 Chaos Damage", "10% increased Effect of Withered", statOrder = { 1301, 10405 }, level = 44, group = "WeaponTreeLocalChaosDamageAndWitheredEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeAddedChaosLowWitheredEffect4"] = { type = "Spawn", tier = 4, "Adds 8 to 15 Chaos Damage", "10% increased Effect of Withered", statOrder = { 1301, 10405 }, level = 70, group = "WeaponTreeLocalChaosDamageAndWitheredEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, + ["WeaponTreeAddedChaosLowWitheredEffect5"] = { type = "Spawn", tier = 5, "Adds 18 to 28 Chaos Damage", "10% increased Effect of Withered", statOrder = { 1301, 10405 }, level = 85, group = "WeaponTreeLocalChaosDamageAndWitheredEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 31, 0 }, modTags = { }, }, + ["WeaponTreeAddedChaos2hLowWitheredEffect1"] = { type = "Spawn", tier = 1, "Adds 1 to 5 Chaos Damage", "20% increased Effect of Withered", statOrder = { 1301, 10405 }, level = 8, group = "WeaponTreeLocalChaosDamageAndWitheredEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeAddedChaos2hLowWitheredEffect2"] = { type = "Spawn", tier = 2, "Adds 5 to 8 Chaos Damage", "20% increased Effect of Withered", statOrder = { 1301, 10405 }, level = 28, group = "WeaponTreeLocalChaosDamageAndWitheredEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeAddedChaos2hLowWitheredEffect3"] = { type = "Spawn", tier = 3, "Adds 9 to 14 Chaos Damage", "20% increased Effect of Withered", statOrder = { 1301, 10405 }, level = 44, group = "WeaponTreeLocalChaosDamageAndWitheredEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeAddedChaos2hLowWitheredEffect4"] = { type = "Spawn", tier = 4, "Adds 15 to 24 Chaos Damage", "20% increased Effect of Withered", statOrder = { 1301, 10405 }, level = 70, group = "WeaponTreeLocalChaosDamageAndWitheredEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, + ["WeaponTreeAddedChaos2hLowWitheredEffect5"] = { type = "Spawn", tier = 5, "Adds 31 to 46 Chaos Damage", "20% increased Effect of Withered", statOrder = { 1301, 10405 }, level = 85, group = "WeaponTreeLocalChaosDamageAndWitheredEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 31, 0 }, modTags = { }, }, + ["WeaponTreeAddedElementalHighCannotInflictElementalAilments1"] = { type = "Spawn", tier = 1, "Adds 7 to 11 Fire Damage", "Adds 7 to 11 Cold Damage", "Adds 1 to 19 Lightning Damage", statOrder = { 1273, 1282, 1293 }, level = 36, group = "WeaponTreeLocalElementalDamageAndCannotInflictElementalAilments", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["WeaponTreeAddedElementalHighCannotInflictElementalAilments2"] = { type = "Spawn", tier = 2, "Adds 12 to 18 Fire Damage", "Adds 12 to 18 Cold Damage", "Adds 3 to 29 Lightning Damage", statOrder = { 1273, 1282, 1293 }, level = 60, group = "WeaponTreeLocalElementalDamageAndCannotInflictElementalAilments", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["WeaponTreeAddedElementalHighCannotInflictElementalAilments3"] = { type = "Spawn", tier = 3, "Adds 24 to 35 Fire Damage", "Adds 24 to 35 Cold Damage", "Adds 3 to 55 Lightning Damage", statOrder = { 1273, 1282, 1293 }, level = 85, group = "WeaponTreeLocalElementalDamageAndCannotInflictElementalAilments", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["WeaponTreeAddedElemental2hHighCannotInflictElementalAilments1"] = { type = "Spawn", tier = 1, "Adds 14 to 23 Fire Damage", "Adds 14 to 23 Cold Damage", "Adds 3 to 33 Lightning Damage", statOrder = { 1273, 1282, 1293 }, level = 36, group = "WeaponTreeLocalElementalDamageAndCannotInflictElementalAilments", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["WeaponTreeAddedElemental2hHighCannotInflictElementalAilments2"] = { type = "Spawn", tier = 2, "Adds 23 to 34 Fire Damage", "Adds 23 to 34 Cold Damage", "Adds 4 to 56 Lightning Damage", statOrder = { 1273, 1282, 1293 }, level = 60, group = "WeaponTreeLocalElementalDamageAndCannotInflictElementalAilments", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["WeaponTreeAddedElemental2hHighCannotInflictElementalAilments3"] = { type = "Spawn", tier = 3, "Adds 43 to 64 Fire Damage", "Adds 43 to 64 Cold Damage", "Adds 6 to 102 Lightning Damage", statOrder = { 1273, 1282, 1293 }, level = 85, group = "WeaponTreeLocalElementalDamageAndCannotInflictElementalAilments", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["WeaponTreeAddedElemental1"] = { type = "Spawn", tier = 1, "Adds 5 to 10 Fire Damage", "Adds 5 to 10 Cold Damage", "Adds 1 to 15 Lightning Damage", statOrder = { 1273, 1282, 1293 }, level = 36, group = "WeaponTreeLocalElementalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeAddedElemental2"] = { type = "Spawn", tier = 2, "Adds 9 to 15 Fire Damage", "Adds 9 to 15 Cold Damage", "Adds 1 to 23 Lightning Damage", statOrder = { 1273, 1282, 1293 }, level = 60, group = "WeaponTreeLocalElementalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedElemental3"] = { type = "Spawn", tier = 3, "Adds 18 to 27 Fire Damage", "Adds 18 to 27 Cold Damage", "Adds 3 to 42 Lightning Damage", statOrder = { 1273, 1282, 1293 }, level = 85, group = "WeaponTreeLocalElementalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeAddedElemental2h1"] = { type = "Spawn", tier = 1, "Adds 10 to 17 Fire Damage", "Adds 10 to 17 Cold Damage", "Adds 3 to 26 Lightning Damage", statOrder = { 1273, 1282, 1293 }, level = 36, group = "WeaponTreeLocalElementalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeAddedElemental2h2"] = { type = "Spawn", tier = 2, "Adds 17 to 26 Fire Damage", "Adds 17 to 26 Cold Damage", "Adds 3 to 42 Lightning Damage", statOrder = { 1273, 1282, 1293 }, level = 60, group = "WeaponTreeLocalElementalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedElemental2h3"] = { type = "Spawn", tier = 3, "Adds 34 to 49 Fire Damage", "Adds 34 to 49 Cold Damage", "Adds 4 to 78 Lightning Damage", statOrder = { 1273, 1282, 1293 }, level = 85, group = "WeaponTreeLocalElementalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeAddedElementalLowElementalAilmentChance1"] = { type = "Spawn", tier = 1, "Adds 3 to 6 Fire Damage", "Adds 3 to 6 Cold Damage", "Adds 1 to 8 Lightning Damage", statOrder = { 1273, 1282, 1293 }, level = 36, group = "WeaponTreeLocalElementalDamageAndElementalAilmentChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeAddedElementalLowElementalAilmentChance2"] = { type = "Spawn", tier = 2, "Adds 6 to 10 Fire Damage", "Adds 6 to 10 Cold Damage", "Adds 1 to 13 Lightning Damage", statOrder = { 1273, 1282, 1293 }, level = 60, group = "WeaponTreeLocalElementalDamageAndElementalAilmentChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, + ["WeaponTreeAddedElementalLowElementalAilmentChance3"] = { type = "Spawn", tier = 3, "Adds 13 to 20 Fire Damage", "Adds 13 to 20 Cold Damage", "Adds 3 to 25 Lightning Damage", statOrder = { 1273, 1282, 1293 }, level = 85, group = "WeaponTreeLocalElementalDamageAndElementalAilmentChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 31, 0 }, modTags = { }, }, + ["WeaponTreeAddedElemental2hLowElementalAilmentChance1"] = { type = "Spawn", tier = 1, "Adds 7 to 11 Fire Damage", "Adds 7 to 11 Cold Damage", "Adds 3 to 15 Lightning Damage", statOrder = { 1273, 1282, 1293 }, level = 36, group = "WeaponTreeLocalElementalDamageAndElementalAilmentChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeAddedElemental2hLowElementalAilmentChance2"] = { type = "Spawn", tier = 2, "Adds 12 to 20 Fire Damage", "Adds 12 to 20 Cold Damage", "Adds 3 to 25 Lightning Damage", statOrder = { 1273, 1282, 1293 }, level = 60, group = "WeaponTreeLocalElementalDamageAndElementalAilmentChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, + ["WeaponTreeAddedElemental2hLowElementalAilmentChance3"] = { type = "Spawn", tier = 3, "Adds 24 to 35 Fire Damage", "Adds 24 to 35 Cold Damage", "Adds 4 to 46 Lightning Damage", statOrder = { 1273, 1282, 1293 }, level = 85, group = "WeaponTreeLocalElementalDamageAndElementalAilmentChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 31, 0 }, modTags = { }, }, + ["WeaponTreeAddedElementalLowElementalAilmentEffect1"] = { type = "Spawn", tier = 1, "Adds 3 to 6 Fire Damage", "Adds 3 to 6 Cold Damage", "Adds 1 to 8 Lightning Damage", statOrder = { 1273, 1282, 1293 }, level = 36, group = "WeaponTreeLocalElementalDamageAndElementalAilmentEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeAddedElementalLowElementalAilmentEffect2"] = { type = "Spawn", tier = 2, "Adds 4 to 9 Fire Damage", "Adds 4 to 9 Cold Damage", "Adds 1 to 13 Lightning Damage", statOrder = { 1273, 1282, 1293 }, level = 60, group = "WeaponTreeLocalElementalDamageAndElementalAilmentEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, + ["WeaponTreeAddedElementalLowElementalAilmentEffect3"] = { type = "Spawn", tier = 3, "Adds 11 to 15 Fire Damage", "Adds 11 to 15 Cold Damage", "Adds 3 to 25 Lightning Damage", statOrder = { 1273, 1282, 1293 }, level = 85, group = "WeaponTreeLocalElementalDamageAndElementalAilmentEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 31, 0 }, modTags = { }, }, + ["WeaponTreeAddedElemental2hLowElementalAilmentEffect1"] = { type = "Spawn", tier = 1, "Adds 7 to 10 Fire Damage", "Adds 7 to 10 Cold Damage", "Adds 3 to 15 Lightning Damage", statOrder = { 1273, 1282, 1293 }, level = 36, group = "WeaponTreeLocalElementalDamageAndElementalAilmentEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeAddedElemental2hLowElementalAilmentEffect2"] = { type = "Spawn", tier = 2, "Adds 9 to 17 Fire Damage", "Adds 9 to 17 Cold Damage", "Adds 3 to 25 Lightning Damage", statOrder = { 1273, 1282, 1293 }, level = 60, group = "WeaponTreeLocalElementalDamageAndElementalAilmentEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, + ["WeaponTreeAddedElemental2hLowElementalAilmentEffect3"] = { type = "Spawn", tier = 3, "Adds 20 to 29 Fire Damage", "Adds 20 to 29 Cold Damage", "Adds 4 to 46 Lightning Damage", statOrder = { 1273, 1282, 1293 }, level = 85, group = "WeaponTreeLocalElementalDamageAndElementalAilmentEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 31, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysicalHighReducedCastSpeed1"] = { type = "Spawn", tier = 1, "Adds 2 to 5 Physical Damage to Spells", "6% reduced Cast Speed", statOrder = { 1314, 1357 }, level = 1, group = "WeaponTreeSpellAddedPhysicalDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysicalHighReducedCastSpeed2"] = { type = "Spawn", tier = 2, "Adds 5 to 7 Physical Damage to Spells", "6% reduced Cast Speed", statOrder = { 1314, 1357 }, level = 26, group = "WeaponTreeSpellAddedPhysicalDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysicalHighReducedCastSpeed3"] = { type = "Spawn", tier = 3, "Adds 8 to 14 Physical Damage to Spells", "6% reduced Cast Speed", statOrder = { 1314, 1357 }, level = 42, group = "WeaponTreeSpellAddedPhysicalDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysicalHighReducedCastSpeed4"] = { type = "Spawn", tier = 4, "Adds 14 to 22 Physical Damage to Spells", "6% reduced Cast Speed", statOrder = { 1314, 1357 }, level = 62, group = "WeaponTreeSpellAddedPhysicalDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysicalHighReducedCastSpeed5"] = { type = "Spawn", tier = 5, "Adds 28 to 42 Physical Damage to Spells", "6% reduced Cast Speed", statOrder = { 1314, 1357 }, level = 82, group = "WeaponTreeSpellAddedPhysicalDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2hHighReducedCastSpeed1"] = { type = "Spawn", tier = 1, "Adds 4 to 7 Physical Damage to Spells", "10% reduced Cast Speed", statOrder = { 1314, 1357 }, level = 1, group = "WeaponTreeSpellAddedPhysicalDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2hHighReducedCastSpeed2"] = { type = "Spawn", tier = 2, "Adds 7 to 12 Physical Damage to Spells", "10% reduced Cast Speed", statOrder = { 1314, 1357 }, level = 26, group = "WeaponTreeSpellAddedPhysicalDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2hHighReducedCastSpeed3"] = { type = "Spawn", tier = 3, "Adds 14 to 22 Physical Damage to Spells", "10% reduced Cast Speed", statOrder = { 1314, 1357 }, level = 42, group = "WeaponTreeSpellAddedPhysicalDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2hHighReducedCastSpeed4"] = { type = "Spawn", tier = 4, "Adds 24 to 37 Physical Damage to Spells", "10% reduced Cast Speed", statOrder = { 1314, 1357 }, level = 62, group = "WeaponTreeSpellAddedPhysicalDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2hHighReducedCastSpeed5"] = { type = "Spawn", tier = 5, "Adds 47 to 71 Physical Damage to Spells", "10% reduced Cast Speed", statOrder = { 1314, 1357 }, level = 82, group = "WeaponTreeSpellAddedPhysicalDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical1"] = { type = "Spawn", tier = 1, "Adds 1 to 5 Physical Damage to Spells", statOrder = { 1314 }, level = 1, group = "WeaponTreeSpellAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2"] = { type = "Spawn", tier = 2, "Adds 2 to 6 Physical Damage to Spells", statOrder = { 1314 }, level = 26, group = "WeaponTreeSpellAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical3"] = { type = "Spawn", tier = 3, "Adds 6 to 10 Physical Damage to Spells", statOrder = { 1314 }, level = 42, group = "WeaponTreeSpellAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical4"] = { type = "Spawn", tier = 4, "Adds 11 to 17 Physical Damage to Spells", statOrder = { 1314 }, level = 62, group = "WeaponTreeSpellAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical5"] = { type = "Spawn", tier = 5, "Adds 21 to 33 Physical Damage to Spells", statOrder = { 1314 }, level = 82, group = "WeaponTreeSpellAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2h1"] = { type = "Spawn", tier = 1, "Adds 2 to 5 Physical Damage to Spells", statOrder = { 1314 }, level = 1, group = "WeaponTreeSpellAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2h2"] = { type = "Spawn", tier = 2, "Adds 5 to 10 Physical Damage to Spells", statOrder = { 1314 }, level = 26, group = "WeaponTreeSpellAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2h3"] = { type = "Spawn", tier = 3, "Adds 10 to 17 Physical Damage to Spells", statOrder = { 1314 }, level = 42, group = "WeaponTreeSpellAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2h4"] = { type = "Spawn", tier = 4, "Adds 18 to 28 Physical Damage to Spells", statOrder = { 1314 }, level = 62, group = "WeaponTreeSpellAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2h5"] = { type = "Spawn", tier = 5, "Adds 36 to 55 Physical Damage to Spells", statOrder = { 1314 }, level = 82, group = "WeaponTreeSpellAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysicalLowFireConversion1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage to Spells", "15% of Physical Damage Converted to Fire Damage", statOrder = { 1314, 1864 }, level = 10, group = "WeaponTreeSpellAddedPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysicalLowFireConversion2"] = { type = "Spawn", tier = 2, "Adds 2 to 4 Physical Damage to Spells", "15% of Physical Damage Converted to Fire Damage", statOrder = { 1314, 1864 }, level = 31, group = "WeaponTreeSpellAddedPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysicalLowFireConversion3"] = { type = "Spawn", tier = 3, "Adds 4 to 6 Physical Damage to Spells", "15% of Physical Damage Converted to Fire Damage", statOrder = { 1314, 1864 }, level = 54, group = "WeaponTreeSpellAddedPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysicalLowFireConversion4"] = { type = "Spawn", tier = 4, "Adds 6 to 10 Physical Damage to Spells", "15% of Physical Damage Converted to Fire Damage", statOrder = { 1314, 1864 }, level = 72, group = "WeaponTreeSpellAddedPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 32, 0, 32, 32, 32, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysicalLowFireConversion5"] = { type = "Spawn", tier = 5, "Adds 13 to 20 Physical Damage to Spells", "15% of Physical Damage Converted to Fire Damage", statOrder = { 1314, 1864 }, level = 84, group = "WeaponTreeSpellAddedPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 16, 0, 16, 16, 16, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2hLowFireConversion1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage to Spells", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1314, 1864 }, level = 10, group = "WeaponTreeSpellAddedPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2hLowFireConversion2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Physical Damage to Spells", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1314, 1864 }, level = 31, group = "WeaponTreeSpellAddedPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2hLowFireConversion3"] = { type = "Spawn", tier = 3, "Adds 7 to 10 Physical Damage to Spells", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1314, 1864 }, level = 54, group = "WeaponTreeSpellAddedPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2hLowFireConversion4"] = { type = "Spawn", tier = 4, "Adds 11 to 17 Physical Damage to Spells", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1314, 1864 }, level = 72, group = "WeaponTreeSpellAddedPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 32, 0, 32, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2hLowFireConversion5"] = { type = "Spawn", tier = 5, "Adds 22 to 33 Physical Damage to Spells", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1314, 1864 }, level = 84, group = "WeaponTreeSpellAddedPhysicalDamageAndFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 16, 0, 16, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysicalLowColdConversion1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage to Spells", "15% of Physical Damage Converted to Cold Damage", statOrder = { 1314, 1866 }, level = 10, group = "WeaponTreeSpellAddedPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysicalLowColdConversion2"] = { type = "Spawn", tier = 2, "Adds 2 to 4 Physical Damage to Spells", "15% of Physical Damage Converted to Cold Damage", statOrder = { 1314, 1866 }, level = 31, group = "WeaponTreeSpellAddedPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysicalLowColdConversion3"] = { type = "Spawn", tier = 3, "Adds 4 to 6 Physical Damage to Spells", "15% of Physical Damage Converted to Cold Damage", statOrder = { 1314, 1866 }, level = 54, group = "WeaponTreeSpellAddedPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysicalLowColdConversion4"] = { type = "Spawn", tier = 4, "Adds 6 to 10 Physical Damage to Spells", "15% of Physical Damage Converted to Cold Damage", statOrder = { 1314, 1866 }, level = 72, group = "WeaponTreeSpellAddedPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 32, 0, 32, 32, 32, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysicalLowColdConversion5"] = { type = "Spawn", tier = 5, "Adds 13 to 20 Physical Damage to Spells", "15% of Physical Damage Converted to Cold Damage", statOrder = { 1314, 1866 }, level = 84, group = "WeaponTreeSpellAddedPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 16, 0, 16, 16, 16, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2hLowColdConversion1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage to Spells", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1314, 1866 }, level = 10, group = "WeaponTreeSpellAddedPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2hLowColdConversion2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Physical Damage to Spells", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1314, 1866 }, level = 31, group = "WeaponTreeSpellAddedPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2hLowColdConversion3"] = { type = "Spawn", tier = 3, "Adds 7 to 10 Physical Damage to Spells", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1314, 1866 }, level = 54, group = "WeaponTreeSpellAddedPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2hLowColdConversion4"] = { type = "Spawn", tier = 4, "Adds 11 to 17 Physical Damage to Spells", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1314, 1866 }, level = 72, group = "WeaponTreeSpellAddedPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 32, 0, 32, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2hLowColdConversion5"] = { type = "Spawn", tier = 5, "Adds 22 to 33 Physical Damage to Spells", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1314, 1866 }, level = 84, group = "WeaponTreeSpellAddedPhysicalDamageAndColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 16, 0, 16, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysicalLowLightningConversion1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage to Spells", "15% of Physical Damage Converted to Lightning Damage", statOrder = { 1314, 1868 }, level = 10, group = "WeaponTreeSpellAddedPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysicalLowLightningConversion2"] = { type = "Spawn", tier = 2, "Adds 2 to 4 Physical Damage to Spells", "15% of Physical Damage Converted to Lightning Damage", statOrder = { 1314, 1868 }, level = 31, group = "WeaponTreeSpellAddedPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysicalLowLightningConversion3"] = { type = "Spawn", tier = 3, "Adds 4 to 6 Physical Damage to Spells", "15% of Physical Damage Converted to Lightning Damage", statOrder = { 1314, 1868 }, level = 54, group = "WeaponTreeSpellAddedPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysicalLowLightningConversion4"] = { type = "Spawn", tier = 4, "Adds 6 to 10 Physical Damage to Spells", "15% of Physical Damage Converted to Lightning Damage", statOrder = { 1314, 1868 }, level = 72, group = "WeaponTreeSpellAddedPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 32, 0, 32, 32, 32, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysicalLowLightningConversion5"] = { type = "Spawn", tier = 5, "Adds 13 to 20 Physical Damage to Spells", "15% of Physical Damage Converted to Lightning Damage", statOrder = { 1314, 1868 }, level = 84, group = "WeaponTreeSpellAddedPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 16, 0, 16, 16, 16, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2hLowLightningConversion1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage to Spells", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1314, 1868 }, level = 10, group = "WeaponTreeSpellAddedPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2hLowLightningConversion2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Physical Damage to Spells", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1314, 1868 }, level = 31, group = "WeaponTreeSpellAddedPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2hLowLightningConversion3"] = { type = "Spawn", tier = 3, "Adds 7 to 10 Physical Damage to Spells", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1314, 1868 }, level = 54, group = "WeaponTreeSpellAddedPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2hLowLightningConversion4"] = { type = "Spawn", tier = 4, "Adds 11 to 17 Physical Damage to Spells", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1314, 1868 }, level = 72, group = "WeaponTreeSpellAddedPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 32, 0, 32, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2hLowLightningConversion5"] = { type = "Spawn", tier = 5, "Adds 22 to 33 Physical Damage to Spells", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1314, 1868 }, level = 84, group = "WeaponTreeSpellAddedPhysicalDamageAndLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 16, 0, 16, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysicalLowChaosConversion1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage to Spells", "15% of Physical Damage Converted to Chaos Damage", statOrder = { 1314, 1871 }, level = 13, group = "WeaponTreeSpellAddedPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysicalLowChaosConversion2"] = { type = "Spawn", tier = 2, "Adds 2 to 4 Physical Damage to Spells", "15% of Physical Damage Converted to Chaos Damage", statOrder = { 1314, 1871 }, level = 27, group = "WeaponTreeSpellAddedPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysicalLowChaosConversion3"] = { type = "Spawn", tier = 3, "Adds 4 to 6 Physical Damage to Spells", "15% of Physical Damage Converted to Chaos Damage", statOrder = { 1314, 1871 }, level = 57, group = "WeaponTreeSpellAddedPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysicalLowChaosConversion4"] = { type = "Spawn", tier = 4, "Adds 6 to 10 Physical Damage to Spells", "15% of Physical Damage Converted to Chaos Damage", statOrder = { 1314, 1871 }, level = 74, group = "WeaponTreeSpellAddedPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 32, 0, 32, 32, 32, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysicalLowChaosConversion5"] = { type = "Spawn", tier = 5, "Adds 13 to 20 Physical Damage to Spells", "15% of Physical Damage Converted to Chaos Damage", statOrder = { 1314, 1871 }, level = 85, group = "WeaponTreeSpellAddedPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 16, 0, 16, 16, 16, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2hLowChaosConversion1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage to Spells", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1314, 1871 }, level = 13, group = "WeaponTreeSpellAddedPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2hLowChaosConversion2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Physical Damage to Spells", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1314, 1871 }, level = 27, group = "WeaponTreeSpellAddedPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2hLowChaosConversion3"] = { type = "Spawn", tier = 3, "Adds 7 to 10 Physical Damage to Spells", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1314, 1871 }, level = 57, group = "WeaponTreeSpellAddedPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2hLowChaosConversion4"] = { type = "Spawn", tier = 4, "Adds 11 to 17 Physical Damage to Spells", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1314, 1871 }, level = 74, group = "WeaponTreeSpellAddedPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 32, 0, 32, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2hLowChaosConversion5"] = { type = "Spawn", tier = 5, "Adds 22 to 33 Physical Damage to Spells", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1314, 1871 }, level = 85, group = "WeaponTreeSpellAddedPhysicalDamageAndChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 16, 0, 16, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysicalLowOverwhelm1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage to Spells", "Overwhelm 5% Physical Damage Reduction", statOrder = { 1314, 2887 }, level = 13, group = "WeaponTreeSpellAddedPhysicalDamageAndOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysicalLowOverwhelm2"] = { type = "Spawn", tier = 2, "Adds 2 to 4 Physical Damage to Spells", "Overwhelm 5% Physical Damage Reduction", statOrder = { 1314, 2887 }, level = 27, group = "WeaponTreeSpellAddedPhysicalDamageAndOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysicalLowOverwhelm3"] = { type = "Spawn", tier = 3, "Adds 4 to 6 Physical Damage to Spells", "Overwhelm 5% Physical Damage Reduction", statOrder = { 1314, 2887 }, level = 57, group = "WeaponTreeSpellAddedPhysicalDamageAndOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysicalLowOverwhelm4"] = { type = "Spawn", tier = 4, "Adds 6 to 10 Physical Damage to Spells", "Overwhelm 5% Physical Damage Reduction", statOrder = { 1314, 2887 }, level = 74, group = "WeaponTreeSpellAddedPhysicalDamageAndOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysicalLowOverwhelm5"] = { type = "Spawn", tier = 5, "Adds 13 to 20 Physical Damage to Spells", "Overwhelm 5% Physical Damage Reduction", statOrder = { 1314, 2887 }, level = 85, group = "WeaponTreeSpellAddedPhysicalDamageAndOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2hLowOverwhelm1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Physical Damage to Spells", "Overwhelm 10% Physical Damage Reduction", statOrder = { 1314, 2887 }, level = 13, group = "WeaponTreeSpellAddedPhysicalDamageAndOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2hLowOverwhelm2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Physical Damage to Spells", "Overwhelm 10% Physical Damage Reduction", statOrder = { 1314, 2887 }, level = 27, group = "WeaponTreeSpellAddedPhysicalDamageAndOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2hLowOverwhelm3"] = { type = "Spawn", tier = 3, "Adds 7 to 10 Physical Damage to Spells", "Overwhelm 10% Physical Damage Reduction", statOrder = { 1314, 2887 }, level = 57, group = "WeaponTreeSpellAddedPhysicalDamageAndOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2hLowOverwhelm4"] = { type = "Spawn", tier = 4, "Adds 11 to 17 Physical Damage to Spells", "Overwhelm 10% Physical Damage Reduction", statOrder = { 1314, 2887 }, level = 74, group = "WeaponTreeSpellAddedPhysicalDamageAndOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedPhysical2hLowOverwhelm5"] = { type = "Spawn", tier = 5, "Adds 22 to 33 Physical Damage to Spells", "Overwhelm 10% Physical Damage Reduction", statOrder = { 1314, 2887 }, level = 85, group = "WeaponTreeSpellAddedPhysicalDamageAndOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedFireHighReducedCastSpeed1"] = { type = "Spawn", tier = 1, "Adds 4 to 6 Fire Damage to Spells", "6% reduced Cast Speed", statOrder = { 1315, 1357 }, level = 1, group = "WeaponTreeSpellAddedFireDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedFireHighReducedCastSpeed2"] = { type = "Spawn", tier = 2, "Adds 6 to 10 Fire Damage to Spells", "6% reduced Cast Speed", statOrder = { 1315, 1357 }, level = 26, group = "WeaponTreeSpellAddedFireDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedFireHighReducedCastSpeed3"] = { type = "Spawn", tier = 3, "Adds 12 to 18 Fire Damage to Spells", "6% reduced Cast Speed", statOrder = { 1315, 1357 }, level = 42, group = "WeaponTreeSpellAddedFireDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedFireHighReducedCastSpeed4"] = { type = "Spawn", tier = 4, "Adds 19 to 30 Fire Damage to Spells", "6% reduced Cast Speed", statOrder = { 1315, 1357 }, level = 62, group = "WeaponTreeSpellAddedFireDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedFireHighReducedCastSpeed5"] = { type = "Spawn", tier = 5, "Adds 39 to 59 Fire Damage to Spells", "6% reduced Cast Speed", statOrder = { 1315, 1357 }, level = 82, group = "WeaponTreeSpellAddedFireDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedFire2hHighReducedCastSpeed1"] = { type = "Spawn", tier = 1, "Adds 7 to 10 Fire Damage to Spells", "10% reduced Cast Speed", statOrder = { 1315, 1357 }, level = 1, group = "WeaponTreeSpellAddedFireDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedFire2hHighReducedCastSpeed2"] = { type = "Spawn", tier = 2, "Adds 11 to 17 Fire Damage to Spells", "10% reduced Cast Speed", statOrder = { 1315, 1357 }, level = 26, group = "WeaponTreeSpellAddedFireDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedFire2hHighReducedCastSpeed3"] = { type = "Spawn", tier = 3, "Adds 21 to 34 Fire Damage to Spells", "10% reduced Cast Speed", statOrder = { 1315, 1357 }, level = 42, group = "WeaponTreeSpellAddedFireDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedFire2hHighReducedCastSpeed4"] = { type = "Spawn", tier = 4, "Adds 37 to 55 Fire Damage to Spells", "10% reduced Cast Speed", statOrder = { 1315, 1357 }, level = 62, group = "WeaponTreeSpellAddedFireDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedFire2hHighReducedCastSpeed5"] = { type = "Spawn", tier = 5, "Adds 73 to 109 Fire Damage to Spells", "10% reduced Cast Speed", statOrder = { 1315, 1357 }, level = 82, group = "WeaponTreeSpellAddedFireDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedFire1"] = { type = "Spawn", tier = 1, "Adds 2 to 5 Fire Damage to Spells", statOrder = { 1315 }, level = 1, group = "WeaponTreeSpellAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedFire2"] = { type = "Spawn", tier = 2, "Adds 5 to 7 Fire Damage to Spells", statOrder = { 1315 }, level = 26, group = "WeaponTreeSpellAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedFire3"] = { type = "Spawn", tier = 3, "Adds 9 to 14 Fire Damage to Spells", statOrder = { 1315 }, level = 42, group = "WeaponTreeSpellAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedFire4"] = { type = "Spawn", tier = 4, "Adds 15 to 24 Fire Damage to Spells", statOrder = { 1315 }, level = 62, group = "WeaponTreeSpellAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedFire5"] = { type = "Spawn", tier = 5, "Adds 30 to 45 Fire Damage to Spells", statOrder = { 1315 }, level = 82, group = "WeaponTreeSpellAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedFire2h1"] = { type = "Spawn", tier = 1, "Adds 5 to 7 Fire Damage to Spells", statOrder = { 1315 }, level = 1, group = "WeaponTreeSpellAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedFire2h2"] = { type = "Spawn", tier = 2, "Adds 9 to 13 Fire Damage to Spells", statOrder = { 1315 }, level = 26, group = "WeaponTreeSpellAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedFire2h3"] = { type = "Spawn", tier = 3, "Adds 16 to 26 Fire Damage to Spells", statOrder = { 1315 }, level = 42, group = "WeaponTreeSpellAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedFire2h4"] = { type = "Spawn", tier = 4, "Adds 28 to 43 Fire Damage to Spells", statOrder = { 1315 }, level = 62, group = "WeaponTreeSpellAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedFire2h5"] = { type = "Spawn", tier = 5, "Adds 56 to 84 Fire Damage to Spells", statOrder = { 1315 }, level = 82, group = "WeaponTreeSpellAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedFireLowIgniteChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Fire Damage to Spells", "10% chance to Ignite", statOrder = { 1315, 1935 }, level = 1, group = "WeaponTreeSpellAddedFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedFireLowIgniteChance2"] = { type = "Spawn", tier = 2, "Adds 2 to 4 Fire Damage to Spells", "10% chance to Ignite", statOrder = { 1315, 1935 }, level = 26, group = "WeaponTreeSpellAddedFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedFireLowIgniteChance3"] = { type = "Spawn", tier = 3, "Adds 4 to 9 Fire Damage to Spells", "10% chance to Ignite", statOrder = { 1315, 1935 }, level = 42, group = "WeaponTreeSpellAddedFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedFireLowIgniteChance4"] = { type = "Spawn", tier = 4, "Adds 8 to 14 Fire Damage to Spells", "10% chance to Ignite", statOrder = { 1315, 1935 }, level = 62, group = "WeaponTreeSpellAddedFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedFireLowIgniteChance5"] = { type = "Spawn", tier = 5, "Adds 18 to 28 Fire Damage to Spells", "10% chance to Ignite", statOrder = { 1315, 1935 }, level = 82, group = "WeaponTreeSpellAddedFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedFire2hLowIgniteChance1"] = { type = "Spawn", tier = 1, "Adds 2 to 6 Fire Damage to Spells", "20% chance to Ignite", statOrder = { 1315, 1935 }, level = 1, group = "WeaponTreeSpellAddedFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedFire2hLowIgniteChance2"] = { type = "Spawn", tier = 2, "Adds 5 to 8 Fire Damage to Spells", "20% chance to Ignite", statOrder = { 1315, 1935 }, level = 26, group = "WeaponTreeSpellAddedFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedFire2hLowIgniteChance3"] = { type = "Spawn", tier = 3, "Adds 9 to 16 Fire Damage to Spells", "20% chance to Ignite", statOrder = { 1315, 1935 }, level = 42, group = "WeaponTreeSpellAddedFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedFire2hLowIgniteChance4"] = { type = "Spawn", tier = 4, "Adds 16 to 26 Fire Damage to Spells", "20% chance to Ignite", statOrder = { 1315, 1935 }, level = 62, group = "WeaponTreeSpellAddedFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedFire2hLowIgniteChance5"] = { type = "Spawn", tier = 5, "Adds 34 to 51 Fire Damage to Spells", "20% chance to Ignite", statOrder = { 1315, 1935 }, level = 82, group = "WeaponTreeSpellAddedFireDamageAndIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedFireLowImplicitEffect1"] = { type = "Spawn", tier = 1, "25% increased Implicit Modifier magnitudes", "Adds 1 to 3 Fire Damage to Spells", statOrder = { 40, 1315 }, level = 10, group = "WeaponTreeSpellAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedFireLowImplicitEffect2"] = { type = "Spawn", tier = 2, "25% increased Implicit Modifier magnitudes", "Adds 2 to 4 Fire Damage to Spells", statOrder = { 40, 1315 }, level = 30, group = "WeaponTreeSpellAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedFireLowImplicitEffect3"] = { type = "Spawn", tier = 3, "25% increased Implicit Modifier magnitudes", "Adds 4 to 9 Fire Damage to Spells", statOrder = { 40, 1315 }, level = 48, group = "WeaponTreeSpellAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedFireLowImplicitEffect4"] = { type = "Spawn", tier = 4, "25% increased Implicit Modifier magnitudes", "Adds 8 to 14 Fire Damage to Spells", statOrder = { 40, 1315 }, level = 66, group = "WeaponTreeSpellAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedFireLowImplicitEffect5"] = { type = "Spawn", tier = 5, "25% increased Implicit Modifier magnitudes", "Adds 18 to 28 Fire Damage to Spells", statOrder = { 40, 1315 }, level = 84, group = "WeaponTreeSpellAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedFire2hLowImplicitEffect1"] = { type = "Spawn", tier = 1, "25% increased Implicit Modifier magnitudes", "Adds 2 to 6 Fire Damage to Spells", statOrder = { 40, 1315 }, level = 10, group = "WeaponTreeSpellAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedFire2hLowImplicitEffect2"] = { type = "Spawn", tier = 2, "25% increased Implicit Modifier magnitudes", "Adds 5 to 8 Fire Damage to Spells", statOrder = { 40, 1315 }, level = 30, group = "WeaponTreeSpellAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedFire2hLowImplicitEffect3"] = { type = "Spawn", tier = 3, "25% increased Implicit Modifier magnitudes", "Adds 9 to 16 Fire Damage to Spells", statOrder = { 40, 1315 }, level = 48, group = "WeaponTreeSpellAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedFire2hLowImplicitEffect4"] = { type = "Spawn", tier = 4, "25% increased Implicit Modifier magnitudes", "Adds 16 to 26 Fire Damage to Spells", statOrder = { 40, 1315 }, level = 66, group = "WeaponTreeSpellAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedFire2hLowImplicitEffect5"] = { type = "Spawn", tier = 5, "25% increased Implicit Modifier magnitudes", "Adds 34 to 51 Fire Damage to Spells", statOrder = { 40, 1315 }, level = 84, group = "WeaponTreeSpellAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedColdHighCannotChill1"] = { type = "Spawn", tier = 1, "Adds 2 to 6 Cold Damage to Spells", "Your Cold Damage cannot Chill", statOrder = { 1316, 2796 }, level = 1, group = "WeaponTreeSpellAddedColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedColdHighCannotChill2"] = { type = "Spawn", tier = 2, "Adds 5 to 8 Cold Damage to Spells", "Your Cold Damage cannot Chill", statOrder = { 1316, 2796 }, level = 26, group = "WeaponTreeSpellAddedColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedColdHighCannotChill3"] = { type = "Spawn", tier = 3, "Adds 10 to 17 Cold Damage to Spells", "Your Cold Damage cannot Chill", statOrder = { 1316, 2796 }, level = 42, group = "WeaponTreeSpellAddedColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedColdHighCannotChill4"] = { type = "Spawn", tier = 4, "Adds 18 to 28 Cold Damage to Spells", "Your Cold Damage cannot Chill", statOrder = { 1316, 2796 }, level = 62, group = "WeaponTreeSpellAddedColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedColdHighCannotChill5"] = { type = "Spawn", tier = 5, "Adds 37 to 56 Cold Damage to Spells", "Your Cold Damage cannot Chill", statOrder = { 1316, 2796 }, level = 82, group = "WeaponTreeSpellAddedColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedCold2hHighCannotChill1"] = { type = "Spawn", tier = 1, "Adds 5 to 10 Cold Damage to Spells", "Your Cold Damage cannot Chill", statOrder = { 1316, 2796 }, level = 1, group = "WeaponTreeSpellAddedColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedCold2hHighCannotChill2"] = { type = "Spawn", tier = 2, "Adds 10 to 16 Cold Damage to Spells", "Your Cold Damage cannot Chill", statOrder = { 1316, 2796 }, level = 26, group = "WeaponTreeSpellAddedColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedCold2hHighCannotChill3"] = { type = "Spawn", tier = 3, "Adds 20 to 32 Cold Damage to Spells", "Your Cold Damage cannot Chill", statOrder = { 1316, 2796 }, level = 42, group = "WeaponTreeSpellAddedColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedCold2hHighCannotChill4"] = { type = "Spawn", tier = 4, "Adds 34 to 52 Cold Damage to Spells", "Your Cold Damage cannot Chill", statOrder = { 1316, 2796 }, level = 62, group = "WeaponTreeSpellAddedColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedCold2hHighCannotChill5"] = { type = "Spawn", tier = 5, "Adds 68 to 103 Cold Damage to Spells", "Your Cold Damage cannot Chill", statOrder = { 1316, 2796 }, level = 82, group = "WeaponTreeSpellAddedColdDamageAndCannotChill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedCold1"] = { type = "Spawn", tier = 1, "Adds 2 to 5 Cold Damage to Spells", statOrder = { 1316 }, level = 1, group = "WeaponTreeSpellAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedCold2"] = { type = "Spawn", tier = 2, "Adds 3 to 7 Cold Damage to Spells", statOrder = { 1316 }, level = 26, group = "WeaponTreeSpellAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedCold3"] = { type = "Spawn", tier = 3, "Adds 8 to 14 Cold Damage to Spells", statOrder = { 1316 }, level = 42, group = "WeaponTreeSpellAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedCold4"] = { type = "Spawn", tier = 4, "Adds 14 to 21 Cold Damage to Spells", statOrder = { 1316 }, level = 62, group = "WeaponTreeSpellAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedCold5"] = { type = "Spawn", tier = 5, "Adds 29 to 43 Cold Damage to Spells", statOrder = { 1316 }, level = 82, group = "WeaponTreeSpellAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedCold2h1"] = { type = "Spawn", tier = 1, "Adds 4 to 7 Cold Damage to Spells", statOrder = { 1316 }, level = 1, group = "WeaponTreeSpellAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedCold2h2"] = { type = "Spawn", tier = 2, "Adds 7 to 12 Cold Damage to Spells", statOrder = { 1316 }, level = 26, group = "WeaponTreeSpellAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedCold2h3"] = { type = "Spawn", tier = 3, "Adds 15 to 24 Cold Damage to Spells", statOrder = { 1316 }, level = 42, group = "WeaponTreeSpellAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedCold2h4"] = { type = "Spawn", tier = 4, "Adds 26 to 40 Cold Damage to Spells", statOrder = { 1316 }, level = 62, group = "WeaponTreeSpellAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedCold2h5"] = { type = "Spawn", tier = 5, "Adds 53 to 79 Cold Damage to Spells", statOrder = { 1316 }, level = 82, group = "WeaponTreeSpellAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedColdLowFreezeChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Cold Damage to Spells", "10% chance to Freeze", statOrder = { 1316, 1938 }, level = 1, group = "WeaponTreeSpellAddedColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedColdLowFreezeChance2"] = { type = "Spawn", tier = 2, "Adds 2 to 4 Cold Damage to Spells", "10% chance to Freeze", statOrder = { 1316, 1938 }, level = 26, group = "WeaponTreeSpellAddedColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedColdLowFreezeChance3"] = { type = "Spawn", tier = 3, "Adds 4 to 8 Cold Damage to Spells", "10% chance to Freeze", statOrder = { 1316, 1938 }, level = 42, group = "WeaponTreeSpellAddedColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedColdLowFreezeChance4"] = { type = "Spawn", tier = 4, "Adds 8 to 14 Cold Damage to Spells", "10% chance to Freeze", statOrder = { 1316, 1938 }, level = 62, group = "WeaponTreeSpellAddedColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedColdLowFreezeChance5"] = { type = "Spawn", tier = 5, "Adds 17 to 25 Cold Damage to Spells", "10% chance to Freeze", statOrder = { 1316, 1938 }, level = 82, group = "WeaponTreeSpellAddedColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedCold2hLowFreezeChance1"] = { type = "Spawn", tier = 1, "Adds 2 to 5 Cold Damage to Spells", "20% chance to Freeze", statOrder = { 1316, 1938 }, level = 1, group = "WeaponTreeSpellAddedColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedCold2hLowFreezeChance2"] = { type = "Spawn", tier = 2, "Adds 5 to 8 Cold Damage to Spells", "20% chance to Freeze", statOrder = { 1316, 1938 }, level = 26, group = "WeaponTreeSpellAddedColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedCold2hLowFreezeChance3"] = { type = "Spawn", tier = 3, "Adds 9 to 15 Cold Damage to Spells", "20% chance to Freeze", statOrder = { 1316, 1938 }, level = 42, group = "WeaponTreeSpellAddedColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedCold2hLowFreezeChance4"] = { type = "Spawn", tier = 4, "Adds 16 to 25 Cold Damage to Spells", "20% chance to Freeze", statOrder = { 1316, 1938 }, level = 62, group = "WeaponTreeSpellAddedColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedCold2hLowFreezeChance5"] = { type = "Spawn", tier = 5, "Adds 32 to 47 Cold Damage to Spells", "20% chance to Freeze", statOrder = { 1316, 1938 }, level = 82, group = "WeaponTreeSpellAddedColdDamageAndFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedColdLowCastSpeed1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Cold Damage to Spells", "5% increased Cast Speed", statOrder = { 1316, 1357 }, level = 10, group = "WeaponTreeSpellAddedColdDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedColdLowCastSpeed2"] = { type = "Spawn", tier = 2, "Adds 2 to 4 Cold Damage to Spells", "5% increased Cast Speed", statOrder = { 1316, 1357 }, level = 30, group = "WeaponTreeSpellAddedColdDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedColdLowCastSpeed3"] = { type = "Spawn", tier = 3, "Adds 4 to 8 Cold Damage to Spells", "5% increased Cast Speed", statOrder = { 1316, 1357 }, level = 48, group = "WeaponTreeSpellAddedColdDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedColdLowCastSpeed4"] = { type = "Spawn", tier = 4, "Adds 8 to 14 Cold Damage to Spells", "5% increased Cast Speed", statOrder = { 1316, 1357 }, level = 66, group = "WeaponTreeSpellAddedColdDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedColdLowCastSpeed5"] = { type = "Spawn", tier = 5, "Adds 17 to 25 Cold Damage to Spells", "5% increased Cast Speed", statOrder = { 1316, 1357 }, level = 84, group = "WeaponTreeSpellAddedColdDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedCold2hLowCastSpeed1"] = { type = "Spawn", tier = 1, "Adds 2 to 5 Cold Damage to Spells", "10% increased Cast Speed", statOrder = { 1316, 1357 }, level = 10, group = "WeaponTreeSpellAddedColdDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedCold2hLowCastSpeed2"] = { type = "Spawn", tier = 2, "Adds 5 to 8 Cold Damage to Spells", "10% increased Cast Speed", statOrder = { 1316, 1357 }, level = 30, group = "WeaponTreeSpellAddedColdDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedCold2hLowCastSpeed3"] = { type = "Spawn", tier = 3, "Adds 9 to 15 Cold Damage to Spells", "10% increased Cast Speed", statOrder = { 1316, 1357 }, level = 48, group = "WeaponTreeSpellAddedColdDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedCold2hLowCastSpeed4"] = { type = "Spawn", tier = 4, "Adds 16 to 25 Cold Damage to Spells", "10% increased Cast Speed", statOrder = { 1316, 1357 }, level = 66, group = "WeaponTreeSpellAddedColdDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedCold2hLowCastSpeed5"] = { type = "Spawn", tier = 5, "Adds 32 to 47 Cold Damage to Spells", "10% increased Cast Speed", statOrder = { 1316, 1357 }, level = 84, group = "WeaponTreeSpellAddedColdDamageAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedLightningHighDamageTaken1"] = { type = "Spawn", tier = 1, "Adds 1 to 9 Lightning Damage to Spells", "4% increased Lightning Damage taken", statOrder = { 1317, 3296 }, level = 1, group = "WeaponTreeSpellAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedLightningHighDamageTaken2"] = { type = "Spawn", tier = 2, "Adds 1 to 15 Lightning Damage to Spells", "4% increased Lightning Damage taken", statOrder = { 1317, 3296 }, level = 26, group = "WeaponTreeSpellAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedLightningHighDamageTaken3"] = { type = "Spawn", tier = 3, "Adds 1 to 29 Lightning Damage to Spells", "4% increased Lightning Damage taken", statOrder = { 1317, 3296 }, level = 42, group = "WeaponTreeSpellAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedLightningHighDamageTaken4"] = { type = "Spawn", tier = 4, "Adds 2 to 48 Lightning Damage to Spells", "4% increased Lightning Damage taken", statOrder = { 1317, 3296 }, level = 62, group = "WeaponTreeSpellAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedLightningHighDamageTaken5"] = { type = "Spawn", tier = 5, "Adds 5 to 94 Lightning Damage to Spells", "4% increased Lightning Damage taken", statOrder = { 1317, 3296 }, level = 82, group = "WeaponTreeSpellAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedLightning2hHighDamageTaken1"] = { type = "Spawn", tier = 1, "Adds 1 to 16 Lightning Damage to Spells", "6% increased Lightning Damage taken", statOrder = { 1317, 3296 }, level = 1, group = "WeaponTreeSpellAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedLightning2hHighDamageTaken2"] = { type = "Spawn", tier = 2, "Adds 1 to 28 Lightning Damage to Spells", "6% increased Lightning Damage taken", statOrder = { 1317, 3296 }, level = 26, group = "WeaponTreeSpellAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedLightning2hHighDamageTaken3"] = { type = "Spawn", tier = 3, "Adds 2 to 53 Lightning Damage to Spells", "6% increased Lightning Damage taken", statOrder = { 1317, 3296 }, level = 42, group = "WeaponTreeSpellAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedLightning2hHighDamageTaken4"] = { type = "Spawn", tier = 4, "Adds 4 to 88 Lightning Damage to Spells", "6% increased Lightning Damage taken", statOrder = { 1317, 3296 }, level = 62, group = "WeaponTreeSpellAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedLightning2hHighDamageTaken5"] = { type = "Spawn", tier = 5, "Adds 9 to 173 Lightning Damage to Spells", "6% increased Lightning Damage taken", statOrder = { 1317, 3296 }, level = 82, group = "WeaponTreeSpellAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedLightning1"] = { type = "Spawn", tier = 1, "Adds 1 to 6 Lightning Damage to Spells", statOrder = { 1317 }, level = 1, group = "WeaponTreeSpellAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedLightning2"] = { type = "Spawn", tier = 2, "Adds 1 to 12 Lightning Damage to Spells", statOrder = { 1317 }, level = 26, group = "WeaponTreeSpellAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedLightning3"] = { type = "Spawn", tier = 3, "Adds 1 to 22 Lightning Damage to Spells", statOrder = { 1317 }, level = 42, group = "WeaponTreeSpellAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedLightning4"] = { type = "Spawn", tier = 4, "Adds 2 to 37 Lightning Damage to Spells", statOrder = { 1317 }, level = 62, group = "WeaponTreeSpellAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedLightning5"] = { type = "Spawn", tier = 5, "Adds 4 to 72 Lightning Damage to Spells", statOrder = { 1317 }, level = 82, group = "WeaponTreeSpellAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedLightning2h1"] = { type = "Spawn", tier = 1, "Adds 1 to 12 Lightning Damage to Spells", statOrder = { 1317 }, level = 1, group = "WeaponTreeSpellAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedLightning2h2"] = { type = "Spawn", tier = 2, "Adds 1 to 21 Lightning Damage to Spells", statOrder = { 1317 }, level = 26, group = "WeaponTreeSpellAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedLightning2h3"] = { type = "Spawn", tier = 3, "Adds 2 to 41 Lightning Damage to Spells", statOrder = { 1317 }, level = 42, group = "WeaponTreeSpellAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedLightning2h4"] = { type = "Spawn", tier = 4, "Adds 3 to 68 Lightning Damage to Spells", statOrder = { 1317 }, level = 62, group = "WeaponTreeSpellAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedLightning2h5"] = { type = "Spawn", tier = 5, "Adds 7 to 133 Lightning Damage to Spells", statOrder = { 1317 }, level = 82, group = "WeaponTreeSpellAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedLightningLowShockChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 5 Lightning Damage to Spells", "10% chance to Shock", statOrder = { 1317, 1942 }, level = 1, group = "WeaponTreeSpellAddedLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedLightningLowShockChance2"] = { type = "Spawn", tier = 2, "Adds 1 to 7 Lightning Damage to Spells", "10% chance to Shock", statOrder = { 1317, 1942 }, level = 26, group = "WeaponTreeSpellAddedLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedLightningLowShockChance3"] = { type = "Spawn", tier = 3, "Adds 1 to 14 Lightning Damage to Spells", "10% chance to Shock", statOrder = { 1317, 1942 }, level = 42, group = "WeaponTreeSpellAddedLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedLightningLowShockChance4"] = { type = "Spawn", tier = 4, "Adds 2 to 22 Lightning Damage to Spells", "10% chance to Shock", statOrder = { 1317, 1942 }, level = 62, group = "WeaponTreeSpellAddedLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedLightningLowShockChance5"] = { type = "Spawn", tier = 5, "Adds 2 to 43 Lightning Damage to Spells", "10% chance to Shock", statOrder = { 1317, 1942 }, level = 82, group = "WeaponTreeSpellAddedLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedLightning2hLowShockChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 7 Lightning Damage to Spells", "20% chance to Shock", statOrder = { 1317, 1942 }, level = 1, group = "WeaponTreeSpellAddedLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedLightning2hLowShockChance2"] = { type = "Spawn", tier = 2, "Adds 1 to 13 Lightning Damage to Spells", "20% chance to Shock", statOrder = { 1317, 1942 }, level = 26, group = "WeaponTreeSpellAddedLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedLightning2hLowShockChance3"] = { type = "Spawn", tier = 3, "Adds 2 to 24 Lightning Damage to Spells", "20% chance to Shock", statOrder = { 1317, 1942 }, level = 42, group = "WeaponTreeSpellAddedLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedLightning2hLowShockChance4"] = { type = "Spawn", tier = 4, "Adds 3 to 41 Lightning Damage to Spells", "20% chance to Shock", statOrder = { 1317, 1942 }, level = 62, group = "WeaponTreeSpellAddedLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedLightning2hLowShockChance5"] = { type = "Spawn", tier = 5, "Adds 4 to 80 Lightning Damage to Spells", "20% chance to Shock", statOrder = { 1317, 1942 }, level = 82, group = "WeaponTreeSpellAddedLightningDamageAndShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedLightningLowSpellCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 5 Lightning Damage to Spells", "25% increased Spell Critical Strike Chance", statOrder = { 1317, 1369 }, level = 10, group = "WeaponTreeSpellAddedLightningDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedLightningLowSpellCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "Adds 1 to 7 Lightning Damage to Spells", "25% increased Spell Critical Strike Chance", statOrder = { 1317, 1369 }, level = 30, group = "WeaponTreeSpellAddedLightningDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedLightningLowSpellCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "Adds 1 to 14 Lightning Damage to Spells", "25% increased Spell Critical Strike Chance", statOrder = { 1317, 1369 }, level = 48, group = "WeaponTreeSpellAddedLightningDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedLightningLowSpellCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "Adds 2 to 22 Lightning Damage to Spells", "25% increased Spell Critical Strike Chance", statOrder = { 1317, 1369 }, level = 66, group = "WeaponTreeSpellAddedLightningDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedLightningLowSpellCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "Adds 2 to 43 Lightning Damage to Spells", "25% increased Spell Critical Strike Chance", statOrder = { 1317, 1369 }, level = 84, group = "WeaponTreeSpellAddedLightningDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedLightning2hLowSpellCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 7 Lightning Damage to Spells", "40% increased Spell Critical Strike Chance", statOrder = { 1317, 1369 }, level = 10, group = "WeaponTreeSpellAddedLightningDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedLightning2hLowSpellCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "Adds 1 to 13 Lightning Damage to Spells", "40% increased Spell Critical Strike Chance", statOrder = { 1317, 1369 }, level = 30, group = "WeaponTreeSpellAddedLightningDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedLightning2hLowSpellCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "Adds 2 to 24 Lightning Damage to Spells", "40% increased Spell Critical Strike Chance", statOrder = { 1317, 1369 }, level = 48, group = "WeaponTreeSpellAddedLightningDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedLightning2hLowSpellCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "Adds 3 to 41 Lightning Damage to Spells", "40% increased Spell Critical Strike Chance", statOrder = { 1317, 1369 }, level = 66, group = "WeaponTreeSpellAddedLightningDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedLightning2hLowSpellCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "Adds 4 to 80 Lightning Damage to Spells", "40% increased Spell Critical Strike Chance", statOrder = { 1317, 1369 }, level = 84, group = "WeaponTreeSpellAddedLightningDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedChaosHighReducedLife1"] = { type = "Spawn", tier = 1, "Adds 2 to 5 Chaos Damage to Spells", "5% reduced maximum Life", statOrder = { 1318, 1482 }, level = 8, group = "WeaponTreeSpellAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedChaosHighReducedLife2"] = { type = "Spawn", tier = 2, "Adds 5 to 7 Chaos Damage to Spells", "5% reduced maximum Life", statOrder = { 1318, 1482 }, level = 28, group = "WeaponTreeSpellAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedChaosHighReducedLife3"] = { type = "Spawn", tier = 3, "Adds 8 to 14 Chaos Damage to Spells", "5% reduced maximum Life", statOrder = { 1318, 1482 }, level = 44, group = "WeaponTreeSpellAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedChaosHighReducedLife4"] = { type = "Spawn", tier = 4, "Adds 14 to 22 Chaos Damage to Spells", "5% reduced maximum Life", statOrder = { 1318, 1482 }, level = 70, group = "WeaponTreeSpellAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedChaosHighReducedLife5"] = { type = "Spawn", tier = 5, "Adds 28 to 42 Chaos Damage to Spells", "5% reduced maximum Life", statOrder = { 1318, 1482 }, level = 85, group = "WeaponTreeSpellAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 32, 0, 32, 32, 32, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedChaos2hHighReducedLife1"] = { type = "Spawn", tier = 1, "Adds 4 to 7 Chaos Damage to Spells", "7% reduced maximum Life", statOrder = { 1318, 1482 }, level = 8, group = "WeaponTreeSpellAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedChaos2hHighReducedLife2"] = { type = "Spawn", tier = 2, "Adds 7 to 12 Chaos Damage to Spells", "7% reduced maximum Life", statOrder = { 1318, 1482 }, level = 28, group = "WeaponTreeSpellAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedChaos2hHighReducedLife3"] = { type = "Spawn", tier = 3, "Adds 14 to 22 Chaos Damage to Spells", "7% reduced maximum Life", statOrder = { 1318, 1482 }, level = 44, group = "WeaponTreeSpellAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedChaos2hHighReducedLife4"] = { type = "Spawn", tier = 4, "Adds 24 to 37 Chaos Damage to Spells", "7% reduced maximum Life", statOrder = { 1318, 1482 }, level = 70, group = "WeaponTreeSpellAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedChaos2hHighReducedLife5"] = { type = "Spawn", tier = 5, "Adds 47 to 71 Chaos Damage to Spells", "7% reduced maximum Life", statOrder = { 1318, 1482 }, level = 85, group = "WeaponTreeSpellAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 32, 0, 32, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedChaos1"] = { type = "Spawn", tier = 1, "Adds 1 to 5 Chaos Damage to Spells", statOrder = { 1318 }, level = 8, group = "WeaponTreeSpellAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedChaos2"] = { type = "Spawn", tier = 2, "Adds 2 to 6 Chaos Damage to Spells", statOrder = { 1318 }, level = 28, group = "WeaponTreeSpellAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedChaos3"] = { type = "Spawn", tier = 3, "Adds 6 to 10 Chaos Damage to Spells", statOrder = { 1318 }, level = 44, group = "WeaponTreeSpellAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedChaos4"] = { type = "Spawn", tier = 4, "Adds 11 to 17 Chaos Damage to Spells", statOrder = { 1318 }, level = 70, group = "WeaponTreeSpellAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedChaos5"] = { type = "Spawn", tier = 5, "Adds 21 to 33 Chaos Damage to Spells", statOrder = { 1318 }, level = 85, group = "WeaponTreeSpellAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedChaos2h1"] = { type = "Spawn", tier = 1, "Adds 2 to 5 Chaos Damage to Spells", statOrder = { 1318 }, level = 8, group = "WeaponTreeSpellAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedChaos2h2"] = { type = "Spawn", tier = 2, "Adds 5 to 10 Chaos Damage to Spells", statOrder = { 1318 }, level = 28, group = "WeaponTreeSpellAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedChaos2h3"] = { type = "Spawn", tier = 3, "Adds 10 to 17 Chaos Damage to Spells", statOrder = { 1318 }, level = 44, group = "WeaponTreeSpellAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedChaos2h4"] = { type = "Spawn", tier = 4, "Adds 18 to 28 Chaos Damage to Spells", statOrder = { 1318 }, level = 70, group = "WeaponTreeSpellAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedChaos2h5"] = { type = "Spawn", tier = 5, "Adds 36 to 55 Chaos Damage to Spells", statOrder = { 1318 }, level = 85, group = "WeaponTreeSpellAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedChaosLowPoisonChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Chaos Damage to Spells", "10% chance to Poison on Hit with Spell Damage", statOrder = { 1318, 9974 }, level = 8, group = "WeaponTreeSpellAddedChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedChaosLowPoisonChance2"] = { type = "Spawn", tier = 2, "Adds 2 to 4 Chaos Damage to Spells", "10% chance to Poison on Hit with Spell Damage", statOrder = { 1318, 9974 }, level = 28, group = "WeaponTreeSpellAddedChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedChaosLowPoisonChance3"] = { type = "Spawn", tier = 3, "Adds 4 to 6 Chaos Damage to Spells", "10% chance to Poison on Hit with Spell Damage", statOrder = { 1318, 9974 }, level = 44, group = "WeaponTreeSpellAddedChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedChaosLowPoisonChance4"] = { type = "Spawn", tier = 4, "Adds 6 to 10 Chaos Damage to Spells", "10% chance to Poison on Hit with Spell Damage", statOrder = { 1318, 9974 }, level = 70, group = "WeaponTreeSpellAddedChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedChaosLowPoisonChance5"] = { type = "Spawn", tier = 5, "Adds 13 to 20 Chaos Damage to Spells", "10% chance to Poison on Hit with Spell Damage", statOrder = { 1318, 9974 }, level = 85, group = "WeaponTreeSpellAddedChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 32, 0, 32, 32, 32, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedChaos2hLowPoisonChance1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Chaos Damage to Spells", "20% chance to Poison on Hit with Spell Damage", statOrder = { 1318, 9974 }, level = 8, group = "WeaponTreeSpellAddedChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedChaos2hLowPoisonChance2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Chaos Damage to Spells", "20% chance to Poison on Hit with Spell Damage", statOrder = { 1318, 9974 }, level = 28, group = "WeaponTreeSpellAddedChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedChaos2hLowPoisonChance3"] = { type = "Spawn", tier = 3, "Adds 7 to 10 Chaos Damage to Spells", "20% chance to Poison on Hit with Spell Damage", statOrder = { 1318, 9974 }, level = 44, group = "WeaponTreeSpellAddedChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedChaos2hLowPoisonChance4"] = { type = "Spawn", tier = 4, "Adds 11 to 17 Chaos Damage to Spells", "20% chance to Poison on Hit with Spell Damage", statOrder = { 1318, 9974 }, level = 70, group = "WeaponTreeSpellAddedChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedChaos2hLowPoisonChance5"] = { type = "Spawn", tier = 5, "Adds 22 to 33 Chaos Damage to Spells", "20% chance to Poison on Hit with Spell Damage", statOrder = { 1318, 9974 }, level = 85, group = "WeaponTreeSpellAddedChaosDamageAndPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 32, 0, 32, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedChaosLowWitheredEffect1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Chaos Damage to Spells", "10% increased Effect of Withered", statOrder = { 1318, 10405 }, level = 8, group = "WeaponTreeSpellAddedChaosDamageAndWitherEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedChaosLowWitheredEffect2"] = { type = "Spawn", tier = 2, "Adds 2 to 4 Chaos Damage to Spells", "10% increased Effect of Withered", statOrder = { 1318, 10405 }, level = 28, group = "WeaponTreeSpellAddedChaosDamageAndWitherEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedChaosLowWitheredEffect3"] = { type = "Spawn", tier = 3, "Adds 4 to 6 Chaos Damage to Spells", "10% increased Effect of Withered", statOrder = { 1318, 10405 }, level = 44, group = "WeaponTreeSpellAddedChaosDamageAndWitherEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 125, 0, 125, 125, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedChaosLowWitheredEffect4"] = { type = "Spawn", tier = 4, "Adds 6 to 10 Chaos Damage to Spells", "10% increased Effect of Withered", statOrder = { 1318, 10405 }, level = 70, group = "WeaponTreeSpellAddedChaosDamageAndWitherEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 63, 0, 63, 63, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedChaosLowWitheredEffect5"] = { type = "Spawn", tier = 5, "Adds 13 to 20 Chaos Damage to Spells", "10% increased Effect of Withered", statOrder = { 1318, 10405 }, level = 85, group = "WeaponTreeSpellAddedChaosDamageAndWitherEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 32, 0, 32, 32, 32, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedChaos2hLowWitheredEffect1"] = { type = "Spawn", tier = 1, "Adds 1 to 3 Chaos Damage to Spells", "20% increased Effect of Withered", statOrder = { 1318, 10405 }, level = 8, group = "WeaponTreeSpellAddedChaosDamageAndWitherEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedChaos2hLowWitheredEffect2"] = { type = "Spawn", tier = 2, "Adds 3 to 6 Chaos Damage to Spells", "20% increased Effect of Withered", statOrder = { 1318, 10405 }, level = 28, group = "WeaponTreeSpellAddedChaosDamageAndWitherEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedChaos2hLowWitheredEffect3"] = { type = "Spawn", tier = 3, "Adds 7 to 10 Chaos Damage to Spells", "20% increased Effect of Withered", statOrder = { 1318, 10405 }, level = 44, group = "WeaponTreeSpellAddedChaosDamageAndWitherEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedChaos2hLowWitheredEffect4"] = { type = "Spawn", tier = 4, "Adds 11 to 17 Chaos Damage to Spells", "20% increased Effect of Withered", statOrder = { 1318, 10405 }, level = 70, group = "WeaponTreeSpellAddedChaosDamageAndWitherEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 63, 0, 63, 0 }, modTags = { }, }, + ["WeaponTreeSpellAddedChaos2hLowWitheredEffect5"] = { type = "Spawn", tier = 5, "Adds 22 to 33 Chaos Damage to Spells", "20% increased Effect of Withered", statOrder = { 1318, 10405 }, level = 85, group = "WeaponTreeSpellAddedChaosDamageAndWitherEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 32, 0, 32, 0 }, modTags = { }, }, + ["WeaponTreeSpellDamageHighReducedSpellCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "14% increased Spell Damage", "40% reduced Spell Critical Strike Chance", statOrder = { 1135, 1369 }, level = 1, group = "WeaponTreeSpellDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeSpellDamageHighReducedSpellCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "21% increased Spell Damage", "40% reduced Spell Critical Strike Chance", statOrder = { 1135, 1369 }, level = 21, group = "WeaponTreeSpellDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeSpellDamageHighReducedSpellCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "28% increased Spell Damage", "40% reduced Spell Critical Strike Chance", statOrder = { 1135, 1369 }, level = 46, group = "WeaponTreeSpellDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeSpellDamageHighReducedSpellCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "35% increased Spell Damage", "40% reduced Spell Critical Strike Chance", statOrder = { 1135, 1369 }, level = 65, group = "WeaponTreeSpellDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 375, 0, 375, 375, 375, 0 }, modTags = { }, }, + ["WeaponTreeSpellDamageHighReducedSpellCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "42% increased Spell Damage", "40% reduced Spell Critical Strike Chance", statOrder = { 1135, 1369 }, level = 77, group = "WeaponTreeSpellDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 187, 0, 187, 187, 187, 0 }, modTags = { }, }, + ["WeaponTreeSpellDamage2hHighReducedSpellCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "22% increased Spell Damage", "80% reduced Spell Critical Strike Chance", statOrder = { 1135, 1369 }, level = 1, group = "WeaponTreeSpellDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeSpellDamage2hHighReducedSpellCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "34% increased Spell Damage", "80% reduced Spell Critical Strike Chance", statOrder = { 1135, 1369 }, level = 21, group = "WeaponTreeSpellDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeSpellDamage2hHighReducedSpellCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "45% increased Spell Damage", "80% reduced Spell Critical Strike Chance", statOrder = { 1135, 1369 }, level = 46, group = "WeaponTreeSpellDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeSpellDamage2hHighReducedSpellCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "56% increased Spell Damage", "80% reduced Spell Critical Strike Chance", statOrder = { 1135, 1369 }, level = 65, group = "WeaponTreeSpellDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 375, 0, 375, 0 }, modTags = { }, }, + ["WeaponTreeSpellDamage2hHighReducedSpellCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "68% increased Spell Damage", "80% reduced Spell Critical Strike Chance", statOrder = { 1135, 1369 }, level = 77, group = "WeaponTreeSpellDamageAndSpellCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 187, 0, 187, 0 }, modTags = { }, }, + ["SpellDamage1"] = { tier = 1, "(3-7)% increased Spell Damage", statOrder = { 1135 }, level = 5, group = "SpellDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamage2"] = { tier = 2, "(8-12)% increased Spell Damage", statOrder = { 1135 }, level = 20, group = "SpellDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamage3"] = { tier = 3, "(13-17)% increased Spell Damage", statOrder = { 1135 }, level = 38, group = "SpellDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamage4"] = { tier = 4, "(18-22)% increased Spell Damage", statOrder = { 1135 }, level = 56, group = "SpellDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamage5"] = { tier = 5, "(23-26)% increased Spell Damage", statOrder = { 1135 }, level = 76, group = "SpellDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["WeaponTreeSpellDamage2h1"] = { type = "Spawn", tier = 1, "16% increased Spell Damage", statOrder = { 1135 }, level = 1, group = "WeaponTreeSpellDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1500, 0, 1500, 0 }, modTags = { }, }, + ["WeaponTreeSpellDamage2h2"] = { type = "Spawn", tier = 2, "24% increased Spell Damage", statOrder = { 1135 }, level = 21, group = "WeaponTreeSpellDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1500, 0, 1500, 0 }, modTags = { }, }, + ["WeaponTreeSpellDamage2h3"] = { type = "Spawn", tier = 3, "32% increased Spell Damage", statOrder = { 1135 }, level = 46, group = "WeaponTreeSpellDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1500, 0, 1500, 0 }, modTags = { }, }, + ["WeaponTreeSpellDamage2h4"] = { type = "Spawn", tier = 4, "40% increased Spell Damage", statOrder = { 1135 }, level = 65, group = "WeaponTreeSpellDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 750, 0, 750, 0 }, modTags = { }, }, + ["WeaponTreeSpellDamage2h5"] = { type = "Spawn", tier = 5, "48% increased Spell Damage", statOrder = { 1135 }, level = 77, group = "WeaponTreeSpellDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 375, 0, 375, 0 }, modTags = { }, }, + ["WeaponTreeSpellDamageLowMana1"] = { type = "Spawn", tier = 1, "7% increased Spell Damage", "10% increased maximum Mana", statOrder = { 1135, 1491 }, level = 1, group = "WeaponTreeSpellDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 750, 0, 750, 750, 750, 0 }, modTags = { }, }, + ["WeaponTreeSpellDamageLowMana2"] = { type = "Spawn", tier = 2, "10% increased Spell Damage", "10% increased maximum Mana", statOrder = { 1135, 1491 }, level = 21, group = "WeaponTreeSpellDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 750, 0, 750, 750, 750, 0 }, modTags = { }, }, + ["WeaponTreeSpellDamageLowMana3"] = { type = "Spawn", tier = 3, "13% increased Spell Damage", "10% increased maximum Mana", statOrder = { 1135, 1491 }, level = 46, group = "WeaponTreeSpellDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 750, 0, 750, 750, 750, 0 }, modTags = { }, }, + ["WeaponTreeSpellDamageLowMana4"] = { type = "Spawn", tier = 4, "17% increased Spell Damage", "10% increased maximum Mana", statOrder = { 1135, 1491 }, level = 65, group = "WeaponTreeSpellDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 375, 0, 375, 375, 375, 0 }, modTags = { }, }, + ["WeaponTreeSpellDamageLowMana5"] = { type = "Spawn", tier = 5, "20% increased Spell Damage", "10% increased maximum Mana", statOrder = { 1135, 1491 }, level = 77, group = "WeaponTreeSpellDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 187, 0, 187, 187, 187, 0 }, modTags = { }, }, + ["WeaponTreeSpellDamage2hLowMana1"] = { type = "Spawn", tier = 1, "11% increased Spell Damage", "20% increased maximum Mana", statOrder = { 1135, 1491 }, level = 1, group = "WeaponTreeSpellDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 750, 0, 750, 0 }, modTags = { }, }, + ["WeaponTreeSpellDamage2hLowMana2"] = { type = "Spawn", tier = 2, "16% increased Spell Damage", "20% increased maximum Mana", statOrder = { 1135, 1491 }, level = 21, group = "WeaponTreeSpellDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 750, 0, 750, 0 }, modTags = { }, }, + ["WeaponTreeSpellDamage2hLowMana3"] = { type = "Spawn", tier = 3, "21% increased Spell Damage", "20% increased maximum Mana", statOrder = { 1135, 1491 }, level = 46, group = "WeaponTreeSpellDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 750, 0, 750, 0 }, modTags = { }, }, + ["WeaponTreeSpellDamage2hLowMana4"] = { type = "Spawn", tier = 4, "26% increased Spell Damage", "20% increased maximum Mana", statOrder = { 1135, 1491 }, level = 65, group = "WeaponTreeSpellDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 375, 0, 375, 0 }, modTags = { }, }, + ["WeaponTreeSpellDamage2hLowMana5"] = { type = "Spawn", tier = 5, "32% increased Spell Damage", "20% increased maximum Mana", statOrder = { 1135, 1491 }, level = 77, group = "WeaponTreeSpellDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 187, 0, 187, 0 }, modTags = { }, }, + ["WeaponTreeSpellDamageLowEnergyShield1"] = { type = "Spawn", tier = 1, "7% increased Spell Damage", "10% increased maximum Energy Shield", statOrder = { 1135, 1472 }, level = 1, group = "WeaponTreeSpellDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 750, 0, 750, 750, 750, 0 }, modTags = { }, }, + ["WeaponTreeSpellDamageLowEnergyShield2"] = { type = "Spawn", tier = 2, "10% increased Spell Damage", "10% increased maximum Energy Shield", statOrder = { 1135, 1472 }, level = 21, group = "WeaponTreeSpellDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 750, 0, 750, 750, 750, 0 }, modTags = { }, }, + ["WeaponTreeSpellDamageLowEnergyShield3"] = { type = "Spawn", tier = 3, "13% increased Spell Damage", "10% increased maximum Energy Shield", statOrder = { 1135, 1472 }, level = 46, group = "WeaponTreeSpellDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 750, 0, 750, 750, 750, 0 }, modTags = { }, }, + ["WeaponTreeSpellDamageLowEnergyShield4"] = { type = "Spawn", tier = 4, "17% increased Spell Damage", "10% increased maximum Energy Shield", statOrder = { 1135, 1472 }, level = 65, group = "WeaponTreeSpellDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 375, 0, 375, 375, 375, 0 }, modTags = { }, }, + ["WeaponTreeSpellDamageLowEnergyShield5"] = { type = "Spawn", tier = 5, "20% increased Spell Damage", "10% increased maximum Energy Shield", statOrder = { 1135, 1472 }, level = 77, group = "WeaponTreeSpellDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 187, 0, 187, 187, 187, 0 }, modTags = { }, }, + ["WeaponTreeSpellDamage2hLowEnergyShield1"] = { type = "Spawn", tier = 1, "11% increased Spell Damage", "20% increased maximum Energy Shield", statOrder = { 1135, 1472 }, level = 1, group = "WeaponTreeSpellDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 750, 0, 750, 0 }, modTags = { }, }, + ["WeaponTreeSpellDamage2hLowEnergyShield2"] = { type = "Spawn", tier = 2, "16% increased Spell Damage", "20% increased maximum Energy Shield", statOrder = { 1135, 1472 }, level = 21, group = "WeaponTreeSpellDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 750, 0, 750, 0 }, modTags = { }, }, + ["WeaponTreeSpellDamage2hLowEnergyShield3"] = { type = "Spawn", tier = 3, "21% increased Spell Damage", "20% increased maximum Energy Shield", statOrder = { 1135, 1472 }, level = 46, group = "WeaponTreeSpellDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 750, 0, 750, 0 }, modTags = { }, }, + ["WeaponTreeSpellDamage2hLowEnergyShield4"] = { type = "Spawn", tier = 4, "26% increased Spell Damage", "20% increased maximum Energy Shield", statOrder = { 1135, 1472 }, level = 65, group = "WeaponTreeSpellDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 375, 0, 375, 0 }, modTags = { }, }, + ["WeaponTreeSpellDamage2hLowEnergyShield5"] = { type = "Spawn", tier = 5, "32% increased Spell Damage", "20% increased maximum Energy Shield", statOrder = { 1135, 1472 }, level = 77, group = "WeaponTreeSpellDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 187, 0, 187, 0 }, modTags = { }, }, + ["WeaponTreeDamageOverTimeHighLifeRecoveryRate1"] = { type = "Spawn", tier = 1, "14% increased Damage over Time", "10% reduced Life Recovery rate", statOrder = { 1122, 1489 }, level = 5, group = "WeaponTreeDamageOverTimeAndLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["WeaponTreeDamageOverTimeHighLifeRecoveryRate2"] = { type = "Spawn", tier = 2, "21% increased Damage over Time", "10% reduced Life Recovery rate", statOrder = { 1122, 1489 }, level = 23, group = "WeaponTreeDamageOverTimeAndLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["WeaponTreeDamageOverTimeHighLifeRecoveryRate3"] = { type = "Spawn", tier = 3, "28% increased Damage over Time", "10% reduced Life Recovery rate", statOrder = { 1122, 1489 }, level = 51, group = "WeaponTreeDamageOverTimeAndLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["WeaponTreeDamageOverTimeHighLifeRecoveryRate4"] = { type = "Spawn", tier = 4, "35% increased Damage over Time", "10% reduced Life Recovery rate", statOrder = { 1122, 1489 }, level = 69, group = "WeaponTreeDamageOverTimeAndLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, + ["WeaponTreeDamageOverTimeHighLifeRecoveryRate5"] = { type = "Spawn", tier = 5, "42% increased Damage over Time", "10% reduced Life Recovery rate", statOrder = { 1122, 1489 }, level = 80, group = "WeaponTreeDamageOverTimeAndLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 31, 0 }, modTags = { }, }, + ["WeaponTreeDamageOverTime2hHighLifeRecoveryRate1"] = { type = "Spawn", tier = 1, "22% increased Damage over Time", "16% reduced Life Recovery rate", statOrder = { 1122, 1489 }, level = 5, group = "WeaponTreeDamageOverTimeAndLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["WeaponTreeDamageOverTime2hHighLifeRecoveryRate2"] = { type = "Spawn", tier = 2, "34% increased Damage over Time", "16% reduced Life Recovery rate", statOrder = { 1122, 1489 }, level = 23, group = "WeaponTreeDamageOverTimeAndLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["WeaponTreeDamageOverTime2hHighLifeRecoveryRate3"] = { type = "Spawn", tier = 3, "45% increased Damage over Time", "16% reduced Life Recovery rate", statOrder = { 1122, 1489 }, level = 51, group = "WeaponTreeDamageOverTimeAndLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["WeaponTreeDamageOverTime2hHighLifeRecoveryRate4"] = { type = "Spawn", tier = 4, "56% increased Damage over Time", "16% reduced Life Recovery rate", statOrder = { 1122, 1489 }, level = 69, group = "WeaponTreeDamageOverTimeAndLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, + ["WeaponTreeDamageOverTime2hHighLifeRecoveryRate5"] = { type = "Spawn", tier = 5, "68% increased Damage over Time", "16% reduced Life Recovery rate", statOrder = { 1122, 1489 }, level = 80, group = "WeaponTreeDamageOverTimeAndLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 31, 0 }, modTags = { }, }, + ["WeaponTreeDamageOverTime1"] = { type = "Spawn", tier = 1, "10% increased Damage over Time", statOrder = { 1122 }, level = 5, group = "WeaponTreeDamageOverTime", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeDamageOverTime2"] = { type = "Spawn", tier = 2, "15% increased Damage over Time", statOrder = { 1122 }, level = 23, group = "WeaponTreeDamageOverTime", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeDamageOverTime3"] = { type = "Spawn", tier = 3, "20% increased Damage over Time", statOrder = { 1122 }, level = 51, group = "WeaponTreeDamageOverTime", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeDamageOverTime4"] = { type = "Spawn", tier = 4, "25% increased Damage over Time", statOrder = { 1122 }, level = 69, group = "WeaponTreeDamageOverTime", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeDamageOverTime5"] = { type = "Spawn", tier = 5, "30% increased Damage over Time", statOrder = { 1122 }, level = 80, group = "WeaponTreeDamageOverTime", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, + ["WeaponTreeDamageOverTime2h1"] = { type = "Spawn", tier = 1, "16% increased Damage over Time", statOrder = { 1122 }, level = 5, group = "WeaponTreeDamageOverTime", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeDamageOverTime2h2"] = { type = "Spawn", tier = 2, "24% increased Damage over Time", statOrder = { 1122 }, level = 23, group = "WeaponTreeDamageOverTime", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeDamageOverTime2h3"] = { type = "Spawn", tier = 3, "32% increased Damage over Time", statOrder = { 1122 }, level = 51, group = "WeaponTreeDamageOverTime", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeDamageOverTime2h4"] = { type = "Spawn", tier = 4, "40% increased Damage over Time", statOrder = { 1122 }, level = 69, group = "WeaponTreeDamageOverTime", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeDamageOverTime2h5"] = { type = "Spawn", tier = 5, "48% increased Damage over Time", statOrder = { 1122 }, level = 80, group = "WeaponTreeDamageOverTime", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, + ["WeaponTreeDamageOverTimeLowSkillEffectDuration1"] = { type = "Spawn", tier = 1, "7% increased Damage over Time", "5% increased Skill Effect Duration", statOrder = { 1122, 1806 }, level = 5, group = "WeaponTreeDamageOverTimeAndSkillEffectDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeDamageOverTimeLowSkillEffectDuration2"] = { type = "Spawn", tier = 2, "10% increased Damage over Time", "5% increased Skill Effect Duration", statOrder = { 1122, 1806 }, level = 23, group = "WeaponTreeDamageOverTimeAndSkillEffectDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeDamageOverTimeLowSkillEffectDuration3"] = { type = "Spawn", tier = 3, "13% increased Damage over Time", "5% increased Skill Effect Duration", statOrder = { 1122, 1806 }, level = 51, group = "WeaponTreeDamageOverTimeAndSkillEffectDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeDamageOverTimeLowSkillEffectDuration4"] = { type = "Spawn", tier = 4, "17% increased Damage over Time", "5% increased Skill Effect Duration", statOrder = { 1122, 1806 }, level = 69, group = "WeaponTreeDamageOverTimeAndSkillEffectDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, + ["WeaponTreeDamageOverTimeLowSkillEffectDuration5"] = { type = "Spawn", tier = 5, "20% increased Damage over Time", "5% increased Skill Effect Duration", statOrder = { 1122, 1806 }, level = 80, group = "WeaponTreeDamageOverTimeAndSkillEffectDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 31, 0 }, modTags = { }, }, + ["WeaponTreeDamageOverTime2hLowSkillEffectDuration1"] = { type = "Spawn", tier = 1, "11% increased Damage over Time", "10% increased Skill Effect Duration", statOrder = { 1122, 1806 }, level = 5, group = "WeaponTreeDamageOverTimeAndSkillEffectDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeDamageOverTime2hLowSkillEffectDuration2"] = { type = "Spawn", tier = 2, "16% increased Damage over Time", "10% increased Skill Effect Duration", statOrder = { 1122, 1806 }, level = 23, group = "WeaponTreeDamageOverTimeAndSkillEffectDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeDamageOverTime2hLowSkillEffectDuration3"] = { type = "Spawn", tier = 3, "21% increased Damage over Time", "10% increased Skill Effect Duration", statOrder = { 1122, 1806 }, level = 51, group = "WeaponTreeDamageOverTimeAndSkillEffectDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeDamageOverTime2hLowSkillEffectDuration4"] = { type = "Spawn", tier = 4, "26% increased Damage over Time", "10% increased Skill Effect Duration", statOrder = { 1122, 1806 }, level = 69, group = "WeaponTreeDamageOverTimeAndSkillEffectDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, + ["WeaponTreeDamageOverTime2hLowSkillEffectDuration5"] = { type = "Spawn", tier = 5, "32% increased Damage over Time", "10% increased Skill Effect Duration", statOrder = { 1122, 1806 }, level = 80, group = "WeaponTreeDamageOverTimeAndSkillEffectDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 31, 0 }, modTags = { }, }, + ["WeaponTreeDamageOverTimeLowAilmentDurationOnYou1"] = { type = "Spawn", tier = 1, "7% increased Damage over Time", "15% reduced Duration of Ailments on You", statOrder = { 1122, 4879 }, level = 5, group = "WeaponTreeDamageOverTimeAndSelfAilmentDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeDamageOverTimeLowAilmentDurationOnYou2"] = { type = "Spawn", tier = 2, "10% increased Damage over Time", "15% reduced Duration of Ailments on You", statOrder = { 1122, 4879 }, level = 23, group = "WeaponTreeDamageOverTimeAndSelfAilmentDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeDamageOverTimeLowAilmentDurationOnYou3"] = { type = "Spawn", tier = 3, "13% increased Damage over Time", "15% reduced Duration of Ailments on You", statOrder = { 1122, 4879 }, level = 51, group = "WeaponTreeDamageOverTimeAndSelfAilmentDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeDamageOverTimeLowAilmentDurationOnYou4"] = { type = "Spawn", tier = 4, "17% increased Damage over Time", "15% reduced Duration of Ailments on You", statOrder = { 1122, 4879 }, level = 69, group = "WeaponTreeDamageOverTimeAndSelfAilmentDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, + ["WeaponTreeDamageOverTimeLowAilmentDurationOnYou5"] = { type = "Spawn", tier = 5, "20% increased Damage over Time", "15% reduced Duration of Ailments on You", statOrder = { 1122, 4879 }, level = 80, group = "WeaponTreeDamageOverTimeAndSelfAilmentDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 31, 0 }, modTags = { }, }, + ["WeaponTreeDamageOverTime2hLowAilmentDurationOnYou1"] = { type = "Spawn", tier = 1, "11% increased Damage over Time", "25% reduced Duration of Ailments on You", statOrder = { 1122, 4879 }, level = 5, group = "WeaponTreeDamageOverTimeAndSelfAilmentDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeDamageOverTime2hLowAilmentDurationOnYou2"] = { type = "Spawn", tier = 2, "16% increased Damage over Time", "25% reduced Duration of Ailments on You", statOrder = { 1122, 4879 }, level = 23, group = "WeaponTreeDamageOverTimeAndSelfAilmentDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeDamageOverTime2hLowAilmentDurationOnYou3"] = { type = "Spawn", tier = 3, "21% increased Damage over Time", "25% reduced Duration of Ailments on You", statOrder = { 1122, 4879 }, level = 51, group = "WeaponTreeDamageOverTimeAndSelfAilmentDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 125, 0 }, modTags = { }, }, + ["WeaponTreeDamageOverTime2hLowAilmentDurationOnYou4"] = { type = "Spawn", tier = 4, "26% increased Damage over Time", "25% reduced Duration of Ailments on You", statOrder = { 1122, 4879 }, level = 69, group = "WeaponTreeDamageOverTimeAndSelfAilmentDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 63, 0 }, modTags = { }, }, + ["WeaponTreeDamageOverTime2hLowAilmentDurationOnYou5"] = { type = "Spawn", tier = 5, "32% increased Damage over Time", "25% reduced Duration of Ailments on You", statOrder = { 1122, 4879 }, level = 80, group = "WeaponTreeDamageOverTimeAndSelfAilmentDuration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 31, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysicalHighMinionReducedAttackAndCastSpeed1"] = { type = "Spawn", tier = 1, "Minions deal 2 to 5 additional Physical Damage", "Minions have 6% reduced Attack and Cast Speed", statOrder = { 3681, 9080 }, level = 1, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysicalHighMinionReducedAttackAndCastSpeed2"] = { type = "Spawn", tier = 2, "Minions deal 5 to 7 additional Physical Damage", "Minions have 6% reduced Attack and Cast Speed", statOrder = { 3681, 9080 }, level = 26, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysicalHighMinionReducedAttackAndCastSpeed3"] = { type = "Spawn", tier = 3, "Minions deal 8 to 14 additional Physical Damage", "Minions have 6% reduced Attack and Cast Speed", statOrder = { 3681, 9080 }, level = 42, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysicalHighMinionReducedAttackAndCastSpeed4"] = { type = "Spawn", tier = 4, "Minions deal 14 to 22 additional Physical Damage", "Minions have 6% reduced Attack and Cast Speed", statOrder = { 3681, 9080 }, level = 62, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysicalHighMinionReducedAttackAndCastSpeed5"] = { type = "Spawn", tier = 5, "Minions deal 28 to 42 additional Physical Damage", "Minions have 6% reduced Attack and Cast Speed", statOrder = { 3681, 9080 }, level = 82, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2hHighMinionReducedAttackAndCastSpeed1"] = { type = "Spawn", tier = 1, "Minions deal 4 to 7 additional Physical Damage", "Minions have 10% reduced Attack and Cast Speed", statOrder = { 3681, 9080 }, level = 1, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2hHighMinionReducedAttackAndCastSpeed2"] = { type = "Spawn", tier = 2, "Minions deal 7 to 12 additional Physical Damage", "Minions have 10% reduced Attack and Cast Speed", statOrder = { 3681, 9080 }, level = 26, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2hHighMinionReducedAttackAndCastSpeed3"] = { type = "Spawn", tier = 3, "Minions deal 14 to 22 additional Physical Damage", "Minions have 10% reduced Attack and Cast Speed", statOrder = { 3681, 9080 }, level = 42, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2hHighMinionReducedAttackAndCastSpeed4"] = { type = "Spawn", tier = 4, "Minions deal 24 to 37 additional Physical Damage", "Minions have 10% reduced Attack and Cast Speed", statOrder = { 3681, 9080 }, level = 62, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2hHighMinionReducedAttackAndCastSpeed5"] = { type = "Spawn", tier = 5, "Minions deal 47 to 71 additional Physical Damage", "Minions have 10% reduced Attack and Cast Speed", statOrder = { 3681, 9080 }, level = 82, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 5 additional Physical Damage", statOrder = { 3681 }, level = 1, group = "WeaponTreeMinionAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2"] = { type = "Spawn", tier = 2, "Minions deal 2 to 6 additional Physical Damage", statOrder = { 3681 }, level = 26, group = "WeaponTreeMinionAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical3"] = { type = "Spawn", tier = 3, "Minions deal 6 to 10 additional Physical Damage", statOrder = { 3681 }, level = 42, group = "WeaponTreeMinionAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical4"] = { type = "Spawn", tier = 4, "Minions deal 11 to 17 additional Physical Damage", statOrder = { 3681 }, level = 62, group = "WeaponTreeMinionAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical5"] = { type = "Spawn", tier = 5, "Minions deal 21 to 33 additional Physical Damage", statOrder = { 3681 }, level = 82, group = "WeaponTreeMinionAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2h1"] = { type = "Spawn", tier = 1, "Minions deal 2 to 5 additional Physical Damage", statOrder = { 3681 }, level = 1, group = "WeaponTreeMinionAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2h2"] = { type = "Spawn", tier = 2, "Minions deal 5 to 10 additional Physical Damage", statOrder = { 3681 }, level = 26, group = "WeaponTreeMinionAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2h3"] = { type = "Spawn", tier = 3, "Minions deal 10 to 17 additional Physical Damage", statOrder = { 3681 }, level = 42, group = "WeaponTreeMinionAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2h4"] = { type = "Spawn", tier = 4, "Minions deal 18 to 28 additional Physical Damage", statOrder = { 3681 }, level = 62, group = "WeaponTreeMinionAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2h5"] = { type = "Spawn", tier = 5, "Minions deal 36 to 55 additional Physical Damage", statOrder = { 3681 }, level = 82, group = "WeaponTreeMinionAddedPhysicalDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysicalLowMinionFireConversion1"] = { type = "Spawn", tier = 1, "Minions convert 15% of Physical Damage to Fire Damage", "Minions deal 1 to 3 additional Physical Damage", statOrder = { 1865, 3681 }, level = 10, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysicalLowMinionFireConversion2"] = { type = "Spawn", tier = 2, "Minions convert 15% of Physical Damage to Fire Damage", "Minions deal 2 to 4 additional Physical Damage", statOrder = { 1865, 3681 }, level = 31, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysicalLowMinionFireConversion3"] = { type = "Spawn", tier = 3, "Minions convert 15% of Physical Damage to Fire Damage", "Minions deal 4 to 6 additional Physical Damage", statOrder = { 1865, 3681 }, level = 54, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysicalLowMinionFireConversion4"] = { type = "Spawn", tier = 4, "Minions convert 15% of Physical Damage to Fire Damage", "Minions deal 6 to 10 additional Physical Damage", statOrder = { 1865, 3681 }, level = 72, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysicalLowMinionFireConversion5"] = { type = "Spawn", tier = 5, "Minions convert 15% of Physical Damage to Fire Damage", "Minions deal 13 to 20 additional Physical Damage", statOrder = { 1865, 3681 }, level = 84, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 160, 160, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionFireConversion1"] = { type = "Spawn", tier = 1, "Minions convert 25% of Physical Damage to Fire Damage", "Minions deal 1 to 3 additional Physical Damage", statOrder = { 1865, 3681 }, level = 10, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionFireConversion2"] = { type = "Spawn", tier = 2, "Minions convert 25% of Physical Damage to Fire Damage", "Minions deal 3 to 6 additional Physical Damage", statOrder = { 1865, 3681 }, level = 31, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionFireConversion3"] = { type = "Spawn", tier = 3, "Minions convert 25% of Physical Damage to Fire Damage", "Minions deal 7 to 10 additional Physical Damage", statOrder = { 1865, 3681 }, level = 54, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionFireConversion4"] = { type = "Spawn", tier = 4, "Minions convert 25% of Physical Damage to Fire Damage", "Minions deal 11 to 17 additional Physical Damage", statOrder = { 1865, 3681 }, level = 72, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionFireConversion5"] = { type = "Spawn", tier = 5, "Minions convert 25% of Physical Damage to Fire Damage", "Minions deal 22 to 33 additional Physical Damage", statOrder = { 1865, 3681 }, level = 84, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionFireConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 160, 160, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysicalLowMinionColdConversion1"] = { type = "Spawn", tier = 1, "Minions convert 15% of Physical Damage to Cold Damage", "Minions deal 1 to 3 additional Physical Damage", statOrder = { 1867, 3681 }, level = 10, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysicalLowMinionColdConversion2"] = { type = "Spawn", tier = 2, "Minions convert 15% of Physical Damage to Cold Damage", "Minions deal 2 to 4 additional Physical Damage", statOrder = { 1867, 3681 }, level = 31, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysicalLowMinionColdConversion3"] = { type = "Spawn", tier = 3, "Minions convert 15% of Physical Damage to Cold Damage", "Minions deal 4 to 6 additional Physical Damage", statOrder = { 1867, 3681 }, level = 54, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysicalLowMinionColdConversion4"] = { type = "Spawn", tier = 4, "Minions convert 15% of Physical Damage to Cold Damage", "Minions deal 6 to 10 additional Physical Damage", statOrder = { 1867, 3681 }, level = 72, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysicalLowMinionColdConversion5"] = { type = "Spawn", tier = 5, "Minions convert 15% of Physical Damage to Cold Damage", "Minions deal 13 to 20 additional Physical Damage", statOrder = { 1867, 3681 }, level = 84, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 160, 160, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionColdConversion1"] = { type = "Spawn", tier = 1, "Minions convert 25% of Physical Damage to Cold Damage", "Minions deal 1 to 3 additional Physical Damage", statOrder = { 1867, 3681 }, level = 10, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionColdConversion2"] = { type = "Spawn", tier = 2, "Minions convert 25% of Physical Damage to Cold Damage", "Minions deal 3 to 6 additional Physical Damage", statOrder = { 1867, 3681 }, level = 31, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionColdConversion3"] = { type = "Spawn", tier = 3, "Minions convert 25% of Physical Damage to Cold Damage", "Minions deal 7 to 10 additional Physical Damage", statOrder = { 1867, 3681 }, level = 54, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionColdConversion4"] = { type = "Spawn", tier = 4, "Minions convert 25% of Physical Damage to Cold Damage", "Minions deal 11 to 17 additional Physical Damage", statOrder = { 1867, 3681 }, level = 72, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionColdConversion5"] = { type = "Spawn", tier = 5, "Minions convert 25% of Physical Damage to Cold Damage", "Minions deal 22 to 33 additional Physical Damage", statOrder = { 1867, 3681 }, level = 84, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionColdConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 160, 160, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysicalLowMinionLightningConversion1"] = { type = "Spawn", tier = 1, "Minions convert 15% of Physical Damage to Lightning Damage", "Minions deal 1 to 3 additional Physical Damage", statOrder = { 1869, 3681 }, level = 10, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysicalLowMinionLightningConversion2"] = { type = "Spawn", tier = 2, "Minions convert 15% of Physical Damage to Lightning Damage", "Minions deal 2 to 4 additional Physical Damage", statOrder = { 1869, 3681 }, level = 31, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysicalLowMinionLightningConversion3"] = { type = "Spawn", tier = 3, "Minions convert 15% of Physical Damage to Lightning Damage", "Minions deal 4 to 6 additional Physical Damage", statOrder = { 1869, 3681 }, level = 54, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysicalLowMinionLightningConversion4"] = { type = "Spawn", tier = 4, "Minions convert 15% of Physical Damage to Lightning Damage", "Minions deal 6 to 10 additional Physical Damage", statOrder = { 1869, 3681 }, level = 72, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysicalLowMinionLightningConversion5"] = { type = "Spawn", tier = 5, "Minions convert 15% of Physical Damage to Lightning Damage", "Minions deal 13 to 20 additional Physical Damage", statOrder = { 1869, 3681 }, level = 84, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 160, 160, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionLightningConversion1"] = { type = "Spawn", tier = 1, "Minions convert 25% of Physical Damage to Lightning Damage", "Minions deal 1 to 3 additional Physical Damage", statOrder = { 1869, 3681 }, level = 10, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionLightningConversion2"] = { type = "Spawn", tier = 2, "Minions convert 25% of Physical Damage to Lightning Damage", "Minions deal 3 to 6 additional Physical Damage", statOrder = { 1869, 3681 }, level = 31, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionLightningConversion3"] = { type = "Spawn", tier = 3, "Minions convert 25% of Physical Damage to Lightning Damage", "Minions deal 7 to 10 additional Physical Damage", statOrder = { 1869, 3681 }, level = 54, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionLightningConversion4"] = { type = "Spawn", tier = 4, "Minions convert 25% of Physical Damage to Lightning Damage", "Minions deal 11 to 17 additional Physical Damage", statOrder = { 1869, 3681 }, level = 72, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionLightningConversion5"] = { type = "Spawn", tier = 5, "Minions convert 25% of Physical Damage to Lightning Damage", "Minions deal 22 to 33 additional Physical Damage", statOrder = { 1869, 3681 }, level = 84, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionLightningConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 160, 160, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysicalLowMinionChaosConversion1"] = { type = "Spawn", tier = 1, "Minions convert 15% of Physical Damage to Chaos Damage", "Minions deal 1 to 3 additional Physical Damage", statOrder = { 1872, 3681 }, level = 13, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysicalLowMinionChaosConversion2"] = { type = "Spawn", tier = 2, "Minions convert 15% of Physical Damage to Chaos Damage", "Minions deal 2 to 4 additional Physical Damage", statOrder = { 1872, 3681 }, level = 27, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysicalLowMinionChaosConversion3"] = { type = "Spawn", tier = 3, "Minions convert 15% of Physical Damage to Chaos Damage", "Minions deal 4 to 6 additional Physical Damage", statOrder = { 1872, 3681 }, level = 57, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysicalLowMinionChaosConversion4"] = { type = "Spawn", tier = 4, "Minions convert 15% of Physical Damage to Chaos Damage", "Minions deal 6 to 10 additional Physical Damage", statOrder = { 1872, 3681 }, level = 74, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysicalLowMinionChaosConversion5"] = { type = "Spawn", tier = 5, "Minions convert 15% of Physical Damage to Chaos Damage", "Minions deal 13 to 20 additional Physical Damage", statOrder = { 1872, 3681 }, level = 85, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 160, 160, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionChaosConversion1"] = { type = "Spawn", tier = 1, "Minions convert 25% of Physical Damage to Chaos Damage", "Minions deal 1 to 3 additional Physical Damage", statOrder = { 1872, 3681 }, level = 13, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionChaosConversion2"] = { type = "Spawn", tier = 2, "Minions convert 25% of Physical Damage to Chaos Damage", "Minions deal 3 to 6 additional Physical Damage", statOrder = { 1872, 3681 }, level = 27, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionChaosConversion3"] = { type = "Spawn", tier = 3, "Minions convert 25% of Physical Damage to Chaos Damage", "Minions deal 7 to 10 additional Physical Damage", statOrder = { 1872, 3681 }, level = 57, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionChaosConversion4"] = { type = "Spawn", tier = 4, "Minions convert 25% of Physical Damage to Chaos Damage", "Minions deal 11 to 17 additional Physical Damage", statOrder = { 1872, 3681 }, level = 74, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionChaosConversion5"] = { type = "Spawn", tier = 5, "Minions convert 25% of Physical Damage to Chaos Damage", "Minions deal 22 to 33 additional Physical Damage", statOrder = { 1872, 3681 }, level = 85, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionChaosConversion", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 160, 160, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysicalLowMinionOverwhelm1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 3 additional Physical Damage", "Minions Attacks Overwhelm 5% Physical Damage Reduction", statOrder = { 3681, 9151 }, level = 13, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysicalLowMinionOverwhelm2"] = { type = "Spawn", tier = 2, "Minions deal 2 to 4 additional Physical Damage", "Minions Attacks Overwhelm 5% Physical Damage Reduction", statOrder = { 3681, 9151 }, level = 27, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysicalLowMinionOverwhelm3"] = { type = "Spawn", tier = 3, "Minions deal 4 to 6 additional Physical Damage", "Minions Attacks Overwhelm 5% Physical Damage Reduction", statOrder = { 3681, 9151 }, level = 57, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysicalLowMinionOverwhelm4"] = { type = "Spawn", tier = 4, "Minions deal 6 to 10 additional Physical Damage", "Minions Attacks Overwhelm 5% Physical Damage Reduction", statOrder = { 3681, 9151 }, level = 74, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysicalLowMinionOverwhelm5"] = { type = "Spawn", tier = 5, "Minions deal 13 to 20 additional Physical Damage", "Minions Attacks Overwhelm 5% Physical Damage Reduction", statOrder = { 3681, 9151 }, level = 85, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionOverwhelm1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 3 additional Physical Damage", "Minions Attacks Overwhelm 10% Physical Damage Reduction", statOrder = { 3681, 9151 }, level = 13, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionOverwhelm2"] = { type = "Spawn", tier = 2, "Minions deal 3 to 6 additional Physical Damage", "Minions Attacks Overwhelm 10% Physical Damage Reduction", statOrder = { 3681, 9151 }, level = 27, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionOverwhelm3"] = { type = "Spawn", tier = 3, "Minions deal 7 to 10 additional Physical Damage", "Minions Attacks Overwhelm 10% Physical Damage Reduction", statOrder = { 3681, 9151 }, level = 57, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionOverwhelm4"] = { type = "Spawn", tier = 4, "Minions deal 11 to 17 additional Physical Damage", "Minions Attacks Overwhelm 10% Physical Damage Reduction", statOrder = { 3681, 9151 }, level = 74, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedPhysical2hLowMinionOverwhelm5"] = { type = "Spawn", tier = 5, "Minions deal 22 to 33 additional Physical Damage", "Minions Attacks Overwhelm 10% Physical Damage Reduction", statOrder = { 3681, 9151 }, level = 85, group = "WeaponTreeMinionAddedPhysicalDamageAndMinionOverwhelm", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedFireHighMinionReducedAttackAndCastSpeed1"] = { type = "Spawn", tier = 1, "Minions deal 4 to 6 additional Fire Damage", "Minions have 6% reduced Attack and Cast Speed", statOrder = { 3679, 9080 }, level = 1, group = "WeaponTreeMinionAddedFireDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedFireHighMinionReducedAttackAndCastSpeed2"] = { type = "Spawn", tier = 2, "Minions deal 6 to 10 additional Fire Damage", "Minions have 6% reduced Attack and Cast Speed", statOrder = { 3679, 9080 }, level = 26, group = "WeaponTreeMinionAddedFireDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedFireHighMinionReducedAttackAndCastSpeed3"] = { type = "Spawn", tier = 3, "Minions deal 12 to 18 additional Fire Damage", "Minions have 6% reduced Attack and Cast Speed", statOrder = { 3679, 9080 }, level = 42, group = "WeaponTreeMinionAddedFireDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedFireHighMinionReducedAttackAndCastSpeed4"] = { type = "Spawn", tier = 4, "Minions deal 19 to 30 additional Fire Damage", "Minions have 6% reduced Attack and Cast Speed", statOrder = { 3679, 9080 }, level = 62, group = "WeaponTreeMinionAddedFireDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedFireHighMinionReducedAttackAndCastSpeed5"] = { type = "Spawn", tier = 5, "Minions deal 39 to 59 additional Fire Damage", "Minions have 6% reduced Attack and Cast Speed", statOrder = { 3679, 9080 }, level = 82, group = "WeaponTreeMinionAddedFireDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedFire2hHighMinionReducedAttackAndCastSpeed1"] = { type = "Spawn", tier = 1, "Minions deal 7 to 10 additional Fire Damage", "Minions have 10% reduced Attack and Cast Speed", statOrder = { 3679, 9080 }, level = 1, group = "WeaponTreeMinionAddedFireDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedFire2hHighMinionReducedAttackAndCastSpeed2"] = { type = "Spawn", tier = 2, "Minions deal 11 to 17 additional Fire Damage", "Minions have 10% reduced Attack and Cast Speed", statOrder = { 3679, 9080 }, level = 26, group = "WeaponTreeMinionAddedFireDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedFire2hHighMinionReducedAttackAndCastSpeed3"] = { type = "Spawn", tier = 3, "Minions deal 21 to 34 additional Fire Damage", "Minions have 10% reduced Attack and Cast Speed", statOrder = { 3679, 9080 }, level = 42, group = "WeaponTreeMinionAddedFireDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedFire2hHighMinionReducedAttackAndCastSpeed4"] = { type = "Spawn", tier = 4, "Minions deal 37 to 55 additional Fire Damage", "Minions have 10% reduced Attack and Cast Speed", statOrder = { 3679, 9080 }, level = 62, group = "WeaponTreeMinionAddedFireDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedFire2hHighMinionReducedAttackAndCastSpeed5"] = { type = "Spawn", tier = 5, "Minions deal 73 to 109 additional Fire Damage", "Minions have 10% reduced Attack and Cast Speed", statOrder = { 3679, 9080 }, level = 82, group = "WeaponTreeMinionAddedFireDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedFire1"] = { type = "Spawn", tier = 1, "Minions deal 2 to 5 additional Fire Damage", statOrder = { 3679 }, level = 1, group = "WeaponTreeMinionAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedFire2"] = { type = "Spawn", tier = 2, "Minions deal 5 to 7 additional Fire Damage", statOrder = { 3679 }, level = 26, group = "WeaponTreeMinionAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedFire3"] = { type = "Spawn", tier = 3, "Minions deal 9 to 14 additional Fire Damage", statOrder = { 3679 }, level = 42, group = "WeaponTreeMinionAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedFire4"] = { type = "Spawn", tier = 4, "Minions deal 15 to 24 additional Fire Damage", statOrder = { 3679 }, level = 62, group = "WeaponTreeMinionAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedFire5"] = { type = "Spawn", tier = 5, "Minions deal 30 to 45 additional Fire Damage", statOrder = { 3679 }, level = 82, group = "WeaponTreeMinionAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedFire2h1"] = { type = "Spawn", tier = 1, "Minions deal 5 to 7 additional Fire Damage", statOrder = { 3679 }, level = 1, group = "WeaponTreeMinionAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedFire2h2"] = { type = "Spawn", tier = 2, "Minions deal 9 to 13 additional Fire Damage", statOrder = { 3679 }, level = 26, group = "WeaponTreeMinionAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedFire2h3"] = { type = "Spawn", tier = 3, "Minions deal 16 to 26 additional Fire Damage", statOrder = { 3679 }, level = 42, group = "WeaponTreeMinionAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedFire2h4"] = { type = "Spawn", tier = 4, "Minions deal 28 to 43 additional Fire Damage", statOrder = { 3679 }, level = 62, group = "WeaponTreeMinionAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedFire2h5"] = { type = "Spawn", tier = 5, "Minions deal 56 to 84 additional Fire Damage", statOrder = { 3679 }, level = 82, group = "WeaponTreeMinionAddedFireDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedFireLowMinionIgniteChance1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 3 additional Fire Damage", "Minions have 8% chance to Ignite", statOrder = { 3679, 9095 }, level = 1, group = "WeaponTreeMinionAddedFireDamageAndMinionIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedFireLowMinionIgniteChance2"] = { type = "Spawn", tier = 2, "Minions deal 2 to 4 additional Fire Damage", "Minions have 8% chance to Ignite", statOrder = { 3679, 9095 }, level = 26, group = "WeaponTreeMinionAddedFireDamageAndMinionIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedFireLowMinionIgniteChance3"] = { type = "Spawn", tier = 3, "Minions deal 4 to 9 additional Fire Damage", "Minions have 8% chance to Ignite", statOrder = { 3679, 9095 }, level = 42, group = "WeaponTreeMinionAddedFireDamageAndMinionIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedFireLowMinionIgniteChance4"] = { type = "Spawn", tier = 4, "Minions deal 8 to 14 additional Fire Damage", "Minions have 8% chance to Ignite", statOrder = { 3679, 9095 }, level = 62, group = "WeaponTreeMinionAddedFireDamageAndMinionIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedFireLowMinionIgniteChance5"] = { type = "Spawn", tier = 5, "Minions deal 18 to 28 additional Fire Damage", "Minions have 8% chance to Ignite", statOrder = { 3679, 9095 }, level = 82, group = "WeaponTreeMinionAddedFireDamageAndMinionIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedFire2hLowMinionIgniteChance1"] = { type = "Spawn", tier = 1, "Minions deal 2 to 6 additional Fire Damage", "Minions have 16% chance to Ignite", statOrder = { 3679, 9095 }, level = 1, group = "WeaponTreeMinionAddedFireDamageAndMinionIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedFire2hLowMinionIgniteChance2"] = { type = "Spawn", tier = 2, "Minions deal 5 to 8 additional Fire Damage", "Minions have 16% chance to Ignite", statOrder = { 3679, 9095 }, level = 26, group = "WeaponTreeMinionAddedFireDamageAndMinionIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedFire2hLowMinionIgniteChance3"] = { type = "Spawn", tier = 3, "Minions deal 9 to 16 additional Fire Damage", "Minions have 16% chance to Ignite", statOrder = { 3679, 9095 }, level = 42, group = "WeaponTreeMinionAddedFireDamageAndMinionIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedFire2hLowMinionIgniteChance4"] = { type = "Spawn", tier = 4, "Minions deal 16 to 26 additional Fire Damage", "Minions have 16% chance to Ignite", statOrder = { 3679, 9095 }, level = 62, group = "WeaponTreeMinionAddedFireDamageAndMinionIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedFire2hLowMinionIgniteChance5"] = { type = "Spawn", tier = 5, "Minions deal 34 to 51 additional Fire Damage", "Minions have 16% chance to Ignite", statOrder = { 3679, 9095 }, level = 82, group = "WeaponTreeMinionAddedFireDamageAndMinionIgniteChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedFireLowImplicitEffect1"] = { type = "Spawn", tier = 1, "25% increased Implicit Modifier magnitudes", "Minions deal 1 to 3 additional Fire Damage", statOrder = { 40, 3679 }, level = 10, group = "WeaponTreeMinionAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedFireLowImplicitEffect2"] = { type = "Spawn", tier = 2, "25% increased Implicit Modifier magnitudes", "Minions deal 2 to 4 additional Fire Damage", statOrder = { 40, 3679 }, level = 30, group = "WeaponTreeMinionAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedFireLowImplicitEffect3"] = { type = "Spawn", tier = 3, "25% increased Implicit Modifier magnitudes", "Minions deal 4 to 9 additional Fire Damage", statOrder = { 40, 3679 }, level = 48, group = "WeaponTreeMinionAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedFireLowImplicitEffect4"] = { type = "Spawn", tier = 4, "25% increased Implicit Modifier magnitudes", "Minions deal 8 to 14 additional Fire Damage", statOrder = { 40, 3679 }, level = 66, group = "WeaponTreeMinionAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedFireLowImplicitEffect5"] = { type = "Spawn", tier = 5, "25% increased Implicit Modifier magnitudes", "Minions deal 18 to 28 additional Fire Damage", statOrder = { 40, 3679 }, level = 84, group = "WeaponTreeMinionAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedFire2hLowImplicitEffect1"] = { type = "Spawn", tier = 1, "25% increased Implicit Modifier magnitudes", "Minions deal 2 to 6 additional Fire Damage", statOrder = { 40, 3679 }, level = 10, group = "WeaponTreeMinionAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedFire2hLowImplicitEffect2"] = { type = "Spawn", tier = 2, "25% increased Implicit Modifier magnitudes", "Minions deal 5 to 8 additional Fire Damage", statOrder = { 40, 3679 }, level = 30, group = "WeaponTreeMinionAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedFire2hLowImplicitEffect3"] = { type = "Spawn", tier = 3, "25% increased Implicit Modifier magnitudes", "Minions deal 9 to 16 additional Fire Damage", statOrder = { 40, 3679 }, level = 48, group = "WeaponTreeMinionAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedFire2hLowImplicitEffect4"] = { type = "Spawn", tier = 4, "25% increased Implicit Modifier magnitudes", "Minions deal 16 to 26 additional Fire Damage", statOrder = { 40, 3679 }, level = 66, group = "WeaponTreeMinionAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedFire2hLowImplicitEffect5"] = { type = "Spawn", tier = 5, "25% increased Implicit Modifier magnitudes", "Minions deal 34 to 51 additional Fire Damage", statOrder = { 40, 3679 }, level = 84, group = "WeaponTreeMinionAddedFireDamageAndImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedColdHighMinionReducedCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "Minions deal 4 to 6 additional Cold Damage", "Minions have 40% reduced Critical Strike Chance", statOrder = { 3678, 9099 }, level = 1, group = "WeaponTreeMinionAddedColdDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedColdHighMinionReducedCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "Minions deal 6 to 10 additional Cold Damage", "Minions have 40% reduced Critical Strike Chance", statOrder = { 3678, 9099 }, level = 26, group = "WeaponTreeMinionAddedColdDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedColdHighMinionReducedCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "Minions deal 12 to 18 additional Cold Damage", "Minions have 40% reduced Critical Strike Chance", statOrder = { 3678, 9099 }, level = 42, group = "WeaponTreeMinionAddedColdDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedColdHighMinionReducedCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "Minions deal 19 to 30 additional Cold Damage", "Minions have 40% reduced Critical Strike Chance", statOrder = { 3678, 9099 }, level = 62, group = "WeaponTreeMinionAddedColdDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedColdHighMinionReducedCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "Minions deal 39 to 59 additional Cold Damage", "Minions have 40% reduced Critical Strike Chance", statOrder = { 3678, 9099 }, level = 82, group = "WeaponTreeMinionAddedColdDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedCold2hHighMinionReducedCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "Minions deal 7 to 10 additional Cold Damage", "Minions have 80% reduced Critical Strike Chance", statOrder = { 3678, 9099 }, level = 1, group = "WeaponTreeMinionAddedColdDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedCold2hHighMinionReducedCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "Minions deal 11 to 17 additional Cold Damage", "Minions have 80% reduced Critical Strike Chance", statOrder = { 3678, 9099 }, level = 26, group = "WeaponTreeMinionAddedColdDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedCold2hHighMinionReducedCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "Minions deal 21 to 34 additional Cold Damage", "Minions have 80% reduced Critical Strike Chance", statOrder = { 3678, 9099 }, level = 42, group = "WeaponTreeMinionAddedColdDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedCold2hHighMinionReducedCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "Minions deal 37 to 55 additional Cold Damage", "Minions have 80% reduced Critical Strike Chance", statOrder = { 3678, 9099 }, level = 62, group = "WeaponTreeMinionAddedColdDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedCold2hHighMinionReducedCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "Minions deal 73 to 109 additional Cold Damage", "Minions have 80% reduced Critical Strike Chance", statOrder = { 3678, 9099 }, level = 82, group = "WeaponTreeMinionAddedColdDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedCold1"] = { type = "Spawn", tier = 1, "Minions deal 2 to 6 additional Cold Damage", statOrder = { 3678 }, level = 1, group = "WeaponTreeMinionAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedCold2"] = { type = "Spawn", tier = 2, "Minions deal 5 to 8 additional Cold Damage", statOrder = { 3678 }, level = 26, group = "WeaponTreeMinionAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedCold3"] = { type = "Spawn", tier = 3, "Minions deal 10 to 17 additional Cold Damage", statOrder = { 3678 }, level = 42, group = "WeaponTreeMinionAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedCold4"] = { type = "Spawn", tier = 4, "Minions deal 18 to 28 additional Cold Damage", statOrder = { 3678 }, level = 62, group = "WeaponTreeMinionAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedCold5"] = { type = "Spawn", tier = 5, "Minions deal 37 to 56 additional Cold Damage", statOrder = { 3678 }, level = 82, group = "WeaponTreeMinionAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedCold2h1"] = { type = "Spawn", tier = 1, "Minions deal 5 to 10 additional Cold Damage", statOrder = { 3678 }, level = 1, group = "WeaponTreeMinionAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedCold2h2"] = { type = "Spawn", tier = 2, "Minions deal 10 to 16 additional Cold Damage", statOrder = { 3678 }, level = 26, group = "WeaponTreeMinionAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedCold2h3"] = { type = "Spawn", tier = 3, "Minions deal 20 to 32 additional Cold Damage", statOrder = { 3678 }, level = 42, group = "WeaponTreeMinionAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedCold2h4"] = { type = "Spawn", tier = 4, "Minions deal 34 to 52 additional Cold Damage", statOrder = { 3678 }, level = 62, group = "WeaponTreeMinionAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedCold2h5"] = { type = "Spawn", tier = 5, "Minions deal 68 to 103 additional Cold Damage", statOrder = { 3678 }, level = 82, group = "WeaponTreeMinionAddedColdDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedColdLowMinionFreezeChance1"] = { type = "Spawn", tier = 1, "Minions deal 2 to 5 additional Cold Damage", "Minions have 8% chance to Freeze", statOrder = { 3678, 9092 }, level = 1, group = "WeaponTreeMinionAddedColdDamageAndMinionFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedColdLowMinionFreezeChance2"] = { type = "Spawn", tier = 2, "Minions deal 3 to 7 additional Cold Damage", "Minions have 8% chance to Freeze", statOrder = { 3678, 9092 }, level = 26, group = "WeaponTreeMinionAddedColdDamageAndMinionFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedColdLowMinionFreezeChance3"] = { type = "Spawn", tier = 3, "Minions deal 8 to 14 additional Cold Damage", "Minions have 8% chance to Freeze", statOrder = { 3678, 9092 }, level = 42, group = "WeaponTreeMinionAddedColdDamageAndMinionFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedColdLowMinionFreezeChance4"] = { type = "Spawn", tier = 4, "Minions deal 14 to 21 additional Cold Damage", "Minions have 8% chance to Freeze", statOrder = { 3678, 9092 }, level = 62, group = "WeaponTreeMinionAddedColdDamageAndMinionFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedColdLowMinionFreezeChance5"] = { type = "Spawn", tier = 5, "Minions deal 29 to 43 additional Cold Damage", "Minions have 8% chance to Freeze", statOrder = { 3678, 9092 }, level = 82, group = "WeaponTreeMinionAddedColdDamageAndMinionFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedCold2hLowMinionFreezeChance1"] = { type = "Spawn", tier = 1, "Minions deal 4 to 7 additional Cold Damage", "Minions have 16% chance to Freeze", statOrder = { 3678, 9092 }, level = 1, group = "WeaponTreeMinionAddedColdDamageAndMinionFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedCold2hLowMinionFreezeChance2"] = { type = "Spawn", tier = 2, "Minions deal 7 to 12 additional Cold Damage", "Minions have 16% chance to Freeze", statOrder = { 3678, 9092 }, level = 26, group = "WeaponTreeMinionAddedColdDamageAndMinionFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedCold2hLowMinionFreezeChance3"] = { type = "Spawn", tier = 3, "Minions deal 15 to 24 additional Cold Damage", "Minions have 16% chance to Freeze", statOrder = { 3678, 9092 }, level = 42, group = "WeaponTreeMinionAddedColdDamageAndMinionFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedCold2hLowMinionFreezeChance4"] = { type = "Spawn", tier = 4, "Minions deal 26 to 40 additional Cold Damage", "Minions have 16% chance to Freeze", statOrder = { 3678, 9092 }, level = 62, group = "WeaponTreeMinionAddedColdDamageAndMinionFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedCold2hLowMinionFreezeChance5"] = { type = "Spawn", tier = 5, "Minions deal 53 to 79 additional Cold Damage", "Minions have 16% chance to Freeze", statOrder = { 3678, 9092 }, level = 82, group = "WeaponTreeMinionAddedColdDamageAndMinionFreezeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedColdLowMinionAttackAndCastSpeed1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 3 additional Cold Damage", "Minions have 6% increased Attack and Cast Speed", statOrder = { 3678, 9080 }, level = 10, group = "WeaponTreeMinionAddedColdDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedColdLowMinionAttackAndCastSpeed2"] = { type = "Spawn", tier = 2, "Minions deal 2 to 4 additional Cold Damage", "Minions have 6% increased Attack and Cast Speed", statOrder = { 3678, 9080 }, level = 30, group = "WeaponTreeMinionAddedColdDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedColdLowMinionAttackAndCastSpeed3"] = { type = "Spawn", tier = 3, "Minions deal 4 to 8 additional Cold Damage", "Minions have 6% increased Attack and Cast Speed", statOrder = { 3678, 9080 }, level = 48, group = "WeaponTreeMinionAddedColdDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedColdLowMinionAttackAndCastSpeed4"] = { type = "Spawn", tier = 4, "Minions deal 8 to 14 additional Cold Damage", "Minions have 6% increased Attack and Cast Speed", statOrder = { 3678, 9080 }, level = 66, group = "WeaponTreeMinionAddedColdDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedColdLowMinionAttackAndCastSpeed5"] = { type = "Spawn", tier = 5, "Minions deal 17 to 25 additional Cold Damage", "Minions have 6% increased Attack and Cast Speed", statOrder = { 3678, 9080 }, level = 84, group = "WeaponTreeMinionAddedColdDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedCold2hLowMinionAttackAndCastSpeed1"] = { type = "Spawn", tier = 1, "Minions deal 2 to 5 additional Cold Damage", "Minions have 10% increased Attack and Cast Speed", statOrder = { 3678, 9080 }, level = 10, group = "WeaponTreeMinionAddedColdDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedCold2hLowMinionAttackAndCastSpeed2"] = { type = "Spawn", tier = 2, "Minions deal 5 to 8 additional Cold Damage", "Minions have 10% increased Attack and Cast Speed", statOrder = { 3678, 9080 }, level = 30, group = "WeaponTreeMinionAddedColdDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedCold2hLowMinionAttackAndCastSpeed3"] = { type = "Spawn", tier = 3, "Minions deal 9 to 15 additional Cold Damage", "Minions have 10% increased Attack and Cast Speed", statOrder = { 3678, 9080 }, level = 48, group = "WeaponTreeMinionAddedColdDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedCold2hLowMinionAttackAndCastSpeed4"] = { type = "Spawn", tier = 4, "Minions deal 16 to 25 additional Cold Damage", "Minions have 10% increased Attack and Cast Speed", statOrder = { 3678, 9080 }, level = 66, group = "WeaponTreeMinionAddedColdDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedCold2hLowMinionAttackAndCastSpeed5"] = { type = "Spawn", tier = 5, "Minions deal 32 to 47 additional Cold Damage", "Minions have 10% increased Attack and Cast Speed", statOrder = { 3678, 9080 }, level = 84, group = "WeaponTreeMinionAddedColdDamageAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedLightningHighDamageTaken1"] = { type = "Spawn", tier = 1, "4% increased Lightning Damage taken", "Minions deal 1 to 9 additional Lightning Damage", statOrder = { 3296, 3680 }, level = 1, group = "WeaponTreeMinionAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedLightningHighDamageTaken2"] = { type = "Spawn", tier = 2, "4% increased Lightning Damage taken", "Minions deal 1 to 15 additional Lightning Damage", statOrder = { 3296, 3680 }, level = 26, group = "WeaponTreeMinionAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedLightningHighDamageTaken3"] = { type = "Spawn", tier = 3, "4% increased Lightning Damage taken", "Minions deal 1 to 29 additional Lightning Damage", statOrder = { 3296, 3680 }, level = 42, group = "WeaponTreeMinionAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedLightningHighDamageTaken4"] = { type = "Spawn", tier = 4, "4% increased Lightning Damage taken", "Minions deal 2 to 48 additional Lightning Damage", statOrder = { 3296, 3680 }, level = 62, group = "WeaponTreeMinionAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedLightningHighDamageTaken5"] = { type = "Spawn", tier = 5, "4% increased Lightning Damage taken", "Minions deal 5 to 94 additional Lightning Damage", statOrder = { 3296, 3680 }, level = 82, group = "WeaponTreeMinionAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedLightning2hHighDamageTaken1"] = { type = "Spawn", tier = 1, "6% increased Lightning Damage taken", "Minions deal 1 to 16 additional Lightning Damage", statOrder = { 3296, 3680 }, level = 1, group = "WeaponTreeMinionAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedLightning2hHighDamageTaken2"] = { type = "Spawn", tier = 2, "6% increased Lightning Damage taken", "Minions deal 1 to 28 additional Lightning Damage", statOrder = { 3296, 3680 }, level = 26, group = "WeaponTreeMinionAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedLightning2hHighDamageTaken3"] = { type = "Spawn", tier = 3, "6% increased Lightning Damage taken", "Minions deal 2 to 53 additional Lightning Damage", statOrder = { 3296, 3680 }, level = 42, group = "WeaponTreeMinionAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedLightning2hHighDamageTaken4"] = { type = "Spawn", tier = 4, "6% increased Lightning Damage taken", "Minions deal 4 to 88 additional Lightning Damage", statOrder = { 3296, 3680 }, level = 62, group = "WeaponTreeMinionAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedLightning2hHighDamageTaken5"] = { type = "Spawn", tier = 5, "6% increased Lightning Damage taken", "Minions deal 9 to 173 additional Lightning Damage", statOrder = { 3296, 3680 }, level = 82, group = "WeaponTreeMinionAddedLightningDamageAndDamageTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedLightning1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 6 additional Lightning Damage", statOrder = { 3680 }, level = 1, group = "WeaponTreeMinionAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedLightning2"] = { type = "Spawn", tier = 2, "Minions deal 1 to 12 additional Lightning Damage", statOrder = { 3680 }, level = 26, group = "WeaponTreeMinionAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedLightning3"] = { type = "Spawn", tier = 3, "Minions deal 1 to 22 additional Lightning Damage", statOrder = { 3680 }, level = 42, group = "WeaponTreeMinionAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedLightning4"] = { type = "Spawn", tier = 4, "Minions deal 2 to 37 additional Lightning Damage", statOrder = { 3680 }, level = 62, group = "WeaponTreeMinionAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedLightning5"] = { type = "Spawn", tier = 5, "Minions deal 4 to 72 additional Lightning Damage", statOrder = { 3680 }, level = 82, group = "WeaponTreeMinionAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedLightning2h1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 12 additional Lightning Damage", statOrder = { 3680 }, level = 1, group = "WeaponTreeMinionAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedLightning2h2"] = { type = "Spawn", tier = 2, "Minions deal 1 to 21 additional Lightning Damage", statOrder = { 3680 }, level = 26, group = "WeaponTreeMinionAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedLightning2h3"] = { type = "Spawn", tier = 3, "Minions deal 2 to 41 additional Lightning Damage", statOrder = { 3680 }, level = 42, group = "WeaponTreeMinionAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedLightning2h4"] = { type = "Spawn", tier = 4, "Minions deal 3 to 68 additional Lightning Damage", statOrder = { 3680 }, level = 62, group = "WeaponTreeMinionAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedLightning2h5"] = { type = "Spawn", tier = 5, "Minions deal 7 to 133 additional Lightning Damage", statOrder = { 3680 }, level = 82, group = "WeaponTreeMinionAddedLightningDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedLightningLowMinionShockChance1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 5 additional Lightning Damage", "Minions have 8% chance to Shock", statOrder = { 3680, 9097 }, level = 1, group = "WeaponTreeMinionAddedLightningDamageAndMinionShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedLightningLowMinionShockChance2"] = { type = "Spawn", tier = 2, "Minions deal 1 to 7 additional Lightning Damage", "Minions have 8% chance to Shock", statOrder = { 3680, 9097 }, level = 26, group = "WeaponTreeMinionAddedLightningDamageAndMinionShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedLightningLowMinionShockChance3"] = { type = "Spawn", tier = 3, "Minions deal 1 to 14 additional Lightning Damage", "Minions have 8% chance to Shock", statOrder = { 3680, 9097 }, level = 42, group = "WeaponTreeMinionAddedLightningDamageAndMinionShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedLightningLowMinionShockChance4"] = { type = "Spawn", tier = 4, "Minions deal 2 to 22 additional Lightning Damage", "Minions have 8% chance to Shock", statOrder = { 3680, 9097 }, level = 62, group = "WeaponTreeMinionAddedLightningDamageAndMinionShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedLightningLowMinionShockChance5"] = { type = "Spawn", tier = 5, "Minions deal 2 to 43 additional Lightning Damage", "Minions have 8% chance to Shock", statOrder = { 3680, 9097 }, level = 82, group = "WeaponTreeMinionAddedLightningDamageAndMinionShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedLightning2hLowMinionShockChance1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 7 additional Lightning Damage", "Minions have 16% chance to Shock", statOrder = { 3680, 9097 }, level = 1, group = "WeaponTreeMinionAddedLightningDamageAndMinionShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedLightning2hLowMinionShockChance2"] = { type = "Spawn", tier = 2, "Minions deal 1 to 13 additional Lightning Damage", "Minions have 16% chance to Shock", statOrder = { 3680, 9097 }, level = 26, group = "WeaponTreeMinionAddedLightningDamageAndMinionShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedLightning2hLowMinionShockChance3"] = { type = "Spawn", tier = 3, "Minions deal 2 to 24 additional Lightning Damage", "Minions have 16% chance to Shock", statOrder = { 3680, 9097 }, level = 42, group = "WeaponTreeMinionAddedLightningDamageAndMinionShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedLightning2hLowMinionShockChance4"] = { type = "Spawn", tier = 4, "Minions deal 3 to 41 additional Lightning Damage", "Minions have 16% chance to Shock", statOrder = { 3680, 9097 }, level = 62, group = "WeaponTreeMinionAddedLightningDamageAndMinionShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedLightning2hLowMinionShockChance5"] = { type = "Spawn", tier = 5, "Minions deal 4 to 80 additional Lightning Damage", "Minions have 16% chance to Shock", statOrder = { 3680, 9097 }, level = 82, group = "WeaponTreeMinionAddedLightningDamageAndMinionShockChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedLightningLowMinionCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 5 additional Lightning Damage", "Minions have 25% increased Critical Strike Chance", statOrder = { 3680, 9099 }, level = 10, group = "WeaponTreeMinionAddedLightningDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedLightningLowMinionCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "Minions deal 1 to 7 additional Lightning Damage", "Minions have 25% increased Critical Strike Chance", statOrder = { 3680, 9099 }, level = 30, group = "WeaponTreeMinionAddedLightningDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedLightningLowMinionCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "Minions deal 1 to 14 additional Lightning Damage", "Minions have 25% increased Critical Strike Chance", statOrder = { 3680, 9099 }, level = 48, group = "WeaponTreeMinionAddedLightningDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedLightningLowMinionCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "Minions deal 2 to 22 additional Lightning Damage", "Minions have 25% increased Critical Strike Chance", statOrder = { 3680, 9099 }, level = 66, group = "WeaponTreeMinionAddedLightningDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedLightningLowMinionCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "Minions deal 2 to 43 additional Lightning Damage", "Minions have 25% increased Critical Strike Chance", statOrder = { 3680, 9099 }, level = 84, group = "WeaponTreeMinionAddedLightningDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedLightning2hLowMinionCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 7 additional Lightning Damage", "Minions have 40% increased Critical Strike Chance", statOrder = { 3680, 9099 }, level = 10, group = "WeaponTreeMinionAddedLightningDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedLightning2hLowMinionCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "Minions deal 1 to 13 additional Lightning Damage", "Minions have 40% increased Critical Strike Chance", statOrder = { 3680, 9099 }, level = 30, group = "WeaponTreeMinionAddedLightningDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedLightning2hLowMinionCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "Minions deal 2 to 24 additional Lightning Damage", "Minions have 40% increased Critical Strike Chance", statOrder = { 3680, 9099 }, level = 48, group = "WeaponTreeMinionAddedLightningDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedLightning2hLowMinionCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "Minions deal 3 to 41 additional Lightning Damage", "Minions have 40% increased Critical Strike Chance", statOrder = { 3680, 9099 }, level = 66, group = "WeaponTreeMinionAddedLightningDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedLightning2hLowMinionCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "Minions deal 4 to 80 additional Lightning Damage", "Minions have 40% increased Critical Strike Chance", statOrder = { 3680, 9099 }, level = 84, group = "WeaponTreeMinionAddedLightningDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedChaosHighReducedLife1"] = { type = "Spawn", tier = 1, "6% reduced maximum Life", "Minions deal 2 to 5 additional Chaos Damage", statOrder = { 1482, 3677 }, level = 8, group = "WeaponTreeMinionAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedChaosHighReducedLife2"] = { type = "Spawn", tier = 2, "6% reduced maximum Life", "Minions deal 5 to 7 additional Chaos Damage", statOrder = { 1482, 3677 }, level = 28, group = "WeaponTreeMinionAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedChaosHighReducedLife3"] = { type = "Spawn", tier = 3, "6% reduced maximum Life", "Minions deal 8 to 14 additional Chaos Damage", statOrder = { 1482, 3677 }, level = 44, group = "WeaponTreeMinionAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedChaosHighReducedLife4"] = { type = "Spawn", tier = 4, "6% reduced maximum Life", "Minions deal 14 to 22 additional Chaos Damage", statOrder = { 1482, 3677 }, level = 70, group = "WeaponTreeMinionAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedChaosHighReducedLife5"] = { type = "Spawn", tier = 5, "6% reduced maximum Life", "Minions deal 28 to 42 additional Chaos Damage", statOrder = { 1482, 3677 }, level = 85, group = "WeaponTreeMinionAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedChaos2hHighReducedLife1"] = { type = "Spawn", tier = 1, "10% reduced maximum Life", "Minions deal 4 to 7 additional Chaos Damage", statOrder = { 1482, 3677 }, level = 8, group = "WeaponTreeMinionAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedChaos2hHighReducedLife2"] = { type = "Spawn", tier = 2, "10% reduced maximum Life", "Minions deal 7 to 12 additional Chaos Damage", statOrder = { 1482, 3677 }, level = 28, group = "WeaponTreeMinionAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedChaos2hHighReducedLife3"] = { type = "Spawn", tier = 3, "10% reduced maximum Life", "Minions deal 14 to 22 additional Chaos Damage", statOrder = { 1482, 3677 }, level = 44, group = "WeaponTreeMinionAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedChaos2hHighReducedLife4"] = { type = "Spawn", tier = 4, "10% reduced maximum Life", "Minions deal 24 to 37 additional Chaos Damage", statOrder = { 1482, 3677 }, level = 70, group = "WeaponTreeMinionAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedChaos2hHighReducedLife5"] = { type = "Spawn", tier = 5, "10% reduced maximum Life", "Minions deal 47 to 71 additional Chaos Damage", statOrder = { 1482, 3677 }, level = 85, group = "WeaponTreeMinionAddedChaosDamageAndMaximumLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedChaos1"] = { type = "Spawn", tier = 1, "Minions deal 1 to 5 additional Chaos Damage", statOrder = { 3677 }, level = 8, group = "WeaponTreeMinionAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedChaos2"] = { type = "Spawn", tier = 2, "Minions deal 2 to 6 additional Chaos Damage", statOrder = { 3677 }, level = 28, group = "WeaponTreeMinionAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedChaos3"] = { type = "Spawn", tier = 3, "Minions deal 6 to 10 additional Chaos Damage", statOrder = { 3677 }, level = 44, group = "WeaponTreeMinionAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedChaos4"] = { type = "Spawn", tier = 4, "Minions deal 11 to 17 additional Chaos Damage", statOrder = { 3677 }, level = 70, group = "WeaponTreeMinionAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedChaos5"] = { type = "Spawn", tier = 5, "Minions deal 21 to 33 additional Chaos Damage", statOrder = { 3677 }, level = 85, group = "WeaponTreeMinionAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedChaos2h1"] = { type = "Spawn", tier = 1, "Minions deal 2 to 5 additional Chaos Damage", statOrder = { 3677 }, level = 8, group = "WeaponTreeMinionAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedChaos2h2"] = { type = "Spawn", tier = 2, "Minions deal 5 to 10 additional Chaos Damage", statOrder = { 3677 }, level = 28, group = "WeaponTreeMinionAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedChaos2h3"] = { type = "Spawn", tier = 3, "Minions deal 10 to 17 additional Chaos Damage", statOrder = { 3677 }, level = 44, group = "WeaponTreeMinionAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedChaos2h4"] = { type = "Spawn", tier = 4, "Minions deal 18 to 28 additional Chaos Damage", statOrder = { 3677 }, level = 70, group = "WeaponTreeMinionAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedChaos2h5"] = { type = "Spawn", tier = 5, "Minions deal 36 to 55 additional Chaos Damage", statOrder = { 3677 }, level = 85, group = "WeaponTreeMinionAddedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedChaosLowMinionPoisonChance1"] = { type = "Spawn", tier = 1, "Minions have 8% chance to Poison Enemies on Hit", "Minions deal 1 to 3 additional Chaos Damage", statOrder = { 3082, 3677 }, level = 8, group = "WeaponTreeMinionAddedChaosDamageAndMinionPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedChaosLowMinionPoisonChance2"] = { type = "Spawn", tier = 2, "Minions have 8% chance to Poison Enemies on Hit", "Minions deal 2 to 4 additional Chaos Damage", statOrder = { 3082, 3677 }, level = 28, group = "WeaponTreeMinionAddedChaosDamageAndMinionPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedChaosLowMinionPoisonChance3"] = { type = "Spawn", tier = 3, "Minions have 8% chance to Poison Enemies on Hit", "Minions deal 4 to 6 additional Chaos Damage", statOrder = { 3082, 3677 }, level = 44, group = "WeaponTreeMinionAddedChaosDamageAndMinionPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedChaosLowMinionPoisonChance4"] = { type = "Spawn", tier = 4, "Minions have 8% chance to Poison Enemies on Hit", "Minions deal 6 to 10 additional Chaos Damage", statOrder = { 3082, 3677 }, level = 70, group = "WeaponTreeMinionAddedChaosDamageAndMinionPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedChaosLowMinionPoisonChance5"] = { type = "Spawn", tier = 5, "Minions have 8% chance to Poison Enemies on Hit", "Minions deal 13 to 20 additional Chaos Damage", statOrder = { 3082, 3677 }, level = 85, group = "WeaponTreeMinionAddedChaosDamageAndMinionPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedChaos2hLowMinionPoisonChance1"] = { type = "Spawn", tier = 1, "Minions have 16% chance to Poison Enemies on Hit", "Minions deal 1 to 3 additional Chaos Damage", statOrder = { 3082, 3677 }, level = 8, group = "WeaponTreeMinionAddedChaosDamageAndMinionPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedChaos2hLowMinionPoisonChance2"] = { type = "Spawn", tier = 2, "Minions have 16% chance to Poison Enemies on Hit", "Minions deal 3 to 6 additional Chaos Damage", statOrder = { 3082, 3677 }, level = 28, group = "WeaponTreeMinionAddedChaosDamageAndMinionPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedChaos2hLowMinionPoisonChance3"] = { type = "Spawn", tier = 3, "Minions have 16% chance to Poison Enemies on Hit", "Minions deal 7 to 10 additional Chaos Damage", statOrder = { 3082, 3677 }, level = 44, group = "WeaponTreeMinionAddedChaosDamageAndMinionPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedChaos2hLowMinionPoisonChance4"] = { type = "Spawn", tier = 4, "Minions have 16% chance to Poison Enemies on Hit", "Minions deal 11 to 17 additional Chaos Damage", statOrder = { 3082, 3677 }, level = 70, group = "WeaponTreeMinionAddedChaosDamageAndMinionPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedChaos2hLowMinionPoisonChance5"] = { type = "Spawn", tier = 5, "Minions have 16% chance to Poison Enemies on Hit", "Minions deal 22 to 33 additional Chaos Damage", statOrder = { 3082, 3677 }, level = 85, group = "WeaponTreeMinionAddedChaosDamageAndMinionPoisonChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedChaosLowChaosResistance1"] = { type = "Spawn", tier = 1, "+7% to Chaos Resistance", "Minions deal 1 to 3 additional Chaos Damage", statOrder = { 1552, 3677 }, level = 8, group = "WeaponTreeMinionAddedChaosDamageAndChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedChaosLowChaosResistance2"] = { type = "Spawn", tier = 2, "+7% to Chaos Resistance", "Minions deal 2 to 4 additional Chaos Damage", statOrder = { 1552, 3677 }, level = 28, group = "WeaponTreeMinionAddedChaosDamageAndChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedChaosLowChaosResistance3"] = { type = "Spawn", tier = 3, "+7% to Chaos Resistance", "Minions deal 4 to 6 additional Chaos Damage", statOrder = { 1552, 3677 }, level = 44, group = "WeaponTreeMinionAddedChaosDamageAndChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedChaosLowChaosResistance4"] = { type = "Spawn", tier = 4, "+7% to Chaos Resistance", "Minions deal 6 to 10 additional Chaos Damage", statOrder = { 1552, 3677 }, level = 70, group = "WeaponTreeMinionAddedChaosDamageAndChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedChaosLowChaosResistance5"] = { type = "Spawn", tier = 5, "+7% to Chaos Resistance", "Minions deal 13 to 20 additional Chaos Damage", statOrder = { 1552, 3677 }, level = 85, group = "WeaponTreeMinionAddedChaosDamageAndChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedChaos2hLowChaosResistance1"] = { type = "Spawn", tier = 1, "+13% to Chaos Resistance", "Minions deal 1 to 3 additional Chaos Damage", statOrder = { 1552, 3677 }, level = 8, group = "WeaponTreeMinionAddedChaosDamageAndChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedChaos2hLowChaosResistance2"] = { type = "Spawn", tier = 2, "+13% to Chaos Resistance", "Minions deal 3 to 6 additional Chaos Damage", statOrder = { 1552, 3677 }, level = 28, group = "WeaponTreeMinionAddedChaosDamageAndChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedChaos2hLowChaosResistance3"] = { type = "Spawn", tier = 3, "+13% to Chaos Resistance", "Minions deal 7 to 10 additional Chaos Damage", statOrder = { 1552, 3677 }, level = 44, group = "WeaponTreeMinionAddedChaosDamageAndChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1250, 1250, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedChaos2hLowChaosResistance4"] = { type = "Spawn", tier = 4, "+13% to Chaos Resistance", "Minions deal 11 to 17 additional Chaos Damage", statOrder = { 1552, 3677 }, level = 70, group = "WeaponTreeMinionAddedChaosDamageAndChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 630, 630, 0 }, modTags = { }, }, + ["WeaponTreeMinionAddedChaos2hLowChaosResistance5"] = { type = "Spawn", tier = 5, "+13% to Chaos Resistance", "Minions deal 22 to 33 additional Chaos Damage", statOrder = { 1552, 3677 }, level = 85, group = "WeaponTreeMinionAddedChaosDamageAndChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 320, 320, 0 }, modTags = { }, }, + ["WeaponTreeMinionDamageHighReducedMinionCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "Minions deal 14% increased Damage", "Minions have 40% reduced Critical Strike Chance", statOrder = { 1882, 9099 }, level = 1, group = "WeaponTreeMinionDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionDamageHighReducedMinionCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "Minions deal 21% increased Damage", "Minions have 40% reduced Critical Strike Chance", statOrder = { 1882, 9099 }, level = 21, group = "WeaponTreeMinionDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionDamageHighReducedMinionCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "Minions deal 28% increased Damage", "Minions have 40% reduced Critical Strike Chance", statOrder = { 1882, 9099 }, level = 46, group = "WeaponTreeMinionDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionDamageHighReducedMinionCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "Minions deal 35% increased Damage", "Minions have 40% reduced Critical Strike Chance", statOrder = { 1882, 9099 }, level = 65, group = "WeaponTreeMinionDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3750, 3750, 0 }, modTags = { }, }, + ["WeaponTreeMinionDamageHighReducedMinionCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "Minions deal 42% increased Damage", "Minions have 40% reduced Critical Strike Chance", statOrder = { 1882, 9099 }, level = 77, group = "WeaponTreeMinionDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1870, 1870, 0 }, modTags = { }, }, + ["WeaponTreeMinionDamage2hHighReducedMinionCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "Minions deal 22% increased Damage", "Minions have 80% reduced Critical Strike Chance", statOrder = { 1882, 9099 }, level = 1, group = "WeaponTreeMinionDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionDamage2hHighReducedMinionCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "Minions deal 34% increased Damage", "Minions have 80% reduced Critical Strike Chance", statOrder = { 1882, 9099 }, level = 21, group = "WeaponTreeMinionDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionDamage2hHighReducedMinionCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "Minions deal 45% increased Damage", "Minions have 80% reduced Critical Strike Chance", statOrder = { 1882, 9099 }, level = 46, group = "WeaponTreeMinionDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionDamage2hHighReducedMinionCriticalStrikeChance4"] = { type = "Spawn", tier = 4, "Minions deal 56% increased Damage", "Minions have 80% reduced Critical Strike Chance", statOrder = { 1882, 9099 }, level = 65, group = "WeaponTreeMinionDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3750, 3750, 0 }, modTags = { }, }, + ["WeaponTreeMinionDamage2hHighReducedMinionCriticalStrikeChance5"] = { type = "Spawn", tier = 5, "Minions deal 68% increased Damage", "Minions have 80% reduced Critical Strike Chance", statOrder = { 1882, 9099 }, level = 77, group = "WeaponTreeMinionDamageAndMinionCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1870, 1870, 0 }, modTags = { }, }, + ["WeaponTreeMinionDamage1"] = { type = "Spawn", tier = 1, "Minions deal 10% increased Damage", statOrder = { 1882 }, level = 1, group = "WeaponTreeMinionDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 15000, 15000, 0 }, modTags = { }, }, + ["WeaponTreeMinionDamage2"] = { type = "Spawn", tier = 2, "Minions deal 15% increased Damage", statOrder = { 1882 }, level = 21, group = "WeaponTreeMinionDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 15000, 15000, 0 }, modTags = { }, }, + ["WeaponTreeMinionDamage3"] = { type = "Spawn", tier = 3, "Minions deal 20% increased Damage", statOrder = { 1882 }, level = 46, group = "WeaponTreeMinionDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 15000, 15000, 0 }, modTags = { }, }, + ["WeaponTreeMinionDamage4"] = { type = "Spawn", tier = 4, "Minions deal 25% increased Damage", statOrder = { 1882 }, level = 65, group = "WeaponTreeMinionDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, modTags = { }, }, + ["WeaponTreeMinionDamage5"] = { type = "Spawn", tier = 5, "Minions deal 30% increased Damage", statOrder = { 1882 }, level = 77, group = "WeaponTreeMinionDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3750, 3750, 0 }, modTags = { }, }, + ["WeaponTreeMinionDamage2h1"] = { type = "Spawn", tier = 1, "Minions deal 16% increased Damage", statOrder = { 1882 }, level = 1, group = "WeaponTreeMinionDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 15000, 15000, 0 }, modTags = { }, }, + ["WeaponTreeMinionDamage2h2"] = { type = "Spawn", tier = 2, "Minions deal 24% increased Damage", statOrder = { 1882 }, level = 21, group = "WeaponTreeMinionDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 15000, 15000, 0 }, modTags = { }, }, + ["WeaponTreeMinionDamage2h3"] = { type = "Spawn", tier = 3, "Minions deal 32% increased Damage", statOrder = { 1882 }, level = 46, group = "WeaponTreeMinionDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 15000, 15000, 0 }, modTags = { }, }, + ["WeaponTreeMinionDamage2h4"] = { type = "Spawn", tier = 4, "Minions deal 40% increased Damage", statOrder = { 1882 }, level = 65, group = "WeaponTreeMinionDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, modTags = { }, }, + ["WeaponTreeMinionDamage2h5"] = { type = "Spawn", tier = 5, "Minions deal 48% increased Damage", statOrder = { 1882 }, level = 77, group = "WeaponTreeMinionDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3750, 3750, 0 }, modTags = { }, }, + ["WeaponTreeMinionDamageLowMana1"] = { type = "Spawn", tier = 1, "10% increased maximum Mana", "Minions deal 7% increased Damage", statOrder = { 1491, 1882 }, level = 1, group = "WeaponTreeMinionDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, modTags = { }, }, + ["WeaponTreeMinionDamageLowMana2"] = { type = "Spawn", tier = 2, "10% increased maximum Mana", "Minions deal 10% increased Damage", statOrder = { 1491, 1882 }, level = 21, group = "WeaponTreeMinionDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, modTags = { }, }, + ["WeaponTreeMinionDamageLowMana3"] = { type = "Spawn", tier = 3, "10% increased maximum Mana", "Minions deal 13% increased Damage", statOrder = { 1491, 1882 }, level = 46, group = "WeaponTreeMinionDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, modTags = { }, }, + ["WeaponTreeMinionDamageLowMana4"] = { type = "Spawn", tier = 4, "10% increased maximum Mana", "Minions deal 17% increased Damage", statOrder = { 1491, 1882 }, level = 65, group = "WeaponTreeMinionDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3750, 3750, 0 }, modTags = { }, }, + ["WeaponTreeMinionDamageLowMana5"] = { type = "Spawn", tier = 5, "10% increased maximum Mana", "Minions deal 20% increased Damage", statOrder = { 1491, 1882 }, level = 77, group = "WeaponTreeMinionDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1870, 1870, 0 }, modTags = { }, }, + ["WeaponTreeMinionDamage2hLowMana1"] = { type = "Spawn", tier = 1, "20% increased maximum Mana", "Minions deal 11% increased Damage", statOrder = { 1491, 1882 }, level = 1, group = "WeaponTreeMinionDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, modTags = { }, }, + ["WeaponTreeMinionDamage2hLowMana2"] = { type = "Spawn", tier = 2, "20% increased maximum Mana", "Minions deal 16% increased Damage", statOrder = { 1491, 1882 }, level = 21, group = "WeaponTreeMinionDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, modTags = { }, }, + ["WeaponTreeMinionDamage2hLowMana3"] = { type = "Spawn", tier = 3, "20% increased maximum Mana", "Minions deal 21% increased Damage", statOrder = { 1491, 1882 }, level = 46, group = "WeaponTreeMinionDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, modTags = { }, }, + ["WeaponTreeMinionDamage2hLowMana4"] = { type = "Spawn", tier = 4, "20% increased maximum Mana", "Minions deal 26% increased Damage", statOrder = { 1491, 1882 }, level = 65, group = "WeaponTreeMinionDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3750, 3750, 0 }, modTags = { }, }, + ["WeaponTreeMinionDamage2hLowMana5"] = { type = "Spawn", tier = 5, "20% increased maximum Mana", "Minions deal 32% increased Damage", statOrder = { 1491, 1882 }, level = 77, group = "WeaponTreeMinionDamageAndIncreasedMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1870, 1870, 0 }, modTags = { }, }, + ["WeaponTreeMinionDamageLowEnergyShield1"] = { type = "Spawn", tier = 1, "10% increased maximum Energy Shield", "Minions deal 7% increased Damage", statOrder = { 1472, 1882 }, level = 1, group = "WeaponTreeMinionDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, modTags = { }, }, + ["WeaponTreeMinionDamageLowEnergyShield2"] = { type = "Spawn", tier = 2, "10% increased maximum Energy Shield", "Minions deal 10% increased Damage", statOrder = { 1472, 1882 }, level = 21, group = "WeaponTreeMinionDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, modTags = { }, }, + ["WeaponTreeMinionDamageLowEnergyShield3"] = { type = "Spawn", tier = 3, "10% increased maximum Energy Shield", "Minions deal 13% increased Damage", statOrder = { 1472, 1882 }, level = 46, group = "WeaponTreeMinionDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, modTags = { }, }, + ["WeaponTreeMinionDamageLowEnergyShield4"] = { type = "Spawn", tier = 4, "10% increased maximum Energy Shield", "Minions deal 17% increased Damage", statOrder = { 1472, 1882 }, level = 65, group = "WeaponTreeMinionDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3750, 3750, 0 }, modTags = { }, }, + ["WeaponTreeMinionDamageLowEnergyShield5"] = { type = "Spawn", tier = 5, "10% increased maximum Energy Shield", "Minions deal 20% increased Damage", statOrder = { 1472, 1882 }, level = 77, group = "WeaponTreeMinionDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1870, 1870, 0 }, modTags = { }, }, + ["WeaponTreeMinionDamage2hLowEnergyShield1"] = { type = "Spawn", tier = 1, "20% increased maximum Energy Shield", "Minions deal 11% increased Damage", statOrder = { 1472, 1882 }, level = 1, group = "WeaponTreeMinionDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, modTags = { }, }, + ["WeaponTreeMinionDamage2hLowEnergyShield2"] = { type = "Spawn", tier = 2, "20% increased maximum Energy Shield", "Minions deal 16% increased Damage", statOrder = { 1472, 1882 }, level = 21, group = "WeaponTreeMinionDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, modTags = { }, }, + ["WeaponTreeMinionDamage2hLowEnergyShield3"] = { type = "Spawn", tier = 3, "20% increased maximum Energy Shield", "Minions deal 21% increased Damage", statOrder = { 1472, 1882 }, level = 46, group = "WeaponTreeMinionDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 7500, 7500, 0 }, modTags = { }, }, + ["WeaponTreeMinionDamage2hLowEnergyShield4"] = { type = "Spawn", tier = 4, "20% increased maximum Energy Shield", "Minions deal 26% increased Damage", statOrder = { 1472, 1882 }, level = 65, group = "WeaponTreeMinionDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3750, 3750, 0 }, modTags = { }, }, + ["WeaponTreeMinionDamage2hLowEnergyShield5"] = { type = "Spawn", tier = 5, "20% increased maximum Energy Shield", "Minions deal 32% increased Damage", statOrder = { 1472, 1882 }, level = 77, group = "WeaponTreeMinionDamageAndIncreasedEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1870, 1870, 0 }, modTags = { }, }, + ["WeaponTreeBowGemLevel"] = { type = "Spawn", tier = 1, "+1 to Level of Socketed Bow Gems", statOrder = { 158 }, level = 10, group = "WeaponTreeLocalIncreaseSocketedBowGemLevel", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeMeleeGemLevel"] = { type = "Spawn", tier = 1, "+2 to Level of Socketed Melee Gems", statOrder = { 159 }, level = 10, group = "WeaponTreeLocalIncreaseSocketedMeleeGemLevel", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "mace", "sword", "sceptre", "axe", "dagger", "claw", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeMeleeGemLevel2h"] = { type = "Spawn", tier = 1, "+1 to Level of Socketed Melee Gems", statOrder = { 159 }, level = 10, group = "WeaponTreeLocalIncreaseSocketedMeleeGemLevel", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "staff", "mace", "axe", "sword", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSpellGemLevel"] = { type = "Spawn", tier = 1, "+2 to Level of Socketed Spell Gems", statOrder = { 154 }, level = 10, group = "WeaponTreeLocalIncreaseSocketedSpellGemLevel", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "sceptre", "wand", "dagger", "default", }, weightVal = { 0, 1000, 0, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSpellGemLevel2h"] = { type = "Spawn", tier = 1, "+1 to Level of Socketed Spell Gems", statOrder = { 154 }, level = 10, group = "WeaponTreeLocalIncreaseSocketedSpellGemLevel", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0, 1000, 0 }, modTags = { }, }, + ["WeaponTreeMinionGemLevel"] = { type = "Spawn", tier = 1, "+2 to Level of Socketed Minion Gems", statOrder = { 160 }, level = 10, group = "WeaponTreeLocalIncreaseSocketedMinionGemLevel", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 10000, 10000, 0 }, modTags = { }, }, + ["WeaponTreeMinionGemLevel2h"] = { type = "Spawn", tier = 1, "+1 to Level of Socketed Minion Gems", statOrder = { 160 }, level = 10, group = "WeaponTreeLocalIncreaseSocketedMinionGemLevel", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 10000, 10000, 0 }, modTags = { }, }, + ["WeaponTreeDexterityGemLevel"] = { type = "Spawn", tier = 1, "+1 to Level of Socketed Dexterity Gems", statOrder = { 140 }, level = 45, group = "WeaponTreeLocalIncreaseSocketedDexterityGemLevel", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 250, 250, 250, 500, 250, 0 }, modTags = { }, }, ["WeaponTreeStrengthGemLevel"] = { type = "Spawn", tier = 1, "+1 to Level of Socketed Strength Gems", statOrder = { 138 }, level = 45, group = "WeaponTreeLocalIncreaseSocketedStrengthGemLevel", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 250, 250, 500, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeIntelliegenceGemLevel"] = { type = "Spawn", tier = 1, "+1 to Level of Socketed Intelligence Gems", statOrder = { 140 }, level = 45, group = "WeaponTreeLocalIncreaseSocketedIntelligenceGemLevel", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 500, 250, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedColdPerDex"] = { type = "MergeOnly", tier = 1, "Adds 1 to 3 Cold Damage to Attacks with this Weapon per 10 Dexterity", statOrder = { 4745 }, level = 60, group = "WeaponTreeAddedColdDamagePerDexterity", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 0, 500, 500, 500, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeAddedColdPerDex2h"] = { type = "MergeOnly", tier = 1, "Adds 2 to 4 Cold Damage to Attacks with this Weapon per 10 Dexterity", statOrder = { 4745 }, level = 60, group = "WeaponTreeAddedColdDamagePerDexterity", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 0, 500, 500, 500, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeAddedFirePerStr"] = { type = "MergeOnly", tier = 1, "Adds 1 to 3 Fire Damage to Attacks with this Weapon per 10 Strength", statOrder = { 4691 }, level = 60, group = "WeaponTreeAddedFireDamagePerStrength", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 0, 500, 500, 1000, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeAddedFirePerStr2h"] = { type = "MergeOnly", tier = 1, "Adds 2 to 4 Fire Damage to Attacks with this Weapon per 10 Strength", statOrder = { 4691 }, level = 60, group = "WeaponTreeAddedFireDamagePerStrength", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 0, 500, 500, 1000, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightningPerInt"] = { type = "MergeOnly", tier = 1, "Adds 1 to 3 Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrder = { 4694 }, level = 60, group = "WeaponTreeAddedLightningDamagePerIntelligence", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 0, 1000, 500, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeAddedLightningPerInt2h"] = { type = "MergeOnly", tier = 1, "Adds 1 to 5 Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrder = { 4694 }, level = 60, group = "WeaponTreeAddedLightningDamagePerIntelligence", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 0, 1000, 500, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaosPerLowestAttribute"] = { type = "MergeOnly", tier = 1, "Adds 2 to 4 Chaos Damage to Attacks with this Weapon per 10 of your lowest Attribute", statOrder = { 4744 }, level = 60, group = "WeaponTreeLocalAddedChaosDamagePerLowestAttribute", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAddedChaosPerLowestAttribute2h"] = { type = "MergeOnly", tier = 1, "Adds 3 to 5 Chaos Damage to Attacks with this Weapon per 10 of your lowest Attribute", statOrder = { 4744 }, level = 60, group = "WeaponTreeLocalAddedChaosDamagePerLowestAttribute", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeGlobalDamageHighIncreasedSkillCost1"] = { type = "Spawn", tier = 1, "20% increased Global Damage", "10% increased Cost of Skills", statOrder = { 1077, 1762 }, level = 1, group = "WeaponTreeIncreasedDamageAndSkillCost", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "attack_dagger", "mace", "axe", "sword", "claw", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeGlobalDamageHighIncreasedSkillCost2"] = { type = "Spawn", tier = 2, "30% increased Global Damage", "10% increased Cost of Skills", statOrder = { 1077, 1762 }, level = 45, group = "WeaponTreeIncreasedDamageAndSkillCost", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "attack_dagger", "mace", "axe", "sword", "claw", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeGlobalDamageHighIncreasedSkillCost3"] = { type = "Spawn", tier = 3, "40% increased Global Damage", "10% increased Cost of Skills", statOrder = { 1077, 1762 }, level = 75, group = "WeaponTreeIncreasedDamageAndSkillCost", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "attack_dagger", "mace", "axe", "sword", "claw", "default", }, weightVal = { 0, 250, 250, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeGlobalDamage2hHighIncreasedSkillCost1"] = { type = "Spawn", tier = 1, "40% increased Global Damage", "20% increased Cost of Skills", statOrder = { 1077, 1762 }, level = 1, group = "WeaponTreeIncreasedDamageAndSkillCost", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "attack_staff", "mace", "axe", "sword", "bow", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeGlobalDamage2hHighIncreasedSkillCost2"] = { type = "Spawn", tier = 2, "50% increased Global Damage", "20% increased Cost of Skills", statOrder = { 1077, 1762 }, level = 45, group = "WeaponTreeIncreasedDamageAndSkillCost", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "attack_staff", "mace", "axe", "sword", "bow", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeGlobalDamage2hHighIncreasedSkillCost3"] = { type = "Spawn", tier = 3, "60% increased Global Damage", "20% increased Cost of Skills", statOrder = { 1077, 1762 }, level = 75, group = "WeaponTreeIncreasedDamageAndSkillCost", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "attack_staff", "mace", "axe", "sword", "bow", "default", }, weightVal = { 0, 250, 250, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeGlobalDamage1"] = { type = "Spawn", tier = 1, "15% increased Global Damage", statOrder = { 1077 }, level = 1, group = "WeaponTreeAllDamageOnWeapon", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "attack_dagger", "mace", "axe", "sword", "claw", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeGlobalDamage2"] = { type = "Spawn", tier = 2, "20% increased Global Damage", statOrder = { 1077 }, level = 45, group = "WeaponTreeAllDamageOnWeapon", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "attack_dagger", "mace", "axe", "sword", "claw", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeGlobalDamage3"] = { type = "Spawn", tier = 3, "25% increased Global Damage", statOrder = { 1077 }, level = 75, group = "WeaponTreeAllDamageOnWeapon", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "attack_dagger", "mace", "axe", "sword", "claw", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeGlobalDamage2h1"] = { type = "Spawn", tier = 1, "20% increased Global Damage", statOrder = { 1077 }, level = 1, group = "WeaponTreeAllDamageOnWeapon", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "attack_staff", "mace", "axe", "sword", "bow", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeGlobalDamage2h2"] = { type = "Spawn", tier = 2, "30% increased Global Damage", statOrder = { 1077 }, level = 45, group = "WeaponTreeAllDamageOnWeapon", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "attack_staff", "mace", "axe", "sword", "bow", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeGlobalDamage2h3"] = { type = "Spawn", tier = 3, "40% increased Global Damage", statOrder = { 1077 }, level = 75, group = "WeaponTreeAllDamageOnWeapon", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "attack_staff", "mace", "axe", "sword", "bow", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeGlobalDamageLowIncreasedAttributes1"] = { type = "Spawn", tier = 1, "4% increased Attributes", "8% increased Global Damage", statOrder = { 1068, 1077 }, level = 1, group = "WeaponTreeIncreasedDamageAndIncreasedAttributes", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "attack_dagger", "mace", "axe", "sword", "claw", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeGlobalDamageLowIncreasedAttributes2"] = { type = "Spawn", tier = 2, "4% increased Attributes", "12% increased Global Damage", statOrder = { 1068, 1077 }, level = 45, group = "WeaponTreeIncreasedDamageAndIncreasedAttributes", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "attack_dagger", "mace", "axe", "sword", "claw", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeGlobalDamageLowIncreasedAttributes3"] = { type = "Spawn", tier = 3, "4% increased Attributes", "16% increased Global Damage", statOrder = { 1068, 1077 }, level = 75, group = "WeaponTreeIncreasedDamageAndIncreasedAttributes", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "attack_dagger", "mace", "axe", "sword", "claw", "default", }, weightVal = { 0, 250, 250, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeGlobalDamage2hLowIncreasedAttributes1"] = { type = "Spawn", tier = 1, "6% increased Attributes", "15% increased Global Damage", statOrder = { 1068, 1077 }, level = 1, group = "WeaponTreeIncreasedDamageAndIncreasedAttributes", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "attack_staff", "mace", "axe", "sword", "bow", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeGlobalDamage2hLowIncreasedAttributes2"] = { type = "Spawn", tier = 2, "6% increased Attributes", "20% increased Global Damage", statOrder = { 1068, 1077 }, level = 45, group = "WeaponTreeIncreasedDamageAndIncreasedAttributes", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "attack_staff", "mace", "axe", "sword", "bow", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeGlobalDamage2hLowIncreasedAttributes3"] = { type = "Spawn", tier = 3, "6% increased Attributes", "25% increased Global Damage", statOrder = { 1068, 1077 }, level = 75, group = "WeaponTreeIncreasedDamageAndIncreasedAttributes", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "attack_staff", "mace", "axe", "sword", "bow", "default", }, weightVal = { 0, 250, 250, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeIncreasedLife1"] = { type = "Spawn", tier = 1, "+30 to maximum Life", statOrder = { 1451 }, level = 1, group = "WeaponTreeIncreasedLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeIncreasedLife2"] = { type = "Spawn", tier = 2, "+35 to maximum Life", statOrder = { 1451 }, level = 21, group = "WeaponTreeIncreasedLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeIncreasedLife3"] = { type = "Spawn", tier = 3, "+40 to maximum Life", statOrder = { 1451 }, level = 46, group = "WeaponTreeIncreasedLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeIncreasedLife4"] = { type = "Spawn", tier = 4, "+45 to maximum Life", statOrder = { 1451 }, level = 65, group = "WeaponTreeIncreasedLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeIncreasedLife5"] = { type = "Spawn", tier = 5, "+50 to maximum Life", statOrder = { 1451 }, level = 77, group = "WeaponTreeIncreasedLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeIncreasedLifeReducedDamage1"] = { type = "Spawn", tier = 1, "20% reduced Damage", "+60 to maximum Life", statOrder = { 1076, 1451 }, level = 15, group = "WeaponTreeIncreasedLifeReducedDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeIncreasedLifeReducedDamage2"] = { type = "Spawn", tier = 2, "20% reduced Damage", "+75 to maximum Life", statOrder = { 1076, 1451 }, level = 45, group = "WeaponTreeIncreasedLifeReducedDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeIncreasedLifeReducedDamage3"] = { type = "Spawn", tier = 3, "20% reduced Damage", "+80 to maximum Life", statOrder = { 1076, 1451 }, level = 70, group = "WeaponTreeIncreasedLifeReducedDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeIncreasedLifeReducedAllResistance1"] = { type = "Spawn", tier = 1, "+60 to maximum Life", "-5% to all Elemental Resistances", statOrder = { 1451, 1501 }, level = 15, group = "WeaponTreeIncreasedLifeReducedAllResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeIncreasedLifeReducedAllResistance2"] = { type = "Spawn", tier = 2, "+75 to maximum Life", "-5% to all Elemental Resistances", statOrder = { 1451, 1501 }, level = 45, group = "WeaponTreeIncreasedLifeReducedAllResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeIncreasedLifeReducedAllResistance3"] = { type = "Spawn", tier = 3, "+80 to maximum Life", "-5% to all Elemental Resistances", statOrder = { 1451, 1501 }, level = 70, group = "WeaponTreeIncreasedLifeReducedAllResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeIncreasedLifeReducedLocalDefences1"] = { type = "Spawn", tier = 1, "50% reduced Armour, Evasion and Energy Shield", "+60 to maximum Life", statOrder = { 1438, 1451 }, level = 15, group = "WeaponTreeIncreasedLifeReducedLocalDefences", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeIncreasedLifeReducedLocalDefences2"] = { type = "Spawn", tier = 2, "50% reduced Armour, Evasion and Energy Shield", "+75 to maximum Life", statOrder = { 1438, 1451 }, level = 45, group = "WeaponTreeIncreasedLifeReducedLocalDefences", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeIncreasedLifeReducedLocalDefences3"] = { type = "Spawn", tier = 3, "50% reduced Armour, Evasion and Energy Shield", "+80 to maximum Life", statOrder = { 1438, 1451 }, level = 70, group = "WeaponTreeIncreasedLifeReducedLocalDefences", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeIncreasedLifeAndLifeRegen1"] = { type = "Spawn", tier = 1, "+15 to maximum Life", "Regenerate 0.4% of Life per second", statOrder = { 1451, 1823 }, level = 1, group = "WeaponTreeIncreasedLifeAndLifeRegen", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeIncreasedLifeAndLifeRegen2"] = { type = "Spawn", tier = 2, "+20 to maximum Life", "Regenerate 0.4% of Life per second", statOrder = { 1451, 1823 }, level = 40, group = "WeaponTreeIncreasedLifeAndLifeRegen", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeIncreasedLifeAndLifeRegen3"] = { type = "Spawn", tier = 3, "+25 to maximum Life", "Regenerate 0.4% of Life per second", statOrder = { 1451, 1823 }, level = 65, group = "WeaponTreeIncreasedLifeAndLifeRegen", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeIncreasedLifeAndStunThreshold1"] = { type = "Spawn", tier = 1, "+15 to maximum Life", "20% increased Stun Threshold", statOrder = { 1451, 3138 }, level = 1, group = "WeaponTreeIncreasedLifeAndStunThreshold", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeIncreasedLifeAndStunThreshold2"] = { type = "Spawn", tier = 2, "+20 to maximum Life", "20% increased Stun Threshold", statOrder = { 1451, 3138 }, level = 40, group = "WeaponTreeIncreasedLifeAndStunThreshold", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeIncreasedLifeAndStunThreshold3"] = { type = "Spawn", tier = 3, "+25 to maximum Life", "20% increased Stun Threshold", statOrder = { 1451, 3138 }, level = 65, group = "WeaponTreeIncreasedLifeAndStunThreshold", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeIncreasedLifeAndLifeOnKill1"] = { type = "Spawn", tier = 1, "+15 to maximum Life", "Recover 1% of Life on Kill", statOrder = { 1451, 1630 }, level = 1, group = "WeaponTreeIncreasedLifeAndLifeOnKill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeIncreasedLifeAndLifeOnKill2"] = { type = "Spawn", tier = 2, "+20 to maximum Life", "Recover 1% of Life on Kill", statOrder = { 1451, 1630 }, level = 40, group = "WeaponTreeIncreasedLifeAndLifeOnKill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeIncreasedLifeAndLifeOnKill3"] = { type = "Spawn", tier = 3, "+25 to maximum Life", "Recover 1% of Life on Kill", statOrder = { 1451, 1630 }, level = 65, group = "WeaponTreeIncreasedLifeAndLifeOnKill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalArmour1"] = { type = "Spawn", tier = 1, "+20 to Armour", statOrder = { 1423 }, level = 1, group = "WeaponTreeLocalPhysicalDamageReductionRating", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeLocalArmour2"] = { type = "Spawn", tier = 2, "+35 to Armour", statOrder = { 1423 }, level = 24, group = "WeaponTreeLocalPhysicalDamageReductionRating", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeLocalArmour3"] = { type = "Spawn", tier = 3, "+50 to Armour", statOrder = { 1423 }, level = 50, group = "WeaponTreeLocalPhysicalDamageReductionRating", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeLocalArmour4"] = { type = "Spawn", tier = 4, "+65 to Armour", statOrder = { 1423 }, level = 68, group = "WeaponTreeLocalPhysicalDamageReductionRating", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeLocalArmour5"] = { type = "Spawn", tier = 5, "+80 to Armour", statOrder = { 1423 }, level = 82, group = "WeaponTreeLocalPhysicalDamageReductionRating", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalArmourIncreasedDamageOverTimeTaken1"] = { type = "Spawn", tier = 1, "+100 to Armour", "10% increased Damage taken from Damage Over Time", statOrder = { 1423, 2122 }, level = 20, group = "WeaponTreeLocalArmourIncreasedDamageOverTimeTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalArmourIncreasedDamageOverTimeTaken2"] = { type = "Spawn", tier = 2, "+125 to Armour", "10% increased Damage taken from Damage Over Time", statOrder = { 1423, 2122 }, level = 55, group = "WeaponTreeLocalArmourIncreasedDamageOverTimeTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalArmourIncreasedDamageOverTimeTaken3"] = { type = "Spawn", tier = 3, "+150 to Armour", "10% increased Damage taken from Damage Over Time", statOrder = { 1423, 2122 }, level = 83, group = "WeaponTreeLocalArmourIncreasedDamageOverTimeTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalArmourIncreasedDamageFromCriticalStrikes1"] = { type = "Spawn", tier = 1, "You take 20% increased Extra Damage from Critical Strikes", "+100 to Armour", statOrder = { 1395, 1423 }, level = 20, group = "WeaponTreeLocalArmourIncreasedDamageFromCriticalStrikes", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalArmourIncreasedDamageFromCriticalStrikes2"] = { type = "Spawn", tier = 2, "You take 20% increased Extra Damage from Critical Strikes", "+125 to Armour", statOrder = { 1395, 1423 }, level = 55, group = "WeaponTreeLocalArmourIncreasedDamageFromCriticalStrikes", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalArmourIncreasedDamageFromCriticalStrikes3"] = { type = "Spawn", tier = 3, "You take 20% increased Extra Damage from Critical Strikes", "+150 to Armour", statOrder = { 1395, 1423 }, level = 83, group = "WeaponTreeLocalArmourIncreasedDamageFromCriticalStrikes", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalArmourIncreasedStrength1"] = { type = "Spawn", tier = 1, "5% increased Strength", "+20 to Armour", statOrder = { 1069, 1423 }, level = 1, group = "WeaponTreeLocalArmourIncreasedStrength", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalArmourIncreasedStrength2"] = { type = "Spawn", tier = 2, "5% increased Strength", "+30 to Armour", statOrder = { 1069, 1423 }, level = 40, group = "WeaponTreeLocalArmourIncreasedStrength", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalArmourIncreasedStrength3"] = { type = "Spawn", tier = 3, "5% increased Strength", "+40 to Armour", statOrder = { 1069, 1423 }, level = 65, group = "WeaponTreeLocalArmourIncreasedStrength", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalArmourImplicitEffect1"] = { type = "Spawn", tier = 1, "50% increased Implicit Modifier magnitudes", "+20 to Armour", statOrder = { 40, 1423 }, level = 1, group = "WeaponTreeLocalArmourImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalArmourImplicitEffect2"] = { type = "Spawn", tier = 2, "50% increased Implicit Modifier magnitudes", "+30 to Armour", statOrder = { 40, 1423 }, level = 40, group = "WeaponTreeLocalArmourImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalArmourImplicitEffect3"] = { type = "Spawn", tier = 3, "50% increased Implicit Modifier magnitudes", "+40 to Armour", statOrder = { 40, 1423 }, level = 65, group = "WeaponTreeLocalArmourImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalArmourLocalBlock1"] = { type = "Spawn", tier = 1, "+20 to Armour", "+2% Chance to Block", statOrder = { 1423, 2126 }, level = 1, group = "WeaponTreeLocalArmourLocalBlock", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "crucible_unique_helmet", "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalArmourLocalBlock2"] = { type = "Spawn", tier = 2, "+30 to Armour", "+2% Chance to Block", statOrder = { 1423, 2126 }, level = 40, group = "WeaponTreeLocalArmourLocalBlock", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "crucible_unique_helmet", "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalArmourLocalBlock3"] = { type = "Spawn", tier = 3, "+40 to Armour", "+2% Chance to Block", statOrder = { 1423, 2126 }, level = 65, group = "WeaponTreeLocalArmourLocalBlock", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "crucible_unique_helmet", "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEvasion1"] = { type = "Spawn", tier = 1, "+20 to Evasion Rating", statOrder = { 1431 }, level = 1, group = "WeaponTreeLocalEvasionRating", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeLocalEvasion2"] = { type = "Spawn", tier = 2, "+35 to Evasion Rating", statOrder = { 1431 }, level = 24, group = "WeaponTreeLocalEvasionRating", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeLocalEvasion3"] = { type = "Spawn", tier = 3, "+50 to Evasion Rating", statOrder = { 1431 }, level = 50, group = "WeaponTreeLocalEvasionRating", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeLocalEvasion4"] = { type = "Spawn", tier = 4, "+65 to Evasion Rating", statOrder = { 1431 }, level = 68, group = "WeaponTreeLocalEvasionRating", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeLocalEvasion5"] = { type = "Spawn", tier = 5, "+80 to Evasion Rating", statOrder = { 1431 }, level = 82, group = "WeaponTreeLocalEvasionRating", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEvasionRatingIncreasedAilmentDurationOnSelf1"] = { type = "Spawn", tier = 1, "+100 to Evasion Rating", "20% increased Duration of Ailments on You", statOrder = { 1431, 4802 }, level = 20, group = "WeaponTreeLocalEvasionRatingIncreasedAilmentDurationOnSelf", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEvasionRatingIncreasedAilmentDurationOnSelf2"] = { type = "Spawn", tier = 2, "+125 to Evasion Rating", "20% increased Duration of Ailments on You", statOrder = { 1431, 4802 }, level = 55, group = "WeaponTreeLocalEvasionRatingIncreasedAilmentDurationOnSelf", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEvasionRatingIncreasedAilmentDurationOnSelf3"] = { type = "Spawn", tier = 3, "+150 to Evasion Rating", "20% increased Duration of Ailments on You", statOrder = { 1431, 4802 }, level = 83, group = "WeaponTreeLocalEvasionRatingIncreasedAilmentDurationOnSelf", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEvasionRatingReducedStunRecovery1"] = { type = "Spawn", tier = 1, "+100 to Evasion Rating", "25% reduced Stun and Block Recovery", statOrder = { 1431, 1781 }, level = 20, group = "WeaponTreeLocalEvasionRatingReducedStunRecovery", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEvasionRatingReducedStunRecovery2"] = { type = "Spawn", tier = 2, "+125 to Evasion Rating", "25% reduced Stun and Block Recovery", statOrder = { 1431, 1781 }, level = 55, group = "WeaponTreeLocalEvasionRatingReducedStunRecovery", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEvasionRatingReducedStunRecovery3"] = { type = "Spawn", tier = 3, "+150 to Evasion Rating", "25% reduced Stun and Block Recovery", statOrder = { 1431, 1781 }, level = 83, group = "WeaponTreeLocalEvasionRatingReducedStunRecovery", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEvasionRatingIncreasedDexterity1"] = { type = "Spawn", tier = 1, "5% increased Dexterity", "+20 to Evasion Rating", statOrder = { 1070, 1431 }, level = 1, group = "WeaponTreeLocalEvasionRatingIncreasedDexterity", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEvasionRatingIncreasedDexterity2"] = { type = "Spawn", tier = 2, "5% increased Dexterity", "+30 to Evasion Rating", statOrder = { 1070, 1431 }, level = 40, group = "WeaponTreeLocalEvasionRatingIncreasedDexterity", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEvasionRatingIncreasedDexterity3"] = { type = "Spawn", tier = 3, "5% increased Dexterity", "+40 to Evasion Rating", statOrder = { 1070, 1431 }, level = 65, group = "WeaponTreeLocalEvasionRatingIncreasedDexterity", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEvasionRatingImplicitEffect1"] = { type = "Spawn", tier = 1, "50% increased Implicit Modifier magnitudes", "+20 to Evasion Rating", statOrder = { 40, 1431 }, level = 1, group = "WeaponTreeLocalEvasionRatingImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEvasionRatingImplicitEffect2"] = { type = "Spawn", tier = 2, "50% increased Implicit Modifier magnitudes", "+30 to Evasion Rating", statOrder = { 40, 1431 }, level = 40, group = "WeaponTreeLocalEvasionRatingImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEvasionRatingImplicitEffect3"] = { type = "Spawn", tier = 3, "50% increased Implicit Modifier magnitudes", "+40 to Evasion Rating", statOrder = { 40, 1431 }, level = 65, group = "WeaponTreeLocalEvasionRatingImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEvasionRatingSuppression1"] = { type = "Spawn", tier = 1, "+4% chance to Suppress Spell Damage", "+20 to Evasion Rating", statOrder = { 1032, 1431 }, level = 1, group = "WeaponTreeLocalEvasionRatingSuppression", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEvasionRatingSuppression2"] = { type = "Spawn", tier = 2, "+4% chance to Suppress Spell Damage", "+30 to Evasion Rating", statOrder = { 1032, 1431 }, level = 40, group = "WeaponTreeLocalEvasionRatingSuppression", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEvasionRatingSuppression3"] = { type = "Spawn", tier = 3, "+4% chance to Suppress Spell Damage", "+40 to Evasion Rating", statOrder = { 1032, 1431 }, level = 65, group = "WeaponTreeLocalEvasionRatingSuppression", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEnergyShield1"] = { type = "Spawn", tier = 1, "+5 to maximum Energy Shield", statOrder = { 1441 }, level = 1, group = "WeaponTreeLocalEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeLocalEnergyShield2"] = { type = "Spawn", tier = 2, "+10 to maximum Energy Shield", statOrder = { 1441 }, level = 24, group = "WeaponTreeLocalEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeLocalEnergyShield3"] = { type = "Spawn", tier = 3, "+15 to maximum Energy Shield", statOrder = { 1441 }, level = 50, group = "WeaponTreeLocalEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeLocalEnergyShield4"] = { type = "Spawn", tier = 4, "+20 to maximum Energy Shield", statOrder = { 1441 }, level = 68, group = "WeaponTreeLocalEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeLocalEnergyShield5"] = { type = "Spawn", tier = 5, "+25 to maximum Energy Shield", statOrder = { 1441 }, level = 82, group = "WeaponTreeLocalEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEnergyShieldReducedRechargeRate1"] = { type = "Spawn", tier = 1, "+28 to maximum Energy Shield", "25% reduced Energy Shield Recharge Rate", statOrder = { 1441, 1447 }, level = 20, group = "WeaponTreeLocalEnergyShieldReducedRechargeRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEnergyShieldReducedRechargeRate2"] = { type = "Spawn", tier = 2, "+34 to maximum Energy Shield", "25% reduced Energy Shield Recharge Rate", statOrder = { 1441, 1447 }, level = 55, group = "WeaponTreeLocalEnergyShieldReducedRechargeRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEnergyShieldReducedRechargeRate3"] = { type = "Spawn", tier = 3, "+40 to maximum Energy Shield", "25% reduced Energy Shield Recharge Rate", statOrder = { 1441, 1447 }, level = 83, group = "WeaponTreeLocalEnergyShieldReducedRechargeRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEnergyShieldReducedManaRegeneration1"] = { type = "Spawn", tier = 1, "+28 to maximum Energy Shield", "25% reduced Mana Regeneration Rate", statOrder = { 1441, 1466 }, level = 20, group = "WeaponTreeLocalEnergyShieldReducedManaRegeneration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEnergyShieldReducedManaRegeneration2"] = { type = "Spawn", tier = 2, "+34 to maximum Energy Shield", "25% reduced Mana Regeneration Rate", statOrder = { 1441, 1466 }, level = 55, group = "WeaponTreeLocalEnergyShieldReducedManaRegeneration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEnergyShieldReducedManaRegeneration3"] = { type = "Spawn", tier = 3, "+40 to maximum Energy Shield", "25% reduced Mana Regeneration Rate", statOrder = { 1441, 1466 }, level = 83, group = "WeaponTreeLocalEnergyShieldReducedManaRegeneration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEnergyShieldIncreasedIntelligence1"] = { type = "Spawn", tier = 1, "5% increased Intelligence", "+9 to maximum Energy Shield", statOrder = { 1071, 1441 }, level = 1, group = "WeaponTreeLocalEnergyShieldIncreasedIntelligence", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEnergyShieldIncreasedIntelligence2"] = { type = "Spawn", tier = 2, "5% increased Intelligence", "+12 to maximum Energy Shield", statOrder = { 1071, 1441 }, level = 40, group = "WeaponTreeLocalEnergyShieldIncreasedIntelligence", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEnergyShieldIncreasedIntelligence3"] = { type = "Spawn", tier = 3, "5% increased Intelligence", "+15 to maximum Energy Shield", statOrder = { 1071, 1441 }, level = 65, group = "WeaponTreeLocalEnergyShieldIncreasedIntelligence", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEnergyShieldImplicitEffect1"] = { type = "Spawn", tier = 1, "50% increased Implicit Modifier magnitudes", "+9 to maximum Energy Shield", statOrder = { 40, 1441 }, level = 1, group = "WeaponTreeLocalEnergyShieldImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEnergyShieldImplicitEffect2"] = { type = "Spawn", tier = 2, "50% increased Implicit Modifier magnitudes", "+12 to maximum Energy Shield", statOrder = { 40, 1441 }, level = 40, group = "WeaponTreeLocalEnergyShieldImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEnergyShieldImplicitEffect3"] = { type = "Spawn", tier = 3, "50% increased Implicit Modifier magnitudes", "+15 to maximum Energy Shield", statOrder = { 40, 1441 }, level = 65, group = "WeaponTreeLocalEnergyShieldImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEnergyShieldAndMana1"] = { type = "Spawn", tier = 1, "+9 to maximum Energy Shield", "8% increased maximum Mana", statOrder = { 1441, 1462 }, level = 1, group = "WeaponTreeLocalEnergyShieldAndMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEnergyShieldAndMana2"] = { type = "Spawn", tier = 2, "+12 to maximum Energy Shield", "8% increased maximum Mana", statOrder = { 1441, 1462 }, level = 40, group = "WeaponTreeLocalEnergyShieldAndMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalEnergyShieldAndMana3"] = { type = "Spawn", tier = 3, "+15 to maximum Energy Shield", "8% increased maximum Mana", statOrder = { 1441, 1462 }, level = 65, group = "WeaponTreeLocalEnergyShieldAndMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeFireDamagePercentageMinusFireResistance1"] = { type = "Spawn", tier = 1, "30% increased Fire Damage", "-10% to Fire Resistance", statOrder = { 1241, 1507 }, level = 8, group = "WeaponTreeFireDamagePercentageMinusFireResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeFireDamagePercentageMinusFireResistance2"] = { type = "Spawn", tier = 2, "35% increased Fire Damage", "-10% to Fire Resistance", statOrder = { 1241, 1507 }, level = 42, group = "WeaponTreeFireDamagePercentageMinusFireResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeFireDamagePercentageMinusFireResistance3"] = { type = "Spawn", tier = 3, "40% increased Fire Damage", "-10% to Fire Resistance", statOrder = { 1241, 1507 }, level = 72, group = "WeaponTreeFireDamagePercentageMinusFireResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeFireDamagePercentage1"] = { type = "Spawn", tier = 1, "15% increased Fire Damage", statOrder = { 1241 }, level = 1, group = "WeaponTreeFireDamagePercentage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeFireDamagePercentage2"] = { type = "Spawn", tier = 2, "20% increased Fire Damage", statOrder = { 1241 }, level = 50, group = "WeaponTreeFireDamagePercentage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeFireDamagePercentage3"] = { type = "Spawn", tier = 3, "25% increased Fire Damage", statOrder = { 1241 }, level = 77, group = "WeaponTreeFireDamagePercentage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeFireDamagePercentageDamageTakenAsFire1"] = { type = "Spawn", tier = 1, "9% increased Fire Damage", "3% of Physical Damage from Hits taken as Fire Damage", statOrder = { 1241, 2323 }, level = 1, group = "WeaponTreeFireDamagePercentageDamageTakenAsFire", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeFireDamagePercentageDamageTakenAsFire2"] = { type = "Spawn", tier = 2, "12% increased Fire Damage", "3% of Physical Damage from Hits taken as Fire Damage", statOrder = { 1241, 2323 }, level = 36, group = "WeaponTreeFireDamagePercentageDamageTakenAsFire", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeFireDamagePercentageDamageTakenAsFire3"] = { type = "Spawn", tier = 3, "15% increased Fire Damage", "3% of Physical Damage from Hits taken as Fire Damage", statOrder = { 1241, 2323 }, level = 68, group = "WeaponTreeFireDamagePercentageDamageTakenAsFire", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeColdDamagePercentageMinusColdResistance1"] = { type = "Spawn", tier = 1, "30% increased Cold Damage", "-10% to Cold Resistance", statOrder = { 1250, 1513 }, level = 8, group = "WeaponTreeColdDamagePercentageMinusColdResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeColdDamagePercentageMinusColdResistance2"] = { type = "Spawn", tier = 2, "35% increased Cold Damage", "-10% to Cold Resistance", statOrder = { 1250, 1513 }, level = 42, group = "WeaponTreeColdDamagePercentageMinusColdResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeColdDamagePercentageMinusColdResistance3"] = { type = "Spawn", tier = 3, "40% increased Cold Damage", "-10% to Cold Resistance", statOrder = { 1250, 1513 }, level = 72, group = "WeaponTreeColdDamagePercentageMinusColdResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeColdDamagePercentage1"] = { type = "Spawn", tier = 1, "15% increased Cold Damage", statOrder = { 1250 }, level = 1, group = "WeaponTreeColdDamagePercentage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeColdDamagePercentage2"] = { type = "Spawn", tier = 2, "20% increased Cold Damage", statOrder = { 1250 }, level = 50, group = "WeaponTreeColdDamagePercentage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeColdDamagePercentage3"] = { type = "Spawn", tier = 3, "25% increased Cold Damage", statOrder = { 1250 }, level = 77, group = "WeaponTreeColdDamagePercentage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeColdDamagePercentageDamageTakenAsCold1"] = { type = "Spawn", tier = 1, "9% increased Cold Damage", "3% of Physical Damage from Hits taken as Cold Damage", statOrder = { 1250, 2324 }, level = 1, group = "WeaponTreeColdDamagePercentageDamageTakenAsCold", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeColdDamagePercentageDamageTakenAsCold2"] = { type = "Spawn", tier = 2, "12% increased Cold Damage", "3% of Physical Damage from Hits taken as Cold Damage", statOrder = { 1250, 2324 }, level = 36, group = "WeaponTreeColdDamagePercentageDamageTakenAsCold", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeColdDamagePercentageDamageTakenAsCold3"] = { type = "Spawn", tier = 3, "15% increased Cold Damage", "3% of Physical Damage from Hits taken as Cold Damage", statOrder = { 1250, 2324 }, level = 68, group = "WeaponTreeColdDamagePercentageDamageTakenAsCold", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeLightningDamagePercentageMinusLightningResistance1"] = { type = "Spawn", tier = 1, "30% increased Lightning Damage", "-10% to Lightning Resistance", statOrder = { 1261, 1518 }, level = 8, group = "WeaponTreeLightningDamagePercentageMinusLightningResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeLightningDamagePercentageMinusLightningResistance2"] = { type = "Spawn", tier = 2, "35% increased Lightning Damage", "-10% to Lightning Resistance", statOrder = { 1261, 1518 }, level = 42, group = "WeaponTreeLightningDamagePercentageMinusLightningResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeLightningDamagePercentageMinusLightningResistance3"] = { type = "Spawn", tier = 3, "40% increased Lightning Damage", "-10% to Lightning Resistance", statOrder = { 1261, 1518 }, level = 72, group = "WeaponTreeLightningDamagePercentageMinusLightningResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeLightningDamagePercentage1"] = { type = "Spawn", tier = 1, "15% increased Lightning Damage", statOrder = { 1261 }, level = 1, group = "WeaponTreeLightningDamagePercentage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeLightningDamagePercentage2"] = { type = "Spawn", tier = 2, "20% increased Lightning Damage", statOrder = { 1261 }, level = 50, group = "WeaponTreeLightningDamagePercentage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeLightningDamagePercentage3"] = { type = "Spawn", tier = 3, "25% increased Lightning Damage", statOrder = { 1261 }, level = 77, group = "WeaponTreeLightningDamagePercentage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeLightningDamagePercentageDamageTakenAsLightning1"] = { type = "Spawn", tier = 1, "9% increased Lightning Damage", "3% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 1261, 2325 }, level = 1, group = "WeaponTreeLightningDamagePercentageDamageTakenAsLightning", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeLightningDamagePercentageDamageTakenAsLightning2"] = { type = "Spawn", tier = 2, "12% increased Lightning Damage", "3% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 1261, 2325 }, level = 36, group = "WeaponTreeLightningDamagePercentageDamageTakenAsLightning", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeLightningDamagePercentageDamageTakenAsLightning3"] = { type = "Spawn", tier = 3, "15% increased Lightning Damage", "3% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 1261, 2325 }, level = 68, group = "WeaponTreeLightningDamagePercentageDamageTakenAsLightning", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeChaosDamagePercentageMinusChaosResistance1"] = { type = "Spawn", tier = 1, "30% increased Chaos Damage", "-10% to Chaos Resistance", statOrder = { 1269, 1522 }, level = 8, group = "WeaponTreeChaosDamagePercentageMinusChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeChaosDamagePercentageMinusChaosResistance2"] = { type = "Spawn", tier = 2, "35% increased Chaos Damage", "-10% to Chaos Resistance", statOrder = { 1269, 1522 }, level = 42, group = "WeaponTreeChaosDamagePercentageMinusChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeChaosDamagePercentageMinusChaosResistance3"] = { type = "Spawn", tier = 3, "40% increased Chaos Damage", "-10% to Chaos Resistance", statOrder = { 1269, 1522 }, level = 72, group = "WeaponTreeChaosDamagePercentageMinusChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeChaosDamagePercentage1"] = { type = "Spawn", tier = 1, "15% increased Chaos Damage", statOrder = { 1269 }, level = 1, group = "WeaponTreeIncreasedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeChaosDamagePercentage2"] = { type = "Spawn", tier = 2, "20% increased Chaos Damage", statOrder = { 1269 }, level = 50, group = "WeaponTreeIncreasedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeChaosDamagePercentage3"] = { type = "Spawn", tier = 3, "25% increased Chaos Damage", statOrder = { 1269 }, level = 77, group = "WeaponTreeIncreasedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeChaosDamagePercentageDamageTakenAsChaos1"] = { type = "Spawn", tier = 1, "9% increased Chaos Damage", "3% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 1269, 2327 }, level = 1, group = "WeaponTreeChaosDamagePercentageDamageTakenAsChaos", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeChaosDamagePercentageDamageTakenAsChaos2"] = { type = "Spawn", tier = 2, "12% increased Chaos Damage", "3% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 1269, 2327 }, level = 36, group = "WeaponTreeChaosDamagePercentageDamageTakenAsChaos", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeChaosDamagePercentageDamageTakenAsChaos3"] = { type = "Spawn", tier = 3, "15% increased Chaos Damage", "3% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 1269, 2327 }, level = 68, group = "WeaponTreeChaosDamagePercentageDamageTakenAsChaos", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreePhysicalDamagePercentReducedLifeRegenerationRate1"] = { type = "Spawn", tier = 1, "30% increased Global Physical Damage", "10% reduced Life Regeneration rate", statOrder = { 1116, 1459 }, level = 8, group = "WeaponTreePhysicalDamagePercentReducedLifeRegenerationRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreePhysicalDamagePercentReducedLifeRegenerationRate2"] = { type = "Spawn", tier = 2, "35% increased Global Physical Damage", "10% reduced Life Regeneration rate", statOrder = { 1116, 1459 }, level = 42, group = "WeaponTreePhysicalDamagePercentReducedLifeRegenerationRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreePhysicalDamagePercentReducedLifeRegenerationRate3"] = { type = "Spawn", tier = 3, "40% increased Global Physical Damage", "10% reduced Life Regeneration rate", statOrder = { 1116, 1459 }, level = 72, group = "WeaponTreePhysicalDamagePercentReducedLifeRegenerationRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreePhysicalDamagePercent1"] = { type = "Spawn", tier = 1, "15% increased Global Physical Damage", statOrder = { 1116 }, level = 1, group = "WeaponTreePhysicalDamagePercent", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreePhysicalDamagePercent2"] = { type = "Spawn", tier = 2, "20% increased Global Physical Damage", statOrder = { 1116 }, level = 50, group = "WeaponTreePhysicalDamagePercent", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreePhysicalDamagePercent3"] = { type = "Spawn", tier = 3, "25% increased Global Physical Damage", statOrder = { 1116 }, level = 77, group = "WeaponTreePhysicalDamagePercent", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreePhysicalDamagePercentPhysicalDamageReduction1"] = { type = "Spawn", tier = 1, "9% increased Global Physical Damage", "2% additional Physical Damage Reduction", statOrder = { 1116, 2150 }, level = 1, group = "WeaponTreePhysicalDamagePercentPhysicalDamageReduction", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreePhysicalDamagePercentPhysicalDamageReduction2"] = { type = "Spawn", tier = 2, "12% increased Global Physical Damage", "2% additional Physical Damage Reduction", statOrder = { 1116, 2150 }, level = 36, group = "WeaponTreePhysicalDamagePercentPhysicalDamageReduction", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreePhysicalDamagePercentPhysicalDamageReduction3"] = { type = "Spawn", tier = 3, "15% increased Global Physical Damage", "2% additional Physical Damage Reduction", statOrder = { 1116, 2150 }, level = 68, group = "WeaponTreePhysicalDamagePercentPhysicalDamageReduction", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeLocalCritChanceCritsDealNoExtraDamage1"] = { type = "Spawn", tier = 1, "+4% to Critical Strike Chance", "Your Critical Strikes do not deal extra Damage", statOrder = { 1347, 2551 }, level = 30, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndNoExtraDamageFromCrits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalCritChanceCritsDealNoExtraDamage2"] = { type = "Spawn", tier = 2, "+5% to Critical Strike Chance", "Your Critical Strikes do not deal extra Damage", statOrder = { 1347, 2551 }, level = 55, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndNoExtraDamageFromCrits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalCritChanceCritsDealNoExtraDamage3"] = { type = "Spawn", tier = 3, "+6% to Critical Strike Chance", "Your Critical Strikes do not deal extra Damage", statOrder = { 1347, 2551 }, level = 82, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndNoExtraDamageFromCrits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalCritChanceCritMulti1"] = { type = "Spawn", tier = 1, "-3% to Critical Strike Chance", "+40% to Global Critical Strike Multiplier", statOrder = { 1347, 1372 }, level = 10, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalCritChanceCritMulti2"] = { type = "Spawn", tier = 2, "-3% to Critical Strike Chance", "+50% to Global Critical Strike Multiplier", statOrder = { 1347, 1372 }, level = 50, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalCritChanceCritMulti3"] = { type = "Spawn", tier = 3, "-3% to Critical Strike Chance", "+60% to Global Critical Strike Multiplier", statOrder = { 1347, 1372 }, level = 80, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalCritChanceCritMulti2h1"] = { type = "Spawn", tier = 1, "-3% to Critical Strike Chance", "+60% to Global Critical Strike Multiplier", statOrder = { 1347, 1372 }, level = 10, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalCritChanceCritMulti2h2"] = { type = "Spawn", tier = 2, "-3% to Critical Strike Chance", "+80% to Global Critical Strike Multiplier", statOrder = { 1347, 1372 }, level = 50, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalCritChanceCritMulti2h3"] = { type = "Spawn", tier = 3, "-3% to Critical Strike Chance", "+100% to Global Critical Strike Multiplier", statOrder = { 1347, 1372 }, level = 80, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalCritChance1"] = { type = "Spawn", tier = 1, "+0.4% to Critical Strike Chance", statOrder = { 1347 }, level = 1, group = "WeaponTreeLocalBaseCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeLocalCritChance2"] = { type = "Spawn", tier = 2, "+0.6% to Critical Strike Chance", statOrder = { 1347 }, level = 30, group = "WeaponTreeLocalBaseCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeLocalCritChance3"] = { type = "Spawn", tier = 3, "+0.8% to Critical Strike Chance", statOrder = { 1347 }, level = 60, group = "WeaponTreeLocalBaseCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeLocalCritReducedAttackSpeed1"] = { type = "Spawn", tier = 1, "15% reduced Attack Speed", "+0.9% to Critical Strike Chance", statOrder = { 1297, 1347 }, level = 1, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndAttackSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalCritReducedAttackSpeed2"] = { type = "Spawn", tier = 2, "15% reduced Attack Speed", "+1.2% to Critical Strike Chance", statOrder = { 1297, 1347 }, level = 30, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndAttackSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalCritReducedAttackSpeed3"] = { type = "Spawn", tier = 3, "15% reduced Attack Speed", "+1.5% to Critical Strike Chance", statOrder = { 1297, 1347 }, level = 60, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndAttackSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalCritReducedAccuracy1"] = { type = "Spawn", tier = 1, "+0.9% to Critical Strike Chance", "-500 to Accuracy Rating", statOrder = { 1347, 1901 }, level = 30, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndAccuracy", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalCritReducedAccuracy2"] = { type = "Spawn", tier = 2, "+1.2% to Critical Strike Chance", "-500 to Accuracy Rating", statOrder = { 1347, 1901 }, level = 55, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndAccuracy", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalCritReducedAccuracy3"] = { type = "Spawn", tier = 3, "+1.5% to Critical Strike Chance", "-500 to Accuracy Rating", statOrder = { 1347, 1901 }, level = 82, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndAccuracy", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedLessDamage1"] = { type = "Spawn", tier = 1, "30% increased Attack Speed", "20% less Global Damage", statOrder = { 1297, 10053 }, level = 1, group = "WeaponTreeLocalAttackSpeedAndLessDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedLessDamage2"] = { type = "Spawn", tier = 2, "35% increased Attack Speed", "20% less Global Damage", statOrder = { 1297, 10053 }, level = 30, group = "WeaponTreeLocalAttackSpeedAndLessDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedLessDamage3"] = { type = "Spawn", tier = 3, "40% increased Attack Speed", "20% less Global Damage", statOrder = { 1297, 10053 }, level = 60, group = "WeaponTreeLocalAttackSpeedAndLessDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedRangedLessDamage1"] = { type = "Spawn", tier = 1, "24% increased Attack Speed", "15% less Global Damage", statOrder = { 1297, 10053 }, level = 1, group = "WeaponTreeLocalAttackSpeedAndLessDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedRangedLessDamage2"] = { type = "Spawn", tier = 2, "27% increased Attack Speed", "15% less Global Damage", statOrder = { 1297, 10053 }, level = 30, group = "WeaponTreeLocalAttackSpeedAndLessDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedRangedLessDamage3"] = { type = "Spawn", tier = 3, "30% increased Attack Speed", "15% less Global Damage", statOrder = { 1297, 10053 }, level = 60, group = "WeaponTreeLocalAttackSpeedAndLessDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeed1"] = { type = "Spawn", tier = 1, "8% increased Attack Speed", statOrder = { 1297 }, level = 1, group = "WeaponTreeLocalIncreasedAttackSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeed2"] = { type = "Spawn", tier = 2, "9% increased Attack Speed", statOrder = { 1297 }, level = 30, group = "WeaponTreeLocalIncreasedAttackSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeed3"] = { type = "Spawn", tier = 3, "10% increased Attack Speed", statOrder = { 1297 }, level = 60, group = "WeaponTreeLocalIncreasedAttackSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedRanged1"] = { type = "Spawn", tier = 1, "5% increased Attack Speed", statOrder = { 1297 }, level = 1, group = "WeaponTreeLocalIncreasedAttackSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedRanged2"] = { type = "Spawn", tier = 2, "6% increased Attack Speed", statOrder = { 1297 }, level = 30, group = "WeaponTreeLocalIncreasedAttackSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedRanged3"] = { type = "Spawn", tier = 3, "7% increased Attack Speed", statOrder = { 1297 }, level = 60, group = "WeaponTreeLocalIncreasedAttackSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedOnslaughtOnKill1"] = { type = "Spawn", tier = 1, "4% increased Attack Speed", "6% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1297, 2865 }, level = 10, group = "WeaponTreeLocalIncreasedAttackSpeedAndOnslaughtOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedOnslaughtOnKill2"] = { type = "Spawn", tier = 2, "5% increased Attack Speed", "6% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1297, 2865 }, level = 50, group = "WeaponTreeLocalIncreasedAttackSpeedAndOnslaughtOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedOnslaughtOnKill3"] = { type = "Spawn", tier = 3, "6% increased Attack Speed", "6% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1297, 2865 }, level = 80, group = "WeaponTreeLocalIncreasedAttackSpeedAndOnslaughtOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedRangedOnslaughtOnKill1"] = { type = "Spawn", tier = 1, "3% increased Attack Speed", "6% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1297, 2865 }, level = 10, group = "WeaponTreeLocalIncreasedAttackSpeedAndOnslaughtOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedRangedOnslaughtOnKill2"] = { type = "Spawn", tier = 2, "4% increased Attack Speed", "6% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1297, 2865 }, level = 50, group = "WeaponTreeLocalIncreasedAttackSpeedAndOnslaughtOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedRangedOnslaughtOnKill3"] = { type = "Spawn", tier = 3, "5% increased Attack Speed", "6% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1297, 2865 }, level = 80, group = "WeaponTreeLocalIncreasedAttackSpeedAndOnslaughtOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedFrenzyChargeOnKill1"] = { type = "Spawn", tier = 1, "4% increased Attack Speed", "6% chance to gain a Frenzy Charge on Kill", statOrder = { 1297, 2506 }, level = 10, group = "WeaponTreeLocalIncreasedAttackSpeedAndFrenzyOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedFrenzyChargeOnKill2"] = { type = "Spawn", tier = 2, "5% increased Attack Speed", "6% chance to gain a Frenzy Charge on Kill", statOrder = { 1297, 2506 }, level = 50, group = "WeaponTreeLocalIncreasedAttackSpeedAndFrenzyOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedFrenzyChargeOnKill3"] = { type = "Spawn", tier = 3, "6% increased Attack Speed", "6% chance to gain a Frenzy Charge on Kill", statOrder = { 1297, 2506 }, level = 80, group = "WeaponTreeLocalIncreasedAttackSpeedAndFrenzyOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedRangedFrenzyChargeOnKill1"] = { type = "Spawn", tier = 1, "3% increased Attack Speed", "6% chance to gain a Frenzy Charge on Kill", statOrder = { 1297, 2506 }, level = 10, group = "WeaponTreeLocalIncreasedAttackSpeedAndFrenzyOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedRangedFrenzyChargeOnKill2"] = { type = "Spawn", tier = 2, "4% increased Attack Speed", "6% chance to gain a Frenzy Charge on Kill", statOrder = { 1297, 2506 }, level = 50, group = "WeaponTreeLocalIncreasedAttackSpeedAndFrenzyOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedRangedFrenzyChargeOnKill3"] = { type = "Spawn", tier = 3, "5% increased Attack Speed", "6% chance to gain a Frenzy Charge on Kill", statOrder = { 1297, 2506 }, level = 80, group = "WeaponTreeLocalIncreasedAttackSpeedAndFrenzyOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedLocalDoubleDamageChance1"] = { type = "Spawn", tier = 1, "25% reduced Attack Speed", "Attacks with this Weapon have 20% chance to deal Double Damage", statOrder = { 1297, 7528 }, level = 1, group = "WeaponTreeLocalIncreasedAttackSpeedAndLocalDoubleDamageChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedLocalDoubleDamageChance2"] = { type = "Spawn", tier = 2, "25% reduced Attack Speed", "Attacks with this Weapon have 25% chance to deal Double Damage", statOrder = { 1297, 7528 }, level = 30, group = "WeaponTreeLocalIncreasedAttackSpeedAndLocalDoubleDamageChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedLocalDoubleDamageChance3"] = { type = "Spawn", tier = 3, "25% reduced Attack Speed", "Attacks with this Weapon have 30% chance to deal Double Damage", statOrder = { 1297, 7528 }, level = 60, group = "WeaponTreeLocalIncreasedAttackSpeedAndLocalDoubleDamageChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedRangedLocalDoubleDamageChance1"] = { type = "Spawn", tier = 1, "20% reduced Attack Speed", "Attacks with this Weapon have 15% chance to deal Double Damage", statOrder = { 1297, 7528 }, level = 1, group = "WeaponTreeLocalIncreasedAttackSpeedAndLocalDoubleDamageChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedRangedLocalDoubleDamageChance2"] = { type = "Spawn", tier = 2, "20% reduced Attack Speed", "Attacks with this Weapon have 20% chance to deal Double Damage", statOrder = { 1297, 7528 }, level = 30, group = "WeaponTreeLocalIncreasedAttackSpeedAndLocalDoubleDamageChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalAttackSpeedRangedLocalDoubleDamageChance3"] = { type = "Spawn", tier = 3, "20% reduced Attack Speed", "Attacks with this Weapon have 25% chance to deal Double Damage", statOrder = { 1297, 7528 }, level = 60, group = "WeaponTreeLocalIncreasedAttackSpeedAndLocalDoubleDamageChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalAlwaysHitReducedAttackSpeed"] = { type = "MergeOnly", tier = 1, "50% reduced Attack Speed", "Hits can't be Evaded", statOrder = { 1297, 1920 }, level = 60, group = "WeaponTreeAlwaysHitsAndLocalAttackSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 625, 0 }, modTags = { }, }, - ["WeaponTreeLocalAlwaysHitReducedCriticalStrikeChance"] = { type = "MergeOnly", tier = 1, "-5% to Critical Strike Chance", "Hits can't be Evaded", statOrder = { 1347, 1920 }, level = 60, group = "WeaponTreeAlwaysHitsAndLocalCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 625, 0 }, modTags = { }, }, - ["WeaponTreeLocalAccuracyRating1"] = { type = "Spawn", tier = 1, "+150 to Accuracy Rating", statOrder = { 1901 }, level = 1, group = "WeaponTreeLocalAccuracyRating", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalAccuracyRating2"] = { type = "Spawn", tier = 2, "+250 to Accuracy Rating", statOrder = { 1901 }, level = 30, group = "WeaponTreeLocalAccuracyRating", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalAccuracyRating3"] = { type = "Spawn", tier = 3, "+350 to Accuracy Rating", statOrder = { 1901 }, level = 60, group = "WeaponTreeLocalAccuracyRating", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalAccuracyRatingAndIncreasedDexterity1"] = { type = "Spawn", tier = 1, "5% increased Dexterity", "+80 to Accuracy Rating", statOrder = { 1070, 1901 }, level = 10, group = "WeaponTreeLocalAccuracyRatingAndDexterityPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalAccuracyRatingAndIncreasedDexterity2"] = { type = "Spawn", tier = 2, "5% increased Dexterity", "+160 to Accuracy Rating", statOrder = { 1070, 1901 }, level = 50, group = "WeaponTreeLocalAccuracyRatingAndDexterityPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalAccuracyRatingAndIncreasedDexterity3"] = { type = "Spawn", tier = 3, "5% increased Dexterity", "+240 to Accuracy Rating", statOrder = { 1070, 1901 }, level = 80, group = "WeaponTreeLocalAccuracyRatingAndDexterityPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalAccuracyRatingAndIncreasedDexterity2h1"] = { type = "Spawn", tier = 1, "10% increased Dexterity", "+80 to Accuracy Rating", statOrder = { 1070, 1901 }, level = 10, group = "WeaponTreeLocalAccuracyRatingAndDexterityPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalAccuracyRatingAndIncreasedDexterity2h2"] = { type = "Spawn", tier = 2, "10% increased Dexterity", "+160 to Accuracy Rating", statOrder = { 1070, 1901 }, level = 50, group = "WeaponTreeLocalAccuracyRatingAndDexterityPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalAccuracyRatingAndIncreasedDexterity2h3"] = { type = "Spawn", tier = 3, "10% increased Dexterity", "+240 to Accuracy Rating", statOrder = { 1070, 1901 }, level = 80, group = "WeaponTreeLocalAccuracyRatingAndDexterityPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalAccuracyRatingAndEvasion1"] = { type = "Spawn", tier = 1, "15% increased Evasion Rating", "+80 to Accuracy Rating", statOrder = { 1432, 1901 }, level = 10, group = "WeaponTreeLocalAccuracyRatingAndEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalAccuracyRatingAndEvasion2"] = { type = "Spawn", tier = 2, "15% increased Evasion Rating", "+160 to Accuracy Rating", statOrder = { 1432, 1901 }, level = 50, group = "WeaponTreeLocalAccuracyRatingAndEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalAccuracyRatingAndEvasion3"] = { type = "Spawn", tier = 3, "15% increased Evasion Rating", "+240 to Accuracy Rating", statOrder = { 1432, 1901 }, level = 80, group = "WeaponTreeLocalAccuracyRatingAndEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalAccuracyRatingAndEvasion2h1"] = { type = "Spawn", tier = 1, "30% increased Evasion Rating", "+80 to Accuracy Rating", statOrder = { 1432, 1901 }, level = 10, group = "WeaponTreeLocalAccuracyRatingAndEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalAccuracyRatingAndEvasion2h2"] = { type = "Spawn", tier = 2, "30% increased Evasion Rating", "+160 to Accuracy Rating", statOrder = { 1432, 1901 }, level = 50, group = "WeaponTreeLocalAccuracyRatingAndEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalAccuracyRatingAndEvasion2h3"] = { type = "Spawn", tier = 3, "30% increased Evasion Rating", "+240 to Accuracy Rating", statOrder = { 1432, 1901 }, level = 80, group = "WeaponTreeLocalAccuracyRatingAndEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChanceSpellCriticalStrikeMultiplier1"] = { type = "Spawn", tier = 1, "+40% to Critical Strike Multiplier for Spell Damage", "-2% to Spell Critical Strike Chance", statOrder = { 1375, 9610 }, level = 1, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChanceSpellCriticalStrikeMultiplier2"] = { type = "Spawn", tier = 2, "+50% to Critical Strike Multiplier for Spell Damage", "-2% to Spell Critical Strike Chance", statOrder = { 1375, 9610 }, level = 30, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChanceSpellCriticalStrikeMultiplier3"] = { type = "Spawn", tier = 3, "+60% to Critical Strike Multiplier for Spell Damage", "-2% to Spell Critical Strike Chance", statOrder = { 1375, 9610 }, level = 60, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChance2hSpellCriticalStrikeMultiplier1"] = { type = "Spawn", tier = 1, "+60% to Critical Strike Multiplier for Spell Damage", "-2% to Spell Critical Strike Chance", statOrder = { 1375, 9610 }, level = 1, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChance2hSpellCriticalStrikeMultiplier2"] = { type = "Spawn", tier = 2, "+80% to Critical Strike Multiplier for Spell Damage", "-2% to Spell Critical Strike Chance", statOrder = { 1375, 9610 }, level = 30, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChance2hSpellCriticalStrikeMultiplier3"] = { type = "Spawn", tier = 3, "+100% to Critical Strike Multiplier for Spell Damage", "-2% to Spell Critical Strike Chance", statOrder = { 1375, 9610 }, level = 60, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChanceCriticalsDealNoExtraDamage1"] = { type = "Spawn", tier = 1, "Your Critical Strikes do not deal extra Damage", "+5% to Spell Critical Strike Chance", statOrder = { 2551, 9610 }, level = 10, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndNoExtraDamageWithCrits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChanceCriticalsDealNoExtraDamage2"] = { type = "Spawn", tier = 2, "Your Critical Strikes do not deal extra Damage", "+5.5% to Spell Critical Strike Chance", statOrder = { 2551, 9610 }, level = 50, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndNoExtraDamageWithCrits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChanceCriticalsDealNoExtraDamage3"] = { type = "Spawn", tier = 3, "Your Critical Strikes do not deal extra Damage", "+6% to Spell Critical Strike Chance", statOrder = { 2551, 9610 }, level = 80, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndNoExtraDamageWithCrits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChance2hCriticalsDealNoExtraDamage1"] = { type = "Spawn", tier = 1, "Your Critical Strikes do not deal extra Damage", "+7% to Spell Critical Strike Chance", statOrder = { 2551, 9610 }, level = 10, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndNoExtraDamageWithCrits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChance2hCriticalsDealNoExtraDamage2"] = { type = "Spawn", tier = 2, "Your Critical Strikes do not deal extra Damage", "+8% to Spell Critical Strike Chance", statOrder = { 2551, 9610 }, level = 50, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndNoExtraDamageWithCrits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChance2hCriticalsDealNoExtraDamage3"] = { type = "Spawn", tier = 3, "Your Critical Strikes do not deal extra Damage", "+9% to Spell Critical Strike Chance", statOrder = { 2551, 9610 }, level = 80, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndNoExtraDamageWithCrits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "+0.4% to Spell Critical Strike Chance", statOrder = { 9610 }, level = 1, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpells", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 0, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "+0.5% to Spell Critical Strike Chance", statOrder = { 9610 }, level = 30, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpells", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 0, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "+0.6% to Spell Critical Strike Chance", statOrder = { 9610 }, level = 60, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpells", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 0, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChance2h1"] = { type = "Spawn", tier = 1, "+0.8% to Spell Critical Strike Chance", statOrder = { 9610 }, level = 1, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpells", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChance2h2"] = { type = "Spawn", tier = 2, "+0.9% to Spell Critical Strike Chance", statOrder = { 9610 }, level = 30, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpells", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChance2h3"] = { type = "Spawn", tier = 3, "+1% to Spell Critical Strike Chance", statOrder = { 9610 }, level = 60, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpells", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChanceReducedSpellCriticalStrikeMultiplier1"] = { type = "Spawn", tier = 1, "-30% to Critical Strike Multiplier for Spell Damage", "+1% to Spell Critical Strike Chance", statOrder = { 1375, 9610 }, level = 1, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChanceReducedSpellCriticalStrikeMultiplier2"] = { type = "Spawn", tier = 2, "-30% to Critical Strike Multiplier for Spell Damage", "+1.3% to Spell Critical Strike Chance", statOrder = { 1375, 9610 }, level = 30, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChanceReducedSpellCriticalStrikeMultiplier3"] = { type = "Spawn", tier = 3, "-30% to Critical Strike Multiplier for Spell Damage", "+1.5% to Spell Critical Strike Chance", statOrder = { 1375, 9610 }, level = 60, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChance2hReducedSpellCriticalStrikeMultiplier1"] = { type = "Spawn", tier = 1, "-60% to Critical Strike Multiplier for Spell Damage", "+1.8% to Spell Critical Strike Chance", statOrder = { 1375, 9610 }, level = 1, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChance2hReducedSpellCriticalStrikeMultiplier2"] = { type = "Spawn", tier = 2, "-60% to Critical Strike Multiplier for Spell Damage", "+2.2% to Spell Critical Strike Chance", statOrder = { 1375, 9610 }, level = 30, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChance2hReducedSpellCriticalStrikeMultiplier3"] = { type = "Spawn", tier = 3, "-60% to Critical Strike Multiplier for Spell Damage", "+2.6% to Spell Critical Strike Chance", statOrder = { 1375, 9610 }, level = 60, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChanceReservationEfficiencyOfSkills1"] = { type = "Spawn", tier = 1, "15% reduced Reservation Efficiency of Skills", "+0.8% to Spell Critical Strike Chance", statOrder = { 2107, 9610 }, level = 10, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChanceReservationEfficiencyOfSkills2"] = { type = "Spawn", tier = 2, "15% reduced Reservation Efficiency of Skills", "+1% to Spell Critical Strike Chance", statOrder = { 2107, 9610 }, level = 50, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChanceReservationEfficiencyOfSkills3"] = { type = "Spawn", tier = 3, "15% reduced Reservation Efficiency of Skills", "+1.2% to Spell Critical Strike Chance", statOrder = { 2107, 9610 }, level = 80, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChance2hReservationEfficiencyOfSkills1"] = { type = "Spawn", tier = 1, "25% reduced Reservation Efficiency of Skills", "+1.2% to Spell Critical Strike Chance", statOrder = { 2107, 9610 }, level = 10, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChance2hReservationEfficiencyOfSkills2"] = { type = "Spawn", tier = 2, "25% reduced Reservation Efficiency of Skills", "+1.6% to Spell Critical Strike Chance", statOrder = { 2107, 9610 }, level = 50, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellCriticalStrikeChance2hReservationEfficiencyOfSkills3"] = { type = "Spawn", tier = 3, "25% reduced Reservation Efficiency of Skills", "+2% to Spell Critical Strike Chance", statOrder = { 2107, 9610 }, level = 80, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeCastSpeedLessDamage1"] = { type = "Spawn", tier = 1, "18% more Cast Speed", "10% less Global Damage", statOrder = { 10051, 10053 }, level = 1, group = "WeaponTreeCastSpeedAndDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeCastSpeedLessDamage2"] = { type = "Spawn", tier = 2, "20% more Cast Speed", "10% less Global Damage", statOrder = { 10051, 10053 }, level = 30, group = "WeaponTreeCastSpeedAndDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeCastSpeedLessDamage3"] = { type = "Spawn", tier = 3, "22% more Cast Speed", "10% less Global Damage", statOrder = { 10051, 10053 }, level = 60, group = "WeaponTreeCastSpeedAndDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeCastSpeed2hLessDamage1"] = { type = "Spawn", tier = 1, "24% more Cast Speed", "15% less Global Damage", statOrder = { 10051, 10053 }, level = 1, group = "WeaponTreeCastSpeedAndDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeCastSpeed2hLessDamage2"] = { type = "Spawn", tier = 2, "27% more Cast Speed", "15% less Global Damage", statOrder = { 10051, 10053 }, level = 30, group = "WeaponTreeCastSpeedAndDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeCastSpeed2hLessDamage3"] = { type = "Spawn", tier = 3, "30% more Cast Speed", "15% less Global Damage", statOrder = { 10051, 10053 }, level = 60, group = "WeaponTreeCastSpeedAndDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeCastSpeed1"] = { type = "Spawn", tier = 1, "4% more Cast Speed", statOrder = { 10051 }, level = 1, group = "WeaponTreeCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 0, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeCastSpeed2"] = { type = "Spawn", tier = 2, "5% more Cast Speed", statOrder = { 10051 }, level = 30, group = "WeaponTreeCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 0, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeCastSpeed3"] = { type = "Spawn", tier = 3, "6% more Cast Speed", statOrder = { 10051 }, level = 60, group = "WeaponTreeCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 0, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeCastSpeed2h1"] = { type = "Spawn", tier = 1, "8% more Cast Speed", statOrder = { 10051 }, level = 1, group = "WeaponTreeCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeCastSpeed2h2"] = { type = "Spawn", tier = 2, "9% more Cast Speed", statOrder = { 10051 }, level = 30, group = "WeaponTreeCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeCastSpeed2h3"] = { type = "Spawn", tier = 3, "10% more Cast Speed", statOrder = { 10051 }, level = 60, group = "WeaponTreeCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeCastSpeedSkillCost1"] = { type = "Spawn", tier = 1, "12% increased Cost of Skills", "6% more Cast Speed", statOrder = { 1762, 10051 }, level = 1, group = "WeaponTreeCastSpeedAndSkillCost", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeCastSpeedSkillCost2"] = { type = "Spawn", tier = 2, "12% increased Cost of Skills", "7% more Cast Speed", statOrder = { 1762, 10051 }, level = 30, group = "WeaponTreeCastSpeedAndSkillCost", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeCastSpeedSkillCost3"] = { type = "Spawn", tier = 3, "12% increased Cost of Skills", "8% more Cast Speed", statOrder = { 1762, 10051 }, level = 60, group = "WeaponTreeCastSpeedAndSkillCost", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeCastSpeed2hSkillCost1"] = { type = "Spawn", tier = 1, "20% increased Cost of Skills", "10% more Cast Speed", statOrder = { 1762, 10051 }, level = 1, group = "WeaponTreeCastSpeedAndSkillCost", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeCastSpeed2hSkillCost2"] = { type = "Spawn", tier = 2, "20% increased Cost of Skills", "12% more Cast Speed", statOrder = { 1762, 10051 }, level = 30, group = "WeaponTreeCastSpeedAndSkillCost", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeCastSpeed2hSkillCost3"] = { type = "Spawn", tier = 3, "20% increased Cost of Skills", "14% more Cast Speed", statOrder = { 1762, 10051 }, level = 60, group = "WeaponTreeCastSpeedAndSkillCost", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeCastSpeedAddedSpellDamageFromWeaponDamage1"] = { type = "Spawn", tier = 1, "Spells you Cast have Added Spell Damage equal to 12% of the Damage of this Weapon", "10% less Cast Speed", statOrder = { 9676, 10051 }, level = 10, group = "WeaponTreeCastSpeedAndAddedSpellDamageFromWeaponDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeCastSpeedAddedSpellDamageFromWeaponDamage2"] = { type = "Spawn", tier = 2, "Spells you Cast have Added Spell Damage equal to 16% of the Damage of this Weapon", "10% less Cast Speed", statOrder = { 9676, 10051 }, level = 50, group = "WeaponTreeCastSpeedAndAddedSpellDamageFromWeaponDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeCastSpeedAddedSpellDamageFromWeaponDamage3"] = { type = "Spawn", tier = 3, "Spells you Cast have Added Spell Damage equal to 20% of the Damage of this Weapon", "10% less Cast Speed", statOrder = { 9676, 10051 }, level = 80, group = "WeaponTreeCastSpeedAndAddedSpellDamageFromWeaponDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeCastSpeed2hAddedSpellDamageFromWeaponDamage1"] = { type = "Spawn", tier = 1, "Spells you Cast have Added Spell Damage equal to 20% of the Damage of this Weapon", "15% less Cast Speed", statOrder = { 9676, 10051 }, level = 10, group = "WeaponTreeCastSpeedAndAddedSpellDamageFromWeaponDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeCastSpeed2hAddedSpellDamageFromWeaponDamage2"] = { type = "Spawn", tier = 2, "Spells you Cast have Added Spell Damage equal to 25% of the Damage of this Weapon", "15% less Cast Speed", statOrder = { 9676, 10051 }, level = 50, group = "WeaponTreeCastSpeedAndAddedSpellDamageFromWeaponDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeCastSpeed2hAddedSpellDamageFromWeaponDamage3"] = { type = "Spawn", tier = 3, "Spells you Cast have Added Spell Damage equal to 30% of the Damage of this Weapon", "15% less Cast Speed", statOrder = { 9676, 10051 }, level = 80, group = "WeaponTreeCastSpeedAndAddedSpellDamageFromWeaponDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeBaseManaRegenLessMana1"] = { type = "Spawn", tier = 1, "Regenerate 1.5% of Mana per second", "15% less maximum Mana", statOrder = { 1463, 10075 }, level = 1, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeBaseManaRegenLessMana2"] = { type = "Spawn", tier = 2, "Regenerate 1.8% of Mana per second", "15% less maximum Mana", statOrder = { 1463, 10075 }, level = 30, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeBaseManaRegenLessMana3"] = { type = "Spawn", tier = 3, "Regenerate 2% of Mana per second", "15% less maximum Mana", statOrder = { 1463, 10075 }, level = 60, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeBaseManaRegen2hLessMana1"] = { type = "Spawn", tier = 1, "Regenerate 2% of Mana per second", "25% less maximum Mana", statOrder = { 1463, 10075 }, level = 1, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeBaseManaRegen2hLessMana2"] = { type = "Spawn", tier = 2, "Regenerate 2.5% of Mana per second", "25% less maximum Mana", statOrder = { 1463, 10075 }, level = 30, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeBaseManaRegen2hLessMana3"] = { type = "Spawn", tier = 3, "Regenerate 3% of Mana per second", "25% less maximum Mana", statOrder = { 1463, 10075 }, level = 60, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeBaseManaRegenReservationEfficiencyOfSkills1"] = { type = "Spawn", tier = 1, "Regenerate 1% of Mana per second", "20% reduced Reservation Efficiency of Skills", statOrder = { 1463, 2107 }, level = 10, group = "WeaponTreeBaseManaRegenerationAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeBaseManaRegenReservationEfficiencyOfSkills2"] = { type = "Spawn", tier = 2, "Regenerate 1.3% of Mana per second", "20% reduced Reservation Efficiency of Skills", statOrder = { 1463, 2107 }, level = 50, group = "WeaponTreeBaseManaRegenerationAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeBaseManaRegenReservationEfficiencyOfSkills3"] = { type = "Spawn", tier = 3, "Regenerate 1.5% of Mana per second", "20% reduced Reservation Efficiency of Skills", statOrder = { 1463, 2107 }, level = 80, group = "WeaponTreeBaseManaRegenerationAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeBaseManaRegen2hReservationEfficiencyOfSkills1"] = { type = "Spawn", tier = 1, "Regenerate 1.5% of Mana per second", "30% reduced Reservation Efficiency of Skills", statOrder = { 1463, 2107 }, level = 10, group = "WeaponTreeBaseManaRegenerationAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeBaseManaRegen2hReservationEfficiencyOfSkills2"] = { type = "Spawn", tier = 2, "Regenerate 2% of Mana per second", "30% reduced Reservation Efficiency of Skills", statOrder = { 1463, 2107 }, level = 50, group = "WeaponTreeBaseManaRegenerationAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeBaseManaRegen2hReservationEfficiencyOfSkills3"] = { type = "Spawn", tier = 3, "Regenerate 2.5% of Mana per second", "30% reduced Reservation Efficiency of Skills", statOrder = { 1463, 2107 }, level = 80, group = "WeaponTreeBaseManaRegenerationAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeBaseManaRegen1"] = { type = "Spawn", tier = 1, "Regenerate 0.5% of Mana per second", statOrder = { 1463 }, level = 1, group = "WeaponTreeBaseManaRegeneration", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 0, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeBaseManaRegen2"] = { type = "Spawn", tier = 2, "Regenerate 0.6% of Mana per second", statOrder = { 1463 }, level = 30, group = "WeaponTreeBaseManaRegeneration", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 0, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeBaseManaRegen3"] = { type = "Spawn", tier = 3, "Regenerate 0.7% of Mana per second", statOrder = { 1463 }, level = 60, group = "WeaponTreeBaseManaRegeneration", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 0, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeBaseManaRegen2h1"] = { type = "Spawn", tier = 1, "Regenerate 0.8% of Mana per second", statOrder = { 1463 }, level = 1, group = "WeaponTreeBaseManaRegeneration", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeBaseManaRegen2h2"] = { type = "Spawn", tier = 2, "Regenerate 0.9% of Mana per second", statOrder = { 1463 }, level = 30, group = "WeaponTreeBaseManaRegeneration", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeBaseManaRegen2h3"] = { type = "Spawn", tier = 3, "Regenerate 1% of Mana per second", statOrder = { 1463 }, level = 60, group = "WeaponTreeBaseManaRegeneration", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeBaseManaRegenMoreMana1"] = { type = "Spawn", tier = 1, "Regenerate 0.2% of Mana per second", "5% more maximum Mana", statOrder = { 1463, 10075 }, level = 1, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeBaseManaRegenMoreMana2"] = { type = "Spawn", tier = 2, "Regenerate 0.3% of Mana per second", "5% more maximum Mana", statOrder = { 1463, 10075 }, level = 30, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeBaseManaRegenMoreMana3"] = { type = "Spawn", tier = 3, "Regenerate 0.4% of Mana per second", "5% more maximum Mana", statOrder = { 1463, 10075 }, level = 60, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeBaseManaRegen2hMoreMana1"] = { type = "Spawn", tier = 1, "Regenerate 0.5% of Mana per second", "8% more maximum Mana", statOrder = { 1463, 10075 }, level = 1, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeBaseManaRegen2hMoreMana2"] = { type = "Spawn", tier = 2, "Regenerate 0.6% of Mana per second", "8% more maximum Mana", statOrder = { 1463, 10075 }, level = 30, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeBaseManaRegen2hMoreMana3"] = { type = "Spawn", tier = 3, "Regenerate 0.7% of Mana per second", "8% more maximum Mana", statOrder = { 1463, 10075 }, level = 60, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeBaseManaRegenManaCostOfSkills1"] = { type = "Spawn", tier = 1, "Regenerate 0.2% of Mana per second", "10% increased Mana Cost of Skills", statOrder = { 1463, 1764 }, level = 10, group = "WeaponTreeBaseManaRegenerationAndManaCostOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeBaseManaRegenManaCostOfSkills2"] = { type = "Spawn", tier = 2, "Regenerate 0.3% of Mana per second", "10% increased Mana Cost of Skills", statOrder = { 1463, 1764 }, level = 50, group = "WeaponTreeBaseManaRegenerationAndManaCostOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeBaseManaRegenManaCostOfSkills3"] = { type = "Spawn", tier = 3, "Regenerate 0.4% of Mana per second", "10% increased Mana Cost of Skills", statOrder = { 1463, 1764 }, level = 80, group = "WeaponTreeBaseManaRegenerationAndManaCostOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeBaseManaRegen2hManaCostOfSkills1"] = { type = "Spawn", tier = 1, "Regenerate 0.5% of Mana per second", "15% increased Mana Cost of Skills", statOrder = { 1463, 1764 }, level = 10, group = "WeaponTreeBaseManaRegenerationAndManaCostOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeBaseManaRegen2hManaCostOfSkills2"] = { type = "Spawn", tier = 2, "Regenerate 0.6% of Mana per second", "15% increased Mana Cost of Skills", statOrder = { 1463, 1764 }, level = 50, group = "WeaponTreeBaseManaRegenerationAndManaCostOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeBaseManaRegen2hManaCostOfSkills3"] = { type = "Spawn", tier = 3, "Regenerate 0.7% of Mana per second", "15% increased Mana Cost of Skills", statOrder = { 1463, 1764 }, level = 80, group = "WeaponTreeBaseManaRegenerationAndManaCostOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChanceMinionAttackAndCastSpeed1"] = { type = "Spawn", tier = 1, "Minions have +1% to Critical Strike Chance", "Minions have 10% reduced Attack and Cast Speed", statOrder = { 8807, 8810 }, level = 10, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChanceMinionAttackAndCastSpeed2"] = { type = "Spawn", tier = 2, "Minions have +1.2% to Critical Strike Chance", "Minions have 10% reduced Attack and Cast Speed", statOrder = { 8807, 8810 }, level = 50, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChanceMinionAttackAndCastSpeed3"] = { type = "Spawn", tier = 3, "Minions have +1.4% to Critical Strike Chance", "Minions have 10% reduced Attack and Cast Speed", statOrder = { 8807, 8810 }, level = 80, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChance2hMinionAttackAndCastSpeed1"] = { type = "Spawn", tier = 1, "Minions have +1.7% to Critical Strike Chance", "Minions have 15% reduced Attack and Cast Speed", statOrder = { 8807, 8810 }, level = 10, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChance2hMinionAttackAndCastSpeed2"] = { type = "Spawn", tier = 2, "Minions have +2% to Critical Strike Chance", "Minions have 15% reduced Attack and Cast Speed", statOrder = { 8807, 8810 }, level = 50, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChance2hMinionAttackAndCastSpeed3"] = { type = "Spawn", tier = 3, "Minions have +2.3% to Critical Strike Chance", "Minions have 15% reduced Attack and Cast Speed", statOrder = { 8807, 8810 }, level = 80, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionReducedCriticalStrikeChanceMinionCriticalStrikeMultiplier1"] = { type = "Spawn", tier = 1, "Minions have -1.5% to Critical Strike Chance", "Minions have +60% to Critical Strike Multiplier", statOrder = { 8807, 8831 }, level = 10, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionReducedCriticalStrikeChanceMinionCriticalStrikeMultiplier2"] = { type = "Spawn", tier = 2, "Minions have -1.5% to Critical Strike Chance", "Minions have +80% to Critical Strike Multiplier", statOrder = { 8807, 8831 }, level = 50, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionReducedCriticalStrikeChanceMinionCriticalStrikeMultiplier3"] = { type = "Spawn", tier = 3, "Minions have -1.5% to Critical Strike Chance", "Minions have +100% to Critical Strike Multiplier", statOrder = { 8807, 8831 }, level = 80, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionReducedCriticalStrikeChance2hMinionCriticalStrikeMultiplier1"] = { type = "Spawn", tier = 1, "Minions have -1.5% to Critical Strike Chance", "Minions have +100% to Critical Strike Multiplier", statOrder = { 8807, 8831 }, level = 10, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionReducedCriticalStrikeChance2hMinionCriticalStrikeMultiplier2"] = { type = "Spawn", tier = 2, "Minions have -1.5% to Critical Strike Chance", "Minions have +130% to Critical Strike Multiplier", statOrder = { 8807, 8831 }, level = 50, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionReducedCriticalStrikeChance2hMinionCriticalStrikeMultiplier3"] = { type = "Spawn", tier = 3, "Minions have -1.5% to Critical Strike Chance", "Minions have +160% to Critical Strike Multiplier", statOrder = { 8807, 8831 }, level = 80, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "Minions have +0.4% to Critical Strike Chance", statOrder = { 8807 }, level = 1, group = "WeaponTreeMinionBaseCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "Minions have +0.6% to Critical Strike Chance", statOrder = { 8807 }, level = 30, group = "WeaponTreeMinionBaseCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "Minions have +0.8% to Critical Strike Chance", statOrder = { 8807 }, level = 60, group = "WeaponTreeMinionBaseCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChance2h1"] = { type = "Spawn", tier = 1, "Minions have +0.7% to Critical Strike Chance", statOrder = { 8807 }, level = 1, group = "WeaponTreeMinionBaseCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChance2h2"] = { type = "Spawn", tier = 2, "Minions have +1% to Critical Strike Chance", statOrder = { 8807 }, level = 30, group = "WeaponTreeMinionBaseCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChance2h3"] = { type = "Spawn", tier = 3, "Minions have +1.3% to Critical Strike Chance", statOrder = { 8807 }, level = 60, group = "WeaponTreeMinionBaseCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChanceMinionCriticalStrikeMultiplier1"] = { type = "Spawn", tier = 1, "Minions have +0.2% to Critical Strike Chance", "Minions have +25% to Critical Strike Multiplier", statOrder = { 8807, 8831 }, level = 10, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChanceMinionCriticalStrikeMultiplier2"] = { type = "Spawn", tier = 2, "Minions have +0.3% to Critical Strike Chance", "Minions have +25% to Critical Strike Multiplier", statOrder = { 8807, 8831 }, level = 50, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChanceMinionCriticalStrikeMultiplier3"] = { type = "Spawn", tier = 3, "Minions have +0.4% to Critical Strike Chance", "Minions have +25% to Critical Strike Multiplier", statOrder = { 8807, 8831 }, level = 80, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChance2hMinionCriticalStrikeMultiplier1"] = { type = "Spawn", tier = 1, "Minions have +0.3% to Critical Strike Chance", "Minions have +35% to Critical Strike Multiplier", statOrder = { 8807, 8831 }, level = 10, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChance2hMinionCriticalStrikeMultiplier2"] = { type = "Spawn", tier = 2, "Minions have +0.5% to Critical Strike Chance", "Minions have +35% to Critical Strike Multiplier", statOrder = { 8807, 8831 }, level = 50, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChance2hMinionCriticalStrikeMultiplier3"] = { type = "Spawn", tier = 3, "Minions have +0.7% to Critical Strike Chance", "Minions have +35% to Critical Strike Multiplier", statOrder = { 8807, 8831 }, level = 80, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChanceReducedMinionAuraEffect1"] = { type = "Spawn", tier = 1, "15% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +1% to Critical Strike Chance", statOrder = { 2022, 8807 }, level = 10, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndAuraEffectOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChanceReducedMinionAuraEffect2"] = { type = "Spawn", tier = 2, "15% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +1.2% to Critical Strike Chance", statOrder = { 2022, 8807 }, level = 50, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndAuraEffectOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChanceReducedMinionAuraEffect3"] = { type = "Spawn", tier = 3, "15% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +1.4% to Critical Strike Chance", statOrder = { 2022, 8807 }, level = 80, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndAuraEffectOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChance2hReducedMinionAuraEffect1"] = { type = "Spawn", tier = 1, "25% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +1.7% to Critical Strike Chance", statOrder = { 2022, 8807 }, level = 10, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndAuraEffectOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChance2hReducedMinionAuraEffect2"] = { type = "Spawn", tier = 2, "25% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +2% to Critical Strike Chance", statOrder = { 2022, 8807 }, level = 50, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndAuraEffectOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionCriticalStrikeChance2hReducedMinionAuraEffect3"] = { type = "Spawn", tier = 3, "25% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +2.3% to Critical Strike Chance", statOrder = { 2022, 8807 }, level = 80, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndAuraEffectOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeedMinionNoExtraCritDamage1"] = { type = "Spawn", tier = 1, "Minions have 12% increased Attack and Cast Speed", "Minion Critical Strikes do not deal extra Damage", statOrder = { 8810, 8861 }, level = 10, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionNoExtraCritDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeedMinionNoExtraCritDamage2"] = { type = "Spawn", tier = 2, "Minions have 16% increased Attack and Cast Speed", "Minion Critical Strikes do not deal extra Damage", statOrder = { 8810, 8861 }, level = 50, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionNoExtraCritDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeedMinionNoExtraCritDamage3"] = { type = "Spawn", tier = 3, "Minions have 20% increased Attack and Cast Speed", "Minion Critical Strikes do not deal extra Damage", statOrder = { 8810, 8861 }, level = 80, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionNoExtraCritDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeed2hMinionNoExtraCritDamage1"] = { type = "Spawn", tier = 1, "Minions have 18% increased Attack and Cast Speed", "Minion Critical Strikes do not deal extra Damage", statOrder = { 8810, 8861 }, level = 10, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionNoExtraCritDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeed2hMinionNoExtraCritDamage2"] = { type = "Spawn", tier = 2, "Minions have 24% increased Attack and Cast Speed", "Minion Critical Strikes do not deal extra Damage", statOrder = { 8810, 8861 }, level = 50, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionNoExtraCritDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeed2hMinionNoExtraCritDamage3"] = { type = "Spawn", tier = 3, "Minions have 30% increased Attack and Cast Speed", "Minion Critical Strikes do not deal extra Damage", statOrder = { 8810, 8861 }, level = 80, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionNoExtraCritDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeed1"] = { type = "Spawn", tier = 1, "Minions have 8% increased Attack and Cast Speed", statOrder = { 8810 }, level = 1, group = "WeaponTreeMinionAttackSpeedAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeed2"] = { type = "Spawn", tier = 2, "Minions have 10% increased Attack and Cast Speed", statOrder = { 8810 }, level = 30, group = "WeaponTreeMinionAttackSpeedAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeed3"] = { type = "Spawn", tier = 3, "Minions have 12% increased Attack and Cast Speed", statOrder = { 8810 }, level = 60, group = "WeaponTreeMinionAttackSpeedAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeed2h1"] = { type = "Spawn", tier = 1, "Minions have 14% increased Attack and Cast Speed", statOrder = { 8810 }, level = 1, group = "WeaponTreeMinionAttackSpeedAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeed2h2"] = { type = "Spawn", tier = 2, "Minions have 18% increased Attack and Cast Speed", statOrder = { 8810 }, level = 30, group = "WeaponTreeMinionAttackSpeedAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeed2h3"] = { type = "Spawn", tier = 3, "Minions have 22% increased Attack and Cast Speed", statOrder = { 8810 }, level = 60, group = "WeaponTreeMinionAttackSpeedAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeedMinionDamageTaken1"] = { type = "Spawn", tier = 1, "Minions have 12% increased Attack and Cast Speed", "Minions take 15% increased Damage", statOrder = { 8810, 8838 }, level = 10, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeedMinionDamageTaken2"] = { type = "Spawn", tier = 2, "Minions have 16% increased Attack and Cast Speed", "Minions take 15% increased Damage", statOrder = { 8810, 8838 }, level = 50, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeedMinionDamageTaken3"] = { type = "Spawn", tier = 3, "Minions have 20% increased Attack and Cast Speed", "Minions take 15% increased Damage", statOrder = { 8810, 8838 }, level = 80, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeed2hMinionDamageTaken1"] = { type = "Spawn", tier = 1, "Minions have 18% increased Attack and Cast Speed", "Minions take 25% increased Damage", statOrder = { 8810, 8838 }, level = 10, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeed2hMinionDamageTaken2"] = { type = "Spawn", tier = 2, "Minions have 24% increased Attack and Cast Speed", "Minions take 25% increased Damage", statOrder = { 8810, 8838 }, level = 50, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeed2hMinionDamageTaken3"] = { type = "Spawn", tier = 3, "Minions have 30% increased Attack and Cast Speed", "Minions take 25% increased Damage", statOrder = { 8810, 8838 }, level = 80, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeedReducedMinionDamageTaken1"] = { type = "Spawn", tier = 1, "Minions have 4% increased Attack and Cast Speed", "Minions take 10% reduced Damage", statOrder = { 8810, 8838 }, level = 10, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeedReducedMinionDamageTaken2"] = { type = "Spawn", tier = 2, "Minions have 5% increased Attack and Cast Speed", "Minions take 10% reduced Damage", statOrder = { 8810, 8838 }, level = 50, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeedReducedMinionDamageTaken3"] = { type = "Spawn", tier = 3, "Minions have 6% increased Attack and Cast Speed", "Minions take 10% reduced Damage", statOrder = { 8810, 8838 }, level = 80, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeed2hReducedMinionDamageTaken1"] = { type = "Spawn", tier = 1, "Minions have 8% increased Attack and Cast Speed", "Minions take 15% reduced Damage", statOrder = { 8810, 8838 }, level = 10, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeed2hReducedMinionDamageTaken2"] = { type = "Spawn", tier = 2, "Minions have 10% increased Attack and Cast Speed", "Minions take 15% reduced Damage", statOrder = { 8810, 8838 }, level = 50, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAttackAndCastSpeed2hReducedMinionDamageTaken3"] = { type = "Spawn", tier = 3, "Minions have 12% increased Attack and Cast Speed", "Minions take 15% reduced Damage", statOrder = { 8810, 8838 }, level = 80, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAccuracyReducedMinionAuraEffect1"] = { type = "Spawn", tier = 1, "15% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +400 to Accuracy Rating", statOrder = { 2022, 8804 }, level = 10, group = "WeaponTreeMinionFlatAccuracyRatingAndEffectOfAurasOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAccuracyReducedMinionAuraEffect2"] = { type = "Spawn", tier = 2, "15% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +500 to Accuracy Rating", statOrder = { 2022, 8804 }, level = 50, group = "WeaponTreeMinionFlatAccuracyRatingAndEffectOfAurasOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAccuracyReducedMinionAuraEffect3"] = { type = "Spawn", tier = 3, "15% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +600 to Accuracy Rating", statOrder = { 2022, 8804 }, level = 80, group = "WeaponTreeMinionFlatAccuracyRatingAndEffectOfAurasOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAccuracy2hReducedMinionAuraEffect1"] = { type = "Spawn", tier = 1, "15% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +700 to Accuracy Rating", statOrder = { 2022, 8804 }, level = 10, group = "WeaponTreeMinionFlatAccuracyRatingAndEffectOfAurasOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAccuracy2hReducedMinionAuraEffect2"] = { type = "Spawn", tier = 2, "15% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +850 to Accuracy Rating", statOrder = { 2022, 8804 }, level = 50, group = "WeaponTreeMinionFlatAccuracyRatingAndEffectOfAurasOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAccuracy2hReducedMinionAuraEffect3"] = { type = "Spawn", tier = 3, "15% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +1000 to Accuracy Rating", statOrder = { 2022, 8804 }, level = 80, group = "WeaponTreeMinionFlatAccuracyRatingAndEffectOfAurasOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAccuracy1"] = { type = "Spawn", tier = 1, "Minions have +200 to Accuracy Rating", statOrder = { 8804 }, level = 1, group = "WeaponTreeMinionFlatAccuracyRating", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAccuracy2"] = { type = "Spawn", tier = 2, "Minions have +250 to Accuracy Rating", statOrder = { 8804 }, level = 30, group = "WeaponTreeMinionFlatAccuracyRating", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAccuracy3"] = { type = "Spawn", tier = 3, "Minions have +300 to Accuracy Rating", statOrder = { 8804 }, level = 60, group = "WeaponTreeMinionFlatAccuracyRating", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAccuracy2h1"] = { type = "Spawn", tier = 1, "Minions have +300 to Accuracy Rating", statOrder = { 8804 }, level = 1, group = "WeaponTreeMinionFlatAccuracyRating", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAccuracy2h2"] = { type = "Spawn", tier = 2, "Minions have +400 to Accuracy Rating", statOrder = { 8804 }, level = 30, group = "WeaponTreeMinionFlatAccuracyRating", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAccuracy2h3"] = { type = "Spawn", tier = 3, "Minions have +500 to Accuracy Rating", statOrder = { 8804 }, level = 60, group = "WeaponTreeMinionFlatAccuracyRating", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAccuracyMinionEvasion1"] = { type = "Spawn", tier = 1, "Minions have +100 to Accuracy Rating", "Minions have 25% increased Evasion Rating", statOrder = { 8804, 8842 }, level = 10, group = "WeaponTreeMinionFlatAccuracyRatingAndMinionEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAccuracyMinionEvasion2"] = { type = "Spawn", tier = 2, "Minions have +150 to Accuracy Rating", "Minions have 25% increased Evasion Rating", statOrder = { 8804, 8842 }, level = 50, group = "WeaponTreeMinionFlatAccuracyRatingAndMinionEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAccuracyMinionEvasion3"] = { type = "Spawn", tier = 3, "Minions have +200 to Accuracy Rating", "Minions have 25% increased Evasion Rating", statOrder = { 8804, 8842 }, level = 80, group = "WeaponTreeMinionFlatAccuracyRatingAndMinionEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAccuracy2hMinionEvasion1"] = { type = "Spawn", tier = 1, "Minions have +160 to Accuracy Rating", "Minions have 40% increased Evasion Rating", statOrder = { 8804, 8842 }, level = 10, group = "WeaponTreeMinionFlatAccuracyRatingAndMinionEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAccuracy2hMinionEvasion2"] = { type = "Spawn", tier = 2, "Minions have +240 to Accuracy Rating", "Minions have 40% increased Evasion Rating", statOrder = { 8804, 8842 }, level = 50, group = "WeaponTreeMinionFlatAccuracyRatingAndMinionEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAccuracy2hMinionEvasion3"] = { type = "Spawn", tier = 3, "Minions have +320 to Accuracy Rating", "Minions have 40% increased Evasion Rating", statOrder = { 8804, 8842 }, level = 80, group = "WeaponTreeMinionFlatAccuracyRatingAndMinionEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionAlwaysHitMinionCannotCrit"] = { type = "Spawn", tier = 1, "Minions never deal Critical Strikes", "Minions' Hits can't be Evaded", statOrder = { 8819, 8845 }, level = 60, group = "WeaponTreeMinionAlwaysHitAndCannotCrit", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeSpellBlockNoChanceToBlock1"] = { type = "Spawn", tier = 1, "16% Chance to Block Spell Damage", "No Chance to Block", statOrder = { 1046, 3132 }, level = 15, group = "WeaponTreeSpellBlockNoChanceToBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellBlockNoChanceToBlock2"] = { type = "Spawn", tier = 2, "20% Chance to Block Spell Damage", "No Chance to Block", statOrder = { 1046, 3132 }, level = 48, group = "WeaponTreeSpellBlockNoChanceToBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellBlockNoChanceToBlock3"] = { type = "Spawn", tier = 3, "24% Chance to Block Spell Damage", "No Chance to Block", statOrder = { 1046, 3132 }, level = 78, group = "WeaponTreeSpellBlockNoChanceToBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 125, 0 }, modTags = { }, }, - ["WeaponTreeSpellBlockReducedLocalBlock1"] = { type = "Spawn", tier = 1, "8% Chance to Block Spell Damage", "-5% Chance to Block", statOrder = { 1046, 2126 }, level = 1, group = "WeaponTreeSpellBlockReducedLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellBlockReducedLocalBlock2"] = { type = "Spawn", tier = 2, "10% Chance to Block Spell Damage", "-5% Chance to Block", statOrder = { 1046, 2126 }, level = 35, group = "WeaponTreeSpellBlockReducedLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellBlockReducedLocalBlock3"] = { type = "Spawn", tier = 3, "12% Chance to Block Spell Damage", "-5% Chance to Block", statOrder = { 1046, 2126 }, level = 70, group = "WeaponTreeSpellBlockReducedLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellBlockDamageFromBlockedHits1"] = { type = "Spawn", tier = 1, "8% Chance to Block Spell Damage", "You take 10% of Damage from Blocked Hits", statOrder = { 1046, 4813 }, level = 1, group = "WeaponTreeSpellBlockDamageFromBlockedHits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellBlockDamageFromBlockedHits2"] = { type = "Spawn", tier = 2, "10% Chance to Block Spell Damage", "You take 10% of Damage from Blocked Hits", statOrder = { 1046, 4813 }, level = 35, group = "WeaponTreeSpellBlockDamageFromBlockedHits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellBlockDamageFromBlockedHits3"] = { type = "Spawn", tier = 3, "12% Chance to Block Spell Damage", "You take 10% of Damage from Blocked Hits", statOrder = { 1046, 4813 }, level = 70, group = "WeaponTreeSpellBlockDamageFromBlockedHits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellBlock1"] = { type = "Spawn", tier = 1, "3% Chance to Block Spell Damage", statOrder = { 1046 }, level = 1, group = "WeaponTreeSpellBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellBlock2"] = { type = "Spawn", tier = 2, "4% Chance to Block Spell Damage", statOrder = { 1046 }, level = 35, group = "WeaponTreeSpellBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellBlock3"] = { type = "Spawn", tier = 3, "5% Chance to Block Spell Damage", statOrder = { 1046 }, level = 70, group = "WeaponTreeSpellBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellBlockMoreMana1"] = { type = "Spawn", tier = 1, "2% Chance to Block Spell Damage", "5% more maximum Mana", statOrder = { 1046, 10075 }, level = 48, group = "WeaponTreeSpellBlockMoreMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellBlockMoreMana2"] = { type = "Spawn", tier = 2, "3% Chance to Block Spell Damage", "5% more maximum Mana", statOrder = { 1046, 10075 }, level = 78, group = "WeaponTreeSpellBlockMoreMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalBlockCannotBlockSpells1"] = { type = "Spawn", tier = 1, "+8% Chance to Block", "Cannot Block Spell Damage", statOrder = { 2126, 5135 }, level = 15, group = "WeaponTreeLocalBlockCannotBlockSpells", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 125, 0 }, modTags = { }, }, - ["WeaponTreeLocalBlockCannotBlockSpells2"] = { type = "Spawn", tier = 2, "+10% Chance to Block", "Cannot Block Spell Damage", statOrder = { 2126, 5135 }, level = 48, group = "WeaponTreeLocalBlockCannotBlockSpells", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 125, 0 }, modTags = { }, }, - ["WeaponTreeLocalBlockCannotBlockSpells3"] = { type = "Spawn", tier = 3, "+12% Chance to Block", "Cannot Block Spell Damage", statOrder = { 2126, 5135 }, level = 78, group = "WeaponTreeLocalBlockCannotBlockSpells", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 125, 0 }, modTags = { }, }, - ["WeaponTreeLocalBlockDamageFromBlockedHits1"] = { type = "Spawn", tier = 1, "+8% Chance to Block", "You take 10% of Damage from Blocked Hits", statOrder = { 2126, 4813 }, level = 1, group = "WeaponTreeLocalBlockDamageFromBlockedHits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalBlockDamageFromBlockedHits2"] = { type = "Spawn", tier = 2, "+10% Chance to Block", "You take 10% of Damage from Blocked Hits", statOrder = { 2126, 4813 }, level = 35, group = "WeaponTreeLocalBlockDamageFromBlockedHits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalBlockDamageFromBlockedHits3"] = { type = "Spawn", tier = 3, "+12% Chance to Block", "You take 10% of Damage from Blocked Hits", statOrder = { 2126, 4813 }, level = 70, group = "WeaponTreeLocalBlockDamageFromBlockedHits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalBlockReducedLocalDefences1"] = { type = "Spawn", tier = 1, "40% reduced Armour, Evasion and Energy Shield", "+6% Chance to Block", statOrder = { 1438, 2126 }, level = 1, group = "WeaponTreeLocalBlockReducedLocalDefences", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalBlockReducedLocalDefences2"] = { type = "Spawn", tier = 2, "40% reduced Armour, Evasion and Energy Shield", "+7% Chance to Block", statOrder = { 1438, 2126 }, level = 35, group = "WeaponTreeLocalBlockReducedLocalDefences", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalBlockReducedLocalDefences3"] = { type = "Spawn", tier = 3, "40% reduced Armour, Evasion and Energy Shield", "+8% Chance to Block", statOrder = { 1438, 2126 }, level = 70, group = "WeaponTreeLocalBlockReducedLocalDefences", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalBlock1"] = { type = "Spawn", tier = 1, "+3% Chance to Block", statOrder = { 2126 }, level = 1, group = "WeaponTreeLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalBlock2"] = { type = "Spawn", tier = 2, "+4% Chance to Block", statOrder = { 2126 }, level = 35, group = "WeaponTreeLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalBlock3"] = { type = "Spawn", tier = 3, "+5% Chance to Block", statOrder = { 2126 }, level = 70, group = "WeaponTreeLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalBlockLifeOnBlock1"] = { type = "Spawn", tier = 1, "30 Life gained when you Block", "+2% Chance to Block", statOrder = { 1638, 2126 }, level = 10, group = "WeaponTreeLocalBlockLifeOnBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalBlockLifeOnBlock2"] = { type = "Spawn", tier = 2, "30 Life gained when you Block", "+3% Chance to Block", statOrder = { 1638, 2126 }, level = 42, group = "WeaponTreeLocalBlockLifeOnBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalBlockBlockRecovery1"] = { type = "Spawn", tier = 1, "30% increased Block Recovery", "+2% Chance to Block", statOrder = { 1052, 2126 }, level = 1, group = "WeaponTreeLocalBlockBlockRecovery", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalBlockBlockRecovery2"] = { type = "Spawn", tier = 2, "30% increased Block Recovery", "+3% Chance to Block", statOrder = { 1052, 2126 }, level = 35, group = "WeaponTreeLocalBlockBlockRecovery", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalDefencesReducedMaximumLife1"] = { type = "Spawn", tier = 1, "40% increased Armour, Evasion and Energy Shield", "5% reduced maximum Life", statOrder = { 1438, 1453 }, level = 10, group = "WeaponTreeLocalDefencesReducedMaximumLife", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalDefencesReducedMaximumLife2"] = { type = "Spawn", tier = 2, "50% increased Armour, Evasion and Energy Shield", "5% reduced maximum Life", statOrder = { 1438, 1453 }, level = 42, group = "WeaponTreeLocalDefencesReducedMaximumLife", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalDefencesReducedMaximumLife3"] = { type = "Spawn", tier = 3, "60% increased Armour, Evasion and Energy Shield", "5% reduced maximum Life", statOrder = { 1438, 1453 }, level = 75, group = "WeaponTreeLocalDefencesReducedMaximumLife", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalDefencesReducedLocalBlock1"] = { type = "Spawn", tier = 1, "40% increased Armour, Evasion and Energy Shield", "-5% Chance to Block", statOrder = { 1438, 2126 }, level = 1, group = "WeaponTreeLocalDefencesReducedLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalDefencesReducedLocalBlock2"] = { type = "Spawn", tier = 2, "50% increased Armour, Evasion and Energy Shield", "-5% Chance to Block", statOrder = { 1438, 2126 }, level = 35, group = "WeaponTreeLocalDefencesReducedLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalDefencesReducedLocalBlock3"] = { type = "Spawn", tier = 3, "60% increased Armour, Evasion and Energy Shield", "-5% Chance to Block", statOrder = { 1438, 2126 }, level = 70, group = "WeaponTreeLocalDefencesReducedLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalDefences1"] = { type = "Spawn", tier = 1, "24% increased Armour, Evasion and Energy Shield", statOrder = { 1438 }, level = 1, group = "WeaponTreeLocalDefences", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalDefences2"] = { type = "Spawn", tier = 2, "32% increased Armour, Evasion and Energy Shield", statOrder = { 1438 }, level = 35, group = "WeaponTreeLocalDefences", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalDefences3"] = { type = "Spawn", tier = 3, "40% increased Armour, Evasion and Energy Shield", statOrder = { 1438 }, level = 70, group = "WeaponTreeLocalDefences", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalDefencesReflectDamageTaken1"] = { type = "Spawn", tier = 1, "15% increased Armour, Evasion and Energy Shield", "40% reduced Reflected Damage taken", statOrder = { 1438, 4130 }, level = 20, group = "WeaponTreeLocalDefencesReflectDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalDefencesReflectDamageTaken2"] = { type = "Spawn", tier = 2, "20% increased Armour, Evasion and Energy Shield", "40% reduced Reflected Damage taken", statOrder = { 1438, 4130 }, level = 20, group = "WeaponTreeLocalDefencesReflectDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalDefencesReflectDamageTaken3"] = { type = "Spawn", tier = 3, "25% increased Armour, Evasion and Energy Shield", "40% reduced Reflected Damage taken", statOrder = { 1438, 4130 }, level = 20, group = "WeaponTreeLocalDefencesReflectDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalDefencesOffHandAttackDamage1"] = { type = "Spawn", tier = 1, "25% increased Attack Damage with Off Hand", "15% increased Armour, Evasion and Energy Shield", statOrder = { 1167, 1438 }, level = 10, group = "WeaponTreeLocalDefencesOffHandAttackDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalDefencesOffHandAttackDamage2"] = { type = "Spawn", tier = 2, "25% increased Attack Damage with Off Hand", "20% increased Armour, Evasion and Energy Shield", statOrder = { 1167, 1438 }, level = 42, group = "WeaponTreeLocalDefencesOffHandAttackDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalDefencesOffHandAttackDamage3"] = { type = "Spawn", tier = 3, "25% increased Attack Damage with Off Hand", "25% increased Armour, Evasion and Energy Shield", statOrder = { 1167, 1438 }, level = 75, group = "WeaponTreeLocalDefencesOffHandAttackDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeFireResistanceReducedColdResistance1"] = { type = "Spawn", tier = 1, "+30% to Fire Resistance", "-20% to Cold Resistance", statOrder = { 1507, 1513 }, level = 1, group = "WeaponTreeFireResistanceReducedColdResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeFireResistanceReducedColdResistance2"] = { type = "Spawn", tier = 2, "+36% to Fire Resistance", "-20% to Cold Resistance", statOrder = { 1507, 1513 }, level = 35, group = "WeaponTreeFireResistanceReducedColdResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeFireResistanceReducedColdResistance3"] = { type = "Spawn", tier = 3, "+42% to Fire Resistance", "-20% to Cold Resistance", statOrder = { 1507, 1513 }, level = 70, group = "WeaponTreeFireResistanceReducedColdResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeFireResistanceReducedLightningResistance1"] = { type = "Spawn", tier = 1, "+30% to Fire Resistance", "-20% to Lightning Resistance", statOrder = { 1507, 1518 }, level = 1, group = "WeaponTreeFireResistanceReducedLightningResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeFireResistanceReducedLightningResistance2"] = { type = "Spawn", tier = 2, "+36% to Fire Resistance", "-20% to Lightning Resistance", statOrder = { 1507, 1518 }, level = 35, group = "WeaponTreeFireResistanceReducedLightningResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeFireResistanceReducedLightningResistance3"] = { type = "Spawn", tier = 3, "+42% to Fire Resistance", "-20% to Lightning Resistance", statOrder = { 1507, 1518 }, level = 70, group = "WeaponTreeFireResistanceReducedLightningResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeColdResistanceReducedFireResistance1"] = { type = "Spawn", tier = 1, "-20% to Fire Resistance", "+30% to Cold Resistance", statOrder = { 1507, 1513 }, level = 1, group = "WeaponTreeColdResistanceReducedFireResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeColdResistanceReducedFireResistance2"] = { type = "Spawn", tier = 2, "-20% to Fire Resistance", "+36% to Cold Resistance", statOrder = { 1507, 1513 }, level = 35, group = "WeaponTreeColdResistanceReducedFireResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeColdResistanceReducedFireResistance3"] = { type = "Spawn", tier = 3, "-20% to Fire Resistance", "+42% to Cold Resistance", statOrder = { 1507, 1513 }, level = 70, group = "WeaponTreeColdResistanceReducedFireResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeColdResistanceReducedLightningResistance1"] = { type = "Spawn", tier = 1, "+30% to Cold Resistance", "-20% to Lightning Resistance", statOrder = { 1513, 1518 }, level = 1, group = "WeaponTreeColdResistanceReducedLightningResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeColdResistanceReducedLightningResistance2"] = { type = "Spawn", tier = 2, "+36% to Cold Resistance", "-20% to Lightning Resistance", statOrder = { 1513, 1518 }, level = 35, group = "WeaponTreeColdResistanceReducedLightningResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeColdResistanceReducedLightningResistance3"] = { type = "Spawn", tier = 3, "+42% to Cold Resistance", "-20% to Lightning Resistance", statOrder = { 1513, 1518 }, level = 70, group = "WeaponTreeColdResistanceReducedLightningResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeLightningResistanceReducedColdResistance1"] = { type = "Spawn", tier = 1, "-20% to Cold Resistance", "+30% to Lightning Resistance", statOrder = { 1513, 1518 }, level = 1, group = "WeaponTreeLightningResistanceReducedColdResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeLightningResistanceReducedColdResistance2"] = { type = "Spawn", tier = 2, "-20% to Cold Resistance", "+36% to Lightning Resistance", statOrder = { 1513, 1518 }, level = 35, group = "WeaponTreeLightningResistanceReducedColdResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeLightningResistanceReducedColdResistance3"] = { type = "Spawn", tier = 3, "-20% to Cold Resistance", "+42% to Lightning Resistance", statOrder = { 1513, 1518 }, level = 70, group = "WeaponTreeLightningResistanceReducedColdResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeLightningResistanceReducedFireResistance1"] = { type = "Spawn", tier = 1, "-20% to Fire Resistance", "+30% to Lightning Resistance", statOrder = { 1507, 1518 }, level = 1, group = "WeaponTreeLightningResistanceReducedFireResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeLightningResistanceReducedFireResistance2"] = { type = "Spawn", tier = 2, "-20% to Fire Resistance", "+36% to Lightning Resistance", statOrder = { 1507, 1518 }, level = 35, group = "WeaponTreeLightningResistanceReducedFireResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeLightningResistanceReducedFireResistance3"] = { type = "Spawn", tier = 3, "-20% to Fire Resistance", "+42% to Lightning Resistance", statOrder = { 1507, 1518 }, level = 70, group = "WeaponTreeLightningResistanceReducedFireResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeChaosResistanceReducedElementalResistance1"] = { type = "Spawn", tier = 1, "-6% to all Elemental Resistances", "+19% to Chaos Resistance", statOrder = { 1501, 1522 }, level = 10, group = "WeaponTreeChaosResistanceReducedElementalResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeChaosResistanceReducedElementalResistance2"] = { type = "Spawn", tier = 2, "-6% to all Elemental Resistances", "+23% to Chaos Resistance", statOrder = { 1501, 1522 }, level = 42, group = "WeaponTreeChaosResistanceReducedElementalResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeChaosResistanceReducedElementalResistance3"] = { type = "Spawn", tier = 3, "-6% to all Elemental Resistances", "+27% to Chaos Resistance", statOrder = { 1501, 1522 }, level = 75, group = "WeaponTreeChaosResistanceReducedElementalResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeElementalResistanceReducedChaosResistance1"] = { type = "Spawn", tier = 1, "+10% to all Elemental Resistances", "-13% to Chaos Resistance", statOrder = { 1501, 1522 }, level = 10, group = "WeaponTreeElementalResistanceReducedChaosResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeElementalResistanceReducedChaosResistance2"] = { type = "Spawn", tier = 2, "+12% to all Elemental Resistances", "-13% to Chaos Resistance", statOrder = { 1501, 1522 }, level = 42, group = "WeaponTreeElementalResistanceReducedChaosResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeElementalResistanceReducedChaosResistance3"] = { type = "Spawn", tier = 3, "+14% to all Elemental Resistances", "-13% to Chaos Resistance", statOrder = { 1501, 1522 }, level = 75, group = "WeaponTreeElementalResistanceReducedChaosResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeElementalResistanceReducedLocalDefences1"] = { type = "Spawn", tier = 1, "25% reduced Armour, Evasion and Energy Shield", "+10% to all Elemental Resistances", statOrder = { 1438, 1501 }, level = 1, group = "WeaponTreeElementalResistanceReducedLocalDefences", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeElementalResistanceReducedLocalDefences2"] = { type = "Spawn", tier = 2, "25% reduced Armour, Evasion and Energy Shield", "+12% to all Elemental Resistances", statOrder = { 1438, 1501 }, level = 35, group = "WeaponTreeElementalResistanceReducedLocalDefences", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeElementalResistanceReducedLocalDefences3"] = { type = "Spawn", tier = 3, "25% reduced Armour, Evasion and Energy Shield", "+14% to all Elemental Resistances", statOrder = { 1438, 1501 }, level = 70, group = "WeaponTreeElementalResistanceReducedLocalDefences", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeElementalResistanceReducedLocalBlock1"] = { type = "Spawn", tier = 1, "+10% to all Elemental Resistances", "-4% Chance to Block", statOrder = { 1501, 2126 }, level = 1, group = "WeaponTreeElementalResistanceReducedLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["WeaponTreeElementalResistanceReducedLocalBlock2"] = { type = "Spawn", tier = 2, "+12% to all Elemental Resistances", "-4% Chance to Block", statOrder = { 1501, 2126 }, level = 35, group = "WeaponTreeElementalResistanceReducedLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["WeaponTreeElementalResistanceReducedLocalBlock3"] = { type = "Spawn", tier = 3, "+14% to all Elemental Resistances", "-4% Chance to Block", statOrder = { 1501, 2126 }, level = 70, group = "WeaponTreeElementalResistanceReducedLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["WeaponTreeChaosResistanceReducedMaximumLife1"] = { type = "Spawn", tier = 1, "5% reduced maximum Life", "+19% to Chaos Resistance", statOrder = { 1453, 1522 }, level = 10, group = "WeaponTreeChaosResistanceReducedMaximumLife", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeChaosResistanceReducedMaximumLife2"] = { type = "Spawn", tier = 2, "5% reduced maximum Life", "+23% to Chaos Resistance", statOrder = { 1453, 1522 }, level = 42, group = "WeaponTreeChaosResistanceReducedMaximumLife", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeChaosResistanceReducedMaximumLife3"] = { type = "Spawn", tier = 3, "5% reduced maximum Life", "+27% to Chaos Resistance", statOrder = { 1453, 1522 }, level = 75, group = "WeaponTreeChaosResistanceReducedMaximumLife", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeMaximumFireResistanceReducedMaximumColdResistance1"] = { type = "Spawn", tier = 1, "+3% to maximum Fire Resistance", "-2% to maximum Cold Resistance", statOrder = { 1505, 1511 }, level = 45, group = "WeaponTreeMaximumFireResistanceReducedMaximumColdResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeMaximumFireResistanceReducedMaximumColdResistance2"] = { type = "Spawn", tier = 2, "+4% to maximum Fire Resistance", "-2% to maximum Cold Resistance", statOrder = { 1505, 1511 }, level = 82, group = "WeaponTreeMaximumFireResistanceReducedMaximumColdResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeMaximumFireResistanceReducedMaximumLightningResistance1"] = { type = "Spawn", tier = 1, "+3% to maximum Fire Resistance", "-2% to maximum Lightning Resistance", statOrder = { 1505, 1516 }, level = 45, group = "WeaponTreeMaximumFireResistanceReducedMaximumLightningResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeMaximumFireResistanceReducedMaximumLightningResistance2"] = { type = "Spawn", tier = 2, "+4% to maximum Fire Resistance", "-2% to maximum Lightning Resistance", statOrder = { 1505, 1516 }, level = 82, group = "WeaponTreeMaximumFireResistanceReducedMaximumLightningResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeMaximumColdResistanceReducedMaximumFireResistance1"] = { type = "Spawn", tier = 1, "-2% to maximum Fire Resistance", "+3% to maximum Cold Resistance", statOrder = { 1505, 1511 }, level = 45, group = "WeaponTreeMaximumColdResistanceReducedMaximumFireResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeMaximumColdResistanceReducedMaximumFireResistance2"] = { type = "Spawn", tier = 2, "-2% to maximum Fire Resistance", "+4% to maximum Cold Resistance", statOrder = { 1505, 1511 }, level = 82, group = "WeaponTreeMaximumColdResistanceReducedMaximumFireResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeMaximumColdResistanceReducedMaximumLightningResistance1"] = { type = "Spawn", tier = 1, "+3% to maximum Cold Resistance", "-2% to maximum Lightning Resistance", statOrder = { 1511, 1516 }, level = 45, group = "WeaponTreeMaximumColdResistanceReducedMaximumLightningResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeMaximumColdResistanceReducedMaximumLightningResistance2"] = { type = "Spawn", tier = 2, "+4% to maximum Cold Resistance", "-2% to maximum Lightning Resistance", statOrder = { 1511, 1516 }, level = 82, group = "WeaponTreeMaximumColdResistanceReducedMaximumLightningResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeMaximumLightningResistanceMaximumColdResistance1"] = { type = "Spawn", tier = 1, "-2% to maximum Cold Resistance", "+3% to maximum Lightning Resistance", statOrder = { 1511, 1516 }, level = 45, group = "WeaponTreeMaximumLightningResistanceMaximumColdResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeMaximumLightningResistanceMaximumColdResistance2"] = { type = "Spawn", tier = 2, "-2% to maximum Cold Resistance", "+4% to maximum Lightning Resistance", statOrder = { 1511, 1516 }, level = 82, group = "WeaponTreeMaximumLightningResistanceMaximumColdResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeMaximumLightningResistanceMaximumFireResistance1"] = { type = "Spawn", tier = 1, "-2% to maximum Fire Resistance", "+3% to maximum Lightning Resistance", statOrder = { 1505, 1516 }, level = 45, group = "WeaponTreeMaximumLightningResistanceMaximumFireResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeMaximumLightningResistanceMaximumFireResistance2"] = { type = "Spawn", tier = 2, "-2% to maximum Fire Resistance", "+4% to maximum Lightning Resistance", statOrder = { 1505, 1516 }, level = 82, group = "WeaponTreeMaximumLightningResistanceMaximumFireResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeMaximumElementalResistanceReducedMaximumChaosResistance1"] = { type = "Spawn", tier = 1, "-5% to maximum Chaos Resistance", "+1% to all maximum Elemental Resistances", statOrder = { 1521, 1524 }, level = 60, group = "WeaponTreeMaximumElementalResistanceReducedMaximumChaosResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeMaximumElementalResistanceReducedMaximumChaosResistance2"] = { type = "Spawn", tier = 2, "-5% to maximum Chaos Resistance", "+2% to all maximum Elemental Resistances", statOrder = { 1521, 1524 }, level = 85, group = "WeaponTreeMaximumElementalResistanceReducedMaximumChaosResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeMaximumChaosResistanceReducedMaximumElementalResistance1"] = { type = "Spawn", tier = 1, "+3% to maximum Chaos Resistance", "-1% to all maximum Elemental Resistances", statOrder = { 1521, 1524 }, level = 60, group = "WeaponTreeMaximumChaosResistanceReducedMaximumElementalResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeMaximumChaosResistanceReducedMaximumElementalResistance2"] = { type = "Spawn", tier = 2, "+4% to maximum Chaos Resistance", "-1% to all maximum Elemental Resistances", statOrder = { 1521, 1524 }, level = 85, group = "WeaponTreeMaximumChaosResistanceReducedMaximumElementalResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneMinionInstability"] = { type = "Spawn", tier = 1, "Minion Instability", statOrder = { 10243 }, level = 30, group = "WeaponTreeMinionInstability", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneResoluteTechnique"] = { type = "Spawn", tier = 1, "Resolute Technique", statOrder = { 10269 }, level = 30, group = "WeaponTreeResoluteTechnique", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneBloodMagic"] = { type = "Spawn", tier = 1, "Blood Magic", statOrder = { 10219 }, level = 30, group = "WeaponTreeBloodMagic", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystonePainAttunement"] = { type = "Spawn", tier = 1, "Pain Attunement", statOrder = { 10245 }, level = 30, group = "WeaponTreePainAttunement", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneElementalEquilibrium"] = { type = "Spawn", tier = 1, "Elemental Equilibrium", statOrder = { 10228 }, level = 30, group = "WeaponTreeElementalEquilibrium", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneIronGrip"] = { type = "Spawn", tier = 1, "Iron Grip", statOrder = { 10259 }, level = 30, group = "WeaponTreeIronGrip", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystonePointBlank"] = { type = "Spawn", tier = 1, "Point Blank", statOrder = { 10246 }, level = 30, group = "WeaponTreePointBlank", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneAcrobatics"] = { type = "Spawn", tier = 1, "Acrobatics", statOrder = { 10214 }, level = 30, group = "WeaponTreeAcrobatics", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneGhostReaver"] = { type = "Spawn", tier = 1, "Ghost Reaver", statOrder = { 10234 }, level = 30, group = "WeaponTreeKeystoneGhostReaver", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneVaalPact"] = { type = "Spawn", tier = 1, "Vaal Pact", statOrder = { 10263 }, level = 30, group = "WeaponTreeVaalPact", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneElementalOverload"] = { type = "Spawn", tier = 1, "Elemental Overload", statOrder = { 10229 }, level = 30, group = "WeaponTreeElementalOverload", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneAvatarOfFire"] = { type = "Spawn", tier = 1, "Avatar of Fire", statOrder = { 10217 }, level = 30, group = "WeaponTreeAvatarOfFire", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneEldritchBattery"] = { type = "Spawn", tier = 1, "Eldritch Battery", statOrder = { 10227 }, level = 30, group = "WeaponTreeEldritchBattery", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneAncestralBond"] = { type = "Spawn", tier = 1, "Ancestral Bond", statOrder = { 10216 }, level = 30, group = "WeaponTreeAncestralBond", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneCrimsonDance"] = { type = "Spawn", tier = 1, "Crimson Dance", statOrder = { 10224 }, level = 30, group = "WeaponTreeCrimsonDance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystonePerfectAgony"] = { type = "Spawn", tier = 1, "Perfect Agony", statOrder = { 10215 }, level = 30, group = "WeaponTreePerfectAgony", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneRunebinder"] = { type = "Spawn", tier = 1, "Runebinder", statOrder = { 10252 }, level = 30, group = "WeaponTreeRunebinder", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneGlancingBlows"] = { type = "Spawn", tier = 1, "Glancing Blows", statOrder = { 10235 }, level = 30, group = "WeaponTreeGlancingBlows", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneCallToArms"] = { type = "Spawn", tier = 1, "Call to Arms", statOrder = { 10220 }, level = 30, group = "WeaponTreeCallToArms", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneTheAgnostic"] = { type = "Spawn", tier = 1, "The Agnostic", statOrder = { 10244 }, level = 30, group = "WeaponTreeTheAgnostic", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneSupremeEgo"] = { type = "Spawn", tier = 1, "Supreme Ego", statOrder = { 10260 }, level = 30, group = "WeaponTreeSupremeEgo", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneTheImpaler"] = { type = "Spawn", tier = 1, "The Impaler", statOrder = { 10238 }, level = 30, group = "WeaponTreeImpaler", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneDoomsday"] = { type = "Spawn", tier = 1, "Hex Master", statOrder = { 10236 }, level = 30, group = "WeaponTreeHexMaster", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneLetheShade"] = { type = "Spawn", tier = 1, "Lethe Shade", statOrder = { 10240 }, level = 30, group = "WeaponTreeLetheShade", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneGhostDance"] = { type = "Spawn", tier = 1, "Ghost Dance", statOrder = { 10233 }, level = 30, group = "WeaponTreeGhostDance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneVersatileCombatant"] = { type = "Spawn", tier = 1, "Versatile Combatant", statOrder = { 10264 }, level = 30, group = "WeaponTreeVersatileCombatant", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneMagebane"] = { type = "Spawn", tier = 1, "Magebane", statOrder = { 10241 }, level = 30, group = "WeaponTreeMagebane", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneSolipsism"] = { type = "Spawn", tier = 1, "Solipsism", statOrder = { 10257 }, level = 30, group = "WeaponTreeSolipsism", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneDivineShield"] = { type = "Spawn", tier = 1, "Divine Shield", statOrder = { 10226 }, level = 30, group = "WeaponTreeDivineShield", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneIronWill"] = { type = "Spawn", tier = 1, "Iron Will", statOrder = { 10270 }, level = 30, group = "WeaponTreeIronWill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneWickedWard"] = { type = "Spawn", tier = 1, "Wicked Ward", statOrder = { 10265 }, level = 30, group = "WeaponTreeWickedWard", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneWindDancer"] = { type = "Spawn", tier = 1, "Wind Dancer", statOrder = { 10266 }, level = 30, group = "WeaponTreeWindDancer", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneConduit"] = { type = "Spawn", tier = 1, "Conduit", statOrder = { 10222 }, level = 30, group = "WeaponTreeConduit", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneArrowDancing"] = { type = "Spawn", tier = 1, "Arrow Dancing", statOrder = { 10248 }, level = 30, group = "WeaponTreeArrowDodging", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystonePreciseTechnique"] = { type = "Spawn", tier = 1, "Precise Technique", statOrder = { 10247 }, level = 30, group = "WeaponTreePreciseTechnique", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneIronReflexes"] = { type = "Spawn", tier = 1, "Iron Reflexes", statOrder = { 10239 }, level = 30, group = "WeaponTreeIronReflexes", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneUnwaveringStance"] = { type = "Spawn", tier = 1, "Unwavering Stance", statOrder = { 10262 }, level = 30, group = "WeaponTreeUnwaveringStance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneImbalancedGuard"] = { type = "Spawn", tier = 1, "Imbalanced Guard", statOrder = { 10253 }, level = 30, group = "WeaponTreeSacredBastion", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneEternalYouth"] = { type = "Spawn", tier = 1, "Eternal Youth", statOrder = { 10231 }, level = 30, group = "WeaponTreeEternalYouth", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneMindoverMatter"] = { type = "Spawn", tier = 1, "Mind Over Matter", statOrder = { 10242 }, level = 30, group = "WeaponTreeManaShield", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, modTags = { }, }, - ["WeaponTreeKeystoneZealotsOath"] = { type = "Spawn", tier = 1, "Zealot's Oath", statOrder = { 10250 }, level = 30, group = "WeaponTreeZealotsOath", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, modTags = { }, }, - ["WeaponTreeNotableBowAvatarOfTheHunt"] = { type = "Spawn", tier = 1, "Allocates 36687", statOrder = { 7705 }, level = 1, group = "WeaponTreeNotableBow", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "bow", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableBowDeadlyDraw"] = { type = "Spawn", tier = 1, "Allocates 48823", statOrder = { 7705 }, level = 1, group = "WeaponTreeNotableBow", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "bow", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableBowHeavyDraw"] = { type = "Spawn", tier = 1, "Allocates 42720", statOrder = { 7705 }, level = 1, group = "WeaponTreeNotableBow", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "bow", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableBowFarsight"] = { type = "Spawn", tier = 1, "Allocates 47743", statOrder = { 7705 }, level = 1, group = "WeaponTreeNotableBow", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "bow", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableBowMasterFletcher"] = { type = "Spawn", tier = 1, "Allocates 51881", statOrder = { 7705 }, level = 1, group = "WeaponTreeNotableBow", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "bow", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableBowKingOfTheHill"] = { type = "Spawn", tier = 1, "Allocates 49459", statOrder = { 7705 }, level = 1, group = "WeaponTreeNotableBow", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "bow", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableBowAspectOfTheEagle"] = { type = "Spawn", tier = 1, "Allocates 65224", statOrder = { 7705 }, level = 1, group = "WeaponTreeNotableBow", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "bow", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableBowHuntersGambit"] = { type = "Spawn", tier = 1, "Allocates 9535", statOrder = { 7705 }, level = 1, group = "WeaponTreeNotableBow", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableStaffCounterweight"] = { type = "Spawn", tier = 1, "Allocates 39761", statOrder = { 7705 }, level = 1, group = "WeaponTreeNotableStaff", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableStaffSmashingStrikes"] = { type = "Spawn", tier = 1, "Allocates 51559", statOrder = { 7705 }, level = 1, group = "WeaponTreeNotableStaff", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableStaffWhirlingBarrier"] = { type = "Spawn", tier = 1, "Allocates 42917", statOrder = { 7705 }, level = 1, group = "WeaponTreeNotableStaff", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableStaffSteelwoodStance"] = { type = "Spawn", tier = 1, "Allocates 36859", statOrder = { 7705 }, level = 1, group = "WeaponTreeNotableStaff", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableStaffSafeguard"] = { type = "Spawn", tier = 1, "Allocates 6967", statOrder = { 7705 }, level = 1, group = "WeaponTreeNotableStaff", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableStaffBluntTrauma"] = { type = "Spawn", tier = 1, "Allocates 64395", statOrder = { 7705 }, level = 1, group = "WeaponTreeNotableStaff", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableStaffOneWithTheRiver"] = { type = "Spawn", tier = 1, "Allocates 56094", statOrder = { 7705 }, level = 1, group = "WeaponTreeNotableStaff", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableStaffSerpentStance"] = { type = "Spawn", tier = 1, "Allocates 22702", statOrder = { 7705 }, level = 1, group = "WeaponTreeNotableStaff", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableStaffEnigmaticDefence"] = { type = "Spawn", tier = 1, "Allocates 7918", statOrder = { 7705 }, level = 1, group = "WeaponTreeNotableStaff", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableStaffEnigmaticReach"] = { type = "Spawn", tier = 1, "Allocates 65273", statOrder = { 7705 }, level = 1, group = "WeaponTreeNotableStaff", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableSwordBladeOfCunning"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 57839", statOrder = { 1297, 7705 }, level = 1, group = "WeaponTreeNotableSword", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableSwordRazorsEdge"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 33082", statOrder = { 1297, 7705 }, level = 1, group = "WeaponTreeNotableSword", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableSwordBladeMaster"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 25367", statOrder = { 1297, 7705 }, level = 1, group = "WeaponTreeNotableSword", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableSwordBladeDancer"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 65093", statOrder = { 1297, 7705 }, level = 1, group = "WeaponTreeNotableSword", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableSwordFatalBlade"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 1568", statOrder = { 1297, 7705 }, level = 1, group = "WeaponTreeNotableSword", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableSwordBrutalBlade"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 59151", statOrder = { 1297, 7705 }, level = 1, group = "WeaponTreeNotableSword", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableSwordBladeOfCunning2H"] = { type = "Spawn", tier = 1, "Allocates 57839", statOrder = { 7705 }, level = 1, group = "WeaponTreeNotableSword2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableSwordRazorsEdge2H"] = { type = "Spawn", tier = 1, "Allocates 33082", statOrder = { 7705 }, level = 1, group = "WeaponTreeNotableSword2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableSwordBladeMaster2H"] = { type = "Spawn", tier = 1, "Allocates 25367", statOrder = { 7705 }, level = 1, group = "WeaponTreeNotableSword2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableSwordBladeDancer2H"] = { type = "Spawn", tier = 1, "Allocates 65093", statOrder = { 7705 }, level = 1, group = "WeaponTreeNotableSword2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableSwordFatalBlade2H"] = { type = "Spawn", tier = 1, "Allocates 1568", statOrder = { 7705 }, level = 1, group = "WeaponTreeNotableSword2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableSwordBrutalBlade2H"] = { type = "Spawn", tier = 1, "Allocates 59151", statOrder = { 7705 }, level = 1, group = "WeaponTreeNotableSword2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableAxeFellerOfFoes"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 52090", statOrder = { 1297, 7705 }, level = 1, group = "WeaponTreeNotableAxe", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "axe", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableAxeHatchetMaster"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 26096", statOrder = { 1297, 7705 }, level = 1, group = "WeaponTreeNotableAxe", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "axe", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableAxeHarvesterOfFoes"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 7440", statOrder = { 1297, 7705 }, level = 1, group = "WeaponTreeNotableAxe", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "axe", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableAxeCleaving"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 4940", statOrder = { 1297, 7705 }, level = 1, group = "WeaponTreeNotableAxe", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "axe", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableAxeSlaughter"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 23038", statOrder = { 1297, 7705 }, level = 1, group = "WeaponTreeNotableAxe", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "axe", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableAxeFellerOfFoes2H"] = { type = "Spawn", tier = 1, "Allocates 52090", statOrder = { 7705 }, level = 1, group = "WeaponTreeNotableAxe2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "axe", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableAxeHatchetMaster2H"] = { type = "Spawn", tier = 1, "Allocates 26096", statOrder = { 7705 }, level = 1, group = "WeaponTreeNotableAxe2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "axe", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableAxeHarvesterOfFoes2H"] = { type = "Spawn", tier = 1, "Allocates 7440", statOrder = { 7705 }, level = 1, group = "WeaponTreeNotableAxe2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "axe", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableAxeCleaving2H"] = { type = "Spawn", tier = 1, "Allocates 4940", statOrder = { 7705 }, level = 1, group = "WeaponTreeNotableAxe2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "axe", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableAxeSlaughter2H"] = { type = "Spawn", tier = 1, "Allocates 23038", statOrder = { 7705 }, level = 1, group = "WeaponTreeNotableAxe2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "axe", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableMaceRibcageCrusher"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 24721", statOrder = { 1347, 7705 }, level = 1, group = "WeaponTreeNotableMace", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableMaceSpinecruncher"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 5126", statOrder = { 1347, 7705 }, level = 1, group = "WeaponTreeNotableMace", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableMaceSkullcracking"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 16703", statOrder = { 1347, 7705 }, level = 1, group = "WeaponTreeNotableMace", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableMaceBoneBreaker"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 40645", statOrder = { 1347, 7705 }, level = 1, group = "WeaponTreeNotableMace", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableMaceBlacksmithsClout"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 55772", statOrder = { 1347, 7705 }, level = 1, group = "WeaponTreeNotableMace", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableMaceGalvanicHammer"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 60619", statOrder = { 1347, 7705 }, level = 1, group = "WeaponTreeNotableMace", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableMacePainForger"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 39657", statOrder = { 1347, 7705 }, level = 1, group = "WeaponTreeNotableMace", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableMaceRibcageCrusher2H"] = { type = "Spawn", tier = 1, "Allocates 24721", statOrder = { 7705 }, level = 1, group = "WeaponTreeNotableMace2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableMaceSpinecruncher2H"] = { type = "Spawn", tier = 1, "Allocates 5126", statOrder = { 7705 }, level = 1, group = "WeaponTreeNotableMace2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableMaceSkullcracking2H"] = { type = "Spawn", tier = 1, "Allocates 16703", statOrder = { 7705 }, level = 1, group = "WeaponTreeNotableMace2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableMaceBoneBreaker2H"] = { type = "Spawn", tier = 1, "Allocates 40645", statOrder = { 7705 }, level = 1, group = "WeaponTreeNotableMace2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableMaceBlacksmithsClout2H"] = { type = "Spawn", tier = 1, "Allocates 55772", statOrder = { 7705 }, level = 1, group = "WeaponTreeNotableMace2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableMaceGalvanicHammer2H"] = { type = "Spawn", tier = 1, "Allocates 60619", statOrder = { 7705 }, level = 1, group = "WeaponTreeNotableMace2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableMacePainForger2H"] = { type = "Spawn", tier = 1, "Allocates 39657", statOrder = { 7705 }, level = 1, group = "WeaponTreeNotableMace2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableClawPoisonousFangs"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 529", statOrder = { 1297, 7705 }, level = 1, group = "WeaponTreeNotableClaw", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "claw", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableClawLifeRaker"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 28503", statOrder = { 1297, 7705 }, level = 1, group = "WeaponTreeNotableClaw", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "claw", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableClawClawsOfTheHawk"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 15614", statOrder = { 1297, 7705 }, level = 1, group = "WeaponTreeNotableClaw", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "claw", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableClawClawsOfTheMagpie"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 54791", statOrder = { 1297, 7705 }, level = 1, group = "WeaponTreeNotableClaw", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "claw", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableClawClawsOfTheFalcon"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 56648", statOrder = { 1297, 7705 }, level = 1, group = "WeaponTreeNotableClaw", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "claw", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableDaggerAddersTouch"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 32227", statOrder = { 1347, 7705 }, level = 1, group = "WeaponTreeNotableDagger", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableDaggerFromTheShadows"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 1405", statOrder = { 1347, 7705 }, level = 1, group = "WeaponTreeNotableDagger", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableDaggerBackstabbing"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 8920", statOrder = { 1347, 7705 }, level = 1, group = "WeaponTreeNotableDagger", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableDaggerFlaying"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 36490", statOrder = { 1347, 7705 }, level = 1, group = "WeaponTreeNotableDagger", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableDaggerNightstalker"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 56276", statOrder = { 1347, 7705 }, level = 1, group = "WeaponTreeNotableDagger", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableWandTempestBlast"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 63207", statOrder = { 1347, 7705 }, level = 1, group = "WeaponTreeNotableWand", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableWandFusillade"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 16243", statOrder = { 1347, 7705 }, level = 1, group = "WeaponTreeNotableWand", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableWandDisintegration"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 52031", statOrder = { 1347, 7705 }, level = 1, group = "WeaponTreeNotableWand", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableWandElderPower"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 41476", statOrder = { 1347, 7705 }, level = 1, group = "WeaponTreeNotableWand", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableWandWandslinger"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 22972", statOrder = { 1347, 7705 }, level = 1, group = "WeaponTreeNotableWand", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableWandPrismWeave"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 63944", statOrder = { 1347, 7705 }, level = 1, group = "WeaponTreeNotableWand", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableShieldTestudo"] = { type = "Spawn", tier = 1, "-3% Chance to Block", "Allocates 44207", statOrder = { 2126, 7705 }, level = 1, group = "WeaponTreeNotableShield", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableShieldRetaliation"] = { type = "Spawn", tier = 1, "-3% Chance to Block", "Allocates 12878", statOrder = { 2126, 7705 }, level = 1, group = "WeaponTreeNotableShield", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableShieldDeflection"] = { type = "Spawn", tier = 1, "-3% Chance to Block", "Allocates 15437", statOrder = { 2126, 7705 }, level = 1, group = "WeaponTreeNotableShield", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableShieldDefiance"] = { type = "Spawn", tier = 1, "-3% Chance to Block", "Allocates 49538", statOrder = { 2126, 7705 }, level = 1, group = "WeaponTreeNotableShield", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableShieldCommandOfSteel"] = { type = "Spawn", tier = 1, "-3% Chance to Block", "Allocates 57900", statOrder = { 2126, 7705 }, level = 1, group = "WeaponTreeNotableShield", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableShieldAggresiveBastion"] = { type = "Spawn", tier = 1, "-3% Chance to Block", "Allocates 861", statOrder = { 2126, 7705 }, level = 1, group = "WeaponTreeNotableShield", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableShieldSantuary"] = { type = "Spawn", tier = 1, "-3% Chance to Block", "Allocates 20832", statOrder = { 2126, 7705 }, level = 1, group = "WeaponTreeNotableShield", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableShieldSafeguard"] = { type = "Spawn", tier = 1, "-3% Chance to Block", "Allocates 6967", statOrder = { 2126, 7705 }, level = 1, group = "WeaponTreeNotableShield", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeNotableShieldArcaneSantuary"] = { type = "Spawn", tier = 1, "-3% Chance to Block", "Allocates 46904", statOrder = { 2126, 7705 }, level = 1, group = "WeaponTreeNotableShield", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeWeaponQuality1"] = { type = "Spawn", tier = 1, "+8% to Quality", statOrder = { 7547 }, level = 1, group = "LocalItemQuality", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "default", }, weightVal = { 500 }, modTags = { }, }, - ["WeaponTreeWeaponQuality2"] = { type = "Spawn", tier = 2, "+12% to Quality", statOrder = { 7547 }, level = 45, group = "LocalItemQuality", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "default", }, weightVal = { 500 }, modTags = { }, }, - ["WeaponTreeWeaponQuality3"] = { type = "Spawn", tier = 3, "+16% to Quality", statOrder = { 7547 }, level = 60, group = "LocalItemQuality", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "default", }, weightVal = { 500 }, modTags = { }, }, - ["WeaponTreeFireDoTMultiplierReducedFireResistance1"] = { type = "Spawn", tier = 1, "+12% to Fire Damage over Time Multiplier", "-15% to Fire Resistance", statOrder = { 1136, 1507 }, level = 12, group = "WeaponTreeFireDoTMultiplierReducedFireResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeFireDoTMultiplierReducedFireResistance2"] = { type = "Spawn", tier = 2, "+16% to Fire Damage over Time Multiplier", "-15% to Fire Resistance", statOrder = { 1136, 1507 }, level = 75, group = "WeaponTreeFireDoTMultiplierReducedFireResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeFireDoTMultiplierReducedFireResistance2h1"] = { type = "Spawn", tier = 1, "+24% to Fire Damage over Time Multiplier", "-30% to Fire Resistance", statOrder = { 1136, 1507 }, level = 12, group = "WeaponTreeFireDoTMultiplierReducedFireResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeFireDoTMultiplierReducedFireResistance2h2"] = { type = "Spawn", tier = 2, "+32% to Fire Damage over Time Multiplier", "-30% to Fire Resistance", statOrder = { 1136, 1507 }, level = 75, group = "WeaponTreeFireDoTMultiplierReducedFireResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeColdDoTMultiplierReducedColdResisatance1"] = { type = "Spawn", tier = 1, "+12% to Cold Damage over Time Multiplier", "-15% to Cold Resistance", statOrder = { 1141, 1513 }, level = 12, group = "WeaponTreeColdDoTMultiplierReducedColdResisatance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeColdDoTMultiplierReducedColdResisatance2"] = { type = "Spawn", tier = 2, "+16% to Cold Damage over Time Multiplier", "-15% to Cold Resistance", statOrder = { 1141, 1513 }, level = 75, group = "WeaponTreeColdDoTMultiplierReducedColdResisatance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeColdDoTMultiplierReducedColdResisatance2h1"] = { type = "Spawn", tier = 1, "+24% to Cold Damage over Time Multiplier", "-30% to Cold Resistance", statOrder = { 1141, 1513 }, level = 12, group = "WeaponTreeColdDoTMultiplierReducedColdResisatance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeColdDoTMultiplierReducedColdResisatance2h2"] = { type = "Spawn", tier = 2, "+32% to Cold Damage over Time Multiplier", "-30% to Cold Resistance", statOrder = { 1141, 1513 }, level = 75, group = "WeaponTreeColdDoTMultiplierReducedColdResisatance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeChaosDoTMultiplierReducedChaosResistance1"] = { type = "Spawn", tier = 1, "+12% to Chaos Damage over Time Multiplier", "-15% to Chaos Resistance", statOrder = { 1144, 1522 }, level = 12, group = "WeaponTreeChaosDoTMultiplierReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeChaosDoTMultiplierReducedChaosResistance2"] = { type = "Spawn", tier = 2, "+16% to Chaos Damage over Time Multiplier", "-15% to Chaos Resistance", statOrder = { 1144, 1522 }, level = 75, group = "WeaponTreeChaosDoTMultiplierReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeChaosDoTMultiplierReducedChaosResistance2h1"] = { type = "Spawn", tier = 1, "+24% to Chaos Damage over Time Multiplier", "-30% to Chaos Resistance", statOrder = { 1144, 1522 }, level = 12, group = "WeaponTreeChaosDoTMultiplierReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeChaosDoTMultiplierReducedChaosResistance2h2"] = { type = "Spawn", tier = 2, "+32% to Chaos Damage over Time Multiplier", "-30% to Chaos Resistance", statOrder = { 1144, 1522 }, level = 75, group = "WeaponTreeChaosDoTMultiplierReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreePhysicalDoTMultiplierEnemyOverwhelm1"] = { type = "Spawn", tier = 1, "+12% to Physical Damage over Time Multiplier", "Hits against you Overwhelm 6% of Physical Damage Reduction", statOrder = { 1132, 6792 }, level = 12, group = "WeaponTreePhysicalDoTMultiplierEnemyOverwhelm", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreePhysicalDoTMultiplierEnemyOverwhelm2"] = { type = "Spawn", tier = 2, "+16% to Physical Damage over Time Multiplier", "Hits against you Overwhelm 6% of Physical Damage Reduction", statOrder = { 1132, 6792 }, level = 75, group = "WeaponTreePhysicalDoTMultiplierEnemyOverwhelm", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreePhysicalDoTMultiplierEnemyOverwhelm2h1"] = { type = "Spawn", tier = 1, "+24% to Physical Damage over Time Multiplier", "Hits against you Overwhelm 12% of Physical Damage Reduction", statOrder = { 1132, 6792 }, level = 12, group = "WeaponTreePhysicalDoTMultiplierEnemyOverwhelm", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreePhysicalDoTMultiplierEnemyOverwhelm2h2"] = { type = "Spawn", tier = 2, "+32% to Physical Damage over Time Multiplier", "Hits against you Overwhelm 12% of Physical Damage Reduction", statOrder = { 1132, 6792 }, level = 75, group = "WeaponTreePhysicalDoTMultiplierEnemyOverwhelm", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalElementalPenetrationReducedElementalResistance1"] = { type = "Spawn", tier = 1, "-8% to all Elemental Resistances", "Attacks with this Weapon Penetrate 8% Elemental Resistances", statOrder = { 1501, 3624 }, level = 12, group = "WeaponTreeLocalElementalPenetrationReducedElementalResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalElementalPenetrationReducedElementalResistance2"] = { type = "Spawn", tier = 2, "-8% to all Elemental Resistances", "Attacks with this Weapon Penetrate 10% Elemental Resistances", statOrder = { 1501, 3624 }, level = 75, group = "WeaponTreeLocalElementalPenetrationReducedElementalResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalChaosPenetrationReducedChaosResistance1"] = { type = "Spawn", tier = 1, "-13% to Chaos Resistance", "Attacks with this Weapon Penetrate 8% Chaos Resistance", statOrder = { 1522, 7481 }, level = 12, group = "WeaponTreeLocalChaosPenetrationReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalChaosPenetrationReducedChaosResistance2"] = { type = "Spawn", tier = 2, "-13% to Chaos Resistance", "Attacks with this Weapon Penetrate 10% Chaos Resistance", statOrder = { 1522, 7481 }, level = 75, group = "WeaponTreeLocalChaosPenetrationReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeAreaOfEffectIfKilledRecentlyReducedAreaOfEffect1"] = { type = "Spawn", tier = 1, "10% reduced Area of Effect", "25% increased Area of Effect if you've Killed at least 5 Enemies Recently", statOrder = { 1761, 4557 }, level = 10, group = "WeaponTreeAreaOfEffectIfKilledRecentlyReducedAreaOfEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 400, 400, 0 }, modTags = { }, }, - ["WeaponTreeAreaOfEffectIfKilledRecentlyReducedAreaOfEffect2"] = { type = "Spawn", tier = 2, "10% reduced Area of Effect", "30% increased Area of Effect if you've Killed at least 5 Enemies Recently", statOrder = { 1761, 4557 }, level = 65, group = "WeaponTreeAreaOfEffectIfKilledRecentlyReducedAreaOfEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 400, 400, 0 }, modTags = { }, }, - ["WeaponTreeAreaOfEffectIfKilledRecentlyReducedAreaOfEffect2h1"] = { type = "Spawn", tier = 1, "20% reduced Area of Effect", "50% increased Area of Effect if you've Killed at least 5 Enemies Recently", statOrder = { 1761, 4557 }, level = 10, group = "WeaponTreeAreaOfEffectIfKilledRecentlyReducedAreaOfEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 400, 0 }, modTags = { }, }, - ["WeaponTreeAreaOfEffectIfKilledRecentlyReducedAreaOfEffect2h2"] = { type = "Spawn", tier = 2, "20% reduced Area of Effect", "60% increased Area of Effect if you've Killed at least 5 Enemies Recently", statOrder = { 1761, 4557 }, level = 65, group = "WeaponTreeAreaOfEffectIfKilledRecentlyReducedAreaOfEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 400, 0 }, modTags = { }, }, - ["WeaponTreeAreaOfEffectReducedAreaOfEffectIfKilledRecently1"] = { type = "Spawn", tier = 1, "20% increased Area of Effect", "10% reduced Area of Effect if you've Killed Recently", statOrder = { 1761, 4080 }, level = 10, group = "WeaponTreeAreaOfEffectReducedAreaOfEffectIfKilledRecently", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 400, 400, 0 }, modTags = { }, }, - ["WeaponTreeAreaOfEffectReducedAreaOfEffectIfKilledRecently2"] = { type = "Spawn", tier = 2, "24% increased Area of Effect", "10% reduced Area of Effect if you've Killed Recently", statOrder = { 1761, 4080 }, level = 65, group = "WeaponTreeAreaOfEffectReducedAreaOfEffectIfKilledRecently", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 400, 400, 0 }, modTags = { }, }, - ["WeaponTreeAreaOfEffectReducedAreaOfEffectIfKilledRecently2h1"] = { type = "Spawn", tier = 1, "32% increased Area of Effect", "20% reduced Area of Effect if you've Killed Recently", statOrder = { 1761, 4080 }, level = 10, group = "WeaponTreeAreaOfEffectReducedAreaOfEffectIfKilledRecently", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 400, 0 }, modTags = { }, }, - ["WeaponTreeAreaOfEffectReducedAreaOfEffectIfKilledRecently2h2"] = { type = "Spawn", tier = 2, "40% increased Area of Effect", "20% reduced Area of Effect if you've Killed Recently", statOrder = { 1761, 4080 }, level = 65, group = "WeaponTreeAreaOfEffectReducedAreaOfEffectIfKilledRecently", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 400, 0 }, modTags = { }, }, - ["WeaponTreeProjectileSpeedReducedProjectileDamage1"] = { type = "Spawn", tier = 1, "25% increased Projectile Speed", "15% reduced Projectile Damage", statOrder = { 1677, 1873 }, level = 10, group = "WeaponTreeProjectileSpeedReducedProjectileDamage", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeProjectileSpeedReducedProjectileDamage2"] = { type = "Spawn", tier = 2, "35% increased Projectile Speed", "15% reduced Projectile Damage", statOrder = { 1677, 1873 }, level = 65, group = "WeaponTreeProjectileSpeedReducedProjectileDamage", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeProjectileSpeedReducedProjectileDamage2h1"] = { type = "Spawn", tier = 1, "40% increased Projectile Speed", "30% reduced Projectile Damage", statOrder = { 1677, 1873 }, level = 10, group = "WeaponTreeProjectileSpeedReducedProjectileDamage", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "bow", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeProjectileSpeedReducedProjectileDamage2h2"] = { type = "Spawn", tier = 2, "55% increased Projectile Speed", "30% reduced Projectile Damage", statOrder = { 1677, 1873 }, level = 65, group = "WeaponTreeProjectileSpeedReducedProjectileDamage", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "bow", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeArrowsChainChainingRange2h"] = { type = "MergeOnly", tier = 1, "Arrows Chain +1 times", "50% reduced Chaining range", statOrder = { 1669, 5190 }, level = 84, group = "WeaponTreeArrowsChainChainingRange", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "bow", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeChainingRange1"] = { type = "Spawn", tier = 1, "20% increased Chaining range", statOrder = { 5190 }, level = 38, group = "WeaponTreeChainingRange", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 200, 50, 0 }, modTags = { }, }, - ["WeaponTreeChainingRange2"] = { type = "Spawn", tier = 2, "30% increased Chaining range", statOrder = { 5190 }, level = 78, group = "WeaponTreeChainingRange", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 200, 50, 0 }, modTags = { }, }, - ["WeaponTreeChainingRange2h1"] = { type = "Spawn", tier = 1, "40% increased Chaining range", statOrder = { 5190 }, level = 38, group = "WeaponTreeChainingRange", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 200, 50, 0 }, modTags = { }, }, - ["WeaponTreeChainingRange2h2"] = { type = "Spawn", tier = 2, "60% increased Chaining range", statOrder = { 5190 }, level = 78, group = "WeaponTreeChainingRange", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 200, 50, 0 }, modTags = { }, }, - ["WeaponTreeAdditionalPierce1"] = { type = "Spawn", tier = 1, "Projectiles Pierce an additional Target", statOrder = { 1671 }, level = 78, group = "WeaponTreeAdditionalPierce", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 300, 75, 0 }, modTags = { }, }, - ["WeaponTreeAdditionalPierce2h1"] = { type = "Spawn", tier = 1, "Projectiles Pierce an additional Target", statOrder = { 1671 }, level = 16, group = "WeaponTreeAdditionalPierce", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 300, 75, 0 }, modTags = { }, }, - ["WeaponTreeAdditionalPierce2h2"] = { type = "Spawn", tier = 2, "Projectiles Pierce 2 additional Targets", statOrder = { 1671 }, level = 78, group = "WeaponTreeAdditionalPierce", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 300, 75, 0 }, modTags = { }, }, - ["WeaponTreeForkExtraProjectileChance1"] = { type = "Spawn", tier = 1, "Projectiles have 30% chance for an additional Projectile when Forking", statOrder = { 5387 }, level = 32, group = "WeaponTreeForkExtraProjectileChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 200, 50, 0 }, modTags = { }, }, - ["WeaponTreeForkExtraProjectileChance2"] = { type = "Spawn", tier = 2, "Projectiles have 40% chance for an additional Projectile when Forking", statOrder = { 5387 }, level = 78, group = "WeaponTreeForkExtraProjectileChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 200, 50, 0 }, modTags = { }, }, - ["WeaponTreeForkExtraProjectileChance2h1"] = { type = "Spawn", tier = 1, "Projectiles have 50% chance for an additional Projectile when Forking", statOrder = { 5387 }, level = 32, group = "WeaponTreeForkExtraProjectileChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 200, 50, 0 }, modTags = { }, }, - ["WeaponTreeForkExtraProjectileChance2h2"] = { type = "Spawn", tier = 2, "Projectiles have 75% chance for an additional Projectile when Forking", statOrder = { 5387 }, level = 78, group = "WeaponTreeForkExtraProjectileChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 200, 50, 0 }, modTags = { }, }, - ["WeaponTreeMarkEffectIncreasedMarkCost1"] = { type = "Spawn", tier = 1, "15% increased Effect of your Marks", "100% increased Mana Cost of Mark Skills", statOrder = { 2474, 8663 }, level = 24, group = "WeaponTreeMarkEffectIncreasedMarkCost", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "default", }, weightVal = { 50, 250, 0 }, modTags = { }, }, - ["WeaponTreeMarkEffectIncreasedMarkCost2"] = { type = "Spawn", tier = 2, "20% increased Effect of your Marks", "100% increased Mana Cost of Mark Skills", statOrder = { 2474, 8663 }, level = 76, group = "WeaponTreeMarkEffectIncreasedMarkCost", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "default", }, weightVal = { 50, 250, 0 }, modTags = { }, }, - ["WeaponTreeMarkEffectIncreasedMarkCost2h1"] = { type = "Spawn", tier = 1, "30% increased Effect of your Marks", "200% increased Mana Cost of Mark Skills", statOrder = { 2474, 8663 }, level = 24, group = "WeaponTreeMarkEffectIncreasedMarkCost", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 50, 250, 0 }, modTags = { }, }, - ["WeaponTreeMarkEffectIncreasedMarkCost2h2"] = { type = "Spawn", tier = 2, "40% increased Effect of your Marks", "200% increased Mana Cost of Mark Skills", statOrder = { 2474, 8663 }, level = 76, group = "WeaponTreeMarkEffectIncreasedMarkCost", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 50, 250, 0 }, modTags = { }, }, - ["WeaponTreeFrenzyOnHittingMarkedEnemyReducedMarkEffect1"] = { type = "Spawn", tier = 1, "15% reduced Effect of your Marks", "6% chance to gain a Frenzy Charge when you Hit your Marked Enemy", statOrder = { 2474, 6424 }, level = 24, group = "WeaponTreeFrenzyOnHittingMarkedEnemyReducedMarkEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "default", }, weightVal = { 50, 250, 0 }, modTags = { }, }, - ["WeaponTreeFrenzyOnHittingMarkedEnemyReducedMarkEffect2"] = { type = "Spawn", tier = 2, "15% reduced Effect of your Marks", "10% chance to gain a Frenzy Charge when you Hit your Marked Enemy", statOrder = { 2474, 6424 }, level = 76, group = "WeaponTreeFrenzyOnHittingMarkedEnemyReducedMarkEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "default", }, weightVal = { 50, 250, 0 }, modTags = { }, }, - ["WeaponTreeFrenzyOnHittingMarkedEnemyReducedMarkEffect2h1"] = { type = "Spawn", tier = 1, "20% reduced Effect of your Marks", "12% chance to gain a Frenzy Charge when you Hit your Marked Enemy", statOrder = { 2474, 6424 }, level = 24, group = "WeaponTreeFrenzyOnHittingMarkedEnemyReducedMarkEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 50, 250, 0 }, modTags = { }, }, - ["WeaponTreeFrenzyOnHittingMarkedEnemyReducedMarkEffect2h2"] = { type = "Spawn", tier = 2, "20% reduced Effect of your Marks", "20% chance to gain a Frenzy Charge when you Hit your Marked Enemy", statOrder = { 2474, 6424 }, level = 76, group = "WeaponTreeFrenzyOnHittingMarkedEnemyReducedMarkEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 50, 250, 0 }, modTags = { }, }, - ["WeaponTreeCullingStrikeVsMarkedEnemyReducedAccuracyVsMarkedEnemy"] = { type = "Spawn", tier = 1, "25% less Accuracy Rating against Marked Enemy", "Culling Strike against Marked Enemy", statOrder = { 4370, 5694 }, level = 80, group = "WeaponTreeCullingStrikeVsMarkedEnemyReducedAccuracyVsMarkedEnemy", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "default", }, weightVal = { 50, 250, 0 }, modTags = { }, }, - ["WeaponTreeCullingStrikeVsMarkedEnemyReducedAccuracyVsMarkedEnemy2h"] = { type = "Spawn", tier = 2, "15% less Accuracy Rating against Marked Enemy", "Culling Strike against Marked Enemy", statOrder = { 4370, 5694 }, level = 80, group = "WeaponTreeCullingStrikeVsMarkedEnemyReducedAccuracyVsMarkedEnemy", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 50, 250, 0 }, modTags = { }, }, - ["WeaponTreeLocalWeaponRange1"] = { type = "Spawn", tier = 1, "+0.2 metres to Weapon Range", statOrder = { 2620 }, level = 1, group = "WeaponTreeLocalWeaponRange", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 750, 0 }, modTags = { }, }, - ["WeaponTreeLocalWeaponRange2"] = { type = "Spawn", tier = 2, "+0.3 metres to Weapon Range", statOrder = { 2620 }, level = 50, group = "WeaponTreeLocalWeaponRange", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 750, 0 }, modTags = { }, }, - ["WeaponTreeLocalLifeLeechAndSpeed1"] = { type = "Spawn", tier = 1, "30% increased total Recovery per second from Life Leech", "0.5% of Attack Damage Leeched as Life", statOrder = { 2034, 7579 }, level = 12, group = "WeaponTreeLocalLifeLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalLifeLeechAndSpeed2"] = { type = "Spawn", tier = 2, "30% increased total Recovery per second from Life Leech", "0.8% of Attack Damage Leeched as Life", statOrder = { 2034, 7579 }, level = 64, group = "WeaponTreeLocalLifeLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalLifeLeechAndSpeed2h1"] = { type = "Spawn", tier = 1, "60% increased total Recovery per second from Life Leech", "1% of Attack Damage Leeched as Life", statOrder = { 2034, 7579 }, level = 12, group = "WeaponTreeLocalLifeLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalLifeLeechAndSpeed2h2"] = { type = "Spawn", tier = 2, "60% increased total Recovery per second from Life Leech", "1.6% of Attack Damage Leeched as Life", statOrder = { 2034, 7579 }, level = 64, group = "WeaponTreeLocalLifeLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalManaLeechAndSpeed1"] = { type = "Spawn", tier = 1, "30% increased total Recovery per second from Mana Leech", "0.5% of Attack Damage Leeched as Mana", statOrder = { 2035, 7582 }, level = 12, group = "WeaponTreeLocalManaLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalManaLeechAndSpeed2"] = { type = "Spawn", tier = 2, "30% increased total Recovery per second from Mana Leech", "0.8% of Attack Damage Leeched as Mana", statOrder = { 2035, 7582 }, level = 64, group = "WeaponTreeLocalManaLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalManaLeechAndSpeed2h1"] = { type = "Spawn", tier = 1, "60% increased total Recovery per second from Mana Leech", "1% of Attack Damage Leeched as Mana", statOrder = { 2035, 7582 }, level = 12, group = "WeaponTreeLocalManaLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalManaLeechAndSpeed2h2"] = { type = "Spawn", tier = 2, "60% increased total Recovery per second from Mana Leech", "1.6% of Attack Damage Leeched as Mana", statOrder = { 2035, 7582 }, level = 64, group = "WeaponTreeLocalManaLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellEnergyShieldLeechAndSpeed1"] = { type = "Spawn", tier = 1, "0.5% of Spell Damage Leeched as Energy Shield", "30% increased total Recovery per second from Energy Shield Leech", statOrder = { 1603, 2036 }, level = 12, group = "WeaponTreeSpellEnergyShieldLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellEnergyShieldLeechAndSpeed2"] = { type = "Spawn", tier = 2, "0.8% of Spell Damage Leeched as Energy Shield", "30% increased total Recovery per second from Energy Shield Leech", statOrder = { 1603, 2036 }, level = 64, group = "WeaponTreeSpellEnergyShieldLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellEnergyShieldLeechAndSpeed2h1"] = { type = "Spawn", tier = 1, "1% of Spell Damage Leeched as Energy Shield", "60% increased total Recovery per second from Energy Shield Leech", statOrder = { 1603, 2036 }, level = 12, group = "WeaponTreeSpellEnergyShieldLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellEnergyShieldLeechAndSpeed2h2"] = { type = "Spawn", tier = 2, "1.6% of Spell Damage Leeched as Energy Shield", "60% increased total Recovery per second from Energy Shield Leech", statOrder = { 1603, 2036 }, level = 64, group = "WeaponTreeSpellEnergyShieldLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeMaxLifeLeechReducedLeechAmount1"] = { type = "Spawn", tier = 1, "10% increased Maximum total Life Recovery per second from Leech", statOrder = { 1612 }, level = 70, group = "WeaponTreeMaxLifeLeech", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeMaxLifeLeechReducedLeechAmount2h1"] = { type = "Spawn", tier = 2, "20% increased Maximum total Life Recovery per second from Leech", statOrder = { 1612 }, level = 70, group = "WeaponTreeMaxLifeLeech", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeMaxManaLeechReducedLeechAmount1"] = { type = "Spawn", tier = 1, "10% increased Maximum total Mana Recovery per second from Leech", statOrder = { 1614 }, level = 70, group = "WeaponTreeMaxManaLeech", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeMaxManaLeechReducedLeechAmount2h1"] = { type = "Spawn", tier = 2, "20% increased Maximum total Mana Recovery per second from Leech", statOrder = { 1614 }, level = 70, group = "WeaponTreeMaxManaLeech", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["WeaponTreeMaxEnergyShieldLeechReducedLeechAmount1"] = { type = "Spawn", tier = 1, "10% increased Maximum total Energy Shield Recovery per second from Leech", statOrder = { 1615 }, level = 70, group = "WeaponTreeMaxEnergyShield", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeMaxEnergyShieldLeechReducedLeechAmount2h1"] = { type = "Spawn", tier = 2, "20% increased Maximum total Energy Shield Recovery per second from Leech", statOrder = { 1615 }, level = 70, group = "WeaponTreeMaxEnergyShield", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeLocalLifeOnHitReducedManaOnHit1"] = { type = "Spawn", tier = 1, "Grants 15 Life per Enemy Hit", "Removes 2 of your Mana per Enemy Hit", statOrder = { 1619, 1626 }, level = 5, group = "WeaponTreeLocalLifeOnHitReducedManaOnHit", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 400, 0 }, modTags = { }, }, - ["WeaponTreeLocalLifeOnHitReducedManaOnHit2"] = { type = "Spawn", tier = 2, "Grants 25 Life per Enemy Hit", "Removes 2 of your Mana per Enemy Hit", statOrder = { 1619, 1626 }, level = 68, group = "WeaponTreeLocalLifeOnHitReducedManaOnHit", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 400, 0 }, modTags = { }, }, - ["WeaponTreeLocalManaOnHitReducedLifeOnHit1"] = { type = "Spawn", tier = 1, "Removes 4 of your Life per Enemy Hit", "Grants 6 Mana per Enemy Hit", statOrder = { 1619, 1626 }, level = 5, group = "WeaponTreeLocalManaOnHitReducedLifeOnHit", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 400, 0 }, modTags = { }, }, - ["WeaponTreeLocalManaOnHitReducedLifeOnHit2"] = { type = "Spawn", tier = 2, "Removes 4 of your Life per Enemy Hit", "Grants 8 Mana per Enemy Hit", statOrder = { 1619, 1626 }, level = 68, group = "WeaponTreeLocalManaOnHitReducedLifeOnHit", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 400, 0 }, modTags = { }, }, - ["WeaponTreeTravelSkillCooldownSpeedReducedMovementSpeed1"] = { type = "Spawn", tier = 1, "5% reduced Movement Speed", "20% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 1679, 4242 }, level = 12, group = "WeaponTreeTravelSkillCooldownSpeedReducedMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeTravelSkillCooldownSpeedReducedMovementSpeed2"] = { type = "Spawn", tier = 2, "5% reduced Movement Speed", "30% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 1679, 4242 }, level = 76, group = "WeaponTreeTravelSkillCooldownSpeedReducedMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeTravelSkillCooldownSpeedReducedMovementSpeed2h1"] = { type = "Spawn", tier = 1, "10% reduced Movement Speed", "40% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 1679, 4242 }, level = 12, group = "WeaponTreeTravelSkillCooldownSpeedReducedMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeTravelSkillCooldownSpeedReducedMovementSpeed2h2"] = { type = "Spawn", tier = 2, "10% reduced Movement Speed", "60% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 1679, 4242 }, level = 76, group = "WeaponTreeTravelSkillCooldownSpeedReducedMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeMovementSpeedTravelSkillsDisabled1"] = { type = "Spawn", tier = 1, "8% increased Movement Speed", "Your Travel Skills are Disabled", statOrder = { 1679, 10151 }, level = 12, group = "WeaponTreeMovementSpeedTravelSkillsDisabled", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeMovementSpeedTravelSkillsDisabled2"] = { type = "Spawn", tier = 2, "12% increased Movement Speed", "Your Travel Skills are Disabled", statOrder = { 1679, 10151 }, level = 76, group = "WeaponTreeMovementSpeedTravelSkillsDisabled", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeMovementSpeedTravelSkillsDisabled2h1"] = { type = "Spawn", tier = 1, "14% increased Movement Speed", "Your Travel Skills are Disabled", statOrder = { 1679, 10151 }, level = 12, group = "WeaponTreeMovementSpeedTravelSkillsDisabled", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeMovementSpeedTravelSkillsDisabled2h2"] = { type = "Spawn", tier = 2, "18% increased Movement Speed", "Your Travel Skills are Disabled", statOrder = { 1679, 10151 }, level = 76, group = "WeaponTreeMovementSpeedTravelSkillsDisabled", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeArcaneSurgeOnCriticalStrikeReducedArcaneSurgeEffect1"] = { type = "Spawn", tier = 1, "20% reduced Effect of Arcane Surge on you", "10% chance to Gain Arcane Surge when you deal a Critical Strike", statOrder = { 3154, 6390 }, level = 20, group = "WeaponTreeArcaneSurgeOnCriticalStrikeReducedArcaneSurgeEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 300, 0, 300, 300, 300, 0 }, modTags = { }, }, - ["WeaponTreeArcaneSurgeOnCriticalStrikeReducedArcaneSurgeEffect2"] = { type = "Spawn", tier = 2, "20% reduced Effect of Arcane Surge on you", "10% chance to Gain Arcane Surge when you deal a Critical Strike", statOrder = { 3154, 6390 }, level = 80, group = "WeaponTreeArcaneSurgeOnCriticalStrikeReducedArcaneSurgeEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 300, 0, 300, 300, 300, 0 }, modTags = { }, }, - ["WeaponTreeArcaneSurgeOnCriticalStrikeReducedArcaneSurgeEffect2h1"] = { type = "Spawn", tier = 1, "20% reduced Effect of Arcane Surge on you", "15% chance to Gain Arcane Surge when you deal a Critical Strike", statOrder = { 3154, 6390 }, level = 20, group = "WeaponTreeArcaneSurgeOnCriticalStrikeReducedArcaneSurgeEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 300, 0, 300, 0 }, modTags = { }, }, - ["WeaponTreeArcaneSurgeOnCriticalStrikeReducedArcaneSurgeEffect2h2"] = { type = "Spawn", tier = 2, "20% reduced Effect of Arcane Surge on you", "15% chance to Gain Arcane Surge when you deal a Critical Strike", statOrder = { 3154, 6390 }, level = 80, group = "WeaponTreeArcaneSurgeOnCriticalStrikeReducedArcaneSurgeEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 300, 0, 300, 0 }, modTags = { }, }, - ["WeaponTreeArcaneSurgeEffectReducedSelfBuffExpiry1"] = { type = "Spawn", tier = 1, "20% increased Effect of Arcane Surge on you", "Buffs on you expire 10% faster", statOrder = { 3154, 5087 }, level = 20, group = "WeaponTreeArcaneSurgeEffectReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 300, 0, 300, 300, 300, 0 }, modTags = { }, }, - ["WeaponTreeArcaneSurgeEffectReducedSelfBuffExpiry2"] = { type = "Spawn", tier = 2, "25% increased Effect of Arcane Surge on you", "Buffs on you expire 10% faster", statOrder = { 3154, 5087 }, level = 80, group = "WeaponTreeArcaneSurgeEffectReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 300, 0, 300, 300, 300, 0 }, modTags = { }, }, - ["WeaponTreeArcaneSurgeEffectReducedSelfBuffExpiry2h1"] = { type = "Spawn", tier = 1, "40% increased Effect of Arcane Surge on you", "Buffs on you expire 20% faster", statOrder = { 3154, 5087 }, level = 20, group = "WeaponTreeArcaneSurgeEffectReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 300, 0, 300, 0 }, modTags = { }, }, - ["WeaponTreeArcaneSurgeEffectReducedSelfBuffExpiry2h2"] = { type = "Spawn", tier = 2, "50% increased Effect of Arcane Surge on you", "Buffs on you expire 20% faster", statOrder = { 3154, 5087 }, level = 80, group = "WeaponTreeArcaneSurgeEffectReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 300, 0, 300, 0 }, modTags = { }, }, - ["WeaponTreeOnslaughtSurgeEffectReducedSelfBuffExpiry1"] = { type = "Spawn", tier = 1, "20% increased Effect of Onslaught on you", "Buffs on you expire 10% faster", statOrder = { 3156, 5087 }, level = 20, group = "WeaponTreeOnslaughtSurgeEffectReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "default", }, weightVal = { 75, 300, 0 }, modTags = { }, }, - ["WeaponTreeOnslaughtSurgeEffectReducedSelfBuffExpiry2"] = { type = "Spawn", tier = 2, "25% increased Effect of Onslaught on you", "Buffs on you expire 10% faster", statOrder = { 3156, 5087 }, level = 80, group = "WeaponTreeOnslaughtSurgeEffectReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "default", }, weightVal = { 75, 300, 0 }, modTags = { }, }, - ["WeaponTreeOnslaughtSurgeEffectReducedSelfBuffExpiry2h1"] = { type = "Spawn", tier = 1, "40% increased Effect of Onslaught on you", "Buffs on you expire 20% faster", statOrder = { 3156, 5087 }, level = 20, group = "WeaponTreeOnslaughtSurgeEffectReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 75, 300, 0 }, modTags = { }, }, - ["WeaponTreeOnslaughtSurgeEffectReducedSelfBuffExpiry2h2"] = { type = "Spawn", tier = 2, "50% increased Effect of Onslaught on you", "Buffs on you expire 20% faster", statOrder = { 3156, 5087 }, level = 80, group = "WeaponTreeOnslaughtSurgeEffectReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 75, 300, 0 }, modTags = { }, }, - ["WeaponTreeOnslaughtOnKillReducedOnslaughtEffect1"] = { type = "Spawn", tier = 1, "20% reduced Effect of Onslaught on you", "10% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3156, 3246 }, level = 20, group = "WeaponTreeOnslaughtOnKillReducedOnslaughtEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "default", }, weightVal = { 75, 300, 0 }, modTags = { }, }, - ["WeaponTreeOnslaughtOnKillReducedOnslaughtEffect2"] = { type = "Spawn", tier = 2, "20% reduced Effect of Onslaught on you", "15% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3156, 3246 }, level = 80, group = "WeaponTreeOnslaughtOnKillReducedOnslaughtEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "default", }, weightVal = { 75, 300, 0 }, modTags = { }, }, - ["WeaponTreeOnslaughtOnKillReducedOnslaughtEffect2h1"] = { type = "Spawn", tier = 1, "20% reduced Effect of Onslaught on you", "20% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3156, 3246 }, level = 20, group = "WeaponTreeOnslaughtOnKillReducedOnslaughtEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 75, 300, 0 }, modTags = { }, }, - ["WeaponTreeOnslaughtOnKillReducedOnslaughtEffect2h2"] = { type = "Spawn", tier = 2, "20% reduced Effect of Onslaught on you", "30% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3156, 3246 }, level = 80, group = "WeaponTreeOnslaughtOnKillReducedOnslaughtEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 75, 300, 0 }, modTags = { }, }, - ["WeaponTreeUnholyMightChanceReducedSelfBuffExpiry1"] = { type = "Spawn", tier = 1, "10% chance to gain Unholy Might for 4 seconds on Kill", "Buffs on you expire 10% faster", statOrder = { 3244, 5087 }, level = 20, group = "WeaponTreeUnholyMightChanceReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeUnholyMightChanceReducedSelfBuffExpiry2"] = { type = "Spawn", tier = 2, "15% chance to gain Unholy Might for 4 seconds on Kill", "Buffs on you expire 10% faster", statOrder = { 3244, 5087 }, level = 80, group = "WeaponTreeUnholyMightChanceReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeUnholyMightChanceReducedSelfBuffExpiry2h1"] = { type = "Spawn", tier = 1, "20% chance to gain Unholy Might for 4 seconds on Kill", "Buffs on you expire 20% faster", statOrder = { 3244, 5087 }, level = 20, group = "WeaponTreeUnholyMightChanceReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeUnholyMightChanceReducedSelfBuffExpiry2h2"] = { type = "Spawn", tier = 2, "30% chance to gain Unholy Might for 4 seconds on Kill", "Buffs on you expire 20% faster", statOrder = { 3244, 5087 }, level = 80, group = "WeaponTreeUnholyMightChanceReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreePhasingOnKillReducedSelfBuffExpiry1"] = { type = "Spawn", tier = 1, "10% chance to gain Phasing for 4 seconds on Kill", "Buffs on you expire 10% faster", statOrder = { 3328, 5087 }, level = 20, group = "WeaponTreePhasingOnKillReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreePhasingOnKillReducedSelfBuffExpiry2"] = { type = "Spawn", tier = 2, "15% chance to gain Phasing for 4 seconds on Kill", "Buffs on you expire 10% faster", statOrder = { 3328, 5087 }, level = 80, group = "WeaponTreePhasingOnKillReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreePhasingOnKillReducedSelfBuffExpiry2h1"] = { type = "Spawn", tier = 1, "20% chance to gain Phasing for 4 seconds on Kill", "Buffs on you expire 20% faster", statOrder = { 3328, 5087 }, level = 20, group = "WeaponTreePhasingOnKillReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreePhasingOnKillReducedSelfBuffExpiry2h2"] = { type = "Spawn", tier = 2, "30% chance to gain Phasing for 4 seconds on Kill", "Buffs on you expire 20% faster", statOrder = { 3328, 5087 }, level = 80, group = "WeaponTreePhasingOnKillReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLocalStunThresholdEnduranceChargeOnMeleeStun1"] = { type = "Spawn", tier = 1, "15% reduced Enemy Stun Threshold with this Weapon", "20% chance to gain an Endurance Charge when you Stun an Enemy with a Melee Hit", statOrder = { 2373, 2644 }, level = 15, group = "WeaponTreeLocalStunThresholdEnduranceChargeOnMeleeStun", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 750, 0 }, modTags = { }, }, - ["WeaponTreeLocalStunThresholdEnduranceChargeOnMeleeStun2"] = { type = "Spawn", tier = 2, "25% reduced Enemy Stun Threshold with this Weapon", "20% chance to gain an Endurance Charge when you Stun an Enemy with a Melee Hit", statOrder = { 2373, 2644 }, level = 74, group = "WeaponTreeLocalStunThresholdEnduranceChargeOnMeleeStun", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 750, 0 }, modTags = { }, }, - ["WeaponTreeDoubleStunDurationEnemyStunThreshold1"] = { type = "Spawn", tier = 1, "15% increased Enemy Stun Threshold", "16% chance to double Stun Duration", statOrder = { 1400, 3427 }, level = 15, group = "WeaponTreeDoubleStunDurationEnemyStunThreshold", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeDoubleStunDurationEnemyStunThreshold2"] = { type = "Spawn", tier = 2, "15% increased Enemy Stun Threshold", "24% chance to double Stun Duration", statOrder = { 1400, 3427 }, level = 74, group = "WeaponTreeDoubleStunDurationEnemyStunThreshold", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeDoubleStunDurationEnemyStunThreshold2h1"] = { type = "Spawn", tier = 1, "30% increased Enemy Stun Threshold", "35% chance to double Stun Duration", statOrder = { 1400, 3427 }, level = 15, group = "WeaponTreeDoubleStunDurationEnemyStunThreshold", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeDoubleStunDurationEnemyStunThreshold2h2"] = { type = "Spawn", tier = 2, "30% increased Enemy Stun Threshold", "45% chance to double Stun Duration", statOrder = { 1400, 3427 }, level = 74, group = "WeaponTreeDoubleStunDurationEnemyStunThreshold", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeFortifyOnMeleeStunChanceReducedFortifyDuration1"] = { type = "Spawn", tier = 1, "30% reduced Fortification Duration", "Melee Hits which Stun have 15% chance to Fortify", statOrder = { 2142, 5388 }, level = 32, group = "WeaponTreeFortifyOnMeleeStunChanceReducedFortifyDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["WeaponTreeFortifyOnMeleeStunChanceReducedFortifyDuration2"] = { type = "Spawn", tier = 2, "30% reduced Fortification Duration", "Melee Hits which Stun have 20% chance to Fortify", statOrder = { 2142, 5388 }, level = 78, group = "WeaponTreeFortifyOnMeleeStunChanceReducedFortifyDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["WeaponTreeFortifyOnMeleeStunChanceReducedFortifyDuration2h1"] = { type = "Spawn", tier = 1, "30% reduced Fortification Duration", "Melee Hits which Stun have 30% chance to Fortify", statOrder = { 2142, 5388 }, level = 32, group = "WeaponTreeFortifyOnMeleeStunChanceReducedFortifyDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["WeaponTreeFortifyOnMeleeStunChanceReducedFortifyDuration2h2"] = { type = "Spawn", tier = 2, "30% reduced Fortification Duration", "Melee Hits which Stun have 40% chance to Fortify", statOrder = { 2142, 5388 }, level = 78, group = "WeaponTreeFortifyOnMeleeStunChanceReducedFortifyDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["WeaponTreeSkillEffectDurationReducedCooldownRecovery1"] = { type = "Spawn", tier = 1, "15% increased Skill Effect Duration", "10% reduced Cooldown Recovery Rate", statOrder = { 1776, 4822 }, level = 20, group = "WeaponTreeSkillEffectDurationReducedCooldownRecovery", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeSkillEffectDurationReducedCooldownRecovery2"] = { type = "Spawn", tier = 2, "20% increased Skill Effect Duration", "10% reduced Cooldown Recovery Rate", statOrder = { 1776, 4822 }, level = 84, group = "WeaponTreeSkillEffectDurationReducedCooldownRecovery", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeSkillEffectDurationReducedCooldownRecovery2h1"] = { type = "Spawn", tier = 1, "30% increased Skill Effect Duration", "20% reduced Cooldown Recovery Rate", statOrder = { 1776, 4822 }, level = 20, group = "WeaponTreeSkillEffectDurationReducedCooldownRecovery", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeSkillEffectDurationReducedCooldownRecovery2h2"] = { type = "Spawn", tier = 2, "40% increased Skill Effect Duration", "20% reduced Cooldown Recovery Rate", statOrder = { 1776, 4822 }, level = 84, group = "WeaponTreeSkillEffectDurationReducedCooldownRecovery", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeCooldownRecoveryReducedSkillEffectDuration1"] = { type = "Spawn", tier = 1, "10% reduced Skill Effect Duration", "10% increased Cooldown Recovery Rate", statOrder = { 1776, 4822 }, level = 20, group = "WeaponTreeCooldownRecoveryReducedSkillEffectDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeCooldownRecoveryReducedSkillEffectDuration2"] = { type = "Spawn", tier = 2, "10% reduced Skill Effect Duration", "15% increased Cooldown Recovery Rate", statOrder = { 1776, 4822 }, level = 84, group = "WeaponTreeCooldownRecoveryReducedSkillEffectDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeCooldownRecoveryReducedSkillEffectDuration2h1"] = { type = "Spawn", tier = 1, "10% reduced Skill Effect Duration", "20% increased Cooldown Recovery Rate", statOrder = { 1776, 4822 }, level = 20, group = "WeaponTreeCooldownRecoveryReducedSkillEffectDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeCooldownRecoveryReducedSkillEffectDuration2h2"] = { type = "Spawn", tier = 2, "10% reduced Skill Effect Duration", "25% increased Cooldown Recovery Rate", statOrder = { 1776, 4822 }, level = 84, group = "WeaponTreeCooldownRecoveryReducedSkillEffectDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeFlaskChargeOnCriticalStrikeReducedFlaskEffect1"] = { type = "Spawn", tier = 1, "Flasks applied to you have 10% reduced Effect", "40% chance to gain a Flask Charge when you deal a Critical Strike", statOrder = { 2617, 3257 }, level = 25, group = "WeaponTreeFlaskChargeOnCriticalStrikeReducedFlaskEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeFlaskChargeOnCriticalStrikeReducedFlaskEffect2"] = { type = "Spawn", tier = 2, "Flasks applied to you have 10% reduced Effect", "50% chance to gain a Flask Charge when you deal a Critical Strike", statOrder = { 2617, 3257 }, level = 75, group = "WeaponTreeFlaskChargeOnCriticalStrikeReducedFlaskEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeFlaskChargeOnCriticalStrikeReducedFlaskEffect2h1"] = { type = "Spawn", tier = 1, "Flasks applied to you have 10% reduced Effect", "80% chance to gain a Flask Charge when you deal a Critical Strike", statOrder = { 2617, 3257 }, level = 25, group = "WeaponTreeFlaskChargeOnCriticalStrikeReducedFlaskEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeFlaskChargeOnCriticalStrikeReducedFlaskEffect2h2"] = { type = "Spawn", tier = 2, "Flasks applied to you have 10% reduced Effect", "Gain a Flask Charge when you deal a Critical Strike", statOrder = { 2617, 3257 }, level = 75, group = "WeaponTreeFlaskChargeOnCriticalStrikeReducedFlaskEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeFlaskEffectReducedFlaskChargesGained1"] = { type = "Spawn", tier = 1, "15% reduced Flask Charges gained", "Flasks applied to you have 8% increased Effect", statOrder = { 2060, 2617 }, level = 12, group = "WeaponTreeFlaskEffectReducedFlaskChargesGained", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeFlaskEffectReducedFlaskChargesGained2"] = { type = "Spawn", tier = 2, "15% reduced Flask Charges gained", "Flasks applied to you have 10% increased Effect", statOrder = { 2060, 2617 }, level = 70, group = "WeaponTreeFlaskEffectReducedFlaskChargesGained", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeFlaskEffectReducedFlaskChargesGained2h1"] = { type = "Spawn", tier = 1, "20% reduced Flask Charges gained", "Flasks applied to you have 12% increased Effect", statOrder = { 2060, 2617 }, level = 12, group = "WeaponTreeFlaskEffectReducedFlaskChargesGained", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeFlaskEffectReducedFlaskChargesGained2h2"] = { type = "Spawn", tier = 2, "20% reduced Flask Charges gained", "Flasks applied to you have 15% increased Effect", statOrder = { 2060, 2617 }, level = 70, group = "WeaponTreeFlaskEffectReducedFlaskChargesGained", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeCurseEffectIfMostlyExpiredReducedCurseEffect1"] = { type = "Spawn", tier = 1, "10% reduced Effect of your Curses", "Your Curses have 25% increased Effect if 50% of Curse Duration expired", statOrder = { 2472, 10079 }, level = 24, group = "WeaponTreeCurseEffectIfMostlyExpiredReducedCurseEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeCurseEffectIfMostlyExpiredReducedCurseEffect2"] = { type = "Spawn", tier = 2, "10% reduced Effect of your Curses", "Your Curses have 30% increased Effect if 50% of Curse Duration expired", statOrder = { 2472, 10079 }, level = 75, group = "WeaponTreeCurseEffectIfMostlyExpiredReducedCurseEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeCurseEffectIfMostlyExpiredReducedCurseEffect2h1"] = { type = "Spawn", tier = 1, "15% reduced Effect of your Curses", "Your Curses have 35% increased Effect if 50% of Curse Duration expired", statOrder = { 2472, 10079 }, level = 24, group = "WeaponTreeCurseEffectIfMostlyExpiredReducedCurseEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeCurseEffectIfMostlyExpiredReducedCurseEffect2h2"] = { type = "Spawn", tier = 2, "15% reduced Effect of your Curses", "Your Curses have 50% increased Effect if 50% of Curse Duration expired", statOrder = { 2472, 10079 }, level = 75, group = "WeaponTreeCurseEffectIfMostlyExpiredReducedCurseEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeCurseEffectIncreasedCurseEffectOnSelf1"] = { type = "Spawn", tier = 1, "15% increased Effect of Curses on you", "8% increased Effect of your Curses", statOrder = { 2047, 2472 }, level = 24, group = "WeaponTreeCurseEffectIncreasedCurseEffectOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeCurseEffectIncreasedCurseEffectOnSelf2"] = { type = "Spawn", tier = 2, "15% increased Effect of Curses on you", "10% increased Effect of your Curses", statOrder = { 2047, 2472 }, level = 75, group = "WeaponTreeCurseEffectIncreasedCurseEffectOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeCurseEffectIncreasedCurseEffectOnSelf2h1"] = { type = "Spawn", tier = 1, "25% increased Effect of Curses on you", "12% increased Effect of your Curses", statOrder = { 2047, 2472 }, level = 24, group = "WeaponTreeCurseEffectIncreasedCurseEffectOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeCurseEffectIncreasedCurseEffectOnSelf2h2"] = { type = "Spawn", tier = 2, "25% increased Effect of Curses on you", "15% increased Effect of your Curses", statOrder = { 2047, 2472 }, level = 75, group = "WeaponTreeCurseEffectIncreasedCurseEffectOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeCurseDurationReducedCurseAreaOfEffect1"] = { type = "Spawn", tier = 1, "20% reduced Area of Effect of Hex Skills", "Hex Skills have 40% increased Skill Effect Duration", statOrder = { 2102, 6767 }, level = 24, group = "WeaponTreeCurseDurationReducedCurseAreaOfEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeCurseDurationReducedCurseAreaOfEffect2"] = { type = "Spawn", tier = 2, "20% reduced Area of Effect of Hex Skills", "Hex Skills have 50% increased Skill Effect Duration", statOrder = { 2102, 6767 }, level = 75, group = "WeaponTreeCurseDurationReducedCurseAreaOfEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeCurseDurationReducedCurseAreaOfEffect2h1"] = { type = "Spawn", tier = 1, "30% reduced Area of Effect of Hex Skills", "Hex Skills have 80% increased Skill Effect Duration", statOrder = { 2102, 6767 }, level = 24, group = "WeaponTreeCurseDurationReducedCurseAreaOfEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeCurseDurationReducedCurseAreaOfEffect2h2"] = { type = "Spawn", tier = 2, "30% reduced Area of Effect of Hex Skills", "Hex Skills have 100% increased Skill Effect Duration", statOrder = { 2102, 6767 }, level = 75, group = "WeaponTreeCurseDurationReducedCurseAreaOfEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeQuiverModEffect2h1"] = { type = "Spawn", tier = 1, "15% increased bonuses gained from Equipped Quiver", statOrder = { 9281 }, level = 36, group = "WeaponTreeQuiverModEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "bow", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeQuiverModEffect2h2"] = { type = "Spawn", tier = 2, "20% increased bonuses gained from Equipped Quiver", statOrder = { 9281 }, level = 85, group = "WeaponTreeQuiverModEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "bow", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeMineDetonateTwiceChance1"] = { type = "Spawn", tier = 1, "15% reduced Mana Reservation Efficiency of Skills that throw Mines", "Mines have a 10% chance to be Detonated an Additional Time", statOrder = { 7785, 8763 }, level = 1, group = "WeaponTreeMineDetonateTwiceChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeMineDetonateTwiceChance2"] = { type = "Spawn", tier = 2, "15% reduced Mana Reservation Efficiency of Skills that throw Mines", "Mines have a 14% chance to be Detonated an Additional Time", statOrder = { 7785, 8763 }, level = 60, group = "WeaponTreeMineDetonateTwiceChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeMineDetonateTwiceChance2h1"] = { type = "Spawn", tier = 1, "25% reduced Mana Reservation Efficiency of Skills that throw Mines", "Mines have a 16% chance to be Detonated an Additional Time", statOrder = { 7785, 8763 }, level = 1, group = "WeaponTreeMineDetonateTwiceChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeMineDetonateTwiceChance2h2"] = { type = "Spawn", tier = 2, "25% reduced Mana Reservation Efficiency of Skills that throw Mines", "Mines have a 20% chance to be Detonated an Additional Time", statOrder = { 7785, 8763 }, level = 60, group = "WeaponTreeMineDetonateTwiceChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeMineAuraEffect1"] = { type = "Spawn", tier = 1, "Skills used by Mines have 40% reduced Area of Effect", "25% increased Effect of Auras from Mines", statOrder = { 8759, 8761 }, level = 1, group = "WeaponTreeMineAuraEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeMineAuraEffect2"] = { type = "Spawn", tier = 2, "Skills used by Mines have 40% reduced Area of Effect", "40% increased Effect of Auras from Mines", statOrder = { 8759, 8761 }, level = 60, group = "WeaponTreeMineAuraEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeMineAuraEffect2h1"] = { type = "Spawn", tier = 1, "Skills used by Mines have 60% reduced Area of Effect", "50% increased Effect of Auras from Mines", statOrder = { 8759, 8761 }, level = 1, group = "WeaponTreeMineAuraEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeMineAuraEffect2h2"] = { type = "Spawn", tier = 2, "Skills used by Mines have 60% reduced Area of Effect", "70% increased Effect of Auras from Mines", statOrder = { 8759, 8761 }, level = 60, group = "WeaponTreeMineAuraEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeTrapThrowingSpeed1"] = { type = "Spawn", tier = 1, "40% reduced Trap Trigger Area of Effect", "12% increased Trap Throwing Speed", statOrder = { 1804, 1806 }, level = 1, group = "WeaponTreeTrapThrowingSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeTrapThrowingSpeed2"] = { type = "Spawn", tier = 2, "40% reduced Trap Trigger Area of Effect", "16% increased Trap Throwing Speed", statOrder = { 1804, 1806 }, level = 60, group = "WeaponTreeTrapThrowingSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeTrapThrowingSpeed2h1"] = { type = "Spawn", tier = 1, "60% reduced Trap Trigger Area of Effect", "18% increased Trap Throwing Speed", statOrder = { 1804, 1806 }, level = 1, group = "WeaponTreeTrapThrowingSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeTrapThrowingSpeed2h2"] = { type = "Spawn", tier = 2, "60% reduced Trap Trigger Area of Effect", "25% increased Trap Throwing Speed", statOrder = { 1804, 1806 }, level = 60, group = "WeaponTreeTrapThrowingSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeTrapsThrowInACircle"] = { type = "Spawn", tier = 1, "25% reduced Trap Spread", "Traps from Skills are thrown randomly around targeted location", statOrder = { 9896, 10076 }, level = 1, group = "WeaponTreeTrapsThrowInACircle", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeTrapsThrowInACircle2h"] = { type = "Spawn", tier = 1, "25% reduced Trap Spread", "Traps from Skills are thrown randomly around targeted location", statOrder = { 9896, 10076 }, level = 60, group = "WeaponTreeTrapsThrowInACircle", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeBrandAreaOfEffectAtLowDuration1"] = { type = "Spawn", tier = 1, "Brands have 25% increased Area of Effect if 50% of Attached Duration expired", "Brand Skills have 20% reduced Duration", statOrder = { 5078, 9526 }, level = 12, group = "WeaponTreeBrandAreaOfEffectAtLowDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeBrandAreaOfEffectAtLowDuration2"] = { type = "Spawn", tier = 2, "Brands have 40% increased Area of Effect if 50% of Attached Duration expired", "Brand Skills have 20% reduced Duration", statOrder = { 5078, 9526 }, level = 60, group = "WeaponTreeBrandAreaOfEffectAtLowDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeBrandAreaOfEffectAtLowDuration2h1"] = { type = "Spawn", tier = 1, "Brands have 45% increased Area of Effect if 50% of Attached Duration expired", "Brand Skills have 30% reduced Duration", statOrder = { 5078, 9526 }, level = 12, group = "WeaponTreeBrandAreaOfEffectAtLowDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeBrandAreaOfEffectAtLowDuration2h2"] = { type = "Spawn", tier = 2, "Brands have 60% increased Area of Effect if 50% of Attached Duration expired", "Brand Skills have 30% reduced Duration", statOrder = { 5078, 9526 }, level = 60, group = "WeaponTreeBrandAreaOfEffectAtLowDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeBrandSearchRange1"] = { type = "Spawn", tier = 1, "Brand Recall has 40% reduced Cooldown Recovery Rate", "40% increased Brand Attachment range", statOrder = { 9527, 9531 }, level = 12, group = "WeaponTreeBrandSearchRange", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeBrandSearchRange2"] = { type = "Spawn", tier = 2, "Brand Recall has 40% reduced Cooldown Recovery Rate", "60% increased Brand Attachment range", statOrder = { 9527, 9531 }, level = 60, group = "WeaponTreeBrandSearchRange", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, - ["WeaponTreeBrandSearchRange2h1"] = { type = "Spawn", tier = 1, "Brand Recall has 60% reduced Cooldown Recovery Rate", "75% increased Brand Attachment range", statOrder = { 9527, 9531 }, level = 12, group = "WeaponTreeBrandSearchRange", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeBrandSearchRange2h2"] = { type = "Spawn", tier = 2, "Brand Recall has 60% reduced Cooldown Recovery Rate", "100% increased Brand Attachment range", statOrder = { 9527, 9531 }, level = 60, group = "WeaponTreeBrandSearchRange", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeTotemChanceToSpawnTwo1"] = { type = "Spawn", tier = 1, "15% reduced Totem Placement speed", "Skills that Summon a Totem have 25% chance to Summon two Totems instead of one", statOrder = { 2454, 5432 }, level = 4, group = "WeaponTreeTotemChanceToSpawnTwo", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeTotemChanceToSpawnTwo2"] = { type = "Spawn", tier = 2, "15% reduced Totem Placement speed", "Skills that Summon a Totem have 40% chance to Summon two Totems instead of one", statOrder = { 2454, 5432 }, level = 60, group = "WeaponTreeTotemChanceToSpawnTwo", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeTotemChanceToSpawnTwo2h1"] = { type = "Spawn", tier = 1, "25% reduced Totem Placement speed", "Skills that Summon a Totem have 50% chance to Summon two Totems instead of one", statOrder = { 2454, 5432 }, level = 4, group = "WeaponTreeTotemChanceToSpawnTwo", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeTotemChanceToSpawnTwo2h2"] = { type = "Spawn", tier = 2, "25% reduced Totem Placement speed", "Skills that Summon a Totem have 70% chance to Summon two Totems instead of one", statOrder = { 2454, 5432 }, level = 60, group = "WeaponTreeTotemChanceToSpawnTwo", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeTotemExplodeOnDeath1"] = { type = "Spawn", tier = 1, "15% reduced Totem Life", "Totems Explode on Death, dealing 10% of their Life as Physical Damage", statOrder = { 1655, 9881 }, level = 4, group = "WeaponTreeTotemExplodeOnDeath", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeTotemExplodeOnDeath2"] = { type = "Spawn", tier = 2, "15% reduced Totem Life", "Totems Explode on Death, dealing 15% of their Life as Physical Damage", statOrder = { 1655, 9881 }, level = 60, group = "WeaponTreeTotemExplodeOnDeath", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeTotemExplodeOnDeath2h1"] = { type = "Spawn", tier = 1, "25% reduced Totem Life", "Totems Explode on Death, dealing 20% of their Life as Physical Damage", statOrder = { 1655, 9881 }, level = 4, group = "WeaponTreeTotemExplodeOnDeath", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeTotemExplodeOnDeath2h2"] = { type = "Spawn", tier = 2, "25% reduced Totem Life", "Totems Explode on Death, dealing 30% of their Life as Physical Damage", statOrder = { 1655, 9881 }, level = 60, group = "WeaponTreeTotemExplodeOnDeath", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeUnaffectedByChillWhileChannelling"] = { type = "Spawn", tier = 1, "30% increased Effect of Chill on you", "Unaffected by Chill while Channelling", statOrder = { 1526, 9934 }, level = 1, group = "WeaponTreeUnaffectedByChillWhileChannelling", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "two_hand_weapon", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, - ["WeaponTreeUnaffectedByShockWhileChannelling"] = { type = "Spawn", tier = 1, "30% increased Effect of Shock on you", "Unaffected by Shock while Channelling", statOrder = { 9507, 9954 }, level = 1, group = "WeaponTreeUnaffectedByShockWhileChannelling", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "two_hand_weapon", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, - ["WeaponTreeWarcryBuffEffect1"] = { type = "Spawn", tier = 1, "20% increased Warcry Buff Effect", "Warcry Skills have 20% reduced Area of Effect", statOrder = { 10035, 10043 }, level = 10, group = "WeaponTreeWarcryBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeWarcryBuffEffect2"] = { type = "Spawn", tier = 2, "30% increased Warcry Buff Effect", "Warcry Skills have 20% reduced Area of Effect", statOrder = { 10035, 10043 }, level = 60, group = "WeaponTreeWarcryBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeWarcryBuffEffect2h1"] = { type = "Spawn", tier = 1, "35% increased Warcry Buff Effect", "Warcry Skills have 30% reduced Area of Effect", statOrder = { 10035, 10043 }, level = 10, group = "WeaponTreeWarcryBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeWarcryBuffEffect2h2"] = { type = "Spawn", tier = 2, "50% increased Warcry Buff Effect", "Warcry Skills have 30% reduced Area of Effect", statOrder = { 10035, 10043 }, level = 60, group = "WeaponTreeWarcryBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeWarcryDamagePerWarcryUsedRecently1"] = { type = "Spawn", tier = 1, "30% reduced Damage", "25% increased Damage for each time you've Warcried Recently", statOrder = { 1076, 5767 }, level = 10, group = "WeaponTreeWarcryDamagePerWarcryUsedRecently", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeWarcryDamagePerWarcryUsedRecently2"] = { type = "Spawn", tier = 2, "30% reduced Damage", "40% increased Damage for each time you've Warcried Recently", statOrder = { 1076, 5767 }, level = 60, group = "WeaponTreeWarcryDamagePerWarcryUsedRecently", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeWarcryDamagePerWarcryUsedRecently2h1"] = { type = "Spawn", tier = 1, "50% reduced Damage", "40% increased Damage for each time you've Warcried Recently", statOrder = { 1076, 5767 }, level = 10, group = "WeaponTreeWarcryDamagePerWarcryUsedRecently", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeWarcryDamagePerWarcryUsedRecently2h2"] = { type = "Spawn", tier = 2, "50% reduced Damage", "60% increased Damage for each time you've Warcried Recently", statOrder = { 1076, 5767 }, level = 60, group = "WeaponTreeWarcryDamagePerWarcryUsedRecently", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WeaponTreeScorchChanceCannotIgnite1"] = { type = "Spawn", tier = 1, "6% chance to Scorch Enemies", "Cannot inflict Ignite", statOrder = { 1904, 2436 }, level = 25, group = "WeaponTreeScorchChanceCannotIgnite", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeScorchChanceCannotIgnite2"] = { type = "Spawn", tier = 2, "10% chance to Scorch Enemies", "Cannot inflict Ignite", statOrder = { 1904, 2436 }, level = 68, group = "WeaponTreeScorchChanceCannotIgnite", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeScorchChanceCannotIgnite2h1"] = { type = "Spawn", tier = 1, "12% chance to Scorch Enemies", "Cannot inflict Ignite", statOrder = { 1904, 2436 }, level = 25, group = "WeaponTreeScorchChanceCannotIgnite", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeScorchChanceCannotIgnite2h2"] = { type = "Spawn", tier = 2, "20% chance to Scorch Enemies", "Cannot inflict Ignite", statOrder = { 1904, 2436 }, level = 68, group = "WeaponTreeScorchChanceCannotIgnite", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeBrittleChanceCannotFreezeChill1"] = { type = "Spawn", tier = 1, "6% chance to inflict Brittle", "Cannot inflict Freeze or Chill", statOrder = { 1907, 2438 }, level = 25, group = "WeaponTreeBrittleChanceCannotFreezeChill", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeBrittleChanceCannotFreezeChill2"] = { type = "Spawn", tier = 2, "10% chance to inflict Brittle", "Cannot inflict Freeze or Chill", statOrder = { 1907, 2438 }, level = 68, group = "WeaponTreeBrittleChanceCannotFreezeChill", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeBrittleChanceCannotFreezeChill2h1"] = { type = "Spawn", tier = 1, "12% chance to inflict Brittle", "Cannot inflict Freeze or Chill", statOrder = { 1907, 2438 }, level = 25, group = "WeaponTreeBrittleChanceCannotFreezeChill", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeBrittleChanceCannotFreezeChill2h2"] = { type = "Spawn", tier = 2, "20% chance to inflict Brittle", "Cannot inflict Freeze or Chill", statOrder = { 1907, 2438 }, level = 68, group = "WeaponTreeBrittleChanceCannotFreezeChill", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeSapChanceCannotShock1"] = { type = "Spawn", tier = 1, "6% chance to Sap Enemies", "Cannot inflict Shock", statOrder = { 1911, 2439 }, level = 25, group = "WeaponTreeSapChanceCannotShock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeSapChanceCannotShock2"] = { type = "Spawn", tier = 2, "10% chance to Sap Enemies", "Cannot inflict Shock", statOrder = { 1911, 2439 }, level = 68, group = "WeaponTreeSapChanceCannotShock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeSapChanceCannotShock2h1"] = { type = "Spawn", tier = 1, "12% chance to Sap Enemies", "Cannot inflict Shock", statOrder = { 1911, 2439 }, level = 25, group = "WeaponTreeSapChanceCannotShock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeSapChanceCannotShock2h2"] = { type = "Spawn", tier = 2, "20% chance to Sap Enemies", "Cannot inflict Shock", statOrder = { 1911, 2439 }, level = 68, group = "WeaponTreeSapChanceCannotShock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeFireExposureOnHit"] = { type = "Spawn", tier = 1, "Inflict Fire Exposure on Hit", "25% chance to be inflicted with Fire Exposure when you take Fire Damage from a Hit", statOrder = { 4842, 6905 }, level = 34, group = "WeaponTreeFireExposureOnHit", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeColdExposureOnHit"] = { type = "Spawn", tier = 1, "Inflict Cold Exposure on Hit", "25% chance to be inflicted with Cold Exposure when you take Cold Damage from a Hit", statOrder = { 4841, 6904 }, level = 34, group = "WeaponTreeColdExposureOnHit", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeLightningExposureOnHit"] = { type = "Spawn", tier = 1, "Inflict Lightning Exposure on Hit", "25% chance to be inflicted with Lightning Exposure when you take Lightning Damage from a Hit", statOrder = { 4843, 6906 }, level = 34, group = "WeaponTreeLightningExposureOnHit", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeAllExposureOnHit"] = { type = "Spawn", tier = 1, "Inflict Fire, Cold, and Lightning Exposure on Hit", "25% chance to be inflicted with a random Exposure when you take Elemental Damage from a Hit", statOrder = { 6896, 6907 }, level = 75, group = "WeaponTreeAllExposureOnHit", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeWitherOnHitChance1"] = { type = "Spawn", tier = 1, "6% chance to inflict Withered for 2 seconds on Hit", "25% chance to be Withered for 2 seconds when you take Chaos Damage from a Hit", statOrder = { 4258, 6908 }, level = 38, group = "WeaponTreeWitherOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeWitherOnHitChance2"] = { type = "Spawn", tier = 2, "10% chance to inflict Withered for 2 seconds on Hit", "25% chance to be Withered for 2 seconds when you take Chaos Damage from a Hit", statOrder = { 4258, 6908 }, level = 76, group = "WeaponTreeWitherOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeWitherOnHitChance2h1"] = { type = "Spawn", tier = 1, "10% chance to inflict Withered for 2 seconds on Hit", "50% chance to be Withered for 2 seconds when you take Chaos Damage from a Hit", statOrder = { 4258, 6908 }, level = 38, group = "WeaponTreeWitherOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeWitherOnHitChance2h2"] = { type = "Spawn", tier = 2, "15% chance to inflict Withered for 2 seconds on Hit", "50% chance to be Withered for 2 seconds when you take Chaos Damage from a Hit", statOrder = { 4258, 6908 }, level = 76, group = "WeaponTreeWitherOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeOverwhelm1"] = { type = "Spawn", tier = 1, "Overwhelm 15% Physical Damage Reduction", "Hits against you Overwhelm 5% of Physical Damage Reduction", statOrder = { 2850, 6792 }, level = 20, group = "WeaponTreeOvewhelm", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeOverwhelm2"] = { type = "Spawn", tier = 2, "Overwhelm 20% Physical Damage Reduction", "Hits against you Overwhelm 5% of Physical Damage Reduction", statOrder = { 2850, 6792 }, level = 68, group = "WeaponTreeOvewhelm", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeOverwhelm2h1"] = { type = "Spawn", tier = 1, "Overwhelm 24% Physical Damage Reduction", "Hits against you Overwhelm 10% of Physical Damage Reduction", statOrder = { 2850, 6792 }, level = 25, group = "WeaponTreeOvewhelm", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeOverwhelm2h2"] = { type = "Spawn", tier = 2, "Overwhelm 32% Physical Damage Reduction", "Hits against you Overwhelm 10% of Physical Damage Reduction", statOrder = { 2850, 6792 }, level = 68, group = "WeaponTreeOvewhelm", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeStunDuration1"] = { type = "Spawn", tier = 1, "30% increased Stun Duration on Enemies", "15% increased Stun Duration on you", statOrder = { 1744, 4035 }, level = 1, group = "WeaponTreeStunDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, - ["WeaponTreeStunDuration2"] = { type = "Spawn", tier = 2, "40% increased Stun Duration on Enemies", "20% increased Stun Duration on you", statOrder = { 1744, 4035 }, level = 45, group = "WeaponTreeStunDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, - ["WeaponTreeStunDuration2h1"] = { type = "Spawn", tier = 1, "60% increased Stun Duration on Enemies", "30% increased Stun Duration on you", statOrder = { 1744, 4035 }, level = 1, group = "WeaponTreeStunDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeStunDuration2h2"] = { type = "Spawn", tier = 2, "80% increased Stun Duration on Enemies", "40% increased Stun Duration on you", statOrder = { 1744, 4035 }, level = 45, group = "WeaponTreeStunDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeFreezeDuration1"] = { type = "Spawn", tier = 1, "20% increased Freeze Duration on Enemies", "15% increased Freeze Duration on you", statOrder = { 1739, 1755 }, level = 1, group = "WeaponTreeFreezeDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, - ["WeaponTreeFreezeDuration2"] = { type = "Spawn", tier = 2, "30% increased Freeze Duration on Enemies", "20% increased Freeze Duration on you", statOrder = { 1739, 1755 }, level = 45, group = "WeaponTreeFreezeDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, - ["WeaponTreeFreezeDuration2h1"] = { type = "Spawn", tier = 1, "35% increased Freeze Duration on Enemies", "30% increased Freeze Duration on you", statOrder = { 1739, 1755 }, level = 1, group = "WeaponTreeFreezeDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeFreezeDuration2h2"] = { type = "Spawn", tier = 2, "50% increased Freeze Duration on Enemies", "40% increased Freeze Duration on you", statOrder = { 1739, 1755 }, level = 45, group = "WeaponTreeFreezeDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeIgniteDuration1"] = { type = "Spawn", tier = 1, "20% increased Ignite Duration on Enemies", "15% increased Ignite Duration on you", statOrder = { 1740, 1756 }, level = 1, group = "WeaponTreeIgniteDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, - ["WeaponTreeIgniteDuration2"] = { type = "Spawn", tier = 2, "30% increased Ignite Duration on Enemies", "20% increased Ignite Duration on you", statOrder = { 1740, 1756 }, level = 45, group = "WeaponTreeIgniteDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, - ["WeaponTreeIgniteDuration2h1"] = { type = "Spawn", tier = 1, "35% increased Ignite Duration on Enemies", "30% increased Ignite Duration on you", statOrder = { 1740, 1756 }, level = 1, group = "WeaponTreeIgniteDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeIgniteDuration2h2"] = { type = "Spawn", tier = 2, "50% increased Ignite Duration on Enemies", "40% increased Ignite Duration on you", statOrder = { 1740, 1756 }, level = 45, group = "WeaponTreeIgniteDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeBleedDuration1"] = { type = "Spawn", tier = 1, "20% increased Bleeding Duration", "15% increased Bleed Duration on you", statOrder = { 4811, 9458 }, level = 1, group = "WeaponTreeBleedDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, - ["WeaponTreeBleedDuration2"] = { type = "Spawn", tier = 2, "30% increased Bleeding Duration", "20% increased Bleed Duration on you", statOrder = { 4811, 9458 }, level = 45, group = "WeaponTreeBleedDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, - ["WeaponTreeBleedDuration2h1"] = { type = "Spawn", tier = 1, "35% increased Bleeding Duration", "30% increased Bleed Duration on you", statOrder = { 4811, 9458 }, level = 1, group = "WeaponTreeBleedDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeBleedDuration2h2"] = { type = "Spawn", tier = 2, "50% increased Bleeding Duration", "40% increased Bleed Duration on you", statOrder = { 4811, 9458 }, level = 45, group = "WeaponTreeBleedDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreePoisonDuration1"] = { type = "Spawn", tier = 1, "10% increased Poison Duration", "15% increased Poison Duration on you", statOrder = { 3036, 9467 }, level = 1, group = "WeaponTreePoisonDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, - ["WeaponTreePoisonDuration2"] = { type = "Spawn", tier = 2, "15% increased Poison Duration", "20% increased Poison Duration on you", statOrder = { 3036, 9467 }, level = 45, group = "WeaponTreePoisonDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, - ["WeaponTreePoisonDuration2h1"] = { type = "Spawn", tier = 1, "18% increased Poison Duration", "30% increased Poison Duration on you", statOrder = { 3036, 9467 }, level = 1, group = "WeaponTreePoisonDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreePoisonDuration2h2"] = { type = "Spawn", tier = 2, "24% increased Poison Duration", "40% increased Poison Duration on you", statOrder = { 3036, 9467 }, level = 45, group = "WeaponTreePoisonDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeChillEffect1"] = { type = "Spawn", tier = 1, "15% increased Effect of Chill on you", "30% increased Effect of Chill", statOrder = { 1526, 5476 }, level = 1, group = "WeaponTreeChillEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, - ["WeaponTreeChillEffect2"] = { type = "Spawn", tier = 2, "20% increased Effect of Chill on you", "40% increased Effect of Chill", statOrder = { 1526, 5476 }, level = 45, group = "WeaponTreeChillEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, - ["WeaponTreeChillEffect2h1"] = { type = "Spawn", tier = 1, "30% increased Effect of Chill on you", "60% increased Effect of Chill", statOrder = { 1526, 5476 }, level = 1, group = "WeaponTreeChillEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeChillEffect2h2"] = { type = "Spawn", tier = 2, "40% increased Effect of Chill on you", "80% increased Effect of Chill", statOrder = { 1526, 5476 }, level = 45, group = "WeaponTreeChillEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeShockEffect1"] = { type = "Spawn", tier = 1, "30% increased Effect of Shock", "15% increased Effect of Shock on you", statOrder = { 9496, 9507 }, level = 1, group = "WeaponTreeShockEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, - ["WeaponTreeShockEffect2"] = { type = "Spawn", tier = 2, "40% increased Effect of Shock", "20% increased Effect of Shock on you", statOrder = { 9496, 9507 }, level = 45, group = "WeaponTreeShockEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, - ["WeaponTreeShockEffect2h1"] = { type = "Spawn", tier = 1, "60% increased Effect of Shock", "30% increased Effect of Shock on you", statOrder = { 9496, 9507 }, level = 1, group = "WeaponTreeShockEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeShockEffect2h2"] = { type = "Spawn", tier = 2, "80% increased Effect of Shock", "40% increased Effect of Shock on you", statOrder = { 9496, 9507 }, level = 45, group = "WeaponTreeShockEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeImpaleEffect1"] = { type = "Spawn", tier = 1, "10% increased Impale Effect", "Attack Hits against you have 15% chance to Impale", statOrder = { 6869, 9329 }, level = 1, group = "WeaponTreeImpaleEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "shield", "default", }, weightVal = { 75, 300, 300, 0 }, modTags = { }, }, - ["WeaponTreeImpaleEffect2"] = { type = "Spawn", tier = 2, "15% increased Impale Effect", "Attack Hits against you have 20% chance to Impale", statOrder = { 6869, 9329 }, level = 45, group = "WeaponTreeImpaleEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "shield", "default", }, weightVal = { 75, 300, 300, 0 }, modTags = { }, }, - ["WeaponTreeImpaleEffect2h1"] = { type = "Spawn", tier = 1, "18% increased Impale Effect", "Attack Hits against you have 30% chance to Impale", statOrder = { 6869, 9329 }, level = 1, group = "WeaponTreeImpaleEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 75, 300, 0 }, modTags = { }, }, - ["WeaponTreeImpaleEffect2h2"] = { type = "Spawn", tier = 2, "24% increased Impale Effect", "Attack Hits against you have 40% chance to Impale", statOrder = { 6869, 9329 }, level = 45, group = "WeaponTreeImpaleEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 75, 300, 0 }, modTags = { }, }, - ["WeaponTreeLocalReducedAttributeRequirements1"] = { type = "Spawn", tier = 1, "20% reduced Attribute Requirements", statOrder = { 964 }, level = 1, group = "WeaponTreeLocalAttributeRequirements", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "fishing_rod", "default", }, weightVal = { 0, 1000 }, modTags = { }, }, - ["WeaponTreeLocalReducedAttributeRequirements2"] = { type = "Spawn", tier = 2, "30% reduced Attribute Requirements", statOrder = { 964 }, level = 1, group = "WeaponTreeLocalAttributeRequirements", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "fishing_rod", "default", }, weightVal = { 0, 1000 }, modTags = { }, }, - ["WeaponTreeDexterityAndNoInherentBonusFromDexterity1"] = { type = "Spawn", tier = 1, "+60 to Dexterity", "Gain no inherent bonuses from Dexterity", statOrder = { 1063, 1892 }, level = 1, group = "WeaponTreeDexterityAndNoInherentBonusFromDexterity", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeDexterityAndNoInherentBonusFromDexterity2"] = { type = "Spawn", tier = 2, "+80 to Dexterity", "Gain no inherent bonuses from Dexterity", statOrder = { 1063, 1892 }, level = 1, group = "WeaponTreeDexterityAndNoInherentBonusFromDexterity", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeDexterityAndNoInherentBonusFromDexterity2h1"] = { type = "Spawn", tier = 1, "+90 to Dexterity", "Gain no inherent bonuses from Dexterity", statOrder = { 1063, 1892 }, level = 1, group = "WeaponTreeDexterityAndNoInherentBonusFromDexterity", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 200, 500, 0 }, modTags = { }, }, - ["WeaponTreeDexterityAndNoInherentBonusFromDexterity2h2"] = { type = "Spawn", tier = 2, "+120 to Dexterity", "Gain no inherent bonuses from Dexterity", statOrder = { 1063, 1892 }, level = 1, group = "WeaponTreeDexterityAndNoInherentBonusFromDexterity", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 200, 500, 0 }, modTags = { }, }, - ["WeaponTreeIntelligenceAndNoInherentBonusFromIntelligence1"] = { type = "Spawn", tier = 1, "+60 to Intelligence", "Gain no inherent bonuses from Intelligence", statOrder = { 1064, 1893 }, level = 1, group = "WeaponTreeIntelligenceAndNoInherentBonusFromIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "shield", "default", }, weightVal = { 200, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeIntelligenceAndNoInherentBonusFromIntelligence2"] = { type = "Spawn", tier = 2, "+80 to Intelligence", "Gain no inherent bonuses from Intelligence", statOrder = { 1064, 1893 }, level = 1, group = "WeaponTreeIntelligenceAndNoInherentBonusFromIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "shield", "default", }, weightVal = { 200, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeIntelligenceAndNoInherentBonusFromIntelligence2h1"] = { type = "Spawn", tier = 1, "+90 to Intelligence", "Gain no inherent bonuses from Intelligence", statOrder = { 1064, 1893 }, level = 1, group = "WeaponTreeIntelligenceAndNoInherentBonusFromIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeIntelligenceAndNoInherentBonusFromIntelligence2h2"] = { type = "Spawn", tier = 2, "+120 to Intelligence", "Gain no inherent bonuses from Intelligence", statOrder = { 1064, 1893 }, level = 1, group = "WeaponTreeIntelligenceAndNoInherentBonusFromIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeStrengthAndNoInherentBonusFromStrength1"] = { type = "Spawn", tier = 1, "+60 to Strength", "Gain no inherent bonuses from Strength", statOrder = { 1062, 1894 }, level = 1, group = "WeaponTreeStrengthAndNoInherentBonusFromStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "mace", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 200, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeStrengthAndNoInherentBonusFromStrength2"] = { type = "Spawn", tier = 2, "+80 to Strength", "Gain no inherent bonuses from Strength", statOrder = { 1062, 1894 }, level = 1, group = "WeaponTreeStrengthAndNoInherentBonusFromStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "mace", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 200, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeStrengthAndNoInherentBonusFromStrength2h1"] = { type = "Spawn", tier = 1, "+90 to Strength", "Gain no inherent bonuses from Strength", statOrder = { 1062, 1894 }, level = 1, group = "WeaponTreeStrengthAndNoInherentBonusFromStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "mace", "two_hand_weapon", "default", }, weightVal = { 0, 200, 500, 0 }, modTags = { }, }, - ["WeaponTreeStrengthAndNoInherentBonusFromStrength2h2"] = { type = "Spawn", tier = 2, "+120 to Strength", "Gain no inherent bonuses from Strength", statOrder = { 1062, 1894 }, level = 1, group = "WeaponTreeStrengthAndNoInherentBonusFromStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "mace", "two_hand_weapon", "default", }, weightVal = { 0, 200, 500, 0 }, modTags = { }, }, - ["WeaponTreePercentDexterityAndIntelligence1"] = { type = "Spawn", tier = 1, "4% increased Dexterity", "4% increased Intelligence", statOrder = { 1070, 1071 }, level = 1, group = "WeaponTreePercentDexterityAndIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["WeaponTreePercentDexterityAndIntelligence2"] = { type = "Spawn", tier = 2, "6% increased Dexterity", "6% increased Intelligence", statOrder = { 1070, 1071 }, level = 1, group = "WeaponTreePercentDexterityAndIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["WeaponTreePercentDexterityAndIntelligence2h1"] = { type = "Spawn", tier = 1, "6% increased Dexterity", "6% increased Intelligence", statOrder = { 1070, 1071 }, level = 1, group = "WeaponTreePercentDexterityAndIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreePercentDexterityAndIntelligence2h2"] = { type = "Spawn", tier = 2, "10% increased Dexterity", "10% increased Intelligence", statOrder = { 1070, 1071 }, level = 1, group = "WeaponTreePercentDexterityAndIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreePercentDexterityAndStrength1"] = { type = "Spawn", tier = 1, "4% increased Strength", "4% increased Dexterity", statOrder = { 1069, 1070 }, level = 1, group = "WeaponTreePercentDexterityAndStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["WeaponTreePercentDexterityAndStrength2"] = { type = "Spawn", tier = 2, "6% increased Strength", "6% increased Dexterity", statOrder = { 1069, 1070 }, level = 1, group = "WeaponTreePercentDexterityAndStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["WeaponTreePercentDexterityAndStrength2h1"] = { type = "Spawn", tier = 1, "6% increased Strength", "6% increased Dexterity", statOrder = { 1069, 1070 }, level = 1, group = "WeaponTreePercentDexterityAndStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreePercentDexterityAndStrength2h2"] = { type = "Spawn", tier = 2, "10% increased Strength", "10% increased Dexterity", statOrder = { 1069, 1070 }, level = 1, group = "WeaponTreePercentDexterityAndStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreePercentStrengthAndIntelligence1"] = { type = "Spawn", tier = 1, "4% increased Strength", "4% increased Intelligence", statOrder = { 1069, 1071 }, level = 1, group = "WeaponTreePercentStrengthAndIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["WeaponTreePercentStrengthAndIntelligence2"] = { type = "Spawn", tier = 2, "6% increased Strength", "6% increased Intelligence", statOrder = { 1069, 1071 }, level = 1, group = "WeaponTreePercentStrengthAndIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["WeaponTreePercentStrengthAndIntelligence2h1"] = { type = "Spawn", tier = 1, "6% increased Strength", "6% increased Intelligence", statOrder = { 1069, 1071 }, level = 1, group = "WeaponTreePercentStrengthAndIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreePercentStrengthAndIntelligence2h2"] = { type = "Spawn", tier = 2, "10% increased Strength", "10% increased Intelligence", statOrder = { 1069, 1071 }, level = 1, group = "WeaponTreePercentStrengthAndIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeMovementSpeedIfLowDexterity1"] = { type = "Spawn", tier = 1, "8% increased Movement Speed if Dexterity is below 100", statOrder = { 8933 }, level = 1, group = "WeaponTreeMovementSpeedIfLowDexterity", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeMovementSpeedIfLowDexterity2"] = { type = "Spawn", tier = 2, "12% increased Movement Speed if Dexterity is below 100", statOrder = { 8933 }, level = 1, group = "WeaponTreeMovementSpeedIfLowDexterity", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeMovementSpeedIfLowDexterity2h1"] = { type = "Spawn", tier = 1, "14% increased Movement Speed if Dexterity is below 100", statOrder = { 8933 }, level = 1, group = "WeaponTreeMovementSpeedIfLowDexterity", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 200, 500, 0 }, modTags = { }, }, - ["WeaponTreeMovementSpeedIfLowDexterity2h2"] = { type = "Spawn", tier = 2, "20% increased Movement Speed if Dexterity is below 100", statOrder = { 8933 }, level = 1, group = "WeaponTreeMovementSpeedIfLowDexterity", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 200, 500, 0 }, modTags = { }, }, - ["WeaponTreeAreaOfEffectIfLowIntelligence1"] = { type = "Spawn", tier = 1, "14% increased Area of Effect if Intelligence is below 100", statOrder = { 4549 }, level = 1, group = "WeaponTreeAreaOfEffectIfLowIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "shield", "default", }, weightVal = { 200, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeAreaOfEffectIfLowIntelligence2"] = { type = "Spawn", tier = 2, "20% increased Area of Effect if Intelligence is below 100", statOrder = { 4549 }, level = 1, group = "WeaponTreeAreaOfEffectIfLowIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "shield", "default", }, weightVal = { 200, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeAreaOfEffectIfLowIntelligence2h1"] = { type = "Spawn", tier = 1, "24% increased Area of Effect if Intelligence is below 100", statOrder = { 4549 }, level = 1, group = "WeaponTreeAreaOfEffectIfLowIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeAreaOfEffectIfLowIntelligence2h2"] = { type = "Spawn", tier = 2, "32% increased Area of Effect if Intelligence is below 100", statOrder = { 4549 }, level = 1, group = "WeaponTreeAreaOfEffectIfLowIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeDoubleDamageChanceIfLowStrength1"] = { type = "Spawn", tier = 1, "6% chance to deal Double Damage if Strength is below 100", statOrder = { 5954 }, level = 1, group = "WeaponTreeDoubleDamageChanceIfLowStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "mace", "one_hand_weapon", "shield", "default", }, weightVal = { 200, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeDoubleDamageChanceIfLowStrength2"] = { type = "Spawn", tier = 2, "10% chance to deal Double Damage if Strength is below 100", statOrder = { 5954 }, level = 1, group = "WeaponTreeDoubleDamageChanceIfLowStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "mace", "one_hand_weapon", "shield", "default", }, weightVal = { 200, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeDoubleDamageChanceIfLowStrength2h1"] = { type = "Spawn", tier = 1, "12% chance to deal Double Damage if Strength is below 100", statOrder = { 5954 }, level = 1, group = "WeaponTreeDoubleDamageChanceIfLowStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "mace", "two_hand_weapon", "default", }, weightVal = { 200, 500, 0 }, modTags = { }, }, - ["WeaponTreeDoubleDamageChanceIfLowStrength2h2"] = { type = "Spawn", tier = 2, "16% chance to deal Double Damage if Strength is below 100", statOrder = { 5954 }, level = 1, group = "WeaponTreeDoubleDamageChanceIfLowStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "mace", "two_hand_weapon", "default", }, weightVal = { 200, 500, 0 }, modTags = { }, }, + ["WeaponTreeIntelliegenceGemLevel"] = { type = "Spawn", tier = 1, "+1 to Level of Socketed Intelligence Gems", statOrder = { 141 }, level = 45, group = "WeaponTreeLocalIncreaseSocketedIntelligenceGemLevel", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 500, 250, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedColdPerDex"] = { type = "MergeOnly", tier = 1, "Adds 1 to 3 Cold Damage to Attacks with this Weapon per 10 Dexterity", statOrder = { 4821 }, level = 60, group = "WeaponTreeAddedColdDamagePerDexterity", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 0, 500, 500, 500, 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeAddedColdPerDex2h"] = { type = "MergeOnly", tier = 1, "Adds 2 to 4 Cold Damage to Attacks with this Weapon per 10 Dexterity", statOrder = { 4821 }, level = 60, group = "WeaponTreeAddedColdDamagePerDexterity", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 0, 500, 500, 500, 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeAddedFirePerStr"] = { type = "MergeOnly", tier = 1, "Adds 1 to 3 Fire Damage to Attacks with this Weapon per 10 Strength", statOrder = { 4766 }, level = 60, group = "WeaponTreeAddedFireDamagePerStrength", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 0, 500, 500, 1000, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeAddedFirePerStr2h"] = { type = "MergeOnly", tier = 1, "Adds 2 to 4 Fire Damage to Attacks with this Weapon per 10 Strength", statOrder = { 4766 }, level = 60, group = "WeaponTreeAddedFireDamagePerStrength", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 0, 500, 500, 1000, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeAddedLightningPerInt"] = { type = "MergeOnly", tier = 1, "Adds 1 to 3 Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrder = { 4769 }, level = 60, group = "WeaponTreeAddedLightningDamagePerIntelligence", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 0, 1000, 500, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeAddedLightningPerInt2h"] = { type = "MergeOnly", tier = 1, "Adds 1 to 5 Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrder = { 4769 }, level = 60, group = "WeaponTreeAddedLightningDamagePerIntelligence", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 0, 1000, 500, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeAddedChaosPerLowestAttribute"] = { type = "MergeOnly", tier = 1, "Adds 2 to 4 Chaos Damage to Attacks with this Weapon per 10 of your lowest Attribute", statOrder = { 4820 }, level = 60, group = "WeaponTreeLocalAddedChaosDamagePerLowestAttribute", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAddedChaosPerLowestAttribute2h"] = { type = "MergeOnly", tier = 1, "Adds 3 to 5 Chaos Damage to Attacks with this Weapon per 10 of your lowest Attribute", statOrder = { 4820 }, level = 60, group = "WeaponTreeLocalAddedChaosDamagePerLowestAttribute", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeGlobalDamageHighIncreasedSkillCost1"] = { type = "Spawn", tier = 1, "20% increased Global Damage", "10% increased Cost of Skills", statOrder = { 1104, 1792 }, level = 1, group = "WeaponTreeIncreasedDamageAndSkillCost", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "attack_dagger", "mace", "axe", "sword", "claw", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeGlobalDamageHighIncreasedSkillCost2"] = { type = "Spawn", tier = 2, "30% increased Global Damage", "10% increased Cost of Skills", statOrder = { 1104, 1792 }, level = 45, group = "WeaponTreeIncreasedDamageAndSkillCost", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "attack_dagger", "mace", "axe", "sword", "claw", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeGlobalDamageHighIncreasedSkillCost3"] = { type = "Spawn", tier = 3, "40% increased Global Damage", "10% increased Cost of Skills", statOrder = { 1104, 1792 }, level = 75, group = "WeaponTreeIncreasedDamageAndSkillCost", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "attack_dagger", "mace", "axe", "sword", "claw", "default", }, weightVal = { 0, 250, 250, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeGlobalDamage2hHighIncreasedSkillCost1"] = { type = "Spawn", tier = 1, "40% increased Global Damage", "20% increased Cost of Skills", statOrder = { 1104, 1792 }, level = 1, group = "WeaponTreeIncreasedDamageAndSkillCost", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "attack_staff", "mace", "axe", "sword", "bow", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeGlobalDamage2hHighIncreasedSkillCost2"] = { type = "Spawn", tier = 2, "50% increased Global Damage", "20% increased Cost of Skills", statOrder = { 1104, 1792 }, level = 45, group = "WeaponTreeIncreasedDamageAndSkillCost", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "attack_staff", "mace", "axe", "sword", "bow", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeGlobalDamage2hHighIncreasedSkillCost3"] = { type = "Spawn", tier = 3, "60% increased Global Damage", "20% increased Cost of Skills", statOrder = { 1104, 1792 }, level = 75, group = "WeaponTreeIncreasedDamageAndSkillCost", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "attack_staff", "mace", "axe", "sword", "bow", "default", }, weightVal = { 0, 250, 250, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeGlobalDamage1"] = { type = "Spawn", tier = 1, "15% increased Global Damage", statOrder = { 1104 }, level = 1, group = "WeaponTreeAllDamageOnWeapon", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "attack_dagger", "mace", "axe", "sword", "claw", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeGlobalDamage2"] = { type = "Spawn", tier = 2, "20% increased Global Damage", statOrder = { 1104 }, level = 45, group = "WeaponTreeAllDamageOnWeapon", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "attack_dagger", "mace", "axe", "sword", "claw", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeGlobalDamage3"] = { type = "Spawn", tier = 3, "25% increased Global Damage", statOrder = { 1104 }, level = 75, group = "WeaponTreeAllDamageOnWeapon", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "attack_dagger", "mace", "axe", "sword", "claw", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeGlobalDamage2h1"] = { type = "Spawn", tier = 1, "20% increased Global Damage", statOrder = { 1104 }, level = 1, group = "WeaponTreeAllDamageOnWeapon", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "attack_staff", "mace", "axe", "sword", "bow", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeGlobalDamage2h2"] = { type = "Spawn", tier = 2, "30% increased Global Damage", statOrder = { 1104 }, level = 45, group = "WeaponTreeAllDamageOnWeapon", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "attack_staff", "mace", "axe", "sword", "bow", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeGlobalDamage2h3"] = { type = "Spawn", tier = 3, "40% increased Global Damage", statOrder = { 1104 }, level = 75, group = "WeaponTreeAllDamageOnWeapon", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "attack_staff", "mace", "axe", "sword", "bow", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeGlobalDamageLowIncreasedAttributes1"] = { type = "Spawn", tier = 1, "4% increased Attributes", "8% increased Global Damage", statOrder = { 1095, 1104 }, level = 1, group = "WeaponTreeIncreasedDamageAndIncreasedAttributes", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "attack_dagger", "mace", "axe", "sword", "claw", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeGlobalDamageLowIncreasedAttributes2"] = { type = "Spawn", tier = 2, "4% increased Attributes", "12% increased Global Damage", statOrder = { 1095, 1104 }, level = 45, group = "WeaponTreeIncreasedDamageAndIncreasedAttributes", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "attack_dagger", "mace", "axe", "sword", "claw", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeGlobalDamageLowIncreasedAttributes3"] = { type = "Spawn", tier = 3, "4% increased Attributes", "16% increased Global Damage", statOrder = { 1095, 1104 }, level = 75, group = "WeaponTreeIncreasedDamageAndIncreasedAttributes", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "two_hand_weapon", "attack_dagger", "mace", "axe", "sword", "claw", "default", }, weightVal = { 0, 250, 250, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeGlobalDamage2hLowIncreasedAttributes1"] = { type = "Spawn", tier = 1, "6% increased Attributes", "15% increased Global Damage", statOrder = { 1095, 1104 }, level = 1, group = "WeaponTreeIncreasedDamageAndIncreasedAttributes", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "attack_staff", "mace", "axe", "sword", "bow", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeGlobalDamage2hLowIncreasedAttributes2"] = { type = "Spawn", tier = 2, "6% increased Attributes", "20% increased Global Damage", statOrder = { 1095, 1104 }, level = 45, group = "WeaponTreeIncreasedDamageAndIncreasedAttributes", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "attack_staff", "mace", "axe", "sword", "bow", "default", }, weightVal = { 0, 500, 500, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeGlobalDamage2hLowIncreasedAttributes3"] = { type = "Spawn", tier = 3, "6% increased Attributes", "25% increased Global Damage", statOrder = { 1095, 1104 }, level = 75, group = "WeaponTreeIncreasedDamageAndIncreasedAttributes", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "one_hand_weapon", "attack_staff", "mace", "axe", "sword", "bow", "default", }, weightVal = { 0, 250, 250, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeIncreasedLife1"] = { type = "Spawn", tier = 1, "+30 to maximum Life", statOrder = { 1480 }, level = 1, group = "WeaponTreeIncreasedLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeIncreasedLife2"] = { type = "Spawn", tier = 2, "+35 to maximum Life", statOrder = { 1480 }, level = 21, group = "WeaponTreeIncreasedLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeIncreasedLife3"] = { type = "Spawn", tier = 3, "+40 to maximum Life", statOrder = { 1480 }, level = 46, group = "WeaponTreeIncreasedLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeIncreasedLife4"] = { type = "Spawn", tier = 4, "+45 to maximum Life", statOrder = { 1480 }, level = 65, group = "WeaponTreeIncreasedLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeIncreasedLife5"] = { type = "Spawn", tier = 5, "+50 to maximum Life", statOrder = { 1480 }, level = 77, group = "WeaponTreeIncreasedLife", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeIncreasedLifeReducedDamage1"] = { type = "Spawn", tier = 1, "20% reduced Damage", "+60 to maximum Life", statOrder = { 1103, 1480 }, level = 15, group = "WeaponTreeIncreasedLifeReducedDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeIncreasedLifeReducedDamage2"] = { type = "Spawn", tier = 2, "20% reduced Damage", "+75 to maximum Life", statOrder = { 1103, 1480 }, level = 45, group = "WeaponTreeIncreasedLifeReducedDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeIncreasedLifeReducedDamage3"] = { type = "Spawn", tier = 3, "20% reduced Damage", "+80 to maximum Life", statOrder = { 1103, 1480 }, level = 70, group = "WeaponTreeIncreasedLifeReducedDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeIncreasedLifeReducedAllResistance1"] = { type = "Spawn", tier = 1, "+60 to maximum Life", "-5% to all Elemental Resistances", statOrder = { 1480, 1530 }, level = 15, group = "WeaponTreeIncreasedLifeReducedAllResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeIncreasedLifeReducedAllResistance2"] = { type = "Spawn", tier = 2, "+75 to maximum Life", "-5% to all Elemental Resistances", statOrder = { 1480, 1530 }, level = 45, group = "WeaponTreeIncreasedLifeReducedAllResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeIncreasedLifeReducedAllResistance3"] = { type = "Spawn", tier = 3, "+80 to maximum Life", "-5% to all Elemental Resistances", statOrder = { 1480, 1530 }, level = 70, group = "WeaponTreeIncreasedLifeReducedAllResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeIncreasedLifeReducedLocalDefences1"] = { type = "Spawn", tier = 1, "50% reduced Armour, Evasion and Energy Shield", "+60 to maximum Life", statOrder = { 1466, 1480 }, level = 15, group = "WeaponTreeIncreasedLifeReducedLocalDefences", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeIncreasedLifeReducedLocalDefences2"] = { type = "Spawn", tier = 2, "50% reduced Armour, Evasion and Energy Shield", "+75 to maximum Life", statOrder = { 1466, 1480 }, level = 45, group = "WeaponTreeIncreasedLifeReducedLocalDefences", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeIncreasedLifeReducedLocalDefences3"] = { type = "Spawn", tier = 3, "50% reduced Armour, Evasion and Energy Shield", "+80 to maximum Life", statOrder = { 1466, 1480 }, level = 70, group = "WeaponTreeIncreasedLifeReducedLocalDefences", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeIncreasedLifeAndLifeRegen1"] = { type = "Spawn", tier = 1, "+15 to maximum Life", "Regenerate 0.4% of Life per second", statOrder = { 1480, 1853 }, level = 1, group = "WeaponTreeIncreasedLifeAndLifeRegen", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeIncreasedLifeAndLifeRegen2"] = { type = "Spawn", tier = 2, "+20 to maximum Life", "Regenerate 0.4% of Life per second", statOrder = { 1480, 1853 }, level = 40, group = "WeaponTreeIncreasedLifeAndLifeRegen", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeIncreasedLifeAndLifeRegen3"] = { type = "Spawn", tier = 3, "+25 to maximum Life", "Regenerate 0.4% of Life per second", statOrder = { 1480, 1853 }, level = 65, group = "WeaponTreeIncreasedLifeAndLifeRegen", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeIncreasedLifeAndStunThreshold1"] = { type = "Spawn", tier = 1, "+15 to maximum Life", "20% increased Stun Threshold", statOrder = { 1480, 3180 }, level = 1, group = "WeaponTreeIncreasedLifeAndStunThreshold", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeIncreasedLifeAndStunThreshold2"] = { type = "Spawn", tier = 2, "+20 to maximum Life", "20% increased Stun Threshold", statOrder = { 1480, 3180 }, level = 40, group = "WeaponTreeIncreasedLifeAndStunThreshold", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeIncreasedLifeAndStunThreshold3"] = { type = "Spawn", tier = 3, "+25 to maximum Life", "20% increased Stun Threshold", statOrder = { 1480, 3180 }, level = 65, group = "WeaponTreeIncreasedLifeAndStunThreshold", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeIncreasedLifeAndLifeOnKill1"] = { type = "Spawn", tier = 1, "+15 to maximum Life", "Recover 1% of Life on Kill", statOrder = { 1480, 1660 }, level = 1, group = "WeaponTreeIncreasedLifeAndLifeOnKill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeIncreasedLifeAndLifeOnKill2"] = { type = "Spawn", tier = 2, "+20 to maximum Life", "Recover 1% of Life on Kill", statOrder = { 1480, 1660 }, level = 40, group = "WeaponTreeIncreasedLifeAndLifeOnKill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeIncreasedLifeAndLifeOnKill3"] = { type = "Spawn", tier = 3, "+25 to maximum Life", "Recover 1% of Life on Kill", statOrder = { 1480, 1660 }, level = 65, group = "WeaponTreeIncreasedLifeAndLifeOnKill", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalArmour1"] = { type = "Spawn", tier = 1, "+20 to Armour", statOrder = { 1451 }, level = 1, group = "WeaponTreeLocalPhysicalDamageReductionRating", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { }, }, + ["WeaponTreeLocalArmour2"] = { type = "Spawn", tier = 2, "+35 to Armour", statOrder = { 1451 }, level = 24, group = "WeaponTreeLocalPhysicalDamageReductionRating", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { }, }, + ["WeaponTreeLocalArmour3"] = { type = "Spawn", tier = 3, "+50 to Armour", statOrder = { 1451 }, level = 50, group = "WeaponTreeLocalPhysicalDamageReductionRating", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { }, }, + ["WeaponTreeLocalArmour4"] = { type = "Spawn", tier = 4, "+65 to Armour", statOrder = { 1451 }, level = 68, group = "WeaponTreeLocalPhysicalDamageReductionRating", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { }, }, + ["WeaponTreeLocalArmour5"] = { type = "Spawn", tier = 5, "+80 to Armour", statOrder = { 1451 }, level = 82, group = "WeaponTreeLocalPhysicalDamageReductionRating", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalArmourIncreasedDamageOverTimeTaken1"] = { type = "Spawn", tier = 1, "+100 to Armour", "10% increased Damage taken from Damage Over Time", statOrder = { 1451, 2154 }, level = 20, group = "WeaponTreeLocalArmourIncreasedDamageOverTimeTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalArmourIncreasedDamageOverTimeTaken2"] = { type = "Spawn", tier = 2, "+125 to Armour", "10% increased Damage taken from Damage Over Time", statOrder = { 1451, 2154 }, level = 55, group = "WeaponTreeLocalArmourIncreasedDamageOverTimeTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalArmourIncreasedDamageOverTimeTaken3"] = { type = "Spawn", tier = 3, "+150 to Armour", "10% increased Damage taken from Damage Over Time", statOrder = { 1451, 2154 }, level = 83, group = "WeaponTreeLocalArmourIncreasedDamageOverTimeTaken", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalArmourIncreasedDamageFromCriticalStrikes1"] = { type = "Spawn", tier = 1, "You take 20% increased Extra Damage from Critical Strikes", "+100 to Armour", statOrder = { 1423, 1451 }, level = 20, group = "WeaponTreeLocalArmourIncreasedDamageFromCriticalStrikes", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalArmourIncreasedDamageFromCriticalStrikes2"] = { type = "Spawn", tier = 2, "You take 20% increased Extra Damage from Critical Strikes", "+125 to Armour", statOrder = { 1423, 1451 }, level = 55, group = "WeaponTreeLocalArmourIncreasedDamageFromCriticalStrikes", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalArmourIncreasedDamageFromCriticalStrikes3"] = { type = "Spawn", tier = 3, "You take 20% increased Extra Damage from Critical Strikes", "+150 to Armour", statOrder = { 1423, 1451 }, level = 83, group = "WeaponTreeLocalArmourIncreasedDamageFromCriticalStrikes", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalArmourIncreasedStrength1"] = { type = "Spawn", tier = 1, "5% increased Strength", "+20 to Armour", statOrder = { 1096, 1451 }, level = 1, group = "WeaponTreeLocalArmourIncreasedStrength", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalArmourIncreasedStrength2"] = { type = "Spawn", tier = 2, "5% increased Strength", "+30 to Armour", statOrder = { 1096, 1451 }, level = 40, group = "WeaponTreeLocalArmourIncreasedStrength", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalArmourIncreasedStrength3"] = { type = "Spawn", tier = 3, "5% increased Strength", "+40 to Armour", statOrder = { 1096, 1451 }, level = 65, group = "WeaponTreeLocalArmourIncreasedStrength", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalArmourImplicitEffect1"] = { type = "Spawn", tier = 1, "50% increased Implicit Modifier magnitudes", "+20 to Armour", statOrder = { 40, 1451 }, level = 1, group = "WeaponTreeLocalArmourImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalArmourImplicitEffect2"] = { type = "Spawn", tier = 2, "50% increased Implicit Modifier magnitudes", "+30 to Armour", statOrder = { 40, 1451 }, level = 40, group = "WeaponTreeLocalArmourImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalArmourImplicitEffect3"] = { type = "Spawn", tier = 3, "50% increased Implicit Modifier magnitudes", "+40 to Armour", statOrder = { 40, 1451 }, level = 65, group = "WeaponTreeLocalArmourImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalArmourLocalBlock1"] = { type = "Spawn", tier = 1, "+20 to Armour", "+2% Chance to Block", statOrder = { 1451, 2158 }, level = 1, group = "WeaponTreeLocalArmourLocalBlock", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "crucible_unique_helmet", "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalArmourLocalBlock2"] = { type = "Spawn", tier = 2, "+30 to Armour", "+2% Chance to Block", statOrder = { 1451, 2158 }, level = 40, group = "WeaponTreeLocalArmourLocalBlock", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "crucible_unique_helmet", "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalArmourLocalBlock3"] = { type = "Spawn", tier = 3, "+40 to Armour", "+2% Chance to Block", statOrder = { 1451, 2158 }, level = 65, group = "WeaponTreeLocalArmourLocalBlock", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "crucible_unique_helmet", "int_armour", "dex_armour", "dex_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalEvasion1"] = { type = "Spawn", tier = 1, "+20 to Evasion Rating", statOrder = { 1459 }, level = 1, group = "WeaponTreeLocalEvasionRating", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { }, }, + ["WeaponTreeLocalEvasion2"] = { type = "Spawn", tier = 2, "+35 to Evasion Rating", statOrder = { 1459 }, level = 24, group = "WeaponTreeLocalEvasionRating", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { }, }, + ["WeaponTreeLocalEvasion3"] = { type = "Spawn", tier = 3, "+50 to Evasion Rating", statOrder = { 1459 }, level = 50, group = "WeaponTreeLocalEvasionRating", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { }, }, + ["WeaponTreeLocalEvasion4"] = { type = "Spawn", tier = 4, "+65 to Evasion Rating", statOrder = { 1459 }, level = 68, group = "WeaponTreeLocalEvasionRating", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { }, }, + ["WeaponTreeLocalEvasion5"] = { type = "Spawn", tier = 5, "+80 to Evasion Rating", statOrder = { 1459 }, level = 82, group = "WeaponTreeLocalEvasionRating", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalEvasionRatingIncreasedAilmentDurationOnSelf1"] = { type = "Spawn", tier = 1, "+100 to Evasion Rating", "20% increased Duration of Ailments on You", statOrder = { 1459, 4879 }, level = 20, group = "WeaponTreeLocalEvasionRatingIncreasedAilmentDurationOnSelf", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalEvasionRatingIncreasedAilmentDurationOnSelf2"] = { type = "Spawn", tier = 2, "+125 to Evasion Rating", "20% increased Duration of Ailments on You", statOrder = { 1459, 4879 }, level = 55, group = "WeaponTreeLocalEvasionRatingIncreasedAilmentDurationOnSelf", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalEvasionRatingIncreasedAilmentDurationOnSelf3"] = { type = "Spawn", tier = 3, "+150 to Evasion Rating", "20% increased Duration of Ailments on You", statOrder = { 1459, 4879 }, level = 83, group = "WeaponTreeLocalEvasionRatingIncreasedAilmentDurationOnSelf", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalEvasionRatingReducedStunRecovery1"] = { type = "Spawn", tier = 1, "+100 to Evasion Rating", "25% reduced Stun and Block Recovery", statOrder = { 1459, 1811 }, level = 20, group = "WeaponTreeLocalEvasionRatingReducedStunRecovery", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalEvasionRatingReducedStunRecovery2"] = { type = "Spawn", tier = 2, "+125 to Evasion Rating", "25% reduced Stun and Block Recovery", statOrder = { 1459, 1811 }, level = 55, group = "WeaponTreeLocalEvasionRatingReducedStunRecovery", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalEvasionRatingReducedStunRecovery3"] = { type = "Spawn", tier = 3, "+150 to Evasion Rating", "25% reduced Stun and Block Recovery", statOrder = { 1459, 1811 }, level = 83, group = "WeaponTreeLocalEvasionRatingReducedStunRecovery", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalEvasionRatingIncreasedDexterity1"] = { type = "Spawn", tier = 1, "5% increased Dexterity", "+20 to Evasion Rating", statOrder = { 1097, 1459 }, level = 1, group = "WeaponTreeLocalEvasionRatingIncreasedDexterity", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalEvasionRatingIncreasedDexterity2"] = { type = "Spawn", tier = 2, "5% increased Dexterity", "+30 to Evasion Rating", statOrder = { 1097, 1459 }, level = 40, group = "WeaponTreeLocalEvasionRatingIncreasedDexterity", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalEvasionRatingIncreasedDexterity3"] = { type = "Spawn", tier = 3, "5% increased Dexterity", "+40 to Evasion Rating", statOrder = { 1097, 1459 }, level = 65, group = "WeaponTreeLocalEvasionRatingIncreasedDexterity", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalEvasionRatingImplicitEffect1"] = { type = "Spawn", tier = 1, "50% increased Implicit Modifier magnitudes", "+20 to Evasion Rating", statOrder = { 40, 1459 }, level = 1, group = "WeaponTreeLocalEvasionRatingImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalEvasionRatingImplicitEffect2"] = { type = "Spawn", tier = 2, "50% increased Implicit Modifier magnitudes", "+30 to Evasion Rating", statOrder = { 40, 1459 }, level = 40, group = "WeaponTreeLocalEvasionRatingImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalEvasionRatingImplicitEffect3"] = { type = "Spawn", tier = 3, "50% increased Implicit Modifier magnitudes", "+40 to Evasion Rating", statOrder = { 40, 1459 }, level = 65, group = "WeaponTreeLocalEvasionRatingImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalEvasionRatingSuppression1"] = { type = "Spawn", tier = 1, "+4% chance to Suppress Spell Damage", "+20 to Evasion Rating", statOrder = { 1056, 1459 }, level = 1, group = "WeaponTreeLocalEvasionRatingSuppression", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalEvasionRatingSuppression2"] = { type = "Spawn", tier = 2, "+4% chance to Suppress Spell Damage", "+30 to Evasion Rating", statOrder = { 1056, 1459 }, level = 40, group = "WeaponTreeLocalEvasionRatingSuppression", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalEvasionRatingSuppression3"] = { type = "Spawn", tier = 3, "+4% chance to Suppress Spell Damage", "+40 to Evasion Rating", statOrder = { 1056, 1459 }, level = 65, group = "WeaponTreeLocalEvasionRatingSuppression", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "int_armour", "str_int_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalEnergyShield1"] = { type = "Spawn", tier = 1, "+5 to maximum Energy Shield", statOrder = { 1470 }, level = 1, group = "WeaponTreeLocalEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { }, }, + ["WeaponTreeLocalEnergyShield2"] = { type = "Spawn", tier = 2, "+10 to maximum Energy Shield", statOrder = { 1470 }, level = 24, group = "WeaponTreeLocalEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { }, }, + ["WeaponTreeLocalEnergyShield3"] = { type = "Spawn", tier = 3, "+15 to maximum Energy Shield", statOrder = { 1470 }, level = 50, group = "WeaponTreeLocalEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { }, }, + ["WeaponTreeLocalEnergyShield4"] = { type = "Spawn", tier = 4, "+20 to maximum Energy Shield", statOrder = { 1470 }, level = 68, group = "WeaponTreeLocalEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { }, }, + ["WeaponTreeLocalEnergyShield5"] = { type = "Spawn", tier = 5, "+25 to maximum Energy Shield", statOrder = { 1470 }, level = 82, group = "WeaponTreeLocalEnergyShield", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalEnergyShieldReducedRechargeRate1"] = { type = "Spawn", tier = 1, "+28 to maximum Energy Shield", "25% reduced Energy Shield Recharge Rate", statOrder = { 1470, 1476 }, level = 20, group = "WeaponTreeLocalEnergyShieldReducedRechargeRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalEnergyShieldReducedRechargeRate2"] = { type = "Spawn", tier = 2, "+34 to maximum Energy Shield", "25% reduced Energy Shield Recharge Rate", statOrder = { 1470, 1476 }, level = 55, group = "WeaponTreeLocalEnergyShieldReducedRechargeRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalEnergyShieldReducedRechargeRate3"] = { type = "Spawn", tier = 3, "+40 to maximum Energy Shield", "25% reduced Energy Shield Recharge Rate", statOrder = { 1470, 1476 }, level = 83, group = "WeaponTreeLocalEnergyShieldReducedRechargeRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalEnergyShieldReducedManaRegeneration1"] = { type = "Spawn", tier = 1, "+28 to maximum Energy Shield", "25% reduced Mana Regeneration Rate", statOrder = { 1470, 1495 }, level = 20, group = "WeaponTreeLocalEnergyShieldReducedManaRegeneration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalEnergyShieldReducedManaRegeneration2"] = { type = "Spawn", tier = 2, "+34 to maximum Energy Shield", "25% reduced Mana Regeneration Rate", statOrder = { 1470, 1495 }, level = 55, group = "WeaponTreeLocalEnergyShieldReducedManaRegeneration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalEnergyShieldReducedManaRegeneration3"] = { type = "Spawn", tier = 3, "+40 to maximum Energy Shield", "25% reduced Mana Regeneration Rate", statOrder = { 1470, 1495 }, level = 83, group = "WeaponTreeLocalEnergyShieldReducedManaRegeneration", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalEnergyShieldIncreasedIntelligence1"] = { type = "Spawn", tier = 1, "5% increased Intelligence", "+9 to maximum Energy Shield", statOrder = { 1098, 1470 }, level = 1, group = "WeaponTreeLocalEnergyShieldIncreasedIntelligence", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalEnergyShieldIncreasedIntelligence2"] = { type = "Spawn", tier = 2, "5% increased Intelligence", "+12 to maximum Energy Shield", statOrder = { 1098, 1470 }, level = 40, group = "WeaponTreeLocalEnergyShieldIncreasedIntelligence", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalEnergyShieldIncreasedIntelligence3"] = { type = "Spawn", tier = 3, "5% increased Intelligence", "+15 to maximum Energy Shield", statOrder = { 1098, 1470 }, level = 65, group = "WeaponTreeLocalEnergyShieldIncreasedIntelligence", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalEnergyShieldImplicitEffect1"] = { type = "Spawn", tier = 1, "50% increased Implicit Modifier magnitudes", "+9 to maximum Energy Shield", statOrder = { 40, 1470 }, level = 1, group = "WeaponTreeLocalEnergyShieldImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalEnergyShieldImplicitEffect2"] = { type = "Spawn", tier = 2, "50% increased Implicit Modifier magnitudes", "+12 to maximum Energy Shield", statOrder = { 40, 1470 }, level = 40, group = "WeaponTreeLocalEnergyShieldImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalEnergyShieldImplicitEffect3"] = { type = "Spawn", tier = 3, "50% increased Implicit Modifier magnitudes", "+15 to maximum Energy Shield", statOrder = { 40, 1470 }, level = 65, group = "WeaponTreeLocalEnergyShieldImplicitEffect", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalEnergyShieldAndMana1"] = { type = "Spawn", tier = 1, "+9 to maximum Energy Shield", "8% increased maximum Mana", statOrder = { 1470, 1491 }, level = 1, group = "WeaponTreeLocalEnergyShieldAndMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalEnergyShieldAndMana2"] = { type = "Spawn", tier = 2, "+12 to maximum Energy Shield", "8% increased maximum Mana", statOrder = { 1470, 1491 }, level = 40, group = "WeaponTreeLocalEnergyShieldAndMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalEnergyShieldAndMana3"] = { type = "Spawn", tier = 3, "+15 to maximum Energy Shield", "8% increased maximum Mana", statOrder = { 1470, 1491 }, level = 65, group = "WeaponTreeLocalEnergyShieldAndMana", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeFireDamagePercentageMinusFireResistance1"] = { type = "Spawn", tier = 1, "30% increased Fire Damage", "-10% to Fire Resistance", statOrder = { 1268, 1536 }, level = 8, group = "WeaponTreeFireDamagePercentageMinusFireResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreeFireDamagePercentageMinusFireResistance2"] = { type = "Spawn", tier = 2, "35% increased Fire Damage", "-10% to Fire Resistance", statOrder = { 1268, 1536 }, level = 42, group = "WeaponTreeFireDamagePercentageMinusFireResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreeFireDamagePercentageMinusFireResistance3"] = { type = "Spawn", tier = 3, "40% increased Fire Damage", "-10% to Fire Resistance", statOrder = { 1268, 1536 }, level = 72, group = "WeaponTreeFireDamagePercentageMinusFireResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreeFireDamagePercentage1"] = { type = "Spawn", tier = 1, "15% increased Fire Damage", statOrder = { 1268 }, level = 1, group = "WeaponTreeFireDamagePercentage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreeFireDamagePercentage2"] = { type = "Spawn", tier = 2, "20% increased Fire Damage", statOrder = { 1268 }, level = 50, group = "WeaponTreeFireDamagePercentage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreeFireDamagePercentage3"] = { type = "Spawn", tier = 3, "25% increased Fire Damage", statOrder = { 1268 }, level = 77, group = "WeaponTreeFireDamagePercentage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreeFireDamagePercentageDamageTakenAsFire1"] = { type = "Spawn", tier = 1, "9% increased Fire Damage", "3% of Physical Damage from Hits taken as Fire Damage", statOrder = { 1268, 2356 }, level = 1, group = "WeaponTreeFireDamagePercentageDamageTakenAsFire", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreeFireDamagePercentageDamageTakenAsFire2"] = { type = "Spawn", tier = 2, "12% increased Fire Damage", "3% of Physical Damage from Hits taken as Fire Damage", statOrder = { 1268, 2356 }, level = 36, group = "WeaponTreeFireDamagePercentageDamageTakenAsFire", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreeFireDamagePercentageDamageTakenAsFire3"] = { type = "Spawn", tier = 3, "15% increased Fire Damage", "3% of Physical Damage from Hits taken as Fire Damage", statOrder = { 1268, 2356 }, level = 68, group = "WeaponTreeFireDamagePercentageDamageTakenAsFire", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreeColdDamagePercentageMinusColdResistance1"] = { type = "Spawn", tier = 1, "30% increased Cold Damage", "-10% to Cold Resistance", statOrder = { 1277, 1542 }, level = 8, group = "WeaponTreeColdDamagePercentageMinusColdResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreeColdDamagePercentageMinusColdResistance2"] = { type = "Spawn", tier = 2, "35% increased Cold Damage", "-10% to Cold Resistance", statOrder = { 1277, 1542 }, level = 42, group = "WeaponTreeColdDamagePercentageMinusColdResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreeColdDamagePercentageMinusColdResistance3"] = { type = "Spawn", tier = 3, "40% increased Cold Damage", "-10% to Cold Resistance", statOrder = { 1277, 1542 }, level = 72, group = "WeaponTreeColdDamagePercentageMinusColdResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreeColdDamagePercentage1"] = { type = "Spawn", tier = 1, "15% increased Cold Damage", statOrder = { 1277 }, level = 1, group = "WeaponTreeColdDamagePercentage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreeColdDamagePercentage2"] = { type = "Spawn", tier = 2, "20% increased Cold Damage", statOrder = { 1277 }, level = 50, group = "WeaponTreeColdDamagePercentage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreeColdDamagePercentage3"] = { type = "Spawn", tier = 3, "25% increased Cold Damage", statOrder = { 1277 }, level = 77, group = "WeaponTreeColdDamagePercentage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreeColdDamagePercentageDamageTakenAsCold1"] = { type = "Spawn", tier = 1, "9% increased Cold Damage", "3% of Physical Damage from Hits taken as Cold Damage", statOrder = { 1277, 2357 }, level = 1, group = "WeaponTreeColdDamagePercentageDamageTakenAsCold", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreeColdDamagePercentageDamageTakenAsCold2"] = { type = "Spawn", tier = 2, "12% increased Cold Damage", "3% of Physical Damage from Hits taken as Cold Damage", statOrder = { 1277, 2357 }, level = 36, group = "WeaponTreeColdDamagePercentageDamageTakenAsCold", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreeColdDamagePercentageDamageTakenAsCold3"] = { type = "Spawn", tier = 3, "15% increased Cold Damage", "3% of Physical Damage from Hits taken as Cold Damage", statOrder = { 1277, 2357 }, level = 68, group = "WeaponTreeColdDamagePercentageDamageTakenAsCold", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreeLightningDamagePercentageMinusLightningResistance1"] = { type = "Spawn", tier = 1, "30% increased Lightning Damage", "-10% to Lightning Resistance", statOrder = { 1288, 1547 }, level = 8, group = "WeaponTreeLightningDamagePercentageMinusLightningResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreeLightningDamagePercentageMinusLightningResistance2"] = { type = "Spawn", tier = 2, "35% increased Lightning Damage", "-10% to Lightning Resistance", statOrder = { 1288, 1547 }, level = 42, group = "WeaponTreeLightningDamagePercentageMinusLightningResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreeLightningDamagePercentageMinusLightningResistance3"] = { type = "Spawn", tier = 3, "40% increased Lightning Damage", "-10% to Lightning Resistance", statOrder = { 1288, 1547 }, level = 72, group = "WeaponTreeLightningDamagePercentageMinusLightningResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreeLightningDamagePercentage1"] = { type = "Spawn", tier = 1, "15% increased Lightning Damage", statOrder = { 1288 }, level = 1, group = "WeaponTreeLightningDamagePercentage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreeLightningDamagePercentage2"] = { type = "Spawn", tier = 2, "20% increased Lightning Damage", statOrder = { 1288 }, level = 50, group = "WeaponTreeLightningDamagePercentage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreeLightningDamagePercentage3"] = { type = "Spawn", tier = 3, "25% increased Lightning Damage", statOrder = { 1288 }, level = 77, group = "WeaponTreeLightningDamagePercentage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreeLightningDamagePercentageDamageTakenAsLightning1"] = { type = "Spawn", tier = 1, "9% increased Lightning Damage", "3% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 1288, 2358 }, level = 1, group = "WeaponTreeLightningDamagePercentageDamageTakenAsLightning", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreeLightningDamagePercentageDamageTakenAsLightning2"] = { type = "Spawn", tier = 2, "12% increased Lightning Damage", "3% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 1288, 2358 }, level = 36, group = "WeaponTreeLightningDamagePercentageDamageTakenAsLightning", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreeLightningDamagePercentageDamageTakenAsLightning3"] = { type = "Spawn", tier = 3, "15% increased Lightning Damage", "3% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 1288, 2358 }, level = 68, group = "WeaponTreeLightningDamagePercentageDamageTakenAsLightning", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreeChaosDamagePercentageMinusChaosResistance1"] = { type = "Spawn", tier = 1, "30% increased Chaos Damage", "-10% to Chaos Resistance", statOrder = { 1296, 1552 }, level = 8, group = "WeaponTreeChaosDamagePercentageMinusChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeChaosDamagePercentageMinusChaosResistance2"] = { type = "Spawn", tier = 2, "35% increased Chaos Damage", "-10% to Chaos Resistance", statOrder = { 1296, 1552 }, level = 42, group = "WeaponTreeChaosDamagePercentageMinusChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeChaosDamagePercentageMinusChaosResistance3"] = { type = "Spawn", tier = 3, "40% increased Chaos Damage", "-10% to Chaos Resistance", statOrder = { 1296, 1552 }, level = 72, group = "WeaponTreeChaosDamagePercentageMinusChaosResistance", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeChaosDamagePercentage1"] = { type = "Spawn", tier = 1, "15% increased Chaos Damage", statOrder = { 1296 }, level = 1, group = "WeaponTreeIncreasedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeChaosDamagePercentage2"] = { type = "Spawn", tier = 2, "20% increased Chaos Damage", statOrder = { 1296 }, level = 50, group = "WeaponTreeIncreasedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeChaosDamagePercentage3"] = { type = "Spawn", tier = 3, "25% increased Chaos Damage", statOrder = { 1296 }, level = 77, group = "WeaponTreeIncreasedChaosDamage", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeChaosDamagePercentageDamageTakenAsChaos1"] = { type = "Spawn", tier = 1, "9% increased Chaos Damage", "3% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 1296, 2360 }, level = 1, group = "WeaponTreeChaosDamagePercentageDamageTakenAsChaos", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeChaosDamagePercentageDamageTakenAsChaos2"] = { type = "Spawn", tier = 2, "12% increased Chaos Damage", "3% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 1296, 2360 }, level = 36, group = "WeaponTreeChaosDamagePercentageDamageTakenAsChaos", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeChaosDamagePercentageDamageTakenAsChaos3"] = { type = "Spawn", tier = 3, "15% increased Chaos Damage", "3% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 1296, 2360 }, level = 68, group = "WeaponTreeChaosDamagePercentageDamageTakenAsChaos", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreePhysicalDamagePercentReducedLifeRegenerationRate1"] = { type = "Spawn", tier = 1, "30% increased Global Physical Damage", "10% reduced Life Regeneration rate", statOrder = { 1143, 1488 }, level = 8, group = "WeaponTreePhysicalDamagePercentReducedLifeRegenerationRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreePhysicalDamagePercentReducedLifeRegenerationRate2"] = { type = "Spawn", tier = 2, "35% increased Global Physical Damage", "10% reduced Life Regeneration rate", statOrder = { 1143, 1488 }, level = 42, group = "WeaponTreePhysicalDamagePercentReducedLifeRegenerationRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreePhysicalDamagePercentReducedLifeRegenerationRate3"] = { type = "Spawn", tier = 3, "40% increased Global Physical Damage", "10% reduced Life Regeneration rate", statOrder = { 1143, 1488 }, level = 72, group = "WeaponTreePhysicalDamagePercentReducedLifeRegenerationRate", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreePhysicalDamagePercent1"] = { type = "Spawn", tier = 1, "15% increased Global Physical Damage", statOrder = { 1143 }, level = 1, group = "WeaponTreePhysicalDamagePercent", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreePhysicalDamagePercent2"] = { type = "Spawn", tier = 2, "20% increased Global Physical Damage", statOrder = { 1143 }, level = 50, group = "WeaponTreePhysicalDamagePercent", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreePhysicalDamagePercent3"] = { type = "Spawn", tier = 3, "25% increased Global Physical Damage", statOrder = { 1143 }, level = 77, group = "WeaponTreePhysicalDamagePercent", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreePhysicalDamagePercentPhysicalDamageReduction1"] = { type = "Spawn", tier = 1, "9% increased Global Physical Damage", "2% additional Physical Damage Reduction", statOrder = { 1143, 2182 }, level = 1, group = "WeaponTreePhysicalDamagePercentPhysicalDamageReduction", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreePhysicalDamagePercentPhysicalDamageReduction2"] = { type = "Spawn", tier = 2, "12% increased Global Physical Damage", "2% additional Physical Damage Reduction", statOrder = { 1143, 2182 }, level = 36, group = "WeaponTreePhysicalDamagePercentPhysicalDamageReduction", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreePhysicalDamagePercentPhysicalDamageReduction3"] = { type = "Spawn", tier = 3, "15% increased Global Physical Damage", "2% additional Physical Damage Reduction", statOrder = { 1143, 2182 }, level = 68, group = "WeaponTreePhysicalDamagePercentPhysicalDamageReduction", nodeType = "Regular", nodeLocation = { 1 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreeLocalCritChanceCritsDealNoExtraDamage1"] = { type = "Spawn", tier = 1, "+4% to Critical Strike Chance", "Your Critical Strikes do not deal extra Damage", statOrder = { 1374, 2586 }, level = 30, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndNoExtraDamageFromCrits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalCritChanceCritsDealNoExtraDamage2"] = { type = "Spawn", tier = 2, "+5% to Critical Strike Chance", "Your Critical Strikes do not deal extra Damage", statOrder = { 1374, 2586 }, level = 55, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndNoExtraDamageFromCrits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalCritChanceCritsDealNoExtraDamage3"] = { type = "Spawn", tier = 3, "+6% to Critical Strike Chance", "Your Critical Strikes do not deal extra Damage", statOrder = { 1374, 2586 }, level = 82, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndNoExtraDamageFromCrits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalCritChanceCritMulti1"] = { type = "Spawn", tier = 1, "-3% to Critical Strike Chance", "+40% to Global Critical Strike Multiplier", statOrder = { 1374, 1399 }, level = 10, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalCritChanceCritMulti2"] = { type = "Spawn", tier = 2, "-3% to Critical Strike Chance", "+50% to Global Critical Strike Multiplier", statOrder = { 1374, 1399 }, level = 50, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalCritChanceCritMulti3"] = { type = "Spawn", tier = 3, "-3% to Critical Strike Chance", "+60% to Global Critical Strike Multiplier", statOrder = { 1374, 1399 }, level = 80, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalCritChanceCritMulti2h1"] = { type = "Spawn", tier = 1, "-3% to Critical Strike Chance", "+60% to Global Critical Strike Multiplier", statOrder = { 1374, 1399 }, level = 10, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalCritChanceCritMulti2h2"] = { type = "Spawn", tier = 2, "-3% to Critical Strike Chance", "+80% to Global Critical Strike Multiplier", statOrder = { 1374, 1399 }, level = 50, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalCritChanceCritMulti2h3"] = { type = "Spawn", tier = 3, "-3% to Critical Strike Chance", "+100% to Global Critical Strike Multiplier", statOrder = { 1374, 1399 }, level = 80, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalCritChance1"] = { type = "Spawn", tier = 1, "+0.4% to Critical Strike Chance", statOrder = { 1374 }, level = 1, group = "WeaponTreeLocalBaseCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeLocalCritChance2"] = { type = "Spawn", tier = 2, "+0.6% to Critical Strike Chance", statOrder = { 1374 }, level = 30, group = "WeaponTreeLocalBaseCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeLocalCritChance3"] = { type = "Spawn", tier = 3, "+0.8% to Critical Strike Chance", statOrder = { 1374 }, level = 60, group = "WeaponTreeLocalBaseCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeLocalCritReducedAttackSpeed1"] = { type = "Spawn", tier = 1, "15% reduced Attack Speed", "+0.9% to Critical Strike Chance", statOrder = { 1324, 1374 }, level = 1, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndAttackSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalCritReducedAttackSpeed2"] = { type = "Spawn", tier = 2, "15% reduced Attack Speed", "+1.2% to Critical Strike Chance", statOrder = { 1324, 1374 }, level = 30, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndAttackSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalCritReducedAttackSpeed3"] = { type = "Spawn", tier = 3, "15% reduced Attack Speed", "+1.5% to Critical Strike Chance", statOrder = { 1324, 1374 }, level = 60, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndAttackSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalCritReducedAccuracy1"] = { type = "Spawn", tier = 1, "+0.9% to Critical Strike Chance", "-500 to Accuracy Rating", statOrder = { 1374, 1933 }, level = 30, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndAccuracy", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalCritReducedAccuracy2"] = { type = "Spawn", tier = 2, "+1.2% to Critical Strike Chance", "-500 to Accuracy Rating", statOrder = { 1374, 1933 }, level = 55, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndAccuracy", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalCritReducedAccuracy3"] = { type = "Spawn", tier = 3, "+1.5% to Critical Strike Chance", "-500 to Accuracy Rating", statOrder = { 1374, 1933 }, level = 82, group = "WeaponTreeLocalBaseCriticalStrikeChanceAndAccuracy", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalAttackSpeedLessDamage1"] = { type = "Spawn", tier = 1, "30% increased Attack Speed", "20% less Global Damage", statOrder = { 1324, 10368 }, level = 1, group = "WeaponTreeLocalAttackSpeedAndLessDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalAttackSpeedLessDamage2"] = { type = "Spawn", tier = 2, "35% increased Attack Speed", "20% less Global Damage", statOrder = { 1324, 10368 }, level = 30, group = "WeaponTreeLocalAttackSpeedAndLessDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalAttackSpeedLessDamage3"] = { type = "Spawn", tier = 3, "40% increased Attack Speed", "20% less Global Damage", statOrder = { 1324, 10368 }, level = 60, group = "WeaponTreeLocalAttackSpeedAndLessDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalAttackSpeedRangedLessDamage1"] = { type = "Spawn", tier = 1, "24% increased Attack Speed", "15% less Global Damage", statOrder = { 1324, 10368 }, level = 1, group = "WeaponTreeLocalAttackSpeedAndLessDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalAttackSpeedRangedLessDamage2"] = { type = "Spawn", tier = 2, "27% increased Attack Speed", "15% less Global Damage", statOrder = { 1324, 10368 }, level = 30, group = "WeaponTreeLocalAttackSpeedAndLessDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalAttackSpeedRangedLessDamage3"] = { type = "Spawn", tier = 3, "30% increased Attack Speed", "15% less Global Damage", statOrder = { 1324, 10368 }, level = 60, group = "WeaponTreeLocalAttackSpeedAndLessDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalAttackSpeed1"] = { type = "Spawn", tier = 1, "8% increased Attack Speed", statOrder = { 1324 }, level = 1, group = "WeaponTreeLocalIncreasedAttackSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, + ["WeaponTreeLocalAttackSpeed2"] = { type = "Spawn", tier = 2, "9% increased Attack Speed", statOrder = { 1324 }, level = 30, group = "WeaponTreeLocalIncreasedAttackSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, + ["WeaponTreeLocalAttackSpeed3"] = { type = "Spawn", tier = 3, "10% increased Attack Speed", statOrder = { 1324 }, level = 60, group = "WeaponTreeLocalIncreasedAttackSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, + ["WeaponTreeLocalAttackSpeedRanged1"] = { type = "Spawn", tier = 1, "5% increased Attack Speed", statOrder = { 1324 }, level = 1, group = "WeaponTreeLocalIncreasedAttackSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeLocalAttackSpeedRanged2"] = { type = "Spawn", tier = 2, "6% increased Attack Speed", statOrder = { 1324 }, level = 30, group = "WeaponTreeLocalIncreasedAttackSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeLocalAttackSpeedRanged3"] = { type = "Spawn", tier = 3, "7% increased Attack Speed", statOrder = { 1324 }, level = 60, group = "WeaponTreeLocalIncreasedAttackSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeLocalAttackSpeedOnslaughtOnKill1"] = { type = "Spawn", tier = 1, "4% increased Attack Speed", "6% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1324, 2902 }, level = 10, group = "WeaponTreeLocalIncreasedAttackSpeedAndOnslaughtOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalAttackSpeedOnslaughtOnKill2"] = { type = "Spawn", tier = 2, "5% increased Attack Speed", "6% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1324, 2902 }, level = 50, group = "WeaponTreeLocalIncreasedAttackSpeedAndOnslaughtOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalAttackSpeedOnslaughtOnKill3"] = { type = "Spawn", tier = 3, "6% increased Attack Speed", "6% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1324, 2902 }, level = 80, group = "WeaponTreeLocalIncreasedAttackSpeedAndOnslaughtOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalAttackSpeedRangedOnslaughtOnKill1"] = { type = "Spawn", tier = 1, "3% increased Attack Speed", "6% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1324, 2902 }, level = 10, group = "WeaponTreeLocalIncreasedAttackSpeedAndOnslaughtOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalAttackSpeedRangedOnslaughtOnKill2"] = { type = "Spawn", tier = 2, "4% increased Attack Speed", "6% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1324, 2902 }, level = 50, group = "WeaponTreeLocalIncreasedAttackSpeedAndOnslaughtOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalAttackSpeedRangedOnslaughtOnKill3"] = { type = "Spawn", tier = 3, "5% increased Attack Speed", "6% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1324, 2902 }, level = 80, group = "WeaponTreeLocalIncreasedAttackSpeedAndOnslaughtOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalAttackSpeedFrenzyChargeOnKill1"] = { type = "Spawn", tier = 1, "4% increased Attack Speed", "6% chance to gain a Frenzy Charge on Kill", statOrder = { 1324, 2539 }, level = 10, group = "WeaponTreeLocalIncreasedAttackSpeedAndFrenzyOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalAttackSpeedFrenzyChargeOnKill2"] = { type = "Spawn", tier = 2, "5% increased Attack Speed", "6% chance to gain a Frenzy Charge on Kill", statOrder = { 1324, 2539 }, level = 50, group = "WeaponTreeLocalIncreasedAttackSpeedAndFrenzyOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalAttackSpeedFrenzyChargeOnKill3"] = { type = "Spawn", tier = 3, "6% increased Attack Speed", "6% chance to gain a Frenzy Charge on Kill", statOrder = { 1324, 2539 }, level = 80, group = "WeaponTreeLocalIncreasedAttackSpeedAndFrenzyOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalAttackSpeedRangedFrenzyChargeOnKill1"] = { type = "Spawn", tier = 1, "3% increased Attack Speed", "6% chance to gain a Frenzy Charge on Kill", statOrder = { 1324, 2539 }, level = 10, group = "WeaponTreeLocalIncreasedAttackSpeedAndFrenzyOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalAttackSpeedRangedFrenzyChargeOnKill2"] = { type = "Spawn", tier = 2, "4% increased Attack Speed", "6% chance to gain a Frenzy Charge on Kill", statOrder = { 1324, 2539 }, level = 50, group = "WeaponTreeLocalIncreasedAttackSpeedAndFrenzyOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalAttackSpeedRangedFrenzyChargeOnKill3"] = { type = "Spawn", tier = 3, "5% increased Attack Speed", "6% chance to gain a Frenzy Charge on Kill", statOrder = { 1324, 2539 }, level = 80, group = "WeaponTreeLocalIncreasedAttackSpeedAndFrenzyOnKill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalAttackSpeedLocalDoubleDamageChance1"] = { type = "Spawn", tier = 1, "25% reduced Attack Speed", "Attacks with this Weapon have 20% chance to deal Double Damage", statOrder = { 1324, 7778 }, level = 1, group = "WeaponTreeLocalIncreasedAttackSpeedAndLocalDoubleDamageChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalAttackSpeedLocalDoubleDamageChance2"] = { type = "Spawn", tier = 2, "25% reduced Attack Speed", "Attacks with this Weapon have 25% chance to deal Double Damage", statOrder = { 1324, 7778 }, level = 30, group = "WeaponTreeLocalIncreasedAttackSpeedAndLocalDoubleDamageChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalAttackSpeedLocalDoubleDamageChance3"] = { type = "Spawn", tier = 3, "25% reduced Attack Speed", "Attacks with this Weapon have 30% chance to deal Double Damage", statOrder = { 1324, 7778 }, level = 60, group = "WeaponTreeLocalIncreasedAttackSpeedAndLocalDoubleDamageChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalAttackSpeedRangedLocalDoubleDamageChance1"] = { type = "Spawn", tier = 1, "20% reduced Attack Speed", "Attacks with this Weapon have 15% chance to deal Double Damage", statOrder = { 1324, 7778 }, level = 1, group = "WeaponTreeLocalIncreasedAttackSpeedAndLocalDoubleDamageChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalAttackSpeedRangedLocalDoubleDamageChance2"] = { type = "Spawn", tier = 2, "20% reduced Attack Speed", "Attacks with this Weapon have 20% chance to deal Double Damage", statOrder = { 1324, 7778 }, level = 30, group = "WeaponTreeLocalIncreasedAttackSpeedAndLocalDoubleDamageChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalAttackSpeedRangedLocalDoubleDamageChance3"] = { type = "Spawn", tier = 3, "20% reduced Attack Speed", "Attacks with this Weapon have 25% chance to deal Double Damage", statOrder = { 1324, 7778 }, level = 60, group = "WeaponTreeLocalIncreasedAttackSpeedAndLocalDoubleDamageChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "ranged", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalAlwaysHitReducedAttackSpeed"] = { type = "MergeOnly", tier = 1, "50% reduced Attack Speed", "Hits can't be Evaded", statOrder = { 1324, 1952 }, level = 60, group = "WeaponTreeAlwaysHitsAndLocalAttackSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 625, 0 }, modTags = { }, }, + ["WeaponTreeLocalAlwaysHitReducedCriticalStrikeChance"] = { type = "MergeOnly", tier = 1, "-5% to Critical Strike Chance", "Hits can't be Evaded", statOrder = { 1374, 1952 }, level = 60, group = "WeaponTreeAlwaysHitsAndLocalCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 625, 0 }, modTags = { }, }, + ["WeaponTreeLocalAccuracyRating1"] = { type = "Spawn", tier = 1, "+150 to Accuracy Rating", statOrder = { 1933 }, level = 1, group = "WeaponTreeLocalAccuracyRating", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalAccuracyRating2"] = { type = "Spawn", tier = 2, "+250 to Accuracy Rating", statOrder = { 1933 }, level = 30, group = "WeaponTreeLocalAccuracyRating", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalAccuracyRating3"] = { type = "Spawn", tier = 3, "+350 to Accuracy Rating", statOrder = { 1933 }, level = 60, group = "WeaponTreeLocalAccuracyRating", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalAccuracyRatingAndIncreasedDexterity1"] = { type = "Spawn", tier = 1, "5% increased Dexterity", "+80 to Accuracy Rating", statOrder = { 1097, 1933 }, level = 10, group = "WeaponTreeLocalAccuracyRatingAndDexterityPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalAccuracyRatingAndIncreasedDexterity2"] = { type = "Spawn", tier = 2, "5% increased Dexterity", "+160 to Accuracy Rating", statOrder = { 1097, 1933 }, level = 50, group = "WeaponTreeLocalAccuracyRatingAndDexterityPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalAccuracyRatingAndIncreasedDexterity3"] = { type = "Spawn", tier = 3, "5% increased Dexterity", "+240 to Accuracy Rating", statOrder = { 1097, 1933 }, level = 80, group = "WeaponTreeLocalAccuracyRatingAndDexterityPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalAccuracyRatingAndIncreasedDexterity2h1"] = { type = "Spawn", tier = 1, "10% increased Dexterity", "+80 to Accuracy Rating", statOrder = { 1097, 1933 }, level = 10, group = "WeaponTreeLocalAccuracyRatingAndDexterityPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalAccuracyRatingAndIncreasedDexterity2h2"] = { type = "Spawn", tier = 2, "10% increased Dexterity", "+160 to Accuracy Rating", statOrder = { 1097, 1933 }, level = 50, group = "WeaponTreeLocalAccuracyRatingAndDexterityPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalAccuracyRatingAndIncreasedDexterity2h3"] = { type = "Spawn", tier = 3, "10% increased Dexterity", "+240 to Accuracy Rating", statOrder = { 1097, 1933 }, level = 80, group = "WeaponTreeLocalAccuracyRatingAndDexterityPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalAccuracyRatingAndEvasion1"] = { type = "Spawn", tier = 1, "15% increased Evasion Rating", "+80 to Accuracy Rating", statOrder = { 1460, 1933 }, level = 10, group = "WeaponTreeLocalAccuracyRatingAndEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalAccuracyRatingAndEvasion2"] = { type = "Spawn", tier = 2, "15% increased Evasion Rating", "+160 to Accuracy Rating", statOrder = { 1460, 1933 }, level = 50, group = "WeaponTreeLocalAccuracyRatingAndEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalAccuracyRatingAndEvasion3"] = { type = "Spawn", tier = 3, "15% increased Evasion Rating", "+240 to Accuracy Rating", statOrder = { 1460, 1933 }, level = 80, group = "WeaponTreeLocalAccuracyRatingAndEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalAccuracyRatingAndEvasion2h1"] = { type = "Spawn", tier = 1, "30% increased Evasion Rating", "+80 to Accuracy Rating", statOrder = { 1460, 1933 }, level = 10, group = "WeaponTreeLocalAccuracyRatingAndEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalAccuracyRatingAndEvasion2h2"] = { type = "Spawn", tier = 2, "30% increased Evasion Rating", "+160 to Accuracy Rating", statOrder = { 1460, 1933 }, level = 50, group = "WeaponTreeLocalAccuracyRatingAndEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalAccuracyRatingAndEvasion2h3"] = { type = "Spawn", tier = 3, "30% increased Evasion Rating", "+240 to Accuracy Rating", statOrder = { 1460, 1933 }, level = 80, group = "WeaponTreeLocalAccuracyRatingAndEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellCriticalStrikeChanceSpellCriticalStrikeMultiplier1"] = { type = "Spawn", tier = 1, "+40% to Critical Strike Multiplier for Spell Damage", "-2% to Spell Critical Strike Chance", statOrder = { 1403, 9909 }, level = 1, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeSpellCriticalStrikeChanceSpellCriticalStrikeMultiplier2"] = { type = "Spawn", tier = 2, "+50% to Critical Strike Multiplier for Spell Damage", "-2% to Spell Critical Strike Chance", statOrder = { 1403, 9909 }, level = 30, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeSpellCriticalStrikeChanceSpellCriticalStrikeMultiplier3"] = { type = "Spawn", tier = 3, "+60% to Critical Strike Multiplier for Spell Damage", "-2% to Spell Critical Strike Chance", statOrder = { 1403, 9909 }, level = 60, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeSpellCriticalStrikeChance2hSpellCriticalStrikeMultiplier1"] = { type = "Spawn", tier = 1, "+60% to Critical Strike Multiplier for Spell Damage", "-2% to Spell Critical Strike Chance", statOrder = { 1403, 9909 }, level = 1, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeSpellCriticalStrikeChance2hSpellCriticalStrikeMultiplier2"] = { type = "Spawn", tier = 2, "+80% to Critical Strike Multiplier for Spell Damage", "-2% to Spell Critical Strike Chance", statOrder = { 1403, 9909 }, level = 30, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeSpellCriticalStrikeChance2hSpellCriticalStrikeMultiplier3"] = { type = "Spawn", tier = 3, "+100% to Critical Strike Multiplier for Spell Damage", "-2% to Spell Critical Strike Chance", statOrder = { 1403, 9909 }, level = 60, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeSpellCriticalStrikeChanceCriticalsDealNoExtraDamage1"] = { type = "Spawn", tier = 1, "Your Critical Strikes do not deal extra Damage", "+5% to Spell Critical Strike Chance", statOrder = { 2586, 9909 }, level = 10, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndNoExtraDamageWithCrits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellCriticalStrikeChanceCriticalsDealNoExtraDamage2"] = { type = "Spawn", tier = 2, "Your Critical Strikes do not deal extra Damage", "+5.5% to Spell Critical Strike Chance", statOrder = { 2586, 9909 }, level = 50, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndNoExtraDamageWithCrits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellCriticalStrikeChanceCriticalsDealNoExtraDamage3"] = { type = "Spawn", tier = 3, "Your Critical Strikes do not deal extra Damage", "+6% to Spell Critical Strike Chance", statOrder = { 2586, 9909 }, level = 80, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndNoExtraDamageWithCrits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellCriticalStrikeChance2hCriticalsDealNoExtraDamage1"] = { type = "Spawn", tier = 1, "Your Critical Strikes do not deal extra Damage", "+7% to Spell Critical Strike Chance", statOrder = { 2586, 9909 }, level = 10, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndNoExtraDamageWithCrits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellCriticalStrikeChance2hCriticalsDealNoExtraDamage2"] = { type = "Spawn", tier = 2, "Your Critical Strikes do not deal extra Damage", "+8% to Spell Critical Strike Chance", statOrder = { 2586, 9909 }, level = 50, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndNoExtraDamageWithCrits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellCriticalStrikeChance2hCriticalsDealNoExtraDamage3"] = { type = "Spawn", tier = 3, "Your Critical Strikes do not deal extra Damage", "+9% to Spell Critical Strike Chance", statOrder = { 2586, 9909 }, level = 80, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndNoExtraDamageWithCrits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "+0.4% to Spell Critical Strike Chance", statOrder = { 9909 }, level = 1, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpells", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 0, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSpellCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "+0.5% to Spell Critical Strike Chance", statOrder = { 9909 }, level = 30, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpells", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 0, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSpellCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "+0.6% to Spell Critical Strike Chance", statOrder = { 9909 }, level = 60, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpells", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 0, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSpellCriticalStrikeChance2h1"] = { type = "Spawn", tier = 1, "+0.8% to Spell Critical Strike Chance", statOrder = { 9909 }, level = 1, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpells", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSpellCriticalStrikeChance2h2"] = { type = "Spawn", tier = 2, "+0.9% to Spell Critical Strike Chance", statOrder = { 9909 }, level = 30, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpells", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSpellCriticalStrikeChance2h3"] = { type = "Spawn", tier = 3, "+1% to Spell Critical Strike Chance", statOrder = { 9909 }, level = 60, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpells", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSpellCriticalStrikeChanceReducedSpellCriticalStrikeMultiplier1"] = { type = "Spawn", tier = 1, "-30% to Critical Strike Multiplier for Spell Damage", "+1% to Spell Critical Strike Chance", statOrder = { 1403, 9909 }, level = 1, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeSpellCriticalStrikeChanceReducedSpellCriticalStrikeMultiplier2"] = { type = "Spawn", tier = 2, "-30% to Critical Strike Multiplier for Spell Damage", "+1.3% to Spell Critical Strike Chance", statOrder = { 1403, 9909 }, level = 30, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeSpellCriticalStrikeChanceReducedSpellCriticalStrikeMultiplier3"] = { type = "Spawn", tier = 3, "-30% to Critical Strike Multiplier for Spell Damage", "+1.5% to Spell Critical Strike Chance", statOrder = { 1403, 9909 }, level = 60, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeSpellCriticalStrikeChance2hReducedSpellCriticalStrikeMultiplier1"] = { type = "Spawn", tier = 1, "-60% to Critical Strike Multiplier for Spell Damage", "+1.8% to Spell Critical Strike Chance", statOrder = { 1403, 9909 }, level = 1, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeSpellCriticalStrikeChance2hReducedSpellCriticalStrikeMultiplier2"] = { type = "Spawn", tier = 2, "-60% to Critical Strike Multiplier for Spell Damage", "+2.2% to Spell Critical Strike Chance", statOrder = { 1403, 9909 }, level = 30, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeSpellCriticalStrikeChance2hReducedSpellCriticalStrikeMultiplier3"] = { type = "Spawn", tier = 3, "-60% to Critical Strike Multiplier for Spell Damage", "+2.6% to Spell Critical Strike Chance", statOrder = { 1403, 9909 }, level = 60, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndSpellCriticalStrikeMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeSpellCriticalStrikeChanceReservationEfficiencyOfSkills1"] = { type = "Spawn", tier = 1, "15% reduced Reservation Efficiency of Skills", "+0.8% to Spell Critical Strike Chance", statOrder = { 2139, 9909 }, level = 10, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellCriticalStrikeChanceReservationEfficiencyOfSkills2"] = { type = "Spawn", tier = 2, "15% reduced Reservation Efficiency of Skills", "+1% to Spell Critical Strike Chance", statOrder = { 2139, 9909 }, level = 50, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellCriticalStrikeChanceReservationEfficiencyOfSkills3"] = { type = "Spawn", tier = 3, "15% reduced Reservation Efficiency of Skills", "+1.2% to Spell Critical Strike Chance", statOrder = { 2139, 9909 }, level = 80, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellCriticalStrikeChance2hReservationEfficiencyOfSkills1"] = { type = "Spawn", tier = 1, "25% reduced Reservation Efficiency of Skills", "+1.2% to Spell Critical Strike Chance", statOrder = { 2139, 9909 }, level = 10, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellCriticalStrikeChance2hReservationEfficiencyOfSkills2"] = { type = "Spawn", tier = 2, "25% reduced Reservation Efficiency of Skills", "+1.6% to Spell Critical Strike Chance", statOrder = { 2139, 9909 }, level = 50, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellCriticalStrikeChance2hReservationEfficiencyOfSkills3"] = { type = "Spawn", tier = 3, "25% reduced Reservation Efficiency of Skills", "+2% to Spell Critical Strike Chance", statOrder = { 2139, 9909 }, level = 80, group = "WeaponTreeAdditionalCriticalStrikeChanceWithSpellsAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeCastSpeedLessDamage1"] = { type = "Spawn", tier = 1, "18% more Cast Speed", "10% less Global Damage", statOrder = { 10366, 10368 }, level = 1, group = "WeaponTreeCastSpeedAndDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeCastSpeedLessDamage2"] = { type = "Spawn", tier = 2, "20% more Cast Speed", "10% less Global Damage", statOrder = { 10366, 10368 }, level = 30, group = "WeaponTreeCastSpeedAndDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeCastSpeedLessDamage3"] = { type = "Spawn", tier = 3, "22% more Cast Speed", "10% less Global Damage", statOrder = { 10366, 10368 }, level = 60, group = "WeaponTreeCastSpeedAndDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeCastSpeed2hLessDamage1"] = { type = "Spawn", tier = 1, "24% more Cast Speed", "15% less Global Damage", statOrder = { 10366, 10368 }, level = 1, group = "WeaponTreeCastSpeedAndDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeCastSpeed2hLessDamage2"] = { type = "Spawn", tier = 2, "27% more Cast Speed", "15% less Global Damage", statOrder = { 10366, 10368 }, level = 30, group = "WeaponTreeCastSpeedAndDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeCastSpeed2hLessDamage3"] = { type = "Spawn", tier = 3, "30% more Cast Speed", "15% less Global Damage", statOrder = { 10366, 10368 }, level = 60, group = "WeaponTreeCastSpeedAndDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeCastSpeed1"] = { type = "Spawn", tier = 1, "4% more Cast Speed", statOrder = { 10366 }, level = 1, group = "WeaponTreeCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 0, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeCastSpeed2"] = { type = "Spawn", tier = 2, "5% more Cast Speed", statOrder = { 10366 }, level = 30, group = "WeaponTreeCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 0, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeCastSpeed3"] = { type = "Spawn", tier = 3, "6% more Cast Speed", statOrder = { 10366 }, level = 60, group = "WeaponTreeCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 0, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeCastSpeed2h1"] = { type = "Spawn", tier = 1, "8% more Cast Speed", statOrder = { 10366 }, level = 1, group = "WeaponTreeCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0, 1000, 0 }, modTags = { }, }, + ["WeaponTreeCastSpeed2h2"] = { type = "Spawn", tier = 2, "9% more Cast Speed", statOrder = { 10366 }, level = 30, group = "WeaponTreeCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0, 1000, 0 }, modTags = { }, }, + ["WeaponTreeCastSpeed2h3"] = { type = "Spawn", tier = 3, "10% more Cast Speed", statOrder = { 10366 }, level = 60, group = "WeaponTreeCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0, 1000, 0 }, modTags = { }, }, + ["WeaponTreeCastSpeedSkillCost1"] = { type = "Spawn", tier = 1, "12% increased Cost of Skills", "6% more Cast Speed", statOrder = { 1792, 10366 }, level = 1, group = "WeaponTreeCastSpeedAndSkillCost", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeCastSpeedSkillCost2"] = { type = "Spawn", tier = 2, "12% increased Cost of Skills", "7% more Cast Speed", statOrder = { 1792, 10366 }, level = 30, group = "WeaponTreeCastSpeedAndSkillCost", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeCastSpeedSkillCost3"] = { type = "Spawn", tier = 3, "12% increased Cost of Skills", "8% more Cast Speed", statOrder = { 1792, 10366 }, level = 60, group = "WeaponTreeCastSpeedAndSkillCost", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeCastSpeed2hSkillCost1"] = { type = "Spawn", tier = 1, "20% increased Cost of Skills", "10% more Cast Speed", statOrder = { 1792, 10366 }, level = 1, group = "WeaponTreeCastSpeedAndSkillCost", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeCastSpeed2hSkillCost2"] = { type = "Spawn", tier = 2, "20% increased Cost of Skills", "12% more Cast Speed", statOrder = { 1792, 10366 }, level = 30, group = "WeaponTreeCastSpeedAndSkillCost", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeCastSpeed2hSkillCost3"] = { type = "Spawn", tier = 3, "20% increased Cost of Skills", "14% more Cast Speed", statOrder = { 1792, 10366 }, level = 60, group = "WeaponTreeCastSpeedAndSkillCost", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeCastSpeedAddedSpellDamageFromWeaponDamage1"] = { type = "Spawn", tier = 1, "Spells you Cast have Added Spell Damage equal to 12% of the Damage of this Weapon", "10% less Cast Speed", statOrder = { 9978, 10366 }, level = 10, group = "WeaponTreeCastSpeedAndAddedSpellDamageFromWeaponDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeCastSpeedAddedSpellDamageFromWeaponDamage2"] = { type = "Spawn", tier = 2, "Spells you Cast have Added Spell Damage equal to 16% of the Damage of this Weapon", "10% less Cast Speed", statOrder = { 9978, 10366 }, level = 50, group = "WeaponTreeCastSpeedAndAddedSpellDamageFromWeaponDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeCastSpeedAddedSpellDamageFromWeaponDamage3"] = { type = "Spawn", tier = 3, "Spells you Cast have Added Spell Damage equal to 20% of the Damage of this Weapon", "10% less Cast Speed", statOrder = { 9978, 10366 }, level = 80, group = "WeaponTreeCastSpeedAndAddedSpellDamageFromWeaponDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeCastSpeed2hAddedSpellDamageFromWeaponDamage1"] = { type = "Spawn", tier = 1, "Spells you Cast have Added Spell Damage equal to 20% of the Damage of this Weapon", "15% less Cast Speed", statOrder = { 9978, 10366 }, level = 10, group = "WeaponTreeCastSpeedAndAddedSpellDamageFromWeaponDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeCastSpeed2hAddedSpellDamageFromWeaponDamage2"] = { type = "Spawn", tier = 2, "Spells you Cast have Added Spell Damage equal to 25% of the Damage of this Weapon", "15% less Cast Speed", statOrder = { 9978, 10366 }, level = 50, group = "WeaponTreeCastSpeedAndAddedSpellDamageFromWeaponDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeCastSpeed2hAddedSpellDamageFromWeaponDamage3"] = { type = "Spawn", tier = 3, "Spells you Cast have Added Spell Damage equal to 30% of the Damage of this Weapon", "15% less Cast Speed", statOrder = { 9978, 10366 }, level = 80, group = "WeaponTreeCastSpeedAndAddedSpellDamageFromWeaponDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeBaseManaRegenLessMana1"] = { type = "Spawn", tier = 1, "Regenerate 1.5% of Mana per second", "15% less maximum Mana", statOrder = { 1492, 10390 }, level = 1, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeBaseManaRegenLessMana2"] = { type = "Spawn", tier = 2, "Regenerate 1.8% of Mana per second", "15% less maximum Mana", statOrder = { 1492, 10390 }, level = 30, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeBaseManaRegenLessMana3"] = { type = "Spawn", tier = 3, "Regenerate 2% of Mana per second", "15% less maximum Mana", statOrder = { 1492, 10390 }, level = 60, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeBaseManaRegen2hLessMana1"] = { type = "Spawn", tier = 1, "Regenerate 2% of Mana per second", "25% less maximum Mana", statOrder = { 1492, 10390 }, level = 1, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeBaseManaRegen2hLessMana2"] = { type = "Spawn", tier = 2, "Regenerate 2.5% of Mana per second", "25% less maximum Mana", statOrder = { 1492, 10390 }, level = 30, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeBaseManaRegen2hLessMana3"] = { type = "Spawn", tier = 3, "Regenerate 3% of Mana per second", "25% less maximum Mana", statOrder = { 1492, 10390 }, level = 60, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeBaseManaRegenReservationEfficiencyOfSkills1"] = { type = "Spawn", tier = 1, "Regenerate 1% of Mana per second", "20% reduced Reservation Efficiency of Skills", statOrder = { 1492, 2139 }, level = 10, group = "WeaponTreeBaseManaRegenerationAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeBaseManaRegenReservationEfficiencyOfSkills2"] = { type = "Spawn", tier = 2, "Regenerate 1.3% of Mana per second", "20% reduced Reservation Efficiency of Skills", statOrder = { 1492, 2139 }, level = 50, group = "WeaponTreeBaseManaRegenerationAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeBaseManaRegenReservationEfficiencyOfSkills3"] = { type = "Spawn", tier = 3, "Regenerate 1.5% of Mana per second", "20% reduced Reservation Efficiency of Skills", statOrder = { 1492, 2139 }, level = 80, group = "WeaponTreeBaseManaRegenerationAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeBaseManaRegen2hReservationEfficiencyOfSkills1"] = { type = "Spawn", tier = 1, "Regenerate 1.5% of Mana per second", "30% reduced Reservation Efficiency of Skills", statOrder = { 1492, 2139 }, level = 10, group = "WeaponTreeBaseManaRegenerationAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeBaseManaRegen2hReservationEfficiencyOfSkills2"] = { type = "Spawn", tier = 2, "Regenerate 2% of Mana per second", "30% reduced Reservation Efficiency of Skills", statOrder = { 1492, 2139 }, level = 50, group = "WeaponTreeBaseManaRegenerationAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeBaseManaRegen2hReservationEfficiencyOfSkills3"] = { type = "Spawn", tier = 3, "Regenerate 2.5% of Mana per second", "30% reduced Reservation Efficiency of Skills", statOrder = { 1492, 2139 }, level = 80, group = "WeaponTreeBaseManaRegenerationAndReservationEfficiencyOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeBaseManaRegen1"] = { type = "Spawn", tier = 1, "Regenerate 0.5% of Mana per second", statOrder = { 1492 }, level = 1, group = "WeaponTreeBaseManaRegeneration", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 0, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeBaseManaRegen2"] = { type = "Spawn", tier = 2, "Regenerate 0.6% of Mana per second", statOrder = { 1492 }, level = 30, group = "WeaponTreeBaseManaRegeneration", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 0, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeBaseManaRegen3"] = { type = "Spawn", tier = 3, "Regenerate 0.7% of Mana per second", statOrder = { 1492 }, level = 60, group = "WeaponTreeBaseManaRegeneration", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 0, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeBaseManaRegen2h1"] = { type = "Spawn", tier = 1, "Regenerate 0.8% of Mana per second", statOrder = { 1492 }, level = 1, group = "WeaponTreeBaseManaRegeneration", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0, 1000, 0 }, modTags = { }, }, + ["WeaponTreeBaseManaRegen2h2"] = { type = "Spawn", tier = 2, "Regenerate 0.9% of Mana per second", statOrder = { 1492 }, level = 30, group = "WeaponTreeBaseManaRegeneration", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0, 1000, 0 }, modTags = { }, }, + ["WeaponTreeBaseManaRegen2h3"] = { type = "Spawn", tier = 3, "Regenerate 1% of Mana per second", statOrder = { 1492 }, level = 60, group = "WeaponTreeBaseManaRegeneration", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0, 1000, 0 }, modTags = { }, }, + ["WeaponTreeBaseManaRegenMoreMana1"] = { type = "Spawn", tier = 1, "Regenerate 0.2% of Mana per second", "5% more maximum Mana", statOrder = { 1492, 10390 }, level = 1, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeBaseManaRegenMoreMana2"] = { type = "Spawn", tier = 2, "Regenerate 0.3% of Mana per second", "5% more maximum Mana", statOrder = { 1492, 10390 }, level = 30, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeBaseManaRegenMoreMana3"] = { type = "Spawn", tier = 3, "Regenerate 0.4% of Mana per second", "5% more maximum Mana", statOrder = { 1492, 10390 }, level = 60, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeBaseManaRegen2hMoreMana1"] = { type = "Spawn", tier = 1, "Regenerate 0.5% of Mana per second", "8% more maximum Mana", statOrder = { 1492, 10390 }, level = 1, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeBaseManaRegen2hMoreMana2"] = { type = "Spawn", tier = 2, "Regenerate 0.6% of Mana per second", "8% more maximum Mana", statOrder = { 1492, 10390 }, level = 30, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeBaseManaRegen2hMoreMana3"] = { type = "Spawn", tier = 3, "Regenerate 0.7% of Mana per second", "8% more maximum Mana", statOrder = { 1492, 10390 }, level = 60, group = "WeaponTreeBaseManaRegenerationAndMultiplicativeMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeBaseManaRegenManaCostOfSkills1"] = { type = "Spawn", tier = 1, "Regenerate 0.2% of Mana per second", "10% increased Mana Cost of Skills", statOrder = { 1492, 1794 }, level = 10, group = "WeaponTreeBaseManaRegenerationAndManaCostOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeBaseManaRegenManaCostOfSkills2"] = { type = "Spawn", tier = 2, "Regenerate 0.3% of Mana per second", "10% increased Mana Cost of Skills", statOrder = { 1492, 1794 }, level = 50, group = "WeaponTreeBaseManaRegenerationAndManaCostOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeBaseManaRegenManaCostOfSkills3"] = { type = "Spawn", tier = 3, "Regenerate 0.4% of Mana per second", "10% increased Mana Cost of Skills", statOrder = { 1492, 1794 }, level = 80, group = "WeaponTreeBaseManaRegenerationAndManaCostOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeBaseManaRegen2hManaCostOfSkills1"] = { type = "Spawn", tier = 1, "Regenerate 0.5% of Mana per second", "15% increased Mana Cost of Skills", statOrder = { 1492, 1794 }, level = 10, group = "WeaponTreeBaseManaRegenerationAndManaCostOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeBaseManaRegen2hManaCostOfSkills2"] = { type = "Spawn", tier = 2, "Regenerate 0.6% of Mana per second", "15% increased Mana Cost of Skills", statOrder = { 1492, 1794 }, level = 50, group = "WeaponTreeBaseManaRegenerationAndManaCostOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeBaseManaRegen2hManaCostOfSkills3"] = { type = "Spawn", tier = 3, "Regenerate 0.7% of Mana per second", "15% increased Mana Cost of Skills", statOrder = { 1492, 1794 }, level = 80, group = "WeaponTreeBaseManaRegenerationAndManaCostOfSkills", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeMinionCriticalStrikeChanceMinionAttackAndCastSpeed1"] = { type = "Spawn", tier = 1, "Minions have +1% to Critical Strike Chance", "Minions have 10% reduced Attack and Cast Speed", statOrder = { 9077, 9080 }, level = 10, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionCriticalStrikeChanceMinionAttackAndCastSpeed2"] = { type = "Spawn", tier = 2, "Minions have +1.2% to Critical Strike Chance", "Minions have 10% reduced Attack and Cast Speed", statOrder = { 9077, 9080 }, level = 50, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionCriticalStrikeChanceMinionAttackAndCastSpeed3"] = { type = "Spawn", tier = 3, "Minions have +1.4% to Critical Strike Chance", "Minions have 10% reduced Attack and Cast Speed", statOrder = { 9077, 9080 }, level = 80, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionCriticalStrikeChance2hMinionAttackAndCastSpeed1"] = { type = "Spawn", tier = 1, "Minions have +1.7% to Critical Strike Chance", "Minions have 15% reduced Attack and Cast Speed", statOrder = { 9077, 9080 }, level = 10, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionCriticalStrikeChance2hMinionAttackAndCastSpeed2"] = { type = "Spawn", tier = 2, "Minions have +2% to Critical Strike Chance", "Minions have 15% reduced Attack and Cast Speed", statOrder = { 9077, 9080 }, level = 50, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionCriticalStrikeChance2hMinionAttackAndCastSpeed3"] = { type = "Spawn", tier = 3, "Minions have +2.3% to Critical Strike Chance", "Minions have 15% reduced Attack and Cast Speed", statOrder = { 9077, 9080 }, level = 80, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMinionAttackAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionReducedCriticalStrikeChanceMinionCriticalStrikeMultiplier1"] = { type = "Spawn", tier = 1, "Minions have -1.5% to Critical Strike Chance", "Minions have +60% to Critical Strike Multiplier", statOrder = { 9077, 9101 }, level = 10, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionReducedCriticalStrikeChanceMinionCriticalStrikeMultiplier2"] = { type = "Spawn", tier = 2, "Minions have -1.5% to Critical Strike Chance", "Minions have +80% to Critical Strike Multiplier", statOrder = { 9077, 9101 }, level = 50, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionReducedCriticalStrikeChanceMinionCriticalStrikeMultiplier3"] = { type = "Spawn", tier = 3, "Minions have -1.5% to Critical Strike Chance", "Minions have +100% to Critical Strike Multiplier", statOrder = { 9077, 9101 }, level = 80, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionReducedCriticalStrikeChance2hMinionCriticalStrikeMultiplier1"] = { type = "Spawn", tier = 1, "Minions have -1.5% to Critical Strike Chance", "Minions have +100% to Critical Strike Multiplier", statOrder = { 9077, 9101 }, level = 10, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionReducedCriticalStrikeChance2hMinionCriticalStrikeMultiplier2"] = { type = "Spawn", tier = 2, "Minions have -1.5% to Critical Strike Chance", "Minions have +130% to Critical Strike Multiplier", statOrder = { 9077, 9101 }, level = 50, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionReducedCriticalStrikeChance2hMinionCriticalStrikeMultiplier3"] = { type = "Spawn", tier = 3, "Minions have -1.5% to Critical Strike Chance", "Minions have +160% to Critical Strike Multiplier", statOrder = { 9077, 9101 }, level = 80, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionCriticalStrikeChance1"] = { type = "Spawn", tier = 1, "Minions have +0.4% to Critical Strike Chance", statOrder = { 9077 }, level = 1, group = "WeaponTreeMinionBaseCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, + ["WeaponTreeMinionCriticalStrikeChance2"] = { type = "Spawn", tier = 2, "Minions have +0.6% to Critical Strike Chance", statOrder = { 9077 }, level = 30, group = "WeaponTreeMinionBaseCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, + ["WeaponTreeMinionCriticalStrikeChance3"] = { type = "Spawn", tier = 3, "Minions have +0.8% to Critical Strike Chance", statOrder = { 9077 }, level = 60, group = "WeaponTreeMinionBaseCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, + ["WeaponTreeMinionCriticalStrikeChance2h1"] = { type = "Spawn", tier = 1, "Minions have +0.7% to Critical Strike Chance", statOrder = { 9077 }, level = 1, group = "WeaponTreeMinionBaseCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, + ["WeaponTreeMinionCriticalStrikeChance2h2"] = { type = "Spawn", tier = 2, "Minions have +1% to Critical Strike Chance", statOrder = { 9077 }, level = 30, group = "WeaponTreeMinionBaseCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, + ["WeaponTreeMinionCriticalStrikeChance2h3"] = { type = "Spawn", tier = 3, "Minions have +1.3% to Critical Strike Chance", statOrder = { 9077 }, level = 60, group = "WeaponTreeMinionBaseCriticalStrikeChance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, + ["WeaponTreeMinionCriticalStrikeChanceMinionCriticalStrikeMultiplier1"] = { type = "Spawn", tier = 1, "Minions have +0.2% to Critical Strike Chance", "Minions have +25% to Critical Strike Multiplier", statOrder = { 9077, 9101 }, level = 10, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionCriticalStrikeChanceMinionCriticalStrikeMultiplier2"] = { type = "Spawn", tier = 2, "Minions have +0.3% to Critical Strike Chance", "Minions have +25% to Critical Strike Multiplier", statOrder = { 9077, 9101 }, level = 50, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionCriticalStrikeChanceMinionCriticalStrikeMultiplier3"] = { type = "Spawn", tier = 3, "Minions have +0.4% to Critical Strike Chance", "Minions have +25% to Critical Strike Multiplier", statOrder = { 9077, 9101 }, level = 80, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionCriticalStrikeChance2hMinionCriticalStrikeMultiplier1"] = { type = "Spawn", tier = 1, "Minions have +0.3% to Critical Strike Chance", "Minions have +35% to Critical Strike Multiplier", statOrder = { 9077, 9101 }, level = 10, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionCriticalStrikeChance2hMinionCriticalStrikeMultiplier2"] = { type = "Spawn", tier = 2, "Minions have +0.5% to Critical Strike Chance", "Minions have +35% to Critical Strike Multiplier", statOrder = { 9077, 9101 }, level = 50, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionCriticalStrikeChance2hMinionCriticalStrikeMultiplier3"] = { type = "Spawn", tier = 3, "Minions have +0.7% to Critical Strike Chance", "Minions have +35% to Critical Strike Multiplier", statOrder = { 9077, 9101 }, level = 80, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndMultiplier", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionCriticalStrikeChanceReducedMinionAuraEffect1"] = { type = "Spawn", tier = 1, "15% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +1% to Critical Strike Chance", statOrder = { 2054, 9077 }, level = 10, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndAuraEffectOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionCriticalStrikeChanceReducedMinionAuraEffect2"] = { type = "Spawn", tier = 2, "15% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +1.2% to Critical Strike Chance", statOrder = { 2054, 9077 }, level = 50, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndAuraEffectOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionCriticalStrikeChanceReducedMinionAuraEffect3"] = { type = "Spawn", tier = 3, "15% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +1.4% to Critical Strike Chance", statOrder = { 2054, 9077 }, level = 80, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndAuraEffectOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionCriticalStrikeChance2hReducedMinionAuraEffect1"] = { type = "Spawn", tier = 1, "25% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +1.7% to Critical Strike Chance", statOrder = { 2054, 9077 }, level = 10, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndAuraEffectOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionCriticalStrikeChance2hReducedMinionAuraEffect2"] = { type = "Spawn", tier = 2, "25% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +2% to Critical Strike Chance", statOrder = { 2054, 9077 }, level = 50, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndAuraEffectOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionCriticalStrikeChance2hReducedMinionAuraEffect3"] = { type = "Spawn", tier = 3, "25% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +2.3% to Critical Strike Chance", statOrder = { 2054, 9077 }, level = 80, group = "WeaponTreeMinionBaseCriticalStrikeChanceAndAuraEffectOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAttackAndCastSpeedMinionNoExtraCritDamage1"] = { type = "Spawn", tier = 1, "Minions have 12% increased Attack and Cast Speed", "Minion Critical Strikes do not deal extra Damage", statOrder = { 9080, 9132 }, level = 10, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionNoExtraCritDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAttackAndCastSpeedMinionNoExtraCritDamage2"] = { type = "Spawn", tier = 2, "Minions have 16% increased Attack and Cast Speed", "Minion Critical Strikes do not deal extra Damage", statOrder = { 9080, 9132 }, level = 50, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionNoExtraCritDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAttackAndCastSpeedMinionNoExtraCritDamage3"] = { type = "Spawn", tier = 3, "Minions have 20% increased Attack and Cast Speed", "Minion Critical Strikes do not deal extra Damage", statOrder = { 9080, 9132 }, level = 80, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionNoExtraCritDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAttackAndCastSpeed2hMinionNoExtraCritDamage1"] = { type = "Spawn", tier = 1, "Minions have 18% increased Attack and Cast Speed", "Minion Critical Strikes do not deal extra Damage", statOrder = { 9080, 9132 }, level = 10, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionNoExtraCritDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAttackAndCastSpeed2hMinionNoExtraCritDamage2"] = { type = "Spawn", tier = 2, "Minions have 24% increased Attack and Cast Speed", "Minion Critical Strikes do not deal extra Damage", statOrder = { 9080, 9132 }, level = 50, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionNoExtraCritDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAttackAndCastSpeed2hMinionNoExtraCritDamage3"] = { type = "Spawn", tier = 3, "Minions have 30% increased Attack and Cast Speed", "Minion Critical Strikes do not deal extra Damage", statOrder = { 9080, 9132 }, level = 80, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionNoExtraCritDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAttackAndCastSpeed1"] = { type = "Spawn", tier = 1, "Minions have 8% increased Attack and Cast Speed", statOrder = { 9080 }, level = 1, group = "WeaponTreeMinionAttackSpeedAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, + ["WeaponTreeMinionAttackAndCastSpeed2"] = { type = "Spawn", tier = 2, "Minions have 10% increased Attack and Cast Speed", statOrder = { 9080 }, level = 30, group = "WeaponTreeMinionAttackSpeedAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, + ["WeaponTreeMinionAttackAndCastSpeed3"] = { type = "Spawn", tier = 3, "Minions have 12% increased Attack and Cast Speed", statOrder = { 9080 }, level = 60, group = "WeaponTreeMinionAttackSpeedAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, + ["WeaponTreeMinionAttackAndCastSpeed2h1"] = { type = "Spawn", tier = 1, "Minions have 14% increased Attack and Cast Speed", statOrder = { 9080 }, level = 1, group = "WeaponTreeMinionAttackSpeedAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, + ["WeaponTreeMinionAttackAndCastSpeed2h2"] = { type = "Spawn", tier = 2, "Minions have 18% increased Attack and Cast Speed", statOrder = { 9080 }, level = 30, group = "WeaponTreeMinionAttackSpeedAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, + ["WeaponTreeMinionAttackAndCastSpeed2h3"] = { type = "Spawn", tier = 3, "Minions have 22% increased Attack and Cast Speed", statOrder = { 9080 }, level = 60, group = "WeaponTreeMinionAttackSpeedAndCastSpeed", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 5000, 5000, 0 }, modTags = { }, }, + ["WeaponTreeMinionAttackAndCastSpeedMinionDamageTaken1"] = { type = "Spawn", tier = 1, "Minions have 12% increased Attack and Cast Speed", "Minions take 15% increased Damage", statOrder = { 9080, 9109 }, level = 10, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAttackAndCastSpeedMinionDamageTaken2"] = { type = "Spawn", tier = 2, "Minions have 16% increased Attack and Cast Speed", "Minions take 15% increased Damage", statOrder = { 9080, 9109 }, level = 50, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAttackAndCastSpeedMinionDamageTaken3"] = { type = "Spawn", tier = 3, "Minions have 20% increased Attack and Cast Speed", "Minions take 15% increased Damage", statOrder = { 9080, 9109 }, level = 80, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAttackAndCastSpeed2hMinionDamageTaken1"] = { type = "Spawn", tier = 1, "Minions have 18% increased Attack and Cast Speed", "Minions take 25% increased Damage", statOrder = { 9080, 9109 }, level = 10, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAttackAndCastSpeed2hMinionDamageTaken2"] = { type = "Spawn", tier = 2, "Minions have 24% increased Attack and Cast Speed", "Minions take 25% increased Damage", statOrder = { 9080, 9109 }, level = 50, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAttackAndCastSpeed2hMinionDamageTaken3"] = { type = "Spawn", tier = 3, "Minions have 30% increased Attack and Cast Speed", "Minions take 25% increased Damage", statOrder = { 9080, 9109 }, level = 80, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAttackAndCastSpeedReducedMinionDamageTaken1"] = { type = "Spawn", tier = 1, "Minions have 4% increased Attack and Cast Speed", "Minions take 10% reduced Damage", statOrder = { 9080, 9109 }, level = 10, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAttackAndCastSpeedReducedMinionDamageTaken2"] = { type = "Spawn", tier = 2, "Minions have 5% increased Attack and Cast Speed", "Minions take 10% reduced Damage", statOrder = { 9080, 9109 }, level = 50, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAttackAndCastSpeedReducedMinionDamageTaken3"] = { type = "Spawn", tier = 3, "Minions have 6% increased Attack and Cast Speed", "Minions take 10% reduced Damage", statOrder = { 9080, 9109 }, level = 80, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAttackAndCastSpeed2hReducedMinionDamageTaken1"] = { type = "Spawn", tier = 1, "Minions have 8% increased Attack and Cast Speed", "Minions take 15% reduced Damage", statOrder = { 9080, 9109 }, level = 10, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAttackAndCastSpeed2hReducedMinionDamageTaken2"] = { type = "Spawn", tier = 2, "Minions have 10% increased Attack and Cast Speed", "Minions take 15% reduced Damage", statOrder = { 9080, 9109 }, level = 50, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAttackAndCastSpeed2hReducedMinionDamageTaken3"] = { type = "Spawn", tier = 3, "Minions have 12% increased Attack and Cast Speed", "Minions take 15% reduced Damage", statOrder = { 9080, 9109 }, level = 80, group = "WeaponTreeMinionAttackSpeedAndCastSpeedAndMinionDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionAccuracyReducedMinionAuraEffect1"] = { type = "Spawn", tier = 1, "15% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +400 to Accuracy Rating", statOrder = { 2054, 9074 }, level = 10, group = "WeaponTreeMinionFlatAccuracyRatingAndEffectOfAurasOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAccuracyReducedMinionAuraEffect2"] = { type = "Spawn", tier = 2, "15% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +500 to Accuracy Rating", statOrder = { 2054, 9074 }, level = 50, group = "WeaponTreeMinionFlatAccuracyRatingAndEffectOfAurasOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAccuracyReducedMinionAuraEffect3"] = { type = "Spawn", tier = 3, "15% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +600 to Accuracy Rating", statOrder = { 2054, 9074 }, level = 80, group = "WeaponTreeMinionFlatAccuracyRatingAndEffectOfAurasOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAccuracy2hReducedMinionAuraEffect1"] = { type = "Spawn", tier = 1, "15% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +700 to Accuracy Rating", statOrder = { 2054, 9074 }, level = 10, group = "WeaponTreeMinionFlatAccuracyRatingAndEffectOfAurasOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAccuracy2hReducedMinionAuraEffect2"] = { type = "Spawn", tier = 2, "15% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +850 to Accuracy Rating", statOrder = { 2054, 9074 }, level = 50, group = "WeaponTreeMinionFlatAccuracyRatingAndEffectOfAurasOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAccuracy2hReducedMinionAuraEffect3"] = { type = "Spawn", tier = 3, "15% reduced effect of Non-Curse Auras from your Skills on your Minions", "Minions have +1000 to Accuracy Rating", statOrder = { 2054, 9074 }, level = 80, group = "WeaponTreeMinionFlatAccuracyRatingAndEffectOfAurasOnMinions", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAccuracy1"] = { type = "Spawn", tier = 1, "Minions have +200 to Accuracy Rating", statOrder = { 9074 }, level = 1, group = "WeaponTreeMinionFlatAccuracyRating", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAccuracy2"] = { type = "Spawn", tier = 2, "Minions have +250 to Accuracy Rating", statOrder = { 9074 }, level = 30, group = "WeaponTreeMinionFlatAccuracyRating", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAccuracy3"] = { type = "Spawn", tier = 3, "Minions have +300 to Accuracy Rating", statOrder = { 9074 }, level = 60, group = "WeaponTreeMinionFlatAccuracyRating", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAccuracy2h1"] = { type = "Spawn", tier = 1, "Minions have +300 to Accuracy Rating", statOrder = { 9074 }, level = 1, group = "WeaponTreeMinionFlatAccuracyRating", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAccuracy2h2"] = { type = "Spawn", tier = 2, "Minions have +400 to Accuracy Rating", statOrder = { 9074 }, level = 30, group = "WeaponTreeMinionFlatAccuracyRating", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAccuracy2h3"] = { type = "Spawn", tier = 3, "Minions have +500 to Accuracy Rating", statOrder = { 9074 }, level = 60, group = "WeaponTreeMinionFlatAccuracyRating", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAccuracyMinionEvasion1"] = { type = "Spawn", tier = 1, "Minions have +100 to Accuracy Rating", "Minions have 25% increased Evasion Rating", statOrder = { 9074, 9113 }, level = 10, group = "WeaponTreeMinionFlatAccuracyRatingAndMinionEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAccuracyMinionEvasion2"] = { type = "Spawn", tier = 2, "Minions have +150 to Accuracy Rating", "Minions have 25% increased Evasion Rating", statOrder = { 9074, 9113 }, level = 50, group = "WeaponTreeMinionFlatAccuracyRatingAndMinionEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAccuracyMinionEvasion3"] = { type = "Spawn", tier = 3, "Minions have +200 to Accuracy Rating", "Minions have 25% increased Evasion Rating", statOrder = { 9074, 9113 }, level = 80, group = "WeaponTreeMinionFlatAccuracyRatingAndMinionEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAccuracy2hMinionEvasion1"] = { type = "Spawn", tier = 1, "Minions have +160 to Accuracy Rating", "Minions have 40% increased Evasion Rating", statOrder = { 9074, 9113 }, level = 10, group = "WeaponTreeMinionFlatAccuracyRatingAndMinionEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAccuracy2hMinionEvasion2"] = { type = "Spawn", tier = 2, "Minions have +240 to Accuracy Rating", "Minions have 40% increased Evasion Rating", statOrder = { 9074, 9113 }, level = 50, group = "WeaponTreeMinionFlatAccuracyRatingAndMinionEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAccuracy2hMinionEvasion3"] = { type = "Spawn", tier = 3, "Minions have +320 to Accuracy Rating", "Minions have 40% increased Evasion Rating", statOrder = { 9074, 9113 }, level = 80, group = "WeaponTreeMinionFlatAccuracyRatingAndMinionEvasionPercent", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMinionAlwaysHitMinionCannotCrit"] = { type = "Spawn", tier = 1, "Minions never deal Critical Strikes", "Minions' Hits can't be Evaded", statOrder = { 9089, 9116 }, level = 60, group = "WeaponTreeMinionAlwaysHitAndCannotCrit", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeSpellBlockNoChanceToBlock1"] = { type = "Spawn", tier = 1, "16% Chance to Block Spell Damage", "No Chance to Block", statOrder = { 1072, 3174 }, level = 15, group = "WeaponTreeSpellBlockNoChanceToBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellBlockNoChanceToBlock2"] = { type = "Spawn", tier = 2, "20% Chance to Block Spell Damage", "No Chance to Block", statOrder = { 1072, 3174 }, level = 48, group = "WeaponTreeSpellBlockNoChanceToBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellBlockNoChanceToBlock3"] = { type = "Spawn", tier = 3, "24% Chance to Block Spell Damage", "No Chance to Block", statOrder = { 1072, 3174 }, level = 78, group = "WeaponTreeSpellBlockNoChanceToBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 125, 0 }, modTags = { }, }, + ["WeaponTreeSpellBlockReducedLocalBlock1"] = { type = "Spawn", tier = 1, "8% Chance to Block Spell Damage", "-5% Chance to Block", statOrder = { 1072, 2158 }, level = 1, group = "WeaponTreeSpellBlockReducedLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellBlockReducedLocalBlock2"] = { type = "Spawn", tier = 2, "10% Chance to Block Spell Damage", "-5% Chance to Block", statOrder = { 1072, 2158 }, level = 35, group = "WeaponTreeSpellBlockReducedLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellBlockReducedLocalBlock3"] = { type = "Spawn", tier = 3, "12% Chance to Block Spell Damage", "-5% Chance to Block", statOrder = { 1072, 2158 }, level = 70, group = "WeaponTreeSpellBlockReducedLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellBlockDamageFromBlockedHits1"] = { type = "Spawn", tier = 1, "8% Chance to Block Spell Damage", "You take 10% of Damage from Blocked Hits", statOrder = { 1072, 4890 }, level = 1, group = "WeaponTreeSpellBlockDamageFromBlockedHits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellBlockDamageFromBlockedHits2"] = { type = "Spawn", tier = 2, "10% Chance to Block Spell Damage", "You take 10% of Damage from Blocked Hits", statOrder = { 1072, 4890 }, level = 35, group = "WeaponTreeSpellBlockDamageFromBlockedHits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellBlockDamageFromBlockedHits3"] = { type = "Spawn", tier = 3, "12% Chance to Block Spell Damage", "You take 10% of Damage from Blocked Hits", statOrder = { 1072, 4890 }, level = 70, group = "WeaponTreeSpellBlockDamageFromBlockedHits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellBlock1"] = { type = "Spawn", tier = 1, "3% Chance to Block Spell Damage", statOrder = { 1072 }, level = 1, group = "WeaponTreeSpellBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeSpellBlock2"] = { type = "Spawn", tier = 2, "4% Chance to Block Spell Damage", statOrder = { 1072 }, level = 35, group = "WeaponTreeSpellBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeSpellBlock3"] = { type = "Spawn", tier = 3, "5% Chance to Block Spell Damage", statOrder = { 1072 }, level = 70, group = "WeaponTreeSpellBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeSpellBlockMoreMana1"] = { type = "Spawn", tier = 1, "2% Chance to Block Spell Damage", "5% more maximum Mana", statOrder = { 1072, 10390 }, level = 48, group = "WeaponTreeSpellBlockMoreMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellBlockMoreMana2"] = { type = "Spawn", tier = 2, "3% Chance to Block Spell Damage", "5% more maximum Mana", statOrder = { 1072, 10390 }, level = 78, group = "WeaponTreeSpellBlockMoreMana", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalBlockCannotBlockSpells1"] = { type = "Spawn", tier = 1, "+8% Chance to Block", "Cannot Block Spell Damage", statOrder = { 2158, 5321 }, level = 15, group = "WeaponTreeLocalBlockCannotBlockSpells", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 125, 0 }, modTags = { }, }, + ["WeaponTreeLocalBlockCannotBlockSpells2"] = { type = "Spawn", tier = 2, "+10% Chance to Block", "Cannot Block Spell Damage", statOrder = { 2158, 5321 }, level = 48, group = "WeaponTreeLocalBlockCannotBlockSpells", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 125, 0 }, modTags = { }, }, + ["WeaponTreeLocalBlockCannotBlockSpells3"] = { type = "Spawn", tier = 3, "+12% Chance to Block", "Cannot Block Spell Damage", statOrder = { 2158, 5321 }, level = 78, group = "WeaponTreeLocalBlockCannotBlockSpells", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 125, 0 }, modTags = { }, }, + ["WeaponTreeLocalBlockDamageFromBlockedHits1"] = { type = "Spawn", tier = 1, "+8% Chance to Block", "You take 10% of Damage from Blocked Hits", statOrder = { 2158, 4890 }, level = 1, group = "WeaponTreeLocalBlockDamageFromBlockedHits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalBlockDamageFromBlockedHits2"] = { type = "Spawn", tier = 2, "+10% Chance to Block", "You take 10% of Damage from Blocked Hits", statOrder = { 2158, 4890 }, level = 35, group = "WeaponTreeLocalBlockDamageFromBlockedHits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalBlockDamageFromBlockedHits3"] = { type = "Spawn", tier = 3, "+12% Chance to Block", "You take 10% of Damage from Blocked Hits", statOrder = { 2158, 4890 }, level = 70, group = "WeaponTreeLocalBlockDamageFromBlockedHits", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalBlockReducedLocalDefences1"] = { type = "Spawn", tier = 1, "40% reduced Armour, Evasion and Energy Shield", "+6% Chance to Block", statOrder = { 1466, 2158 }, level = 1, group = "WeaponTreeLocalBlockReducedLocalDefences", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalBlockReducedLocalDefences2"] = { type = "Spawn", tier = 2, "40% reduced Armour, Evasion and Energy Shield", "+7% Chance to Block", statOrder = { 1466, 2158 }, level = 35, group = "WeaponTreeLocalBlockReducedLocalDefences", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalBlockReducedLocalDefences3"] = { type = "Spawn", tier = 3, "40% reduced Armour, Evasion and Energy Shield", "+8% Chance to Block", statOrder = { 1466, 2158 }, level = 70, group = "WeaponTreeLocalBlockReducedLocalDefences", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalBlock1"] = { type = "Spawn", tier = 1, "+3% Chance to Block", statOrder = { 2158 }, level = 1, group = "WeaponTreeLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalBlock2"] = { type = "Spawn", tier = 2, "+4% Chance to Block", statOrder = { 2158 }, level = 35, group = "WeaponTreeLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalBlock3"] = { type = "Spawn", tier = 3, "+5% Chance to Block", statOrder = { 2158 }, level = 70, group = "WeaponTreeLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalBlockLifeOnBlock1"] = { type = "Spawn", tier = 1, "30 Life gained when you Block", "+2% Chance to Block", statOrder = { 1668, 2158 }, level = 10, group = "WeaponTreeLocalBlockLifeOnBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalBlockLifeOnBlock2"] = { type = "Spawn", tier = 2, "30 Life gained when you Block", "+3% Chance to Block", statOrder = { 1668, 2158 }, level = 42, group = "WeaponTreeLocalBlockLifeOnBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalBlockBlockRecovery1"] = { type = "Spawn", tier = 1, "30% increased Block Recovery", "+2% Chance to Block", statOrder = { 1079, 2158 }, level = 1, group = "WeaponTreeLocalBlockBlockRecovery", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalBlockBlockRecovery2"] = { type = "Spawn", tier = 2, "30% increased Block Recovery", "+3% Chance to Block", statOrder = { 1079, 2158 }, level = 35, group = "WeaponTreeLocalBlockBlockRecovery", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalDefencesReducedMaximumLife1"] = { type = "Spawn", tier = 1, "40% increased Armour, Evasion and Energy Shield", "5% reduced maximum Life", statOrder = { 1466, 1482 }, level = 10, group = "WeaponTreeLocalDefencesReducedMaximumLife", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalDefencesReducedMaximumLife2"] = { type = "Spawn", tier = 2, "50% increased Armour, Evasion and Energy Shield", "5% reduced maximum Life", statOrder = { 1466, 1482 }, level = 42, group = "WeaponTreeLocalDefencesReducedMaximumLife", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalDefencesReducedMaximumLife3"] = { type = "Spawn", tier = 3, "60% increased Armour, Evasion and Energy Shield", "5% reduced maximum Life", statOrder = { 1466, 1482 }, level = 75, group = "WeaponTreeLocalDefencesReducedMaximumLife", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalDefencesReducedLocalBlock1"] = { type = "Spawn", tier = 1, "40% increased Armour, Evasion and Energy Shield", "-5% Chance to Block", statOrder = { 1466, 2158 }, level = 1, group = "WeaponTreeLocalDefencesReducedLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalDefencesReducedLocalBlock2"] = { type = "Spawn", tier = 2, "50% increased Armour, Evasion and Energy Shield", "-5% Chance to Block", statOrder = { 1466, 2158 }, level = 35, group = "WeaponTreeLocalDefencesReducedLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalDefencesReducedLocalBlock3"] = { type = "Spawn", tier = 3, "60% increased Armour, Evasion and Energy Shield", "-5% Chance to Block", statOrder = { 1466, 2158 }, level = 70, group = "WeaponTreeLocalDefencesReducedLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalDefences1"] = { type = "Spawn", tier = 1, "24% increased Armour, Evasion and Energy Shield", statOrder = { 1466 }, level = 1, group = "WeaponTreeLocalDefences", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalDefences2"] = { type = "Spawn", tier = 2, "32% increased Armour, Evasion and Energy Shield", statOrder = { 1466 }, level = 35, group = "WeaponTreeLocalDefences", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalDefences3"] = { type = "Spawn", tier = 3, "40% increased Armour, Evasion and Energy Shield", statOrder = { 1466 }, level = 70, group = "WeaponTreeLocalDefences", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalDefencesReflectDamageTaken1"] = { type = "Spawn", tier = 1, "15% increased Armour, Evasion and Energy Shield", "40% reduced Reflected Damage taken", statOrder = { 1466, 4176 }, level = 20, group = "WeaponTreeLocalDefencesReflectDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalDefencesReflectDamageTaken2"] = { type = "Spawn", tier = 2, "20% increased Armour, Evasion and Energy Shield", "40% reduced Reflected Damage taken", statOrder = { 1466, 4176 }, level = 20, group = "WeaponTreeLocalDefencesReflectDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalDefencesReflectDamageTaken3"] = { type = "Spawn", tier = 3, "25% increased Armour, Evasion and Energy Shield", "40% reduced Reflected Damage taken", statOrder = { 1466, 4176 }, level = 20, group = "WeaponTreeLocalDefencesReflectDamageTaken", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalDefencesOffHandAttackDamage1"] = { type = "Spawn", tier = 1, "25% increased Attack Damage with Off Hand", "15% increased Armour, Evasion and Energy Shield", statOrder = { 1194, 1466 }, level = 10, group = "WeaponTreeLocalDefencesOffHandAttackDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalDefencesOffHandAttackDamage2"] = { type = "Spawn", tier = 2, "25% increased Attack Damage with Off Hand", "20% increased Armour, Evasion and Energy Shield", statOrder = { 1194, 1466 }, level = 42, group = "WeaponTreeLocalDefencesOffHandAttackDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalDefencesOffHandAttackDamage3"] = { type = "Spawn", tier = 3, "25% increased Attack Damage with Off Hand", "25% increased Armour, Evasion and Energy Shield", statOrder = { 1194, 1466 }, level = 75, group = "WeaponTreeLocalDefencesOffHandAttackDamage", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeFireResistanceReducedColdResistance1"] = { type = "Spawn", tier = 1, "+30% to Fire Resistance", "-20% to Cold Resistance", statOrder = { 1536, 1542 }, level = 1, group = "WeaponTreeFireResistanceReducedColdResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeFireResistanceReducedColdResistance2"] = { type = "Spawn", tier = 2, "+36% to Fire Resistance", "-20% to Cold Resistance", statOrder = { 1536, 1542 }, level = 35, group = "WeaponTreeFireResistanceReducedColdResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeFireResistanceReducedColdResistance3"] = { type = "Spawn", tier = 3, "+42% to Fire Resistance", "-20% to Cold Resistance", statOrder = { 1536, 1542 }, level = 70, group = "WeaponTreeFireResistanceReducedColdResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeFireResistanceReducedLightningResistance1"] = { type = "Spawn", tier = 1, "+30% to Fire Resistance", "-20% to Lightning Resistance", statOrder = { 1536, 1547 }, level = 1, group = "WeaponTreeFireResistanceReducedLightningResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeFireResistanceReducedLightningResistance2"] = { type = "Spawn", tier = 2, "+36% to Fire Resistance", "-20% to Lightning Resistance", statOrder = { 1536, 1547 }, level = 35, group = "WeaponTreeFireResistanceReducedLightningResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeFireResistanceReducedLightningResistance3"] = { type = "Spawn", tier = 3, "+42% to Fire Resistance", "-20% to Lightning Resistance", statOrder = { 1536, 1547 }, level = 70, group = "WeaponTreeFireResistanceReducedLightningResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeColdResistanceReducedFireResistance1"] = { type = "Spawn", tier = 1, "-20% to Fire Resistance", "+30% to Cold Resistance", statOrder = { 1536, 1542 }, level = 1, group = "WeaponTreeColdResistanceReducedFireResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeColdResistanceReducedFireResistance2"] = { type = "Spawn", tier = 2, "-20% to Fire Resistance", "+36% to Cold Resistance", statOrder = { 1536, 1542 }, level = 35, group = "WeaponTreeColdResistanceReducedFireResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeColdResistanceReducedFireResistance3"] = { type = "Spawn", tier = 3, "-20% to Fire Resistance", "+42% to Cold Resistance", statOrder = { 1536, 1542 }, level = 70, group = "WeaponTreeColdResistanceReducedFireResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeColdResistanceReducedLightningResistance1"] = { type = "Spawn", tier = 1, "+30% to Cold Resistance", "-20% to Lightning Resistance", statOrder = { 1542, 1547 }, level = 1, group = "WeaponTreeColdResistanceReducedLightningResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeColdResistanceReducedLightningResistance2"] = { type = "Spawn", tier = 2, "+36% to Cold Resistance", "-20% to Lightning Resistance", statOrder = { 1542, 1547 }, level = 35, group = "WeaponTreeColdResistanceReducedLightningResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeColdResistanceReducedLightningResistance3"] = { type = "Spawn", tier = 3, "+42% to Cold Resistance", "-20% to Lightning Resistance", statOrder = { 1542, 1547 }, level = 70, group = "WeaponTreeColdResistanceReducedLightningResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeLightningResistanceReducedColdResistance1"] = { type = "Spawn", tier = 1, "-20% to Cold Resistance", "+30% to Lightning Resistance", statOrder = { 1542, 1547 }, level = 1, group = "WeaponTreeLightningResistanceReducedColdResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeLightningResistanceReducedColdResistance2"] = { type = "Spawn", tier = 2, "-20% to Cold Resistance", "+36% to Lightning Resistance", statOrder = { 1542, 1547 }, level = 35, group = "WeaponTreeLightningResistanceReducedColdResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeLightningResistanceReducedColdResistance3"] = { type = "Spawn", tier = 3, "-20% to Cold Resistance", "+42% to Lightning Resistance", statOrder = { 1542, 1547 }, level = 70, group = "WeaponTreeLightningResistanceReducedColdResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeLightningResistanceReducedFireResistance1"] = { type = "Spawn", tier = 1, "-20% to Fire Resistance", "+30% to Lightning Resistance", statOrder = { 1536, 1547 }, level = 1, group = "WeaponTreeLightningResistanceReducedFireResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeLightningResistanceReducedFireResistance2"] = { type = "Spawn", tier = 2, "-20% to Fire Resistance", "+36% to Lightning Resistance", statOrder = { 1536, 1547 }, level = 35, group = "WeaponTreeLightningResistanceReducedFireResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeLightningResistanceReducedFireResistance3"] = { type = "Spawn", tier = 3, "-20% to Fire Resistance", "+42% to Lightning Resistance", statOrder = { 1536, 1547 }, level = 70, group = "WeaponTreeLightningResistanceReducedFireResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeChaosResistanceReducedElementalResistance1"] = { type = "Spawn", tier = 1, "-6% to all Elemental Resistances", "+19% to Chaos Resistance", statOrder = { 1530, 1552 }, level = 10, group = "WeaponTreeChaosResistanceReducedElementalResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreeChaosResistanceReducedElementalResistance2"] = { type = "Spawn", tier = 2, "-6% to all Elemental Resistances", "+23% to Chaos Resistance", statOrder = { 1530, 1552 }, level = 42, group = "WeaponTreeChaosResistanceReducedElementalResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreeChaosResistanceReducedElementalResistance3"] = { type = "Spawn", tier = 3, "-6% to all Elemental Resistances", "+27% to Chaos Resistance", statOrder = { 1530, 1552 }, level = 75, group = "WeaponTreeChaosResistanceReducedElementalResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreeElementalResistanceReducedChaosResistance1"] = { type = "Spawn", tier = 1, "+10% to all Elemental Resistances", "-13% to Chaos Resistance", statOrder = { 1530, 1552 }, level = 10, group = "WeaponTreeElementalResistanceReducedChaosResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreeElementalResistanceReducedChaosResistance2"] = { type = "Spawn", tier = 2, "+12% to all Elemental Resistances", "-13% to Chaos Resistance", statOrder = { 1530, 1552 }, level = 42, group = "WeaponTreeElementalResistanceReducedChaosResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreeElementalResistanceReducedChaosResistance3"] = { type = "Spawn", tier = 3, "+14% to all Elemental Resistances", "-13% to Chaos Resistance", statOrder = { 1530, 1552 }, level = 75, group = "WeaponTreeElementalResistanceReducedChaosResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreeElementalResistanceReducedLocalDefences1"] = { type = "Spawn", tier = 1, "25% reduced Armour, Evasion and Energy Shield", "+10% to all Elemental Resistances", statOrder = { 1466, 1530 }, level = 1, group = "WeaponTreeElementalResistanceReducedLocalDefences", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreeElementalResistanceReducedLocalDefences2"] = { type = "Spawn", tier = 2, "25% reduced Armour, Evasion and Energy Shield", "+12% to all Elemental Resistances", statOrder = { 1466, 1530 }, level = 35, group = "WeaponTreeElementalResistanceReducedLocalDefences", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreeElementalResistanceReducedLocalDefences3"] = { type = "Spawn", tier = 3, "25% reduced Armour, Evasion and Energy Shield", "+14% to all Elemental Resistances", statOrder = { 1466, 1530 }, level = 70, group = "WeaponTreeElementalResistanceReducedLocalDefences", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreeElementalResistanceReducedLocalBlock1"] = { type = "Spawn", tier = 1, "+10% to all Elemental Resistances", "-4% Chance to Block", statOrder = { 1530, 2158 }, level = 1, group = "WeaponTreeElementalResistanceReducedLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["WeaponTreeElementalResistanceReducedLocalBlock2"] = { type = "Spawn", tier = 2, "+12% to all Elemental Resistances", "-4% Chance to Block", statOrder = { 1530, 2158 }, level = 35, group = "WeaponTreeElementalResistanceReducedLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["WeaponTreeElementalResistanceReducedLocalBlock3"] = { type = "Spawn", tier = 3, "+14% to all Elemental Resistances", "-4% Chance to Block", statOrder = { 1530, 2158 }, level = 70, group = "WeaponTreeElementalResistanceReducedLocalBlock", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["WeaponTreeChaosResistanceReducedMaximumLife1"] = { type = "Spawn", tier = 1, "5% reduced maximum Life", "+19% to Chaos Resistance", statOrder = { 1482, 1552 }, level = 10, group = "WeaponTreeChaosResistanceReducedMaximumLife", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreeChaosResistanceReducedMaximumLife2"] = { type = "Spawn", tier = 2, "5% reduced maximum Life", "+23% to Chaos Resistance", statOrder = { 1482, 1552 }, level = 42, group = "WeaponTreeChaosResistanceReducedMaximumLife", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreeChaosResistanceReducedMaximumLife3"] = { type = "Spawn", tier = 3, "5% reduced maximum Life", "+27% to Chaos Resistance", statOrder = { 1482, 1552 }, level = 75, group = "WeaponTreeChaosResistanceReducedMaximumLife", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreeMaximumFireResistanceReducedMaximumColdResistance1"] = { type = "Spawn", tier = 1, "+3% to maximum Fire Resistance", "-2% to maximum Cold Resistance", statOrder = { 1534, 1540 }, level = 45, group = "WeaponTreeMaximumFireResistanceReducedMaximumColdResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeMaximumFireResistanceReducedMaximumColdResistance2"] = { type = "Spawn", tier = 2, "+4% to maximum Fire Resistance", "-2% to maximum Cold Resistance", statOrder = { 1534, 1540 }, level = 82, group = "WeaponTreeMaximumFireResistanceReducedMaximumColdResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeMaximumFireResistanceReducedMaximumLightningResistance1"] = { type = "Spawn", tier = 1, "+3% to maximum Fire Resistance", "-2% to maximum Lightning Resistance", statOrder = { 1534, 1545 }, level = 45, group = "WeaponTreeMaximumFireResistanceReducedMaximumLightningResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeMaximumFireResistanceReducedMaximumLightningResistance2"] = { type = "Spawn", tier = 2, "+4% to maximum Fire Resistance", "-2% to maximum Lightning Resistance", statOrder = { 1534, 1545 }, level = 82, group = "WeaponTreeMaximumFireResistanceReducedMaximumLightningResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeMaximumColdResistanceReducedMaximumFireResistance1"] = { type = "Spawn", tier = 1, "-2% to maximum Fire Resistance", "+3% to maximum Cold Resistance", statOrder = { 1534, 1540 }, level = 45, group = "WeaponTreeMaximumColdResistanceReducedMaximumFireResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeMaximumColdResistanceReducedMaximumFireResistance2"] = { type = "Spawn", tier = 2, "-2% to maximum Fire Resistance", "+4% to maximum Cold Resistance", statOrder = { 1534, 1540 }, level = 82, group = "WeaponTreeMaximumColdResistanceReducedMaximumFireResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeMaximumColdResistanceReducedMaximumLightningResistance1"] = { type = "Spawn", tier = 1, "+3% to maximum Cold Resistance", "-2% to maximum Lightning Resistance", statOrder = { 1540, 1545 }, level = 45, group = "WeaponTreeMaximumColdResistanceReducedMaximumLightningResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeMaximumColdResistanceReducedMaximumLightningResistance2"] = { type = "Spawn", tier = 2, "+4% to maximum Cold Resistance", "-2% to maximum Lightning Resistance", statOrder = { 1540, 1545 }, level = 82, group = "WeaponTreeMaximumColdResistanceReducedMaximumLightningResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeMaximumLightningResistanceMaximumColdResistance1"] = { type = "Spawn", tier = 1, "-2% to maximum Cold Resistance", "+3% to maximum Lightning Resistance", statOrder = { 1540, 1545 }, level = 45, group = "WeaponTreeMaximumLightningResistanceMaximumColdResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeMaximumLightningResistanceMaximumColdResistance2"] = { type = "Spawn", tier = 2, "-2% to maximum Cold Resistance", "+4% to maximum Lightning Resistance", statOrder = { 1540, 1545 }, level = 82, group = "WeaponTreeMaximumLightningResistanceMaximumColdResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeMaximumLightningResistanceMaximumFireResistance1"] = { type = "Spawn", tier = 1, "-2% to maximum Fire Resistance", "+3% to maximum Lightning Resistance", statOrder = { 1534, 1545 }, level = 45, group = "WeaponTreeMaximumLightningResistanceMaximumFireResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeMaximumLightningResistanceMaximumFireResistance2"] = { type = "Spawn", tier = 2, "-2% to maximum Fire Resistance", "+4% to maximum Lightning Resistance", statOrder = { 1534, 1545 }, level = 82, group = "WeaponTreeMaximumLightningResistanceMaximumFireResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeMaximumElementalResistanceReducedMaximumChaosResistance1"] = { type = "Spawn", tier = 1, "-5% to maximum Chaos Resistance", "+1% to all maximum Elemental Resistances", statOrder = { 1551, 1554 }, level = 60, group = "WeaponTreeMaximumElementalResistanceReducedMaximumChaosResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeMaximumElementalResistanceReducedMaximumChaosResistance2"] = { type = "Spawn", tier = 2, "-5% to maximum Chaos Resistance", "+2% to all maximum Elemental Resistances", statOrder = { 1551, 1554 }, level = 85, group = "WeaponTreeMaximumElementalResistanceReducedMaximumChaosResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeMaximumChaosResistanceReducedMaximumElementalResistance1"] = { type = "Spawn", tier = 1, "+3% to maximum Chaos Resistance", "-1% to all maximum Elemental Resistances", statOrder = { 1551, 1554 }, level = 60, group = "WeaponTreeMaximumChaosResistanceReducedMaximumElementalResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeMaximumChaosResistanceReducedMaximumElementalResistance2"] = { type = "Spawn", tier = 2, "+4% to maximum Chaos Resistance", "-1% to all maximum Elemental Resistances", statOrder = { 1551, 1554 }, level = 85, group = "WeaponTreeMaximumChaosResistanceReducedMaximumElementalResistance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeKeystoneMinionInstability"] = { type = "Spawn", tier = 1, "Minion Instability", statOrder = { 10570 }, level = 30, group = "WeaponTreeMinionInstability", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, modTags = { }, }, + ["WeaponTreeKeystoneResoluteTechnique"] = { type = "Spawn", tier = 1, "Resolute Technique", statOrder = { 10598 }, level = 30, group = "WeaponTreeResoluteTechnique", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, modTags = { }, }, + ["WeaponTreeKeystoneBloodMagic"] = { type = "Spawn", tier = 1, "Blood Magic", statOrder = { 10545 }, level = 30, group = "WeaponTreeBloodMagic", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, modTags = { }, }, + ["WeaponTreeKeystonePainAttunement"] = { type = "Spawn", tier = 1, "Pain Attunement", statOrder = { 10572 }, level = 30, group = "WeaponTreePainAttunement", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, modTags = { }, }, + ["WeaponTreeKeystoneElementalEquilibrium"] = { type = "Spawn", tier = 1, "Elemental Equilibrium", statOrder = { 10554 }, level = 30, group = "WeaponTreeElementalEquilibrium", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, modTags = { }, }, + ["WeaponTreeKeystoneIronGrip"] = { type = "Spawn", tier = 1, "Iron Grip", statOrder = { 10588 }, level = 30, group = "WeaponTreeIronGrip", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, modTags = { }, }, + ["WeaponTreeKeystonePointBlank"] = { type = "Spawn", tier = 1, "Point Blank", statOrder = { 10573 }, level = 30, group = "WeaponTreePointBlank", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, modTags = { }, }, + ["WeaponTreeKeystoneAcrobatics"] = { type = "Spawn", tier = 1, "Acrobatics", statOrder = { 10540 }, level = 30, group = "WeaponTreeAcrobatics", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, modTags = { }, }, + ["WeaponTreeKeystoneGhostReaver"] = { type = "Spawn", tier = 1, "Ghost Reaver", statOrder = { 10560 }, level = 30, group = "WeaponTreeKeystoneGhostReaver", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, modTags = { }, }, + ["WeaponTreeKeystoneVaalPact"] = { type = "Spawn", tier = 1, "Vaal Pact", statOrder = { 10592 }, level = 30, group = "WeaponTreeVaalPact", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, modTags = { }, }, + ["WeaponTreeKeystoneElementalOverload"] = { type = "Spawn", tier = 1, "Elemental Overload", statOrder = { 10555 }, level = 30, group = "WeaponTreeElementalOverload", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, modTags = { }, }, + ["WeaponTreeKeystoneAvatarOfFire"] = { type = "Spawn", tier = 1, "Avatar of Fire", statOrder = { 10543 }, level = 30, group = "WeaponTreeAvatarOfFire", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, modTags = { }, }, + ["WeaponTreeKeystoneEldritchBattery"] = { type = "Spawn", tier = 1, "Eldritch Battery", statOrder = { 10553 }, level = 30, group = "WeaponTreeEldritchBattery", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, modTags = { }, }, + ["WeaponTreeKeystoneAncestralBond"] = { type = "Spawn", tier = 1, "Ancestral Bond", statOrder = { 10542 }, level = 30, group = "WeaponTreeAncestralBond", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, modTags = { }, }, + ["WeaponTreeKeystoneCrimsonDance"] = { type = "Spawn", tier = 1, "Crimson Dance", statOrder = { 10550 }, level = 30, group = "WeaponTreeCrimsonDance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, modTags = { }, }, + ["WeaponTreeKeystonePerfectAgony"] = { type = "Spawn", tier = 1, "Perfect Agony", statOrder = { 10541 }, level = 30, group = "WeaponTreePerfectAgony", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, modTags = { }, }, + ["WeaponTreeKeystoneRunebinder"] = { type = "Spawn", tier = 1, "Runebinder", statOrder = { 10580 }, level = 30, group = "WeaponTreeRunebinder", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, modTags = { }, }, + ["WeaponTreeKeystoneGlancingBlows"] = { type = "Spawn", tier = 1, "Glancing Blows", statOrder = { 10561 }, level = 30, group = "WeaponTreeGlancingBlows", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, modTags = { }, }, + ["WeaponTreeKeystoneCallToArms"] = { type = "Spawn", tier = 1, "Call to Arms", statOrder = { 10546 }, level = 30, group = "WeaponTreeCallToArms", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, modTags = { }, }, + ["WeaponTreeKeystoneTheAgnostic"] = { type = "Spawn", tier = 1, "The Agnostic", statOrder = { 10571 }, level = 30, group = "WeaponTreeTheAgnostic", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, modTags = { }, }, + ["WeaponTreeKeystoneSupremeEgo"] = { type = "Spawn", tier = 1, "Supreme Ego", statOrder = { 10589 }, level = 30, group = "WeaponTreeSupremeEgo", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, modTags = { }, }, + ["WeaponTreeKeystoneTheImpaler"] = { type = "Spawn", tier = 1, "The Impaler", statOrder = { 10565 }, level = 30, group = "WeaponTreeImpaler", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, modTags = { }, }, + ["WeaponTreeKeystoneDoomsday"] = { type = "Spawn", tier = 1, "Hex Master", statOrder = { 10563 }, level = 30, group = "WeaponTreeHexMaster", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, modTags = { }, }, + ["WeaponTreeKeystoneLetheShade"] = { type = "Spawn", tier = 1, "Lethe Shade", statOrder = { 10567 }, level = 30, group = "WeaponTreeLetheShade", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, modTags = { }, }, + ["WeaponTreeKeystoneGhostDance"] = { type = "Spawn", tier = 1, "Ghost Dance", statOrder = { 10559 }, level = 30, group = "WeaponTreeGhostDance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, modTags = { }, }, + ["WeaponTreeKeystoneVersatileCombatant"] = { type = "Spawn", tier = 1, "Versatile Combatant", statOrder = { 10593 }, level = 30, group = "WeaponTreeVersatileCombatant", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, modTags = { }, }, + ["WeaponTreeKeystoneMagebane"] = { type = "Spawn", tier = 1, "Magebane", statOrder = { 10568 }, level = 30, group = "WeaponTreeMagebane", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, modTags = { }, }, + ["WeaponTreeKeystoneSolipsism"] = { type = "Spawn", tier = 1, "Solipsism", statOrder = { 10586 }, level = 30, group = "WeaponTreeSolipsism", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, modTags = { }, }, + ["WeaponTreeKeystoneDivineShield"] = { type = "Spawn", tier = 1, "Divine Shield", statOrder = { 10552 }, level = 30, group = "WeaponTreeDivineShield", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, modTags = { }, }, + ["WeaponTreeKeystoneIronWill"] = { type = "Spawn", tier = 1, "Iron Will", statOrder = { 10599 }, level = 30, group = "WeaponTreeIronWill", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, modTags = { }, }, + ["WeaponTreeKeystoneWickedWard"] = { type = "Spawn", tier = 1, "Wicked Ward", statOrder = { 10594 }, level = 30, group = "WeaponTreeWickedWard", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, modTags = { }, }, + ["WeaponTreeKeystoneWindDancer"] = { type = "Spawn", tier = 1, "Wind Dancer", statOrder = { 10595 }, level = 30, group = "WeaponTreeWindDancer", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, modTags = { }, }, + ["WeaponTreeKeystoneConduit"] = { type = "Spawn", tier = 1, "Conduit", statOrder = { 10548 }, level = 30, group = "WeaponTreeConduit", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, modTags = { }, }, + ["WeaponTreeKeystoneArrowDancing"] = { type = "Spawn", tier = 1, "Arrow Dancing", statOrder = { 10576 }, level = 30, group = "WeaponTreeArrowDodging", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, modTags = { }, }, + ["WeaponTreeKeystonePreciseTechnique"] = { type = "Spawn", tier = 1, "Precise Technique", statOrder = { 10574 }, level = 30, group = "WeaponTreePreciseTechnique", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, modTags = { }, }, + ["WeaponTreeKeystoneIronReflexes"] = { type = "Spawn", tier = 1, "Iron Reflexes", statOrder = { 10566 }, level = 30, group = "WeaponTreeIronReflexes", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "claw", "sword", "bow", "axe", "default", }, weightVal = { 20, 20, 20, 40, 20, 0 }, modTags = { }, }, + ["WeaponTreeKeystoneUnwaveringStance"] = { type = "Spawn", tier = 1, "Unwavering Stance", statOrder = { 10591 }, level = 30, group = "WeaponTreeUnwaveringStance", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, modTags = { }, }, + ["WeaponTreeKeystoneImbalancedGuard"] = { type = "Spawn", tier = 1, "Imbalanced Guard", statOrder = { 10581 }, level = 30, group = "WeaponTreeSacredBastion", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, modTags = { }, }, + ["WeaponTreeKeystoneEternalYouth"] = { type = "Spawn", tier = 1, "Eternal Youth", statOrder = { 10557 }, level = 30, group = "WeaponTreeEternalYouth", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "sword", "axe", "mace", "sceptre", "staff", "default", }, weightVal = { 20, 20, 40, 20, 20, 0 }, modTags = { }, }, + ["WeaponTreeKeystoneMindoverMatter"] = { type = "Spawn", tier = 1, "Mind Over Matter", statOrder = { 10569 }, level = 30, group = "WeaponTreeManaShield", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, modTags = { }, }, + ["WeaponTreeKeystoneZealotsOath"] = { type = "Spawn", tier = 1, "Zealot's Oath", statOrder = { 10578 }, level = 30, group = "WeaponTreeZealotsOath", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "staff", "sceptre", "dagger", "claw", "default", }, weightVal = { 40, 20, 20, 20, 20, 0 }, modTags = { }, }, + ["WeaponTreeNotableBowAvatarOfTheHunt"] = { type = "Spawn", tier = 1, "Allocates 36687", statOrder = { 7964 }, level = 1, group = "WeaponTreeNotableBow", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "bow", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableBowDeadlyDraw"] = { type = "Spawn", tier = 1, "Allocates 48823", statOrder = { 7964 }, level = 1, group = "WeaponTreeNotableBow", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "bow", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableBowHeavyDraw"] = { type = "Spawn", tier = 1, "Allocates 42720", statOrder = { 7964 }, level = 1, group = "WeaponTreeNotableBow", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "bow", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableBowFarsight"] = { type = "Spawn", tier = 1, "Allocates 47743", statOrder = { 7964 }, level = 1, group = "WeaponTreeNotableBow", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "bow", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableBowMasterFletcher"] = { type = "Spawn", tier = 1, "Allocates 51881", statOrder = { 7964 }, level = 1, group = "WeaponTreeNotableBow", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "bow", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableBowKingOfTheHill"] = { type = "Spawn", tier = 1, "Allocates 49459", statOrder = { 7964 }, level = 1, group = "WeaponTreeNotableBow", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "bow", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableBowAspectOfTheEagle"] = { type = "Spawn", tier = 1, "Allocates 65224", statOrder = { 7964 }, level = 1, group = "WeaponTreeNotableBow", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "bow", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableBowHuntersGambit"] = { type = "Spawn", tier = 1, "Allocates 9535", statOrder = { 7964 }, level = 1, group = "WeaponTreeNotableBow", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableStaffCounterweight"] = { type = "Spawn", tier = 1, "Allocates 39761", statOrder = { 7964 }, level = 1, group = "WeaponTreeNotableStaff", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableStaffSmashingStrikes"] = { type = "Spawn", tier = 1, "Allocates 51559", statOrder = { 7964 }, level = 1, group = "WeaponTreeNotableStaff", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableStaffWhirlingBarrier"] = { type = "Spawn", tier = 1, "Allocates 42917", statOrder = { 7964 }, level = 1, group = "WeaponTreeNotableStaff", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableStaffSteelwoodStance"] = { type = "Spawn", tier = 1, "Allocates 36859", statOrder = { 7964 }, level = 1, group = "WeaponTreeNotableStaff", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableStaffSafeguard"] = { type = "Spawn", tier = 1, "Allocates 6967", statOrder = { 7964 }, level = 1, group = "WeaponTreeNotableStaff", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableStaffBluntTrauma"] = { type = "Spawn", tier = 1, "Allocates 64395", statOrder = { 7964 }, level = 1, group = "WeaponTreeNotableStaff", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableStaffOneWithTheRiver"] = { type = "Spawn", tier = 1, "Allocates 56094", statOrder = { 7964 }, level = 1, group = "WeaponTreeNotableStaff", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableStaffSerpentStance"] = { type = "Spawn", tier = 1, "Allocates 22702", statOrder = { 7964 }, level = 1, group = "WeaponTreeNotableStaff", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableStaffEnigmaticDefence"] = { type = "Spawn", tier = 1, "Allocates 7918", statOrder = { 7964 }, level = 1, group = "WeaponTreeNotableStaff", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableStaffEnigmaticReach"] = { type = "Spawn", tier = 1, "Allocates 65273", statOrder = { 7964 }, level = 1, group = "WeaponTreeNotableStaff", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableSwordBladeOfCunning"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 57839", statOrder = { 1324, 7964 }, level = 1, group = "WeaponTreeNotableSword", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableSwordRazorsEdge"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 33082", statOrder = { 1324, 7964 }, level = 1, group = "WeaponTreeNotableSword", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableSwordBladeMaster"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 25367", statOrder = { 1324, 7964 }, level = 1, group = "WeaponTreeNotableSword", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableSwordBladeDancer"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 65093", statOrder = { 1324, 7964 }, level = 1, group = "WeaponTreeNotableSword", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableSwordFatalBlade"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 1568", statOrder = { 1324, 7964 }, level = 1, group = "WeaponTreeNotableSword", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableSwordBrutalBlade"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 59151", statOrder = { 1324, 7964 }, level = 1, group = "WeaponTreeNotableSword", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableSwordBladeOfCunning2H"] = { type = "Spawn", tier = 1, "Allocates 57839", statOrder = { 7964 }, level = 1, group = "WeaponTreeNotableSword2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableSwordRazorsEdge2H"] = { type = "Spawn", tier = 1, "Allocates 33082", statOrder = { 7964 }, level = 1, group = "WeaponTreeNotableSword2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableSwordBladeMaster2H"] = { type = "Spawn", tier = 1, "Allocates 25367", statOrder = { 7964 }, level = 1, group = "WeaponTreeNotableSword2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableSwordBladeDancer2H"] = { type = "Spawn", tier = 1, "Allocates 65093", statOrder = { 7964 }, level = 1, group = "WeaponTreeNotableSword2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableSwordFatalBlade2H"] = { type = "Spawn", tier = 1, "Allocates 1568", statOrder = { 7964 }, level = 1, group = "WeaponTreeNotableSword2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableSwordBrutalBlade2H"] = { type = "Spawn", tier = 1, "Allocates 59151", statOrder = { 7964 }, level = 1, group = "WeaponTreeNotableSword2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "sword", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableAxeFellerOfFoes"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 52090", statOrder = { 1324, 7964 }, level = 1, group = "WeaponTreeNotableAxe", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "axe", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableAxeHatchetMaster"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 26096", statOrder = { 1324, 7964 }, level = 1, group = "WeaponTreeNotableAxe", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "axe", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableAxeHarvesterOfFoes"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 7440", statOrder = { 1324, 7964 }, level = 1, group = "WeaponTreeNotableAxe", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "axe", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableAxeCleaving"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 4940", statOrder = { 1324, 7964 }, level = 1, group = "WeaponTreeNotableAxe", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "axe", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableAxeSlaughter"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 23038", statOrder = { 1324, 7964 }, level = 1, group = "WeaponTreeNotableAxe", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "axe", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableAxeFellerOfFoes2H"] = { type = "Spawn", tier = 1, "Allocates 52090", statOrder = { 7964 }, level = 1, group = "WeaponTreeNotableAxe2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "axe", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableAxeHatchetMaster2H"] = { type = "Spawn", tier = 1, "Allocates 26096", statOrder = { 7964 }, level = 1, group = "WeaponTreeNotableAxe2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "axe", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableAxeHarvesterOfFoes2H"] = { type = "Spawn", tier = 1, "Allocates 7440", statOrder = { 7964 }, level = 1, group = "WeaponTreeNotableAxe2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "axe", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableAxeCleaving2H"] = { type = "Spawn", tier = 1, "Allocates 4940", statOrder = { 7964 }, level = 1, group = "WeaponTreeNotableAxe2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "axe", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableAxeSlaughter2H"] = { type = "Spawn", tier = 1, "Allocates 23038", statOrder = { 7964 }, level = 1, group = "WeaponTreeNotableAxe2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "axe", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableMaceRibcageCrusher"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 24721", statOrder = { 1374, 7964 }, level = 1, group = "WeaponTreeNotableMace", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableMaceSpinecruncher"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 5126", statOrder = { 1374, 7964 }, level = 1, group = "WeaponTreeNotableMace", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableMaceSkullcracking"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 16703", statOrder = { 1374, 7964 }, level = 1, group = "WeaponTreeNotableMace", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableMaceBoneBreaker"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 40645", statOrder = { 1374, 7964 }, level = 1, group = "WeaponTreeNotableMace", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableMaceBlacksmithsClout"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 55772", statOrder = { 1374, 7964 }, level = 1, group = "WeaponTreeNotableMace", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableMaceGalvanicHammer"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 60619", statOrder = { 1374, 7964 }, level = 1, group = "WeaponTreeNotableMace", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "two_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableMacePainForger"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 39657", statOrder = { 1374, 7964 }, level = 1, group = "WeaponTreeNotableMace", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableMaceRibcageCrusher2H"] = { type = "Spawn", tier = 1, "Allocates 24721", statOrder = { 7964 }, level = 1, group = "WeaponTreeNotableMace2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableMaceSpinecruncher2H"] = { type = "Spawn", tier = 1, "Allocates 5126", statOrder = { 7964 }, level = 1, group = "WeaponTreeNotableMace2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableMaceSkullcracking2H"] = { type = "Spawn", tier = 1, "Allocates 16703", statOrder = { 7964 }, level = 1, group = "WeaponTreeNotableMace2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableMaceBoneBreaker2H"] = { type = "Spawn", tier = 1, "Allocates 40645", statOrder = { 7964 }, level = 1, group = "WeaponTreeNotableMace2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableMaceBlacksmithsClout2H"] = { type = "Spawn", tier = 1, "Allocates 55772", statOrder = { 7964 }, level = 1, group = "WeaponTreeNotableMace2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableMaceGalvanicHammer2H"] = { type = "Spawn", tier = 1, "Allocates 60619", statOrder = { 7964 }, level = 1, group = "WeaponTreeNotableMace2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableMacePainForger2H"] = { type = "Spawn", tier = 1, "Allocates 39657", statOrder = { 7964 }, level = 1, group = "WeaponTreeNotableMace2H", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "one_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableClawPoisonousFangs"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 529", statOrder = { 1324, 7964 }, level = 1, group = "WeaponTreeNotableClaw", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "claw", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableClawLifeRaker"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 28503", statOrder = { 1324, 7964 }, level = 1, group = "WeaponTreeNotableClaw", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "claw", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableClawClawsOfTheHawk"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 15614", statOrder = { 1324, 7964 }, level = 1, group = "WeaponTreeNotableClaw", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "claw", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableClawClawsOfTheMagpie"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 54791", statOrder = { 1324, 7964 }, level = 1, group = "WeaponTreeNotableClaw", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "claw", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableClawClawsOfTheFalcon"] = { type = "Spawn", tier = 1, "5% reduced Attack Speed", "Allocates 56648", statOrder = { 1324, 7964 }, level = 1, group = "WeaponTreeNotableClaw", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "claw", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableDaggerAddersTouch"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 32227", statOrder = { 1374, 7964 }, level = 1, group = "WeaponTreeNotableDagger", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableDaggerFromTheShadows"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 1405", statOrder = { 1374, 7964 }, level = 1, group = "WeaponTreeNotableDagger", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableDaggerBackstabbing"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 8920", statOrder = { 1374, 7964 }, level = 1, group = "WeaponTreeNotableDagger", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableDaggerFlaying"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 36490", statOrder = { 1374, 7964 }, level = 1, group = "WeaponTreeNotableDagger", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableDaggerNightstalker"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 56276", statOrder = { 1374, 7964 }, level = 1, group = "WeaponTreeNotableDagger", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "dagger", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableWandTempestBlast"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 63207", statOrder = { 1374, 7964 }, level = 1, group = "WeaponTreeNotableWand", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableWandFusillade"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 16243", statOrder = { 1374, 7964 }, level = 1, group = "WeaponTreeNotableWand", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableWandDisintegration"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 52031", statOrder = { 1374, 7964 }, level = 1, group = "WeaponTreeNotableWand", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableWandElderPower"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 41476", statOrder = { 1374, 7964 }, level = 1, group = "WeaponTreeNotableWand", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableWandWandslinger"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 22972", statOrder = { 1374, 7964 }, level = 1, group = "WeaponTreeNotableWand", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableWandPrismWeave"] = { type = "Spawn", tier = 1, "-0.5% to Critical Strike Chance", "Allocates 63944", statOrder = { 1374, 7964 }, level = 1, group = "WeaponTreeNotableWand", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "wand", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableShieldTestudo"] = { type = "Spawn", tier = 1, "-3% Chance to Block", "Allocates 44207", statOrder = { 2158, 7964 }, level = 1, group = "WeaponTreeNotableShield", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableShieldRetaliation"] = { type = "Spawn", tier = 1, "-3% Chance to Block", "Allocates 12878", statOrder = { 2158, 7964 }, level = 1, group = "WeaponTreeNotableShield", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableShieldDeflection"] = { type = "Spawn", tier = 1, "-3% Chance to Block", "Allocates 15437", statOrder = { 2158, 7964 }, level = 1, group = "WeaponTreeNotableShield", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableShieldDefiance"] = { type = "Spawn", tier = 1, "-3% Chance to Block", "Allocates 49538", statOrder = { 2158, 7964 }, level = 1, group = "WeaponTreeNotableShield", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableShieldCommandOfSteel"] = { type = "Spawn", tier = 1, "-3% Chance to Block", "Allocates 57900", statOrder = { 2158, 7964 }, level = 1, group = "WeaponTreeNotableShield", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableShieldAggresiveBastion"] = { type = "Spawn", tier = 1, "-3% Chance to Block", "Allocates 861", statOrder = { 2158, 7964 }, level = 1, group = "WeaponTreeNotableShield", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableShieldSantuary"] = { type = "Spawn", tier = 1, "-3% Chance to Block", "Allocates 20832", statOrder = { 2158, 7964 }, level = 1, group = "WeaponTreeNotableShield", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableShieldSafeguard"] = { type = "Spawn", tier = 1, "-3% Chance to Block", "Allocates 6967", statOrder = { 2158, 7964 }, level = 1, group = "WeaponTreeNotableShield", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeNotableShieldArcaneSantuary"] = { type = "Spawn", tier = 1, "-3% Chance to Block", "Allocates 46904", statOrder = { 2158, 7964 }, level = 1, group = "WeaponTreeNotableShield", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeWeaponQuality1"] = { type = "Spawn", tier = 1, "+8% to Quality", statOrder = { 7800 }, level = 1, group = "LocalItemQuality", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "default", }, weightVal = { 500 }, modTags = { }, }, + ["WeaponTreeWeaponQuality2"] = { type = "Spawn", tier = 2, "+12% to Quality", statOrder = { 7800 }, level = 45, group = "LocalItemQuality", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "default", }, weightVal = { 500 }, modTags = { }, }, + ["WeaponTreeWeaponQuality3"] = { type = "Spawn", tier = 3, "+16% to Quality", statOrder = { 7800 }, level = 60, group = "LocalItemQuality", nodeType = "Regular", nodeLocation = { 2 }, weightKey = { "default", }, weightVal = { 500 }, modTags = { }, }, + ["WeaponTreeFireDoTMultiplierReducedFireResistance1"] = { type = "Spawn", tier = 1, "+12% to Fire Damage over Time Multiplier", "-15% to Fire Resistance", statOrder = { 1163, 1536 }, level = 12, group = "WeaponTreeFireDoTMultiplierReducedFireResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeFireDoTMultiplierReducedFireResistance2"] = { type = "Spawn", tier = 2, "+16% to Fire Damage over Time Multiplier", "-15% to Fire Resistance", statOrder = { 1163, 1536 }, level = 75, group = "WeaponTreeFireDoTMultiplierReducedFireResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeFireDoTMultiplierReducedFireResistance2h1"] = { type = "Spawn", tier = 1, "+24% to Fire Damage over Time Multiplier", "-30% to Fire Resistance", statOrder = { 1163, 1536 }, level = 12, group = "WeaponTreeFireDoTMultiplierReducedFireResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeFireDoTMultiplierReducedFireResistance2h2"] = { type = "Spawn", tier = 2, "+32% to Fire Damage over Time Multiplier", "-30% to Fire Resistance", statOrder = { 1163, 1536 }, level = 75, group = "WeaponTreeFireDoTMultiplierReducedFireResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeColdDoTMultiplierReducedColdResisatance1"] = { type = "Spawn", tier = 1, "+12% to Cold Damage over Time Multiplier", "-15% to Cold Resistance", statOrder = { 1168, 1542 }, level = 12, group = "WeaponTreeColdDoTMultiplierReducedColdResisatance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeColdDoTMultiplierReducedColdResisatance2"] = { type = "Spawn", tier = 2, "+16% to Cold Damage over Time Multiplier", "-15% to Cold Resistance", statOrder = { 1168, 1542 }, level = 75, group = "WeaponTreeColdDoTMultiplierReducedColdResisatance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeColdDoTMultiplierReducedColdResisatance2h1"] = { type = "Spawn", tier = 1, "+24% to Cold Damage over Time Multiplier", "-30% to Cold Resistance", statOrder = { 1168, 1542 }, level = 12, group = "WeaponTreeColdDoTMultiplierReducedColdResisatance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeColdDoTMultiplierReducedColdResisatance2h2"] = { type = "Spawn", tier = 2, "+32% to Cold Damage over Time Multiplier", "-30% to Cold Resistance", statOrder = { 1168, 1542 }, level = 75, group = "WeaponTreeColdDoTMultiplierReducedColdResisatance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeChaosDoTMultiplierReducedChaosResistance1"] = { type = "Spawn", tier = 1, "+12% to Chaos Damage over Time Multiplier", "-15% to Chaos Resistance", statOrder = { 1171, 1552 }, level = 12, group = "WeaponTreeChaosDoTMultiplierReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeChaosDoTMultiplierReducedChaosResistance2"] = { type = "Spawn", tier = 2, "+16% to Chaos Damage over Time Multiplier", "-15% to Chaos Resistance", statOrder = { 1171, 1552 }, level = 75, group = "WeaponTreeChaosDoTMultiplierReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeChaosDoTMultiplierReducedChaosResistance2h1"] = { type = "Spawn", tier = 1, "+24% to Chaos Damage over Time Multiplier", "-30% to Chaos Resistance", statOrder = { 1171, 1552 }, level = 12, group = "WeaponTreeChaosDoTMultiplierReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeChaosDoTMultiplierReducedChaosResistance2h2"] = { type = "Spawn", tier = 2, "+32% to Chaos Damage over Time Multiplier", "-30% to Chaos Resistance", statOrder = { 1171, 1552 }, level = 75, group = "WeaponTreeChaosDoTMultiplierReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreePhysicalDoTMultiplierEnemyOverwhelm1"] = { type = "Spawn", tier = 1, "+12% to Physical Damage over Time Multiplier", "Hits against you Overwhelm 6% of Physical Damage Reduction", statOrder = { 1159, 7025 }, level = 12, group = "WeaponTreePhysicalDoTMultiplierEnemyOverwhelm", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreePhysicalDoTMultiplierEnemyOverwhelm2"] = { type = "Spawn", tier = 2, "+16% to Physical Damage over Time Multiplier", "Hits against you Overwhelm 6% of Physical Damage Reduction", statOrder = { 1159, 7025 }, level = 75, group = "WeaponTreePhysicalDoTMultiplierEnemyOverwhelm", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreePhysicalDoTMultiplierEnemyOverwhelm2h1"] = { type = "Spawn", tier = 1, "+24% to Physical Damage over Time Multiplier", "Hits against you Overwhelm 12% of Physical Damage Reduction", statOrder = { 1159, 7025 }, level = 12, group = "WeaponTreePhysicalDoTMultiplierEnemyOverwhelm", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreePhysicalDoTMultiplierEnemyOverwhelm2h2"] = { type = "Spawn", tier = 2, "+32% to Physical Damage over Time Multiplier", "Hits against you Overwhelm 12% of Physical Damage Reduction", statOrder = { 1159, 7025 }, level = 75, group = "WeaponTreePhysicalDoTMultiplierEnemyOverwhelm", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalElementalPenetrationReducedElementalResistance1"] = { type = "Spawn", tier = 1, "-8% to all Elemental Resistances", "Attacks with this Weapon Penetrate 8% Elemental Resistances", statOrder = { 1530, 3669 }, level = 12, group = "WeaponTreeLocalElementalPenetrationReducedElementalResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalElementalPenetrationReducedElementalResistance2"] = { type = "Spawn", tier = 2, "-8% to all Elemental Resistances", "Attacks with this Weapon Penetrate 10% Elemental Resistances", statOrder = { 1530, 3669 }, level = 75, group = "WeaponTreeLocalElementalPenetrationReducedElementalResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalChaosPenetrationReducedChaosResistance1"] = { type = "Spawn", tier = 1, "-13% to Chaos Resistance", "Attacks with this Weapon Penetrate 8% Chaos Resistance", statOrder = { 1552, 7732 }, level = 12, group = "WeaponTreeLocalChaosPenetrationReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalChaosPenetrationReducedChaosResistance2"] = { type = "Spawn", tier = 2, "-13% to Chaos Resistance", "Attacks with this Weapon Penetrate 10% Chaos Resistance", statOrder = { 1552, 7732 }, level = 75, group = "WeaponTreeLocalChaosPenetrationReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeAreaOfEffectIfKilledRecentlyReducedAreaOfEffect1"] = { type = "Spawn", tier = 1, "10% reduced Area of Effect", "25% increased Area of Effect if you've Killed at least 5 Enemies Recently", statOrder = { 1791, 4629 }, level = 10, group = "WeaponTreeAreaOfEffectIfKilledRecentlyReducedAreaOfEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 400, 400, 0 }, modTags = { }, }, + ["WeaponTreeAreaOfEffectIfKilledRecentlyReducedAreaOfEffect2"] = { type = "Spawn", tier = 2, "10% reduced Area of Effect", "30% increased Area of Effect if you've Killed at least 5 Enemies Recently", statOrder = { 1791, 4629 }, level = 65, group = "WeaponTreeAreaOfEffectIfKilledRecentlyReducedAreaOfEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 400, 400, 0 }, modTags = { }, }, + ["WeaponTreeAreaOfEffectIfKilledRecentlyReducedAreaOfEffect2h1"] = { type = "Spawn", tier = 1, "20% reduced Area of Effect", "50% increased Area of Effect if you've Killed at least 5 Enemies Recently", statOrder = { 1791, 4629 }, level = 10, group = "WeaponTreeAreaOfEffectIfKilledRecentlyReducedAreaOfEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 400, 0 }, modTags = { }, }, + ["WeaponTreeAreaOfEffectIfKilledRecentlyReducedAreaOfEffect2h2"] = { type = "Spawn", tier = 2, "20% reduced Area of Effect", "60% increased Area of Effect if you've Killed at least 5 Enemies Recently", statOrder = { 1791, 4629 }, level = 65, group = "WeaponTreeAreaOfEffectIfKilledRecentlyReducedAreaOfEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 400, 0 }, modTags = { }, }, + ["WeaponTreeAreaOfEffectReducedAreaOfEffectIfKilledRecently1"] = { type = "Spawn", tier = 1, "20% increased Area of Effect", "10% reduced Area of Effect if you've Killed Recently", statOrder = { 1791, 4126 }, level = 10, group = "WeaponTreeAreaOfEffectReducedAreaOfEffectIfKilledRecently", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 400, 400, 0 }, modTags = { }, }, + ["WeaponTreeAreaOfEffectReducedAreaOfEffectIfKilledRecently2"] = { type = "Spawn", tier = 2, "24% increased Area of Effect", "10% reduced Area of Effect if you've Killed Recently", statOrder = { 1791, 4126 }, level = 65, group = "WeaponTreeAreaOfEffectReducedAreaOfEffectIfKilledRecently", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 400, 400, 0 }, modTags = { }, }, + ["WeaponTreeAreaOfEffectReducedAreaOfEffectIfKilledRecently2h1"] = { type = "Spawn", tier = 1, "32% increased Area of Effect", "20% reduced Area of Effect if you've Killed Recently", statOrder = { 1791, 4126 }, level = 10, group = "WeaponTreeAreaOfEffectReducedAreaOfEffectIfKilledRecently", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 400, 0 }, modTags = { }, }, + ["WeaponTreeAreaOfEffectReducedAreaOfEffectIfKilledRecently2h2"] = { type = "Spawn", tier = 2, "40% increased Area of Effect", "20% reduced Area of Effect if you've Killed Recently", statOrder = { 1791, 4126 }, level = 65, group = "WeaponTreeAreaOfEffectReducedAreaOfEffectIfKilledRecently", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 400, 0 }, modTags = { }, }, + ["WeaponTreeProjectileSpeedReducedProjectileDamage1"] = { type = "Spawn", tier = 1, "25% increased Projectile Speed", "15% reduced Projectile Damage", statOrder = { 1707, 1905 }, level = 10, group = "WeaponTreeProjectileSpeedReducedProjectileDamage", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeProjectileSpeedReducedProjectileDamage2"] = { type = "Spawn", tier = 2, "35% increased Projectile Speed", "15% reduced Projectile Damage", statOrder = { 1707, 1905 }, level = 65, group = "WeaponTreeProjectileSpeedReducedProjectileDamage", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeProjectileSpeedReducedProjectileDamage2h1"] = { type = "Spawn", tier = 1, "40% increased Projectile Speed", "30% reduced Projectile Damage", statOrder = { 1707, 1905 }, level = 10, group = "WeaponTreeProjectileSpeedReducedProjectileDamage", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "bow", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeProjectileSpeedReducedProjectileDamage2h2"] = { type = "Spawn", tier = 2, "55% increased Projectile Speed", "30% reduced Projectile Damage", statOrder = { 1707, 1905 }, level = 65, group = "WeaponTreeProjectileSpeedReducedProjectileDamage", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "bow", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeArrowsChainChainingRange2h"] = { type = "MergeOnly", tier = 1, "Arrows Chain +1 times", "50% reduced Chaining range", statOrder = { 1699, 5378 }, level = 84, group = "WeaponTreeArrowsChainChainingRange", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "bow", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeChainingRange1"] = { type = "Spawn", tier = 1, "20% increased Chaining range", statOrder = { 5378 }, level = 38, group = "WeaponTreeChainingRange", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 200, 50, 0 }, modTags = { }, }, + ["WeaponTreeChainingRange2"] = { type = "Spawn", tier = 2, "30% increased Chaining range", statOrder = { 5378 }, level = 78, group = "WeaponTreeChainingRange", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 200, 50, 0 }, modTags = { }, }, + ["WeaponTreeChainingRange2h1"] = { type = "Spawn", tier = 1, "40% increased Chaining range", statOrder = { 5378 }, level = 38, group = "WeaponTreeChainingRange", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 200, 50, 0 }, modTags = { }, }, + ["WeaponTreeChainingRange2h2"] = { type = "Spawn", tier = 2, "60% increased Chaining range", statOrder = { 5378 }, level = 78, group = "WeaponTreeChainingRange", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 200, 50, 0 }, modTags = { }, }, + ["WeaponTreeAdditionalPierce1"] = { type = "Spawn", tier = 1, "Projectiles Pierce an additional Target", statOrder = { 1701 }, level = 78, group = "WeaponTreeAdditionalPierce", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 300, 75, 0 }, modTags = { }, }, + ["WeaponTreeAdditionalPierce2h1"] = { type = "Spawn", tier = 1, "Projectiles Pierce an additional Target", statOrder = { 1701 }, level = 16, group = "WeaponTreeAdditionalPierce", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 300, 75, 0 }, modTags = { }, }, + ["WeaponTreeAdditionalPierce2h2"] = { type = "Spawn", tier = 2, "Projectiles Pierce 2 additional Targets", statOrder = { 1701 }, level = 78, group = "WeaponTreeAdditionalPierce", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 300, 75, 0 }, modTags = { }, }, + ["WeaponTreeForkExtraProjectileChance1"] = { type = "Spawn", tier = 1, "Projectiles have 30% chance for an additional Projectile when Forking", statOrder = { 5575 }, level = 32, group = "WeaponTreeForkExtraProjectileChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 200, 50, 0 }, modTags = { }, }, + ["WeaponTreeForkExtraProjectileChance2"] = { type = "Spawn", tier = 2, "Projectiles have 40% chance for an additional Projectile when Forking", statOrder = { 5575 }, level = 78, group = "WeaponTreeForkExtraProjectileChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 200, 50, 0 }, modTags = { }, }, + ["WeaponTreeForkExtraProjectileChance2h1"] = { type = "Spawn", tier = 1, "Projectiles have 50% chance for an additional Projectile when Forking", statOrder = { 5575 }, level = 32, group = "WeaponTreeForkExtraProjectileChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 200, 50, 0 }, modTags = { }, }, + ["WeaponTreeForkExtraProjectileChance2h2"] = { type = "Spawn", tier = 2, "Projectiles have 75% chance for an additional Projectile when Forking", statOrder = { 5575 }, level = 78, group = "WeaponTreeForkExtraProjectileChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 200, 50, 0 }, modTags = { }, }, + ["WeaponTreeMarkEffectIncreasedMarkCost1"] = { type = "Spawn", tier = 1, "15% increased Effect of your Marks", "100% increased Mana Cost of Mark Skills", statOrder = { 2507, 8925 }, level = 24, group = "WeaponTreeMarkEffectIncreasedMarkCost", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "default", }, weightVal = { 50, 250, 0 }, modTags = { }, }, + ["WeaponTreeMarkEffectIncreasedMarkCost2"] = { type = "Spawn", tier = 2, "20% increased Effect of your Marks", "100% increased Mana Cost of Mark Skills", statOrder = { 2507, 8925 }, level = 76, group = "WeaponTreeMarkEffectIncreasedMarkCost", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "default", }, weightVal = { 50, 250, 0 }, modTags = { }, }, + ["WeaponTreeMarkEffectIncreasedMarkCost2h1"] = { type = "Spawn", tier = 1, "30% increased Effect of your Marks", "200% increased Mana Cost of Mark Skills", statOrder = { 2507, 8925 }, level = 24, group = "WeaponTreeMarkEffectIncreasedMarkCost", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 50, 250, 0 }, modTags = { }, }, + ["WeaponTreeMarkEffectIncreasedMarkCost2h2"] = { type = "Spawn", tier = 2, "40% increased Effect of your Marks", "200% increased Mana Cost of Mark Skills", statOrder = { 2507, 8925 }, level = 76, group = "WeaponTreeMarkEffectIncreasedMarkCost", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 50, 250, 0 }, modTags = { }, }, + ["WeaponTreeFrenzyOnHittingMarkedEnemyReducedMarkEffect1"] = { type = "Spawn", tier = 1, "15% reduced Effect of your Marks", "6% chance to gain a Frenzy Charge when you Hit your Marked Enemy", statOrder = { 2507, 6644 }, level = 24, group = "WeaponTreeFrenzyOnHittingMarkedEnemyReducedMarkEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "default", }, weightVal = { 50, 250, 0 }, modTags = { }, }, + ["WeaponTreeFrenzyOnHittingMarkedEnemyReducedMarkEffect2"] = { type = "Spawn", tier = 2, "15% reduced Effect of your Marks", "10% chance to gain a Frenzy Charge when you Hit your Marked Enemy", statOrder = { 2507, 6644 }, level = 76, group = "WeaponTreeFrenzyOnHittingMarkedEnemyReducedMarkEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "default", }, weightVal = { 50, 250, 0 }, modTags = { }, }, + ["WeaponTreeFrenzyOnHittingMarkedEnemyReducedMarkEffect2h1"] = { type = "Spawn", tier = 1, "20% reduced Effect of your Marks", "12% chance to gain a Frenzy Charge when you Hit your Marked Enemy", statOrder = { 2507, 6644 }, level = 24, group = "WeaponTreeFrenzyOnHittingMarkedEnemyReducedMarkEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 50, 250, 0 }, modTags = { }, }, + ["WeaponTreeFrenzyOnHittingMarkedEnemyReducedMarkEffect2h2"] = { type = "Spawn", tier = 2, "20% reduced Effect of your Marks", "20% chance to gain a Frenzy Charge when you Hit your Marked Enemy", statOrder = { 2507, 6644 }, level = 76, group = "WeaponTreeFrenzyOnHittingMarkedEnemyReducedMarkEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 50, 250, 0 }, modTags = { }, }, + ["WeaponTreeCullingStrikeVsMarkedEnemyReducedAccuracyVsMarkedEnemy"] = { type = "Spawn", tier = 1, "25% less Accuracy Rating against Marked Enemy", "Culling Strike against Marked Enemy", statOrder = { 4417, 5888 }, level = 80, group = "WeaponTreeCullingStrikeVsMarkedEnemyReducedAccuracyVsMarkedEnemy", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "default", }, weightVal = { 50, 250, 0 }, modTags = { }, }, + ["WeaponTreeCullingStrikeVsMarkedEnemyReducedAccuracyVsMarkedEnemy2h"] = { type = "Spawn", tier = 2, "15% less Accuracy Rating against Marked Enemy", "Culling Strike against Marked Enemy", statOrder = { 4417, 5888 }, level = 80, group = "WeaponTreeCullingStrikeVsMarkedEnemyReducedAccuracyVsMarkedEnemy", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 50, 250, 0 }, modTags = { }, }, + ["WeaponTreeLocalWeaponRange1"] = { type = "Spawn", tier = 1, "+0.2 metres to Weapon Range", statOrder = { 2655 }, level = 1, group = "WeaponTreeLocalWeaponRange", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 750, 0 }, modTags = { }, }, + ["WeaponTreeLocalWeaponRange2"] = { type = "Spawn", tier = 2, "+0.3 metres to Weapon Range", statOrder = { 2655 }, level = 50, group = "WeaponTreeLocalWeaponRange", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 750, 0 }, modTags = { }, }, + ["WeaponTreeLocalLifeLeechAndSpeed1"] = { type = "Spawn", tier = 1, "30% increased total Recovery per second from Life Leech", "0.5% of Attack Damage Leeched as Life", statOrder = { 2066, 7834 }, level = 12, group = "WeaponTreeLocalLifeLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalLifeLeechAndSpeed2"] = { type = "Spawn", tier = 2, "30% increased total Recovery per second from Life Leech", "0.8% of Attack Damage Leeched as Life", statOrder = { 2066, 7834 }, level = 64, group = "WeaponTreeLocalLifeLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalLifeLeechAndSpeed2h1"] = { type = "Spawn", tier = 1, "60% increased total Recovery per second from Life Leech", "1% of Attack Damage Leeched as Life", statOrder = { 2066, 7834 }, level = 12, group = "WeaponTreeLocalLifeLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalLifeLeechAndSpeed2h2"] = { type = "Spawn", tier = 2, "60% increased total Recovery per second from Life Leech", "1.6% of Attack Damage Leeched as Life", statOrder = { 2066, 7834 }, level = 64, group = "WeaponTreeLocalLifeLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalManaLeechAndSpeed1"] = { type = "Spawn", tier = 1, "30% increased total Recovery per second from Mana Leech", "0.5% of Attack Damage Leeched as Mana", statOrder = { 2067, 7837 }, level = 12, group = "WeaponTreeLocalManaLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalManaLeechAndSpeed2"] = { type = "Spawn", tier = 2, "30% increased total Recovery per second from Mana Leech", "0.8% of Attack Damage Leeched as Mana", statOrder = { 2067, 7837 }, level = 64, group = "WeaponTreeLocalManaLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalManaLeechAndSpeed2h1"] = { type = "Spawn", tier = 1, "60% increased total Recovery per second from Mana Leech", "1% of Attack Damage Leeched as Mana", statOrder = { 2067, 7837 }, level = 12, group = "WeaponTreeLocalManaLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalManaLeechAndSpeed2h2"] = { type = "Spawn", tier = 2, "60% increased total Recovery per second from Mana Leech", "1.6% of Attack Damage Leeched as Mana", statOrder = { 2067, 7837 }, level = 64, group = "WeaponTreeLocalManaLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeSpellEnergyShieldLeechAndSpeed1"] = { type = "Spawn", tier = 1, "0.5% of Spell Damage Leeched as Energy Shield", "30% increased total Recovery per second from Energy Shield Leech", statOrder = { 1633, 2068 }, level = 12, group = "WeaponTreeSpellEnergyShieldLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeSpellEnergyShieldLeechAndSpeed2"] = { type = "Spawn", tier = 2, "0.8% of Spell Damage Leeched as Energy Shield", "30% increased total Recovery per second from Energy Shield Leech", statOrder = { 1633, 2068 }, level = 64, group = "WeaponTreeSpellEnergyShieldLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 0, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeSpellEnergyShieldLeechAndSpeed2h1"] = { type = "Spawn", tier = 1, "1% of Spell Damage Leeched as Energy Shield", "60% increased total Recovery per second from Energy Shield Leech", statOrder = { 1633, 2068 }, level = 12, group = "WeaponTreeSpellEnergyShieldLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeSpellEnergyShieldLeechAndSpeed2h2"] = { type = "Spawn", tier = 2, "1.6% of Spell Damage Leeched as Energy Shield", "60% increased total Recovery per second from Energy Shield Leech", statOrder = { 1633, 2068 }, level = 64, group = "WeaponTreeSpellEnergyShieldLeechAndSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeMaxLifeLeechReducedLeechAmount1"] = { type = "Spawn", tier = 1, "10% increased Maximum total Life Recovery per second from Leech", statOrder = { 1642 }, level = 70, group = "WeaponTreeMaxLifeLeech", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["WeaponTreeMaxLifeLeechReducedLeechAmount2h1"] = { type = "Spawn", tier = 2, "20% increased Maximum total Life Recovery per second from Leech", statOrder = { 1642 }, level = 70, group = "WeaponTreeMaxLifeLeech", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["WeaponTreeMaxManaLeechReducedLeechAmount1"] = { type = "Spawn", tier = 1, "10% increased Maximum total Mana Recovery per second from Leech", statOrder = { 1644 }, level = 70, group = "WeaponTreeMaxManaLeech", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["WeaponTreeMaxManaLeechReducedLeechAmount2h1"] = { type = "Spawn", tier = 2, "20% increased Maximum total Mana Recovery per second from Leech", statOrder = { 1644 }, level = 70, group = "WeaponTreeMaxManaLeech", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["WeaponTreeMaxEnergyShieldLeechReducedLeechAmount1"] = { type = "Spawn", tier = 1, "10% increased Maximum total Energy Shield Recovery per second from Leech", statOrder = { 1645 }, level = 70, group = "WeaponTreeMaxEnergyShield", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeMaxEnergyShieldLeechReducedLeechAmount2h1"] = { type = "Spawn", tier = 2, "20% increased Maximum total Energy Shield Recovery per second from Leech", statOrder = { 1645 }, level = 70, group = "WeaponTreeMaxEnergyShield", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeLocalLifeOnHitReducedManaOnHit1"] = { type = "Spawn", tier = 1, "Grants 15 Life per Enemy Hit", "Removes 2 of your Mana per Enemy Hit", statOrder = { 1649, 1656 }, level = 5, group = "WeaponTreeLocalLifeOnHitReducedManaOnHit", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 400, 0 }, modTags = { }, }, + ["WeaponTreeLocalLifeOnHitReducedManaOnHit2"] = { type = "Spawn", tier = 2, "Grants 25 Life per Enemy Hit", "Removes 2 of your Mana per Enemy Hit", statOrder = { 1649, 1656 }, level = 68, group = "WeaponTreeLocalLifeOnHitReducedManaOnHit", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 400, 0 }, modTags = { }, }, + ["WeaponTreeLocalManaOnHitReducedLifeOnHit1"] = { type = "Spawn", tier = 1, "Removes 4 of your Life per Enemy Hit", "Grants 6 Mana per Enemy Hit", statOrder = { 1649, 1656 }, level = 5, group = "WeaponTreeLocalManaOnHitReducedLifeOnHit", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 400, 0 }, modTags = { }, }, + ["WeaponTreeLocalManaOnHitReducedLifeOnHit2"] = { type = "Spawn", tier = 2, "Removes 4 of your Life per Enemy Hit", "Grants 8 Mana per Enemy Hit", statOrder = { 1649, 1656 }, level = 68, group = "WeaponTreeLocalManaOnHitReducedLifeOnHit", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 400, 0 }, modTags = { }, }, + ["WeaponTreeTravelSkillCooldownSpeedReducedMovementSpeed1"] = { type = "Spawn", tier = 1, "5% reduced Movement Speed", "20% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 1709, 4288 }, level = 12, group = "WeaponTreeTravelSkillCooldownSpeedReducedMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeTravelSkillCooldownSpeedReducedMovementSpeed2"] = { type = "Spawn", tier = 2, "5% reduced Movement Speed", "30% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 1709, 4288 }, level = 76, group = "WeaponTreeTravelSkillCooldownSpeedReducedMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeTravelSkillCooldownSpeedReducedMovementSpeed2h1"] = { type = "Spawn", tier = 1, "10% reduced Movement Speed", "40% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 1709, 4288 }, level = 12, group = "WeaponTreeTravelSkillCooldownSpeedReducedMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeTravelSkillCooldownSpeedReducedMovementSpeed2h2"] = { type = "Spawn", tier = 2, "10% reduced Movement Speed", "60% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 1709, 4288 }, level = 76, group = "WeaponTreeTravelSkillCooldownSpeedReducedMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeMovementSpeedTravelSkillsDisabled1"] = { type = "Spawn", tier = 1, "8% increased Movement Speed", "Your Travel Skills are Disabled", statOrder = { 1709, 10473 }, level = 12, group = "WeaponTreeMovementSpeedTravelSkillsDisabled", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeMovementSpeedTravelSkillsDisabled2"] = { type = "Spawn", tier = 2, "12% increased Movement Speed", "Your Travel Skills are Disabled", statOrder = { 1709, 10473 }, level = 76, group = "WeaponTreeMovementSpeedTravelSkillsDisabled", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeMovementSpeedTravelSkillsDisabled2h1"] = { type = "Spawn", tier = 1, "14% increased Movement Speed", "Your Travel Skills are Disabled", statOrder = { 1709, 10473 }, level = 12, group = "WeaponTreeMovementSpeedTravelSkillsDisabled", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeMovementSpeedTravelSkillsDisabled2h2"] = { type = "Spawn", tier = 2, "18% increased Movement Speed", "Your Travel Skills are Disabled", statOrder = { 1709, 10473 }, level = 76, group = "WeaponTreeMovementSpeedTravelSkillsDisabled", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeArcaneSurgeOnCriticalStrikeReducedArcaneSurgeEffect1"] = { type = "Spawn", tier = 1, "20% reduced Effect of Arcane Surge on you", "10% chance to Gain Arcane Surge when you deal a Critical Strike", statOrder = { 3196, 6610 }, level = 20, group = "WeaponTreeArcaneSurgeOnCriticalStrikeReducedArcaneSurgeEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 300, 0, 300, 300, 300, 0 }, modTags = { }, }, + ["WeaponTreeArcaneSurgeOnCriticalStrikeReducedArcaneSurgeEffect2"] = { type = "Spawn", tier = 2, "20% reduced Effect of Arcane Surge on you", "10% chance to Gain Arcane Surge when you deal a Critical Strike", statOrder = { 3196, 6610 }, level = 80, group = "WeaponTreeArcaneSurgeOnCriticalStrikeReducedArcaneSurgeEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 300, 0, 300, 300, 300, 0 }, modTags = { }, }, + ["WeaponTreeArcaneSurgeOnCriticalStrikeReducedArcaneSurgeEffect2h1"] = { type = "Spawn", tier = 1, "20% reduced Effect of Arcane Surge on you", "15% chance to Gain Arcane Surge when you deal a Critical Strike", statOrder = { 3196, 6610 }, level = 20, group = "WeaponTreeArcaneSurgeOnCriticalStrikeReducedArcaneSurgeEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 300, 0, 300, 0 }, modTags = { }, }, + ["WeaponTreeArcaneSurgeOnCriticalStrikeReducedArcaneSurgeEffect2h2"] = { type = "Spawn", tier = 2, "20% reduced Effect of Arcane Surge on you", "15% chance to Gain Arcane Surge when you deal a Critical Strike", statOrder = { 3196, 6610 }, level = 80, group = "WeaponTreeArcaneSurgeOnCriticalStrikeReducedArcaneSurgeEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 300, 0, 300, 0 }, modTags = { }, }, + ["WeaponTreeArcaneSurgeEffectReducedSelfBuffExpiry1"] = { type = "Spawn", tier = 1, "20% increased Effect of Arcane Surge on you", "Buffs on you expire 10% faster", statOrder = { 3196, 5271 }, level = 20, group = "WeaponTreeArcaneSurgeEffectReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 300, 0, 300, 300, 300, 0 }, modTags = { }, }, + ["WeaponTreeArcaneSurgeEffectReducedSelfBuffExpiry2"] = { type = "Spawn", tier = 2, "25% increased Effect of Arcane Surge on you", "Buffs on you expire 10% faster", statOrder = { 3196, 5271 }, level = 80, group = "WeaponTreeArcaneSurgeEffectReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 300, 0, 300, 300, 300, 0 }, modTags = { }, }, + ["WeaponTreeArcaneSurgeEffectReducedSelfBuffExpiry2h1"] = { type = "Spawn", tier = 1, "40% increased Effect of Arcane Surge on you", "Buffs on you expire 20% faster", statOrder = { 3196, 5271 }, level = 20, group = "WeaponTreeArcaneSurgeEffectReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 300, 0, 300, 0 }, modTags = { }, }, + ["WeaponTreeArcaneSurgeEffectReducedSelfBuffExpiry2h2"] = { type = "Spawn", tier = 2, "50% increased Effect of Arcane Surge on you", "Buffs on you expire 20% faster", statOrder = { 3196, 5271 }, level = 80, group = "WeaponTreeArcaneSurgeEffectReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 300, 0, 300, 0 }, modTags = { }, }, + ["WeaponTreeOnslaughtSurgeEffectReducedSelfBuffExpiry1"] = { type = "Spawn", tier = 1, "20% increased Effect of Onslaught on you", "Buffs on you expire 10% faster", statOrder = { 3198, 5271 }, level = 20, group = "WeaponTreeOnslaughtSurgeEffectReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "default", }, weightVal = { 75, 300, 0 }, modTags = { }, }, + ["WeaponTreeOnslaughtSurgeEffectReducedSelfBuffExpiry2"] = { type = "Spawn", tier = 2, "25% increased Effect of Onslaught on you", "Buffs on you expire 10% faster", statOrder = { 3198, 5271 }, level = 80, group = "WeaponTreeOnslaughtSurgeEffectReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "default", }, weightVal = { 75, 300, 0 }, modTags = { }, }, + ["WeaponTreeOnslaughtSurgeEffectReducedSelfBuffExpiry2h1"] = { type = "Spawn", tier = 1, "40% increased Effect of Onslaught on you", "Buffs on you expire 20% faster", statOrder = { 3198, 5271 }, level = 20, group = "WeaponTreeOnslaughtSurgeEffectReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 75, 300, 0 }, modTags = { }, }, + ["WeaponTreeOnslaughtSurgeEffectReducedSelfBuffExpiry2h2"] = { type = "Spawn", tier = 2, "50% increased Effect of Onslaught on you", "Buffs on you expire 20% faster", statOrder = { 3198, 5271 }, level = 80, group = "WeaponTreeOnslaughtSurgeEffectReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 75, 300, 0 }, modTags = { }, }, + ["WeaponTreeOnslaughtOnKillReducedOnslaughtEffect1"] = { type = "Spawn", tier = 1, "20% reduced Effect of Onslaught on you", "10% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3198, 3288 }, level = 20, group = "WeaponTreeOnslaughtOnKillReducedOnslaughtEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "default", }, weightVal = { 75, 300, 0 }, modTags = { }, }, + ["WeaponTreeOnslaughtOnKillReducedOnslaughtEffect2"] = { type = "Spawn", tier = 2, "20% reduced Effect of Onslaught on you", "15% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3198, 3288 }, level = 80, group = "WeaponTreeOnslaughtOnKillReducedOnslaughtEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "default", }, weightVal = { 75, 300, 0 }, modTags = { }, }, + ["WeaponTreeOnslaughtOnKillReducedOnslaughtEffect2h1"] = { type = "Spawn", tier = 1, "20% reduced Effect of Onslaught on you", "20% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3198, 3288 }, level = 20, group = "WeaponTreeOnslaughtOnKillReducedOnslaughtEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 75, 300, 0 }, modTags = { }, }, + ["WeaponTreeOnslaughtOnKillReducedOnslaughtEffect2h2"] = { type = "Spawn", tier = 2, "20% reduced Effect of Onslaught on you", "30% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3198, 3288 }, level = 80, group = "WeaponTreeOnslaughtOnKillReducedOnslaughtEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 75, 300, 0 }, modTags = { }, }, + ["WeaponTreeUnholyMightChanceReducedSelfBuffExpiry1"] = { type = "Spawn", tier = 1, "10% chance to gain Unholy Might for 4 seconds on Kill", "Buffs on you expire 10% faster", statOrder = { 3286, 5271 }, level = 20, group = "WeaponTreeUnholyMightChanceReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeUnholyMightChanceReducedSelfBuffExpiry2"] = { type = "Spawn", tier = 2, "15% chance to gain Unholy Might for 4 seconds on Kill", "Buffs on you expire 10% faster", statOrder = { 3286, 5271 }, level = 80, group = "WeaponTreeUnholyMightChanceReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeUnholyMightChanceReducedSelfBuffExpiry2h1"] = { type = "Spawn", tier = 1, "20% chance to gain Unholy Might for 4 seconds on Kill", "Buffs on you expire 20% faster", statOrder = { 3286, 5271 }, level = 20, group = "WeaponTreeUnholyMightChanceReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeUnholyMightChanceReducedSelfBuffExpiry2h2"] = { type = "Spawn", tier = 2, "30% chance to gain Unholy Might for 4 seconds on Kill", "Buffs on you expire 20% faster", statOrder = { 3286, 5271 }, level = 80, group = "WeaponTreeUnholyMightChanceReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreePhasingOnKillReducedSelfBuffExpiry1"] = { type = "Spawn", tier = 1, "10% chance to gain Phasing for 4 seconds on Kill", "Buffs on you expire 10% faster", statOrder = { 3373, 5271 }, level = 20, group = "WeaponTreePhasingOnKillReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreePhasingOnKillReducedSelfBuffExpiry2"] = { type = "Spawn", tier = 2, "15% chance to gain Phasing for 4 seconds on Kill", "Buffs on you expire 10% faster", statOrder = { 3373, 5271 }, level = 80, group = "WeaponTreePhasingOnKillReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreePhasingOnKillReducedSelfBuffExpiry2h1"] = { type = "Spawn", tier = 1, "20% chance to gain Phasing for 4 seconds on Kill", "Buffs on you expire 20% faster", statOrder = { 3373, 5271 }, level = 20, group = "WeaponTreePhasingOnKillReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreePhasingOnKillReducedSelfBuffExpiry2h2"] = { type = "Spawn", tier = 2, "30% chance to gain Phasing for 4 seconds on Kill", "Buffs on you expire 20% faster", statOrder = { 3373, 5271 }, level = 80, group = "WeaponTreePhasingOnKillReducedSelfBuffExpiry", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeLocalStunThresholdEnduranceChargeOnMeleeStun1"] = { type = "Spawn", tier = 1, "15% reduced Enemy Stun Threshold with this Weapon", "20% chance to gain an Endurance Charge when you Stun an Enemy with a Melee Hit", statOrder = { 2406, 2679 }, level = 15, group = "WeaponTreeLocalStunThresholdEnduranceChargeOnMeleeStun", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 750, 0 }, modTags = { }, }, + ["WeaponTreeLocalStunThresholdEnduranceChargeOnMeleeStun2"] = { type = "Spawn", tier = 2, "25% reduced Enemy Stun Threshold with this Weapon", "20% chance to gain an Endurance Charge when you Stun an Enemy with a Melee Hit", statOrder = { 2406, 2679 }, level = 74, group = "WeaponTreeLocalStunThresholdEnduranceChargeOnMeleeStun", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 750, 0 }, modTags = { }, }, + ["WeaponTreeDoubleStunDurationEnemyStunThreshold1"] = { type = "Spawn", tier = 1, "15% increased Enemy Stun Threshold", "16% chance to double Stun Duration", statOrder = { 1428, 3472 }, level = 15, group = "WeaponTreeDoubleStunDurationEnemyStunThreshold", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeDoubleStunDurationEnemyStunThreshold2"] = { type = "Spawn", tier = 2, "15% increased Enemy Stun Threshold", "24% chance to double Stun Duration", statOrder = { 1428, 3472 }, level = 74, group = "WeaponTreeDoubleStunDurationEnemyStunThreshold", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeDoubleStunDurationEnemyStunThreshold2h1"] = { type = "Spawn", tier = 1, "30% increased Enemy Stun Threshold", "35% chance to double Stun Duration", statOrder = { 1428, 3472 }, level = 15, group = "WeaponTreeDoubleStunDurationEnemyStunThreshold", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeDoubleStunDurationEnemyStunThreshold2h2"] = { type = "Spawn", tier = 2, "30% increased Enemy Stun Threshold", "45% chance to double Stun Duration", statOrder = { 1428, 3472 }, level = 74, group = "WeaponTreeDoubleStunDurationEnemyStunThreshold", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeFortifyOnMeleeStunChanceReducedFortifyDuration1"] = { type = "Spawn", tier = 1, "30% reduced Fortification Duration", "Melee Hits which Stun have 15% chance to Fortify", statOrder = { 2174, 5576 }, level = 32, group = "WeaponTreeFortifyOnMeleeStunChanceReducedFortifyDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["WeaponTreeFortifyOnMeleeStunChanceReducedFortifyDuration2"] = { type = "Spawn", tier = 2, "30% reduced Fortification Duration", "Melee Hits which Stun have 20% chance to Fortify", statOrder = { 2174, 5576 }, level = 78, group = "WeaponTreeFortifyOnMeleeStunChanceReducedFortifyDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["WeaponTreeFortifyOnMeleeStunChanceReducedFortifyDuration2h1"] = { type = "Spawn", tier = 1, "30% reduced Fortification Duration", "Melee Hits which Stun have 30% chance to Fortify", statOrder = { 2174, 5576 }, level = 32, group = "WeaponTreeFortifyOnMeleeStunChanceReducedFortifyDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["WeaponTreeFortifyOnMeleeStunChanceReducedFortifyDuration2h2"] = { type = "Spawn", tier = 2, "30% reduced Fortification Duration", "Melee Hits which Stun have 40% chance to Fortify", statOrder = { 2174, 5576 }, level = 78, group = "WeaponTreeFortifyOnMeleeStunChanceReducedFortifyDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["WeaponTreeSkillEffectDurationReducedCooldownRecovery1"] = { type = "Spawn", tier = 1, "15% increased Skill Effect Duration", "10% reduced Cooldown Recovery Rate", statOrder = { 1806, 4899 }, level = 20, group = "WeaponTreeSkillEffectDurationReducedCooldownRecovery", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeSkillEffectDurationReducedCooldownRecovery2"] = { type = "Spawn", tier = 2, "20% increased Skill Effect Duration", "10% reduced Cooldown Recovery Rate", statOrder = { 1806, 4899 }, level = 84, group = "WeaponTreeSkillEffectDurationReducedCooldownRecovery", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeSkillEffectDurationReducedCooldownRecovery2h1"] = { type = "Spawn", tier = 1, "30% increased Skill Effect Duration", "20% reduced Cooldown Recovery Rate", statOrder = { 1806, 4899 }, level = 20, group = "WeaponTreeSkillEffectDurationReducedCooldownRecovery", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeSkillEffectDurationReducedCooldownRecovery2h2"] = { type = "Spawn", tier = 2, "40% increased Skill Effect Duration", "20% reduced Cooldown Recovery Rate", statOrder = { 1806, 4899 }, level = 84, group = "WeaponTreeSkillEffectDurationReducedCooldownRecovery", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeCooldownRecoveryReducedSkillEffectDuration1"] = { type = "Spawn", tier = 1, "10% reduced Skill Effect Duration", "10% increased Cooldown Recovery Rate", statOrder = { 1806, 4899 }, level = 20, group = "WeaponTreeCooldownRecoveryReducedSkillEffectDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeCooldownRecoveryReducedSkillEffectDuration2"] = { type = "Spawn", tier = 2, "10% reduced Skill Effect Duration", "15% increased Cooldown Recovery Rate", statOrder = { 1806, 4899 }, level = 84, group = "WeaponTreeCooldownRecoveryReducedSkillEffectDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeCooldownRecoveryReducedSkillEffectDuration2h1"] = { type = "Spawn", tier = 1, "10% reduced Skill Effect Duration", "20% increased Cooldown Recovery Rate", statOrder = { 1806, 4899 }, level = 20, group = "WeaponTreeCooldownRecoveryReducedSkillEffectDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeCooldownRecoveryReducedSkillEffectDuration2h2"] = { type = "Spawn", tier = 2, "10% reduced Skill Effect Duration", "25% increased Cooldown Recovery Rate", statOrder = { 1806, 4899 }, level = 84, group = "WeaponTreeCooldownRecoveryReducedSkillEffectDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeFlaskChargeOnCriticalStrikeReducedFlaskEffect1"] = { type = "Spawn", tier = 1, "Flasks applied to you have 10% reduced Effect", "40% chance to gain a Flask Charge when you deal a Critical Strike", statOrder = { 2652, 3299 }, level = 25, group = "WeaponTreeFlaskChargeOnCriticalStrikeReducedFlaskEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeFlaskChargeOnCriticalStrikeReducedFlaskEffect2"] = { type = "Spawn", tier = 2, "Flasks applied to you have 10% reduced Effect", "50% chance to gain a Flask Charge when you deal a Critical Strike", statOrder = { 2652, 3299 }, level = 75, group = "WeaponTreeFlaskChargeOnCriticalStrikeReducedFlaskEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeFlaskChargeOnCriticalStrikeReducedFlaskEffect2h1"] = { type = "Spawn", tier = 1, "Flasks applied to you have 10% reduced Effect", "80% chance to gain a Flask Charge when you deal a Critical Strike", statOrder = { 2652, 3299 }, level = 25, group = "WeaponTreeFlaskChargeOnCriticalStrikeReducedFlaskEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeFlaskChargeOnCriticalStrikeReducedFlaskEffect2h2"] = { type = "Spawn", tier = 2, "Flasks applied to you have 10% reduced Effect", "Gain a Flask Charge when you deal a Critical Strike", statOrder = { 2652, 3299 }, level = 75, group = "WeaponTreeFlaskChargeOnCriticalStrikeReducedFlaskEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeFlaskEffectReducedFlaskChargesGained1"] = { type = "Spawn", tier = 1, "15% reduced Flask Charges gained", "Flasks applied to you have 8% increased Effect", statOrder = { 2092, 2652 }, level = 12, group = "WeaponTreeFlaskEffectReducedFlaskChargesGained", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeFlaskEffectReducedFlaskChargesGained2"] = { type = "Spawn", tier = 2, "15% reduced Flask Charges gained", "Flasks applied to you have 10% increased Effect", statOrder = { 2092, 2652 }, level = 70, group = "WeaponTreeFlaskEffectReducedFlaskChargesGained", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeFlaskEffectReducedFlaskChargesGained2h1"] = { type = "Spawn", tier = 1, "20% reduced Flask Charges gained", "Flasks applied to you have 12% increased Effect", statOrder = { 2092, 2652 }, level = 12, group = "WeaponTreeFlaskEffectReducedFlaskChargesGained", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeFlaskEffectReducedFlaskChargesGained2h2"] = { type = "Spawn", tier = 2, "20% reduced Flask Charges gained", "Flasks applied to you have 15% increased Effect", statOrder = { 2092, 2652 }, level = 70, group = "WeaponTreeFlaskEffectReducedFlaskChargesGained", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeCurseEffectIfMostlyExpiredReducedCurseEffect1"] = { type = "Spawn", tier = 1, "10% reduced Effect of your Curses", "Your Curses have 25% increased Effect if 50% of Curse Duration expired", statOrder = { 2505, 10394 }, level = 24, group = "WeaponTreeCurseEffectIfMostlyExpiredReducedCurseEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeCurseEffectIfMostlyExpiredReducedCurseEffect2"] = { type = "Spawn", tier = 2, "10% reduced Effect of your Curses", "Your Curses have 30% increased Effect if 50% of Curse Duration expired", statOrder = { 2505, 10394 }, level = 75, group = "WeaponTreeCurseEffectIfMostlyExpiredReducedCurseEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeCurseEffectIfMostlyExpiredReducedCurseEffect2h1"] = { type = "Spawn", tier = 1, "15% reduced Effect of your Curses", "Your Curses have 35% increased Effect if 50% of Curse Duration expired", statOrder = { 2505, 10394 }, level = 24, group = "WeaponTreeCurseEffectIfMostlyExpiredReducedCurseEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeCurseEffectIfMostlyExpiredReducedCurseEffect2h2"] = { type = "Spawn", tier = 2, "15% reduced Effect of your Curses", "Your Curses have 50% increased Effect if 50% of Curse Duration expired", statOrder = { 2505, 10394 }, level = 75, group = "WeaponTreeCurseEffectIfMostlyExpiredReducedCurseEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeCurseEffectIncreasedCurseEffectOnSelf1"] = { type = "Spawn", tier = 1, "15% increased Effect of Curses on you", "8% increased Effect of your Curses", statOrder = { 2079, 2505 }, level = 24, group = "WeaponTreeCurseEffectIncreasedCurseEffectOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeCurseEffectIncreasedCurseEffectOnSelf2"] = { type = "Spawn", tier = 2, "15% increased Effect of Curses on you", "10% increased Effect of your Curses", statOrder = { 2079, 2505 }, level = 75, group = "WeaponTreeCurseEffectIncreasedCurseEffectOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeCurseEffectIncreasedCurseEffectOnSelf2h1"] = { type = "Spawn", tier = 1, "25% increased Effect of Curses on you", "12% increased Effect of your Curses", statOrder = { 2079, 2505 }, level = 24, group = "WeaponTreeCurseEffectIncreasedCurseEffectOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeCurseEffectIncreasedCurseEffectOnSelf2h2"] = { type = "Spawn", tier = 2, "25% increased Effect of Curses on you", "15% increased Effect of your Curses", statOrder = { 2079, 2505 }, level = 75, group = "WeaponTreeCurseEffectIncreasedCurseEffectOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeCurseDurationReducedCurseAreaOfEffect1"] = { type = "Spawn", tier = 1, "20% reduced Area of Effect of Hex Skills", "Hex Skills have 40% increased Skill Effect Duration", statOrder = { 2134, 7000 }, level = 24, group = "WeaponTreeCurseDurationReducedCurseAreaOfEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeCurseDurationReducedCurseAreaOfEffect2"] = { type = "Spawn", tier = 2, "20% reduced Area of Effect of Hex Skills", "Hex Skills have 50% increased Skill Effect Duration", statOrder = { 2134, 7000 }, level = 75, group = "WeaponTreeCurseDurationReducedCurseAreaOfEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeCurseDurationReducedCurseAreaOfEffect2h1"] = { type = "Spawn", tier = 1, "30% reduced Area of Effect of Hex Skills", "Hex Skills have 80% increased Skill Effect Duration", statOrder = { 2134, 7000 }, level = 24, group = "WeaponTreeCurseDurationReducedCurseAreaOfEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeCurseDurationReducedCurseAreaOfEffect2h2"] = { type = "Spawn", tier = 2, "30% reduced Area of Effect of Hex Skills", "Hex Skills have 100% increased Skill Effect Duration", statOrder = { 2134, 7000 }, level = 75, group = "WeaponTreeCurseDurationReducedCurseAreaOfEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeQuiverModEffect2h1"] = { type = "Spawn", tier = 1, "15% increased bonuses gained from Equipped Quiver", statOrder = { 9568 }, level = 36, group = "WeaponTreeQuiverModEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "bow", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeQuiverModEffect2h2"] = { type = "Spawn", tier = 2, "20% increased bonuses gained from Equipped Quiver", statOrder = { 9568 }, level = 85, group = "WeaponTreeQuiverModEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "bow", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeMineDetonateTwiceChance1"] = { type = "Spawn", tier = 1, "15% reduced Mana Reservation Efficiency of Skills that throw Mines", "Mines have a 10% chance to be Detonated an Additional Time", statOrder = { 8046, 9032 }, level = 1, group = "WeaponTreeMineDetonateTwiceChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeMineDetonateTwiceChance2"] = { type = "Spawn", tier = 2, "15% reduced Mana Reservation Efficiency of Skills that throw Mines", "Mines have a 14% chance to be Detonated an Additional Time", statOrder = { 8046, 9032 }, level = 60, group = "WeaponTreeMineDetonateTwiceChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeMineDetonateTwiceChance2h1"] = { type = "Spawn", tier = 1, "25% reduced Mana Reservation Efficiency of Skills that throw Mines", "Mines have a 16% chance to be Detonated an Additional Time", statOrder = { 8046, 9032 }, level = 1, group = "WeaponTreeMineDetonateTwiceChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeMineDetonateTwiceChance2h2"] = { type = "Spawn", tier = 2, "25% reduced Mana Reservation Efficiency of Skills that throw Mines", "Mines have a 20% chance to be Detonated an Additional Time", statOrder = { 8046, 9032 }, level = 60, group = "WeaponTreeMineDetonateTwiceChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeMineAuraEffect1"] = { type = "Spawn", tier = 1, "Skills used by Mines have 40% reduced Area of Effect", "25% increased Effect of Auras from Mines", statOrder = { 9028, 9030 }, level = 1, group = "WeaponTreeMineAuraEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeMineAuraEffect2"] = { type = "Spawn", tier = 2, "Skills used by Mines have 40% reduced Area of Effect", "40% increased Effect of Auras from Mines", statOrder = { 9028, 9030 }, level = 60, group = "WeaponTreeMineAuraEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeMineAuraEffect2h1"] = { type = "Spawn", tier = 1, "Skills used by Mines have 60% reduced Area of Effect", "50% increased Effect of Auras from Mines", statOrder = { 9028, 9030 }, level = 1, group = "WeaponTreeMineAuraEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeMineAuraEffect2h2"] = { type = "Spawn", tier = 2, "Skills used by Mines have 60% reduced Area of Effect", "70% increased Effect of Auras from Mines", statOrder = { 9028, 9030 }, level = 60, group = "WeaponTreeMineAuraEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeTrapThrowingSpeed1"] = { type = "Spawn", tier = 1, "40% reduced Trap Trigger Area of Effect", "12% increased Trap Throwing Speed", statOrder = { 1834, 1836 }, level = 1, group = "WeaponTreeTrapThrowingSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeTrapThrowingSpeed2"] = { type = "Spawn", tier = 2, "40% reduced Trap Trigger Area of Effect", "16% increased Trap Throwing Speed", statOrder = { 1834, 1836 }, level = 60, group = "WeaponTreeTrapThrowingSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeTrapThrowingSpeed2h1"] = { type = "Spawn", tier = 1, "60% reduced Trap Trigger Area of Effect", "18% increased Trap Throwing Speed", statOrder = { 1834, 1836 }, level = 1, group = "WeaponTreeTrapThrowingSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeTrapThrowingSpeed2h2"] = { type = "Spawn", tier = 2, "60% reduced Trap Trigger Area of Effect", "25% increased Trap Throwing Speed", statOrder = { 1834, 1836 }, level = 60, group = "WeaponTreeTrapThrowingSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeTrapsThrowInACircle"] = { type = "Spawn", tier = 1, "25% reduced Trap Spread", "Traps from Skills are thrown randomly around targeted location", statOrder = { 10202, 10391 }, level = 1, group = "WeaponTreeTrapsThrowInACircle", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeTrapsThrowInACircle2h"] = { type = "Spawn", tier = 1, "25% reduced Trap Spread", "Traps from Skills are thrown randomly around targeted location", statOrder = { 10202, 10391 }, level = 60, group = "WeaponTreeTrapsThrowInACircle", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeBrandAreaOfEffectAtLowDuration1"] = { type = "Spawn", tier = 1, "Brands have 25% increased Area of Effect if 50% of Attached Duration expired", "Brand Skills have 20% reduced Duration", statOrder = { 5161, 9822 }, level = 12, group = "WeaponTreeBrandAreaOfEffectAtLowDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeBrandAreaOfEffectAtLowDuration2"] = { type = "Spawn", tier = 2, "Brands have 40% increased Area of Effect if 50% of Attached Duration expired", "Brand Skills have 20% reduced Duration", statOrder = { 5161, 9822 }, level = 60, group = "WeaponTreeBrandAreaOfEffectAtLowDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeBrandAreaOfEffectAtLowDuration2h1"] = { type = "Spawn", tier = 1, "Brands have 45% increased Area of Effect if 50% of Attached Duration expired", "Brand Skills have 30% reduced Duration", statOrder = { 5161, 9822 }, level = 12, group = "WeaponTreeBrandAreaOfEffectAtLowDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeBrandAreaOfEffectAtLowDuration2h2"] = { type = "Spawn", tier = 2, "Brands have 60% increased Area of Effect if 50% of Attached Duration expired", "Brand Skills have 30% reduced Duration", statOrder = { 5161, 9822 }, level = 60, group = "WeaponTreeBrandAreaOfEffectAtLowDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeBrandSearchRange1"] = { type = "Spawn", tier = 1, "Brand Recall has 40% reduced Cooldown Recovery Rate", "40% increased Brand Attachment range", statOrder = { 9823, 9827 }, level = 12, group = "WeaponTreeBrandSearchRange", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeBrandSearchRange2"] = { type = "Spawn", tier = 2, "Brand Recall has 40% reduced Cooldown Recovery Rate", "60% increased Brand Attachment range", statOrder = { 9823, 9827 }, level = 60, group = "WeaponTreeBrandSearchRange", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 0, 250, 250, 250, 0 }, modTags = { }, }, + ["WeaponTreeBrandSearchRange2h1"] = { type = "Spawn", tier = 1, "Brand Recall has 60% reduced Cooldown Recovery Rate", "75% increased Brand Attachment range", statOrder = { 9823, 9827 }, level = 12, group = "WeaponTreeBrandSearchRange", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeBrandSearchRange2h2"] = { type = "Spawn", tier = 2, "Brand Recall has 60% reduced Cooldown Recovery Rate", "100% increased Brand Attachment range", statOrder = { 9823, 9827 }, level = 60, group = "WeaponTreeBrandSearchRange", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeTotemChanceToSpawnTwo1"] = { type = "Spawn", tier = 1, "15% reduced Totem Placement speed", "Skills that Summon a Totem have 25% chance to Summon two Totems instead of one", statOrder = { 2487, 5620 }, level = 4, group = "WeaponTreeTotemChanceToSpawnTwo", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeTotemChanceToSpawnTwo2"] = { type = "Spawn", tier = 2, "15% reduced Totem Placement speed", "Skills that Summon a Totem have 40% chance to Summon two Totems instead of one", statOrder = { 2487, 5620 }, level = 60, group = "WeaponTreeTotemChanceToSpawnTwo", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeTotemChanceToSpawnTwo2h1"] = { type = "Spawn", tier = 1, "25% reduced Totem Placement speed", "Skills that Summon a Totem have 50% chance to Summon two Totems instead of one", statOrder = { 2487, 5620 }, level = 4, group = "WeaponTreeTotemChanceToSpawnTwo", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeTotemChanceToSpawnTwo2h2"] = { type = "Spawn", tier = 2, "25% reduced Totem Placement speed", "Skills that Summon a Totem have 70% chance to Summon two Totems instead of one", statOrder = { 2487, 5620 }, level = 60, group = "WeaponTreeTotemChanceToSpawnTwo", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeTotemExplodeOnDeath1"] = { type = "Spawn", tier = 1, "15% reduced Totem Life", "Totems Explode on Death, dealing 10% of their Life as Physical Damage", statOrder = { 1685, 10187 }, level = 4, group = "WeaponTreeTotemExplodeOnDeath", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeTotemExplodeOnDeath2"] = { type = "Spawn", tier = 2, "15% reduced Totem Life", "Totems Explode on Death, dealing 15% of their Life as Physical Damage", statOrder = { 1685, 10187 }, level = 60, group = "WeaponTreeTotemExplodeOnDeath", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeTotemExplodeOnDeath2h1"] = { type = "Spawn", tier = 1, "25% reduced Totem Life", "Totems Explode on Death, dealing 20% of their Life as Physical Damage", statOrder = { 1685, 10187 }, level = 4, group = "WeaponTreeTotemExplodeOnDeath", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeTotemExplodeOnDeath2h2"] = { type = "Spawn", tier = 2, "25% reduced Totem Life", "Totems Explode on Death, dealing 30% of their Life as Physical Damage", statOrder = { 1685, 10187 }, level = 60, group = "WeaponTreeTotemExplodeOnDeath", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeUnaffectedByChillWhileChannelling"] = { type = "Spawn", tier = 1, "30% increased Effect of Chill on you", "Unaffected by Chill while Channelling", statOrder = { 1556, 10242 }, level = 1, group = "WeaponTreeUnaffectedByChillWhileChannelling", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "two_hand_weapon", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, + ["WeaponTreeUnaffectedByShockWhileChannelling"] = { type = "Spawn", tier = 1, "30% increased Effect of Shock on you", "Unaffected by Shock while Channelling", statOrder = { 9803, 10262 }, level = 1, group = "WeaponTreeUnaffectedByShockWhileChannelling", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "two_hand_weapon", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, + ["WeaponTreeWarcryBuffEffect1"] = { type = "Spawn", tier = 1, "20% increased Warcry Buff Effect", "Warcry Skills have 20% reduced Area of Effect", statOrder = { 10348, 10356 }, level = 10, group = "WeaponTreeWarcryBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeWarcryBuffEffect2"] = { type = "Spawn", tier = 2, "30% increased Warcry Buff Effect", "Warcry Skills have 20% reduced Area of Effect", statOrder = { 10348, 10356 }, level = 60, group = "WeaponTreeWarcryBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeWarcryBuffEffect2h1"] = { type = "Spawn", tier = 1, "35% increased Warcry Buff Effect", "Warcry Skills have 30% reduced Area of Effect", statOrder = { 10348, 10356 }, level = 10, group = "WeaponTreeWarcryBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeWarcryBuffEffect2h2"] = { type = "Spawn", tier = 2, "50% increased Warcry Buff Effect", "Warcry Skills have 30% reduced Area of Effect", statOrder = { 10348, 10356 }, level = 60, group = "WeaponTreeWarcryBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeWarcryDamagePerWarcryUsedRecently1"] = { type = "Spawn", tier = 1, "30% reduced Damage", "25% increased Damage for each time you've Warcried Recently", statOrder = { 1103, 5962 }, level = 10, group = "WeaponTreeWarcryDamagePerWarcryUsedRecently", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeWarcryDamagePerWarcryUsedRecently2"] = { type = "Spawn", tier = 2, "30% reduced Damage", "40% increased Damage for each time you've Warcried Recently", statOrder = { 1103, 5962 }, level = 60, group = "WeaponTreeWarcryDamagePerWarcryUsedRecently", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeWarcryDamagePerWarcryUsedRecently2h1"] = { type = "Spawn", tier = 1, "50% reduced Damage", "40% increased Damage for each time you've Warcried Recently", statOrder = { 1103, 5962 }, level = 10, group = "WeaponTreeWarcryDamagePerWarcryUsedRecently", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeWarcryDamagePerWarcryUsedRecently2h2"] = { type = "Spawn", tier = 2, "50% reduced Damage", "60% increased Damage for each time you've Warcried Recently", statOrder = { 1103, 5962 }, level = 60, group = "WeaponTreeWarcryDamagePerWarcryUsedRecently", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["WeaponTreeScorchChanceCannotIgnite1"] = { type = "Spawn", tier = 1, "6% chance to Scorch Enemies", "Cannot inflict Ignite", statOrder = { 1936, 2469 }, level = 25, group = "WeaponTreeScorchChanceCannotIgnite", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeScorchChanceCannotIgnite2"] = { type = "Spawn", tier = 2, "10% chance to Scorch Enemies", "Cannot inflict Ignite", statOrder = { 1936, 2469 }, level = 68, group = "WeaponTreeScorchChanceCannotIgnite", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeScorchChanceCannotIgnite2h1"] = { type = "Spawn", tier = 1, "12% chance to Scorch Enemies", "Cannot inflict Ignite", statOrder = { 1936, 2469 }, level = 25, group = "WeaponTreeScorchChanceCannotIgnite", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeScorchChanceCannotIgnite2h2"] = { type = "Spawn", tier = 2, "20% chance to Scorch Enemies", "Cannot inflict Ignite", statOrder = { 1936, 2469 }, level = 68, group = "WeaponTreeScorchChanceCannotIgnite", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeBrittleChanceCannotFreezeChill1"] = { type = "Spawn", tier = 1, "6% chance to inflict Brittle", "Cannot inflict Freeze or Chill", statOrder = { 1939, 2471 }, level = 25, group = "WeaponTreeBrittleChanceCannotFreezeChill", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeBrittleChanceCannotFreezeChill2"] = { type = "Spawn", tier = 2, "10% chance to inflict Brittle", "Cannot inflict Freeze or Chill", statOrder = { 1939, 2471 }, level = 68, group = "WeaponTreeBrittleChanceCannotFreezeChill", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeBrittleChanceCannotFreezeChill2h1"] = { type = "Spawn", tier = 1, "12% chance to inflict Brittle", "Cannot inflict Freeze or Chill", statOrder = { 1939, 2471 }, level = 25, group = "WeaponTreeBrittleChanceCannotFreezeChill", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeBrittleChanceCannotFreezeChill2h2"] = { type = "Spawn", tier = 2, "20% chance to inflict Brittle", "Cannot inflict Freeze or Chill", statOrder = { 1939, 2471 }, level = 68, group = "WeaponTreeBrittleChanceCannotFreezeChill", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeSapChanceCannotShock1"] = { type = "Spawn", tier = 1, "6% chance to Sap Enemies", "Cannot inflict Shock", statOrder = { 1943, 2472 }, level = 25, group = "WeaponTreeSapChanceCannotShock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeSapChanceCannotShock2"] = { type = "Spawn", tier = 2, "10% chance to Sap Enemies", "Cannot inflict Shock", statOrder = { 1943, 2472 }, level = 68, group = "WeaponTreeSapChanceCannotShock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeSapChanceCannotShock2h1"] = { type = "Spawn", tier = 1, "12% chance to Sap Enemies", "Cannot inflict Shock", statOrder = { 1943, 2472 }, level = 25, group = "WeaponTreeSapChanceCannotShock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeSapChanceCannotShock2h2"] = { type = "Spawn", tier = 2, "20% chance to Sap Enemies", "Cannot inflict Shock", statOrder = { 1943, 2472 }, level = 68, group = "WeaponTreeSapChanceCannotShock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeFireExposureOnHit"] = { type = "Spawn", tier = 1, "Inflict Fire Exposure on Hit", "25% chance to be inflicted with Fire Exposure when you take Fire Damage from a Hit", statOrder = { 4921, 7147 }, level = 34, group = "WeaponTreeFireExposureOnHit", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeColdExposureOnHit"] = { type = "Spawn", tier = 1, "Inflict Cold Exposure on Hit", "25% chance to be inflicted with Cold Exposure when you take Cold Damage from a Hit", statOrder = { 4920, 7146 }, level = 34, group = "WeaponTreeColdExposureOnHit", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeLightningExposureOnHit"] = { type = "Spawn", tier = 1, "Inflict Lightning Exposure on Hit", "25% chance to be inflicted with Lightning Exposure when you take Lightning Damage from a Hit", statOrder = { 4922, 7148 }, level = 34, group = "WeaponTreeLightningExposureOnHit", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeAllExposureOnHit"] = { type = "Spawn", tier = 1, "Inflict Fire, Cold, and Lightning Exposure on Hit", "25% chance to be inflicted with a random Exposure when you take Elemental Damage from a Hit", statOrder = { 7136, 7149 }, level = 75, group = "WeaponTreeAllExposureOnHit", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeWitherOnHitChance1"] = { type = "Spawn", tier = 1, "6% chance to inflict Withered for 2 seconds on Hit", "25% chance to be Withered for 2 seconds when you take Chaos Damage from a Hit", statOrder = { 4304, 7150 }, level = 38, group = "WeaponTreeWitherOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeWitherOnHitChance2"] = { type = "Spawn", tier = 2, "10% chance to inflict Withered for 2 seconds on Hit", "25% chance to be Withered for 2 seconds when you take Chaos Damage from a Hit", statOrder = { 4304, 7150 }, level = 76, group = "WeaponTreeWitherOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeWitherOnHitChance2h1"] = { type = "Spawn", tier = 1, "10% chance to inflict Withered for 2 seconds on Hit", "50% chance to be Withered for 2 seconds when you take Chaos Damage from a Hit", statOrder = { 4304, 7150 }, level = 38, group = "WeaponTreeWitherOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeWitherOnHitChance2h2"] = { type = "Spawn", tier = 2, "15% chance to inflict Withered for 2 seconds on Hit", "50% chance to be Withered for 2 seconds when you take Chaos Damage from a Hit", statOrder = { 4304, 7150 }, level = 76, group = "WeaponTreeWitherOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeOverwhelm1"] = { type = "Spawn", tier = 1, "Overwhelm 15% Physical Damage Reduction", "Hits against you Overwhelm 5% of Physical Damage Reduction", statOrder = { 2887, 7025 }, level = 20, group = "WeaponTreeOvewhelm", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeOverwhelm2"] = { type = "Spawn", tier = 2, "Overwhelm 20% Physical Damage Reduction", "Hits against you Overwhelm 5% of Physical Damage Reduction", statOrder = { 2887, 7025 }, level = 68, group = "WeaponTreeOvewhelm", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeOverwhelm2h1"] = { type = "Spawn", tier = 1, "Overwhelm 24% Physical Damage Reduction", "Hits against you Overwhelm 10% of Physical Damage Reduction", statOrder = { 2887, 7025 }, level = 25, group = "WeaponTreeOvewhelm", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeOverwhelm2h2"] = { type = "Spawn", tier = 2, "Overwhelm 32% Physical Damage Reduction", "Hits against you Overwhelm 10% of Physical Damage Reduction", statOrder = { 2887, 7025 }, level = 68, group = "WeaponTreeOvewhelm", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeStunDuration1"] = { type = "Spawn", tier = 1, "30% increased Stun Duration on Enemies", "15% increased Stun Duration on you", statOrder = { 1774, 4081 }, level = 1, group = "WeaponTreeStunDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, + ["WeaponTreeStunDuration2"] = { type = "Spawn", tier = 2, "40% increased Stun Duration on Enemies", "20% increased Stun Duration on you", statOrder = { 1774, 4081 }, level = 45, group = "WeaponTreeStunDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, + ["WeaponTreeStunDuration2h1"] = { type = "Spawn", tier = 1, "60% increased Stun Duration on Enemies", "30% increased Stun Duration on you", statOrder = { 1774, 4081 }, level = 1, group = "WeaponTreeStunDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeStunDuration2h2"] = { type = "Spawn", tier = 2, "80% increased Stun Duration on Enemies", "40% increased Stun Duration on you", statOrder = { 1774, 4081 }, level = 45, group = "WeaponTreeStunDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeFreezeDuration1"] = { type = "Spawn", tier = 1, "20% increased Freeze Duration on Enemies", "15% increased Freeze Duration on you", statOrder = { 1769, 1785 }, level = 1, group = "WeaponTreeFreezeDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, + ["WeaponTreeFreezeDuration2"] = { type = "Spawn", tier = 2, "30% increased Freeze Duration on Enemies", "20% increased Freeze Duration on you", statOrder = { 1769, 1785 }, level = 45, group = "WeaponTreeFreezeDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, + ["WeaponTreeFreezeDuration2h1"] = { type = "Spawn", tier = 1, "35% increased Freeze Duration on Enemies", "30% increased Freeze Duration on you", statOrder = { 1769, 1785 }, level = 1, group = "WeaponTreeFreezeDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeFreezeDuration2h2"] = { type = "Spawn", tier = 2, "50% increased Freeze Duration on Enemies", "40% increased Freeze Duration on you", statOrder = { 1769, 1785 }, level = 45, group = "WeaponTreeFreezeDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeIgniteDuration1"] = { type = "Spawn", tier = 1, "20% increased Ignite Duration on Enemies", "15% increased Ignite Duration on you", statOrder = { 1770, 1786 }, level = 1, group = "WeaponTreeIgniteDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, + ["WeaponTreeIgniteDuration2"] = { type = "Spawn", tier = 2, "30% increased Ignite Duration on Enemies", "20% increased Ignite Duration on you", statOrder = { 1770, 1786 }, level = 45, group = "WeaponTreeIgniteDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, + ["WeaponTreeIgniteDuration2h1"] = { type = "Spawn", tier = 1, "35% increased Ignite Duration on Enemies", "30% increased Ignite Duration on you", statOrder = { 1770, 1786 }, level = 1, group = "WeaponTreeIgniteDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeIgniteDuration2h2"] = { type = "Spawn", tier = 2, "50% increased Ignite Duration on Enemies", "40% increased Ignite Duration on you", statOrder = { 1770, 1786 }, level = 45, group = "WeaponTreeIgniteDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeBleedDuration1"] = { type = "Spawn", tier = 1, "20% increased Bleeding Duration", "15% increased Bleed Duration on you", statOrder = { 4888, 9753 }, level = 1, group = "WeaponTreeBleedDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, + ["WeaponTreeBleedDuration2"] = { type = "Spawn", tier = 2, "30% increased Bleeding Duration", "20% increased Bleed Duration on you", statOrder = { 4888, 9753 }, level = 45, group = "WeaponTreeBleedDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, + ["WeaponTreeBleedDuration2h1"] = { type = "Spawn", tier = 1, "35% increased Bleeding Duration", "30% increased Bleed Duration on you", statOrder = { 4888, 9753 }, level = 1, group = "WeaponTreeBleedDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeBleedDuration2h2"] = { type = "Spawn", tier = 2, "50% increased Bleeding Duration", "40% increased Bleed Duration on you", statOrder = { 4888, 9753 }, level = 45, group = "WeaponTreeBleedDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreePoisonDuration1"] = { type = "Spawn", tier = 1, "10% increased Poison Duration", "15% increased Poison Duration on you", statOrder = { 3078, 9762 }, level = 1, group = "WeaponTreePoisonDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, + ["WeaponTreePoisonDuration2"] = { type = "Spawn", tier = 2, "15% increased Poison Duration", "20% increased Poison Duration on you", statOrder = { 3078, 9762 }, level = 45, group = "WeaponTreePoisonDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, + ["WeaponTreePoisonDuration2h1"] = { type = "Spawn", tier = 1, "18% increased Poison Duration", "30% increased Poison Duration on you", statOrder = { 3078, 9762 }, level = 1, group = "WeaponTreePoisonDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreePoisonDuration2h2"] = { type = "Spawn", tier = 2, "24% increased Poison Duration", "40% increased Poison Duration on you", statOrder = { 3078, 9762 }, level = 45, group = "WeaponTreePoisonDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeChillEffect1"] = { type = "Spawn", tier = 1, "15% increased Effect of Chill on you", "30% increased Effect of Chill", statOrder = { 1556, 5666 }, level = 1, group = "WeaponTreeChillEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, + ["WeaponTreeChillEffect2"] = { type = "Spawn", tier = 2, "20% increased Effect of Chill on you", "40% increased Effect of Chill", statOrder = { 1556, 5666 }, level = 45, group = "WeaponTreeChillEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, + ["WeaponTreeChillEffect2h1"] = { type = "Spawn", tier = 1, "30% increased Effect of Chill on you", "60% increased Effect of Chill", statOrder = { 1556, 5666 }, level = 1, group = "WeaponTreeChillEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeChillEffect2h2"] = { type = "Spawn", tier = 2, "40% increased Effect of Chill on you", "80% increased Effect of Chill", statOrder = { 1556, 5666 }, level = 45, group = "WeaponTreeChillEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeShockEffect1"] = { type = "Spawn", tier = 1, "30% increased Effect of Shock", "15% increased Effect of Shock on you", statOrder = { 9792, 9803 }, level = 1, group = "WeaponTreeShockEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, + ["WeaponTreeShockEffect2"] = { type = "Spawn", tier = 2, "40% increased Effect of Shock", "20% increased Effect of Shock on you", statOrder = { 9792, 9803 }, level = 45, group = "WeaponTreeShockEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, + ["WeaponTreeShockEffect2h1"] = { type = "Spawn", tier = 1, "60% increased Effect of Shock", "30% increased Effect of Shock on you", statOrder = { 9792, 9803 }, level = 1, group = "WeaponTreeShockEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeShockEffect2h2"] = { type = "Spawn", tier = 2, "80% increased Effect of Shock", "40% increased Effect of Shock on you", statOrder = { 9792, 9803 }, level = 45, group = "WeaponTreeShockEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeImpaleEffect1"] = { type = "Spawn", tier = 1, "10% increased Impale Effect", "Attack Hits against you have 15% chance to Impale", statOrder = { 7107, 9621 }, level = 1, group = "WeaponTreeImpaleEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "shield", "default", }, weightVal = { 75, 300, 300, 0 }, modTags = { }, }, + ["WeaponTreeImpaleEffect2"] = { type = "Spawn", tier = 2, "15% increased Impale Effect", "Attack Hits against you have 20% chance to Impale", statOrder = { 7107, 9621 }, level = 45, group = "WeaponTreeImpaleEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "shield", "default", }, weightVal = { 75, 300, 300, 0 }, modTags = { }, }, + ["WeaponTreeImpaleEffect2h1"] = { type = "Spawn", tier = 1, "18% increased Impale Effect", "Attack Hits against you have 30% chance to Impale", statOrder = { 7107, 9621 }, level = 1, group = "WeaponTreeImpaleEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 75, 300, 0 }, modTags = { }, }, + ["WeaponTreeImpaleEffect2h2"] = { type = "Spawn", tier = 2, "24% increased Impale Effect", "Attack Hits against you have 40% chance to Impale", statOrder = { 7107, 9621 }, level = 45, group = "WeaponTreeImpaleEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 75, 300, 0 }, modTags = { }, }, + ["WeaponTreeLocalReducedAttributeRequirements1"] = { type = "Spawn", tier = 1, "20% reduced Attribute Requirements", statOrder = { 988 }, level = 1, group = "WeaponTreeLocalAttributeRequirements", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "fishing_rod", "default", }, weightVal = { 0, 1000 }, modTags = { }, }, + ["WeaponTreeLocalReducedAttributeRequirements2"] = { type = "Spawn", tier = 2, "30% reduced Attribute Requirements", statOrder = { 988 }, level = 1, group = "WeaponTreeLocalAttributeRequirements", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "fishing_rod", "default", }, weightVal = { 0, 1000 }, modTags = { }, }, + ["WeaponTreeDexterityAndNoInherentBonusFromDexterity1"] = { type = "Spawn", tier = 1, "+60 to Dexterity", "Gain no inherent bonuses from Dexterity", statOrder = { 1090, 1924 }, level = 1, group = "WeaponTreeDexterityAndNoInherentBonusFromDexterity", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeDexterityAndNoInherentBonusFromDexterity2"] = { type = "Spawn", tier = 2, "+80 to Dexterity", "Gain no inherent bonuses from Dexterity", statOrder = { 1090, 1924 }, level = 1, group = "WeaponTreeDexterityAndNoInherentBonusFromDexterity", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeDexterityAndNoInherentBonusFromDexterity2h1"] = { type = "Spawn", tier = 1, "+90 to Dexterity", "Gain no inherent bonuses from Dexterity", statOrder = { 1090, 1924 }, level = 1, group = "WeaponTreeDexterityAndNoInherentBonusFromDexterity", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 200, 500, 0 }, modTags = { }, }, + ["WeaponTreeDexterityAndNoInherentBonusFromDexterity2h2"] = { type = "Spawn", tier = 2, "+120 to Dexterity", "Gain no inherent bonuses from Dexterity", statOrder = { 1090, 1924 }, level = 1, group = "WeaponTreeDexterityAndNoInherentBonusFromDexterity", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 200, 500, 0 }, modTags = { }, }, + ["WeaponTreeIntelligenceAndNoInherentBonusFromIntelligence1"] = { type = "Spawn", tier = 1, "+60 to Intelligence", "Gain no inherent bonuses from Intelligence", statOrder = { 1091, 1925 }, level = 1, group = "WeaponTreeIntelligenceAndNoInherentBonusFromIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "shield", "default", }, weightVal = { 200, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeIntelligenceAndNoInherentBonusFromIntelligence2"] = { type = "Spawn", tier = 2, "+80 to Intelligence", "Gain no inherent bonuses from Intelligence", statOrder = { 1091, 1925 }, level = 1, group = "WeaponTreeIntelligenceAndNoInherentBonusFromIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "shield", "default", }, weightVal = { 200, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeIntelligenceAndNoInherentBonusFromIntelligence2h1"] = { type = "Spawn", tier = 1, "+90 to Intelligence", "Gain no inherent bonuses from Intelligence", statOrder = { 1091, 1925 }, level = 1, group = "WeaponTreeIntelligenceAndNoInherentBonusFromIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeIntelligenceAndNoInherentBonusFromIntelligence2h2"] = { type = "Spawn", tier = 2, "+120 to Intelligence", "Gain no inherent bonuses from Intelligence", statOrder = { 1091, 1925 }, level = 1, group = "WeaponTreeIntelligenceAndNoInherentBonusFromIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeStrengthAndNoInherentBonusFromStrength1"] = { type = "Spawn", tier = 1, "+60 to Strength", "Gain no inherent bonuses from Strength", statOrder = { 1089, 1926 }, level = 1, group = "WeaponTreeStrengthAndNoInherentBonusFromStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "mace", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 200, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeStrengthAndNoInherentBonusFromStrength2"] = { type = "Spawn", tier = 2, "+80 to Strength", "Gain no inherent bonuses from Strength", statOrder = { 1089, 1926 }, level = 1, group = "WeaponTreeStrengthAndNoInherentBonusFromStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "mace", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 200, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeStrengthAndNoInherentBonusFromStrength2h1"] = { type = "Spawn", tier = 1, "+90 to Strength", "Gain no inherent bonuses from Strength", statOrder = { 1089, 1926 }, level = 1, group = "WeaponTreeStrengthAndNoInherentBonusFromStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "mace", "two_hand_weapon", "default", }, weightVal = { 0, 200, 500, 0 }, modTags = { }, }, + ["WeaponTreeStrengthAndNoInherentBonusFromStrength2h2"] = { type = "Spawn", tier = 2, "+120 to Strength", "Gain no inherent bonuses from Strength", statOrder = { 1089, 1926 }, level = 1, group = "WeaponTreeStrengthAndNoInherentBonusFromStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "mace", "two_hand_weapon", "default", }, weightVal = { 0, 200, 500, 0 }, modTags = { }, }, + ["WeaponTreePercentDexterityAndIntelligence1"] = { type = "Spawn", tier = 1, "4% increased Dexterity", "4% increased Intelligence", statOrder = { 1097, 1098 }, level = 1, group = "WeaponTreePercentDexterityAndIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["WeaponTreePercentDexterityAndIntelligence2"] = { type = "Spawn", tier = 2, "6% increased Dexterity", "6% increased Intelligence", statOrder = { 1097, 1098 }, level = 1, group = "WeaponTreePercentDexterityAndIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["WeaponTreePercentDexterityAndIntelligence2h1"] = { type = "Spawn", tier = 1, "6% increased Dexterity", "6% increased Intelligence", statOrder = { 1097, 1098 }, level = 1, group = "WeaponTreePercentDexterityAndIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreePercentDexterityAndIntelligence2h2"] = { type = "Spawn", tier = 2, "10% increased Dexterity", "10% increased Intelligence", statOrder = { 1097, 1098 }, level = 1, group = "WeaponTreePercentDexterityAndIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreePercentDexterityAndStrength1"] = { type = "Spawn", tier = 1, "4% increased Strength", "4% increased Dexterity", statOrder = { 1096, 1097 }, level = 1, group = "WeaponTreePercentDexterityAndStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["WeaponTreePercentDexterityAndStrength2"] = { type = "Spawn", tier = 2, "6% increased Strength", "6% increased Dexterity", statOrder = { 1096, 1097 }, level = 1, group = "WeaponTreePercentDexterityAndStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["WeaponTreePercentDexterityAndStrength2h1"] = { type = "Spawn", tier = 1, "6% increased Strength", "6% increased Dexterity", statOrder = { 1096, 1097 }, level = 1, group = "WeaponTreePercentDexterityAndStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreePercentDexterityAndStrength2h2"] = { type = "Spawn", tier = 2, "10% increased Strength", "10% increased Dexterity", statOrder = { 1096, 1097 }, level = 1, group = "WeaponTreePercentDexterityAndStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreePercentStrengthAndIntelligence1"] = { type = "Spawn", tier = 1, "4% increased Strength", "4% increased Intelligence", statOrder = { 1096, 1098 }, level = 1, group = "WeaponTreePercentStrengthAndIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["WeaponTreePercentStrengthAndIntelligence2"] = { type = "Spawn", tier = 2, "6% increased Strength", "6% increased Intelligence", statOrder = { 1096, 1098 }, level = 1, group = "WeaponTreePercentStrengthAndIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["WeaponTreePercentStrengthAndIntelligence2h1"] = { type = "Spawn", tier = 1, "6% increased Strength", "6% increased Intelligence", statOrder = { 1096, 1098 }, level = 1, group = "WeaponTreePercentStrengthAndIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreePercentStrengthAndIntelligence2h2"] = { type = "Spawn", tier = 2, "10% increased Strength", "10% increased Intelligence", statOrder = { 1096, 1098 }, level = 1, group = "WeaponTreePercentStrengthAndIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeMovementSpeedIfLowDexterity1"] = { type = "Spawn", tier = 1, "8% increased Movement Speed if Dexterity is below 100", statOrder = { 9207 }, level = 1, group = "WeaponTreeMovementSpeedIfLowDexterity", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeMovementSpeedIfLowDexterity2"] = { type = "Spawn", tier = 2, "12% increased Movement Speed if Dexterity is below 100", statOrder = { 9207 }, level = 1, group = "WeaponTreeMovementSpeedIfLowDexterity", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeMovementSpeedIfLowDexterity2h1"] = { type = "Spawn", tier = 1, "14% increased Movement Speed if Dexterity is below 100", statOrder = { 9207 }, level = 1, group = "WeaponTreeMovementSpeedIfLowDexterity", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 200, 500, 0 }, modTags = { }, }, + ["WeaponTreeMovementSpeedIfLowDexterity2h2"] = { type = "Spawn", tier = 2, "20% increased Movement Speed if Dexterity is below 100", statOrder = { 9207 }, level = 1, group = "WeaponTreeMovementSpeedIfLowDexterity", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 200, 500, 0 }, modTags = { }, }, + ["WeaponTreeAreaOfEffectIfLowIntelligence1"] = { type = "Spawn", tier = 1, "14% increased Area of Effect if Intelligence is below 100", statOrder = { 4621 }, level = 1, group = "WeaponTreeAreaOfEffectIfLowIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "shield", "default", }, weightVal = { 200, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeAreaOfEffectIfLowIntelligence2"] = { type = "Spawn", tier = 2, "20% increased Area of Effect if Intelligence is below 100", statOrder = { 4621 }, level = 1, group = "WeaponTreeAreaOfEffectIfLowIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "shield", "default", }, weightVal = { 200, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeAreaOfEffectIfLowIntelligence2h1"] = { type = "Spawn", tier = 1, "24% increased Area of Effect if Intelligence is below 100", statOrder = { 4621 }, level = 1, group = "WeaponTreeAreaOfEffectIfLowIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeAreaOfEffectIfLowIntelligence2h2"] = { type = "Spawn", tier = 2, "32% increased Area of Effect if Intelligence is below 100", statOrder = { 4621 }, level = 1, group = "WeaponTreeAreaOfEffectIfLowIntelligence", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeDoubleDamageChanceIfLowStrength1"] = { type = "Spawn", tier = 1, "6% chance to deal Double Damage if Strength is below 100", statOrder = { 6157 }, level = 1, group = "WeaponTreeDoubleDamageChanceIfLowStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "mace", "one_hand_weapon", "shield", "default", }, weightVal = { 200, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeDoubleDamageChanceIfLowStrength2"] = { type = "Spawn", tier = 2, "10% chance to deal Double Damage if Strength is below 100", statOrder = { 6157 }, level = 1, group = "WeaponTreeDoubleDamageChanceIfLowStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "mace", "one_hand_weapon", "shield", "default", }, weightVal = { 200, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeDoubleDamageChanceIfLowStrength2h1"] = { type = "Spawn", tier = 1, "12% chance to deal Double Damage if Strength is below 100", statOrder = { 6157 }, level = 1, group = "WeaponTreeDoubleDamageChanceIfLowStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "mace", "two_hand_weapon", "default", }, weightVal = { 200, 500, 0 }, modTags = { }, }, + ["WeaponTreeDoubleDamageChanceIfLowStrength2h2"] = { type = "Spawn", tier = 2, "16% chance to deal Double Damage if Strength is below 100", statOrder = { 6157 }, level = 1, group = "WeaponTreeDoubleDamageChanceIfLowStrength", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "mace", "two_hand_weapon", "default", }, weightVal = { 200, 500, 0 }, modTags = { }, }, ["WeaponTreeModEffectMinion1"] = { type = "Spawn", tier = 1, "10% increased Explicit Minion Modifier magnitudes", statOrder = { 36 }, level = 1, group = "WeaponTreeModEffectMinion", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, ["WeaponTreeModEffectMinion2"] = { type = "Spawn", tier = 2, "15% increased Explicit Minion Modifier magnitudes", statOrder = { 36 }, level = 65, group = "WeaponTreeModEffectMinion", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, ["WeaponTreeModEffectElementalDamage1"] = { type = "Spawn", tier = 1, "10% increased Explicit Elemental Damage Modifier magnitudes", statOrder = { 35 }, level = 1, group = "WeaponTreeModEffectElementalDamage", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "fishing_rod", "shield", "default", }, weightVal = { 0, 0, 300 }, modTags = { }, }, @@ -1765,732 +1765,732 @@ return { ["WeaponTreeModEffectResistance2"] = { type = "Spawn", tier = 2, "15% increased Explicit Resistance Modifier magnitudes", statOrder = { 33 }, level = 65, group = "WeaponTreeModEffectResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 300, 0 }, modTags = { }, }, ["WeaponTreeModEffectAttributes1"] = { type = "Spawn", tier = 1, "10% increased Explicit Attribute Modifier magnitudes", statOrder = { 21 }, level = 1, group = "WeaponTreeModEffectAttributes", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "fishing_rod", "default", }, weightVal = { 0, 150 }, modTags = { }, }, ["WeaponTreeModEffectAttributes2"] = { type = "Spawn", tier = 2, "15% increased Explicit Attribute Modifier magnitudes", statOrder = { 21 }, level = 65, group = "WeaponTreeModEffectAttributes", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "fishing_rod", "default", }, weightVal = { 0, 150 }, modTags = { }, }, - ["WeaponTreeChargeDuration1"] = { type = "Spawn", tier = 1, "50% increased Endurance, Frenzy and Power Charge Duration", statOrder = { 2897 }, level = 24, group = "WeaponTreeChargeDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, - ["WeaponTreeChargeDuration2"] = { type = "Spawn", tier = 2, "65% increased Endurance, Frenzy and Power Charge Duration", statOrder = { 2897 }, level = 55, group = "WeaponTreeChargeDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, - ["WeaponTreeChargeDuration3"] = { type = "Spawn", tier = 3, "80% increased Endurance, Frenzy and Power Charge Duration", statOrder = { 2897 }, level = 78, group = "WeaponTreeChargeDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, - ["WeaponTreeChargeDuration2h1"] = { type = "Spawn", tier = 1, "100% increased Endurance, Frenzy and Power Charge Duration", statOrder = { 2897 }, level = 24, group = "WeaponTreeChargeDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeChargeDuration2h2"] = { type = "Spawn", tier = 2, "120% increased Endurance, Frenzy and Power Charge Duration", statOrder = { 2897 }, level = 55, group = "WeaponTreeChargeDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeChargeDuration2h3"] = { type = "Spawn", tier = 3, "140% increased Endurance, Frenzy and Power Charge Duration", statOrder = { 2897 }, level = 78, group = "WeaponTreeChargeDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeStealChargesOnHit1"] = { type = "Spawn", tier = 1, "5% chance to Steal Power, Frenzy, and Endurance Charges on Hit", statOrder = { 2864 }, level = 24, group = "WeaponTreeStealChargesOnHitPercent", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, - ["WeaponTreeStealChargesOnHit2"] = { type = "Spawn", tier = 2, "10% chance to Steal Power, Frenzy, and Endurance Charges on Hit", statOrder = { 2864 }, level = 55, group = "WeaponTreeStealChargesOnHitPercent", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, - ["WeaponTreeStealChargesOnHit3"] = { type = "Spawn", tier = 3, "15% chance to Steal Power, Frenzy, and Endurance Charges on Hit", statOrder = { 2864 }, level = 78, group = "WeaponTreeStealChargesOnHitPercent", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, - ["WeaponTreeStealChargesOnHit2h1"] = { type = "Spawn", tier = 1, "15% chance to Steal Power, Frenzy, and Endurance Charges on Hit", statOrder = { 2864 }, level = 24, group = "WeaponTreeStealChargesOnHitPercent", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeStealChargesOnHit2h2"] = { type = "Spawn", tier = 2, "20% chance to Steal Power, Frenzy, and Endurance Charges on Hit", statOrder = { 2864 }, level = 55, group = "WeaponTreeStealChargesOnHitPercent", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeStealChargesOnHit2h3"] = { type = "Spawn", tier = 3, "25% chance to Steal Power, Frenzy, and Endurance Charges on Hit", statOrder = { 2864 }, level = 78, group = "WeaponTreeStealChargesOnHitPercent", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeChargeOnKill"] = { type = "Spawn", tier = 1, "75% reduced Endurance, Frenzy and Power Charge Duration", "Gain a Power, Frenzy or Endurance Charge on Kill", statOrder = { 2897, 3475 }, level = 70, group = "WeaponTreeRandomChargeOnKill", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "fishing_rod", "default", }, weightVal = { 0, 200 }, modTags = { }, }, - ["WeaponTreeFrenzyChargeOnKill"] = { type = "Spawn", tier = 1, "50% reduced Frenzy Charge Duration", "Gain a Frenzy Charge on Kill", statOrder = { 2004, 2506 }, level = 30, group = "WeaponTreeFrenzyChargeOnKill", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "fishing_rod", "default", }, weightVal = { 0, 400 }, modTags = { }, }, - ["WeaponTreePowerChargeOnKill"] = { type = "Spawn", tier = 1, "50% reduced Power Charge Duration", "Gain a Power Charge on Kill", statOrder = { 2019, 2508 }, level = 30, group = "WeaponTreePowerChargeOnKill", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "fishing_rod", "default", }, weightVal = { 0, 400 }, modTags = { }, }, - ["WeaponTreeEnduranceChargeOnKill"] = { type = "Spawn", tier = 1, "50% reduced Endurance Charge Duration", "Gain an Endurance Charge on Kill", statOrder = { 2002, 2504 }, level = 30, group = "WeaponTreeEnduranceChargeOnKill", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "fishing_rod", "default", }, weightVal = { 0, 400 }, modTags = { }, }, - ["WeaponTreeMinimumFrenzyAndPowerCharges"] = { type = "Spawn", tier = 1, "-1 to Maximum Endurance Charges", "+1 to Minimum Frenzy Charges", "+1 to Minimum Power Charges", statOrder = { 1685, 1689, 1694 }, level = 30, group = "WeaponTreeMinimumChargesFrenzyAndPower", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, - ["WeaponTreeMinimumFrenzyAndPowerCharges2H"] = { type = "Spawn", tier = 1, "-2 to Maximum Endurance Charges", "+2 to Minimum Frenzy Charges", "+2 to Minimum Power Charges", statOrder = { 1685, 1689, 1694 }, level = 30, group = "WeaponTreeMinimumChargesFrenzyAndPower", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeMinimumPowerAndEnduranceCharges"] = { type = "Spawn", tier = 1, "+1 to Minimum Endurance Charges", "-1 to Maximum Frenzy Charges", "+1 to Minimum Power Charges", statOrder = { 1684, 1690, 1694 }, level = 30, group = "WeaponTreeMinimumChargesPowerAndEndurance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, - ["WeaponTreeMinimumPowerAndEnduranceCharges2H"] = { type = "Spawn", tier = 1, "+2 to Minimum Endurance Charges", "-2 to Maximum Frenzy Charges", "+2 to Minimum Power Charges", statOrder = { 1684, 1690, 1694 }, level = 30, group = "WeaponTreeMinimumChargesPowerAndEndurance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeMinimumEnduranceAndFrenzyCharges"] = { type = "Spawn", tier = 1, "+1 to Minimum Endurance Charges", "+1 to Minimum Frenzy Charges", "-1 to Maximum Power Charges", statOrder = { 1684, 1689, 1695 }, level = 30, group = "WeaponTreeMinimumChargesEnduranceAndFrenzy", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, - ["WeaponTreeMinimumEnduranceAndFrenzyCharges2H"] = { type = "Spawn", tier = 1, "+2 to Minimum Endurance Charges", "+2 to Minimum Frenzy Charges", "-2 to Maximum Power Charges", statOrder = { 1684, 1689, 1695 }, level = 30, group = "WeaponTreeMinimumChargesEnduranceAndFrenzy", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["WeaponTreeMinimumAllCharges"] = { type = "Spawn", tier = 1, "-1 to Maximum Endurance, Frenzy and Power Charges", "+1 to Minimum Endurance, Frenzy and Power Charges", statOrder = { 8691, 8799 }, level = 30, group = "WeaponTreeAllMinimumCharges", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeMinimumAllCharges2H"] = { type = "Spawn", tier = 1, "-1 to Maximum Endurance, Frenzy and Power Charges", "+2 to Minimum Endurance, Frenzy and Power Charges", statOrder = { 8691, 8799 }, level = 30, group = "WeaponTreeAllMinimumCharges", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeMaximumFrenzyCharges"] = { type = "MergeOnly", tier = 1, "-1 to Maximum Endurance Charges", "+1 to Maximum Frenzy Charges", "-1 to Maximum Power Charges", statOrder = { 1685, 1690, 1695 }, level = 70, group = "WeaponTreeMaximumCharges", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeMaximumFrenzyCharges2H"] = { type = "MergeOnly", tier = 1, "-2 to Maximum Endurance Charges", "+2 to Maximum Frenzy Charges", "-2 to Maximum Power Charges", statOrder = { 1685, 1690, 1695 }, level = 70, group = "WeaponTreeMaximumCharges", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeMaximumPowerCharges"] = { type = "MergeOnly", tier = 1, "-1 to Maximum Endurance Charges", "-1 to Maximum Frenzy Charges", "+1 to Maximum Power Charges", statOrder = { 1685, 1690, 1695 }, level = 70, group = "WeaponTreeMaximumCharges", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeMaximumPowerCharges2H"] = { type = "MergeOnly", tier = 1, "-2 to Maximum Endurance Charges", "-2 to Maximum Frenzy Charges", "+2 to Maximum Power Charges", statOrder = { 1685, 1690, 1695 }, level = 70, group = "WeaponTreeMaximumCharges", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeMaximumEnduranceCharges"] = { type = "MergeOnly", tier = 1, "+1 to Maximum Endurance Charges", "-1 to Maximum Frenzy Charges", "-1 to Maximum Power Charges", statOrder = { 1685, 1690, 1695 }, level = 70, group = "WeaponTreeMaximumCharges", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeMaximumEnduranceCharges2H"] = { type = "MergeOnly", tier = 1, "+2 to Maximum Endurance Charges", "-2 to Maximum Frenzy Charges", "-2 to Maximum Power Charges", statOrder = { 1685, 1690, 1695 }, level = 70, group = "WeaponTreeMaximumCharges", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeMovementSpeedPerFrenzyCharge"] = { type = "Spawn", tier = 1, "4% increased Movement Speed per Frenzy Charge", "-1 to Maximum Frenzy Charges", statOrder = { 1683, 1690 }, level = 50, group = "WeaponTreeMovementSpeedPerFrenzyCharge", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeMovementSpeedPerFrenzyCharge2H"] = { type = "Spawn", tier = 1, "6% increased Movement Speed per Frenzy Charge", "-1 to Maximum Frenzy Charges", statOrder = { 1683, 1690 }, level = 50, group = "WeaponTreeMovementSpeedPerFrenzyCharge", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeCooldownRecoveryPerPowerCharge"] = { type = "Spawn", tier = 1, "-1 to Maximum Power Charges", "4% increased Cooldown Recovery Rate per Power Charge", statOrder = { 1695, 5575 }, level = 50, group = "WeaponTreeCooldownRecoveryPerPowerCharge", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeCooldownRecoveryPerPowerCharge2H"] = { type = "Spawn", tier = 1, "-1 to Maximum Power Charges", "6% increased Cooldown Recovery Rate per Power Charge", statOrder = { 1695, 5575 }, level = 50, group = "WeaponTreeCooldownRecoveryPerPowerCharge", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeAreaOfEffectPerEnduranceCharge"] = { type = "Spawn", tier = 1, "-1 to Maximum Endurance Charges", "8% increased Area of Effect per Endurance Charge", statOrder = { 1685, 4561 }, level = 50, group = "WeaponTreeAreaOfEffectPerEnduranceCharge", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeAreaOfEffectPerEnduranceCharge2H"] = { type = "Spawn", tier = 1, "-1 to Maximum Endurance Charges", "12% increased Area of Effect per Endurance Charge", statOrder = { 1685, 4561 }, level = 50, group = "WeaponTreeAreaOfEffectPerEnduranceCharge", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeDamagePerCharge"] = { type = "Spawn", tier = 1, "15% increased Damage per Endurance, Frenzy or Power Charge", "-1 to Maximum Endurance, Frenzy and Power Charges", statOrder = { 5764, 8691 }, level = 70, group = "WeaponTreeDamagePerCharge", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeDamagePerCharge2H"] = { type = "Spawn", tier = 1, "25% increased Damage per Endurance, Frenzy or Power Charge", "-1 to Maximum Endurance, Frenzy and Power Charges", statOrder = { 5764, 8691 }, level = 70, group = "WeaponTreeDamagePerCharge", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeRampage1"] = { type = "MergeOnly", tier = 1, "Rampage", statOrder = { 10213 }, level = 86, group = "WeaponTreeSimulatedRampage", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeHeraldOfAgonyEffectAndReservation1"] = { type = "Spawn", tier = 1, "Herald of Agony has 25% increased Buff Effect", "Herald of Agony has 25% increased Reservation", statOrder = { 6741, 6744 }, level = 16, group = "WeaponTreeHeraldOfAgonyEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeHeraldOfAgonyEffectAndReservation2"] = { type = "Spawn", tier = 2, "Herald of Agony has 35% increased Buff Effect", "Herald of Agony has 25% increased Reservation", statOrder = { 6741, 6744 }, level = 56, group = "WeaponTreeHeraldOfAgonyEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeHeraldOfAgonyEffectAndReservation3"] = { type = "Spawn", tier = 3, "Herald of Agony has 45% increased Buff Effect", "Herald of Agony has 25% increased Reservation", statOrder = { 6741, 6744 }, level = 82, group = "WeaponTreeHeraldOfAgonyEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeHeraldOfAgonyEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Herald of Agony has 50% increased Buff Effect", "Herald of Agony has 50% increased Reservation", statOrder = { 6741, 6744 }, level = 16, group = "WeaponTreeHeraldOfAgonyEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeHeraldOfAgonyEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Herald of Agony has 70% increased Buff Effect", "Herald of Agony has 50% increased Reservation", statOrder = { 6741, 6744 }, level = 56, group = "WeaponTreeHeraldOfAgonyEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeHeraldOfAgonyEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Herald of Agony has 90% increased Buff Effect", "Herald of Agony has 50% increased Reservation", statOrder = { 6741, 6744 }, level = 82, group = "WeaponTreeHeraldOfAgonyEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeHeraldOfAshEffectAndReservation1"] = { type = "Spawn", tier = 1, "Herald of Ash has 25% increased Reservation", "Herald of Ash has 25% increased Buff Effect", statOrder = { 3892, 6745 }, level = 16, group = "WeaponTreeHeraldOfAshEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeHeraldOfAshEffectAndReservation2"] = { type = "Spawn", tier = 2, "Herald of Ash has 25% increased Reservation", "Herald of Ash has 35% increased Buff Effect", statOrder = { 3892, 6745 }, level = 56, group = "WeaponTreeHeraldOfAshEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeHeraldOfAshEffectAndReservation3"] = { type = "Spawn", tier = 3, "Herald of Ash has 25% increased Reservation", "Herald of Ash has 45% increased Buff Effect", statOrder = { 3892, 6745 }, level = 82, group = "WeaponTreeHeraldOfAshEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeHeraldOfAshEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Herald of Ash has 50% increased Reservation", "Herald of Ash has 50% increased Buff Effect", statOrder = { 3892, 6745 }, level = 16, group = "WeaponTreeHeraldOfAshEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeHeraldOfAshEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Herald of Ash has 50% increased Reservation", "Herald of Ash has 70% increased Buff Effect", statOrder = { 3892, 6745 }, level = 56, group = "WeaponTreeHeraldOfAshEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeHeraldOfAshEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Herald of Ash has 50% increased Reservation", "Herald of Ash has 90% increased Buff Effect", statOrder = { 3892, 6745 }, level = 82, group = "WeaponTreeHeraldOfAshEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeHeraldOfIceEffectAndReservation1"] = { type = "Spawn", tier = 1, "Herald of Ice has 25% increased Reservation", "Herald of Ice has 25% increased Buff Effect", statOrder = { 3893, 6749 }, level = 16, group = "WeaponTreeHeraldOfIceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeHeraldOfIceEffectAndReservation2"] = { type = "Spawn", tier = 2, "Herald of Ice has 25% increased Reservation", "Herald of Ice has 35% increased Buff Effect", statOrder = { 3893, 6749 }, level = 56, group = "WeaponTreeHeraldOfIceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeHeraldOfIceEffectAndReservation3"] = { type = "Spawn", tier = 3, "Herald of Ice has 25% increased Reservation", "Herald of Ice has 45% increased Buff Effect", statOrder = { 3893, 6749 }, level = 82, group = "WeaponTreeHeraldOfIceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeHeraldOfIceEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Herald of Ice has 50% increased Reservation", "Herald of Ice has 50% increased Buff Effect", statOrder = { 3893, 6749 }, level = 16, group = "WeaponTreeHeraldOfIceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeHeraldOfIceEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Herald of Ice has 50% increased Reservation", "Herald of Ice has 70% increased Buff Effect", statOrder = { 3893, 6749 }, level = 56, group = "WeaponTreeHeraldOfIceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeHeraldOfIceEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Herald of Ice has 50% increased Reservation", "Herald of Ice has 90% increased Buff Effect", statOrder = { 3893, 6749 }, level = 82, group = "WeaponTreeHeraldOfIceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeHeraldOfPurityEffectAndReservation1"] = { type = "Spawn", tier = 1, "Herald of Purity has 25% increased Buff Effect", "Herald of Purity has 25% increased Reservation", statOrder = { 6753, 6757 }, level = 16, group = "WeaponTreeHeraldOfPurityEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeHeraldOfPurityEffectAndReservation2"] = { type = "Spawn", tier = 2, "Herald of Purity has 35% increased Buff Effect", "Herald of Purity has 25% increased Reservation", statOrder = { 6753, 6757 }, level = 56, group = "WeaponTreeHeraldOfPurityEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeHeraldOfPurityEffectAndReservation3"] = { type = "Spawn", tier = 3, "Herald of Purity has 45% increased Buff Effect", "Herald of Purity has 25% increased Reservation", statOrder = { 6753, 6757 }, level = 82, group = "WeaponTreeHeraldOfPurityEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeHeraldOfPurityEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Herald of Purity has 50% increased Buff Effect", "Herald of Purity has 50% increased Reservation", statOrder = { 6753, 6757 }, level = 16, group = "WeaponTreeHeraldOfPurityEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeHeraldOfPurityEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Herald of Purity has 70% increased Buff Effect", "Herald of Purity has 50% increased Reservation", statOrder = { 6753, 6757 }, level = 56, group = "WeaponTreeHeraldOfPurityEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeHeraldOfPurityEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Herald of Purity has 90% increased Buff Effect", "Herald of Purity has 50% increased Reservation", statOrder = { 6753, 6757 }, level = 82, group = "WeaponTreeHeraldOfPurityEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeHeraldOfLightningEffectAndReservation1"] = { type = "Spawn", tier = 1, "Herald of Thunder has 25% increased Reservation", "Herald of Thunder has 25% increased Buff Effect", statOrder = { 3894, 6759 }, level = 16, group = "WeaponTreeHeraldOfLightningEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeHeraldOfLightningEffectAndReservation2"] = { type = "Spawn", tier = 2, "Herald of Thunder has 25% increased Reservation", "Herald of Thunder has 35% increased Buff Effect", statOrder = { 3894, 6759 }, level = 56, group = "WeaponTreeHeraldOfLightningEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeHeraldOfLightningEffectAndReservation3"] = { type = "Spawn", tier = 3, "Herald of Thunder has 25% increased Reservation", "Herald of Thunder has 45% increased Buff Effect", statOrder = { 3894, 6759 }, level = 82, group = "WeaponTreeHeraldOfLightningEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeHeraldOfLightningEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Herald of Thunder has 50% increased Reservation", "Herald of Thunder has 50% increased Buff Effect", statOrder = { 3894, 6759 }, level = 16, group = "WeaponTreeHeraldOfLightningEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeHeraldOfLightningEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Herald of Thunder has 50% increased Reservation", "Herald of Thunder has 70% increased Buff Effect", statOrder = { 3894, 6759 }, level = 56, group = "WeaponTreeHeraldOfLightningEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeHeraldOfLightningEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Herald of Thunder has 50% increased Reservation", "Herald of Thunder has 90% increased Buff Effect", statOrder = { 3894, 6759 }, level = 82, group = "WeaponTreeHeraldOfLightningEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeAngerEffectAndReservation1"] = { type = "Spawn", tier = 1, "Anger has 20% increased Aura Effect", "Anger has 25% increased Reservation", statOrder = { 3222, 3283 }, level = 24, group = "WeaponTreeAngerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeAngerEffectAndReservation2"] = { type = "Spawn", tier = 2, "Anger has 25% increased Aura Effect", "Anger has 25% increased Reservation", statOrder = { 3222, 3283 }, level = 56, group = "WeaponTreeAngerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeAngerEffectAndReservation3"] = { type = "Spawn", tier = 3, "Anger has 30% increased Aura Effect", "Anger has 25% increased Reservation", statOrder = { 3222, 3283 }, level = 82, group = "WeaponTreeAngerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeAngerEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Anger has 40% increased Aura Effect", "Anger has 50% increased Reservation", statOrder = { 3222, 3283 }, level = 24, group = "WeaponTreeAngerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeAngerEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Anger has 50% increased Aura Effect", "Anger has 50% increased Reservation", statOrder = { 3222, 3283 }, level = 56, group = "WeaponTreeAngerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeAngerEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Anger has 60% increased Aura Effect", "Anger has 50% increased Reservation", statOrder = { 3222, 3283 }, level = 82, group = "WeaponTreeAngerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeWrathEffectAndReservation1"] = { type = "Spawn", tier = 1, "Wrath has 20% increased Aura Effect", "Wrath has 25% increased Reservation", statOrder = { 3227, 3904 }, level = 24, group = "WeaponTreeWrathEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeWrathEffectAndReservation2"] = { type = "Spawn", tier = 2, "Wrath has 25% increased Aura Effect", "Wrath has 25% increased Reservation", statOrder = { 3227, 3904 }, level = 56, group = "WeaponTreeWrathEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeWrathEffectAndReservation3"] = { type = "Spawn", tier = 3, "Wrath has 30% increased Aura Effect", "Wrath has 25% increased Reservation", statOrder = { 3227, 3904 }, level = 82, group = "WeaponTreeWrathEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeWrathEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Wrath has 40% increased Aura Effect", "Wrath has 50% increased Reservation", statOrder = { 3227, 3904 }, level = 24, group = "WeaponTreeWrathEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeWrathEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Wrath has 50% increased Aura Effect", "Wrath has 50% increased Reservation", statOrder = { 3227, 3904 }, level = 56, group = "WeaponTreeWrathEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeWrathEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Wrath has 60% increased Aura Effect", "Wrath has 50% increased Reservation", statOrder = { 3227, 3904 }, level = 82, group = "WeaponTreeWrathEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeHatredEffectAndReservation1"] = { type = "Spawn", tier = 1, "Hatred has 20% increased Aura Effect", "Hatred has 25% increased Reservation", statOrder = { 3232, 3896 }, level = 24, group = "WeaponTreeHatredEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeHatredEffectAndReservation2"] = { type = "Spawn", tier = 2, "Hatred has 25% increased Aura Effect", "Hatred has 25% increased Reservation", statOrder = { 3232, 3896 }, level = 56, group = "WeaponTreeHatredEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeHatredEffectAndReservation3"] = { type = "Spawn", tier = 3, "Hatred has 30% increased Aura Effect", "Hatred has 25% increased Reservation", statOrder = { 3232, 3896 }, level = 82, group = "WeaponTreeHatredEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeHatredEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Hatred has 40% increased Aura Effect", "Hatred has 50% increased Reservation", statOrder = { 3232, 3896 }, level = 24, group = "WeaponTreeHatredEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeHatredEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Hatred has 50% increased Aura Effect", "Hatred has 50% increased Reservation", statOrder = { 3232, 3896 }, level = 56, group = "WeaponTreeHatredEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeHatredEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Hatred has 60% increased Aura Effect", "Hatred has 50% increased Reservation", statOrder = { 3232, 3896 }, level = 82, group = "WeaponTreeHatredEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeDeterminationEffectAndReservation1"] = { type = "Spawn", tier = 1, "Determination has 20% increased Aura Effect", "Determination has 25% increased Reservation", statOrder = { 3233, 3898 }, level = 24, group = "WeaponTreeDeterminationEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeDeterminationEffectAndReservation2"] = { type = "Spawn", tier = 2, "Determination has 25% increased Aura Effect", "Determination has 25% increased Reservation", statOrder = { 3233, 3898 }, level = 56, group = "WeaponTreeDeterminationEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeDeterminationEffectAndReservation3"] = { type = "Spawn", tier = 3, "Determination has 30% increased Aura Effect", "Determination has 25% increased Reservation", statOrder = { 3233, 3898 }, level = 82, group = "WeaponTreeDeterminationEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeDisciplineEffectAndReservation1"] = { type = "Spawn", tier = 1, "Discipline has 20% increased Aura Effect", "Discipline has 25% increased Reservation", statOrder = { 3234, 3899 }, level = 24, group = "WeaponTreeDisciplineEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeDisciplineEffectAndReservation2"] = { type = "Spawn", tier = 2, "Discipline has 25% increased Aura Effect", "Discipline has 25% increased Reservation", statOrder = { 3234, 3899 }, level = 56, group = "WeaponTreeDisciplineEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeDisciplineEffectAndReservation3"] = { type = "Spawn", tier = 3, "Discipline has 30% increased Aura Effect", "Discipline has 25% increased Reservation", statOrder = { 3234, 3899 }, level = 82, group = "WeaponTreeDisciplineEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeGraceEffectAndReservation1"] = { type = "Spawn", tier = 1, "Grace has 20% increased Aura Effect", "Grace has 25% increased Reservation", statOrder = { 3229, 3905 }, level = 24, group = "WeaponTreeGraceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeGraceEffectAndReservation2"] = { type = "Spawn", tier = 2, "Grace has 25% increased Aura Effect", "Grace has 25% increased Reservation", statOrder = { 3229, 3905 }, level = 56, group = "WeaponTreeGraceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeGraceEffectAndReservation3"] = { type = "Spawn", tier = 3, "Grace has 30% increased Aura Effect", "Grace has 25% increased Reservation", statOrder = { 3229, 3905 }, level = 82, group = "WeaponTreeGraceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeZealotryEffectAndReservation1"] = { type = "Spawn", tier = 1, "Zealotry has 20% increased Aura Effect", "Zealotry has 25% increased Reservation", statOrder = { 10169, 10172 }, level = 24, group = "WeaponTreeZealotryEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeZealotryEffectAndReservation2"] = { type = "Spawn", tier = 2, "Zealotry has 25% increased Aura Effect", "Zealotry has 25% increased Reservation", statOrder = { 10169, 10172 }, level = 56, group = "WeaponTreeZealotryEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeZealotryEffectAndReservation3"] = { type = "Spawn", tier = 3, "Zealotry has 30% increased Aura Effect", "Zealotry has 25% increased Reservation", statOrder = { 10169, 10172 }, level = 82, group = "WeaponTreeZealotryEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeZealotryEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Zealotry has 40% increased Aura Effect", "Zealotry has 50% increased Reservation", statOrder = { 10169, 10172 }, level = 24, group = "WeaponTreeZealotryEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeZealotryEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Zealotry has 50% increased Aura Effect", "Zealotry has 50% increased Reservation", statOrder = { 10169, 10172 }, level = 56, group = "WeaponTreeZealotryEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeZealotryEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Zealotry has 60% increased Aura Effect", "Zealotry has 50% increased Reservation", statOrder = { 10169, 10172 }, level = 82, group = "WeaponTreeZealotryEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreePrideEffectAndReservation1"] = { type = "Spawn", tier = 1, "Pride has 20% increased Aura Effect", "Pride has 25% increased Reservation", statOrder = { 9217, 9223 }, level = 24, group = "WeaponTreePrideEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreePrideEffectAndReservation2"] = { type = "Spawn", tier = 2, "Pride has 25% increased Aura Effect", "Pride has 25% increased Reservation", statOrder = { 9217, 9223 }, level = 56, group = "WeaponTreePrideEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreePrideEffectAndReservation3"] = { type = "Spawn", tier = 3, "Pride has 30% increased Aura Effect", "Pride has 25% increased Reservation", statOrder = { 9217, 9223 }, level = 82, group = "WeaponTreePrideEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreePrideEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Pride has 40% increased Aura Effect", "Pride has 50% increased Reservation", statOrder = { 9217, 9223 }, level = 24, group = "WeaponTreePrideEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreePrideEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Pride has 50% increased Aura Effect", "Pride has 50% increased Reservation", statOrder = { 9217, 9223 }, level = 56, group = "WeaponTreePrideEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreePrideEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Pride has 60% increased Aura Effect", "Pride has 50% increased Reservation", statOrder = { 9217, 9223 }, level = 82, group = "WeaponTreePrideEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreePurityOfFireEffectAndReservation1"] = { type = "Spawn", tier = 1, "Purity of Fire has 20% increased Aura Effect", "Purity of Fire has 25% increased Reservation", statOrder = { 3224, 3901 }, level = 24, group = "WeaponTreePurityOfFireEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreePurityOfFireEffectAndReservation2"] = { type = "Spawn", tier = 2, "Purity of Fire has 25% increased Aura Effect", "Purity of Fire has 25% increased Reservation", statOrder = { 3224, 3901 }, level = 56, group = "WeaponTreePurityOfFireEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreePurityOfFireEffectAndReservation3"] = { type = "Spawn", tier = 3, "Purity of Fire has 30% increased Aura Effect", "Purity of Fire has 25% increased Reservation", statOrder = { 3224, 3901 }, level = 82, group = "WeaponTreePurityOfFireEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreePurityOfIceEffectAndReservation1"] = { type = "Spawn", tier = 1, "Purity of Ice has 20% increased Aura Effect", "Purity of Ice has 25% increased Reservation", statOrder = { 3225, 3897 }, level = 24, group = "WeaponTreePurityOfIceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreePurityOfIceEffectAndReservation2"] = { type = "Spawn", tier = 2, "Purity of Ice has 25% increased Aura Effect", "Purity of Ice has 25% increased Reservation", statOrder = { 3225, 3897 }, level = 56, group = "WeaponTreePurityOfIceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreePurityOfIceEffectAndReservation3"] = { type = "Spawn", tier = 3, "Purity of Ice has 30% increased Aura Effect", "Purity of Ice has 25% increased Reservation", statOrder = { 3225, 3897 }, level = 82, group = "WeaponTreePurityOfIceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreePurityOfLightningEffectAndReservation1"] = { type = "Spawn", tier = 1, "Purity of Lightning has 20% increased Aura Effect", "Purity of Lightning has 25% increased Reservation", statOrder = { 3226, 3902 }, level = 24, group = "WeaponTreePurityOfLightningEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreePurityOfLightningEffectAndReservation2"] = { type = "Spawn", tier = 2, "Purity of Lightning has 25% increased Aura Effect", "Purity of Lightning has 25% increased Reservation", statOrder = { 3226, 3902 }, level = 56, group = "WeaponTreePurityOfLightningEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreePurityOfLightningEffectAndReservation3"] = { type = "Spawn", tier = 3, "Purity of Lightning has 30% increased Aura Effect", "Purity of Lightning has 25% increased Reservation", statOrder = { 3226, 3902 }, level = 82, group = "WeaponTreePurityOfLightningEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreePurityOfElementsEffectAndReservation1"] = { type = "Spawn", tier = 1, "Purity of Elements has 20% increased Aura Effect", "Purity of Elements has 25% increased Reservation", statOrder = { 3223, 3900 }, level = 24, group = "WeaponTreePurityOfElementsEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreePurityOfElementsEffectAndReservation2"] = { type = "Spawn", tier = 2, "Purity of Elements has 25% increased Aura Effect", "Purity of Elements has 25% increased Reservation", statOrder = { 3223, 3900 }, level = 56, group = "WeaponTreePurityOfElementsEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreePurityOfElementsEffectAndReservation3"] = { type = "Spawn", tier = 3, "Purity of Elements has 30% increased Aura Effect", "Purity of Elements has 25% increased Reservation", statOrder = { 3223, 3900 }, level = 82, group = "WeaponTreePurityOfElementsEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeMalevolenceEffectAndReservation1"] = { type = "Spawn", tier = 1, "Malevolence has 20% increased Aura Effect", "Malevolence has 25% increased Reservation", statOrder = { 5857, 5858 }, level = 24, group = "WeaponTreeMalevolenceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeMalevolenceEffectAndReservation2"] = { type = "Spawn", tier = 2, "Malevolence has 25% increased Aura Effect", "Malevolence has 25% increased Reservation", statOrder = { 5857, 5858 }, level = 56, group = "WeaponTreeMalevolenceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeMalevolenceEffectAndReservation3"] = { type = "Spawn", tier = 3, "Malevolence has 30% increased Aura Effect", "Malevolence has 25% increased Reservation", statOrder = { 5857, 5858 }, level = 82, group = "WeaponTreeMalevolenceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeMalevolenceEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Malevolence has 40% increased Aura Effect", "Malevolence has 50% increased Reservation", statOrder = { 5857, 5858 }, level = 24, group = "WeaponTreeMalevolenceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeMalevolenceEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Malevolence has 50% increased Aura Effect", "Malevolence has 50% increased Reservation", statOrder = { 5857, 5858 }, level = 56, group = "WeaponTreeMalevolenceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeMalevolenceEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Malevolence has 60% increased Aura Effect", "Malevolence has 50% increased Reservation", statOrder = { 5857, 5858 }, level = 82, group = "WeaponTreeMalevolenceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeHasteEffectAndReservation1"] = { type = "Spawn", tier = 1, "Haste has 20% increased Aura Effect", "Haste has 25% increased Reservation", statOrder = { 3230, 3906 }, level = 24, group = "WeaponTreeHasteEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeHasteEffectAndReservation2"] = { type = "Spawn", tier = 2, "Haste has 25% increased Aura Effect", "Haste has 25% increased Reservation", statOrder = { 3230, 3906 }, level = 56, group = "WeaponTreeHasteEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeHasteEffectAndReservation3"] = { type = "Spawn", tier = 3, "Haste has 30% increased Aura Effect", "Haste has 25% increased Reservation", statOrder = { 3230, 3906 }, level = 82, group = "WeaponTreeHasteEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeHasteEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Haste has 40% increased Aura Effect", "Haste has 50% increased Reservation", statOrder = { 3230, 3906 }, level = 24, group = "WeaponTreeHasteEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeHasteEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Haste has 50% increased Aura Effect", "Haste has 50% increased Reservation", statOrder = { 3230, 3906 }, level = 56, group = "WeaponTreeHasteEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreeHasteEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Haste has 60% increased Aura Effect", "Haste has 50% increased Reservation", statOrder = { 3230, 3906 }, level = 82, group = "WeaponTreeHasteEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["WeaponTreePrecisionEffectAndReservation1"] = { type = "Spawn", tier = 1, "Precision has 20% increased Aura Effect", "Precision has 25% increased Reservation", statOrder = { 3231, 9214 }, level = 8, group = "WeaponTreePrecisionEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "shield", "default", }, weightVal = { 37, 150, 150, 0 }, modTags = { }, }, - ["WeaponTreePrecisionEffectAndReservation2"] = { type = "Spawn", tier = 2, "Precision has 25% increased Aura Effect", "Precision has 25% increased Reservation", statOrder = { 3231, 9214 }, level = 56, group = "WeaponTreePrecisionEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "shield", "default", }, weightVal = { 37, 150, 150, 0 }, modTags = { }, }, - ["WeaponTreePrecisionEffectAndReservation3"] = { type = "Spawn", tier = 3, "Precision has 30% increased Aura Effect", "Precision has 25% increased Reservation", statOrder = { 3231, 9214 }, level = 82, group = "WeaponTreePrecisionEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "shield", "default", }, weightVal = { 37, 150, 150, 0 }, modTags = { }, }, - ["WeaponTreePrecisionEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Precision has 40% increased Aura Effect", "Precision has 50% increased Reservation", statOrder = { 3231, 9214 }, level = 8, group = "WeaponTreePrecisionEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 37, 150, 0 }, modTags = { }, }, - ["WeaponTreePrecisionEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Precision has 50% increased Aura Effect", "Precision has 50% increased Reservation", statOrder = { 3231, 9214 }, level = 56, group = "WeaponTreePrecisionEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 37, 150, 0 }, modTags = { }, }, - ["WeaponTreePrecisionEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Precision has 60% increased Aura Effect", "Precision has 50% increased Reservation", statOrder = { 3231, 9214 }, level = 82, group = "WeaponTreePrecisionEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 37, 150, 0 }, modTags = { }, }, - ["WeaponTreeBannerEffectAndReservation1"] = { type = "Spawn", tier = 1, "Banner Skills have 20% increased Aura Effect", "25% increased Reservation of Banner Skills", statOrder = { 3228, 4790 }, level = 8, group = "WeaponTreeBannerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeBannerEffectAndReservation2"] = { type = "Spawn", tier = 2, "Banner Skills have 25% increased Aura Effect", "25% increased Reservation of Banner Skills", statOrder = { 3228, 4790 }, level = 56, group = "WeaponTreeBannerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeBannerEffectAndReservation3"] = { type = "Spawn", tier = 3, "Banner Skills have 30% increased Aura Effect", "25% increased Reservation of Banner Skills", statOrder = { 3228, 4790 }, level = 82, group = "WeaponTreeBannerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 150, 150, 0 }, modTags = { }, }, - ["WeaponTreeBannerEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Banner Skills have 40% increased Aura Effect", "50% increased Reservation of Banner Skills", statOrder = { 3228, 4790 }, level = 8, group = "WeaponTreeBannerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 37, 150, 0 }, modTags = { }, }, - ["WeaponTreeBannerEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Banner Skills have 50% increased Aura Effect", "50% increased Reservation of Banner Skills", statOrder = { 3228, 4790 }, level = 56, group = "WeaponTreeBannerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 37, 150, 0 }, modTags = { }, }, - ["WeaponTreeBannerEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Banner Skills have 60% increased Aura Effect", "50% increased Reservation of Banner Skills", statOrder = { 3228, 4790 }, level = 82, group = "WeaponTreeBannerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 37, 150, 0 }, modTags = { }, }, - ["WeaponTreeSpellSuppressionSpellDamageSuppressed1"] = { type = "Spawn", tier = 1, "-5% to amount of Suppressed Spell Damage Prevented", "+20% chance to Suppress Spell Damage", statOrder = { 1030, 1032 }, level = 15, group = "WeaponTreeSpellSuppressionSpellDamageSuppressed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellSuppressionSpellDamageSuppressed2"] = { type = "Spawn", tier = 2, "-5% to amount of Suppressed Spell Damage Prevented", "+25% chance to Suppress Spell Damage", statOrder = { 1030, 1032 }, level = 60, group = "WeaponTreeSpellSuppressionSpellDamageSuppressed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamageSuppressedSpellSuppression1"] = { type = "Spawn", tier = 1, "Prevent +2% of Suppressed Spell Damage", "-10% chance to Suppress Spell Damage", statOrder = { 1030, 1032 }, level = 15, group = "WeaponTreeSpellDamageSuppressedSpellSuppression", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellDamageSuppressedSpellSuppression2"] = { type = "Spawn", tier = 2, "Prevent +3% of Suppressed Spell Damage", "-10% chance to Suppress Spell Damage", statOrder = { 1030, 1032 }, level = 60, group = "WeaponTreeSpellDamageSuppressedSpellSuppression", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellSuppressionSpellSuppressionIfSuppressedRecently1"] = { type = "Spawn", tier = 1, "+20% chance to Suppress Spell Damage", "-15% chance to Suppress Spell Damage if you've Suppressed Spell Damage Recently", statOrder = { 1032, 9666 }, level = 5, group = "WeaponTreeSpellSuppressionSpellSuppressionIfSuppressedRecently", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeSpellSuppressionSpellSuppressionIfSuppressedRecently2"] = { type = "Spawn", tier = 2, "+25% chance to Suppress Spell Damage", "-18% chance to Suppress Spell Damage if you've Suppressed Spell Damage Recently", statOrder = { 1032, 9666 }, level = 55, group = "WeaponTreeSpellSuppressionSpellSuppressionIfSuppressedRecently", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLifeOnSupress1"] = { type = "Spawn", tier = 1, "Recover 2% of Life when you Suppress Spell Damage", statOrder = { 9337 }, level = 15, group = "WeaponTreeLifeOnSupress", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLifeOnSupress2"] = { type = "Spawn", tier = 2, "Recover 3% of Life when you Suppress Spell Damage", statOrder = { 9337 }, level = 60, group = "WeaponTreeLifeOnSupress", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeLifeOnBlock1"] = { type = "Spawn", tier = 1, "Recover 30 Life when you Block", statOrder = { 1641 }, level = 1, group = "WeaponTreeLifeOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeLifeOnBlock2"] = { type = "Spawn", tier = 2, "Recover 50 Life when you Block", statOrder = { 1641 }, level = 50, group = "WeaponTreeLifeOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeEnergyShieldOnBlock1"] = { type = "Spawn", tier = 1, "Gain 30 Energy Shield when you Block", statOrder = { 1640 }, level = 1, group = "WeaponTreeEnergyShieldOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeEnergyShieldOnBlock2"] = { type = "Spawn", tier = 2, "Gain 50 Energy Shield when you Block", statOrder = { 1640 }, level = 50, group = "WeaponTreeEnergyShieldOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeManaOnBlock1"] = { type = "Spawn", tier = 1, "30 Mana gained when you Block", statOrder = { 1639 }, level = 1, group = "WeaponTreeManaOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeManaOnBlock2"] = { type = "Spawn", tier = 2, "50 Mana gained when you Block", statOrder = { 1639 }, level = 50, group = "WeaponTreeManaOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeChillOnBlock1"] = { type = "Spawn", tier = 1, "50% chance to Chill Attackers for 4 seconds on Block", statOrder = { 5473 }, level = 1, group = "WeaponTreeChillOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, }, - ["WeaponTreeChillOnBlock2"] = { type = "Spawn", tier = 2, "Chill Attackers for 4 seconds on Block", statOrder = { 5473 }, level = 50, group = "WeaponTreeChillOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, }, - ["WeaponTreeShockOnBlock1"] = { type = "Spawn", tier = 1, "50% chance to Shock Attackers for 4 seconds on Block", statOrder = { 9493 }, level = 1, group = "WeaponTreeShockOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, }, - ["WeaponTreeShockOnBlock2"] = { type = "Spawn", tier = 2, "Shock Attackers for 4 seconds on Block", statOrder = { 9493 }, level = 50, group = "WeaponTreeShockOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, }, - ["WeaponTreeScorchOnBlock1"] = { type = "Spawn", tier = 1, "15% chance to Scorch Enemies when you Block their Damage", statOrder = { 5422 }, level = 30, group = "WeaponTreeScorchOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, }, - ["WeaponTreeScorchOnBlock2"] = { type = "Spawn", tier = 2, "20% chance to Scorch Enemies when you Block their Damage", statOrder = { 5422 }, level = 75, group = "WeaponTreeScorchOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, }, - ["WeaponTreeBrittleOnBlock1"] = { type = "Spawn", tier = 1, "15% chance to inflict Brittle on Enemies when you Block their Damage", statOrder = { 5417 }, level = 30, group = "WeaponTreeBrittleOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, }, - ["WeaponTreeBrittleOnBlock2"] = { type = "Spawn", tier = 2, "20% chance to inflict Brittle on Enemies when you Block their Damage", statOrder = { 5417 }, level = 75, group = "WeaponTreeBrittleOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, }, - ["WeaponTreeSapOnBlock1"] = { type = "Spawn", tier = 1, "15% chance to Sap Enemies when you Block their Damage", statOrder = { 5421 }, level = 30, group = "WeaponTreeSapOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, }, - ["WeaponTreeSapOnBlock2"] = { type = "Spawn", tier = 2, "20% chance to Sap Enemies when you Block their Damage", statOrder = { 5421 }, level = 75, group = "WeaponTreeSapOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, }, - ["WeaponTreeMaxBlockDamageFromBlockedHits1"] = { type = "Spawn", tier = 1, "+2% to maximum Chance to Block Attack Damage", "You take 5% of Damage from Blocked Hits", statOrder = { 1865, 4813 }, level = 45, group = "WeaponTreeMaxBlockDamageFromBlockedHits", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, }, - ["WeaponTreeMaxBlockDamageFromBlockedHits2"] = { type = "Spawn", tier = 2, "+3% to maximum Chance to Block Attack Damage", "You take 5% of Damage from Blocked Hits", statOrder = { 1865, 4813 }, level = 82, group = "WeaponTreeMaxBlockDamageFromBlockedHits", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, }, - ["WeaponTreeMaxSpellBlockDamageFromBlockedHits1"] = { type = "Spawn", tier = 1, "+2% to maximum Chance to Block Spell Damage", "You take 5% of Damage from Blocked Hits", statOrder = { 1866, 4813 }, level = 75, group = "WeaponTreeMaxSpellBlockDamageFromBlockedHits", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, }, - ["WeaponTreeMaxSpellBlockDamageFromBlockedHits2"] = { type = "Spawn", tier = 2, "+3% to maximum Chance to Block Spell Damage", "You take 5% of Damage from Blocked Hits", statOrder = { 1866, 4813 }, level = 82, group = "WeaponTreeMaxSpellBlockDamageFromBlockedHits", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, }, - ["WeaponTreeAvoidIgniteChanceToBeShocked1"] = { type = "Spawn", tier = 1, "60% chance to Avoid being Ignited", "+20% chance to be Shocked", statOrder = { 1727, 2821 }, level = 1, group = "WeaponTreeAvoidIgniteChanceToBeShocked", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, }, - ["WeaponTreeAvoidIgniteChanceToBeShocked2"] = { type = "Spawn", tier = 2, "100% chance to Avoid being Ignited", "+20% chance to be Shocked", statOrder = { 1727, 2821 }, level = 60, group = "WeaponTreeAvoidIgniteChanceToBeShocked", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, }, - ["WeaponTreeAvoidFreezeChanceToBeIgnited1"] = { type = "Spawn", tier = 1, "60% chance to Avoid being Frozen", "+20% chance to be Ignited", statOrder = { 1726, 2820 }, level = 1, group = "WeaponTreeAvoidFreezeChanceToBeIgnited", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, }, - ["WeaponTreeAvoidFreezeChanceToBeIgnited2"] = { type = "Spawn", tier = 2, "100% chance to Avoid being Frozen", "+20% chance to be Ignited", statOrder = { 1726, 2820 }, level = 60, group = "WeaponTreeAvoidFreezeChanceToBeIgnited", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, }, - ["WeaponTreeAvoidShockChanceToBeFrozen1"] = { type = "Spawn", tier = 1, "60% chance to Avoid being Shocked", "+20% chance to be Frozen", statOrder = { 1729, 2819 }, level = 1, group = "WeaponTreeAvoidShockChanceToBeFrozen", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, }, - ["WeaponTreeAvoidShockChanceToBeFrozen2"] = { type = "Spawn", tier = 2, "100% chance to Avoid being Shocked", "+20% chance to be Frozen", statOrder = { 1729, 2819 }, level = 60, group = "WeaponTreeAvoidShockChanceToBeFrozen", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, }, - ["WeaponTreeAvoidBleedChanceToBePoisoned1"] = { type = "Spawn", tier = 1, "+20% chance to be Poisoned", "60% chance to Avoid Bleeding", statOrder = { 3236, 4077 }, level = 12, group = "WeaponTreeAvoidBleedChanceToBePoisoned", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, }, - ["WeaponTreeAvoidBleedChanceToBePoisoned2"] = { type = "Spawn", tier = 2, "+20% chance to be Poisoned", "100% chance to Avoid Bleeding", statOrder = { 3236, 4077 }, level = 65, group = "WeaponTreeAvoidBleedChanceToBePoisoned", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, }, - ["WeaponTreeAvoidPoisonBleedDurationOnSelf1"] = { type = "Spawn", tier = 1, "60% chance to Avoid being Poisoned", "50% increased Bleed Duration on you", statOrder = { 1730, 9458 }, level = 12, group = "WeaponTreeAvoidPoisonBleedDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, }, - ["WeaponTreeAvoidPoisonBleedDurationOnSelf2"] = { type = "Spawn", tier = 2, "100% chance to Avoid being Poisoned", "50% increased Bleed Duration on you", statOrder = { 1730, 9458 }, level = 65, group = "WeaponTreeAvoidPoisonBleedDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, }, - ["WeaponTreeCorruptingBloodImmunityExposureEffectOnSelf1"] = { type = "Spawn", tier = 1, "Corrupted Blood cannot be inflicted on you", "50% increased Effect of Exposure on you", statOrder = { 5116, 6194 }, level = 40, group = "WeaponTreeCorruptingBloodImmunityExposureEffectOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, }, - ["WeaponTreeExposureImmunityChanceToBeMaimed1"] = { type = "Spawn", tier = 1, "Attack Hits have 20% chance to Maim you for 4 seconds", "Immune to Exposure", statOrder = { 5351, 6854 }, level = 40, group = "WeaponTreeExposureImmunityChanceToBeMaimed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, }, - ["WeaponTreeCurseEffectOnSelfReducedDamagePerCurseOnSelf1"] = { type = "Spawn", tier = 1, "20% reduced Damage per Curse on you", "30% reduced Effect of Curses on you", statOrder = { 1101, 2047 }, level = 28, group = "WeaponTreeCurseEffectOnSelfReducedDamagePerCurseOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeCurseEffectOnSelfReducedDamagePerCurseOnSelf2"] = { type = "Spawn", tier = 2, "20% reduced Damage per Curse on you", "40% reduced Effect of Curses on you", statOrder = { 1101, 2047 }, level = 73, group = "WeaponTreeCurseEffectOnSelfReducedDamagePerCurseOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeDamagePerCurseOnSelfCurseEffectOnSelf1"] = { type = "Spawn", tier = 1, "10% increased Damage per Curse on you", "25% increased Effect of Curses on you", statOrder = { 1101, 2047 }, level = 28, group = "WeaponTreeDamagePerCurseOnSelfCurseEffectOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeDamagePerCurseOnSelfCurseEffectOnSelf2"] = { type = "Spawn", tier = 2, "15% increased Damage per Curse on you", "25% increased Effect of Curses on you", statOrder = { 1101, 2047 }, level = 73, group = "WeaponTreeDamagePerCurseOnSelfCurseEffectOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeStunThresholdStunDurationOnSelf1"] = { type = "Spawn", tier = 1, "100% increased Stun Threshold", "50% increased Stun Duration on you", statOrder = { 3138, 4035 }, level = 1, group = "WeaponTreeStunThresholdStunDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeStunThresholdStunDurationOnSelf2"] = { type = "Spawn", tier = 2, "150% increased Stun Threshold", "50% increased Stun Duration on you", statOrder = { 3138, 4035 }, level = 60, group = "WeaponTreeStunThresholdStunDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeStunRecoveryReducedStunThreshold1"] = { type = "Spawn", tier = 1, "100% increased Stun and Block Recovery", "25% reduced Stun Threshold", statOrder = { 1781, 3138 }, level = 1, group = "WeaponTreeStunRecoveryReducedStunThreshold", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeStunRecoveryReducedStunThreshold2"] = { type = "Spawn", tier = 2, "150% increased Stun and Block Recovery", "25% reduced Stun Threshold", statOrder = { 1781, 3138 }, level = 60, group = "WeaponTreeStunRecoveryReducedStunThreshold", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeEnemyCritChanceAgainstSelfReducedDamageFromCrits1"] = { type = "Spawn", tier = 1, "You take 30% reduced Extra Damage from Critical Strikes", "Hits have 100% increased Critical Strike Chance against you", statOrder = { 1395, 2996 }, level = 1, group = "WeaponTreeEnemyCritChanceAgainstSelfReducedDamageFromCrits", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeEnemyCritChanceAgainstSelfReducedDamageFromCrits2"] = { type = "Spawn", tier = 2, "You take 40% reduced Extra Damage from Critical Strikes", "Hits have 100% increased Critical Strike Chance against you", statOrder = { 1395, 2996 }, level = 45, group = "WeaponTreeEnemyCritChanceAgainstSelfReducedDamageFromCrits", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeEnemyCritChanceAgainstSelfIncreasedDamageFromCrits1"] = { type = "Spawn", tier = 1, "You take 20% increased Extra Damage from Critical Strikes", "Hits have 50% reduced Critical Strike Chance against you", statOrder = { 1395, 2996 }, level = 1, group = "WeaponTreeEnemyCritChanceAgainstSelfIncreasedDamageFromCrits", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeEnemyCritChanceAgainstSelfIncreasedDamageFromCrits2"] = { type = "Spawn", tier = 2, "You take 20% increased Extra Damage from Critical Strikes", "Hits have 70% reduced Critical Strike Chance against you", statOrder = { 1395, 2996 }, level = 45, group = "WeaponTreeEnemyCritChanceAgainstSelfIncreasedDamageFromCrits", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeElementalDamageReflectImmunePhysicalReflectDamageTaken1"] = { type = "Spawn", tier = 1, "100% reduced Reflected Elemental Damage taken", "100% increased Reflected Physical Damage taken", statOrder = { 2582, 2583 }, level = 68, group = "WeaponTreeElementalDamageReflectImmunePhysicalReflectDamageTaken", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreePhysicalDamageReflectImmuneElementalReflectDamageTaken1"] = { type = "Spawn", tier = 1, "100% increased Reflected Elemental Damage taken", "100% reduced Reflected Physical Damage taken", statOrder = { 2582, 2583 }, level = 68, group = "WeaponTreePhysicalDamageReflectImmuneElementalReflectDamageTaken", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeDamageYouReflectGainedAsLife1"] = { type = "Spawn", tier = 1, "20% of Damage you Reflect to Enemies when Hit is leeched as Life", statOrder = { 2586 }, level = 1, group = "WeaponTreeDamageYouReflectGainedAsLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeDamageYouReflectGainedAsLife2"] = { type = "Spawn", tier = 2, "30% of Damage you Reflect to Enemies when Hit is leeched as Life", statOrder = { 2586 }, level = 50, group = "WeaponTreeDamageYouReflectGainedAsLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLifeRecoveryRateReducedMaximumLife1"] = { type = "Spawn", tier = 1, "10% reduced maximum Life", "12% increased Life Recovery rate", statOrder = { 1453, 1460 }, level = 1, group = "WeaponTreeLifeRecoveryRateReducedMaximumLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, }, - ["WeaponTreeLifeRecoveryRateReducedMaximumLife2"] = { type = "Spawn", tier = 2, "10% reduced maximum Life", "16% increased Life Recovery rate", statOrder = { 1453, 1460 }, level = 72, group = "WeaponTreeLifeRecoveryRateReducedMaximumLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, }, - ["WeaponTreeEnergyShieldRecoveryRateReducedLocalEnergyShield1"] = { type = "Spawn", tier = 1, "25% reduced Energy Shield", "12% increased Energy Shield Recovery rate", statOrder = { 1442, 1450 }, level = 1, group = "WeaponTreeEnergyShieldRecoveryRateReducedLocalEnergyShield", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 750, 0 }, modTags = { }, }, - ["WeaponTreeEnergyShieldRecoveryRateReducedLocalEnergyShield2"] = { type = "Spawn", tier = 2, "25% reduced Energy Shield", "16% increased Energy Shield Recovery rate", statOrder = { 1442, 1450 }, level = 72, group = "WeaponTreeEnergyShieldRecoveryRateReducedLocalEnergyShield", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 750, 0 }, modTags = { }, }, - ["WeaponTreeManaRecoveryRateReducedMaximumMana1"] = { type = "Spawn", tier = 1, "10% reduced maximum Mana", "12% increased Mana Recovery rate", statOrder = { 1462, 1468 }, level = 1, group = "WeaponTreeManaRecoveryRateReducedMaximumMana", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeManaRecoveryRateReducedMaximumMana2"] = { type = "Spawn", tier = 2, "10% reduced maximum Mana", "16% increased Mana Recovery rate", statOrder = { 1462, 1468 }, level = 72, group = "WeaponTreeManaRecoveryRateReducedMaximumMana", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLifeRegenOnLowLife1"] = { type = "Spawn", tier = 1, "Regenerate 2% of Life per second while on Low Life", statOrder = { 1824 }, level = 1, group = "WeaponTreeLifeRegenOnLowLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeLifeRegenOnLowLife2"] = { type = "Spawn", tier = 2, "Regenerate 3% of Life per second while on Low Life", statOrder = { 1824 }, level = 50, group = "WeaponTreeLifeRegenOnLowLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeEnergyShieldRegenOnLowLife1"] = { type = "Spawn", tier = 1, "Regenerate 2% of Energy Shield per second while on Low Life", statOrder = { 1682 }, level = 10, group = "WeaponTreeEnergyShieldRegenOnLowLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeEnergyShieldRegenOnLowLife2"] = { type = "Spawn", tier = 2, "Regenerate 3% of Energy Shield per second while on Low Life", statOrder = { 1682 }, level = 80, group = "WeaponTreeEnergyShieldRegenOnLowLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellProjectileBlockReducedAttackProjectileBlock1"] = { type = "Spawn", tier = 1, "-20% chance to Block Projectile Attack Damage", "+25% chance to Block Projectile Spell Damage", statOrder = { 2340, 4866 }, level = 1, group = "WeaponTreeSpellProjectileBlockReducedAttackProjectileBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeSpellProjectileBlockReducedAttackProjectileBlock2"] = { type = "Spawn", tier = 2, "-20% chance to Block Projectile Attack Damage", "+30% chance to Block Projectile Spell Damage", statOrder = { 2340, 4866 }, level = 65, group = "WeaponTreeSpellProjectileBlockReducedAttackProjectileBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeAttackProjectileBlockReducedSpellProjectileBlock1"] = { type = "Spawn", tier = 1, "+25% chance to Block Projectile Attack Damage", "-20% chance to Block Projectile Spell Damage", statOrder = { 2340, 4866 }, level = 1, group = "WeaponTreeAttackProjectileBlockReducedSpellProjectileBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeAttackProjectileBlockReducedSpellProjectileBlock2"] = { type = "Spawn", tier = 2, "+30% chance to Block Projectile Attack Damage", "-20% chance to Block Projectile Spell Damage", statOrder = { 2340, 4866 }, level = 62, group = "WeaponTreeAttackProjectileBlockReducedSpellProjectileBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeElusiveOnLowLifeReducedElusiveEffect1"] = { type = "Spawn", tier = 1, "30% reduced Elusive Effect", "Gain Elusive on reaching Low Life", statOrder = { 6038, 6409 }, level = 30, group = "WeaponTreeElusiveOnLowLifeReducedElusiveEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeElusiveOnLowLifeReducedElusiveEffect2"] = { type = "Spawn", tier = 2, "20% reduced Elusive Effect", "Gain Elusive on reaching Low Life", statOrder = { 6038, 6409 }, level = 76, group = "WeaponTreeElusiveOnLowLifeReducedElusiveEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["WeaponTreeCannotBeStunnedOnLowLifeDamageTakenOnLowLife1"] = { type = "Spawn", tier = 1, "Cannot be Stunned when on Low Life", "8% increased Damage taken while on Low Life", statOrder = { 2051, 5818 }, level = 1, group = "WeaponTreeCannotBeStunnedOnLowLifeDamageTakenOnLowLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeCannotBeStunnedOnLowLifeDamageTakenOnLowLife2"] = { type = "Spawn", tier = 2, "Cannot be Stunned when on Low Life", "5% increased Damage taken while on Low Life", statOrder = { 2051, 5818 }, level = 76, group = "WeaponTreeCannotBeStunnedOnLowLifeDamageTakenOnLowLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeConsecratedGroundAilmentImmunityConsecratedGroundEffect1"] = { type = "Spawn", tier = 1, "100% chance to Avoid Elemental Ailments while on Consecrated Ground", "50% reduced Effect of Consecrated Ground you create", statOrder = { 3418, 5553 }, level = 40, group = "WeaponTreeConsecratedGroundAilmentImmunityConsecratedGroundEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeConsecratedGroundEffectConsecratedGroundArea1"] = { type = "Spawn", tier = 1, "50% reduced Consecrated Ground Area", "30% increased Effect of Consecrated Ground you create", statOrder = { 5551, 5553 }, level = 40, group = "WeaponTreeConsecratedGroundEffectConsecratedGroundArea", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeConsecratedGroundEffectConsecratedGroundArea2"] = { type = "Spawn", tier = 2, "50% reduced Consecrated Ground Area", "50% increased Effect of Consecrated Ground you create", statOrder = { 5551, 5553 }, level = 80, group = "WeaponTreeConsecratedGroundEffectConsecratedGroundArea", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["WeaponTreeGuardSkillCooldownRecoveryGuardDuration1"] = { type = "Spawn", tier = 1, "Guard Skills have 60% increased Cooldown Recovery Rate", "Guard Skills have 50% reduced Duration", statOrder = { 6564, 6565 }, level = 15, group = "WeaponTreeGuardSkillCooldownRecoveryGuardDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, }, - ["WeaponTreeGuardSkillCooldownRecoveryGuardDuration2"] = { type = "Spawn", tier = 2, "Guard Skills have 80% increased Cooldown Recovery Rate", "Guard Skills have 50% reduced Duration", statOrder = { 6564, 6565 }, level = 65, group = "WeaponTreeGuardSkillCooldownRecoveryGuardDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, }, - ["WeaponTreeDebuffTimePassed1"] = { type = "Spawn", tier = 1, "Debuffs on you expire 15% faster", statOrder = { 5847 }, level = 25, group = "WeaponTreeDebuffTimePassed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, }, - ["WeaponTreeDebuffTimePassed2"] = { type = "Spawn", tier = 2, "Debuffs on you expire 25% faster", statOrder = { 5847 }, level = 78, group = "WeaponTreeDebuffTimePassed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, }, - ["WeaponTreeAvoidAilmentsFromCriticalStrikes1"] = { type = "Spawn", tier = 1, "50% chance to avoid Ailments from Critical Strikes", statOrder = { 4754 }, level = 1, group = "WeaponTreeAvoidAilmentsFromCriticalStrikes", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, }, - ["WeaponTreeAvoidAilmentsFromCriticalStrikes2"] = { type = "Spawn", tier = 2, "75% chance to avoid Ailments from Critical Strikes", statOrder = { 4754 }, level = 70, group = "WeaponTreeAvoidAilmentsFromCriticalStrikes", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, }, - ["WeaponTreeCounterattacksMoreDamageCounterattackCooldownRecovery1"] = { type = "Spawn", tier = 1, "Retaliation Skills have 30% reduced Cooldown Recovery Rate", "Retaliation Skills deal 45% more Damage", statOrder = { 5593, 10052 }, level = 28, group = "WeaponTreeCounterattacksMoreDamageCounterattackCooldownRecovery", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["WeaponTreeCounterattacksMoreDamageCounterattackCooldownRecovery2"] = { type = "Spawn", tier = 2, "Retaliation Skills have 30% reduced Cooldown Recovery Rate", "Retaliation Skills deal 60% more Damage", statOrder = { 5593, 10052 }, level = 75, group = "WeaponTreeCounterattacksMoreDamageCounterattackCooldownRecovery", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["WeaponTreeFortificationDurationMaximumFortification1"] = { type = "Spawn", tier = 1, "150% increased Fortification Duration", "-2 to maximum Fortification", statOrder = { 2142, 4846 }, level = 35, group = "WeaponTreeFortificationDurationMaximumFortification", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, }, - ["WeaponTreeFortificationDurationMaximumFortification2"] = { type = "Spawn", tier = 2, "200% increased Fortification Duration", "-2 to maximum Fortification", statOrder = { 2142, 4846 }, level = 80, group = "WeaponTreeFortificationDurationMaximumFortification", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, }, - ["WeaponTreeNumberOfCorpsesReducedCorpseLife1"] = { type = "Spawn", tier = 1, "Desecrate and Unearth have +1 to Maximum number of corpses allowed", "Corpses you Spawn have 5% reduced Maximum Life", statOrder = { 5863, 8710 }, level = 16, group = "WeaponTreeNumberOfCorpsesReducedCorpseLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeNumberOfCorpsesReducedCorpseLife2"] = { type = "Spawn", tier = 2, "Desecrate and Unearth have +2 to Maximum number of corpses allowed", "Corpses you Spawn have 5% reduced Maximum Life", statOrder = { 5863, 8710 }, level = 72, group = "WeaponTreeNumberOfCorpsesReducedCorpseLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeNumberOfCorpsesReducedCorpseLife2h1"] = { type = "Spawn", tier = 1, "Desecrate and Unearth have +2 to Maximum number of corpses allowed", "Corpses you Spawn have 10% reduced Maximum Life", statOrder = { 5863, 8710 }, level = 16, group = "WeaponTreeNumberOfCorpsesReducedCorpseLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeNumberOfCorpsesReducedCorpseLife2h2"] = { type = "Spawn", tier = 2, "Desecrate and Unearth have +4 to Maximum number of corpses allowed", "Corpses you Spawn have 10% reduced Maximum Life", statOrder = { 5863, 8710 }, level = 72, group = "WeaponTreeNumberOfCorpsesReducedCorpseLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeCorpseLifeReducedNumberOfCorpses1"] = { type = "Spawn", tier = 1, "Desecrate and Unearth have -1 to Maximum number of corpses allowed", "Corpses you Spawn have 10% increased Maximum Life", statOrder = { 5863, 8710 }, level = 16, group = "WeaponTreeCorpseLifeReducedNumberOfCorpses", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeCorpseLifeReducedNumberOfCorpses2"] = { type = "Spawn", tier = 2, "Desecrate and Unearth have -1 to Maximum number of corpses allowed", "Corpses you Spawn have 15% increased Maximum Life", statOrder = { 5863, 8710 }, level = 72, group = "WeaponTreeCorpseLifeReducedNumberOfCorpses", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeCorpseLifeReducedNumberOfCorpses2h1"] = { type = "Spawn", tier = 1, "Desecrate and Unearth have -2 to Maximum number of corpses allowed", "Corpses you Spawn have 20% increased Maximum Life", statOrder = { 5863, 8710 }, level = 16, group = "WeaponTreeCorpseLifeReducedNumberOfCorpses", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeCorpseLifeReducedNumberOfCorpses2h2"] = { type = "Spawn", tier = 2, "Desecrate and Unearth have -2 to Maximum number of corpses allowed", "Corpses you Spawn have 30% increased Maximum Life", statOrder = { 5863, 8710 }, level = 72, group = "WeaponTreeCorpseLifeReducedNumberOfCorpses", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeMinionCooldownRecoveryReducedMinionDuration1"] = { type = "Spawn", tier = 1, "10% reduced Minion Duration", "Minions have 15% increased Cooldown Recovery Rate", statOrder = { 4847, 8828 }, level = 12, group = "WeaponTreeMinionCooldownRecoveryReducedMinionDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, modTags = { }, }, - ["WeaponTreeMinionCooldownRecoveryReducedMinionDuration2"] = { type = "Spawn", tier = 2, "10% reduced Minion Duration", "Minions have 25% increased Cooldown Recovery Rate", statOrder = { 4847, 8828 }, level = 64, group = "WeaponTreeMinionCooldownRecoveryReducedMinionDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, modTags = { }, }, - ["WeaponTreeMinionCooldownRecoveryReducedMinionDuration2h1"] = { type = "Spawn", tier = 1, "20% reduced Minion Duration", "Minions have 30% increased Cooldown Recovery Rate", statOrder = { 4847, 8828 }, level = 12, group = "WeaponTreeMinionCooldownRecoveryReducedMinionDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, modTags = { }, }, - ["WeaponTreeMinionCooldownRecoveryReducedMinionDuration2h2"] = { type = "Spawn", tier = 2, "20% reduced Minion Duration", "Minions have 50% increased Cooldown Recovery Rate", statOrder = { 4847, 8828 }, level = 64, group = "WeaponTreeMinionCooldownRecoveryReducedMinionDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, modTags = { }, }, - ["WeaponTreeMinionDurationReducedCooldownRecovery1"] = { type = "Spawn", tier = 1, "15% increased Minion Duration", "Minions have 15% reduced Cooldown Recovery Rate", statOrder = { 4847, 8828 }, level = 12, group = "WeaponTreeMinionDurationReducedCooldownRecovery", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeMinionDurationReducedCooldownRecovery2"] = { type = "Spawn", tier = 2, "20% increased Minion Duration", "Minions have 15% reduced Cooldown Recovery Rate", statOrder = { 4847, 8828 }, level = 64, group = "WeaponTreeMinionDurationReducedCooldownRecovery", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeMinionDurationReducedCooldownRecovery2h1"] = { type = "Spawn", tier = 1, "30% increased Minion Duration", "Minions have 30% reduced Cooldown Recovery Rate", statOrder = { 4847, 8828 }, level = 12, group = "WeaponTreeMinionDurationReducedCooldownRecovery", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeMinionDurationReducedCooldownRecovery2h2"] = { type = "Spawn", tier = 2, "40% increased Minion Duration", "Minions have 30% reduced Cooldown Recovery Rate", statOrder = { 4847, 8828 }, level = 64, group = "WeaponTreeMinionDurationReducedCooldownRecovery", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAreaOfEffectReducedDamage1"] = { type = "Spawn", tier = 1, "Minions deal 15% reduced Damage", "Minions have 20% increased Area of Effect", statOrder = { 1852, 2895 }, level = 1, group = "WeaponTreeMinionAreaOfEffectReducedDamage", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAreaOfEffectReducedDamage2"] = { type = "Spawn", tier = 2, "Minions deal 15% reduced Damage", "Minions have 30% increased Area of Effect", statOrder = { 1852, 2895 }, level = 55, group = "WeaponTreeMinionAreaOfEffectReducedDamage", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAreaOfEffectReducedDamage2h1"] = { type = "Spawn", tier = 1, "Minions deal 30% reduced Damage", "Minions have 40% increased Area of Effect", statOrder = { 1852, 2895 }, level = 1, group = "WeaponTreeMinionAreaOfEffectReducedDamage", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeMinionAreaOfEffectReducedDamage2h2"] = { type = "Spawn", tier = 2, "Minions deal 30% reduced Damage", "Minions have 60% increased Area of Effect", statOrder = { 1852, 2895 }, level = 55, group = "WeaponTreeMinionAreaOfEffectReducedDamage", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeMinionElementalResistanceReducedChaosResistance1"] = { type = "Spawn", tier = 1, "Minions have +12% to all Elemental Resistances", "Minions have -11% to Chaos Resistance", statOrder = { 2786, 2787 }, level = 1, group = "WeaponTreeMinionElementalResistanceReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, modTags = { }, }, - ["WeaponTreeMinionElementalResistanceReducedChaosResistance2"] = { type = "Spawn", tier = 2, "Minions have +16% to all Elemental Resistances", "Minions have -11% to Chaos Resistance", statOrder = { 2786, 2787 }, level = 55, group = "WeaponTreeMinionElementalResistanceReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, modTags = { }, }, - ["WeaponTreeMinionElementalResistanceReducedChaosResistance2h1"] = { type = "Spawn", tier = 1, "Minions have +25% to all Elemental Resistances", "Minions have -23% to Chaos Resistance", statOrder = { 2786, 2787 }, level = 1, group = "WeaponTreeMinionElementalResistanceReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, modTags = { }, }, - ["WeaponTreeMinionElementalResistanceReducedChaosResistance2h2"] = { type = "Spawn", tier = 2, "Minions have +35% to all Elemental Resistances", "Minions have -23% to Chaos Resistance", statOrder = { 2786, 2787 }, level = 55, group = "WeaponTreeMinionElementalResistanceReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, modTags = { }, }, - ["WeaponTreeMinionChaosResistanceReducedElementalResistance1"] = { type = "Spawn", tier = 1, "Minions have -6% to all Elemental Resistances", "Minions have +17% to Chaos Resistance", statOrder = { 2786, 2787 }, level = 1, group = "WeaponTreeMinionChaosResistanceReducedElementalResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeMinionChaosResistanceReducedElementalResistance2"] = { type = "Spawn", tier = 2, "Minions have -6% to all Elemental Resistances", "Minions have +23% to Chaos Resistance", statOrder = { 2786, 2787 }, level = 55, group = "WeaponTreeMinionChaosResistanceReducedElementalResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeMinionChaosResistanceReducedElementalResistance2h1"] = { type = "Spawn", tier = 1, "Minions have -12% to all Elemental Resistances", "Minions have +37% to Chaos Resistance", statOrder = { 2786, 2787 }, level = 1, group = "WeaponTreeMinionChaosResistanceReducedElementalResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeMinionChaosResistanceReducedElementalResistance2h2"] = { type = "Spawn", tier = 2, "Minions have -12% to all Elemental Resistances", "Minions have +47% to Chaos Resistance", statOrder = { 2786, 2787 }, level = 55, group = "WeaponTreeMinionChaosResistanceReducedElementalResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeMinionArmour1"] = { type = "Spawn", tier = 1, "Minions have +350 to Armour", statOrder = { 2779 }, level = 25, group = "WeaponTreeMinionArmour", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeMinionArmour2"] = { type = "Spawn", tier = 2, "Minions have +500 to Armour", statOrder = { 2779 }, level = 55, group = "WeaponTreeMinionArmour", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeMinionArmour2h1"] = { type = "Spawn", tier = 1, "Minions have +700 to Armour", statOrder = { 2779 }, level = 25, group = "WeaponTreeMinionArmour", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeMinionArmour2h2"] = { type = "Spawn", tier = 2, "Minions have +1000 to Armour", statOrder = { 2779 }, level = 55, group = "WeaponTreeMinionArmour", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeMinionEvasion1"] = { type = "Spawn", tier = 1, "Minions have 20% increased Evasion Rating", statOrder = { 8842 }, level = 1, group = "WeaponTreeMinionEvasion", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeMinionEvasion2"] = { type = "Spawn", tier = 2, "Minions have 30% increased Evasion Rating", statOrder = { 8842 }, level = 55, group = "WeaponTreeMinionEvasion", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeMinionEvasion2h1"] = { type = "Spawn", tier = 1, "Minions have 40% increased Evasion Rating", statOrder = { 8842 }, level = 1, group = "WeaponTreeMinionEvasion", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeMinionEvasion2h2"] = { type = "Spawn", tier = 2, "Minions have 60% increased Evasion Rating", statOrder = { 8842 }, level = 55, group = "WeaponTreeMinionEvasion", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeMinionSpellSuppressionChanceReducedEvasion1"] = { type = "Spawn", tier = 1, "Minions have 15% reduced Evasion Rating", "Minions have +15% chance to Suppress Spell Damage", statOrder = { 8842, 8870 }, level = 24, group = "WeaponTreeMinionSpellSuppressionChanceReducedEvasion", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeMinionSpellSuppressionChanceReducedEvasion2"] = { type = "Spawn", tier = 2, "Minions have 15% reduced Evasion Rating", "Minions have +25% chance to Suppress Spell Damage", statOrder = { 8842, 8870 }, level = 76, group = "WeaponTreeMinionSpellSuppressionChanceReducedEvasion", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeMinionSpellSuppressionChanceReducedEvasion2h1"] = { type = "Spawn", tier = 1, "Minions have 30% reduced Evasion Rating", "Minions have +30% chance to Suppress Spell Damage", statOrder = { 8842, 8870 }, level = 24, group = "WeaponTreeMinionSpellSuppressionChanceReducedEvasion", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeMinionSpellSuppressionChanceReducedEvasion2h2"] = { type = "Spawn", tier = 2, "Minions have 30% reduced Evasion Rating", "Minions have +50% chance to Suppress Spell Damage", statOrder = { 8842, 8870 }, level = 76, group = "WeaponTreeMinionSpellSuppressionChanceReducedEvasion", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeMinionLifeReducedLifeRecoveryRate1"] = { type = "Spawn", tier = 1, "Minions have 10% reduced Life Recovery rate", "Minions have 20% increased maximum Life", statOrder = { 1646, 1647 }, level = 1, group = "WeaponTreeMinionLifeReducedLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, modTags = { }, }, - ["WeaponTreeMinionLifeReducedLifeRecoveryRate2"] = { type = "Spawn", tier = 2, "Minions have 10% reduced Life Recovery rate", "Minions have 30% increased maximum Life", statOrder = { 1646, 1647 }, level = 62, group = "WeaponTreeMinionLifeReducedLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, modTags = { }, }, - ["WeaponTreeMinionLifeReducedLifeRecoveryRate2h1"] = { type = "Spawn", tier = 1, "Minions have 20% reduced Life Recovery rate", "Minions have 40% increased maximum Life", statOrder = { 1646, 1647 }, level = 1, group = "WeaponTreeMinionLifeReducedLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, modTags = { }, }, - ["WeaponTreeMinionLifeReducedLifeRecoveryRate2h2"] = { type = "Spawn", tier = 2, "Minions have 20% reduced Life Recovery rate", "Minions have 60% increased maximum Life", statOrder = { 1646, 1647 }, level = 62, group = "WeaponTreeMinionLifeReducedLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, modTags = { }, }, - ["WeaponTreeMinionLifeRecoveryRateReducedMaximumLife1"] = { type = "Spawn", tier = 1, "Minions have 15% increased Life Recovery rate", "Minions have 15% reduced maximum Life", statOrder = { 1646, 1647 }, level = 10, group = "WeaponTreeMinionLifeRecoveryRateReducedMaximumLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, modTags = { }, }, - ["WeaponTreeMinionLifeRecoveryRateReducedMaximumLife2"] = { type = "Spawn", tier = 2, "Minions have 20% increased Life Recovery rate", "Minions have 15% reduced maximum Life", statOrder = { 1646, 1647 }, level = 66, group = "WeaponTreeMinionLifeRecoveryRateReducedMaximumLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, modTags = { }, }, - ["WeaponTreeMinionLifeRecoveryRateReducedMaximumLife2h1"] = { type = "Spawn", tier = 1, "Minions have 30% increased Life Recovery rate", "Minions have 30% reduced maximum Life", statOrder = { 1646, 1647 }, level = 10, group = "WeaponTreeMinionLifeRecoveryRateReducedMaximumLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, modTags = { }, }, - ["WeaponTreeMinionLifeRecoveryRateReducedMaximumLife2h2"] = { type = "Spawn", tier = 2, "Minions have 40% increased Life Recovery rate", "Minions have 30% reduced maximum Life", statOrder = { 1646, 1647 }, level = 66, group = "WeaponTreeMinionLifeRecoveryRateReducedMaximumLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, modTags = { }, }, - ["WeaponTreeMinionLifeAsExtraEnergyShieldReducedElementalResistance1"] = { type = "Spawn", tier = 1, "Minions have -6% to all Elemental Resistances", "Minions gain 15% of Maximum Life as Extra Maximum Energy Shield", statOrder = { 2786, 8856 }, level = 15, group = "WeaponTreeMinionLifeAsExtraEnergyShieldReducedElementalResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionLifeAsExtraEnergyShieldReducedElementalResistance2"] = { type = "Spawn", tier = 2, "Minions have -6% to all Elemental Resistances", "Minions gain 20% of Maximum Life as Extra Maximum Energy Shield", statOrder = { 2786, 8856 }, level = 78, group = "WeaponTreeMinionLifeAsExtraEnergyShieldReducedElementalResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionLifeAsExtraEnergyShieldReducedElementalResistance2h1"] = { type = "Spawn", tier = 1, "Minions have -12% to all Elemental Resistances", "Minions gain 30% of Maximum Life as Extra Maximum Energy Shield", statOrder = { 2786, 8856 }, level = 15, group = "WeaponTreeMinionLifeAsExtraEnergyShieldReducedElementalResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionLifeAsExtraEnergyShieldReducedElementalResistance2h2"] = { type = "Spawn", tier = 2, "Minions have -12% to all Elemental Resistances", "Minions gain 40% of Maximum Life as Extra Maximum Energy Shield", statOrder = { 2786, 8856 }, level = 78, group = "WeaponTreeMinionLifeAsExtraEnergyShieldReducedElementalResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionMaximumElementalResistances1"] = { type = "Spawn", tier = 1, "Minions have +1% to all maximum Elemental Resistances", statOrder = { 8855 }, level = 83, group = "WeaponTreeMinionMaximumElementalResistances", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeMinionMaximumElementalResistances2h1"] = { type = "Spawn", tier = 1, "Minions have +2% to all maximum Elemental Resistances", statOrder = { 8855 }, level = 83, group = "WeaponTreeMinionMaximumElementalResistances", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeMinionBlindOnHitChance1"] = { type = "Spawn", tier = 1, "Minions have 10% chance to Blind on Hit with Attacks", statOrder = { 8817 }, level = 20, group = "WeaponTreeMinionBlindOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeMinionBlindOnHitChance2"] = { type = "Spawn", tier = 2, "Minions have 15% chance to Blind on Hit with Attacks", statOrder = { 8817 }, level = 73, group = "WeaponTreeMinionBlindOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeMinionBlindOnHitChance2h1"] = { type = "Spawn", tier = 1, "Minions have 20% chance to Blind on Hit with Attacks", statOrder = { 8817 }, level = 20, group = "WeaponTreeMinionBlindOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeMinionBlindOnHitChance2h2"] = { type = "Spawn", tier = 2, "Minions have 30% chance to Blind on Hit with Attacks", statOrder = { 8817 }, level = 73, group = "WeaponTreeMinionBlindOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeMinionHinderOnHitChance1"] = { type = "Spawn", tier = 1, "Minions have 10% chance to Hinder Enemies on Hit with Spells", statOrder = { 8871 }, level = 20, group = "WeaponTreeMinionHinderOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeMinionHinderOnHitChance2"] = { type = "Spawn", tier = 2, "Minions have 15% chance to Hinder Enemies on Hit with Spells", statOrder = { 8871 }, level = 73, group = "WeaponTreeMinionHinderOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeMinionHinderOnHitChance2h1"] = { type = "Spawn", tier = 1, "Minions have 20% chance to Hinder Enemies on Hit with Spells", statOrder = { 8871 }, level = 20, group = "WeaponTreeMinionHinderOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeMinionHinderOnHitChance2h2"] = { type = "Spawn", tier = 2, "Minions have 30% chance to Hinder Enemies on Hit with Spells", statOrder = { 8871 }, level = 73, group = "WeaponTreeMinionHinderOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeMinionMovementSpeed1"] = { type = "Spawn", tier = 1, "Minions have 12% increased Movement Speed", statOrder = { 1650 }, level = 1, group = "WeaponTreeMinionMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3000, 3000, 0 }, modTags = { }, }, - ["WeaponTreeMinionMovementSpeed2"] = { type = "Spawn", tier = 2, "Minions have 16% increased Movement Speed", statOrder = { 1650 }, level = 52, group = "WeaponTreeMinionMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3000, 3000, 0 }, modTags = { }, }, - ["WeaponTreeMinionMovementSpeed2h1"] = { type = "Spawn", tier = 1, "Minions have 24% increased Movement Speed", statOrder = { 1650 }, level = 1, group = "WeaponTreeMinionMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3000, 3000, 0 }, modTags = { }, }, - ["WeaponTreeMinionMovementSpeed2h2"] = { type = "Spawn", tier = 2, "Minions have 32% increased Movement Speed", statOrder = { 1650 }, level = 52, group = "WeaponTreeMinionMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3000, 3000, 0 }, modTags = { }, }, - ["WeaponTreeMinionProjectileSpeed1"] = { type = "Spawn", tier = 1, "Minions have 15% increased Projectile Speed", statOrder = { 8864 }, level = 1, group = "WeaponTreeMinionProjectileSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, - ["WeaponTreeMinionProjectileSpeed2"] = { type = "Spawn", tier = 2, "Minions have 20% increased Projectile Speed", statOrder = { 8864 }, level = 76, group = "WeaponTreeMinionProjectileSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, - ["WeaponTreeMinionProjectileSpeed2h1"] = { type = "Spawn", tier = 1, "Minions have 30% increased Projectile Speed", statOrder = { 8864 }, level = 1, group = "WeaponTreeMinionProjectileSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, - ["WeaponTreeMinionProjectileSpeed2h2"] = { type = "Spawn", tier = 2, "Minions have 40% increased Projectile Speed", statOrder = { 8864 }, level = 76, group = "WeaponTreeMinionProjectileSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, - ["WeaponTreeMinionBleedChanceBleedDurationOnSelf1"] = { type = "Spawn", tier = 1, "Minions have 8% chance to cause Bleeding with Attacks", "20% increased Bleed Duration on you", statOrder = { 2366, 9458 }, level = 25, group = "WeaponTreeMinionBleedChanceBleedDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, - ["WeaponTreeMinionBleedChanceBleedDurationOnSelf2"] = { type = "Spawn", tier = 2, "Minions have 12% chance to cause Bleeding with Attacks", "20% increased Bleed Duration on you", statOrder = { 2366, 9458 }, level = 78, group = "WeaponTreeMinionBleedChanceBleedDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, - ["WeaponTreeMinionBleedChanceBleedDurationOnSelf2h1"] = { type = "Spawn", tier = 1, "Minions have 16% chance to cause Bleeding with Attacks", "40% increased Bleed Duration on you", statOrder = { 2366, 9458 }, level = 25, group = "WeaponTreeMinionBleedChanceBleedDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, - ["WeaponTreeMinionBleedChanceBleedDurationOnSelf2h2"] = { type = "Spawn", tier = 2, "Minions have 24% chance to cause Bleeding with Attacks", "40% increased Bleed Duration on you", statOrder = { 2366, 9458 }, level = 78, group = "WeaponTreeMinionBleedChanceBleedDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, - ["WeaponTreeMinionPoisonChancePoisonDurationOnSelf1"] = { type = "Spawn", tier = 1, "Minions have 8% chance to Poison Enemies on Hit", "20% increased Poison Duration on you", statOrder = { 3040, 9467 }, level = 25, group = "WeaponTreeMinionPoisonChancePoisonDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, - ["WeaponTreeMinionPoisonChancePoisonDurationOnSelf2"] = { type = "Spawn", tier = 2, "Minions have 12% chance to Poison Enemies on Hit", "20% increased Poison Duration on you", statOrder = { 3040, 9467 }, level = 78, group = "WeaponTreeMinionPoisonChancePoisonDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, - ["WeaponTreeMinionPoisonChancePoisonDurationOnSelf2h1"] = { type = "Spawn", tier = 1, "Minions have 16% chance to Poison Enemies on Hit", "40% increased Poison Duration on you", statOrder = { 3040, 9467 }, level = 25, group = "WeaponTreeMinionPoisonChancePoisonDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, - ["WeaponTreeMinionPoisonChancePoisonDurationOnSelf2h2"] = { type = "Spawn", tier = 2, "Minions have 24% chance to Poison Enemies on Hit", "40% increased Poison Duration on you", statOrder = { 3040, 9467 }, level = 78, group = "WeaponTreeMinionPoisonChancePoisonDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, - ["WeaponTreeMinionIgniteChanceIgniteDurationOnSelf1"] = { type = "Spawn", tier = 1, "20% increased Ignite Duration on you", "Minions have 8% chance to Ignite", statOrder = { 1756, 8825 }, level = 25, group = "WeaponTreeMinionIgniteChanceIgniteDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, - ["WeaponTreeMinionIgniteChanceIgniteDurationOnSelf2"] = { type = "Spawn", tier = 2, "20% increased Ignite Duration on you", "Minions have 12% chance to Ignite", statOrder = { 1756, 8825 }, level = 78, group = "WeaponTreeMinionIgniteChanceIgniteDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, - ["WeaponTreeMinionIgniteChanceIgniteDurationOnSelf2h1"] = { type = "Spawn", tier = 1, "40% increased Ignite Duration on you", "Minions have 16% chance to Ignite", statOrder = { 1756, 8825 }, level = 25, group = "WeaponTreeMinionIgniteChanceIgniteDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, - ["WeaponTreeMinionIgniteChanceIgniteDurationOnSelf2h2"] = { type = "Spawn", tier = 2, "40% increased Ignite Duration on you", "Minions have 24% chance to Ignite", statOrder = { 1756, 8825 }, level = 78, group = "WeaponTreeMinionIgniteChanceIgniteDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, - ["WeaponTreeMinionFreezeChanceFreezeDurationOnSelf1"] = { type = "Spawn", tier = 1, "20% increased Freeze Duration on you", "Minions have 8% chance to Freeze", statOrder = { 1755, 8822 }, level = 25, group = "WeaponTreeMinionFreezeChanceFreezeDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, - ["WeaponTreeMinionFreezeChanceFreezeDurationOnSelf2"] = { type = "Spawn", tier = 2, "20% increased Freeze Duration on you", "Minions have 12% chance to Freeze", statOrder = { 1755, 8822 }, level = 78, group = "WeaponTreeMinionFreezeChanceFreezeDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, - ["WeaponTreeMinionFreezeChanceFreezeDurationOnSelf2h1"] = { type = "Spawn", tier = 1, "40% increased Freeze Duration on you", "Minions have 16% chance to Freeze", statOrder = { 1755, 8822 }, level = 25, group = "WeaponTreeMinionFreezeChanceFreezeDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, - ["WeaponTreeMinionFreezeChanceFreezeDurationOnSelf2h2"] = { type = "Spawn", tier = 2, "40% increased Freeze Duration on you", "Minions have 24% chance to Freeze", statOrder = { 1755, 8822 }, level = 78, group = "WeaponTreeMinionFreezeChanceFreezeDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, - ["WeaponTreeMinionShockChanceShockDurationOnSelf1"] = { type = "Spawn", tier = 1, "20% increased Shock Duration on you", "Minions have 8% chance to Shock", statOrder = { 1754, 8827 }, level = 25, group = "WeaponTreeMinionShockChanceShockDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, - ["WeaponTreeMinionShockChanceShockDurationOnSelf2"] = { type = "Spawn", tier = 2, "20% increased Shock Duration on you", "Minions have 12% chance to Shock", statOrder = { 1754, 8827 }, level = 78, group = "WeaponTreeMinionShockChanceShockDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, - ["WeaponTreeMinionShockChanceShockDurationOnSelf2h1"] = { type = "Spawn", tier = 1, "40% increased Shock Duration on you", "Minions have 16% chance to Shock", statOrder = { 1754, 8827 }, level = 25, group = "WeaponTreeMinionShockChanceShockDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, - ["WeaponTreeMinionShockChanceShockDurationOnSelf2h2"] = { type = "Spawn", tier = 2, "40% increased Shock Duration on you", "Minions have 24% chance to Shock", statOrder = { 1754, 8827 }, level = 78, group = "WeaponTreeMinionShockChanceShockDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, - ["WeaponTreeLinkSkillsEffectReducedLinkManaCost1"] = { type = "Spawn", tier = 1, "Link Skills have 8% increased Buff Effect", "20% increased Mana Cost of Link Skills", statOrder = { 7097, 7105 }, level = 40, group = "WeaponTreeLinkSkillsEffectReducedLinkManaCost", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1200, 1200, 0 }, modTags = { }, }, - ["WeaponTreeLinkSkillsEffectReducedLinkManaCost2"] = { type = "Spawn", tier = 2, "Link Skills have 12% increased Buff Effect", "20% increased Mana Cost of Link Skills", statOrder = { 7097, 7105 }, level = 82, group = "WeaponTreeLinkSkillsEffectReducedLinkManaCost", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1200, 1200, 0 }, modTags = { }, }, - ["WeaponTreeLinkSkillsEffectReducedLinkManaCost2h1"] = { type = "Spawn", tier = 1, "Link Skills have 16% increased Buff Effect", "40% increased Mana Cost of Link Skills", statOrder = { 7097, 7105 }, level = 40, group = "WeaponTreeLinkSkillsEffectReducedLinkManaCost", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1200, 1200, 0 }, modTags = { }, }, - ["WeaponTreeLinkSkillsEffectReducedLinkManaCost2h2"] = { type = "Spawn", tier = 2, "Link Skills have 24% increased Buff Effect", "40% increased Mana Cost of Link Skills", statOrder = { 7097, 7105 }, level = 82, group = "WeaponTreeLinkSkillsEffectReducedLinkManaCost", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1200, 1200, 0 }, modTags = { }, }, - ["WeaponTreeLinkToExtraAlliesReducedLinkBuffEffect1"] = { type = "Spawn", tier = 1, "Link Skills have 20% reduced Buff Effect", "Link Skills Link to 1 additional random target", statOrder = { 7097, 7116 }, level = 84, group = "WeaponTreeLinkToExtraAlliesReducedLinkBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1200, 1200, 0 }, modTags = { }, }, - ["WeaponTreeLinkToExtraAlliesReducedLinkBuffEffect2h1"] = { type = "Spawn", tier = 1, "Link Skills have 30% reduced Buff Effect", "Link Skills Link to 2 additional random targets", statOrder = { 7097, 7116 }, level = 84, group = "WeaponTreeLinkToExtraAlliesReducedLinkBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1200, 1200, 0 }, modTags = { }, }, - ["WeaponTreeConvocationCooldownSpeedReducedBuffEffect1"] = { type = "Spawn", tier = 1, "Convocation has 25% increased Cooldown Recovery Rate", "20% reduced Convocation Buff Effect", statOrder = { 3739, 3885 }, level = 28, group = "WeaponTreeConvocationCooldownSpeedReducedBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeConvocationCooldownSpeedReducedBuffEffect2"] = { type = "Spawn", tier = 2, "Convocation has 40% increased Cooldown Recovery Rate", "20% reduced Convocation Buff Effect", statOrder = { 3739, 3885 }, level = 70, group = "WeaponTreeConvocationCooldownSpeedReducedBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeConvocationCooldownSpeedReducedBuffEffect2h1"] = { type = "Spawn", tier = 1, "Convocation has 50% increased Cooldown Recovery Rate", "40% reduced Convocation Buff Effect", statOrder = { 3739, 3885 }, level = 28, group = "WeaponTreeConvocationCooldownSpeedReducedBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeConvocationCooldownSpeedReducedBuffEffect2h2"] = { type = "Spawn", tier = 2, "Convocation has 80% increased Cooldown Recovery Rate", "40% reduced Convocation Buff Effect", statOrder = { 3739, 3885 }, level = 70, group = "WeaponTreeConvocationCooldownSpeedReducedBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, - ["WeaponTreeOfferingEffectReducedDuration1"] = { type = "Spawn", tier = 1, "10% increased effect of Offerings", "Offering Skills have 15% reduced Duration", statOrder = { 3925, 9065 }, level = 16, group = "WeaponTreeOfferingEffectReducedDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeOfferingEffectReducedDuration2"] = { type = "Spawn", tier = 2, "15% increased effect of Offerings", "Offering Skills have 15% reduced Duration", statOrder = { 3925, 9065 }, level = 78, group = "WeaponTreeOfferingEffectReducedDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeOfferingEffectReducedDuration2h1"] = { type = "Spawn", tier = 1, "20% increased effect of Offerings", "Offering Skills have 30% reduced Duration", statOrder = { 3925, 9065 }, level = 16, group = "WeaponTreeOfferingEffectReducedDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeOfferingEffectReducedDuration2h2"] = { type = "Spawn", tier = 2, "30% increased effect of Offerings", "Offering Skills have 30% reduced Duration", statOrder = { 3925, 9065 }, level = 78, group = "WeaponTreeOfferingEffectReducedDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeOfferingDurationReducedEffect1"] = { type = "Spawn", tier = 1, "10% reduced effect of Offerings", "Offering Skills have 25% increased Duration", statOrder = { 3925, 9065 }, level = 16, group = "WeaponTreeOfferingDurationReducedEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeOfferingDurationReducedEffect2"] = { type = "Spawn", tier = 2, "10% reduced effect of Offerings", "Offering Skills have 40% increased Duration", statOrder = { 3925, 9065 }, level = 78, group = "WeaponTreeOfferingDurationReducedEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeOfferingDurationReducedEffect2h1"] = { type = "Spawn", tier = 1, "20% reduced effect of Offerings", "Offering Skills have 50% increased Duration", statOrder = { 3925, 9065 }, level = 16, group = "WeaponTreeOfferingDurationReducedEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeOfferingDurationReducedEffect2h2"] = { type = "Spawn", tier = 2, "20% reduced effect of Offerings", "Offering Skills have 80% increased Duration", statOrder = { 3925, 9065 }, level = 78, group = "WeaponTreeOfferingDurationReducedEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, - ["WeaponTreeMinionOnslaughtChanceReducedMovementSpeed1"] = { type = "Spawn", tier = 1, "Minions have 10% reduced Movement Speed", "Minions have 10% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1650, 3247 }, level = 50, group = "WeaponTreeMinionOnslaughtChanceReducedMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeMinionOnslaughtChanceReducedMovementSpeed2"] = { type = "Spawn", tier = 2, "Minions have 10% reduced Movement Speed", "Minions have 15% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1650, 3247 }, level = 81, group = "WeaponTreeMinionOnslaughtChanceReducedMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeMinionOnslaughtChanceReducedMovementSpeed2h1"] = { type = "Spawn", tier = 1, "Minions have 10% reduced Movement Speed", "Minions have 20% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1650, 3247 }, level = 50, group = "WeaponTreeMinionOnslaughtChanceReducedMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeMinionOnslaughtChanceReducedMovementSpeed2h2"] = { type = "Spawn", tier = 2, "Minions have 10% reduced Movement Speed", "Minions have 30% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1650, 3247 }, level = 81, group = "WeaponTreeMinionOnslaughtChanceReducedMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeMinionUnholyMightChanceReducedChaosResistance1"] = { type = "Spawn", tier = 1, "Minions have -7% to Chaos Resistance", "Minions have 10% chance to gain Unholy Might for 4 seconds on Kill", statOrder = { 2787, 3245 }, level = 50, group = "WeaponTreeMinionUnholyMightChanceReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeMinionUnholyMightChanceReducedChaosResistance2"] = { type = "Spawn", tier = 2, "Minions have -7% to Chaos Resistance", "Minions have 15% chance to gain Unholy Might for 4 seconds on Kill", statOrder = { 2787, 3245 }, level = 81, group = "WeaponTreeMinionUnholyMightChanceReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeMinionUnholyMightChanceReducedChaosResistance2h1"] = { type = "Spawn", tier = 1, "Minions have -7% to Chaos Resistance", "Minions have 20% chance to gain Unholy Might for 4 seconds on Kill", statOrder = { 2787, 3245 }, level = 50, group = "WeaponTreeMinionUnholyMightChanceReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeMinionUnholyMightChanceReducedChaosResistance2h2"] = { type = "Spawn", tier = 2, "Minions have -7% to Chaos Resistance", "Minions have 30% chance to gain Unholy Might for 4 seconds on Kill", statOrder = { 2787, 3245 }, level = 81, group = "WeaponTreeMinionUnholyMightChanceReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeMinionBlockReducedSpellBlock1"] = { type = "Spawn", tier = 1, "Minions have +20% Chance to Block Attack Damage", "Minions have -10% Chance to Block Spell Damage", statOrder = { 2777, 2778 }, level = 24, group = "WeaponTreeMinionBlockReducedSpellBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, modTags = { }, }, - ["WeaponTreeMinionBlockReducedSpellBlock2"] = { type = "Spawn", tier = 2, "Minions have +25% Chance to Block Attack Damage", "Minions have -10% Chance to Block Spell Damage", statOrder = { 2777, 2778 }, level = 75, group = "WeaponTreeMinionBlockReducedSpellBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, modTags = { }, }, - ["WeaponTreeMinionBlockReducedSpellBlock2h1"] = { type = "Spawn", tier = 1, "Minions have +30% Chance to Block Attack Damage", "Minions have -15% Chance to Block Spell Damage", statOrder = { 2777, 2778 }, level = 24, group = "WeaponTreeMinionBlockReducedSpellBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, modTags = { }, }, - ["WeaponTreeMinionBlockReducedSpellBlock2h2"] = { type = "Spawn", tier = 2, "Minions have +40% Chance to Block Attack Damage", "Minions have -15% Chance to Block Spell Damage", statOrder = { 2777, 2778 }, level = 75, group = "WeaponTreeMinionBlockReducedSpellBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, modTags = { }, }, - ["WeaponTreeMinionSpellBlockReducedBlock1"] = { type = "Spawn", tier = 1, "Minions have -10% Chance to Block Attack Damage", "Minions have +20% Chance to Block Spell Damage", statOrder = { 2777, 2778 }, level = 24, group = "WeaponTreeMinionSpellBlockReducedBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, modTags = { }, }, - ["WeaponTreeMinionSpellBlockReducedBlock2"] = { type = "Spawn", tier = 2, "Minions have -10% Chance to Block Attack Damage", "Minions have +25% Chance to Block Spell Damage", statOrder = { 2777, 2778 }, level = 75, group = "WeaponTreeMinionSpellBlockReducedBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, modTags = { }, }, - ["WeaponTreeMinionSpellBlockReducedBlock2h1"] = { type = "Spawn", tier = 1, "Minions have -15% Chance to Block Attack Damage", "Minions have +30% Chance to Block Spell Damage", statOrder = { 2777, 2778 }, level = 24, group = "WeaponTreeMinionSpellBlockReducedBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, modTags = { }, }, - ["WeaponTreeMinionSpellBlockReducedBlock2h2"] = { type = "Spawn", tier = 2, "Minions have -15% Chance to Block Attack Damage", "Minions have +40% Chance to Block Spell Damage", statOrder = { 2777, 2778 }, level = 75, group = "WeaponTreeMinionSpellBlockReducedBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, modTags = { }, }, - ["WeaponTreeMinionRecoverLifeOnBlockReducedMaximumLife1"] = { type = "Spawn", tier = 1, "Minions have 10% reduced maximum Life", "Minions Recover 3% of their Life when they Block", statOrder = { 1647, 2930 }, level = 50, group = "WeaponTreeMinionRecoverLifeOnBlockReducedMaximumLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, - ["WeaponTreeMinionRecoverLifeOnBlockReducedMaximumLife2"] = { type = "Spawn", tier = 2, "Minions have 10% reduced maximum Life", "Minions Recover 4% of their Life when they Block", statOrder = { 1647, 2930 }, level = 81, group = "WeaponTreeMinionRecoverLifeOnBlockReducedMaximumLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, - ["WeaponTreeMinionRecoverLifeOnBlockReducedMaximumLife2h1"] = { type = "Spawn", tier = 1, "Minions have 20% reduced maximum Life", "Minions Recover 6% of their Life when they Block", statOrder = { 1647, 2930 }, level = 50, group = "WeaponTreeMinionRecoverLifeOnBlockReducedMaximumLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, - ["WeaponTreeMinionRecoverLifeOnBlockReducedMaximumLife2h2"] = { type = "Spawn", tier = 2, "Minions have 20% reduced maximum Life", "Minions Recover 8% of their Life when they Block", statOrder = { 1647, 2930 }, level = 81, group = "WeaponTreeMinionRecoverLifeOnBlockReducedMaximumLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, - ["WeaponTreeGolemsAllowedReducedGolemBuffEffect1"] = { type = "Spawn", tier = 1, "+1 to maximum number of Summoned Golems", "50% reduced Effect of Buffs granted by your Golems", statOrder = { 3553, 6541 }, level = 40, group = "WeaponTreeGolemsAllowedReducedGolemBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1200, 1200, 0 }, modTags = { }, }, - ["WeaponTreeGolemsAllowedReducedGolemBuffEffect2h1"] = { type = "Spawn", tier = 1, "+2 to maximum number of Summoned Golems", "100% reduced Effect of Buffs granted by your Golems", statOrder = { 3553, 6541 }, level = 77, group = "WeaponTreeGolemsAllowedReducedGolemBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1200, 1200, 0 }, modTags = { }, }, - ["WeaponTreeGolemBuffEffectReducedGolemsAllowed1"] = { type = "Spawn", tier = 1, "-1 to maximum number of Summoned Golems", "75% increased Effect of Buffs granted by your Golems", statOrder = { 3553, 6541 }, level = 40, group = "WeaponTreeGolemBuffEffectReducedGolemsAllowed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1200, 1200, 0 }, modTags = { }, }, - ["WeaponTreeGolemBuffEffectReducedGolemsAllowed2h1"] = { type = "Spawn", tier = 1, "-2 to maximum number of Summoned Golems", "150% increased Effect of Buffs granted by your Golems", statOrder = { 3553, 6541 }, level = 77, group = "WeaponTreeGolemBuffEffectReducedGolemsAllowed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1200, 1200, 0 }, modTags = { }, }, - ["WeaponTreeSupportManaLeech"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Mana Leech", statOrder = { 433 }, level = 38, group = "WeaponTreeSupportManaLeech", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportManaLeech2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Mana Leech", statOrder = { 433 }, level = 38, group = "WeaponTreeSupportManaLeech", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportAdditionalAccuracy"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 15 Additional Accuracy", statOrder = { 400 }, level = 38, group = "WeaponTreeSupportAdditionalAccuracy", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportAdditionalAccuracy2H"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 15 Additional Accuracy", statOrder = { 400 }, level = 38, group = "WeaponTreeSupportAdditionalAccuracy", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportArrogance"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Arrogance", statOrder = { 379 }, level = 38, group = "WeaponTreeSupportArrogance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportArrogance2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Arrogance", statOrder = { 379 }, level = 38, group = "WeaponTreeSupportArrogance", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportFork"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Fork", statOrder = { 406 }, level = 38, group = "WeaponTreeSupportFork", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportFork2H"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Fork", statOrder = { 406 }, level = 38, group = "WeaponTreeSupportFork", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportChanceToPoison"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Chance to Poison", statOrder = { 442 }, level = 38, group = "WeaponTreeSupportChanceToPoison", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportChanceToPoison2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Chance to Poison", statOrder = { 442 }, level = 38, group = "WeaponTreeSupportChanceToPoison", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportLifeLeech"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Life Leech", statOrder = { 403 }, level = 38, group = "WeaponTreeSupportLifeLeech", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportLifeLeech2H"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Life Leech", statOrder = { 403 }, level = 38, group = "WeaponTreeSupportLifeLeech", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportMeleeSplash"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Melee Splash", statOrder = { 391 }, level = 38, group = "WeaponTreeSupportMeleeSplash", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportMeleeSplash2H"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Melee Splash", statOrder = { 391 }, level = 38, group = "WeaponTreeSupportMeleeSplash", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportFasterProjectiles"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Faster Projectiles", statOrder = { 402 }, level = 38, group = "WeaponTreeSupportFasterProjectiles", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportFasterProjectiles2H"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Faster Projectiles", statOrder = { 402 }, level = 38, group = "WeaponTreeSupportFasterProjectiles", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportStun"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Stun", statOrder = { 399 }, level = 38, group = "WeaponTreeSupportStun", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportStun2H"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Stun", statOrder = { 399 }, level = 38, group = "WeaponTreeSupportStun", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportIncreasedArea"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Increased Area of Effect", statOrder = { 202 }, level = 38, group = "WeaponTreeSupportIncreasedArea", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportIncreasedArea2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Increased Area of Effect", statOrder = { 202 }, level = 38, group = "WeaponTreeSupportIncreasedArea", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportKnockback"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Knockback", statOrder = { 422 }, level = 38, group = "WeaponTreeSupportKnockback", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportKnockback2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Knockback", statOrder = { 422 }, level = 38, group = "WeaponTreeSupportKnockback", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportMinionLife"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Minion Life", statOrder = { 423 }, level = 38, group = "WeaponTreeSupportMinionLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSupportMinionLife2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Minion Life", statOrder = { 423 }, level = 38, group = "WeaponTreeSupportMinionLife", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSupportMinionSpeed"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Minion Speed", statOrder = { 427 }, level = 38, group = "WeaponTreeSupportMinionSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSupportMinionSpeed2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Minion Speed", statOrder = { 427 }, level = 38, group = "WeaponTreeSupportMinionSpeed", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSupportLesserMultipleProjectiles"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Lesser Multiple Projectiles", statOrder = { 424 }, level = 38, group = "WeaponTreeSupportLesserMultipleProjectiles", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportLesserMultipleProjectiles2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Lesser Multiple Projectiles", statOrder = { 424 }, level = 38, group = "WeaponTreeSupportLesserMultipleProjectiles", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportBlind"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Blind", statOrder = { 390 }, level = 38, group = "WeaponTreeSupportBlind", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportBlind2H"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Blind", statOrder = { 390 }, level = 38, group = "WeaponTreeSupportBlind", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportBlasphemy"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Blasphemy", statOrder = { 439 }, level = 38, group = "WeaponTreeSupportBlasphemy", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 0, 100, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportBlasphemy2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Blasphemy", statOrder = { 439 }, level = 38, group = "WeaponTreeSupportBlasphemy", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportIronWill"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Iron Will", statOrder = { 421 }, level = 38, group = "WeaponTreeSupportIronWill", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 0, 100, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportIronWill2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Iron Will", statOrder = { 421 }, level = 38, group = "WeaponTreeSupportIronWill", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportFasterCast"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Faster Casting", statOrder = { 420 }, level = 38, group = "WeaponTreeSupportFasterCast", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 0, 100, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportFasterCast2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Faster Casting", statOrder = { 420 }, level = 38, group = "WeaponTreeSupportFasterCast", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportChanceToFlee"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Chance to Flee", statOrder = { 418 }, level = 38, group = "WeaponTreeSupportChanceToFlee", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportChanceToFlee2H"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Chance to Flee", statOrder = { 418 }, level = 38, group = "WeaponTreeSupportChanceToFlee", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportItemRarity"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Item Rarity", statOrder = { 267 }, level = 38, group = "WeaponTreeSupportItemRarity", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportItemRarity2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Item Rarity", statOrder = { 267 }, level = 38, group = "WeaponTreeSupportItemRarity", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportChanceToIgnite"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Combustion", statOrder = { 219 }, level = 38, group = "WeaponTreeSupportChanceToIgnite", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportChanceToIgnite2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Combustion", statOrder = { 219 }, level = 38, group = "WeaponTreeSupportChanceToIgnite", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportLifeGainOnHit"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 15 Life Gain On Hit", statOrder = { 268 }, level = 38, group = "WeaponTreeSupportLifeGainOnHit", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportLifeGainOnHit2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 15 Life Gain On Hit", statOrder = { 268 }, level = 38, group = "WeaponTreeSupportLifeGainOnHit", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportCullingStrike"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Culling Strike", statOrder = { 224 }, level = 38, group = "WeaponTreeSupportCullingStrike", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportCullingStrike2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Culling Strike", statOrder = { 224 }, level = 38, group = "WeaponTreeSupportCullingStrike", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportPointBlank"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Point Blank", statOrder = { 289 }, level = 38, group = "WeaponTreeSupportPointBlank", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportPointBlank2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Point Blank", statOrder = { 289 }, level = 38, group = "WeaponTreeSupportPointBlank", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportIronGrip"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Iron Grip", statOrder = { 265 }, level = 38, group = "WeaponTreeSupportIronGrip", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportIronGrip2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Iron Grip", statOrder = { 265 }, level = 38, group = "WeaponTreeSupportIronGrip", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportChain"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Chain", statOrder = { 217 }, level = 38, group = "WeaponTreeSupportChain", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportChain2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Chain", statOrder = { 217 }, level = 38, group = "WeaponTreeSupportChain", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportElementalArmy"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Elemental Army Support", statOrder = { 316 }, level = 38, group = "WeaponTreeSupportElementalArmy", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSupportElementalArmy2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Elemental Army Support", statOrder = { 316 }, level = 38, group = "WeaponTreeSupportElementalArmy", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSupportEmpower"] = { type = "MergeOnly", tier = 1, "Socketed Gems are Supported by Level 3 Empower", statOrder = { 235 }, level = 38, group = "WeaponTreeSupportEmpower", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSupportEmpower2H"] = { type = "MergeOnly", tier = 1, "Socketed Gems are Supported by Level 3 Empower", statOrder = { 235 }, level = 38, group = "WeaponTreeSupportEmpower", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeSupportSlowerProjectiles"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Slower Projectiles", statOrder = { 309 }, level = 38, group = "WeaponTreeSupportSlowerProjectiles", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportSlowerProjectiles2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Slower Projectiles", statOrder = { 309 }, level = 38, group = "WeaponTreeSupportSlowerProjectiles", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportLessDuration"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Less Duration", statOrder = { 299 }, level = 38, group = "WeaponTreeSupportLessDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportLessDuration2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Less Duration", statOrder = { 299 }, level = 38, group = "WeaponTreeSupportLessDuration", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportEnhance"] = { type = "MergeOnly", tier = 1, "Socketed Gems are Supported by Level 3 Enhance", statOrder = { 237 }, level = 38, group = "WeaponTreeSupportEnhance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSupportEnhance2H"] = { type = "MergeOnly", tier = 1, "Socketed Gems are Supported by Level 3 Enhance", statOrder = { 237 }, level = 38, group = "WeaponTreeSupportEnhance", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeSupportEnlighten"] = { type = "MergeOnly", tier = 1, "Socketed Gems are Supported by Level 3 Enlighten", statOrder = { 238 }, level = 38, group = "WeaponTreeSupportEnlighten", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSupportEnlighten2H"] = { type = "MergeOnly", tier = 1, "Socketed Gems are Supported by Level 3 Enlighten", statOrder = { 238 }, level = 38, group = "WeaponTreeSupportEnlighten", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WeaponTreeSupportPhysicalToLightning"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Physical To Lightning", statOrder = { 287 }, level = 38, group = "WeaponTreeSupportPhysicalToLightning", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportPhysicalToLightning2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Physical To Lightning", statOrder = { 287 }, level = 38, group = "WeaponTreeSupportPhysicalToLightning", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportAdvancedTraps"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Advanced Traps", statOrder = { 320 }, level = 38, group = "WeaponTreeSupportAdvancedTraps", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportAdvancedTraps2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Advanced Traps", statOrder = { 320 }, level = 38, group = "WeaponTreeSupportAdvancedTraps", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportIgniteProliferation"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Ignite Proliferation", statOrder = { 256 }, level = 38, group = "WeaponTreeSupportIgniteProliferation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportIgniteProliferation2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Ignite Proliferation", statOrder = { 256 }, level = 38, group = "WeaponTreeSupportIgniteProliferation", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportChanceToBleed"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Chance To Bleed", statOrder = { 218 }, level = 38, group = "WeaponTreeSupportChanceToBleed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportChanceToBleed2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Chance To Bleed", statOrder = { 218 }, level = 38, group = "WeaponTreeSupportChanceToBleed", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportDecay"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 15 Decay", statOrder = { 229 }, level = 38, group = "WeaponTreeSupportDecay", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportDecay2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 15 Decay", statOrder = { 229 }, level = 38, group = "WeaponTreeSupportDecay", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportMaim"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Maim", statOrder = { 272 }, level = 38, group = "WeaponTreeSupportMaim", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportMaim2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Maim", statOrder = { 272 }, level = 38, group = "WeaponTreeSupportMaim", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportOnslaught"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Momentum", statOrder = { 282 }, level = 38, group = "WeaponTreeSupportOnslaught", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportOnslaught2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Momentum", statOrder = { 282 }, level = 38, group = "WeaponTreeSupportOnslaught", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportArcaneSurge"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Arcane Surge", statOrder = { 203 }, level = 38, group = "WeaponTreeSupportArcaneSurge", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 0, 100, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportArcaneSurge2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Arcane Surge", statOrder = { 203 }, level = 38, group = "WeaponTreeSupportArcaneSurge", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportArrowNova"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Arrow Nova", statOrder = { 295 }, level = 38, group = "WeaponTreeSupportArrowNova", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["WeaponTreeSupportArrowNova2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Arrow Nova", statOrder = { 295 }, level = 38, group = "WeaponTreeSupportArrowNova", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "bow", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportPierce"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Pierce", statOrder = { 428 }, level = 38, group = "WeaponTreeSupportPierce", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportPierce2H"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Pierce", statOrder = { 428 }, level = 38, group = "WeaponTreeSupportPierce", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportGenerosity"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Generosity", statOrder = { 415 }, level = 38, group = "WeaponTreeSupportGenerosity", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportGenerosity2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Generosity", statOrder = { 415 }, level = 38, group = "WeaponTreeSupportGenerosity", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportFortify"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Fortify", statOrder = { 416 }, level = 38, group = "WeaponTreeSupportFortify", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportFortify2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Fortify", statOrder = { 416 }, level = 38, group = "WeaponTreeSupportFortify", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportElementalProliferation"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Elemental Proliferation", statOrder = { 386 }, level = 38, group = "WeaponTreeSupportElementalProliferation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportElementalProliferation2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Elemental Proliferation", statOrder = { 386 }, level = 38, group = "WeaponTreeSupportElementalProliferation", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportVolley"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Volley", statOrder = { 285 }, level = 38, group = "WeaponTreeSupportVolley", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportVolley2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Volley", statOrder = { 285 }, level = 38, group = "WeaponTreeSupportVolley", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportSpellCascade"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Spell Cascade", statOrder = { 311 }, level = 38, group = "WeaponTreeSupportSpellCascade", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 0, 100, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportSpellCascade2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Spell Cascade", statOrder = { 311 }, level = 38, group = "WeaponTreeSupportSpellCascade", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportAncestralCall"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Ancestral Call", statOrder = { 314 }, level = 38, group = "WeaponTreeSupportAncestralCall", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportAncestralCall2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Ancestral Call", statOrder = { 314 }, level = 38, group = "WeaponTreeSupportAncestralCall", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportSummonGhostOnKill"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 15 Summon Phantasm", statOrder = { 317 }, level = 38, group = "WeaponTreeSupportSummonGhostOnKill", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSupportSummonGhostOnKill2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 15 Summon Phantasm", statOrder = { 317 }, level = 38, group = "WeaponTreeSupportSummonGhostOnKill", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSupportWitheringTouch"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Withering Touch", statOrder = { 328 }, level = 38, group = "WeaponTreeSupportWitheringTouch", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportWitheringTouch2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Withering Touch", statOrder = { 328 }, level = 38, group = "WeaponTreeSupportWitheringTouch", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportEnergyLeech"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Energy Leech", statOrder = { 236 }, level = 38, group = "WeaponTreeSupportEnergyLeech", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportEnergyLeech2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Energy Leech", statOrder = { 236 }, level = 38, group = "WeaponTreeSupportEnergyLeech", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportIntensify"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Intensify", statOrder = { 312 }, level = 38, group = "WeaponTreeSupportIntensify", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 0, 100, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportIntensify2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Intensify", statOrder = { 312 }, level = 38, group = "WeaponTreeSupportIntensify", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportImpale"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Impale", statOrder = { 258 }, level = 38, group = "WeaponTreeSupportImpale", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportImpale2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Impale", statOrder = { 258 }, level = 38, group = "WeaponTreeSupportImpale", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportRage"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Rage", statOrder = { 294 }, level = 38, group = "WeaponTreeSupportRage", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportRage2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Rage", statOrder = { 294 }, level = 38, group = "WeaponTreeSupportRage", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportShockwave"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Shockwave", statOrder = { 308 }, level = 38, group = "WeaponTreeSupportShockwave", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportShockwave2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Shockwave", statOrder = { 308 }, level = 38, group = "WeaponTreeSupportShockwave", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "staff", "mace", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportFeedingFrenzy"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Feeding Frenzy", statOrder = { 241 }, level = 38, group = "WeaponTreeSupportFeedingFrenzy", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSupportFeedingFrenzy2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Feeding Frenzy", statOrder = { 241 }, level = 38, group = "WeaponTreeSupportFeedingFrenzy", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSupportPredator"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Predator", statOrder = { 228 }, level = 38, group = "WeaponTreeSupportPredator", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSupportPredator2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Predator", statOrder = { 228 }, level = 38, group = "WeaponTreeSupportPredator", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSupportInfernalLegion"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 15 Infernal Legion", statOrder = { 263 }, level = 38, group = "WeaponTreeSupportInfernalLegion", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSupportInfernalLegion2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 15 Infernal Legion", statOrder = { 263 }, level = 38, group = "WeaponTreeSupportInfernalLegion", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSupportSwiftAssembly"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Swift Assembly", statOrder = { 318 }, level = 38, group = "WeaponTreeSupportSwiftAssembly", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportSwiftAssembly2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Swift Assembly", statOrder = { 318 }, level = 38, group = "WeaponTreeSupportSwiftAssembly", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportSecondWind"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Second Wind", statOrder = { 307 }, level = 38, group = "WeaponTreeSupportSecondWind", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportSecondWind2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Second Wind", statOrder = { 307 }, level = 38, group = "WeaponTreeSupportSecondWind", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportUrgentOrders"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Urgent Orders", statOrder = { 325 }, level = 38, group = "WeaponTreeSupportUrgentOrders", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportUrgentOrders2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Urgent Orders", statOrder = { 325 }, level = 38, group = "WeaponTreeSupportUrgentOrders", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportSwiftBrand"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Swiftbrand", statOrder = { 319 }, level = 38, group = "WeaponTreeSupportSwiftBrand", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 0, 100, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportSwiftBrand2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Swiftbrand", statOrder = { 319 }, level = 38, group = "WeaponTreeSupportSwiftBrand", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportImpendingDoom"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 15 Impending Doom", statOrder = { 259 }, level = 38, group = "WeaponTreeSupportImpendingDoom", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 0, 100, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportImpendingDoom2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 15 Impending Doom", statOrder = { 259 }, level = 38, group = "WeaponTreeSupportImpendingDoom", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportLifetap"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Lifetap", statOrder = { 269 }, level = 38, group = "WeaponTreeSupportLifetap", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportLifetap2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Lifetap", statOrder = { 269 }, level = 38, group = "WeaponTreeSupportLifetap", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportBehead"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Behead", statOrder = { 208 }, level = 38, group = "WeaponTreeSupportBehead", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportBehead2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Behead", statOrder = { 208 }, level = 38, group = "WeaponTreeSupportBehead", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportDivineBlessing"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Divine Blessing", statOrder = { 205 }, level = 38, group = "WeaponTreeSupportDivineBlessing", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportDivineBlessing2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Divine Blessing", statOrder = { 205 }, level = 38, group = "WeaponTreeSupportDivineBlessing", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportEternalBlessing"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Eternal Blessing", statOrder = { 239 }, level = 38, group = "WeaponTreeSupportEternalBlessing", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportEternalBlessing2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Eternal Blessing", statOrder = { 239 }, level = 38, group = "WeaponTreeSupportEternalBlessing", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportOvercharge"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Overcharge", statOrder = { 283 }, level = 38, group = "WeaponTreeSupportOvercharge", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportOvercharge2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Overcharge", statOrder = { 283 }, level = 38, group = "WeaponTreeSupportOvercharge", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportCursedGround"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Cursed Ground", statOrder = { 226 }, level = 38, group = "WeaponTreeSupportCursedGround", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 0, 100, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportCursedGround2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Cursed Ground", statOrder = { 226 }, level = 38, group = "WeaponTreeSupportCursedGround", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportHexBloom"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Hex Bloom", statOrder = { 255 }, level = 38, group = "WeaponTreeSupportHexBloom", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 0, 100, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportHexBloom2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Hex Bloom", statOrder = { 255 }, level = 38, group = "WeaponTreeSupportHexBloom", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportPinpoint"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Pinpoint", statOrder = { 288 }, level = 38, group = "WeaponTreeSupportPinpoint", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 0, 100, 100, 100, 0 }, modTags = { }, }, - ["WeaponTreeSupportPinpoint2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Pinpoint", statOrder = { 288 }, level = 38, group = "WeaponTreeSupportPinpoint", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0, 100, 0 }, modTags = { }, }, - ["WeaponTreeSkillTornadoShotSplitArrow"] = { type = "Spawn", tier = 1, "Trigger Level 20 Tornado when you Attack with Split Arrow or Tornado Shot", statOrder = { 5179 }, level = 1, group = "WeaponTreeSkillTornadoShotSplitArrow", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillMirrorArrowBlinkArrow"] = { type = "Spawn", tier = 1, "Trigger Level 20 Blink Arrow when you Attack with Mirror Arrow", "Trigger Level 20 Mirror Arrow when you Attack with Blink Arrow", statOrder = { 5158, 5164 }, level = 1, group = "WeaponTreeSkillMirrorArrowBlinkArrow", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillCleaveReave"] = { type = "Spawn", tier = 1, "Trigger Level 20 Summon Spectral Wolf on Critical Strike with Cleave or Reave", statOrder = { 5178 }, level = 1, group = "WeaponTreeSkillCleaveReave", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "sword", "axe", "dagger", "claw", "shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillBodySwapDetonateDead"] = { type = "Spawn", tier = 1, "Trigger Level 20 Bodyswap when you Explode a Corpse with Detonate Dead", statOrder = { 5159 }, level = 1, group = "WeaponTreeSkillBodySwapDetonateDead", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 0, 0, 0, 1000, 1000, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillGlacialCascadeIceNova"] = { type = "Spawn", tier = 1, "Trigger Level 20 Ice Nova from the Final Burst location of Glacial Cascades you Cast", statOrder = { 5163 }, level = 1, group = "WeaponTreeSkillGlacialCascadeIceNova", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 0, 0, 0, 1000, 1000, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillLaceratePerforate"] = { type = "Spawn", tier = 1, "Trigger Level 20 Stance Swap when you Attack with Perforate or Lacerate", statOrder = { 5177 }, level = 1, group = "WeaponTreeSkillLaceratePerforate", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "sword", "axe", "shield", "default", }, weightVal = { 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillStormBurstDivineIre"] = { type = "Spawn", tier = 1, "Trigger Level 20 Gravity Sphere when you Cast Storm Burst or Divine Ire", statOrder = { 5161 }, level = 1, group = "WeaponTreeSkillStormBurstDivineIre", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 0, 0, 0, 1000, 1000, 500, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillHeavyStrikeBoneshatter"] = { type = "Spawn", tier = 1, "Trigger Level 20 Bone Corpses when you Stun an Enemy with Heavy Strike or Boneshatter", statOrder = { 5160 }, level = 1, group = "WeaponTreeSkillHeavyStrikeBoneshatter", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "sword", "staff", "sceptre", "mace", "axe", "shield", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillBladeFlurryChargedDash"] = { type = "Spawn", tier = 1, "Trigger a Socketed Spell every second while Channelling Blade Flurry or Charged Dash", statOrder = { 5157 }, level = 1, group = "WeaponTreeSkillBladeFlurryChargedDash", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "sword", "dagger", "claw", "weapon", "shield", "default", }, weightVal = { 0, 1000, 1000, 1000, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillBurningArrowExplosiveArrow"] = { type = "Spawn", tier = 1, "Killing Blows with Burning Arrow or Explosive Arrow Shatter Enemies as though Frozen", statOrder = { 5089 }, level = 1, group = "WeaponTreeSkillBurningArrowExplosiveArrow", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillBlastRainArtilleryBallista"] = { type = "Spawn", tier = 1, "All Damage from Blast Rain and Artillery Ballista Hits can Poison", "25% chance for Poisons inflicted with Blast Rain or Artillery Ballista to deal 100% more Damage", statOrder = { 4908, 4909 }, level = 1, group = "WeaponTreeSkillBlastRainArtilleryBallista", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillShrapnelBallistaSiegeBallista"] = { type = "Spawn", tier = 1, "50% increased Siege and Shrapnel Ballista attack speed per maximum Summoned Totem", "45% reduced Shrapnel Ballista attack speed per Shrapnel Ballista Totem", "45% reduced Siege Ballista attack speed per Siege Ballista Totem", statOrder = { 4155, 9514, 9519 }, level = 1, group = "WeaponTreeSkillShrapnelBallistaSiegeBallista", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillLightningArrowIceShot"] = { type = "Spawn", tier = 1, "All Damage from Lightning Arrow and Ice Shot Hits can Ignite", "25% chance for Ignites inflicted with Lightning Arrow or Ice Shot to deal 100% more Damage", statOrder = { 7048, 7049 }, level = 1, group = "WeaponTreeSkillLightningArrowIceShot", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillGalvanicArrowStormRain"] = { type = "Spawn", tier = 1, "Galvanic Arrow and Storm Rain Repeat an additional time when used by a Mine", statOrder = { 6506 }, level = 1, group = "WeaponTreeSkillGalvanicArrowStormRain", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillElementalHitWildStrike"] = { type = "Spawn", tier = 1, "Always inflict Scorch, Brittle and Sapped with Elemental Hit and Wild Strike Hits", "Cannot Ignite, Chill, Freeze or Shock", statOrder = { 6013, 8999 }, level = 1, group = "WeaponTreeSkillElementalHitWildStrike", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "shield", "weapon", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillBarrageFrenzy"] = { type = "Spawn", tier = 1, "Barrage and Frenzy have 25% increased Critical Strike Chance per Endurance Charge", statOrder = { 4799 }, level = 1, group = "WeaponTreeSkillBarrageFrenzy", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "shield", "one_hand_weapon", "default", }, weightVal = { 1000, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillBarrageFrenzy2H"] = { type = "Spawn", tier = 1, "Barrage and Frenzy have 40% increased Critical Strike Chance per Endurance Charge", statOrder = { 4799 }, level = 1, group = "WeaponTreeSkillBarrageFrenzy", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillToxicRainRainofArrows"] = { type = "Spawn", tier = 1, "Rain of Arrows and Toxic Rain deal 300% more Damage with Bleeding", "-60% of Toxic Rain Physical Damage Converted to Chaos Damage", statOrder = { 9310, 9889 }, level = 1, group = "WeaponTreeSkillToxicRainRainofArrows", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillCausticArrowScourgeArrow"] = { type = "Spawn", tier = 1, "Caustic Arrow and Scourge Arrow fire 25% more projectiles", statOrder = { 5182 }, level = 1, group = "WeaponTreeSkillCausticArrowScourgeArrow", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillPunctureEnsnaringArrow"] = { type = "Spawn", tier = 1, "Enemies you Kill with Puncture or Ensnaring Arrow Hits Explode, dealing 10% of their Life as Physical Damage", statOrder = { 9257 }, level = 1, group = "WeaponTreeSkillPunctureEnsnaringArrow", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "bow", "dagger", "claw", "sword", "shield", "default", }, weightVal = { 1000, 500, 500, 500, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillFrostBladesLightningStrike"] = { type = "Spawn", tier = 1, "All Damage from Lightning Strike and Frost Blades Hits can Ignite", "15% chance for Ignites inflicted with Lightning Strike or Frost Blades to deal 100% more Damage", statOrder = { 7082, 7083 }, level = 1, group = "WeaponTreeSkillFrostBladesLightningStrike", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "shield", "one_hand_weapon", "default", }, weightVal = { 0, 500, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillFrostBladesLightningStrike2H"] = { type = "Spawn", tier = 1, "All Damage from Lightning Strike and Frost Blades Hits can Ignite", "25% chance for Ignites inflicted with Lightning Strike or Frost Blades to deal 100% more Damage", statOrder = { 7082, 7083 }, level = 1, group = "WeaponTreeSkillFrostBladesLightningStrike", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillViperStrikePestilentStrike"] = { type = "Spawn", tier = 1, "Viper Strike and Pestilent Strike deal 25% increased Attack Damage per Frenzy Charge", statOrder = { 9997 }, level = 1, group = "WeaponTreeSkillViperStrikePestilentStrike", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "sword", "claw", "dagger", "shield", "default", }, weightVal = { 0, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillViperStrikePestilentStrike2H"] = { type = "Spawn", tier = 1, "Viper Strike and Pestilent Strike deal 40% increased Attack Damage per Frenzy Charge", statOrder = { 9997 }, level = 1, group = "WeaponTreeSkillViperStrikePestilentStrike", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "sword", "claw", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillDominatingBlowAbsolution"] = { type = "Spawn", tier = 1, "Increases and Reductions to Minion Damage also affect Dominating Blow and Absolution at 150% of their value", statOrder = { 5949 }, level = 1, group = "WeaponTreeSkillDominatingBlowAbsolution", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "bow", "shield", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "weapon", "default", }, weightVal = { 0, 500, 1000, 1000, 250, 0 }, modTags = { }, }, - ["WeaponTreeSkillVolcanicFissureMoltenStrike"] = { type = "Spawn", tier = 1, "Vaal Volcanic Fissure and Vaal Molten Strike have 40% reduced Soul Gain Prevention Duration", statOrder = { 9994 }, level = 1, group = "WeaponTreeSkillVolcanicFissureMoltenStrike", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "shield", "one_hand_weapon", "default", }, weightVal = { 0, 500, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillVolcanicFissureMoltenStrike2H"] = { type = "Spawn", tier = 1, "Vaal Volcanic Fissure and Vaal Molten Strike have 80% reduced Soul Gain Prevention Duration", statOrder = { 9994 }, level = 1, group = "WeaponTreeSkillVolcanicFissureMoltenStrike", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillStaticStrikeSmite"] = { type = "Spawn", tier = 1, "Killing Blows from Smite and Static Strike Consume corpses to Recover 5% of Life", statOrder = { 9570 }, level = 1, group = "WeaponTreeSkillStaticStrikeSmite", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "shield", "weapon", "default", }, weightVal = { 0, 500, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillVigilantStrikeFlickerStrike"] = { type = "Spawn", tier = 1, "Flicker Strike and Vigilant Strike's Cooldown can be bypassed by Power Charges instead of Frenzy or Endurance Charges", statOrder = { 9996 }, level = 1, group = "WeaponTreeSkillVigilantStrikeFlickerStrike", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "shield", "weapon", "default", }, weightVal = { 0, 500, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillDoubleStrikeDualStrike"] = { type = "Spawn", tier = 1, "50% chance to gain Soul Eater for 20 seconds on Killing Blow against Rare and Unique Enemies with Double Strike or Dual Strike", statOrder = { 5953 }, level = 1, group = "WeaponTreeSkillDoubleStrikeDualStrike", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "shield", "one_hand_weapon", "default", }, weightVal = { 0, 500, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillDoubleStrikeDualStrike2H"] = { type = "Spawn", tier = 1, "Gain Soul Eater for 20 seconds on Killing Blow against Rare and Unique Enemies with Double Strike or Dual Strike", statOrder = { 5953 }, level = 1, group = "WeaponTreeSkillDoubleStrikeDualStrike", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillIceCrashGlacialHammer"] = { type = "Spawn", tier = 1, "Enemies Frozen by Ice Crash or Glacial Hammer become Covered in Frost for 4 seconds as they Unfreeze", statOrder = { 6814 }, level = 1, group = "WeaponTreeSkillIceCrashGlacialHammer", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "shield", "sword", "mace", "sceptre", "axe", "staff", "default", }, weightVal = { 500, 500, 1000, 1000, 500, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillEarthquakeEarthshatter"] = { type = "Spawn", tier = 1, "Killing Blows with Earthquake and Earthshatter Shatter Enemies as though Frozen", statOrder = { 5975 }, level = 1, group = "WeaponTreeSkillEarthquakeEarthshatter", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "shield", "mace", "sceptre", "axe", "staff", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillGroundSlamSunder"] = { type = "Spawn", tier = 1, "Poisons inflicted by Sunder or Ground Slam on non-Poisoned Enemies deal 400% increased Damage", statOrder = { 6559 }, level = 1, group = "WeaponTreeSkillGroundSlamSunder", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "shield", "mace", "sceptre", "axe", "staff", "default", }, weightVal = { 0, 500, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillGroundSlamSunder2H"] = { type = "Spawn", tier = 1, "Poisons inflicted by Sunder or Ground Slam on non-Poisoned Enemies deal 600% increased Damage", statOrder = { 6559 }, level = 1, group = "WeaponTreeSkillGroundSlamSunder", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "mace", "sceptre", "axe", "staff", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillTectonicSlamInfernalBlow"] = { type = "Spawn", tier = 1, "Tectonic Slam and Infernal Blow deal 1% increased Attack Damage per 700 Armour", statOrder = { 9838 }, level = 1, group = "WeaponTreeSkillTectonicSlamInfernalBlow", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "shield", "sword", "mace", "sceptre", "axe", "staff", "default", }, weightVal = { 0, 500, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillTectonicSlamInfernalBlow2H"] = { type = "Spawn", tier = 1, "Tectonic Slam and Infernal Blow deal 1% increased Attack Damage per 450 Armour", statOrder = { 9837 }, level = 1, group = "WeaponTreeSkillTectonicSlamInfernalBlow2H", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "sword", "mace", "sceptre", "axe", "staff", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillRageVortexBladestorm"] = { type = "Spawn", tier = 1, "Enemies in your Rage Vortex or Bladestorms are Hindered and Unnerved", statOrder = { 4904 }, level = 1, group = "WeaponTreeSkillRageVortexBladestorm", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "sword", "axe", "shield", "default", }, weightVal = { 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillShieldCrushSpectralShieldThrow"] = { type = "Spawn", tier = 1, "Shield Crush and Spectral Shield Throw do not gain Added Physical Damage based on Armour or Evasion on shield", "Shield Crush and Spectral Shield Throw gains 30 to 50 Added Lightning Damage per 15 Energy Shield on Shield", "100% of Shield Crush and Spectral Shield Throw Physical Damage Converted to Lightning Damage", statOrder = { 9485, 9486, 9487 }, level = 1, group = "WeaponTreeSkillShieldCrushSpectralShieldThrow", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillShieldCrushSpectralShieldThrowUniqueHelmet"] = { type = "Spawn", tier = 1, "Shield Crush and Spectral Shield Throw do not gain Added Physical Damage based on Armour or Evasion on shield", "Shield Crush and Spectral Shield Throw gains 15 to 25 Added Lightning Damage per 15 Energy Shield on Shield", "100% of Shield Crush and Spectral Shield Throw Physical Damage Converted to Lightning Damage", statOrder = { 9485, 9486, 9487 }, level = 1, group = "WeaponTreeSkillShieldCrushSpectralShieldThrow", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "crucible_unique_helmet", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillCycloneSweep"] = { type = "Spawn", tier = 1, "Knockback direction is reversed with Cyclone and Sweep", "Knock Enemies Back on hit with Cyclone and Sweep", statOrder = { 5714, 5715 }, level = 1, group = "WeaponTreeSkillCycloneSweep", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "shield", "weapon", "default", }, weightVal = { 0, 500, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillCobraLashVenomGyre"] = { type = "Spawn", tier = 1, "25% chance for Bleeding inflicted with Cobra Lash or Venom Gyre to deal 100% more Damage", "Cobra Lash and Venom Gyre have -60% of Physical Damage Converted to Chaos Damage", statOrder = { 5498, 5499 }, level = 1, group = "WeaponTreeSkillCobraLashVenomGyre", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "claw", "dagger", "shield", "default", }, weightVal = { 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillPoisonousConcoctionExplosiveConcoction"] = { type = "Spawn", tier = 1, "If Poisonous Concoction or Explosive Concoction consume Charges from a Sulphur Flask, Enemies Killed by their Hits have 40% chance to Explode, dealing 10% of their Life as Physical Damage", "Poisonous Concoction and Explosive Concoction also consume Charges from 1 Sulphur Flask, if possible", statOrder = { 6311, 7484 }, level = 1, group = "WeaponTreeSkillPoisonousConcoctionExplosiveConcoction", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillPoisonousConcoctionExplosiveConcoctionUniqueHelmet"] = { type = "Spawn", tier = 1, "If Poisonous Concoction or Explosive Concoction consume Charges from a Sulphur Flask, Enemies Killed by their Hits have 25% chance to Explode, dealing 10% of their Life as Physical Damage", "Poisonous Concoction and Explosive Concoction also consume Charges from 1 Sulphur Flask, if possible", statOrder = { 6311, 7484 }, level = 1, group = "WeaponTreeSkillPoisonousConcoctionExplosiveConcoction", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "crucible_unique_helmet", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillSplittingSteelLancingSteelShatteringSteel"] = { type = "Spawn", tier = 1, "Recover 1% of Energy Shield per Steel Shard Consumed", statOrder = { 9346 }, level = 1, group = "WeaponTreeSkillSplittingSteelLancingSteelShatteringSteel", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "sword", "axe", "shield", "default", }, weightVal = { 0, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillSplittingSteelLancingSteelShatteringSteel2H"] = { type = "Spawn", tier = 1, "Recover 2% of Energy Shield per Steel Shard Consumed", statOrder = { 9346 }, level = 1, group = "WeaponTreeSkillSplittingSteelLancingSteelShatteringSteel", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "sword", "axe", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillSpectralHelixSpectralThrow"] = { type = "Spawn", tier = 1, "Each Projectile from Spectral Helix or Spectral Throw has", "between 40% more and 40% less Projectile Speed at random", statOrder = { 9596, 9596.1 }, level = 1, group = "WeaponTreeSkillSpectralHelixSpectralThrow", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillSpectralHelixSpectralThrow2H"] = { type = "Spawn", tier = 1, "Each Projectile from Spectral Helix or Spectral Throw has", "between 75% more and 75% less Projectile Speed at random", statOrder = { 9596, 9596.1 }, level = 1, group = "WeaponTreeSkillSpectralHelixSpectralThrow", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillChainHookShieldCharge"] = { type = "Spawn", tier = 1, "Shield Charge and Chain Hook have 2% increased Attack Speed per 10 Rampage Kills", statOrder = { 5186 }, level = 1, group = "WeaponTreeSkillChainHookShieldCharge", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "sword", "axe", "mace", "sceptre", "shield", "default", }, weightVal = { 0, 500, 500, 500, 500, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillConsecratedPathPurifyingFlame"] = { type = "Spawn", tier = 1, "Consecrated Path and Purifying Flame create Profane Ground instead of Consecrated Ground", "100% of Consecrated Path and Purifying Flame Fire Damage Converted to Chaos Damage", statOrder = { 5564, 5565 }, level = 1, group = "WeaponTreeSkillConsecratedPathPurifyingFlame", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "bow", "claw", "weapon_can_roll_minion_modifiers", "attack_dagger", "shield", "weapon", "default", }, weightVal = { 1000, 0, 0, 0, 0, 500, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillFrozenLegionGeneralsCry"] = { type = "Spawn", tier = 1, "100% more Frozen Legion and General's Cry Cooldown Recovery Rate", "Frozen Sweep deals 30% less Damage", "General's Cry has -2 to maximum number of Mirage Warriors", statOrder = { 6355, 6359, 6513 }, level = 1, group = "WeaponTreeSkillFrozenLegionGeneralsCry", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillAncestralProtectorAncestralWarchief"] = { type = "Spawn", tier = 1, "20% of Damage Dealt by Ancestor Totems Leeched to you as Energy Shield", statOrder = { 4494 }, level = 1, group = "WeaponTreeSkillAncestralProtectorAncestralWarchief", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "shield", "one_hand_weapon", "default", }, weightVal = { 0, 500, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillAncestralProtectorAncestralWarchief2H"] = { type = "Spawn", tier = 1, "40% of Damage Dealt by Ancestor Totems Leeched to you as Energy Shield", statOrder = { 4494 }, level = 1, group = "WeaponTreeSkillAncestralProtectorAncestralWarchief", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillKineticBoltKineticBlastPowerSiphon"] = { type = "Spawn", tier = 1, "Kinetic Bolt, Kinetic Blast and Power Siphon have 20% reduced Enemy Stun Threshold", "100% chance for Kinetic Bolt, Kinetic Blast and Power Siphon to double Stun Duration", statOrder = { 6933, 6934 }, level = 1, group = "WeaponTreeSkillKineticBoltKineticBlastPowerSiphon", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "wand", "shield", "default", }, weightVal = { 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillExsanguinateReap"] = { type = "Spawn", tier = 1, "100% of Exsanguinate and Reap Physical Damage Converted to Fire Damage", "Exsanguinate debuffs deal Fire Damage per second instead of Physical Damage per second", "Reap debuffs deal Fire Damage per second instead of Physical Damage per second", statOrder = { 6198, 6200, 9326 }, level = 1, group = "WeaponTreeSkillExsanguinateReap", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 0, 0, 0, 1000, 1000, 500, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillFirestormBladefall"] = { type = "Spawn", tier = 1, "15% chance for Firestorm and Bladefall to affect the same area again when they finish", statOrder = { 6264 }, level = 1, group = "WeaponTreeSkillFirestormBladefall", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillFirestormBladefall2H"] = { type = "Spawn", tier = 1, "25% chance for Firestorm and Bladefall to affect the same area again when they finish", statOrder = { 6264 }, level = 1, group = "WeaponTreeSkillFirestormBladefall", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillEtherealKnives"] = { type = "Spawn", tier = 1, "Ethereal Knives requires 1 fewer Projectile Fired to leave each Lingering Blade", statOrder = { 6148 }, level = 1, group = "WeaponTreeSkillEtherealKnives", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillEtherealKnives2H"] = { type = "Spawn", tier = 1, "Ethereal Knives requires 2 fewer Projectiles Fired to leave each Lingering Blade", statOrder = { 6148 }, level = 1, group = "WeaponTreeSkillEtherealKnives", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillFireballRollingMagma"] = { type = "Spawn", tier = 1, "Fireball and Rolling Magma have 100% more Area of Effect", "Modifiers to number of Projectiles do not apply to Fireball and Rolling Magma", statOrder = { 6260, 6261 }, level = 1, group = "WeaponTreeSkillFireballRollingMagma", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillFireballRollingMagma2H"] = { type = "Spawn", tier = 1, "Fireball and Rolling Magma have 200% more Area of Effect", "Modifiers to number of Projectiles do not apply to Fireball and Rolling Magma", statOrder = { 6260, 6261 }, level = 1, group = "WeaponTreeSkillFireballRollingMagma", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillFreezingPulseEyeOfWinter"] = { type = "Spawn", tier = 1, "All Damage from Hits with Freezing Pulse and Eye of Winter can Poison", "15% chance for Poisons inflicted with Freezing Pulse and Eye of Winter to deal 100% more Damage", statOrder = { 6335, 6336 }, level = 1, group = "WeaponTreeSkillFreezingPulseEyeOfWinter", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillFreezingPulseEyeOfWinter2H"] = { type = "Spawn", tier = 1, "All Damage from Hits with Freezing Pulse and Eye of Winter can Poison", "25% chance for Poisons inflicted with Freezing Pulse and Eye of Winter to deal 100% more Damage", statOrder = { 6335, 6336 }, level = 1, group = "WeaponTreeSkillFreezingPulseEyeOfWinter", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillBladeVortexBladeBlast"] = { type = "Spawn", tier = 1, "30% chance for Blade Vortex and Blade Blast to Impale Enemies on Hit", "Blade Vortex and Blade Blast deal no Non-Physical Damage", statOrder = { 4900, 4901 }, level = 1, group = "WeaponTreeSkillBladeVortexBladeBlast", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillBladeVortexBladeBlast2H"] = { type = "Spawn", tier = 1, "60% chance for Blade Vortex and Blade Blast to Impale Enemies on Hit", "Blade Vortex and Blade Blast deal no Non-Physical Damage", statOrder = { 4900, 4901 }, level = 1, group = "WeaponTreeSkillBladeVortexBladeBlast", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillShockNovaStormCall"] = { type = "Spawn", tier = 1, "All Damage from Shock Nova and Storm Call Hits can Ignite", "15% chance for Ignites inflicted with Shock Nova or Storm Call to deal 100% more Damage", statOrder = { 9502, 9503 }, level = 1, group = "WeaponTreeSkillShockNovaStormCall", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillShockNovaStormCall2H"] = { type = "Spawn", tier = 1, "All Damage from Shock Nova and Storm Call Hits can Ignite", "25% chance for Ignites inflicted with Shock Nova or Storm Call to deal 100% more Damage", statOrder = { 9502, 9503 }, level = 1, group = "WeaponTreeSkillShockNovaStormCall", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillCreepingFrostColdSnap"] = { type = "Spawn", tier = 1, "All Damage from Cold Snap and Creeping Frost can Sap", "25% chance for Cold Snap and Creeping Frost to Sap Enemies in Chilling Areas", statOrder = { 5614, 5615 }, level = 1, group = "WeaponTreeSkillCreepingFrostColdSnap", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillCreepingFrostColdSnap2H"] = { type = "Spawn", tier = 1, "All Damage from Cold Snap and Creeping Frost can Sap", "50% chance for Cold Snap and Creeping Frost to Sap Enemies in Chilling Areas", statOrder = { 5614, 5615 }, level = 1, group = "WeaponTreeSkillCreepingFrostColdSnap", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillLightningConduitGalvanicField"] = { type = "Spawn", tier = 1, "Killing Blows with Lightning Conduit and Galvanic Field Shatter Enemies as though Frozen", statOrder = { 7051 }, level = 1, group = "WeaponTreeSkillLightningConduitGalvanicField", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillManabondStormbind"] = { type = "Spawn", tier = 1, "Manabond and Stormbind Freeze enemies as though dealing 200% more Damage", "50% of Manabond and Stormbind Lightning Damage Converted to Cold Damage", statOrder = { 7791, 7792 }, level = 1, group = "WeaponTreeSkillManabondStormbind", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillManabondStormbind2H"] = { type = "Spawn", tier = 1, "Manabond and Stormbind Freeze enemies as though dealing 300% more Damage", "100% of Manabond and Stormbind Lightning Damage Converted to Cold Damage", statOrder = { 7791, 7792 }, level = 1, group = "WeaponTreeSkillManabondStormbind", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillIceSpearBallLightning"] = { type = "Spawn", tier = 1, "Ice Spear and Ball Lightning fire Projectiles in a circle", "Ice Spear and Ball Lightning Projectiles Return to you", statOrder = { 6827, 6828 }, level = 1, group = "WeaponTreeSkillIceSpearBallLightning", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillFlameblastIncinerate"] = { type = "Spawn", tier = 1, "+0.2 seconds to Flameblast and Incinerate Cooldown", "Flameblast and Incinerate cannot inflict Elemental Ailments", "Flameblast starts with 2 additional Stages", "Incinerate starts with 2 additional Stages", statOrder = { 6289, 6290, 6291, 6887 }, level = 1, group = "WeaponTreeSkillFlameblastIncinerate", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillFlameblastIncinerate2H"] = { type = "Spawn", tier = 1, "+0.4 seconds to Flameblast and Incinerate Cooldown", "Flameblast and Incinerate cannot inflict Elemental Ailments", "Flameblast starts with 4 additional Stages", "Incinerate starts with 4 additional Stages", statOrder = { 6289, 6290, 6291, 6887 }, level = 1, group = "WeaponTreeSkillFlameblastIncinerate", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillHexblastDoomBlast"] = { type = "Spawn", tier = 1, "10% of Hexblast and Doom Blast Overkill Damage is Leeched as Life", statOrder = { 6768 }, level = 1, group = "WeaponTreeSkillHexblastDoomBlast", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillHexblastDoomBlast2H"] = { type = "Spawn", tier = 1, "20% of Hexblast and Doom Blast Overkill Damage is Leeched as Life", statOrder = { 6768 }, level = 1, group = "WeaponTreeSkillHexblastDoomBlast", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillForbiddenRiteDarkPact"] = { type = "Spawn", tier = 1, "Forbidden Rite and Dark Pact gains Added Chaos Damage equal to 12% of Mana Cost, if Mana Cost is not higher than the maximum you could spend", statOrder = { 6323 }, level = 1, group = "WeaponTreeSkillForbiddenRiteDarkPact", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillForbiddenRiteDarkPact2H"] = { type = "Spawn", tier = 1, "Forbidden Rite and Dark Pact gains Added Chaos Damage equal to 20% of Mana Cost, if Mana Cost is not higher than the maximum you could spend", statOrder = { 6323 }, level = 1, group = "WeaponTreeSkillForbiddenRiteDarkPact", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillBaneContagion"] = { type = "Spawn", tier = 1, "Enemies inflicted with Bane or Contagion are Chilled", statOrder = { 6051 }, level = 1, group = "WeaponTreeSkillBaneContagion", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillEssenceDrainSoulrend"] = { type = "Spawn", tier = 1, "25% reduced Essence Drain and Soulrend Projectile Speed", "Essence Drain and Soulrend fire 2 additional Projectiles", statOrder = { 6146, 6147 }, level = 1, group = "WeaponTreeSkillEssenceDrainSoulrend", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillEssenceDrainSoulrend2H"] = { type = "Spawn", tier = 1, "50% reduced Essence Drain and Soulrend Projectile Speed", "Essence Drain and Soulrend fire 4 additional Projectiles", statOrder = { 6146, 6147 }, level = 1, group = "WeaponTreeSkillEssenceDrainSoulrend", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillSparkLightningTendrils"] = { type = "Spawn", tier = 1, "50% increased Spark Duration when Cast by a Totem while you also have a Lightning Tendrils Spell Totem", "Lightning Tendrils releases 1 fewer Pulse between Stronger Pulses when Cast by a Totem while you also have a Spark Spell Totem", statOrder = { 7085, 9585 }, level = 1, group = "WeaponTreeSkillSparkLightningTendrils", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillSparkLightningTendrils2H"] = { type = "Spawn", tier = 1, "100% increased Spark Duration when Cast by a Totem while you also have a Lightning Tendrils Spell Totem", "Lightning Tendrils releases 2 fewer Pulses between Stronger Pulses when Cast by a Totem while you also have a Spark Spell Totem", statOrder = { 7085, 9585 }, level = 1, group = "WeaponTreeSkillSparkLightningTendrils", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillFrostBombOrbofStorms"] = { type = "Spawn", tier = 1, "Frost Bombs gain 50% increased Area of Effect when you Cast Frostblink", "Strikes from Orb of Storms caused by Channelling near the Orb occur with 40% increased frequency", statOrder = { 6345, 9072 }, level = 1, group = "WeaponTreeSkillFrostBombOrbofStorms", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillFrostBombOrbofStorms2H"] = { type = "Spawn", tier = 1, "Frost Bombs gain 75% increased Area of Effect when you Cast Frostblink", "Strikes from Orb of Storms caused by Channelling near the Orb occur with 60% increased frequency", statOrder = { 6345, 9072 }, level = 1, group = "WeaponTreeSkillFrostBombOrbofStorms", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillWinterOrbHydrosphere"] = { type = "Spawn", tier = 1, "Trigger Level 20 Hydrosphere while you Channel Winter Orb", statOrder = { 5162 }, level = 1, group = "WeaponTreeSkillWinterOrbHydrosphere", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillWintertideBrandArcanistBrand"] = { type = "Spawn", tier = 1, "Enemies Branded by Wintertide Brand or Arcanist Brand Explode on Death dealing a quarter of their maximum Life as Chaos damage", statOrder = { 10086 }, level = 1, group = "WeaponTreeSkillWintertideBrandArcanistBrand", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillAnimateWeapon"] = { type = "Spawn", tier = 1, "Animated Lingering Blades have +1.5% to Critical Strike Chance", statOrder = { 4519 }, level = 1, group = "WeaponTreeSkillAnimateWeapon", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillAnimateWeapon2H"] = { type = "Spawn", tier = 1, "Animated Lingering Blades have +2.5% to Critical Strike Chance", statOrder = { 4519 }, level = 1, group = "WeaponTreeSkillAnimateWeapon", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillSummonCarrionGolemSummonStoneGolemSummonChaosGolem"] = { type = "Spawn", tier = 1, "Summoned Carrion Golems Impale on Hit if you have the same number of them as Summoned Chaos Golems", "Summoned Chaos Golems Impale on Hit if you have the same number of them as Summoned Stone Golems", "Summoned Stone Golems Impale on Hit if you have the same number of them as Summoned Carrion Golems", statOrder = { 5156, 5458, 9715 }, level = 1, group = "WeaponTreeSkillSummonCarrionGolemSummonStoneGolemSummonChaosGolem", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillSummonFlameGolemSummonIceGolemSummonLightningGolem"] = { type = "Spawn", tier = 1, "Maximum Life of Summoned Elemental Golems is Doubled", statOrder = { 6012 }, level = 1, group = "WeaponTreeSkillSummonFlameGolemSummonIceGolemSummonLightningGolem", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillSummonHolyRelicSummonSkeletons"] = { type = "Spawn", tier = 1, "Summoned Skeletons and Holy Relics convert 100% of their Physical Damage to a random Element", "100% increased Effect of Non-Damaging Ailments inflicted by Summoned Skeletons and Holy Relics", statOrder = { 9537, 9538 }, level = 1, group = "WeaponTreeSkillSummonHolyRelicSummonSkeletons", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillSummonHolyRelicSummonSkeletons2H"] = { type = "Spawn", tier = 1, "Summoned Skeletons and Holy Relics convert 100% of their Physical Damage to a random Element", "200% increased Effect of Non-Damaging Ailments inflicted by Summoned Skeletons and Holy Relics", statOrder = { 9537, 9538 }, level = 1, group = "WeaponTreeSkillSummonHolyRelicSummonSkeletons", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillRaiseSpectreRaiseZombie"] = { type = "Spawn", tier = 1, "Raised Zombies and Spectres gain Adrenaline for 8 seconds when Raised", statOrder = { 9601 }, level = 1, group = "WeaponTreeSkillRaiseSpectreRaiseZombie", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillRaiseSpectreRaiseZombie2H"] = { type = "Spawn", tier = 1, "Raised Zombies and Spectres gain Adrenaline for 14 seconds when Raised", statOrder = { 9601 }, level = 1, group = "WeaponTreeSkillRaiseSpectreRaiseZombie", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillSummonRagingSpiritSummonPhantasmSupport"] = { type = "Spawn", tier = 1, "Maximum number of Summoned Raging Spirits is 3", "Maximum number of Summoned Phantasms is 3", "Summoned Raging Spirits have Diamond Shrine and Massive Shrine Buffs", "Summoned Phantasms have Diamond Shrine and Massive Shrine Buffs", statOrder = { 9050, 9052, 9786, 9797 }, level = 1, group = "WeaponTreeSkillSummonRagingSpiritSummonPhantasmSupport", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillFireTrapExplosiveTrap"] = { type = "Spawn", tier = 1, "Fire Trap and Explosive Trap Throw an additional Trap when used by a Mine", statOrder = { 6221 }, level = 1, group = "WeaponTreeSkillFireTrapExplosiveTrap", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillFireTrapExplosiveTrap2H"] = { type = "Spawn", tier = 1, "Fire Trap and Explosive Trap Throws 2 additional Traps when used by a Mine", statOrder = { 6221 }, level = 1, group = "WeaponTreeSkillFireTrapExplosiveTrap", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillIceTrapLightningTrap"] = { type = "Spawn", tier = 1, "Ice Trap and Lightning Trap Damage Penetrates 15% of Enemy Elemental Resistances", "Ice Traps and Lightning Traps are triggered by your Warcries", "Ice Traps and Lightning Traps cannot be triggered by Enemies", statOrder = { 6811, 6812, 6813 }, level = 1, group = "WeaponTreeSkillIceTrapLightningTrap", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillIceTrapLightningTrap2H"] = { type = "Spawn", tier = 1, "Ice Trap and Lightning Trap Damage Penetrates 25% of Enemy Elemental Resistances", "Ice Traps and Lightning Traps are triggered by your Warcries", "Ice Traps and Lightning Traps cannot be triggered by Enemies", statOrder = { 6811, 6812, 6813 }, level = 1, group = "WeaponTreeSkillIceTrapLightningTrap", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillFlamethrowerTrapSeismicTrapLightningSpireTrap"] = { type = "Spawn", tier = 1, "Flamethrower, Seismic and Lightning Spire Trap have 30% increased Cooldown Recovery Rate", "Flamethrower, Seismic and Lightning Spire Trap have -1 Cooldown Use", statOrder = { 6292, 6293 }, level = 1, group = "WeaponTreeSkillFlamethrowerTrapSeismicTrapLightningSpireTrap", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillFlamethrowerTrapSeismicTrapLightningSpireTrap2H"] = { type = "Spawn", tier = 1, "Flamethrower, Seismic and Lightning Spire Trap have 50% increased Cooldown Recovery Rate", "Flamethrower, Seismic and Lightning Spire Trap have -2 Cooldown Uses", statOrder = { 6292, 6293 }, level = 1, group = "WeaponTreeSkillFlamethrowerTrapSeismicTrapLightningSpireTrap", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillStormblastMinePyroclastMineIcicleMine"] = { type = "Spawn", tier = 1, "Stormblast, Icicle and Pyroclast Mine have 150% increased Aura Effect", "Stormblast, Icicle and Pyroclast Mine deal no Damage", statOrder = { 9734, 9735 }, level = 1, group = "WeaponTreeSkillStormblastMinePyroclastMineIcicleMine", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillStormblastMinePyroclastMineIcicleMine2H"] = { type = "Spawn", tier = 1, "Stormblast, Icicle and Pyroclast Mine have 300% increased Aura Effect", "Stormblast, Icicle and Pyroclast Mine deal no Damage", statOrder = { 9734, 9735 }, level = 1, group = "WeaponTreeSkillStormblastMinePyroclastMineIcicleMine", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillBearTrapSiphoningTrap"] = { type = "Spawn", tier = 1, "Bear Trap and Siphoning Trap Debuffs also apply 15% reduced Cooldown Recovery Rate to affected Enemies", statOrder = { 4875 }, level = 1, group = "WeaponTreeSkillBearTrapSiphoningTrap", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillBearTrapSiphoningTrap2H"] = { type = "Spawn", tier = 1, "Bear Trap and Siphoning Trap Debuffs also apply 25% reduced Cooldown Recovery Rate to affected Enemies", statOrder = { 4875 }, level = 1, group = "WeaponTreeSkillBearTrapSiphoningTrap", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillHolyFlameTotemShockwaveTotem"] = { type = "Spawn", tier = 1, "Holy Flame Totem and Shockwave Totem gain 35% of Physical Damage as Extra Fire Damage when Cast by a Totem linked to by Searing Bond", statOrder = { 6804 }, level = 1, group = "WeaponTreeSkillHolyFlameTotemShockwaveTotem", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillHolyFlameTotemShockwaveTotem2H"] = { type = "Spawn", tier = 1, "Holy Flame Totem and Shockwave Totem gain 60% of Physical Damage as Extra Fire Damage when Cast by a Totem linked to by Searing Bond", statOrder = { 6804 }, level = 1, group = "WeaponTreeSkillHolyFlameTotemShockwaveTotem", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillDecoyTotemRejuvenationTotemDevouringTotem"] = { type = "Spawn", tier = 1, "Decoy, Devouring and Rejuvenation Totems Reflect 100% of their maximum Life as Fire Damage to nearby Enemies when Hit", statOrder = { 5848 }, level = 1, group = "WeaponTreeSkillDecoyTotemRejuvenationTotemDevouringTotem", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillDecoyTotemRejuvenationTotemDevouringTotem2H"] = { type = "Spawn", tier = 1, "Decoy, Devouring and Rejuvenation Totems Reflect 200% of their maximum Life as Fire Damage to nearby Enemies when Hit", statOrder = { 5848 }, level = 1, group = "WeaponTreeSkillDecoyTotemRejuvenationTotemDevouringTotem", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillRighteousFireScorchingRay"] = { type = "Spawn", tier = 1, "Regenerate 15 Mana per second while any Enemy is in your Righteous Fire or Scorching Ray", statOrder = { 9435 }, level = 1, group = "WeaponTreeSkillRighteousFireScorchingRay", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillRighteousFireScorchingRay2H"] = { type = "Spawn", tier = 1, "Regenerate 25 Mana per second while any Enemy is in your Righteous Fire or Scorching Ray", statOrder = { 9435 }, level = 1, group = "WeaponTreeSkillRighteousFireScorchingRay", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillBlightWither"] = { type = "Spawn", tier = 1, "Blight has 50% increased Area of Effect per second you have been Channelling, up to a maximum of 200%", "Wither has 50% increased Area of Effect per second you have been Channelling, up to a maximum of 200%", statOrder = { 4929, 10087 }, level = 1, group = "WeaponTreeSkillBlightWither", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillBlightWither2H"] = { type = "Spawn", tier = 1, "Blight has 80% increased Area of Effect per second you have been Channelling, up to a maximum of 200%", "Wither has 80% increased Area of Effect per second you have been Channelling, up to a maximum of 200%", statOrder = { 4929, 10087 }, level = 1, group = "WeaponTreeSkillBlightWither", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillVoltaxicBurstDischarge"] = { type = "Spawn", tier = 1, "Discharge and Voltaxic Burst are Cast at the targeted location instead of around you", statOrder = { 5874 }, level = 1, group = "WeaponTreeSkillVoltaxicBurstDischarge", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillStormArmageddonBrandSummonReaper"] = { type = "Spawn", tier = 1, "Storm and Armageddon Brands can be attached to your Summoned Reaper", statOrder = { 9716 }, level = 1, group = "WeaponTreeSkillStormArmageddonBrandSummonReaper", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "minion_unique_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 1000, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillArcCracklingLance"] = { type = "Spawn", tier = 1, "Arc and Crackling Lance gains Added Cold Damage equal to 12% of Mana Cost, if Mana Cost is not higher than the maximum you could spend", "15% increased Cost of Arc and Crackling Lance", statOrder = { 4528, 4529 }, level = 1, group = "WeaponTreeSkillArcCracklingLance", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillArcCracklingLance2H"] = { type = "Spawn", tier = 1, "Arc and Crackling Lance gains Added Cold Damage equal to 20% of Mana Cost, if Mana Cost is not higher than the maximum you could spend", "25% increased Cost of Arc and Crackling Lance", statOrder = { 4528, 4529 }, level = 1, group = "WeaponTreeSkillArcCracklingLance", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillAnimateGuardian"] = { type = "Spawn", tier = 1, "50% increased Effect of Link Buffs on Animated Guardian", "Link Skills can target Animated Guardian", statOrder = { 7094, 7108 }, level = 1, group = "WeaponTreeSkillAnimateGuardian", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillBlazingSalvoFlameWall"] = { type = "Spawn", tier = 1, "Blazing Salvo Projectiles Fork when they pass through a Flame Wall", statOrder = { 4912 }, level = 1, group = "WeaponTreeSkillBlazingSalvoFlameWall", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillVolatileDeadCremation"] = { type = "Spawn", tier = 1, "Volatile Dead and Cremation Penetrate 2% Fire Resistance per 100 Dexterity", statOrder = { 10009 }, level = 1, group = "WeaponTreeSkillVolatileDeadCremation", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillVolatileDeadCremation2H"] = { type = "Spawn", tier = 1, "Volatile Dead and Cremation Penetrate 4% Fire Resistance per 100 Dexterity", statOrder = { 10009 }, level = 1, group = "WeaponTreeSkillVolatileDeadCremation", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillWaveofConviction"] = { type = "Spawn", tier = 1, "+10% to Wave of Conviction Damage over Time Multiplier per 0.1 seconds of Duration expired", statOrder = { 9262 }, level = 1, group = "WeaponTreeSkillWaveofConviction", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillWaveofConviction2H"] = { type = "Spawn", tier = 1, "+15% to Wave of Conviction Damage over Time Multiplier per 0.1 seconds of Duration expired", statOrder = { 9262 }, level = 1, group = "WeaponTreeSkillWaveofConviction", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSkillVortexFrostbolt"] = { type = "Spawn", tier = 1, "+15% to Vortex Critical Strike Chance when Cast on Frostbolt", statOrder = { 10020 }, level = 1, group = "WeaponTreeSkillVortexFrostbolt", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, - ["WeaponTreeSkillVortexFrostbolt2H"] = { type = "Spawn", tier = 1, "+25% to Vortex Critical Strike Chance when Cast on Frostbolt", statOrder = { 10020 }, level = 1, group = "WeaponTreeSkillVortexFrostbolt", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["WeaponTreeSellPriceMagmaticOre"] = { type = "Spawn", tier = 1, "Item sells for an additional Magmatic Ore", statOrder = { 10061 }, level = 50, group = "WeaponTreeSellPriceMagmaticOre", nodeType = "SellBonus", nodeLocation = { 3, 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 1275, 1275, 938, 750 }, modTags = { }, }, - ["WeaponTreeSellNodeScouringOrb"] = { type = "Spawn", tier = 1, "Item sells for 20 additional Orbs of Scouring", statOrder = { 10072 }, level = 50, group = "WeaponTreeSellNodeScouringOrb", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 340, 340, 250, 200 }, modTags = { }, }, - ["WeaponTreeSellNodeScouringOrbHigh"] = { type = "Spawn", tier = 2, "Item sells for 40 additional Orbs of Scouring", statOrder = { 10072 }, level = 78, group = "WeaponTreeSellNodeScouringOrbHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 170, 170, 125, 100 }, modTags = { }, }, - ["WeaponTreeSellNodeChaosOrb"] = { type = "Spawn", tier = 1, "Item sells for 20 additional Chaos Orbs", statOrder = { 10057 }, level = 50, group = "WeaponTreeSellNodeChaosOrb", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 408, 408, 300, 240 }, modTags = { }, }, - ["WeaponTreeSellNodeChaosOrbHigh"] = { type = "Spawn", tier = 2, "Item sells for 40 additional Chaos Orbs", statOrder = { 10057 }, level = 78, group = "WeaponTreeSellNodeChaosOrbHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 204, 204, 150, 120 }, modTags = { }, }, - ["WeaponTreeSellNodeOrbOfRegret"] = { type = "Spawn", tier = 1, "Item sells for 15 additional Orbs of Regret", statOrder = { 10069 }, level = 50, group = "WeaponTreeSellNodeOrbOfRegret", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 228, 228, 168, 134 }, modTags = { }, }, - ["WeaponTreeSellNodeOrbOfRegretHigh"] = { type = "Spawn", tier = 2, "Item sells for 30 additional Orbs of Regret", statOrder = { 10069 }, level = 78, group = "WeaponTreeSellNodeOrbOfRegretHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 114, 114, 84, 67 }, modTags = { }, }, - ["WeaponTreeSellNodeRegalOrb"] = { type = "Spawn", tier = 1, "Item sells for 10 additional Regal Orbs", statOrder = { 10070 }, level = 50, group = "WeaponTreeSellNodeRegalOrb", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 102, 102, 75, 60 }, modTags = { }, }, - ["WeaponTreeSellNodeRegalOrbHigh"] = { type = "Spawn", tier = 2, "Item sells for 20 additional Regal Orbs", statOrder = { 10070 }, level = 78, group = "WeaponTreeSellNodeRegalOrbHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 51, 51, 38, 30 }, modTags = { }, }, - ["WeaponTreeSellNodeVaalOrb"] = { type = "Spawn", tier = 1, "Item sells for 15 additional Vaal Orbs", statOrder = { 10073 }, level = 50, group = "WeaponTreeSellNodeVaalOrb", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 228, 228, 168, 134 }, modTags = { }, }, - ["WeaponTreeSellNodeVaalOrbHigh"] = { type = "Spawn", tier = 2, "Item sells for 30 additional Vaal Orbs", statOrder = { 10073 }, level = 78, group = "WeaponTreeSellNodeVaalOrbHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 114, 114, 84, 67 }, modTags = { }, }, - ["WeaponTreeSellNodeGemcutters"] = { type = "Spawn", tier = 1, "Item sells for 15 additional Gemcutter's Prisms", statOrder = { 10064 }, level = 50, group = "WeaponTreeSellNodeGemcutters", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 92, 92, 68, 54 }, modTags = { }, }, - ["WeaponTreeSellNodeGemcuttersHigh"] = { type = "Spawn", tier = 2, "Item sells for 30 additional Gemcutter's Prisms", statOrder = { 10064 }, level = 78, group = "WeaponTreeSellNodeGemcuttersHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 46, 46, 34, 27 }, modTags = { }, }, - ["WeaponTreeSellNodeBlessedOrb"] = { type = "Spawn", tier = 1, "Item sells for 10 additional Blessed Orbs", statOrder = { 10056 }, level = 50, group = "WeaponTreeSellNodeBlessedOrb", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 136, 136, 100, 80 }, modTags = { }, }, - ["WeaponTreeSellNodeBlessedOrbHigh"] = { type = "Spawn", tier = 2, "Item sells for 20 additional Blessed Orbs", statOrder = { 10056 }, level = 78, group = "WeaponTreeSellNodeBlessedOrbHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 68, 68, 50, 40 }, modTags = { }, }, - ["WeaponTreeSellNodeAwakenedSextant"] = { type = "Spawn", tier = 1, "Item sells for an additional Cartography Scarab of every type", statOrder = { 10055 }, level = 78, group = "WeaponTreeSellNodeAwakenedSextant", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 238, 238, 175, 140 }, modTags = { }, }, - ["WeaponTreeSellNodeAwakenedSextantHigh"] = { type = "Spawn", tier = 2, "Item sells for 2 additional Cartography Scarabs of every type", statOrder = { 10055 }, level = 78, group = "WeaponTreeSellNodeAwakenedSextantHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 119, 119, 88, 70 }, modTags = { }, }, - ["WeaponTreeSellNodeOrbOfAnnulment"] = { type = "Spawn", tier = 1, "Item sells for an additional Orb of Annulment", statOrder = { 10068 }, level = 68, group = "WeaponTreeSellNodeOrbOfAnnulment", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 68, 68, 50, 40 }, modTags = { }, }, - ["WeaponTreeSellNodeOrbOfAnnulmentHigh"] = { type = "Spawn", tier = 2, "Item sells for 3 additional Orbs of Annulment", statOrder = { 10068 }, level = 78, group = "WeaponTreeSellNodeOrbOfAnnulmentHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 24, 24, 18, 14 }, modTags = { }, }, - ["WeaponTreeSellNodeExaltedOrb"] = { type = "Spawn", tier = 1, "Item sells for an additional Exalted Orb", statOrder = { 10060 }, level = 68, group = "WeaponTreeSellNodeExaltedOrb", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 170, 170, 125, 100 }, modTags = { }, }, - ["WeaponTreeSellNodeExaltedOrbHigh"] = { type = "Spawn", tier = 2, "Item sells for 3 additional Exalted Orbs", statOrder = { 10060 }, level = 78, group = "WeaponTreeSellNodeExaltedOrbHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 58, 58, 43, 34 }, modTags = { }, }, - ["WeaponTreeSellNodeDivineOrb"] = { type = "Spawn", tier = 1, "Item sells for an additional Divine Orb", statOrder = { 10059 }, level = 68, group = "WeaponTreeSellNodeDivineOrb", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 170, 170, 125, 100 }, modTags = { }, }, - ["WeaponTreeSellNodeDivineOrbHigh"] = { type = "Spawn", tier = 2, "Item sells for 3 additional Divine Orbs", statOrder = { 10059 }, level = 78, group = "WeaponTreeSellNodeDivineOrbHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 58, 58, 43, 34 }, modTags = { }, }, - ["WeaponTreeSellNodeSacredOrb"] = { type = "Spawn", tier = 1, "Item sells for an additional Sacred Orb", statOrder = { 10071 }, level = 80, group = "WeaponTreeSellNodeSacredOrb", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 9, 9, 6, 5 }, modTags = { }, }, - ["WeaponTreeSellNodeSacredOrbHigh"] = { type = "Spawn", tier = 2, "Item sells for 3 additional Sacred Orbs", statOrder = { 10071 }, level = 84, group = "WeaponTreeSellNodeSacredOrbHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 3, 3, 3, 2 }, modTags = { }, }, - ["WeaponTreeSellNodeIgneousGeode"] = { type = "Spawn", tier = 1, "Item sells for an additional Igneous Geode", statOrder = { 10065 }, level = 75, group = "WeaponTreeSellNodeIgneousGeode", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 2125, 2125, 1563, 1250 }, modTags = { }, }, - ["WeaponTreeSellNodeCrystallineGeode"] = { type = "Spawn", tier = 1, "Item sells for an additional Crystalline Geode", statOrder = { 10058 }, level = 84, group = "WeaponTreeSellNodeCrystallineGeode", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 228, 228, 168, 134 }, modTags = { }, }, - ["WeaponTreeSellNodeDouble"] = { type = "Spawn", tier = 1, "Crucible Passives that sell for items sell for twice as much", statOrder = { 10067 }, level = 84, group = "WeaponTreeSellNodeDouble", nodeType = "SellBonus", nodeLocation = { 5 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 340, 340, 250, 200 }, modTags = { }, }, - ["WeaponTreeFishingLineStrength"] = { type = "Spawn", tier = 1, "30% increased Fishing Line Strength", statOrder = { 2717 }, level = 1, group = "WeaponTreeFishingLineStrength", nodeType = "Regular", nodeLocation = { 1, 2 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, - ["WeaponTreeFishingQuantity"] = { type = "Spawn", tier = 1, "20% increased Quantity of Fish Caught", statOrder = { 2722 }, level = 1, group = "WeaponTreeFishingQuantity", nodeType = "Regular", nodeLocation = { 1, 2 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, - ["WeaponTreeFishingRarity"] = { type = "Spawn", tier = 1, "40% increased Rarity of Fish Caught", statOrder = { 2723 }, level = 1, group = "WeaponTreeFishingRarity", nodeType = "Regular", nodeLocation = { 1, 2 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, - ["WeaponTreeFishingPoolConsumption"] = { type = "Spawn", tier = 1, "20% increased Fishing Pool Consumption", statOrder = { 2718 }, level = 1, group = "WeaponTreeFishingPoolConsumption", nodeType = "Regular", nodeLocation = { 1, 2 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, - ["WeaponTreeFishingExoticFish"] = { type = "Spawn", tier = 1, "You can catch Exotic Fish", statOrder = { 2728 }, level = 1, group = "WeaponTreeFishingExoticFish", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, - ["WeaponTreeFishingBiteSensitivity"] = { type = "Spawn", tier = 1, "50% increased Fish Bite Sensitivity", statOrder = { 3446 }, level = 1, group = "WeaponTreeFishingBiteSensitivity", nodeType = "Regular", nodeLocation = { 1, 2 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, - ["WeaponTreeFishingReelStability"] = { type = "Spawn", tier = 1, "100% increased Reeling Stability", statOrder = { 6280 }, level = 1, group = "WeaponTreeFishingReelStability", nodeType = "Regular", nodeLocation = { 1, 2 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, - ["WeaponTreeFishingChanceToCatchBoots"] = { type = "Spawn", tier = 1, "25% reduced chance to catch Boots", statOrder = { 6270 }, level = 1, group = "WeaponTreeFishingChanceToCatchBoots", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, - ["WeaponTreeFishingChanceToCatchDivineOrb"] = { type = "Spawn", tier = 1, "5% increased chance to catch a Divine Orb", statOrder = { 6271 }, level = 1, group = "WeaponTreeFishingChanceToCatchDivineOrb", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, - ["WeaponTreeFishingCanCatchDivineFish"] = { type = "Spawn", tier = 1, "You can catch Divine Fish", statOrder = { 6269 }, level = 1, group = "WeaponTreeFishingCanCatchDivineFish", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, - ["WeaponTreeFishingGhastlyFishermanCannotSpawn"] = { type = "Spawn", tier = 1, "The Ghastly Fisherman cannot spawn", statOrder = { 6274 }, level = 1, group = "WeaponTreeFishingGhastlyFishermanCannotSpawn", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, - ["WeaponTreeFishingGhastlyFishermanSpawnsBehindYou"] = { type = "Spawn", tier = 1, "The Ghastly Fisherman always appears behind you", statOrder = { 6275 }, level = 1, group = "WeaponTreeFishingGhastlyFishermanSpawnsBehindYou", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, - ["WeaponTreeFishingTasalioIrePerFishCaught"] = { type = "Spawn", tier = 1, "20% reduced Tasalio's Ire per Fish caught", statOrder = { 6281 }, level = 1, group = "WeaponTreeFishingTasalioIrePerFishCaught", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, - ["WeaponTreeFishingValakoAidPerStormyDay"] = { type = "Spawn", tier = 1, "20% increased Valako's Aid per Stormy Day", statOrder = { 6282 }, level = 1, group = "WeaponTreeFishingValakoAidPerStormyDay", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, - ["WeaponTreeFishingBestiaryLuresAtFishingHoles"] = { type = "Spawn", tier = 1, "Can use Bestiary Lures at Fishing Holes", statOrder = { 6268 }, level = 1, group = "WeaponTreeFishingBestiaryLuresAtFishingHoles", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, - ["WeaponTreeFishingCorruptedFishCleansedChance"] = { type = "Spawn", tier = 1, "Corrupted Fish have 10% chance to be Cleansed", statOrder = { 6272 }, level = 1, group = "WeaponTreeFishingCorruptedFishCleansedChance", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, - ["WeaponTreeFishingKrillsonAffectionPerFishGifted"] = { type = "Spawn", tier = 1, "23% increased Krillson Affection per Fish Gifted", statOrder = { 6276 }, level = 1, group = "WeaponTreeFishingKrillsonAffectionPerFishGifted", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, - ["WeaponTreeFishingLifeOfFishWithThisRod"] = { type = "Spawn", tier = 1, "40% increased Life of Fish caught with this Fishing Rod", statOrder = { 6277 }, level = 1, group = "WeaponTreeFishingLifeOfFishWithThisRod", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, - ["WeaponTreeFishingFishAlwaysTellTruthWithThisRod"] = { type = "Spawn", tier = 1, "Fish caught with this Fishing Rod will always tell the truth", statOrder = { 6273 }, level = 1, group = "WeaponTreeFishingFishAlwaysTellTruthWithThisRod", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, - ["WeaponTreeFishingWishPerFish"] = { type = "Spawn", tier = 1, "+3 Wishes per Ancient Fish caught", statOrder = { 6284 }, level = 1, group = "WeaponTreeFishingWishPerFish", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, - ["WeaponTreeFishingWishEffectOfAncientFish"] = { type = "Spawn", tier = 1, "50% increased effect of Wishes granted by Ancient Fish", statOrder = { 6283 }, level = 1, group = "WeaponTreeFishingWishEffectOfAncientFish", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, - ["WeaponTreeFishingMagmaticFishAreCooked"] = { type = "Spawn", tier = 1, "Fish caught from Magmatic Fishing Holes are already Cooked", statOrder = { 6278 }, level = 1, group = "WeaponTreeFishingMagmaticFishAreCooked", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, - ["WeaponTreeFishingMoltenOneConfusionPerFishGifted"] = { type = "Spawn", tier = 1, "15% increased Molten One confusion per Fish Gifted", statOrder = { 6279 }, level = 1, group = "WeaponTreeFishingMoltenOneConfusionPerFishGifted", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportArcaneSurge"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Arcane Surge", statOrder = { 203 }, level = 1, group = "WeaponTreeSupportArcaneSurge", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportChanceToIgnite"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Combustion", statOrder = { 219 }, level = 1, group = "WeaponTreeSupportChanceToIgnite", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportDecay"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Decay", statOrder = { 229 }, level = 1, group = "WeaponTreeSupportDecay", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportElementalProliferation"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Elemental Proliferation", statOrder = { 386 }, level = 1, group = "WeaponTreeSupportElementalProliferation", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportEnergyLeech"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Energy Leech", statOrder = { 236 }, level = 1, group = "WeaponTreeSupportEnergyLeech", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportFasterCast"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Faster Casting", statOrder = { 420 }, level = 1, group = "WeaponTreeSupportFasterCast", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportIgniteProliferation"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Ignite Proliferation", statOrder = { 256 }, level = 1, group = "WeaponTreeSupportIgniteProliferation", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportIntensify"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Intensify", statOrder = { 312 }, level = 1, group = "WeaponTreeSupportIntensify", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportOvercharge"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Overcharge", statOrder = { 283 }, level = 1, group = "WeaponTreeSupportOvercharge", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportPhysicalToLightning"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Physical To Lightning", statOrder = { 287 }, level = 1, group = "WeaponTreeSupportPhysicalToLightning", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportPinpoint"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Pinpoint", statOrder = { 288 }, level = 1, group = "WeaponTreeSupportPinpoint", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportSpellCascade"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Spell Cascade", statOrder = { 311 }, level = 1, group = "WeaponTreeSupportSpellCascade", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportSummonGhostOnKill"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Summon Phantasm", statOrder = { 317 }, level = 1, group = "WeaponTreeSupportSummonGhostOnKill", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportSwiftBrand"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Swiftbrand", statOrder = { 319 }, level = 1, group = "WeaponTreeSupportSwiftBrand", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportAddedChaos"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Added Chaos Damage", statOrder = { 378 }, level = 1, group = "WeaponTreeSupportAddedChaos", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportAddedCold"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Added Cold Damage", statOrder = { 437 }, level = 1, group = "WeaponTreeSupportAddedCold", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportAddedLightning"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Added Lightning Damage", statOrder = { 387 }, level = 1, group = "WeaponTreeSupportAddedLightning", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportArchmage"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Archmage", statOrder = { 204 }, level = 1, group = "WeaponTreeSupportArchmage", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportBonechill"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Bonechill", statOrder = { 211 }, level = 1, group = "WeaponTreeSupportBonechill", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportConcentratedEffect"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Concentrated Effect", statOrder = { 373 }, level = 1, group = "WeaponTreeSupportConcentratedEffect", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportControlledDestruction"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Controlled Destruction", statOrder = { 444 }, level = 1, group = "WeaponTreeSupportControlledDestruction", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportEfficacy"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Efficacy", statOrder = { 232 }, level = 1, group = "WeaponTreeSupportEfficacy", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportElementalFocus"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Elemental Focus", statOrder = { 233 }, level = 1, group = "WeaponTreeSupportElementalFocus", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportElementalPenetration"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Elemental Penetration", statOrder = { 234 }, level = 1, group = "WeaponTreeSupportElementalPenetration", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportImmolate"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Immolate", statOrder = { 257 }, level = 1, group = "WeaponTreeSupportImmolate", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportIncreasedCriticalDamage"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 30 Increased Critical Damage", statOrder = { 405 }, level = 1, group = "WeaponTreeSupportIncreasedCriticalDamage", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportIncreasedCriticalStrikes"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Increased Critical Strikes", statOrder = { 261 }, level = 1, group = "WeaponTreeSupportIncreasedCriticalStrikes", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportInfusedChannelling"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Infused Channelling", statOrder = { 315 }, level = 1, group = "WeaponTreeSupportInfusedChannelling", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportInnervate"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Innervate", statOrder = { 440 }, level = 1, group = "WeaponTreeSupportInnervate", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportFirePenetration"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Fire Penetration", statOrder = { 385 }, level = 1, group = "WeaponTreeSupportFirePenetration", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportColdPenetration"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Cold Penetration", statOrder = { 432 }, level = 1, group = "WeaponTreeSupportColdPenetration", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportLightningPenetration"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Lightning Penetration", statOrder = { 270 }, level = 1, group = "WeaponTreeSupportLightningPenetration", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportPowerChargeOnCrit"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Power Charge On Critical Strike", statOrder = { 291 }, level = 1, group = "WeaponTreeSupportPowerChargeOnCrit", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportSpellEcho"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Spell Echo", statOrder = { 280 }, level = 1, group = "WeaponTreeSupportSpellEcho", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportTrinity"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Trinity", statOrder = { 322 }, level = 1, group = "WeaponTreeSupportTrinity", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportUnboundAilments"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Unbound Ailments", statOrder = { 323 }, level = 1, group = "WeaponTreeSupportUnboundAilments", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportUnleash"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Unleash", statOrder = { 324 }, level = 1, group = "WeaponTreeSupportUnleash", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportBurningDamage"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Burning Damage", statOrder = { 260 }, level = 1, group = "WeaponTreeSupportBurningDamage", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportColdToFire"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Cold to Fire", statOrder = { 383 }, level = 1, group = "WeaponTreeSupportColdToFire", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportInspiration"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Inspiration", statOrder = { 414 }, level = 1, group = "WeaponTreeSupportInspiration", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportIceBite"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Ice Bite", statOrder = { 431 }, level = 1, group = "WeaponTreeSupportIceBite", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportCriticalStrikeAffliction"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Critical Strike Affliction", statOrder = { 290 }, level = 1, group = "WeaponTreeSupportCriticalStrikeAffliction", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportDeadlyAilments"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Deadly Ailments", statOrder = { 227 }, level = 1, group = "WeaponTreeSupportDeadlyAilments", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportHypothermia"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Hypothermia", statOrder = { 430 }, level = 1, group = "WeaponTreeSupportHypothermia", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["UniqueTreeWeaponTreeSupportSwiftAffliction"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Swift Affliction", statOrder = { 297 }, level = 1, group = "WeaponTreeSupportSwiftAffliction", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeChargeDuration1"] = { type = "Spawn", tier = 1, "50% increased Endurance, Frenzy and Power Charge Duration", statOrder = { 2934 }, level = 24, group = "WeaponTreeChargeDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, + ["WeaponTreeChargeDuration2"] = { type = "Spawn", tier = 2, "65% increased Endurance, Frenzy and Power Charge Duration", statOrder = { 2934 }, level = 55, group = "WeaponTreeChargeDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, + ["WeaponTreeChargeDuration3"] = { type = "Spawn", tier = 3, "80% increased Endurance, Frenzy and Power Charge Duration", statOrder = { 2934 }, level = 78, group = "WeaponTreeChargeDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, + ["WeaponTreeChargeDuration2h1"] = { type = "Spawn", tier = 1, "100% increased Endurance, Frenzy and Power Charge Duration", statOrder = { 2934 }, level = 24, group = "WeaponTreeChargeDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeChargeDuration2h2"] = { type = "Spawn", tier = 2, "120% increased Endurance, Frenzy and Power Charge Duration", statOrder = { 2934 }, level = 55, group = "WeaponTreeChargeDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeChargeDuration2h3"] = { type = "Spawn", tier = 3, "140% increased Endurance, Frenzy and Power Charge Duration", statOrder = { 2934 }, level = 78, group = "WeaponTreeChargeDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeStealChargesOnHit1"] = { type = "Spawn", tier = 1, "5% chance to Steal Power, Frenzy, and Endurance Charges on Hit", statOrder = { 2901 }, level = 24, group = "WeaponTreeStealChargesOnHitPercent", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, + ["WeaponTreeStealChargesOnHit2"] = { type = "Spawn", tier = 2, "10% chance to Steal Power, Frenzy, and Endurance Charges on Hit", statOrder = { 2901 }, level = 55, group = "WeaponTreeStealChargesOnHitPercent", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, + ["WeaponTreeStealChargesOnHit3"] = { type = "Spawn", tier = 3, "15% chance to Steal Power, Frenzy, and Endurance Charges on Hit", statOrder = { 2901 }, level = 78, group = "WeaponTreeStealChargesOnHitPercent", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, + ["WeaponTreeStealChargesOnHit2h1"] = { type = "Spawn", tier = 1, "15% chance to Steal Power, Frenzy, and Endurance Charges on Hit", statOrder = { 2901 }, level = 24, group = "WeaponTreeStealChargesOnHitPercent", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeStealChargesOnHit2h2"] = { type = "Spawn", tier = 2, "20% chance to Steal Power, Frenzy, and Endurance Charges on Hit", statOrder = { 2901 }, level = 55, group = "WeaponTreeStealChargesOnHitPercent", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeStealChargesOnHit2h3"] = { type = "Spawn", tier = 3, "25% chance to Steal Power, Frenzy, and Endurance Charges on Hit", statOrder = { 2901 }, level = 78, group = "WeaponTreeStealChargesOnHitPercent", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeChargeOnKill"] = { type = "Spawn", tier = 1, "75% reduced Endurance, Frenzy and Power Charge Duration", "Gain a Power, Frenzy or Endurance Charge on Kill", statOrder = { 2934, 3520 }, level = 70, group = "WeaponTreeRandomChargeOnKill", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "fishing_rod", "default", }, weightVal = { 0, 200 }, modTags = { }, }, + ["WeaponTreeFrenzyChargeOnKill"] = { type = "Spawn", tier = 1, "50% reduced Frenzy Charge Duration", "Gain a Frenzy Charge on Kill", statOrder = { 2036, 2539 }, level = 30, group = "WeaponTreeFrenzyChargeOnKill", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "fishing_rod", "default", }, weightVal = { 0, 400 }, modTags = { }, }, + ["WeaponTreePowerChargeOnKill"] = { type = "Spawn", tier = 1, "50% reduced Power Charge Duration", "Gain a Power Charge on Kill", statOrder = { 2051, 2541 }, level = 30, group = "WeaponTreePowerChargeOnKill", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "fishing_rod", "default", }, weightVal = { 0, 400 }, modTags = { }, }, + ["WeaponTreeEnduranceChargeOnKill"] = { type = "Spawn", tier = 1, "50% reduced Endurance Charge Duration", "Gain an Endurance Charge on Kill", statOrder = { 2034, 2537 }, level = 30, group = "WeaponTreeEnduranceChargeOnKill", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "fishing_rod", "default", }, weightVal = { 0, 400 }, modTags = { }, }, + ["WeaponTreeMinimumFrenzyAndPowerCharges"] = { type = "Spawn", tier = 1, "-1 to Maximum Endurance Charges", "+1 to Minimum Frenzy Charges", "+1 to Minimum Power Charges", statOrder = { 1715, 1719, 1724 }, level = 30, group = "WeaponTreeMinimumChargesFrenzyAndPower", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, + ["WeaponTreeMinimumFrenzyAndPowerCharges2H"] = { type = "Spawn", tier = 1, "-2 to Maximum Endurance Charges", "+2 to Minimum Frenzy Charges", "+2 to Minimum Power Charges", statOrder = { 1715, 1719, 1724 }, level = 30, group = "WeaponTreeMinimumChargesFrenzyAndPower", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeMinimumPowerAndEnduranceCharges"] = { type = "Spawn", tier = 1, "+1 to Minimum Endurance Charges", "-1 to Maximum Frenzy Charges", "+1 to Minimum Power Charges", statOrder = { 1714, 1720, 1724 }, level = 30, group = "WeaponTreeMinimumChargesPowerAndEndurance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, + ["WeaponTreeMinimumPowerAndEnduranceCharges2H"] = { type = "Spawn", tier = 1, "+2 to Minimum Endurance Charges", "-2 to Maximum Frenzy Charges", "+2 to Minimum Power Charges", statOrder = { 1714, 1720, 1724 }, level = 30, group = "WeaponTreeMinimumChargesPowerAndEndurance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeMinimumEnduranceAndFrenzyCharges"] = { type = "Spawn", tier = 1, "+1 to Minimum Endurance Charges", "+1 to Minimum Frenzy Charges", "-1 to Maximum Power Charges", statOrder = { 1714, 1719, 1725 }, level = 30, group = "WeaponTreeMinimumChargesEnduranceAndFrenzy", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, + ["WeaponTreeMinimumEnduranceAndFrenzyCharges2H"] = { type = "Spawn", tier = 1, "+2 to Minimum Endurance Charges", "+2 to Minimum Frenzy Charges", "-2 to Maximum Power Charges", statOrder = { 1714, 1719, 1725 }, level = 30, group = "WeaponTreeMinimumChargesEnduranceAndFrenzy", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["WeaponTreeMinimumAllCharges"] = { type = "Spawn", tier = 1, "-1 to Maximum Endurance, Frenzy and Power Charges", "+1 to Minimum Endurance, Frenzy and Power Charges", statOrder = { 8956, 9069 }, level = 30, group = "WeaponTreeAllMinimumCharges", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, + ["WeaponTreeMinimumAllCharges2H"] = { type = "Spawn", tier = 1, "-1 to Maximum Endurance, Frenzy and Power Charges", "+2 to Minimum Endurance, Frenzy and Power Charges", statOrder = { 8956, 9069 }, level = 30, group = "WeaponTreeAllMinimumCharges", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeMaximumFrenzyCharges"] = { type = "MergeOnly", tier = 1, "-1 to Maximum Endurance Charges", "+1 to Maximum Frenzy Charges", "-1 to Maximum Power Charges", statOrder = { 1715, 1720, 1725 }, level = 70, group = "WeaponTreeMaximumCharges", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeMaximumFrenzyCharges2H"] = { type = "MergeOnly", tier = 1, "-2 to Maximum Endurance Charges", "+2 to Maximum Frenzy Charges", "-2 to Maximum Power Charges", statOrder = { 1715, 1720, 1725 }, level = 70, group = "WeaponTreeMaximumCharges", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeMaximumPowerCharges"] = { type = "MergeOnly", tier = 1, "-1 to Maximum Endurance Charges", "-1 to Maximum Frenzy Charges", "+1 to Maximum Power Charges", statOrder = { 1715, 1720, 1725 }, level = 70, group = "WeaponTreeMaximumCharges", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeMaximumPowerCharges2H"] = { type = "MergeOnly", tier = 1, "-2 to Maximum Endurance Charges", "-2 to Maximum Frenzy Charges", "+2 to Maximum Power Charges", statOrder = { 1715, 1720, 1725 }, level = 70, group = "WeaponTreeMaximumCharges", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeMaximumEnduranceCharges"] = { type = "MergeOnly", tier = 1, "+1 to Maximum Endurance Charges", "-1 to Maximum Frenzy Charges", "-1 to Maximum Power Charges", statOrder = { 1715, 1720, 1725 }, level = 70, group = "WeaponTreeMaximumCharges", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeMaximumEnduranceCharges2H"] = { type = "MergeOnly", tier = 1, "+2 to Maximum Endurance Charges", "-2 to Maximum Frenzy Charges", "-2 to Maximum Power Charges", statOrder = { 1715, 1720, 1725 }, level = 70, group = "WeaponTreeMaximumCharges", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeMovementSpeedPerFrenzyCharge"] = { type = "Spawn", tier = 1, "4% increased Movement Speed per Frenzy Charge", "-1 to Maximum Frenzy Charges", statOrder = { 1713, 1720 }, level = 50, group = "WeaponTreeMovementSpeedPerFrenzyCharge", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, + ["WeaponTreeMovementSpeedPerFrenzyCharge2H"] = { type = "Spawn", tier = 1, "6% increased Movement Speed per Frenzy Charge", "-1 to Maximum Frenzy Charges", statOrder = { 1713, 1720 }, level = 50, group = "WeaponTreeMovementSpeedPerFrenzyCharge", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeCooldownRecoveryPerPowerCharge"] = { type = "Spawn", tier = 1, "-1 to Maximum Power Charges", "4% increased Cooldown Recovery Rate per Power Charge", statOrder = { 1725, 5767 }, level = 50, group = "WeaponTreeCooldownRecoveryPerPowerCharge", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, + ["WeaponTreeCooldownRecoveryPerPowerCharge2H"] = { type = "Spawn", tier = 1, "-1 to Maximum Power Charges", "6% increased Cooldown Recovery Rate per Power Charge", statOrder = { 1725, 5767 }, level = 50, group = "WeaponTreeCooldownRecoveryPerPowerCharge", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeAreaOfEffectPerEnduranceCharge"] = { type = "Spawn", tier = 1, "-1 to Maximum Endurance Charges", "8% increased Area of Effect per Endurance Charge", statOrder = { 1715, 4633 }, level = 50, group = "WeaponTreeAreaOfEffectPerEnduranceCharge", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, + ["WeaponTreeAreaOfEffectPerEnduranceCharge2H"] = { type = "Spawn", tier = 1, "-1 to Maximum Endurance Charges", "12% increased Area of Effect per Endurance Charge", statOrder = { 1715, 4633 }, level = 50, group = "WeaponTreeAreaOfEffectPerEnduranceCharge", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeDamagePerCharge"] = { type = "Spawn", tier = 1, "15% increased Damage per Endurance, Frenzy or Power Charge", "-1 to Maximum Endurance, Frenzy and Power Charges", statOrder = { 5959, 8956 }, level = 70, group = "WeaponTreeDamagePerCharge", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, + ["WeaponTreeDamagePerCharge2H"] = { type = "Spawn", tier = 1, "25% increased Damage per Endurance, Frenzy or Power Charge", "-1 to Maximum Endurance, Frenzy and Power Charges", statOrder = { 5959, 8956 }, level = 70, group = "WeaponTreeDamagePerCharge", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeRampage1"] = { type = "MergeOnly", tier = 1, "Rampage", statOrder = { 10539 }, level = 86, group = "WeaponTreeSimulatedRampage", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeHeraldOfAgonyEffectAndReservation1"] = { type = "Spawn", tier = 1, "Herald of Agony has 25% increased Buff Effect", "Herald of Agony has 25% increased Reservation", statOrder = { 6974, 6977 }, level = 16, group = "WeaponTreeHeraldOfAgonyEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, + ["WeaponTreeHeraldOfAgonyEffectAndReservation2"] = { type = "Spawn", tier = 2, "Herald of Agony has 35% increased Buff Effect", "Herald of Agony has 25% increased Reservation", statOrder = { 6974, 6977 }, level = 56, group = "WeaponTreeHeraldOfAgonyEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, + ["WeaponTreeHeraldOfAgonyEffectAndReservation3"] = { type = "Spawn", tier = 3, "Herald of Agony has 45% increased Buff Effect", "Herald of Agony has 25% increased Reservation", statOrder = { 6974, 6977 }, level = 82, group = "WeaponTreeHeraldOfAgonyEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, + ["WeaponTreeHeraldOfAgonyEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Herald of Agony has 50% increased Buff Effect", "Herald of Agony has 50% increased Reservation", statOrder = { 6974, 6977 }, level = 16, group = "WeaponTreeHeraldOfAgonyEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeHeraldOfAgonyEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Herald of Agony has 70% increased Buff Effect", "Herald of Agony has 50% increased Reservation", statOrder = { 6974, 6977 }, level = 56, group = "WeaponTreeHeraldOfAgonyEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeHeraldOfAgonyEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Herald of Agony has 90% increased Buff Effect", "Herald of Agony has 50% increased Reservation", statOrder = { 6974, 6977 }, level = 82, group = "WeaponTreeHeraldOfAgonyEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeHeraldOfAshEffectAndReservation1"] = { type = "Spawn", tier = 1, "Herald of Ash has 25% increased Reservation", "Herald of Ash has 25% increased Buff Effect", statOrder = { 3938, 6978 }, level = 16, group = "WeaponTreeHeraldOfAshEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, + ["WeaponTreeHeraldOfAshEffectAndReservation2"] = { type = "Spawn", tier = 2, "Herald of Ash has 25% increased Reservation", "Herald of Ash has 35% increased Buff Effect", statOrder = { 3938, 6978 }, level = 56, group = "WeaponTreeHeraldOfAshEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, + ["WeaponTreeHeraldOfAshEffectAndReservation3"] = { type = "Spawn", tier = 3, "Herald of Ash has 25% increased Reservation", "Herald of Ash has 45% increased Buff Effect", statOrder = { 3938, 6978 }, level = 82, group = "WeaponTreeHeraldOfAshEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, + ["WeaponTreeHeraldOfAshEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Herald of Ash has 50% increased Reservation", "Herald of Ash has 50% increased Buff Effect", statOrder = { 3938, 6978 }, level = 16, group = "WeaponTreeHeraldOfAshEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeHeraldOfAshEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Herald of Ash has 50% increased Reservation", "Herald of Ash has 70% increased Buff Effect", statOrder = { 3938, 6978 }, level = 56, group = "WeaponTreeHeraldOfAshEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeHeraldOfAshEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Herald of Ash has 50% increased Reservation", "Herald of Ash has 90% increased Buff Effect", statOrder = { 3938, 6978 }, level = 82, group = "WeaponTreeHeraldOfAshEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeHeraldOfIceEffectAndReservation1"] = { type = "Spawn", tier = 1, "Herald of Ice has 25% increased Reservation", "Herald of Ice has 25% increased Buff Effect", statOrder = { 3939, 6982 }, level = 16, group = "WeaponTreeHeraldOfIceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, + ["WeaponTreeHeraldOfIceEffectAndReservation2"] = { type = "Spawn", tier = 2, "Herald of Ice has 25% increased Reservation", "Herald of Ice has 35% increased Buff Effect", statOrder = { 3939, 6982 }, level = 56, group = "WeaponTreeHeraldOfIceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, + ["WeaponTreeHeraldOfIceEffectAndReservation3"] = { type = "Spawn", tier = 3, "Herald of Ice has 25% increased Reservation", "Herald of Ice has 45% increased Buff Effect", statOrder = { 3939, 6982 }, level = 82, group = "WeaponTreeHeraldOfIceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, + ["WeaponTreeHeraldOfIceEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Herald of Ice has 50% increased Reservation", "Herald of Ice has 50% increased Buff Effect", statOrder = { 3939, 6982 }, level = 16, group = "WeaponTreeHeraldOfIceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeHeraldOfIceEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Herald of Ice has 50% increased Reservation", "Herald of Ice has 70% increased Buff Effect", statOrder = { 3939, 6982 }, level = 56, group = "WeaponTreeHeraldOfIceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeHeraldOfIceEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Herald of Ice has 50% increased Reservation", "Herald of Ice has 90% increased Buff Effect", statOrder = { 3939, 6982 }, level = 82, group = "WeaponTreeHeraldOfIceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeHeraldOfPurityEffectAndReservation1"] = { type = "Spawn", tier = 1, "Herald of Purity has 25% increased Buff Effect", "Herald of Purity has 25% increased Reservation", statOrder = { 6986, 6990 }, level = 16, group = "WeaponTreeHeraldOfPurityEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, + ["WeaponTreeHeraldOfPurityEffectAndReservation2"] = { type = "Spawn", tier = 2, "Herald of Purity has 35% increased Buff Effect", "Herald of Purity has 25% increased Reservation", statOrder = { 6986, 6990 }, level = 56, group = "WeaponTreeHeraldOfPurityEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, + ["WeaponTreeHeraldOfPurityEffectAndReservation3"] = { type = "Spawn", tier = 3, "Herald of Purity has 45% increased Buff Effect", "Herald of Purity has 25% increased Reservation", statOrder = { 6986, 6990 }, level = 82, group = "WeaponTreeHeraldOfPurityEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, + ["WeaponTreeHeraldOfPurityEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Herald of Purity has 50% increased Buff Effect", "Herald of Purity has 50% increased Reservation", statOrder = { 6986, 6990 }, level = 16, group = "WeaponTreeHeraldOfPurityEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeHeraldOfPurityEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Herald of Purity has 70% increased Buff Effect", "Herald of Purity has 50% increased Reservation", statOrder = { 6986, 6990 }, level = 56, group = "WeaponTreeHeraldOfPurityEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeHeraldOfPurityEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Herald of Purity has 90% increased Buff Effect", "Herald of Purity has 50% increased Reservation", statOrder = { 6986, 6990 }, level = 82, group = "WeaponTreeHeraldOfPurityEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeHeraldOfLightningEffectAndReservation1"] = { type = "Spawn", tier = 1, "Herald of Thunder has 25% increased Reservation", "Herald of Thunder has 25% increased Buff Effect", statOrder = { 3940, 6992 }, level = 16, group = "WeaponTreeHeraldOfLightningEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, + ["WeaponTreeHeraldOfLightningEffectAndReservation2"] = { type = "Spawn", tier = 2, "Herald of Thunder has 25% increased Reservation", "Herald of Thunder has 35% increased Buff Effect", statOrder = { 3940, 6992 }, level = 56, group = "WeaponTreeHeraldOfLightningEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, + ["WeaponTreeHeraldOfLightningEffectAndReservation3"] = { type = "Spawn", tier = 3, "Herald of Thunder has 25% increased Reservation", "Herald of Thunder has 45% increased Buff Effect", statOrder = { 3940, 6992 }, level = 82, group = "WeaponTreeHeraldOfLightningEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, + ["WeaponTreeHeraldOfLightningEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Herald of Thunder has 50% increased Reservation", "Herald of Thunder has 50% increased Buff Effect", statOrder = { 3940, 6992 }, level = 16, group = "WeaponTreeHeraldOfLightningEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeHeraldOfLightningEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Herald of Thunder has 50% increased Reservation", "Herald of Thunder has 70% increased Buff Effect", statOrder = { 3940, 6992 }, level = 56, group = "WeaponTreeHeraldOfLightningEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeHeraldOfLightningEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Herald of Thunder has 50% increased Reservation", "Herald of Thunder has 90% increased Buff Effect", statOrder = { 3940, 6992 }, level = 82, group = "WeaponTreeHeraldOfLightningEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeAngerEffectAndReservation1"] = { type = "Spawn", tier = 1, "Anger has 20% increased Aura Effect", "Anger has 25% increased Reservation", statOrder = { 3264, 3325 }, level = 24, group = "WeaponTreeAngerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, + ["WeaponTreeAngerEffectAndReservation2"] = { type = "Spawn", tier = 2, "Anger has 25% increased Aura Effect", "Anger has 25% increased Reservation", statOrder = { 3264, 3325 }, level = 56, group = "WeaponTreeAngerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, + ["WeaponTreeAngerEffectAndReservation3"] = { type = "Spawn", tier = 3, "Anger has 30% increased Aura Effect", "Anger has 25% increased Reservation", statOrder = { 3264, 3325 }, level = 82, group = "WeaponTreeAngerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, + ["WeaponTreeAngerEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Anger has 40% increased Aura Effect", "Anger has 50% increased Reservation", statOrder = { 3264, 3325 }, level = 24, group = "WeaponTreeAngerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeAngerEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Anger has 50% increased Aura Effect", "Anger has 50% increased Reservation", statOrder = { 3264, 3325 }, level = 56, group = "WeaponTreeAngerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeAngerEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Anger has 60% increased Aura Effect", "Anger has 50% increased Reservation", statOrder = { 3264, 3325 }, level = 82, group = "WeaponTreeAngerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeWrathEffectAndReservation1"] = { type = "Spawn", tier = 1, "Wrath has 20% increased Aura Effect", "Wrath has 25% increased Reservation", statOrder = { 3269, 3950 }, level = 24, group = "WeaponTreeWrathEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, + ["WeaponTreeWrathEffectAndReservation2"] = { type = "Spawn", tier = 2, "Wrath has 25% increased Aura Effect", "Wrath has 25% increased Reservation", statOrder = { 3269, 3950 }, level = 56, group = "WeaponTreeWrathEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, + ["WeaponTreeWrathEffectAndReservation3"] = { type = "Spawn", tier = 3, "Wrath has 30% increased Aura Effect", "Wrath has 25% increased Reservation", statOrder = { 3269, 3950 }, level = 82, group = "WeaponTreeWrathEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, + ["WeaponTreeWrathEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Wrath has 40% increased Aura Effect", "Wrath has 50% increased Reservation", statOrder = { 3269, 3950 }, level = 24, group = "WeaponTreeWrathEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeWrathEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Wrath has 50% increased Aura Effect", "Wrath has 50% increased Reservation", statOrder = { 3269, 3950 }, level = 56, group = "WeaponTreeWrathEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeWrathEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Wrath has 60% increased Aura Effect", "Wrath has 50% increased Reservation", statOrder = { 3269, 3950 }, level = 82, group = "WeaponTreeWrathEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeHatredEffectAndReservation1"] = { type = "Spawn", tier = 1, "Hatred has 20% increased Aura Effect", "Hatred has 25% increased Reservation", statOrder = { 3274, 3942 }, level = 24, group = "WeaponTreeHatredEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, + ["WeaponTreeHatredEffectAndReservation2"] = { type = "Spawn", tier = 2, "Hatred has 25% increased Aura Effect", "Hatred has 25% increased Reservation", statOrder = { 3274, 3942 }, level = 56, group = "WeaponTreeHatredEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, + ["WeaponTreeHatredEffectAndReservation3"] = { type = "Spawn", tier = 3, "Hatred has 30% increased Aura Effect", "Hatred has 25% increased Reservation", statOrder = { 3274, 3942 }, level = 82, group = "WeaponTreeHatredEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, + ["WeaponTreeHatredEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Hatred has 40% increased Aura Effect", "Hatred has 50% increased Reservation", statOrder = { 3274, 3942 }, level = 24, group = "WeaponTreeHatredEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeHatredEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Hatred has 50% increased Aura Effect", "Hatred has 50% increased Reservation", statOrder = { 3274, 3942 }, level = 56, group = "WeaponTreeHatredEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeHatredEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Hatred has 60% increased Aura Effect", "Hatred has 50% increased Reservation", statOrder = { 3274, 3942 }, level = 82, group = "WeaponTreeHatredEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeDeterminationEffectAndReservation1"] = { type = "Spawn", tier = 1, "Determination has 20% increased Aura Effect", "Determination has 25% increased Reservation", statOrder = { 3275, 3944 }, level = 24, group = "WeaponTreeDeterminationEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeDeterminationEffectAndReservation2"] = { type = "Spawn", tier = 2, "Determination has 25% increased Aura Effect", "Determination has 25% increased Reservation", statOrder = { 3275, 3944 }, level = 56, group = "WeaponTreeDeterminationEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeDeterminationEffectAndReservation3"] = { type = "Spawn", tier = 3, "Determination has 30% increased Aura Effect", "Determination has 25% increased Reservation", statOrder = { 3275, 3944 }, level = 82, group = "WeaponTreeDeterminationEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeDisciplineEffectAndReservation1"] = { type = "Spawn", tier = 1, "Discipline has 20% increased Aura Effect", "Discipline has 25% increased Reservation", statOrder = { 3276, 3945 }, level = 24, group = "WeaponTreeDisciplineEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeDisciplineEffectAndReservation2"] = { type = "Spawn", tier = 2, "Discipline has 25% increased Aura Effect", "Discipline has 25% increased Reservation", statOrder = { 3276, 3945 }, level = 56, group = "WeaponTreeDisciplineEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeDisciplineEffectAndReservation3"] = { type = "Spawn", tier = 3, "Discipline has 30% increased Aura Effect", "Discipline has 25% increased Reservation", statOrder = { 3276, 3945 }, level = 82, group = "WeaponTreeDisciplineEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeGraceEffectAndReservation1"] = { type = "Spawn", tier = 1, "Grace has 20% increased Aura Effect", "Grace has 25% increased Reservation", statOrder = { 3271, 3951 }, level = 24, group = "WeaponTreeGraceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeGraceEffectAndReservation2"] = { type = "Spawn", tier = 2, "Grace has 25% increased Aura Effect", "Grace has 25% increased Reservation", statOrder = { 3271, 3951 }, level = 56, group = "WeaponTreeGraceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeGraceEffectAndReservation3"] = { type = "Spawn", tier = 3, "Grace has 30% increased Aura Effect", "Grace has 25% increased Reservation", statOrder = { 3271, 3951 }, level = 82, group = "WeaponTreeGraceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeZealotryEffectAndReservation1"] = { type = "Spawn", tier = 1, "Zealotry has 20% increased Aura Effect", "Zealotry has 25% increased Reservation", statOrder = { 10495, 10498 }, level = 24, group = "WeaponTreeZealotryEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, + ["WeaponTreeZealotryEffectAndReservation2"] = { type = "Spawn", tier = 2, "Zealotry has 25% increased Aura Effect", "Zealotry has 25% increased Reservation", statOrder = { 10495, 10498 }, level = 56, group = "WeaponTreeZealotryEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, + ["WeaponTreeZealotryEffectAndReservation3"] = { type = "Spawn", tier = 3, "Zealotry has 30% increased Aura Effect", "Zealotry has 25% increased Reservation", statOrder = { 10495, 10498 }, level = 82, group = "WeaponTreeZealotryEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, + ["WeaponTreeZealotryEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Zealotry has 40% increased Aura Effect", "Zealotry has 50% increased Reservation", statOrder = { 10495, 10498 }, level = 24, group = "WeaponTreeZealotryEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeZealotryEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Zealotry has 50% increased Aura Effect", "Zealotry has 50% increased Reservation", statOrder = { 10495, 10498 }, level = 56, group = "WeaponTreeZealotryEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeZealotryEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Zealotry has 60% increased Aura Effect", "Zealotry has 50% increased Reservation", statOrder = { 10495, 10498 }, level = 82, group = "WeaponTreeZealotryEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreePrideEffectAndReservation1"] = { type = "Spawn", tier = 1, "Pride has 20% increased Aura Effect", "Pride has 25% increased Reservation", statOrder = { 9498, 9504 }, level = 24, group = "WeaponTreePrideEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, + ["WeaponTreePrideEffectAndReservation2"] = { type = "Spawn", tier = 2, "Pride has 25% increased Aura Effect", "Pride has 25% increased Reservation", statOrder = { 9498, 9504 }, level = 56, group = "WeaponTreePrideEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, + ["WeaponTreePrideEffectAndReservation3"] = { type = "Spawn", tier = 3, "Pride has 30% increased Aura Effect", "Pride has 25% increased Reservation", statOrder = { 9498, 9504 }, level = 82, group = "WeaponTreePrideEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, + ["WeaponTreePrideEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Pride has 40% increased Aura Effect", "Pride has 50% increased Reservation", statOrder = { 9498, 9504 }, level = 24, group = "WeaponTreePrideEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreePrideEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Pride has 50% increased Aura Effect", "Pride has 50% increased Reservation", statOrder = { 9498, 9504 }, level = 56, group = "WeaponTreePrideEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreePrideEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Pride has 60% increased Aura Effect", "Pride has 50% increased Reservation", statOrder = { 9498, 9504 }, level = 82, group = "WeaponTreePrideEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreePurityOfFireEffectAndReservation1"] = { type = "Spawn", tier = 1, "Purity of Fire has 20% increased Aura Effect", "Purity of Fire has 25% increased Reservation", statOrder = { 3266, 3947 }, level = 24, group = "WeaponTreePurityOfFireEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreePurityOfFireEffectAndReservation2"] = { type = "Spawn", tier = 2, "Purity of Fire has 25% increased Aura Effect", "Purity of Fire has 25% increased Reservation", statOrder = { 3266, 3947 }, level = 56, group = "WeaponTreePurityOfFireEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreePurityOfFireEffectAndReservation3"] = { type = "Spawn", tier = 3, "Purity of Fire has 30% increased Aura Effect", "Purity of Fire has 25% increased Reservation", statOrder = { 3266, 3947 }, level = 82, group = "WeaponTreePurityOfFireEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreePurityOfIceEffectAndReservation1"] = { type = "Spawn", tier = 1, "Purity of Ice has 20% increased Aura Effect", "Purity of Ice has 25% increased Reservation", statOrder = { 3267, 3943 }, level = 24, group = "WeaponTreePurityOfIceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreePurityOfIceEffectAndReservation2"] = { type = "Spawn", tier = 2, "Purity of Ice has 25% increased Aura Effect", "Purity of Ice has 25% increased Reservation", statOrder = { 3267, 3943 }, level = 56, group = "WeaponTreePurityOfIceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreePurityOfIceEffectAndReservation3"] = { type = "Spawn", tier = 3, "Purity of Ice has 30% increased Aura Effect", "Purity of Ice has 25% increased Reservation", statOrder = { 3267, 3943 }, level = 82, group = "WeaponTreePurityOfIceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreePurityOfLightningEffectAndReservation1"] = { type = "Spawn", tier = 1, "Purity of Lightning has 20% increased Aura Effect", "Purity of Lightning has 25% increased Reservation", statOrder = { 3268, 3948 }, level = 24, group = "WeaponTreePurityOfLightningEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreePurityOfLightningEffectAndReservation2"] = { type = "Spawn", tier = 2, "Purity of Lightning has 25% increased Aura Effect", "Purity of Lightning has 25% increased Reservation", statOrder = { 3268, 3948 }, level = 56, group = "WeaponTreePurityOfLightningEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreePurityOfLightningEffectAndReservation3"] = { type = "Spawn", tier = 3, "Purity of Lightning has 30% increased Aura Effect", "Purity of Lightning has 25% increased Reservation", statOrder = { 3268, 3948 }, level = 82, group = "WeaponTreePurityOfLightningEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreePurityOfElementsEffectAndReservation1"] = { type = "Spawn", tier = 1, "Purity of Elements has 20% increased Aura Effect", "Purity of Elements has 25% increased Reservation", statOrder = { 3265, 3946 }, level = 24, group = "WeaponTreePurityOfElementsEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreePurityOfElementsEffectAndReservation2"] = { type = "Spawn", tier = 2, "Purity of Elements has 25% increased Aura Effect", "Purity of Elements has 25% increased Reservation", statOrder = { 3265, 3946 }, level = 56, group = "WeaponTreePurityOfElementsEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreePurityOfElementsEffectAndReservation3"] = { type = "Spawn", tier = 3, "Purity of Elements has 30% increased Aura Effect", "Purity of Elements has 25% increased Reservation", statOrder = { 3265, 3946 }, level = 82, group = "WeaponTreePurityOfElementsEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeMalevolenceEffectAndReservation1"] = { type = "Spawn", tier = 1, "Malevolence has 20% increased Aura Effect", "Malevolence has 25% increased Reservation", statOrder = { 6055, 6056 }, level = 24, group = "WeaponTreeMalevolenceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, + ["WeaponTreeMalevolenceEffectAndReservation2"] = { type = "Spawn", tier = 2, "Malevolence has 25% increased Aura Effect", "Malevolence has 25% increased Reservation", statOrder = { 6055, 6056 }, level = 56, group = "WeaponTreeMalevolenceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, + ["WeaponTreeMalevolenceEffectAndReservation3"] = { type = "Spawn", tier = 3, "Malevolence has 30% increased Aura Effect", "Malevolence has 25% increased Reservation", statOrder = { 6055, 6056 }, level = 82, group = "WeaponTreeMalevolenceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, + ["WeaponTreeMalevolenceEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Malevolence has 40% increased Aura Effect", "Malevolence has 50% increased Reservation", statOrder = { 6055, 6056 }, level = 24, group = "WeaponTreeMalevolenceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeMalevolenceEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Malevolence has 50% increased Aura Effect", "Malevolence has 50% increased Reservation", statOrder = { 6055, 6056 }, level = 56, group = "WeaponTreeMalevolenceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeMalevolenceEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Malevolence has 60% increased Aura Effect", "Malevolence has 50% increased Reservation", statOrder = { 6055, 6056 }, level = 82, group = "WeaponTreeMalevolenceEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeHasteEffectAndReservation1"] = { type = "Spawn", tier = 1, "Haste has 20% increased Aura Effect", "Haste has 25% increased Reservation", statOrder = { 3272, 3952 }, level = 24, group = "WeaponTreeHasteEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, + ["WeaponTreeHasteEffectAndReservation2"] = { type = "Spawn", tier = 2, "Haste has 25% increased Aura Effect", "Haste has 25% increased Reservation", statOrder = { 3272, 3952 }, level = 56, group = "WeaponTreeHasteEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, + ["WeaponTreeHasteEffectAndReservation3"] = { type = "Spawn", tier = 3, "Haste has 30% increased Aura Effect", "Haste has 25% increased Reservation", statOrder = { 3272, 3952 }, level = 82, group = "WeaponTreeHasteEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, + ["WeaponTreeHasteEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Haste has 40% increased Aura Effect", "Haste has 50% increased Reservation", statOrder = { 3272, 3952 }, level = 24, group = "WeaponTreeHasteEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeHasteEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Haste has 50% increased Aura Effect", "Haste has 50% increased Reservation", statOrder = { 3272, 3952 }, level = 56, group = "WeaponTreeHasteEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreeHasteEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Haste has 60% increased Aura Effect", "Haste has 50% increased Reservation", statOrder = { 3272, 3952 }, level = 82, group = "WeaponTreeHasteEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["WeaponTreePrecisionEffectAndReservation1"] = { type = "Spawn", tier = 1, "Precision has 20% increased Aura Effect", "Precision has 25% increased Reservation", statOrder = { 3273, 9495 }, level = 8, group = "WeaponTreePrecisionEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "shield", "default", }, weightVal = { 37, 150, 150, 0 }, modTags = { }, }, + ["WeaponTreePrecisionEffectAndReservation2"] = { type = "Spawn", tier = 2, "Precision has 25% increased Aura Effect", "Precision has 25% increased Reservation", statOrder = { 3273, 9495 }, level = 56, group = "WeaponTreePrecisionEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "shield", "default", }, weightVal = { 37, 150, 150, 0 }, modTags = { }, }, + ["WeaponTreePrecisionEffectAndReservation3"] = { type = "Spawn", tier = 3, "Precision has 30% increased Aura Effect", "Precision has 25% increased Reservation", statOrder = { 3273, 9495 }, level = 82, group = "WeaponTreePrecisionEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "wand", "one_hand_weapon", "shield", "default", }, weightVal = { 37, 150, 150, 0 }, modTags = { }, }, + ["WeaponTreePrecisionEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Precision has 40% increased Aura Effect", "Precision has 50% increased Reservation", statOrder = { 3273, 9495 }, level = 8, group = "WeaponTreePrecisionEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 37, 150, 0 }, modTags = { }, }, + ["WeaponTreePrecisionEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Precision has 50% increased Aura Effect", "Precision has 50% increased Reservation", statOrder = { 3273, 9495 }, level = 56, group = "WeaponTreePrecisionEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 37, 150, 0 }, modTags = { }, }, + ["WeaponTreePrecisionEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Precision has 60% increased Aura Effect", "Precision has 50% increased Reservation", statOrder = { 3273, 9495 }, level = 82, group = "WeaponTreePrecisionEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 37, 150, 0 }, modTags = { }, }, + ["WeaponTreeBannerEffectAndReservation1"] = { type = "Spawn", tier = 1, "Banner Skills have 20% increased Aura Effect", "25% increased Reservation of Banner Skills", statOrder = { 3270, 4867 }, level = 8, group = "WeaponTreeBannerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 150, 150, 0 }, modTags = { }, }, + ["WeaponTreeBannerEffectAndReservation2"] = { type = "Spawn", tier = 2, "Banner Skills have 25% increased Aura Effect", "25% increased Reservation of Banner Skills", statOrder = { 3270, 4867 }, level = 56, group = "WeaponTreeBannerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 150, 150, 0 }, modTags = { }, }, + ["WeaponTreeBannerEffectAndReservation3"] = { type = "Spawn", tier = 3, "Banner Skills have 30% increased Aura Effect", "25% increased Reservation of Banner Skills", statOrder = { 3270, 4867 }, level = 82, group = "WeaponTreeBannerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 150, 150, 0 }, modTags = { }, }, + ["WeaponTreeBannerEffectAndReservation2h1"] = { type = "Spawn", tier = 1, "Banner Skills have 40% increased Aura Effect", "50% increased Reservation of Banner Skills", statOrder = { 3270, 4867 }, level = 8, group = "WeaponTreeBannerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 37, 150, 0 }, modTags = { }, }, + ["WeaponTreeBannerEffectAndReservation2h2"] = { type = "Spawn", tier = 2, "Banner Skills have 50% increased Aura Effect", "50% increased Reservation of Banner Skills", statOrder = { 3270, 4867 }, level = 56, group = "WeaponTreeBannerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 37, 150, 0 }, modTags = { }, }, + ["WeaponTreeBannerEffectAndReservation2h3"] = { type = "Spawn", tier = 3, "Banner Skills have 60% increased Aura Effect", "50% increased Reservation of Banner Skills", statOrder = { 3270, 4867 }, level = 82, group = "WeaponTreeBannerEffectAndReservation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 37, 150, 0 }, modTags = { }, }, + ["WeaponTreeSpellSuppressionSpellDamageSuppressed1"] = { type = "Spawn", tier = 1, "-5% to amount of Suppressed Spell Damage Prevented", "+20% chance to Suppress Spell Damage", statOrder = { 1054, 1056 }, level = 15, group = "WeaponTreeSpellSuppressionSpellDamageSuppressed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellSuppressionSpellDamageSuppressed2"] = { type = "Spawn", tier = 2, "-5% to amount of Suppressed Spell Damage Prevented", "+25% chance to Suppress Spell Damage", statOrder = { 1054, 1056 }, level = 60, group = "WeaponTreeSpellSuppressionSpellDamageSuppressed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellDamageSuppressedSpellSuppression1"] = { type = "Spawn", tier = 1, "Prevent +2% of Suppressed Spell Damage", "-10% chance to Suppress Spell Damage", statOrder = { 1054, 1056 }, level = 15, group = "WeaponTreeSpellDamageSuppressedSpellSuppression", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellDamageSuppressedSpellSuppression2"] = { type = "Spawn", tier = 2, "Prevent +3% of Suppressed Spell Damage", "-10% chance to Suppress Spell Damage", statOrder = { 1054, 1056 }, level = 60, group = "WeaponTreeSpellDamageSuppressedSpellSuppression", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellSuppressionSpellSuppressionIfSuppressedRecently1"] = { type = "Spawn", tier = 1, "+20% chance to Suppress Spell Damage", "-15% chance to Suppress Spell Damage if you've Suppressed Spell Damage Recently", statOrder = { 1056, 9968 }, level = 5, group = "WeaponTreeSpellSuppressionSpellSuppressionIfSuppressedRecently", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeSpellSuppressionSpellSuppressionIfSuppressedRecently2"] = { type = "Spawn", tier = 2, "+25% chance to Suppress Spell Damage", "-18% chance to Suppress Spell Damage if you've Suppressed Spell Damage Recently", statOrder = { 1056, 9968 }, level = 55, group = "WeaponTreeSpellSuppressionSpellSuppressionIfSuppressedRecently", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeLifeOnSupress1"] = { type = "Spawn", tier = 1, "Recover 2% of Life when you Suppress Spell Damage", statOrder = { 9630 }, level = 15, group = "WeaponTreeLifeOnSupress", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeLifeOnSupress2"] = { type = "Spawn", tier = 2, "Recover 3% of Life when you Suppress Spell Damage", statOrder = { 9630 }, level = 60, group = "WeaponTreeLifeOnSupress", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeLifeOnBlock1"] = { type = "Spawn", tier = 1, "Recover 30 Life when you Block", statOrder = { 1671 }, level = 1, group = "WeaponTreeLifeOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeLifeOnBlock2"] = { type = "Spawn", tier = 2, "Recover 50 Life when you Block", statOrder = { 1671 }, level = 50, group = "WeaponTreeLifeOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeEnergyShieldOnBlock1"] = { type = "Spawn", tier = 1, "Gain 30 Energy Shield when you Block", statOrder = { 1670 }, level = 1, group = "WeaponTreeEnergyShieldOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { }, }, + ["WeaponTreeEnergyShieldOnBlock2"] = { type = "Spawn", tier = 2, "Gain 50 Energy Shield when you Block", statOrder = { 1670 }, level = 50, group = "WeaponTreeEnergyShieldOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { }, }, + ["WeaponTreeManaOnBlock1"] = { type = "Spawn", tier = 1, "30 Mana gained when you Block", statOrder = { 1669 }, level = 1, group = "WeaponTreeManaOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeManaOnBlock2"] = { type = "Spawn", tier = 2, "50 Mana gained when you Block", statOrder = { 1669 }, level = 50, group = "WeaponTreeManaOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeChillOnBlock1"] = { type = "Spawn", tier = 1, "50% chance to Chill Attackers for 4 seconds on Block", statOrder = { 5663 }, level = 1, group = "WeaponTreeChillOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, }, + ["WeaponTreeChillOnBlock2"] = { type = "Spawn", tier = 2, "Chill Attackers for 4 seconds on Block", statOrder = { 5663 }, level = 50, group = "WeaponTreeChillOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, }, + ["WeaponTreeShockOnBlock1"] = { type = "Spawn", tier = 1, "50% chance to Shock Attackers for 4 seconds on Block", statOrder = { 9789 }, level = 1, group = "WeaponTreeShockOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, }, + ["WeaponTreeShockOnBlock2"] = { type = "Spawn", tier = 2, "Shock Attackers for 4 seconds on Block", statOrder = { 9789 }, level = 50, group = "WeaponTreeShockOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, }, + ["WeaponTreeScorchOnBlock1"] = { type = "Spawn", tier = 1, "15% chance to Scorch Enemies when you Block their Damage", statOrder = { 5610 }, level = 30, group = "WeaponTreeScorchOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, }, + ["WeaponTreeScorchOnBlock2"] = { type = "Spawn", tier = 2, "20% chance to Scorch Enemies when you Block their Damage", statOrder = { 5610 }, level = 75, group = "WeaponTreeScorchOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, }, + ["WeaponTreeBrittleOnBlock1"] = { type = "Spawn", tier = 1, "15% chance to inflict Brittle on Enemies when you Block their Damage", statOrder = { 5605 }, level = 30, group = "WeaponTreeBrittleOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, }, + ["WeaponTreeBrittleOnBlock2"] = { type = "Spawn", tier = 2, "20% chance to inflict Brittle on Enemies when you Block their Damage", statOrder = { 5605 }, level = 75, group = "WeaponTreeBrittleOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, }, + ["WeaponTreeSapOnBlock1"] = { type = "Spawn", tier = 1, "15% chance to Sap Enemies when you Block their Damage", statOrder = { 5609 }, level = 30, group = "WeaponTreeSapOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, }, + ["WeaponTreeSapOnBlock2"] = { type = "Spawn", tier = 2, "20% chance to Sap Enemies when you Block their Damage", statOrder = { 5609 }, level = 75, group = "WeaponTreeSapOnBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, }, + ["WeaponTreeMaxBlockDamageFromBlockedHits1"] = { type = "Spawn", tier = 1, "+2% to maximum Chance to Block Attack Damage", "You take 5% of Damage from Blocked Hits", statOrder = { 1897, 4890 }, level = 45, group = "WeaponTreeMaxBlockDamageFromBlockedHits", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, }, + ["WeaponTreeMaxBlockDamageFromBlockedHits2"] = { type = "Spawn", tier = 2, "+3% to maximum Chance to Block Attack Damage", "You take 5% of Damage from Blocked Hits", statOrder = { 1897, 4890 }, level = 82, group = "WeaponTreeMaxBlockDamageFromBlockedHits", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, }, + ["WeaponTreeMaxSpellBlockDamageFromBlockedHits1"] = { type = "Spawn", tier = 1, "+2% to maximum Chance to Block Spell Damage", "You take 5% of Damage from Blocked Hits", statOrder = { 1898, 4890 }, level = 75, group = "WeaponTreeMaxSpellBlockDamageFromBlockedHits", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, }, + ["WeaponTreeMaxSpellBlockDamageFromBlockedHits2"] = { type = "Spawn", tier = 2, "+3% to maximum Chance to Block Spell Damage", "You take 5% of Damage from Blocked Hits", statOrder = { 1898, 4890 }, level = 82, group = "WeaponTreeMaxSpellBlockDamageFromBlockedHits", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, }, + ["WeaponTreeAvoidIgniteChanceToBeShocked1"] = { type = "Spawn", tier = 1, "60% chance to Avoid being Ignited", "+20% chance to be Shocked", statOrder = { 1757, 2858 }, level = 1, group = "WeaponTreeAvoidIgniteChanceToBeShocked", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, }, + ["WeaponTreeAvoidIgniteChanceToBeShocked2"] = { type = "Spawn", tier = 2, "100% chance to Avoid being Ignited", "+20% chance to be Shocked", statOrder = { 1757, 2858 }, level = 60, group = "WeaponTreeAvoidIgniteChanceToBeShocked", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, }, + ["WeaponTreeAvoidFreezeChanceToBeIgnited1"] = { type = "Spawn", tier = 1, "60% chance to Avoid being Frozen", "+20% chance to be Ignited", statOrder = { 1756, 2857 }, level = 1, group = "WeaponTreeAvoidFreezeChanceToBeIgnited", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, }, + ["WeaponTreeAvoidFreezeChanceToBeIgnited2"] = { type = "Spawn", tier = 2, "100% chance to Avoid being Frozen", "+20% chance to be Ignited", statOrder = { 1756, 2857 }, level = 60, group = "WeaponTreeAvoidFreezeChanceToBeIgnited", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, }, + ["WeaponTreeAvoidShockChanceToBeFrozen1"] = { type = "Spawn", tier = 1, "60% chance to Avoid being Shocked", "+20% chance to be Frozen", statOrder = { 1759, 2856 }, level = 1, group = "WeaponTreeAvoidShockChanceToBeFrozen", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, }, + ["WeaponTreeAvoidShockChanceToBeFrozen2"] = { type = "Spawn", tier = 2, "100% chance to Avoid being Shocked", "+20% chance to be Frozen", statOrder = { 1759, 2856 }, level = 60, group = "WeaponTreeAvoidShockChanceToBeFrozen", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, }, + ["WeaponTreeAvoidBleedChanceToBePoisoned1"] = { type = "Spawn", tier = 1, "+20% chance to be Poisoned", "60% chance to Avoid Bleeding", statOrder = { 3278, 4123 }, level = 12, group = "WeaponTreeAvoidBleedChanceToBePoisoned", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, }, + ["WeaponTreeAvoidBleedChanceToBePoisoned2"] = { type = "Spawn", tier = 2, "+20% chance to be Poisoned", "100% chance to Avoid Bleeding", statOrder = { 3278, 4123 }, level = 65, group = "WeaponTreeAvoidBleedChanceToBePoisoned", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, }, + ["WeaponTreeAvoidPoisonBleedDurationOnSelf1"] = { type = "Spawn", tier = 1, "60% chance to Avoid being Poisoned", "50% increased Bleed Duration on you", statOrder = { 1760, 9753 }, level = 12, group = "WeaponTreeAvoidPoisonBleedDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, }, + ["WeaponTreeAvoidPoisonBleedDurationOnSelf2"] = { type = "Spawn", tier = 2, "100% chance to Avoid being Poisoned", "50% increased Bleed Duration on you", statOrder = { 1760, 9753 }, level = 65, group = "WeaponTreeAvoidPoisonBleedDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, }, + ["WeaponTreeCorruptingBloodImmunityExposureEffectOnSelf1"] = { type = "Spawn", tier = 1, "Corrupted Blood cannot be inflicted on you", "50% increased Effect of Exposure on you", statOrder = { 5301, 6407 }, level = 40, group = "WeaponTreeCorruptingBloodImmunityExposureEffectOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, }, + ["WeaponTreeExposureImmunityChanceToBeMaimed1"] = { type = "Spawn", tier = 1, "Attack Hits have 20% chance to Maim you for 4 seconds", "Immune to Exposure", statOrder = { 5539, 7092 }, level = 40, group = "WeaponTreeExposureImmunityChanceToBeMaimed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, }, + ["WeaponTreeCurseEffectOnSelfReducedDamagePerCurseOnSelf1"] = { type = "Spawn", tier = 1, "20% reduced Damage per Curse on you", "30% reduced Effect of Curses on you", statOrder = { 1128, 2079 }, level = 28, group = "WeaponTreeCurseEffectOnSelfReducedDamagePerCurseOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeCurseEffectOnSelfReducedDamagePerCurseOnSelf2"] = { type = "Spawn", tier = 2, "20% reduced Damage per Curse on you", "40% reduced Effect of Curses on you", statOrder = { 1128, 2079 }, level = 73, group = "WeaponTreeCurseEffectOnSelfReducedDamagePerCurseOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeDamagePerCurseOnSelfCurseEffectOnSelf1"] = { type = "Spawn", tier = 1, "10% increased Damage per Curse on you", "25% increased Effect of Curses on you", statOrder = { 1128, 2079 }, level = 28, group = "WeaponTreeDamagePerCurseOnSelfCurseEffectOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeDamagePerCurseOnSelfCurseEffectOnSelf2"] = { type = "Spawn", tier = 2, "15% increased Damage per Curse on you", "25% increased Effect of Curses on you", statOrder = { 1128, 2079 }, level = 73, group = "WeaponTreeDamagePerCurseOnSelfCurseEffectOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeStunThresholdStunDurationOnSelf1"] = { type = "Spawn", tier = 1, "100% increased Stun Threshold", "50% increased Stun Duration on you", statOrder = { 3180, 4081 }, level = 1, group = "WeaponTreeStunThresholdStunDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeStunThresholdStunDurationOnSelf2"] = { type = "Spawn", tier = 2, "150% increased Stun Threshold", "50% increased Stun Duration on you", statOrder = { 3180, 4081 }, level = 60, group = "WeaponTreeStunThresholdStunDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeStunRecoveryReducedStunThreshold1"] = { type = "Spawn", tier = 1, "100% increased Stun and Block Recovery", "25% reduced Stun Threshold", statOrder = { 1811, 3180 }, level = 1, group = "WeaponTreeStunRecoveryReducedStunThreshold", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeStunRecoveryReducedStunThreshold2"] = { type = "Spawn", tier = 2, "150% increased Stun and Block Recovery", "25% reduced Stun Threshold", statOrder = { 1811, 3180 }, level = 60, group = "WeaponTreeStunRecoveryReducedStunThreshold", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeEnemyCritChanceAgainstSelfReducedDamageFromCrits1"] = { type = "Spawn", tier = 1, "You take 30% reduced Extra Damage from Critical Strikes", "Hits have 100% increased Critical Strike Chance against you", statOrder = { 1423, 3038 }, level = 1, group = "WeaponTreeEnemyCritChanceAgainstSelfReducedDamageFromCrits", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeEnemyCritChanceAgainstSelfReducedDamageFromCrits2"] = { type = "Spawn", tier = 2, "You take 40% reduced Extra Damage from Critical Strikes", "Hits have 100% increased Critical Strike Chance against you", statOrder = { 1423, 3038 }, level = 45, group = "WeaponTreeEnemyCritChanceAgainstSelfReducedDamageFromCrits", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeEnemyCritChanceAgainstSelfIncreasedDamageFromCrits1"] = { type = "Spawn", tier = 1, "You take 20% increased Extra Damage from Critical Strikes", "Hits have 50% reduced Critical Strike Chance against you", statOrder = { 1423, 3038 }, level = 1, group = "WeaponTreeEnemyCritChanceAgainstSelfIncreasedDamageFromCrits", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeEnemyCritChanceAgainstSelfIncreasedDamageFromCrits2"] = { type = "Spawn", tier = 2, "You take 20% increased Extra Damage from Critical Strikes", "Hits have 70% reduced Critical Strike Chance against you", statOrder = { 1423, 3038 }, level = 45, group = "WeaponTreeEnemyCritChanceAgainstSelfIncreasedDamageFromCrits", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeElementalDamageReflectImmunePhysicalReflectDamageTaken1"] = { type = "Spawn", tier = 1, "100% reduced Reflected Elemental Damage taken", "100% increased Reflected Physical Damage taken", statOrder = { 2617, 2618 }, level = 68, group = "WeaponTreeElementalDamageReflectImmunePhysicalReflectDamageTaken", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreePhysicalDamageReflectImmuneElementalReflectDamageTaken1"] = { type = "Spawn", tier = 1, "100% increased Reflected Elemental Damage taken", "100% reduced Reflected Physical Damage taken", statOrder = { 2617, 2618 }, level = 68, group = "WeaponTreePhysicalDamageReflectImmuneElementalReflectDamageTaken", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeDamageYouReflectGainedAsLife1"] = { type = "Spawn", tier = 1, "20% of Damage you Reflect to Enemies when Hit is leeched as Life", statOrder = { 2621 }, level = 1, group = "WeaponTreeDamageYouReflectGainedAsLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeDamageYouReflectGainedAsLife2"] = { type = "Spawn", tier = 2, "30% of Damage you Reflect to Enemies when Hit is leeched as Life", statOrder = { 2621 }, level = 50, group = "WeaponTreeDamageYouReflectGainedAsLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeLifeRecoveryRateReducedMaximumLife1"] = { type = "Spawn", tier = 1, "10% reduced maximum Life", "12% increased Life Recovery rate", statOrder = { 1482, 1489 }, level = 1, group = "WeaponTreeLifeRecoveryRateReducedMaximumLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, }, + ["WeaponTreeLifeRecoveryRateReducedMaximumLife2"] = { type = "Spawn", tier = 2, "10% reduced maximum Life", "16% increased Life Recovery rate", statOrder = { 1482, 1489 }, level = 72, group = "WeaponTreeLifeRecoveryRateReducedMaximumLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 750, 0 }, modTags = { }, }, + ["WeaponTreeEnergyShieldRecoveryRateReducedLocalEnergyShield1"] = { type = "Spawn", tier = 1, "25% reduced Energy Shield", "12% increased Energy Shield Recovery rate", statOrder = { 1471, 1479 }, level = 1, group = "WeaponTreeEnergyShieldRecoveryRateReducedLocalEnergyShield", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 750, 0 }, modTags = { }, }, + ["WeaponTreeEnergyShieldRecoveryRateReducedLocalEnergyShield2"] = { type = "Spawn", tier = 2, "25% reduced Energy Shield", "16% increased Energy Shield Recovery rate", statOrder = { 1471, 1479 }, level = 72, group = "WeaponTreeEnergyShieldRecoveryRateReducedLocalEnergyShield", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 750, 0 }, modTags = { }, }, + ["WeaponTreeManaRecoveryRateReducedMaximumMana1"] = { type = "Spawn", tier = 1, "10% reduced maximum Mana", "12% increased Mana Recovery rate", statOrder = { 1491, 1497 }, level = 1, group = "WeaponTreeManaRecoveryRateReducedMaximumMana", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeManaRecoveryRateReducedMaximumMana2"] = { type = "Spawn", tier = 2, "10% reduced maximum Mana", "16% increased Mana Recovery rate", statOrder = { 1491, 1497 }, level = 72, group = "WeaponTreeManaRecoveryRateReducedMaximumMana", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeLifeRegenOnLowLife1"] = { type = "Spawn", tier = 1, "Regenerate 2% of Life per second while on Low Life", statOrder = { 1854 }, level = 1, group = "WeaponTreeLifeRegenOnLowLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeLifeRegenOnLowLife2"] = { type = "Spawn", tier = 2, "Regenerate 3% of Life per second while on Low Life", statOrder = { 1854 }, level = 50, group = "WeaponTreeLifeRegenOnLowLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeEnergyShieldRegenOnLowLife1"] = { type = "Spawn", tier = 1, "Regenerate 2% of Energy Shield per second while on Low Life", statOrder = { 1712 }, level = 10, group = "WeaponTreeEnergyShieldRegenOnLowLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeEnergyShieldRegenOnLowLife2"] = { type = "Spawn", tier = 2, "Regenerate 3% of Energy Shield per second while on Low Life", statOrder = { 1712 }, level = 80, group = "WeaponTreeEnergyShieldRegenOnLowLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "str_armour", "dex_armour", "str_dex_armour", "shield", "default", }, weightVal = { 0, 0, 0, 500, 0 }, modTags = { }, }, + ["WeaponTreeSpellProjectileBlockReducedAttackProjectileBlock1"] = { type = "Spawn", tier = 1, "-20% chance to Block Projectile Attack Damage", "+25% chance to Block Projectile Spell Damage", statOrder = { 2373, 4945 }, level = 1, group = "WeaponTreeSpellProjectileBlockReducedAttackProjectileBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeSpellProjectileBlockReducedAttackProjectileBlock2"] = { type = "Spawn", tier = 2, "-20% chance to Block Projectile Attack Damage", "+30% chance to Block Projectile Spell Damage", statOrder = { 2373, 4945 }, level = 65, group = "WeaponTreeSpellProjectileBlockReducedAttackProjectileBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeAttackProjectileBlockReducedSpellProjectileBlock1"] = { type = "Spawn", tier = 1, "+25% chance to Block Projectile Attack Damage", "-20% chance to Block Projectile Spell Damage", statOrder = { 2373, 4945 }, level = 1, group = "WeaponTreeAttackProjectileBlockReducedSpellProjectileBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeAttackProjectileBlockReducedSpellProjectileBlock2"] = { type = "Spawn", tier = 2, "+30% chance to Block Projectile Attack Damage", "-20% chance to Block Projectile Spell Damage", statOrder = { 2373, 4945 }, level = 62, group = "WeaponTreeAttackProjectileBlockReducedSpellProjectileBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeElusiveOnLowLifeReducedElusiveEffect1"] = { type = "Spawn", tier = 1, "30% reduced Elusive Effect", "Gain Elusive on reaching Low Life", statOrder = { 6243, 6629 }, level = 30, group = "WeaponTreeElusiveOnLowLifeReducedElusiveEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreeElusiveOnLowLifeReducedElusiveEffect2"] = { type = "Spawn", tier = 2, "20% reduced Elusive Effect", "Gain Elusive on reaching Low Life", statOrder = { 6243, 6629 }, level = 76, group = "WeaponTreeElusiveOnLowLifeReducedElusiveEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["WeaponTreeCannotBeStunnedOnLowLifeDamageTakenOnLowLife1"] = { type = "Spawn", tier = 1, "Cannot be Stunned when on Low Life", "8% increased Damage taken while on Low Life", statOrder = { 2083, 6015 }, level = 1, group = "WeaponTreeCannotBeStunnedOnLowLifeDamageTakenOnLowLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeCannotBeStunnedOnLowLifeDamageTakenOnLowLife2"] = { type = "Spawn", tier = 2, "Cannot be Stunned when on Low Life", "5% increased Damage taken while on Low Life", statOrder = { 2083, 6015 }, level = 76, group = "WeaponTreeCannotBeStunnedOnLowLifeDamageTakenOnLowLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeConsecratedGroundAilmentImmunityConsecratedGroundEffect1"] = { type = "Spawn", tier = 1, "100% chance to Avoid Elemental Ailments while on Consecrated Ground", "50% reduced Effect of Consecrated Ground you create", statOrder = { 3463, 5745 }, level = 40, group = "WeaponTreeConsecratedGroundAilmentImmunityConsecratedGroundEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeConsecratedGroundEffectConsecratedGroundArea1"] = { type = "Spawn", tier = 1, "50% reduced Consecrated Ground Area", "30% increased Effect of Consecrated Ground you create", statOrder = { 5743, 5745 }, level = 40, group = "WeaponTreeConsecratedGroundEffectConsecratedGroundArea", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeConsecratedGroundEffectConsecratedGroundArea2"] = { type = "Spawn", tier = 2, "50% reduced Consecrated Ground Area", "50% increased Effect of Consecrated Ground you create", statOrder = { 5743, 5745 }, level = 80, group = "WeaponTreeConsecratedGroundEffectConsecratedGroundArea", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["WeaponTreeGuardSkillCooldownRecoveryGuardDuration1"] = { type = "Spawn", tier = 1, "Guard Skills have 60% increased Cooldown Recovery Rate", "Guard Skills have 50% reduced Duration", statOrder = { 6795, 6796 }, level = 15, group = "WeaponTreeGuardSkillCooldownRecoveryGuardDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, }, + ["WeaponTreeGuardSkillCooldownRecoveryGuardDuration2"] = { type = "Spawn", tier = 2, "Guard Skills have 80% increased Cooldown Recovery Rate", "Guard Skills have 50% reduced Duration", statOrder = { 6795, 6796 }, level = 65, group = "WeaponTreeGuardSkillCooldownRecoveryGuardDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, }, + ["WeaponTreeDebuffTimePassed1"] = { type = "Spawn", tier = 1, "Debuffs on you expire 15% faster", statOrder = { 6045 }, level = 25, group = "WeaponTreeDebuffTimePassed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, }, + ["WeaponTreeDebuffTimePassed2"] = { type = "Spawn", tier = 2, "Debuffs on you expire 25% faster", statOrder = { 6045 }, level = 78, group = "WeaponTreeDebuffTimePassed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, }, + ["WeaponTreeAvoidAilmentsFromCriticalStrikes1"] = { type = "Spawn", tier = 1, "50% chance to avoid Ailments from Critical Strikes", statOrder = { 4830 }, level = 1, group = "WeaponTreeAvoidAilmentsFromCriticalStrikes", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, }, + ["WeaponTreeAvoidAilmentsFromCriticalStrikes2"] = { type = "Spawn", tier = 2, "75% chance to avoid Ailments from Critical Strikes", statOrder = { 4830 }, level = 70, group = "WeaponTreeAvoidAilmentsFromCriticalStrikes", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, }, + ["WeaponTreeCounterattacksMoreDamageCounterattackCooldownRecovery1"] = { type = "Spawn", tier = 1, "Retaliation Skills have 30% reduced Cooldown Recovery Rate", "Retaliation Skills deal 45% more Damage", statOrder = { 5786, 10367 }, level = 28, group = "WeaponTreeCounterattacksMoreDamageCounterattackCooldownRecovery", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["WeaponTreeCounterattacksMoreDamageCounterattackCooldownRecovery2"] = { type = "Spawn", tier = 2, "Retaliation Skills have 30% reduced Cooldown Recovery Rate", "Retaliation Skills deal 60% more Damage", statOrder = { 5786, 10367 }, level = 75, group = "WeaponTreeCounterattacksMoreDamageCounterattackCooldownRecovery", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["WeaponTreeFortificationDurationMaximumFortification1"] = { type = "Spawn", tier = 1, "150% increased Fortification Duration", "-2 to maximum Fortification", statOrder = { 2174, 4925 }, level = 35, group = "WeaponTreeFortificationDurationMaximumFortification", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, }, + ["WeaponTreeFortificationDurationMaximumFortification2"] = { type = "Spawn", tier = 2, "200% increased Fortification Duration", "-2 to maximum Fortification", statOrder = { 2174, 4925 }, level = 80, group = "WeaponTreeFortificationDurationMaximumFortification", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "shield", "default", }, weightVal = { 400, 0 }, modTags = { }, }, + ["WeaponTreeNumberOfCorpsesReducedCorpseLife1"] = { type = "Spawn", tier = 1, "Desecrate and Unearth have +1 to Maximum number of corpses allowed", "Corpses you Spawn have 5% reduced Maximum Life", statOrder = { 6061, 8976 }, level = 16, group = "WeaponTreeNumberOfCorpsesReducedCorpseLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, + ["WeaponTreeNumberOfCorpsesReducedCorpseLife2"] = { type = "Spawn", tier = 2, "Desecrate and Unearth have +2 to Maximum number of corpses allowed", "Corpses you Spawn have 5% reduced Maximum Life", statOrder = { 6061, 8976 }, level = 72, group = "WeaponTreeNumberOfCorpsesReducedCorpseLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, + ["WeaponTreeNumberOfCorpsesReducedCorpseLife2h1"] = { type = "Spawn", tier = 1, "Desecrate and Unearth have +2 to Maximum number of corpses allowed", "Corpses you Spawn have 10% reduced Maximum Life", statOrder = { 6061, 8976 }, level = 16, group = "WeaponTreeNumberOfCorpsesReducedCorpseLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, + ["WeaponTreeNumberOfCorpsesReducedCorpseLife2h2"] = { type = "Spawn", tier = 2, "Desecrate and Unearth have +4 to Maximum number of corpses allowed", "Corpses you Spawn have 10% reduced Maximum Life", statOrder = { 6061, 8976 }, level = 72, group = "WeaponTreeNumberOfCorpsesReducedCorpseLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, + ["WeaponTreeCorpseLifeReducedNumberOfCorpses1"] = { type = "Spawn", tier = 1, "Desecrate and Unearth have -1 to Maximum number of corpses allowed", "Corpses you Spawn have 10% increased Maximum Life", statOrder = { 6061, 8976 }, level = 16, group = "WeaponTreeCorpseLifeReducedNumberOfCorpses", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, + ["WeaponTreeCorpseLifeReducedNumberOfCorpses2"] = { type = "Spawn", tier = 2, "Desecrate and Unearth have -1 to Maximum number of corpses allowed", "Corpses you Spawn have 15% increased Maximum Life", statOrder = { 6061, 8976 }, level = 72, group = "WeaponTreeCorpseLifeReducedNumberOfCorpses", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, + ["WeaponTreeCorpseLifeReducedNumberOfCorpses2h1"] = { type = "Spawn", tier = 1, "Desecrate and Unearth have -2 to Maximum number of corpses allowed", "Corpses you Spawn have 20% increased Maximum Life", statOrder = { 6061, 8976 }, level = 16, group = "WeaponTreeCorpseLifeReducedNumberOfCorpses", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, + ["WeaponTreeCorpseLifeReducedNumberOfCorpses2h2"] = { type = "Spawn", tier = 2, "Desecrate and Unearth have -2 to Maximum number of corpses allowed", "Corpses you Spawn have 30% increased Maximum Life", statOrder = { 6061, 8976 }, level = 72, group = "WeaponTreeCorpseLifeReducedNumberOfCorpses", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, + ["WeaponTreeMinionCooldownRecoveryReducedMinionDuration1"] = { type = "Spawn", tier = 1, "10% reduced Minion Duration", "Minions have 15% increased Cooldown Recovery Rate", statOrder = { 4926, 9098 }, level = 12, group = "WeaponTreeMinionCooldownRecoveryReducedMinionDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, modTags = { }, }, + ["WeaponTreeMinionCooldownRecoveryReducedMinionDuration2"] = { type = "Spawn", tier = 2, "10% reduced Minion Duration", "Minions have 25% increased Cooldown Recovery Rate", statOrder = { 4926, 9098 }, level = 64, group = "WeaponTreeMinionCooldownRecoveryReducedMinionDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, modTags = { }, }, + ["WeaponTreeMinionCooldownRecoveryReducedMinionDuration2h1"] = { type = "Spawn", tier = 1, "20% reduced Minion Duration", "Minions have 30% increased Cooldown Recovery Rate", statOrder = { 4926, 9098 }, level = 12, group = "WeaponTreeMinionCooldownRecoveryReducedMinionDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, modTags = { }, }, + ["WeaponTreeMinionCooldownRecoveryReducedMinionDuration2h2"] = { type = "Spawn", tier = 2, "20% reduced Minion Duration", "Minions have 50% increased Cooldown Recovery Rate", statOrder = { 4926, 9098 }, level = 64, group = "WeaponTreeMinionCooldownRecoveryReducedMinionDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, modTags = { }, }, + ["WeaponTreeMinionDurationReducedCooldownRecovery1"] = { type = "Spawn", tier = 1, "15% increased Minion Duration", "Minions have 15% reduced Cooldown Recovery Rate", statOrder = { 4926, 9098 }, level = 12, group = "WeaponTreeMinionDurationReducedCooldownRecovery", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, + ["WeaponTreeMinionDurationReducedCooldownRecovery2"] = { type = "Spawn", tier = 2, "20% increased Minion Duration", "Minions have 15% reduced Cooldown Recovery Rate", statOrder = { 4926, 9098 }, level = 64, group = "WeaponTreeMinionDurationReducedCooldownRecovery", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, + ["WeaponTreeMinionDurationReducedCooldownRecovery2h1"] = { type = "Spawn", tier = 1, "30% increased Minion Duration", "Minions have 30% reduced Cooldown Recovery Rate", statOrder = { 4926, 9098 }, level = 12, group = "WeaponTreeMinionDurationReducedCooldownRecovery", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, + ["WeaponTreeMinionDurationReducedCooldownRecovery2h2"] = { type = "Spawn", tier = 2, "40% increased Minion Duration", "Minions have 30% reduced Cooldown Recovery Rate", statOrder = { 4926, 9098 }, level = 64, group = "WeaponTreeMinionDurationReducedCooldownRecovery", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, + ["WeaponTreeMinionAreaOfEffectReducedDamage1"] = { type = "Spawn", tier = 1, "Minions deal 15% reduced Damage", "Minions have 20% increased Area of Effect", statOrder = { 1882, 2932 }, level = 1, group = "WeaponTreeMinionAreaOfEffectReducedDamage", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, + ["WeaponTreeMinionAreaOfEffectReducedDamage2"] = { type = "Spawn", tier = 2, "Minions deal 15% reduced Damage", "Minions have 30% increased Area of Effect", statOrder = { 1882, 2932 }, level = 55, group = "WeaponTreeMinionAreaOfEffectReducedDamage", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, + ["WeaponTreeMinionAreaOfEffectReducedDamage2h1"] = { type = "Spawn", tier = 1, "Minions deal 30% reduced Damage", "Minions have 40% increased Area of Effect", statOrder = { 1882, 2932 }, level = 1, group = "WeaponTreeMinionAreaOfEffectReducedDamage", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, + ["WeaponTreeMinionAreaOfEffectReducedDamage2h2"] = { type = "Spawn", tier = 2, "Minions deal 30% reduced Damage", "Minions have 60% increased Area of Effect", statOrder = { 1882, 2932 }, level = 55, group = "WeaponTreeMinionAreaOfEffectReducedDamage", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, + ["WeaponTreeMinionElementalResistanceReducedChaosResistance1"] = { type = "Spawn", tier = 1, "Minions have +12% to all Elemental Resistances", "Minions have -11% to Chaos Resistance", statOrder = { 2822, 2823 }, level = 1, group = "WeaponTreeMinionElementalResistanceReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, modTags = { }, }, + ["WeaponTreeMinionElementalResistanceReducedChaosResistance2"] = { type = "Spawn", tier = 2, "Minions have +16% to all Elemental Resistances", "Minions have -11% to Chaos Resistance", statOrder = { 2822, 2823 }, level = 55, group = "WeaponTreeMinionElementalResistanceReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, modTags = { }, }, + ["WeaponTreeMinionElementalResistanceReducedChaosResistance2h1"] = { type = "Spawn", tier = 1, "Minions have +25% to all Elemental Resistances", "Minions have -23% to Chaos Resistance", statOrder = { 2822, 2823 }, level = 1, group = "WeaponTreeMinionElementalResistanceReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, modTags = { }, }, + ["WeaponTreeMinionElementalResistanceReducedChaosResistance2h2"] = { type = "Spawn", tier = 2, "Minions have +35% to all Elemental Resistances", "Minions have -23% to Chaos Resistance", statOrder = { 2822, 2823 }, level = 55, group = "WeaponTreeMinionElementalResistanceReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, modTags = { }, }, + ["WeaponTreeMinionChaosResistanceReducedElementalResistance1"] = { type = "Spawn", tier = 1, "Minions have -6% to all Elemental Resistances", "Minions have +17% to Chaos Resistance", statOrder = { 2822, 2823 }, level = 1, group = "WeaponTreeMinionChaosResistanceReducedElementalResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, + ["WeaponTreeMinionChaosResistanceReducedElementalResistance2"] = { type = "Spawn", tier = 2, "Minions have -6% to all Elemental Resistances", "Minions have +23% to Chaos Resistance", statOrder = { 2822, 2823 }, level = 55, group = "WeaponTreeMinionChaosResistanceReducedElementalResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, + ["WeaponTreeMinionChaosResistanceReducedElementalResistance2h1"] = { type = "Spawn", tier = 1, "Minions have -12% to all Elemental Resistances", "Minions have +37% to Chaos Resistance", statOrder = { 2822, 2823 }, level = 1, group = "WeaponTreeMinionChaosResistanceReducedElementalResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, + ["WeaponTreeMinionChaosResistanceReducedElementalResistance2h2"] = { type = "Spawn", tier = 2, "Minions have -12% to all Elemental Resistances", "Minions have +47% to Chaos Resistance", statOrder = { 2822, 2823 }, level = 55, group = "WeaponTreeMinionChaosResistanceReducedElementalResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, + ["WeaponTreeMinionArmour1"] = { type = "Spawn", tier = 1, "Minions have +350 to Armour", statOrder = { 2815 }, level = 25, group = "WeaponTreeMinionArmour", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, + ["WeaponTreeMinionArmour2"] = { type = "Spawn", tier = 2, "Minions have +500 to Armour", statOrder = { 2815 }, level = 55, group = "WeaponTreeMinionArmour", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, + ["WeaponTreeMinionArmour2h1"] = { type = "Spawn", tier = 1, "Minions have +700 to Armour", statOrder = { 2815 }, level = 25, group = "WeaponTreeMinionArmour", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, + ["WeaponTreeMinionArmour2h2"] = { type = "Spawn", tier = 2, "Minions have +1000 to Armour", statOrder = { 2815 }, level = 55, group = "WeaponTreeMinionArmour", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, + ["WeaponTreeMinionEvasion1"] = { type = "Spawn", tier = 1, "Minions have 20% increased Evasion Rating", statOrder = { 9113 }, level = 1, group = "WeaponTreeMinionEvasion", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, + ["WeaponTreeMinionEvasion2"] = { type = "Spawn", tier = 2, "Minions have 30% increased Evasion Rating", statOrder = { 9113 }, level = 55, group = "WeaponTreeMinionEvasion", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, + ["WeaponTreeMinionEvasion2h1"] = { type = "Spawn", tier = 1, "Minions have 40% increased Evasion Rating", statOrder = { 9113 }, level = 1, group = "WeaponTreeMinionEvasion", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, + ["WeaponTreeMinionEvasion2h2"] = { type = "Spawn", tier = 2, "Minions have 60% increased Evasion Rating", statOrder = { 9113 }, level = 55, group = "WeaponTreeMinionEvasion", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, + ["WeaponTreeMinionSpellSuppressionChanceReducedEvasion1"] = { type = "Spawn", tier = 1, "Minions have 15% reduced Evasion Rating", "Minions have +15% chance to Suppress Spell Damage", statOrder = { 9113, 9142 }, level = 24, group = "WeaponTreeMinionSpellSuppressionChanceReducedEvasion", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, + ["WeaponTreeMinionSpellSuppressionChanceReducedEvasion2"] = { type = "Spawn", tier = 2, "Minions have 15% reduced Evasion Rating", "Minions have +25% chance to Suppress Spell Damage", statOrder = { 9113, 9142 }, level = 76, group = "WeaponTreeMinionSpellSuppressionChanceReducedEvasion", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, + ["WeaponTreeMinionSpellSuppressionChanceReducedEvasion2h1"] = { type = "Spawn", tier = 1, "Minions have 30% reduced Evasion Rating", "Minions have +30% chance to Suppress Spell Damage", statOrder = { 9113, 9142 }, level = 24, group = "WeaponTreeMinionSpellSuppressionChanceReducedEvasion", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, + ["WeaponTreeMinionSpellSuppressionChanceReducedEvasion2h2"] = { type = "Spawn", tier = 2, "Minions have 30% reduced Evasion Rating", "Minions have +50% chance to Suppress Spell Damage", statOrder = { 9113, 9142 }, level = 76, group = "WeaponTreeMinionSpellSuppressionChanceReducedEvasion", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, + ["WeaponTreeMinionLifeReducedLifeRecoveryRate1"] = { type = "Spawn", tier = 1, "Minions have 10% reduced Life Recovery rate", "Minions have 20% increased maximum Life", statOrder = { 1676, 1677 }, level = 1, group = "WeaponTreeMinionLifeReducedLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, modTags = { }, }, + ["WeaponTreeMinionLifeReducedLifeRecoveryRate2"] = { type = "Spawn", tier = 2, "Minions have 10% reduced Life Recovery rate", "Minions have 30% increased maximum Life", statOrder = { 1676, 1677 }, level = 62, group = "WeaponTreeMinionLifeReducedLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, modTags = { }, }, + ["WeaponTreeMinionLifeReducedLifeRecoveryRate2h1"] = { type = "Spawn", tier = 1, "Minions have 20% reduced Life Recovery rate", "Minions have 40% increased maximum Life", statOrder = { 1676, 1677 }, level = 1, group = "WeaponTreeMinionLifeReducedLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, modTags = { }, }, + ["WeaponTreeMinionLifeReducedLifeRecoveryRate2h2"] = { type = "Spawn", tier = 2, "Minions have 20% reduced Life Recovery rate", "Minions have 60% increased maximum Life", statOrder = { 1676, 1677 }, level = 62, group = "WeaponTreeMinionLifeReducedLifeRecoveryRate", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, modTags = { }, }, + ["WeaponTreeMinionLifeRecoveryRateReducedMaximumLife1"] = { type = "Spawn", tier = 1, "Minions have 15% increased Life Recovery rate", "Minions have 15% reduced maximum Life", statOrder = { 1676, 1677 }, level = 10, group = "WeaponTreeMinionLifeRecoveryRateReducedMaximumLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, modTags = { }, }, + ["WeaponTreeMinionLifeRecoveryRateReducedMaximumLife2"] = { type = "Spawn", tier = 2, "Minions have 20% increased Life Recovery rate", "Minions have 15% reduced maximum Life", statOrder = { 1676, 1677 }, level = 66, group = "WeaponTreeMinionLifeRecoveryRateReducedMaximumLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, modTags = { }, }, + ["WeaponTreeMinionLifeRecoveryRateReducedMaximumLife2h1"] = { type = "Spawn", tier = 1, "Minions have 30% increased Life Recovery rate", "Minions have 30% reduced maximum Life", statOrder = { 1676, 1677 }, level = 10, group = "WeaponTreeMinionLifeRecoveryRateReducedMaximumLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, modTags = { }, }, + ["WeaponTreeMinionLifeRecoveryRateReducedMaximumLife2h2"] = { type = "Spawn", tier = 2, "Minions have 40% increased Life Recovery rate", "Minions have 30% reduced maximum Life", statOrder = { 1676, 1677 }, level = 66, group = "WeaponTreeMinionLifeRecoveryRateReducedMaximumLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 4000, 4000, 0 }, modTags = { }, }, + ["WeaponTreeMinionLifeAsExtraEnergyShieldReducedElementalResistance1"] = { type = "Spawn", tier = 1, "Minions have -6% to all Elemental Resistances", "Minions gain 15% of Maximum Life as Extra Maximum Energy Shield", statOrder = { 2822, 9127 }, level = 15, group = "WeaponTreeMinionLifeAsExtraEnergyShieldReducedElementalResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionLifeAsExtraEnergyShieldReducedElementalResistance2"] = { type = "Spawn", tier = 2, "Minions have -6% to all Elemental Resistances", "Minions gain 20% of Maximum Life as Extra Maximum Energy Shield", statOrder = { 2822, 9127 }, level = 78, group = "WeaponTreeMinionLifeAsExtraEnergyShieldReducedElementalResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionLifeAsExtraEnergyShieldReducedElementalResistance2h1"] = { type = "Spawn", tier = 1, "Minions have -12% to all Elemental Resistances", "Minions gain 30% of Maximum Life as Extra Maximum Energy Shield", statOrder = { 2822, 9127 }, level = 15, group = "WeaponTreeMinionLifeAsExtraEnergyShieldReducedElementalResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionLifeAsExtraEnergyShieldReducedElementalResistance2h2"] = { type = "Spawn", tier = 2, "Minions have -12% to all Elemental Resistances", "Minions gain 40% of Maximum Life as Extra Maximum Energy Shield", statOrder = { 2822, 9127 }, level = 78, group = "WeaponTreeMinionLifeAsExtraEnergyShieldReducedElementalResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionMaximumElementalResistances1"] = { type = "Spawn", tier = 1, "Minions have +1% to all maximum Elemental Resistances", statOrder = { 9126 }, level = 83, group = "WeaponTreeMinionMaximumElementalResistances", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeMinionMaximumElementalResistances2h1"] = { type = "Spawn", tier = 1, "Minions have +2% to all maximum Elemental Resistances", statOrder = { 9126 }, level = 83, group = "WeaponTreeMinionMaximumElementalResistances", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeMinionBlindOnHitChance1"] = { type = "Spawn", tier = 1, "Minions have 10% chance to Blind on Hit with Attacks", statOrder = { 9087 }, level = 20, group = "WeaponTreeMinionBlindOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeMinionBlindOnHitChance2"] = { type = "Spawn", tier = 2, "Minions have 15% chance to Blind on Hit with Attacks", statOrder = { 9087 }, level = 73, group = "WeaponTreeMinionBlindOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeMinionBlindOnHitChance2h1"] = { type = "Spawn", tier = 1, "Minions have 20% chance to Blind on Hit with Attacks", statOrder = { 9087 }, level = 20, group = "WeaponTreeMinionBlindOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeMinionBlindOnHitChance2h2"] = { type = "Spawn", tier = 2, "Minions have 30% chance to Blind on Hit with Attacks", statOrder = { 9087 }, level = 73, group = "WeaponTreeMinionBlindOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeMinionHinderOnHitChance1"] = { type = "Spawn", tier = 1, "Minions have 10% chance to Hinder Enemies on Hit with Spells", statOrder = { 9143 }, level = 20, group = "WeaponTreeMinionHinderOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeMinionHinderOnHitChance2"] = { type = "Spawn", tier = 2, "Minions have 15% chance to Hinder Enemies on Hit with Spells", statOrder = { 9143 }, level = 73, group = "WeaponTreeMinionHinderOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeMinionHinderOnHitChance2h1"] = { type = "Spawn", tier = 1, "Minions have 20% chance to Hinder Enemies on Hit with Spells", statOrder = { 9143 }, level = 20, group = "WeaponTreeMinionHinderOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeMinionHinderOnHitChance2h2"] = { type = "Spawn", tier = 2, "Minions have 30% chance to Hinder Enemies on Hit with Spells", statOrder = { 9143 }, level = 73, group = "WeaponTreeMinionHinderOnHitChance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeMinionMovementSpeed1"] = { type = "Spawn", tier = 1, "Minions have 12% increased Movement Speed", statOrder = { 1680 }, level = 1, group = "WeaponTreeMinionMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3000, 3000, 0 }, modTags = { }, }, + ["WeaponTreeMinionMovementSpeed2"] = { type = "Spawn", tier = 2, "Minions have 16% increased Movement Speed", statOrder = { 1680 }, level = 52, group = "WeaponTreeMinionMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3000, 3000, 0 }, modTags = { }, }, + ["WeaponTreeMinionMovementSpeed2h1"] = { type = "Spawn", tier = 1, "Minions have 24% increased Movement Speed", statOrder = { 1680 }, level = 1, group = "WeaponTreeMinionMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3000, 3000, 0 }, modTags = { }, }, + ["WeaponTreeMinionMovementSpeed2h2"] = { type = "Spawn", tier = 2, "Minions have 32% increased Movement Speed", statOrder = { 1680 }, level = 52, group = "WeaponTreeMinionMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 3000, 3000, 0 }, modTags = { }, }, + ["WeaponTreeMinionProjectileSpeed1"] = { type = "Spawn", tier = 1, "Minions have 15% increased Projectile Speed", statOrder = { 9135 }, level = 1, group = "WeaponTreeMinionProjectileSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, + ["WeaponTreeMinionProjectileSpeed2"] = { type = "Spawn", tier = 2, "Minions have 20% increased Projectile Speed", statOrder = { 9135 }, level = 76, group = "WeaponTreeMinionProjectileSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, + ["WeaponTreeMinionProjectileSpeed2h1"] = { type = "Spawn", tier = 1, "Minions have 30% increased Projectile Speed", statOrder = { 9135 }, level = 1, group = "WeaponTreeMinionProjectileSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, + ["WeaponTreeMinionProjectileSpeed2h2"] = { type = "Spawn", tier = 2, "Minions have 40% increased Projectile Speed", statOrder = { 9135 }, level = 76, group = "WeaponTreeMinionProjectileSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, + ["WeaponTreeMinionBleedChanceBleedDurationOnSelf1"] = { type = "Spawn", tier = 1, "Minions have 8% chance to cause Bleeding with Attacks", "20% increased Bleed Duration on you", statOrder = { 2399, 9753 }, level = 25, group = "WeaponTreeMinionBleedChanceBleedDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, + ["WeaponTreeMinionBleedChanceBleedDurationOnSelf2"] = { type = "Spawn", tier = 2, "Minions have 12% chance to cause Bleeding with Attacks", "20% increased Bleed Duration on you", statOrder = { 2399, 9753 }, level = 78, group = "WeaponTreeMinionBleedChanceBleedDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, + ["WeaponTreeMinionBleedChanceBleedDurationOnSelf2h1"] = { type = "Spawn", tier = 1, "Minions have 16% chance to cause Bleeding with Attacks", "40% increased Bleed Duration on you", statOrder = { 2399, 9753 }, level = 25, group = "WeaponTreeMinionBleedChanceBleedDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, + ["WeaponTreeMinionBleedChanceBleedDurationOnSelf2h2"] = { type = "Spawn", tier = 2, "Minions have 24% chance to cause Bleeding with Attacks", "40% increased Bleed Duration on you", statOrder = { 2399, 9753 }, level = 78, group = "WeaponTreeMinionBleedChanceBleedDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, + ["WeaponTreeMinionPoisonChancePoisonDurationOnSelf1"] = { type = "Spawn", tier = 1, "Minions have 8% chance to Poison Enemies on Hit", "20% increased Poison Duration on you", statOrder = { 3082, 9762 }, level = 25, group = "WeaponTreeMinionPoisonChancePoisonDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, + ["WeaponTreeMinionPoisonChancePoisonDurationOnSelf2"] = { type = "Spawn", tier = 2, "Minions have 12% chance to Poison Enemies on Hit", "20% increased Poison Duration on you", statOrder = { 3082, 9762 }, level = 78, group = "WeaponTreeMinionPoisonChancePoisonDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, + ["WeaponTreeMinionPoisonChancePoisonDurationOnSelf2h1"] = { type = "Spawn", tier = 1, "Minions have 16% chance to Poison Enemies on Hit", "40% increased Poison Duration on you", statOrder = { 3082, 9762 }, level = 25, group = "WeaponTreeMinionPoisonChancePoisonDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, + ["WeaponTreeMinionPoisonChancePoisonDurationOnSelf2h2"] = { type = "Spawn", tier = 2, "Minions have 24% chance to Poison Enemies on Hit", "40% increased Poison Duration on you", statOrder = { 3082, 9762 }, level = 78, group = "WeaponTreeMinionPoisonChancePoisonDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, + ["WeaponTreeMinionIgniteChanceIgniteDurationOnSelf1"] = { type = "Spawn", tier = 1, "20% increased Ignite Duration on you", "Minions have 8% chance to Ignite", statOrder = { 1786, 9095 }, level = 25, group = "WeaponTreeMinionIgniteChanceIgniteDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, + ["WeaponTreeMinionIgniteChanceIgniteDurationOnSelf2"] = { type = "Spawn", tier = 2, "20% increased Ignite Duration on you", "Minions have 12% chance to Ignite", statOrder = { 1786, 9095 }, level = 78, group = "WeaponTreeMinionIgniteChanceIgniteDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, + ["WeaponTreeMinionIgniteChanceIgniteDurationOnSelf2h1"] = { type = "Spawn", tier = 1, "40% increased Ignite Duration on you", "Minions have 16% chance to Ignite", statOrder = { 1786, 9095 }, level = 25, group = "WeaponTreeMinionIgniteChanceIgniteDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, + ["WeaponTreeMinionIgniteChanceIgniteDurationOnSelf2h2"] = { type = "Spawn", tier = 2, "40% increased Ignite Duration on you", "Minions have 24% chance to Ignite", statOrder = { 1786, 9095 }, level = 78, group = "WeaponTreeMinionIgniteChanceIgniteDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, + ["WeaponTreeMinionFreezeChanceFreezeDurationOnSelf1"] = { type = "Spawn", tier = 1, "20% increased Freeze Duration on you", "Minions have 8% chance to Freeze", statOrder = { 1785, 9092 }, level = 25, group = "WeaponTreeMinionFreezeChanceFreezeDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, + ["WeaponTreeMinionFreezeChanceFreezeDurationOnSelf2"] = { type = "Spawn", tier = 2, "20% increased Freeze Duration on you", "Minions have 12% chance to Freeze", statOrder = { 1785, 9092 }, level = 78, group = "WeaponTreeMinionFreezeChanceFreezeDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, + ["WeaponTreeMinionFreezeChanceFreezeDurationOnSelf2h1"] = { type = "Spawn", tier = 1, "40% increased Freeze Duration on you", "Minions have 16% chance to Freeze", statOrder = { 1785, 9092 }, level = 25, group = "WeaponTreeMinionFreezeChanceFreezeDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, + ["WeaponTreeMinionFreezeChanceFreezeDurationOnSelf2h2"] = { type = "Spawn", tier = 2, "40% increased Freeze Duration on you", "Minions have 24% chance to Freeze", statOrder = { 1785, 9092 }, level = 78, group = "WeaponTreeMinionFreezeChanceFreezeDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, + ["WeaponTreeMinionShockChanceShockDurationOnSelf1"] = { type = "Spawn", tier = 1, "20% increased Shock Duration on you", "Minions have 8% chance to Shock", statOrder = { 1784, 9097 }, level = 25, group = "WeaponTreeMinionShockChanceShockDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, + ["WeaponTreeMinionShockChanceShockDurationOnSelf2"] = { type = "Spawn", tier = 2, "20% increased Shock Duration on you", "Minions have 12% chance to Shock", statOrder = { 1784, 9097 }, level = 78, group = "WeaponTreeMinionShockChanceShockDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, + ["WeaponTreeMinionShockChanceShockDurationOnSelf2h1"] = { type = "Spawn", tier = 1, "40% increased Shock Duration on you", "Minions have 16% chance to Shock", statOrder = { 1784, 9097 }, level = 25, group = "WeaponTreeMinionShockChanceShockDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, + ["WeaponTreeMinionShockChanceShockDurationOnSelf2h2"] = { type = "Spawn", tier = 2, "40% increased Shock Duration on you", "Minions have 24% chance to Shock", statOrder = { 1784, 9097 }, level = 78, group = "WeaponTreeMinionShockChanceShockDurationOnSelf", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, + ["WeaponTreeLinkSkillsEffectReducedLinkManaCost1"] = { type = "Spawn", tier = 1, "Link Skills have 8% increased Buff Effect", "20% increased Mana Cost of Link Skills", statOrder = { 7346, 7354 }, level = 40, group = "WeaponTreeLinkSkillsEffectReducedLinkManaCost", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1200, 1200, 0 }, modTags = { }, }, + ["WeaponTreeLinkSkillsEffectReducedLinkManaCost2"] = { type = "Spawn", tier = 2, "Link Skills have 12% increased Buff Effect", "20% increased Mana Cost of Link Skills", statOrder = { 7346, 7354 }, level = 82, group = "WeaponTreeLinkSkillsEffectReducedLinkManaCost", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1200, 1200, 0 }, modTags = { }, }, + ["WeaponTreeLinkSkillsEffectReducedLinkManaCost2h1"] = { type = "Spawn", tier = 1, "Link Skills have 16% increased Buff Effect", "40% increased Mana Cost of Link Skills", statOrder = { 7346, 7354 }, level = 40, group = "WeaponTreeLinkSkillsEffectReducedLinkManaCost", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1200, 1200, 0 }, modTags = { }, }, + ["WeaponTreeLinkSkillsEffectReducedLinkManaCost2h2"] = { type = "Spawn", tier = 2, "Link Skills have 24% increased Buff Effect", "40% increased Mana Cost of Link Skills", statOrder = { 7346, 7354 }, level = 82, group = "WeaponTreeLinkSkillsEffectReducedLinkManaCost", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1200, 1200, 0 }, modTags = { }, }, + ["WeaponTreeLinkToExtraAlliesReducedLinkBuffEffect1"] = { type = "Spawn", tier = 1, "Link Skills have 20% reduced Buff Effect", "Link Skills Link to 1 additional random target", statOrder = { 7346, 7367 }, level = 84, group = "WeaponTreeLinkToExtraAlliesReducedLinkBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1200, 1200, 0 }, modTags = { }, }, + ["WeaponTreeLinkToExtraAlliesReducedLinkBuffEffect2h1"] = { type = "Spawn", tier = 1, "Link Skills have 30% reduced Buff Effect", "Link Skills Link to 2 additional random targets", statOrder = { 7346, 7367 }, level = 84, group = "WeaponTreeLinkToExtraAlliesReducedLinkBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1200, 1200, 0 }, modTags = { }, }, + ["WeaponTreeConvocationCooldownSpeedReducedBuffEffect1"] = { type = "Spawn", tier = 1, "Convocation has 25% increased Cooldown Recovery Rate", "20% reduced Convocation Buff Effect", statOrder = { 3785, 3931 }, level = 28, group = "WeaponTreeConvocationCooldownSpeedReducedBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, + ["WeaponTreeConvocationCooldownSpeedReducedBuffEffect2"] = { type = "Spawn", tier = 2, "Convocation has 40% increased Cooldown Recovery Rate", "20% reduced Convocation Buff Effect", statOrder = { 3785, 3931 }, level = 70, group = "WeaponTreeConvocationCooldownSpeedReducedBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, + ["WeaponTreeConvocationCooldownSpeedReducedBuffEffect2h1"] = { type = "Spawn", tier = 1, "Convocation has 50% increased Cooldown Recovery Rate", "40% reduced Convocation Buff Effect", statOrder = { 3785, 3931 }, level = 28, group = "WeaponTreeConvocationCooldownSpeedReducedBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, + ["WeaponTreeConvocationCooldownSpeedReducedBuffEffect2h2"] = { type = "Spawn", tier = 2, "Convocation has 80% increased Cooldown Recovery Rate", "40% reduced Convocation Buff Effect", statOrder = { 3785, 3931 }, level = 70, group = "WeaponTreeConvocationCooldownSpeedReducedBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { }, }, + ["WeaponTreeOfferingEffectReducedDuration1"] = { type = "Spawn", tier = 1, "10% increased effect of Offerings", "Offering Skills have 15% reduced Duration", statOrder = { 3971, 9345 }, level = 16, group = "WeaponTreeOfferingEffectReducedDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeOfferingEffectReducedDuration2"] = { type = "Spawn", tier = 2, "15% increased effect of Offerings", "Offering Skills have 15% reduced Duration", statOrder = { 3971, 9345 }, level = 78, group = "WeaponTreeOfferingEffectReducedDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeOfferingEffectReducedDuration2h1"] = { type = "Spawn", tier = 1, "20% increased effect of Offerings", "Offering Skills have 30% reduced Duration", statOrder = { 3971, 9345 }, level = 16, group = "WeaponTreeOfferingEffectReducedDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeOfferingEffectReducedDuration2h2"] = { type = "Spawn", tier = 2, "30% increased effect of Offerings", "Offering Skills have 30% reduced Duration", statOrder = { 3971, 9345 }, level = 78, group = "WeaponTreeOfferingEffectReducedDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeOfferingDurationReducedEffect1"] = { type = "Spawn", tier = 1, "10% reduced effect of Offerings", "Offering Skills have 25% increased Duration", statOrder = { 3971, 9345 }, level = 16, group = "WeaponTreeOfferingDurationReducedEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeOfferingDurationReducedEffect2"] = { type = "Spawn", tier = 2, "10% reduced effect of Offerings", "Offering Skills have 40% increased Duration", statOrder = { 3971, 9345 }, level = 78, group = "WeaponTreeOfferingDurationReducedEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeOfferingDurationReducedEffect2h1"] = { type = "Spawn", tier = 1, "20% reduced effect of Offerings", "Offering Skills have 50% increased Duration", statOrder = { 3971, 9345 }, level = 16, group = "WeaponTreeOfferingDurationReducedEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeOfferingDurationReducedEffect2h2"] = { type = "Spawn", tier = 2, "20% reduced effect of Offerings", "Offering Skills have 80% increased Duration", statOrder = { 3971, 9345 }, level = 78, group = "WeaponTreeOfferingDurationReducedEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 2500, 2500, 0 }, modTags = { }, }, + ["WeaponTreeMinionOnslaughtChanceReducedMovementSpeed1"] = { type = "Spawn", tier = 1, "Minions have 10% reduced Movement Speed", "Minions have 10% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1680, 3289 }, level = 50, group = "WeaponTreeMinionOnslaughtChanceReducedMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeMinionOnslaughtChanceReducedMovementSpeed2"] = { type = "Spawn", tier = 2, "Minions have 10% reduced Movement Speed", "Minions have 15% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1680, 3289 }, level = 81, group = "WeaponTreeMinionOnslaughtChanceReducedMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeMinionOnslaughtChanceReducedMovementSpeed2h1"] = { type = "Spawn", tier = 1, "Minions have 10% reduced Movement Speed", "Minions have 20% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1680, 3289 }, level = 50, group = "WeaponTreeMinionOnslaughtChanceReducedMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeMinionOnslaughtChanceReducedMovementSpeed2h2"] = { type = "Spawn", tier = 2, "Minions have 10% reduced Movement Speed", "Minions have 30% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1680, 3289 }, level = 81, group = "WeaponTreeMinionOnslaughtChanceReducedMovementSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeMinionUnholyMightChanceReducedChaosResistance1"] = { type = "Spawn", tier = 1, "Minions have -7% to Chaos Resistance", "Minions have 10% chance to gain Unholy Might for 4 seconds on Kill", statOrder = { 2823, 3287 }, level = 50, group = "WeaponTreeMinionUnholyMightChanceReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeMinionUnholyMightChanceReducedChaosResistance2"] = { type = "Spawn", tier = 2, "Minions have -7% to Chaos Resistance", "Minions have 15% chance to gain Unholy Might for 4 seconds on Kill", statOrder = { 2823, 3287 }, level = 81, group = "WeaponTreeMinionUnholyMightChanceReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeMinionUnholyMightChanceReducedChaosResistance2h1"] = { type = "Spawn", tier = 1, "Minions have -7% to Chaos Resistance", "Minions have 20% chance to gain Unholy Might for 4 seconds on Kill", statOrder = { 2823, 3287 }, level = 50, group = "WeaponTreeMinionUnholyMightChanceReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeMinionUnholyMightChanceReducedChaosResistance2h2"] = { type = "Spawn", tier = 2, "Minions have -7% to Chaos Resistance", "Minions have 30% chance to gain Unholy Might for 4 seconds on Kill", statOrder = { 2823, 3287 }, level = 81, group = "WeaponTreeMinionUnholyMightChanceReducedChaosResistance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeMinionBlockReducedSpellBlock1"] = { type = "Spawn", tier = 1, "Minions have +20% Chance to Block Attack Damage", "Minions have -10% Chance to Block Spell Damage", statOrder = { 2813, 2814 }, level = 24, group = "WeaponTreeMinionBlockReducedSpellBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, modTags = { }, }, + ["WeaponTreeMinionBlockReducedSpellBlock2"] = { type = "Spawn", tier = 2, "Minions have +25% Chance to Block Attack Damage", "Minions have -10% Chance to Block Spell Damage", statOrder = { 2813, 2814 }, level = 75, group = "WeaponTreeMinionBlockReducedSpellBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, modTags = { }, }, + ["WeaponTreeMinionBlockReducedSpellBlock2h1"] = { type = "Spawn", tier = 1, "Minions have +30% Chance to Block Attack Damage", "Minions have -15% Chance to Block Spell Damage", statOrder = { 2813, 2814 }, level = 24, group = "WeaponTreeMinionBlockReducedSpellBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, modTags = { }, }, + ["WeaponTreeMinionBlockReducedSpellBlock2h2"] = { type = "Spawn", tier = 2, "Minions have +40% Chance to Block Attack Damage", "Minions have -15% Chance to Block Spell Damage", statOrder = { 2813, 2814 }, level = 75, group = "WeaponTreeMinionBlockReducedSpellBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, modTags = { }, }, + ["WeaponTreeMinionSpellBlockReducedBlock1"] = { type = "Spawn", tier = 1, "Minions have -10% Chance to Block Attack Damage", "Minions have +20% Chance to Block Spell Damage", statOrder = { 2813, 2814 }, level = 24, group = "WeaponTreeMinionSpellBlockReducedBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, modTags = { }, }, + ["WeaponTreeMinionSpellBlockReducedBlock2"] = { type = "Spawn", tier = 2, "Minions have -10% Chance to Block Attack Damage", "Minions have +25% Chance to Block Spell Damage", statOrder = { 2813, 2814 }, level = 75, group = "WeaponTreeMinionSpellBlockReducedBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, modTags = { }, }, + ["WeaponTreeMinionSpellBlockReducedBlock2h1"] = { type = "Spawn", tier = 1, "Minions have -15% Chance to Block Attack Damage", "Minions have +30% Chance to Block Spell Damage", statOrder = { 2813, 2814 }, level = 24, group = "WeaponTreeMinionSpellBlockReducedBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, modTags = { }, }, + ["WeaponTreeMinionSpellBlockReducedBlock2h2"] = { type = "Spawn", tier = 2, "Minions have -15% Chance to Block Attack Damage", "Minions have +40% Chance to Block Spell Damage", statOrder = { 2813, 2814 }, level = 75, group = "WeaponTreeMinionSpellBlockReducedBlock", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1500, 1500, 0 }, modTags = { }, }, + ["WeaponTreeMinionRecoverLifeOnBlockReducedMaximumLife1"] = { type = "Spawn", tier = 1, "Minions have 10% reduced maximum Life", "Minions Recover 3% of their Life when they Block", statOrder = { 1677, 2969 }, level = 50, group = "WeaponTreeMinionRecoverLifeOnBlockReducedMaximumLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, + ["WeaponTreeMinionRecoverLifeOnBlockReducedMaximumLife2"] = { type = "Spawn", tier = 2, "Minions have 10% reduced maximum Life", "Minions Recover 4% of their Life when they Block", statOrder = { 1677, 2969 }, level = 81, group = "WeaponTreeMinionRecoverLifeOnBlockReducedMaximumLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, + ["WeaponTreeMinionRecoverLifeOnBlockReducedMaximumLife2h1"] = { type = "Spawn", tier = 1, "Minions have 20% reduced maximum Life", "Minions Recover 6% of their Life when they Block", statOrder = { 1677, 2969 }, level = 50, group = "WeaponTreeMinionRecoverLifeOnBlockReducedMaximumLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, + ["WeaponTreeMinionRecoverLifeOnBlockReducedMaximumLife2h2"] = { type = "Spawn", tier = 2, "Minions have 20% reduced maximum Life", "Minions Recover 8% of their Life when they Block", statOrder = { 1677, 2969 }, level = 81, group = "WeaponTreeMinionRecoverLifeOnBlockReducedMaximumLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 800, 800, 0 }, modTags = { }, }, + ["WeaponTreeGolemsAllowedReducedGolemBuffEffect1"] = { type = "Spawn", tier = 1, "+1 to maximum number of Summoned Golems", "50% reduced Effect of Buffs granted by your Golems", statOrder = { 3598, 6769 }, level = 40, group = "WeaponTreeGolemsAllowedReducedGolemBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1200, 1200, 0 }, modTags = { }, }, + ["WeaponTreeGolemsAllowedReducedGolemBuffEffect2h1"] = { type = "Spawn", tier = 1, "+2 to maximum number of Summoned Golems", "100% reduced Effect of Buffs granted by your Golems", statOrder = { 3598, 6769 }, level = 77, group = "WeaponTreeGolemsAllowedReducedGolemBuffEffect", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1200, 1200, 0 }, modTags = { }, }, + ["WeaponTreeGolemBuffEffectReducedGolemsAllowed1"] = { type = "Spawn", tier = 1, "-1 to maximum number of Summoned Golems", "75% increased Effect of Buffs granted by your Golems", statOrder = { 3598, 6769 }, level = 40, group = "WeaponTreeGolemBuffEffectReducedGolemsAllowed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1200, 1200, 0 }, modTags = { }, }, + ["WeaponTreeGolemBuffEffectReducedGolemsAllowed2h1"] = { type = "Spawn", tier = 1, "-2 to maximum number of Summoned Golems", "150% increased Effect of Buffs granted by your Golems", statOrder = { 3598, 6769 }, level = 77, group = "WeaponTreeGolemBuffEffectReducedGolemsAllowed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "default", }, weightVal = { 0, 1200, 1200, 0 }, modTags = { }, }, + ["WeaponTreeSupportManaLeech"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Mana Leech", statOrder = { 441 }, level = 38, group = "WeaponTreeSupportManaLeech", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportManaLeech2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Mana Leech", statOrder = { 441 }, level = 38, group = "WeaponTreeSupportManaLeech", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportAdditionalAccuracy"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 15 Additional Accuracy", statOrder = { 407 }, level = 38, group = "WeaponTreeSupportAdditionalAccuracy", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportAdditionalAccuracy2H"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 15 Additional Accuracy", statOrder = { 407 }, level = 38, group = "WeaponTreeSupportAdditionalAccuracy", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportArrogance"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Arrogance", statOrder = { 386 }, level = 38, group = "WeaponTreeSupportArrogance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportArrogance2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Arrogance", statOrder = { 386 }, level = 38, group = "WeaponTreeSupportArrogance", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportFork"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Fork", statOrder = { 413 }, level = 38, group = "WeaponTreeSupportFork", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportFork2H"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Fork", statOrder = { 413 }, level = 38, group = "WeaponTreeSupportFork", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportChanceToPoison"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Chance to Poison", statOrder = { 450 }, level = 38, group = "WeaponTreeSupportChanceToPoison", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportChanceToPoison2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Chance to Poison", statOrder = { 450 }, level = 38, group = "WeaponTreeSupportChanceToPoison", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportLifeLeech"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Life Leech", statOrder = { 410 }, level = 38, group = "WeaponTreeSupportLifeLeech", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportLifeLeech2H"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Life Leech", statOrder = { 410 }, level = 38, group = "WeaponTreeSupportLifeLeech", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportMeleeSplash"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Melee Splash", statOrder = { 398 }, level = 38, group = "WeaponTreeSupportMeleeSplash", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportMeleeSplash2H"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Melee Splash", statOrder = { 398 }, level = 38, group = "WeaponTreeSupportMeleeSplash", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportFasterProjectiles"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Faster Projectiles", statOrder = { 409 }, level = 38, group = "WeaponTreeSupportFasterProjectiles", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportFasterProjectiles2H"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Faster Projectiles", statOrder = { 409 }, level = 38, group = "WeaponTreeSupportFasterProjectiles", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportStun"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Stun", statOrder = { 406 }, level = 38, group = "WeaponTreeSupportStun", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportStun2H"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Stun", statOrder = { 406 }, level = 38, group = "WeaponTreeSupportStun", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportIncreasedArea"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Increased Area of Effect", statOrder = { 203 }, level = 38, group = "WeaponTreeSupportIncreasedArea", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportIncreasedArea2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Increased Area of Effect", statOrder = { 203 }, level = 38, group = "WeaponTreeSupportIncreasedArea", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportKnockback"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Knockback", statOrder = { 429 }, level = 38, group = "WeaponTreeSupportKnockback", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportKnockback2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Knockback", statOrder = { 429 }, level = 38, group = "WeaponTreeSupportKnockback", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportMinionLife"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Minion Life", statOrder = { 431 }, level = 38, group = "WeaponTreeSupportMinionLife", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeSupportMinionLife2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Minion Life", statOrder = { 431 }, level = 38, group = "WeaponTreeSupportMinionLife", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeSupportMinionSpeed"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Minion Speed", statOrder = { 435 }, level = 38, group = "WeaponTreeSupportMinionSpeed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeSupportMinionSpeed2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Minion Speed", statOrder = { 435 }, level = 38, group = "WeaponTreeSupportMinionSpeed", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeSupportLesserMultipleProjectiles"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Lesser Multiple Projectiles", statOrder = { 432 }, level = 38, group = "WeaponTreeSupportLesserMultipleProjectiles", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportLesserMultipleProjectiles2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Lesser Multiple Projectiles", statOrder = { 432 }, level = 38, group = "WeaponTreeSupportLesserMultipleProjectiles", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportBlind"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Blind", statOrder = { 397 }, level = 38, group = "WeaponTreeSupportBlind", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportBlind2H"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Blind", statOrder = { 397 }, level = 38, group = "WeaponTreeSupportBlind", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportBlasphemy"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Blasphemy", statOrder = { 447 }, level = 38, group = "WeaponTreeSupportBlasphemy", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 0, 100, 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportBlasphemy2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Blasphemy", statOrder = { 447 }, level = 38, group = "WeaponTreeSupportBlasphemy", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportIronWill"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Iron Will", statOrder = { 428 }, level = 38, group = "WeaponTreeSupportIronWill", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 0, 100, 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportIronWill2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Iron Will", statOrder = { 428 }, level = 38, group = "WeaponTreeSupportIronWill", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportFasterCast"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Faster Casting", statOrder = { 427 }, level = 38, group = "WeaponTreeSupportFasterCast", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 0, 100, 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportFasterCast2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Faster Casting", statOrder = { 427 }, level = 38, group = "WeaponTreeSupportFasterCast", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportChanceToFlee"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Chance to Flee", statOrder = { 425 }, level = 38, group = "WeaponTreeSupportChanceToFlee", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportChanceToFlee2H"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Chance to Flee", statOrder = { 425 }, level = 38, group = "WeaponTreeSupportChanceToFlee", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportItemRarity"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Item Rarity", statOrder = { 268 }, level = 38, group = "WeaponTreeSupportItemRarity", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportItemRarity2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Item Rarity", statOrder = { 268 }, level = 38, group = "WeaponTreeSupportItemRarity", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportChanceToIgnite"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Combustion", statOrder = { 220 }, level = 38, group = "WeaponTreeSupportChanceToIgnite", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportChanceToIgnite2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Combustion", statOrder = { 220 }, level = 38, group = "WeaponTreeSupportChanceToIgnite", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportLifeGainOnHit"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 15 Life Gain On Hit", statOrder = { 270 }, level = 38, group = "WeaponTreeSupportLifeGainOnHit", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportLifeGainOnHit2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 15 Life Gain On Hit", statOrder = { 270 }, level = 38, group = "WeaponTreeSupportLifeGainOnHit", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportCullingStrike"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Culling Strike", statOrder = { 225 }, level = 38, group = "WeaponTreeSupportCullingStrike", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportCullingStrike2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Culling Strike", statOrder = { 225 }, level = 38, group = "WeaponTreeSupportCullingStrike", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportPointBlank"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Point Blank", statOrder = { 292 }, level = 38, group = "WeaponTreeSupportPointBlank", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportPointBlank2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Point Blank", statOrder = { 292 }, level = 38, group = "WeaponTreeSupportPointBlank", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportIronGrip"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Iron Grip", statOrder = { 266 }, level = 38, group = "WeaponTreeSupportIronGrip", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportIronGrip2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Iron Grip", statOrder = { 266 }, level = 38, group = "WeaponTreeSupportIronGrip", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportChain"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Chain", statOrder = { 218 }, level = 38, group = "WeaponTreeSupportChain", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportChain2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Chain", statOrder = { 218 }, level = 38, group = "WeaponTreeSupportChain", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportElementalArmy"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Elemental Army Support", statOrder = { 319 }, level = 38, group = "WeaponTreeSupportElementalArmy", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeSupportElementalArmy2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Elemental Army Support", statOrder = { 319 }, level = 38, group = "WeaponTreeSupportElementalArmy", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeSupportEmpower"] = { type = "MergeOnly", tier = 1, "Socketed Gems are Supported by Level 3 Empower", statOrder = { 236 }, level = 38, group = "WeaponTreeSupportEmpower", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeSupportEmpower2H"] = { type = "MergeOnly", tier = 1, "Socketed Gems are Supported by Level 3 Empower", statOrder = { 236 }, level = 38, group = "WeaponTreeSupportEmpower", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeSupportSlowerProjectiles"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Slower Projectiles", statOrder = { 312 }, level = 38, group = "WeaponTreeSupportSlowerProjectiles", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportSlowerProjectiles2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Slower Projectiles", statOrder = { 312 }, level = 38, group = "WeaponTreeSupportSlowerProjectiles", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportLessDuration"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Less Duration", statOrder = { 302 }, level = 38, group = "WeaponTreeSupportLessDuration", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportLessDuration2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Less Duration", statOrder = { 302 }, level = 38, group = "WeaponTreeSupportLessDuration", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportEnhance"] = { type = "MergeOnly", tier = 1, "Socketed Gems are Supported by Level 3 Enhance", statOrder = { 238 }, level = 38, group = "WeaponTreeSupportEnhance", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeSupportEnhance2H"] = { type = "MergeOnly", tier = 1, "Socketed Gems are Supported by Level 3 Enhance", statOrder = { 238 }, level = 38, group = "WeaponTreeSupportEnhance", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeSupportEnlighten"] = { type = "MergeOnly", tier = 1, "Socketed Gems are Supported by Level 3 Enlighten", statOrder = { 239 }, level = 38, group = "WeaponTreeSupportEnlighten", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeSupportEnlighten2H"] = { type = "MergeOnly", tier = 1, "Socketed Gems are Supported by Level 3 Enlighten", statOrder = { 239 }, level = 38, group = "WeaponTreeSupportEnlighten", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WeaponTreeSupportPhysicalToLightning"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Physical To Lightning", statOrder = { 290 }, level = 38, group = "WeaponTreeSupportPhysicalToLightning", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportPhysicalToLightning2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Physical To Lightning", statOrder = { 290 }, level = 38, group = "WeaponTreeSupportPhysicalToLightning", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportAdvancedTraps"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Advanced Traps", statOrder = { 324 }, level = 38, group = "WeaponTreeSupportAdvancedTraps", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportAdvancedTraps2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Advanced Traps", statOrder = { 324 }, level = 38, group = "WeaponTreeSupportAdvancedTraps", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportIgniteProliferation"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Ignite Proliferation", statOrder = { 257 }, level = 38, group = "WeaponTreeSupportIgniteProliferation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportIgniteProliferation2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Ignite Proliferation", statOrder = { 257 }, level = 38, group = "WeaponTreeSupportIgniteProliferation", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportChanceToBleed"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Chance To Bleed", statOrder = { 219 }, level = 38, group = "WeaponTreeSupportChanceToBleed", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportChanceToBleed2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Chance To Bleed", statOrder = { 219 }, level = 38, group = "WeaponTreeSupportChanceToBleed", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportDecay"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 15 Decay", statOrder = { 230 }, level = 38, group = "WeaponTreeSupportDecay", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportDecay2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 15 Decay", statOrder = { 230 }, level = 38, group = "WeaponTreeSupportDecay", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportMaim"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Maim", statOrder = { 275 }, level = 38, group = "WeaponTreeSupportMaim", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportMaim2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Maim", statOrder = { 275 }, level = 38, group = "WeaponTreeSupportMaim", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportOnslaught"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Momentum", statOrder = { 285 }, level = 38, group = "WeaponTreeSupportOnslaught", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportOnslaught2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Momentum", statOrder = { 285 }, level = 38, group = "WeaponTreeSupportOnslaught", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportArcaneSurge"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Arcane Surge", statOrder = { 204 }, level = 38, group = "WeaponTreeSupportArcaneSurge", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 0, 100, 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportArcaneSurge2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Arcane Surge", statOrder = { 204 }, level = 38, group = "WeaponTreeSupportArcaneSurge", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportArrowNova"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Arrow Nova", statOrder = { 298 }, level = 38, group = "WeaponTreeSupportArrowNova", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["WeaponTreeSupportArrowNova2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Arrow Nova", statOrder = { 298 }, level = 38, group = "WeaponTreeSupportArrowNova", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "bow", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportPierce"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Pierce", statOrder = { 436 }, level = 38, group = "WeaponTreeSupportPierce", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportPierce2H"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 10 Pierce", statOrder = { 436 }, level = 38, group = "WeaponTreeSupportPierce", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportGenerosity"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Generosity", statOrder = { 422 }, level = 38, group = "WeaponTreeSupportGenerosity", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportGenerosity2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Generosity", statOrder = { 422 }, level = 38, group = "WeaponTreeSupportGenerosity", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportFortify"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Fortify", statOrder = { 423 }, level = 38, group = "WeaponTreeSupportFortify", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportFortify2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Fortify", statOrder = { 423 }, level = 38, group = "WeaponTreeSupportFortify", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportElementalProliferation"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Elemental Proliferation", statOrder = { 393 }, level = 38, group = "WeaponTreeSupportElementalProliferation", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportElementalProliferation2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Elemental Proliferation", statOrder = { 393 }, level = 38, group = "WeaponTreeSupportElementalProliferation", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportVolley"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Volley", statOrder = { 288 }, level = 38, group = "WeaponTreeSupportVolley", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportVolley2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Volley", statOrder = { 288 }, level = 38, group = "WeaponTreeSupportVolley", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportSpellCascade"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Spell Cascade", statOrder = { 314 }, level = 38, group = "WeaponTreeSupportSpellCascade", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 0, 100, 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportSpellCascade2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Spell Cascade", statOrder = { 314 }, level = 38, group = "WeaponTreeSupportSpellCascade", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportAncestralCall"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Ancestral Call", statOrder = { 317 }, level = 38, group = "WeaponTreeSupportAncestralCall", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportAncestralCall2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Ancestral Call", statOrder = { 317 }, level = 38, group = "WeaponTreeSupportAncestralCall", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportSummonGhostOnKill"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 15 Summon Phantasm", statOrder = { 320 }, level = 38, group = "WeaponTreeSupportSummonGhostOnKill", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeSupportSummonGhostOnKill2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 15 Summon Phantasm", statOrder = { 320 }, level = 38, group = "WeaponTreeSupportSummonGhostOnKill", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeSupportWitheringTouch"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Withering Touch", statOrder = { 332 }, level = 38, group = "WeaponTreeSupportWitheringTouch", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportWitheringTouch2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Withering Touch", statOrder = { 332 }, level = 38, group = "WeaponTreeSupportWitheringTouch", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportEnergyLeech"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Energy Leech", statOrder = { 237 }, level = 38, group = "WeaponTreeSupportEnergyLeech", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportEnergyLeech2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Energy Leech", statOrder = { 237 }, level = 38, group = "WeaponTreeSupportEnergyLeech", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportIntensify"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Intensify", statOrder = { 315 }, level = 38, group = "WeaponTreeSupportIntensify", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 0, 100, 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportIntensify2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Intensify", statOrder = { 315 }, level = 38, group = "WeaponTreeSupportIntensify", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportImpale"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Impale", statOrder = { 259 }, level = 38, group = "WeaponTreeSupportImpale", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportImpale2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Impale", statOrder = { 259 }, level = 38, group = "WeaponTreeSupportImpale", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportRage"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Rage", statOrder = { 297 }, level = 38, group = "WeaponTreeSupportRage", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportRage2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Rage", statOrder = { 297 }, level = 38, group = "WeaponTreeSupportRage", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportShockwave"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Shockwave", statOrder = { 311 }, level = 38, group = "WeaponTreeSupportShockwave", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "mace", "sceptre", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportShockwave2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Shockwave", statOrder = { 311 }, level = 38, group = "WeaponTreeSupportShockwave", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "staff", "mace", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportFeedingFrenzy"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Feeding Frenzy", statOrder = { 242 }, level = 38, group = "WeaponTreeSupportFeedingFrenzy", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeSupportFeedingFrenzy2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Feeding Frenzy", statOrder = { 242 }, level = 38, group = "WeaponTreeSupportFeedingFrenzy", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeSupportPredator"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Predator", statOrder = { 229 }, level = 38, group = "WeaponTreeSupportPredator", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeSupportPredator2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Predator", statOrder = { 229 }, level = 38, group = "WeaponTreeSupportPredator", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeSupportInfernalLegion"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 15 Infernal Legion", statOrder = { 264 }, level = 38, group = "WeaponTreeSupportInfernalLegion", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeSupportInfernalLegion2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 15 Infernal Legion", statOrder = { 264 }, level = 38, group = "WeaponTreeSupportInfernalLegion", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeSupportSwiftAssembly"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Swift Assembly", statOrder = { 321 }, level = 38, group = "WeaponTreeSupportSwiftAssembly", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportSwiftAssembly2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Swift Assembly", statOrder = { 321 }, level = 38, group = "WeaponTreeSupportSwiftAssembly", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportSecondWind"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Second Wind", statOrder = { 310 }, level = 38, group = "WeaponTreeSupportSecondWind", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportSecondWind2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Second Wind", statOrder = { 310 }, level = 38, group = "WeaponTreeSupportSecondWind", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportUrgentOrders"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Urgent Orders", statOrder = { 329 }, level = 38, group = "WeaponTreeSupportUrgentOrders", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportUrgentOrders2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Urgent Orders", statOrder = { 329 }, level = 38, group = "WeaponTreeSupportUrgentOrders", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportSwiftBrand"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Swiftbrand", statOrder = { 322 }, level = 38, group = "WeaponTreeSupportSwiftBrand", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 0, 100, 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportSwiftBrand2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Swiftbrand", statOrder = { 322 }, level = 38, group = "WeaponTreeSupportSwiftBrand", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportImpendingDoom"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 15 Impending Doom", statOrder = { 260 }, level = 38, group = "WeaponTreeSupportImpendingDoom", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 0, 100, 100, 100, 0 }, modTags = { "support", "gem" }, }, + ["WeaponTreeSupportImpendingDoom2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 15 Impending Doom", statOrder = { 260 }, level = 38, group = "WeaponTreeSupportImpendingDoom", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0, 100, 0 }, modTags = { "support", "gem" }, }, + ["WeaponTreeSupportLifetap"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Lifetap", statOrder = { 271 }, level = 38, group = "WeaponTreeSupportLifetap", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportLifetap2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Lifetap", statOrder = { 271 }, level = 38, group = "WeaponTreeSupportLifetap", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportBehead"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Behead", statOrder = { 209 }, level = 38, group = "WeaponTreeSupportBehead", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "ranged", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportBehead2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Behead", statOrder = { 209 }, level = 38, group = "WeaponTreeSupportBehead", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportDivineBlessing"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Divine Blessing", statOrder = { 206 }, level = 38, group = "WeaponTreeSupportDivineBlessing", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportDivineBlessing2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Divine Blessing", statOrder = { 206 }, level = 38, group = "WeaponTreeSupportDivineBlessing", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportEternalBlessing"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Eternal Blessing", statOrder = { 240 }, level = 38, group = "WeaponTreeSupportEternalBlessing", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportEternalBlessing2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Eternal Blessing", statOrder = { 240 }, level = 38, group = "WeaponTreeSupportEternalBlessing", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportOvercharge"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Overcharge", statOrder = { 286 }, level = 38, group = "WeaponTreeSupportOvercharge", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportOvercharge2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Overcharge", statOrder = { 286 }, level = 38, group = "WeaponTreeSupportOvercharge", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "two_hand_weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportCursedGround"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Cursed Ground", statOrder = { 227 }, level = 38, group = "WeaponTreeSupportCursedGround", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 0, 100, 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportCursedGround2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Cursed Ground", statOrder = { 227 }, level = 38, group = "WeaponTreeSupportCursedGround", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportHexBloom"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Hex Bloom", statOrder = { 256 }, level = 38, group = "WeaponTreeSupportHexBloom", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 0, 100, 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportHexBloom2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 25 Hex Bloom", statOrder = { 256 }, level = 38, group = "WeaponTreeSupportHexBloom", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportPinpoint"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Pinpoint", statOrder = { 291 }, level = 38, group = "WeaponTreeSupportPinpoint", nodeType = "Regular", nodeLocation = { 3, 4 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 0, 100, 100, 100, 0 }, modTags = { }, }, + ["WeaponTreeSupportPinpoint2H"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 10 Pinpoint", statOrder = { 291 }, level = 38, group = "WeaponTreeSupportPinpoint", nodeType = "Regular", nodeLocation = { 4 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0, 100, 0 }, modTags = { }, }, + ["WeaponTreeSkillTornadoShotSplitArrow"] = { type = "Spawn", tier = 1, "Trigger Level 20 Tornado when you Attack with Split Arrow or Tornado Shot", statOrder = { 5367 }, level = 1, group = "WeaponTreeSkillTornadoShotSplitArrow", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillMirrorArrowBlinkArrow"] = { type = "Spawn", tier = 1, "Trigger Level 20 Blink Arrow when you Attack with Mirror Arrow", "Trigger Level 20 Mirror Arrow when you Attack with Blink Arrow", statOrder = { 5345, 5351 }, level = 1, group = "WeaponTreeSkillMirrorArrowBlinkArrow", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillCleaveReave"] = { type = "Spawn", tier = 1, "Trigger Level 20 Summon Spectral Wolf on Critical Strike with Cleave or Reave", statOrder = { 5366 }, level = 1, group = "WeaponTreeSkillCleaveReave", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "sword", "axe", "dagger", "claw", "shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillBodySwapDetonateDead"] = { type = "Spawn", tier = 1, "Trigger Level 20 Bodyswap when you Explode a Corpse with Detonate Dead", statOrder = { 5346 }, level = 1, group = "WeaponTreeSkillBodySwapDetonateDead", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 0, 0, 0, 1000, 1000, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillGlacialCascadeIceNova"] = { type = "Spawn", tier = 1, "Trigger Level 20 Ice Nova from the Final Burst location of Glacial Cascades you Cast", statOrder = { 5350 }, level = 1, group = "WeaponTreeSkillGlacialCascadeIceNova", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 0, 0, 0, 1000, 1000, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillLaceratePerforate"] = { type = "Spawn", tier = 1, "Trigger Level 20 Stance Swap when you Attack with Perforate or Lacerate", statOrder = { 5365 }, level = 1, group = "WeaponTreeSkillLaceratePerforate", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "sword", "axe", "shield", "default", }, weightVal = { 1000, 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillStormBurstDivineIre"] = { type = "Spawn", tier = 1, "Trigger Level 20 Gravity Sphere when you Cast Storm Burst or Divine Ire", statOrder = { 5348 }, level = 1, group = "WeaponTreeSkillStormBurstDivineIre", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 0, 0, 0, 1000, 1000, 500, 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillHeavyStrikeBoneshatter"] = { type = "Spawn", tier = 1, "Trigger Level 20 Bone Corpses when you Stun an Enemy with Heavy Strike or Boneshatter", statOrder = { 5347 }, level = 1, group = "WeaponTreeSkillHeavyStrikeBoneshatter", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "sword", "staff", "sceptre", "mace", "axe", "shield", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillBladeFlurryChargedDash"] = { type = "Spawn", tier = 1, "Trigger a Socketed Spell every second while Channelling Blade Flurry or Charged Dash", statOrder = { 5344 }, level = 1, group = "WeaponTreeSkillBladeFlurryChargedDash", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "sword", "dagger", "claw", "weapon", "shield", "default", }, weightVal = { 0, 1000, 1000, 1000, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillBurningArrowExplosiveArrow"] = { type = "Spawn", tier = 1, "Killing Blows with Burning Arrow or Explosive Arrow Shatter Enemies as though Frozen", statOrder = { 5273 }, level = 1, group = "WeaponTreeSkillBurningArrowExplosiveArrow", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillBlastRainArtilleryBallista"] = { type = "Spawn", tier = 1, "All Damage from Blast Rain and Artillery Ballista Hits can Poison", "25% chance for Poisons inflicted with Blast Rain or Artillery Ballista to deal 100% more Damage", statOrder = { 4990, 4991 }, level = 1, group = "WeaponTreeSkillBlastRainArtilleryBallista", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillShrapnelBallistaSiegeBallista"] = { type = "Spawn", tier = 1, "50% increased Siege and Shrapnel Ballista attack speed per maximum Summoned Totem", "45% reduced Shrapnel Ballista attack speed per Shrapnel Ballista Totem", "45% reduced Siege Ballista attack speed per Siege Ballista Totem", statOrder = { 4201, 9810, 9815 }, level = 1, group = "WeaponTreeSkillShrapnelBallistaSiegeBallista", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillLightningArrowIceShot"] = { type = "Spawn", tier = 1, "All Damage from Lightning Arrow and Ice Shot Hits can Ignite", "25% chance for Ignites inflicted with Lightning Arrow or Ice Shot to deal 100% more Damage", statOrder = { 7296, 7297 }, level = 1, group = "WeaponTreeSkillLightningArrowIceShot", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillGalvanicArrowStormRain"] = { type = "Spawn", tier = 1, "Galvanic Arrow and Storm Rain Repeat an additional time when used by a Mine", statOrder = { 6728 }, level = 1, group = "WeaponTreeSkillGalvanicArrowStormRain", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillElementalHitWildStrike"] = { type = "Spawn", tier = 1, "Always inflict Scorch, Brittle and Sapped with Elemental Hit and Wild Strike Hits", "Cannot Ignite, Chill, Freeze or Shock", statOrder = { 6218, 9276 }, level = 1, group = "WeaponTreeSkillElementalHitWildStrike", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "shield", "weapon", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillBarrageFrenzy"] = { type = "Spawn", tier = 1, "Barrage and Frenzy have 25% increased Critical Strike Chance per Endurance Charge", statOrder = { 4876 }, level = 1, group = "WeaponTreeSkillBarrageFrenzy", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "shield", "one_hand_weapon", "default", }, weightVal = { 1000, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillBarrageFrenzy2H"] = { type = "Spawn", tier = 1, "Barrage and Frenzy have 40% increased Critical Strike Chance per Endurance Charge", statOrder = { 4876 }, level = 1, group = "WeaponTreeSkillBarrageFrenzy", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillToxicRainRainofArrows"] = { type = "Spawn", tier = 1, "Rain of Arrows and Toxic Rain deal 300% more Damage with Bleeding", "-60% of Toxic Rain Physical Damage Converted to Chaos Damage", statOrder = { 9597, 10195 }, level = 1, group = "WeaponTreeSkillToxicRainRainofArrows", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillCausticArrowScourgeArrow"] = { type = "Spawn", tier = 1, "Caustic Arrow and Scourge Arrow fire 25% more projectiles", statOrder = { 5370 }, level = 1, group = "WeaponTreeSkillCausticArrowScourgeArrow", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillPunctureEnsnaringArrow"] = { type = "Spawn", tier = 1, "Enemies you Kill with Puncture or Ensnaring Arrow Hits Explode, dealing 10% of their Life as Physical Damage", statOrder = { 9544 }, level = 1, group = "WeaponTreeSkillPunctureEnsnaringArrow", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "bow", "dagger", "claw", "sword", "shield", "default", }, weightVal = { 1000, 500, 500, 500, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillFrostBladesLightningStrike"] = { type = "Spawn", tier = 1, "All Damage from Lightning Strike and Frost Blades Hits can Ignite", "15% chance for Ignites inflicted with Lightning Strike or Frost Blades to deal 100% more Damage", statOrder = { 7331, 7332 }, level = 1, group = "WeaponTreeSkillFrostBladesLightningStrike", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "shield", "one_hand_weapon", "default", }, weightVal = { 0, 500, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillFrostBladesLightningStrike2H"] = { type = "Spawn", tier = 1, "All Damage from Lightning Strike and Frost Blades Hits can Ignite", "25% chance for Ignites inflicted with Lightning Strike or Frost Blades to deal 100% more Damage", statOrder = { 7331, 7332 }, level = 1, group = "WeaponTreeSkillFrostBladesLightningStrike", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillViperStrikePestilentStrike"] = { type = "Spawn", tier = 1, "Viper Strike and Pestilent Strike deal 25% increased Attack Damage per Frenzy Charge", statOrder = { 10310 }, level = 1, group = "WeaponTreeSkillViperStrikePestilentStrike", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "sword", "claw", "dagger", "shield", "default", }, weightVal = { 0, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillViperStrikePestilentStrike2H"] = { type = "Spawn", tier = 1, "Viper Strike and Pestilent Strike deal 40% increased Attack Damage per Frenzy Charge", statOrder = { 10310 }, level = 1, group = "WeaponTreeSkillViperStrikePestilentStrike", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "sword", "claw", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillDominatingBlowAbsolution"] = { type = "Spawn", tier = 1, "Increases and Reductions to Minion Damage also affect Dominating Blow and Absolution at 150% of their value", statOrder = { 6151 }, level = 1, group = "WeaponTreeSkillDominatingBlowAbsolution", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "bow", "shield", "weapon_can_roll_minion_modifiers", "minion_unique_weapon", "weapon", "default", }, weightVal = { 0, 500, 1000, 1000, 250, 0 }, modTags = { }, }, + ["WeaponTreeSkillVolcanicFissureMoltenStrike"] = { type = "Spawn", tier = 1, "Vaal Volcanic Fissure and Vaal Molten Strike have 40% reduced Soul Gain Prevention Duration", statOrder = { 10307 }, level = 1, group = "WeaponTreeSkillVolcanicFissureMoltenStrike", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "shield", "one_hand_weapon", "default", }, weightVal = { 0, 500, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillVolcanicFissureMoltenStrike2H"] = { type = "Spawn", tier = 1, "Vaal Volcanic Fissure and Vaal Molten Strike have 80% reduced Soul Gain Prevention Duration", statOrder = { 10307 }, level = 1, group = "WeaponTreeSkillVolcanicFissureMoltenStrike", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillStaticStrikeSmite"] = { type = "Spawn", tier = 1, "Killing Blows from Smite and Static Strike Consume corpses to Recover 5% of Life", statOrder = { 9867 }, level = 1, group = "WeaponTreeSkillStaticStrikeSmite", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "shield", "weapon", "default", }, weightVal = { 0, 500, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillVigilantStrikeFlickerStrike"] = { type = "Spawn", tier = 1, "Flicker Strike and Vigilant Strike's Cooldown can be bypassed by Power Charges instead of Frenzy or Endurance Charges", statOrder = { 10309 }, level = 1, group = "WeaponTreeSkillVigilantStrikeFlickerStrike", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "shield", "weapon", "default", }, weightVal = { 0, 500, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillDoubleStrikeDualStrike"] = { type = "Spawn", tier = 1, "50% chance to gain Soul Eater for 20 seconds on Killing Blow against Rare and Unique Enemies with Double Strike or Dual Strike", statOrder = { 6155 }, level = 1, group = "WeaponTreeSkillDoubleStrikeDualStrike", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "shield", "one_hand_weapon", "default", }, weightVal = { 0, 500, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillDoubleStrikeDualStrike2H"] = { type = "Spawn", tier = 1, "Gain Soul Eater for 20 seconds on Killing Blow against Rare and Unique Enemies with Double Strike or Dual Strike", statOrder = { 6155 }, level = 1, group = "WeaponTreeSkillDoubleStrikeDualStrike", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillIceCrashGlacialHammer"] = { type = "Spawn", tier = 1, "Enemies Frozen by Ice Crash or Glacial Hammer become Covered in Frost for 4 seconds as they Unfreeze", statOrder = { 7050 }, level = 1, group = "WeaponTreeSkillIceCrashGlacialHammer", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "shield", "sword", "mace", "sceptre", "axe", "staff", "default", }, weightVal = { 500, 500, 1000, 1000, 500, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillEarthquakeEarthshatter"] = { type = "Spawn", tier = 1, "Killing Blows with Earthquake and Earthshatter Shatter Enemies as though Frozen", statOrder = { 6178 }, level = 1, group = "WeaponTreeSkillEarthquakeEarthshatter", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "shield", "mace", "sceptre", "axe", "staff", "default", }, weightVal = { 500, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillGroundSlamSunder"] = { type = "Spawn", tier = 1, "Poisons inflicted by Sunder or Ground Slam on non-Poisoned Enemies deal 400% increased Damage", statOrder = { 6790 }, level = 1, group = "WeaponTreeSkillGroundSlamSunder", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "shield", "mace", "sceptre", "axe", "staff", "default", }, weightVal = { 0, 500, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillGroundSlamSunder2H"] = { type = "Spawn", tier = 1, "Poisons inflicted by Sunder or Ground Slam on non-Poisoned Enemies deal 600% increased Damage", statOrder = { 6790 }, level = 1, group = "WeaponTreeSkillGroundSlamSunder", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "mace", "sceptre", "axe", "staff", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillTectonicSlamInfernalBlow"] = { type = "Spawn", tier = 1, "Tectonic Slam and Infernal Blow deal 1% increased Attack Damage per 700 Armour", statOrder = { 10143 }, level = 1, group = "WeaponTreeSkillTectonicSlamInfernalBlow", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "shield", "sword", "mace", "sceptre", "axe", "staff", "default", }, weightVal = { 0, 500, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillTectonicSlamInfernalBlow2H"] = { type = "Spawn", tier = 1, "Tectonic Slam and Infernal Blow deal 1% increased Attack Damage per 450 Armour", statOrder = { 10142 }, level = 1, group = "WeaponTreeSkillTectonicSlamInfernalBlow2H", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "sword", "mace", "sceptre", "axe", "staff", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillRageVortexBladestorm"] = { type = "Spawn", tier = 1, "Enemies in your Rage Vortex or Bladestorms are Hindered and Unnerved", statOrder = { 4986 }, level = 1, group = "WeaponTreeSkillRageVortexBladestorm", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "sword", "axe", "shield", "default", }, weightVal = { 1000, 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillShieldCrushSpectralShieldThrow"] = { type = "Spawn", tier = 1, "Shield Crush and Spectral Shield Throw do not gain Added Physical Damage based on Armour or Evasion on shield", "Shield Crush and Spectral Shield Throw gains 30 to 50 Added Lightning Damage per 15 Energy Shield on Shield", "100% of Shield Crush and Spectral Shield Throw Physical Damage Converted to Lightning Damage", statOrder = { 9781, 9782, 9783 }, level = 1, group = "WeaponTreeSkillShieldCrushSpectralShieldThrow", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillShieldCrushSpectralShieldThrowUniqueHelmet"] = { type = "Spawn", tier = 1, "Shield Crush and Spectral Shield Throw do not gain Added Physical Damage based on Armour or Evasion on shield", "Shield Crush and Spectral Shield Throw gains 15 to 25 Added Lightning Damage per 15 Energy Shield on Shield", "100% of Shield Crush and Spectral Shield Throw Physical Damage Converted to Lightning Damage", statOrder = { 9781, 9782, 9783 }, level = 1, group = "WeaponTreeSkillShieldCrushSpectralShieldThrow", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "crucible_unique_helmet", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillCycloneSweep"] = { type = "Spawn", tier = 1, "Knockback direction is reversed with Cyclone and Sweep", "Knock Enemies Back on hit with Cyclone and Sweep", statOrder = { 5908, 5909 }, level = 1, group = "WeaponTreeSkillCycloneSweep", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "shield", "weapon", "default", }, weightVal = { 0, 500, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillCobraLashVenomGyre"] = { type = "Spawn", tier = 1, "25% chance for Bleeding inflicted with Cobra Lash or Venom Gyre to deal 100% more Damage", "Cobra Lash and Venom Gyre have -60% of Physical Damage Converted to Chaos Damage", statOrder = { 5688, 5689 }, level = 1, group = "WeaponTreeSkillCobraLashVenomGyre", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "claw", "dagger", "shield", "default", }, weightVal = { 1000, 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillPoisonousConcoctionExplosiveConcoction"] = { type = "Spawn", tier = 1, "If Poisonous Concoction or Explosive Concoction consume Charges from a Sulphur Flask, Enemies Killed by their Hits have 40% chance to Explode, dealing 10% of their Life as Physical Damage", "Poisonous Concoction and Explosive Concoction also consume Charges from 1 Sulphur Flask, if possible", statOrder = { 6528, 7735 }, level = 1, group = "WeaponTreeSkillPoisonousConcoctionExplosiveConcoction", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "crucible_unique_helmet", "shield", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillPoisonousConcoctionExplosiveConcoctionUniqueHelmet"] = { type = "Spawn", tier = 1, "If Poisonous Concoction or Explosive Concoction consume Charges from a Sulphur Flask, Enemies Killed by their Hits have 25% chance to Explode, dealing 10% of their Life as Physical Damage", "Poisonous Concoction and Explosive Concoction also consume Charges from 1 Sulphur Flask, if possible", statOrder = { 6528, 7735 }, level = 1, group = "WeaponTreeSkillPoisonousConcoctionExplosiveConcoction", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "crucible_unique_helmet", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillSplittingSteelLancingSteelShatteringSteel"] = { type = "Spawn", tier = 1, "Recover 1% of Energy Shield per Steel Shard Consumed", statOrder = { 9639 }, level = 1, group = "WeaponTreeSkillSplittingSteelLancingSteelShatteringSteel", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "sword", "axe", "shield", "default", }, weightVal = { 0, 1000, 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillSplittingSteelLancingSteelShatteringSteel2H"] = { type = "Spawn", tier = 1, "Recover 2% of Energy Shield per Steel Shard Consumed", statOrder = { 9639 }, level = 1, group = "WeaponTreeSkillSplittingSteelLancingSteelShatteringSteel", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "sword", "axe", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillSpectralHelixSpectralThrow"] = { type = "Spawn", tier = 1, "Each Projectile from Spectral Helix or Spectral Throw has", "between 40% more and 40% less Projectile Speed at random", statOrder = { 9895, 9895.1 }, level = 1, group = "WeaponTreeSkillSpectralHelixSpectralThrow", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "one_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillSpectralHelixSpectralThrow2H"] = { type = "Spawn", tier = 1, "Each Projectile from Spectral Helix or Spectral Throw has", "between 75% more and 75% less Projectile Speed at random", statOrder = { 9895, 9895.1 }, level = 1, group = "WeaponTreeSkillSpectralHelixSpectralThrow", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillChainHookShieldCharge"] = { type = "Spawn", tier = 1, "Shield Charge and Chain Hook have 2% increased Attack Speed per 10 Rampage Kills", statOrder = { 5374 }, level = 1, group = "WeaponTreeSkillChainHookShieldCharge", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "sword", "axe", "mace", "sceptre", "shield", "default", }, weightVal = { 0, 500, 500, 500, 500, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillConsecratedPathPurifyingFlame"] = { type = "Spawn", tier = 1, "Consecrated Path and Purifying Flame create Profane Ground instead of Consecrated Ground", "100% of Consecrated Path and Purifying Flame Fire Damage Converted to Chaos Damage", statOrder = { 5756, 5757 }, level = 1, group = "WeaponTreeSkillConsecratedPathPurifyingFlame", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "bow", "claw", "weapon_can_roll_minion_modifiers", "attack_dagger", "shield", "weapon", "default", }, weightVal = { 1000, 0, 0, 0, 0, 500, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillFrozenLegionGeneralsCry"] = { type = "Spawn", tier = 1, "100% more Frozen Legion and General's Cry Cooldown Recovery Rate", "Frozen Sweep deals 30% less Damage", "General's Cry has -2 to maximum number of Mirage Warriors", statOrder = { 6573, 6578, 6735 }, level = 1, group = "WeaponTreeSkillFrozenLegionGeneralsCry", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillAncestralProtectorAncestralWarchief"] = { type = "Spawn", tier = 1, "20% of Damage Dealt by Ancestor Totems Leeched to you as Energy Shield", statOrder = { 4565 }, level = 1, group = "WeaponTreeSkillAncestralProtectorAncestralWarchief", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "shield", "one_hand_weapon", "default", }, weightVal = { 0, 500, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillAncestralProtectorAncestralWarchief2H"] = { type = "Spawn", tier = 1, "40% of Damage Dealt by Ancestor Totems Leeched to you as Energy Shield", statOrder = { 4565 }, level = 1, group = "WeaponTreeSkillAncestralProtectorAncestralWarchief", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "ranged", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillKineticBoltKineticBlastPowerSiphon"] = { type = "Spawn", tier = 1, "Kinetic Bolt, Kinetic Blast and Power Siphon have 20% reduced Enemy Stun Threshold", "100% chance for Kinetic Bolt, Kinetic Blast and Power Siphon to double Stun Duration", statOrder = { 7178, 7179 }, level = 1, group = "WeaponTreeSkillKineticBoltKineticBlastPowerSiphon", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "wand", "shield", "default", }, weightVal = { 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillExsanguinateReap"] = { type = "Spawn", tier = 1, "100% of Exsanguinate and Reap Physical Damage Converted to Fire Damage", "Exsanguinate debuffs deal Fire Damage per second instead of Physical Damage per second", "Reap debuffs deal Fire Damage per second instead of Physical Damage per second", statOrder = { 6411, 6413, 9618 }, level = 1, group = "WeaponTreeSkillExsanguinateReap", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 0, 0, 0, 1000, 1000, 500, 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillFirestormBladefall"] = { type = "Spawn", tier = 1, "15% chance for Firestorm and Bladefall to affect the same area again when they finish", statOrder = { 6481 }, level = 1, group = "WeaponTreeSkillFirestormBladefall", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillFirestormBladefall2H"] = { type = "Spawn", tier = 1, "25% chance for Firestorm and Bladefall to affect the same area again when they finish", statOrder = { 6481 }, level = 1, group = "WeaponTreeSkillFirestormBladefall", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillEtherealKnives"] = { type = "Spawn", tier = 1, "Ethereal Knives requires 1 fewer Projectile Fired to leave each Lingering Blade", statOrder = { 6358 }, level = 1, group = "WeaponTreeSkillEtherealKnives", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillEtherealKnives2H"] = { type = "Spawn", tier = 1, "Ethereal Knives requires 2 fewer Projectiles Fired to leave each Lingering Blade", statOrder = { 6358 }, level = 1, group = "WeaponTreeSkillEtherealKnives", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillFireballRollingMagma"] = { type = "Spawn", tier = 1, "Fireball and Rolling Magma have 100% more Area of Effect", "Modifiers to number of Projectiles do not apply to Fireball and Rolling Magma", statOrder = { 6477, 6478 }, level = 1, group = "WeaponTreeSkillFireballRollingMagma", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillFireballRollingMagma2H"] = { type = "Spawn", tier = 1, "Fireball and Rolling Magma have 200% more Area of Effect", "Modifiers to number of Projectiles do not apply to Fireball and Rolling Magma", statOrder = { 6477, 6478 }, level = 1, group = "WeaponTreeSkillFireballRollingMagma", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillFreezingPulseEyeOfWinter"] = { type = "Spawn", tier = 1, "All Damage from Hits with Freezing Pulse and Eye of Winter can Poison", "15% chance for Poisons inflicted with Freezing Pulse and Eye of Winter to deal 100% more Damage", statOrder = { 6553, 6554 }, level = 1, group = "WeaponTreeSkillFreezingPulseEyeOfWinter", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillFreezingPulseEyeOfWinter2H"] = { type = "Spawn", tier = 1, "All Damage from Hits with Freezing Pulse and Eye of Winter can Poison", "25% chance for Poisons inflicted with Freezing Pulse and Eye of Winter to deal 100% more Damage", statOrder = { 6553, 6554 }, level = 1, group = "WeaponTreeSkillFreezingPulseEyeOfWinter", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillBladeVortexBladeBlast"] = { type = "Spawn", tier = 1, "30% chance for Blade Vortex and Blade Blast to Impale Enemies on Hit", "Blade Vortex and Blade Blast deal no Non-Physical Damage", statOrder = { 4982, 4983 }, level = 1, group = "WeaponTreeSkillBladeVortexBladeBlast", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillBladeVortexBladeBlast2H"] = { type = "Spawn", tier = 1, "60% chance for Blade Vortex and Blade Blast to Impale Enemies on Hit", "Blade Vortex and Blade Blast deal no Non-Physical Damage", statOrder = { 4982, 4983 }, level = 1, group = "WeaponTreeSkillBladeVortexBladeBlast", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillShockNovaStormCall"] = { type = "Spawn", tier = 1, "All Damage from Shock Nova and Storm Call Hits can Ignite", "15% chance for Ignites inflicted with Shock Nova or Storm Call to deal 100% more Damage", statOrder = { 9798, 9799 }, level = 1, group = "WeaponTreeSkillShockNovaStormCall", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillShockNovaStormCall2H"] = { type = "Spawn", tier = 1, "All Damage from Shock Nova and Storm Call Hits can Ignite", "25% chance for Ignites inflicted with Shock Nova or Storm Call to deal 100% more Damage", statOrder = { 9798, 9799 }, level = 1, group = "WeaponTreeSkillShockNovaStormCall", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillCreepingFrostColdSnap"] = { type = "Spawn", tier = 1, "All Damage from Cold Snap and Creeping Frost can Sap", "25% chance for Cold Snap and Creeping Frost to Sap Enemies in Chilling Areas", statOrder = { 5807, 5808 }, level = 1, group = "WeaponTreeSkillCreepingFrostColdSnap", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillCreepingFrostColdSnap2H"] = { type = "Spawn", tier = 1, "All Damage from Cold Snap and Creeping Frost can Sap", "50% chance for Cold Snap and Creeping Frost to Sap Enemies in Chilling Areas", statOrder = { 5807, 5808 }, level = 1, group = "WeaponTreeSkillCreepingFrostColdSnap", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillLightningConduitGalvanicField"] = { type = "Spawn", tier = 1, "Killing Blows with Lightning Conduit and Galvanic Field Shatter Enemies as though Frozen", statOrder = { 7299 }, level = 1, group = "WeaponTreeSkillLightningConduitGalvanicField", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillManabondStormbind"] = { type = "Spawn", tier = 1, "Manabond and Stormbind Freeze enemies as though dealing 200% more Damage", "50% of Manabond and Stormbind Lightning Damage Converted to Cold Damage", statOrder = { 8052, 8053 }, level = 1, group = "WeaponTreeSkillManabondStormbind", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillManabondStormbind2H"] = { type = "Spawn", tier = 1, "Manabond and Stormbind Freeze enemies as though dealing 300% more Damage", "100% of Manabond and Stormbind Lightning Damage Converted to Cold Damage", statOrder = { 8052, 8053 }, level = 1, group = "WeaponTreeSkillManabondStormbind", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillIceSpearBallLightning"] = { type = "Spawn", tier = 1, "Ice Spear and Ball Lightning fire Projectiles in a circle", "Ice Spear and Ball Lightning Projectiles Return to you", statOrder = { 7063, 7064 }, level = 1, group = "WeaponTreeSkillIceSpearBallLightning", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillFlameblastIncinerate"] = { type = "Spawn", tier = 1, "+0.2 seconds to Flameblast and Incinerate Cooldown", "Flameblast and Incinerate cannot inflict Elemental Ailments", "Flameblast starts with 2 additional Stages", "Incinerate starts with 2 additional Stages", statOrder = { 6506, 6507, 6508, 7127 }, level = 1, group = "WeaponTreeSkillFlameblastIncinerate", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillFlameblastIncinerate2H"] = { type = "Spawn", tier = 1, "+0.4 seconds to Flameblast and Incinerate Cooldown", "Flameblast and Incinerate cannot inflict Elemental Ailments", "Flameblast starts with 4 additional Stages", "Incinerate starts with 4 additional Stages", statOrder = { 6506, 6507, 6508, 7127 }, level = 1, group = "WeaponTreeSkillFlameblastIncinerate", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillHexblastDoomBlast"] = { type = "Spawn", tier = 1, "10% of Hexblast and Doom Blast Overkill Damage is Leeched as Life", statOrder = { 7001 }, level = 1, group = "WeaponTreeSkillHexblastDoomBlast", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillHexblastDoomBlast2H"] = { type = "Spawn", tier = 1, "20% of Hexblast and Doom Blast Overkill Damage is Leeched as Life", statOrder = { 7001 }, level = 1, group = "WeaponTreeSkillHexblastDoomBlast", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillForbiddenRiteDarkPact"] = { type = "Spawn", tier = 1, "Forbidden Rite and Dark Pact gains Added Chaos Damage equal to 12% of Mana Cost, if Mana Cost is not higher than the maximum you could spend", statOrder = { 6540 }, level = 1, group = "WeaponTreeSkillForbiddenRiteDarkPact", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillForbiddenRiteDarkPact2H"] = { type = "Spawn", tier = 1, "Forbidden Rite and Dark Pact gains Added Chaos Damage equal to 20% of Mana Cost, if Mana Cost is not higher than the maximum you could spend", statOrder = { 6540 }, level = 1, group = "WeaponTreeSkillForbiddenRiteDarkPact", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillBaneContagion"] = { type = "Spawn", tier = 1, "Enemies inflicted with Bane or Contagion are Chilled", statOrder = { 6258 }, level = 1, group = "WeaponTreeSkillBaneContagion", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillEssenceDrainSoulrend"] = { type = "Spawn", tier = 1, "25% reduced Essence Drain and Soulrend Projectile Speed", "Essence Drain and Soulrend fire 2 additional Projectiles", statOrder = { 6356, 6357 }, level = 1, group = "WeaponTreeSkillEssenceDrainSoulrend", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillEssenceDrainSoulrend2H"] = { type = "Spawn", tier = 1, "50% reduced Essence Drain and Soulrend Projectile Speed", "Essence Drain and Soulrend fire 4 additional Projectiles", statOrder = { 6356, 6357 }, level = 1, group = "WeaponTreeSkillEssenceDrainSoulrend", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillSparkLightningTendrils"] = { type = "Spawn", tier = 1, "50% increased Spark Duration when Cast by a Totem while you also have a Lightning Tendrils Spell Totem", "Lightning Tendrils releases 1 fewer Pulse between Stronger Pulses when Cast by a Totem while you also have a Spark Spell Totem", statOrder = { 7334, 9884 }, level = 1, group = "WeaponTreeSkillSparkLightningTendrils", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillSparkLightningTendrils2H"] = { type = "Spawn", tier = 1, "100% increased Spark Duration when Cast by a Totem while you also have a Lightning Tendrils Spell Totem", "Lightning Tendrils releases 2 fewer Pulses between Stronger Pulses when Cast by a Totem while you also have a Spark Spell Totem", statOrder = { 7334, 9884 }, level = 1, group = "WeaponTreeSkillSparkLightningTendrils", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillFrostBombOrbofStorms"] = { type = "Spawn", tier = 1, "Frost Bombs gain 50% increased Area of Effect when you Cast Frostblink", "Strikes from Orb of Storms caused by Channelling near the Orb occur with 40% increased frequency", statOrder = { 6563, 9353 }, level = 1, group = "WeaponTreeSkillFrostBombOrbofStorms", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillFrostBombOrbofStorms2H"] = { type = "Spawn", tier = 1, "Frost Bombs gain 75% increased Area of Effect when you Cast Frostblink", "Strikes from Orb of Storms caused by Channelling near the Orb occur with 60% increased frequency", statOrder = { 6563, 9353 }, level = 1, group = "WeaponTreeSkillFrostBombOrbofStorms", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillWinterOrbHydrosphere"] = { type = "Spawn", tier = 1, "Trigger Level 20 Hydrosphere while you Channel Winter Orb", statOrder = { 5349 }, level = 1, group = "WeaponTreeSkillWinterOrbHydrosphere", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillWintertideBrandArcanistBrand"] = { type = "Spawn", tier = 1, "Enemies Branded by Wintertide Brand or Arcanist Brand Explode on Death dealing a quarter of their maximum Life as Chaos damage", statOrder = { 10401 }, level = 1, group = "WeaponTreeSkillWintertideBrandArcanistBrand", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillAnimateWeapon"] = { type = "Spawn", tier = 1, "Animated Lingering Blades have +1.5% to Critical Strike Chance", statOrder = { 4591 }, level = 1, group = "WeaponTreeSkillAnimateWeapon", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillAnimateWeapon2H"] = { type = "Spawn", tier = 1, "Animated Lingering Blades have +2.5% to Critical Strike Chance", statOrder = { 4591 }, level = 1, group = "WeaponTreeSkillAnimateWeapon", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillSummonCarrionGolemSummonStoneGolemSummonChaosGolem"] = { type = "Spawn", tier = 1, "Summoned Carrion Golems Impale on Hit if you have the same number of them as Summoned Chaos Golems", "Summoned Chaos Golems Impale on Hit if you have the same number of them as Summoned Stone Golems", "Summoned Stone Golems Impale on Hit if you have the same number of them as Summoned Carrion Golems", statOrder = { 5343, 5648, 10018 }, level = 1, group = "WeaponTreeSkillSummonCarrionGolemSummonStoneGolemSummonChaosGolem", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillSummonFlameGolemSummonIceGolemSummonLightningGolem"] = { type = "Spawn", tier = 1, "Maximum Life of Summoned Elemental Golems is Doubled", statOrder = { 6217 }, level = 1, group = "WeaponTreeSkillSummonFlameGolemSummonIceGolemSummonLightningGolem", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillSummonHolyRelicSummonSkeletons"] = { type = "Spawn", tier = 1, "Summoned Skeletons and Holy Relics convert 100% of their Physical Damage to a random Element", "100% increased Effect of Non-Damaging Ailments inflicted by Summoned Skeletons and Holy Relics", statOrder = { 9833, 9834 }, level = 1, group = "WeaponTreeSkillSummonHolyRelicSummonSkeletons", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillSummonHolyRelicSummonSkeletons2H"] = { type = "Spawn", tier = 1, "Summoned Skeletons and Holy Relics convert 100% of their Physical Damage to a random Element", "200% increased Effect of Non-Damaging Ailments inflicted by Summoned Skeletons and Holy Relics", statOrder = { 9833, 9834 }, level = 1, group = "WeaponTreeSkillSummonHolyRelicSummonSkeletons", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillRaiseSpectreRaiseZombie"] = { type = "Spawn", tier = 1, "Raised Zombies and Spectres gain Adrenaline for 8 seconds when Raised", statOrder = { 9900 }, level = 1, group = "WeaponTreeSkillRaiseSpectreRaiseZombie", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillRaiseSpectreRaiseZombie2H"] = { type = "Spawn", tier = 1, "Raised Zombies and Spectres gain Adrenaline for 14 seconds when Raised", statOrder = { 9900 }, level = 1, group = "WeaponTreeSkillRaiseSpectreRaiseZombie", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillSummonRagingSpiritSummonPhantasmSupport"] = { type = "Spawn", tier = 1, "Maximum number of Summoned Raging Spirits is 3", "Maximum number of Summoned Phantasms is 3", "Summoned Raging Spirits have Diamond Shrine and Massive Shrine Buffs", "Summoned Phantasms have Diamond Shrine and Massive Shrine Buffs", statOrder = { 9330, 9332, 10090, 10101 }, level = 1, group = "WeaponTreeSkillSummonRagingSpiritSummonPhantasmSupport", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillFireTrapExplosiveTrap"] = { type = "Spawn", tier = 1, "Fire Trap and Explosive Trap Throw an additional Trap when used by a Mine", statOrder = { 6437 }, level = 1, group = "WeaponTreeSkillFireTrapExplosiveTrap", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillFireTrapExplosiveTrap2H"] = { type = "Spawn", tier = 1, "Fire Trap and Explosive Trap Throws 2 additional Traps when used by a Mine", statOrder = { 6437 }, level = 1, group = "WeaponTreeSkillFireTrapExplosiveTrap", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillIceTrapLightningTrap"] = { type = "Spawn", tier = 1, "Ice Trap and Lightning Trap Damage Penetrates 15% of Enemy Elemental Resistances", "Ice Traps and Lightning Traps are triggered by your Warcries", "Ice Traps and Lightning Traps cannot be triggered by Enemies", statOrder = { 7047, 7048, 7049 }, level = 1, group = "WeaponTreeSkillIceTrapLightningTrap", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillIceTrapLightningTrap2H"] = { type = "Spawn", tier = 1, "Ice Trap and Lightning Trap Damage Penetrates 25% of Enemy Elemental Resistances", "Ice Traps and Lightning Traps are triggered by your Warcries", "Ice Traps and Lightning Traps cannot be triggered by Enemies", statOrder = { 7047, 7048, 7049 }, level = 1, group = "WeaponTreeSkillIceTrapLightningTrap", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillFlamethrowerTrapSeismicTrapLightningSpireTrap"] = { type = "Spawn", tier = 1, "Flamethrower, Seismic and Lightning Spire Trap have 30% increased Cooldown Recovery Rate", "Flamethrower, Seismic and Lightning Spire Trap have -1 Cooldown Use", statOrder = { 6509, 6510 }, level = 1, group = "WeaponTreeSkillFlamethrowerTrapSeismicTrapLightningSpireTrap", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillFlamethrowerTrapSeismicTrapLightningSpireTrap2H"] = { type = "Spawn", tier = 1, "Flamethrower, Seismic and Lightning Spire Trap have 50% increased Cooldown Recovery Rate", "Flamethrower, Seismic and Lightning Spire Trap have -2 Cooldown Uses", statOrder = { 6509, 6510 }, level = 1, group = "WeaponTreeSkillFlamethrowerTrapSeismicTrapLightningSpireTrap", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillStormblastMinePyroclastMineIcicleMine"] = { type = "Spawn", tier = 1, "Stormblast, Icicle and Pyroclast Mine have 150% increased Aura Effect", "Stormblast, Icicle and Pyroclast Mine deal no Damage", statOrder = { 10037, 10038 }, level = 1, group = "WeaponTreeSkillStormblastMinePyroclastMineIcicleMine", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillStormblastMinePyroclastMineIcicleMine2H"] = { type = "Spawn", tier = 1, "Stormblast, Icicle and Pyroclast Mine have 300% increased Aura Effect", "Stormblast, Icicle and Pyroclast Mine deal no Damage", statOrder = { 10037, 10038 }, level = 1, group = "WeaponTreeSkillStormblastMinePyroclastMineIcicleMine", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillBearTrapSiphoningTrap"] = { type = "Spawn", tier = 1, "Bear Trap and Siphoning Trap Debuffs also apply 15% reduced Cooldown Recovery Rate to affected Enemies", statOrder = { 4957 }, level = 1, group = "WeaponTreeSkillBearTrapSiphoningTrap", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillBearTrapSiphoningTrap2H"] = { type = "Spawn", tier = 1, "Bear Trap and Siphoning Trap Debuffs also apply 25% reduced Cooldown Recovery Rate to affected Enemies", statOrder = { 4957 }, level = 1, group = "WeaponTreeSkillBearTrapSiphoningTrap", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillHolyFlameTotemShockwaveTotem"] = { type = "Spawn", tier = 1, "Holy Flame Totem and Shockwave Totem gain 35% of Physical Damage as Extra Fire Damage when Cast by a Totem linked to by Searing Bond", statOrder = { 7040 }, level = 1, group = "WeaponTreeSkillHolyFlameTotemShockwaveTotem", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillHolyFlameTotemShockwaveTotem2H"] = { type = "Spawn", tier = 1, "Holy Flame Totem and Shockwave Totem gain 60% of Physical Damage as Extra Fire Damage when Cast by a Totem linked to by Searing Bond", statOrder = { 7040 }, level = 1, group = "WeaponTreeSkillHolyFlameTotemShockwaveTotem", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillDecoyTotemRejuvenationTotemDevouringTotem"] = { type = "Spawn", tier = 1, "Decoy, Devouring and Rejuvenation Totems Reflect 100% of their maximum Life as Fire Damage to nearby Enemies when Hit", statOrder = { 6046 }, level = 1, group = "WeaponTreeSkillDecoyTotemRejuvenationTotemDevouringTotem", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillDecoyTotemRejuvenationTotemDevouringTotem2H"] = { type = "Spawn", tier = 1, "Decoy, Devouring and Rejuvenation Totems Reflect 200% of their maximum Life as Fire Damage to nearby Enemies when Hit", statOrder = { 6046 }, level = 1, group = "WeaponTreeSkillDecoyTotemRejuvenationTotemDevouringTotem", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillRighteousFireScorchingRay"] = { type = "Spawn", tier = 1, "Regenerate 15 Mana per second while any Enemy is in your Righteous Fire or Scorching Ray", statOrder = { 9730 }, level = 1, group = "WeaponTreeSkillRighteousFireScorchingRay", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillRighteousFireScorchingRay2H"] = { type = "Spawn", tier = 1, "Regenerate 25 Mana per second while any Enemy is in your Righteous Fire or Scorching Ray", statOrder = { 9730 }, level = 1, group = "WeaponTreeSkillRighteousFireScorchingRay", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillBlightWither"] = { type = "Spawn", tier = 1, "Blight has 50% increased Area of Effect per second you have been Channelling, up to a maximum of 200%", "Wither has 50% increased Area of Effect per second you have been Channelling, up to a maximum of 200%", statOrder = { 5011, 10402 }, level = 1, group = "WeaponTreeSkillBlightWither", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillBlightWither2H"] = { type = "Spawn", tier = 1, "Blight has 80% increased Area of Effect per second you have been Channelling, up to a maximum of 200%", "Wither has 80% increased Area of Effect per second you have been Channelling, up to a maximum of 200%", statOrder = { 5011, 10402 }, level = 1, group = "WeaponTreeSkillBlightWither", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillVoltaxicBurstDischarge"] = { type = "Spawn", tier = 1, "Discharge and Voltaxic Burst are Cast at the targeted location instead of around you", statOrder = { 6075 }, level = 1, group = "WeaponTreeSkillVoltaxicBurstDischarge", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillStormArmageddonBrandSummonReaper"] = { type = "Spawn", tier = 1, "Storm and Armageddon Brands can be attached to your Summoned Reaper", statOrder = { 10019 }, level = 1, group = "WeaponTreeSkillStormArmageddonBrandSummonReaper", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "minion_unique_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 1000, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillArcCracklingLance"] = { type = "Spawn", tier = 1, "Arc and Crackling Lance gains Added Cold Damage equal to 12% of Mana Cost, if Mana Cost is not higher than the maximum you could spend", "15% increased Cost of Arc and Crackling Lance", statOrder = { 4600, 4601 }, level = 1, group = "WeaponTreeSkillArcCracklingLance", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillArcCracklingLance2H"] = { type = "Spawn", tier = 1, "Arc and Crackling Lance gains Added Cold Damage equal to 20% of Mana Cost, if Mana Cost is not higher than the maximum you could spend", "25% increased Cost of Arc and Crackling Lance", statOrder = { 4600, 4601 }, level = 1, group = "WeaponTreeSkillArcCracklingLance", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillAnimateGuardian"] = { type = "Spawn", tier = 1, "50% increased Effect of Link Buffs on Animated Guardian", "Link Skills can target Animated Guardian", statOrder = { 7343, 7357 }, level = 1, group = "WeaponTreeSkillAnimateGuardian", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillBlazingSalvoFlameWall"] = { type = "Spawn", tier = 1, "Blazing Salvo Projectiles Fork when they pass through a Flame Wall", statOrder = { 4994 }, level = 1, group = "WeaponTreeSkillBlazingSalvoFlameWall", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillVolatileDeadCremation"] = { type = "Spawn", tier = 1, "Volatile Dead and Cremation Penetrate 2% Fire Resistance per 100 Dexterity", statOrder = { 10322 }, level = 1, group = "WeaponTreeSkillVolatileDeadCremation", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillVolatileDeadCremation2H"] = { type = "Spawn", tier = 1, "Volatile Dead and Cremation Penetrate 4% Fire Resistance per 100 Dexterity", statOrder = { 10322 }, level = 1, group = "WeaponTreeSkillVolatileDeadCremation", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillWaveofConviction"] = { type = "Spawn", tier = 1, "+10% to Wave of Conviction Damage over Time Multiplier per 0.1 seconds of Duration expired", statOrder = { 9549 }, level = 1, group = "WeaponTreeSkillWaveofConviction", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillWaveofConviction2H"] = { type = "Spawn", tier = 1, "+15% to Wave of Conviction Damage over Time Multiplier per 0.1 seconds of Duration expired", statOrder = { 9549 }, level = 1, group = "WeaponTreeSkillWaveofConviction", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSkillVortexFrostbolt"] = { type = "Spawn", tier = 1, "+15% to Vortex Critical Strike Chance when Cast on Frostbolt", statOrder = { 10333 }, level = 1, group = "WeaponTreeSkillVortexFrostbolt", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "two_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "shield", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 500, 0 }, modTags = { }, }, + ["WeaponTreeSkillVortexFrostbolt2H"] = { type = "Spawn", tier = 1, "+25% to Vortex Critical Strike Chance when Cast on Frostbolt", statOrder = { 10333 }, level = 1, group = "WeaponTreeSkillVortexFrostbolt", nodeType = "Notable", nodeLocation = { 5 }, weightKey = { "one_hand_weapon", "caster_unique_weapon", "attack_staff", "attack_dagger", "weapon_can_roll_minion_modifiers", "wand", "staff", "dagger", "sceptre", "default", }, weightVal = { 0, 1000, 0, 0, 0, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["WeaponTreeSellPriceMagmaticOre"] = { type = "Spawn", tier = 1, "Item sells for an additional Magmatic Ore", statOrder = { 10376 }, level = 50, group = "WeaponTreeSellPriceMagmaticOre", nodeType = "SellBonus", nodeLocation = { 3, 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 1275, 1275, 938, 750 }, modTags = { }, }, + ["WeaponTreeSellNodeScouringOrb"] = { type = "Spawn", tier = 1, "Item sells for 20 additional Orbs of Scouring", statOrder = { 10387 }, level = 50, group = "WeaponTreeSellNodeScouringOrb", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 340, 340, 250, 200 }, modTags = { }, }, + ["WeaponTreeSellNodeScouringOrbHigh"] = { type = "Spawn", tier = 2, "Item sells for 40 additional Orbs of Scouring", statOrder = { 10387 }, level = 78, group = "WeaponTreeSellNodeScouringOrbHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 170, 170, 125, 100 }, modTags = { }, }, + ["WeaponTreeSellNodeChaosOrb"] = { type = "Spawn", tier = 1, "Item sells for 20 additional Chaos Orbs", statOrder = { 10372 }, level = 50, group = "WeaponTreeSellNodeChaosOrb", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 408, 408, 300, 240 }, modTags = { }, }, + ["WeaponTreeSellNodeChaosOrbHigh"] = { type = "Spawn", tier = 2, "Item sells for 40 additional Chaos Orbs", statOrder = { 10372 }, level = 78, group = "WeaponTreeSellNodeChaosOrbHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 204, 204, 150, 120 }, modTags = { }, }, + ["WeaponTreeSellNodeOrbOfRegret"] = { type = "Spawn", tier = 1, "Item sells for 15 additional Orbs of Regret", statOrder = { 10384 }, level = 50, group = "WeaponTreeSellNodeOrbOfRegret", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 228, 228, 168, 134 }, modTags = { }, }, + ["WeaponTreeSellNodeOrbOfRegretHigh"] = { type = "Spawn", tier = 2, "Item sells for 30 additional Orbs of Regret", statOrder = { 10384 }, level = 78, group = "WeaponTreeSellNodeOrbOfRegretHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 114, 114, 84, 67 }, modTags = { }, }, + ["WeaponTreeSellNodeRegalOrb"] = { type = "Spawn", tier = 1, "Item sells for 10 additional Regal Orbs", statOrder = { 10385 }, level = 50, group = "WeaponTreeSellNodeRegalOrb", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 102, 102, 75, 60 }, modTags = { }, }, + ["WeaponTreeSellNodeRegalOrbHigh"] = { type = "Spawn", tier = 2, "Item sells for 20 additional Regal Orbs", statOrder = { 10385 }, level = 78, group = "WeaponTreeSellNodeRegalOrbHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 51, 51, 38, 30 }, modTags = { }, }, + ["WeaponTreeSellNodeVaalOrb"] = { type = "Spawn", tier = 1, "Item sells for 15 additional Vaal Orbs", statOrder = { 10388 }, level = 50, group = "WeaponTreeSellNodeVaalOrb", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 228, 228, 168, 134 }, modTags = { }, }, + ["WeaponTreeSellNodeVaalOrbHigh"] = { type = "Spawn", tier = 2, "Item sells for 30 additional Vaal Orbs", statOrder = { 10388 }, level = 78, group = "WeaponTreeSellNodeVaalOrbHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 114, 114, 84, 67 }, modTags = { }, }, + ["WeaponTreeSellNodeGemcutters"] = { type = "Spawn", tier = 1, "Item sells for 15 additional Gemcutter's Prisms", statOrder = { 10379 }, level = 50, group = "WeaponTreeSellNodeGemcutters", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 92, 92, 68, 54 }, modTags = { }, }, + ["WeaponTreeSellNodeGemcuttersHigh"] = { type = "Spawn", tier = 2, "Item sells for 30 additional Gemcutter's Prisms", statOrder = { 10379 }, level = 78, group = "WeaponTreeSellNodeGemcuttersHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 46, 46, 34, 27 }, modTags = { }, }, + ["WeaponTreeSellNodeBlessedOrb"] = { type = "Spawn", tier = 1, "Item sells for 10 additional Blessed Orbs", statOrder = { 10371 }, level = 50, group = "WeaponTreeSellNodeBlessedOrb", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 136, 136, 100, 80 }, modTags = { }, }, + ["WeaponTreeSellNodeBlessedOrbHigh"] = { type = "Spawn", tier = 2, "Item sells for 20 additional Blessed Orbs", statOrder = { 10371 }, level = 78, group = "WeaponTreeSellNodeBlessedOrbHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 68, 68, 50, 40 }, modTags = { }, }, + ["WeaponTreeSellNodeAwakenedSextant"] = { type = "Spawn", tier = 1, "Item sells for an additional Cartography Scarab of every type", statOrder = { 10370 }, level = 78, group = "WeaponTreeSellNodeAwakenedSextant", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 238, 238, 175, 140 }, modTags = { }, }, + ["WeaponTreeSellNodeAwakenedSextantHigh"] = { type = "Spawn", tier = 2, "Item sells for 2 additional Cartography Scarabs of every type", statOrder = { 10370 }, level = 78, group = "WeaponTreeSellNodeAwakenedSextantHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 119, 119, 88, 70 }, modTags = { }, }, + ["WeaponTreeSellNodeOrbOfAnnulment"] = { type = "Spawn", tier = 1, "Item sells for an additional Orb of Annulment", statOrder = { 10383 }, level = 68, group = "WeaponTreeSellNodeOrbOfAnnulment", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 68, 68, 50, 40 }, modTags = { }, }, + ["WeaponTreeSellNodeOrbOfAnnulmentHigh"] = { type = "Spawn", tier = 2, "Item sells for 3 additional Orbs of Annulment", statOrder = { 10383 }, level = 78, group = "WeaponTreeSellNodeOrbOfAnnulmentHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 24, 24, 18, 14 }, modTags = { }, }, + ["WeaponTreeSellNodeExaltedOrb"] = { type = "Spawn", tier = 1, "Item sells for an additional Exalted Orb", statOrder = { 10375 }, level = 68, group = "WeaponTreeSellNodeExaltedOrb", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 170, 170, 125, 100 }, modTags = { }, }, + ["WeaponTreeSellNodeExaltedOrbHigh"] = { type = "Spawn", tier = 2, "Item sells for 3 additional Exalted Orbs", statOrder = { 10375 }, level = 78, group = "WeaponTreeSellNodeExaltedOrbHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 58, 58, 43, 34 }, modTags = { }, }, + ["WeaponTreeSellNodeDivineOrb"] = { type = "Spawn", tier = 1, "Item sells for an additional Divine Orb", statOrder = { 10374 }, level = 68, group = "WeaponTreeSellNodeDivineOrb", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 170, 170, 125, 100 }, modTags = { }, }, + ["WeaponTreeSellNodeDivineOrbHigh"] = { type = "Spawn", tier = 2, "Item sells for 3 additional Divine Orbs", statOrder = { 10374 }, level = 78, group = "WeaponTreeSellNodeDivineOrbHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 58, 58, 43, 34 }, modTags = { }, }, + ["WeaponTreeSellNodeSacredOrb"] = { type = "Spawn", tier = 1, "Item sells for an additional Sacred Orb", statOrder = { 10386 }, level = 80, group = "WeaponTreeSellNodeSacredOrb", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 9, 9, 6, 5 }, modTags = { }, }, + ["WeaponTreeSellNodeSacredOrbHigh"] = { type = "Spawn", tier = 2, "Item sells for 3 additional Sacred Orbs", statOrder = { 10386 }, level = 84, group = "WeaponTreeSellNodeSacredOrbHigh", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 3, 3, 3, 2 }, modTags = { }, }, + ["WeaponTreeSellNodeIgneousGeode"] = { type = "Spawn", tier = 1, "Item sells for an additional Igneous Geode", statOrder = { 10380 }, level = 75, group = "WeaponTreeSellNodeIgneousGeode", nodeType = "SellBonus", nodeLocation = { 3 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 2125, 2125, 1563, 1250 }, modTags = { }, }, + ["WeaponTreeSellNodeCrystallineGeode"] = { type = "Spawn", tier = 1, "Item sells for an additional Crystalline Geode", statOrder = { 10373 }, level = 84, group = "WeaponTreeSellNodeCrystallineGeode", nodeType = "SellBonus", nodeLocation = { 4 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 228, 228, 168, 134 }, modTags = { }, }, + ["WeaponTreeSellNodeDouble"] = { type = "Spawn", tier = 1, "Crucible Passives that sell for items sell for twice as much", statOrder = { 10382 }, level = 84, group = "WeaponTreeSellNodeDouble", nodeType = "SellBonus", nodeLocation = { 5 }, weightKey = { "minion_unique_weapon", "weapon_can_roll_minion_modifiers", "shield", "default", }, weightVal = { 340, 340, 250, 200 }, modTags = { }, }, + ["WeaponTreeFishingLineStrength"] = { type = "Spawn", tier = 1, "30% increased Fishing Line Strength", statOrder = { 2753 }, level = 1, group = "WeaponTreeFishingLineStrength", nodeType = "Regular", nodeLocation = { 1, 2 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, + ["WeaponTreeFishingQuantity"] = { type = "Spawn", tier = 1, "20% increased Quantity of Fish Caught", statOrder = { 2758 }, level = 1, group = "WeaponTreeFishingQuantity", nodeType = "Regular", nodeLocation = { 1, 2 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, + ["WeaponTreeFishingRarity"] = { type = "Spawn", tier = 1, "40% increased Rarity of Fish Caught", statOrder = { 2759 }, level = 1, group = "WeaponTreeFishingRarity", nodeType = "Regular", nodeLocation = { 1, 2 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, + ["WeaponTreeFishingPoolConsumption"] = { type = "Spawn", tier = 1, "20% increased Fishing Pool Consumption", statOrder = { 2754 }, level = 1, group = "WeaponTreeFishingPoolConsumption", nodeType = "Regular", nodeLocation = { 1, 2 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, + ["WeaponTreeFishingExoticFish"] = { type = "Spawn", tier = 1, "You can catch Exotic Fish", statOrder = { 2764 }, level = 1, group = "WeaponTreeFishingExoticFish", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, + ["WeaponTreeFishingBiteSensitivity"] = { type = "Spawn", tier = 1, "50% increased Fish Bite Sensitivity", statOrder = { 3491 }, level = 1, group = "WeaponTreeFishingBiteSensitivity", nodeType = "Regular", nodeLocation = { 1, 2 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, + ["WeaponTreeFishingReelStability"] = { type = "Spawn", tier = 1, "100% increased Reeling Stability", statOrder = { 6497 }, level = 1, group = "WeaponTreeFishingReelStability", nodeType = "Regular", nodeLocation = { 1, 2 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, + ["WeaponTreeFishingChanceToCatchBoots"] = { type = "Spawn", tier = 1, "25% reduced chance to catch Boots", statOrder = { 6487 }, level = 1, group = "WeaponTreeFishingChanceToCatchBoots", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, + ["WeaponTreeFishingChanceToCatchDivineOrb"] = { type = "Spawn", tier = 1, "5% increased chance to catch a Divine Orb", statOrder = { 6488 }, level = 1, group = "WeaponTreeFishingChanceToCatchDivineOrb", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, + ["WeaponTreeFishingCanCatchDivineFish"] = { type = "Spawn", tier = 1, "You can catch Divine Fish", statOrder = { 6486 }, level = 1, group = "WeaponTreeFishingCanCatchDivineFish", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, + ["WeaponTreeFishingGhastlyFishermanCannotSpawn"] = { type = "Spawn", tier = 1, "The Ghastly Fisherman cannot spawn", statOrder = { 6491 }, level = 1, group = "WeaponTreeFishingGhastlyFishermanCannotSpawn", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, + ["WeaponTreeFishingGhastlyFishermanSpawnsBehindYou"] = { type = "Spawn", tier = 1, "The Ghastly Fisherman always appears behind you", statOrder = { 6492 }, level = 1, group = "WeaponTreeFishingGhastlyFishermanSpawnsBehindYou", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, + ["WeaponTreeFishingTasalioIrePerFishCaught"] = { type = "Spawn", tier = 1, "20% reduced Tasalio's Ire per Fish caught", statOrder = { 6498 }, level = 1, group = "WeaponTreeFishingTasalioIrePerFishCaught", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, + ["WeaponTreeFishingValakoAidPerStormyDay"] = { type = "Spawn", tier = 1, "20% increased Valako's Aid per Stormy Day", statOrder = { 6499 }, level = 1, group = "WeaponTreeFishingValakoAidPerStormyDay", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, + ["WeaponTreeFishingBestiaryLuresAtFishingHoles"] = { type = "Spawn", tier = 1, "Can use Bestiary Lures at Fishing Holes", statOrder = { 6485 }, level = 1, group = "WeaponTreeFishingBestiaryLuresAtFishingHoles", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, + ["WeaponTreeFishingCorruptedFishCleansedChance"] = { type = "Spawn", tier = 1, "Corrupted Fish have 10% chance to be Cleansed", statOrder = { 6489 }, level = 1, group = "WeaponTreeFishingCorruptedFishCleansedChance", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, + ["WeaponTreeFishingKrillsonAffectionPerFishGifted"] = { type = "Spawn", tier = 1, "23% increased Krillson Affection per Fish Gifted", statOrder = { 6493 }, level = 1, group = "WeaponTreeFishingKrillsonAffectionPerFishGifted", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, + ["WeaponTreeFishingLifeOfFishWithThisRod"] = { type = "Spawn", tier = 1, "40% increased Life of Fish caught with this Fishing Rod", statOrder = { 6494 }, level = 1, group = "WeaponTreeFishingLifeOfFishWithThisRod", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, + ["WeaponTreeFishingFishAlwaysTellTruthWithThisRod"] = { type = "Spawn", tier = 1, "Fish caught with this Fishing Rod will always tell the truth", statOrder = { 6490 }, level = 1, group = "WeaponTreeFishingFishAlwaysTellTruthWithThisRod", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, + ["WeaponTreeFishingWishPerFish"] = { type = "Spawn", tier = 1, "+3 Wishes per Ancient Fish caught", statOrder = { 6501 }, level = 1, group = "WeaponTreeFishingWishPerFish", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, + ["WeaponTreeFishingWishEffectOfAncientFish"] = { type = "Spawn", tier = 1, "50% increased effect of Wishes granted by Ancient Fish", statOrder = { 6500 }, level = 1, group = "WeaponTreeFishingWishEffectOfAncientFish", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, + ["WeaponTreeFishingMagmaticFishAreCooked"] = { type = "Spawn", tier = 1, "Fish caught from Magmatic Fishing Holes are already Cooked", statOrder = { 6495 }, level = 1, group = "WeaponTreeFishingMagmaticFishAreCooked", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, + ["WeaponTreeFishingMoltenOneConfusionPerFishGifted"] = { type = "Spawn", tier = 1, "15% increased Molten One confusion per Fish Gifted", statOrder = { 6496 }, level = 1, group = "WeaponTreeFishingMoltenOneConfusionPerFishGifted", nodeType = "Regular", nodeLocation = { 3, 4, 5 }, weightKey = { "fishing_rod", "default", }, weightVal = { 10000, 0 }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportArcaneSurge"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Arcane Surge", statOrder = { 204 }, level = 1, group = "WeaponTreeSupportArcaneSurge", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportChanceToIgnite"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Combustion", statOrder = { 220 }, level = 1, group = "WeaponTreeSupportChanceToIgnite", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportDecay"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Decay", statOrder = { 230 }, level = 1, group = "WeaponTreeSupportDecay", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportElementalProliferation"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Elemental Proliferation", statOrder = { 393 }, level = 1, group = "WeaponTreeSupportElementalProliferation", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportEnergyLeech"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Energy Leech", statOrder = { 237 }, level = 1, group = "WeaponTreeSupportEnergyLeech", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportFasterCast"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Faster Casting", statOrder = { 427 }, level = 1, group = "WeaponTreeSupportFasterCast", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportIgniteProliferation"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Ignite Proliferation", statOrder = { 257 }, level = 1, group = "WeaponTreeSupportIgniteProliferation", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportIntensify"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Intensify", statOrder = { 315 }, level = 1, group = "WeaponTreeSupportIntensify", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportOvercharge"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Overcharge", statOrder = { 286 }, level = 1, group = "WeaponTreeSupportOvercharge", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportPhysicalToLightning"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Physical To Lightning", statOrder = { 290 }, level = 1, group = "WeaponTreeSupportPhysicalToLightning", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportPinpoint"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Pinpoint", statOrder = { 291 }, level = 1, group = "WeaponTreeSupportPinpoint", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportSpellCascade"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Spell Cascade", statOrder = { 314 }, level = 1, group = "WeaponTreeSupportSpellCascade", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportSummonGhostOnKill"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Summon Phantasm", statOrder = { 320 }, level = 1, group = "WeaponTreeSupportSummonGhostOnKill", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportSwiftBrand"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Swiftbrand", statOrder = { 322 }, level = 1, group = "WeaponTreeSupportSwiftBrand", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportAddedChaos"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Added Chaos Damage", statOrder = { 385 }, level = 1, group = "WeaponTreeSupportAddedChaos", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportAddedCold"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Added Cold Damage", statOrder = { 445 }, level = 1, group = "WeaponTreeSupportAddedCold", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportAddedLightning"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Added Lightning Damage", statOrder = { 394 }, level = 1, group = "WeaponTreeSupportAddedLightning", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportArchmage"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Archmage", statOrder = { 205 }, level = 1, group = "WeaponTreeSupportArchmage", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportBonechill"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Bonechill", statOrder = { 212 }, level = 1, group = "WeaponTreeSupportBonechill", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportConcentratedEffect"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Concentrated Effect", statOrder = { 380 }, level = 1, group = "WeaponTreeSupportConcentratedEffect", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportControlledDestruction"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Controlled Destruction", statOrder = { 452 }, level = 1, group = "WeaponTreeSupportControlledDestruction", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportEfficacy"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Efficacy", statOrder = { 233 }, level = 1, group = "WeaponTreeSupportEfficacy", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportElementalFocus"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Elemental Focus", statOrder = { 234 }, level = 1, group = "WeaponTreeSupportElementalFocus", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportElementalPenetration"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Elemental Penetration", statOrder = { 235 }, level = 1, group = "WeaponTreeSupportElementalPenetration", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportImmolate"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Immolate", statOrder = { 258 }, level = 1, group = "WeaponTreeSupportImmolate", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportIncreasedCriticalDamage"] = { type = "Spawn", tier = 1, "Socketed Gems are supported by Level 30 Increased Critical Damage", statOrder = { 412 }, level = 1, group = "WeaponTreeSupportIncreasedCriticalDamage", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportIncreasedCriticalStrikes"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Increased Critical Strikes", statOrder = { 262 }, level = 1, group = "WeaponTreeSupportIncreasedCriticalStrikes", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportInfusedChannelling"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Infused Channelling", statOrder = { 318 }, level = 1, group = "WeaponTreeSupportInfusedChannelling", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportInnervate"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Innervate", statOrder = { 448 }, level = 1, group = "WeaponTreeSupportInnervate", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportFirePenetration"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Fire Penetration", statOrder = { 392 }, level = 1, group = "WeaponTreeSupportFirePenetration", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportColdPenetration"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Cold Penetration", statOrder = { 440 }, level = 1, group = "WeaponTreeSupportColdPenetration", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportLightningPenetration"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Lightning Penetration", statOrder = { 272 }, level = 1, group = "WeaponTreeSupportLightningPenetration", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportPowerChargeOnCrit"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Power Charge On Critical Strike", statOrder = { 294 }, level = 1, group = "WeaponTreeSupportPowerChargeOnCrit", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportSpellEcho"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Spell Echo", statOrder = { 283 }, level = 1, group = "WeaponTreeSupportSpellEcho", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportTrinity"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Trinity", statOrder = { 326 }, level = 1, group = "WeaponTreeSupportTrinity", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportUnboundAilments"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Unbound Ailments", statOrder = { 327 }, level = 1, group = "WeaponTreeSupportUnboundAilments", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportUnleash"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Unleash", statOrder = { 328 }, level = 1, group = "WeaponTreeSupportUnleash", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportBurningDamage"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Burning Damage", statOrder = { 261 }, level = 1, group = "WeaponTreeSupportBurningDamage", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportColdToFire"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Cold to Fire", statOrder = { 390 }, level = 1, group = "WeaponTreeSupportColdToFire", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportInspiration"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Inspiration", statOrder = { 421 }, level = 1, group = "WeaponTreeSupportInspiration", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportIceBite"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Ice Bite", statOrder = { 439 }, level = 1, group = "WeaponTreeSupportIceBite", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportCriticalStrikeAffliction"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Critical Strike Affliction", statOrder = { 293 }, level = 1, group = "WeaponTreeSupportCriticalStrikeAffliction", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportDeadlyAilments"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Deadly Ailments", statOrder = { 228 }, level = 1, group = "WeaponTreeSupportDeadlyAilments", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportHypothermia"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Hypothermia", statOrder = { 438 }, level = 1, group = "WeaponTreeSupportHypothermia", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["UniqueTreeWeaponTreeSupportSwiftAffliction"] = { type = "Spawn", tier = 1, "Socketed Gems are Supported by Level 30 Swift Affliction", statOrder = { 300 }, level = 1, group = "WeaponTreeSupportSwiftAffliction", nodeType = "Regular", nodeLocation = { 1, 2, 3, 4, 5 }, weightKey = { "crucible_unique_staff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, } \ No newline at end of file diff --git a/src/Data/Essence.lua b/src/Data/Essence.lua index 4a17ebfcc4..733cf5d6dc 100644 --- a/src/Data/Essence.lua +++ b/src/Data/Essence.lua @@ -48,12 +48,12 @@ return { ["Metadata/Items/Currency/CurrencyEssenceTorment4"] = { name = "Screaming Essence of Torment", type = 6, tier = 5, mods = { ["Amulet"] = "AddedLightningDamage8", ["Belt"] = "ChanceToAvoidShockEssence5", ["Body Armour"] = "ChanceToAvoidLightningDamageEssence5", ["Boots"] = "ChanceToAvoidShockEssence5", ["Bow"] = "SpellAddedLightningDamageTwoHand7", ["Claw"] = "SpellAddedLightningDamage7", ["Dagger"] = "SpellAddedLightningDamage7", ["Gloves"] = "AddedLightningDamage4", ["Helmet"] = "ChanceToAvoidShockEssence5", ["One Handed Axe"] = "SpellAddedLightningDamage7", ["One Handed Mace"] = "SpellAddedLightningDamage7", ["One Handed Sword"] = "SpellAddedLightningDamage7", ["Quiver"] = "AddedLightningDamageQuiver8", ["Ring"] = "AddedLightningDamage8", ["Sceptre"] = "SpellAddedLightningDamage7", ["Shield"] = "ChanceToAvoidLightningDamageEssence5", ["Staff"] = "SpellAddedLightningDamageTwoHand7", ["Thrusting One Handed Sword"] = "SpellAddedLightningDamage7", ["Two Handed Axe"] = "SpellAddedLightningDamageTwoHand7", ["Two Handed Mace"] = "SpellAddedLightningDamageTwoHand7", ["Two Handed Sword"] = "SpellAddedLightningDamageTwoHand7", ["Wand"] = "SpellAddedLightningDamage7", }, }, ["Metadata/Items/Currency/CurrencyEssenceTorment5"] = { name = "Shrieking Essence of Torment", type = 6, tier = 6, mods = { ["Amulet"] = "AddedLightningDamage9", ["Belt"] = "ChanceToAvoidShockEssence6", ["Body Armour"] = "ChanceToAvoidLightningDamageEssence6", ["Boots"] = "ChanceToAvoidShockEssence6", ["Bow"] = "SpellAddedLightningDamageTwoHand8", ["Claw"] = "SpellAddedLightningDamage8", ["Dagger"] = "SpellAddedLightningDamage8", ["Gloves"] = "AddedLightningDamage5", ["Helmet"] = "ChanceToAvoidShockEssence6", ["One Handed Axe"] = "SpellAddedLightningDamage8", ["One Handed Mace"] = "SpellAddedLightningDamage8", ["One Handed Sword"] = "SpellAddedLightningDamage8", ["Quiver"] = "AddedLightningDamageQuiver9", ["Ring"] = "AddedLightningDamage9", ["Sceptre"] = "SpellAddedLightningDamage8", ["Shield"] = "ChanceToAvoidLightningDamageEssence6", ["Staff"] = "SpellAddedLightningDamageTwoHand8", ["Thrusting One Handed Sword"] = "SpellAddedLightningDamage8", ["Two Handed Axe"] = "SpellAddedLightningDamageTwoHand8", ["Two Handed Mace"] = "SpellAddedLightningDamageTwoHand8", ["Two Handed Sword"] = "SpellAddedLightningDamageTwoHand8", ["Wand"] = "SpellAddedLightningDamage8", }, }, ["Metadata/Items/Currency/CurrencyEssenceTorment6"] = { name = "Deafening Essence of Torment", type = 6, tier = 7, mods = { ["Amulet"] = "AddedLightningDamageEssence7", ["Belt"] = "ChanceToAvoidShockEssence7", ["Body Armour"] = "ChanceToAvoidLightningDamageEssence7", ["Boots"] = "ChanceToAvoidShockEssence7", ["Bow"] = "SpellAddedLightningDamageTwoHand9_", ["Claw"] = "SpellAddedLightningDamage9", ["Dagger"] = "SpellAddedLightningDamage9", ["Gloves"] = "AddedLightningDamage6", ["Helmet"] = "ChanceToAvoidShockEssence7", ["One Handed Axe"] = "SpellAddedLightningDamage9", ["One Handed Mace"] = "SpellAddedLightningDamage9", ["One Handed Sword"] = "SpellAddedLightningDamage9", ["Quiver"] = "AddedLightningDamageQuiverEssence10__", ["Ring"] = "AddedLightningDamageEssence7", ["Sceptre"] = "SpellAddedLightningDamage9", ["Shield"] = "ChanceToAvoidLightningDamageEssence7", ["Staff"] = "SpellAddedLightningDamageTwoHand9_", ["Thrusting One Handed Sword"] = "SpellAddedLightningDamage9", ["Two Handed Axe"] = "SpellAddedLightningDamageTwoHand9_", ["Two Handed Mace"] = "SpellAddedLightningDamageTwoHand9_", ["Two Handed Sword"] = "SpellAddedLightningDamageTwoHand9_", ["Wand"] = "SpellAddedLightningDamage9", }, }, - ["Metadata/Items/Currency/CurrencyEssenceFear1"] = { name = "Muttering Essence of Fear", type = 7, tier = 2, mods = { ["Amulet"] = "MinionRunSpeedEssence2", ["Belt"] = "MinionLifeEssence2", ["Body Armour"] = "MinionLifeEssence2", ["Boots"] = "MinionLifeEssence2", ["Bow"] = "MinionDamageOnTwoHandWeapon2", ["Claw"] = "MinionDamageOnWeapon2", ["Dagger"] = "MinionDamageOnWeapon2", ["Gloves"] = "MinionDamageGlovesEssence2", ["Helmet"] = "MinionAccuracyEssence2_", ["One Handed Axe"] = "MinionDamageOnWeapon2", ["One Handed Mace"] = "MinionDamageOnWeapon2", ["One Handed Sword"] = "MinionDamageOnWeapon2", ["Quiver"] = "MinionRunSpeedEssence2", ["Ring"] = "MinionRunSpeedEssence2", ["Sceptre"] = "MinionDamageOnWeapon2", ["Shield"] = "MinionLifeEssence2", ["Staff"] = "MinionDamageOnTwoHandWeapon2", ["Thrusting One Handed Sword"] = "MinionDamageOnWeapon2", ["Two Handed Axe"] = "MinionDamageOnTwoHandWeapon2", ["Two Handed Mace"] = "MinionDamageOnTwoHandWeapon2", ["Two Handed Sword"] = "MinionDamageOnTwoHandWeapon2", ["Wand"] = "MinionDamageOnWeapon2", }, }, - ["Metadata/Items/Currency/CurrencyEssenceFear2"] = { name = "Weeping Essence of Fear", type = 7, tier = 3, mods = { ["Amulet"] = "MinionRunSpeedEssence3", ["Belt"] = "MinionLifeEssence3_", ["Body Armour"] = "MinionLifeEssence3_", ["Boots"] = "MinionLifeEssence3_", ["Bow"] = "MinionDamageOnTwoHandWeapon3", ["Claw"] = "MinionDamageOnWeapon3", ["Dagger"] = "MinionDamageOnWeapon3", ["Gloves"] = "MinionDamageGlovesEssence3", ["Helmet"] = "MinionAccuracyEssence3_", ["One Handed Axe"] = "MinionDamageOnWeapon3", ["One Handed Mace"] = "MinionDamageOnWeapon3", ["One Handed Sword"] = "MinionDamageOnWeapon3", ["Quiver"] = "MinionRunSpeedEssence3", ["Ring"] = "MinionRunSpeedEssence3", ["Sceptre"] = "MinionDamageOnWeapon3", ["Shield"] = "MinionLifeEssence3_", ["Staff"] = "MinionDamageOnTwoHandWeapon3", ["Thrusting One Handed Sword"] = "MinionDamageOnWeapon3", ["Two Handed Axe"] = "MinionDamageOnTwoHandWeapon3", ["Two Handed Mace"] = "MinionDamageOnTwoHandWeapon3", ["Two Handed Sword"] = "MinionDamageOnTwoHandWeapon3", ["Wand"] = "MinionDamageOnWeapon3", }, }, - ["Metadata/Items/Currency/CurrencyEssenceFear3"] = { name = "Wailing Essence of Fear", type = 7, tier = 4, mods = { ["Amulet"] = "MinionRunSpeedEssence4", ["Belt"] = "MinionLifeEssence4", ["Body Armour"] = "MinionLifeEssence4", ["Boots"] = "MinionLifeEssence4", ["Bow"] = "MinionDamageOnTwoHandWeapon4", ["Claw"] = "MinionDamageOnWeapon4_", ["Dagger"] = "MinionDamageOnWeapon4_", ["Gloves"] = "MinionDamageGlovesEssence4", ["Helmet"] = "MinionAccuracyEssence4___", ["One Handed Axe"] = "MinionDamageOnWeapon4_", ["One Handed Mace"] = "MinionDamageOnWeapon4_", ["One Handed Sword"] = "MinionDamageOnWeapon4_", ["Quiver"] = "MinionRunSpeedEssence4", ["Ring"] = "MinionRunSpeedEssence4", ["Sceptre"] = "MinionDamageOnWeapon4_", ["Shield"] = "MinionLifeEssence4", ["Staff"] = "MinionDamageOnTwoHandWeapon4", ["Thrusting One Handed Sword"] = "MinionDamageOnWeapon4_", ["Two Handed Axe"] = "MinionDamageOnTwoHandWeapon4", ["Two Handed Mace"] = "MinionDamageOnTwoHandWeapon4", ["Two Handed Sword"] = "MinionDamageOnTwoHandWeapon4", ["Wand"] = "MinionDamageOnWeapon4_", }, }, - ["Metadata/Items/Currency/CurrencyEssenceFear4"] = { name = "Screaming Essence of Fear", type = 7, tier = 5, mods = { ["Amulet"] = "MinionRunSpeedEssence5", ["Belt"] = "MinionLifeEssence5", ["Body Armour"] = "MinionLifeEssence5", ["Boots"] = "MinionLifeEssence5", ["Bow"] = "MinionDamageOnTwoHandWeaponEssence5", ["Claw"] = "MinionDamageOnWeaponEssence5", ["Dagger"] = "MinionDamageOnWeaponEssence5", ["Gloves"] = "MinionDamageGlovesEssence5", ["Helmet"] = "MinionAccuracyEssence5", ["One Handed Axe"] = "MinionDamageOnWeaponEssence5", ["One Handed Mace"] = "MinionDamageOnWeaponEssence5", ["One Handed Sword"] = "MinionDamageOnWeaponEssence5", ["Quiver"] = "MinionRunSpeedEssence5", ["Ring"] = "MinionRunSpeedEssence5", ["Sceptre"] = "MinionDamageOnWeaponEssence5", ["Shield"] = "MinionLifeEssence5", ["Staff"] = "MinionDamageOnTwoHandWeaponEssence5", ["Thrusting One Handed Sword"] = "MinionDamageOnWeaponEssence5", ["Two Handed Axe"] = "MinionDamageOnTwoHandWeaponEssence5", ["Two Handed Mace"] = "MinionDamageOnTwoHandWeaponEssence5", ["Two Handed Sword"] = "MinionDamageOnTwoHandWeaponEssence5", ["Wand"] = "MinionDamageOnWeaponEssence5", }, }, - ["Metadata/Items/Currency/CurrencyEssenceFear5"] = { name = "Shrieking Essence of Fear", type = 7, tier = 6, mods = { ["Amulet"] = "MinionRunSpeedEssence6", ["Belt"] = "MinionLifeEssence6", ["Body Armour"] = "MinionLifeEssence6", ["Boots"] = "MinionLifeEssence6", ["Bow"] = "MinionDamageOnTwoHandWeaponEssence6", ["Claw"] = "MinionDamageOnWeaponEssence6", ["Dagger"] = "MinionDamageOnWeaponEssence6", ["Gloves"] = "MinionDamageGlovesEssence6___", ["Helmet"] = "MinionAccuracyEssence6", ["One Handed Axe"] = "MinionDamageOnWeaponEssence6", ["One Handed Mace"] = "MinionDamageOnWeaponEssence6", ["One Handed Sword"] = "MinionDamageOnWeaponEssence6", ["Quiver"] = "MinionRunSpeedEssence6", ["Ring"] = "MinionRunSpeedEssence6", ["Sceptre"] = "MinionDamageOnWeaponEssence6", ["Shield"] = "MinionLifeEssence6", ["Staff"] = "MinionDamageOnTwoHandWeaponEssence6", ["Thrusting One Handed Sword"] = "MinionDamageOnWeaponEssence6", ["Two Handed Axe"] = "MinionDamageOnTwoHandWeaponEssence6", ["Two Handed Mace"] = "MinionDamageOnTwoHandWeaponEssence6", ["Two Handed Sword"] = "MinionDamageOnTwoHandWeaponEssence6", ["Wand"] = "MinionDamageOnWeaponEssence6", }, }, - ["Metadata/Items/Currency/CurrencyEssenceFear6"] = { name = "Deafening Essence of Fear", type = 7, tier = 7, mods = { ["Amulet"] = "MinionRunSpeedEssence7", ["Belt"] = "MinionLifeEssence7", ["Body Armour"] = "MinionLifeEssence7", ["Boots"] = "MinionLifeEssence7", ["Bow"] = "MinionDamageOnTwoHandWeaponEssence7", ["Claw"] = "MinionDamageOnWeaponEssence7", ["Dagger"] = "MinionDamageOnWeaponEssence7", ["Gloves"] = "MinionDamageGlovesEssence7", ["Helmet"] = "MinionAccuracyEssence7_", ["One Handed Axe"] = "MinionDamageOnWeaponEssence7", ["One Handed Mace"] = "MinionDamageOnWeaponEssence7", ["One Handed Sword"] = "MinionDamageOnWeaponEssence7", ["Quiver"] = "MinionRunSpeedEssence7", ["Ring"] = "MinionRunSpeedEssence7", ["Sceptre"] = "MinionDamageOnWeaponEssence7", ["Shield"] = "MinionLifeEssence7", ["Staff"] = "MinionDamageOnTwoHandWeaponEssence7", ["Thrusting One Handed Sword"] = "MinionDamageOnWeaponEssence7", ["Two Handed Axe"] = "MinionDamageOnTwoHandWeaponEssence7", ["Two Handed Mace"] = "MinionDamageOnTwoHandWeaponEssence7", ["Two Handed Sword"] = "MinionDamageOnTwoHandWeaponEssence7", ["Wand"] = "MinionDamageOnWeaponEssence7", }, }, + ["Metadata/Items/Currency/CurrencyEssenceFear1"] = { name = "Muttering Essence of Fear", type = 7, tier = 2, mods = { ["Amulet"] = "MinionRunSpeedEssence2", ["Belt"] = "MinionLifeEssence2", ["Body Armour"] = "MinionLifeEssence2", ["Boots"] = "MinionLifeEssence2", ["Bow"] = "MinionDamageOnTwoHandWeapon2", ["Claw"] = "MinionDamageOnWeapon2", ["Dagger"] = "MinionDamageOnWeapon2", ["Gloves"] = "MinionDamageGlovesEssence2", ["Helmet"] = "MinionDamageGlovesEssence2", ["One Handed Axe"] = "MinionDamageOnWeapon2", ["One Handed Mace"] = "MinionDamageOnWeapon2", ["One Handed Sword"] = "MinionDamageOnWeapon2", ["Quiver"] = "MinionRunSpeedEssence2", ["Ring"] = "MinionRunSpeedEssence2", ["Sceptre"] = "MinionDamageOnWeapon2", ["Shield"] = "MinionLifeEssence2", ["Staff"] = "MinionDamageOnTwoHandWeapon2", ["Thrusting One Handed Sword"] = "MinionDamageOnWeapon2", ["Two Handed Axe"] = "MinionDamageOnTwoHandWeapon2", ["Two Handed Mace"] = "MinionDamageOnTwoHandWeapon2", ["Two Handed Sword"] = "MinionDamageOnTwoHandWeapon2", ["Wand"] = "MinionDamageOnWeapon2", }, }, + ["Metadata/Items/Currency/CurrencyEssenceFear2"] = { name = "Weeping Essence of Fear", type = 7, tier = 3, mods = { ["Amulet"] = "MinionRunSpeedEssence3", ["Belt"] = "MinionLifeEssence3_", ["Body Armour"] = "MinionLifeEssence3_", ["Boots"] = "MinionLifeEssence3_", ["Bow"] = "MinionDamageOnTwoHandWeapon3", ["Claw"] = "MinionDamageOnWeapon3", ["Dagger"] = "MinionDamageOnWeapon3", ["Gloves"] = "MinionDamageGlovesEssence3", ["Helmet"] = "MinionDamageGlovesEssence3", ["One Handed Axe"] = "MinionDamageOnWeapon3", ["One Handed Mace"] = "MinionDamageOnWeapon3", ["One Handed Sword"] = "MinionDamageOnWeapon3", ["Quiver"] = "MinionRunSpeedEssence3", ["Ring"] = "MinionRunSpeedEssence3", ["Sceptre"] = "MinionDamageOnWeapon3", ["Shield"] = "MinionLifeEssence3_", ["Staff"] = "MinionDamageOnTwoHandWeapon3", ["Thrusting One Handed Sword"] = "MinionDamageOnWeapon3", ["Two Handed Axe"] = "MinionDamageOnTwoHandWeapon3", ["Two Handed Mace"] = "MinionDamageOnTwoHandWeapon3", ["Two Handed Sword"] = "MinionDamageOnTwoHandWeapon3", ["Wand"] = "MinionDamageOnWeapon3", }, }, + ["Metadata/Items/Currency/CurrencyEssenceFear3"] = { name = "Wailing Essence of Fear", type = 7, tier = 4, mods = { ["Amulet"] = "MinionRunSpeedEssence4", ["Belt"] = "MinionLifeEssence4", ["Body Armour"] = "MinionLifeEssence4", ["Boots"] = "MinionLifeEssence4", ["Bow"] = "MinionDamageOnTwoHandWeapon4", ["Claw"] = "MinionDamageOnWeapon4_", ["Dagger"] = "MinionDamageOnWeapon4_", ["Gloves"] = "MinionDamageGlovesEssence4", ["Helmet"] = "MinionDamageGlovesEssence4", ["One Handed Axe"] = "MinionDamageOnWeapon4_", ["One Handed Mace"] = "MinionDamageOnWeapon4_", ["One Handed Sword"] = "MinionDamageOnWeapon4_", ["Quiver"] = "MinionRunSpeedEssence4", ["Ring"] = "MinionRunSpeedEssence4", ["Sceptre"] = "MinionDamageOnWeapon4_", ["Shield"] = "MinionLifeEssence4", ["Staff"] = "MinionDamageOnTwoHandWeapon4", ["Thrusting One Handed Sword"] = "MinionDamageOnWeapon4_", ["Two Handed Axe"] = "MinionDamageOnTwoHandWeapon4", ["Two Handed Mace"] = "MinionDamageOnTwoHandWeapon4", ["Two Handed Sword"] = "MinionDamageOnTwoHandWeapon4", ["Wand"] = "MinionDamageOnWeapon4_", }, }, + ["Metadata/Items/Currency/CurrencyEssenceFear4"] = { name = "Screaming Essence of Fear", type = 7, tier = 5, mods = { ["Amulet"] = "MinionRunSpeedEssence5", ["Belt"] = "MinionLifeEssence5", ["Body Armour"] = "MinionLifeEssence5", ["Boots"] = "MinionLifeEssence5", ["Bow"] = "MinionDamageOnTwoHandWeaponEssence5", ["Claw"] = "MinionDamageOnWeaponEssence5", ["Dagger"] = "MinionDamageOnWeaponEssence5", ["Gloves"] = "MinionDamageGlovesEssence5", ["Helmet"] = "MinionDamageGlovesEssence5", ["One Handed Axe"] = "MinionDamageOnWeaponEssence5", ["One Handed Mace"] = "MinionDamageOnWeaponEssence5", ["One Handed Sword"] = "MinionDamageOnWeaponEssence5", ["Quiver"] = "MinionRunSpeedEssence5", ["Ring"] = "MinionRunSpeedEssence5", ["Sceptre"] = "MinionDamageOnWeaponEssence5", ["Shield"] = "MinionLifeEssence5", ["Staff"] = "MinionDamageOnTwoHandWeaponEssence5", ["Thrusting One Handed Sword"] = "MinionDamageOnWeaponEssence5", ["Two Handed Axe"] = "MinionDamageOnTwoHandWeaponEssence5", ["Two Handed Mace"] = "MinionDamageOnTwoHandWeaponEssence5", ["Two Handed Sword"] = "MinionDamageOnTwoHandWeaponEssence5", ["Wand"] = "MinionDamageOnWeaponEssence5", }, }, + ["Metadata/Items/Currency/CurrencyEssenceFear5"] = { name = "Shrieking Essence of Fear", type = 7, tier = 6, mods = { ["Amulet"] = "MinionRunSpeedEssence6", ["Belt"] = "MinionLifeEssence6", ["Body Armour"] = "MinionLifeEssence6", ["Boots"] = "MinionLifeEssence6", ["Bow"] = "MinionDamageOnTwoHandWeaponEssence6", ["Claw"] = "MinionDamageOnWeaponEssence6", ["Dagger"] = "MinionDamageOnWeaponEssence6", ["Gloves"] = "MinionDamageGlovesEssence6___", ["Helmet"] = "MinionDamageGlovesEssence6___", ["One Handed Axe"] = "MinionDamageOnWeaponEssence6", ["One Handed Mace"] = "MinionDamageOnWeaponEssence6", ["One Handed Sword"] = "MinionDamageOnWeaponEssence6", ["Quiver"] = "MinionRunSpeedEssence6", ["Ring"] = "MinionRunSpeedEssence6", ["Sceptre"] = "MinionDamageOnWeaponEssence6", ["Shield"] = "MinionLifeEssence6", ["Staff"] = "MinionDamageOnTwoHandWeaponEssence6", ["Thrusting One Handed Sword"] = "MinionDamageOnWeaponEssence6", ["Two Handed Axe"] = "MinionDamageOnTwoHandWeaponEssence6", ["Two Handed Mace"] = "MinionDamageOnTwoHandWeaponEssence6", ["Two Handed Sword"] = "MinionDamageOnTwoHandWeaponEssence6", ["Wand"] = "MinionDamageOnWeaponEssence6", }, }, + ["Metadata/Items/Currency/CurrencyEssenceFear6"] = { name = "Deafening Essence of Fear", type = 7, tier = 7, mods = { ["Amulet"] = "MinionRunSpeedEssence7", ["Belt"] = "MinionLifeEssence7", ["Body Armour"] = "MinionLifeEssence7", ["Boots"] = "MinionLifeEssence7", ["Bow"] = "MinionDamageOnTwoHandWeaponEssence7", ["Claw"] = "MinionDamageOnWeaponEssence7", ["Dagger"] = "MinionDamageOnWeaponEssence7", ["Gloves"] = "MinionDamageGlovesEssence7", ["Helmet"] = "MinionDamageGlovesEssence7", ["One Handed Axe"] = "MinionDamageOnWeaponEssence7", ["One Handed Mace"] = "MinionDamageOnWeaponEssence7", ["One Handed Sword"] = "MinionDamageOnWeaponEssence7", ["Quiver"] = "MinionRunSpeedEssence7", ["Ring"] = "MinionRunSpeedEssence7", ["Sceptre"] = "MinionDamageOnWeaponEssence7", ["Shield"] = "MinionLifeEssence7", ["Staff"] = "MinionDamageOnTwoHandWeaponEssence7", ["Thrusting One Handed Sword"] = "MinionDamageOnWeaponEssence7", ["Two Handed Axe"] = "MinionDamageOnTwoHandWeaponEssence7", ["Two Handed Mace"] = "MinionDamageOnTwoHandWeaponEssence7", ["Two Handed Sword"] = "MinionDamageOnTwoHandWeaponEssence7", ["Wand"] = "MinionDamageOnWeaponEssence7", }, }, ["Metadata/Items/Currency/CurrencyEssenceSuffering1"] = { name = "Weeping Essence of Suffering", type = 8, tier = 3, mods = { ["Amulet"] = "AddedColdDamage4", ["Belt"] = "ChanceToAvoidFreezeEssence3", ["Body Armour"] = "ChanceToAvoidColdDamageEssence3", ["Boots"] = "ChanceToAvoidFreezeEssence3", ["Bow"] = "SpellAddedColdDamageTwoHand4", ["Claw"] = "SpellAddedColdDamage4", ["Dagger"] = "SpellAddedColdDamage4", ["Gloves"] = "AddedColdDamage2", ["Helmet"] = "ChanceToAvoidFreezeEssence3", ["One Handed Axe"] = "SpellAddedColdDamage4", ["One Handed Mace"] = "SpellAddedColdDamage4", ["One Handed Sword"] = "SpellAddedColdDamage4", ["Quiver"] = "AddedColdDamageQuiver4__", ["Ring"] = "AddedColdDamage4", ["Sceptre"] = "SpellAddedColdDamage4", ["Shield"] = "ChanceToAvoidColdDamageEssence3", ["Staff"] = "SpellAddedColdDamageTwoHand4", ["Thrusting One Handed Sword"] = "SpellAddedColdDamage4", ["Two Handed Axe"] = "SpellAddedColdDamageTwoHand4", ["Two Handed Mace"] = "SpellAddedColdDamageTwoHand4", ["Two Handed Sword"] = "SpellAddedColdDamageTwoHand4", ["Wand"] = "SpellAddedColdDamage4", }, }, ["Metadata/Items/Currency/CurrencyEssenceSuffering2"] = { name = "Wailing Essence of Suffering", type = 8, tier = 4, mods = { ["Amulet"] = "AddedColdDamage6", ["Belt"] = "ChanceToAvoidFreezeEssence4", ["Body Armour"] = "ChanceToAvoidColdDamageEssence4", ["Boots"] = "ChanceToAvoidFreezeEssence4", ["Bow"] = "SpellAddedColdDamageTwoHand6", ["Claw"] = "SpellAddedColdDamage6_", ["Dagger"] = "SpellAddedColdDamage6_", ["Gloves"] = "AddedColdDamage3", ["Helmet"] = "ChanceToAvoidFreezeEssence4", ["One Handed Axe"] = "SpellAddedColdDamage6_", ["One Handed Mace"] = "SpellAddedColdDamage6_", ["One Handed Sword"] = "SpellAddedColdDamage6_", ["Quiver"] = "AddedColdDamageQuiver6", ["Ring"] = "AddedColdDamage6", ["Sceptre"] = "SpellAddedColdDamage6_", ["Shield"] = "ChanceToAvoidColdDamageEssence4", ["Staff"] = "SpellAddedColdDamageTwoHand6", ["Thrusting One Handed Sword"] = "SpellAddedColdDamage6_", ["Two Handed Axe"] = "SpellAddedColdDamageTwoHand6", ["Two Handed Mace"] = "SpellAddedColdDamageTwoHand6", ["Two Handed Sword"] = "SpellAddedColdDamageTwoHand6", ["Wand"] = "SpellAddedColdDamage6_", }, }, ["Metadata/Items/Currency/CurrencyEssenceSuffering3"] = { name = "Screaming Essence of Suffering", type = 8, tier = 5, mods = { ["Amulet"] = "AddedColdDamage7", ["Belt"] = "ChanceToAvoidFreezeEssence5", ["Body Armour"] = "ChanceToAvoidColdDamageEssence5", ["Boots"] = "ChanceToAvoidFreezeEssence5", ["Bow"] = "SpellAddedColdDamageTwoHand7", ["Claw"] = "SpellAddedColdDamage7", ["Dagger"] = "SpellAddedColdDamage7", ["Gloves"] = "AddedColdDamage4", ["Helmet"] = "ChanceToAvoidFreezeEssence5", ["One Handed Axe"] = "SpellAddedColdDamage7", ["One Handed Mace"] = "SpellAddedColdDamage7", ["One Handed Sword"] = "SpellAddedColdDamage7", ["Quiver"] = "AddedColdDamageQuiver7", ["Ring"] = "AddedColdDamage7", ["Sceptre"] = "SpellAddedColdDamage7", ["Shield"] = "ChanceToAvoidColdDamageEssence5", ["Staff"] = "SpellAddedColdDamageTwoHand7", ["Thrusting One Handed Sword"] = "SpellAddedColdDamage7", ["Two Handed Axe"] = "SpellAddedColdDamageTwoHand7", ["Two Handed Mace"] = "SpellAddedColdDamageTwoHand7", ["Two Handed Sword"] = "SpellAddedColdDamageTwoHand7", ["Wand"] = "SpellAddedColdDamage7", }, }, diff --git a/src/Data/FlavourText.lua b/src/Data/FlavourText.lua index 3d1365c168..01b34f7762 100644 --- a/src/Data/FlavourText.lua +++ b/src/Data/FlavourText.lua @@ -866,8 +866,6 @@ return { text = { "His is our heart.", "To its beat we all are driven.", - "", - "^8This item can be transformed with a Blessing of Xoph", }, }, [105] = { @@ -884,8 +882,6 @@ return { text = { "We wait, still as the dead,", "to join the great avalanche.", - "", - "^8This item can be transformed with a Blessing of Tul", }, }, [107] = { @@ -910,8 +906,6 @@ return { text = { "When she of many mouths spoke,", "we bowed in awe and were crushed.", - "", - "^8This item can be transformed with a Blessing of Esh", }, }, [110] = { @@ -1087,8 +1081,6 @@ return { name = "Eye of Chayula", text = { "Never blinking, always watching.", - "", - "^8This item can be transformed with a Blessing of Chayula", }, }, [132] = { @@ -1265,6 +1257,24 @@ return { }, }, [154] = { + id = "UniqueAmulet83", + name = "Haunting Memories", + text = { + "We cannot hide from the wounds of youth.", + "They fuel the fires within in, driving us on.", + }, + }, + [155] = { + id = "UniqueAmulet84", + name = "Bonemeld", + text = { + "Hills of stark and jagged white it walks,", + "scratching your ribs without, within.", + "The Fiend has naught but Empty Eyes,", + "though sees you, it does, indeed.", + }, + }, + [156] = { id = "UniqueAmulet9", name = "Carnage Heart", text = { @@ -1272,7 +1282,7 @@ return { "its thirst has only begun.", }, }, - [155] = { + [157] = { id = "UniqueBelt1", name = "Wurm's Molt", text = { @@ -1280,14 +1290,14 @@ return { "in every skin the great beasts shed.", }, }, - [156] = { + [158] = { id = "UniqueBelt10", name = "Prismweave", text = { "Nothing is as vivid as the rage of battle", }, }, - [157] = { + [159] = { id = "UniqueBelt10x", name = "Replica Prismweave", text = { @@ -1295,14 +1305,14 @@ return { "steal Prototype #659. What do they know that we do not?\"", }, }, - [158] = { + [160] = { id = "UniqueBelt11", name = "Bated Breath", text = { "At knifepoint, a moment's hesitation means death.", }, }, - [159] = { + [161] = { id = "UniqueBelt11x", name = "Replica Bated Breath", text = { @@ -1311,7 +1321,7 @@ return { "- Researcher Graven", }, }, - [160] = { + [162] = { id = "UniqueBelt12", name = "Maligaro's Restraint", text = { @@ -1320,7 +1330,7 @@ return { "- Inquisitor Maligaro", }, }, - [161] = { + [163] = { id = "UniqueBelt13", name = "Belt of the Deceiver", text = { @@ -1328,7 +1338,7 @@ return { "Only victory.", }, }, - [162] = { + [164] = { id = "UniqueBelt14", name = "Dyadian Dawn", text = { @@ -1337,7 +1347,7 @@ return { "The Eternal twins arose.", }, }, - [163] = { + [165] = { id = "UniqueBelt15", name = "Feastbind", text = { @@ -1346,7 +1356,7 @@ return { "So the First Ones filled the sky with fire.", }, }, - [164] = { + [166] = { id = "UniqueBelt16", name = "Faminebind", text = { @@ -1356,7 +1366,7 @@ return { "and gave them grain and water.", }, }, - [165] = { + [167] = { id = "UniqueBelt17", name = "The Retch", text = { @@ -1366,7 +1376,7 @@ return { "on the flesh of one another.", }, }, - [166] = { + [168] = { id = "UniqueBelt18", name = "Soulthirst", text = { @@ -1376,7 +1386,7 @@ return { "- Zerphi of the Vaal", }, }, - [167] = { + [169] = { id = "UniqueBelt19", name = "Umbilicus Immortalis", text = { @@ -1384,7 +1394,7 @@ return { "- Icius Perandus, Antiquities Collection, Item 3", }, }, - [168] = { + [170] = { id = "UniqueBelt2", name = "The Tactician", text = { @@ -1392,7 +1402,7 @@ return { "than the Great Meginord of the North.", }, }, - [169] = { + [171] = { id = "UniqueBelt20", name = "Ascent From Flesh", text = { @@ -1401,7 +1411,7 @@ return { "Reborn into freedom eternal", }, }, - [170] = { + [172] = { id = "UniqueBelt21", name = "Soul Tether", text = { @@ -1410,7 +1420,7 @@ return { "desperately cling to any other source of life.", }, }, - [171] = { + [173] = { id = "UniqueBelt21x", name = "Replica Soul Tether", text = { @@ -1418,7 +1428,7 @@ return { "was not as deep as expected. There is something here...\"", }, }, - [172] = { + [174] = { id = "UniqueBelt22", name = "Perseverance", text = { @@ -1427,7 +1437,7 @@ return { "- Daresso, the Sword King", }, }, - [173] = { + [175] = { id = "UniqueBelt23", name = "Bisco's Leash", text = { @@ -1437,7 +1447,7 @@ return { "I wish you could have stayed.", }, }, - [174] = { + [176] = { id = "UniqueBelt24", name = "Ryslatha's Coil", text = { @@ -1445,13 +1455,13 @@ return { "or unequivocal failure.", }, }, - [175] = { + [177] = { id = "UniqueBelt25", name = "The Flow Untethered", text = { }, }, - [176] = { + [178] = { id = "UniqueBelt26", name = "Cyclopean Coil", text = { @@ -1459,7 +1469,7 @@ return { "the Shade watched the Scholar.", }, }, - [177] = { + [179] = { id = "UniqueBelt27", name = "Darkness Enthroned", text = { @@ -1467,7 +1477,7 @@ return { "and never will the light blind you.", }, }, - [178] = { + [180] = { id = "UniqueBelt28", name = "Gluttony", text = { @@ -1475,7 +1485,7 @@ return { "became a desire to learn...", }, }, - [179] = { + [181] = { id = "UniqueBelt29", name = "String of Servitude", text = { @@ -1483,7 +1493,7 @@ return { "was as intimate and volatile as that of lovers.", }, }, - [180] = { + [182] = { id = "UniqueBelt3", name = "Perandus Blazon", text = { @@ -1492,7 +1502,7 @@ return { "had more debtors than anyone.", }, }, - [181] = { + [183] = { id = "UniqueBelt30", name = "Coward's Chains", text = { @@ -1502,7 +1512,7 @@ return { "^8This item can be transformed on the Altar of Sacrifice along with Vial of Consequence", }, }, - [182] = { + [184] = { id = "UniqueBelt31", name = "Coward's Legacy", text = { @@ -1510,21 +1520,21 @@ return { "Face it, or curse your bloodline for all eternity.", }, }, - [183] = { + [185] = { id = "UniqueBelt32", name = "Hyperboreus", text = { "Cold winds whirl at the crown of the world.", }, }, - [184] = { + [186] = { id = "UniqueBelt33", name = "Siegebreaker", text = { "Poison the land and they'll have nothing to defend.", }, }, - [185] = { + [187] = { id = "UniqueBelt33x", name = "Replica Siegebreaker", text = { @@ -1533,41 +1543,41 @@ return { "- Lead Researcher Ksaret", }, }, - [186] = { + [188] = { id = "UniqueBelt34", name = "Leash of Oblation", text = { "Those who offer up sacrifices to every deity entreat the full favour of none.", }, }, - [187] = { + [189] = { id = "UniqueBelt35", name = "Mother's Embrace", text = { "Drink, my children, and be strengthened.", }, }, - [188] = { + [190] = { id = "UniqueBelt36", name = "The Torrent's Reclamation", text = { }, }, - [189] = { + [191] = { id = "UniqueBelt37", name = "Bear's Girdle", text = { "Simple. Deadly. Unstoppable.", }, }, - [190] = { + [192] = { id = "UniqueBelt38", name = "Chains of Emancipation", text = { "Freedom is won only by those who are not free.", }, }, - [191] = { + [193] = { id = "UniqueBelt39", name = "The Druggery", text = { @@ -1576,7 +1586,7 @@ return { "- Doctor 'Shaky Hands' Opden", }, }, - [192] = { + [194] = { id = "UniqueBelt4", name = "Meginord's Girdle", text = { @@ -1584,14 +1594,14 @@ return { "the great Meginord of the north.", }, }, - [193] = { + [195] = { id = "UniqueBelt40", name = "Pyroshock Clasp", text = { "Teach a man to burn, and you'll be warm for the rest of his life.", }, }, - [194] = { + [196] = { id = "UniqueBelt41", name = "Survivor's Guilt", text = { @@ -1599,35 +1609,35 @@ return { "but on those that did not.", }, }, - [195] = { + [197] = { id = "UniqueBelt42a", name = "Arn's Anguish", text = { "The tortured thinker is made heavier by the weight of his guilt.", }, }, - [196] = { + [198] = { id = "UniqueBelt42b", name = "Olesya's Delight", text = { "The cruel thinker finds glee in torture most precise.", }, }, - [197] = { + [199] = { id = "UniqueBelt42c", name = "Graven's Secret", text = { "The cowardly thinker's greatest success is simply surviving.", }, }, - [198] = { + [200] = { id = "UniqueBelt43", name = "Mageblood", text = { "Rivers of power course through your veins.", }, }, - [199] = { + [201] = { id = "UniqueBelt44", name = "The Burden of Truth", text = { @@ -1635,7 +1645,7 @@ return { "but a hollow soul can never be healed.", }, }, - [200] = { + [202] = { id = "UniqueBelt45", name = "Chain of Endurance", text = { @@ -1645,7 +1655,7 @@ return { "- Weylan the Ezomyte", }, }, - [201] = { + [203] = { id = "UniqueBelt46", name = "Ceinture of Benevolence", text = { @@ -1654,7 +1664,7 @@ return { "- High Templar Maxarius", }, }, - [202] = { + [204] = { id = "UniqueBelt47", name = "Kaom's Binding", text = { @@ -1662,7 +1672,7 @@ return { "nightmare of lava and flame... but he endured.", }, }, - [203] = { + [205] = { id = "UniqueBelt48", name = "Bound Fate", text = { @@ -1671,7 +1681,7 @@ return { "are two very different things.", }, }, - [204] = { + [206] = { id = "UniqueBelt49", name = "The Tides of Time", text = { @@ -1679,7 +1689,7 @@ return { "tangible to those who watch and wait.", }, }, - [205] = { + [207] = { id = "UniqueBelt50", name = "Nevalius Inheritance", text = { @@ -1690,7 +1700,7 @@ return { "- Victario Nevalius, the People's Poet", }, }, - [206] = { + [208] = { id = "UniqueBelt51", name = "Ynda's Stand", text = { @@ -1698,7 +1708,7 @@ return { "she held the bridge to the very end.", }, }, - [207] = { + [209] = { id = "UniqueBelt54", name = "The Arkhon's Tools", text = { @@ -1707,7 +1717,7 @@ return { "Life... or something like it, engineered in its image.", }, }, - [208] = { + [210] = { id = "UniqueBelt6", name = "Sunblast", text = { @@ -1716,7 +1726,7 @@ return { "Explodes from its cage.", }, }, - [209] = { + [211] = { id = "UniqueBelt7", name = "Headhunter", text = { @@ -1726,7 +1736,7 @@ return { "- Lavianga, Advisor to Kaom", }, }, - [210] = { + [212] = { id = "UniqueBelt7x", name = "Replica Headhunter", text = { @@ -1734,7 +1744,7 @@ return { "ten times the height of a man and crashing straight through walls.\"", }, }, - [211] = { + [213] = { id = "UniqueBelt8", name = "Immortal Flesh", text = { @@ -1745,7 +1755,7 @@ return { "- Berek and the Untamed", }, }, - [212] = { + [214] = { id = "UniqueBelt9", name = "Doryani's Invitation", text = { @@ -1754,7 +1764,7 @@ return { "- Doryani, Queen's Thaumaturgist", }, }, - [213] = { + [215] = { id = "UniqueBodyDex1", name = "Hyrri's Ire", text = { @@ -1763,17 +1773,15 @@ return { "only oppression can ferment.", }, }, - [214] = { + [216] = { id = "UniqueBodyDex10", name = "The Snowblind Grace", text = { "We dance in the white, like water,", "colliding as many and emerging as one.", - "", - "^8This item can be transformed with a Blessing of Tul", }, }, - [215] = { + [217] = { id = "UniqueBodyDex11", name = "The Perfect Form", text = { @@ -1784,7 +1792,7 @@ return { "Brittle.", }, }, - [216] = { + [218] = { id = "UniqueBodyDex11x", name = "Replica Perfect Form", text = { @@ -1793,7 +1801,7 @@ return { "- Researcher Graven", }, }, - [217] = { + [219] = { id = "UniqueBodyDex12", name = "Yriel's Fostering", text = { @@ -1803,7 +1811,7 @@ return { "It is suffering that forges the greatest warriors.", }, }, - [218] = { + [220] = { id = "UniqueBodyDex1x", name = "Replica Hyrri's Ire", text = { @@ -1812,21 +1820,21 @@ return { "- Researcher Olesya, on #2999 and the loss of Outpost Eight", }, }, - [219] = { + [221] = { id = "UniqueBodyDex3", name = "Ashrend", text = { "The blasted oak stands forever.", }, }, - [220] = { + [222] = { id = "UniqueBodyDex4", name = "Fox's Fortune", text = { "To catch an animal, think like an animal.", }, }, - [221] = { + [223] = { id = "UniqueBodyDex5", name = "Bronn's Lithe", text = { @@ -1834,7 +1842,7 @@ return { "in the field between you and the archers.", }, }, - [222] = { + [224] = { id = "UniqueBodyDex6", name = "Queen of the Forest", text = { @@ -1846,7 +1854,7 @@ return { "she found peace at last.", }, }, - [223] = { + [225] = { id = "UniqueBodyDex7", name = "Wildwrap", text = { @@ -1855,7 +1863,7 @@ return { "- Taruk of the Wildmen", }, }, - [224] = { + [226] = { id = "UniqueBodyDex8", name = "Kintsugi", text = { @@ -1864,7 +1872,7 @@ return { "For it is these that set us apart.", }, }, - [225] = { + [227] = { id = "UniqueBodyDex9", name = "Cospri's Will", text = { @@ -1873,7 +1881,7 @@ return { "If they only knew the power I possess.", }, }, - [226] = { + [228] = { id = "UniqueBodyDexInt1", name = "Carcass Jack", text = { @@ -1882,7 +1890,7 @@ return { "- Maligaro's Journal", }, }, - [227] = { + [229] = { id = "UniqueBodyDexInt10", name = "Saqawal's Nest", text = { @@ -1891,14 +1899,14 @@ return { "that what we take for law may just be an illusion.", }, }, - [228] = { + [230] = { id = "UniqueBodyDexInt11", name = "The Eternity Shroud", text = { "There can be no defence against the celestial siblings entropy and time.", }, }, - [229] = { + [231] = { id = "UniqueBodyDexInt11x", name = "Replica Eternity Shroud", text = { @@ -1907,7 +1915,7 @@ return { "- Researcher Arn", }, }, - [230] = { + [232] = { id = "UniqueBodyDexInt12", name = "Expedition's End", text = { @@ -1915,7 +1923,7 @@ return { "but that doesn't mean he ever truly escaped them.", }, }, - [231] = { + [233] = { id = "UniqueBodyDexInt13", name = "The Admiral", text = { @@ -1923,7 +1931,7 @@ return { "them to wage war wherever their enemy was weakest.", }, }, - [232] = { + [234] = { id = "UniqueBodyDexInt14", name = "Doppelgänger Guise", text = { @@ -1931,14 +1939,14 @@ return { "held back only by the lies we tell ourselves.", }, }, - [233] = { + [235] = { id = "UniqueBodyDexInt15", name = "Stasis Prison", text = { "Those that can never die have but one wish.", }, }, - [234] = { + [236] = { id = "UniqueBodyDexInt16", name = "Seven Teachings", text = { @@ -1946,7 +1954,7 @@ return { "perfection of the body and the will.", }, }, - [235] = { + [237] = { id = "UniqueBodyDexInt17", name = "Servant of Decay", text = { @@ -1954,7 +1962,7 @@ return { "nothing remained but the void.", }, }, - [236] = { + [238] = { id = "UniqueBodyDexInt2", name = "Cloak of Defiance", text = { @@ -1968,7 +1976,7 @@ return { "Of the Defiant Heart.", }, }, - [237] = { + [239] = { id = "UniqueBodyDexInt3", name = "The Restless Ward", text = { @@ -1978,7 +1986,7 @@ return { "One lapse and all for naught.", }, }, - [238] = { + [240] = { id = "UniqueBodyDexInt3x", name = "Replica Restless Ward", text = { @@ -1986,7 +1994,7 @@ return { "There is power here, if it can be tapped.\"", }, }, - [239] = { + [241] = { id = "UniqueBodyDexInt4", name = "Victario's Influence", text = { @@ -1996,14 +2004,14 @@ return { "- Victario, the People's Poet", }, }, - [240] = { + [242] = { id = "UniqueBodyDexInt5", name = "Tinkerskin", text = { "Thin is the line between mechanical genius and magic.", }, }, - [241] = { + [243] = { id = "UniqueBodyDexInt6", name = "Inpulsa's Broken Heart", text = { @@ -2011,14 +2019,14 @@ return { "or they will give you the same treatment.", }, }, - [242] = { + [244] = { id = "UniqueBodyDexInt7", name = "Bloodbond", text = { "What mother wouldn't give her life for that of her children?", }, }, - [243] = { + [245] = { id = "UniqueBodyDexInt8", name = "Dendrobate", text = { @@ -2027,7 +2035,7 @@ return { "are the ones who don't bother to hide.", }, }, - [244] = { + [246] = { id = "UniqueBodyDexInt9x", name = "Replica Shroud of the Lightless", text = { @@ -2035,7 +2043,7 @@ return { "- Researcher Arn", }, }, - [245] = { + [247] = { id = "UniqueBodyInt1", name = "Shavronne's Wrappings", text = { @@ -2043,7 +2051,7 @@ return { "as her body and soul became ever more corrupted.", }, }, - [246] = { + [248] = { id = "UniqueBodyInt10", name = "The Beast Fur Shawl", text = { @@ -2052,7 +2060,7 @@ return { "is to walk in the skin of another.", }, }, - [247] = { + [249] = { id = "UniqueBodyInt11", name = "Cloak of Tawm'r Isley", text = { @@ -2062,7 +2070,7 @@ return { "and watches from beneath the city.", }, }, - [248] = { + [250] = { id = "UniqueBodyInt12", name = "The Coming Calamity", text = { @@ -2072,17 +2080,15 @@ return { "By your hand they dance and bend, wield them and brook no end.", }, }, - [249] = { + [251] = { id = "UniqueBodyInt13", name = "Skin of the Loyal", text = { "We happily give our limbs.", "A net woven to keep safe the bones of the Lords.", - "", - "^8This item can be transformed with a Blessing of Chayula", }, }, - [250] = { + [252] = { id = "UniqueBodyInt14", name = "Skin of the Lords", text = { @@ -2090,7 +2096,7 @@ return { "Only they may grace His flesh.", }, }, - [251] = { + [253] = { id = "UniqueBodyInt15", name = "Doedre's Skin", text = { @@ -2100,7 +2106,7 @@ return { "But Wraeclast had not heard the last of her.", }, }, - [252] = { + [254] = { id = "UniqueBodyInt16", name = "Dialla's Malefaction", text = { @@ -2110,7 +2116,7 @@ return { "And I'd do it again in an instant.", }, }, - [253] = { + [255] = { id = "UniqueBodyInt17", name = "Fenumus' Shroud", text = { @@ -2119,7 +2125,7 @@ return { "and found comfort in silence and solace.", }, }, - [254] = { + [256] = { id = "UniqueBodyInt18", name = "The Queen's Hunger", text = { @@ -2127,7 +2133,7 @@ return { "They stab their own hearts and cry out in ecstasy, only to rise again.", }, }, - [255] = { + [257] = { id = "UniqueBodyInt19", name = "Garb of the Ephemeral", text = { @@ -2135,28 +2141,28 @@ return { "but something much greater is needed to unleash the wildfire of true divine flames.", }, }, - [256] = { + [258] = { id = "UniqueBodyInt2", name = "Cloak of Flame", text = { "He who sows an ember shall reap an inferno.", }, }, - [257] = { + [259] = { id = "UniqueBodyInt20", name = "Fleshcrafter", text = { "Imbue the body with stolen spirit, hold the leash tight.", }, }, - [258] = { + [260] = { id = "UniqueBodyInt21", name = "Ghostwrithe", text = { "Faith springs abundant at the edge of death.", }, }, - [259] = { + [261] = { id = "UniqueBodyInt22", name = "The Apostate", text = { @@ -2164,7 +2170,7 @@ return { "became thick white blood, as choking as it was nourishing.", }, }, - [260] = { + [262] = { id = "UniqueBodyInt3", name = "The Covenant", text = { @@ -2172,7 +2178,7 @@ return { "My Price is your Blood", }, }, - [261] = { + [263] = { id = "UniqueBodyInt3x", name = "Replica Covenant", text = { @@ -2181,7 +2187,7 @@ return { "- Lead Researcher Ksaret", }, }, - [262] = { + [264] = { id = "UniqueBodyInt4", name = "Infernal Mantle", text = { @@ -2189,7 +2195,7 @@ return { "Eyes will burn, and souls wither, as they bask in my radiance.", }, }, - [263] = { + [265] = { id = "UniqueBodyInt5", name = "Thousand Ribbons", text = { @@ -2199,7 +2205,7 @@ return { "And was born again", }, }, - [264] = { + [266] = { id = "UniqueBodyInt7", name = "Soul Mantle", text = { @@ -2207,7 +2213,7 @@ return { "long after they have been made", }, }, - [265] = { + [267] = { id = "UniqueBodyInt8", name = "Zahndethus' Cassock", text = { @@ -2217,7 +2223,7 @@ return { "Twice as strong and twice as thick", }, }, - [266] = { + [268] = { id = "UniqueBodyInt9", name = "Vis Mortis", text = { @@ -2227,7 +2233,7 @@ return { "Zealots in mortis enslaved", }, }, - [267] = { + [269] = { id = "UniqueBodyStr1", name = "Kaom's Heart", text = { @@ -2235,7 +2241,7 @@ return { "fears will fall.", }, }, - [268] = { + [270] = { id = "UniqueBodyStr10", name = "Craiceann's Carapace", text = { @@ -2244,7 +2250,7 @@ return { "who stood guard as land rose from sea.", }, }, - [269] = { + [271] = { id = "UniqueBodyStr11", name = "Perfidy", text = { @@ -2252,21 +2258,21 @@ return { "What hope have you?", }, }, - [270] = { + [272] = { id = "UniqueBodyStr12", name = "Blunderbore", text = { "The giant cares not for the ants.", }, }, - [271] = { + [273] = { id = "UniqueBodyStr13", name = "Utula's Hunger", text = { "The world will end in a divine stomach once Kitava has eaten all that lives.", }, }, - [272] = { + [274] = { id = "UniqueBodyStr14", name = "Pragmatism", text = { @@ -2274,7 +2280,7 @@ return { "so their practical warriors employed geomancy instead.", }, }, - [273] = { + [275] = { id = "UniqueBodyStr1x", name = "Replica Kaom's Heart", text = { @@ -2282,14 +2288,14 @@ return { "to an archmage to fund other experiments.\"", }, }, - [274] = { + [276] = { id = "UniqueBodyStr2", name = "Wall of Brambles", text = { "It is safer to be feared than to be loved.", }, }, - [275] = { + [277] = { id = "UniqueBodyStr3", name = "Death's Oath", text = { @@ -2297,7 +2303,7 @@ return { "My dear Isildria must depart.", }, }, - [276] = { + [278] = { id = "UniqueBodyStr4", name = "Solaris Lorica", text = { @@ -2307,7 +2313,7 @@ return { "So that I may begin my bright pursuit.", }, }, - [277] = { + [279] = { id = "UniqueBodyStr5", name = "Greed's Embrace", text = { @@ -2315,7 +2321,7 @@ return { "The rest were already dead.", }, }, - [278] = { + [280] = { id = "UniqueBodyStr6", name = "Lioneye's Vision", text = { @@ -2325,14 +2331,14 @@ return { "- Marceus Lioneye", }, }, - [279] = { + [281] = { id = "UniqueBodyStr7", name = "The Brass Dome", text = { "The turtle's shell one day becomes its tomb.", }, }, - [280] = { + [282] = { id = "UniqueBodyStr9", name = "The Iron Fortress", text = { @@ -2341,7 +2347,7 @@ return { "- Mauritius, the Iron Heart", }, }, - [281] = { + [283] = { id = "UniqueBodyStrDex1", name = "Belly of the Beast", text = { @@ -2349,7 +2355,7 @@ return { "Than the Belly of the Beast", }, }, - [282] = { + [284] = { id = "UniqueBodyStrDex2", name = "Lightning Coil", text = { @@ -2358,7 +2364,7 @@ return { "- Malachai the Soulless.", }, }, - [283] = { + [285] = { id = "UniqueBodyStrDex3", name = "Daresso's Defiance", text = { @@ -2369,7 +2375,7 @@ return { "- Daresso, the Sword King", }, }, - [284] = { + [286] = { id = "UniqueBodyStrDex4", name = "Cherrubim's Maleficence", text = { @@ -2380,7 +2386,7 @@ return { "- Blass, explorer, hunter, adventurer", }, }, - [285] = { + [287] = { id = "UniqueBodyStrDex5", name = "The Rat Cage", text = { @@ -2388,7 +2394,7 @@ return { "Many a confession was found in the bowels of Axiom.", }, }, - [286] = { + [288] = { id = "UniqueBodyStrDex6", name = "Viper's Scales", text = { @@ -2396,14 +2402,14 @@ return { "One strike, one corpse.", }, }, - [287] = { + [289] = { id = "UniqueBodyStrDex7", name = "Gruthkul's Pelt", text = { "Simple is the life of the bear.", }, }, - [288] = { + [290] = { id = "UniqueBodyStrDex8", name = "Farrul's Fur", text = { @@ -2412,7 +2418,7 @@ return { "in waiting in the shadows and picking your moment.", }, }, - [289] = { + [291] = { id = "UniqueBodyStrDex8x", name = "Replica Farrul's Fur", text = { @@ -2420,7 +2426,16 @@ return { "without breaking all the bones of the test subject. A rousing success.\"", }, }, - [290] = { + [292] = { + id = "UniqueBodyStrDex9", + name = "Rigwald's Hunt", + text = { + "\"The Greatwolf is with us! Gaius Sentari", + "flees! Let us give chase, for today, my", + "brothers and sisters, we are finally free!\"", + }, + }, + [293] = { id = "UniqueBodyStrDexInt1", name = "Atziri's Splendour", text = { @@ -2429,7 +2444,7 @@ return { "- Atziri, Queen of the Vaal", }, }, - [291] = { + [294] = { id = "UniqueBodyStrDexInt2", name = "Shadowstitch", text = { @@ -2439,7 +2454,7 @@ return { "and the next.", }, }, - [292] = { + [295] = { id = "UniqueBodyStrInt1", name = "Voll's Protector", text = { @@ -2447,7 +2462,7 @@ return { "Voll proved disastrous in times of peace.", }, }, - [293] = { + [296] = { id = "UniqueBodyStrInt10", name = "Chains of Command", text = { @@ -2455,14 +2470,14 @@ return { "or be dragged beneath the mire by their burden.", }, }, - [294] = { + [297] = { id = "UniqueBodyStrInt11", name = "Rotting Legion", text = { "A glacier of putrid meat, crushing mountains and valleys alike.", }, }, - [295] = { + [298] = { id = "UniqueBodyStrInt12", name = "Sporeguard", text = { @@ -2472,14 +2487,14 @@ return { "^8This item can be anointed by Cassia", }, }, - [296] = { + [299] = { id = "UniqueBodyStrInt13", name = "The Ivory Tower", text = { "The mind is a filter through which anarchy becomes order.", }, }, - [297] = { + [300] = { id = "UniqueBodyStrInt14", name = "Doryani's Prototype", text = { @@ -2488,7 +2503,7 @@ return { "- Dominus, High Templar", }, }, - [298] = { + [301] = { id = "UniqueBodyStrInt15", name = "The Fourth Vow", text = { @@ -2496,14 +2511,14 @@ return { "In flagellation, there lies freedom from temptation.", }, }, - [299] = { + [302] = { id = "UniqueBodyStrInt2", name = "Ambu's Charge", text = { "Nothing stops the pain like a courageous rush into battle.", }, }, - [300] = { + [303] = { id = "UniqueBodyStrInt2x", name = "Replica Ambu's Charge", text = { @@ -2511,7 +2526,7 @@ return { "though at considerable cost to the long-term survival rate of the user.\"", }, }, - [301] = { + [304] = { id = "UniqueBodyStrInt3", name = "Crystal Vault", text = { @@ -2520,7 +2535,7 @@ return { "the world will perish in ice.", }, }, - [302] = { + [305] = { id = "UniqueBodyStrInt4", name = "Lightbane Raiment", text = { @@ -2529,7 +2544,7 @@ return { "and embraced the darkness.", }, }, - [303] = { + [306] = { id = "UniqueBodyStrInt5", name = "Incandescent Heart", text = { @@ -2537,14 +2552,14 @@ return { "And the black lies wrapped around your heart", }, }, - [304] = { + [307] = { id = "UniqueBodyStrInt6", name = "Kingsguard", text = { "The toughest armour is the trust of your people.", }, }, - [305] = { + [308] = { id = "UniqueBodyStrInt7", name = "Geofri's Sanctuary", text = { @@ -2552,7 +2567,7 @@ return { "It makes us immortal.", }, }, - [306] = { + [309] = { id = "UniqueBodyStrInt9", name = "Loreweave", text = { @@ -2561,7 +2576,7 @@ return { "boundless creativity.", }, }, - [307] = { + [310] = { id = "UniqueBodyStrInt9x", name = "Replica Loreweave", text = { @@ -2569,21 +2584,21 @@ return { "What key fundamental secret are we missing?\"", }, }, - [308] = { + [311] = { id = "UniqueBootsDex1", name = "Sin Trek", text = { "Do not let them step on your feet. Keep them at bay.", }, }, - [309] = { + [312] = { id = "UniqueBootsDex11", name = "Garukhan's Flight", text = { "The higher you soar, the further you must fall.", }, }, - [310] = { + [313] = { id = "UniqueBootsDex13", name = "Farrul's Chase", text = { @@ -2592,7 +2607,7 @@ return { "To do otherwise is to arm your foes.", }, }, - [311] = { + [314] = { id = "UniqueBootsDex14", name = "Temptation Step", text = { @@ -2600,7 +2615,7 @@ return { "them to narcotic stimulants with lethal withdrawals.", }, }, - [312] = { + [315] = { id = "UniqueBootsDex15", name = "Orbala's Stand", text = { @@ -2609,14 +2624,14 @@ return { "grinned. In that moment, the bandit king knew true despair.", }, }, - [313] = { + [316] = { id = "UniqueBootsDex2", name = "Goldwyrm", text = { "The wyrm draws warmth from the fires of desire.", }, }, - [314] = { + [317] = { id = "UniqueBootsDex3", name = "Victario's Flight", text = { @@ -2624,7 +2639,7 @@ return { "as slaughter blossomed at the gates.", }, }, - [315] = { + [318] = { id = "UniqueBootsDex4", name = "The Blood Dance", text = { @@ -2634,7 +2649,7 @@ return { "-Lavianga, Guardian of the Karui Way", }, }, - [316] = { + [319] = { id = "UniqueBootsDex5", name = "Seven-League Step", text = { @@ -2643,14 +2658,14 @@ return { "- Icius Perandus, Antiquities Collection, Item 202", }, }, - [317] = { + [320] = { id = "UniqueBootsDex6", name = "Deerstalker", text = { "Anticipation, preparation, exhilaration, celebration.", }, }, - [318] = { + [321] = { id = "UniqueBootsDex7", name = "Atziri's Step", text = { @@ -2659,14 +2674,14 @@ return { "- Atziri, Queen of the Vaal", }, }, - [319] = { + [322] = { id = "UniqueBootsDex8", name = "Nomic's Storm", text = { "It takes a clear mind to outrun a storm.", }, }, - [320] = { + [323] = { id = "UniqueBootsDex9", name = "Three-step Assault", text = { @@ -2675,7 +2690,7 @@ return { "Vanish like smoke in the wind.", }, }, - [321] = { + [324] = { id = "UniqueBootsDex9x", name = "Replica Three-step Assault", text = { @@ -2683,7 +2698,7 @@ return { "system in the hallway functioned as expected.\"", }, }, - [322] = { + [325] = { id = "UniqueBootsDexInt1", name = "Sunspite", text = { @@ -2691,7 +2706,7 @@ return { "Dance beneath the orb of gold!", }, }, - [323] = { + [326] = { id = "UniqueBootsDexInt10", name = "The Stampede", text = { @@ -2700,7 +2715,7 @@ return { "^8This item can be anointed by Cassia", }, }, - [324] = { + [327] = { id = "UniqueBootsDexInt10x", name = "Replica Stampede", text = { @@ -2710,7 +2725,7 @@ return { "^8This item can be anointed by Cassia", }, }, - [325] = { + [328] = { id = "UniqueBootsDexInt11", name = "Corpsewalker", text = { @@ -2718,7 +2733,7 @@ return { "stands astride innocent bones.", }, }, - [326] = { + [329] = { id = "UniqueBootsDexInt12", name = "Inextricable Fate", text = { @@ -2726,7 +2741,7 @@ return { "irrevocably bound together in perpetual torture.", }, }, - [327] = { + [330] = { id = "UniqueBootsDexInt13", name = "Veruso's Ambition", text = { @@ -2734,7 +2749,7 @@ return { "families. Follow me if you hunger for more than this!\"", }, }, - [328] = { + [331] = { id = "UniqueBootsDexInt4", name = "Brinerot Whalers", text = { @@ -2742,7 +2757,7 @@ return { "Let's see what they'll pay for their own.", }, }, - [329] = { + [332] = { id = "UniqueBootsDexInt5", name = "Voidwalker", text = { @@ -2750,7 +2765,7 @@ return { "and experience true freedom.", }, }, - [330] = { + [333] = { id = "UniqueBootsDexInt5x", name = "Replica Voidwalker", text = { @@ -2758,7 +2773,7 @@ return { "He was not fast enough, however. Suggest we begin excavation to retrieve prototype.\"", }, }, - [331] = { + [334] = { id = "UniqueBootsDexInt7", name = "Fenumus' Spinnerets", text = { @@ -2767,7 +2782,7 @@ return { "Though we cannot live without danger, we can learn to live with it.", }, }, - [332] = { + [335] = { id = "UniqueBootsDexInt8", name = "Dance of the Offered", text = { @@ -2778,7 +2793,7 @@ return { "^8This item can be transformed on the Altar of Sacrifice along with Vial of the Ritual", }, }, - [333] = { + [336] = { id = "UniqueBootsDexInt9", name = "Omeyocan", text = { @@ -2786,7 +2801,7 @@ return { "in a life so fleeting.", }, }, - [334] = { + [337] = { id = "UniqueBootsExpedition1", name = "Vorana's March", text = { @@ -2794,7 +2809,7 @@ return { "called out for aid... and the Black Scythe answered.", }, }, - [335] = { + [338] = { id = "UniqueBootsExpedition2", name = "Olroth's Charge", text = { @@ -2802,21 +2817,21 @@ return { "Olroth the Gallant fought deeper into battle.", }, }, - [336] = { + [339] = { id = "UniqueBootsInt1", name = "Greedtrap", text = { "Wonders abound at death's door.", }, }, - [337] = { + [340] = { id = "UniqueBootsInt2", name = "Wanderlust", text = { "All the world is my home.", }, }, - [338] = { + [341] = { id = "UniqueBootsInt3", name = "Shavronne's Gambit", text = { @@ -2824,7 +2839,7 @@ return { "her last hope against the Karui tide.", }, }, - [339] = { + [342] = { id = "UniqueBootsInt4", name = "Bones of Ullr", text = { @@ -2832,7 +2847,7 @@ return { "the living fear to tread.", }, }, - [340] = { + [343] = { id = "UniqueBootsInt4x", name = "Replica Bones of Ullr", text = { @@ -2841,7 +2856,7 @@ return { "- Administrator Qotra", }, }, - [341] = { + [344] = { id = "UniqueBootsInt5", name = "Rainbowstride", text = { @@ -2850,7 +2865,7 @@ return { "- Gaius Sentari", }, }, - [342] = { + [345] = { id = "UniqueBootsInt6", name = "Steppan Eard", text = { @@ -2858,7 +2873,7 @@ return { "Make those lands your own, and the mistake becomes theirs.", }, }, - [343] = { + [346] = { id = "UniqueBootsInt7", name = "Skyforth", text = { @@ -2866,7 +2881,7 @@ return { "and the powerful stand alone in a wasteland of their own creation.", }, }, - [344] = { + [347] = { id = "UniqueBootsInt8", name = "Inya's Epiphany", text = { @@ -2874,7 +2889,7 @@ return { "each journey is different.", }, }, - [345] = { + [348] = { id = "UniqueBootsInt8x", name = "Replica Inya's Epiphany", text = { @@ -2883,7 +2898,7 @@ return { "- Researcher Graven", }, }, - [346] = { + [349] = { id = "UniqueBootsStr1", name = "Windshriek", text = { @@ -2891,7 +2906,7 @@ return { "The haunting screams, a maddening hell.", }, }, - [347] = { + [350] = { id = "UniqueBootsStr10", name = "Craiceann's Tracks", text = { @@ -2900,7 +2915,7 @@ return { "We must remember our place, and play to our strengths.", }, }, - [348] = { + [351] = { id = "UniqueBootsStr11", name = "Torchoak Step", text = { @@ -2908,7 +2923,7 @@ return { "As with all things, the Karui used its wood for war.", }, }, - [349] = { + [352] = { id = "UniqueBootsStr12", name = "Dawnstrider", text = { @@ -2917,14 +2932,14 @@ return { "consuming the knowledge of fallen civilisations.", }, }, - [350] = { + [353] = { id = "UniqueBootsStr13", name = "Kahuturoa's Certainty", text = { "Confidence is calm and measured.", }, }, - [351] = { + [354] = { id = "UniqueBootsStr14", name = "The Tempest Rising", text = { @@ -2932,14 +2947,14 @@ return { "and death laid waste to all around him.", }, }, - [352] = { + [355] = { id = "UniqueBootsStr2", name = "Kaom's Roots", text = { "Don't flinch. It's a waste of good hitting time.", }, }, - [353] = { + [356] = { id = "UniqueBootsStr3", name = "Redblade Tramplers", text = { @@ -2949,16 +2964,14 @@ return { "by sating his hunger for life.", }, }, - [354] = { + [357] = { id = "UniqueBootsStr6", name = "The Infinite Pursuit", text = { "We move to be closer to her, but the distance yet grows.", - "", - "^8This item can be transformed with a Blessing of Uul-Netol", }, }, - [355] = { + [358] = { id = "UniqueBootsStr7", name = "The Red Trail", text = { @@ -2966,7 +2979,7 @@ return { "where never we will return.", }, }, - [356] = { + [359] = { id = "UniqueBootsStr7x", name = "Replica Red Trail", text = { @@ -2975,14 +2988,14 @@ return { "- Administrator Qotra", }, }, - [357] = { + [360] = { id = "UniqueBootsStr9", name = "Stormcharger", text = { "Like lightning, the Ezomyte cavalry need never strike twice.", }, }, - [358] = { + [361] = { id = "UniqueBootsStrDex1", name = "Lioneye's Paws", text = { @@ -2990,7 +3003,7 @@ return { "Fight till death, never hide.", }, }, - [359] = { + [362] = { id = "UniqueBootsStrDex1x", name = "Replica Lioneye's Paws", text = { @@ -2998,7 +3011,7 @@ return { "Prototype #12 is a 'success,' if we can ever reach it.\"", }, }, - [360] = { + [363] = { id = "UniqueBootsStrDex2", name = "Darkray Vectors", text = { @@ -3008,7 +3021,7 @@ return { "- Azmerian legend", }, }, - [361] = { + [364] = { id = "UniqueBootsStrDex3", name = "Duskblight", text = { @@ -3017,7 +3030,7 @@ return { "- Inquisitor Maligaro", }, }, - [362] = { + [365] = { id = "UniqueBootsStrDex5", name = "Mutewind Whispersteps", text = { @@ -3026,7 +3039,7 @@ return { "It is our duty to keep it so.", }, }, - [363] = { + [366] = { id = "UniqueBootsStrDex6", name = "Saqawal's Talons", text = { @@ -3035,7 +3048,7 @@ return { "so that we may live more freely.", }, }, - [364] = { + [367] = { id = "UniqueBootsStrDex7", name = "Legacy of Fury", text = { @@ -3043,7 +3056,7 @@ return { "naught remains but ash.", }, }, - [365] = { + [368] = { id = "UniqueBootsStrDex8", name = "Annihilation's Approach", text = { @@ -3051,7 +3064,7 @@ return { "for the true end follows when the great eye closes.", }, }, - [366] = { + [369] = { id = "UniqueBootsStrDex9", name = "Gamblesprint", text = { @@ -3059,7 +3072,7 @@ return { "unknown and snarled to the very last.", }, }, - [367] = { + [370] = { id = "UniqueBootsStrInt1", name = "Wake of Destruction", text = { @@ -3067,7 +3080,7 @@ return { "Flee before the walking storm.", }, }, - [368] = { + [371] = { id = "UniqueBootsStrInt2", name = "Alberon's Warpath", text = { @@ -3075,7 +3088,7 @@ return { "and they welcomed him.", }, }, - [369] = { + [372] = { id = "UniqueBootsStrInt2x", name = "Replica Alberon's Warpath", text = { @@ -3083,14 +3096,14 @@ return { "However, after being fed, he began to poison everything he touched...\"", }, }, - [370] = { + [373] = { id = "UniqueBootsStrInt3", name = "Gang's Momentum", text = { "Become one with the unstoppable flame.", }, }, - [371] = { + [374] = { id = "UniqueBootsStrInt4", name = "Death's Door", text = { @@ -3098,7 +3111,7 @@ return { "is to extend all the maladies that come with it.", }, }, - [372] = { + [375] = { id = "UniqueBootsStrInt5", name = "Ralakesh's Impatience", text = { @@ -3107,14 +3120,14 @@ return { "you can simply mimic what others have?", }, }, - [373] = { + [376] = { id = "UniqueBootsStrInt6", name = "March of the Legion", text = { "When the time comes to face evil, the faithful are never alone.", }, }, - [374] = { + [377] = { id = "UniqueBow1", name = "Lioneye's Glare", text = { @@ -3122,7 +3135,7 @@ return { "- Marceus Lioneye of Sarn", }, }, - [375] = { + [378] = { id = "UniqueBow10", name = "Voltaxic Rift", text = { @@ -3131,7 +3144,7 @@ return { "arcane power. There was no escape, no shelter. Only despair.", }, }, - [376] = { + [379] = { id = "UniqueBow11", name = "Doomfletch's Prism", text = { @@ -3142,14 +3155,14 @@ return { "- Koralus Doomfletch", }, }, - [377] = { + [380] = { id = "UniqueBow12", name = "Null's Inclination", text = { "The hunt continues when the prey falls.", }, }, - [378] = { + [381] = { id = "UniqueBow13", name = "Roth's Reach", text = { @@ -3158,7 +3171,7 @@ return { "- Captain Weylam \"Rot-tooth\" Roth of the Black Crest", }, }, - [379] = { + [382] = { id = "UniqueBow14", name = "Iron Commander", text = { @@ -3166,7 +3179,7 @@ return { "without the usual depravities of necromancy.", }, }, - [380] = { + [383] = { id = "UniqueBow14x", name = "Replica Iron Commander", text = { @@ -3174,7 +3187,7 @@ return { "Prototype #4 achieved identical results through brute force alone.\"", }, }, - [381] = { + [384] = { id = "UniqueBow15", name = "Nuro's Harp", text = { @@ -3182,37 +3195,35 @@ return { "Darkness cleansed, pure and new.", }, }, - [382] = { + [385] = { id = "UniqueBow16", name = "Reach of the Council", text = { "We stand together. We strike together.", }, }, - [383] = { + [386] = { id = "UniqueBow17", name = "Slivertongue", text = { "A hundred blind heads, each seeking the taste of prey on the air.", }, }, - [384] = { + [387] = { id = "UniqueBow18", name = "Xoph's Inception", text = { "Upon the red pyre we are born.", - "", - "^8This item can be transformed with a Blessing of Xoph", }, }, - [385] = { + [388] = { id = "UniqueBow19", name = "Xoph's Nurture", text = { "Upon the grey winds his love spreads.", }, }, - [386] = { + [389] = { id = "UniqueBow2", name = "Silverbough", text = { @@ -3220,7 +3231,7 @@ return { "- Hyrri of the Karui", }, }, - [387] = { + [390] = { id = "UniqueBow20", name = "Arborix", text = { @@ -3230,7 +3241,7 @@ return { "their grasp stretches ever farther.", }, }, - [388] = { + [391] = { id = "UniqueBow21", name = "Hopeshredder", text = { @@ -3240,7 +3251,7 @@ return { "and bathed in fear and ferocity.", }, }, - [389] = { + [392] = { id = "UniqueBow22", name = "The Crimson Storm", text = { @@ -3248,7 +3259,7 @@ return { "- Order of the Djinn inscription", }, }, - [390] = { + [393] = { id = "UniqueBow23", name = "The Gluttonous Tide", text = { @@ -3256,7 +3267,7 @@ return { "if but for a moment... only to disgorge and do it all again...", }, }, - [391] = { + [394] = { id = "UniqueBow24", name = "Widowhail", text = { @@ -3266,7 +3277,17 @@ return { "- Chieftainess Ahuana of the Ramako Tribe", }, }, - [392] = { + [395] = { + id = "UniqueBow25", + name = "Wing of the Wyvern", + text = { + "Fear flies by night,", + "a bone, cold as death,", + "all that remains", + "of hope's whisper.", + }, + }, + [396] = { id = "UniqueBow3", name = "Death's Opus", text = { @@ -3276,7 +3297,7 @@ return { "The Reaper's Song, the Harp of Death.", }, }, - [393] = { + [397] = { id = "UniqueBow4", name = "Quill Rain", text = { @@ -3285,7 +3306,7 @@ return { "- Rigwald of the Ezomytes", }, }, - [394] = { + [398] = { id = "UniqueBow4x", name = "Replica Quill Rain", text = { @@ -3294,7 +3315,7 @@ return { "- Doctor Bircus", }, }, - [395] = { + [399] = { id = "UniqueBow5", name = "Darkscorn", text = { @@ -3303,7 +3324,7 @@ return { "- Sekhema Asenath", }, }, - [396] = { + [400] = { id = "UniqueBow6", name = "Chin Sol", text = { @@ -3311,7 +3332,7 @@ return { "That is not the case when fighting the Maraketh.", }, }, - [397] = { + [401] = { id = "UniqueBow7", name = "Infractem", text = { @@ -3319,7 +3340,7 @@ return { "Execute us steadily, notch away at our despair.", }, }, - [398] = { + [402] = { id = "UniqueBow7x", name = "Replica Infractem", text = { @@ -3328,7 +3349,7 @@ return { "- Doctor Bircus", }, }, - [399] = { + [403] = { id = "UniqueBow8", name = "The Tempest", text = { @@ -3337,14 +3358,14 @@ return { "into very effective lightning rods.", }, }, - [400] = { + [404] = { id = "UniqueBow9", name = "Windripper", text = { "It hunts; as silent as falling snow, as deadly as the tempest.", }, }, - [401] = { + [405] = { id = "UniqueBow9x", name = "Replica Windripper", text = { @@ -3353,7 +3374,7 @@ return { "- Researcher Arn", }, }, - [402] = { + [406] = { id = "UniqueClaw1", name = "Essentia Sanguis", text = { @@ -3361,7 +3382,7 @@ return { "giving birth to four lightning children of hate.", }, }, - [403] = { + [407] = { id = "UniqueClaw10", name = "Allure", text = { @@ -3371,7 +3392,7 @@ return { "What drives us to leave this world for the Abyss?", }, }, - [404] = { + [408] = { id = "UniqueClaw10x", name = "Replica Allure", text = { @@ -3380,7 +3401,7 @@ return { "- Researcher Graven", }, }, - [405] = { + [409] = { id = "UniqueClaw13", name = "Rive", text = { @@ -3388,7 +3409,7 @@ return { "Terror makes you run.", }, }, - [406] = { + [410] = { id = "UniqueClaw14", name = "Touch of Anguish", text = { @@ -3397,7 +3418,7 @@ return { "a splinter of your own shattered heart.", }, }, - [407] = { + [411] = { id = "UniqueClaw15", name = "The Scourge", text = { @@ -3405,17 +3426,15 @@ return { "comes an increasing desire for it.", }, }, - [408] = { + [412] = { id = "UniqueClaw16", name = "Hand of Thought and Motion", text = { "She carries us and nurtures us", "until we must feed upon each other.", - "", - "^8This item can be transformed with a Blessing of Esh", }, }, - [409] = { + [413] = { id = "UniqueClaw17", name = "Hand of Wisdom and Action", text = { @@ -3424,7 +3443,7 @@ return { "Fragments of the whole that washes clean the skies.", }, }, - [410] = { + [414] = { id = "UniqueClaw18", name = "The Wasp Nest", text = { @@ -3432,14 +3451,14 @@ return { "you need only shake the wrong branch.", }, }, - [411] = { + [415] = { id = "UniqueClaw19", name = "Law of the Wilds", text = { "The strong survive. The strongest thrive.", }, }, - [412] = { + [416] = { id = "UniqueClaw2", name = "Mortem Morsu", text = { @@ -3448,7 +3467,7 @@ return { "Fear is the wound left untended.", }, }, - [413] = { + [417] = { id = "UniqueClaw3", name = "Bloodseeker", text = { @@ -3456,14 +3475,14 @@ return { "- Atalui, Vaal Priestess", }, }, - [414] = { + [418] = { id = "UniqueClaw4", name = "Last Resort", text = { "Desperate times demand desperate measures.", }, }, - [415] = { + [419] = { id = "UniqueClaw4x", name = "Replica Last Resort", text = { @@ -3472,7 +3491,7 @@ return { "- Researcher Olesya", }, }, - [416] = { + [420] = { id = "UniqueClaw6", name = "Al Dhih", text = { @@ -3481,7 +3500,7 @@ return { "-Maraketh Wisdom", }, }, - [417] = { + [421] = { id = "UniqueClaw7", name = "Cybil's Paw", text = { @@ -3490,14 +3509,14 @@ return { "Cut gently, lest their spirit haunt you.", }, }, - [418] = { + [422] = { id = "UniqueClaw8", name = "Ornament of the East", text = { "To the Maraketh, death is as intimate as love.", }, }, - [419] = { + [423] = { id = "UniqueClaw9", name = "Wildslash", text = { @@ -3505,42 +3524,42 @@ return { "When to swing like crazy, and when to run.", }, }, - [420] = { + [424] = { id = "UniqueCorruptedJewel1", name = "Combustibles", text = { "The hotter something burns, the less is left at the end.", }, }, - [421] = { + [425] = { id = "UniqueCorruptedJewel10", name = "Hungry Abyss", text = { "Darkness can never be sated.", }, }, - [422] = { + [426] = { id = "UniqueCorruptedJewel12", name = "Corrupted Energy", text = { "Nothing is immune to the Nightmare's twisted influence.", }, }, - [423] = { + [427] = { id = "UniqueCorruptedJewel13", name = "Self-Flagellation", text = { "Beg for forgiveness.", }, }, - [424] = { + [428] = { id = "UniqueCorruptedJewel14", name = "Blood Sacrifice", text = { "Power always comes with a price.", }, }, - [425] = { + [429] = { id = "UniqueCorruptedJewel14x", name = "Replica Blood Sacrifice", text = { @@ -3549,21 +3568,21 @@ return { "\"That is not what he meant.\" - Researcher Arn", }, }, - [426] = { + [430] = { id = "UniqueCorruptedJewel15", name = "Brittle Barrier", text = { "Walls built in a hurry fall in a hurry.", }, }, - [427] = { + [431] = { id = "UniqueCorruptedJewel16", name = "Pacifism", text = { "\"Your fear will overcome you.\"", }, }, - [428] = { + [432] = { id = "UniqueCorruptedJewel16x", name = "Replica Pacifism", text = { @@ -3573,14 +3592,14 @@ return { "- Lead Researcher Ksaret, two hours post-Incident", }, }, - [429] = { + [433] = { id = "UniqueCorruptedJewel17", name = "Fragility", text = { "\"Your flesh will fail you.\"", }, }, - [430] = { + [434] = { id = "UniqueCorruptedJewel17x", name = "Replica Fragility", text = { @@ -3589,14 +3608,14 @@ return { "- Lead Researcher Ksaret, three hours post-Incident", }, }, - [431] = { + [435] = { id = "UniqueCorruptedJewel18", name = "Powerlessness", text = { "\"Your desires will mislead you.\"", }, }, - [432] = { + [436] = { id = "UniqueCorruptedJewel18x", name = "Replica Powerlessness", text = { @@ -3606,21 +3625,21 @@ return { "- Lead Researcher Ksaret, one hour post-Incident", }, }, - [433] = { + [437] = { id = "UniqueCorruptedJewel2", name = "Weight of Sin", text = { "Ill will is the greatest of burdens.", }, }, - [434] = { + [438] = { id = "UniqueCorruptedJewel3", name = "Fevered Mind", text = { "In sickness, the insane becomes sane.", }, }, - [435] = { + [439] = { id = "UniqueCorruptedJewel4", name = "Sacrificial Harvest", text = { @@ -3629,7 +3648,7 @@ return { "make their machines run more efficiently.", }, }, - [436] = { + [440] = { id = "UniqueCorruptedJewel5", name = "Atziri's Reign", text = { @@ -3637,7 +3656,7 @@ return { "but nothing is eternal.", }, }, - [437] = { + [441] = { id = "UniqueCorruptedJewel6", name = "Vaal Sentencing", text = { @@ -3645,7 +3664,7 @@ return { "Atziri's empire ran on blood, but the blood was running dry.", }, }, - [438] = { + [442] = { id = "UniqueCorruptedJewel7", name = "Chill of Corruption", text = { @@ -3653,7 +3672,7 @@ return { "casts a shroud over Wraeclast.", }, }, - [439] = { + [443] = { id = "UniqueCorruptedJewel8", name = "Ancient Waystones", text = { @@ -3662,7 +3681,7 @@ return { "- Siosa, the Last Scholar", }, }, - [440] = { + [444] = { id = "UniqueCorruptedJewel9", name = "Mutated Growth", text = { @@ -3671,7 +3690,7 @@ return { "And changed...", }, }, - [441] = { + [445] = { id = "UniqueDagger1", name = "Divinarius", text = { @@ -3679,14 +3698,14 @@ return { "when you do it yourself.", }, }, - [442] = { + [446] = { id = "UniqueDagger10", name = "The Consuming Dark", text = { "The brightest flames cast the darkest shadows.", }, }, - [443] = { + [447] = { id = "UniqueDagger11", name = "Sanguine Gambol", text = { @@ -3696,7 +3715,7 @@ return { "So red and so sleek", }, }, - [444] = { + [448] = { id = "UniqueDagger12", name = "Bloodplay", text = { @@ -3704,7 +3723,7 @@ return { "- Coralito, Brotherhood of Silence", }, }, - [445] = { + [449] = { id = "UniqueDagger12x", name = "Replica Bloodplay", text = { @@ -3712,7 +3731,7 @@ return { "matter how slight. Even a tiny cut makes it exponentially more dangerous.\"", }, }, - [446] = { + [450] = { id = "UniqueDagger13", name = "Widowmaker", text = { @@ -3720,21 +3739,21 @@ return { "For she shall never let you go.", }, }, - [447] = { + [451] = { id = "UniqueDagger15", name = "Arakaali's Fang", text = { "All children must eat.", }, }, - [448] = { + [452] = { id = "UniqueDagger16", name = "Taproot", text = { "Some things must die so that others can live.", }, }, - [449] = { + [453] = { id = "UniqueDagger17", name = "White Wind", text = { @@ -3743,7 +3762,7 @@ return { "of the demon that flies on Winter's gales.", }, }, - [450] = { + [454] = { id = "UniqueDagger18", name = "Vulconus", text = { @@ -3753,14 +3772,14 @@ return { "with a thick, black scab.", }, }, - [451] = { + [455] = { id = "UniqueDagger19", name = "Cold Iron Point", text = { "There is nothing more brutal than a simple blade wielded with rage.", }, }, - [452] = { + [456] = { id = "UniqueDagger19x", name = "Replica Cold Iron Point", text = { @@ -3769,14 +3788,14 @@ return { "- Administrator Qotra", }, }, - [453] = { + [457] = { id = "UniqueDagger2", name = "Mightflay", text = { "A mighty beast, a lavish feast.", }, }, - [454] = { + [458] = { id = "UniqueDagger20", name = "The Hidden Blade", text = { @@ -3784,7 +3803,7 @@ return { "his strikes land long after he is gone.", }, }, - [455] = { + [459] = { id = "UniqueDagger21", name = "Goblinedge", text = { @@ -3792,7 +3811,15 @@ return { "- Bertrand the Plush", }, }, - [456] = { + [460] = { + id = "UniqueDagger22", + name = "Festering Resentment", + text = { + "That which we cannot forgive", + "harms all those we hold dear.", + }, + }, + [461] = { id = "UniqueDagger3", name = "Ungil's Gauche", text = { @@ -3800,7 +3827,7 @@ return { "and deadly in Ungil's nimble hands.", }, }, - [457] = { + [462] = { id = "UniqueDagger3x", name = "Replica Ungil's Gauche", text = { @@ -3808,7 +3835,7 @@ return { "an ideal weapon for our suppression troops and guards.\"", }, }, - [458] = { + [463] = { id = "UniqueDagger4", name = "Heartbreaker", text = { @@ -3816,7 +3843,7 @@ return { "If your mind is sharp enough.", }, }, - [459] = { + [464] = { id = "UniqueDagger4x", name = "Replica Heartbreaker", text = { @@ -3825,7 +3852,7 @@ return { "the spell, the screams, or both.\" - Researcher Olesya", }, }, - [460] = { + [465] = { id = "UniqueDagger8", name = "Bino's Kitchen Knife", text = { @@ -3833,7 +3860,7 @@ return { "that it was even edible.", }, }, - [461] = { + [466] = { id = "UniqueDagger9", name = "Mark of the Doubting Knight", text = { @@ -3842,7 +3869,7 @@ return { "And spill a thousand Sins.", }, }, - [462] = { + [467] = { id = "UniqueDexHelmet1", name = "Fairgraves' Tricorne", text = { @@ -3850,7 +3877,7 @@ return { "the seas, deep under the ground, and even beyond death.", }, }, - [463] = { + [468] = { id = "UniqueDexHelmet2", name = "Frostferno", text = { @@ -3859,7 +3886,7 @@ return { "You will be repaid.", }, }, - [464] = { + [469] = { id = "UniqueFishingRod1", name = "Song of the Sirens", text = { @@ -3867,7 +3894,7 @@ return { "But give a fish a man, and you can feed it for a month.", }, }, - [465] = { + [470] = { id = "UniqueFishingRod2", name = "Reefbane", text = { @@ -3875,7 +3902,7 @@ return { "And tore out her heart.", }, }, - [466] = { + [471] = { id = "UniqueFlask1", name = "Divination Distillate", text = { @@ -3885,7 +3912,7 @@ return { "who dream of enlightenment", }, }, - [467] = { + [472] = { id = "UniqueFlask10", name = "Coruscating Elixir", text = { @@ -3893,21 +3920,21 @@ return { "Let the pain push outwards and turn away your enemy's blows.", }, }, - [468] = { + [473] = { id = "UniqueFlask11", name = "Vessel of Vinktar", text = { "The great city of storms, washed away by Vinktar's thirst for power.", }, }, - [469] = { + [474] = { id = "UniqueFlask12", name = "Rotgut", text = { "Rancid, rotten, and wicked are those that dare to taste my serum.", }, }, - [470] = { + [475] = { id = "UniqueFlask13", name = "The Writhing Jar", text = { @@ -3916,7 +3943,7 @@ return { "- High Templar Voll", }, }, - [471] = { + [476] = { id = "UniqueFlask15", name = "The Sorrow of the Divine", text = { @@ -3924,7 +3951,7 @@ return { "God weeps.", }, }, - [472] = { + [477] = { id = "UniqueFlask15x", name = "Replica Sorrow of the Divine", text = { @@ -3932,7 +3959,7 @@ return { "Faith fuels the flesh, and the flesh fuels the fire...\"", }, }, - [473] = { + [478] = { id = "UniqueFlask16", name = "Zerphi's Last Breath", text = { @@ -3941,14 +3968,14 @@ return { "- Icius Perandus, Antiquities Collection, Item 408", }, }, - [474] = { + [479] = { id = "UniqueFlask17", name = "The Overflowing Chalice", text = { "Empty cup, full of promise.", }, }, - [475] = { + [480] = { id = "UniqueFlask18", name = "Kiara's Determination", text = { @@ -3957,7 +3984,7 @@ return { "of liquid courage.", }, }, - [476] = { + [481] = { id = "UniqueFlask19", name = "Witchfire Brew", text = { @@ -3968,7 +3995,7 @@ return { "-Vadinya, to her coven", }, }, - [477] = { + [482] = { id = "UniqueFlask19x", name = "Replica Witchfire Brew", text = { @@ -3977,7 +4004,7 @@ return { "- Researcher Graven", }, }, - [478] = { + [483] = { id = "UniqueFlask2", name = "Doedre's Elixir", text = { @@ -3985,7 +4012,7 @@ return { "In order to receive, one must give... without hesitation.", }, }, - [479] = { + [484] = { id = "UniqueFlask20", name = "Dying Sun", text = { @@ -3993,7 +4020,7 @@ return { "Whether you burn out or explode is up to you.", }, }, - [480] = { + [485] = { id = "UniqueFlask21", name = "Sin's Rebirth", text = { @@ -4001,7 +4028,7 @@ return { "The Sin of one became the Sin of many.", }, }, - [481] = { + [486] = { id = "UniqueFlask22", name = "The Wise Oak", text = { @@ -4011,7 +4038,7 @@ return { "Nature is an eternal tug of war.", }, }, - [482] = { + [487] = { id = "UniqueFlask23", name = "Coralito's Signature", text = { @@ -4020,7 +4047,7 @@ return { "- Coralito, Brotherhood of Silence", }, }, - [483] = { + [488] = { id = "UniqueFlask25", name = "Soul Catcher", text = { @@ -4029,7 +4056,7 @@ return { "^8This item can be transformed on the Altar of Sacrifice along with Vial of the Ghost", }, }, - [484] = { + [489] = { id = "UniqueFlask26", name = "Soul Ripper", text = { @@ -4037,21 +4064,21 @@ return { "- Atalui, Vaal Priestess", }, }, - [485] = { + [490] = { id = "UniqueFlask27", name = "Cinderswallow Urn", text = { "A controlled burn is sometimes necessary for new life.", }, }, - [486] = { + [491] = { id = "UniqueFlask28", name = "Bottled Faith", text = { "A tourniquet for the soul, squeezing ethereal into physical.", }, }, - [487] = { + [492] = { id = "UniqueFlask29", name = "Olroth's Resolve", text = { @@ -4061,7 +4088,7 @@ return { "he fights for you!", }, }, - [488] = { + [493] = { id = "UniqueFlask3", name = "Blood of the Karui", text = { @@ -4072,7 +4099,7 @@ return { "- Lavianga, Advisor to Kaom", }, }, - [489] = { + [494] = { id = "UniqueFlask30", name = "Starlight Chalice", text = { @@ -4080,7 +4107,7 @@ return { "to empower runes... and themselves.", }, }, - [490] = { + [495] = { id = "UniqueFlask31", name = "Elixir of the Unbroken Circle", text = { @@ -4088,7 +4115,7 @@ return { "Then, they begin again.", }, }, - [491] = { + [496] = { id = "UniqueFlask32", name = "Vorana's Preparation", text = { @@ -4096,7 +4123,7 @@ return { "thus: strike true and survive.", }, }, - [492] = { + [497] = { id = "UniqueFlask33", name = "Progenesis", text = { @@ -4105,7 +4132,7 @@ return { "they fought to the death for every last drop.", }, }, - [493] = { + [498] = { id = "UniqueFlask34", name = "Oriath's End", text = { @@ -4114,7 +4141,7 @@ return { "and all in his path were obliterated.", }, }, - [494] = { + [499] = { id = "UniqueFlask35", name = "Wine of the Prophet", text = { @@ -4123,7 +4150,16 @@ return { "- High Templar Andronicus", }, }, - [495] = { + [500] = { + id = "UniqueFlask36", + name = "Wellwater Phylactery", + text = { + "\"Let us share our thirsts. Yours, for power,", + "and mine, for death. A stable alliance,", + "so long as you never speak my name...\"", + }, + }, + [501] = { id = "UniqueFlask4", name = "Lavianga's Spirit", text = { @@ -4132,14 +4168,14 @@ return { "- Lavianga, Advisor to Kaom", }, }, - [496] = { + [502] = { id = "UniqueFlask4x", name = "Replica Lavianga's Spirit", text = { "\"An intriguing paradox.\"", }, }, - [497] = { + [503] = { id = "UniqueFlask5", name = "Atziri's Promise", text = { @@ -4147,14 +4183,14 @@ return { "- Atziri, Queen of the Vaal", }, }, - [498] = { + [504] = { id = "UniqueFlask6", name = "Forbidden Taste", text = { "Your reach exceeds your grasp.", }, }, - [499] = { + [505] = { id = "UniqueFlask7", name = "Rumi's Concoction", text = { @@ -4163,7 +4199,7 @@ return { "-Rumi of the Vaal", }, }, - [500] = { + [506] = { id = "UniqueFlask7x", name = "Replica Rumi's Concoction", text = { @@ -4171,7 +4207,7 @@ return { "- Researcher Graven", }, }, - [501] = { + [507] = { id = "UniqueFlask8", name = "Taste of Hate", text = { @@ -4180,7 +4216,7 @@ return { "A glass will still your soul.", }, }, - [502] = { + [508] = { id = "UniqueFlask9", name = "Lion's Roar", text = { @@ -4188,7 +4224,7 @@ return { "and three generous cups of Might.", }, }, - [503] = { + [509] = { id = "UniqueGlovesDemigods1", name = "Demigod's Touch", text = { @@ -4196,7 +4232,7 @@ return { "Victory is at hand.", }, }, - [504] = { + [510] = { id = "UniqueGlovesDex1", name = "Hrimburn", text = { @@ -4204,7 +4240,7 @@ return { "Their only trace is timeless pain.", }, }, - [505] = { + [511] = { id = "UniqueGlovesDex2", name = "Maligaro's Virtuosity", text = { @@ -4212,7 +4248,7 @@ return { "with great speed and terrible consequences.", }, }, - [506] = { + [512] = { id = "UniqueGlovesDex4", name = "Oskarm", text = { @@ -4222,14 +4258,14 @@ return { "to sate his hungry claw.", }, }, - [507] = { + [513] = { id = "UniqueGlovesDex5", name = "Painseeker", text = { "Lay bare paths to pain you never knew you had.", }, }, - [508] = { + [514] = { id = "UniqueGlovesDex6", name = "Great Old One's Tentacles", text = { @@ -4237,7 +4273,7 @@ return { "burrowing into organs, and exploding outwards in search of other victims.", }, }, - [509] = { + [515] = { id = "UniqueGlovesDex7", name = "Mercenary's Lot", text = { @@ -4245,7 +4281,7 @@ return { "family profession. The target changes, but the job's always the same.", }, }, - [510] = { + [516] = { id = "UniqueGlovesDexInt1", name = "Ondar's Clasp", text = { @@ -4253,7 +4289,7 @@ return { "A single knife stroke fells an empire.", }, }, - [511] = { + [517] = { id = "UniqueGlovesDexInt10", name = "Fenumus' Weave", text = { @@ -4262,7 +4298,7 @@ return { "are not just ours to bear, but ours to use against oppressors.", }, }, - [512] = { + [518] = { id = "UniqueGlovesDexInt11", name = "Architect's Hand", text = { @@ -4271,28 +4307,28 @@ return { "^8This item can be transformed on the Altar of Sacrifice along with Vial of Dominance", }, }, - [513] = { + [519] = { id = "UniqueGlovesDexInt12", name = "Slavedriver's Hand", text = { "A plan without a deadline stays a plan.", }, }, - [514] = { + [520] = { id = "UniqueGlovesDexInt13", name = "Storm's Gift", text = { "The power of lightning is a power best shared.", }, }, - [515] = { + [521] = { id = "UniqueGlovesDexInt14", name = "Aukuna's Will", text = { "The Black Sekhema's trial had only just begun.", }, }, - [516] = { + [522] = { id = "UniqueGlovesDexInt15", name = "Machina Mitts", text = { @@ -4300,14 +4336,14 @@ return { "death is but a curse, that can be given... or reversed.", }, }, - [517] = { + [523] = { id = "UniqueGlovesDexInt16", name = "Algor Mortis", text = { "Winter's white blanket swaddles all.", }, }, - [518] = { + [524] = { id = "UniqueGlovesDexInt17", name = "Abhorrent Interrogation", text = { @@ -4315,14 +4351,14 @@ return { "- Marcus, Brotherhood Liaison", }, }, - [519] = { + [525] = { id = "UniqueGlovesDexInt18", name = "Soul Ascension", text = { "Fear can be instilled by the smallest entity.", }, }, - [520] = { + [526] = { id = "UniqueGlovesDexInt19", name = "Entropic Devastation", text = { @@ -4330,14 +4366,14 @@ return { "by the shards of obliterated worlds.", }, }, - [521] = { + [527] = { id = "UniqueGlovesDexInt2", name = "Facebreaker", text = { "Fly like a Storm Crow, crush like a Rhoa", }, }, - [522] = { + [528] = { id = "UniqueGlovesDexInt20", name = "Stormseeker", text = { @@ -4346,7 +4382,16 @@ return { "Like all secrets, they, too, can be stolen.", }, }, - [523] = { + [529] = { + id = "UniqueGlovesDexInt22", + name = "Hand of the Lords", + text = { + "We moved to be close, yet grew no closer, since the", + "Breaking of the Sun. We clung to the feet of the Lords,", + "wailing, weeping, begging for unity. Now, they heed.", + }, + }, + [530] = { id = "UniqueGlovesDexInt3", name = "Thunderfist", text = { @@ -4355,7 +4400,7 @@ return { "Into the hearts of Man", }, }, - [524] = { + [531] = { id = "UniqueGlovesDexInt5", name = "Snakebite", text = { @@ -4366,7 +4411,7 @@ return { "- Deshret, The Red Sekhema", }, }, - [525] = { + [532] = { id = "UniqueGlovesDexInt6", name = "Shadows and Dust", text = { @@ -4374,7 +4419,7 @@ return { "and death in the wind?", }, }, - [526] = { + [533] = { id = "UniqueGlovesDexInt7", name = "The Embalmer", text = { @@ -4383,14 +4428,14 @@ return { "we must begin the process before expiry.\"", }, }, - [527] = { + [534] = { id = "UniqueGlovesDexInt8", name = "Malachai's Mark", text = { "What man does not wish for immortality?", }, }, - [528] = { + [535] = { id = "UniqueGlovesDexInt9", name = "Blasphemer's Grasp", text = { @@ -4398,7 +4443,7 @@ return { "many sought power in the unnatural.", }, }, - [529] = { + [536] = { id = "UniqueGlovesExpedition1", name = "Nightgrip", text = { @@ -4406,7 +4451,7 @@ return { "themselves changing, only subtly at first...", }, }, - [530] = { + [537] = { id = "UniqueGlovesExpedition2", name = "Medved's Challenge", text = { @@ -4415,14 +4460,14 @@ return { "None could match his might.", }, }, - [531] = { + [538] = { id = "UniqueGlovesInt1", name = "Sadima's Touch", text = { "Wealth unspent is wealth wasted.", }, }, - [532] = { + [539] = { id = "UniqueGlovesInt10", name = "Demon Stitcher", text = { @@ -4432,7 +4477,7 @@ return { "The first Vaal.", }, }, - [533] = { + [540] = { id = "UniqueGlovesInt11", name = "Black Zenith", text = { @@ -4440,7 +4485,7 @@ return { "only to watch in horror as it ruptured and shattered under a tide of limbs.", }, }, - [534] = { + [541] = { id = "UniqueGlovesInt2", name = "Doedre's Malevolence", text = { @@ -4448,14 +4493,14 @@ return { "she surpassed her master in pure malevolence.", }, }, - [535] = { + [542] = { id = "UniqueGlovesInt3", name = "Asenath's Gentle Touch", text = { "Cool the head and cool the blade.", }, }, - [536] = { + [543] = { id = "UniqueGlovesInt4", name = "Kalisa's Grace", text = { @@ -4463,7 +4508,7 @@ return { "- Kalisa, Prima Donna of Sarn", }, }, - [537] = { + [544] = { id = "UniqueGlovesInt4x", name = "Replica Kalisa's Grace", text = { @@ -4471,14 +4516,14 @@ return { "A single attempt of a spell with this unexpected power destroyed an entire floor.\"", }, }, - [538] = { + [545] = { id = "UniqueGlovesInt6", name = "Voidbringer", text = { "Absolute corruption empowers absolutely.", }, }, - [539] = { + [546] = { id = "UniqueGlovesInt7", name = "Grip of the Council", text = { @@ -4486,7 +4531,7 @@ return { "Death only brings you closer.", }, }, - [540] = { + [547] = { id = "UniqueGlovesInt7x", name = "Replica Grip of the Council", text = { @@ -4495,7 +4540,7 @@ return { "- Researcher Arn", }, }, - [541] = { + [548] = { id = "UniqueGlovesInt8", name = "Allelopathy", text = { @@ -4507,7 +4552,7 @@ return { "- Cadiro Perandus", }, }, - [542] = { + [549] = { id = "UniqueGlovesInt8x", name = "Replica Allelopathy", text = { @@ -4515,7 +4560,7 @@ return { "chaos and cold. Perhaps we should consult an occultist.\"", }, }, - [543] = { + [550] = { id = "UniqueGlovesInt9", name = "Vixen's Entrapment", text = { @@ -4523,7 +4568,7 @@ return { "One night I wish I'd forget.\"", }, }, - [544] = { + [551] = { id = "UniqueGlovesStr1", name = "Lochtonial Caress", text = { @@ -4531,7 +4576,7 @@ return { "Surrender to me, and I will grant you everything.", }, }, - [545] = { + [552] = { id = "UniqueGlovesStr10", name = "Hateforge", text = { @@ -4539,7 +4584,7 @@ return { "developed a blood fever born of corruption.", }, }, - [546] = { + [553] = { id = "UniqueGlovesStr11", name = "Ceaseless Feast", text = { @@ -4547,14 +4592,14 @@ return { "for any fleeting pleasure which might dull the pain.", }, }, - [547] = { + [554] = { id = "UniqueGlovesStr12", name = "Kaom's Spirit", text = { "Who can tell when whispers are truly from a god?", }, }, - [548] = { + [555] = { id = "UniqueGlovesStr13", name = "The Celestial Brace", text = { @@ -4562,7 +4607,7 @@ return { "your courage will fail long before it does.", }, }, - [549] = { + [556] = { id = "UniqueGlovesStr14", name = "Admiral's Arrogance", text = { @@ -4570,7 +4615,16 @@ return { "to produce Admirals with, shall we say... quick tempers.\"", }, }, - [550] = { + [557] = { + id = "UniqueGlovesStr15", + name = "The Caged Mammoth", + text = { + "The Cyclops of Trarthus became the star", + "of the Oriath Arena, but he was merely", + "biding his time, waiting for his chance...", + }, + }, + [558] = { id = "UniqueGlovesStr2", name = "Meginord's Vise", text = { @@ -4579,7 +4633,7 @@ return { "live with honour.", }, }, - [551] = { + [559] = { id = "UniqueGlovesStr3", name = "Atziri's Acuity", text = { @@ -4588,7 +4642,7 @@ return { "- Atziri, Queen of the Vaal", }, }, - [552] = { + [560] = { id = "UniqueGlovesStr3x", name = "Replica Atziri's Acuity", text = { @@ -4596,7 +4650,7 @@ return { "and he has not stopped screaming for months...\"", }, }, - [553] = { + [561] = { id = "UniqueGlovesStr4", name = "Doryani's Fist", text = { @@ -4605,7 +4659,7 @@ return { "reduced it to ruins and bones.", }, }, - [554] = { + [562] = { id = "UniqueGlovesStr5", name = "Empire's Grasp", text = { @@ -4614,7 +4668,7 @@ return { "- Emperor Chitus", }, }, - [555] = { + [563] = { id = "UniqueGlovesStr6", name = "Winds of Change", text = { @@ -4623,7 +4677,7 @@ return { "a captain sailing his own ship into rocks.", }, }, - [556] = { + [564] = { id = "UniqueGlovesStr7", name = "Veruso's Battering Rams", text = { @@ -4631,7 +4685,7 @@ return { "then the constructs guarding the tomb on the other side.", }, }, - [557] = { + [565] = { id = "UniqueGlovesStr8", name = "Giantsbane", text = { @@ -4639,7 +4693,7 @@ return { "theirs were just bigger.", }, }, - [558] = { + [566] = { id = "UniqueGlovesStr9", name = "Craiceann's Pincers", text = { @@ -4648,7 +4702,7 @@ return { "and choose our moments to move wisely.", }, }, - [559] = { + [567] = { id = "UniqueGlovesStrDex1", name = "Slitherpinch", text = { @@ -4656,7 +4710,7 @@ return { "that slips about the neck, so tight.", }, }, - [560] = { + [568] = { id = "UniqueGlovesStrDex10", name = "Farrul's Pounce", text = { @@ -4666,14 +4720,14 @@ return { "that the largest prey can still be whittled away.", }, }, - [561] = { + [569] = { id = "UniqueGlovesStrDex12", name = "Worldcarver", text = { "Is it better to find new lands - or to create them?", }, }, - [562] = { + [570] = { id = "UniqueGlovesStrDex13", name = "Breathstealer", text = { @@ -4682,7 +4736,7 @@ return { "^8This item can be anointed by Cassia", }, }, - [563] = { + [571] = { id = "UniqueGlovesStrDex14", name = "Gravebind", text = { @@ -4691,7 +4745,7 @@ return { "You'll still know the truth.", }, }, - [564] = { + [572] = { id = "UniqueGlovesStrDex15", name = "Tanu Ahi", text = { @@ -4699,14 +4753,14 @@ return { "slashing and hewing with utmost abandon.", }, }, - [565] = { + [573] = { id = "UniqueGlovesStrDex2", name = "Aurseize", text = { "Wealth is not to be borne lightly.", }, }, - [566] = { + [574] = { id = "UniqueGlovesStrDex4", name = "Vaal Caress", text = { @@ -4715,7 +4769,7 @@ return { "- Doryani, First Seer to the Queen", }, }, - [567] = { + [575] = { id = "UniqueGlovesStrDex5", name = "Flesh and Spirit", text = { @@ -4723,7 +4777,7 @@ return { "for a sliver of life?", }, }, - [568] = { + [576] = { id = "UniqueGlovesStrDex6", name = "Surgebinders", text = { @@ -4733,7 +4787,7 @@ return { "The fire rises!", }, }, - [569] = { + [577] = { id = "UniqueGlovesStrDex7", name = "Wyrmsign", text = { @@ -4743,7 +4797,7 @@ return { "can be measured in seconds.", }, }, - [570] = { + [578] = { id = "UniqueGlovesStrDex8", name = "Haemophilia", text = { @@ -4752,28 +4806,28 @@ return { "- Coralito, Brotherhood of Silence", }, }, - [571] = { + [579] = { id = "UniqueGlovesStrInt1", name = "Shackles of the Wretched", text = { "Captivity breeds creativity.", }, }, - [572] = { + [580] = { id = "UniqueGlovesStrInt10", name = "Triad Grip", text = { "The secret of the elements lies within a square triangle.", }, }, - [573] = { + [581] = { id = "UniqueGlovesStrInt11", name = "Hands of the High Templar", text = { "The laws of the faith do not apply to its leader.", }, }, - [574] = { + [582] = { id = "UniqueGlovesStrInt12", name = "Hand of the Fervent", text = { @@ -4781,7 +4835,7 @@ return { "Let the righteous become the Hand of God.", }, }, - [575] = { + [583] = { id = "UniqueGlovesStrInt13", name = "The Hand of Phrecia", text = { @@ -4789,7 +4843,7 @@ return { "we must fight side by side as brothers.", }, }, - [576] = { + [584] = { id = "UniqueGlovesStrInt2", name = "Null and Void", text = { @@ -4797,7 +4851,7 @@ return { "in an unclean world?", }, }, - [577] = { + [585] = { id = "UniqueGlovesStrInt3", name = "Southbound", text = { @@ -4805,7 +4859,7 @@ return { "Below the snow, adrift wanderers sleep.", }, }, - [578] = { + [586] = { id = "UniqueGlovesStrInt4", name = "Repentance", text = { @@ -4816,7 +4870,7 @@ return { "- Anonymous carving, Axiom Prison.", }, }, - [579] = { + [587] = { id = "UniqueGlovesStrInt5", name = "Shaper's Touch", text = { @@ -4826,7 +4880,7 @@ return { "Nothing.", }, }, - [580] = { + [588] = { id = "UniqueGlovesStrInt6x", name = "Replica Volkuur's Guidance", text = { @@ -4834,7 +4888,7 @@ return { "are due to some unknown polarity we have yet to discover.\"", }, }, - [581] = { + [589] = { id = "UniqueGlovesStrInt7", name = "Saqawal's Winds", text = { @@ -4843,14 +4897,14 @@ return { "as he brought the flames to a standstill.", }, }, - [582] = { + [590] = { id = "UniqueGlovesStrInt8", name = "Command of the Pit", text = { "We serve only the Night.", }, }, - [583] = { + [591] = { id = "UniqueGlovesStrInt9", name = "Offering to the Serpent", text = { @@ -4859,28 +4913,28 @@ return { "- Vaal Myth of the Third Snake", }, }, - [584] = { + [592] = { id = "UniqueHelmStrInt7", name = "Voll's Vision", text = { "Righteous men seek virtue like tame pups seek praise.", }, }, - [585] = { + [593] = { id = "UniqueHelmStrInt8", name = "Malachai's Vision", text = { "Wicked men chase power like stray dogs chase a rat.", }, }, - [586] = { + [594] = { id = "UniqueHelmetDex10", name = "Assailum", text = { "A moment of calm before the battle can end the war.", }, }, - [587] = { + [595] = { id = "UniqueHelmetDex11", name = "Elevore", text = { @@ -4888,7 +4942,7 @@ return { "by a ravenous hunger for all things mystical.", }, }, - [588] = { + [596] = { id = "UniqueHelmetDex2x", name = "Replica Heatshiver", text = { @@ -4898,14 +4952,14 @@ return { "- Researcher Graven, infirmary report", }, }, - [589] = { + [597] = { id = "UniqueHelmetDex3", name = "Goldrim", text = { "No metal slips as easily through the fingers as gold.", }, }, - [590] = { + [598] = { id = "UniqueHelmetDex4", name = "Starkonja's Head", text = { @@ -4913,7 +4967,7 @@ return { "but merely a long sleep made eternal.", }, }, - [591] = { + [599] = { id = "UniqueHelmetDex5", name = "Alpha's Howl", text = { @@ -4922,7 +4976,7 @@ return { "With the blood of the weak", }, }, - [592] = { + [600] = { id = "UniqueHelmetDex5x", name = "Replica Alpha's Howl", text = { @@ -4930,7 +4984,7 @@ return { "failed. Suppression troop six, the 'Furious Flagellants,' have been sent to intervene.\"", }, }, - [593] = { + [601] = { id = "UniqueHelmetDex6", name = "Rat's Nest", text = { @@ -4941,14 +4995,14 @@ return { "Was naught but a vermin-filled nest!", }, }, - [594] = { + [602] = { id = "UniqueHelmetDex7", name = "Obscurantis", text = { "If you know where to strike, you need only strike once.", }, }, - [595] = { + [603] = { id = "UniqueHelmetDex8", name = "Saqawal's Flock", text = { @@ -4957,7 +5011,7 @@ return { "not division and greed, is what will carry us upwards.", }, }, - [596] = { + [604] = { id = "UniqueHelmetDex9", name = "Cowl of the Cryophile", text = { @@ -4966,7 +5020,7 @@ return { "^8This item can be anointed by Cassia", }, }, - [597] = { + [605] = { id = "UniqueHelmetDexInt1", name = "Malachai's Awakening", text = { @@ -4974,7 +5028,7 @@ return { "that animated the first Eternal Guardian.", }, }, - [598] = { + [606] = { id = "UniqueHelmetDexInt10", name = "Farrul's Bite", text = { @@ -4983,7 +5037,7 @@ return { "and where no weakness can be found, to create one.", }, }, - [599] = { + [607] = { id = "UniqueHelmetDexInt11", name = "Curtain Call", text = { @@ -4993,7 +5047,7 @@ return { "Before we all must die.", }, }, - [600] = { + [608] = { id = "UniqueHelmetDexInt12", name = "Fractal Thoughts", text = { @@ -5002,7 +5056,7 @@ return { "- Tenth Song of the Islands", }, }, - [601] = { + [609] = { id = "UniqueHelmetDexInt13", name = "Eye of Malice", text = { @@ -5010,20 +5064,20 @@ return { "peers a visitor from a realm of ill intent...", }, }, - [602] = { + [610] = { id = "UniqueHelmetDexInt14", name = "The Tempest's Liberation", text = { }, }, - [603] = { + [611] = { id = "UniqueHelmetDexInt15", name = "Willclash", text = { "Obtaining information depends upon pretending one already has it.", }, }, - [604] = { + [612] = { id = "UniqueHelmetDexInt16", name = "Glimpse of Chaos", text = { @@ -5031,21 +5085,21 @@ return { "only under the blessed veil of ignorance.", }, }, - [605] = { + [613] = { id = "UniqueHelmetDexInt17", name = "Akoya's Gaze", text = { "Fight in the traditional Way, or not at all!", }, }, - [606] = { + [614] = { id = "UniqueHelmetDexInt2", name = "Leer Cast", text = { "For none of us are as cruel as all of us.", }, }, - [607] = { + [615] = { id = "UniqueHelmetDexInt2x", name = "Replica Leer Cast", text = { @@ -5053,7 +5107,7 @@ return { "common with Thought Extractor technology.\"", }, }, - [608] = { + [616] = { id = "UniqueHelmetDexInt3", name = "The Gull", text = { @@ -5064,7 +5118,7 @@ return { "- Lavianga, Advisor to Kaom", }, }, - [609] = { + [617] = { id = "UniqueHelmetDexInt4", name = "The Three Dragons", text = { @@ -5075,7 +5129,7 @@ return { "- From 'The Three Dragons' by Victario of Sarn", }, }, - [610] = { + [618] = { id = "UniqueHelmetDexInt5", name = "The Vertex", text = { @@ -5083,7 +5137,7 @@ return { "- Atziri, Queen of the Vaal", }, }, - [611] = { + [619] = { id = "UniqueHelmetDexInt6", name = "Crown of the Pale King", text = { @@ -5093,7 +5147,7 @@ return { "feed on your pain.", }, }, - [612] = { + [620] = { id = "UniqueHelmetDexInt7", name = "Heretic's Veil", text = { @@ -5103,13 +5157,13 @@ return { "Carry your blade into their hearts.", }, }, - [613] = { + [621] = { id = "UniqueHelmetDexInt8", name = "The Tempest's Binding", text = { }, }, - [614] = { + [622] = { id = "UniqueHelmetDexInt9", name = "Gorgon's Gaze", text = { @@ -5117,14 +5171,14 @@ return { "and broke when they hit the ground.", }, }, - [615] = { + [623] = { id = "UniqueHelmetExpedition1", name = "Faithguard", text = { "The priests of the Kalguur worshipped knowledge, not gods.", }, }, - [616] = { + [624] = { id = "UniqueHelmetExpedition2", name = "Cadigan's Crown", text = { @@ -5132,7 +5186,7 @@ return { "through the iron might of artifice.", }, }, - [617] = { + [625] = { id = "UniqueHelmetInt10", name = "Ylfeban's Trickery", text = { @@ -5141,7 +5195,7 @@ return { "with an unpredictable sense of humour.", }, }, - [618] = { + [626] = { id = "UniqueHelmetInt11", name = "Mind of the Council", text = { @@ -5149,7 +5203,7 @@ return { "We know all that you think.", }, }, - [619] = { + [627] = { id = "UniqueHelmetInt12", name = "Eber's Unification", text = { @@ -5159,7 +5213,7 @@ return { "and inexorably we inch towards oneness.", }, }, - [620] = { + [628] = { id = "UniqueHelmetInt13", name = "Wraithlord", text = { @@ -5167,7 +5221,7 @@ return { "and each one succumbed to it.", }, }, - [621] = { + [629] = { id = "UniqueHelmetInt14", name = "Indigon", text = { @@ -5175,7 +5229,7 @@ return { "the mind's limits end.", }, }, - [622] = { + [630] = { id = "UniqueHelmetInt15", name = "Mark of the Red Covenant", text = { @@ -5183,7 +5237,7 @@ return { "who bask in the blood of the many.", }, }, - [623] = { + [631] = { id = "UniqueHelmetInt16", name = "Fenumus' Toxins", text = { @@ -5193,7 +5247,7 @@ return { "and used her enemies to strengthen her many children.", }, }, - [624] = { + [632] = { id = "UniqueHelmetInt17", name = "Hale Negator", text = { @@ -5201,35 +5255,35 @@ return { "Feel the doom of dying souls.\"", }, }, - [625] = { + [633] = { id = "UniqueHelmetInt19a", name = "Flamesight", text = { "See creation as it was, aflame and frantic.", }, }, - [626] = { + [634] = { id = "UniqueHelmetInt19b", name = "Galesight", text = { "See creation as it will be, frozen and silent.", }, }, - [627] = { + [635] = { id = "UniqueHelmetInt19c", name = "Thundersight", text = { "See creation as it is, energetic and storming.", }, }, - [628] = { + [636] = { id = "UniqueHelmetInt20", name = "The Devouring Diadem", text = { "The spirit hungers for the flesh.", }, }, - [629] = { + [637] = { id = "UniqueHelmetInt21", name = "Maw of Conquest", text = { @@ -5239,14 +5293,14 @@ return { "A Leader. A Conquerer. A Viper.", }, }, - [630] = { + [638] = { id = "UniqueHelmetInt22", name = "Wreath of Phrecia", text = { "The Light drove the darkness from our lands and from our hearts.", }, }, - [631] = { + [639] = { id = "UniqueHelmetInt23", name = "Cowl of the Ceraunophile", text = { @@ -5255,14 +5309,14 @@ return { "^8This item can be anointed by Cassia", }, }, - [632] = { + [640] = { id = "UniqueHelmetInt24", name = "Plume of Pursuit", text = { "A dance as old as time.", }, }, - [633] = { + [641] = { id = "UniqueHelmetInt25", name = "Sudden Dawn", text = { @@ -5270,7 +5324,7 @@ return { "We sought the shadows, but none remained.", }, }, - [634] = { + [642] = { id = "UniqueHelmetInt26", name = "Wilma's Requital", text = { @@ -5281,14 +5335,14 @@ return { "-Franklin", }, }, - [635] = { + [643] = { id = "UniqueHelmetInt27", name = "Sandstorm Visage", text = { "A fell wind brings death.", }, }, - [636] = { + [644] = { id = "UniqueHelmetInt28", name = "The Dark Monarch", text = { @@ -5297,14 +5351,14 @@ return { "- Saresh, last words, to Sekhema Orbala", }, }, - [637] = { + [645] = { id = "UniqueHelmetInt4", name = "Rime Gaze", text = { "The malice in her gaze froze blood and shattered bone.", }, }, - [638] = { + [646] = { id = "UniqueHelmetInt7", name = "Crown of Eyes", text = { @@ -5314,7 +5368,7 @@ return { "your mind is destroyed.", }, }, - [639] = { + [647] = { id = "UniqueHelmetInt8", name = "Scold's Bridle", text = { @@ -5323,7 +5377,7 @@ return { "- Shavronne of Umbra", }, }, - [640] = { + [648] = { id = "UniqueHelmetInt9", name = "Doedre's Scorn", text = { @@ -5331,7 +5385,7 @@ return { "A scar of the mind you'll never remember.", }, }, - [641] = { + [649] = { id = "UniqueHelmetStr1", name = "Ezomyte Hold", text = { @@ -5339,7 +5393,7 @@ return { "of glory, an eternity of death.", }, }, - [642] = { + [650] = { id = "UniqueHelmetStr10", name = "Thrillsteel", text = { @@ -5347,14 +5401,14 @@ return { "moments of blood and battle, we truly live.", }, }, - [643] = { + [651] = { id = "UniqueHelmetStr11", name = "Blood Price", text = { "An eye for an eye makes the whole world dead.", }, }, - [644] = { + [652] = { id = "UniqueHelmetStr12", name = "Kaom's Command", text = { @@ -5362,7 +5416,7 @@ return { "There would be no rest or honours for the wicked.", }, }, - [645] = { + [653] = { id = "UniqueHelmetStr3", name = "Abyssus", text = { @@ -5370,7 +5424,7 @@ return { "what is left to fear?", }, }, - [646] = { + [654] = { id = "UniqueHelmetStr3x", name = "Replica Abyssus", text = { @@ -5378,24 +5432,22 @@ return { "the first researcher to don it burst into flames when he walked into sunlight...\"", }, }, - [647] = { + [655] = { id = "UniqueHelmetStr4", name = "The Formless Flame", text = { "Our skin turns to ash", "and we are swallowed by his brilliant red light.", - "", - "^8This item can be transformed with a Blessing of Xoph", }, }, - [648] = { + [656] = { id = "UniqueHelmetStr5", name = "The Formless Inferno", text = { "He burns us to keep us from harm.", }, }, - [649] = { + [657] = { id = "UniqueHelmetStr6", name = "The Baron", text = { @@ -5403,7 +5455,7 @@ return { "practice the dark arts. Some of us are just more discreet.\"", }, }, - [650] = { + [658] = { id = "UniqueHelmetStr7", name = "Cowl of the Thermophile", text = { @@ -5412,14 +5464,14 @@ return { "^8This item can be anointed by Cassia", }, }, - [651] = { + [659] = { id = "UniqueHelmetStr8", name = "Usurper's Penance", text = { "Bloodlust begets suffering.", }, }, - [652] = { + [660] = { id = "UniqueHelmetStr9", name = "Echoes of Creation", text = { @@ -5428,7 +5480,7 @@ return { "Inflicting pain beyond measure", }, }, - [653] = { + [661] = { id = "UniqueHelmetStrDex10", name = "El'Abin's Visage", text = { @@ -5438,7 +5490,7 @@ return { "- El'Abin, Bloodeater", }, }, - [654] = { + [662] = { id = "UniqueHelmetStrDex11", name = "The Trickster's Smile", text = { @@ -5446,7 +5498,7 @@ return { "He merely grinned... and the foolish warrior charged.", }, }, - [655] = { + [663] = { id = "UniqueHelmetStrDex12", name = "The Devourer of Minds", text = { @@ -5454,7 +5506,7 @@ return { "but hollow husks filled with virulent void...", }, }, - [656] = { + [664] = { id = "UniqueHelmetStrDex2", name = "Devoto's Devotion", text = { @@ -5462,14 +5514,14 @@ return { "when borne on wings of divine providence.", }, }, - [657] = { + [665] = { id = "UniqueHelmetStrDex3", name = "Deidbellow", text = { "May you never hear it toll.", }, }, - [658] = { + [666] = { id = "UniqueHelmetStrDex4", name = "The Bringer of Rain", text = { @@ -5477,7 +5529,7 @@ return { "\"Sacred ground, watered with tears of blood!\"", }, }, - [659] = { + [667] = { id = "UniqueHelmetStrDex5", name = "Skullhead", text = { @@ -5485,7 +5537,7 @@ return { "Yet it was all the Iron King needed.", }, }, - [660] = { + [668] = { id = "UniqueHelmetStrDex6", name = "Black Sun Crest", text = { @@ -5493,14 +5545,14 @@ return { "are the ones who dwell in total darkness.", }, }, - [661] = { + [669] = { id = "UniqueHelmetStrDex8", name = "Crest of Desire", text = { "Expand one single ambition to crystal clarity... and beyond.", }, }, - [662] = { + [670] = { id = "UniqueHelmetStrDex9", name = "The Fledgling", text = { @@ -5508,7 +5560,7 @@ return { "must be preceded by ten thousand practice shots.", }, }, - [663] = { + [671] = { id = "UniqueHelmetStrInt1", name = "Honourhome", text = { @@ -5517,7 +5569,7 @@ return { "- Malachai the Soulless", }, }, - [664] = { + [672] = { id = "UniqueHelmetStrInt10", name = "Memory Vault", text = { @@ -5525,7 +5577,7 @@ return { "Let no one cross.", }, }, - [665] = { + [673] = { id = "UniqueHelmetStrInt12", name = "Craiceann's Chitin", text = { @@ -5534,7 +5586,7 @@ return { "that we should seek no shelter but ourselves.", }, }, - [666] = { + [674] = { id = "UniqueHelmetStrInt13", name = "Mask of the Spirit Drinker", text = { @@ -5544,7 +5596,7 @@ return { "^8This item can be transformed on the Altar of Sacrifice along with Vial of Summoning", }, }, - [667] = { + [675] = { id = "UniqueHelmetStrInt14", name = "Mask of the Stitched Demon", text = { @@ -5553,7 +5605,7 @@ return { "It is our duty to return to the gods what was once theirs.", }, }, - [668] = { + [676] = { id = "UniqueHelmetStrInt15", name = "Crown of the Tyrant", text = { @@ -5562,28 +5614,28 @@ return { "If it's the former, they will tear you into pieces like rabid dogs.", }, }, - [669] = { + [677] = { id = "UniqueHelmetStrInt16", name = "Mask of the Tribunal", text = { "The judge determines worthiness by comparison to the paragon: himself.", }, }, - [670] = { + [678] = { id = "UniqueHelmetStrInt17", name = "Crown of the Inward Eye", text = { "Divinity is not the only path to enlightenment.", }, }, - [671] = { + [679] = { id = "UniqueHelmetStrInt18", name = "Forbidden Shako", text = { "The Azmeri must never touch the Tears of Maji, lest Viridi weep.", }, }, - [672] = { + [680] = { id = "UniqueHelmetStrInt18x", name = "Replica Forbidden Shako", text = { @@ -5592,7 +5644,7 @@ return { "for the rest of my life.\" - Researcher Graven", }, }, - [673] = { + [681] = { id = "UniqueHelmetStrInt19", name = "Maw of Mischief", text = { @@ -5601,7 +5653,7 @@ return { "is as thin as a whisper.", }, }, - [674] = { + [682] = { id = "UniqueHelmetStrInt2", name = "Geofri's Legacy", text = { @@ -5609,7 +5661,7 @@ return { "Not so, the battle for survival.", }, }, - [675] = { + [683] = { id = "UniqueHelmetStrInt20", name = "Viridi's Veil", text = { @@ -5618,7 +5670,7 @@ return { "- Azmerian Creation Myth", }, }, - [676] = { + [684] = { id = "UniqueHelmetStrInt21", name = "Ancient Skull", text = { @@ -5626,7 +5678,7 @@ return { "of the stars to return and swallow the world.", }, }, - [677] = { + [685] = { id = "UniqueHelmetStrInt22", name = "Ravenous Passion", text = { @@ -5634,14 +5686,32 @@ return { "consume all that you have... and more.", }, }, - [678] = { + [686] = { + id = "UniqueHelmetStrInt24", + name = "Refuge in Isolation", + text = { + "The pain of solitude can be endured, but", + "the pain of heartbreak might just destroy us.", + }, + }, + [687] = { + id = "UniqueHelmetStrInt25", + name = "The Hallowed Monarch", + text = { + "\"I don't judge who you are, Saresh. I judge what you do. True leadership", + "comes from fighting alongside those you command, from elevating them,", + "and sharing the glory of victory. This, you will never understand.\"", + "- Sekhema Orbala, to be crowned Garukhan", + }, + }, + [688] = { id = "UniqueHelmetStrInt3", name = "Mindspiral", text = { "Where top is bottom and weak is strong.", }, }, - [679] = { + [689] = { id = "UniqueHelmetStrInt4", name = "Veil of the Night", text = { @@ -5651,7 +5721,7 @@ return { "And bloom steel flowers of victory.", }, }, - [680] = { + [690] = { id = "UniqueHelmetStrInt4x", name = "Replica Veil of the Night", text = { @@ -5659,14 +5729,14 @@ return { "entirely. The visions it shows the wearer... are beyond mortal endurance...\"", }, }, - [681] = { + [691] = { id = "UniqueHelmetStrInt5", name = "The Broken Crown", text = { "Every rule has an exception.", }, }, - [682] = { + [692] = { id = "UniqueHelmetStrInt6", name = "Kitava's Thirst", text = { @@ -5676,7 +5746,7 @@ return { "and Kitava swallowed the entire lake, fish and all, with a single gulp.", }, }, - [683] = { + [693] = { id = "UniqueHelmetStrInt7", name = "Speaker's Wreath", text = { @@ -5685,7 +5755,7 @@ return { "can take you to the edge of the world.", }, }, - [684] = { + [694] = { id = "UniqueHelmetStrInt8", name = "The Brine Crown", text = { @@ -5694,7 +5764,7 @@ return { "not through force, but patience.", }, }, - [685] = { + [695] = { id = "UniqueHelmetStrInt9", name = "Ahn's Contempt", text = { @@ -5703,7 +5773,7 @@ return { "- Icius Perandus, Antiquities Collection, Item 48", }, }, - [686] = { + [696] = { id = "UniqueHelmetWreath1", name = "Demigod's Triumph", text = { @@ -5711,7 +5781,7 @@ return { "no master other than your own ambition.", }, }, - [687] = { + [697] = { id = "UniqueIntHelmet1", name = "Martyr's Crown", text = { @@ -5719,7 +5789,7 @@ return { "The spikes point out and in, you know.", }, }, - [688] = { + [698] = { id = "UniqueIntHelmet2", name = "Asenath's Chant", text = { @@ -5727,7 +5797,7 @@ return { "as the fingers that drew her bowstring.", }, }, - [689] = { + [699] = { id = "UniqueIntHelmet3", name = "Chitus' Apex", text = { @@ -5736,7 +5806,7 @@ return { "- Emperor Chitus", }, }, - [690] = { + [700] = { id = "UniqueJewel1", name = "To Dust", text = { @@ -5744,14 +5814,14 @@ return { "It just comes for some much sooner.", }, }, - [691] = { + [701] = { id = "UniqueJewel10", name = "Survival Secrets", text = { "Nature provides its own solutions.", }, }, - [692] = { + [702] = { id = "UniqueJewel100", name = "Ring of Blades", text = { @@ -5759,7 +5829,7 @@ return { "his thoughts remained in the one place he called his own: The Grand Arena.", }, }, - [693] = { + [703] = { id = "UniqueJewel102", name = "Inevitability", text = { @@ -5769,7 +5839,7 @@ return { "None could stop it.", }, }, - [694] = { + [704] = { id = "UniqueJewel103", name = "Winter Burial", text = { @@ -5779,7 +5849,7 @@ return { "that the elite were all too happy to sustain.", }, }, - [695] = { + [705] = { id = "UniqueJewel104", name = "Spreading Rot", text = { @@ -5787,7 +5857,7 @@ return { "The dead lingered, and the living began to rot.", }, }, - [696] = { + [706] = { id = "UniqueJewel105", name = "Violent Dead", text = { @@ -5795,7 +5865,7 @@ return { "- Kadavrus, Surgeon to the Umbra", }, }, - [697] = { + [707] = { id = "UniqueJewel106", name = "Hazardous Research", text = { @@ -5803,7 +5873,7 @@ return { "The simple passage of energy from one to another could result in profound power, or rapid death.", }, }, - [698] = { + [708] = { id = "UniqueJewel107", name = "From Dust", text = { @@ -5813,7 +5883,7 @@ return { "and in this way the crematorium guaranteed it would have many customers.", }, }, - [699] = { + [709] = { id = "UniqueJewel11", name = "Fertile Mind", text = { @@ -5824,7 +5894,7 @@ return { "- Maraketh Proverb", }, }, - [700] = { + [710] = { id = "UniqueJewel110", name = "The Long Winter", text = { @@ -5834,7 +5904,7 @@ return { "that lay dormant deep beneath the earth.", }, }, - [701] = { + [711] = { id = "UniqueJewel111", name = "Pure Talent", text = { @@ -5842,7 +5912,7 @@ return { "The talented know who to learn from.", }, }, - [702] = { + [712] = { id = "UniqueJewel111x", name = "Replica Pure Talent", text = { @@ -5850,21 +5920,21 @@ return { "Was it worth the expense? Only time will tell.\"", }, }, - [703] = { + [713] = { id = "UniqueJewel112", name = "Might of the Meek", text = { "Enough mice can kill a wolf.", }, }, - [704] = { + [714] = { id = "UniqueJewel113", name = "The Golden Rule", text = { "Hurt as you would be hurt.", }, }, - [705] = { + [715] = { id = "UniqueJewel114", name = "Soul's Wick", text = { @@ -5874,7 +5944,7 @@ return { "Their light is fleeting, as a dream...", }, }, - [706] = { + [716] = { id = "UniqueJewel115", name = "Watcher's Eye", text = { @@ -5883,7 +5953,7 @@ return { "and one by one, they became a part of it.", }, }, - [707] = { + [717] = { id = "UniqueJewel116", name = "Tempered Flesh", text = { @@ -5892,7 +5962,7 @@ return { "^8This item can be transformed on the Altar of Sacrifice along with Vial of Transcendence", }, }, - [708] = { + [718] = { id = "UniqueJewel117", name = "Tempered Spirit", text = { @@ -5901,7 +5971,7 @@ return { "^8This item can be transformed on the Altar of Sacrifice along with Vial of Transcendence", }, }, - [709] = { + [719] = { id = "UniqueJewel118", name = "Tempered Mind", text = { @@ -5910,7 +5980,7 @@ return { "^8This item can be transformed on the Altar of Sacrifice along with Vial of Transcendence", }, }, - [710] = { + [720] = { id = "UniqueJewel119", name = "Transcendent Flesh", text = { @@ -5918,7 +5988,7 @@ return { "as what is done to us.", }, }, - [711] = { + [721] = { id = "UniqueJewel120", name = "Transcendent Spirit", text = { @@ -5926,7 +5996,7 @@ return { "we may serve our Queen and fuel her empire.", }, }, - [712] = { + [722] = { id = "UniqueJewel121", name = "Transcendent Mind", text = { @@ -5935,7 +6005,7 @@ return { "and is dangerous in a way that others are not.", }, }, - [713] = { + [723] = { id = "UniqueJewel122", name = "Combat Focus", text = { @@ -5945,7 +6015,7 @@ return { "But when his foot hit the sand, he thought only of the fight.", }, }, - [714] = { + [724] = { id = "UniqueJewel123", name = "Combat Focus", text = { @@ -5956,7 +6026,7 @@ return { "But when the arena gate lifted, he thought only of the fight.", }, }, - [715] = { + [725] = { id = "UniqueJewel124", name = "Combat Focus", text = { @@ -5966,7 +6036,7 @@ return { "But as Chitus and his gemlings advanced, he thought only of the fight.", }, }, - [716] = { + [726] = { id = "UniqueJewel125", name = "Unnatural Instinct", text = { @@ -5974,49 +6044,49 @@ return { "I just know that I know.\"", }, }, - [717] = { + [727] = { id = "UniqueJewel128", name = "Glorious Vanity", text = { "They believed themselves the pinnacle of civilisation, but that height toppled their empire.", }, }, - [718] = { + [728] = { id = "UniqueJewel129", name = "Lethal Pride", text = { "They believed themselves the greatest warriors, but that savagery turned upon their own.", }, }, - [719] = { + [729] = { id = "UniqueJewel13", name = "Fluid Motion", text = { "Even the strongest of steel can be made to bend.", }, }, - [720] = { + [730] = { id = "UniqueJewel130", name = "Brutal Restraint", text = { "They believed themselves the most ordered, but that tradition turned their forests to salt.", }, }, - [721] = { + [731] = { id = "UniqueJewel131", name = "Militant Faith", text = { "They believed themselves the utmost faithful, but that conviction became oppression.", }, }, - [722] = { + [732] = { id = "UniqueJewel132", name = "Elegant Hubris", text = { "They believed themselves better than the past, but that confidence brought about nightmare.", }, }, - [723] = { + [733] = { id = "UniqueJewel133", name = "Seething Fury", text = { @@ -6025,14 +6095,14 @@ return { "perfect moment to reveal the true depth of the Empire's folly.", }, }, - [724] = { + [734] = { id = "UniqueJewel136", name = "Thread of Hope", text = { "Though we cannot touch; one thought, one wish, through centuries alone in darkness.", }, }, - [725] = { + [735] = { id = "UniqueJewel137", name = "Kitava's Teachings", text = { @@ -6040,7 +6110,7 @@ return { "For there may never be another chance to eat.", }, }, - [726] = { + [736] = { id = "UniqueJewel138", name = "Calamitous Visions", text = { @@ -6050,7 +6120,7 @@ return { "And each sound tangled with pleas for mercy.\"", }, }, - [727] = { + [737] = { id = "UniqueJewel139", name = "Natural Affinity", text = { @@ -6058,7 +6128,7 @@ return { "but you can't take the woods out of the girl.", }, }, - [728] = { + [738] = { id = "UniqueJewel140", name = "The Interrogation", text = { @@ -6067,7 +6137,7 @@ return { "Fear of pain unknown has no parallel.", }, }, - [729] = { + [739] = { id = "UniqueJewel141", name = "The Siege", text = { @@ -6076,7 +6146,7 @@ return { "And stood her ground.", }, }, - [730] = { + [740] = { id = "UniqueJewel143", name = "The Front Line", text = { @@ -6084,7 +6154,7 @@ return { "You ensure you can't live without them.", }, }, - [731] = { + [741] = { id = "UniqueJewel144", name = "One With Nothing", text = { @@ -6092,28 +6162,28 @@ return { "The few that survived the initial charge were guaranteed fame and fortune.", }, }, - [732] = { + [742] = { id = "UniqueJewel145", name = "Split Personality", text = { "You need not go looking for a second opinion.", }, }, - [733] = { + [743] = { id = "UniqueJewel146", name = "Megalomaniac", text = { "If you're going to act like you're better than everyone else, make sure you are.", }, }, - [734] = { + [744] = { id = "UniqueJewel147", name = "Voices", text = { "Only a madman would ignore a god's instructions.", }, }, - [735] = { + [745] = { id = "UniqueJewel148", name = "Endless Misery", text = { @@ -6123,7 +6193,7 @@ return { "Civilisation was not simply halted, but reversed, erased.", }, }, - [736] = { + [746] = { id = "UniqueJewel149", name = "Lord of Steel", text = { @@ -6132,7 +6202,7 @@ return { "The sabre's tip reaching out, grasping for life.", }, }, - [737] = { + [747] = { id = "UniqueJewel15", name = "Spire of Stone", text = { @@ -6141,7 +6211,7 @@ return { "after their creators had been buried deep beneath the earth.", }, }, - [738] = { + [748] = { id = "UniqueJewel150", name = "Lord of Steel", text = { @@ -6150,7 +6220,7 @@ return { "But when it breaks, its service will continue.", }, }, - [739] = { + [749] = { id = "UniqueJewel151", name = "Lord of Steel", text = { @@ -6161,49 +6231,49 @@ return { "She knows the path well.", }, }, - [740] = { + [750] = { id = "UniqueJewel152", name = "Apex Mode", text = { "Maximum power fueled by science gone mad.", }, }, - [741] = { + [751] = { id = "UniqueJewel153", name = "Nadir Mode", text = { "Indiscriminate destruction fueled by science gone mad.", }, }, - [742] = { + [752] = { id = "UniqueJewel154", name = "Tecrod's Gaze", text = { "The Hated Slave seeks dominion over his own kind.", }, }, - [743] = { + [753] = { id = "UniqueJewel155", name = "Ulaman's Gaze", text = { "The Sovereign of the Well seeks dominion over the light.", }, }, - [744] = { + [754] = { id = "UniqueJewel156", name = "Kurgal's Gaze", text = { "The Blackblooded seeks dominion over darkness itself.", }, }, - [745] = { + [755] = { id = "UniqueJewel157", name = "Amanamu's Gaze", text = { "The Liege of the Lightless seeks dominion over the surface dwellers.", }, }, - [746] = { + [756] = { id = "UniqueJewel158", name = "Melding of the Flesh", text = { @@ -6212,7 +6282,7 @@ return { "then rose into the living sky. My family screams alongside me still.\"", }, }, - [747] = { + [757] = { id = "UniqueJewel159", name = "Dissolution of the Flesh", text = { @@ -6221,7 +6291,7 @@ return { "A great eye gazed upon us, and we became known—utterly.\"", }, }, - [748] = { + [758] = { id = "UniqueJewel16", name = "Quickening Covenant", text = { @@ -6229,7 +6299,7 @@ return { "sometimes things get a little stuck in between.", }, }, - [749] = { + [759] = { id = "UniqueJewel160", name = "Forbidden Flame", text = { @@ -6237,7 +6307,7 @@ return { "continue to think and dream and beg for silence...", }, }, - [750] = { + [760] = { id = "UniqueJewel161", name = "Forbidden Flesh", text = { @@ -6245,7 +6315,7 @@ return { "continue to merge and mutate and cry out for release...", }, }, - [751] = { + [761] = { id = "UniqueJewel162", name = "Divine Inferno", text = { @@ -6255,7 +6325,7 @@ return { "but using it had cost him absolutely everything.", }, }, - [752] = { + [762] = { id = "UniqueJewel163", name = "Impossible Escape", text = { @@ -6264,7 +6334,7 @@ return { "for supremacy. She alone reached her limit... and broke through.", }, }, - [753] = { + [763] = { id = "UniqueJewel164", name = "Sublime Vision", text = { @@ -6273,56 +6343,56 @@ return { "matters but the pursuit of perfection.", }, }, - [754] = { + [764] = { id = "UniqueJewel165", name = "Grand Spectrum", text = { "A wellspring of vitality bubbling from within.", }, }, - [755] = { + [765] = { id = "UniqueJewel166", name = "Grand Spectrum", text = { "A mountain fortress safe from the storm.", }, }, - [756] = { + [766] = { id = "UniqueJewel167", name = "Grand Spectrum", text = { "A mass of flesh writhing with savage fury.", }, }, - [757] = { + [767] = { id = "UniqueJewel168", name = "Grand Spectrum", text = { "A body that never falters.", }, }, - [758] = { + [768] = { id = "UniqueJewel169", name = "Grand Spectrum", text = { "A spirit that never rests.", }, }, - [759] = { + [769] = { id = "UniqueJewel17", name = "Mantra of Flames", text = { "The strong grow stronger still.", }, }, - [760] = { + [770] = { id = "UniqueJewel170", name = "Grand Spectrum", text = { "A mind that never quiets.", }, }, - [761] = { + [771] = { id = "UniqueJewel171", name = "Rational Doctrine", text = { @@ -6331,7 +6401,7 @@ return { "But can they not be one and the same?", }, }, - [762] = { + [772] = { id = "UniqueJewel172", name = "Immutable Force", text = { @@ -6339,7 +6409,7 @@ return { "when one man stands firm and says, \"I refuse.\"", }, }, - [763] = { + [773] = { id = "UniqueJewel173", name = "Stormshroud", text = { @@ -6347,7 +6417,7 @@ return { "is that all are one and the same.", }, }, - [764] = { + [774] = { id = "UniqueJewel174", name = "Firesong", text = { @@ -6356,7 +6426,7 @@ return { "For the master of fire fears nothing.", }, }, - [765] = { + [775] = { id = "UniqueJewel175", name = "Witchbane", text = { @@ -6367,7 +6437,7 @@ return { "And so becomes part of her stew.", }, }, - [766] = { + [776] = { id = "UniqueJewel176", name = "The Balance of Terror", text = { @@ -6376,7 +6446,7 @@ return { "For one to rise, the other must fall.", }, }, - [767] = { + [777] = { id = "UniqueJewel177", name = "Ancestral Vision", text = { @@ -6384,7 +6454,7 @@ return { "Inextricably, the purity of our souls is linked to the ones who came before us.", }, }, - [768] = { + [778] = { id = "UniqueJewel178", name = "Bloodnotch", text = { @@ -6393,14 +6463,14 @@ return { "igniting their capacity to endure.", }, }, - [769] = { + [779] = { id = "UniqueJewel179", name = "Warrior's Tale", text = { "The story of a life, written in blood and ink.", }, }, - [770] = { + [780] = { id = "UniqueJewel18", name = "Fortress Covenant", text = { @@ -6408,7 +6478,7 @@ return { "you only make the wall grow thicker.", }, }, - [771] = { + [781] = { id = "UniqueJewel180", name = "The Adorned", text = { @@ -6417,14 +6487,14 @@ return { "now nothing more than a passing wonder.", }, }, - [772] = { + [782] = { id = "UniqueJewel181", name = "The Light of Meaning", text = { "Faith given under false pretenses still carries the same power.", }, }, - [773] = { + [783] = { id = "UniqueJewel182", name = "The Perandus Pact", text = { @@ -6432,7 +6502,7 @@ return { "to turn even great misfortunes into golden opportunities.", }, }, - [774] = { + [784] = { id = "UniqueJewel184", name = "Bound By Destiny", text = { @@ -6440,7 +6510,7 @@ return { "driven by the passions and tragedies of those who seek.", }, }, - [775] = { + [785] = { id = "UniqueJewel2", name = "Eldritch Knowledge", text = { @@ -6449,14 +6519,14 @@ return { "- Shavronne of Umbra", }, }, - [776] = { + [786] = { id = "UniqueJewel20", name = "Hotheaded", text = { "It's hard to stay still when you're engulfed in flames.", }, }, - [777] = { + [787] = { id = "UniqueJewel20x", name = "Replica Hotheaded", text = { @@ -6465,7 +6535,7 @@ return { "- Lead Researcher Ksaret", }, }, - [778] = { + [788] = { id = "UniqueJewel24", name = "Fragile Bloom", text = { @@ -6473,14 +6543,14 @@ return { "and the most vulnerable.", }, }, - [779] = { + [789] = { id = "UniqueJewel24x", name = "Replica Fragile Bloom", text = { "\"Distribute Prototype #723 to the guards. Perhaps their survival rate will increase.\"", }, }, - [780] = { + [790] = { id = "UniqueJewel25", name = "Hidden Potential", text = { @@ -6488,7 +6558,7 @@ return { "is what they see when they look at the same block of wood.", }, }, - [781] = { + [791] = { id = "UniqueJewel26", name = "Rain of Splinters", text = { @@ -6497,14 +6567,14 @@ return { "- Ancient Karui Proverb", }, }, - [782] = { + [792] = { id = "UniqueJewel28", name = "Malicious Intent", text = { "Each life taken makes the next a little easier.", }, }, - [783] = { + [793] = { id = "UniqueJewel29", name = "Brawn", text = { @@ -6514,7 +6584,7 @@ return { "- Barkhul, the Butcher", }, }, - [784] = { + [794] = { id = "UniqueJewel3", name = "Inspired Learning", text = { @@ -6522,21 +6592,21 @@ return { "then you have already lost the war.", }, }, - [785] = { + [795] = { id = "UniqueJewel30", name = "Clear Mind", text = { "When your thoughts flow like a river, why build a dam?", }, }, - [786] = { + [796] = { id = "UniqueJewel34", name = "Efficient Training", text = { "Working smart and working hard aren't mutually exclusive.", }, }, - [787] = { + [797] = { id = "UniqueJewel35", name = "Brute Force Solution", text = { @@ -6544,7 +6614,7 @@ return { "Breaking it with a hammer takes about three seconds.", }, }, - [788] = { + [798] = { id = "UniqueJewel36", name = "Careful Planning", text = { @@ -6555,77 +6625,77 @@ return { "- History of the Maraketh", }, }, - [789] = { + [799] = { id = "UniqueJewel37", name = "Inertia", text = { "There is no force without movement.", }, }, - [790] = { + [800] = { id = "UniqueJewel4", name = "Martial Artistry", text = { "A gentle hand rarely leaves a mark on the world.", }, }, - [791] = { + [801] = { id = "UniqueJewel41", name = "Poacher's Aim", text = { "A sharp eye can be more deadly than a sharp blade.", }, }, - [792] = { + [802] = { id = "UniqueJewel42", name = "Warlord's Reach", text = { "A steady hand can hold back an army.", }, }, - [793] = { + [803] = { id = "UniqueJewel43", name = "Assassin's Haste", text = { "A quick step can advance great plans.", }, }, - [794] = { + [804] = { id = "UniqueJewel44", name = "Conqueror's Efficiency", text = { "The stone may yet bleed.", }, }, - [795] = { + [805] = { id = "UniqueJewel44x", name = "Replica Conqueror's Efficiency", text = { "\"The effect is subtle, but potentially lethal...\"", }, }, - [796] = { + [806] = { id = "UniqueJewel45", name = "Conqueror's Potency", text = { "What you earn is almost as important as what you take.", }, }, - [797] = { + [807] = { id = "UniqueJewel46", name = "Conqueror's Longevity", text = { "Victory is as simple as being the last one standing.", }, }, - [798] = { + [808] = { id = "UniqueJewel47", name = "Pugilist", text = { "The best dancers often make the best fighters.", }, }, - [799] = { + [809] = { id = "UniqueJewel48", name = "Cold Steel", text = { @@ -6633,7 +6703,7 @@ return { "hanging from the eaves of our homes.", }, }, - [800] = { + [810] = { id = "UniqueJewel49", name = "Fireborn", text = { @@ -6641,7 +6711,7 @@ return { "Leaders are born in ruins and flames.", }, }, - [801] = { + [811] = { id = "UniqueJewel5", name = "Lioneye's Fall", text = { @@ -6649,14 +6719,14 @@ return { "and even then, it knows to keep its distance.", }, }, - [802] = { + [812] = { id = "UniqueJewel50", name = "Energised Armour", text = { "\"I've yet to see prayer stop an arrow.\"", }, }, - [803] = { + [813] = { id = "UniqueJewel51", name = "Energy From Within", text = { @@ -6664,7 +6734,7 @@ return { "of going without the body's ordinary cravings.", }, }, - [804] = { + [814] = { id = "UniqueJewel52", name = "Anatomical Knowledge", text = { @@ -6672,7 +6742,7 @@ return { "you can't help but treat it better.", }, }, - [805] = { + [815] = { id = "UniqueJewel53", name = "Static Electricity", text = { @@ -6681,21 +6751,21 @@ return { "- Inquisitor Maligaro", }, }, - [806] = { + [816] = { id = "UniqueJewel54", name = "Healthy Mind", text = { "For the ambitious, flesh is a limitation.", }, }, - [807] = { + [817] = { id = "UniqueJewel55", name = "Might in All Forms", text = { "True strength can be found anywhere, and in anything.", }, }, - [808] = { + [818] = { id = "UniqueJewel56", name = "Shattered Chains", text = { @@ -6705,7 +6775,7 @@ return { "And gave them the freedom to choose corruption for themselves.", }, }, - [809] = { + [819] = { id = "UniqueJewel57", name = "Weight of the Empire", text = { @@ -6715,7 +6785,7 @@ return { "That Ondar felt the full weight of his guilt.", }, }, - [810] = { + [820] = { id = "UniqueJewel58", name = "Pitch Darkness", text = { @@ -6725,7 +6795,7 @@ return { "From Kaom's skulking horde.", }, }, - [811] = { + [821] = { id = "UniqueJewel59", name = "Steel Spirit", text = { @@ -6735,7 +6805,7 @@ return { "So that it would not consume her world.", }, }, - [812] = { + [822] = { id = "UniqueJewel6", name = "Intuitive Leap", text = { @@ -6743,7 +6813,7 @@ return { "He's ambitious.", }, }, - [813] = { + [823] = { id = "UniqueJewel60", name = "Growing Agony", text = { @@ -6753,7 +6823,7 @@ return { "And very painful.", }, }, - [814] = { + [824] = { id = "UniqueJewel61", name = "Reckless Defence", text = { @@ -6761,14 +6831,14 @@ return { "quite like desperation.", }, }, - [815] = { + [825] = { id = "UniqueJewel61x", name = "Replica Reckless Defence", text = { "\"Prototype #298 must be contained in a non-conductive glass box at all times.\"", }, }, - [816] = { + [826] = { id = "UniqueJewel62", name = "The Vigil", text = { @@ -6778,7 +6848,7 @@ return { "Blind to the damnation in his hands.", }, }, - [817] = { + [827] = { id = "UniqueJewel63", name = "Rolling Flames", text = { @@ -6788,7 +6858,7 @@ return { "With every land they consumed.", }, }, - [818] = { + [828] = { id = "UniqueJewel64", name = "Winter's Bounty", text = { @@ -6798,7 +6868,7 @@ return { "And see nothing but the long slumber ahead.", }, }, - [819] = { + [829] = { id = "UniqueJewel65", name = "Spirited Response", text = { @@ -6808,7 +6878,7 @@ return { "To temper the steel of their spirits.", }, }, - [820] = { + [830] = { id = "UniqueJewel66", name = "Izaro's Turmoil", text = { @@ -6818,7 +6888,7 @@ return { "that pushed a monster to power.", }, }, - [821] = { + [831] = { id = "UniqueJewel67", name = "Dead Reckoning", text = { @@ -6827,7 +6897,7 @@ return { "\"I watched the world we know end yesterday.\"", }, }, - [822] = { + [832] = { id = "UniqueJewel68", name = "Rapid Expansion", text = { @@ -6837,7 +6907,7 @@ return { "that a Perandus won't pay.", }, }, - [823] = { + [833] = { id = "UniqueJewel69", name = "Volley Fire", text = { @@ -6848,7 +6918,7 @@ return { "would litter the sands.", }, }, - [824] = { + [834] = { id = "UniqueJewel70", name = "Spirit Guards", text = { @@ -6857,21 +6927,21 @@ return { "at Lioneye's Watch could be heard amongst the rubble.", }, }, - [825] = { + [835] = { id = "UniqueJewel71", name = "Cheap Construction", text = { "Why waste the good stuff on something that's going to blow up?", }, }, - [826] = { + [836] = { id = "UniqueJewel71x", name = "Replica Cheap Construction", text = { "\"A curious jewel. Like so many others, a shining little paradox.\"", }, }, - [827] = { + [837] = { id = "UniqueJewel72", name = "Hair Trigger", text = { @@ -6879,7 +6949,7 @@ return { "Try catching a bird before it has even landed.", }, }, - [828] = { + [838] = { id = "UniqueJewel73", name = "Coated Shrapnel", text = { @@ -6887,14 +6957,14 @@ return { "Take everything and waste nothing.", }, }, - [829] = { + [839] = { id = "UniqueJewel74", name = "Unstable Payload", text = { "Saboteurs, like chefs, have their own secret recipes.", }, }, - [830] = { + [840] = { id = "UniqueJewel74x", name = "Replica Unstable Payload", text = { @@ -6903,28 +6973,28 @@ return { "- Administrator Qotra", }, }, - [831] = { + [841] = { id = "UniqueJewel75", name = "Grand Spectrum", text = { "Thoughts that shimmer like light across the rain.", }, }, - [832] = { + [842] = { id = "UniqueJewel76", name = "Grand Spectrum", text = { "Skin like steel tempered by bright flames.", }, }, - [833] = { + [843] = { id = "UniqueJewel77", name = "Grand Spectrum", text = { "Fists that strike like a falling tree.", }, }, - [834] = { + [844] = { id = "UniqueJewel79", name = "The Anima Stone", text = { @@ -6934,14 +7004,14 @@ return { "Stands long after all else falls.", }, }, - [835] = { + [845] = { id = "UniqueJewel8", name = "Survival Instincts", text = { "Observe and master your surroundings.", }, }, - [836] = { + [846] = { id = "UniqueJewel80", name = "Unending Hunger", text = { @@ -6951,7 +7021,7 @@ return { "Their hearts will never be content.", }, }, - [837] = { + [847] = { id = "UniqueJewel81", name = "Primordial Might", text = { @@ -6960,7 +7030,7 @@ return { "- Ezomyte proverb", }, }, - [838] = { + [848] = { id = "UniqueJewel82", name = "Primordial Eminence", text = { @@ -6969,7 +7039,7 @@ return { "- Azmerian proverb", }, }, - [839] = { + [849] = { id = "UniqueJewel83", name = "Primordial Harmony", text = { @@ -6978,17 +7048,15 @@ return { "- Maraketh proverb", }, }, - [840] = { + [850] = { id = "UniqueJewel85", name = "The Red Dream", text = { "We flow like blood into Chayula's open mouth,", "and spill into the land we have watched forever.", - "", - "^8This item can be transformed with a Blessing of Chayula", }, }, - [841] = { + [851] = { id = "UniqueJewel86", name = "The Red Nightmare", text = { @@ -6996,17 +7064,15 @@ return { "that suffocates the unworthy.", }, }, - [842] = { + [852] = { id = "UniqueJewel87", name = "The Green Dream", text = { "We climb like vines up Chayula's arms,", "reaching into the world that should be ours.", - "", - "^8This item can be transformed with a Blessing of Chayula", }, }, - [843] = { + [853] = { id = "UniqueJewel88", name = "The Green Nightmare", text = { @@ -7014,24 +7080,22 @@ return { "and strangle those who tread upon it.", }, }, - [844] = { + [854] = { id = "UniqueJewel89", name = "The Blue Dream", text = { "We crash against Chayula's body,", "and fall like rain into the place we cannot go.", - "", - "^8This item can be transformed with a Blessing of Chayula", }, }, - [845] = { + [855] = { id = "UniqueJewel9", name = "Survival Skills", text = { "A helping hand has long reach.", }, }, - [846] = { + [856] = { id = "UniqueJewel90", name = "The Blue Nightmare", text = { @@ -7039,7 +7103,7 @@ return { "and drown the undeserving beneath our might.", }, }, - [847] = { + [857] = { id = "UniqueJewel91", name = "Collateral Damage", text = { @@ -7047,7 +7111,7 @@ return { "For him, there was no doubt that the end would justify the means.", }, }, - [848] = { + [858] = { id = "UniqueJewel92", name = "Sudden Ignition", text = { @@ -7056,7 +7120,7 @@ return { "Finally, Victario lit the match.", }, }, - [849] = { + [859] = { id = "UniqueJewel93", name = "Overwhelming Odds", text = { @@ -7065,7 +7129,7 @@ return { "every last man dying a brutal, but honourable death.", }, }, - [850] = { + [860] = { id = "UniqueJewel94", name = "First Snow", text = { @@ -7073,7 +7137,7 @@ return { "and unburdened by the responsibility the Perandus scion would soon endure.", }, }, - [851] = { + [861] = { id = "UniqueJewel95", name = "Omen on the Winds", text = { @@ -7082,7 +7146,7 @@ return { "One final, feeble attempt to save what was meant to be eternal.", }, }, - [852] = { + [862] = { id = "UniqueJewel96", name = "Wildfire", text = { @@ -7091,7 +7155,7 @@ return { "The rest fled like rats from a fire.", }, }, - [853] = { + [863] = { id = "UniqueJewel97", name = "Fight for Survival", text = { @@ -7099,7 +7163,7 @@ return { "Wraeclast's few survivors fought to the death for the last scraps of bread.", }, }, - [854] = { + [864] = { id = "UniqueJewel98", name = "Might and Influence", text = { @@ -7109,7 +7173,7 @@ return { "mixture of fear and admiration among the masses.", }, }, - [855] = { + [865] = { id = "UniqueJewel99", name = "Frozen Trail", text = { @@ -7118,7 +7182,7 @@ return { "and so the advancing Eternals were unwittingly drawn into a deathtrap.", }, }, - [856] = { + [866] = { id = "UniqueJewelLabyrinth1", name = "Emperor's Cunning", text = { @@ -7126,7 +7190,7 @@ return { "before the battle has begun.", }, }, - [857] = { + [867] = { id = "UniqueJewelLabyrinth2", name = "Emperor's Wit", text = { @@ -7134,14 +7198,14 @@ return { "or tear them down.", }, }, - [858] = { + [868] = { id = "UniqueJewelLabyrinth3", name = "Emperor's Might", text = { "Even an iron fist can be handled with grace.", }, }, - [859] = { + [869] = { id = "UniqueJewelLabyrinth4", name = "Emperor's Mastery", text = { @@ -7149,14 +7213,14 @@ return { "and surround yourself with people who know the rest.", }, }, - [860] = { + [870] = { id = "UniqueMercenaryBelt1", name = "Binds of Bloody Vengeance", text = { "What once marked his submission became the tool of his defiance - torn from the lash of House Keita.", }, }, - [861] = { + [871] = { id = "UniqueMercenaryBootsInt1", name = "Scornflux", text = { @@ -7165,7 +7229,7 @@ return { "Thus began the War of the Great Families.", }, }, - [862] = { + [872] = { id = "UniqueMercenaryGlovesStrInt1", name = "Hand of Heresy", text = { @@ -7175,7 +7239,7 @@ return { "- High Templar Andronicus, 892 IC", }, }, - [863] = { + [873] = { id = "UniqueMercenaryHelmetStr1", name = "Howlcrack", text = { @@ -7184,7 +7248,7 @@ return { "or blood.\" - Keita's Proclamation, 872 IC", }, }, - [864] = { + [874] = { id = "UniqueMercenaryShieldDex1", name = "Azadi Crest", text = { @@ -7193,14 +7257,14 @@ return { "- Azadi, first ancestor of the House Azadin", }, }, - [865] = { + [875] = { id = "UniqueOneHandAxe1", name = "Soul Taker", text = { "It is too easy for the soul to escape from an open heart.", }, }, - [866] = { + [876] = { id = "UniqueOneHandAxe10", name = "Actum", text = { @@ -7208,7 +7272,17 @@ return { "than to think without action.", }, }, - [867] = { + [877] = { + id = "UniqueOneHandAxe11", + name = "The Grey Wind", + text = { + "Silence fell... we gazed upon high.", + "The Red Pyre flared, palms wide.", + "Ash-laden gales scoured our flesh.", + "Four screams became one roar.", + }, + }, + [878] = { id = "UniqueOneHandAxe1x", name = "Replica Soul Taker", text = { @@ -7216,7 +7290,7 @@ return { "Results like these may justify everything we do here.\"", }, }, - [868] = { + [879] = { id = "UniqueOneHandAxe2", name = "Dyadus", text = { @@ -7227,7 +7301,7 @@ return { "At their mother's side, forever.", }, }, - [869] = { + [880] = { id = "UniqueOneHandAxe3", name = "The Gryphon", text = { @@ -7235,7 +7309,7 @@ return { "but the scream and the strike.", }, }, - [870] = { + [881] = { id = "UniqueOneHandAxe6", name = "Relentless Fury", text = { @@ -7244,7 +7318,7 @@ return { "Fuel my boiling blood", }, }, - [871] = { + [882] = { id = "UniqueOneHandAxe7", name = "Dreadsurge", text = { @@ -7252,7 +7326,7 @@ return { "is through his sternum.", }, }, - [872] = { + [883] = { id = "UniqueOneHandAxe8", name = "Moonbender's Wing", text = { @@ -7260,7 +7334,7 @@ return { "the wing moves faster than the eye.", }, }, - [873] = { + [884] = { id = "UniqueOneHandAxe9", name = "Rigwald's Savagery", text = { @@ -7269,7 +7343,7 @@ return { "Scatter the dust to the wind.", }, }, - [874] = { + [885] = { id = "UniqueOneHandClaw11", name = "Izaro's Dilemma", text = { @@ -7277,7 +7351,7 @@ return { "but as a divine saviour trapped in a man's body.", }, }, - [875] = { + [886] = { id = "UniqueOneHandClaw12", name = "Advancing Fortress", text = { @@ -7287,7 +7361,7 @@ return { "- Sekhema Deshret", }, }, - [876] = { + [887] = { id = "UniqueOneHandClaw12x", name = "Replica Advancing Fortress", text = { @@ -7295,7 +7369,7 @@ return { "need to be endured to activate Prototype #612's energies.\"", }, }, - [877] = { + [888] = { id = "UniqueOneHandMace1", name = "Brightbeak", text = { @@ -7304,7 +7378,7 @@ return { "- Voll of Thebrus", }, }, - [878] = { + [889] = { id = "UniqueOneHandMace10", name = "Frostbreath", text = { @@ -7312,7 +7386,7 @@ return { "Robbing breath from the weak and worthless.", }, }, - [879] = { + [890] = { id = "UniqueOneHandMace10x", name = "Replica Frostbreath", text = { @@ -7320,7 +7394,7 @@ return { "debilitating effect from poisons. This could be very useful.\"", }, }, - [880] = { + [891] = { id = "UniqueOneHandMace11", name = "Nebuloch", text = { @@ -7329,21 +7403,30 @@ return { "But time would not touch the fiend.", }, }, - [881] = { + [892] = { id = "UniqueOneHandMace12", name = "Serle's Masterwork", text = { "Truly great Artificers push the boundaries of the possible.", }, }, - [882] = { + [893] = { + id = "UniqueOneHandMace13", + name = "The Monastery Bell", + text = { + "\"We must be ready. We are the voice of Wraeclast's vengeance,", + "tolling righteous fury for those who would dare invade our world!\"", + "- Ailith, First of the Keepers", + }, + }, + [894] = { id = "UniqueOneHandMace3", name = "Mjölner", text = { "Look the storm in the eye and you will have its respect.", }, }, - [883] = { + [895] = { id = "UniqueOneHandMace4", name = "Cameria's Avarice", text = { @@ -7352,7 +7435,7 @@ return { "\"That's how I prefer it.\"", }, }, - [884] = { + [896] = { id = "UniqueOneHandMace5", name = "Callinellus Malleus", text = { @@ -7362,7 +7445,7 @@ return { "until the waters recede and we stand together.", }, }, - [885] = { + [897] = { id = "UniqueOneHandMace6", name = "Gorebreaker", text = { @@ -7370,7 +7453,7 @@ return { "But this'll soften them up.", }, }, - [886] = { + [898] = { id = "UniqueOneHandMace7", name = "Lavianga's Wisdom", text = { @@ -7378,7 +7461,7 @@ return { "- Lavianga, Advisor to Kaom", }, }, - [887] = { + [899] = { id = "UniqueOneHandMace8", name = "Flesh-Eater", text = { @@ -7386,7 +7469,7 @@ return { "Though countless corpses lie in wake.", }, }, - [888] = { + [900] = { id = "UniqueOneHandMace9", name = "Clayshaper", text = { @@ -7394,14 +7477,14 @@ return { "Free from our hunger for dominion.", }, }, - [889] = { + [901] = { id = "UniqueOneHandSword1", name = "Dreadbeak", text = { "As battle calms, blood turns to rust.", }, }, - [890] = { + [902] = { id = "UniqueOneHandSword10", name = "Oni-Goroshi", text = { @@ -7413,14 +7496,14 @@ return { "Bequeathed, betrayed...beloved. At last, I am the third.", }, }, - [891] = { + [903] = { id = "UniqueOneHandSword11", name = "Ichimonji", text = { "Master yourself before you seek to master others.", }, }, - [892] = { + [904] = { id = "UniqueOneHandSword12", name = "The Princess", text = { @@ -7428,7 +7511,7 @@ return { "want to be with her long after you're dead.\"", }, }, - [893] = { + [905] = { id = "UniqueOneHandSword13", name = "Lakishu's Blade", text = { @@ -7436,7 +7519,7 @@ return { "- Legionnaire Battle Blessing", }, }, - [894] = { + [906] = { id = "UniqueOneHandSword14", name = "Chitus' Needle", text = { @@ -7445,7 +7528,7 @@ return { "- Chitus Perandus", }, }, - [895] = { + [907] = { id = "UniqueOneHandSword15", name = "Rigwald's Command", text = { @@ -7454,7 +7537,7 @@ return { "into the throats of our oppressors.", }, }, - [896] = { + [908] = { id = "UniqueOneHandSword16", name = "The Tempestuous Steel", text = { @@ -7462,7 +7545,7 @@ return { "Eager for vengeance against all who walk free.", }, }, - [897] = { + [909] = { id = "UniqueOneHandSword16x", name = "Replica Tempestuous Steel", text = { @@ -7470,7 +7553,7 @@ return { "However, when a trained guard tried it...\"", }, }, - [898] = { + [910] = { id = "UniqueOneHandSword17", name = "Varunastra", text = { @@ -7479,7 +7562,7 @@ return { "- Icius Perandus, Antiquities Collection, Item 2992", }, }, - [899] = { + [911] = { id = "UniqueOneHandSword18", name = "Innsbury Edge", text = { @@ -7489,7 +7572,7 @@ return { "from ghoulish dreams, too strange to comprehend.", }, }, - [900] = { + [912] = { id = "UniqueOneHandSword18x", name = "Replica Innsbury Edge", text = { @@ -7498,7 +7581,7 @@ return { "- Researcher Arn", }, }, - [901] = { + [913] = { id = "UniqueOneHandSword19", name = "Scaeva", text = { @@ -7508,7 +7591,7 @@ return { "A spell only broken by the spilling of blood.", }, }, - [902] = { + [914] = { id = "UniqueOneHandSword2", name = "Ephemeral Edge", text = { @@ -7516,7 +7599,7 @@ return { "life passes quickly.", }, }, - [903] = { + [915] = { id = "UniqueOneHandSword20", name = "Razor of the Seventh Sun", text = { @@ -7525,7 +7608,7 @@ return { "the heat of the forge.", }, }, - [904] = { + [916] = { id = "UniqueOneHandSword21", name = "Cospri's Malice", text = { @@ -7535,17 +7618,15 @@ return { "And it will embrace you back.", }, }, - [905] = { + [917] = { id = "UniqueOneHandSword22", name = "Severed in Sleep", text = { "His lucky thralls dream eternal,", "but we must crawl on our own.", - "", - "^8This item can be transformed with a Blessing of Chayula", }, }, - [906] = { + [918] = { id = "UniqueOneHandSword23", name = "United in Dream", text = { @@ -7553,7 +7634,7 @@ return { "To be fed upon when he wakes.", }, }, - [907] = { + [919] = { id = "UniqueOneHandSword24", name = "Ahn's Might", text = { @@ -7563,13 +7644,13 @@ return { "- Icius Perandus, Antiquities Collection, Item 47", }, }, - [908] = { + [920] = { id = "UniqueOneHandSword25", name = "The Rippling Thoughts", text = { }, }, - [909] = { + [921] = { id = "UniqueOneHandSword27", name = "Grelwood Shank", text = { @@ -7578,7 +7659,7 @@ return { "a memory written in fibrous flesh.", }, }, - [910] = { + [922] = { id = "UniqueOneHandSword28", name = "Beltimber Blade", text = { @@ -7587,7 +7668,7 @@ return { "Yet the fates of others dragged in their wake.", }, }, - [911] = { + [923] = { id = "UniqueOneHandSword29", name = "Story of the Vaal", text = { @@ -7598,7 +7679,7 @@ return { "^8This item can be transformed on the Altar of Sacrifice along with Vial of Fate", }, }, - [912] = { + [924] = { id = "UniqueOneHandSword3", name = "Rebuke of the Vaal", text = { @@ -7607,7 +7688,7 @@ return { "- Icius Perandus, Scholar to the Empire.", }, }, - [913] = { + [925] = { id = "UniqueOneHandSword30", name = "Fate of the Vaal", text = { @@ -7616,7 +7697,7 @@ return { "A sign of faithlessness through action.", }, }, - [914] = { + [926] = { id = "UniqueOneHandSword31", name = "The Saviour", text = { @@ -7626,20 +7707,20 @@ return { "But which one am I?", }, }, - [915] = { + [927] = { id = "UniqueOneHandSword32", name = "The Surging Thoughts", text = { }, }, - [916] = { + [928] = { id = "UniqueOneHandSword33", name = "The Iron Mass", text = { "Lead by example.", }, }, - [917] = { + [929] = { id = "UniqueOneHandSword34", name = "The Redblade", text = { @@ -7647,7 +7728,7 @@ return { "and Titan against the rising darkness.", }, }, - [918] = { + [930] = { id = "UniqueOneHandSword35", name = "Nametaker", text = { @@ -7655,7 +7736,7 @@ return { "dearly held secrets spill forth in our blood.", }, }, - [919] = { + [931] = { id = "UniqueOneHandSword4", name = "The Goddess Scorned", text = { @@ -7665,7 +7746,7 @@ return { "\"An old flame renewed can define our eclipse!\"", }, }, - [920] = { + [932] = { id = "UniqueOneHandSword5", name = "Prismatic Eclipse", text = { @@ -7675,7 +7756,7 @@ return { "- Azmerian Creation Myth", }, }, - [921] = { + [933] = { id = "UniqueOneHandSword6", name = "Hyaon's Fury", text = { @@ -7687,7 +7768,7 @@ return { "- Garivaldi, Chronicler to the Empire", }, }, - [922] = { + [934] = { id = "UniqueOneHandSword7", name = "Fidelitas' Spike", text = { @@ -7695,7 +7776,7 @@ return { "Thaumaturgy allowed Maligaro to return the favour.", }, }, - [923] = { + [935] = { id = "UniqueOneHandSword9", name = "Dreamfeather", text = { @@ -7705,7 +7786,7 @@ return { "Beneath the stars, the moondrops glowing.", }, }, - [924] = { + [936] = { id = "UniqueOneHandSword9x", name = "Replica Dreamfeather", text = { @@ -7714,7 +7795,7 @@ return { "- Researcher Graven", }, }, - [925] = { + [937] = { id = "UniqueQuiver1", name = "The Signal Fire", text = { @@ -7722,7 +7803,7 @@ return { "Hissing arrows from the dark.", }, }, - [926] = { + [938] = { id = "UniqueQuiver10", name = "Rigwald's Quills", text = { @@ -7732,7 +7813,7 @@ return { "or the blood of others.", }, }, - [927] = { + [939] = { id = "UniqueQuiver11", name = "Saemus' Gift", text = { @@ -7742,7 +7823,7 @@ return { "Guided by darkness, Magjar spilled the blood of his love", }, }, - [928] = { + [940] = { id = "UniqueQuiver12", name = "Skirmish", text = { @@ -7751,20 +7832,20 @@ return { "nothing would remain unconquered.", }, }, - [929] = { + [941] = { id = "UniqueQuiver13", name = "The Fracturing Spinner", text = { }, }, - [930] = { + [942] = { id = "UniqueQuiver14", name = "Voidfletcher", text = { "Even emptiness may be harnessed.", }, }, - [931] = { + [943] = { id = "UniqueQuiver15", name = "Maloney's Mechanism", text = { @@ -7773,7 +7854,7 @@ return { "I will see them again, but not until my work is done.", }, }, - [932] = { + [944] = { id = "UniqueQuiver15x", name = "Replica Maloney's Mechanism", text = { @@ -7781,34 +7862,34 @@ return { "but when we failed to make any progress on resurrection, he continued his search elsewhere...\"", }, }, - [933] = { + [945] = { id = "UniqueQuiver16", name = "Scorpion's Call", text = { "Claws open, brace for a bite. Stinger raised, dodge or die.", }, }, - [934] = { + [946] = { id = "UniqueQuiver17", name = "The Shattered Divinity", text = { }, }, - [935] = { + [947] = { id = "UniqueQuiver18", name = "Steelworm", text = { "The dance of metal and flesh never ends.", }, }, - [936] = { + [948] = { id = "UniqueQuiver19", name = "The Poised Prism", text = { "What do you see when you look inward?", }, }, - [937] = { + [949] = { id = "UniqueQuiver2", name = "Broadstroke", text = { @@ -7816,14 +7897,14 @@ return { "their heavy shields... and paid dearly for their mistake.", }, }, - [938] = { + [950] = { id = "UniqueQuiver20", name = "Ahuana's Bite", text = { "The last Queen of the Karui gave up power willingly.", }, }, - [939] = { + [951] = { id = "UniqueQuiver22", name = "Spinehail", text = { @@ -7831,7 +7912,7 @@ return { "The loyal must be no more than fodder against the unwilling.", }, }, - [940] = { + [952] = { id = "UniqueQuiver3", name = "Drillneck", text = { @@ -7839,7 +7920,7 @@ return { "- Kiravi, Vaal Archer", }, }, - [941] = { + [953] = { id = "UniqueQuiver4", name = "Rearguard", text = { @@ -7847,7 +7928,7 @@ return { "- Kiravi, Vaal Archer", }, }, - [942] = { + [954] = { id = "UniqueQuiver5", name = "Asphyxia's Wrath", text = { @@ -7857,7 +7938,7 @@ return { "Upon the frozen wasteland.", }, }, - [943] = { + [955] = { id = "UniqueQuiver6", name = "Hyrri's Demise", text = { @@ -7866,7 +7947,7 @@ return { "Hyrri changed all of that.", }, }, - [944] = { + [956] = { id = "UniqueQuiver7", name = "Soul Strike", text = { @@ -7875,7 +7956,7 @@ return { "Outlast the rewards of the Flesh.", }, }, - [945] = { + [957] = { id = "UniqueQuiver7x", name = "Replica Soul Strike", text = { @@ -7884,14 +7965,14 @@ return { "- Researcher Arn", }, }, - [946] = { + [958] = { id = "UniqueQuiver8", name = "Cragfall", text = { "Hit them hard. Hit them once.", }, }, - [947] = { + [959] = { id = "UniqueQuiver9", name = "Maloney's Nightfall", text = { @@ -7901,7 +7982,7 @@ return { "Rest alone, my grand nightfall.", }, }, - [948] = { + [960] = { id = "UniqueRapier1", name = "Tipua Kaikohuru", text = { @@ -7911,7 +7992,7 @@ return { "\"With me in hand, what else need you use?\"", }, }, - [949] = { + [961] = { id = "UniqueRapier2", name = "Aurumvorax", text = { @@ -7920,7 +8001,7 @@ return { "does not like to share its master's attention", }, }, - [950] = { + [962] = { id = "UniqueRapier4", name = "Daresso's Passion", text = { @@ -7928,7 +8009,7 @@ return { "All form and finesse are forgotten when blood first hits the ground.", }, }, - [951] = { + [963] = { id = "UniqueRapier5", name = "Ewar's Mirage", text = { @@ -7936,14 +8017,14 @@ return { "A hundred blades dance", }, }, - [952] = { + [964] = { id = "UniqueRapier6", name = "Paradoxica", text = { "What has no siblings but is always a twin?", }, }, - [953] = { + [965] = { id = "UniqueRapier6x", name = "Replica Paradoxica", text = { @@ -7951,14 +8032,14 @@ return { "- Researcher Graven", }, }, - [954] = { + [966] = { id = "UniqueRing1", name = "Voidheart", text = { "Fear is highly infectious.", }, }, - [955] = { + [967] = { id = "UniqueRing10", name = "Sibyl's Lament", text = { @@ -7966,7 +8047,7 @@ return { "a pain that she could never see.", }, }, - [956] = { + [968] = { id = "UniqueRing14", name = "Perandus Signet", text = { @@ -7975,14 +8056,14 @@ return { "- Medici Perandus, Prefect to the Treasury", }, }, - [957] = { + [969] = { id = "UniqueRing15", name = "Pyre", text = { "Let winter come. It will only make my fire burn brighter.", }, }, - [958] = { + [970] = { id = "UniqueRing16", name = "Ming's Heart", text = { @@ -7992,7 +8073,7 @@ return { "He placed his Heart", }, }, - [959] = { + [971] = { id = "UniqueRing17", name = "Romira's Banquet", text = { @@ -8002,7 +8083,7 @@ return { "A perfidious meal indeed.", }, }, - [960] = { + [972] = { id = "UniqueRing18", name = "Berek's Pass", text = { @@ -8014,7 +8095,7 @@ return { "- Berek and the Untamed", }, }, - [961] = { + [973] = { id = "UniqueRing19", name = "Berek's Grip", text = { @@ -8026,7 +8107,7 @@ return { "- Berek and the Untamed", }, }, - [962] = { + [974] = { id = "UniqueRing2", name = "Kaom's Way", text = { @@ -8035,7 +8116,7 @@ return { "to lead his Karui to Wraeclast.", }, }, - [963] = { + [975] = { id = "UniqueRing20", name = "Berek's Respite", text = { @@ -8048,7 +8129,7 @@ return { "- Berek and the Untamed", }, }, - [964] = { + [976] = { id = "UniqueRing21", name = "The Taming", text = { @@ -8061,7 +8142,7 @@ return { "- Berek and the Untamed", }, }, - [965] = { + [977] = { id = "UniqueRing22", name = "Kalandra's Touch", text = { @@ -8069,28 +8150,28 @@ return { "On the other, you have its twin.", }, }, - [966] = { + [978] = { id = "UniqueRing23", name = "Voideye", text = { "The darker the eye, the more diligent the watched.", }, }, - [967] = { + [979] = { id = "UniqueRing23x", name = "Replica Voideye", text = { "\"So close, yet frustratingly distinct. Something more is going on here...\"", }, }, - [968] = { + [980] = { id = "UniqueRing24", name = "Mokou's Embrace", text = { "Fire makes the perfect blossom in the endless night.", }, }, - [969] = { + [981] = { id = "UniqueRing25", name = "Malachai's Artifice", text = { @@ -8099,7 +8180,7 @@ return { "and watch the others break.", }, }, - [970] = { + [982] = { id = "UniqueRing25x", name = "Replica Malachai's Artifice", text = { @@ -8108,14 +8189,14 @@ return { "- Administrator Qotra", }, }, - [971] = { + [983] = { id = "UniqueRing26", name = "Kikazaru", text = { "Hear no evil.", }, }, - [972] = { + [984] = { id = "UniqueRing27", name = "Timetwist", text = { @@ -8124,14 +8205,14 @@ return { "- Doryani, Queen's Thaumaturgist", }, }, - [973] = { + [985] = { id = "UniqueRing28", name = "Winterweave", text = { "Rage is a big part of courage.", }, }, - [974] = { + [986] = { id = "UniqueRing29", name = "Valako's Sign", text = { @@ -8140,14 +8221,14 @@ return { "A title Kaom claimed when he ended Kiloava's bloodline.", }, }, - [975] = { + [987] = { id = "UniqueRing3", name = "Andvarius", text = { "Danger is the price of wealth.", }, }, - [976] = { + [988] = { id = "UniqueRing30", name = "Tasalio's Sign", text = { @@ -8157,7 +8238,7 @@ return { "so that his warriors' axes might rise and fall like the waves.", }, }, - [977] = { + [989] = { id = "UniqueRing30x", name = "Replica Tasalio's Sign", text = { @@ -8165,7 +8246,7 @@ return { "Are these objects actually somehow resisting our efforts?\"", }, }, - [978] = { + [990] = { id = "UniqueRing31", name = "Ngamahu's Sign", text = { @@ -8174,7 +8255,7 @@ return { "Given to Akoya, but inherited by Kaom with the swing of his axe.", }, }, - [979] = { + [991] = { id = "UniqueRing32", name = "Ventor's Gamble", text = { @@ -8184,7 +8265,7 @@ return { "And Ventor met his latest trophy.", }, }, - [980] = { + [992] = { id = "UniqueRing33", name = "Heartbound Loop", text = { @@ -8193,7 +8274,7 @@ return { "fading mind was her broken, shattered scream.", }, }, - [981] = { + [993] = { id = "UniqueRing34", name = "Call of the Brotherhood", text = { @@ -8202,7 +8283,7 @@ return { "across any distance of time or travel.", }, }, - [982] = { + [994] = { id = "UniqueRing35", name = "Brinerot Mark", text = { @@ -8211,7 +8292,7 @@ return { "still wrapped around a severed finger.", }, }, - [983] = { + [995] = { id = "UniqueRing36", name = "Redblade Band", text = { @@ -8220,7 +8301,7 @@ return { "ashes of their father.", }, }, - [984] = { + [996] = { id = "UniqueRing37", name = "Mutewind Seal", text = { @@ -8230,14 +8311,14 @@ return { "The rest do not return at all.", }, }, - [985] = { + [997] = { id = "UniqueRing38", name = "Emberwake", text = { "Leave the world in flames behind you.", }, }, - [986] = { + [998] = { id = "UniqueRing38x", name = "Replica Emberwake", text = { @@ -8246,7 +8327,7 @@ return { "- Lead Researcher Ksaret", }, }, - [987] = { + [999] = { id = "UniqueRing39", name = "The Pariah", text = { @@ -8254,7 +8335,7 @@ return { "soon finds he has none.", }, }, - [988] = { + [1000] = { id = "UniqueRing4", name = "Doedre's Damning", text = { @@ -8262,7 +8343,7 @@ return { "there was only a whirling, black void.", }, }, - [989] = { + [1001] = { id = "UniqueRing40", name = "Essence Worm", text = { @@ -8271,7 +8352,7 @@ return { "- Malachai the Soulless", }, }, - [990] = { + [1002] = { id = "UniqueRing41", name = "Rigwald's Crest", text = { @@ -8280,7 +8361,7 @@ return { "If you cannot tame it, embrace it.", }, }, - [991] = { + [1003] = { id = "UniqueRing42", name = "Praxis", text = { @@ -8290,14 +8371,14 @@ return { "Free thinking leads to free action.", }, }, - [992] = { + [1004] = { id = "UniqueRing43", name = "Valyrium", text = { "They will rise and fall in fire and blood.", }, }, - [993] = { + [1005] = { id = "UniqueRing44", name = "Snakepit", text = { @@ -8305,7 +8386,7 @@ return { "until your blood turns as cold as theirs.", }, }, - [994] = { + [1006] = { id = "UniqueRing45", name = "The Warden's Brand", text = { @@ -8314,7 +8395,7 @@ return { "- Brutus, Warden of Axiom", }, }, - [995] = { + [1007] = { id = "UniqueRing46", name = "Angler's Plait", text = { @@ -8322,21 +8403,21 @@ return { "before he learns it is not fish that he seeks.", }, }, - [996] = { + [1008] = { id = "UniqueRing48", name = "The Hungry Loop", text = { "Be careful where you put your finger.", }, }, - [997] = { + [1009] = { id = "UniqueRing49", name = "Mark of the Elder", text = { "Be not stirred by the Void.", }, }, - [998] = { + [1010] = { id = "UniqueRing4x", name = "Replica Doedre's Damning", text = { @@ -8344,7 +8425,7 @@ return { "resulted when a lead researcher used an epithet in its presence.\"", }, }, - [999] = { + [1011] = { id = "UniqueRing5", name = "Dream Fragments", text = { @@ -8352,14 +8433,14 @@ return { "And awoke its Master.", }, }, - [1000] = { + [1012] = { id = "UniqueRing50", name = "Mark of the Shaper", text = { "Let madness take control.", }, }, - [1001] = { + [1013] = { id = "UniqueRing51", name = "Stormfire", text = { @@ -8367,7 +8448,7 @@ return { "you'll wish the lightning strike had killed you.", }, }, - [1002] = { + [1014] = { id = "UniqueRing52", name = "Mark of Submission", text = { @@ -8375,7 +8456,7 @@ return { "that sacrifices soon welcomed their death.", }, }, - [1003] = { + [1015] = { id = "UniqueRing53a", name = "Ahkeli's Mountain", text = { @@ -8385,7 +8466,7 @@ return { "^8This item can be combined with a Meadow and Valley ring at a Vendor.", }, }, - [1004] = { + [1016] = { id = "UniqueRing53b", name = "Ahkeli's Meadow", text = { @@ -8397,7 +8478,7 @@ return { "^8This item can be combined with a Mountain and Valley ring at a Vendor.", }, }, - [1005] = { + [1017] = { id = "UniqueRing53c", name = "Ahkeli's Valley", text = { @@ -8409,7 +8490,7 @@ return { "^8This item can be combined with a Meadow and Mountain ring at a Vendor.", }, }, - [1006] = { + [1018] = { id = "UniqueRing53d", name = "Uzaza's Mountain", text = { @@ -8420,7 +8501,7 @@ return { "^8This item can be combined with a Meadow and Valley ring at a Vendor.", }, }, - [1007] = { + [1019] = { id = "UniqueRing53e", name = "Uzaza's Meadow", text = { @@ -8431,7 +8512,7 @@ return { "^8This item can be combined with a Mountain and Valley ring at a Vendor.", }, }, - [1008] = { + [1020] = { id = "UniqueRing53f", name = "Uzaza's Valley", text = { @@ -8443,7 +8524,7 @@ return { "^8This item can be combined with a Meadow and Mountain ring at a Vendor.", }, }, - [1009] = { + [1021] = { id = "UniqueRing53g", name = "Putembo's Mountain", text = { @@ -8455,7 +8536,7 @@ return { "^8This item can be combined with a Meadow and Valley ring at a Vendor.", }, }, - [1010] = { + [1022] = { id = "UniqueRing53h", name = "Putembo's Meadow", text = { @@ -8467,7 +8548,7 @@ return { "^8This item can be combined with a Mountain and Valley ring at a Vendor.", }, }, - [1011] = { + [1023] = { id = "UniqueRing53i", name = "Putembo's Valley", text = { @@ -8479,7 +8560,7 @@ return { "^8This item can be combined with a Meadow and Mountain ring at a Vendor.", }, }, - [1012] = { + [1024] = { id = "UniqueRing55", name = "Vivinsect", text = { @@ -8488,7 +8569,7 @@ return { "- Arzaak, Syndicate Researcher", }, }, - [1013] = { + [1025] = { id = "UniqueRing56", name = "Circle of Anguish", text = { @@ -8496,7 +8577,7 @@ return { "My only choice is to strive harder.", }, }, - [1014] = { + [1026] = { id = "UniqueRing57", name = "Circle of Fear", text = { @@ -8504,7 +8585,7 @@ return { "ready to tear me apart for their own gains.", }, }, - [1015] = { + [1027] = { id = "UniqueRing58", name = "Circle of Regret", text = { @@ -8512,7 +8593,7 @@ return { "and others like her, might be kept safe.", }, }, - [1016] = { + [1028] = { id = "UniqueRing59", name = "Circle of Nostalgia", text = { @@ -8520,7 +8601,7 @@ return { "I fight so that the children may remain ignorant.", }, }, - [1017] = { + [1029] = { id = "UniqueRing6", name = "Le Heup of All", text = { @@ -8530,7 +8611,7 @@ return { "Of the many mortal threads", }, }, - [1018] = { + [1030] = { id = "UniqueRing60", name = "Circle of Guilt", text = { @@ -8538,7 +8619,7 @@ return { "I accept my guilt without shame. It is my gift to humanity.", }, }, - [1019] = { + [1031] = { id = "UniqueRing61", name = "Venopuncture", text = { @@ -8546,7 +8627,7 @@ return { "but few have the resolve to attempt it.", }, }, - [1020] = { + [1032] = { id = "UniqueRing62", name = "Icefang Orbit", text = { @@ -8554,49 +8635,49 @@ return { "Trarthan ice snakes must take great care with the volatile substance.", }, }, - [1021] = { + [1033] = { id = "UniqueRing63", name = "Warrior's Legacy", text = { "Make your mark on history.", }, }, - [1022] = { + [1034] = { id = "UniqueRing64", name = "Astral Projector", text = { "The body stands, but the spirit soars.", }, }, - [1023] = { + [1035] = { id = "UniqueRing65", name = "Profane Proxy", text = { "The machines do not hate. They merely serve one who does.", }, }, - [1024] = { + [1036] = { id = "UniqueRing66", name = "Storm Secret", text = { "Lightning lives in an endless circle.", }, }, - [1025] = { + [1037] = { id = "UniqueRing67", name = "The Highwayman", text = { "Somebody does have to get hurt.", }, }, - [1026] = { + [1038] = { id = "UniqueRing68", name = "Fated End", text = { "All roads lead to that destined doom.", }, }, - [1027] = { + [1039] = { id = "UniqueRing69", name = "Blackflame", text = { @@ -8604,7 +8685,7 @@ return { "by whose light night is borne.", }, }, - [1028] = { + [1040] = { id = "UniqueRing7", name = "Thief's Torment", text = { @@ -8617,7 +8698,7 @@ return { "A blessing is often a curse.", }, }, - [1029] = { + [1041] = { id = "UniqueRing70", name = "Rotblood Promise", text = { @@ -8625,7 +8706,7 @@ return { "Then carry it far and wide.", }, }, - [1030] = { + [1042] = { id = "UniqueRing71", name = "Triumvirate Authority", text = { @@ -8633,7 +8714,7 @@ return { "granted one boon by each serpentine head.", }, }, - [1031] = { + [1043] = { id = "UniqueRing72", name = "Polaric Devastation", text = { @@ -8641,7 +8722,7 @@ return { "sank eternally into crushing darkness.", }, }, - [1032] = { + [1044] = { id = "UniqueRing73", name = "Call of the Void", text = { @@ -8649,7 +8730,7 @@ return { "can the cold truth of existence take hold.", }, }, - [1033] = { + [1045] = { id = "UniqueRing74", name = "Nimis", text = { @@ -8657,7 +8738,7 @@ return { "too much of nothing is just as tough.", }, }, - [1034] = { + [1046] = { id = "UniqueRing75", name = "Anathema", text = { @@ -8666,7 +8747,7 @@ return { "Unleashing a litany of pain upon the world.", }, }, - [1035] = { + [1047] = { id = "UniqueRing76", name = "Original Sin", text = { @@ -8674,7 +8755,7 @@ return { "but on the vilification and hatred of another.", }, }, - [1036] = { + [1048] = { id = "UniqueRing77", name = "Soulbound", text = { @@ -8684,14 +8765,14 @@ return { "- High Priest Atazek", }, }, - [1037] = { + [1049] = { id = "UniqueRing78", name = "Tawhanuku's Timing", text = { "The soul still beats, even when the heart never did.", }, }, - [1038] = { + [1050] = { id = "UniqueRing79", name = "Honoured Alliance", text = { @@ -8699,7 +8780,7 @@ return { "but lasts a lifetime... and beyond.", }, }, - [1039] = { + [1051] = { id = "UniqueRing80", name = "Ixchel's Temptation", text = { @@ -8707,7 +8788,7 @@ return { "Our own imaginations ensnare us.", }, }, - [1040] = { + [1052] = { id = "UniqueRing81", name = "Grattus Signet", text = { @@ -8715,7 +8796,7 @@ return { "slowly turned his ring, all cowered before him.", }, }, - [1041] = { + [1053] = { id = "UniqueRing82", name = "Circle of Ambition", text = { @@ -8723,14 +8804,14 @@ return { "The day is coming... I have seen it.", }, }, - [1042] = { + [1054] = { id = "UniqueRing83", name = "The Hateful Accuser", text = { "In truth, they point the finger at themselves.", }, }, - [1043] = { + [1055] = { id = "UniqueRing84", name = "The Selfish Shepherd", text = { @@ -8738,14 +8819,14 @@ return { "discover how much you truly mean.", }, }, - [1044] = { + [1056] = { id = "UniqueRing85", name = "The Queller of Minds", text = { "Quiet thy troubled soul. Think not. Just pray... to me.", }, }, - [1045] = { + [1057] = { id = "UniqueRing86", name = "Coiling Whisper", text = { @@ -8753,7 +8834,7 @@ return { "My promises were hollow ever after.", }, }, - [1046] = { + [1058] = { id = "UniqueRing87", name = "Enmity's Embrace", text = { @@ -8763,7 +8844,7 @@ return { "They know.", }, }, - [1047] = { + [1059] = { id = "UniqueRing88", name = "Betrayal's Sting", text = { @@ -8771,7 +8852,7 @@ return { "It is the smile, the nod... the handshake... of a former friend.", }, }, - [1048] = { + [1060] = { id = "UniqueRing9", name = "Lori's Lantern", text = { @@ -8781,7 +8862,7 @@ return { "and proof against hate.", }, }, - [1049] = { + [1061] = { id = "UniqueRing90", name = "Prospero's Protection", text = { @@ -8792,7 +8873,7 @@ return { "- Emperor Chitus, to Ondar", }, }, - [1050] = { + [1062] = { id = "UniqueRing91", name = "Squirming Terror", text = { @@ -8800,14 +8881,82 @@ return { "bursting forth from the flesh.", }, }, - [1051] = { + [1063] = { + id = "UniqueRing92", + name = "The Unseen Hue", + text = { + "They seek that which lies before them, shining", + "Yours is a special curse, nipping at your heels", + "Driving you on long past agony and despair", + }, + }, + [1064] = { + id = "UniqueRing93", + name = "Woespike", + text = { + "The old wound lurks deep within,", + "never healing, never relenting,", + "making every smile half-hearted.", + }, + }, + [1065] = { + id = "UniqueRing94a", + name = "The Will of Tul", + text = { + "They hide in deep places, and hidden places,", + "but stillness will find them... and bury them.", + }, + }, + [1066] = { + id = "UniqueRing94b", + name = "The Will of Xoph", + text = { + "They dance and scream under the Broken Sun", + "as spiraling oblivion deepens into flame.", + }, + }, + [1067] = { + id = "UniqueRing94c", + name = "The Will of Esh", + text = { + "They whisper in the dark, building towers of", + "mindless thought that seek a hollow truth.", + }, + }, + [1068] = { + id = "UniqueRing94d", + name = "The Will of Uul-Netol", + text = { + "They move and coil, gripped by painful ecstasy,", + "all meaning long since lost to dead-eyed lust.", + }, + }, + [1069] = { + id = "UniqueRing94e", + name = "The Sundered Will", + text = { + "They dream no longer, strive no longer,", + "feel no longer. They dream only of", + "continuing to dream, and know not why.", + }, + }, + [1070] = { + id = "UniqueRing95", + name = "Lost Unity", + text = { + "All gates are closed.", + "All dreams are silenced.", + "What could have been...", + }, + }, + [1071] = { id = "UniqueScepter17", name = "Breath of the Council", text = { "Breathe deep, and give yourself over to eternity.", }, }, - [1052] = { + [1072] = { id = "UniqueSceptre1", name = "The Supreme Truth", text = { @@ -8815,7 +8964,7 @@ return { "grab truth by the throat and shape it as you wish.", }, }, - [1053] = { + [1073] = { id = "UniqueSceptre10", name = "Death's Hand", text = { @@ -8823,7 +8972,7 @@ return { "- Karui Proverb", }, }, - [1054] = { + [1074] = { id = "UniqueSceptre11", name = "Spine of the First Claimant", text = { @@ -8833,7 +8982,7 @@ return { "To mark the occasion, Izaro had the Champion's remains gilded.", }, }, - [1055] = { + [1075] = { id = "UniqueSceptre13", name = "Singularity", text = { @@ -8841,7 +8990,7 @@ return { "We just expedite the process.", }, }, - [1056] = { + [1076] = { id = "UniqueSceptre14", name = "Bitterdream", text = { @@ -8850,7 +8999,7 @@ return { "Be still.", }, }, - [1057] = { + [1077] = { id = "UniqueSceptre14x", name = "Replica Bitterdream", text = { @@ -8858,14 +9007,14 @@ return { "Convinced this assignment is retribution from my superior...\"", }, }, - [1058] = { + [1078] = { id = "UniqueSceptre16", name = "Axiom Perpetuum", text = { "The worst of Axiom were imprisoned by more than iron.", }, }, - [1059] = { + [1079] = { id = "UniqueSceptre17", name = "Balefire", text = { @@ -8874,7 +9023,7 @@ return { "was a memory of that which was gone, a whisper of deeds undone.", }, }, - [1060] = { + [1080] = { id = "UniqueSceptre18", name = "Augyre", text = { @@ -8882,7 +9031,7 @@ return { "the safest place to be is in the centre.", }, }, - [1061] = { + [1081] = { id = "UniqueSceptre19", name = "Earendel's Embrace", text = { @@ -8892,7 +9041,7 @@ return { "some will go up, some down, filled with misery.", }, }, - [1062] = { + [1082] = { id = "UniqueSceptre19x", name = "Replica Earendel's Embrace", text = { @@ -8901,7 +9050,7 @@ return { "- Researcher Arn", }, }, - [1063] = { + [1083] = { id = "UniqueSceptre2", name = "Nycta's Lantern", text = { @@ -8910,14 +9059,14 @@ return { "and so did hers.", }, }, - [1064] = { + [1084] = { id = "UniqueSceptre20", name = "Cerberus Limb", text = { "The greatest of guardians make the greatest of sacrifices.", }, }, - [1065] = { + [1085] = { id = "UniqueSceptre21", name = "Nebulis", text = { @@ -8925,7 +9074,7 @@ return { "should one have the fortitude to grasp them.", }, }, - [1066] = { + [1086] = { id = "UniqueSceptre21x", name = "Replica Nebulis", text = { @@ -8933,35 +9082,35 @@ return { "to make it work. A jewel, a talisman, an armour... or the Font...\"", }, }, - [1067] = { + [1087] = { id = "UniqueSceptre22", name = "Sign of the Sin Eater", text = { "A secret few among the Templars grant absolution by bearing the guilt of others.", }, }, - [1068] = { + [1088] = { id = "UniqueSceptre23", name = "The Black Cane", text = { "Lead the army of the damned from the front.", }, }, - [1069] = { + [1089] = { id = "UniqueSceptre24", name = "Yaomac's Accord", text = { "Their three serpentine heads found unity in balance.", }, }, - [1070] = { + [1090] = { id = "UniqueSceptre25", name = "Maata's Teaching", text = { "What we give to others, we also give to ourselves.", }, }, - [1071] = { + [1091] = { id = "UniqueSceptre26", name = "Cadigan's Authority", text = { @@ -8970,14 +9119,14 @@ return { "continually leveraging the power of each against the next.", }, }, - [1072] = { + [1092] = { id = "UniqueSceptre3", name = "Mon'tregul's Grasp", text = { "With death as my ally, all the world is within my grasp.", }, }, - [1073] = { + [1093] = { id = "UniqueSceptre6", name = "Doon Cuebiyari", text = { @@ -8987,7 +9136,7 @@ return { "Through endless storms of fervent devotion.", }, }, - [1074] = { + [1094] = { id = "UniqueSceptre7", name = "Doryani's Catalyst", text = { @@ -8995,7 +9144,7 @@ return { "or death for all. It was a risk Doryani was willing to take.", }, }, - [1075] = { + [1095] = { id = "UniqueSceptre8", name = "The Dark Seer", text = { @@ -9004,7 +9153,7 @@ return { "Until we are one in shadow.", }, }, - [1076] = { + [1096] = { id = "UniqueSceptre9", name = "Brutus' Lead Sprinkler", text = { @@ -9013,14 +9162,14 @@ return { "- Brutus, Warden of Axiom", }, }, - [1077] = { + [1097] = { id = "UniqueShieldDex1", name = "Kaltensoul", text = { "Cold, miserable and alone... but alive.", }, }, - [1078] = { + [1098] = { id = "UniqueShieldDex2", name = "Crest of Perandus", text = { @@ -9028,7 +9177,7 @@ return { "- Perandus family motto", }, }, - [1079] = { + [1099] = { id = "UniqueShieldDex3", name = "Atziri's Reflection", text = { @@ -9036,14 +9185,14 @@ return { "- Atziri, Queen of the Vaal", }, }, - [1080] = { + [1100] = { id = "UniqueShieldDex4", name = "Thirst for Horrors", text = { "An eye for an eye. A curse for a curse.", }, }, - [1081] = { + [1101] = { id = "UniqueShieldDex5", name = "Thousand Teeth Temu", text = { @@ -9051,7 +9200,7 @@ return { "All was woe that seem'd but gladness.", }, }, - [1082] = { + [1102] = { id = "UniqueShieldDex6", name = "Great Old One's Ward", text = { @@ -9059,14 +9208,14 @@ return { "compared to the horrors we haven't.", }, }, - [1083] = { + [1103] = { id = "UniqueShieldDex7", name = "Mutewind Pennant", text = { "Embrace the snow or be buried.", }, }, - [1084] = { + [1104] = { id = "UniqueShieldDex8", name = "Mistwall", text = { @@ -9074,7 +9223,7 @@ return { "Stiff as a feather.", }, }, - [1085] = { + [1105] = { id = "UniqueShieldDex8x", name = "Replica Mistwall", text = { @@ -9083,14 +9232,14 @@ return { "- Lead Researcher Ksaret", }, }, - [1086] = { + [1106] = { id = "UniqueShieldDex9", name = "Kiloava's Bluster", text = { "Not even the storm knows when lightning will strike.", }, }, - [1087] = { + [1107] = { id = "UniqueShieldDexInt1", name = "Jaws of Agony", text = { @@ -9098,7 +9247,7 @@ return { "Agony slowly dominates the will to live.", }, }, - [1088] = { + [1108] = { id = "UniqueShieldDexInt2", name = "Maligaro's Lens", text = { @@ -9109,7 +9258,7 @@ return { "- Inquisitor Maligaro", }, }, - [1089] = { + [1109] = { id = "UniqueShieldDexInt3", name = "Glitterdisc", text = { @@ -9117,14 +9266,14 @@ return { "resulted in some surprising material discoveries.", }, }, - [1090] = { + [1110] = { id = "UniqueShieldDexInt4", name = "Leper's Alms", text = { "One's burden is another's gift.", }, }, - [1091] = { + [1111] = { id = "UniqueShieldDexInt5", name = "Zeel's Amplifier", text = { @@ -9134,7 +9283,7 @@ return { "- Zeel, Vaal Tinkerer", }, }, - [1092] = { + [1112] = { id = "UniqueShieldDexInt6", name = "Perepiteia", text = { @@ -9142,21 +9291,21 @@ return { "but Oriathan scholars dare not open it to find out why.", }, }, - [1093] = { + [1113] = { id = "UniqueShieldDexInt7", name = "Font of Thunder", text = { "The lightning fears not the flame.", }, }, - [1094] = { + [1114] = { id = "UniqueShieldDexInt8", name = "Qotra's Regulator", text = { "Horrific experiments with corrupted flesh require careful management.", }, }, - [1095] = { + [1115] = { id = "UniqueShieldInt1", name = "Rathpith Globe", text = { @@ -9164,14 +9313,14 @@ return { "and left a mountain of twitching dead.", }, }, - [1096] = { + [1116] = { id = "UniqueShieldInt10", name = "Light of Lunaris", text = { "Without night, there can be no day.", }, }, - [1097] = { + [1117] = { id = "UniqueShieldInt11", name = "Apep's Slumber", text = { @@ -9181,14 +9330,14 @@ return { "^8This item can be transformed on the Altar of Sacrifice along with Vial of Awakening", }, }, - [1098] = { + [1118] = { id = "UniqueShieldInt12", name = "Apep's Supremacy", text = { "Give him your body, and your burdens will follow.", }, }, - [1099] = { + [1119] = { id = "UniqueShieldInt13", name = "The Eternal Apple", text = { @@ -9198,7 +9347,7 @@ return { "The idea, and our ideals, take root.", }, }, - [1100] = { + [1120] = { id = "UniqueShieldInt14", name = "Bitterbind Point", text = { @@ -9208,14 +9357,14 @@ return { "for our spirits to become entangled.", }, }, - [1101] = { + [1121] = { id = "UniqueShieldInt15", name = "Manastorm", text = { "Fear not the fury of the storm.", }, }, - [1102] = { + [1122] = { id = "UniqueShieldInt16", name = "The Scales of Justice", text = { @@ -9223,7 +9372,7 @@ return { "and perhaps you shall be found worthy.", }, }, - [1103] = { + [1123] = { id = "UniqueShieldInt2", name = "Whakatutuki o Matua", text = { @@ -9231,7 +9380,7 @@ return { "The least I can do is carry you through death.", }, }, - [1104] = { + [1124] = { id = "UniqueShieldInt4", name = "Sentari's Answer", text = { @@ -9239,14 +9388,14 @@ return { "Open your mind and you will see the cracks in your enemy's plans.", }, }, - [1105] = { + [1125] = { id = "UniqueShieldInt5", name = "Brinerot Flag", text = { "The lords of the sea bow to no one.", }, }, - [1106] = { + [1126] = { id = "UniqueShieldInt6", name = "Kongming's Stratagem", text = { @@ -9256,7 +9405,7 @@ return { "while the ignorant fight to win.", }, }, - [1107] = { + [1127] = { id = "UniqueShieldInt7", name = "Malachai's Loop", text = { @@ -9264,18 +9413,16 @@ return { "It is our fragile reality that imposes boundaries.", }, }, - [1108] = { + [1128] = { id = "UniqueShieldInt8", name = "Esh's Mirror", text = { "She looked upon her reflection", "and trembled, and shook,", "until she was not what she saw.", - "", - "^8This item can be transformed with a Blessing of Esh", }, }, - [1109] = { + [1129] = { id = "UniqueShieldInt9", name = "Esh's Visage", text = { @@ -9284,7 +9431,7 @@ return { "And she was still.", }, }, - [1110] = { + [1130] = { id = "UniqueShieldStr1", name = "Lioneye's Remorse", text = { @@ -9292,7 +9439,7 @@ return { "to his arrogance... and his fate.", }, }, - [1111] = { + [1131] = { id = "UniqueShieldStr10", name = "Tukohama's Fortress", text = { @@ -9300,7 +9447,7 @@ return { "So he carried his fortress to the fight.", }, }, - [1112] = { + [1132] = { id = "UniqueShieldStr10x", name = "Replica Tukohama's Fortress", text = { @@ -9308,7 +9455,7 @@ return { "Prototype #10 bore unexpectedly positive results.\"", }, }, - [1113] = { + [1133] = { id = "UniqueShieldStr11", name = "Ahn's Heritage", text = { @@ -9317,7 +9464,7 @@ return { "- Icius Perandus, Antiquities Collection, Item 46", }, }, - [1114] = { + [1134] = { id = "UniqueShieldStr12", name = "Magna Eclipsis", text = { @@ -9327,7 +9474,7 @@ return { "'Neath the midday sun, the night was reborn.", }, }, - [1115] = { + [1135] = { id = "UniqueShieldStr13", name = "Dawnbreaker", text = { @@ -9336,7 +9483,7 @@ return { "- Maxarius, the first High Templar", }, }, - [1116] = { + [1136] = { id = "UniqueShieldStr14", name = "Svalinn", text = { @@ -9344,7 +9491,16 @@ return { "but it was the smiths who delved into the secrets it held.", }, }, - [1117] = { + [1137] = { + id = "UniqueShieldStr15", + name = "Cowards' Wail", + text = { + "\"A tale-woman passed through here not long ago.", + "Taught us a thing or two. We're not going to execute", + "you for what you've done... no. You've a debt to repay.\"", + }, + }, + [1138] = { id = "UniqueShieldStr2", name = "Titucus Span", text = { @@ -9354,7 +9510,7 @@ return { "For rout of foe, for turn of tide.", }, }, - [1118] = { + [1139] = { id = "UniqueShieldStr3", name = "Chernobog's Pillar", text = { @@ -9364,14 +9520,14 @@ return { "There is no flame", }, }, - [1119] = { + [1140] = { id = "UniqueShieldStr4", name = "Redblade Banner", text = { "Blood shed is blood shared.", }, }, - [1120] = { + [1141] = { id = "UniqueShieldStr5", name = "Trolltimber Spire", text = { @@ -9380,25 +9536,23 @@ return { "the other has sprouted fresh roots!", }, }, - [1121] = { + [1142] = { id = "UniqueShieldStr7", name = "Lycosidae", text = { "A true predator does not chase; It waits.", }, }, - [1122] = { + [1143] = { id = "UniqueShieldStr8", name = "The Anticipation", text = { "We are within her reach,", "and when the time is right,", "she will reach into us.", - "", - "^8This item can be transformed with a Blessing of Uul-Netol", }, }, - [1123] = { + [1144] = { id = "UniqueShieldStr9", name = "The Surrender", text = { @@ -9407,7 +9561,7 @@ return { "and so we give up our flesh.", }, }, - [1124] = { + [1145] = { id = "UniqueShieldStrDex1", name = "Daresso's Courage", text = { @@ -9415,14 +9569,22 @@ return { "Yet even accursed treachery failed to steal the champion's victory.", }, }, - [1125] = { + [1146] = { + id = "UniqueShieldStrDex16", + name = "Bitter Instinct", + text = { + "We isolate ourselves to hide our long-held pain.", + "We lash out, when all we want is an end to loneliness.", + }, + }, + [1147] = { id = "UniqueShieldStrDex2", name = "Wheel of the Stormsail", text = { "Doomed to plunder forever.", }, }, - [1126] = { + [1148] = { id = "UniqueShieldStrDex3", name = "The Deep One's Hide", text = { @@ -9430,7 +9592,7 @@ return { "the greater the beast that hunts it.", }, }, - [1127] = { + [1149] = { id = "UniqueShieldStrDex4", name = "Vix Lunaris", text = { @@ -9438,14 +9600,14 @@ return { "Quench the holy light.", }, }, - [1128] = { + [1150] = { id = "UniqueShieldStrDex5", name = "Shattershard", text = { "Fragile, explosive, and punishing.", }, }, - [1129] = { + [1151] = { id = "UniqueShieldStrDex6", name = "The Ghastly Theatre", text = { @@ -9453,7 +9615,7 @@ return { "beguile them. Strike when they least expect it.", }, }, - [1130] = { + [1152] = { id = "UniqueShieldStrDex7", name = "The Squire", text = { @@ -9461,14 +9623,14 @@ return { "they empower the strong.", }, }, - [1131] = { + [1153] = { id = "UniqueShieldStrDex8", name = "The Oppressor", text = { "Every clash leaves one more scar.", }, }, - [1132] = { + [1154] = { id = "UniqueShieldStrDex9", name = "The Flawed Refuge", text = { @@ -9476,20 +9638,20 @@ return { "against the Winter of the World.", }, }, - [1133] = { + [1155] = { id = "UniqueShieldStrInt1", name = "Saffell's Frame", text = { "A swift mind solves problems before they occur.", }, }, - [1134] = { + [1156] = { id = "UniqueShieldStrInt10", name = "The Unshattered Will", text = { }, }, - [1135] = { + [1157] = { id = "UniqueShieldStrInt11", name = "Invictus Solaris", text = { @@ -9497,7 +9659,7 @@ return { "The Solaris Vanguard know only glory.", }, }, - [1136] = { + [1158] = { id = "UniqueShieldStrInt12", name = "Unyielding Flame", text = { @@ -9505,7 +9667,7 @@ return { "before he can act as a beacon of light.", }, }, - [1137] = { + [1159] = { id = "UniqueShieldStrInt13", name = "Emperor's Vigilance", text = { @@ -9513,13 +9675,13 @@ return { "risks so that greater dangers could be averted.", }, }, - [1138] = { + [1160] = { id = "UniqueShieldStrInt14", name = "The Immortal Will", text = { }, }, - [1139] = { + [1161] = { id = "UniqueShieldStrInt15", name = "Mahuxotl's Machination", text = { @@ -9527,21 +9689,21 @@ return { "darkest secrets of the Vaal... at the same time.", }, }, - [1140] = { + [1162] = { id = "UniqueShieldStrInt2", name = "Prism Guardian", text = { "When blood is paid, the weak think twice.", }, }, - [1141] = { + [1163] = { id = "UniqueShieldStrInt3", name = "The Oak", text = { "From death springs life.", }, }, - [1142] = { + [1164] = { id = "UniqueShieldStrInt4", name = "Aegis Aurora", text = { @@ -9549,7 +9711,7 @@ return { "the aurora evokes both awe and power.", }, }, - [1143] = { + [1165] = { id = "UniqueShieldStrInt5", name = "Rise of the Phoenix", text = { @@ -9557,21 +9719,21 @@ return { "for I am the phoenix, forever radiant in glory.", }, }, - [1144] = { + [1166] = { id = "UniqueShieldStrInt8", name = "Broken Faith", text = { "Be not blinded by the light.", }, }, - [1145] = { + [1167] = { id = "UniqueShieldStrInt9", name = "Victario's Charity", text = { "A man's life is the greatest gift he can give.", }, }, - [1146] = { + [1168] = { id = "UniqueShieldStrInt9x", name = "Replica Victario's Charity", text = { @@ -9580,7 +9742,7 @@ return { "- Administrator Qotra", }, }, - [1147] = { + [1169] = { id = "UniqueStaff1", name = "The Searing Touch", text = { @@ -9588,14 +9750,14 @@ return { "Rule a world, bathed in flame.", }, }, - [1148] = { + [1170] = { id = "UniqueStaff10", name = "Sire of Shards", text = { "That which was broken may yet break.", }, }, - [1149] = { + [1171] = { id = "UniqueStaff11", name = "Tremor Rod", text = { @@ -9604,7 +9766,7 @@ return { "and execute them - twice.", }, }, - [1150] = { + [1172] = { id = "UniqueStaff12", name = "The Whispering Ice", text = { @@ -9612,7 +9774,7 @@ return { "the cracks through which the Nightmare crawls.", }, }, - [1151] = { + [1173] = { id = "UniqueStaff13", name = "Realm Ender", text = { @@ -9622,7 +9784,7 @@ return { "- Archbishop Geofri", }, }, - [1152] = { + [1174] = { id = "UniqueStaff14", name = "The Stormwall", text = { @@ -9630,7 +9792,7 @@ return { "the safest place to be is the centre.", }, }, - [1153] = { + [1175] = { id = "UniqueStaff15", name = "Femurs of the Saints", text = { @@ -9639,7 +9801,7 @@ return { "- Kadavrus, Surgeon to the Umbra", }, }, - [1154] = { + [1176] = { id = "UniqueStaff16", name = "Xirgil's Crank", text = { @@ -9650,7 +9812,7 @@ return { "- Xirgil, Trapbuilder's final words.", }, }, - [1155] = { + [1177] = { id = "UniqueStaff17", name = "Duskdawn", text = { @@ -9661,7 +9823,7 @@ return { "- Archbishop Geofri", }, }, - [1156] = { + [1178] = { id = "UniqueStaff17x", name = "Replica Duskdawn", text = { @@ -9669,7 +9831,7 @@ return { "Prototype #77. It is, however, the closest we've come to perfection.\"", }, }, - [1157] = { + [1179] = { id = "UniqueStaff18", name = "Martyr of Innocence", text = { @@ -9677,7 +9839,7 @@ return { "Let the fires cleanse you of your sins.", }, }, - [1158] = { + [1180] = { id = "UniqueStaff2", name = "Taryn's Shiver", text = { @@ -9687,13 +9849,13 @@ return { "Shiver in pain at the frozen dawn.", }, }, - [1159] = { + [1181] = { id = "UniqueStaff20", name = "The Enmity Divine", text = { }, }, - [1160] = { + [1182] = { id = "UniqueStaff21", name = "Cane of Unravelling", text = { @@ -9703,7 +9865,7 @@ return { "- Doryani, Queen's Thaumaturgist", }, }, - [1161] = { + [1183] = { id = "UniqueStaff22", name = "Disintegrator", text = { @@ -9711,14 +9873,14 @@ return { "between creator and destroyer.", }, }, - [1162] = { + [1184] = { id = "UniqueStaff23", name = "Soulwrest", text = { "Death is but the start of your servitude.", }, }, - [1163] = { + [1185] = { id = "UniqueStaff24", name = "The Grey Spire", text = { @@ -9726,20 +9888,20 @@ return { "Just simpler motivations.", }, }, - [1164] = { + [1186] = { id = "UniqueStaff25", name = "Witchhunter's Judgment", text = { "The pyre is never wasted on just one heretic.", }, }, - [1165] = { + [1187] = { id = "UniqueStaff26", name = "The Yielding Mortality", text = { }, }, - [1166] = { + [1188] = { id = "UniqueStaff27", name = "The Fulcrum", text = { @@ -9747,21 +9909,21 @@ return { "the master must achieve perfect balance.", }, }, - [1167] = { + [1189] = { id = "UniqueStaff28", name = "Atziri's Rule", text = { "Bow before her... or suffer the most gruelling death imaginable.", }, }, - [1168] = { + [1190] = { id = "UniqueStaff29", name = "Cane of Kulemak", text = { "Stolen power is still power.", }, }, - [1169] = { + [1191] = { id = "UniqueStaff3", name = "Pillar of the Caged God", text = { @@ -9771,7 +9933,7 @@ return { "Deft as the needle doubt", }, }, - [1170] = { + [1192] = { id = "UniqueStaff30", name = "The Annihilating Light", text = { @@ -9779,7 +9941,7 @@ return { "than the scintillating light of utter clarity.", }, }, - [1171] = { + [1193] = { id = "UniqueStaff31", name = "The Winds of Fate", text = { @@ -9787,7 +9949,7 @@ return { "The whim of the cosmos.", }, }, - [1172] = { + [1194] = { id = "UniqueStaff32", name = "The Geomantic Gyre", text = { @@ -9795,7 +9957,7 @@ return { "one that could safely hold the first unearthed virtue gem.", }, }, - [1173] = { + [1195] = { id = "UniqueStaff33", name = "The Burden of Shadows", text = { @@ -9803,7 +9965,7 @@ return { "Every moment is a struggle to exist.", }, }, - [1174] = { + [1196] = { id = "UniqueStaff35", name = "Legacy of the Rose", text = { @@ -9813,7 +9975,16 @@ return { "but I will never leave your side.", }, }, - [1175] = { + [1197] = { + id = "UniqueStaff36", + name = "Jiquani's Potential", + text = { + "\"I have risked everything. My position, my ambition, my", + "very life. There has to be a way to save our people. If we", + "must, let us tear apart the very foundations of reality!\"", + }, + }, + [1198] = { id = "UniqueStaff4", name = "Mirebough", text = { @@ -9821,7 +9992,7 @@ return { "- Old Ezomyte saying.", }, }, - [1176] = { + [1199] = { id = "UniqueStaff4x", name = "Replica Fencoil", text = { @@ -9829,7 +10000,7 @@ return { "still eludes me. Perhaps if I attach some string and a hook...\"", }, }, - [1177] = { + [1200] = { id = "UniqueStaff5", name = "Dying Breath", text = { @@ -9839,7 +10010,7 @@ return { "To listen.", }, }, - [1178] = { + [1201] = { id = "UniqueStaff6", name = "Pledge of Hands", text = { @@ -9847,7 +10018,7 @@ return { "- Jaetai, Queen's Advisor", }, }, - [1179] = { + [1202] = { id = "UniqueStaff7", name = "Hegemony's Era", text = { @@ -9856,21 +10027,21 @@ return { "And a tenacious sense of justice.", }, }, - [1180] = { + [1203] = { id = "UniqueStaff8", name = "Agnerod East", text = { "One for each corner of the great Vinktar Square.", }, }, - [1181] = { + [1204] = { id = "UniqueStaff9", name = "The Blood Thorn", text = { "Touch not the thorn, for only blood and pain await.", }, }, - [1182] = { + [1205] = { id = "UniqueStaff9x", name = "Replica Blood Thorn", text = { @@ -9878,7 +10049,7 @@ return { "What logic lies beneath the veil of reality?\"", }, }, - [1183] = { + [1206] = { id = "UniqueStrDexHelmet1", name = "The Peregrine", text = { @@ -9886,7 +10057,7 @@ return { "We travel to fulfill.", }, }, - [1184] = { + [1207] = { id = "UniqueStrHelmet2", name = "Hrimnor's Resolve", text = { @@ -9894,7 +10065,7 @@ return { "but his heart burned for vengeance.", }, }, - [1185] = { + [1208] = { id = "UniqueTalisman1", name = "Night's Hold", text = { @@ -9904,7 +10075,7 @@ return { "seek shelter from their grasp until daybreak.", }, }, - [1186] = { + [1209] = { id = "UniqueTalisman2", name = "Blightwell", text = { @@ -9914,7 +10085,7 @@ return { "never to return, and the waters turned sour.", }, }, - [1187] = { + [1210] = { id = "UniqueTalisman3", name = "Natural Hierarchy", text = { @@ -9924,7 +10095,7 @@ return { "and pray we never learn of what comes next.", }, }, - [1188] = { + [1211] = { id = "UniqueTalisman4", name = "Rigwald's Curse", text = { @@ -9934,7 +10105,7 @@ return { "And now I must live with that terrible knowledge.", }, }, - [1189] = { + [1212] = { id = "UniqueTalisman5", name = "Eyes of the Greatwolf", text = { @@ -9944,7 +10115,7 @@ return { "And will change the world through me.", }, }, - [1190] = { + [1213] = { id = "UniqueTincture1", name = "Sap of the Seasons", text = { @@ -9952,7 +10123,7 @@ return { "waiting only for the right moment.", }, }, - [1191] = { + [1214] = { id = "UniqueTincture2", name = "Mightblood Ire", text = { @@ -9960,28 +10131,28 @@ return { "ready to erupt at any provocation.", }, }, - [1192] = { + [1215] = { id = "UniqueTincture3", name = "Wildfire Phloem", text = { "New life will follow, but first come the flames.", }, }, - [1193] = { + [1216] = { id = "UniqueTincture4", name = "The Battle Within", text = { "The struggle for balance never ends.", }, }, - [1194] = { + [1217] = { id = "UniqueTincture5", name = "Grasping Nightshade", text = { "A virulent brew of death and decay.", }, }, - [1195] = { + [1218] = { id = "UniqueTwoHandAce2", name = "Reaper's Pursuit", text = { @@ -9989,7 +10160,7 @@ return { "Death collects you in the end.", }, }, - [1196] = { + [1219] = { id = "UniqueTwoHandAxe1", name = "Kaom's Primacy", text = { @@ -9997,24 +10168,22 @@ return { "leaders until the others leapt to join his cause.", }, }, - [1197] = { + [1220] = { id = "UniqueTwoHandAxe10", name = "Hezmana's Bloodlust", text = { "When a craving cannot be sated, any source will do.", }, }, - [1198] = { + [1221] = { id = "UniqueTwoHandAxe11", name = "Uul-Netol's Kiss", text = { "We feel the Mother's love", "and beg to return to her womb.", - "", - "^8This item can be transformed with a Blessing of Uul-Netol", }, }, - [1199] = { + [1222] = { id = "UniqueTwoHandAxe12", name = "Uul-Netol's Embrace", text = { @@ -10022,7 +10191,7 @@ return { "and so we turn to dust.", }, }, - [1200] = { + [1223] = { id = "UniqueTwoHandAxe13", name = "Kitava's Feast", text = { @@ -10032,7 +10201,7 @@ return { "he would devour every soul in Hinekora's domain.", }, }, - [1201] = { + [1224] = { id = "UniqueTwoHandAxe14", name = "Ngamahu's Flame", text = { @@ -10041,7 +10210,7 @@ return { "- Fairgraves, Renowned Explorer", }, }, - [1202] = { + [1225] = { id = "UniqueTwoHandAxe15", name = "Debeon's Dirge", text = { @@ -10051,7 +10220,7 @@ return { "you know death will follow soon.", }, }, - [1203] = { + [1226] = { id = "UniqueTwoHandAxe16", name = "Sinvicta's Mettle", text = { @@ -10060,14 +10229,14 @@ return { "until only emptiness remains.", }, }, - [1204] = { + [1227] = { id = "UniqueTwoHandAxe17", name = "Starcaller", text = { "What began in the stars was settled in blood, beneath an uncaring sky.", }, }, - [1205] = { + [1228] = { id = "UniqueTwoHandAxe3", name = "The Cauteriser", text = { @@ -10075,7 +10244,7 @@ return { "of sundered, severed, missing things.", }, }, - [1206] = { + [1229] = { id = "UniqueTwoHandAxe4", name = "The Blood Reaper", text = { @@ -10084,7 +10253,7 @@ return { "Both life and land feel the thirst.", }, }, - [1207] = { + [1230] = { id = "UniqueTwoHandAxe5", name = "Wideswing", text = { @@ -10092,14 +10261,14 @@ return { "of seven men in a single cleave.", }, }, - [1208] = { + [1231] = { id = "UniqueTwoHandAxe6", name = "Wings of Entropy", text = { "Fire and Anarchy are the most reliable agents of change.", }, }, - [1209] = { + [1232] = { id = "UniqueTwoHandAxe6x", name = "Replica Wings of Entropy", text = { @@ -10107,7 +10276,7 @@ return { "power or speed when striking.\"", }, }, - [1210] = { + [1233] = { id = "UniqueTwoHandAxe7", name = "Atziri's Disfavour", text = { @@ -10115,7 +10284,7 @@ return { "- Atziri, Queen of the Vaal", }, }, - [1211] = { + [1234] = { id = "UniqueTwoHandAxe8", name = "The Harvest", text = { @@ -10124,7 +10293,7 @@ return { "Don't waste a drop.", }, }, - [1212] = { + [1235] = { id = "UniqueTwoHandAxe8x", name = "Replica Harvest", text = { @@ -10133,7 +10302,7 @@ return { "- Researcher Graven", }, }, - [1213] = { + [1236] = { id = "UniqueTwoHandAxe9", name = "Kingmaker", text = { @@ -10143,7 +10312,7 @@ return { "then forged anew.", }, }, - [1214] = { + [1237] = { id = "UniqueTwoHandMace1", name = "Hrimnor's Dirge", text = { @@ -10152,7 +10321,7 @@ return { "- Hrimnor of the Ezomytes.", }, }, - [1215] = { + [1238] = { id = "UniqueTwoHandMace10", name = "Trypanon", text = { @@ -10162,21 +10331,21 @@ return { "- Icius Perandus, Antiquities Collection, Item 3546", }, }, - [1216] = { + [1239] = { id = "UniqueTwoHandMace10x", name = "Replica Trypanon", text = { "\"The best place for this prototype would be in the hands of our enemies.\"", }, }, - [1217] = { + [1240] = { id = "UniqueTwoHandMace11", name = "Brain Rattler", text = { "The mind may have no limits, but the skull sure does.", }, }, - [1218] = { + [1241] = { id = "UniqueTwoHandMace12", name = "Tidebreaker", text = { @@ -10186,7 +10355,7 @@ return { "and the Brine King's domain will grow.", }, }, - [1219] = { + [1242] = { id = "UniqueTwoHandMace13", name = "Tawhoa's Felling", text = { @@ -10194,7 +10363,7 @@ return { "and know that you never stand alone.", }, }, - [1220] = { + [1243] = { id = "UniqueTwoHandMace2", name = "Geofri's Devotion", text = { @@ -10202,7 +10371,7 @@ return { "- Archbishop Geofri of Phrecia Cathedral", }, }, - [1221] = { + [1244] = { id = "UniqueTwoHandMace3", name = "Marohi Erqi", text = { @@ -10210,28 +10379,28 @@ return { "It mattered little. When Erqi's maul fell true, so did its target.", }, }, - [1222] = { + [1245] = { id = "UniqueTwoHandMace4", name = "Voidhome", text = { "Cursed is the star whence it came.", }, }, - [1223] = { + [1246] = { id = "UniqueTwoHandMace5", name = "Chaber Cairn", text = { "The faithful may continue to serve, even after death.", }, }, - [1224] = { + [1247] = { id = "UniqueTwoHandMace6", name = "Kongor's Undying Rage", text = { "Command like a king and nothing will stand in your way.", }, }, - [1225] = { + [1248] = { id = "UniqueTwoHandMace6x", name = "Replica Kongor's Undying Rage", text = { @@ -10239,7 +10408,7 @@ return { "What underlying physics are at play here, I wonder?\"", }, }, - [1226] = { + [1249] = { id = "UniqueTwoHandMace7", name = "Panquetzaliztli", text = { @@ -10248,7 +10417,7 @@ return { "- Doryani of the Vaal", }, }, - [1227] = { + [1250] = { id = "UniqueTwoHandMace8", name = "Jorrhast's Blacksteel", text = { @@ -10257,7 +10426,7 @@ return { "in every scrap of iron he touched.", }, }, - [1228] = { + [1251] = { id = "UniqueTwoHandSword1", name = "Rigwald's Charge", text = { @@ -10265,7 +10434,7 @@ return { "- Rigwald, at the Battle of Glarryn", }, }, - [1229] = { + [1252] = { id = "UniqueTwoHandSword10", name = "Hiltless", text = { @@ -10274,7 +10443,7 @@ return { "beyond the flesh and into the demon's soul.", }, }, - [1230] = { + [1253] = { id = "UniqueTwoHandSword11", name = "Kondo's Pride", text = { @@ -10286,28 +10455,28 @@ return { "wreaking havoc like a steel squall.", }, }, - [1231] = { + [1254] = { id = "UniqueTwoHandSword12", name = "Voidforge", text = { "The end is written into the beginning.", }, }, - [1232] = { + [1255] = { id = "UniqueTwoHandSword14", name = "Echoforge", text = { "Witness the emergence of a new cosmic power.", }, }, - [1233] = { + [1256] = { id = "UniqueTwoHandSword15", name = "Rakiata's Dance", text = { "In the shifting reflections of the sea, the truth of the soul can be seen.", }, }, - [1234] = { + [1257] = { id = "UniqueTwoHandSword16", name = "The Living Blade", text = { @@ -10315,7 +10484,16 @@ return { "and named it Lorrata. Its strongest root became a weapon...", }, }, - [1235] = { + [1258] = { + id = "UniqueTwoHandSword17", + name = "The Golden Charlatan", + text = { + "\"He speaks, he leads, he stands tall...", + "yet, what has he truly done, save", + "spill our blood in pursuit of power?\"", + }, + }, + [1259] = { id = "UniqueTwoHandSword2", name = "Shiversting", text = { @@ -10323,7 +10501,7 @@ return { "Life of sorrow, lived apart.", }, }, - [1236] = { + [1260] = { id = "UniqueTwoHandSword3", name = "Terminus Est", text = { @@ -10333,7 +10511,7 @@ return { "Smiling, he returned death's embrace.", }, }, - [1237] = { + [1261] = { id = "UniqueTwoHandSword4", name = "Queen's Escape", text = { @@ -10345,7 +10523,7 @@ return { "She sat on her throne and wept.", }, }, - [1238] = { + [1262] = { id = "UniqueTwoHandSword6", name = "Oro's Sacrifice", text = { @@ -10353,7 +10531,7 @@ return { "will burn in the minds of men forever.", }, }, - [1239] = { + [1263] = { id = "UniqueTwoHandSword6x", name = "Replica Oro's Sacrifice", text = { @@ -10362,7 +10540,7 @@ return { "- Researcher Arn", }, }, - [1240] = { + [1264] = { id = "UniqueTwoHandSword7", name = "Edge of Madness", text = { @@ -10371,7 +10549,7 @@ return { "Laughing.", }, }, - [1241] = { + [1265] = { id = "UniqueTwoHandSword8", name = "Doomsower", text = { @@ -10379,7 +10557,7 @@ return { "Evil forged and Hope forsworn.", }, }, - [1242] = { + [1266] = { id = "UniqueTwoHandSword9", name = "The Dancing Duo", text = { @@ -10389,7 +10567,7 @@ return { "And dance with death sublime.", }, }, - [1243] = { + [1267] = { id = "UniqueWand1", name = "Moonsorrow", text = { @@ -10398,7 +10576,7 @@ return { "The lonely moon weeps", }, }, - [1244] = { + [1268] = { id = "UniqueWand10", name = "Abberath's Horn", text = { @@ -10406,7 +10584,7 @@ return { "as his ruin spread across the land.", }, }, - [1245] = { + [1269] = { id = "UniqueWand11", name = "Obliteration", text = { @@ -10414,7 +10592,7 @@ return { "Wielding anarchy and destruction as our tools of genesis.", }, }, - [1246] = { + [1270] = { id = "UniqueWand12", name = "Storm Prison", text = { @@ -10422,7 +10600,7 @@ return { "You can barely even leash it.", }, }, - [1247] = { + [1271] = { id = "UniqueWand13", name = "Corona Solaris", text = { @@ -10430,7 +10608,7 @@ return { "Each time, Solaris emerges from Lunaris, born anew.", }, }, - [1248] = { + [1272] = { id = "UniqueWand14", name = "Ashcaller", text = { @@ -10439,7 +10617,7 @@ return { "- Lavianga, Advisor to Kaom", }, }, - [1249] = { + [1273] = { id = "UniqueWand15", name = "Tulborn", text = { @@ -10447,11 +10625,9 @@ return { "Then the great fall.", "The pain of separation.", "We return once more.", - "", - "^8This item can be transformed with a Blessing of Tul", }, }, - [1250] = { + [1274] = { id = "UniqueWand16", name = "Tulfall", text = { @@ -10460,7 +10636,7 @@ return { "But in the great freeze we are forged anew.", }, }, - [1251] = { + [1275] = { id = "UniqueWand16x", name = "Replica Tulfall", text = { @@ -10469,21 +10645,21 @@ return { "- Researcher Arn", }, }, - [1252] = { + [1276] = { id = "UniqueWand17", name = "Shade of Solaris", text = { "Without light, there can be no shadow.", }, }, - [1253] = { + [1277] = { id = "UniqueWand18", name = "The Poet's Pen", text = { "In every piece of prose, lies a tiny spark of magic.", }, }, - [1254] = { + [1278] = { id = "UniqueWand19", name = "Shimmeron", text = { @@ -10492,7 +10668,7 @@ return { "unveiling forms no sound mind could grasp.", }, }, - [1255] = { + [1279] = { id = "UniqueWand2", name = "Midnight Bargain", text = { @@ -10502,21 +10678,21 @@ return { "To crush the very light of day.", }, }, - [1256] = { + [1280] = { id = "UniqueWand20", name = "Relic of the Pact", text = { "Crush your enemies with your essence, so that you may drink of theirs.", }, }, - [1257] = { + [1281] = { id = "UniqueWand21", name = "Grace of the Goddess", text = { "In a time of darkness, know that the Draíocht will bring you light.", }, }, - [1258] = { + [1282] = { id = "UniqueWand22", name = "Mystic Refractor", text = { @@ -10524,7 +10700,16 @@ return { "- Trinian, Intellectus Prime", }, }, - [1259] = { + [1283] = { + id = "UniqueWand23", + name = "Unlight Extant", + text = { + "Beyond the edge of existence, there", + "shines violet, naught but pain...", + "one lantern carries a single flame.", + }, + }, + [1284] = { id = "UniqueWand2x", name = "Replica Midnight Bargain", text = { @@ -10533,7 +10718,7 @@ return { "- Researcher Olesya", }, }, - [1260] = { + [1285] = { id = "UniqueWand3", name = "Void Battery", text = { @@ -10542,7 +10727,7 @@ return { "- Inquisitor Maligaro", }, }, - [1261] = { + [1286] = { id = "UniqueWand4", name = "Lifesprig", text = { @@ -10551,7 +10736,7 @@ return { "Life endures in Wraeclast.", }, }, - [1262] = { + [1287] = { id = "UniqueWand6", name = "Piscator's Vigil", text = { @@ -10563,7 +10748,7 @@ return { "- Jojoba Mansell, bard, angler, adventurer", }, }, - [1263] = { + [1288] = { id = "UniqueWand7", name = "Apep's Rage", text = { @@ -10571,14 +10756,14 @@ return { "and engulfs the leaking mind of Man.", }, }, - [1264] = { + [1289] = { id = "UniqueWand8", name = "Amplification Rod", text = { "If it's worth doing once, it's worth doing twice.", }, }, - [1265] = { + [1290] = { id = "UniqueWand9", name = "Twyzel", text = { @@ -10586,7 +10771,7 @@ return { "hardened, twisted.", }, }, - [1266] = { + [1291] = { id = "UniqueWand9x", name = "Replica Twyzel", text = { @@ -10594,7 +10779,7 @@ return { "Prototype #78 serves as a prime example.\"", }, }, - [1267] = { + [1292] = { id = "UniqueWatchstone1", name = "Terror", text = { @@ -10603,7 +10788,7 @@ return { "and died horrifically.", }, }, - [1268] = { + [1293] = { id = "UniqueWatchstone2", name = "Stalwart Defenders", text = { @@ -10612,7 +10797,7 @@ return { "and were swept back out to sea.", }, }, - [1269] = { + [1294] = { id = "UniqueWatchstone3", name = "Misinformation", text = { @@ -10622,14 +10807,14 @@ return { "It was always just a little farther.", }, }, - [1270] = { + [1295] = { id = "UniqueWatchstone4", name = "Irresistible Temptation", text = { "Nothing is more alluring than mystery.", }, }, - [1271] = { + [1296] = { id = "UniqueWatchstone5", name = "Territories Unknown", text = { @@ -10639,7 +10824,7 @@ return { "no matter the personal cost.", }, }, - [1272] = { + [1297] = { id = "UniqueWatchstone6", name = "War Among the Stars", text = { @@ -10647,7 +10832,7 @@ return { "For some, that is by design.", }, }, - [1273] = { + [1298] = { id = "UniqueWatchstone7", name = "Booming Populace", text = { diff --git a/src/Data/Gems.lua b/src/Data/Gems.lua index 114fb5613f..7dde1ea8f6 100644 --- a/src/Data/Gems.lua +++ b/src/Data/Gems.lua @@ -1895,6 +1895,24 @@ return { reqInt = 100, naturalMaxLevel = 20, }, + ["Metadata/Items/Gems/SkillGemWallOfForce"] = { + name = "Wall of Force", + baseTypeName = "Wall of Force", + gameId = "Metadata/Items/Gems/SkillGemWallOfForce", + variantId = "WallOfForce", + grantedEffectId = "WallOfForce", + tags = { + intelligence = true, + grants_active_skill = true, + spell = true, + duration = true, + }, + tagString = "Spell, Duration", + reqStr = 0, + reqDex = 0, + reqInt = 100, + naturalMaxLevel = 20, + }, ["Metadata/Items/Gems/SkillGemFreezingPulse"] = { name = "Freezing Pulse", baseTypeName = "Freezing Pulse", @@ -5883,7 +5901,6 @@ return { variantId = "Convocation", grantedEffectId = "Convocation", tags = { - intelligence = true, grants_active_skill = true, spell = true, duration = true, @@ -5892,7 +5909,7 @@ return { tagString = "Spell, Duration, Minion", reqStr = 0, reqDex = 0, - reqInt = 100, + reqInt = 0, naturalMaxLevel = 1, }, ["Metadata/Items/Gems/SkillGemPyroclastMine"] = { @@ -14191,6 +14208,134 @@ return { reqInt = 0, naturalMaxLevel = 20, }, + ["Metadata/Items/Gems/SkillGemConflagration"] = { + name = "Conflagration", + baseTypeName = "Conflagration", + gameId = "Metadata/Items/Gems/SkillGemConflagration", + variantId = "Conflagration", + grantedEffectId = "Conflagration", + tags = { + dexterity = true, + grants_active_skill = true, + attack = true, + fire = true, + area = true, + projectile = true, + duration = true, + bow = true, + }, + tagString = "Attack, Fire, AoE, Projectile, Duration, Bow", + reqStr = 0, + reqDex = 100, + reqInt = 0, + naturalMaxLevel = 20, + }, + ["Metadata/Items/Gems/SkillGemKineticRain"] = { + name = "Kinetic Rain", + baseTypeName = "Kinetic Rain", + gameId = "Metadata/Items/Gems/SkillGemKineticRain", + variantId = "KineticRain", + grantedEffectId = "KineticRain", + secondaryGrantedEffectId = "KineticRainKineticInstability", + tags = { + intelligence = true, + grants_active_skill = true, + attack = true, + area = true, + projectile = true, + duration = true, + trigger = true, + }, + tagString = "Attack, AoE, Projectile, Duration, Trigger", + reqStr = 0, + reqDex = 0, + reqInt = 100, + naturalMaxLevel = 20, + }, + ["Metadata/Items/Gems/SkillGemKineticRainAltX"] = { + name = "Kinetic Rain of Impact", + baseTypeName = "Kinetic Rain of Impact", + gameId = "Metadata/Items/Gems/SkillGemKineticRain", + variantId = "KineticRainAltX", + grantedEffectId = "KineticRainAltX", + tags = { + intelligence = true, + grants_active_skill = true, + attack = true, + area = true, + projectile = true, + }, + tagString = "Attack, AoE, Projectile", + reqStr = 0, + reqDex = 0, + reqInt = 100, + naturalMaxLevel = 20, + }, + ["Metadata/Items/Gems/SkillGemSomaticShell"] = { + name = "Somatic Shell", + baseTypeName = "Somatic Shell", + gameId = "Metadata/Items/Gems/SkillGemSomaticShell", + variantId = "SomaticShell", + grantedEffectId = "SomaticShell", + tags = { + intelligence = true, + grants_active_skill = true, + duration = true, + physical = true, + attack = true, + area = true, + projectile = true, + }, + tagString = "Duration, Physical, Attack, AoE, Projectile", + reqStr = 0, + reqDex = 0, + reqInt = 100, + naturalMaxLevel = 20, + }, + ["Metadata/Items/Gems/SkillGemThunderstorm"] = { + name = "Thunderstorm", + baseTypeName = "Thunderstorm", + gameId = "Metadata/Items/Gems/SkillGemThunderstorm", + variantId = "Thunderstorm", + grantedEffectId = "Thunderstorm", + secondaryGrantedEffectId = "ThunderstormMiniTornados", + tags = { + dexterity = true, + grants_active_skill = true, + attack = true, + area = true, + duration = true, + lightning = true, + bow = true, + projectile = true, + trigger = true, + }, + tagString = "Attack, AoE, Duration, Lightning, Bow, Projectile, Trigger", + reqStr = 0, + reqDex = 100, + reqInt = 0, + naturalMaxLevel = 20, + }, + ["Metadata/Items/Gems/SkillGemKineticFusillade"] = { + name = "Kinetic Fusillade", + baseTypeName = "Kinetic Fusillade", + gameId = "Metadata/Items/Gems/SkillGemKineticFusillade", + variantId = "KineticFusillade", + grantedEffectId = "KineticFusillade", + tags = { + intelligence = true, + grants_active_skill = true, + attack = true, + projectile = true, + duration = true, + area = true, + }, + tagString = "Attack, Projectile, Duration, AoE", + reqStr = 0, + reqDex = 0, + reqInt = 100, + naturalMaxLevel = 20, + }, ["Metadata/Items/Gems/SkillGemQuickstepHardMode"] = { name = "Quickstep", baseTypeName = "Quickstep", @@ -14573,4 +14718,70 @@ return { reqInt = 60, naturalMaxLevel = 20, }, + ["Metadata/Items/Gems/SkillGemSupportWindburst"] = { + name = "Windburst", + gameId = "Metadata/Items/Gems/SupportGemWindburst", + variantId = "SupportWindburst", + grantedEffectId = "SupportWindburst", + secondaryGrantedEffectId = "TriggeredSupportWindburst", + tags = { + dexterity = true, + support = true, + grants_active_skill = true, + attack = true, + projectile = true, + trigger = true, + area = true, + duration = true, + bow = true, + }, + tagString = "Support, Attack, Projectile, Trigger, AoE, Duration, Bow", + reqStr = 0, + reqDex = 100, + reqInt = 0, + naturalMaxLevel = 20, + }, + ["Metadata/Items/Gems/SkillGemSupportKineticInstability"] = { + name = "Kinetic Instability", + gameId = "Metadata/Items/Gems/SupportGemKineticInstability", + variantId = "SupportKineticInstability", + grantedEffectId = "SupportKineticInstability", + secondaryGrantedEffectId = "TriggeredSupportKineticInstability", + tags = { + intelligence = true, + support = true, + grants_active_skill = true, + area = true, + trigger = true, + attack = true, + duration = true, + }, + tagString = "Support, AoE, Trigger, Attack, Duration", + reqStr = 0, + reqDex = 0, + reqInt = 100, + naturalMaxLevel = 20, + }, + ["Metadata/Items/Gems/SkillGemSupportLivingLightning"] = { + name = "Living Lightning", + gameId = "Metadata/Items/Gems/SupportGemLivingLightning", + variantId = "SupportLivingLightning", + grantedEffectId = "SupportLivingLightning", + secondaryGrantedEffectId = "TriggeredSupportLivingLightning", + tags = { + lightning = true, + intelligence = true, + support = true, + grants_active_skill = true, + spell = true, + minion = true, + duration = true, + trigger = true, + }, + tagString = "Lightning, Support, Spell, Minion, Duration, Trigger", + reqStr = 0, + reqDex = 0, + reqInt = 100, + naturalMaxLevel = 20, + }, } \ No newline at end of file diff --git a/src/Data/Global.lua b/src/Data/Global.lua index d4783180c7..95c0233fd5 100644 --- a/src/Data/Global.lua +++ b/src/Data/Global.lua @@ -345,6 +345,7 @@ SkillType = { ProjectileCannotReturn = 135, Offering = 136, SupportedByBane = 137, + WandAttack = 138, } GlobalCache = { diff --git a/src/Data/Minions.lua b/src/Data/Minions.lua index b543038ce1..ff19789fda 100644 --- a/src/Data/Minions.lua +++ b/src/Data/Minions.lua @@ -835,7 +835,6 @@ minions["RhoaUniqueSummoned"] = { "SummonedRhoaShieldCharge", }, modList = { - mod("SkillData", "LIST", { key = "cannotBeEvaded", value = true }, 0, 0), -- MonsterAlwaysHits [global_always_hit = 1] -- MonsterNearbyEnemiesAreIntimidated [is_intimidated = 1] -- MonsterNearbyEnemiesAreIntimidated [local_display_nearby_enemies_are_intimidated = 1] }, @@ -861,7 +860,6 @@ minions["SnakeSpitUniqueSummoned"] = { "SummonedSnakeProjectile", }, modList = { - mod("SkillData", "LIST", { key = "cannotBeEvaded", value = true }, 0, 0), -- MonsterAlwaysHits [global_always_hit = 1] mod("PhysicalDamageConvertToChaos", "BASE", 30, 0, 0), -- MonsterSnakeChaos [base_physical_damage_%_to_convert_to_chaos = 30] }, } @@ -889,7 +887,6 @@ minions["DropBearUniqueSummoned"] = { "DropBearSummonedRallyingCry", }, modList = { - mod("SkillData", "LIST", { key = "cannotBeEvaded", value = true }, 0, 0), -- MonsterAlwaysHits [global_always_hit = 1] }, } @@ -1198,8 +1195,8 @@ minions["GuardianRelicLightning"] = { minions["VoidSpawn"] = { name = "Void Spawn", monsterTags = { "caster", "construct", "elder_monster", "eldritch", "extra_large_height", "flesh_armour", "influence_monster", "is_unarmed", "lightning_affinity", "medium_movement", "not_dex", "not_str", "ranged", "red_blood", }, - life = 3, - energyShield = 0.2, + life = 6, + energyShield = 1, fireResist = 30, coldResist = 30, lightningResist = 30, @@ -1484,3 +1481,32 @@ minions["AncestralUtulaMinion"] = { modList = { }, } + +minions["LivingLightningMinion"] = { + name = "Living Lightning", + monsterTags = { "elemental", "lightning", "not_dex", "not_str", "small_height", "very_fast_movement", }, + baseDamageIgnoresAttackSpeed = true, + life = 1.4, + energyShield = 0.2, + fireResist = 40, + coldResist = 40, + lightningResist = 40, + chaosResist = 20, + damage = 1.4, + damageSpread = 0.8, + attackTime = 1.17, + attackRange = 20, + accuracy = 1, + limit = "ActiveLivingLightningLimit", + skillList = { + "SummonedLivingLightningZap", + }, + modList = { + -- CannotBeAugmented [cannot_have_azmeri_dust = 1] + -- CannotBeAugmented [cant_possess_this = 1] + -- CannotBeAugmented [cant_touch_this = 1] + -- CannotBeAugmented [cannot_be_tagged_by_sentinel = 1] + -- CannotBeAugmented [cannot_be_afflicted = 1] + -- CannotBeAugmented [cannot_have_affliction_mods = 1] + }, +} diff --git a/src/Data/Misc.lua b/src/Data/Misc.lua index 50685643be..dc5892786f 100644 --- a/src/Data/Misc.lua +++ b/src/Data/Misc.lua @@ -35,14 +35,24 @@ data.gameConstants = { ["PartyRarityBonusPerAdditionalPlayerHardMode"] = 0, ["MercenaryPartyScalingValue"] = 50, ["SellPriceMultiplier"] = 0.11, - ["UnidentifiedMagicMultiplier"] = 1.5, - ["UnidentifiedRareMultiplier"] = 6, + ["UnidentifiedMagicMultiplier"] = 1.25, + ["UnidentifiedRareMultiplier"] = 2.5, ["IdentifiedMagicMultiplier"] = 1, - ["IdentifiedRareMultiplier"] = 2, + ["IdentifiedRareMultiplier"] = 1.5, ["PartyNormalMonsterLifePerAdditionalPlayer"] = 50, ["PartyMagicMonsterLifePerAdditionalPlayer"] = 60, ["PartyRareMonsterLifePerAdditionalPlayer"] = 80, ["PartyUniqueMonsterLifePerAdditionalPlayer"] = 100, + ["AtlasPassiveRespecCost"] = 2000, + ["GemGoldCostMultiplier"] = 200, + ["ExceptionalGemGoldCostMultiplier"] = 300, + ["AwakenedGemGoldCostMultiplier"] = 400, + ["OverMaxLevelGemGoldCostMultiplier"] = 150, + ["GoldPlusPercentPerInfluence"] = 50, + ["GoldPlusPercentPerCorruption"] = 50, + ["GoldPlusPercentPerQuality"] = 2, + ["GoldPlusPercentPerAffix"] = 10, + ["UniqueBaseGoldCost"] = 2000, } -- From MonsterVarieties.dat combined with SkillTotemVariations.dat data.totemLifeMult = { [1] = 1, [2] = 1, [3] = 1, [4] = 1.2, [5] = 1, [6] = 1.2, [7] = 1.2, [8] = 1.2, [9] = 1, [10] = 1, [11] = 1, [12] = 1, [13] = 1.2, [15] = 1.2, [16] = 7.44, [17] = 1.2, [18] = 1, [19] = 1, [20] = 1.2, [21] = 1.2, } diff --git a/src/Data/ModCache.lua b/src/Data/ModCache.lua index aefbd5c1e6..a32e55f317 100755 --- a/src/Data/ModCache.lua +++ b/src/Data/ModCache.lua @@ -922,6 +922,7 @@ c["+3 to Level of all Cobra Lash Gems"]={{[1]={flags=0,keywordFlags=0,name="GemP c["+3 to Level of all Cold Snap Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="cold snap",value=3}}},nil} c["+3 to Level of all Cold Spell Skill Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keywordList={[1]="cold",[2]="spell",[3]="skill"},value=3}}},nil} c["+3 to Level of all Conductivity Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="conductivity",value=3}}},nil} +c["+3 to Level of all Conflagration Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="conflagration",value=3}}},nil} c["+3 to Level of all Consecrated Path Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="consecrated path",value=3}}},nil} c["+3 to Level of all Contagion Gems"]={{[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 Conversion Trap Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="conversion trap",value=3}}},nil} @@ -1028,6 +1029,8 @@ c["+3 to Level of all Intimidating Cry Gems"]={{[1]={flags=0,keywordFlags=0,name c["+3 to Level of all Intuitive Link Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="intuitive link",value=3}}},nil} c["+3 to Level of all Kinetic Blast Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="kinetic blast",value=3}}},nil} c["+3 to Level of all Kinetic Bolt Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="kinetic bolt",value=3}}},nil} +c["+3 to Level of all Kinetic Fusillade Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="kinetic fusillade",value=3}}},nil} +c["+3 to Level of all Kinetic Rain Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="kinetic rain",value=3}}},nil} c["+3 to Level of all Lacerate Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="lacerate",value=3}}},nil} c["+3 to Level of all Lancing Steel Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="lancing steel",value=3}}},nil} c["+3 to Level of all Leap Slam Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="leap slam",value=3}}},nil} @@ -1097,6 +1100,7 @@ c["+3 to Level of all Smite Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProper c["+3 to Level of all Smoke Mine Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="smoke mine",value=3}}},nil} c["+3 to Level of all Snipe Gems"]={{[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 Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="sniper's mark",value=3}}},nil} +c["+3 to Level of all Somatic Shell Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="somatic shell",value=3}}},nil} c["+3 to Level of all Soul Link Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="soul link",value=3}}},nil} c["+3 to Level of all Soulrend Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="soulrend",value=3}}},nil} c["+3 to Level of all Spark Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="spark",value=3}}},nil} @@ -1133,6 +1137,7 @@ c["+3 to Level of all Tectonic Slam Gems"]={{[1]={flags=0,keywordFlags=0,name="G c["+3 to Level of all Tempest Shield Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="tempest shield",value=3}}},nil} c["+3 to Level of all Temporal Chains Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="temporal chains",value=3}}},nil} c["+3 to Level of all Temporal Rift Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="temporal rift",value=3}}},nil} +c["+3 to Level of all Thunderstorm Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="thunderstorm",value=3}}},nil} c["+3 to Level of all Tornado Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="tornado",value=3}}},nil} c["+3 to Level of all Tornado Shot Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="tornado shot",value=3}}},nil} c["+3 to Level of all Toxic Rain Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="toxic rain",value=3}}},nil} @@ -1149,6 +1154,7 @@ c["+3 to Level of all Volcanic Fissure Gems"]={{[1]={flags=0,keywordFlags=0,name c["+3 to Level of all Voltaxic Burst Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="voltaxic burst",value=3}}},nil} c["+3 to Level of all Vortex Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="vortex",value=3}}},nil} c["+3 to Level of all Vulnerability Gems"]={{[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 Wall of Force Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="wall of force",value=3}}},nil} c["+3 to Level of all War Banner Gems"]={{[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 Warlord's Mark Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="warlord's mark",value=3}}},nil} c["+3 to Level of all Wave of Conviction Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="wave of conviction",value=3}}},nil} @@ -2655,7 +2661,7 @@ c["10% of Damage taken Recouped as Mana"]={{[1]={flags=0,keywordFlags=0,name="Ma c["10% of Damage taken from Mana before Life while affected by Clarity"]={{[1]={[1]={type="Condition",var="AffectedByClarity"},flags=0,keywordFlags=0,name="DamageTakenFromManaBeforeLife",type="BASE",value=10}},nil} c["10% of Damage taken from Stunning Hits is Recovered as Life"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="BASE",value=10}}," from Stunning Hits is Recovered as Life "} c["10% of Damage you Reflect to Enemies when Hit is gained as Life"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="BASE",value=10}}," you Reflect to Enemies when Hit is gained as Life "} -c["10% of Elemental taken as Chaos Damage if 4 Hunter Items are Equipped"]={{[1]={[1]={threshold=4,type="MultiplierThreshold",var="HunterItem"},flags=0,keywordFlags=0,name="ElementalDamageTakenAsChaos",type="BASE",value=10}},nil} +c["10% of Elemental Damage taken as Chaos Damage if 4 Hunter Items are Equipped"]={{[1]={[1]={threshold=4,type="MultiplierThreshold",var="HunterItem"},flags=0,keywordFlags=0,name="ElementalDamageTakenAsChaos",type="BASE",value=10}},nil} c["10% of Fire Damage from Hits taken as Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamageFromHitsTakenAsPhysical",type="BASE",value=10}},nil} c["10% of Leech is Instant per Equipped Claw"]={{[1]={[1]={type="Multiplier",var="ClawItem"},flags=0,keywordFlags=0,name="InstantEnergyShieldLeech",type="BASE",value=10},[2]={[1]={type="Multiplier",var="ClawItem"},flags=0,keywordFlags=0,name="InstantManaLeech",type="BASE",value=10},[3]={[1]={type="Multiplier",var="ClawItem"},flags=0,keywordFlags=0,name="InstantLifeLeech",type="BASE",value=10}},nil} c["10% of Physical Damage Converted to Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageConvertToChaos",type="BASE",value=10}},nil} @@ -4625,6 +4631,7 @@ c["3% increased Movement Speed per Endurance Charge"]={{[1]={[1]={type="Multipli c["3% increased Movement Speed per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=3}},nil} c["3% increased Movement Speed per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=3}},nil} c["3% increased Movement Speed while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=3}},nil} +c["3% increased Poison Duration for each Poison you have inflicted Recently, up"]={{[1]={[1]={type="Multiplier",var="PoisonAppliedRecently"},flags=0,keywordFlags=0,name="EnemyPoisonDuration",type="INC",value=3}}," , up "} c["3% increased Poison Duration for each Poison you have inflicted Recently, up to a maximum of 100%"]={{[1]={[1]={globalLimit=100,globalLimitKey="DurationPerPoisonRecently",type="Multiplier",var="PoisonAppliedRecently"},flags=0,keywordFlags=0,name="EnemyPoisonDuration",type="INC",value=3}},nil} c["3% increased Poison Duration per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="EnemyPoisonDuration",type="INC",value=3}},nil} c["3% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=3}},nil} @@ -8450,6 +8457,7 @@ c["Fire Exposure you inflict applies an extra -5% to Fire Resistance"]={{[1]={fl c["Fire Resistance is 75%"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="OVERRIDE",value=75}},nil} c["Fire Skills have 20% chance to Poison on Hit"]={{[1]={flags=0,keywordFlags=32,name="PoisonChance",type="BASE",value=20}},nil} c["Fire Skills have a 25% chance to apply Fire Exposure on Hit"]={{[1]={flags=0,keywordFlags=0,name="FireExposureChance",type="BASE",value=25}},nil} +c["Fire at most 1 Projectile"]={{flags=0,keywordFlags=0,name="NoAdditionalProjectiles",type="FLAG",value=true},nil} c["First and Final shots of Barrage sequences fire Projectiles that Return to you"]={nil,"First and Final shots of Barrage sequences fire Projectiles that Return to you "} c["Flammability can affect Hexproof Enemies"]={{[1]={[1]={skillId="Flammability",type="SkillId"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="ignoreHexproof",value=true}}},nil} c["Flammability has no Reservation if Cast as an Aura"]={{[1]={[1]={skillId="Flammability",type="SkillId"},[2]={skillType=43,type="SkillType"},[3]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationFlat",value=0}},[2]={[1]={skillId="Flammability",type="SkillId"},[2]={skillType=43,type="SkillType"},[3]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationFlat",value=0}},[3]={[1]={skillId="Flammability",type="SkillId"},[2]={skillType=43,type="SkillType"},[3]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationPercent",value=0}},[4]={[1]={skillId="Flammability",type="SkillId"},[2]={skillType=43,type="SkillType"},[3]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationPercent",value=0}}},nil} @@ -9428,7 +9436,7 @@ c["Limited to 1 Runegraft of Blasphemy"]={nil,"Limited to 1 Runegraft of Blasphe c["Limited to 1 Runegraft of Gemcraft"]={nil,"Limited to 1 Runegraft of Gemcraft "} c["Limited to 1 Runegraft of Loyalty"]={nil,"Limited to 1 Runegraft of Loyalty "} c["Limited to 1 Runegraft of Quaffing"]={nil,"Limited to 1 Runegraft of Quaffing "} -c["Limited to 1 Runegraft of Recompense"]={nil,"Limited to 1 Runegraft of Recompense "} +c["Limited to 1 Runegraft of Refraction"]={nil,"Limited to 1 Runegraft of Refraction "} c["Limited to 1 Runegraft of Restitching"]={nil,"Limited to 1 Runegraft of Restitching "} c["Limited to 1 Runegraft of Stability"]={nil,"Limited to 1 Runegraft of Stability "} c["Limited to 1 Runegraft of Time"]={nil,"Limited to 1 Runegraft of Time "} @@ -9584,7 +9592,6 @@ c["Maximum Critical Strike Chance is 50%"]={{[1]={flags=0,keywordFlags=0,name="C c["Maximum Damage Reduction for any Damage Type is 50%"]={{[1]={flags=0,keywordFlags=0,name="DamageReductionMax",type="OVERRIDE",value=50}},nil} c["Maximum Effect of Shock is 2% increased Damage taken"]={{[1]={flags=0,keywordFlags=0,name="ShockMax",type="OVERRIDE",value=2}},nil} c["Maximum Endurance, Frenzy and Power Charges is 0"]={{[1]={flags=0,keywordFlags=0,name="EnduranceChargesMax",type="OVERRIDE",value=0},[2]={flags=0,keywordFlags=0,name="PowerChargesMax",type="OVERRIDE",value=0},[3]={flags=0,keywordFlags=0,name="FrenzyChargesMax",type="OVERRIDE",value=0}},nil} -c["Maximum Energy Shield is 0"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="OVERRIDE",value=0}},nil} c["Maximum Energy Shield is increased by Chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldIncreasedByChanceToBlockSpellDamage",type="FLAG",value=true}},nil} c["Maximum Life becomes 1, Immune to Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosInoculation",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="ChaosDamageTaken",type="MORE",value=-100}},nil} c["Maximum Quality is 200%"]={{},"Maximum Quality "} @@ -10046,11 +10053,11 @@ c["Offering Skills have 50% reduced Duration"]={{[1]={[1]={skillNameList={[1]="B c["Offerings Kill affected Damagable targets when Offering Duration expires"]={nil,"Offerings Kill affected Damagable targets when Offering Duration expires "} c["On Killing a Poisoned Enemy, nearby Enemies are Poisoned"]={nil,"On Killing a Poisoned Enemy, nearby Enemies are Poisoned "} c["On Killing a Poisoned Enemy, nearby Enemies are Poisoned and nearby Allies Regenerate 200 Life per second"]={nil,"On Killing a Poisoned Enemy, nearby Enemies are Poisoned and nearby Allies Regenerate 200 Life per second "} -c["Only affects Passives in Large Ring"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="radiusIndex",value=6}}},nil} -c["Only affects Passives in Massive Ring"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="radiusIndex",value=8}}},nil} -c["Only affects Passives in Medium Ring"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="radiusIndex",value=5}}},nil} -c["Only affects Passives in Small Ring"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="radiusIndex",value=4}}},nil} -c["Only affects Passives in Very Large Ring"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="radiusIndex",value=7}}},nil} +c["Only affects Passives in Large Ring"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="radiusIndex",value=8}}},nil} +c["Only affects Passives in Massive Ring"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="radiusIndex",value=10}}},nil} +c["Only affects Passives in Medium Ring"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="radiusIndex",value=7}}},nil} +c["Only affects Passives in Small Ring"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="radiusIndex",value=6}}},nil} +c["Only affects Passives in Very Large Ring"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="radiusIndex",value=9}}},nil} c["Onslaught"]={{[1]={flags=0,keywordFlags=0,name="Condition:Onslaught",type="FLAG",value=true}},nil} c["Other Aegis Skills are Disabled"]={{[1]={[1]={skillType=110,type="SkillType"},flags=0,keywordFlags=0,name="DisableSkill",type="FLAG",value=true},[2]={[1]={skillId="Primal Aegis",type="SkillName"},flags=0,keywordFlags=0,name="EnableSkill",type="FLAG",value=true}},nil} c["Pain Attunement"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Pain Attunement"}},nil} @@ -10274,8 +10281,6 @@ c["Recover 1% of Mana when you Curse a Non-Cursed Enemy"]={nil,"Recover 1% of Ma c["Recover 1% of Mana when you Kill a Cursed Enemy"]={{[1]={[1]={percent=1,stat="Mana",type="PercentStat"},[2]={actor="enemy",type="ActorCondition",var="Cursed"},flags=0,keywordFlags=0,name="ManaOnKill",type="BASE",value=1}},nil} c["Recover 10% of Mana over 1 second when you use a Guard Skill"]={nil,"Recover 10% of Mana over 1 second when you use a Guard Skill "} c["Recover 10% of Mana when a Brand expires while Attached"]={nil,"Recover 10% of Mana when a Brand expires while Attached "} -c["Recover 10% of Skill Mana Cost per unspent Chain when Projectiles end, up to 50%"]={nil,"Recover 10% of Skill Mana Cost per unspent Chain when Projectiles end, up to 50% "} -c["Recover 10% of Skill Mana Cost per unspent Chain when Projectiles end, up to 50% Limited to 1 Runegraft of Recompense"]={nil,"Recover 10% of Skill Mana Cost per unspent Chain when Projectiles end, up to 50% Limited to 1 Runegraft of Recompense "} c["Recover 10% of maximum Life when you use a Mana Flask"]={nil,"Recover 10% of maximum Life when you use a Mana Flask "} c["Recover 10% of maximum Life when you use a Mana Flask Non-instant Mana recovery from Flasks is also recovered as Life"]={nil,"Recover 10% of maximum Life when you use a Mana Flask Non-instant Mana recovery from Flasks is also recovered as Life "} c["Recover 100 Life for each Fortification lost"]={nil,"Recover 100 Life for each Fortification lost "} @@ -11201,6 +11206,7 @@ c["Socketed Gems are Supported by Level 10 Intensify"]={{[1]={[1]={slotName="{Sl c["Socketed Gems are Supported by Level 10 Iron Grip"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=10,skillId="SupportIronGrip"}}},nil} c["Socketed Gems are Supported by Level 10 Iron Will"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=10,skillId="SupportIronWill"}}},nil} c["Socketed Gems are Supported by Level 10 Item Rarity"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=10,skillId="SupportItemRarity"}}},nil} +c["Socketed Gems are Supported by Level 10 Kinetic Instability"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=10,skillId="SupportKineticInstability"}},[2]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=10,skillId="TriggeredSupportKineticInstability"}}},nil} c["Socketed Gems are Supported by Level 10 Knockback"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=10,skillId="SupportKnockback"}}},nil} c["Socketed Gems are Supported by Level 10 Less Duration"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=10,skillId="SupportLessDuration"}}},nil} c["Socketed Gems are Supported by Level 10 Lesser Multiple Projectiles"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=10,skillId="SupportLesserMultipleProjectiles"}}},nil} @@ -11208,6 +11214,7 @@ c["Socketed Gems are Supported by Level 10 Life Gain on Hit"]={{[1]={[1]={slotNa c["Socketed Gems are Supported by Level 10 Life Leech"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=10,skillId="SupportLifeLeech"}}},nil} c["Socketed Gems are Supported by Level 10 Lifetap"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=10,skillId="SupportLifetap"}}},nil} c["Socketed Gems are Supported by Level 10 Lightning Penetration"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=10,skillId="SupportLightningPenetration"}}},nil} +c["Socketed Gems are Supported by Level 10 Living Lightning"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=10,skillId="SupportLivingLightning"}},[2]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=10,skillId="TriggeredSupportLivingLightning"}}},nil} c["Socketed Gems are Supported by Level 10 Locus Mine"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=10,skillId="SupportLocusMine"}}},nil} c["Socketed Gems are Supported by Level 10 Maim"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=10,skillId="SupportMaim"}}},nil} c["Socketed Gems are Supported by Level 10 Mana Leech"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=10,skillId="SupportManaLeech"}}},nil} @@ -11270,6 +11277,7 @@ c["Socketed Gems are Supported by Level 10 Vile Toxins"]={{[1]={[1]={slotName="{ c["Socketed Gems are Supported by Level 10 Void Manipulation"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=10,skillId="SupportVoidManipulation"}}},nil} c["Socketed Gems are Supported by Level 10 Volatility"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=10,skillId="SupportVolatility"}}},nil} c["Socketed Gems are Supported by Level 10 Volley"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=10,skillId="SupportVolley"}}},nil} +c["Socketed Gems are Supported by Level 10 Windburst"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=10,skillId="SupportWindburst"}},[2]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=10,skillId="TriggeredSupportWindburst"}}},nil} c["Socketed Gems are Supported by Level 10 Withering Touch"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=10,skillId="SupportWitheringTouch"}}},nil} c["Socketed Gems are Supported by Level 11 Trap"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=11,skillId="SupportTrap"}}},nil} c["Socketed Gems are Supported by Level 12 Cast when Damage Taken"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=12,skillId="SupportCastWhenDamageTaken"}}},nil} @@ -11433,6 +11441,7 @@ c["Socketed Gems are Supported by Level 35 Intensify"]={{[1]={[1]={slotName="{Sl c["Socketed Gems are Supported by Level 35 Iron Grip"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=35,skillId="SupportIronGrip"}}},nil} c["Socketed Gems are Supported by Level 35 Iron Will"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=35,skillId="SupportIronWill"}}},nil} c["Socketed Gems are Supported by Level 35 Item Rarity"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=35,skillId="SupportItemRarity"}}},nil} +c["Socketed Gems are Supported by Level 35 Kinetic Instability"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=35,skillId="SupportKineticInstability"}},[2]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=35,skillId="TriggeredSupportKineticInstability"}}},nil} c["Socketed Gems are Supported by Level 35 Knockback"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=35,skillId="SupportKnockback"}}},nil} c["Socketed Gems are Supported by Level 35 Less Duration"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=35,skillId="SupportLessDuration"}}},nil} c["Socketed Gems are Supported by Level 35 Lesser Multiple Projectiles"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=35,skillId="SupportLesserMultipleProjectiles"}}},nil} @@ -11440,6 +11449,7 @@ c["Socketed Gems are Supported by Level 35 Life Gain on Hit"]={{[1]={[1]={slotNa c["Socketed Gems are Supported by Level 35 Life Leech"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=35,skillId="SupportLifeLeech"}}},nil} c["Socketed Gems are Supported by Level 35 Lifetap"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=35,skillId="SupportLifetap"}}},nil} c["Socketed Gems are Supported by Level 35 Lightning Penetration"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=35,skillId="SupportLightningPenetration"}}},nil} +c["Socketed Gems are Supported by Level 35 Living Lightning"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=35,skillId="SupportLivingLightning"}},[2]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=35,skillId="TriggeredSupportLivingLightning"}}},nil} c["Socketed Gems are Supported by Level 35 Locus Mine"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=35,skillId="SupportLocusMine"}}},nil} c["Socketed Gems are Supported by Level 35 Maim"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=35,skillId="SupportMaim"}}},nil} c["Socketed Gems are Supported by Level 35 Mana Leech"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=35,skillId="SupportManaLeech"}}},nil} @@ -11500,6 +11510,7 @@ c["Socketed Gems are Supported by Level 35 Vile Toxins"]={{[1]={[1]={slotName="{ c["Socketed Gems are Supported by Level 35 Void Manipulation"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=35,skillId="SupportVoidManipulation"}}},nil} c["Socketed Gems are Supported by Level 35 Volatility"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=35,skillId="SupportVolatility"}}},nil} c["Socketed Gems are Supported by Level 35 Volley"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=35,skillId="SupportVolley"}}},nil} +c["Socketed Gems are Supported by Level 35 Windburst"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=35,skillId="SupportWindburst"}},[2]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=35,skillId="TriggeredSupportWindburst"}}},nil} c["Socketed Gems are Supported by Level 35 Withering Touch"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=35,skillId="SupportWitheringTouch"}}},nil} c["Socketed Gems are Supported by Level 5 Cold to Fire"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=5,skillId="SupportColdToFire"}}},nil} c["Socketed Gems are Supported by Level 5 Concentrated Effect"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=5,skillId="SupportConcentratedEffect"}}},nil} @@ -11588,6 +11599,7 @@ c["Spell Skills have 20% increased Area of Effect"]={{[1]={flags=0,keywordFlags= c["Spells Cast by Totems have 4% increased Cast Speed"]={{[1]={flags=18,keywordFlags=16384,name="Speed",type="INC",value=4}},nil} c["Spells Cast by Totems have 5% increased Cast Speed"]={{[1]={flags=18,keywordFlags=16384,name="Speed",type="INC",value=5}},nil} c["Spells Cast by Totems have 8% increased Cast Speed"]={{[1]={flags=18,keywordFlags=16384,name="Speed",type="INC",value=8}},nil} +c["Spells Cost +8% of Life"]={{[1]={[1]={floor=true,percent=8,stat="Life",type="PercentStat"},[2]={skillType=2,type="SkillType"},flags=0,keywordFlags=0,name="LifeCostBase",type="BASE",value=1}},nil} c["Spells Triggered this way have 150% more Cost"]={nil,"Spells Triggered this way have 150% more Cost "} c["Spells Triggered this way have 150% more Cost +28% to Fire Damage over Time Multiplier"]={{},"Spells Triggered this way have 150% more % to Fire Damage over Time Multiplier "} c["Spells cast by Totems deal 25% increased Damage"]={{[1]={flags=2,keywordFlags=16384,name="Damage",type="INC",value=25}},nil} @@ -11601,7 +11613,6 @@ c["Spells have 30% increased Critical Strike Chance per Intensity"]={{[1]={[1]={ c["Spells have 40% increased Critical Strike Chance per Intensity"]={{[1]={[1]={type="Multiplier",var="Intensity"},flags=2,keywordFlags=0,name="CritChance",type="INC",value=40}},nil} c["Spells have 50% increased Critical Strike Chance per Intensity"]={{[1]={[1]={type="Multiplier",var="Intensity"},flags=2,keywordFlags=0,name="CritChance",type="INC",value=50}},nil} c["Spells have a 20% chance to deal Double Damage"]={{[1]={flags=2,keywordFlags=0,name="DoubleDamageChance",type="BASE",value=20}},nil} -c["Spells have an additional Life cost equal to 8% of your Maximum Life"]={{[1]={[1]={floor=true,percent=8,stat="Life",type="PercentStat"},[2]={skillType=2,type="SkillType"},flags=0,keywordFlags=0,name="LifeCostBase",type="BASE",value=1}},nil} c["Spells inflict Intimidate on Critical Strike for 4 seconds"]={nil,"Spells inflict Intimidate on Critical Strike for 4 seconds "} c["Spells which can gain Intensity have +1 to maximum Intensity"]={{[1]={flags=0,keywordFlags=0,name="Multiplier:IntensityLimit",type="BASE",value=1}},nil} c["Spells which have gained Intensity Recently gain 1 Intensity every 0.5 Seconds"]={nil,"Spells which have gained Intensity Recently gain 1 Intensity every 0.5 Seconds "} diff --git a/src/Data/ModFlask.lua b/src/Data/ModFlask.lua index 37b559c759..25d81f3b41 100644 --- a/src/Data/ModFlask.lua +++ b/src/Data/ModFlask.lua @@ -2,250 +2,250 @@ -- Item data (c) Grinding Gear Games return { - ["FlaskIncreasedRecoverySpeed1"] = { type = "Prefix", affix = "Undiluted", "(41-46)% increased Recovery rate", statOrder = { 748 }, level = 1, group = "FlaskIncreasedRecoverySpeed", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, }, - ["FlaskIncreasedRecoverySpeed2"] = { type = "Prefix", affix = "Thickened", "(47-52)% increased Recovery rate", statOrder = { 748 }, level = 21, group = "FlaskIncreasedRecoverySpeed", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, }, - ["FlaskIncreasedRecoverySpeed3_"] = { type = "Prefix", affix = "Viscous", "(53-58)% increased Recovery rate", statOrder = { 748 }, level = 41, group = "FlaskIncreasedRecoverySpeed", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, }, - ["FlaskIncreasedRecoverySpeed4"] = { type = "Prefix", affix = "Condensed", "(59-64)% increased Recovery rate", statOrder = { 748 }, level = 61, group = "FlaskIncreasedRecoverySpeed", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, }, - ["FlaskIncreasedRecoverySpeed5"] = { type = "Prefix", affix = "Catalysed", "(65-70)% increased Recovery rate", statOrder = { 748 }, level = 81, group = "FlaskIncreasedRecoverySpeed", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, }, - ["FlaskIncreasedRecoveryAmount1"] = { type = "Prefix", affix = "Substantial", "(41-46)% increased Amount Recovered", "33% reduced Recovery rate", statOrder = { 747, 748 }, level = 1, group = "FlaskIncreasedRecoveryAmount", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, }, - ["FlaskIncreasedRecoveryAmount2_"] = { type = "Prefix", affix = "Opaque", "(47-52)% increased Amount Recovered", "33% reduced Recovery rate", statOrder = { 747, 748 }, level = 21, group = "FlaskIncreasedRecoveryAmount", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, }, - ["FlaskIncreasedRecoveryAmount3"] = { type = "Prefix", affix = "Full-bodied", "(53-58)% increased Amount Recovered", "33% reduced Recovery rate", statOrder = { 747, 748 }, level = 41, group = "FlaskIncreasedRecoveryAmount", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, }, - ["FlaskIncreasedRecoveryAmount4"] = { type = "Prefix", affix = "Concentrated", "(59-64)% increased Amount Recovered", "33% reduced Recovery rate", statOrder = { 747, 748 }, level = 61, group = "FlaskIncreasedRecoveryAmount", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, }, - ["FlaskIncreasedRecoveryAmount5"] = { type = "Prefix", affix = "Saturated", "(65-70)% increased Amount Recovered", "33% reduced Recovery rate", statOrder = { 747, 748 }, level = 81, group = "FlaskIncreasedRecoveryAmount", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, }, - ["FlaskIncreasedRecoveryOnLowLife1"] = { type = "Prefix", affix = "Prudent", "(101-106)% more Recovery if used while on Low Life", statOrder = { 752 }, level = 6, group = "FlaskIncreasedRecoveryOnLowLife", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask" }, }, - ["FlaskIncreasedRecoveryOnLowLife2_"] = { type = "Prefix", affix = "Prepared", "(107-112)% more Recovery if used while on Low Life", statOrder = { 752 }, level = 25, group = "FlaskIncreasedRecoveryOnLowLife", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask" }, }, - ["FlaskIncreasedRecoveryOnLowLife3"] = { type = "Prefix", affix = "Wary", "(113-118)% more Recovery if used while on Low Life", statOrder = { 752 }, level = 44, group = "FlaskIncreasedRecoveryOnLowLife", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask" }, }, - ["FlaskIncreasedRecoveryOnLowLife4"] = { type = "Prefix", affix = "Careful", "(119-124)% more Recovery if used while on Low Life", statOrder = { 752 }, level = 63, group = "FlaskIncreasedRecoveryOnLowLife", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask" }, }, - ["FlaskIncreasedRecoveryOnLowLife5"] = { type = "Prefix", affix = "Cautious", "(125-130)% more Recovery if used while on Low Life", statOrder = { 752 }, level = 82, group = "FlaskIncreasedRecoveryOnLowLife", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask" }, }, - ["FlaskInstantRecoveryOnLowLife1"] = { type = "Prefix", affix = "Startled", "(27-30)% reduced Amount Recovered", "Instant Recovery when on Low Life", statOrder = { 747, 753 }, level = 9, group = "FlaskInstantRecoveryOnLowLife", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask" }, }, - ["FlaskInstantRecoveryOnLowLife2"] = { type = "Prefix", affix = "Frightened", "(23-26)% reduced Amount Recovered", "Instant Recovery when on Low Life", statOrder = { 747, 753 }, level = 27, group = "FlaskInstantRecoveryOnLowLife", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask" }, }, - ["FlaskInstantRecoveryOnLowLife3"] = { type = "Prefix", affix = "Alarmed", "(19-22)% reduced Amount Recovered", "Instant Recovery when on Low Life", statOrder = { 747, 753 }, level = 45, group = "FlaskInstantRecoveryOnLowLife", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask" }, }, - ["FlaskInstantRecoveryOnLowLife4"] = { type = "Prefix", affix = "Terrified", "(15-18)% reduced Amount Recovered", "Instant Recovery when on Low Life", statOrder = { 747, 753 }, level = 63, group = "FlaskInstantRecoveryOnLowLife", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask" }, }, - ["FlaskInstantRecoveryOnLowLife5__"] = { type = "Prefix", affix = "Panicked", "(11-14)% reduced Amount Recovered", "Instant Recovery when on Low Life", statOrder = { 747, 753 }, level = 81, group = "FlaskInstantRecoveryOnLowLife", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask" }, }, - ["FlaskPartialInstantRecovery1"] = { type = "Prefix", affix = "Simmering", "(52-55)% reduced Amount Recovered", "135% increased Recovery rate", "50% of Recovery applied Instantly", statOrder = { 747, 748, 754 }, level = 3, group = "FlaskPartialInstantRecovery", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, }, - ["FlaskPartialInstantRecovery2"] = { type = "Prefix", affix = "Ebullient", "(48-51)% reduced Amount Recovered", "135% increased Recovery rate", "50% of Recovery applied Instantly", statOrder = { 747, 748, 754 }, level = 22, group = "FlaskPartialInstantRecovery", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, }, - ["FlaskPartialInstantRecovery3"] = { type = "Prefix", affix = "Effusive", "(44-47)% reduced Amount Recovered", "135% increased Recovery rate", "50% of Recovery applied Instantly", statOrder = { 747, 748, 754 }, level = 41, group = "FlaskPartialInstantRecovery", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, }, - ["FlaskPartialInstantRecovery4"] = { type = "Prefix", affix = "Effervescent", "(40-43)% reduced Amount Recovered", "135% increased Recovery rate", "50% of Recovery applied Instantly", statOrder = { 747, 748, 754 }, level = 60, group = "FlaskPartialInstantRecovery", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, }, - ["FlaskPartialInstantRecovery5_"] = { type = "Prefix", affix = "Bubbling", "(36-39)% reduced Amount Recovered", "135% increased Recovery rate", "50% of Recovery applied Instantly", statOrder = { 747, 748, 754 }, level = 79, group = "FlaskPartialInstantRecovery", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, }, - ["FlaskFullInstantRecovery1"] = { type = "Prefix", affix = "Seething", "66% reduced Amount Recovered", "Instant Recovery", statOrder = { 747, 759 }, level = 7, group = "FlaskFullInstantRecovery", weightKey = { "utility_flask", "default", }, weightVal = { 0, 3000 }, modTags = { "flask" }, }, - ["FlaskExtraManaCostsLife1"] = { type = "Prefix", affix = "Aged", "(41-46)% increased Mana Recovered", "Removes 15% of Mana Recovered from Life when used", statOrder = { 746, 762 }, level = 13, group = "FlaskExtraManaCostsLife", weightKey = { "utility_flask", "life_flask", "hybrid_flask", "default", }, weightVal = { 0, 0, 0, 600 }, modTags = { "flask", "resource", "life", "mana" }, }, - ["FlaskExtraManaCostsLife2"] = { type = "Prefix", affix = "Fermented", "(47-52)% increased Mana Recovered", "Removes 15% of Mana Recovered from Life when used", statOrder = { 746, 762 }, level = 30, group = "FlaskExtraManaCostsLife", weightKey = { "utility_flask", "life_flask", "hybrid_flask", "default", }, weightVal = { 0, 0, 0, 600 }, modTags = { "flask", "resource", "life", "mana" }, }, - ["FlaskExtraManaCostsLife3_"] = { type = "Prefix", affix = "Congealed", "(53-58)% increased Mana Recovered", "Removes 15% of Mana Recovered from Life when used", statOrder = { 746, 762 }, level = 47, group = "FlaskExtraManaCostsLife", weightKey = { "utility_flask", "life_flask", "hybrid_flask", "default", }, weightVal = { 0, 0, 0, 600 }, modTags = { "flask", "resource", "life", "mana" }, }, - ["FlaskExtraManaCostsLife4"] = { type = "Prefix", affix = "Turbid", "(59-64)% increased Mana Recovered", "Removes 15% of Mana Recovered from Life when used", statOrder = { 746, 762 }, level = 64, group = "FlaskExtraManaCostsLife", weightKey = { "utility_flask", "life_flask", "hybrid_flask", "default", }, weightVal = { 0, 0, 0, 600 }, modTags = { "flask", "resource", "life", "mana" }, }, - ["FlaskExtraManaCostsLife5_"] = { type = "Prefix", affix = "Caustic", "(65-70)% increased Mana Recovered", "Removes 15% of Mana Recovered from Life when used", statOrder = { 746, 762 }, level = 81, group = "FlaskExtraManaCostsLife", weightKey = { "utility_flask", "life_flask", "hybrid_flask", "default", }, weightVal = { 0, 0, 0, 600 }, modTags = { "flask", "resource", "life", "mana" }, }, - ["FlaskExtraLifeCostsMana1"] = { type = "Prefix", affix = "Impairing", "(35-39)% increased Life Recovered", "Removes 10% of Life Recovered from Mana when used", statOrder = { 742, 764 }, level = 13, group = "FlaskExtraLifeCostsMana", weightKey = { "utility_flask", "mana_flask", "hybrid_flask", "default", }, weightVal = { 0, 0, 0, 600 }, modTags = { "flask", "resource", "life", "mana" }, }, - ["FlaskExtraLifeCostsMana2"] = { type = "Prefix", affix = "Dizzying", "(40-44)% increased Life Recovered", "Removes 10% of Life Recovered from Mana when used", statOrder = { 742, 764 }, level = 30, group = "FlaskExtraLifeCostsMana", weightKey = { "utility_flask", "mana_flask", "hybrid_flask", "default", }, weightVal = { 0, 0, 0, 600 }, modTags = { "flask", "resource", "life", "mana" }, }, - ["FlaskExtraLifeCostsMana3"] = { type = "Prefix", affix = "Depleting", "(46-50)% increased Life Recovered", "Removes 10% of Life Recovered from Mana when used", statOrder = { 742, 764 }, level = 47, group = "FlaskExtraLifeCostsMana", weightKey = { "utility_flask", "mana_flask", "hybrid_flask", "default", }, weightVal = { 0, 0, 0, 600 }, modTags = { "flask", "resource", "life", "mana" }, }, - ["FlaskExtraLifeCostsMana4"] = { type = "Prefix", affix = "Vitiating", "(51-55)% increased Life Recovered", "Removes 10% of Life Recovered from Mana when used", statOrder = { 742, 764 }, level = 64, group = "FlaskExtraLifeCostsMana", weightKey = { "utility_flask", "mana_flask", "hybrid_flask", "default", }, weightVal = { 0, 0, 0, 600 }, modTags = { "flask", "resource", "life", "mana" }, }, - ["FlaskExtraLifeCostsMana5_"] = { type = "Prefix", affix = "Sapping", "(56-60)% increased Life Recovered", "Removes 10% of Life Recovered from Mana when used", statOrder = { 742, 764 }, level = 81, group = "FlaskExtraLifeCostsMana", weightKey = { "utility_flask", "mana_flask", "hybrid_flask", "default", }, weightVal = { 0, 0, 0, 600 }, modTags = { "flask", "resource", "life", "mana" }, }, - ["FlaskDispellsChill1"] = { type = "Suffix", affix = "of Heat", "Grants Immunity to Chill for 4 seconds if used while Chilled", "Grants Immunity to Freeze for 4 seconds if used while Frozen", statOrder = { 793, 793.1 }, level = 4, group = "FlaskDispellsChill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "elemental", "cold", "ailment" }, }, - ["FlaskDispellsBurning1"] = { type = "Suffix", affix = "of Dousing", "Grants Immunity to Ignite for 4 seconds if used while Ignited", "Removes all Burning when used", statOrder = { 795, 795.1 }, level = 6, group = "FlaskDispellsBurning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "elemental", "fire", "ailment" }, }, - ["FlaskRemovesBleeding1"] = { type = "Suffix", affix = "of Staunching", "Grants Immunity to Bleeding for 4 seconds if used while Bleeding", "Grants Immunity to Corrupted Blood for 4 seconds if used while affected by Corrupted Blood", statOrder = { 791, 791.1 }, level = 8, group = "FlaskRemovesBleeding", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "bleed", "physical", "attack", "ailment" }, }, - ["FlaskRemovesShock1"] = { type = "Suffix", affix = "of Grounding", "Grants Immunity to Shock for 4 seconds if used while Shocked", statOrder = { 801 }, level = 10, group = "FlaskRemovesShock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "elemental", "lightning", "ailment" }, }, - ["FlaskExtraCharges1"] = { type = "Prefix", affix = "Wide", "+(16-19) to Maximum Charges", statOrder = { 730 }, level = 2, group = "FlaskExtraMaxCharges", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, }, - ["FlaskExtraCharges2__"] = { type = "Prefix", affix = "Plentiful", "+(20-23) to Maximum Charges", statOrder = { 730 }, level = 22, group = "FlaskExtraMaxCharges", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, }, - ["FlaskExtraCharges3_"] = { type = "Prefix", affix = "Bountiful", "+(24-27) to Maximum Charges", statOrder = { 730 }, level = 42, group = "FlaskExtraMaxCharges", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, }, - ["FlaskExtraCharges4__"] = { type = "Prefix", affix = "Abundant", "+(28-31) to Maximum Charges", statOrder = { 730 }, level = 62, group = "FlaskExtraMaxCharges", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, }, - ["FlaskExtraCharges5"] = { type = "Prefix", affix = "Ample", "+(32-35) to Maximum Charges", statOrder = { 730 }, level = 82, group = "FlaskExtraMaxCharges", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, }, - ["FlaskChargesAddedIncreasePercent1"] = { type = "Prefix", affix = "Constant", "(16-20)% increased Charge Recovery", statOrder = { 738 }, level = 3, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, }, - ["FlaskChargesAddedIncreasePercent2_"] = { type = "Prefix", affix = "Continuous", "(21-25)% increased Charge Recovery", statOrder = { 738 }, level = 23, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, }, - ["FlaskChargesAddedIncreasePercent3_"] = { type = "Prefix", affix = "Endless", "(26-30)% increased Charge Recovery", statOrder = { 738 }, level = 43, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, }, - ["FlaskChargesAddedIncreasePercent4_"] = { type = "Prefix", affix = "Bottomless", "(31-45)% increased Charge Recovery", statOrder = { 738 }, level = 63, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, }, - ["FlaskChargesAddedIncreasePercent5__"] = { type = "Prefix", affix = "Perpetual", "(46-50)% increased Charge Recovery", statOrder = { 738 }, level = 83, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, }, - ["FlaskIncreasedRecoveryReducedEffect1_"] = { type = "Prefix", affix = "Doled", "(37-42)% increased Charge Recovery", "25% reduced effect", statOrder = { 738, 826 }, level = 20, group = "FlaskIncreasedRecoveryReducedEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["FlaskIncreasedRecoveryReducedEffect2_"] = { type = "Prefix", affix = "Provisioned", "(43-48)% increased Charge Recovery", "25% reduced effect", statOrder = { 738, 826 }, level = 36, group = "FlaskIncreasedRecoveryReducedEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["FlaskIncreasedRecoveryReducedEffect3____"] = { type = "Prefix", affix = "Measured", "(49-54)% increased Charge Recovery", "25% reduced effect", statOrder = { 738, 826 }, level = 52, group = "FlaskIncreasedRecoveryReducedEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["FlaskIncreasedRecoveryReducedEffect4_"] = { type = "Prefix", affix = "Allocated", "(55-60)% increased Charge Recovery", "25% reduced effect", statOrder = { 738, 826 }, level = 68, group = "FlaskIncreasedRecoveryReducedEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["FlaskIncreasedRecoveryReducedEffect5"] = { type = "Prefix", affix = "Rationed", "(61-66)% increased Charge Recovery", "25% reduced effect", statOrder = { 738, 826 }, level = 84, group = "FlaskIncreasedRecoveryReducedEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["FlaskBuffArmourWhileHealing1"] = { type = "Suffix", affix = "of the Abalone", "(41-45)% increased Armour during Effect", statOrder = { 827 }, level = 6, group = "FlaskBuffArmourWhileHealing", weightKey = { "expedition_flask", "utility_flask", "default", }, weightVal = { 0, 750, 0 }, modTags = { "flask", "defences", "armour" }, }, - ["FlaskBuffArmourWhileHealing2"] = { type = "Suffix", affix = "of the Tortoise", "(46-50)% increased Armour during Effect", statOrder = { 827 }, level = 32, group = "FlaskBuffArmourWhileHealing", weightKey = { "expedition_flask", "utility_flask", "default", }, weightVal = { 0, 750, 0 }, modTags = { "flask", "defences", "armour" }, }, - ["FlaskBuffArmourWhileHealing3"] = { type = "Suffix", affix = "of the Pangolin", "(51-55)% increased Armour during Effect", statOrder = { 827 }, level = 58, group = "FlaskBuffArmourWhileHealing", weightKey = { "expedition_flask", "utility_flask", "default", }, weightVal = { 0, 750, 0 }, modTags = { "flask", "defences", "armour" }, }, - ["FlaskBuffArmourWhileHealing4"] = { type = "Suffix", affix = "of the Armadillo", "(56-60)% increased Armour during Effect", statOrder = { 827 }, level = 84, group = "FlaskBuffArmourWhileHealing", weightKey = { "expedition_flask", "utility_flask", "default", }, weightVal = { 0, 750, 0 }, modTags = { "flask", "defences", "armour" }, }, - ["FlaskBuffEvasionWhileHealing"] = { type = "Suffix", affix = "of the Gazelle", "(41-45)% increased Evasion Rating during Effect", statOrder = { 828 }, level = 6, group = "FlaskBuffEvasionWhileHealing", weightKey = { "expedition_flask", "utility_flask", "default", }, weightVal = { 0, 750, 0 }, modTags = { "flask", "defences", "evasion" }, }, - ["FlaskBuffEvasionWhileHealing2"] = { type = "Suffix", affix = "of the Antelope", "(46-50)% increased Evasion Rating during Effect", statOrder = { 828 }, level = 32, group = "FlaskBuffEvasionWhileHealing", weightKey = { "expedition_flask", "utility_flask", "default", }, weightVal = { 0, 750, 0 }, modTags = { "flask", "defences", "evasion" }, }, - ["FlaskBuffEvasionWhileHealing3_"] = { type = "Suffix", affix = "of the Ibex", "(51-55)% increased Evasion Rating during Effect", statOrder = { 828 }, level = 58, group = "FlaskBuffEvasionWhileHealing", weightKey = { "expedition_flask", "utility_flask", "default", }, weightVal = { 0, 750, 0 }, modTags = { "flask", "defences", "evasion" }, }, - ["FlaskBuffEvasionWhileHealing4"] = { type = "Suffix", affix = "of the Impala", "(56-60)% increased Evasion Rating during Effect", statOrder = { 828 }, level = 84, group = "FlaskBuffEvasionWhileHealing", weightKey = { "expedition_flask", "utility_flask", "default", }, weightVal = { 0, 750, 0 }, modTags = { "flask", "defences", "evasion" }, }, - ["FlaskBuffMovementSpeedWhileHealing"] = { type = "Suffix", affix = "of the Hare", "(6-8)% increased Movement Speed during Effect", statOrder = { 837 }, level = 5, group = "FlaskBuffMovementSpeedWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "speed" }, }, - ["FlaskBuffMovementSpeedWhileHealing2"] = { type = "Suffix", affix = "of the Lynx", "(9-11)% increased Movement Speed during Effect", statOrder = { 837 }, level = 65, group = "FlaskBuffMovementSpeedWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "speed" }, }, - ["FlaskBuffMovementSpeedWhileHealing3"] = { type = "Suffix", affix = "of the Cheetah", "(12-14)% increased Movement Speed during Effect", statOrder = { 837 }, level = 85, group = "FlaskBuffMovementSpeedWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "speed" }, }, - ["FlaskBuffStunRecoveryWhileHealing"] = { type = "Suffix", affix = "of Stiffness", "(51-56)% increased Block and Stun Recovery during Effect", statOrder = { 838 }, level = 1, group = "FlaskBuffStunRecoveryWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["FlaskBuffStunRecoveryWhileHealing2"] = { type = "Suffix", affix = "of Bracing", "(57-62)% increased Block and Stun Recovery during Effect", statOrder = { 838 }, level = 19, group = "FlaskBuffStunRecoveryWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["FlaskBuffStunRecoveryWhileHealing3"] = { type = "Suffix", affix = "of Ballast", "(63-68)% increased Block and Stun Recovery during Effect", statOrder = { 838 }, level = 37, group = "FlaskBuffStunRecoveryWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["FlaskBuffStunRecoveryWhileHealing4"] = { type = "Suffix", affix = "of Counterpoise", "(69-74)% increased Block and Stun Recovery during Effect", statOrder = { 838 }, level = 55, group = "FlaskBuffStunRecoveryWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["FlaskBuffStunRecoveryWhileHealing5"] = { type = "Suffix", affix = "of Stabilisation", "(75-80)% increased Block and Stun Recovery during Effect", statOrder = { 838 }, level = 73, group = "FlaskBuffStunRecoveryWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["FlaskBuffResistancesWhileHealing"] = { type = "Suffix", affix = "of the Crystal", "(12-14)% additional Elemental Resistances during Effect", statOrder = { 839 }, level = 1, group = "FlaskBuffResistancesWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 750, 0 }, modTags = { "flask", "elemental", "resistance" }, }, - ["FlaskBuffResistancesWhileHealing2"] = { type = "Suffix", affix = "of the Prism", "(12-14)% additional Elemental Resistances during Effect", statOrder = { 839 }, level = 21, group = "FlaskBuffResistancesWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "elemental", "resistance" }, }, - ["FlaskBuffResistancesWhileHealing3"] = { type = "Suffix", affix = "of the Kaleidoscope", "(15-17)% additional Elemental Resistances during Effect", statOrder = { 839 }, level = 41, group = "FlaskBuffResistancesWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 750, 0 }, modTags = { "flask", "elemental", "resistance" }, }, - ["FlaskBuffResistancesWhileHealing4"] = { type = "Suffix", affix = "of Variegation", "(15-17)% additional Elemental Resistances during Effect", statOrder = { 839 }, level = 61, group = "FlaskBuffResistancesWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "elemental", "resistance" }, }, - ["FlaskBuffResistancesWhileHealing5_"] = { type = "Suffix", affix = "of the Rainbow", "(18-20)% additional Elemental Resistances during Effect", statOrder = { 839 }, level = 81, group = "FlaskBuffResistancesWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 750, 0 }, modTags = { "flask", "elemental", "resistance" }, }, - ["FlaskBuffLifeLeechWhileHealing"] = { type = "Suffix", affix = "of Gluttony", "2% of Physical Attack Damage Leeched as Life during Effect", statOrder = { 840 }, level = 10, group = "FlaskBuffLifeLeechWhileHealing", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life", "physical", "attack" }, }, - ["FlaskBuffLifeLeechPermyriadWhileHealing"] = { type = "Suffix", affix = "of Gluttony", "0.4% of Physical Attack Damage Leeched as Life during Effect", statOrder = { 843 }, level = 10, group = "FlaskBuffLifeLeechPermyriadWhileHealing", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life", "physical", "attack" }, }, - ["FlaskBuffManaLeechPermyriadWhileHealing"] = { type = "Suffix", affix = "of Craving", "0.4% of Physical Attack Damage Leeched as Mana during Effect", statOrder = { 845 }, level = 12, group = "FlaskBuffManaLeechPermyriadWhileHealing", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana", "physical", "attack" }, }, - ["FlaskBuffKnockbackWhileHealing"] = { type = "Suffix", affix = "of Fending", "Adds Knockback to Melee Attacks during Effect", statOrder = { 846 }, level = 9, group = "FlaskBuffKnockbackWhileHealing", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "attack" }, }, - ["FlaskBuffWardWhileHealing1"] = { type = "Suffix", affix = "of Runegleaming", "(19-21)% increased Ward during Effect", statOrder = { 830 }, level = 12, group = "FlaskBuffWardWhileHealing", weightKey = { "expedition_flask", "default", }, weightVal = { 750, 0 }, modTags = { "flask", "defences" }, }, - ["FlaskBuffWardWhileHealing2_"] = { type = "Suffix", affix = "of Runeshining", "(22-24)% increased Ward during Effect", statOrder = { 830 }, level = 26, group = "FlaskBuffWardWhileHealing", weightKey = { "expedition_flask", "default", }, weightVal = { 750, 0 }, modTags = { "flask", "defences" }, }, - ["FlaskBuffWardWhileHealing3"] = { type = "Suffix", affix = "of Runeflaring", "(25-27)% increased Ward during Effect", statOrder = { 830 }, level = 52, group = "FlaskBuffWardWhileHealing", weightKey = { "expedition_flask", "default", }, weightVal = { 750, 0 }, modTags = { "flask", "defences" }, }, - ["FlaskBuffWardWhileHealing4"] = { type = "Suffix", affix = "of Runeblazing", "(28-30)% increased Ward during Effect", statOrder = { 830 }, level = 78, group = "FlaskBuffWardWhileHealing", weightKey = { "expedition_flask", "default", }, weightVal = { 750, 0 }, modTags = { "flask", "defences" }, }, - ["FlaskHealsMinions1"] = { type = "Suffix", affix = "of the Novice", "Grants (100-119)% of Life Recovery to Minions", statOrder = { 743 }, level = 10, group = "FlaskHealsMinions", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask", "resource", "life", "minion" }, }, - ["FlaskHealsMinions2"] = { type = "Suffix", affix = "of the Acolyte", "Grants (120-139)% of Life Recovery to Minions", statOrder = { 743 }, level = 28, group = "FlaskHealsMinions", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask", "resource", "life", "minion" }, }, - ["FlaskHealsMinions3"] = { type = "Suffix", affix = "of the Summoner", "Grants (140-159)% of Life Recovery to Minions", statOrder = { 743 }, level = 46, group = "FlaskHealsMinions", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask", "resource", "life", "minion" }, }, - ["FlaskHealsMinions4____"] = { type = "Suffix", affix = "of the Conjurer", "Grants (160-179)% of Life Recovery to Minions", statOrder = { 743 }, level = 64, group = "FlaskHealsMinions", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask", "resource", "life", "minion" }, }, - ["FlaskHealsMinions5"] = { type = "Suffix", affix = "of the Necromancer", "Grants (180-200)% of Life Recovery to Minions", statOrder = { 743 }, level = 82, group = "FlaskHealsMinions", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask", "resource", "life", "minion" }, }, - ["FlaskFullRechargeOnCrit1"] = { type = "Prefix", affix = "Surgeon's", "Recharges 1 Charge when you deal a Critical Strike", statOrder = { 734 }, level = 8, group = "FlaskFullRechargeOnCrit", weightKey = { "critical_utility_flask", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "critical" }, }, - ["FlaskChanceRechargeOnCrit1"] = { type = "Prefix", affix = "Medic's", "(11-15)% chance to gain a Flask Charge when you deal a Critical Strike", statOrder = { 735 }, level = 8, group = "FlaskChanceRechargeOnCrit", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask", "critical" }, }, - ["FlaskChanceRechargeOnCrit2"] = { type = "Prefix", affix = "Physician's", "(16-20)% chance to gain a Flask Charge when you deal a Critical Strike", statOrder = { 735 }, level = 26, group = "FlaskChanceRechargeOnCrit", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask", "critical" }, }, - ["FlaskChanceRechargeOnCrit3___"] = { type = "Prefix", affix = "Doctor's", "(21-25)% chance to gain a Flask Charge when you deal a Critical Strike", statOrder = { 735 }, level = 44, group = "FlaskChanceRechargeOnCrit", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask", "critical" }, }, - ["FlaskChanceRechargeOnCrit4"] = { type = "Prefix", affix = "Specialist's", "(26-30)% chance to gain a Flask Charge when you deal a Critical Strike", statOrder = { 735 }, level = 62, group = "FlaskChanceRechargeOnCrit", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask", "critical" }, }, - ["FlaskChanceRechargeOnCrit5"] = { type = "Prefix", affix = "Surgeon's", "(31-35)% chance to gain a Flask Charge when you deal a Critical Strike", statOrder = { 735 }, level = 80, group = "FlaskChanceRechargeOnCrit", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask", "critical" }, }, - ["FlaskFullRechargeOnTakeCrit1"] = { type = "Prefix", affix = "Avenger's", "Recharges 5 Charges when you take a Critical Strike", statOrder = { 737 }, level = 12, group = "FlaskFullRechargeOnTakeCrit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "critical" }, }, - ["FlaskDispellsPoison1"] = { type = "Suffix", affix = "of Curing", "Grants Immunity to Poison for 4 seconds if used while Poisoned", statOrder = { 799 }, level = 16, group = "FlaskDispellsPoison", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "poison", "chaos", "ailment" }, }, - ["FlaskEffectReducedDuration1"] = { type = "Prefix", affix = "Abecedarian's", "(33-38)% reduced Duration", "25% increased effect", statOrder = { 750, 826 }, level = 20, group = "FlaskEffectReducedDuration", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, - ["FlaskEffectReducedDuration2"] = { type = "Prefix", affix = "Dabbler's", "(28-32)% reduced Duration", "25% increased effect", statOrder = { 750, 826 }, level = 50, group = "FlaskEffectReducedDuration", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, - ["FlaskEffectReducedDuration3"] = { type = "Prefix", affix = "Alchemist's", "(23-27)% reduced Duration", "25% increased effect", statOrder = { 750, 826 }, level = 80, group = "FlaskEffectReducedDuration", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, - ["FlaskChargesUsed1"] = { type = "Prefix", affix = "Apprentice's", "(14-16)% reduced Charges per use", statOrder = { 739 }, level = 14, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, }, - ["FlaskChargesUsed2"] = { type = "Prefix", affix = "Scholar's", "(17-19)% reduced Charges per use", statOrder = { 739 }, level = 31, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, }, - ["FlaskChargesUsed3__"] = { type = "Prefix", affix = "Practitioner's", "(20-22)% reduced Charges per use", statOrder = { 739 }, level = 48, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, }, - ["FlaskChargesUsed4__"] = { type = "Prefix", affix = "Brewer's", "(23-25)% reduced Charges per use", statOrder = { 739 }, level = 65, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, }, - ["FlaskChargesUsed5"] = { type = "Prefix", affix = "Chemist's", "(26-28)% reduced Charges per use", statOrder = { 739 }, level = 82, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, }, - ["FlaskIncreasedDuration2"] = { type = "Prefix", affix = "Investigator's", "(16-20)% increased Duration", statOrder = { 750 }, level = 20, group = "FlaskUtilityIncreasedDuration", weightKey = { "utility_flask", "critical_utility_flask", "default", }, weightVal = { 600, 600, 0 }, modTags = { "flask" }, }, - ["FlaskIncreasedDuration3_"] = { type = "Prefix", affix = "Analyst's", "(21-25)% increased Duration", statOrder = { 750 }, level = 36, group = "FlaskUtilityIncreasedDuration", weightKey = { "utility_flask", "critical_utility_flask", "default", }, weightVal = { 600, 600, 0 }, modTags = { "flask" }, }, - ["FlaskIncreasedDuration4"] = { type = "Prefix", affix = "Examiner's", "(26-30)% increased Duration", statOrder = { 750 }, level = 52, group = "FlaskUtilityIncreasedDuration", weightKey = { "utility_flask", "critical_utility_flask", "default", }, weightVal = { 600, 600, 0 }, modTags = { "flask" }, }, - ["FlaskIncreasedDuration5__"] = { type = "Prefix", affix = "Clinician's", "(31-35)% increased Duration", statOrder = { 750 }, level = 68, group = "FlaskUtilityIncreasedDuration", weightKey = { "utility_flask", "critical_utility_flask", "default", }, weightVal = { 600, 600, 0 }, modTags = { "flask" }, }, - ["FlaskIncreasedDuration6"] = { type = "Prefix", affix = "Experimenter's", "(36-40)% increased Duration", statOrder = { 750 }, level = 84, group = "FlaskUtilityIncreasedDuration", weightKey = { "utility_flask", "critical_utility_flask", "default", }, weightVal = { 600, 600, 0 }, modTags = { "flask" }, }, - ["FlaskFullRechargeOnHit1"] = { type = "Prefix", affix = "Delinquent's", "Gain 1 Charge when you are Hit by an Enemy", statOrder = { 733 }, level = 12, group = "FlaskFullRechargeOnHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, }, - ["FlaskFullRechargeOnHit2_"] = { type = "Prefix", affix = "Transgressor's", "Gain 1 Charge when you are Hit by an Enemy", statOrder = { 733 }, level = 29, group = "FlaskFullRechargeOnHit", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, }, - ["FlaskFullRechargeOnHit3_"] = { type = "Prefix", affix = "Sinner's", "Gain 2 Charges when you are Hit by an Enemy", statOrder = { 733 }, level = 46, group = "FlaskFullRechargeOnHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, }, - ["FlaskFullRechargeOnHit4_"] = { type = "Prefix", affix = "Masochist's", "Gain 2 Charges when you are Hit by an Enemy", statOrder = { 733 }, level = 63, group = "FlaskFullRechargeOnHit", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, }, - ["FlaskFullRechargeOnHit5___"] = { type = "Prefix", affix = "Flagellant's", "Gain 3 Charges when you are Hit by an Enemy", statOrder = { 733 }, level = 80, group = "FlaskFullRechargeOnHit", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, }, - ["FlaskIncreasedHealingCharges1"] = { type = "Prefix", affix = "Nitrate", "(20-25)% increased Charges per use", "(21-26)% increased Amount Recovered", statOrder = { 739, 747 }, level = 10, group = "FlaskIncreasedHealingCharges", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, }, - ["FlaskIncreasedHealingCharges2"] = { type = "Prefix", affix = "Dolomite", "(20-25)% increased Charges per use", "(27-32)% increased Amount Recovered", statOrder = { 739, 747 }, level = 28, group = "FlaskIncreasedHealingCharges", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, }, - ["FlaskIncreasedHealingCharges3"] = { type = "Prefix", affix = "Kieserite", "(20-25)% increased Charges per use", "(33-38)% increased Amount Recovered", statOrder = { 739, 747 }, level = 46, group = "FlaskIncreasedHealingCharges", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, }, - ["FlaskIncreasedHealingCharges4____"] = { type = "Prefix", affix = "Kainite", "(20-25)% increased Charges per use", "(39-44)% increased Amount Recovered", statOrder = { 739, 747 }, level = 64, group = "FlaskIncreasedHealingCharges", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, }, - ["FlaskIncreasedHealingCharges5"] = { type = "Prefix", affix = "Gypsum", "(20-25)% increased Charges per use", "(45-50)% increased Amount Recovered", statOrder = { 739, 747 }, level = 82, group = "FlaskIncreasedHealingCharges", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, }, - ["FlaskManaRecoveryAtEnd1_"] = { type = "Prefix", affix = "Foreboding", "66% increased Amount Recovered", "Mana Recovery occurs instantly at the end of Effect", statOrder = { 747, 758 }, level = 16, group = "FlaskManaRecoveryAtEnd", weightKey = { "utility_flask", "life_flask", "default", }, weightVal = { 0, 0, 3000 }, modTags = { "flask", "resource", "mana" }, }, - ["FlaskEffectNotRemovedOnFullMana1"] = { type = "Prefix", affix = "Enduring", "66% reduced Amount Recovered", "Effect is not removed when Unreserved Mana is Filled", "Effect does not Queue", statOrder = { 747, 757, 757.1 }, level = 16, group = "FlaskEffectNotRemovedOnFullManaReducedRecovery", weightKey = { "utility_flask", "life_flask", "default", }, weightVal = { 0, 0, 3000 }, modTags = { "flask", "resource", "mana" }, }, - ["FlaskBuffAttackLifeLeechWhileHealing1"] = { type = "Suffix", affix = "of Bloodshed", "0.4% of Attack Damage Leeched as Life during Effect", statOrder = { 842 }, level = 10, group = "FlaskBuffAttackLifeLeechWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask", "resource", "life", "attack" }, }, - ["FlaskBuffAttackLifeLeechWhileHealing2"] = { type = "Suffix", affix = "of Gore", "0.5% of Attack Damage Leeched as Life during Effect", statOrder = { 842 }, level = 20, group = "FlaskBuffAttackLifeLeechWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask", "resource", "life", "attack" }, }, - ["FlaskBuffAttackLifeLeechWhileHealing3"] = { type = "Suffix", affix = "of Carnage", "0.6% of Attack Damage Leeched as Life during Effect", statOrder = { 842 }, level = 40, group = "FlaskBuffAttackLifeLeechWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask", "resource", "life", "attack" }, }, - ["FlaskBuffAttackLifeLeechWhileHealing4"] = { type = "Suffix", affix = "of Butchery", "0.7% of Attack Damage Leeched as Life during Effect", statOrder = { 842 }, level = 60, group = "FlaskBuffAttackLifeLeechWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask", "resource", "life", "attack" }, }, - ["FlaskBuffAttackLifeLeechWhileHealing5"] = { type = "Suffix", affix = "of Bloodletting", "0.8% of Attack Damage Leeched as Life during Effect", statOrder = { 842 }, level = 80, group = "FlaskBuffAttackLifeLeechWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask", "resource", "life", "attack" }, }, - ["FlaskBuffSpellEnergyShieldLeechWhileHealing1"] = { type = "Suffix", affix = "of Diverting", "0.4% of Spell Damage Leeched as Energy Shield during Effect", statOrder = { 841 }, level = 10, group = "FlaskBuffSpellEnergyShieldLeechWhileHealing", weightKey = { "utility_flask", "expedition_flask", "default", }, weightVal = { 600, 0, 0 }, modTags = { "flask", "defences", "energy_shield", "caster" }, }, - ["FlaskBuffSpellEnergyShieldLeechWhileHealing2_"] = { type = "Suffix", affix = "of Depletion", "0.5% of Spell Damage Leeched as Energy Shield during Effect", statOrder = { 841 }, level = 20, group = "FlaskBuffSpellEnergyShieldLeechWhileHealing", weightKey = { "utility_flask", "expedition_flask", "default", }, weightVal = { 600, 0, 0 }, modTags = { "flask", "defences", "energy_shield", "caster" }, }, - ["FlaskBuffSpellEnergyShieldLeechWhileHealing3_____"] = { type = "Suffix", affix = "of Tapping", "0.6% of Spell Damage Leeched as Energy Shield during Effect", statOrder = { 841 }, level = 40, group = "FlaskBuffSpellEnergyShieldLeechWhileHealing", weightKey = { "utility_flask", "expedition_flask", "default", }, weightVal = { 600, 0, 0 }, modTags = { "flask", "defences", "energy_shield", "caster" }, }, - ["FlaskBuffSpellEnergyShieldLeechWhileHealing4"] = { type = "Suffix", affix = "of Siphoning", "0.7% of Spell Damage Leeched as Energy Shield during Effect", statOrder = { 841 }, level = 60, group = "FlaskBuffSpellEnergyShieldLeechWhileHealing", weightKey = { "utility_flask", "expedition_flask", "default", }, weightVal = { 600, 0, 0 }, modTags = { "flask", "defences", "energy_shield", "caster" }, }, - ["FlaskBuffSpellEnergyShieldLeechWhileHealing5"] = { type = "Suffix", affix = "of Draining", "0.8% of Spell Damage Leeched as Energy Shield during Effect", statOrder = { 841 }, level = 80, group = "FlaskBuffSpellEnergyShieldLeechWhileHealing", weightKey = { "utility_flask", "expedition_flask", "default", }, weightVal = { 600, 0, 0 }, modTags = { "flask", "defences", "energy_shield", "caster" }, }, - ["FlaskBuffAttackSpeedWhileHealing1"] = { type = "Suffix", affix = "of the Falcon", "(9-11)% increased Attack Speed during Effect", statOrder = { 835 }, level = 12, group = "FlaskBuffAttackSpeedWhileHealing", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "attack", "speed" }, }, - ["FlaskBuffAttackSpeedWhileHealing2_____"] = { type = "Suffix", affix = "of the Eagle", "(12-14)% increased Attack Speed during Effect", statOrder = { 835 }, level = 62, group = "FlaskBuffAttackSpeedWhileHealing", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "attack", "speed" }, }, - ["FlaskBuffAttackSpeedWhileHealing3_"] = { type = "Suffix", affix = "of the Dove", "(15-17)% increased Attack Speed during Effect", statOrder = { 835 }, level = 82, group = "FlaskBuffAttackSpeedWhileHealing", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "attack", "speed" }, }, - ["FlaskBuffCastSpeedWhileHealing1"] = { type = "Suffix", affix = "of the Albatross", "(9-11)% increased Cast Speed during Effect", statOrder = { 836 }, level = 12, group = "FlaskBuffCastSpeedWhileHealing", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "caster", "speed" }, }, - ["FlaskBuffCastSpeedWhileHealing2"] = { type = "Suffix", affix = "of the Hummingbird", "(12-14)% increased Cast Speed during Effect", statOrder = { 836 }, level = 62, group = "FlaskBuffCastSpeedWhileHealing", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "caster", "speed" }, }, - ["FlaskBuffCastSpeedWhileHealing3"] = { type = "Suffix", affix = "of the Horsefly", "(15-17)% increased Cast Speed during Effect", statOrder = { 836 }, level = 82, group = "FlaskBuffCastSpeedWhileHealing", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "caster", "speed" }, }, - ["FlaskBuffAccuracyWhileHealing1__"] = { type = "Suffix", affix = "of the Monkey", "(15-25)% increased Accuracy Rating during Effect", statOrder = { 834 }, level = 12, group = "FlaskBuffAccuracyWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "attack" }, }, - ["FlaskBuffAccuracyWhileHealing2"] = { type = "Suffix", affix = "of the Raccoon", "(26-35)% increased Accuracy Rating during Effect", statOrder = { 834 }, level = 42, group = "FlaskBuffAccuracyWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "attack" }, }, - ["FlaskBuffAccuracyWhileHealing3"] = { type = "Suffix", affix = "of the Crow", "(35-45)% increased Accuracy Rating during Effect", statOrder = { 834 }, level = 72, group = "FlaskBuffAccuracyWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "attack" }, }, - ["FlaskBuffCriticalChanceWhileHealing1_"] = { type = "Suffix", affix = "of Stinging", "(26-31)% increased Critical Strike Chance during Effect", statOrder = { 866 }, level = 18, group = "FlaskBuffCriticalWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask", "critical" }, }, - ["FlaskBuffCriticalChanceWhileHealing2_"] = { type = "Suffix", affix = "of Piercing", "(32-37)% increased Critical Strike Chance during Effect", statOrder = { 866 }, level = 34, group = "FlaskBuffCriticalWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask", "critical" }, }, - ["FlaskBuffCriticalChanceWhileHealing3"] = { type = "Suffix", affix = "of Rupturing", "(38-43)% increased Critical Strike Chance during Effect", statOrder = { 866 }, level = 50, group = "FlaskBuffCriticalWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask", "critical" }, }, - ["FlaskBuffCriticalChanceWhileHealing4__"] = { type = "Suffix", affix = "of Penetrating", "(44-49)% increased Critical Strike Chance during Effect", statOrder = { 866 }, level = 66, group = "FlaskBuffCriticalWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask", "critical" }, }, - ["FlaskBuffCriticalChanceWhileHealing5"] = { type = "Suffix", affix = "of Incision", "(50-55)% increased Critical Strike Chance during Effect", statOrder = { 866 }, level = 82, group = "FlaskBuffCriticalWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask", "critical" }, }, - ["FlaskBuffFreezeShockIgniteChanceWhileHealing1_"] = { type = "Suffix", affix = "of Foisting", "(19-22)% chance to Freeze, Shock and Ignite during Effect", statOrder = { 864 }, level = 12, group = "FlaskBuffFreezeShockIgniteChanceWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 750, 0 }, modTags = { "flask", "elemental", "fire", "cold", "lightning", "ailment" }, }, - ["FlaskBuffFreezeShockIgniteChanceWhileHealing2____"] = { type = "Suffix", affix = "of Imposing", "(23-26)% chance to Freeze, Shock and Ignite during Effect", statOrder = { 864 }, level = 32, group = "FlaskBuffFreezeShockIgniteChanceWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 750, 0 }, modTags = { "flask", "elemental", "fire", "cold", "lightning", "ailment" }, }, - ["FlaskBuffFreezeShockIgniteChanceWhileHealing3"] = { type = "Suffix", affix = "of Wreaking", "(27-30)% chance to Freeze, Shock and Ignite during Effect", statOrder = { 864 }, level = 52, group = "FlaskBuffFreezeShockIgniteChanceWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 750, 0 }, modTags = { "flask", "elemental", "fire", "cold", "lightning", "ailment" }, }, - ["FlaskBuffFreezeShockIgniteChanceWhileHealing4_"] = { type = "Suffix", affix = "of Infliction", "(31-34)% chance to Freeze, Shock and Ignite during Effect", statOrder = { 864 }, level = 72, group = "FlaskBuffFreezeShockIgniteChanceWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 750, 0 }, modTags = { "flask", "elemental", "fire", "cold", "lightning", "ailment" }, }, - ["FlaskBuffAvoidStunWhileHealing1_"] = { type = "Suffix", affix = "of Composure", "(31-35)% Chance to Avoid being Stunned during Effect", statOrder = { 862 }, level = 12, group = "FlaskBuffAvoidStunWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["FlaskBuffAvoidStunWhileHealing2"] = { type = "Suffix", affix = "of Surefootedness", "(36-40)% Chance to Avoid being Stunned during Effect", statOrder = { 862 }, level = 29, group = "FlaskBuffAvoidStunWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["FlaskBuffAvoidStunWhileHealing3"] = { type = "Suffix", affix = "of Persistence", "(41-45)% Chance to Avoid being Stunned during Effect", statOrder = { 862 }, level = 46, group = "FlaskBuffAvoidStunWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["FlaskBuffAvoidStunWhileHealing4"] = { type = "Suffix", affix = "of Relentlessness", "(46-50)% Chance to Avoid being Stunned during Effect", statOrder = { 862 }, level = 63, group = "FlaskBuffAvoidStunWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["FlaskBuffAvoidStunWhileHealing5"] = { type = "Suffix", affix = "of Tenaciousness", "(51-55)% Chance to Avoid being Stunned during Effect", statOrder = { 862 }, level = 80, group = "FlaskBuffAvoidStunWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["FlaskBuffReducedManaCostWhileHealing1_"] = { type = "Suffix", affix = "of the Pupil", "(11-14)% reduced Mana Cost of Skills during Effect", statOrder = { 889 }, level = 12, group = "LocalFlaskSkillManaCostDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana" }, }, - ["FlaskBuffReducedManaCostWhileHealing2__"] = { type = "Suffix", affix = "of the Initiate", "(15-18)% reduced Mana Cost of Skills during Effect", statOrder = { 889 }, level = 29, group = "LocalFlaskSkillManaCostDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana" }, }, - ["FlaskBuffReducedManaCostWhileHealing3"] = { type = "Suffix", affix = "of the Mage", "(19-21)% reduced Mana Cost of Skills during Effect", statOrder = { 889 }, level = 46, group = "LocalFlaskSkillManaCostDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana" }, }, - ["FlaskBuffReducedManaCostWhileHealing4"] = { type = "Suffix", affix = "of the Arcanist", "(22-25)% reduced Mana Cost of Skills during Effect", statOrder = { 889 }, level = 63, group = "LocalFlaskSkillManaCostDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana" }, }, - ["FlaskBuffReducedManaCostWhileHealing5"] = { type = "Suffix", affix = "of the Sorcerer", "(26-29)% reduced Mana Cost of Skills during Effect", statOrder = { 889 }, level = 80, group = "LocalFlaskSkillManaCostDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana" }, }, - ["FlaskBuffChillFreezeDuration1"] = { type = "Suffix", affix = "of the Rabbit", "(36-41)% reduced Effect of Chill on you during Effect", "(36-41)% reduced Freeze Duration on you during Effect", statOrder = { 894, 896 }, level = 4, group = "FlaskBuffChillFreezeDuration", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["FlaskBuffChillFreezeDuration2_"] = { type = "Suffix", affix = "of the Cat", "(42-47)% reduced Effect of Chill on you during Effect", "(42-47)% reduced Freeze Duration on you during Effect", statOrder = { 894, 896 }, level = 23, group = "FlaskBuffChillFreezeDuration", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["FlaskBuffChillFreezeDuration3_"] = { type = "Suffix", affix = "of the Fox", "(48-52)% reduced Effect of Chill on you during Effect", "(48-52)% reduced Freeze Duration on you during Effect", statOrder = { 894, 896 }, level = 42, group = "FlaskBuffChillFreezeDuration", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["FlaskBuffChillFreezeDuration4"] = { type = "Suffix", affix = "of the Sable", "(52-59)% reduced Effect of Chill on you during Effect", "(52-59)% reduced Freeze Duration on you during Effect", statOrder = { 894, 896 }, level = 61, group = "FlaskBuffChillFreezeDuration", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["FlaskBuffChillFreezeDuration5"] = { type = "Suffix", affix = "of the Bear", "(60-65)% reduced Effect of Chill on you during Effect", "(60-65)% reduced Freeze Duration on you during Effect", statOrder = { 894, 896 }, level = 80, group = "FlaskBuffChillFreezeDuration", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["FlaskBuffShockEffect1"] = { type = "Suffix", affix = "of the Plover", "(36-41)% reduced Effect of Shock on you during Effect", statOrder = { 899 }, level = 6, group = "FlaskBuffShockEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["FlaskBuffShockEffect2"] = { type = "Suffix", affix = "of the Sandpiper", "(42-47)% reduced Effect of Shock on you during Effect", statOrder = { 899 }, level = 25, group = "FlaskBuffShockEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["FlaskBuffShockEffect3___"] = { type = "Suffix", affix = "of the Cormorant", "(48-52)% reduced Effect of Shock on you during Effect", statOrder = { 899 }, level = 44, group = "FlaskBuffShockEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["FlaskBuffShockEffect4"] = { type = "Suffix", affix = "of the Sanderling", "(52-59)% reduced Effect of Shock on you during Effect", statOrder = { 899 }, level = 63, group = "FlaskBuffShockEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["FlaskBuffShockEffect5"] = { type = "Suffix", affix = "of the Heron", "(60-65)% reduced Effect of Shock on you during Effect", statOrder = { 899 }, level = 82, group = "FlaskBuffShockEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["FlaskBuffCurseEffect1"] = { type = "Suffix", affix = "of the Petrel", "(36-41)% reduced Effect of Curses on you during Effect", statOrder = { 895 }, level = 8, group = "FlaskBuffCurseEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["FlaskBuffCurseEffect2"] = { type = "Suffix", affix = "of the Mockingbird", "(42-47)% reduced Effect of Curses on you during Effect", statOrder = { 895 }, level = 27, group = "FlaskBuffCurseEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["FlaskBuffCurseEffect3_"] = { type = "Suffix", affix = "of the Curlew", "(48-52)% reduced Effect of Curses on you during Effect", statOrder = { 895 }, level = 46, group = "FlaskBuffCurseEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["FlaskBuffCurseEffect4"] = { type = "Suffix", affix = "of the Kakapo", "(52-59)% reduced Effect of Curses on you during Effect", statOrder = { 895 }, level = 65, group = "FlaskBuffCurseEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["FlaskBuffCurseEffect5"] = { type = "Suffix", affix = "of the Owl", "(60-65)% reduced Effect of Curses on you during Effect", statOrder = { 895 }, level = 84, group = "FlaskBuffCurseEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["FlaskBuffBleedDuration1"] = { type = "Suffix", affix = "[UNUSED] Bleed duration 1", "(35-45)% reduced Bleeding Duration on you during Effect", statOrder = { 893 }, level = 8, group = "FlaskBuffBleedDuration", weightKey = { "utility_flask", "default", }, weightVal = { 0, 0 }, modTags = { "flask" }, }, - ["FlaskBuffPoisonDuration1"] = { type = "Suffix", affix = "[UNUSED] Poison duration 1", "(35-45)% reduced Poison Duration on you during Effect", statOrder = { 898 }, level = 16, group = "FlaskBuffPoisonDuration", weightKey = { "utility_flask", "default", }, weightVal = { 0, 0 }, modTags = { "flask" }, }, - ["FlaskBuffIgniteDuration1_"] = { type = "Suffix", affix = "[UNUSED] Ignite duration 1", "(35-45)% reduced Ignite Duration on you during Effect", statOrder = { 897 }, level = 6, group = "FlaskBuffIgniteDuration", weightKey = { "utility_flask", "default", }, weightVal = { 0, 0 }, modTags = { "flask" }, }, - ["FlaskBuffAvoidChillFreeze1_"] = { type = "Suffix", affix = "of the Orca", "(31-35)% chance to Avoid being Chilled during Effect", "(31-35)% chance to Avoid being Frozen during Effect", statOrder = { 854, 855 }, level = 4, group = "FlaskBuffAvoidChillFreeze", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["FlaskBuffAvoidChillFreeze2"] = { type = "Suffix", affix = "of the Sea Lion", "(36-40)% chance to Avoid being Chilled during Effect", "(36-40)% chance to Avoid being Frozen during Effect", statOrder = { 854, 855 }, level = 23, group = "FlaskBuffAvoidChillFreeze", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["FlaskBuffAvoidChillFreeze3"] = { type = "Suffix", affix = "of the Narwhal", "(41-45)% chance to Avoid being Chilled during Effect", "(41-45)% chance to Avoid being Frozen during Effect", statOrder = { 854, 855 }, level = 42, group = "FlaskBuffAvoidChillFreeze", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["FlaskBuffAvoidChillFreeze4"] = { type = "Suffix", affix = "of the Beluga", "(46-50)% chance to Avoid being Chilled during Effect", "(46-50)% chance to Avoid being Frozen during Effect", statOrder = { 854, 855 }, level = 61, group = "FlaskBuffAvoidChillFreeze", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["FlaskBuffAvoidChillFreeze5"] = { type = "Suffix", affix = "of the Seal", "(51-55)% chance to Avoid being Chilled during Effect", "(51-55)% chance to Avoid being Frozen during Effect", statOrder = { 854, 855 }, level = 80, group = "FlaskBuffAvoidChillFreeze", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["FlaskBuffAvoidIgnite1"] = { type = "Suffix", affix = "of the Guppy", "(31-35)% chance to Avoid being Ignited during Effect", statOrder = { 856 }, level = 6, group = "FlaskBuffAvoidIgnite", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["FlaskBuffAvoidIgnite2"] = { type = "Suffix", affix = "of the Goldfish", "(36-40)% chance to Avoid being Ignited during Effect", statOrder = { 856 }, level = 25, group = "FlaskBuffAvoidIgnite", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["FlaskBuffAvoidIgnite3"] = { type = "Suffix", affix = "of the Carp", "(41-45)% chance to Avoid being Ignited during Effect", statOrder = { 856 }, level = 44, group = "FlaskBuffAvoidIgnite", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["FlaskBuffAvoidIgnite4___"] = { type = "Suffix", affix = "of the Catfish", "(46-50)% chance to Avoid being Ignited during Effect", statOrder = { 856 }, level = 63, group = "FlaskBuffAvoidIgnite", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["FlaskBuffAvoidIgnite5_"] = { type = "Suffix", affix = "of the Sunfish", "(51-55)% chance to Avoid being Ignited during Effect", statOrder = { 856 }, level = 82, group = "FlaskBuffAvoidIgnite", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["FlaskBuffAvoidShock1"] = { type = "Suffix", affix = "of Tree Moss", "(31-35)% chance to Avoid being Shocked during Effect", statOrder = { 857 }, level = 6, group = "FlaskBuffAvoidShock", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["FlaskBuffAvoidShock2_"] = { type = "Suffix", affix = "of Turf Moss", "(36-40)% chance to Avoid being Shocked during Effect", statOrder = { 857 }, level = 25, group = "FlaskBuffAvoidShock", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["FlaskBuffAvoidShock3"] = { type = "Suffix", affix = "of Tooth Moss", "(41-45)% chance to Avoid being Shocked during Effect", statOrder = { 857 }, level = 44, group = "FlaskBuffAvoidShock", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["FlaskBuffAvoidShock4_____"] = { type = "Suffix", affix = "of Plume Moss", "(46-50)% chance to Avoid being Shocked during Effect", statOrder = { 857 }, level = 63, group = "FlaskBuffAvoidShock", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["FlaskBuffAvoidShock5"] = { type = "Suffix", affix = "of Bog Moss", "(51-55)% chance to Avoid being Shocked during Effect", statOrder = { 857 }, level = 82, group = "FlaskBuffAvoidShock", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["FlaskCurseImmunity1"] = { type = "Suffix", affix = "of Warding", "Removes Curses on use", statOrder = { 788 }, level = 18, group = "FlaskCurseImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 3000 }, modTags = { "flask", "caster", "curse" }, }, - ["LocalManaFlaskHinderNearbyEnemies1_"] = { type = "Suffix", affix = "of Interference", "Hinders nearby Enemies with (17-22)% reduced Movement Speed if used while not on Full Mana", statOrder = { 804 }, level = 30, group = "LocalManaFlaskHinderNearbyEnemies", weightKey = { "life_flask", "utility_flask", "default", }, weightVal = { 0, 0, 750 }, modTags = { "flask", "caster" }, }, - ["LocalManaFlaskHinderNearbyEnemies2"] = { type = "Suffix", affix = "of Obstruction", "Hinders nearby Enemies with (23-28)% reduced Movement Speed if used while not on Full Mana", statOrder = { 804 }, level = 48, group = "LocalManaFlaskHinderNearbyEnemies", weightKey = { "life_flask", "utility_flask", "default", }, weightVal = { 0, 0, 750 }, modTags = { "flask", "caster" }, }, - ["LocalManaFlaskHinderNearbyEnemies3"] = { type = "Suffix", affix = "of Occlusion", "Hinders nearby Enemies with (29-34)% reduced Movement Speed if used while not on Full Mana", statOrder = { 804 }, level = 66, group = "LocalManaFlaskHinderNearbyEnemies", weightKey = { "life_flask", "utility_flask", "default", }, weightVal = { 0, 0, 750 }, modTags = { "flask", "caster" }, }, - ["LocalManaFlaskHinderNearbyEnemies4"] = { type = "Suffix", affix = "of Restraint", "Hinders nearby Enemies with (35-40)% reduced Movement Speed if used while not on Full Mana", statOrder = { 804 }, level = 84, group = "LocalManaFlaskHinderNearbyEnemies", weightKey = { "life_flask", "utility_flask", "default", }, weightVal = { 0, 0, 750 }, modTags = { "flask", "caster" }, }, - ["LocalLifeFlaskHinderNearbyEnemies1_"] = { type = "Suffix", affix = "of Interference", "Hinders nearby Enemies with (17-22)% reduced Movement Speed if used while not on Full Life", statOrder = { 803 }, level = 30, group = "LocalLifeFlaskHinderNearbyEnemies", weightKey = { "mana_flask", "utility_flask", "default", }, weightVal = { 0, 0, 750 }, modTags = { "flask", "caster" }, }, - ["LocalLifeFlaskHinderNearbyEnemies2_"] = { type = "Suffix", affix = "of Obstruction", "Hinders nearby Enemies with (23-28)% reduced Movement Speed if used while not on Full Life", statOrder = { 803 }, level = 48, group = "LocalLifeFlaskHinderNearbyEnemies", weightKey = { "mana_flask", "utility_flask", "default", }, weightVal = { 0, 0, 750 }, modTags = { "flask", "caster" }, }, - ["LocalLifeFlaskHinderNearbyEnemies3_"] = { type = "Suffix", affix = "of Occlusion", "Hinders nearby Enemies with (29-34)% reduced Movement Speed if used while not on Full Life", statOrder = { 803 }, level = 66, group = "LocalLifeFlaskHinderNearbyEnemies", weightKey = { "mana_flask", "utility_flask", "default", }, weightVal = { 0, 0, 750 }, modTags = { "flask", "caster" }, }, - ["LocalLifeFlaskHinderNearbyEnemies4"] = { type = "Suffix", affix = "of Restraint", "Hinders nearby Enemies with (35-40)% reduced Movement Speed if used while not on Full Life", statOrder = { 803 }, level = 84, group = "LocalLifeFlaskHinderNearbyEnemies", weightKey = { "mana_flask", "utility_flask", "default", }, weightVal = { 0, 0, 750 }, modTags = { "flask", "caster" }, }, - ["LocalFlaskImmuneToMaimAndHinder1"] = { type = "Suffix", affix = "of Movement", "Grants Immunity to Hinder for (6-8) seconds if used while Hindered", "Grants Immunity to Maim for (6-8) seconds if used while Maimed", statOrder = { 797, 798 }, level = 16, group = "LocalFlaskImmuneToMaimAndHinder", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask", "attack", "caster" }, }, - ["LocalFlaskImmuneToMaimAndHinder2"] = { type = "Suffix", affix = "of Motion", "Grants Immunity to Hinder for (9-11) seconds if used while Hindered", "Grants Immunity to Maim for (9-11) seconds if used while Maimed", statOrder = { 797, 798 }, level = 38, group = "LocalFlaskImmuneToMaimAndHinder", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask", "attack", "caster" }, }, - ["LocalFlaskImmuneToMaimAndHinder3"] = { type = "Suffix", affix = "of Freedom", "Grants Immunity to Hinder for (12-14) seconds if used while Hindered", "Grants Immunity to Maim for (12-14) seconds if used while Maimed", statOrder = { 797, 798 }, level = 60, group = "LocalFlaskImmuneToMaimAndHinder", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask", "attack", "caster" }, }, - ["LocalFlaskImmuneToMaimAndHinder4"] = { type = "Suffix", affix = "of Liberation", "Grants Immunity to Hinder for (15-17) seconds if used while Hindered", "Grants Immunity to Maim for (15-17) seconds if used while Maimed", statOrder = { 797, 798 }, level = 82, group = "LocalFlaskImmuneToMaimAndHinder", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask", "attack", "caster" }, }, - ["LocalLifeFlaskAdditionalLifeRecovery1"] = { type = "Suffix", affix = "of Abundance", "Recover an additional (11-16)% of Flask's Life Recovery Amount over 10 seconds if used while not on Full Life", statOrder = { 790 }, level = 25, group = "LocalLifeFlaskAdditionalLifeRecovery", weightKey = { "life_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["LocalLifeFlaskAdditionalLifeRecovery2__"] = { type = "Suffix", affix = "of Plenty", "Recover an additional (17-22)% of Flask's Life Recovery Amount over 10 seconds if used while not on Full Life", statOrder = { 790 }, level = 39, group = "LocalLifeFlaskAdditionalLifeRecovery", weightKey = { "life_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["LocalLifeFlaskAdditionalLifeRecovery3"] = { type = "Suffix", affix = "of Bounty", "Recover an additional (23-28)% of Flask's Life Recovery Amount over 10 seconds if used while not on Full Life", statOrder = { 790 }, level = 53, group = "LocalLifeFlaskAdditionalLifeRecovery", weightKey = { "life_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["LocalLifeFlaskAdditionalLifeRecovery4"] = { type = "Suffix", affix = "of Incessance", "Recover an additional (29-34)% of Flask's Life Recovery Amount over 10 seconds if used while not on Full Life", statOrder = { 790 }, level = 67, group = "LocalLifeFlaskAdditionalLifeRecovery", weightKey = { "life_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["LocalLifeFlaskAdditionalLifeRecovery5_"] = { type = "Suffix", affix = "of Perenniality", "Recover an additional (35-40)% of Flask's Life Recovery Amount over 10 seconds if used while not on Full Life", statOrder = { 790 }, level = 81, group = "LocalLifeFlaskAdditionalLifeRecovery", weightKey = { "life_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["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 = { 792, 792.1 }, level = 8, group = "FlaskBleedCorruptingBloodImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, }, - ["FlaskBleedCorruptingBloodImmunity2"] = { type = "Suffix", affix = "of Alleviation", "Grants Immunity to Bleeding for (9-11) seconds if used while Bleeding", "Grants Immunity to Corrupted Blood for (9-11) seconds if used while affected by Corrupted Blood", statOrder = { 792, 792.1 }, level = 32, group = "FlaskBleedCorruptingBloodImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, }, - ["FlaskBleedCorruptingBloodImmunity3______"] = { type = "Suffix", affix = "of Allaying", "Grants Immunity to Bleeding for (12-14) seconds if used while Bleeding", "Grants Immunity to Corrupted Blood for (12-14) seconds if used while affected by Corrupted Blood", statOrder = { 792, 792.1 }, level = 56, group = "FlaskBleedCorruptingBloodImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, }, - ["FlaskBleedCorruptingBloodImmunity4_"] = { type = "Suffix", affix = "of Assuaging", "Grants Immunity to Bleeding for (15-17) seconds if used while Bleeding", "Grants Immunity to Corrupted Blood for (15-17) seconds if used while affected by Corrupted Blood", statOrder = { 792, 792.1 }, level = 80, group = "FlaskBleedCorruptingBloodImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, }, - ["FlaskShockImmunity1"] = { type = "Suffix", affix = "of Earthing", "Grants Immunity to Shock for (6-8) seconds if used while Shocked", statOrder = { 802 }, level = 6, group = "FlaskShockImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, }, - ["FlaskShockImmunity2"] = { type = "Suffix", affix = "of Grounding", "Grants Immunity to Shock for (9-11) seconds if used while Shocked", statOrder = { 802 }, level = 30, group = "FlaskShockImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, }, - ["FlaskShockImmunity3"] = { type = "Suffix", affix = "of Insulation", "Grants Immunity to Shock for (12-14) seconds if used while Shocked", statOrder = { 802 }, level = 54, group = "FlaskShockImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, }, - ["FlaskShockImmunity4_"] = { type = "Suffix", affix = "of the Dielectric", "Grants Immunity to Shock for (15-17) seconds if used while Shocked", statOrder = { 802 }, level = 78, group = "FlaskShockImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, }, - ["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 = { 794, 794.1 }, level = 4, group = "FlaskChillFreezeImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, }, - ["FlaskChillFreezeImmunity2"] = { type = "Suffix", affix = "of Thermodynamics", "Grants Immunity to Chill for (9-11) seconds if used while Chilled", "Grants Immunity to Freeze for (9-11) seconds if used while Frozen", statOrder = { 794, 794.1 }, level = 28, group = "FlaskChillFreezeImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, }, - ["FlaskChillFreezeImmunity3"] = { type = "Suffix", affix = "of Entropy", "Grants Immunity to Chill for (12-14) seconds if used while Chilled", "Grants Immunity to Freeze for (12-14) seconds if used while Frozen", statOrder = { 794, 794.1 }, level = 52, group = "FlaskChillFreezeImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, }, - ["FlaskChillFreezeImmunity4"] = { type = "Suffix", affix = "of Thawing", "Grants Immunity to Chill for (15-17) seconds if used while Chilled", "Grants Immunity to Freeze for (15-17) seconds if used while Frozen", statOrder = { 794, 794.1 }, level = 76, group = "FlaskChillFreezeImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, }, - ["FlaskIgniteImmunity1"] = { type = "Suffix", affix = "of Damping", "Grants Immunity to Ignite for (6-8) seconds if used while Ignited", "Removes all Burning when used", statOrder = { 796, 796.1 }, level = 6, group = "FlaskIgniteImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, }, - ["FlaskIgniteImmunity2_"] = { type = "Suffix", affix = "of Quashing", "Grants Immunity to Ignite for (9-11) seconds if used while Ignited", "Removes all Burning when used", statOrder = { 796, 796.1 }, level = 30, group = "FlaskIgniteImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, }, - ["FlaskIgniteImmunity3_"] = { type = "Suffix", affix = "of Quelling", "Grants Immunity to Ignite for (12-14) seconds if used while Ignited", "Removes all Burning when used", statOrder = { 796, 796.1 }, level = 54, group = "FlaskIgniteImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, }, - ["FlaskIgniteImmunity4"] = { type = "Suffix", affix = "of Quenching", "Grants Immunity to Ignite for (15-17) seconds if used while Ignited", "Removes all Burning when used", statOrder = { 796, 796.1 }, level = 78, group = "FlaskIgniteImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, }, - ["FlaskPoisonImmunity1__"] = { type = "Suffix", affix = "of the Antitoxin", "Grants Immunity to Poison for (6-8) seconds if used while Poisoned", statOrder = { 800 }, level = 16, group = "FlaskPoisonImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, }, - ["FlaskPoisonImmunity2"] = { type = "Suffix", affix = "of the Remedy", "Grants Immunity to Poison for (9-11) seconds if used while Poisoned", statOrder = { 800 }, level = 38, group = "FlaskPoisonImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, }, - ["FlaskPoisonImmunity3"] = { type = "Suffix", affix = "of the Cure", "Grants Immunity to Poison for (12-14) seconds if used while Poisoned", statOrder = { 800 }, level = 60, group = "FlaskPoisonImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, }, - ["FlaskPoisonImmunity4"] = { type = "Suffix", affix = "of the Antidote", "Grants Immunity to Poison for (15-17) seconds if used while Poisoned", statOrder = { 800 }, level = 82, group = "FlaskPoisonImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, }, - ["FlaskPoisonImmunityDuringEffect"] = { type = "Suffix", affix = "of the Skunk", "(45-49)% less Duration", "Immunity to Poison during Effect", statOrder = { 751, 875 }, level = 16, group = "FlaskPoisonImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, - ["FlaskPoisonImmunityDuringEffect2"] = { type = "Suffix", affix = "of the Hedgehog", "(40-44)% less Duration", "Immunity to Poison during Effect", statOrder = { 751, 875 }, level = 46, group = "FlaskPoisonImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, - ["FlaskPoisonImmunityDuringEffect3"] = { type = "Suffix", affix = "of the Opossum", "(35-39)% less Duration", "Immunity to Poison during Effect", statOrder = { 751, 875 }, level = 76, group = "FlaskPoisonImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, - ["FlaskShockImmunityDuringEffect"] = { type = "Suffix", affix = "of the Conger", "(45-49)% less Duration", "Immunity to Shock during Effect", statOrder = { 751, 876 }, level = 6, group = "FlaskShockImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, - ["FlaskShockImmunityDuringEffect2___"] = { type = "Suffix", affix = "of the Moray", "(40-44)% less Duration", "Immunity to Shock during Effect", statOrder = { 751, 876 }, level = 40, group = "FlaskShockImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, - ["FlaskShockImmunityDuringEffect3"] = { type = "Suffix", affix = "of the Eel", "(35-39)% less Duration", "Immunity to Shock during Effect", statOrder = { 751, 876 }, level = 74, group = "FlaskShockImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, - ["FlaskFreezeAndChillImmunityDuringEffect"] = { type = "Suffix", affix = "of the Deer", "(45-49)% less Duration", "Immunity to Freeze and Chill during Effect", statOrder = { 751, 874 }, level = 4, group = "FlaskFreezeAndChillImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, - ["FlaskFreezeAndChillImmunityDuringEffect2"] = { type = "Suffix", affix = "of the Walrus", "(40-44)% less Duration", "Immunity to Freeze and Chill during Effect", statOrder = { 751, 874 }, level = 38, group = "FlaskFreezeAndChillImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, - ["FlaskFreezeAndChillImmunityDuringEffect3__"] = { type = "Suffix", affix = "of the Penguin", "(35-39)% less Duration", "Immunity to Freeze and Chill during Effect", statOrder = { 751, 874 }, level = 72, group = "FlaskFreezeAndChillImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, - ["FlaskIgniteImmunityDuringEffect_"] = { type = "Suffix", affix = "of the Urchin", "(45-49)% less Duration", "Immunity to Ignite during Effect", "Removes Burning on use", statOrder = { 751, 807, 807.1 }, level = 6, group = "FlaskIgniteImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, - ["FlaskIgniteImmunityDuringEffect2"] = { type = "Suffix", affix = "of the Mussel", "(40-44)% less Duration", "Immunity to Ignite during Effect", "Removes Burning on use", statOrder = { 751, 807, 807.1 }, level = 40, group = "FlaskIgniteImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, - ["FlaskIgniteImmunityDuringEffect3"] = { type = "Suffix", affix = "of the Starfish", "(35-39)% less Duration", "Immunity to Ignite during Effect", "Removes Burning on use", statOrder = { 751, 807, 807.1 }, level = 74, group = "FlaskIgniteImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, - ["FlaskBleedingAndCorruptedBloodImmunityDuringEffect_1"] = { type = "Suffix", affix = "of the Lizard", "(45-49)% less Duration", "Immunity to Bleeding and Corrupted Blood during Effect", statOrder = { 751, 872 }, level = 8, group = "FlaskBleedingAndCorruptedBloodImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, - ["FlaskBleedingAndCorruptedBloodImmunityDuringEffect2_"] = { type = "Suffix", affix = "of the Skink", "(40-44)% less Duration", "Immunity to Bleeding and Corrupted Blood during Effect", statOrder = { 751, 872 }, level = 42, group = "FlaskBleedingAndCorruptedBloodImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, - ["FlaskBleedingAndCorruptedBloodImmunityDuringEffect3___"] = { type = "Suffix", affix = "of the Iguana", "(35-39)% less Duration", "Immunity to Bleeding and Corrupted Blood during Effect", statOrder = { 751, 872 }, level = 76, group = "FlaskBleedingAndCorruptedBloodImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, + ["FlaskIncreasedRecoverySpeed1"] = { type = "Prefix", affix = "Undiluted", "(41-46)% increased Recovery rate", statOrder = { 769 }, level = 1, group = "FlaskIncreasedRecoverySpeed", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, }, + ["FlaskIncreasedRecoverySpeed2"] = { type = "Prefix", affix = "Thickened", "(47-52)% increased Recovery rate", statOrder = { 769 }, level = 21, group = "FlaskIncreasedRecoverySpeed", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, }, + ["FlaskIncreasedRecoverySpeed3_"] = { type = "Prefix", affix = "Viscous", "(53-58)% increased Recovery rate", statOrder = { 769 }, level = 41, group = "FlaskIncreasedRecoverySpeed", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, }, + ["FlaskIncreasedRecoverySpeed4"] = { type = "Prefix", affix = "Condensed", "(59-64)% increased Recovery rate", statOrder = { 769 }, level = 61, group = "FlaskIncreasedRecoverySpeed", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, }, + ["FlaskIncreasedRecoverySpeed5"] = { type = "Prefix", affix = "Catalysed", "(65-70)% increased Recovery rate", statOrder = { 769 }, level = 81, group = "FlaskIncreasedRecoverySpeed", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, }, + ["FlaskIncreasedRecoveryAmount1"] = { type = "Prefix", affix = "Substantial", "(41-46)% increased Amount Recovered", "33% reduced Recovery rate", statOrder = { 768, 769 }, level = 1, group = "FlaskIncreasedRecoveryAmount", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, }, + ["FlaskIncreasedRecoveryAmount2_"] = { type = "Prefix", affix = "Opaque", "(47-52)% increased Amount Recovered", "33% reduced Recovery rate", statOrder = { 768, 769 }, level = 21, group = "FlaskIncreasedRecoveryAmount", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, }, + ["FlaskIncreasedRecoveryAmount3"] = { type = "Prefix", affix = "Full-bodied", "(53-58)% increased Amount Recovered", "33% reduced Recovery rate", statOrder = { 768, 769 }, level = 41, group = "FlaskIncreasedRecoveryAmount", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, }, + ["FlaskIncreasedRecoveryAmount4"] = { type = "Prefix", affix = "Concentrated", "(59-64)% increased Amount Recovered", "33% reduced Recovery rate", statOrder = { 768, 769 }, level = 61, group = "FlaskIncreasedRecoveryAmount", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, }, + ["FlaskIncreasedRecoveryAmount5"] = { type = "Prefix", affix = "Saturated", "(65-70)% increased Amount Recovered", "33% reduced Recovery rate", statOrder = { 768, 769 }, level = 81, group = "FlaskIncreasedRecoveryAmount", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, }, + ["FlaskIncreasedRecoveryOnLowLife1"] = { type = "Prefix", affix = "Prudent", "(101-106)% more Recovery if used while on Low Life", statOrder = { 773 }, level = 6, group = "FlaskIncreasedRecoveryOnLowLife", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask" }, }, + ["FlaskIncreasedRecoveryOnLowLife2_"] = { type = "Prefix", affix = "Prepared", "(107-112)% more Recovery if used while on Low Life", statOrder = { 773 }, level = 25, group = "FlaskIncreasedRecoveryOnLowLife", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask" }, }, + ["FlaskIncreasedRecoveryOnLowLife3"] = { type = "Prefix", affix = "Wary", "(113-118)% more Recovery if used while on Low Life", statOrder = { 773 }, level = 44, group = "FlaskIncreasedRecoveryOnLowLife", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask" }, }, + ["FlaskIncreasedRecoveryOnLowLife4"] = { type = "Prefix", affix = "Careful", "(119-124)% more Recovery if used while on Low Life", statOrder = { 773 }, level = 63, group = "FlaskIncreasedRecoveryOnLowLife", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask" }, }, + ["FlaskIncreasedRecoveryOnLowLife5"] = { type = "Prefix", affix = "Cautious", "(125-130)% more Recovery if used while on Low Life", statOrder = { 773 }, level = 82, group = "FlaskIncreasedRecoveryOnLowLife", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask" }, }, + ["FlaskInstantRecoveryOnLowLife1"] = { type = "Prefix", affix = "Startled", "(27-30)% reduced Amount Recovered", "Instant Recovery when on Low Life", statOrder = { 768, 774 }, level = 9, group = "FlaskInstantRecoveryOnLowLife", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask" }, }, + ["FlaskInstantRecoveryOnLowLife2"] = { type = "Prefix", affix = "Frightened", "(23-26)% reduced Amount Recovered", "Instant Recovery when on Low Life", statOrder = { 768, 774 }, level = 27, group = "FlaskInstantRecoveryOnLowLife", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask" }, }, + ["FlaskInstantRecoveryOnLowLife3"] = { type = "Prefix", affix = "Alarmed", "(19-22)% reduced Amount Recovered", "Instant Recovery when on Low Life", statOrder = { 768, 774 }, level = 45, group = "FlaskInstantRecoveryOnLowLife", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask" }, }, + ["FlaskInstantRecoveryOnLowLife4"] = { type = "Prefix", affix = "Terrified", "(15-18)% reduced Amount Recovered", "Instant Recovery when on Low Life", statOrder = { 768, 774 }, level = 63, group = "FlaskInstantRecoveryOnLowLife", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask" }, }, + ["FlaskInstantRecoveryOnLowLife5__"] = { type = "Prefix", affix = "Panicked", "(11-14)% reduced Amount Recovered", "Instant Recovery when on Low Life", statOrder = { 768, 774 }, level = 81, group = "FlaskInstantRecoveryOnLowLife", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask" }, }, + ["FlaskPartialInstantRecovery1"] = { type = "Prefix", affix = "Simmering", "(52-55)% reduced Amount Recovered", "135% increased Recovery rate", "50% of Recovery applied Instantly", statOrder = { 768, 769, 775 }, level = 3, group = "FlaskPartialInstantRecovery", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, }, + ["FlaskPartialInstantRecovery2"] = { type = "Prefix", affix = "Ebullient", "(48-51)% reduced Amount Recovered", "135% increased Recovery rate", "50% of Recovery applied Instantly", statOrder = { 768, 769, 775 }, level = 22, group = "FlaskPartialInstantRecovery", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, }, + ["FlaskPartialInstantRecovery3"] = { type = "Prefix", affix = "Effusive", "(44-47)% reduced Amount Recovered", "135% increased Recovery rate", "50% of Recovery applied Instantly", statOrder = { 768, 769, 775 }, level = 41, group = "FlaskPartialInstantRecovery", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, }, + ["FlaskPartialInstantRecovery4"] = { type = "Prefix", affix = "Effervescent", "(40-43)% reduced Amount Recovered", "135% increased Recovery rate", "50% of Recovery applied Instantly", statOrder = { 768, 769, 775 }, level = 60, group = "FlaskPartialInstantRecovery", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, }, + ["FlaskPartialInstantRecovery5_"] = { type = "Prefix", affix = "Bubbling", "(36-39)% reduced Amount Recovered", "135% increased Recovery rate", "50% of Recovery applied Instantly", statOrder = { 768, 769, 775 }, level = 79, group = "FlaskPartialInstantRecovery", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, }, + ["FlaskFullInstantRecovery1"] = { type = "Prefix", affix = "Seething", "66% reduced Amount Recovered", "Instant Recovery", statOrder = { 768, 780 }, level = 7, group = "FlaskFullInstantRecovery", weightKey = { "utility_flask", "default", }, weightVal = { 0, 3000 }, modTags = { "flask" }, }, + ["FlaskExtraManaCostsLife1"] = { type = "Prefix", affix = "Aged", "(41-46)% increased Mana Recovered", "Removes 15% of Mana Recovered from Life when used", statOrder = { 767, 783 }, level = 13, group = "FlaskExtraManaCostsLife", weightKey = { "utility_flask", "life_flask", "hybrid_flask", "default", }, weightVal = { 0, 0, 0, 600 }, modTags = { "flask", "resource", "life", "mana" }, }, + ["FlaskExtraManaCostsLife2"] = { type = "Prefix", affix = "Fermented", "(47-52)% increased Mana Recovered", "Removes 15% of Mana Recovered from Life when used", statOrder = { 767, 783 }, level = 30, group = "FlaskExtraManaCostsLife", weightKey = { "utility_flask", "life_flask", "hybrid_flask", "default", }, weightVal = { 0, 0, 0, 600 }, modTags = { "flask", "resource", "life", "mana" }, }, + ["FlaskExtraManaCostsLife3_"] = { type = "Prefix", affix = "Congealed", "(53-58)% increased Mana Recovered", "Removes 15% of Mana Recovered from Life when used", statOrder = { 767, 783 }, level = 47, group = "FlaskExtraManaCostsLife", weightKey = { "utility_flask", "life_flask", "hybrid_flask", "default", }, weightVal = { 0, 0, 0, 600 }, modTags = { "flask", "resource", "life", "mana" }, }, + ["FlaskExtraManaCostsLife4"] = { type = "Prefix", affix = "Turbid", "(59-64)% increased Mana Recovered", "Removes 15% of Mana Recovered from Life when used", statOrder = { 767, 783 }, level = 64, group = "FlaskExtraManaCostsLife", weightKey = { "utility_flask", "life_flask", "hybrid_flask", "default", }, weightVal = { 0, 0, 0, 600 }, modTags = { "flask", "resource", "life", "mana" }, }, + ["FlaskExtraManaCostsLife5_"] = { type = "Prefix", affix = "Caustic", "(65-70)% increased Mana Recovered", "Removes 15% of Mana Recovered from Life when used", statOrder = { 767, 783 }, level = 81, group = "FlaskExtraManaCostsLife", weightKey = { "utility_flask", "life_flask", "hybrid_flask", "default", }, weightVal = { 0, 0, 0, 600 }, modTags = { "flask", "resource", "life", "mana" }, }, + ["FlaskExtraLifeCostsMana1"] = { type = "Prefix", affix = "Impairing", "(35-39)% increased Life Recovered", "Removes 10% of Life Recovered from Mana when used", statOrder = { 763, 785 }, level = 13, group = "FlaskExtraLifeCostsMana", weightKey = { "utility_flask", "mana_flask", "hybrid_flask", "default", }, weightVal = { 0, 0, 0, 600 }, modTags = { "flask", "resource", "life", "mana" }, }, + ["FlaskExtraLifeCostsMana2"] = { type = "Prefix", affix = "Dizzying", "(40-44)% increased Life Recovered", "Removes 10% of Life Recovered from Mana when used", statOrder = { 763, 785 }, level = 30, group = "FlaskExtraLifeCostsMana", weightKey = { "utility_flask", "mana_flask", "hybrid_flask", "default", }, weightVal = { 0, 0, 0, 600 }, modTags = { "flask", "resource", "life", "mana" }, }, + ["FlaskExtraLifeCostsMana3"] = { type = "Prefix", affix = "Depleting", "(46-50)% increased Life Recovered", "Removes 10% of Life Recovered from Mana when used", statOrder = { 763, 785 }, level = 47, group = "FlaskExtraLifeCostsMana", weightKey = { "utility_flask", "mana_flask", "hybrid_flask", "default", }, weightVal = { 0, 0, 0, 600 }, modTags = { "flask", "resource", "life", "mana" }, }, + ["FlaskExtraLifeCostsMana4"] = { type = "Prefix", affix = "Vitiating", "(51-55)% increased Life Recovered", "Removes 10% of Life Recovered from Mana when used", statOrder = { 763, 785 }, level = 64, group = "FlaskExtraLifeCostsMana", weightKey = { "utility_flask", "mana_flask", "hybrid_flask", "default", }, weightVal = { 0, 0, 0, 600 }, modTags = { "flask", "resource", "life", "mana" }, }, + ["FlaskExtraLifeCostsMana5_"] = { type = "Prefix", affix = "Sapping", "(56-60)% increased Life Recovered", "Removes 10% of Life Recovered from Mana when used", statOrder = { 763, 785 }, level = 81, group = "FlaskExtraLifeCostsMana", weightKey = { "utility_flask", "mana_flask", "hybrid_flask", "default", }, weightVal = { 0, 0, 0, 600 }, modTags = { "flask", "resource", "life", "mana" }, }, + ["FlaskDispellsChill1"] = { type = "Suffix", affix = "of Heat", "Grants Immunity to Chill for 4 seconds if used while Chilled", "Grants Immunity to Freeze for 4 seconds if used while Frozen", statOrder = { 816, 816.1 }, level = 4, group = "FlaskDispellsChill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "elemental", "cold", "ailment" }, }, + ["FlaskDispellsBurning1"] = { type = "Suffix", affix = "of Dousing", "Grants Immunity to Ignite for 4 seconds if used while Ignited", "Removes all Burning when used", statOrder = { 818, 818.1 }, level = 6, group = "FlaskDispellsBurning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "elemental", "fire", "ailment" }, }, + ["FlaskRemovesBleeding1"] = { type = "Suffix", affix = "of Staunching", "Grants Immunity to Bleeding for 4 seconds if used while Bleeding", "Grants Immunity to Corrupted Blood for 4 seconds if used while affected by Corrupted Blood", statOrder = { 814, 814.1 }, level = 8, group = "FlaskRemovesBleeding", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "bleed", "physical", "attack", "ailment" }, }, + ["FlaskRemovesShock1"] = { type = "Suffix", affix = "of Grounding", "Grants Immunity to Shock for 4 seconds if used while Shocked", statOrder = { 824 }, level = 10, group = "FlaskRemovesShock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "elemental", "lightning", "ailment" }, }, + ["FlaskExtraCharges1"] = { type = "Prefix", affix = "Wide", "+(16-19) to Maximum Charges", statOrder = { 751 }, level = 2, group = "FlaskExtraMaxCharges", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, }, + ["FlaskExtraCharges2__"] = { type = "Prefix", affix = "Plentiful", "+(20-23) to Maximum Charges", statOrder = { 751 }, level = 22, group = "FlaskExtraMaxCharges", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, }, + ["FlaskExtraCharges3_"] = { type = "Prefix", affix = "Bountiful", "+(24-27) to Maximum Charges", statOrder = { 751 }, level = 42, group = "FlaskExtraMaxCharges", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, }, + ["FlaskExtraCharges4__"] = { type = "Prefix", affix = "Abundant", "+(28-31) to Maximum Charges", statOrder = { 751 }, level = 62, group = "FlaskExtraMaxCharges", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, }, + ["FlaskExtraCharges5"] = { type = "Prefix", affix = "Ample", "+(32-35) to Maximum Charges", statOrder = { 751 }, level = 82, group = "FlaskExtraMaxCharges", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, }, + ["FlaskChargesAddedIncreasePercent1"] = { type = "Prefix", affix = "Constant", "(16-20)% increased Charge Recovery", statOrder = { 759 }, level = 3, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, }, + ["FlaskChargesAddedIncreasePercent2_"] = { type = "Prefix", affix = "Continuous", "(21-25)% increased Charge Recovery", statOrder = { 759 }, level = 23, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, }, + ["FlaskChargesAddedIncreasePercent3_"] = { type = "Prefix", affix = "Endless", "(26-30)% increased Charge Recovery", statOrder = { 759 }, level = 43, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, }, + ["FlaskChargesAddedIncreasePercent4_"] = { type = "Prefix", affix = "Bottomless", "(31-45)% increased Charge Recovery", statOrder = { 759 }, level = 63, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, }, + ["FlaskChargesAddedIncreasePercent5__"] = { type = "Prefix", affix = "Perpetual", "(46-50)% increased Charge Recovery", statOrder = { 759 }, level = 83, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, }, + ["FlaskIncreasedRecoveryReducedEffect1_"] = { type = "Prefix", affix = "Doled", "(37-42)% increased Charge Recovery", "25% reduced effect", statOrder = { 759, 849 }, level = 20, group = "FlaskIncreasedRecoveryReducedEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["FlaskIncreasedRecoveryReducedEffect2_"] = { type = "Prefix", affix = "Provisioned", "(43-48)% increased Charge Recovery", "25% reduced effect", statOrder = { 759, 849 }, level = 36, group = "FlaskIncreasedRecoveryReducedEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["FlaskIncreasedRecoveryReducedEffect3____"] = { type = "Prefix", affix = "Measured", "(49-54)% increased Charge Recovery", "25% reduced effect", statOrder = { 759, 849 }, level = 52, group = "FlaskIncreasedRecoveryReducedEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["FlaskIncreasedRecoveryReducedEffect4_"] = { type = "Prefix", affix = "Allocated", "(55-60)% increased Charge Recovery", "25% reduced effect", statOrder = { 759, 849 }, level = 68, group = "FlaskIncreasedRecoveryReducedEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["FlaskIncreasedRecoveryReducedEffect5"] = { type = "Prefix", affix = "Rationed", "(61-66)% increased Charge Recovery", "25% reduced effect", statOrder = { 759, 849 }, level = 84, group = "FlaskIncreasedRecoveryReducedEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["FlaskBuffArmourWhileHealing1"] = { type = "Suffix", affix = "of the Abalone", "(41-45)% increased Armour during Effect", statOrder = { 850 }, level = 6, group = "FlaskBuffArmourWhileHealing", weightKey = { "expedition_flask", "utility_flask", "default", }, weightVal = { 0, 750, 0 }, modTags = { "flask", "defences", "armour" }, }, + ["FlaskBuffArmourWhileHealing2"] = { type = "Suffix", affix = "of the Tortoise", "(46-50)% increased Armour during Effect", statOrder = { 850 }, level = 32, group = "FlaskBuffArmourWhileHealing", weightKey = { "expedition_flask", "utility_flask", "default", }, weightVal = { 0, 750, 0 }, modTags = { "flask", "defences", "armour" }, }, + ["FlaskBuffArmourWhileHealing3"] = { type = "Suffix", affix = "of the Pangolin", "(51-55)% increased Armour during Effect", statOrder = { 850 }, level = 58, group = "FlaskBuffArmourWhileHealing", weightKey = { "expedition_flask", "utility_flask", "default", }, weightVal = { 0, 750, 0 }, modTags = { "flask", "defences", "armour" }, }, + ["FlaskBuffArmourWhileHealing4"] = { type = "Suffix", affix = "of the Armadillo", "(56-60)% increased Armour during Effect", statOrder = { 850 }, level = 84, group = "FlaskBuffArmourWhileHealing", weightKey = { "expedition_flask", "utility_flask", "default", }, weightVal = { 0, 750, 0 }, modTags = { "flask", "defences", "armour" }, }, + ["FlaskBuffEvasionWhileHealing"] = { type = "Suffix", affix = "of the Gazelle", "(41-45)% increased Evasion Rating during Effect", statOrder = { 851 }, level = 6, group = "FlaskBuffEvasionWhileHealing", weightKey = { "expedition_flask", "utility_flask", "default", }, weightVal = { 0, 750, 0 }, modTags = { "flask", "defences", "evasion" }, }, + ["FlaskBuffEvasionWhileHealing2"] = { type = "Suffix", affix = "of the Antelope", "(46-50)% increased Evasion Rating during Effect", statOrder = { 851 }, level = 32, group = "FlaskBuffEvasionWhileHealing", weightKey = { "expedition_flask", "utility_flask", "default", }, weightVal = { 0, 750, 0 }, modTags = { "flask", "defences", "evasion" }, }, + ["FlaskBuffEvasionWhileHealing3_"] = { type = "Suffix", affix = "of the Ibex", "(51-55)% increased Evasion Rating during Effect", statOrder = { 851 }, level = 58, group = "FlaskBuffEvasionWhileHealing", weightKey = { "expedition_flask", "utility_flask", "default", }, weightVal = { 0, 750, 0 }, modTags = { "flask", "defences", "evasion" }, }, + ["FlaskBuffEvasionWhileHealing4"] = { type = "Suffix", affix = "of the Impala", "(56-60)% increased Evasion Rating during Effect", statOrder = { 851 }, level = 84, group = "FlaskBuffEvasionWhileHealing", weightKey = { "expedition_flask", "utility_flask", "default", }, weightVal = { 0, 750, 0 }, modTags = { "flask", "defences", "evasion" }, }, + ["FlaskBuffMovementSpeedWhileHealing"] = { type = "Suffix", affix = "of the Hare", "(6-8)% increased Movement Speed during Effect", statOrder = { 860 }, level = 5, group = "FlaskBuffMovementSpeedWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "speed" }, }, + ["FlaskBuffMovementSpeedWhileHealing2"] = { type = "Suffix", affix = "of the Lynx", "(9-11)% increased Movement Speed during Effect", statOrder = { 860 }, level = 65, group = "FlaskBuffMovementSpeedWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "speed" }, }, + ["FlaskBuffMovementSpeedWhileHealing3"] = { type = "Suffix", affix = "of the Cheetah", "(12-14)% increased Movement Speed during Effect", statOrder = { 860 }, level = 85, group = "FlaskBuffMovementSpeedWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "speed" }, }, + ["FlaskBuffStunRecoveryWhileHealing"] = { type = "Suffix", affix = "of Stiffness", "(51-56)% increased Block and Stun Recovery during Effect", statOrder = { 861 }, level = 1, group = "FlaskBuffStunRecoveryWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["FlaskBuffStunRecoveryWhileHealing2"] = { type = "Suffix", affix = "of Bracing", "(57-62)% increased Block and Stun Recovery during Effect", statOrder = { 861 }, level = 19, group = "FlaskBuffStunRecoveryWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["FlaskBuffStunRecoveryWhileHealing3"] = { type = "Suffix", affix = "of Ballast", "(63-68)% increased Block and Stun Recovery during Effect", statOrder = { 861 }, level = 37, group = "FlaskBuffStunRecoveryWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["FlaskBuffStunRecoveryWhileHealing4"] = { type = "Suffix", affix = "of Counterpoise", "(69-74)% increased Block and Stun Recovery during Effect", statOrder = { 861 }, level = 55, group = "FlaskBuffStunRecoveryWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["FlaskBuffStunRecoveryWhileHealing5"] = { type = "Suffix", affix = "of Stabilisation", "(75-80)% increased Block and Stun Recovery during Effect", statOrder = { 861 }, level = 73, group = "FlaskBuffStunRecoveryWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["FlaskBuffResistancesWhileHealing"] = { type = "Suffix", affix = "of the Crystal", "(12-14)% additional Elemental Resistances during Effect", statOrder = { 862 }, level = 1, group = "FlaskBuffResistancesWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 750, 0 }, modTags = { "flask", "elemental", "resistance" }, }, + ["FlaskBuffResistancesWhileHealing2"] = { type = "Suffix", affix = "of the Prism", "(12-14)% additional Elemental Resistances during Effect", statOrder = { 862 }, level = 21, group = "FlaskBuffResistancesWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "elemental", "resistance" }, }, + ["FlaskBuffResistancesWhileHealing3"] = { type = "Suffix", affix = "of the Kaleidoscope", "(15-17)% additional Elemental Resistances during Effect", statOrder = { 862 }, level = 41, group = "FlaskBuffResistancesWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 750, 0 }, modTags = { "flask", "elemental", "resistance" }, }, + ["FlaskBuffResistancesWhileHealing4"] = { type = "Suffix", affix = "of Variegation", "(15-17)% additional Elemental Resistances during Effect", statOrder = { 862 }, level = 61, group = "FlaskBuffResistancesWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "elemental", "resistance" }, }, + ["FlaskBuffResistancesWhileHealing5_"] = { type = "Suffix", affix = "of the Rainbow", "(18-20)% additional Elemental Resistances during Effect", statOrder = { 862 }, level = 81, group = "FlaskBuffResistancesWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 750, 0 }, modTags = { "flask", "elemental", "resistance" }, }, + ["FlaskBuffLifeLeechWhileHealing"] = { type = "Suffix", affix = "of Gluttony", "2% of Physical Attack Damage Leeched as Life during Effect", statOrder = { 863 }, level = 10, group = "FlaskBuffLifeLeechWhileHealing", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life", "physical", "attack" }, }, + ["FlaskBuffLifeLeechPermyriadWhileHealing"] = { type = "Suffix", affix = "of Gluttony", "0.4% of Physical Attack Damage Leeched as Life during Effect", statOrder = { 866 }, level = 10, group = "FlaskBuffLifeLeechPermyriadWhileHealing", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life", "physical", "attack" }, }, + ["FlaskBuffManaLeechPermyriadWhileHealing"] = { type = "Suffix", affix = "of Craving", "0.4% of Physical Attack Damage Leeched as Mana during Effect", statOrder = { 868 }, level = 12, group = "FlaskBuffManaLeechPermyriadWhileHealing", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana", "physical", "attack" }, }, + ["FlaskBuffKnockbackWhileHealing"] = { type = "Suffix", affix = "of Fending", "Adds Knockback to Melee Attacks during Effect", statOrder = { 869 }, level = 9, group = "FlaskBuffKnockbackWhileHealing", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "attack" }, }, + ["FlaskBuffWardWhileHealing1"] = { type = "Suffix", affix = "of Runegleaming", "(19-21)% increased Ward during Effect", statOrder = { 853 }, level = 12, group = "FlaskBuffWardWhileHealing", weightKey = { "expedition_flask", "default", }, weightVal = { 750, 0 }, modTags = { "flask", "defences" }, }, + ["FlaskBuffWardWhileHealing2_"] = { type = "Suffix", affix = "of Runeshining", "(22-24)% increased Ward during Effect", statOrder = { 853 }, level = 26, group = "FlaskBuffWardWhileHealing", weightKey = { "expedition_flask", "default", }, weightVal = { 750, 0 }, modTags = { "flask", "defences" }, }, + ["FlaskBuffWardWhileHealing3"] = { type = "Suffix", affix = "of Runeflaring", "(25-27)% increased Ward during Effect", statOrder = { 853 }, level = 52, group = "FlaskBuffWardWhileHealing", weightKey = { "expedition_flask", "default", }, weightVal = { 750, 0 }, modTags = { "flask", "defences" }, }, + ["FlaskBuffWardWhileHealing4"] = { type = "Suffix", affix = "of Runeblazing", "(28-30)% increased Ward during Effect", statOrder = { 853 }, level = 78, group = "FlaskBuffWardWhileHealing", weightKey = { "expedition_flask", "default", }, weightVal = { 750, 0 }, modTags = { "flask", "defences" }, }, + ["FlaskHealsMinions1"] = { type = "Suffix", affix = "of the Novice", "Grants (100-119)% of Life Recovery to Minions", statOrder = { 764 }, level = 10, group = "FlaskHealsMinions", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask", "resource", "life", "minion" }, }, + ["FlaskHealsMinions2"] = { type = "Suffix", affix = "of the Acolyte", "Grants (120-139)% of Life Recovery to Minions", statOrder = { 764 }, level = 28, group = "FlaskHealsMinions", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask", "resource", "life", "minion" }, }, + ["FlaskHealsMinions3"] = { type = "Suffix", affix = "of the Summoner", "Grants (140-159)% of Life Recovery to Minions", statOrder = { 764 }, level = 46, group = "FlaskHealsMinions", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask", "resource", "life", "minion" }, }, + ["FlaskHealsMinions4____"] = { type = "Suffix", affix = "of the Conjurer", "Grants (160-179)% of Life Recovery to Minions", statOrder = { 764 }, level = 64, group = "FlaskHealsMinions", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask", "resource", "life", "minion" }, }, + ["FlaskHealsMinions5"] = { type = "Suffix", affix = "of the Necromancer", "Grants (180-200)% of Life Recovery to Minions", statOrder = { 764 }, level = 82, group = "FlaskHealsMinions", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask", "resource", "life", "minion" }, }, + ["FlaskFullRechargeOnCrit1"] = { type = "Prefix", affix = "Surgeon's", "Recharges 1 Charge when you deal a Critical Strike", statOrder = { 755 }, level = 8, group = "FlaskFullRechargeOnCrit", weightKey = { "critical_utility_flask", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "critical" }, }, + ["FlaskChanceRechargeOnCrit1"] = { type = "Prefix", affix = "Medic's", "(11-15)% chance to gain a Flask Charge when you deal a Critical Strike", statOrder = { 756 }, level = 8, group = "FlaskChanceRechargeOnCrit", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask", "critical" }, }, + ["FlaskChanceRechargeOnCrit2"] = { type = "Prefix", affix = "Physician's", "(16-20)% chance to gain a Flask Charge when you deal a Critical Strike", statOrder = { 756 }, level = 26, group = "FlaskChanceRechargeOnCrit", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask", "critical" }, }, + ["FlaskChanceRechargeOnCrit3___"] = { type = "Prefix", affix = "Doctor's", "(21-25)% chance to gain a Flask Charge when you deal a Critical Strike", statOrder = { 756 }, level = 44, group = "FlaskChanceRechargeOnCrit", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask", "critical" }, }, + ["FlaskChanceRechargeOnCrit4"] = { type = "Prefix", affix = "Specialist's", "(26-30)% chance to gain a Flask Charge when you deal a Critical Strike", statOrder = { 756 }, level = 62, group = "FlaskChanceRechargeOnCrit", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask", "critical" }, }, + ["FlaskChanceRechargeOnCrit5"] = { type = "Prefix", affix = "Surgeon's", "(31-35)% chance to gain a Flask Charge when you deal a Critical Strike", statOrder = { 756 }, level = 80, group = "FlaskChanceRechargeOnCrit", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask", "critical" }, }, + ["FlaskFullRechargeOnTakeCrit1"] = { type = "Prefix", affix = "Avenger's", "Recharges 5 Charges when you take a Critical Strike", statOrder = { 758 }, level = 12, group = "FlaskFullRechargeOnTakeCrit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "critical" }, }, + ["FlaskDispellsPoison1"] = { type = "Suffix", affix = "of Curing", "Grants Immunity to Poison for 4 seconds if used while Poisoned", statOrder = { 822 }, level = 16, group = "FlaskDispellsPoison", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "poison", "chaos", "ailment" }, }, + ["FlaskEffectReducedDuration1"] = { type = "Prefix", affix = "Abecedarian's", "(33-38)% reduced Duration", "25% increased effect", statOrder = { 771, 849 }, level = 20, group = "FlaskEffectReducedDuration", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, + ["FlaskEffectReducedDuration2"] = { type = "Prefix", affix = "Dabbler's", "(28-32)% reduced Duration", "25% increased effect", statOrder = { 771, 849 }, level = 50, group = "FlaskEffectReducedDuration", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, + ["FlaskEffectReducedDuration3"] = { type = "Prefix", affix = "Alchemist's", "(23-27)% reduced Duration", "25% increased effect", statOrder = { 771, 849 }, level = 80, group = "FlaskEffectReducedDuration", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, + ["FlaskChargesUsed1"] = { type = "Prefix", affix = "Apprentice's", "(14-16)% reduced Charges per use", statOrder = { 760 }, level = 14, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, }, + ["FlaskChargesUsed2"] = { type = "Prefix", affix = "Scholar's", "(17-19)% reduced Charges per use", statOrder = { 760 }, level = 31, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, }, + ["FlaskChargesUsed3__"] = { type = "Prefix", affix = "Practitioner's", "(20-22)% reduced Charges per use", statOrder = { 760 }, level = 48, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, }, + ["FlaskChargesUsed4__"] = { type = "Prefix", affix = "Brewer's", "(23-25)% reduced Charges per use", statOrder = { 760 }, level = 65, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, }, + ["FlaskChargesUsed5"] = { type = "Prefix", affix = "Chemist's", "(26-28)% reduced Charges per use", statOrder = { 760 }, level = 82, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, }, + ["FlaskIncreasedDuration2"] = { type = "Prefix", affix = "Investigator's", "(16-20)% increased Duration", statOrder = { 771 }, level = 20, group = "FlaskUtilityIncreasedDuration", weightKey = { "utility_flask", "critical_utility_flask", "default", }, weightVal = { 600, 600, 0 }, modTags = { "flask" }, }, + ["FlaskIncreasedDuration3_"] = { type = "Prefix", affix = "Analyst's", "(21-25)% increased Duration", statOrder = { 771 }, level = 36, group = "FlaskUtilityIncreasedDuration", weightKey = { "utility_flask", "critical_utility_flask", "default", }, weightVal = { 600, 600, 0 }, modTags = { "flask" }, }, + ["FlaskIncreasedDuration4"] = { type = "Prefix", affix = "Examiner's", "(26-30)% increased Duration", statOrder = { 771 }, level = 52, group = "FlaskUtilityIncreasedDuration", weightKey = { "utility_flask", "critical_utility_flask", "default", }, weightVal = { 600, 600, 0 }, modTags = { "flask" }, }, + ["FlaskIncreasedDuration5__"] = { type = "Prefix", affix = "Clinician's", "(31-35)% increased Duration", statOrder = { 771 }, level = 68, group = "FlaskUtilityIncreasedDuration", weightKey = { "utility_flask", "critical_utility_flask", "default", }, weightVal = { 600, 600, 0 }, modTags = { "flask" }, }, + ["FlaskIncreasedDuration6"] = { type = "Prefix", affix = "Experimenter's", "(36-40)% increased Duration", statOrder = { 771 }, level = 84, group = "FlaskUtilityIncreasedDuration", weightKey = { "utility_flask", "critical_utility_flask", "default", }, weightVal = { 600, 600, 0 }, modTags = { "flask" }, }, + ["FlaskFullRechargeOnHit1"] = { type = "Prefix", affix = "Delinquent's", "Gain 1 Charge when you are Hit by an Enemy", statOrder = { 754 }, level = 12, group = "FlaskFullRechargeOnHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, }, + ["FlaskFullRechargeOnHit2_"] = { type = "Prefix", affix = "Transgressor's", "Gain 1 Charge when you are Hit by an Enemy", statOrder = { 754 }, level = 29, group = "FlaskFullRechargeOnHit", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, }, + ["FlaskFullRechargeOnHit3_"] = { type = "Prefix", affix = "Sinner's", "Gain 2 Charges when you are Hit by an Enemy", statOrder = { 754 }, level = 46, group = "FlaskFullRechargeOnHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, }, + ["FlaskFullRechargeOnHit4_"] = { type = "Prefix", affix = "Masochist's", "Gain 2 Charges when you are Hit by an Enemy", statOrder = { 754 }, level = 63, group = "FlaskFullRechargeOnHit", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, }, + ["FlaskFullRechargeOnHit5___"] = { type = "Prefix", affix = "Flagellant's", "Gain 3 Charges when you are Hit by an Enemy", statOrder = { 754 }, level = 80, group = "FlaskFullRechargeOnHit", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, }, + ["FlaskIncreasedHealingCharges1"] = { type = "Prefix", affix = "Nitrate", "(20-25)% increased Charges per use", "(21-26)% increased Amount Recovered", statOrder = { 760, 768 }, level = 10, group = "FlaskIncreasedHealingCharges", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, }, + ["FlaskIncreasedHealingCharges2"] = { type = "Prefix", affix = "Dolomite", "(20-25)% increased Charges per use", "(27-32)% increased Amount Recovered", statOrder = { 760, 768 }, level = 28, group = "FlaskIncreasedHealingCharges", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, }, + ["FlaskIncreasedHealingCharges3"] = { type = "Prefix", affix = "Kieserite", "(20-25)% increased Charges per use", "(33-38)% increased Amount Recovered", statOrder = { 760, 768 }, level = 46, group = "FlaskIncreasedHealingCharges", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, }, + ["FlaskIncreasedHealingCharges4____"] = { type = "Prefix", affix = "Kainite", "(20-25)% increased Charges per use", "(39-44)% increased Amount Recovered", statOrder = { 760, 768 }, level = 64, group = "FlaskIncreasedHealingCharges", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, }, + ["FlaskIncreasedHealingCharges5"] = { type = "Prefix", affix = "Gypsum", "(20-25)% increased Charges per use", "(45-50)% increased Amount Recovered", statOrder = { 760, 768 }, level = 82, group = "FlaskIncreasedHealingCharges", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, }, + ["FlaskManaRecoveryAtEnd1_"] = { type = "Prefix", affix = "Foreboding", "66% increased Amount Recovered", "Mana Recovery occurs instantly at the end of Effect", statOrder = { 768, 779 }, level = 16, group = "FlaskManaRecoveryAtEnd", weightKey = { "utility_flask", "life_flask", "default", }, weightVal = { 0, 0, 3000 }, modTags = { "flask", "resource", "mana" }, }, + ["FlaskEffectNotRemovedOnFullMana1"] = { type = "Prefix", affix = "Enduring", "66% reduced Amount Recovered", "Effect is not removed when Unreserved Mana is Filled", "Effect does not Queue", statOrder = { 768, 778, 778.1 }, level = 16, group = "FlaskEffectNotRemovedOnFullManaReducedRecovery", weightKey = { "utility_flask", "life_flask", "default", }, weightVal = { 0, 0, 3000 }, modTags = { "flask", "resource", "mana" }, }, + ["FlaskBuffAttackLifeLeechWhileHealing1"] = { type = "Suffix", affix = "of Bloodshed", "0.4% of Attack Damage Leeched as Life during Effect", statOrder = { 865 }, level = 10, group = "FlaskBuffAttackLifeLeechWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask", "resource", "life", "attack" }, }, + ["FlaskBuffAttackLifeLeechWhileHealing2"] = { type = "Suffix", affix = "of Gore", "0.5% of Attack Damage Leeched as Life during Effect", statOrder = { 865 }, level = 20, group = "FlaskBuffAttackLifeLeechWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask", "resource", "life", "attack" }, }, + ["FlaskBuffAttackLifeLeechWhileHealing3"] = { type = "Suffix", affix = "of Carnage", "0.6% of Attack Damage Leeched as Life during Effect", statOrder = { 865 }, level = 40, group = "FlaskBuffAttackLifeLeechWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask", "resource", "life", "attack" }, }, + ["FlaskBuffAttackLifeLeechWhileHealing4"] = { type = "Suffix", affix = "of Butchery", "0.7% of Attack Damage Leeched as Life during Effect", statOrder = { 865 }, level = 60, group = "FlaskBuffAttackLifeLeechWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask", "resource", "life", "attack" }, }, + ["FlaskBuffAttackLifeLeechWhileHealing5"] = { type = "Suffix", affix = "of Bloodletting", "0.8% of Attack Damage Leeched as Life during Effect", statOrder = { 865 }, level = 80, group = "FlaskBuffAttackLifeLeechWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask", "resource", "life", "attack" }, }, + ["FlaskBuffSpellEnergyShieldLeechWhileHealing1"] = { type = "Suffix", affix = "of Diverting", "0.4% of Spell Damage Leeched as Energy Shield during Effect", statOrder = { 864 }, level = 10, group = "FlaskBuffSpellEnergyShieldLeechWhileHealing", weightKey = { "utility_flask", "expedition_flask", "default", }, weightVal = { 600, 0, 0 }, modTags = { "flask", "defences", "energy_shield", "caster" }, }, + ["FlaskBuffSpellEnergyShieldLeechWhileHealing2_"] = { type = "Suffix", affix = "of Depletion", "0.5% of Spell Damage Leeched as Energy Shield during Effect", statOrder = { 864 }, level = 20, group = "FlaskBuffSpellEnergyShieldLeechWhileHealing", weightKey = { "utility_flask", "expedition_flask", "default", }, weightVal = { 600, 0, 0 }, modTags = { "flask", "defences", "energy_shield", "caster" }, }, + ["FlaskBuffSpellEnergyShieldLeechWhileHealing3_____"] = { type = "Suffix", affix = "of Tapping", "0.6% of Spell Damage Leeched as Energy Shield during Effect", statOrder = { 864 }, level = 40, group = "FlaskBuffSpellEnergyShieldLeechWhileHealing", weightKey = { "utility_flask", "expedition_flask", "default", }, weightVal = { 600, 0, 0 }, modTags = { "flask", "defences", "energy_shield", "caster" }, }, + ["FlaskBuffSpellEnergyShieldLeechWhileHealing4"] = { type = "Suffix", affix = "of Siphoning", "0.7% of Spell Damage Leeched as Energy Shield during Effect", statOrder = { 864 }, level = 60, group = "FlaskBuffSpellEnergyShieldLeechWhileHealing", weightKey = { "utility_flask", "expedition_flask", "default", }, weightVal = { 600, 0, 0 }, modTags = { "flask", "defences", "energy_shield", "caster" }, }, + ["FlaskBuffSpellEnergyShieldLeechWhileHealing5"] = { type = "Suffix", affix = "of Draining", "0.8% of Spell Damage Leeched as Energy Shield during Effect", statOrder = { 864 }, level = 80, group = "FlaskBuffSpellEnergyShieldLeechWhileHealing", weightKey = { "utility_flask", "expedition_flask", "default", }, weightVal = { 600, 0, 0 }, modTags = { "flask", "defences", "energy_shield", "caster" }, }, + ["FlaskBuffAttackSpeedWhileHealing1"] = { type = "Suffix", affix = "of the Falcon", "(9-11)% increased Attack Speed during Effect", statOrder = { 858 }, level = 12, group = "FlaskBuffAttackSpeedWhileHealing", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "attack", "speed" }, }, + ["FlaskBuffAttackSpeedWhileHealing2_____"] = { type = "Suffix", affix = "of the Eagle", "(12-14)% increased Attack Speed during Effect", statOrder = { 858 }, level = 62, group = "FlaskBuffAttackSpeedWhileHealing", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "attack", "speed" }, }, + ["FlaskBuffAttackSpeedWhileHealing3_"] = { type = "Suffix", affix = "of the Dove", "(15-17)% increased Attack Speed during Effect", statOrder = { 858 }, level = 82, group = "FlaskBuffAttackSpeedWhileHealing", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "attack", "speed" }, }, + ["FlaskBuffCastSpeedWhileHealing1"] = { type = "Suffix", affix = "of the Albatross", "(9-11)% increased Cast Speed during Effect", statOrder = { 859 }, level = 12, group = "FlaskBuffCastSpeedWhileHealing", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "caster", "speed" }, }, + ["FlaskBuffCastSpeedWhileHealing2"] = { type = "Suffix", affix = "of the Hummingbird", "(12-14)% increased Cast Speed during Effect", statOrder = { 859 }, level = 62, group = "FlaskBuffCastSpeedWhileHealing", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "caster", "speed" }, }, + ["FlaskBuffCastSpeedWhileHealing3"] = { type = "Suffix", affix = "of the Horsefly", "(15-17)% increased Cast Speed during Effect", statOrder = { 859 }, level = 82, group = "FlaskBuffCastSpeedWhileHealing", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "caster", "speed" }, }, + ["FlaskBuffAccuracyWhileHealing1__"] = { type = "Suffix", affix = "of the Monkey", "(15-25)% increased Accuracy Rating during Effect", statOrder = { 857 }, level = 12, group = "FlaskBuffAccuracyWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "attack" }, }, + ["FlaskBuffAccuracyWhileHealing2"] = { type = "Suffix", affix = "of the Raccoon", "(26-35)% increased Accuracy Rating during Effect", statOrder = { 857 }, level = 42, group = "FlaskBuffAccuracyWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "attack" }, }, + ["FlaskBuffAccuracyWhileHealing3"] = { type = "Suffix", affix = "of the Crow", "(35-45)% increased Accuracy Rating during Effect", statOrder = { 857 }, level = 72, group = "FlaskBuffAccuracyWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "attack" }, }, + ["FlaskBuffCriticalChanceWhileHealing1_"] = { type = "Suffix", affix = "of Stinging", "(26-31)% increased Critical Strike Chance during Effect", statOrder = { 889 }, level = 18, group = "FlaskBuffCriticalWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask", "critical" }, }, + ["FlaskBuffCriticalChanceWhileHealing2_"] = { type = "Suffix", affix = "of Piercing", "(32-37)% increased Critical Strike Chance during Effect", statOrder = { 889 }, level = 34, group = "FlaskBuffCriticalWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask", "critical" }, }, + ["FlaskBuffCriticalChanceWhileHealing3"] = { type = "Suffix", affix = "of Rupturing", "(38-43)% increased Critical Strike Chance during Effect", statOrder = { 889 }, level = 50, group = "FlaskBuffCriticalWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask", "critical" }, }, + ["FlaskBuffCriticalChanceWhileHealing4__"] = { type = "Suffix", affix = "of Penetrating", "(44-49)% increased Critical Strike Chance during Effect", statOrder = { 889 }, level = 66, group = "FlaskBuffCriticalWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask", "critical" }, }, + ["FlaskBuffCriticalChanceWhileHealing5"] = { type = "Suffix", affix = "of Incision", "(50-55)% increased Critical Strike Chance during Effect", statOrder = { 889 }, level = 82, group = "FlaskBuffCriticalWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask", "critical" }, }, + ["FlaskBuffFreezeShockIgniteChanceWhileHealing1_"] = { type = "Suffix", affix = "of Foisting", "(19-22)% chance to Freeze, Shock and Ignite during Effect", statOrder = { 887 }, level = 12, group = "FlaskBuffFreezeShockIgniteChanceWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 750, 0 }, modTags = { "flask", "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["FlaskBuffFreezeShockIgniteChanceWhileHealing2____"] = { type = "Suffix", affix = "of Imposing", "(23-26)% chance to Freeze, Shock and Ignite during Effect", statOrder = { 887 }, level = 32, group = "FlaskBuffFreezeShockIgniteChanceWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 750, 0 }, modTags = { "flask", "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["FlaskBuffFreezeShockIgniteChanceWhileHealing3"] = { type = "Suffix", affix = "of Wreaking", "(27-30)% chance to Freeze, Shock and Ignite during Effect", statOrder = { 887 }, level = 52, group = "FlaskBuffFreezeShockIgniteChanceWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 750, 0 }, modTags = { "flask", "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["FlaskBuffFreezeShockIgniteChanceWhileHealing4_"] = { type = "Suffix", affix = "of Infliction", "(31-34)% chance to Freeze, Shock and Ignite during Effect", statOrder = { 887 }, level = 72, group = "FlaskBuffFreezeShockIgniteChanceWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 750, 0 }, modTags = { "flask", "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["FlaskBuffAvoidStunWhileHealing1_"] = { type = "Suffix", affix = "of Composure", "(31-35)% Chance to Avoid being Stunned during Effect", statOrder = { 885 }, level = 12, group = "FlaskBuffAvoidStunWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["FlaskBuffAvoidStunWhileHealing2"] = { type = "Suffix", affix = "of Surefootedness", "(36-40)% Chance to Avoid being Stunned during Effect", statOrder = { 885 }, level = 29, group = "FlaskBuffAvoidStunWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["FlaskBuffAvoidStunWhileHealing3"] = { type = "Suffix", affix = "of Persistence", "(41-45)% Chance to Avoid being Stunned during Effect", statOrder = { 885 }, level = 46, group = "FlaskBuffAvoidStunWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["FlaskBuffAvoidStunWhileHealing4"] = { type = "Suffix", affix = "of Relentlessness", "(46-50)% Chance to Avoid being Stunned during Effect", statOrder = { 885 }, level = 63, group = "FlaskBuffAvoidStunWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["FlaskBuffAvoidStunWhileHealing5"] = { type = "Suffix", affix = "of Tenaciousness", "(51-55)% Chance to Avoid being Stunned during Effect", statOrder = { 885 }, level = 80, group = "FlaskBuffAvoidStunWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["FlaskBuffReducedManaCostWhileHealing1_"] = { type = "Suffix", affix = "of the Pupil", "(11-14)% reduced Mana Cost of Skills during Effect", statOrder = { 913 }, level = 12, group = "LocalFlaskSkillManaCostDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana" }, }, + ["FlaskBuffReducedManaCostWhileHealing2__"] = { type = "Suffix", affix = "of the Initiate", "(15-18)% reduced Mana Cost of Skills during Effect", statOrder = { 913 }, level = 29, group = "LocalFlaskSkillManaCostDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana" }, }, + ["FlaskBuffReducedManaCostWhileHealing3"] = { type = "Suffix", affix = "of the Mage", "(19-21)% reduced Mana Cost of Skills during Effect", statOrder = { 913 }, level = 46, group = "LocalFlaskSkillManaCostDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana" }, }, + ["FlaskBuffReducedManaCostWhileHealing4"] = { type = "Suffix", affix = "of the Arcanist", "(22-25)% reduced Mana Cost of Skills during Effect", statOrder = { 913 }, level = 63, group = "LocalFlaskSkillManaCostDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana" }, }, + ["FlaskBuffReducedManaCostWhileHealing5"] = { type = "Suffix", affix = "of the Sorcerer", "(26-29)% reduced Mana Cost of Skills during Effect", statOrder = { 913 }, level = 80, group = "LocalFlaskSkillManaCostDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana" }, }, + ["FlaskBuffChillFreezeDuration1"] = { type = "Suffix", affix = "of the Rabbit", "(36-41)% reduced Effect of Chill on you during Effect", "(36-41)% reduced Freeze Duration on you during Effect", statOrder = { 918, 920 }, level = 4, group = "FlaskBuffChillFreezeDuration", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["FlaskBuffChillFreezeDuration2_"] = { type = "Suffix", affix = "of the Cat", "(42-47)% reduced Effect of Chill on you during Effect", "(42-47)% reduced Freeze Duration on you during Effect", statOrder = { 918, 920 }, level = 23, group = "FlaskBuffChillFreezeDuration", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["FlaskBuffChillFreezeDuration3_"] = { type = "Suffix", affix = "of the Fox", "(48-52)% reduced Effect of Chill on you during Effect", "(48-52)% reduced Freeze Duration on you during Effect", statOrder = { 918, 920 }, level = 42, group = "FlaskBuffChillFreezeDuration", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["FlaskBuffChillFreezeDuration4"] = { type = "Suffix", affix = "of the Sable", "(52-59)% reduced Effect of Chill on you during Effect", "(52-59)% reduced Freeze Duration on you during Effect", statOrder = { 918, 920 }, level = 61, group = "FlaskBuffChillFreezeDuration", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["FlaskBuffChillFreezeDuration5"] = { type = "Suffix", affix = "of the Bear", "(60-65)% reduced Effect of Chill on you during Effect", "(60-65)% reduced Freeze Duration on you during Effect", statOrder = { 918, 920 }, level = 80, group = "FlaskBuffChillFreezeDuration", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["FlaskBuffShockEffect1"] = { type = "Suffix", affix = "of the Plover", "(36-41)% reduced Effect of Shock on you during Effect", statOrder = { 923 }, level = 6, group = "FlaskBuffShockEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["FlaskBuffShockEffect2"] = { type = "Suffix", affix = "of the Sandpiper", "(42-47)% reduced Effect of Shock on you during Effect", statOrder = { 923 }, level = 25, group = "FlaskBuffShockEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["FlaskBuffShockEffect3___"] = { type = "Suffix", affix = "of the Cormorant", "(48-52)% reduced Effect of Shock on you during Effect", statOrder = { 923 }, level = 44, group = "FlaskBuffShockEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["FlaskBuffShockEffect4"] = { type = "Suffix", affix = "of the Sanderling", "(52-59)% reduced Effect of Shock on you during Effect", statOrder = { 923 }, level = 63, group = "FlaskBuffShockEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["FlaskBuffShockEffect5"] = { type = "Suffix", affix = "of the Heron", "(60-65)% reduced Effect of Shock on you during Effect", statOrder = { 923 }, level = 82, group = "FlaskBuffShockEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["FlaskBuffCurseEffect1"] = { type = "Suffix", affix = "of the Petrel", "(36-41)% reduced Effect of Curses on you during Effect", statOrder = { 919 }, level = 8, group = "FlaskBuffCurseEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["FlaskBuffCurseEffect2"] = { type = "Suffix", affix = "of the Mockingbird", "(42-47)% reduced Effect of Curses on you during Effect", statOrder = { 919 }, level = 27, group = "FlaskBuffCurseEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["FlaskBuffCurseEffect3_"] = { type = "Suffix", affix = "of the Curlew", "(48-52)% reduced Effect of Curses on you during Effect", statOrder = { 919 }, level = 46, group = "FlaskBuffCurseEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["FlaskBuffCurseEffect4"] = { type = "Suffix", affix = "of the Kakapo", "(52-59)% reduced Effect of Curses on you during Effect", statOrder = { 919 }, level = 65, group = "FlaskBuffCurseEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["FlaskBuffCurseEffect5"] = { type = "Suffix", affix = "of the Owl", "(60-65)% reduced Effect of Curses on you during Effect", statOrder = { 919 }, level = 84, group = "FlaskBuffCurseEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["FlaskBuffBleedDuration1"] = { type = "Suffix", affix = "[UNUSED] Bleed duration 1", "(35-45)% reduced Bleeding Duration on you during Effect", statOrder = { 917 }, level = 8, group = "FlaskBuffBleedDuration", weightKey = { "utility_flask", "default", }, weightVal = { 0, 0 }, modTags = { "flask" }, }, + ["FlaskBuffPoisonDuration1"] = { type = "Suffix", affix = "[UNUSED] Poison duration 1", "(35-45)% reduced Poison Duration on you during Effect", statOrder = { 922 }, level = 16, group = "FlaskBuffPoisonDuration", weightKey = { "utility_flask", "default", }, weightVal = { 0, 0 }, modTags = { "flask" }, }, + ["FlaskBuffIgniteDuration1_"] = { type = "Suffix", affix = "[UNUSED] Ignite duration 1", "(35-45)% reduced Ignite Duration on you during Effect", statOrder = { 921 }, level = 6, group = "FlaskBuffIgniteDuration", weightKey = { "utility_flask", "default", }, weightVal = { 0, 0 }, modTags = { "flask" }, }, + ["FlaskBuffAvoidChillFreeze1_"] = { type = "Suffix", affix = "of the Orca", "(31-35)% chance to Avoid being Chilled during Effect", "(31-35)% chance to Avoid being Frozen during Effect", statOrder = { 877, 878 }, level = 4, group = "FlaskBuffAvoidChillFreeze", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["FlaskBuffAvoidChillFreeze2"] = { type = "Suffix", affix = "of the Sea Lion", "(36-40)% chance to Avoid being Chilled during Effect", "(36-40)% chance to Avoid being Frozen during Effect", statOrder = { 877, 878 }, level = 23, group = "FlaskBuffAvoidChillFreeze", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["FlaskBuffAvoidChillFreeze3"] = { type = "Suffix", affix = "of the Narwhal", "(41-45)% chance to Avoid being Chilled during Effect", "(41-45)% chance to Avoid being Frozen during Effect", statOrder = { 877, 878 }, level = 42, group = "FlaskBuffAvoidChillFreeze", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["FlaskBuffAvoidChillFreeze4"] = { type = "Suffix", affix = "of the Beluga", "(46-50)% chance to Avoid being Chilled during Effect", "(46-50)% chance to Avoid being Frozen during Effect", statOrder = { 877, 878 }, level = 61, group = "FlaskBuffAvoidChillFreeze", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["FlaskBuffAvoidChillFreeze5"] = { type = "Suffix", affix = "of the Seal", "(51-55)% chance to Avoid being Chilled during Effect", "(51-55)% chance to Avoid being Frozen during Effect", statOrder = { 877, 878 }, level = 80, group = "FlaskBuffAvoidChillFreeze", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["FlaskBuffAvoidIgnite1"] = { type = "Suffix", affix = "of the Guppy", "(31-35)% chance to Avoid being Ignited during Effect", statOrder = { 879 }, level = 6, group = "FlaskBuffAvoidIgnite", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["FlaskBuffAvoidIgnite2"] = { type = "Suffix", affix = "of the Goldfish", "(36-40)% chance to Avoid being Ignited during Effect", statOrder = { 879 }, level = 25, group = "FlaskBuffAvoidIgnite", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["FlaskBuffAvoidIgnite3"] = { type = "Suffix", affix = "of the Carp", "(41-45)% chance to Avoid being Ignited during Effect", statOrder = { 879 }, level = 44, group = "FlaskBuffAvoidIgnite", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["FlaskBuffAvoidIgnite4___"] = { type = "Suffix", affix = "of the Catfish", "(46-50)% chance to Avoid being Ignited during Effect", statOrder = { 879 }, level = 63, group = "FlaskBuffAvoidIgnite", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["FlaskBuffAvoidIgnite5_"] = { type = "Suffix", affix = "of the Sunfish", "(51-55)% chance to Avoid being Ignited during Effect", statOrder = { 879 }, level = 82, group = "FlaskBuffAvoidIgnite", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["FlaskBuffAvoidShock1"] = { type = "Suffix", affix = "of Tree Moss", "(31-35)% chance to Avoid being Shocked during Effect", statOrder = { 880 }, level = 6, group = "FlaskBuffAvoidShock", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["FlaskBuffAvoidShock2_"] = { type = "Suffix", affix = "of Turf Moss", "(36-40)% chance to Avoid being Shocked during Effect", statOrder = { 880 }, level = 25, group = "FlaskBuffAvoidShock", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["FlaskBuffAvoidShock3"] = { type = "Suffix", affix = "of Tooth Moss", "(41-45)% chance to Avoid being Shocked during Effect", statOrder = { 880 }, level = 44, group = "FlaskBuffAvoidShock", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["FlaskBuffAvoidShock4_____"] = { type = "Suffix", affix = "of Plume Moss", "(46-50)% chance to Avoid being Shocked during Effect", statOrder = { 880 }, level = 63, group = "FlaskBuffAvoidShock", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["FlaskBuffAvoidShock5"] = { type = "Suffix", affix = "of Bog Moss", "(51-55)% chance to Avoid being Shocked during Effect", statOrder = { 880 }, level = 82, group = "FlaskBuffAvoidShock", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["FlaskCurseImmunity1"] = { type = "Suffix", affix = "of Warding", "Removes Curses on use", statOrder = { 811 }, level = 18, group = "FlaskCurseImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 3000 }, modTags = { "flask", "caster", "curse" }, }, + ["LocalManaFlaskHinderNearbyEnemies1_"] = { type = "Suffix", affix = "of Interference", "Hinders nearby Enemies with (17-22)% reduced Movement Speed if used while not on Full Mana", statOrder = { 827 }, level = 30, group = "LocalManaFlaskHinderNearbyEnemies", weightKey = { "life_flask", "utility_flask", "default", }, weightVal = { 0, 0, 750 }, modTags = { "flask", "caster" }, }, + ["LocalManaFlaskHinderNearbyEnemies2"] = { type = "Suffix", affix = "of Obstruction", "Hinders nearby Enemies with (23-28)% reduced Movement Speed if used while not on Full Mana", statOrder = { 827 }, level = 48, group = "LocalManaFlaskHinderNearbyEnemies", weightKey = { "life_flask", "utility_flask", "default", }, weightVal = { 0, 0, 750 }, modTags = { "flask", "caster" }, }, + ["LocalManaFlaskHinderNearbyEnemies3"] = { type = "Suffix", affix = "of Occlusion", "Hinders nearby Enemies with (29-34)% reduced Movement Speed if used while not on Full Mana", statOrder = { 827 }, level = 66, group = "LocalManaFlaskHinderNearbyEnemies", weightKey = { "life_flask", "utility_flask", "default", }, weightVal = { 0, 0, 750 }, modTags = { "flask", "caster" }, }, + ["LocalManaFlaskHinderNearbyEnemies4"] = { type = "Suffix", affix = "of Restraint", "Hinders nearby Enemies with (35-40)% reduced Movement Speed if used while not on Full Mana", statOrder = { 827 }, level = 84, group = "LocalManaFlaskHinderNearbyEnemies", weightKey = { "life_flask", "utility_flask", "default", }, weightVal = { 0, 0, 750 }, modTags = { "flask", "caster" }, }, + ["LocalLifeFlaskHinderNearbyEnemies1_"] = { type = "Suffix", affix = "of Interference", "Hinders nearby Enemies with (17-22)% reduced Movement Speed if used while not on Full Life", statOrder = { 826 }, level = 30, group = "LocalLifeFlaskHinderNearbyEnemies", weightKey = { "mana_flask", "utility_flask", "default", }, weightVal = { 0, 0, 750 }, modTags = { "flask", "caster" }, }, + ["LocalLifeFlaskHinderNearbyEnemies2_"] = { type = "Suffix", affix = "of Obstruction", "Hinders nearby Enemies with (23-28)% reduced Movement Speed if used while not on Full Life", statOrder = { 826 }, level = 48, group = "LocalLifeFlaskHinderNearbyEnemies", weightKey = { "mana_flask", "utility_flask", "default", }, weightVal = { 0, 0, 750 }, modTags = { "flask", "caster" }, }, + ["LocalLifeFlaskHinderNearbyEnemies3_"] = { type = "Suffix", affix = "of Occlusion", "Hinders nearby Enemies with (29-34)% reduced Movement Speed if used while not on Full Life", statOrder = { 826 }, level = 66, group = "LocalLifeFlaskHinderNearbyEnemies", weightKey = { "mana_flask", "utility_flask", "default", }, weightVal = { 0, 0, 750 }, modTags = { "flask", "caster" }, }, + ["LocalLifeFlaskHinderNearbyEnemies4"] = { type = "Suffix", affix = "of Restraint", "Hinders nearby Enemies with (35-40)% reduced Movement Speed if used while not on Full Life", statOrder = { 826 }, level = 84, group = "LocalLifeFlaskHinderNearbyEnemies", weightKey = { "mana_flask", "utility_flask", "default", }, weightVal = { 0, 0, 750 }, modTags = { "flask", "caster" }, }, + ["LocalFlaskImmuneToMaimAndHinder1"] = { type = "Suffix", affix = "of Movement", "Grants Immunity to Hinder for (6-8) seconds if used while Hindered", "Grants Immunity to Maim for (6-8) seconds if used while Maimed", statOrder = { 820, 821 }, level = 16, group = "LocalFlaskImmuneToMaimAndHinder", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask", "attack", "caster" }, }, + ["LocalFlaskImmuneToMaimAndHinder2"] = { type = "Suffix", affix = "of Motion", "Grants Immunity to Hinder for (9-11) seconds if used while Hindered", "Grants Immunity to Maim for (9-11) seconds if used while Maimed", statOrder = { 820, 821 }, level = 38, group = "LocalFlaskImmuneToMaimAndHinder", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask", "attack", "caster" }, }, + ["LocalFlaskImmuneToMaimAndHinder3"] = { type = "Suffix", affix = "of Freedom", "Grants Immunity to Hinder for (12-14) seconds if used while Hindered", "Grants Immunity to Maim for (12-14) seconds if used while Maimed", statOrder = { 820, 821 }, level = 60, group = "LocalFlaskImmuneToMaimAndHinder", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask", "attack", "caster" }, }, + ["LocalFlaskImmuneToMaimAndHinder4"] = { type = "Suffix", affix = "of Liberation", "Grants Immunity to Hinder for (15-17) seconds if used while Hindered", "Grants Immunity to Maim for (15-17) seconds if used while Maimed", statOrder = { 820, 821 }, level = 82, group = "LocalFlaskImmuneToMaimAndHinder", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask", "attack", "caster" }, }, + ["LocalLifeFlaskAdditionalLifeRecovery1"] = { type = "Suffix", affix = "of Abundance", "Recover an additional (11-16)% of Flask's Life Recovery Amount over 10 seconds if used while not on Full Life", statOrder = { 813 }, level = 25, group = "LocalLifeFlaskAdditionalLifeRecovery", weightKey = { "life_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["LocalLifeFlaskAdditionalLifeRecovery2__"] = { type = "Suffix", affix = "of Plenty", "Recover an additional (17-22)% of Flask's Life Recovery Amount over 10 seconds if used while not on Full Life", statOrder = { 813 }, level = 39, group = "LocalLifeFlaskAdditionalLifeRecovery", weightKey = { "life_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["LocalLifeFlaskAdditionalLifeRecovery3"] = { type = "Suffix", affix = "of Bounty", "Recover an additional (23-28)% of Flask's Life Recovery Amount over 10 seconds if used while not on Full Life", statOrder = { 813 }, level = 53, group = "LocalLifeFlaskAdditionalLifeRecovery", weightKey = { "life_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["LocalLifeFlaskAdditionalLifeRecovery4"] = { type = "Suffix", affix = "of Incessance", "Recover an additional (29-34)% of Flask's Life Recovery Amount over 10 seconds if used while not on Full Life", statOrder = { 813 }, level = 67, group = "LocalLifeFlaskAdditionalLifeRecovery", weightKey = { "life_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["LocalLifeFlaskAdditionalLifeRecovery5_"] = { type = "Suffix", affix = "of Perenniality", "Recover an additional (35-40)% of Flask's Life Recovery Amount over 10 seconds if used while not on Full Life", statOrder = { 813 }, level = 81, group = "LocalLifeFlaskAdditionalLifeRecovery", weightKey = { "life_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["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 = { 815, 815.1 }, level = 8, group = "FlaskBleedCorruptingBloodImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, }, + ["FlaskBleedCorruptingBloodImmunity2"] = { type = "Suffix", affix = "of Alleviation", "Grants Immunity to Bleeding for (9-11) seconds if used while Bleeding", "Grants Immunity to Corrupted Blood for (9-11) seconds if used while affected by Corrupted Blood", statOrder = { 815, 815.1 }, level = 32, group = "FlaskBleedCorruptingBloodImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, }, + ["FlaskBleedCorruptingBloodImmunity3______"] = { type = "Suffix", affix = "of Allaying", "Grants Immunity to Bleeding for (12-14) seconds if used while Bleeding", "Grants Immunity to Corrupted Blood for (12-14) seconds if used while affected by Corrupted Blood", statOrder = { 815, 815.1 }, level = 56, group = "FlaskBleedCorruptingBloodImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, }, + ["FlaskBleedCorruptingBloodImmunity4_"] = { type = "Suffix", affix = "of Assuaging", "Grants Immunity to Bleeding for (15-17) seconds if used while Bleeding", "Grants Immunity to Corrupted Blood for (15-17) seconds if used while affected by Corrupted Blood", statOrder = { 815, 815.1 }, level = 80, group = "FlaskBleedCorruptingBloodImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, }, + ["FlaskShockImmunity1"] = { type = "Suffix", affix = "of Earthing", "Grants Immunity to Shock for (6-8) seconds if used while Shocked", statOrder = { 825 }, level = 6, group = "FlaskShockImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, }, + ["FlaskShockImmunity2"] = { type = "Suffix", affix = "of Grounding", "Grants Immunity to Shock for (9-11) seconds if used while Shocked", statOrder = { 825 }, level = 30, group = "FlaskShockImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, }, + ["FlaskShockImmunity3"] = { type = "Suffix", affix = "of Insulation", "Grants Immunity to Shock for (12-14) seconds if used while Shocked", statOrder = { 825 }, level = 54, group = "FlaskShockImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, }, + ["FlaskShockImmunity4_"] = { type = "Suffix", affix = "of the Dielectric", "Grants Immunity to Shock for (15-17) seconds if used while Shocked", statOrder = { 825 }, level = 78, group = "FlaskShockImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, }, + ["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 = { 817, 817.1 }, level = 4, group = "FlaskChillFreezeImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, }, + ["FlaskChillFreezeImmunity2"] = { type = "Suffix", affix = "of Thermodynamics", "Grants Immunity to Chill for (9-11) seconds if used while Chilled", "Grants Immunity to Freeze for (9-11) seconds if used while Frozen", statOrder = { 817, 817.1 }, level = 28, group = "FlaskChillFreezeImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, }, + ["FlaskChillFreezeImmunity3"] = { type = "Suffix", affix = "of Entropy", "Grants Immunity to Chill for (12-14) seconds if used while Chilled", "Grants Immunity to Freeze for (12-14) seconds if used while Frozen", statOrder = { 817, 817.1 }, level = 52, group = "FlaskChillFreezeImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, }, + ["FlaskChillFreezeImmunity4"] = { type = "Suffix", affix = "of Thawing", "Grants Immunity to Chill for (15-17) seconds if used while Chilled", "Grants Immunity to Freeze for (15-17) seconds if used while Frozen", statOrder = { 817, 817.1 }, level = 76, group = "FlaskChillFreezeImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, }, + ["FlaskIgniteImmunity1"] = { type = "Suffix", affix = "of Damping", "Grants Immunity to Ignite for (6-8) seconds if used while Ignited", "Removes all Burning when used", statOrder = { 819, 819.1 }, level = 6, group = "FlaskIgniteImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, }, + ["FlaskIgniteImmunity2_"] = { type = "Suffix", affix = "of Quashing", "Grants Immunity to Ignite for (9-11) seconds if used while Ignited", "Removes all Burning when used", statOrder = { 819, 819.1 }, level = 30, group = "FlaskIgniteImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, }, + ["FlaskIgniteImmunity3_"] = { type = "Suffix", affix = "of Quelling", "Grants Immunity to Ignite for (12-14) seconds if used while Ignited", "Removes all Burning when used", statOrder = { 819, 819.1 }, level = 54, group = "FlaskIgniteImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, }, + ["FlaskIgniteImmunity4"] = { type = "Suffix", affix = "of Quenching", "Grants Immunity to Ignite for (15-17) seconds if used while Ignited", "Removes all Burning when used", statOrder = { 819, 819.1 }, level = 78, group = "FlaskIgniteImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, }, + ["FlaskPoisonImmunity1__"] = { type = "Suffix", affix = "of the Antitoxin", "Grants Immunity to Poison for (6-8) seconds if used while Poisoned", statOrder = { 823 }, level = 16, group = "FlaskPoisonImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, }, + ["FlaskPoisonImmunity2"] = { type = "Suffix", affix = "of the Remedy", "Grants Immunity to Poison for (9-11) seconds if used while Poisoned", statOrder = { 823 }, level = 38, group = "FlaskPoisonImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, }, + ["FlaskPoisonImmunity3"] = { type = "Suffix", affix = "of the Cure", "Grants Immunity to Poison for (12-14) seconds if used while Poisoned", statOrder = { 823 }, level = 60, group = "FlaskPoisonImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, }, + ["FlaskPoisonImmunity4"] = { type = "Suffix", affix = "of the Antidote", "Grants Immunity to Poison for (15-17) seconds if used while Poisoned", statOrder = { 823 }, level = 82, group = "FlaskPoisonImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, }, + ["FlaskPoisonImmunityDuringEffect"] = { type = "Suffix", affix = "of the Skunk", "(45-49)% less Duration", "Immunity to Poison during Effect", statOrder = { 772, 899 }, level = 16, group = "FlaskPoisonImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, + ["FlaskPoisonImmunityDuringEffect2"] = { type = "Suffix", affix = "of the Hedgehog", "(40-44)% less Duration", "Immunity to Poison during Effect", statOrder = { 772, 899 }, level = 46, group = "FlaskPoisonImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, + ["FlaskPoisonImmunityDuringEffect3"] = { type = "Suffix", affix = "of the Opossum", "(35-39)% less Duration", "Immunity to Poison during Effect", statOrder = { 772, 899 }, level = 76, group = "FlaskPoisonImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, + ["FlaskShockImmunityDuringEffect"] = { type = "Suffix", affix = "of the Conger", "(45-49)% less Duration", "Immunity to Shock during Effect", statOrder = { 772, 900 }, level = 6, group = "FlaskShockImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, + ["FlaskShockImmunityDuringEffect2___"] = { type = "Suffix", affix = "of the Moray", "(40-44)% less Duration", "Immunity to Shock during Effect", statOrder = { 772, 900 }, level = 40, group = "FlaskShockImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, + ["FlaskShockImmunityDuringEffect3"] = { type = "Suffix", affix = "of the Eel", "(35-39)% less Duration", "Immunity to Shock during Effect", statOrder = { 772, 900 }, level = 74, group = "FlaskShockImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, + ["FlaskFreezeAndChillImmunityDuringEffect"] = { type = "Suffix", affix = "of the Deer", "(45-49)% less Duration", "Immunity to Freeze and Chill during Effect", statOrder = { 772, 898 }, level = 4, group = "FlaskFreezeAndChillImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, + ["FlaskFreezeAndChillImmunityDuringEffect2"] = { type = "Suffix", affix = "of the Walrus", "(40-44)% less Duration", "Immunity to Freeze and Chill during Effect", statOrder = { 772, 898 }, level = 38, group = "FlaskFreezeAndChillImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, + ["FlaskFreezeAndChillImmunityDuringEffect3__"] = { type = "Suffix", affix = "of the Penguin", "(35-39)% less Duration", "Immunity to Freeze and Chill during Effect", statOrder = { 772, 898 }, level = 72, group = "FlaskFreezeAndChillImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, + ["FlaskIgniteImmunityDuringEffect_"] = { type = "Suffix", affix = "of the Urchin", "(45-49)% less Duration", "Immunity to Ignite during Effect", "Removes Burning on use", statOrder = { 772, 830, 830.1 }, level = 6, group = "FlaskIgniteImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, + ["FlaskIgniteImmunityDuringEffect2"] = { type = "Suffix", affix = "of the Mussel", "(40-44)% less Duration", "Immunity to Ignite during Effect", "Removes Burning on use", statOrder = { 772, 830, 830.1 }, level = 40, group = "FlaskIgniteImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, + ["FlaskIgniteImmunityDuringEffect3"] = { type = "Suffix", affix = "of the Starfish", "(35-39)% less Duration", "Immunity to Ignite during Effect", "Removes Burning on use", statOrder = { 772, 830, 830.1 }, level = 74, group = "FlaskIgniteImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, + ["FlaskBleedingAndCorruptedBloodImmunityDuringEffect_1"] = { type = "Suffix", affix = "of the Lizard", "(45-49)% less Duration", "Immunity to Bleeding and Corrupted Blood during Effect", statOrder = { 772, 896 }, level = 8, group = "FlaskBleedingAndCorruptedBloodImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, + ["FlaskBleedingAndCorruptedBloodImmunityDuringEffect2_"] = { type = "Suffix", affix = "of the Skink", "(40-44)% less Duration", "Immunity to Bleeding and Corrupted Blood during Effect", statOrder = { 772, 896 }, level = 42, group = "FlaskBleedingAndCorruptedBloodImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, + ["FlaskBleedingAndCorruptedBloodImmunityDuringEffect3___"] = { type = "Suffix", affix = "of the Iguana", "(35-39)% less Duration", "Immunity to Bleeding and Corrupted Blood during Effect", statOrder = { 772, 896 }, level = 76, group = "FlaskBleedingAndCorruptedBloodImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, } \ No newline at end of file diff --git a/src/Data/ModItem.lua b/src/Data/ModItem.lua index cf2f4a0a2e..8297f4cf59 100644 --- a/src/Data/ModItem.lua +++ b/src/Data/ModItem.lua @@ -2,1368 +2,1368 @@ -- Item data (c) Grinding Gear Games return { - ["Strength1"] = { type = "Suffix", affix = "of the Brute", "+(8-12) to Strength", statOrder = { 1062 }, level = 1, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 333, 500, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, }, - ["Strength2"] = { type = "Suffix", affix = "of the Wrestler", "+(13-17) to Strength", statOrder = { 1062 }, level = 11, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 333, 500, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, }, - ["Strength3"] = { type = "Suffix", affix = "of the Bear", "+(18-22) to Strength", statOrder = { 1062 }, level = 22, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 333, 500, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, }, - ["Strength4"] = { type = "Suffix", affix = "of the Lion", "+(23-27) to Strength", statOrder = { 1062 }, level = 33, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 333, 500, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, }, - ["Strength5"] = { type = "Suffix", affix = "of the Gorilla", "+(28-32) to Strength", statOrder = { 1062 }, level = 44, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 333, 500, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, }, - ["Strength6"] = { type = "Suffix", affix = "of the Goliath", "+(33-37) to Strength", statOrder = { 1062 }, level = 55, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 333, 500, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, }, - ["Strength7"] = { type = "Suffix", affix = "of the Leviathan", "+(38-42) to Strength", statOrder = { 1062 }, level = 66, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 333, 500, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, }, - ["Strength8"] = { type = "Suffix", affix = "of the Titan", "+(43-50) to Strength", statOrder = { 1062 }, level = 74, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 333, 500, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, }, - ["Strength9"] = { type = "Suffix", affix = "of the Gods", "+(51-55) to Strength", statOrder = { 1062 }, level = 82, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 333, 500, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, }, - ["Strength10"] = { type = "Suffix", affix = "of the Godslayer", "+(56-60) to Strength", statOrder = { 1062 }, level = 85, group = "Strength", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "attribute" }, }, - ["StrengthEssence7_"] = { type = "Suffix", affix = "of the Essence", "+(51-58) to Strength", statOrder = { 1062 }, level = 82, group = "Strength", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attribute" }, }, - ["Dexterity1"] = { type = "Suffix", affix = "of the Mongoose", "+(8-12) to Dexterity", statOrder = { 1063 }, level = 1, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 500, 500, 333, 1000, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, }, - ["Dexterity2"] = { type = "Suffix", affix = "of the Lynx", "+(13-17) to Dexterity", statOrder = { 1063 }, level = 11, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 500, 500, 333, 1000, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, }, - ["Dexterity3"] = { type = "Suffix", affix = "of the Fox", "+(18-22) to Dexterity", statOrder = { 1063 }, level = 22, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 500, 500, 333, 1000, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, }, - ["Dexterity4"] = { type = "Suffix", affix = "of the Falcon", "+(23-27) to Dexterity", statOrder = { 1063 }, level = 33, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 500, 500, 333, 1000, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, }, - ["Dexterity5"] = { type = "Suffix", affix = "of the Panther", "+(28-32) to Dexterity", statOrder = { 1063 }, level = 44, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 500, 500, 333, 1000, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, }, - ["Dexterity6"] = { type = "Suffix", affix = "of the Leopard", "+(33-37) to Dexterity", statOrder = { 1063 }, level = 55, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 500, 500, 333, 1000, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, }, - ["Dexterity7"] = { type = "Suffix", affix = "of the Jaguar", "+(38-42) to Dexterity", statOrder = { 1063 }, level = 66, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 500, 500, 333, 1000, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, }, - ["Dexterity8"] = { type = "Suffix", affix = "of the Phantom", "+(43-50) to Dexterity", statOrder = { 1063 }, level = 74, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 500, 500, 333, 1000, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, }, - ["Dexterity9"] = { type = "Suffix", affix = "of the Wind", "+(51-55) to Dexterity", statOrder = { 1063 }, level = 82, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 500, 500, 333, 1000, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, }, - ["Dexterity10"] = { type = "Suffix", affix = "of the Blur", "+(56-60) to Dexterity", statOrder = { 1063 }, level = 85, group = "Dexterity", weightKey = { "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "attribute" }, }, - ["DexterityEssence7"] = { type = "Suffix", affix = "of the Essence", "+(51-58) to Dexterity", statOrder = { 1063 }, level = 82, group = "Dexterity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attribute" }, }, - ["Intelligence1"] = { type = "Suffix", affix = "of the Pupil", "+(8-12) to Intelligence", statOrder = { 1064 }, level = 1, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 500, 333, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, }, - ["Intelligence2"] = { type = "Suffix", affix = "of the Student", "+(13-17) to Intelligence", statOrder = { 1064 }, level = 11, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 500, 333, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, }, - ["Intelligence3"] = { type = "Suffix", affix = "of the Prodigy", "+(18-22) to Intelligence", statOrder = { 1064 }, level = 22, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 500, 333, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, }, - ["Intelligence4"] = { type = "Suffix", affix = "of the Augur", "+(23-27) to Intelligence", statOrder = { 1064 }, level = 33, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 500, 333, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, }, - ["Intelligence5"] = { type = "Suffix", affix = "of the Philosopher", "+(28-32) to Intelligence", statOrder = { 1064 }, level = 44, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 500, 333, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, }, - ["Intelligence6"] = { type = "Suffix", affix = "of the Sage", "+(33-37) to Intelligence", statOrder = { 1064 }, level = 55, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 500, 333, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, }, - ["Intelligence7"] = { type = "Suffix", affix = "of the Savant", "+(38-42) to Intelligence", statOrder = { 1064 }, level = 66, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 500, 333, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, }, - ["Intelligence8"] = { type = "Suffix", affix = "of the Virtuoso", "+(43-50) to Intelligence", statOrder = { 1064 }, level = 74, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 500, 333, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, }, - ["Intelligence9"] = { type = "Suffix", affix = "of the Genius", "+(51-55) to Intelligence", statOrder = { 1064 }, level = 82, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 500, 333, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, }, - ["Intelligence10"] = { type = "Suffix", affix = "of the Polymath", "+(56-60) to Intelligence", statOrder = { 1064 }, level = 85, group = "Intelligence", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { "attribute" }, }, - ["IntelligenceEssence7"] = { type = "Suffix", affix = "of the Essence", "+(51-58) to Intelligence", statOrder = { 1064 }, level = 82, group = "Intelligence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attribute" }, }, - ["AllAttributes1"] = { type = "Suffix", affix = "of the Clouds", "+(1-4) to all Attributes", statOrder = { 1061 }, level = 1, group = "AllAttributes", weightKey = { "amulet", "ring", "default", }, weightVal = { 800, 400, 0 }, modTags = { "attribute" }, }, - ["AllAttributes2"] = { type = "Suffix", affix = "of the Sky", "+(5-8) to all Attributes", statOrder = { 1061 }, level = 11, group = "AllAttributes", weightKey = { "amulet", "ring", "default", }, weightVal = { 800, 400, 0 }, modTags = { "attribute" }, }, - ["AllAttributes3"] = { type = "Suffix", affix = "of the Meteor", "+(9-12) to all Attributes", statOrder = { 1061 }, level = 22, group = "AllAttributes", weightKey = { "amulet", "ring", "default", }, weightVal = { 800, 400, 0 }, modTags = { "attribute" }, }, - ["AllAttributes4"] = { type = "Suffix", affix = "of the Comet", "+(13-16) to all Attributes", statOrder = { 1061 }, level = 33, group = "AllAttributes", weightKey = { "amulet", "ring", "default", }, weightVal = { 800, 400, 0 }, modTags = { "attribute" }, }, - ["AllAttributes5"] = { type = "Suffix", affix = "of the Heavens", "+(17-20) to all Attributes", statOrder = { 1061 }, level = 44, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 800, 0 }, modTags = { "attribute" }, }, - ["AllAttributes6"] = { type = "Suffix", affix = "of the Galaxy", "+(21-24) to all Attributes", statOrder = { 1061 }, level = 55, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 800, 0 }, modTags = { "attribute" }, }, - ["AllAttributes7"] = { type = "Suffix", affix = "of the Universe", "+(25-28) to all Attributes", statOrder = { 1061 }, level = 66, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 800, 0 }, modTags = { "attribute" }, }, - ["AllAttributes8"] = { type = "Suffix", affix = "of the Infinite", "+(29-32) to all Attributes", statOrder = { 1061 }, level = 77, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 800, 0 }, modTags = { "attribute" }, }, - ["AllAttributes9_"] = { type = "Suffix", affix = "of the Multiverse", "+(33-35) to all Attributes", statOrder = { 1061 }, level = 85, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 800, 0 }, modTags = { "attribute" }, }, - ["IncreasedLife0"] = { type = "Prefix", affix = "Hale", "+(3-9) to maximum Life", statOrder = { 1451 }, level = 1, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000 }, modTags = { "resource", "life" }, }, - ["IncreasedLife1"] = { type = "Prefix", affix = "Healthy", "+(10-24) to maximum Life", statOrder = { 1451 }, level = 5, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000 }, modTags = { "resource", "life" }, }, - ["IncreasedLife2"] = { type = "Prefix", affix = "Sanguine", "+(25-39) to maximum Life", statOrder = { 1451 }, level = 11, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000 }, modTags = { "resource", "life" }, }, - ["IncreasedLife3"] = { type = "Prefix", affix = "Stalwart", "+(40-54) to maximum Life", statOrder = { 1451 }, level = 18, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000 }, modTags = { "resource", "life" }, }, - ["IncreasedLife4"] = { type = "Prefix", affix = "Stout", "+(55-69) to maximum Life", statOrder = { 1451 }, level = 24, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000 }, modTags = { "resource", "life" }, }, - ["IncreasedLife5"] = { type = "Prefix", affix = "Robust", "+(70-84) to maximum Life", statOrder = { 1451 }, level = 30, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000 }, modTags = { "resource", "life" }, }, - ["IncreasedLife6"] = { type = "Prefix", affix = "Rotund", "+(85-99) to maximum Life", statOrder = { 1451 }, level = 36, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000 }, modTags = { "resource", "life" }, }, - ["IncreasedLife7"] = { type = "Prefix", affix = "Virile", "+(100-114) to maximum Life", statOrder = { 1451 }, level = 44, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000 }, modTags = { "resource", "life" }, }, - ["IncreasedLife8"] = { type = "Prefix", affix = "Athlete's", "+(115-129) to maximum Life", statOrder = { 1451 }, level = 54, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "ring", "default", }, weightVal = { 0, 0, 0, 1000 }, modTags = { "resource", "life" }, }, - ["IncreasedLife9"] = { type = "Prefix", affix = "Fecund", "+(130-144) to maximum Life", statOrder = { 1451 }, level = 64, group = "IncreasedLife", weightKey = { "fishing_rod", "boots", "gloves", "weapon", "ring", "amulet", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1000 }, modTags = { "resource", "life" }, }, - ["IncreasedLife10"] = { type = "Prefix", affix = "Vigorous", "+(145-159) to maximum Life", statOrder = { 1451 }, level = 73, group = "IncreasedLife", weightKey = { "shield", "body_armour", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resource", "life" }, }, - ["IncreasedLife11"] = { type = "Prefix", affix = "Rapturous", "+(160-174) to maximum Life", statOrder = { 1451 }, level = 81, group = "IncreasedLife", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life" }, }, - ["IncreasedLife12"] = { type = "Prefix", affix = "Prime", "+(175-189) to maximum Life", statOrder = { 1451 }, level = 86, group = "IncreasedLife", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life" }, }, - ["IncreasedLifeEssence1_"] = { type = "Prefix", affix = "Essences", "+(5-14) to maximum Life", statOrder = { 1451 }, level = 3, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, - ["IncreasedLifeEssence2"] = { type = "Prefix", affix = "Essences", "+(15-30) to maximum Life", statOrder = { 1451 }, level = 10, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, - ["IncreasedLifeEssence3"] = { type = "Prefix", affix = "Essences", "+(31-45) to maximum Life", statOrder = { 1451 }, level = 26, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, - ["IncreasedLifeEssence4"] = { type = "Prefix", affix = "Essences", "+(46-60) to maximum Life", statOrder = { 1451 }, level = 42, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, - ["IncreasedLifeEssence5"] = { type = "Prefix", affix = "Essences", "+(61-75) to maximum Life", statOrder = { 1451 }, level = 58, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, - ["IncreasedLifeEssence6"] = { type = "Prefix", affix = "Essences", "+(76-90) to maximum Life", statOrder = { 1451 }, level = 74, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, - ["IncreasedLifeEssenceChest1"] = { type = "Prefix", affix = "Essences", "+(120-126) to maximum Life", statOrder = { 1451 }, level = 82, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, - ["IncreasedLifeEssenceShield1"] = { type = "Prefix", affix = "Essences", "+(110-116) to maximum Life", statOrder = { 1451 }, level = 82, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, - ["IncreasedLifeEssenceHelm1"] = { type = "Prefix", affix = "Essences", "+(100-106) to maximum Life", statOrder = { 1451 }, level = 82, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, - ["IncreasedLifeEssenceBootsGloves1"] = { type = "Prefix", affix = "Essences", "+(91-105) to maximum Life", statOrder = { 1451 }, level = 82, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, - ["IncreasedLifeEnhancedMod"] = { type = "Prefix", affix = "Guatelitzi's", "+(70-79) to maximum Life", "(3-5)% increased maximum Life", statOrder = { 1451, 1453 }, level = 1, group = "IncreasedLifeAndPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, - ["IncreasedLifeEnhancedBodyMod___"] = { type = "Prefix", affix = "Guatelitzi's", "+(110-119) to maximum Life", "(8-10)% increased maximum Life", statOrder = { 1451, 1453 }, level = 1, group = "IncreasedLifeAndPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, - ["IncreasedMana1"] = { type = "Prefix", affix = "Beryl", "+(15-19) to maximum Mana", statOrder = { 1461 }, level = 1, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedMana2"] = { type = "Prefix", affix = "Cobalt", "+(20-24) to maximum Mana", statOrder = { 1461 }, level = 11, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedMana3"] = { type = "Prefix", affix = "Azure", "+(25-29) to maximum Mana", statOrder = { 1461 }, level = 17, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedMana4"] = { type = "Prefix", affix = "Sapphire", "+(30-34) to maximum Mana", statOrder = { 1461 }, level = 23, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedMana5"] = { type = "Prefix", affix = "Cerulean", "+(35-39) to maximum Mana", statOrder = { 1461 }, level = 29, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedMana6"] = { type = "Prefix", affix = "Aqua", "+(40-44) to maximum Mana", statOrder = { 1461 }, level = 35, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedMana7"] = { type = "Prefix", affix = "Opalescent", "+(45-49) to maximum Mana", statOrder = { 1461 }, level = 42, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedMana8"] = { type = "Prefix", affix = "Gentian", "+(50-54) to maximum Mana", statOrder = { 1461 }, level = 51, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedMana9"] = { type = "Prefix", affix = "Chalybeous", "+(55-59) to maximum Mana", statOrder = { 1461 }, level = 60, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedMana10"] = { type = "Prefix", affix = "Mazarine", "+(60-64) to maximum Mana", statOrder = { 1461 }, level = 69, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedMana11"] = { type = "Prefix", affix = "Blue", "+(65-68) to maximum Mana", statOrder = { 1461 }, level = 75, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedMana12"] = { type = "Prefix", affix = "Zaffre", "+(69-73) to maximum Mana", statOrder = { 1461 }, level = 81, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedMana13"] = { type = "Prefix", affix = "Ultramarine", "+(74-78) to maximum Mana", statOrder = { 1461 }, level = 85, group = "IncreasedMana", weightKey = { "ring", "amulet", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaEssence7"] = { type = "Prefix", affix = "Essences", "+(69-77) to maximum Mana", statOrder = { 1461 }, level = 82, group = "IncreasedMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaEnhancedModPercent"] = { type = "Prefix", affix = "Xopec's", "+(69-73) to maximum Mana", "(7-10)% increased maximum Mana", statOrder = { 1461, 1462 }, level = 1, group = "IncreasedManaAndPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaEnhancedModOnHit_"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "Gain (2-3) Mana per Enemy Hit with Attacks", statOrder = { 1461, 1625 }, level = 1, group = "IncreasedManaAndOnHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "attack" }, }, - ["IncreasedManaEnhancedModRegen"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "Regenerate (5-7) Mana per second", statOrder = { 1461, 1464 }, level = 1, group = "IncreasedManaAndRegen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaEnhancedModReservation"] = { type = "Prefix", affix = "Xopec's", "+(69-73) to maximum Mana", "(6-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 1461, 2109 }, level = 1, group = "IncreasedManaAndReservation", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaEnhancedModCost"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "-(8-6) to Total Mana Cost of Skills", statOrder = { 1461, 1772 }, level = 1, group = "IncreasedManaAndCost", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaWeapon1"] = { type = "Prefix", affix = "Beryl", "+(30-39) to maximum Mana", statOrder = { 1461 }, level = 1, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaWeapon2__"] = { type = "Prefix", affix = "Cobalt", "+(40-49) to maximum Mana", statOrder = { 1461 }, level = 11, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaWeapon3_"] = { type = "Prefix", affix = "Azure", "+(50-59) to maximum Mana", statOrder = { 1461 }, level = 17, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaWeapon4"] = { type = "Prefix", affix = "Sapphire", "+(60-69) to maximum Mana", statOrder = { 1461 }, level = 23, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaWeapon5"] = { type = "Prefix", affix = "Cerulean", "+(70-79) to maximum Mana", statOrder = { 1461 }, level = 29, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaWeapon6"] = { type = "Prefix", affix = "Aqua", "+(80-89) to maximum Mana", statOrder = { 1461 }, level = 35, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaWeapon7"] = { type = "Prefix", affix = "Opalescent", "+(90-99) to maximum Mana", statOrder = { 1461 }, level = 42, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaWeapon8"] = { type = "Prefix", affix = "Gentian", "+(100-109) to maximum Mana", statOrder = { 1461 }, level = 51, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaWeapon9___"] = { type = "Prefix", affix = "Chalybeous", "+(110-119) to maximum Mana", statOrder = { 1461 }, level = 60, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaWeapon10"] = { type = "Prefix", affix = "Mazarine", "+(120-129) to maximum Mana", statOrder = { 1461 }, level = 69, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 800, 800, 800, 800, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaWeapon11"] = { type = "Prefix", affix = "Blue", "+(130-139) to maximum Mana", statOrder = { 1461 }, level = 75, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 600, 600, 600, 600, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaWeapon12"] = { type = "Prefix", affix = "Zaffre", "+(140-159) to maximum Mana", statOrder = { 1461 }, level = 81, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 400, 400, 400, 400, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaTwoHandWeapon1"] = { type = "Prefix", affix = "Beryl", "+(40-49) to maximum Mana", statOrder = { 1461 }, level = 1, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaTwoHandWeapon2_"] = { type = "Prefix", affix = "Cobalt", "+(50-59) to maximum Mana", statOrder = { 1461 }, level = 11, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaTwoHandWeapon3_"] = { type = "Prefix", affix = "Azure", "+(60-69) to maximum Mana", statOrder = { 1461 }, level = 17, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaTwoHandWeapon4"] = { type = "Prefix", affix = "Sapphire", "+(70-79) to maximum Mana", statOrder = { 1461 }, level = 23, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaTwoHandWeapon5"] = { type = "Prefix", affix = "Cerulean", "+(80-89) to maximum Mana", statOrder = { 1461 }, level = 29, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaTwoHandWeapon6"] = { type = "Prefix", affix = "Aqua", "+(90-99) to maximum Mana", statOrder = { 1461 }, level = 35, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaTwoHandWeapon7"] = { type = "Prefix", affix = "Opalescent", "+(100-119) to maximum Mana", statOrder = { 1461 }, level = 42, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaTwoHandWeapon8_"] = { type = "Prefix", affix = "Gentian", "+(120-139) to maximum Mana", statOrder = { 1461 }, level = 51, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaTwoHandWeapon9"] = { type = "Prefix", affix = "Chalybeous", "+(140-159) to maximum Mana", statOrder = { 1461 }, level = 60, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaTwoHandWeapon10"] = { type = "Prefix", affix = "Mazarine", "+(160-179) to maximum Mana", statOrder = { 1461 }, level = 69, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaTwoHandWeapon11"] = { type = "Prefix", affix = "Blue", "+(180-199) to maximum Mana", statOrder = { 1461 }, level = 75, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 600, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaTwoHandWeapon12"] = { type = "Prefix", affix = "Zaffre", "+(200-229) to maximum Mana", statOrder = { 1461 }, level = 81, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 400, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedEnergyShield1"] = { type = "Prefix", affix = "Shining", "+(1-3) to maximum Energy Shield", statOrder = { 1440 }, level = 3, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["IncreasedEnergyShield2"] = { type = "Prefix", affix = "Glimmering", "+(4-8) to maximum Energy Shield", statOrder = { 1440 }, level = 11, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["IncreasedEnergyShield3"] = { type = "Prefix", affix = "Glittering", "+(9-12) to maximum Energy Shield", statOrder = { 1440 }, level = 17, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["IncreasedEnergyShield4"] = { type = "Prefix", affix = "Glowing", "+(13-15) to maximum Energy Shield", statOrder = { 1440 }, level = 23, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["IncreasedEnergyShield5"] = { type = "Prefix", affix = "Radiating", "+(16-19) to maximum Energy Shield", statOrder = { 1440 }, level = 29, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["IncreasedEnergyShield6"] = { type = "Prefix", affix = "Pulsing", "+(20-22) to maximum Energy Shield", statOrder = { 1440 }, level = 35, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["IncreasedEnergyShield7"] = { type = "Prefix", affix = "Seething", "+(23-26) to maximum Energy Shield", statOrder = { 1440 }, level = 42, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["IncreasedEnergyShield8"] = { type = "Prefix", affix = "Blazing", "+(27-31) to maximum Energy Shield", statOrder = { 1440 }, level = 50, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["IncreasedEnergyShield9"] = { type = "Prefix", affix = "Scintillating", "+(32-37) to maximum Energy Shield", statOrder = { 1440 }, level = 59, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["IncreasedEnergyShield10"] = { type = "Prefix", affix = "Incandescent", "+(38-43) to maximum Energy Shield", statOrder = { 1440 }, level = 68, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["IncreasedEnergyShield11"] = { type = "Prefix", affix = "Resplendent", "+(44-47) to maximum Energy Shield", statOrder = { 1440 }, level = 74, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["IncreasedEnergyShield12"] = { type = "Prefix", affix = "Dazzling", "+(48-51) to maximum Energy Shield", statOrder = { 1440 }, level = 80, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["IncreasedEnergyShieldEnhancedModES"] = { type = "Prefix", affix = "Guatelitzi's", "+(44-47) to maximum Energy Shield", "(7-10)% increased maximum Energy Shield", statOrder = { 1440, 1443 }, level = 1, group = "EnergyShieldAndPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, - ["IncreasedEnergyShieldEnhancedModRegen_"] = { type = "Prefix", affix = "Guatelitzi's", "+(44-47) to maximum Energy Shield", "Regenerate 0.4% of Energy Shield per second", statOrder = { 1440, 2521 }, level = 1, group = "EnergyShieldAndRegen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, - ["LocalIncreasedEnergyShield1"] = { type = "Prefix", affix = "Shining", "+(3-5) to maximum Energy Shield", statOrder = { 1441 }, level = 3, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "energy_shield" }, }, - ["LocalIncreasedEnergyShield2"] = { type = "Prefix", affix = "Glimmering", "+(6-11) to maximum Energy Shield", statOrder = { 1441 }, level = 11, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "energy_shield" }, }, - ["LocalIncreasedEnergyShield3"] = { type = "Prefix", affix = "Glittering", "+(12-16) to maximum Energy Shield", statOrder = { 1441 }, level = 17, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "energy_shield" }, }, - ["LocalIncreasedEnergyShield4"] = { type = "Prefix", affix = "Glowing", "+(17-23) to maximum Energy Shield", statOrder = { 1441 }, level = 23, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "energy_shield" }, }, - ["LocalIncreasedEnergyShield5"] = { type = "Prefix", affix = "Radiating", "+(24-30) to maximum Energy Shield", statOrder = { 1441 }, level = 29, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "energy_shield" }, }, - ["LocalIncreasedEnergyShield6"] = { type = "Prefix", affix = "Pulsing", "+(31-38) to maximum Energy Shield", statOrder = { 1441 }, level = 35, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "energy_shield" }, }, - ["LocalIncreasedEnergyShield7"] = { type = "Prefix", affix = "Seething", "+(39-49) to maximum Energy Shield", statOrder = { 1441 }, level = 43, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "energy_shield" }, }, - ["LocalIncreasedEnergyShield8"] = { type = "Prefix", affix = "Blazing", "+(50-61) to maximum Energy Shield", statOrder = { 1441 }, level = 51, group = "LocalEnergyShield", weightKey = { "gloves", "boots", "int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 166, 0 }, modTags = { "defences", "energy_shield" }, }, - ["LocalIncreasedEnergyShield9"] = { type = "Prefix", affix = "Scintillating", "+(62-76) to maximum Energy Shield", statOrder = { 1441 }, level = 60, group = "LocalEnergyShield", weightKey = { "helmet", "gloves", "boots", "int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "energy_shield" }, }, - ["LocalIncreasedEnergyShield10"] = { type = "Prefix", affix = "Incandescent", "+(77-90) to maximum Energy Shield", statOrder = { 1441 }, level = 69, group = "LocalEnergyShield", weightKey = { "helmet", "gloves", "boots", "int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "energy_shield" }, }, - ["LocalIncreasedEnergyShield11"] = { type = "Prefix", affix = "Resplendent", "+(91-100) to maximum Energy Shield", statOrder = { 1441 }, level = 75, group = "LocalEnergyShield", weightKey = { "shield", "helmet", "gloves", "boots", "int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "energy_shield" }, }, - ["LocalIncreasedEnergyShieldEssenceChest5"] = { type = "Prefix", affix = "Essences", "+(62-72) to maximum Energy Shield", statOrder = { 1441 }, level = 58, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, - ["LocalIncreasedEnergyShieldEssenceChest6"] = { type = "Prefix", affix = "Essences", "+(73-82) to maximum Energy Shield", statOrder = { 1441 }, level = 74, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, - ["LocalIncreasedEnergyShieldEssenceChest7__"] = { type = "Prefix", affix = "Essences", "+(88-95) to maximum Energy Shield", statOrder = { 1441 }, level = 82, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, - ["LocalIncreasedEnergyShieldEssenceShield5"] = { type = "Prefix", affix = "Essences", "+(50-59) to maximum Energy Shield", statOrder = { 1441 }, level = 58, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, - ["LocalIncreasedEnergyShieldEssenceShield6"] = { type = "Prefix", affix = "Essences", "+(60-69) to maximum Energy Shield", statOrder = { 1441 }, level = 74, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, - ["LocalIncreasedEnergyShieldEssenceShield7"] = { type = "Prefix", affix = "Essences", "+(75-85) to maximum Energy Shield", statOrder = { 1441 }, level = 82, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, - ["LocalIncreasedEnergyShieldEssenceBootsGloves4"] = { type = "Prefix", affix = "Essences", "+(18-26) to maximum Energy Shield", statOrder = { 1441 }, level = 42, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, - ["LocalIncreasedEnergyShieldEssenceBootsGloves5"] = { type = "Prefix", affix = "Essences", "+(27-32) to maximum Energy Shield", statOrder = { 1441 }, level = 58, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, - ["LocalIncreasedEnergyShieldEssenceBootsGloves6"] = { type = "Prefix", affix = "Essences", "+(28-35) to maximum Energy Shield", statOrder = { 1441 }, level = 74, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, - ["LocalIncreasedEnergyShieldEssenceBootsGloves7"] = { type = "Prefix", affix = "Essences", "+(38-45) to maximum Energy Shield", statOrder = { 1441 }, level = 82, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, - ["LocalIncreasedEnergyShieldEssenceHelm5"] = { type = "Prefix", affix = "Essences", "+(39-45) to maximum Energy Shield", statOrder = { 1441 }, level = 58, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, - ["LocalIncreasedEnergyShieldEssenceHelm6"] = { type = "Prefix", affix = "Essences", "+(46-51) to maximum Energy Shield", statOrder = { 1441 }, level = 74, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, - ["LocalIncreasedEnergyShieldEssenceHelm7"] = { type = "Prefix", affix = "Essences", "+(52-58) to maximum Energy Shield", statOrder = { 1441 }, level = 82, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, - ["AddedPhysicalDamage1"] = { type = "Prefix", affix = "Glinting", "Adds 1 to 2 Physical Damage to Attacks", statOrder = { 1151 }, level = 5, group = "PhysicalDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AddedPhysicalDamage2"] = { type = "Prefix", affix = "Burnished", "Adds (2-3) to (4-5) Physical Damage to Attacks", statOrder = { 1151 }, level = 13, group = "PhysicalDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AddedPhysicalDamage3"] = { type = "Prefix", affix = "Polished", "Adds (3-4) to (6-7) Physical Damage to Attacks", statOrder = { 1151 }, level = 19, group = "PhysicalDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AddedPhysicalDamage4"] = { type = "Prefix", affix = "Honed", "Adds (4-6) to (9-10) Physical Damage to Attacks", statOrder = { 1151 }, level = 28, group = "PhysicalDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AddedPhysicalDamage5"] = { type = "Prefix", affix = "Gleaming", "Adds (5-7) to (11-12) Physical Damage to Attacks", statOrder = { 1151 }, level = 35, group = "PhysicalDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 1000, 1000, 0, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AddedPhysicalDamage6"] = { type = "Prefix", affix = "Annealed", "Adds (6-9) to (13-15) Physical Damage to Attacks", statOrder = { 1151 }, level = 44, group = "PhysicalDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 1000, 1000, 0, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AddedPhysicalDamage7"] = { type = "Prefix", affix = "Razor-sharp", "Adds (7-10) to (15-18) Physical Damage to Attacks", statOrder = { 1151 }, level = 52, group = "PhysicalDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 0, 1000, 0, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AddedPhysicalDamage8"] = { type = "Prefix", affix = "Tempered", "Adds (9-12) to (19-22) Physical Damage to Attacks", statOrder = { 1151 }, level = 64, group = "PhysicalDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 0, 1000, 0, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AddedPhysicalDamage9"] = { type = "Prefix", affix = "Flaring", "Adds (11-15) to (22-26) Physical Damage to Attacks", statOrder = { 1151 }, level = 76, group = "PhysicalDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 0, 1000, 0, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AddedPhysicalDamageQuiver1"] = { type = "Prefix", affix = "Glinting", "Adds (1-2) to 3 Physical Damage to Attacks", statOrder = { 1151 }, level = 5, group = "PhysicalDamage", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AddedPhysicalDamageQuiver2"] = { type = "Prefix", affix = "Burnished", "Adds (3-4) to (6-8) Physical Damage to Attacks", statOrder = { 1151 }, level = 13, group = "PhysicalDamage", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AddedPhysicalDamageQuiver3"] = { type = "Prefix", affix = "Polished", "Adds (5-6) to (9-10) Physical Damage to Attacks", statOrder = { 1151 }, level = 19, group = "PhysicalDamage", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AddedPhysicalDamageQuiver4"] = { type = "Prefix", affix = "Honed", "Adds (6-9) to (13-16) Physical Damage to Attacks", statOrder = { 1151 }, level = 28, group = "PhysicalDamage", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AddedPhysicalDamageQuiver5"] = { type = "Prefix", affix = "Gleaming", "Adds (8-11) to (16-18) Physical Damage to Attacks", statOrder = { 1151 }, level = 35, group = "PhysicalDamage", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AddedPhysicalDamageQuiver6"] = { type = "Prefix", affix = "Annealed", "Adds (10-13) to (19-23) Physical Damage to Attacks", statOrder = { 1151 }, level = 44, group = "PhysicalDamage", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AddedPhysicalDamageQuiver7"] = { type = "Prefix", affix = "Razor-sharp", "Adds (11-16) to (23-26) Physical Damage to Attacks", statOrder = { 1151 }, level = 52, group = "PhysicalDamage", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AddedPhysicalDamageQuiver8"] = { type = "Prefix", affix = "Tempered", "Adds (14-19) to (28-33) Physical Damage to Attacks", statOrder = { 1151 }, level = 64, group = "PhysicalDamage", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AddedPhysicalDamageQuiver9"] = { type = "Prefix", affix = "Flaring", "Adds (17-23) to (34-39) Physical Damage to Attacks", statOrder = { 1151 }, level = 76, group = "PhysicalDamage", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AddedPhysicalDamageEssenceAmulet7"] = { type = "Prefix", affix = "Essences", "Adds (16-18) to (27-30) Physical Damage to Attacks", statOrder = { 1151 }, level = 82, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AddedPhysicalDamageEssenceRing5"] = { type = "Prefix", affix = "Essences", "Adds (6-8) to (12-13) Physical Damage to Attacks", statOrder = { 1151 }, level = 58, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AddedPhysicalDamageEssenceRing6"] = { type = "Prefix", affix = "Essences", "Adds (7-9) to (13-15) Physical Damage to Attacks", statOrder = { 1151 }, level = 74, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AddedPhysicalDamageEssenceRing7"] = { type = "Prefix", affix = "Essences", "Adds (10-11) to (16-17) Physical Damage to Attacks", statOrder = { 1151 }, level = 82, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AddedPhysicalDamageEssenceGlovesQuiver4"] = { type = "Prefix", affix = "Essences", "Adds (3-5) to (7-8) Physical Damage to Attacks", statOrder = { 1151 }, level = 42, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AddedPhysicalDamageEssenceGlovesQuiver5"] = { type = "Prefix", affix = "Essences", "Adds (4-5) to (8-9) Physical Damage to Attacks", statOrder = { 1151 }, level = 58, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AddedPhysicalDamageEssenceGlovesQuiver6"] = { type = "Prefix", affix = "Essences", "Adds (5-6) to (9-10) Physical Damage to Attacks", statOrder = { 1151 }, level = 74, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AddedPhysicalDamageEssenceGlovesQuiver7"] = { type = "Prefix", affix = "Essences", "Adds (6-7) to (10-11) Physical Damage to Attacks", statOrder = { 1151 }, level = 82, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AddedFireDamage1"] = { type = "Prefix", affix = "Heated", "Adds 1 to 2 Fire Damage to Attacks", statOrder = { 1244 }, level = 1, group = "FireDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AddedFireDamage2"] = { type = "Prefix", affix = "Smouldering", "Adds (3-5) to (7-8) Fire Damage to Attacks", statOrder = { 1244 }, level = 12, group = "FireDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AddedFireDamage3"] = { type = "Prefix", affix = "Smoking", "Adds (5-7) to (11-13) Fire Damage to Attacks", statOrder = { 1244 }, level = 20, group = "FireDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AddedFireDamage4"] = { type = "Prefix", affix = "Burning", "Adds (7-10) to (15-18) Fire Damage to Attacks", statOrder = { 1244 }, level = 28, group = "FireDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AddedFireDamage5"] = { type = "Prefix", affix = "Flaming", "Adds (9-12) to (19-22) Fire Damage to Attacks", statOrder = { 1244 }, level = 35, group = "FireDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AddedFireDamage6"] = { type = "Prefix", affix = "Scorching", "Adds (11-15) to (23-27) Fire Damage to Attacks", statOrder = { 1244 }, level = 44, group = "FireDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AddedFireDamage7"] = { type = "Prefix", affix = "Incinerating", "Adds (13-18) to (27-31) Fire Damage to Attacks", statOrder = { 1244 }, level = 52, group = "FireDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 100, 500, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AddedFireDamage8"] = { type = "Prefix", affix = "Blasting", "Adds (16-22) to (32-38) Fire Damage to Attacks", statOrder = { 1244 }, level = 64, group = "FireDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 100, 500, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AddedFireDamage9"] = { type = "Prefix", affix = "Cremating", "Adds (19-25) to (39-45) Fire Damage to Attacks", statOrder = { 1244 }, level = 76, group = "FireDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 50, 250, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AddedFireDamageQuiver1"] = { type = "Prefix", affix = "Heated", "Adds (1-2) to 3 Fire Damage to Attacks", statOrder = { 1244 }, level = 1, group = "FireDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AddedFireDamageQuiver2"] = { type = "Prefix", affix = "Smouldering", "Adds (5-7) to (10-12) Fire Damage to Attacks", statOrder = { 1244 }, level = 12, group = "FireDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AddedFireDamageQuiver3"] = { type = "Prefix", affix = "Smoking", "Adds (8-10) to (15-18) Fire Damage to Attacks", statOrder = { 1244 }, level = 20, group = "FireDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AddedFireDamageQuiver4"] = { type = "Prefix", affix = "Burning", "Adds (11-14) to (21-25) Fire Damage to Attacks", statOrder = { 1244 }, level = 28, group = "FireDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AddedFireDamageQuiver5_"] = { type = "Prefix", affix = "Flaming", "Adds (13-18) to (27-31) Fire Damage to Attacks", statOrder = { 1244 }, level = 35, group = "FireDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AddedFireDamageQuiver6"] = { type = "Prefix", affix = "Scorching", "Adds (17-22) to (33-38) Fire Damage to Attacks", statOrder = { 1244 }, level = 44, group = "FireDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AddedFireDamageQuiver7"] = { type = "Prefix", affix = "Incinerating", "Adds (20-27) to (40-47) Fire Damage to Attacks", statOrder = { 1244 }, level = 52, group = "FireDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AddedFireDamageQuiver8__"] = { type = "Prefix", affix = "Blasting", "Adds (27-35) to (53-62) Fire Damage to Attacks", statOrder = { 1244 }, level = 64, group = "FireDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AddedFireDamageQuiver9"] = { type = "Prefix", affix = "Cremating", "Adds (37-50) to (74-87) Fire Damage to Attacks", statOrder = { 1244 }, level = 76, group = "FireDamage", weightKey = { "quiver", "default", }, weightVal = { 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AddedFireDamageQuiverEssence10"] = { type = "Prefix", affix = "Essences", "Adds (41-55) to (81-96) Fire Damage to Attacks", statOrder = { 1244 }, level = 82, group = "FireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AddedFireDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (23-27) to (43-48) Fire Damage to Attacks", statOrder = { 1244 }, level = 82, group = "FireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AddedFireDamageEssenceGlovesQuiver4"] = { type = "Prefix", affix = "Essences", "Adds (5-7) to (11-14) Fire Damage to Attacks", statOrder = { 1244 }, level = 42, group = "FireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AddedFireDamageEssenceGlovesQuiver5"] = { type = "Prefix", affix = "Essences", "Adds (6-8) to (13-17) Fire Damage to Attacks", statOrder = { 1244 }, level = 58, group = "FireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AddedFireDamageEssenceGlovesQuiver6"] = { type = "Prefix", affix = "Essences", "Adds (8-10) to (16-18) Fire Damage to Attacks", statOrder = { 1244 }, level = 74, group = "FireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AddedFireDamageEssenceGlovesQuiver7"] = { type = "Prefix", affix = "Essences", "Adds (9-11) to (17-21) Fire Damage to Attacks", statOrder = { 1244 }, level = 82, group = "FireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AddedColdDamage1"] = { type = "Prefix", affix = "Frosted", "Adds 1 to 2 Cold Damage to Attacks", statOrder = { 1253 }, level = 2, group = "ColdDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AddedColdDamage2"] = { type = "Prefix", affix = "Chilled", "Adds (3-4) to (7-8) Cold Damage to Attacks", statOrder = { 1253 }, level = 13, group = "ColdDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AddedColdDamage3"] = { type = "Prefix", affix = "Icy", "Adds (5-7) to (10-12) Cold Damage to Attacks", statOrder = { 1253 }, level = 21, group = "ColdDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AddedColdDamage4"] = { type = "Prefix", affix = "Frigid", "Adds (6-9) to (13-16) Cold Damage to Attacks", statOrder = { 1253 }, level = 29, group = "ColdDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AddedColdDamage5"] = { type = "Prefix", affix = "Freezing", "Adds (8-11) to (16-19) Cold Damage to Attacks", statOrder = { 1253 }, level = 36, group = "ColdDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AddedColdDamage6"] = { type = "Prefix", affix = "Frozen", "Adds (10-13) to (20-24) Cold Damage to Attacks", statOrder = { 1253 }, level = 45, group = "ColdDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AddedColdDamage7"] = { type = "Prefix", affix = "Glaciated", "Adds (12-16) to (24-28) Cold Damage to Attacks", statOrder = { 1253 }, level = 53, group = "ColdDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 100, 500, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AddedColdDamage8"] = { type = "Prefix", affix = "Polar", "Adds (14-19) to (29-34) Cold Damage to Attacks", statOrder = { 1253 }, level = 65, group = "ColdDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 100, 500, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AddedColdDamage9"] = { type = "Prefix", affix = "Entombing", "Adds (17-22) to (34-40) Cold Damage to Attacks", statOrder = { 1253 }, level = 77, group = "ColdDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 50, 250, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AddedColdDamageQuiver1"] = { type = "Prefix", affix = "Frosted", "Adds (1-2) to 3 Cold Damage to Attacks", statOrder = { 1253 }, level = 2, group = "ColdDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AddedColdDamageQuiver2"] = { type = "Prefix", affix = "Chilled", "Adds (5-6) to (9-10) Cold Damage to Attacks", statOrder = { 1253 }, level = 13, group = "ColdDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AddedColdDamageQuiver3_"] = { type = "Prefix", affix = "Icy", "Adds (7-9) to (14-16) Cold Damage to Attacks", statOrder = { 1253 }, level = 21, group = "ColdDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AddedColdDamageQuiver4__"] = { type = "Prefix", affix = "Frigid", "Adds (10-13) to (19-22) Cold Damage to Attacks", statOrder = { 1253 }, level = 29, group = "ColdDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AddedColdDamageQuiver5"] = { type = "Prefix", affix = "Freezing", "Adds (12-16) to (24-28) Cold Damage to Attacks", statOrder = { 1253 }, level = 36, group = "ColdDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AddedColdDamageQuiver6"] = { type = "Prefix", affix = "Frozen", "Adds (15-20) to (30-35) Cold Damage to Attacks", statOrder = { 1253 }, level = 45, group = "ColdDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AddedColdDamageQuiver7"] = { type = "Prefix", affix = "Glaciated", "Adds (18-24) to (36-42) Cold Damage to Attacks", statOrder = { 1253 }, level = 53, group = "ColdDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AddedColdDamageQuiver8"] = { type = "Prefix", affix = "Polar", "Adds (23-32) to (48-55) Cold Damage to Attacks", statOrder = { 1253 }, level = 65, group = "ColdDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AddedColdDamageQuiver9_"] = { type = "Prefix", affix = "Entombing", "Adds (33-45) to (67-78) Cold Damage to Attacks", statOrder = { 1253 }, level = 77, group = "ColdDamage", weightKey = { "quiver", "default", }, weightVal = { 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AddedColdDamageQuiverEssence10"] = { type = "Prefix", affix = "Essences", "Adds (36-50) to (74-86) Cold Damage to Attacks", statOrder = { 1253 }, level = 82, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AddedColdDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (20-24) to (38-44) Cold Damage to Attacks", statOrder = { 1253 }, level = 82, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AddedColdDamageEssenceQuiverGloves4"] = { type = "Prefix", affix = "Essences", "Adds (6-7) to (11-14) Cold Damage to Attacks", statOrder = { 1253 }, level = 42, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AddedColdDamageEssenceQuiverGloves5"] = { type = "Prefix", affix = "Essences", "Adds (6-8) to (12-15) Cold Damage to Attacks", statOrder = { 1253 }, level = 58, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AddedColdDamageEssenceQuiverGloves6"] = { type = "Prefix", affix = "Essences", "Adds (7-9) to (13-16) Cold Damage to Attacks", statOrder = { 1253 }, level = 74, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AddedColdDamageEssenceQuiverGloves7"] = { type = "Prefix", affix = "Essences", "Adds (8-10) to (14-17) Cold Damage to Attacks", statOrder = { 1253 }, level = 82, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AddedLightningDamage1"] = { type = "Prefix", affix = "Humming", "Adds 1 to 5 Lightning Damage to Attacks", statOrder = { 1264 }, level = 3, group = "LightningDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AddedLightningDamage2"] = { type = "Prefix", affix = "Buzzing", "Adds 1 to (14-15) Lightning Damage to Attacks", statOrder = { 1264 }, level = 13, group = "LightningDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AddedLightningDamage3"] = { type = "Prefix", affix = "Snapping", "Adds (1-2) to (22-23) Lightning Damage to Attacks", statOrder = { 1264 }, level = 22, group = "LightningDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AddedLightningDamage4"] = { type = "Prefix", affix = "Crackling", "Adds (1-2) to (27-28) Lightning Damage to Attacks", statOrder = { 1264 }, level = 28, group = "LightningDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AddedLightningDamage5"] = { type = "Prefix", affix = "Sparking", "Adds (1-3) to (33-34) Lightning Damage to Attacks", statOrder = { 1264 }, level = 35, group = "LightningDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AddedLightningDamage6"] = { type = "Prefix", affix = "Arcing", "Adds (1-4) to (40-43) Lightning Damage to Attacks", statOrder = { 1264 }, level = 44, group = "LightningDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AddedLightningDamage7"] = { type = "Prefix", affix = "Shocking", "Adds (2-5) to (47-50) Lightning Damage to Attacks", statOrder = { 1264 }, level = 52, group = "LightningDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 100, 500, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AddedLightningDamage8"] = { type = "Prefix", affix = "Discharging", "Adds (3-6) to (57-61) Lightning Damage to Attacks", statOrder = { 1264 }, level = 64, group = "LightningDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 100, 500, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AddedLightningDamage9"] = { type = "Prefix", affix = "Electrocuting", "Adds (3-7) to (68-72) Lightning Damage to Attacks", statOrder = { 1264 }, level = 76, group = "LightningDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 50, 250, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AddedLightningDamageQuiver1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (3-4) Lightning Damage to Attacks", statOrder = { 1264 }, level = 3, group = "LightningDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AddedLightningDamageQuiver2"] = { type = "Prefix", affix = "Buzzing", "Adds 2 to (16-18) Lightning Damage to Attacks", statOrder = { 1264 }, level = 13, group = "LightningDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AddedLightningDamageQuiver3"] = { type = "Prefix", affix = "Snapping", "Adds (1-3) to (25-28) Lightning Damage to Attacks", statOrder = { 1264 }, level = 22, group = "LightningDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AddedLightningDamageQuiver4"] = { type = "Prefix", affix = "Crackling", "Adds (2-3) to (35-40) Lightning Damage to Attacks", statOrder = { 1264 }, level = 28, group = "LightningDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AddedLightningDamageQuiver5_"] = { type = "Prefix", affix = "Sparking", "Adds (2-4) to (44-50) Lightning Damage to Attacks", statOrder = { 1264 }, level = 35, group = "LightningDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AddedLightningDamageQuiver6___"] = { type = "Prefix", affix = "Arcing", "Adds (2-5) to (56-62) Lightning Damage to Attacks", statOrder = { 1264 }, level = 44, group = "LightningDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AddedLightningDamageQuiver7"] = { type = "Prefix", affix = "Shocking", "Adds (2-6) to (66-75) Lightning Damage to Attacks", statOrder = { 1264 }, level = 52, group = "LightningDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AddedLightningDamageQuiver8"] = { type = "Prefix", affix = "Discharging", "Adds (3-8) to (89-99) Lightning Damage to Attacks", statOrder = { 1264 }, level = 64, group = "LightningDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AddedLightningDamageQuiver9"] = { type = "Prefix", affix = "Electrocuting", "Adds (5-11) to (124-140) Lightning Damage to Attacks", statOrder = { 1264 }, level = 76, group = "LightningDamage", weightKey = { "quiver", "default", }, weightVal = { 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AddedLightningDamageQuiverEssence10__"] = { type = "Prefix", affix = "Essences", "Adds (6-13) to (136-155) Lightning Damage to Attacks", statOrder = { 1264 }, level = 82, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AddedLightningDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (4-8) to (71-76) Lightning Damage to Attacks", statOrder = { 1264 }, level = 82, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AddedLightningDamageEssenceQuiverGloves3_"] = { type = "Prefix", affix = "Essences", "Adds (1-2) to (21-22) Lightning Damage to Attacks", statOrder = { 1264 }, level = 26, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AddedLightningDamageEssenceQuiverGloves4"] = { type = "Prefix", affix = "Essences", "Adds (1-2) to (23-24) Lightning Damage to Attacks", statOrder = { 1264 }, level = 42, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AddedLightningDamageEssenceQuiverGloves5"] = { type = "Prefix", affix = "Essences", "Adds (1-2) to (25-26) Lightning Damage to Attacks", statOrder = { 1264 }, level = 58, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AddedLightningDamageEssenceQuiverGloves6"] = { type = "Prefix", affix = "Essences", "Adds (1-2) to (27-28) Lightning Damage to Attacks", statOrder = { 1264 }, level = 74, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AddedLightningDamageEssenceQuiverGloves7"] = { type = "Prefix", affix = "Essences", "Adds (1-3) to (29-30) Lightning Damage to Attacks", statOrder = { 1264 }, level = 82, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AddedChaosDamageQuiver1"] = { type = "Prefix", affix = "Malicious", "Adds (27-41) to (55-69) Chaos Damage to Attacks", statOrder = { 1271 }, level = 83, group = "ChaosDamage", weightKey = { "quiver", "default", }, weightVal = { 125, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["AddedFireDamageEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "Adds (5-7) to (11-13) Fire Damage to Attacks", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1244, 1834 }, level = 1, group = "FireDamagePhysConvertedToFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire", "attack" }, }, - ["AddedColdDamageEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "Adds (5-7) to (10-12) Cold Damage to Attacks", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1253, 1836 }, level = 1, group = "ColdDamagePhysConvertedToCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold", "attack" }, }, - ["AddedLightningDamageEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "Adds (1-2) to (22-23) Lightning Damage to Attacks", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1264, 1838 }, level = 1, group = "LightningDamagePhysConvertedToLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning", "attack" }, }, - ["LifeLeech1"] = { type = "Prefix", affix = "Remora's", "(1-2)% of Physical Attack Damage Leeched as Life", statOrder = { 1528 }, level = 9, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeech2"] = { type = "Prefix", affix = "Lamprey's", "(3-4)% of Physical Attack Damage Leeched as Life", statOrder = { 1528 }, level = 25, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeech3"] = { type = "Prefix", affix = "Vampire's", "(5-6)% of Physical Attack Damage Leeched as Life", statOrder = { 1528 }, level = 72, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeechPermyriad1"] = { type = "Prefix", affix = "Remora's", "(0.2-0.4)% of Physical Attack Damage Leeched as Life", statOrder = { 1530 }, level = 50, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeechPermyriad2"] = { type = "Prefix", affix = "Lamprey's", "(0.6-0.8)% of Physical Attack Damage Leeched as Life", statOrder = { 1530 }, level = 60, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeechPermyriad3"] = { type = "Prefix", affix = "Vampire's", "(1-1.2)% of Physical Attack Damage Leeched as Life", statOrder = { 1530 }, level = 70, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeechPermyriadSuffix1"] = { type = "Suffix", affix = "of the Remora", "(0.2-0.4)% of Physical Attack Damage Leeched as Life", statOrder = { 1530 }, level = 50, group = "LifeLeechPermyriad", weightKey = { "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeechPermyriadSuffix2"] = { type = "Suffix", affix = "of the Lamprey", "(0.6-0.8)% of Physical Attack Damage Leeched as Life", statOrder = { 1530 }, level = 60, group = "LifeLeechPermyriad", weightKey = { "ranged", "amulet", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeechPermyriadSuffix3"] = { type = "Suffix", affix = "of the Vampire", "(1-1.2)% of Physical Attack Damage Leeched as Life", statOrder = { 1530 }, level = 70, group = "LifeLeechPermyriad", weightKey = { "ranged", "amulet", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeechPermyriadEssence1"] = { type = "Prefix", affix = "Essences", "(0.5-0.7)% of Physical Attack Damage Leeched as Life", statOrder = { 1530 }, level = 1, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeechPermyriadEssence2"] = { type = "Prefix", affix = "Essences", "(0.6-0.8)% of Physical Attack Damage Leeched as Life", statOrder = { 1530 }, level = 10, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeechPermyriadEssence3_"] = { type = "Prefix", affix = "Essences", "(0.7-0.9)% of Physical Attack Damage Leeched as Life", statOrder = { 1530 }, level = 26, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeechPermyriadEssence4"] = { type = "Prefix", affix = "Essences", "(0.8-1)% of Physical Attack Damage Leeched as Life", statOrder = { 1530 }, level = 42, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeechPermyriadEssence5"] = { type = "Prefix", affix = "Essences", "(0.9-1.1)% of Physical Attack Damage Leeched as Life", statOrder = { 1530 }, level = 58, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeechPermyriadEssence6"] = { type = "Prefix", affix = "Essences", "(1-1.2)% of Physical Attack Damage Leeched as Life", statOrder = { 1530 }, level = 74, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeechPermyriadEssence7"] = { type = "Prefix", affix = "Essences", "(1.1-1.3)% of Physical Attack Damage Leeched as Life", statOrder = { 1530 }, level = 82, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeechPermyriadSuffixEssence1"] = { type = "Suffix", affix = "of the Essence", "(0.5-0.7)% of Physical Attack Damage Leeched as Life", statOrder = { 1530 }, level = 1, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeechPermyriadSuffixEssence2"] = { type = "Suffix", affix = "of the Essence", "(0.6-0.8)% of Physical Attack Damage Leeched as Life", statOrder = { 1530 }, level = 10, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeechPermyriadSuffixEssence3_"] = { type = "Suffix", affix = "of the Essence", "(0.7-0.9)% of Physical Attack Damage Leeched as Life", statOrder = { 1530 }, level = 26, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeechPermyriadSuffixEssence4"] = { type = "Suffix", affix = "of the Essence", "(0.8-1)% of Physical Attack Damage Leeched as Life", statOrder = { 1530 }, level = 42, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeechPermyriadSuffixEssence5"] = { type = "Suffix", affix = "of the Essence", "(0.9-1.1)% of Physical Attack Damage Leeched as Life", statOrder = { 1530 }, level = 58, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeechPermyriadSuffixEssence6"] = { type = "Suffix", affix = "of the Essence", "(1-1.2)% of Physical Attack Damage Leeched as Life", statOrder = { 1530 }, level = 74, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeechPermyriadSuffixEssence7"] = { type = "Suffix", affix = "of the Essence", "(1.1-1.3)% of Physical Attack Damage Leeched as Life", statOrder = { 1530 }, level = 82, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, - ["ElementalDamagePercent1"] = { type = "Prefix", affix = "Augur's", "(4-8)% increased Elemental Damage", statOrder = { 1857 }, level = 4, group = "ElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["ElementalDamagePercent2"] = { type = "Prefix", affix = "Auspex's", "(9-16)% increased Elemental Damage", statOrder = { 1857 }, level = 15, group = "ElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["ElementalDamagePercent3"] = { type = "Prefix", affix = "Druid's", "(17-24)% increased Elemental Damage", statOrder = { 1857 }, level = 30, group = "ElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["ElementalDamagePercent4"] = { type = "Prefix", affix = "Haruspex's", "(25-29)% increased Elemental Damage", statOrder = { 1857 }, level = 60, group = "ElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["ElementalDamagePercent5"] = { type = "Prefix", affix = "Harbinger's", "(30-34)% increased Elemental Damage", statOrder = { 1857 }, level = 81, group = "ElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating1"] = { type = "Prefix", affix = "Squire's", "(15-19)% increased Physical Damage", "+(16-20) to Accuracy Rating", statOrder = { 1117, 1901 }, level = 1, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating2"] = { type = "Prefix", affix = "Journeyman's", "(20-24)% increased Physical Damage", "+(21-46) to Accuracy Rating", statOrder = { 1117, 1901 }, level = 11, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating3"] = { type = "Prefix", affix = "Reaver's", "(25-34)% increased Physical Damage", "+(47-72) to Accuracy Rating", statOrder = { 1117, 1901 }, level = 23, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating4"] = { type = "Prefix", affix = "Mercenary's", "(35-44)% increased Physical Damage", "+(73-97) to Accuracy Rating", statOrder = { 1117, 1901 }, level = 35, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating5"] = { type = "Prefix", affix = "Champion's", "(45-54)% increased Physical Damage", "+(98-123) to Accuracy Rating", statOrder = { 1117, 1901 }, level = 46, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating6"] = { type = "Prefix", affix = "Conqueror's", "(55-64)% increased Physical Damage", "+(124-149) to Accuracy Rating", statOrder = { 1117, 1901 }, level = 60, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating7"] = { type = "Prefix", affix = "Emperor's", "(65-74)% increased Physical Damage", "+(150-174) to Accuracy Rating", statOrder = { 1117, 1901 }, level = 73, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating8"] = { type = "Prefix", affix = "Dictator's", "(75-79)% increased Physical Damage", "+(175-200) to Accuracy Rating", statOrder = { 1117, 1901 }, level = 83, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 25, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["LocalIncreasedPhysicalDamagePercent1"] = { type = "Prefix", affix = "Heavy", "(40-49)% increased Physical Damage", statOrder = { 1117 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["LocalIncreasedPhysicalDamagePercent2"] = { type = "Prefix", affix = "Serrated", "(50-64)% increased Physical Damage", statOrder = { 1117 }, level = 11, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["LocalIncreasedPhysicalDamagePercent3"] = { type = "Prefix", affix = "Wicked", "(65-84)% increased Physical Damage", statOrder = { 1117 }, level = 23, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["LocalIncreasedPhysicalDamagePercent4"] = { type = "Prefix", affix = "Vicious", "(85-109)% increased Physical Damage", statOrder = { 1117 }, level = 35, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["LocalIncreasedPhysicalDamagePercent5"] = { type = "Prefix", affix = "Bloodthirsty", "(110-134)% increased Physical Damage", statOrder = { 1117 }, level = 46, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["LocalIncreasedPhysicalDamagePercent6"] = { type = "Prefix", affix = "Cruel", "(135-154)% increased Physical Damage", statOrder = { 1117 }, level = 60, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["LocalIncreasedPhysicalDamagePercent7"] = { type = "Prefix", affix = "Tyrannical", "(155-169)% increased Physical Damage", statOrder = { 1117 }, level = 73, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["LocalIncreasedPhysicalDamagePercent8"] = { type = "Prefix", affix = "Merciless", "(170-179)% increased Physical Damage", statOrder = { 1117 }, level = 83, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 25, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["LocalIncreasedPhysicalDamageEnhancedMod"] = { type = "Prefix", affix = "Tacati's", "(155-169)% increased Physical Damage", "Gain (9-10)% of Physical Damage as Extra Chaos Damage", statOrder = { 1117, 1814 }, level = 1, group = "LocalPhysicalDamagePercentAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos", "attack" }, }, - ["IncreasedPhysicalDamagePercent1"] = { type = "Prefix", affix = "Heavy", "(8-12)% increased Global Physical Damage", statOrder = { 1116 }, level = 4, group = "PhysicalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["IncreasedPhysicalDamagePercent2"] = { type = "Prefix", affix = "Serrated", "(13-17)% increased Global Physical Damage", statOrder = { 1116 }, level = 15, group = "PhysicalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["IncreasedPhysicalDamagePercent3"] = { type = "Prefix", affix = "Wicked", "(18-22)% increased Global Physical Damage", statOrder = { 1116 }, level = 30, group = "PhysicalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["IncreasedPhysicalDamagePercent4"] = { type = "Prefix", affix = "Cruel", "(23-28)% increased Global Physical Damage", statOrder = { 1116 }, level = 60, group = "PhysicalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["IncreasedPhysicalDamagePercent5__"] = { type = "Prefix", affix = "Merciless", "(29-33)% increased Global Physical Damage", statOrder = { 1116 }, level = 81, group = "PhysicalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["LocalAddedPhysicalDamage1"] = { type = "Prefix", affix = "Glinting", "Adds 1 to (2-3) Physical Damage", statOrder = { 1160 }, level = 2, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["LocalAddedPhysicalDamage2"] = { type = "Prefix", affix = "Burnished", "Adds (4-5) to (8-9) Physical Damage", statOrder = { 1160 }, level = 13, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["LocalAddedPhysicalDamage3"] = { type = "Prefix", affix = "Polished", "Adds (6-9) to (13-15) Physical Damage", statOrder = { 1160 }, level = 21, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["LocalAddedPhysicalDamage4"] = { type = "Prefix", affix = "Honed", "Adds (8-12) to (17-20) Physical Damage", statOrder = { 1160 }, level = 29, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["LocalAddedPhysicalDamage5"] = { type = "Prefix", affix = "Gleaming", "Adds (11-14) to (21-25) Physical Damage", statOrder = { 1160 }, level = 36, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["LocalAddedPhysicalDamage6"] = { type = "Prefix", affix = "Annealed", "Adds (13-18) to (27-31) Physical Damage", statOrder = { 1160 }, level = 46, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["LocalAddedPhysicalDamage7"] = { type = "Prefix", affix = "Razor-sharp", "Adds (16-21) to (32-38) Physical Damage", statOrder = { 1160 }, level = 54, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["LocalAddedPhysicalDamage8"] = { type = "Prefix", affix = "Tempered", "Adds (19-25) to (39-45) Physical Damage", statOrder = { 1160 }, level = 65, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["LocalAddedPhysicalDamage9"] = { type = "Prefix", affix = "Flaring", "Adds (22-29) to (45-52) Physical Damage", statOrder = { 1160 }, level = 77, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["LocalAddedPhysicalDamageEssenceNew7"] = { type = "Prefix", affix = "Essences", "Adds (20-26) to (40-47) Physical Damage", statOrder = { 1160 }, level = 82, group = "LocalPhysicalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["LocalAddedPhysicalDamageTwoHand1"] = { type = "Prefix", affix = "Glinting", "Adds 2 to (4-5) Physical Damage", statOrder = { 1160 }, level = 2, group = "LocalPhysicalDamageTwoHanded", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["LocalAddedPhysicalDamageTwoHand2"] = { type = "Prefix", affix = "Burnished", "Adds (6-8) to (12-15) Physical Damage", statOrder = { 1160 }, level = 13, group = "LocalPhysicalDamageTwoHanded", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["LocalAddedPhysicalDamageTwoHand3"] = { type = "Prefix", affix = "Polished", "Adds (10-13) to (21-25) Physical Damage", statOrder = { 1160 }, level = 21, group = "LocalPhysicalDamageTwoHanded", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["LocalAddedPhysicalDamageTwoHand4"] = { type = "Prefix", affix = "Honed", "Adds (13-17) to (28-32) Physical Damage", statOrder = { 1160 }, level = 29, group = "LocalPhysicalDamageTwoHanded", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["LocalAddedPhysicalDamageTwoHand5"] = { type = "Prefix", affix = "Gleaming", "Adds (16-22) to (35-40) Physical Damage", statOrder = { 1160 }, level = 36, group = "LocalPhysicalDamageTwoHanded", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["LocalAddedPhysicalDamageTwoHand6"] = { type = "Prefix", affix = "Annealed", "Adds (20-28) to (43-51) Physical Damage", statOrder = { 1160 }, level = 46, group = "LocalPhysicalDamageTwoHanded", weightKey = { "two_hand_weapon", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["LocalAddedPhysicalDamageTwoHand7"] = { type = "Prefix", affix = "Razor-sharp", "Adds (25-33) to (52-61) Physical Damage", statOrder = { 1160 }, level = 54, group = "LocalPhysicalDamageTwoHanded", weightKey = { "two_hand_weapon", "default", }, weightVal = { 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["LocalAddedPhysicalDamageTwoHand8"] = { type = "Prefix", affix = "Tempered", "Adds (30-40) to (63-73) Physical Damage", statOrder = { 1160 }, level = 65, group = "LocalPhysicalDamageTwoHanded", weightKey = { "two_hand_weapon", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["LocalAddedPhysicalDamageTwoHand9"] = { type = "Prefix", affix = "Flaring", "Adds (34-47) to (72-84) Physical Damage", statOrder = { 1160 }, level = 77, group = "LocalPhysicalDamageTwoHanded", weightKey = { "two_hand_weapon", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["LocalAddedPhysicalDamageTwoHandEssenceNew7__"] = { type = "Prefix", affix = "Essences", "Adds (31-42) to (65-75) Physical Damage", statOrder = { 1160 }, level = 82, group = "LocalPhysicalDamageTwoHanded", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["LocalIncreasedEnergyShieldPercent1"] = { type = "Prefix", affix = "Protective", "(11-28)% increased Energy Shield", statOrder = { 1442 }, level = 3, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["LocalIncreasedEnergyShieldPercent2"] = { type = "Prefix", affix = "Strong-Willed", "(27-42)% increased Energy Shield", statOrder = { 1442 }, level = 18, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["LocalIncreasedEnergyShieldPercent3"] = { type = "Prefix", affix = "Resolute", "(43-55)% increased Energy Shield", statOrder = { 1442 }, level = 30, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["LocalIncreasedEnergyShieldPercent4"] = { type = "Prefix", affix = "Fearless", "(56-67)% increased Energy Shield", statOrder = { 1442 }, level = 44, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["LocalIncreasedEnergyShieldPercent5"] = { type = "Prefix", affix = "Dauntless", "(68-79)% increased Energy Shield", statOrder = { 1442 }, level = 60, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["LocalIncreasedEnergyShieldPercent6"] = { type = "Prefix", affix = "Indomitable", "(80-91)% increased Energy Shield", statOrder = { 1442 }, level = 72, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["LocalIncreasedEnergyShieldPercent7_"] = { type = "Prefix", affix = "Unassailable", "(92-100)% increased Energy Shield", statOrder = { 1442 }, level = 84, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["LocalIncreasedEnergyShieldPercent8"] = { type = "Prefix", affix = "Unfaltering", "(101-110)% increased Energy Shield", statOrder = { 1442 }, level = 86, 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, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["LocalIncreasedPhysicalDamageReductionRatingPercent1"] = { type = "Prefix", affix = "Reinforced", "(15-26)% increased Armour", statOrder = { 1425 }, level = 3, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, - ["LocalIncreasedPhysicalDamageReductionRatingPercent2"] = { type = "Prefix", affix = "Layered", "(27-42)% increased Armour", statOrder = { 1425 }, level = 17, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, - ["LocalIncreasedPhysicalDamageReductionRatingPercent3"] = { type = "Prefix", affix = "Lobstered", "(43-55)% increased Armour", statOrder = { 1425 }, level = 29, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, - ["LocalIncreasedPhysicalDamageReductionRatingPercent4"] = { type = "Prefix", affix = "Buttressed", "(56-67)% increased Armour", statOrder = { 1425 }, level = 42, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, - ["LocalIncreasedPhysicalDamageReductionRatingPercent5"] = { type = "Prefix", affix = "Thickened", "(68-79)% increased Armour", statOrder = { 1425 }, level = 60, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, - ["LocalIncreasedPhysicalDamageReductionRatingPercent6"] = { type = "Prefix", affix = "Girded", "(80-91)% increased Armour", statOrder = { 1425 }, level = 72, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, - ["LocalIncreasedPhysicalDamageReductionRatingPercent7"] = { type = "Prefix", affix = "Impregnable", "(92-100)% increased Armour", statOrder = { 1425 }, level = 84, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, - ["LocalIncreasedPhysicalDamageReductionRatingPercent8_"] = { type = "Prefix", affix = "Impenetrable", "(101-110)% increased Armour", statOrder = { 1425 }, level = 86, 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, 1000, 1000, 0 }, modTags = { "defences", "armour" }, }, - ["LocalIncreasedEvasionRatingPercent1"] = { type = "Prefix", affix = "Shade's", "(15-26)% increased Evasion Rating", statOrder = { 1433 }, level = 3, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, - ["LocalIncreasedEvasionRatingPercent2"] = { type = "Prefix", affix = "Ghost's", "(27-42)% increased Evasion Rating", statOrder = { 1433 }, level = 19, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, - ["LocalIncreasedEvasionRatingPercent3"] = { type = "Prefix", affix = "Spectre's", "(43-55)% increased Evasion Rating", statOrder = { 1433 }, level = 30, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, - ["LocalIncreasedEvasionRatingPercent4"] = { type = "Prefix", affix = "Wraith's", "(56-67)% increased Evasion Rating", statOrder = { 1433 }, level = 44, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, - ["LocalIncreasedEvasionRatingPercent5"] = { type = "Prefix", affix = "Phantasm's", "(68-79)% increased Evasion Rating", statOrder = { 1433 }, level = 60, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, - ["LocalIncreasedEvasionRatingPercent6"] = { type = "Prefix", affix = "Nightmare's", "(80-91)% increased Evasion Rating", statOrder = { 1433 }, level = 72, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, - ["LocalIncreasedEvasionRatingPercent7"] = { type = "Prefix", affix = "Mirage's", "(92-100)% increased Evasion Rating", statOrder = { 1433 }, level = 84, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, - ["LocalIncreasedEvasionRatingPercent8"] = { type = "Prefix", affix = "Illusion's", "(101-110)% increased Evasion Rating", statOrder = { 1433 }, level = 86, 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, 1000, 1000, 0 }, modTags = { "defences", "evasion" }, }, - ["LocalIncreasedArmourAndEnergyShield1"] = { type = "Prefix", affix = "Infixed", "(15-26)% increased Armour and Energy Shield", statOrder = { 1435 }, level = 3, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, - ["LocalIncreasedArmourAndEnergyShield2"] = { type = "Prefix", affix = "Ingrained", "(27-42)% increased Armour and Energy Shield", statOrder = { 1435 }, level = 19, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, - ["LocalIncreasedArmourAndEnergyShield3"] = { type = "Prefix", affix = "Instilled", "(43-55)% increased Armour and Energy Shield", statOrder = { 1435 }, level = 30, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, - ["LocalIncreasedArmourAndEnergyShield4"] = { type = "Prefix", affix = "Infused", "(56-67)% increased Armour and Energy Shield", statOrder = { 1435 }, level = 44, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, - ["LocalIncreasedArmourAndEnergyShield5"] = { type = "Prefix", affix = "Inculcated", "(68-79)% increased Armour and Energy Shield", statOrder = { 1435 }, level = 60, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, - ["LocalIncreasedArmourAndEnergyShield6"] = { type = "Prefix", affix = "Interpolated", "(80-91)% increased Armour and Energy Shield", statOrder = { 1435 }, level = 72, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, - ["LocalIncreasedArmourAndEnergyShield7"] = { type = "Prefix", affix = "Inspired", "(92-100)% increased Armour and Energy Shield", statOrder = { 1435 }, level = 84, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, - ["LocalIncreasedArmourAndEnergyShield8"] = { type = "Prefix", affix = "Interpermeated", "(101-110)% increased Armour and Energy Shield", statOrder = { 1435 }, level = 86, 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, 1000, 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, - ["LocalIncreasedArmourAndEvasion1"] = { type = "Prefix", affix = "Scrapper's", "(15-26)% increased Armour and Evasion", statOrder = { 1436 }, level = 3, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, }, - ["LocalIncreasedArmourAndEvasion2"] = { type = "Prefix", affix = "Brawler's", "(27-42)% increased Armour and Evasion", statOrder = { 1436 }, level = 19, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, }, - ["LocalIncreasedArmourAndEvasion3"] = { type = "Prefix", affix = "Fencer's", "(43-55)% increased Armour and Evasion", statOrder = { 1436 }, level = 30, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, }, - ["LocalIncreasedArmourAndEvasion4"] = { type = "Prefix", affix = "Gladiator's", "(56-67)% increased Armour and Evasion", statOrder = { 1436 }, level = 44, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, }, - ["LocalIncreasedArmourAndEvasion5"] = { type = "Prefix", affix = "Duelist's", "(68-79)% increased Armour and Evasion", statOrder = { 1436 }, level = 60, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, }, - ["LocalIncreasedArmourAndEvasion6"] = { type = "Prefix", affix = "Hero's", "(80-91)% increased Armour and Evasion", statOrder = { 1436 }, level = 72, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, }, - ["LocalIncreasedArmourAndEvasion7"] = { type = "Prefix", affix = "Legend's", "(92-100)% increased Armour and Evasion", statOrder = { 1436 }, level = 84, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, }, - ["LocalIncreasedArmourAndEvasion8"] = { type = "Prefix", affix = "Victor's", "(101-110)% increased Armour and Evasion", statOrder = { 1436 }, level = 86, 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, 1000, 1000, 0 }, modTags = { "defences", "armour", "evasion" }, }, - ["LocalIncreasedEvasionAndEnergyShield1"] = { type = "Prefix", affix = "Shadowy", "(15-26)% increased Evasion and Energy Shield", statOrder = { 1437 }, level = 3, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, - ["LocalIncreasedEvasionAndEnergyShield2"] = { type = "Prefix", affix = "Ethereal", "(27-42)% increased Evasion and Energy Shield", statOrder = { 1437 }, level = 19, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, - ["LocalIncreasedEvasionAndEnergyShield3"] = { type = "Prefix", affix = "Unworldly", "(43-55)% increased Evasion and Energy Shield", statOrder = { 1437 }, level = 30, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, - ["LocalIncreasedEvasionAndEnergyShield4"] = { type = "Prefix", affix = "Ephemeral", "(56-67)% increased Evasion and Energy Shield", statOrder = { 1437 }, level = 44, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, - ["LocalIncreasedEvasionAndEnergyShield5_"] = { type = "Prefix", affix = "Evanescent", "(68-79)% increased Evasion and Energy Shield", statOrder = { 1437 }, level = 60, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, - ["LocalIncreasedEvasionAndEnergyShield6"] = { type = "Prefix", affix = "Unreal", "(80-91)% increased Evasion and Energy Shield", statOrder = { 1437 }, level = 72, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, - ["LocalIncreasedEvasionAndEnergyShield7"] = { type = "Prefix", affix = "Illusory", "(92-100)% increased Evasion and Energy Shield", statOrder = { 1437 }, level = 84, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, - ["LocalIncreasedEvasionAndEnergyShield8"] = { type = "Prefix", affix = "Incorporeal", "(101-110)% increased Evasion and Energy Shield", statOrder = { 1437 }, level = 86, 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, 1000, 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, - ["LocalIncreasedArmourEvasionEnergyShield1"] = { type = "Prefix", affix = "Shadowy", "(27-42)% increased Armour, Evasion and Energy Shield", statOrder = { 1438 }, level = 3, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, }, - ["LocalIncreasedArmourEvasionEnergyShield2"] = { type = "Prefix", affix = "Ethereal", "(43-55)% increased Armour, Evasion and Energy Shield", statOrder = { 1438 }, level = 19, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, }, - ["LocalIncreasedArmourEvasionEnergyShield3"] = { type = "Prefix", affix = "Unworldly", "(56-67)% increased Armour, Evasion and Energy Shield", statOrder = { 1438 }, level = 30, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, }, - ["LocalIncreasedArmourEvasionEnergyShield4"] = { type = "Prefix", affix = "Ephemeral", "(68-79)% increased Armour, Evasion and Energy Shield", statOrder = { 1438 }, level = 44, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, }, - ["LocalIncreasedArmourEvasionEnergyShield5"] = { type = "Prefix", affix = "Evanescent", "(80-91)% increased Armour, Evasion and Energy Shield", statOrder = { 1438 }, level = 60, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, }, - ["LocalIncreasedArmourEvasionEnergyShield6"] = { type = "Prefix", affix = "Unreal", "(92-100)% increased Armour, Evasion and Energy Shield", statOrder = { 1438 }, level = 72, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, }, - ["LocalIncreasedArmourEvasionEnergyShield7__"] = { type = "Prefix", affix = "Incorporeal", "(101-110)% increased Armour, Evasion and Energy Shield", statOrder = { 1438 }, level = 85, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "int_armour", "str_int_armour", "dex_armour", "str_armour", "str_dex_armour", "dex_int_armour", "body_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, }, - ["LocalIncreasedEnergyShieldPercentAndStunRecovery1"] = { type = "Prefix", affix = "Pixie's", "(6-13)% increased Energy Shield", "(6-7)% increased Stun and Block Recovery", statOrder = { 1442, 1781 }, level = 3, group = "LocalEnergyShieldAndStunRecoveryPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["LocalIncreasedEnergyShieldPercentAndStunRecovery2"] = { type = "Prefix", affix = "Gremlin's", "(14-20)% increased Energy Shield", "(8-9)% increased Stun and Block Recovery", statOrder = { 1442, 1781 }, level = 18, group = "LocalEnergyShieldAndStunRecoveryPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["LocalIncreasedEnergyShieldPercentAndStunRecovery3"] = { type = "Prefix", affix = "Boggart's", "(21-26)% increased Energy Shield", "(10-11)% increased Stun and Block Recovery", statOrder = { 1442, 1781 }, level = 30, group = "LocalEnergyShieldAndStunRecoveryPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["LocalIncreasedEnergyShieldPercentAndStunRecovery4"] = { type = "Prefix", affix = "Naga's", "(27-32)% increased Energy Shield", "(12-13)% increased Stun and Block Recovery", statOrder = { 1442, 1781 }, level = 44, group = "LocalEnergyShieldAndStunRecoveryPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["LocalIncreasedEnergyShieldPercentAndStunRecovery5"] = { type = "Prefix", affix = "Djinn's", "(33-38)% increased Energy Shield", "(14-15)% increased Stun and Block Recovery", statOrder = { 1442, 1781 }, level = 60, group = "LocalEnergyShieldAndStunRecoveryPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["LocalIncreasedEnergyShieldPercentAndStunRecovery6"] = { type = "Prefix", affix = "Seraphim's", "(39-42)% increased Energy Shield", "(16-17)% increased Stun and Block Recovery", statOrder = { 1442, 1781 }, level = 78, group = "LocalEnergyShieldAndStunRecoveryPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentAndStunRecovery1"] = { type = "Prefix", affix = "Beetle's", "(6-13)% increased Armour", "(6-7)% increased Stun and Block Recovery", statOrder = { 1425, 1781 }, level = 1, group = "LocalPhysicalDamageReductionRatingAndStunRecoveryPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentAndStunRecovery2"] = { type = "Prefix", affix = "Crab's", "(14-20)% increased Armour", "(8-9)% increased Stun and Block Recovery", statOrder = { 1425, 1781 }, level = 17, group = "LocalPhysicalDamageReductionRatingAndStunRecoveryPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentAndStunRecovery3"] = { type = "Prefix", affix = "Armadillo's", "(21-26)% increased Armour", "(10-11)% increased Stun and Block Recovery", statOrder = { 1425, 1781 }, level = 29, group = "LocalPhysicalDamageReductionRatingAndStunRecoveryPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentAndStunRecovery4"] = { type = "Prefix", affix = "Rhino's", "(27-32)% increased Armour", "(12-13)% increased Stun and Block Recovery", statOrder = { 1425, 1781 }, level = 42, group = "LocalPhysicalDamageReductionRatingAndStunRecoveryPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentAndStunRecovery5"] = { type = "Prefix", affix = "Elephant's", "(33-38)% increased Armour", "(14-15)% increased Stun and Block Recovery", statOrder = { 1425, 1781 }, level = 60, group = "LocalPhysicalDamageReductionRatingAndStunRecoveryPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentAndStunRecovery6"] = { type = "Prefix", affix = "Mammoth's", "(39-42)% increased Armour", "(16-17)% increased Stun and Block Recovery", statOrder = { 1425, 1781 }, level = 78, group = "LocalPhysicalDamageReductionRatingAndStunRecoveryPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentAndAdditionalBlockChance1"] = { type = "Prefix", affix = "Reliable", "(25-30)% increased Armour", "+2% Chance to Block", statOrder = { 1425, 2126 }, level = 45, group = "LocalPhysicalDamageReductionRatingPercentAndBlockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "defences", "armour" }, }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentAndAdditionalBlockChance2"] = { type = "Prefix", affix = "Unfailing", "(31-36)% increased Armour", "+3% Chance to Block", statOrder = { 1425, 2126 }, level = 78, group = "LocalPhysicalDamageReductionRatingPercentAndBlockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "defences", "armour" }, }, - ["LocalIncreasedEvasionRatingPercentAndStunRecovery1"] = { type = "Prefix", affix = "Mosquito's", "(6-13)% increased Evasion Rating", "(6-7)% increased Stun and Block Recovery", statOrder = { 1433, 1781 }, level = 2, group = "LocalEvasionRatingAndStunRecoveryIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, - ["LocalIncreasedEvasionRatingPercentAndStunRecovery2"] = { type = "Prefix", affix = "Moth's", "(14-20)% increased Evasion Rating", "(8-9)% increased Stun and Block Recovery", statOrder = { 1433, 1781 }, level = 19, group = "LocalEvasionRatingAndStunRecoveryIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, - ["LocalIncreasedEvasionRatingPercentAndStunRecovery3"] = { type = "Prefix", affix = "Butterfly's", "(21-26)% increased Evasion Rating", "(10-11)% increased Stun and Block Recovery", statOrder = { 1433, 1781 }, level = 30, group = "LocalEvasionRatingAndStunRecoveryIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, - ["LocalIncreasedEvasionRatingPercentAndStunRecovery4"] = { type = "Prefix", affix = "Wasp's", "(27-32)% increased Evasion Rating", "(12-13)% increased Stun and Block Recovery", statOrder = { 1433, 1781 }, level = 44, group = "LocalEvasionRatingAndStunRecoveryIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, - ["LocalIncreasedEvasionRatingPercentAndStunRecovery5"] = { type = "Prefix", affix = "Dragonfly's", "(33-38)% increased Evasion Rating", "(14-15)% increased Stun and Block Recovery", statOrder = { 1433, 1781 }, level = 60, group = "LocalEvasionRatingAndStunRecoveryIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, - ["LocalIncreasedEvasionRatingPercentAndStunRecovery6"] = { type = "Prefix", affix = "Hummingbird's", "(39-42)% increased Evasion Rating", "(16-17)% increased Stun and Block Recovery", statOrder = { 1433, 1781 }, level = 78, group = "LocalEvasionRatingAndStunRecoveryIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, - ["LocalIncreasedArmourAndEnergyShieldAndStunRecovery1"] = { type = "Prefix", affix = "Pixie's", "(6-13)% increased Armour and Energy Shield", "(6-7)% increased Stun and Block Recovery", statOrder = { 1435, 1781 }, level = 2, group = "LocalArmourAndEnergyShieldAndStunRecovery", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, - ["LocalIncreasedArmourAndEnergyShieldAndStunRecovery2"] = { type = "Prefix", affix = "Gremlin's", "(14-20)% increased Armour and Energy Shield", "(8-9)% increased Stun and Block Recovery", statOrder = { 1435, 1781 }, level = 19, group = "LocalArmourAndEnergyShieldAndStunRecovery", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, - ["LocalIncreasedArmourAndEnergyShieldAndStunRecovery3"] = { type = "Prefix", affix = "Boggart's", "(21-26)% increased Armour and Energy Shield", "(10-11)% increased Stun and Block Recovery", statOrder = { 1435, 1781 }, level = 30, group = "LocalArmourAndEnergyShieldAndStunRecovery", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, - ["LocalIncreasedArmourAndEnergyShieldAndStunRecovery4"] = { type = "Prefix", affix = "Naga's", "(27-32)% increased Armour and Energy Shield", "(12-13)% increased Stun and Block Recovery", statOrder = { 1435, 1781 }, level = 44, group = "LocalArmourAndEnergyShieldAndStunRecovery", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, - ["LocalIncreasedArmourAndEnergyShieldAndStunRecovery5"] = { type = "Prefix", affix = "Djinn's", "(33-38)% increased Armour and Energy Shield", "(14-15)% increased Stun and Block Recovery", statOrder = { 1435, 1781 }, level = 60, group = "LocalArmourAndEnergyShieldAndStunRecovery", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, - ["LocalIncreasedArmourAndEnergyShieldAndStunRecovery6"] = { type = "Prefix", affix = "Seraphim's", "(39-42)% increased Armour and Energy Shield", "(16-17)% increased Stun and Block Recovery", statOrder = { 1435, 1781 }, level = 78, group = "LocalArmourAndEnergyShieldAndStunRecovery", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, - ["LocalIncreasedArmourAndEvasionAndStunRecovery1"] = { type = "Prefix", affix = "Beetle's", "(6-13)% increased Armour and Evasion", "(6-7)% increased Stun and Block Recovery", statOrder = { 1436, 1781 }, level = 2, group = "LocalArmourAndEvasionAndStunRecovery", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, }, - ["LocalIncreasedArmourAndEvasionAndStunRecovery2"] = { type = "Prefix", affix = "Crab's", "(14-20)% increased Armour and Evasion", "(8-9)% increased Stun and Block Recovery", statOrder = { 1436, 1781 }, level = 19, group = "LocalArmourAndEvasionAndStunRecovery", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, }, - ["LocalIncreasedArmourAndEvasionAndStunRecovery3"] = { type = "Prefix", affix = "Armadillo's", "(21-26)% increased Armour and Evasion", "(10-11)% increased Stun and Block Recovery", statOrder = { 1436, 1781 }, level = 30, group = "LocalArmourAndEvasionAndStunRecovery", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, }, - ["LocalIncreasedArmourAndEvasionAndStunRecovery4"] = { type = "Prefix", affix = "Rhino's", "(27-32)% increased Armour and Evasion", "(12-13)% increased Stun and Block Recovery", statOrder = { 1436, 1781 }, level = 44, group = "LocalArmourAndEvasionAndStunRecovery", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, }, - ["LocalIncreasedArmourAndEvasionAndStunRecovery5"] = { type = "Prefix", affix = "Elephant's", "(33-38)% increased Armour and Evasion", "(14-15)% increased Stun and Block Recovery", statOrder = { 1436, 1781 }, level = 60, group = "LocalArmourAndEvasionAndStunRecovery", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, }, - ["LocalIncreasedArmourAndEvasionAndStunRecovery6"] = { type = "Prefix", affix = "Mammoth's", "(39-42)% increased Armour and Evasion", "(16-17)% increased Stun and Block Recovery", statOrder = { 1436, 1781 }, level = 78, group = "LocalArmourAndEvasionAndStunRecovery", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, }, - ["LocalIncreasedEvasionAndEnergyShieldAndStunRecovery1"] = { type = "Prefix", affix = "Mosquito's", "(6-13)% increased Evasion and Energy Shield", "(6-7)% increased Stun and Block Recovery", statOrder = { 1437, 1781 }, level = 2, group = "LocalEvasionAndEnergyShieldAndStunRecovery", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, - ["LocalIncreasedEvasionAndEnergyShieldAndStunRecovery2"] = { type = "Prefix", affix = "Moth's", "(14-20)% increased Evasion and Energy Shield", "(8-9)% increased Stun and Block Recovery", statOrder = { 1437, 1781 }, level = 19, group = "LocalEvasionAndEnergyShieldAndStunRecovery", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, - ["LocalIncreasedEvasionAndEnergyShieldAndStunRecovery3"] = { type = "Prefix", affix = "Butterfly's", "(21-26)% increased Evasion and Energy Shield", "(10-11)% increased Stun and Block Recovery", statOrder = { 1437, 1781 }, level = 30, group = "LocalEvasionAndEnergyShieldAndStunRecovery", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, - ["LocalIncreasedEvasionAndEnergyShieldAndStunRecovery4"] = { type = "Prefix", affix = "Wasp's", "(27-32)% increased Evasion and Energy Shield", "(12-13)% increased Stun and Block Recovery", statOrder = { 1437, 1781 }, level = 44, group = "LocalEvasionAndEnergyShieldAndStunRecovery", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, - ["LocalIncreasedEvasionAndEnergyShieldAndStunRecovery5"] = { type = "Prefix", affix = "Dragonfly's", "(33-38)% increased Evasion and Energy Shield", "(14-15)% increased Stun and Block Recovery", statOrder = { 1437, 1781 }, level = 60, group = "LocalEvasionAndEnergyShieldAndStunRecovery", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, - ["LocalIncreasedEvasionAndEnergyShieldAndStunRecovery6"] = { type = "Prefix", affix = "Hummingbird's", "(39-42)% increased Evasion and Energy Shield", "(16-17)% increased Stun and Block Recovery", statOrder = { 1437, 1781 }, level = 78, group = "LocalEvasionAndEnergyShieldAndStunRecovery", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, - ["LocalIncreasedArmourEvasionEnergyShieldStunRecovery1"] = { type = "Prefix", affix = "Mosquito's", "(6-13)% increased Armour, Evasion and Energy Shield", "(6-7)% increased Stun and Block Recovery", statOrder = { 1438, 1781 }, level = 2, group = "LocalArmourAndEvasionAndEnergyShieldAndStunRecovery", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, }, - ["LocalIncreasedArmourEvasionEnergyShieldStunRecovery2"] = { type = "Prefix", affix = "Moth's", "(14-20)% increased Armour, Evasion and Energy Shield", "(8-9)% increased Stun and Block Recovery", statOrder = { 1438, 1781 }, level = 19, group = "LocalArmourAndEvasionAndEnergyShieldAndStunRecovery", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, }, - ["LocalIncreasedArmourEvasionEnergyShieldStunRecovery3"] = { type = "Prefix", affix = "Butterfly's", "(21-26)% increased Armour, Evasion and Energy Shield", "(10-11)% increased Stun and Block Recovery", statOrder = { 1438, 1781 }, level = 30, group = "LocalArmourAndEvasionAndEnergyShieldAndStunRecovery", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, }, - ["LocalIncreasedArmourEvasionEnergyShieldStunRecovery4"] = { type = "Prefix", affix = "Wasp's", "(27-32)% increased Armour, Evasion and Energy Shield", "(12-13)% increased Stun and Block Recovery", statOrder = { 1438, 1781 }, level = 44, group = "LocalArmourAndEvasionAndEnergyShieldAndStunRecovery", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, }, - ["LocalIncreasedArmourEvasionEnergyShieldStunRecovery5"] = { type = "Prefix", affix = "Dragonfly's", "(33-38)% increased Armour, Evasion and Energy Shield", "(14-15)% increased Stun and Block Recovery", statOrder = { 1438, 1781 }, level = 60, group = "LocalArmourAndEvasionAndEnergyShieldAndStunRecovery", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, }, - ["LocalIncreasedArmourEvasionEnergyShieldStunRecovery6"] = { type = "Prefix", affix = "Hummingbird's", "(39-42)% increased Armour, Evasion and Energy Shield", "(16-17)% increased Stun and Block Recovery", statOrder = { 1438, 1781 }, level = 78, group = "LocalArmourAndEvasionAndEnergyShieldAndStunRecovery", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, }, - ["LocalAddedFireDamage1"] = { type = "Prefix", affix = "Heated", "Adds (1-2) to (3-4) Fire Damage", statOrder = { 1246 }, level = 1, group = "LocalFireDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["LocalAddedFireDamage2"] = { type = "Prefix", affix = "Smouldering", "Adds (8-10) to (15-18) Fire Damage", statOrder = { 1246 }, level = 11, group = "LocalFireDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["LocalAddedFireDamage3"] = { type = "Prefix", affix = "Smoking", "Adds (12-17) to (25-29) Fire Damage", statOrder = { 1246 }, level = 18, group = "LocalFireDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["LocalAddedFireDamage4"] = { type = "Prefix", affix = "Burning", "Adds (17-24) to (35-41) Fire Damage", statOrder = { 1246 }, level = 26, group = "LocalFireDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["LocalAddedFireDamage5"] = { type = "Prefix", affix = "Flaming", "Adds (24-33) to (49-57) Fire Damage", statOrder = { 1246 }, level = 33, group = "LocalFireDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["LocalAddedFireDamage6"] = { type = "Prefix", affix = "Scorching", "Adds (34-46) to (68-80) Fire Damage", statOrder = { 1246 }, level = 42, group = "LocalFireDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["LocalAddedFireDamage7"] = { type = "Prefix", affix = "Incinerating", "Adds (46-62) to (93-107) Fire Damage", statOrder = { 1246 }, level = 51, group = "LocalFireDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["LocalAddedFireDamage8"] = { type = "Prefix", affix = "Blasting", "Adds (59-81) to (120-140) Fire Damage", statOrder = { 1246 }, level = 62, group = "LocalFireDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 1600, 960, 960, 640, 400, 400, 960, 960, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["LocalAddedFireDamage9"] = { type = "Prefix", affix = "Cremating", "Adds (74-101) to (150-175) Fire Damage", statOrder = { 1246 }, level = 74, group = "LocalFireDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 700, 420, 420, 280, 175, 175, 420, 420, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["LocalAddedFireDamage10_"] = { type = "Prefix", affix = "Carbonising", "Adds (89-121) to (180-210) Fire Damage", statOrder = { 1246 }, level = 82, group = "LocalFireDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 180, 108, 108, 72, 45, 45, 108, 108, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["LocalAddedFireDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (80-109) to (162-189) Fire Damage", statOrder = { 1246 }, level = 82, group = "LocalFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["LocalAddedFireDamageEnhancedMod_"] = { type = "Prefix", affix = "Topotante's", "Adds (59-79) to (118-138) Fire Damage", "Attacks with this Weapon Penetrate (13-15)% Fire Resistance", statOrder = { 1246, 3625 }, level = 1, group = "LocalFireDamageAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["LocalAddedFireDamageTwoHand1"] = { type = "Prefix", affix = "Heated", "Adds (3-5) to (6-7) Fire Damage", statOrder = { 1246 }, level = 1, group = "LocalFireDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["LocalAddedFireDamageTwoHand2"] = { type = "Prefix", affix = "Smouldering", "Adds (14-20) to (29-33) Fire Damage", statOrder = { 1246 }, level = 11, group = "LocalFireDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["LocalAddedFireDamageTwoHand3"] = { type = "Prefix", affix = "Smoking", "Adds (23-31) to (47-54) Fire Damage", statOrder = { 1246 }, level = 18, group = "LocalFireDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["LocalAddedFireDamageTwoHand4"] = { type = "Prefix", affix = "Burning", "Adds (32-44) to (65-76) Fire Damage", statOrder = { 1246 }, level = 26, group = "LocalFireDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["LocalAddedFireDamageTwoHand5"] = { type = "Prefix", affix = "Flaming", "Adds (45-61) to (91-106) Fire Damage", statOrder = { 1246 }, level = 33, group = "LocalFireDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["LocalAddedFireDamageTwoHand6"] = { type = "Prefix", affix = "Scorching", "Adds (63-85) to (128-148) Fire Damage", statOrder = { 1246 }, level = 42, group = "LocalFireDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["LocalAddedFireDamageTwoHand7"] = { type = "Prefix", affix = "Incinerating", "Adds (85-115) to (172-200) Fire Damage", statOrder = { 1246 }, level = 51, group = "LocalFireDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["LocalAddedFireDamageTwoHand8_"] = { type = "Prefix", affix = "Blasting", "Adds (110-150) to (223-260) Fire Damage", statOrder = { 1246 }, level = 62, group = "LocalFireDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1120, 960, 960, 400, 480, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["LocalAddedFireDamageTwoHand9"] = { type = "Prefix", affix = "Cremating", "Adds (137-188) to (279-325) Fire Damage", statOrder = { 1246 }, level = 74, group = "LocalFireDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 490, 420, 420, 175, 210, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["LocalAddedFireDamageTwoHand10"] = { type = "Prefix", affix = "Carbonising", "Adds (165-225) to (335-390) Fire Damage", statOrder = { 1246 }, level = 82, group = "LocalFireDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 126, 108, 108, 45, 54, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["LocalAddedFireDamageRanged1"] = { type = "Prefix", affix = "Heated", "Adds (3-5) to (6-7) Fire Damage", statOrder = { 1246 }, level = 1, group = "LocalFireDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["LocalAddedFireDamageRanged2"] = { type = "Prefix", affix = "Smouldering", "Adds (14-20) to (29-33) Fire Damage", statOrder = { 1246 }, level = 11, group = "LocalFireDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["LocalAddedFireDamageRanged3"] = { type = "Prefix", affix = "Smoking", "Adds (23-31) to (47-54) Fire Damage", statOrder = { 1246 }, level = 18, group = "LocalFireDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["LocalAddedFireDamageRanged4"] = { type = "Prefix", affix = "Burning", "Adds (32-44) to (65-76) Fire Damage", statOrder = { 1246 }, level = 26, group = "LocalFireDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["LocalAddedFireDamageRanged5"] = { type = "Prefix", affix = "Flaming", "Adds (45-61) to (91-106) Fire Damage", statOrder = { 1246 }, level = 33, group = "LocalFireDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["LocalAddedFireDamageRanged6"] = { type = "Prefix", affix = "Scorching", "Adds (63-85) to (128-148) Fire Damage", statOrder = { 1246 }, level = 42, group = "LocalFireDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["LocalAddedFireDamageRanged7"] = { type = "Prefix", affix = "Incinerating", "Adds (85-115) to (172-200) Fire Damage", statOrder = { 1246 }, level = 51, group = "LocalFireDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["LocalAddedFireDamageRanged8"] = { type = "Prefix", affix = "Blasting", "Adds (110-150) to (223-260) Fire Damage", statOrder = { 1246 }, level = 62, group = "LocalFireDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["LocalAddedFireDamageRanged9_"] = { type = "Prefix", affix = "Cremating", "Adds (137-188) to (279-325) Fire Damage", statOrder = { 1246 }, level = 74, group = "LocalFireDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["LocalAddedFireDamageRanged10"] = { type = "Prefix", affix = "Carbonising", "Adds (165-225) to (335-390) Fire Damage", statOrder = { 1246 }, level = 82, group = "LocalFireDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["LocalAddedFireDamageTwoHandEssence7"] = { type = "Prefix", affix = "Essences", "Adds (149-203) to (302-351) Fire Damage", statOrder = { 1246 }, level = 82, group = "LocalFireDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["LocalAddedFireDamageEnhancedTwoHandMod"] = { type = "Prefix", affix = "Topotante's", "Adds (109-147) to (220-256) Fire Damage", "Attacks with this Weapon Penetrate (13-15)% Fire Resistance", statOrder = { 1246, 3625 }, level = 1, group = "LocalFireDamageTwoHandAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["LocalAddedColdDamage1"] = { type = "Prefix", affix = "Frosted", "Adds (1-2) to (3-4) Cold Damage", statOrder = { 1255 }, level = 2, group = "LocalColdDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["LocalAddedColdDamage2"] = { type = "Prefix", affix = "Chilled", "Adds (7-9) to (14-16) Cold Damage", statOrder = { 1255 }, level = 12, group = "LocalColdDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["LocalAddedColdDamage3"] = { type = "Prefix", affix = "Icy", "Adds (11-15) to (23-26) Cold Damage", statOrder = { 1255 }, level = 19, group = "LocalColdDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["LocalAddedColdDamage4"] = { type = "Prefix", affix = "Frigid", "Adds (16-21) to (31-37) Cold Damage", statOrder = { 1255 }, level = 27, group = "LocalColdDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["LocalAddedColdDamage5"] = { type = "Prefix", affix = "Freezing", "Adds (22-30) to (44-51) Cold Damage", statOrder = { 1255 }, level = 34, group = "LocalColdDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["LocalAddedColdDamage6"] = { type = "Prefix", affix = "Frozen", "Adds (31-42) to (62-71) Cold Damage", statOrder = { 1255 }, level = 43, group = "LocalColdDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["LocalAddedColdDamage7"] = { type = "Prefix", affix = "Glaciated", "Adds (41-57) to (83-97) Cold Damage", statOrder = { 1255 }, level = 52, group = "LocalColdDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["LocalAddedColdDamage8"] = { type = "Prefix", affix = "Polar", "Adds (54-74) to (108-126) Cold Damage", statOrder = { 1255 }, level = 63, group = "LocalColdDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 1600, 960, 960, 640, 400, 400, 960, 960, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["LocalAddedColdDamage9"] = { type = "Prefix", affix = "Entombing", "Adds (68-92) to (136-157) Cold Damage", statOrder = { 1255 }, level = 75, group = "LocalColdDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 700, 420, 420, 280, 175, 175, 420, 420, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["LocalAddedColdDamage10__"] = { type = "Prefix", affix = "Crystalising", "Adds (81-111) to (163-189) Cold Damage", statOrder = { 1255 }, level = 82, group = "LocalColdDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 180, 108, 108, 72, 45, 45, 108, 108, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["LocalAddedColdDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (73-100) to (147-170) Cold Damage", statOrder = { 1255 }, level = 82, group = "LocalColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["LocalAddedColdDamageEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "Adds (53-72) to (107-124) Cold Damage", "Attacks with this Weapon Penetrate (13-15)% Cold Resistance", statOrder = { 1255, 3626 }, level = 1, group = "LocalColdDamageAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["LocalAddedColdDamageTwoHand1"] = { type = "Prefix", affix = "Frosted", "Adds (2-3) to (6-7) Cold Damage", statOrder = { 1255 }, level = 2, group = "LocalColdDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["LocalAddedColdDamageTwoHand2"] = { type = "Prefix", affix = "Chilled", "Adds (12-17) to (26-30) Cold Damage", statOrder = { 1255 }, level = 12, group = "LocalColdDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["LocalAddedColdDamageTwoHand3"] = { type = "Prefix", affix = "Icy", "Adds (21-28) to (42-48) Cold Damage", statOrder = { 1255 }, level = 19, group = "LocalColdDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["LocalAddedColdDamageTwoHand4"] = { type = "Prefix", affix = "Frigid", "Adds (29-40) to (58-68) Cold Damage", statOrder = { 1255 }, level = 27, group = "LocalColdDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["LocalAddedColdDamageTwoHand5"] = { type = "Prefix", affix = "Freezing", "Adds (41-55) to (81-95) Cold Damage", statOrder = { 1255 }, level = 34, group = "LocalColdDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["LocalAddedColdDamageTwoHand6"] = { type = "Prefix", affix = "Frozen", "Adds (57-77) to (114-132) Cold Damage", statOrder = { 1255 }, level = 43, group = "LocalColdDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["LocalAddedColdDamageTwoHand7"] = { type = "Prefix", affix = "Glaciated", "Adds (77-104) to (154-178) Cold Damage", statOrder = { 1255 }, level = 52, group = "LocalColdDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["LocalAddedColdDamageTwoHand8"] = { type = "Prefix", affix = "Polar", "Adds (99-136) to (200-232) Cold Damage", statOrder = { 1255 }, level = 63, group = "LocalColdDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1120, 960, 960, 400, 480, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["LocalAddedColdDamageTwoHand9"] = { type = "Prefix", affix = "Entombing", "Adds (124-170) to (250-290) Cold Damage", statOrder = { 1255 }, level = 75, group = "LocalColdDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 490, 420, 420, 175, 210, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["LocalAddedColdDamageTwoHand10"] = { type = "Prefix", affix = "Crystalising", "Adds (149-204) to (300-348) Cold Damage", statOrder = { 1255 }, level = 82, group = "LocalColdDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 126, 108, 108, 45, 54, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["LocalAddedColdDamageRanged1"] = { type = "Prefix", affix = "Frosted", "Adds (2-3) to (6-7) Cold Damage", statOrder = { 1255 }, level = 2, group = "LocalColdDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["LocalAddedColdDamageRanged2"] = { type = "Prefix", affix = "Chilled", "Adds (12-17) to (26-30) Cold Damage", statOrder = { 1255 }, level = 12, group = "LocalColdDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["LocalAddedColdDamageRanged3"] = { type = "Prefix", affix = "Icy", "Adds (21-28) to (42-48) Cold Damage", statOrder = { 1255 }, level = 19, group = "LocalColdDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["LocalAddedColdDamageRanged4"] = { type = "Prefix", affix = "Frigid", "Adds (29-40) to (58-68) Cold Damage", statOrder = { 1255 }, level = 27, group = "LocalColdDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["LocalAddedColdDamageRanged5"] = { type = "Prefix", affix = "Freezing", "Adds (41-55) to (81-95) Cold Damage", statOrder = { 1255 }, level = 34, group = "LocalColdDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["LocalAddedColdDamageRanged6"] = { type = "Prefix", affix = "Frozen", "Adds (57-77) to (114-132) Cold Damage", statOrder = { 1255 }, level = 43, group = "LocalColdDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["LocalAddedColdDamageRanged7"] = { type = "Prefix", affix = "Glaciated", "Adds (77-104) to (154-178) Cold Damage", statOrder = { 1255 }, level = 52, group = "LocalColdDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["LocalAddedColdDamageRanged8"] = { type = "Prefix", affix = "Polar", "Adds (99-136) to (200-232) Cold Damage", statOrder = { 1255 }, level = 63, group = "LocalColdDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["LocalAddedColdDamageRanged9"] = { type = "Prefix", affix = "Entombing", "Adds (124-170) to (250-290) Cold Damage", statOrder = { 1255 }, level = 75, group = "LocalColdDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["LocalAddedColdDamageRanged10"] = { type = "Prefix", affix = "Crystalising", "Adds (149-204) to (300-348) Cold Damage", statOrder = { 1255 }, level = 82, group = "LocalColdDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["LocalAddedColdDamageTwoHandEssence7"] = { type = "Prefix", affix = "Essences", "Adds (134-184) to (270-313) Cold Damage", statOrder = { 1255 }, level = 82, group = "LocalColdDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["LocalAddedColdDamageEnhancedTwoHandMod"] = { type = "Prefix", affix = "Topotante's", "Adds (100-132) to (197-230) Cold Damage", "Attacks with this Weapon Penetrate (13-15)% Cold Resistance", statOrder = { 1255, 3626 }, level = 1, group = "LocalColdDamageTwoHandAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["LocalAddedLightningDamage1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (5-6) Lightning Damage", statOrder = { 1266 }, level = 3, group = "LocalLightningDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["LocalAddedLightningDamage2"] = { type = "Prefix", affix = "Buzzing", "Adds 2 to (25-29) Lightning Damage", statOrder = { 1266 }, level = 13, group = "LocalLightningDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["LocalAddedLightningDamage3"] = { type = "Prefix", affix = "Snapping", "Adds 2 to (41-48) Lightning Damage", statOrder = { 1266 }, level = 19, group = "LocalLightningDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["LocalAddedLightningDamage4"] = { type = "Prefix", affix = "Crackling", "Adds 3 to (57-67) Lightning Damage", statOrder = { 1266 }, level = 31, group = "LocalLightningDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["LocalAddedLightningDamage5"] = { type = "Prefix", affix = "Sparking", "Adds (4-5) to (80-94) Lightning Damage", statOrder = { 1266 }, level = 34, group = "LocalLightningDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["LocalAddedLightningDamage6"] = { type = "Prefix", affix = "Arcing", "Adds (5-8) to (112-131) Lightning Damage", statOrder = { 1266 }, level = 42, group = "LocalLightningDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["LocalAddedLightningDamage7"] = { type = "Prefix", affix = "Shocking", "Adds (8-10) to (152-176) Lightning Damage", statOrder = { 1266 }, level = 51, group = "LocalLightningDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["LocalAddedLightningDamage8"] = { type = "Prefix", affix = "Discharging", "Adds (10-14) to (197-229) Lightning Damage", statOrder = { 1266 }, level = 63, group = "LocalLightningDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 1600, 960, 960, 640, 400, 400, 960, 960, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["LocalAddedLightningDamage9"] = { type = "Prefix", affix = "Electrocuting", "Adds (13-17) to (247-286) Lightning Damage", statOrder = { 1266 }, level = 74, group = "LocalLightningDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 700, 420, 420, 280, 175, 175, 420, 420, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["LocalAddedLightningDamage10"] = { type = "Prefix", affix = "Vapourising", "Adds (15-21) to (296-344) Lightning Damage", statOrder = { 1266 }, level = 82, group = "LocalLightningDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 180, 108, 108, 72, 45, 45, 108, 108, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["LocalAddedLightningDamageEssence7_"] = { type = "Prefix", affix = "Essences", "Adds (13-19) to (266-310) Lightning Damage", statOrder = { 1266 }, level = 82, group = "LocalLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["LocalAddedLightningDamageEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "Adds (7-17) to (198-224) Lightning Damage", "Attacks with this Weapon Penetrate (13-15)% Lightning Resistance", statOrder = { 1266, 3627 }, level = 1, group = "LocalLightningDamageAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["LocalAddedLightningDamageTwoHand1_"] = { type = "Prefix", affix = "Humming", "Adds 2 to (10-11) Lightning Damage", statOrder = { 1266 }, level = 3, group = "LocalLightningDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["LocalAddedLightningDamageTwoHand2"] = { type = "Prefix", affix = "Buzzing", "Adds 3 to (46-53) Lightning Damage", statOrder = { 1266 }, level = 13, group = "LocalLightningDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["LocalAddedLightningDamageTwoHand3"] = { type = "Prefix", affix = "Snapping", "Adds (4-5) to (76-88) Lightning Damage", statOrder = { 1266 }, level = 19, group = "LocalLightningDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["LocalAddedLightningDamageTwoHand4"] = { type = "Prefix", affix = "Crackling", "Adds (5-8) to (106-123) Lightning Damage", statOrder = { 1266 }, level = 31, group = "LocalLightningDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["LocalAddedLightningDamageTwoHand5"] = { type = "Prefix", affix = "Sparking", "Adds (8-10) to (148-173) Lightning Damage", statOrder = { 1266 }, level = 34, group = "LocalLightningDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["LocalAddedLightningDamageTwoHand6"] = { type = "Prefix", affix = "Arcing", "Adds (11-14) to (208-242) Lightning Damage", statOrder = { 1266 }, level = 42, group = "LocalLightningDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["LocalAddedLightningDamageTwoHand7"] = { type = "Prefix", affix = "Shocking", "Adds (14-20) to (281-327) Lightning Damage", statOrder = { 1266 }, level = 51, group = "LocalLightningDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["LocalAddedLightningDamageTwoHand8"] = { type = "Prefix", affix = "Discharging", "Adds (19-25) to (366-425) Lightning Damage", statOrder = { 1266 }, level = 63, group = "LocalLightningDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1120, 960, 960, 400, 480, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["LocalAddedLightningDamageTwoHand9"] = { type = "Prefix", affix = "Electrocuting", "Adds (23-32) to (458-531) Lightning Damage", statOrder = { 1266 }, level = 74, group = "LocalLightningDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 490, 420, 420, 175, 210, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["LocalAddedLightningDamageTwoHand10"] = { type = "Prefix", affix = "Vapourising", "Adds (28-38) to (549-638) Lightning Damage", statOrder = { 1266 }, level = 82, group = "LocalLightningDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 126, 108, 108, 45, 54, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["LocalAddedLightningDamageRanged1"] = { type = "Prefix", affix = "Humming", "Adds 2 to (10-11) Lightning Damage", statOrder = { 1266 }, level = 3, group = "LocalLightningDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["LocalAddedLightningDamageRanged2"] = { type = "Prefix", affix = "Buzzing", "Adds 3 to (46-53) Lightning Damage", statOrder = { 1266 }, level = 13, group = "LocalLightningDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["LocalAddedLightningDamageRanged3___"] = { type = "Prefix", affix = "Snapping", "Adds (4-5) to (76-88) Lightning Damage", statOrder = { 1266 }, level = 19, group = "LocalLightningDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["LocalAddedLightningDamageRanged4"] = { type = "Prefix", affix = "Crackling", "Adds (5-8) to (106-123) Lightning Damage", statOrder = { 1266 }, level = 31, group = "LocalLightningDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["LocalAddedLightningDamageRanged5"] = { type = "Prefix", affix = "Sparking", "Adds (8-10) to (148-173) Lightning Damage", statOrder = { 1266 }, level = 34, group = "LocalLightningDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["LocalAddedLightningDamageRanged6_"] = { type = "Prefix", affix = "Arcing", "Adds (11-14) to (208-242) Lightning Damage", statOrder = { 1266 }, level = 42, group = "LocalLightningDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["LocalAddedLightningDamageRanged7"] = { type = "Prefix", affix = "Shocking", "Adds (14-20) to (281-327) Lightning Damage", statOrder = { 1266 }, level = 51, group = "LocalLightningDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["LocalAddedLightningDamageRanged8"] = { type = "Prefix", affix = "Discharging", "Adds (19-25) to (366-425) Lightning Damage", statOrder = { 1266 }, level = 63, group = "LocalLightningDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["LocalAddedLightningDamageRanged9"] = { type = "Prefix", affix = "Electrocuting", "Adds (23-32) to (458-531) Lightning Damage", statOrder = { 1266 }, level = 74, group = "LocalLightningDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["LocalAddedLightningDamageRanged10_"] = { type = "Prefix", affix = "Vapourising", "Adds (28-38) to (549-638) Lightning Damage", statOrder = { 1266 }, level = 82, group = "LocalLightningDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["LocalAddedLightningDamageTwoHandEssence7"] = { type = "Prefix", affix = "Essences", "Adds (25-34) to (494-575) Lightning Damage", statOrder = { 1266 }, level = 82, group = "LocalLightningDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["LocalAddedLightningDamageEnhancedTwoHandMod"] = { type = "Prefix", affix = "Topotante's", "Adds (12-31) to (367-415) Lightning Damage", "Attacks with this Weapon Penetrate (13-15)% Lightning Resistance", statOrder = { 1266, 3627 }, level = 1, group = "LocalLightningDamageTwoHandAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["IncreasedPhysicalDamageReductionRatingPercent1"] = { type = "Prefix", affix = "Reinforced", "(4-8)% increased Armour", statOrder = { 1424 }, level = 2, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, - ["IncreasedPhysicalDamageReductionRatingPercent2"] = { type = "Prefix", affix = "Layered", "(9-13)% increased Armour", statOrder = { 1424 }, level = 18, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, - ["IncreasedPhysicalDamageReductionRatingPercent3"] = { type = "Prefix", affix = "Lobstered", "(14-18)% increased Armour", statOrder = { 1424 }, level = 30, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, - ["IncreasedPhysicalDamageReductionRatingPercent4"] = { type = "Prefix", affix = "Buttressed", "(19-23)% increased Armour", statOrder = { 1424 }, level = 42, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, - ["IncreasedPhysicalDamageReductionRatingPercent5"] = { type = "Prefix", affix = "Thickened", "(24-28)% increased Armour", statOrder = { 1424 }, level = 56, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, - ["IncreasedPhysicalDamageReductionRatingPercent6"] = { type = "Prefix", affix = "Girded", "(29-32)% increased Armour", statOrder = { 1424 }, level = 70, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, - ["IncreasedPhysicalDamageReductionRatingPercent7"] = { type = "Prefix", affix = "Impregnable", "(33-36)% increased Armour", statOrder = { 1424 }, level = 77, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, - ["IncreasedPhysicalDamageReductionRatingPercentEssence6"] = { type = "Prefix", affix = "Essences", "(29-31)% increased Armour", statOrder = { 1424 }, level = 77, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, }, - ["IncreasedPhysicalDamageReductionRatingPercentEssence7"] = { type = "Prefix", affix = "Essences", "(32-33)% increased Armour", statOrder = { 1424 }, level = 82, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, }, - ["IncreasedEvasionRatingPercent1"] = { type = "Prefix", affix = "Agile", "(4-8)% increased Evasion Rating", statOrder = { 1432 }, level = 2, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, - ["IncreasedEvasionRatingPercent2"] = { type = "Prefix", affix = "Dancer's", "(9-13)% increased Evasion Rating", statOrder = { 1432 }, level = 19, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, - ["IncreasedEvasionRatingPercent3"] = { type = "Prefix", affix = "Acrobat's", "(14-18)% increased Evasion Rating", statOrder = { 1432 }, level = 30, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, - ["IncreasedEvasionRatingPercent4"] = { type = "Prefix", affix = "Fleet", "(19-23)% increased Evasion Rating", statOrder = { 1432 }, level = 42, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, - ["IncreasedEvasionRatingPercent5"] = { type = "Prefix", affix = "Blurred", "(24-28)% increased Evasion Rating", statOrder = { 1432 }, level = 56, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, - ["IncreasedEvasionRatingPercent6"] = { type = "Prefix", affix = "Phased", "(29-32)% increased Evasion Rating", statOrder = { 1432 }, level = 70, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, - ["IncreasedEvasionRatingPercent7"] = { type = "Prefix", affix = "Vaporous", "(33-36)% increased Evasion Rating", statOrder = { 1432 }, level = 77, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, - ["IncreasedEvasionRatingPercentEssence6"] = { type = "Prefix", affix = "Essences", "(29-31)% increased Evasion Rating", statOrder = { 1432 }, level = 77, group = "GlobalEvasionRatingPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, }, - ["IncreasedEvasionRatingPercentEssence7"] = { type = "Prefix", affix = "Essences", "(32-33)% increased Evasion Rating", statOrder = { 1432 }, level = 82, group = "GlobalEvasionRatingPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, }, - ["IncreasedEnergyShieldPercent1"] = { type = "Prefix", affix = "Protective", "(2-4)% increased maximum Energy Shield", statOrder = { 1443 }, level = 3, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["IncreasedEnergyShieldPercent2"] = { type = "Prefix", affix = "Strong-Willed", "(5-7)% increased maximum Energy Shield", statOrder = { 1443 }, level = 18, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["IncreasedEnergyShieldPercent3"] = { type = "Prefix", affix = "Resolute", "(8-10)% increased maximum Energy Shield", statOrder = { 1443 }, level = 30, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["IncreasedEnergyShieldPercent4"] = { type = "Prefix", affix = "Fearless", "(11-13)% increased maximum Energy Shield", statOrder = { 1443 }, level = 42, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["IncreasedEnergyShieldPercent5"] = { type = "Prefix", affix = "Dauntless", "(14-16)% increased maximum Energy Shield", statOrder = { 1443 }, level = 56, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["IncreasedEnergyShieldPercent6"] = { type = "Prefix", affix = "Indomitable", "(17-19)% increased maximum Energy Shield", statOrder = { 1443 }, level = 70, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["IncreasedEnergyShieldPercent7"] = { type = "Prefix", affix = "Unassailable", "(20-22)% increased maximum Energy Shield", statOrder = { 1443 }, level = 77, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["IncreasedEnergyShieldPercentEssence1"] = { type = "Prefix", affix = "Essences", "(4-6)% increased maximum Energy Shield", statOrder = { 1443 }, level = 10, group = "GlobalEnergyShieldPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, - ["IncreasedEnergyShieldPercentEssence4"] = { type = "Prefix", affix = "Essences", "(11-13)% increased maximum Energy Shield", statOrder = { 1443 }, level = 10, group = "GlobalEnergyShieldPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, - ["IncreasedEnergyShieldPercentEssence5"] = { type = "Prefix", affix = "Essences", "(14-16)% increased maximum Energy Shield", statOrder = { 1443 }, level = 10, group = "GlobalEnergyShieldPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, - ["IncreasedEnergyShieldPercentEssence6"] = { type = "Prefix", affix = "Essences", "(17-18)% increased maximum Energy Shield", statOrder = { 1443 }, level = 77, group = "GlobalEnergyShieldPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, - ["IncreasedEnergyShieldPercentEssence7_"] = { type = "Prefix", affix = "Essences", "(18-19)% increased maximum Energy Shield", statOrder = { 1443 }, level = 82, group = "GlobalEnergyShieldPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, - ["IncreasedEvasionRating1"] = { type = "Prefix", affix = "Agile", "+(3-10) to Evasion Rating", statOrder = { 1427 }, level = 1, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, - ["IncreasedEvasionRating2"] = { type = "Prefix", affix = "Dancer's", "+(11-35) to Evasion Rating", statOrder = { 1427 }, level = 18, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, - ["IncreasedEvasionRating3"] = { type = "Prefix", affix = "Acrobat's", "+(36-60) to Evasion Rating", statOrder = { 1427 }, level = 29, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, - ["IncreasedEvasionRating4"] = { type = "Prefix", affix = "Fleet", "+(61-80) to Evasion Rating", statOrder = { 1427 }, level = 42, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, - ["IncreasedEvasionRating5"] = { type = "Prefix", affix = "Blurred", "+(81-120) to Evasion Rating", statOrder = { 1427 }, level = 58, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, - ["IncreasedEvasionRating6"] = { type = "Prefix", affix = "Phased", "+(121-150) to Evasion Rating", statOrder = { 1427 }, level = 72, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, - ["IncreasedEvasionRating7"] = { type = "Prefix", affix = "Vaporous", "+(151-170) to Evasion Rating", statOrder = { 1427 }, level = 84, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, - ["IncreasedEvasionRatingEssence7"] = { type = "Prefix", affix = "Essences", "+(151-180) to Evasion Rating", statOrder = { 1427 }, level = 82, group = "EvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, }, - ["LocalIncreasedEvasionRating1"] = { type = "Prefix", affix = "Agile", "+(6-12) to Evasion Rating", statOrder = { 1431 }, level = 1, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "evasion" }, }, - ["LocalIncreasedEvasionRating2"] = { type = "Prefix", affix = "Dancer's", "+(13-35) to Evasion Rating", statOrder = { 1431 }, level = 11, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "evasion" }, }, - ["LocalIncreasedEvasionRating3"] = { type = "Prefix", affix = "Acrobat's", "+(36-63) to Evasion Rating", statOrder = { 1431 }, level = 17, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "evasion" }, }, - ["LocalIncreasedEvasionRating4"] = { type = "Prefix", affix = "Fleet", "+(64-82) to Evasion Rating", statOrder = { 1431 }, level = 23, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "evasion" }, }, - ["LocalIncreasedEvasionRating5"] = { type = "Prefix", affix = "Blurred", "+(83-101) to Evasion Rating", statOrder = { 1431 }, level = 29, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "evasion" }, }, - ["LocalIncreasedEvasionRating6"] = { type = "Prefix", affix = "Phased", "+(102-120) to Evasion Rating", statOrder = { 1431 }, level = 35, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "evasion" }, }, - ["LocalIncreasedEvasionRating7_"] = { type = "Prefix", affix = "Vaporous", "+(121-150) to Evasion Rating", statOrder = { 1431 }, level = 43, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "evasion" }, }, - ["LocalIncreasedEvasionRating8"] = { type = "Prefix", affix = "Elusory", "+(151-200) to Evasion Rating", statOrder = { 1431 }, level = 51, group = "LocalEvasionRating", weightKey = { "gloves", "boots", "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 166, 0 }, modTags = { "defences", "evasion" }, }, - ["LocalIncreasedEvasionRating9___"] = { type = "Prefix", affix = "Adroit", "+(201-300) to Evasion Rating", statOrder = { 1431 }, level = 60, group = "LocalEvasionRating", weightKey = { "helmet", "gloves", "boots", "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "evasion" }, }, - ["LocalIncreasedEvasionRating10"] = { type = "Prefix", affix = "Lissome", "+(301-400) to Evasion Rating", statOrder = { 1431 }, level = 69, group = "LocalEvasionRating", weightKey = { "helmet", "gloves", "boots", "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "evasion" }, }, - ["LocalIncreasedEvasionRating11"] = { type = "Prefix", affix = "Fugitive", "+(401-500) to Evasion Rating", statOrder = { 1431 }, level = 77, group = "LocalEvasionRating", weightKey = { "shield", "helmet", "gloves", "boots", "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "evasion" }, }, - ["LocalIncreasedEvasionRatingEssence7"] = { type = "Prefix", affix = "Essences", "+(390-475) to Evasion Rating", statOrder = { 1431 }, level = 82, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, }, - ["LocalIncreasedEvasionRatingEssenceHelm4__"] = { type = "Prefix", affix = "Essences", "+(40-49) to Evasion Rating", statOrder = { 1431 }, level = 42, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, }, - ["LocalIncreasedEvasionRatingEssenceHelm5"] = { type = "Prefix", affix = "Essences", "+(121-140) to Evasion Rating", statOrder = { 1431 }, level = 58, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, }, - ["LocalIncreasedEvasionRatingEssenceHelm6"] = { type = "Prefix", affix = "Essences", "+(141-160) to Evasion Rating", statOrder = { 1431 }, level = 74, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, }, - ["LocalIncreasedEvasionRatingEssenceHelm7"] = { type = "Prefix", affix = "Essences", "+(161-180) to Evasion Rating", statOrder = { 1431 }, level = 82, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, }, - ["LocalIncreasedEvasionRatingEssenceGlovesBoots3"] = { type = "Prefix", affix = "Essences", "+(21-25) to Evasion Rating", statOrder = { 1431 }, level = 26, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, }, - ["LocalIncreasedEvasionRatingEssenceGlovesBoots4"] = { type = "Prefix", affix = "Essences", "+(81-90) to Evasion Rating", statOrder = { 1431 }, level = 42, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, }, - ["LocalIncreasedEvasionRatingEssenceGlovesBoots5"] = { type = "Prefix", affix = "Essences", "+(91-105) to Evasion Rating", statOrder = { 1431 }, level = 58, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, }, - ["LocalIncreasedEvasionRatingEssenceGlovesBoots6"] = { type = "Prefix", affix = "Essences", "+(106-120) to Evasion Rating", statOrder = { 1431 }, level = 74, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, }, - ["LocalIncreasedEvasionRatingEssenceGlovesBoots7"] = { type = "Prefix", affix = "Essences", "+(121-135) to Evasion Rating", statOrder = { 1431 }, level = 82, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, }, - ["LocalIncreasedEvasionRatingEssenceShield5"] = { type = "Prefix", affix = "Essences", "+(151-225) to Evasion Rating", statOrder = { 1431 }, level = 58, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, }, - ["LocalIncreasedEvasionRatingEssenceShield6"] = { type = "Prefix", affix = "Essences", "+(226-300) to Evasion Rating", statOrder = { 1431 }, level = 74, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, }, - ["LocalIncreasedEvasionRatingEssenceShield7____"] = { type = "Prefix", affix = "Essences", "+(301-375) to Evasion Rating", statOrder = { 1431 }, level = 82, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, }, - ["IncreasedPhysicalDamageReductionRating1"] = { type = "Prefix", affix = "Lacquered", "+(3-10) to Armour", statOrder = { 1422 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, - ["IncreasedPhysicalDamageReductionRating2"] = { type = "Prefix", affix = "Studded", "+(11-35) to Armour", statOrder = { 1422 }, level = 18, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, - ["IncreasedPhysicalDamageReductionRating3"] = { type = "Prefix", affix = "Ribbed", "+(36-60) to Armour", statOrder = { 1422 }, level = 30, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, - ["IncreasedPhysicalDamageReductionRating4"] = { type = "Prefix", affix = "Fortified", "+(61-138) to Armour", statOrder = { 1422 }, level = 44, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, - ["IncreasedPhysicalDamageReductionRating5"] = { type = "Prefix", affix = "Plated", "+(139-322) to Armour", statOrder = { 1422 }, level = 57, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, - ["IncreasedPhysicalDamageReductionRating6"] = { type = "Prefix", affix = "Carapaced", "+(323-400) to Armour", statOrder = { 1422 }, level = 71, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, - ["IncreasedPhysicalDamageReductionRating7"] = { type = "Prefix", affix = "Encased", "+(401-460) to Armour", statOrder = { 1422 }, level = 83, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, - ["IncreasedPhysicalDamageReductionRating8_"] = { type = "Prefix", affix = "Enveloped", "+(461-540) to Armour", statOrder = { 1422 }, level = 86, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, - ["IncreasedPhysicalDamageReductionRatingEssence7"] = { type = "Prefix", affix = "Essences", "+(481-520) to Armour", statOrder = { 1422 }, level = 82, group = "PhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, }, - ["IncreasedPhysicalDamageReductionRatingEssenceRing5"] = { type = "Prefix", affix = "Essences", "+(80-120) to Armour", statOrder = { 1422 }, level = 58, group = "PhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, }, - ["IncreasedPhysicalDamageReductionRatingEssenceRing6"] = { type = "Prefix", affix = "Essences", "+(121-200) to Armour", statOrder = { 1422 }, level = 74, group = "PhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, }, - ["IncreasedPhysicalDamageReductionRatingEssenceRing7"] = { type = "Prefix", affix = "Essences", "+(201-300) to Armour", statOrder = { 1422 }, level = 82, group = "PhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, }, - ["LocalIncreasedPhysicalDamageReductionRating1"] = { type = "Prefix", affix = "Lacquered", "+(6-12) to Armour", statOrder = { 1423 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour" }, }, - ["LocalIncreasedPhysicalDamageReductionRating2"] = { type = "Prefix", affix = "Studded", "+(13-35) to Armour", statOrder = { 1423 }, level = 11, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour" }, }, - ["LocalIncreasedPhysicalDamageReductionRating3"] = { type = "Prefix", affix = "Ribbed", "+(36-63) to Armour", statOrder = { 1423 }, level = 17, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour" }, }, - ["LocalIncreasedPhysicalDamageReductionRating4"] = { type = "Prefix", affix = "Fortified", "+(64-82) to Armour", statOrder = { 1423 }, level = 23, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour" }, }, - ["LocalIncreasedPhysicalDamageReductionRating5"] = { type = "Prefix", affix = "Plated", "+(83-101) to Armour", statOrder = { 1423 }, level = 29, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour" }, }, - ["LocalIncreasedPhysicalDamageReductionRating6"] = { type = "Prefix", affix = "Carapaced", "+(102-120) to Armour", statOrder = { 1423 }, level = 35, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour" }, }, - ["LocalIncreasedPhysicalDamageReductionRating7__"] = { type = "Prefix", affix = "Encased", "+(121-150) to Armour", statOrder = { 1423 }, level = 43, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour" }, }, - ["LocalIncreasedPhysicalDamageReductionRating8"] = { type = "Prefix", affix = "Enveloped", "+(151-200) to Armour", statOrder = { 1423 }, level = 51, group = "LocalPhysicalDamageReductionRating", weightKey = { "gloves", "boots", "str_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour" }, }, - ["LocalIncreasedPhysicalDamageReductionRating9_"] = { type = "Prefix", affix = "Abating", "+(201-300) to Armour", statOrder = { 1423 }, level = 60, group = "LocalPhysicalDamageReductionRating", weightKey = { "helmet", "gloves", "boots", "str_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour" }, }, - ["LocalIncreasedPhysicalDamageReductionRating10"] = { type = "Prefix", affix = "Unmoving", "+(301-400) to Armour", statOrder = { 1423 }, level = 69, group = "LocalPhysicalDamageReductionRating", weightKey = { "helmet", "gloves", "boots", "str_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour" }, }, - ["LocalIncreasedPhysicalDamageReductionRating11"] = { type = "Prefix", affix = "Impervious", "+(401-500) to Armour", statOrder = { 1423 }, level = 77, group = "LocalPhysicalDamageReductionRating", weightKey = { "shield", "helmet", "gloves", "boots", "str_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour" }, }, - ["LocalIncreasedPhysicalDamageReductionRatingEssence7"] = { type = "Prefix", affix = "Essences", "+(390-475) to Armour", statOrder = { 1423 }, level = 82, group = "LocalPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, }, - ["LocalIncreasedPhysicalDamageReductionRatingEssenceHelm5"] = { type = "Prefix", affix = "Essences", "+(121-140) to Armour", statOrder = { 1423 }, level = 58, group = "LocalPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, }, - ["LocalIncreasedPhysicalDamageReductionRatingEssenceHelm6_"] = { type = "Prefix", affix = "Essences", "+(141-160) to Armour", statOrder = { 1423 }, level = 74, group = "LocalPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, }, - ["LocalIncreasedPhysicalDamageReductionRatingEssenceHelm7_"] = { type = "Prefix", affix = "Essences", "+(161-180) to Armour", statOrder = { 1423 }, level = 82, group = "LocalPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, }, - ["LocalIncreasedPhysicalDamageReductionRatingEssenceBootsGloves5"] = { type = "Prefix", affix = "Essences", "+(91-105) to Armour", statOrder = { 1423 }, level = 58, group = "LocalPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, }, - ["LocalIncreasedPhysicalDamageReductionRatingEssenceBootsGloves6"] = { type = "Prefix", affix = "Essences", "+(106-120) to Armour", statOrder = { 1423 }, level = 74, group = "LocalPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, }, - ["LocalIncreasedPhysicalDamageReductionRatingEssenceBootsGloves7"] = { type = "Prefix", affix = "Essences", "+(121-135) to Armour", statOrder = { 1423 }, level = 82, group = "LocalPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, }, - ["LocalIncreasedPhysicalDamageReductionRatingEssenceShield5_"] = { type = "Prefix", affix = "Essences", "+(151-225) to Armour", statOrder = { 1423 }, level = 58, group = "LocalPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, }, - ["LocalIncreasedPhysicalDamageReductionRatingEssenceShield6"] = { type = "Prefix", affix = "Essences", "+(226-300) to Armour", statOrder = { 1423 }, level = 74, group = "LocalPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, }, - ["LocalIncreasedPhysicalDamageReductionRatingEssenceShield7____"] = { type = "Prefix", affix = "Essences", "+(301-375) to Armour", statOrder = { 1423 }, level = 82, group = "LocalPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, }, - ["LocalBaseArmourAndEvasionRating1"] = { type = "Prefix", affix = "Supple", "+(5-9) to Armour", "+(5-9) to Evasion Rating", statOrder = { 1423, 1431 }, level = 1, group = "LocalBaseArmourAndEvasionRating", weightKey = { "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour", "evasion" }, }, - ["LocalBaseArmourAndEvasionRating2"] = { type = "Prefix", affix = "Pliant", "+(10-27) to Armour", "+(10-27) to Evasion Rating", statOrder = { 1423, 1431 }, level = 18, group = "LocalBaseArmourAndEvasionRating", weightKey = { "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour", "evasion" }, }, - ["LocalBaseArmourAndEvasionRating3"] = { type = "Prefix", affix = "Flexible", "+(28-48) to Armour", "+(28-48) to Evasion Rating", statOrder = { 1423, 1431 }, level = 30, group = "LocalBaseArmourAndEvasionRating", weightKey = { "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour", "evasion" }, }, - ["LocalBaseArmourAndEvasionRating4"] = { type = "Prefix", affix = "Durable", "+(49-85) to Armour", "+(49-85) to Evasion Rating", statOrder = { 1423, 1431 }, level = 38, group = "LocalBaseArmourAndEvasionRating", weightKey = { "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour", "evasion" }, }, - ["LocalBaseArmourAndEvasionRating5"] = { type = "Prefix", affix = "Sturdy", "+(86-145) to Armour", "+(86-145) to Evasion Rating", statOrder = { 1423, 1431 }, level = 46, group = "LocalBaseArmourAndEvasionRating", weightKey = { "boots", "gloves", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour", "evasion" }, }, - ["LocalBaseArmourAndEvasionRating6_"] = { type = "Prefix", affix = "Resilient", "+(146-220) to Armour", "+(146-220) to Evasion Rating", statOrder = { 1423, 1431 }, level = 58, group = "LocalBaseArmourAndEvasionRating", weightKey = { "boots", "gloves", "helmet", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour", "evasion" }, }, - ["LocalBaseArmourAndEvasionRating7"] = { type = "Prefix", affix = "Adaptable", "+(221-300) to Armour", "+(221-300) to Evasion Rating", statOrder = { 1423, 1431 }, level = 69, group = "LocalBaseArmourAndEvasionRating", weightKey = { "boots", "gloves", "helmet", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour", "evasion" }, }, - ["LocalBaseArmourAndEvasionRating8"] = { type = "Prefix", affix = "Versatile", "+(301-375) to Armour", "+(301-375) to Evasion Rating", statOrder = { 1423, 1431 }, level = 79, group = "LocalBaseArmourAndEvasionRating", weightKey = { "shield", "boots", "gloves", "helmet", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour", "evasion" }, }, - ["LocalBaseArmourAndEnergyShield1"] = { type = "Prefix", affix = "Blessed", "+(5-9) to Armour", "+(3-4) to maximum Energy Shield", statOrder = { 1423, 1441 }, level = 1, group = "LocalBaseArmourAndEnergyShield", weightKey = { "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, - ["LocalBaseArmourAndEnergyShield2_"] = { type = "Prefix", affix = "Anointed", "+(10-27) to Armour", "+(5-12) to maximum Energy Shield", statOrder = { 1423, 1441 }, level = 18, group = "LocalBaseArmourAndEnergyShield", weightKey = { "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, - ["LocalBaseArmourAndEnergyShield3"] = { type = "Prefix", affix = "Sanctified", "+(28-48) to Armour", "+(13-22) to maximum Energy Shield", statOrder = { 1423, 1441 }, level = 30, group = "LocalBaseArmourAndEnergyShield", weightKey = { "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, - ["LocalBaseArmourAndEnergyShield4"] = { type = "Prefix", affix = "Hallowed", "+(49-85) to Armour", "+(23-28) to maximum Energy Shield", statOrder = { 1423, 1441 }, level = 38, group = "LocalBaseArmourAndEnergyShield", weightKey = { "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, - ["LocalBaseArmourAndEnergyShield5"] = { type = "Prefix", affix = "Beatified", "+(86-145) to Armour", "+(29-48) to maximum Energy Shield", statOrder = { 1423, 1441 }, level = 46, group = "LocalBaseArmourAndEnergyShield", weightKey = { "boots", "gloves", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, - ["LocalBaseArmourAndEnergyShield6"] = { type = "Prefix", affix = "Consecrated", "+(146-220) to Armour", "+(49-60) to maximum Energy Shield", statOrder = { 1423, 1441 }, level = 58, group = "LocalBaseArmourAndEnergyShield", weightKey = { "boots", "gloves", "helmet", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, - ["LocalBaseArmourAndEnergyShield7"] = { type = "Prefix", affix = "Saintly", "+(221-300) to Armour", "+(61-72) to maximum Energy Shield", statOrder = { 1423, 1441 }, level = 69, group = "LocalBaseArmourAndEnergyShield", weightKey = { "boots", "gloves", "helmet", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, - ["LocalBaseArmourAndEnergyShield8"] = { type = "Prefix", affix = "Godly", "+(301-375) to Armour", "+(73-80) to maximum Energy Shield", statOrder = { 1423, 1441 }, level = 79, group = "LocalBaseArmourAndEnergyShield", weightKey = { "shield", "boots", "gloves", "helmet", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, - ["LocalBaseEvasionRatingAndEnergyShield1"] = { type = "Prefix", affix = "Will-o-wisp's", "+(5-9) to Evasion Rating", "+(3-4) to maximum Energy Shield", statOrder = { 1431, 1441 }, level = 1, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, - ["LocalBaseEvasionRatingAndEnergyShield2"] = { type = "Prefix", affix = "Nymph's", "+(10-27) to Evasion Rating", "+(5-12) to maximum Energy Shield", statOrder = { 1431, 1441 }, level = 18, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, - ["LocalBaseEvasionRatingAndEnergyShield3"] = { type = "Prefix", affix = "Sylph's", "+(28-48) to Evasion Rating", "+(13-22) to maximum Energy Shield", statOrder = { 1431, 1441 }, level = 30, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, - ["LocalBaseEvasionRatingAndEnergyShield4"] = { type = "Prefix", affix = "Cherub's", "+(49-85) to Evasion Rating", "+(23-28) to maximum Energy Shield", statOrder = { 1431, 1441 }, level = 38, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, - ["LocalBaseEvasionRatingAndEnergyShield5_"] = { type = "Prefix", affix = "Spirit's", "+(86-145) to Evasion Rating", "+(29-48) to maximum Energy Shield", statOrder = { 1431, 1441 }, level = 46, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "boots", "gloves", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 166, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, - ["LocalBaseEvasionRatingAndEnergyShield6"] = { type = "Prefix", affix = "Eidolon's", "+(146-220) to Evasion Rating", "+(49-60) to maximum Energy Shield", statOrder = { 1431, 1441 }, level = 58, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "boots", "gloves", "helmet", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, - ["LocalBaseEvasionRatingAndEnergyShield7___"] = { type = "Prefix", affix = "Apparition's", "+(221-300) to Evasion Rating", "+(61-72) to maximum Energy Shield", statOrder = { 1431, 1441 }, level = 69, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "boots", "gloves", "helmet", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, - ["LocalBaseEvasionRatingAndEnergyShield8___"] = { type = "Prefix", affix = "Phantasm's", "+(301-375) to Evasion Rating", "+(73-80) to maximum Energy Shield", statOrder = { 1431, 1441 }, level = 79, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "shield", "boots", "gloves", "helmet", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, - ["LocalBaseArmourAndEvasionRatingAndLife1"] = { type = "Prefix", affix = "Rhoa's", "+(8-10) to Armour", "+(8-10) to Evasion Rating", "+(18-23) to maximum Life", statOrder = { 1423, 1431, 1451 }, level = 30, group = "LocalBaseArmourEvasionRatingAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "armour", "evasion" }, }, - ["LocalBaseArmourAndEvasionRatingAndLife2"] = { type = "Prefix", affix = "Rhex's", "+(11-21) to Armour", "+(11-21) to Evasion Rating", "+(24-28) to maximum Life", statOrder = { 1423, 1431, 1451 }, level = 46, group = "LocalBaseArmourEvasionRatingAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "armour", "evasion" }, }, - ["LocalBaseArmourAndEvasionRatingAndLife3"] = { type = "Prefix", affix = "Chimeral's", "+(22-48) to Armour", "+(22-48) to Evasion Rating", "+(29-33) to maximum Life", statOrder = { 1423, 1431, 1451 }, level = 62, group = "LocalBaseArmourEvasionRatingAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "armour", "evasion" }, }, - ["LocalBaseArmourAndEvasionRatingAndLife4"] = { type = "Prefix", affix = "Bull's", "+(49-60) to Armour", "+(49-60) to Evasion Rating", "+(34-38) to maximum Life", statOrder = { 1423, 1431, 1451 }, level = 78, group = "LocalBaseArmourEvasionRatingAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "armour", "evasion" }, }, - ["LocalBaseArmourAndEnergyShieldAndLife1_"] = { type = "Prefix", affix = "Coelacanth's", "+(8-10) to Armour", "+(3-5) to maximum Energy Shield", "+(18-23) to maximum Life", statOrder = { 1423, 1441, 1451 }, level = 30, group = "LocalBaseArmourEnergyShieldAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "armour", "energy_shield" }, }, - ["LocalBaseArmourAndEnergyShieldAndLife2_"] = { type = "Prefix", affix = "Swordfish's", "+(11-21) to Armour", "+(6-8) to maximum Energy Shield", "+(24-28) to maximum Life", statOrder = { 1423, 1441, 1451 }, level = 46, group = "LocalBaseArmourEnergyShieldAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "armour", "energy_shield" }, }, - ["LocalBaseArmourAndEnergyShieldAndLife3"] = { type = "Prefix", affix = "Shark's", "+(22-48) to Armour", "+(9-12) to maximum Energy Shield", "+(29-33) to maximum Life", statOrder = { 1423, 1441, 1451 }, level = 62, group = "LocalBaseArmourEnergyShieldAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "armour", "energy_shield" }, }, - ["LocalBaseArmourAndEnergyShieldAndLife4_"] = { type = "Prefix", affix = "Whale's", "+(49-60) to Armour", "+(13-15) to maximum Energy Shield", "+(34-38) to maximum Life", statOrder = { 1423, 1441, 1451 }, level = 78, group = "LocalBaseArmourEnergyShieldAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "armour", "energy_shield" }, }, - ["LocalBaseEvasionRatingAndEnergyShieldAndLife1"] = { type = "Prefix", affix = "Vulture's", "+(8-10) to Evasion Rating", "+(3-5) to maximum Energy Shield", "+(18-23) to maximum Life", statOrder = { 1431, 1441, 1451 }, level = 30, group = "LocalBaseEvasionRatingEnergyShieldAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "evasion", "energy_shield" }, }, - ["LocalBaseEvasionRatingAndEnergyShieldAndLife2"] = { type = "Prefix", affix = "Kingfisher's", "+(11-21) to Evasion Rating", "+(6-8) to maximum Energy Shield", "+(24-28) to maximum Life", statOrder = { 1431, 1441, 1451 }, level = 46, group = "LocalBaseEvasionRatingEnergyShieldAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "evasion", "energy_shield" }, }, - ["LocalBaseEvasionRatingAndEnergyShieldAndLife3"] = { type = "Prefix", affix = "Owl's", "+(22-48) to Evasion Rating", "+(9-12) to maximum Energy Shield", "+(29-33) to maximum Life", statOrder = { 1431, 1441, 1451 }, level = 62, group = "LocalBaseEvasionRatingEnergyShieldAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "evasion", "energy_shield" }, }, - ["LocalBaseEvasionRatingAndEnergyShieldAndLife4"] = { type = "Prefix", affix = "Eagle's", "+(49-60) to Evasion Rating", "+(13-15) to maximum Energy Shield", "+(34-38) to maximum Life", statOrder = { 1431, 1441, 1451 }, level = 78, group = "LocalBaseEvasionRatingEnergyShieldAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "evasion", "energy_shield" }, }, - ["LocalBaseArmourAndLife1"] = { type = "Prefix", affix = "Oyster's", "+(20-32) to Armour", "+(18-23) to maximum Life", statOrder = { 1423, 1451 }, level = 30, group = "LocalBaseArmourAndLife", weightKey = { "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 500, 500, 333, 0 }, modTags = { "resource", "life", "defences", "armour" }, }, - ["LocalBaseArmourAndLife2"] = { type = "Prefix", affix = "Urchin's", "+(33-48) to Armour", "+(24-28) to maximum Life", statOrder = { 1423, 1451 }, level = 46, group = "LocalBaseArmourAndLife", weightKey = { "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 500, 500, 333, 0 }, modTags = { "resource", "life", "defences", "armour" }, }, - ["LocalBaseArmourAndLife3"] = { type = "Prefix", affix = "Nautilus's", "+(49-96) to Armour", "+(29-33) to maximum Life", statOrder = { 1423, 1451 }, level = 62, group = "LocalBaseArmourAndLife", weightKey = { "boots", "gloves", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 500, 500, 333, 0 }, modTags = { "resource", "life", "defences", "armour" }, }, - ["LocalBaseArmourAndLife4"] = { type = "Prefix", affix = "Crocodile's", "+(97-144) to Armour", "+(34-38) to maximum Life", statOrder = { 1423, 1451 }, level = 78, group = "LocalBaseArmourAndLife", weightKey = { "shield", "boots", "gloves", "helmet", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 500, 250, 250, 166, 0 }, modTags = { "resource", "life", "defences", "armour" }, }, - ["LocalBaseEvasionRatingAndLife1"] = { type = "Prefix", affix = "Flea's", "+(14-20) to Evasion Rating", "+(18-23) to maximum Life", statOrder = { 1431, 1451 }, level = 30, group = "LocalBaseEvasionRatingAndLife", weightKey = { "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 500, 500, 333, 0 }, modTags = { "resource", "life", "defences", "evasion" }, }, - ["LocalBaseEvasionRatingAndLife2"] = { type = "Prefix", affix = "Fawn's", "+(21-42) to Evasion Rating", "+(24-28) to maximum Life", statOrder = { 1431, 1451 }, level = 46, group = "LocalBaseEvasionRatingAndLife", weightKey = { "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 500, 500, 333, 0 }, modTags = { "resource", "life", "defences", "evasion" }, }, - ["LocalBaseEvasionRatingAndLife3"] = { type = "Prefix", affix = "Ram's", "+(43-95) to Evasion Rating", "+(29-33) to maximum Life", statOrder = { 1431, 1451 }, level = 62, group = "LocalBaseEvasionRatingAndLife", weightKey = { "boots", "gloves", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 500, 500, 333, 0 }, modTags = { "resource", "life", "defences", "evasion" }, }, - ["LocalBaseEvasionRatingAndLife4"] = { type = "Prefix", affix = "Ibex's", "+(96-120) to Evasion Rating", "+(34-38) to maximum Life", statOrder = { 1431, 1451 }, level = 78, group = "LocalBaseEvasionRatingAndLife", weightKey = { "shield", "boots", "gloves", "helmet", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 500, 250, 250, 166, 0 }, modTags = { "resource", "life", "defences", "evasion" }, }, - ["LocalBaseEnergyShieldAndLife1"] = { type = "Prefix", affix = "Monk's", "+(8-10) to maximum Energy Shield", "+(18-23) to maximum Life", statOrder = { 1441, 1451 }, level = 30, group = "LocalBaseEnergyShieldAndLife", weightKey = { "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 500, 500, 333, 0 }, modTags = { "resource", "life", "defences", "energy_shield" }, }, - ["LocalBaseEnergyShieldAndLife2"] = { type = "Prefix", affix = "Prior's", "+(11-15) to maximum Energy Shield", "+(24-28) to maximum Life", statOrder = { 1441, 1451 }, level = 46, group = "LocalBaseEnergyShieldAndLife", weightKey = { "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 500, 500, 333, 0 }, modTags = { "resource", "life", "defences", "energy_shield" }, }, - ["LocalBaseEnergyShieldAndLife3_"] = { type = "Prefix", affix = "Abbot's", "+(16-25) to maximum Energy Shield", "+(29-33) to maximum Life", statOrder = { 1441, 1451 }, level = 62, group = "LocalBaseEnergyShieldAndLife", weightKey = { "boots", "gloves", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 500, 500, 333, 0 }, modTags = { "resource", "life", "defences", "energy_shield" }, }, - ["LocalBaseEnergyShieldAndLife4_"] = { type = "Prefix", affix = "Exarch's", "+(26-30) to maximum Energy Shield", "+(34-38) to maximum Life", statOrder = { 1441, 1451 }, level = 78, group = "LocalBaseEnergyShieldAndLife", weightKey = { "shield", "boots", "gloves", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 500, 250, 250, 166, 0 }, modTags = { "resource", "life", "defences", "energy_shield" }, }, - ["LocalBaseEnergyShieldAndMana1"] = { type = "Prefix", affix = "Acolyte's", "+(8-10) to maximum Energy Shield", "+(11-15) to maximum Mana", statOrder = { 1441, 1461 }, level = 30, group = "LocalBaseEnergyShieldAndMana", weightKey = { "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 500, 500, 333, 0 }, modTags = { "resource", "mana", "defences", "energy_shield" }, }, - ["LocalBaseEnergyShieldAndMana2"] = { type = "Prefix", affix = "Deacon's", "+(11-15) to maximum Energy Shield", "+(16-19) to maximum Mana", statOrder = { 1441, 1461 }, level = 46, group = "LocalBaseEnergyShieldAndMana", weightKey = { "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 500, 500, 333, 0 }, modTags = { "resource", "mana", "defences", "energy_shield" }, }, - ["LocalBaseEnergyShieldAndMana3"] = { type = "Prefix", affix = "Priest's", "+(16-25) to maximum Energy Shield", "+(20-22) to maximum Mana", statOrder = { 1441, 1461 }, level = 62, group = "LocalBaseEnergyShieldAndMana", weightKey = { "boots", "gloves", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 500, 500, 333, 0 }, modTags = { "resource", "mana", "defences", "energy_shield" }, }, - ["LocalBaseEnergyShieldAndMana4"] = { type = "Prefix", affix = "Bishop's", "+(26-30) to maximum Energy Shield", "+(23-25) to maximum Mana", statOrder = { 1441, 1461 }, level = 78, group = "LocalBaseEnergyShieldAndMana", weightKey = { "shield", "boots", "gloves", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 500, 250, 250, 166, 0 }, modTags = { "resource", "mana", "defences", "energy_shield" }, }, - ["MovementVelocity1"] = { type = "Prefix", affix = "Runner's", "10% increased Movement Speed", statOrder = { 1679 }, level = 1, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, }, - ["MovementVelocity2"] = { type = "Prefix", affix = "Sprinter's", "15% increased Movement Speed", statOrder = { 1679 }, level = 15, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, }, - ["MovementVelocity3"] = { type = "Prefix", affix = "Stallion's", "20% increased Movement Speed", statOrder = { 1679 }, level = 30, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, }, - ["MovementVelocity4"] = { type = "Prefix", affix = "Gazelle's", "25% increased Movement Speed", statOrder = { 1679 }, level = 40, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, }, - ["MovementVelocity5"] = { type = "Prefix", affix = "Cheetah's", "30% increased Movement Speed", statOrder = { 1679 }, level = 55, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, }, - ["MovementVelocity6"] = { type = "Prefix", affix = "Hellion's", "35% increased Movement Speed", statOrder = { 1679 }, level = 86, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, }, - ["MovementVelocityEssence7"] = { type = "Prefix", affix = "Essences", "32% increased Movement Speed", statOrder = { 1679 }, level = 82, group = "MovementVelocity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, - ["MovementVelocityEnhancedModSpeed"] = { type = "Prefix", affix = "Matatl's", "30% increased Movement Speed", "5% increased Movement Speed if you haven't been Hit Recently", statOrder = { 1679, 3109 }, level = 1, group = "MovementVelocitySpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, - ["MovementVelocityEnhancedModDodge_"] = { type = "Prefix", affix = "Matatl's", "30% increased Movement Speed", "(10-15)% chance to Avoid Bleeding", statOrder = { 1679, 4077 }, level = 1, group = "MovementVelocityDodge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, - ["MovementVelocityEnhancedModSpellDodge_"] = { type = "Prefix", affix = "Matatl's", "30% increased Movement Speed", "(10-15)% chance to Avoid being Poisoned", statOrder = { 1679, 1730 }, level = 1, group = "MovementVelocitySpellDodge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, - ["SpellDamage1"] = { type = "Prefix", affix = "Chanter's", "(3-7)% increased Spell Damage", statOrder = { 1108 }, level = 5, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamage2"] = { type = "Prefix", affix = "Mage's", "(8-12)% increased Spell Damage", statOrder = { 1108 }, level = 20, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamage3"] = { type = "Prefix", affix = "Sorcerer's", "(13-17)% increased Spell Damage", statOrder = { 1108 }, level = 38, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamage4"] = { type = "Prefix", affix = "Thaumaturgist's", "(18-22)% increased Spell Damage", statOrder = { 1108 }, level = 56, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamage5"] = { type = "Prefix", affix = "Wizard's", "(23-26)% increased Spell Damage", statOrder = { 1108 }, level = 76, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamageOnWeapon1"] = { type = "Prefix", affix = "Apprentice's", "(10-19)% increased Spell Damage", statOrder = { 1108 }, level = 2, group = "WeaponSpellDamage", weightKey = { "attack_dagger", "focus", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1500, 1500, 1500, 1500, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamageOnWeapon2"] = { type = "Prefix", affix = "Adept's", "(20-29)% increased Spell Damage", statOrder = { 1108 }, level = 11, group = "WeaponSpellDamage", weightKey = { "attack_dagger", "focus", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1500, 1500, 1500, 1500, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamageOnWeapon3"] = { type = "Prefix", affix = "Scholar's", "(30-39)% increased Spell Damage", statOrder = { 1108 }, level = 23, group = "WeaponSpellDamage", weightKey = { "attack_dagger", "focus", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1500, 1500, 1500, 1500, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamageOnWeapon4"] = { type = "Prefix", affix = "Professor's", "(40-54)% increased Spell Damage", statOrder = { 1108 }, level = 35, group = "WeaponSpellDamage", weightKey = { "attack_dagger", "focus", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 600, 600, 600, 600, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamageOnWeapon5"] = { type = "Prefix", affix = "Occultist's", "(55-69)% increased Spell Damage", statOrder = { 1108 }, level = 46, group = "WeaponSpellDamage", weightKey = { "attack_dagger", "focus", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 300, 300, 300, 300, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamageOnWeapon6"] = { type = "Prefix", affix = "Incanter's", "(70-84)% increased Spell Damage", statOrder = { 1108 }, level = 58, group = "WeaponSpellDamage", weightKey = { "attack_dagger", "focus", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 150, 150, 150, 150, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamageOnWeapon7"] = { type = "Prefix", affix = "Glyphic", "(85-99)% increased Spell Damage", statOrder = { 1108 }, level = 64, group = "WeaponSpellDamage", weightKey = { "attack_dagger", "focus", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 80, 80, 80, 80, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamageOnWeapon8_"] = { type = "Prefix", affix = "Runic", "(100-109)% increased Spell Damage", statOrder = { 1108 }, level = 84, group = "WeaponSpellDamage", weightKey = { "attack_dagger", "focus", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 40, 40, 40, 40, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamageOnWeaponEssence5_"] = { type = "Prefix", affix = "Essences", "(50-66)% increased Spell Damage", statOrder = { 1108 }, level = 58, group = "WeaponSpellDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamageOnWeaponEssence6"] = { type = "Prefix", affix = "Essences", "(67-82)% increased Spell Damage", statOrder = { 1108 }, level = 74, group = "WeaponSpellDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamageOnWeaponEssence7"] = { type = "Prefix", affix = "Essences", "(83-94)% increased Spell Damage", statOrder = { 1108 }, level = 82, group = "WeaponSpellDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamageOnWeaponEnhancedMod"] = { type = "Prefix", affix = "Tacati's", "(70-74)% increased Spell Damage", "Gain 5% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 1108, 9009 }, level = 1, group = "WeaponSpellDamageAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["SpellDamageOnTwoHandWeapon1"] = { type = "Prefix", affix = "Apprentice's", "(15-29)% increased Spell Damage", statOrder = { 1108 }, level = 2, group = "TwoHandWeaponSpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1500, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamageOnTwoHandWeapon2"] = { type = "Prefix", affix = "Adept's", "(30-44)% increased Spell Damage", statOrder = { 1108 }, level = 11, group = "TwoHandWeaponSpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1500, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamageOnTwoHandWeapon3"] = { type = "Prefix", affix = "Scholar's", "(45-59)% increased Spell Damage", statOrder = { 1108 }, level = 23, group = "TwoHandWeaponSpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1500, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamageOnTwoHandWeapon4"] = { type = "Prefix", affix = "Professor's", "(60-84)% increased Spell Damage", statOrder = { 1108 }, level = 35, group = "TwoHandWeaponSpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 600, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamageOnTwoHandWeapon5"] = { type = "Prefix", affix = "Occultist's", "(85-104)% increased Spell Damage", statOrder = { 1108 }, level = 46, group = "TwoHandWeaponSpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamageOnTwoHandWeapon6"] = { type = "Prefix", affix = "Incanter's", "(105-124)% increased Spell Damage", statOrder = { 1108 }, level = 58, group = "TwoHandWeaponSpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 150, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamageOnTwoHandWeapon7"] = { type = "Prefix", affix = "Glyphic", "(125-149)% increased Spell Damage", statOrder = { 1108 }, level = 79, group = "TwoHandWeaponSpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 80, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamageOnTwoHandWeapon8"] = { type = "Prefix", affix = "Runic", "(150-164)% increased Spell Damage", statOrder = { 1108 }, level = 84, group = "TwoHandWeaponSpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 40, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamageOnTwoHandWeaponEssence5"] = { type = "Prefix", affix = "Essences", "(85-106)% increased Spell Damage", statOrder = { 1108 }, level = 58, group = "TwoHandWeaponSpellDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamageOnTwoHandWeaponEssence6"] = { type = "Prefix", affix = "Essences", "(107-122)% increased Spell Damage", statOrder = { 1108 }, level = 74, group = "TwoHandWeaponSpellDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamageOnTwoHandWeaponEssence7"] = { type = "Prefix", affix = "Essences", "(123-144)% increased Spell Damage", statOrder = { 1108 }, level = 82, group = "TwoHandWeaponSpellDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamageOnTwoHandWeaponEnhancedMod"] = { type = "Prefix", affix = "Tacati's", "(105-110)% increased Spell Damage", "Gain 5% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 1108, 9009 }, level = 1, group = "WeaponSpellDamageAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["SpellDamageAndManaOnWeapon1"] = { type = "Prefix", affix = "Caster's", "(5-9)% increased Spell Damage", "+(17-20) to maximum Mana", statOrder = { 1108, 1461 }, level = 2, group = "WeaponSpellDamageAndMana", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 750, 750, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, }, - ["SpellDamageAndManaOnWeapon2"] = { type = "Prefix", affix = "Conjuror's", "(10-14)% increased Spell Damage", "+(21-24) to maximum Mana", statOrder = { 1108, 1461 }, level = 11, group = "WeaponSpellDamageAndMana", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 750, 750, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, }, - ["SpellDamageAndManaOnWeapon3"] = { type = "Prefix", affix = "Wizard's", "(15-19)% increased Spell Damage", "+(25-28) to maximum Mana", statOrder = { 1108, 1461 }, level = 23, group = "WeaponSpellDamageAndMana", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 750, 750, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, }, - ["SpellDamageAndManaOnWeapon4"] = { type = "Prefix", affix = "Warlock's", "(20-24)% increased Spell Damage", "+(29-33) to maximum Mana", statOrder = { 1108, 1461 }, level = 35, group = "WeaponSpellDamageAndMana", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 600, 600, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, }, - ["SpellDamageAndManaOnWeapon5"] = { type = "Prefix", affix = "Mage's", "(25-29)% increased Spell Damage", "+(34-37) to maximum Mana", statOrder = { 1108, 1461 }, level = 46, group = "WeaponSpellDamageAndMana", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 400, 300, 300, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, }, - ["SpellDamageAndManaOnWeapon6"] = { type = "Prefix", affix = "Archmage's", "(30-34)% increased Spell Damage", "+(38-41) to maximum Mana", statOrder = { 1108, 1461 }, level = 58, group = "WeaponSpellDamageAndMana", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 200, 150, 150, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, }, - ["SpellDamageAndManaOnWeapon7"] = { type = "Prefix", affix = "Lich's", "(35-39)% increased Spell Damage", "+(42-45) to maximum Mana", statOrder = { 1108, 1461 }, level = 80, group = "WeaponSpellDamageAndMana", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 75, 75, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, }, - ["SpellDamageAndManaOnTwoHandWeapon1"] = { type = "Prefix", affix = "Caster's", "(8-14)% increased Spell Damage", "+(26-30) to maximum Mana", statOrder = { 1108, 1461 }, level = 2, group = "TwoHandWeaponSpellDamageAndMana", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1500, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, }, - ["SpellDamageAndManaOnTwoHandWeapon2"] = { type = "Prefix", affix = "Conjuror's", "(15-22)% increased Spell Damage", "+(31-35) to maximum Mana", statOrder = { 1108, 1461 }, level = 11, group = "TwoHandWeaponSpellDamageAndMana", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1500, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, }, - ["SpellDamageAndManaOnTwoHandWeapon3"] = { type = "Prefix", affix = "Wizard's", "(23-29)% increased Spell Damage", "+(36-41) to maximum Mana", statOrder = { 1108, 1461 }, level = 23, group = "TwoHandWeaponSpellDamageAndMana", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1500, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, }, - ["SpellDamageAndManaOnTwoHandWeapon4"] = { type = "Prefix", affix = "Warlock's", "(30-37)% increased Spell Damage", "+(42-47) to maximum Mana", statOrder = { 1108, 1461 }, level = 35, group = "TwoHandWeaponSpellDamageAndMana", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 600, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, }, - ["SpellDamageAndManaOnTwoHandWeapon5"] = { type = "Prefix", affix = "Mage's", "(38-44)% increased Spell Damage", "+(48-53) to maximum Mana", statOrder = { 1108, 1461 }, level = 46, group = "TwoHandWeaponSpellDamageAndMana", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, }, - ["SpellDamageAndManaOnTwoHandWeapon6"] = { type = "Prefix", affix = "Archmage's", "(45-50)% increased Spell Damage", "+(54-59) to maximum Mana", statOrder = { 1108, 1461 }, level = 58, group = "TwoHandWeaponSpellDamageAndMana", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 150, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, }, - ["SpellDamageAndManaOnTwoHandWeapon7"] = { type = "Prefix", affix = "Lich's", "(51-55)% increased Spell Damage", "+(60-64) to maximum Mana", statOrder = { 1108, 1461 }, level = 80, group = "TwoHandWeaponSpellDamageAndMana", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 75, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, }, - ["TrapDamageOnWeaponEnhancedMod"] = { type = "Prefix", affix = "Matatl's", "(90-95)% increased Trap Damage", statOrder = { 1079 }, level = 1, group = "TrapDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, }, - ["TrapDamageOnTwoHandWeaponEnhancedMod"] = { type = "Prefix", affix = "Matatl's", "(133-138)% increased Trap Damage", statOrder = { 1079 }, level = 1, group = "TrapDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, }, - ["TrapThrowSpeedEnhancedMod"] = { type = "Suffix", affix = "of Matatl", "(20-22)% increased Trap Throwing Speed", statOrder = { 1806 }, level = 1, group = "TrapThrowSpeedOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, - ["TrapCooldownRecoveryAndDurationEnhancedMod"] = { type = "Suffix", affix = "of Matatl", "(17-20)% increased Trap Duration", "(14-15)% increased Cooldown Recovery Rate for throwing Traps", statOrder = { 1802, 3324 }, level = 1, group = "TrapCooldownRecoveryAndDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["TrapAreaOfEffectEnhancedMod_"] = { type = "Suffix", affix = "of Matatl", "Skills used by Traps have (22-25)% increased Area of Effect", statOrder = { 3342 }, level = 1, group = "TrapAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["LocalIncreaseSocketedTrapGemLevelEnhancedMod_"] = { type = "Prefix", affix = "Matatl's", "+2 to Level of Socketed Trap Gems", statOrder = { 165 }, level = 1, group = "LocalIncreaseSocketedTrapGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "gem" }, }, - ["MinionDamageOnWeaponEnhancedMod__"] = { type = "Prefix", affix = "Citaqualotl's", "Minions deal (90-95)% increased Damage", statOrder = { 1852 }, level = 1, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageOnTwoHandWeaponEnhancedMod"] = { type = "Prefix", affix = "Citaqualotl's", "Minions deal (133-138)% increased Damage", statOrder = { 1852 }, level = 1, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, - ["MinionAttackAndCastSpeedEnhancedMod"] = { type = "Suffix", affix = "of Citaqualotl", "Minions have (13-15)% increased Attack Speed", "Minions have (13-15)% increased Cast Speed", statOrder = { 2781, 2782 }, level = 1, group = "MinionAttackAndCastSpeedOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, - ["MinionDurationEnhancedMod_"] = { type = "Suffix", affix = "of Citaqualotl", "(17-20)% increased Minion Duration", statOrder = { 4847 }, level = 1, group = "MinionDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, }, - ["LocalIncreaseSocketedMinionGemLevelEnhancedMod"] = { type = "Prefix", affix = "Citaqualotl's", "+2 to Level of Socketed Minion Gems", statOrder = { 159 }, level = 1, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion", "gem" }, }, - ["FireDamagePrefixOnWeapon1"] = { type = "Prefix", affix = "Searing", "(10-19)% increased Fire Damage", statOrder = { 1241 }, level = 2, group = "FireDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePrefixOnWeapon2"] = { type = "Prefix", affix = "Sizzling", "(20-29)% increased Fire Damage", statOrder = { 1241 }, level = 11, group = "FireDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePrefixOnWeapon3"] = { type = "Prefix", affix = "Blistering", "(30-39)% increased Fire Damage", statOrder = { 1241 }, level = 23, group = "FireDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePrefixOnWeapon4"] = { type = "Prefix", affix = "Cauterising", "(40-54)% increased Fire Damage", statOrder = { 1241 }, level = 35, group = "FireDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 200, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePrefixOnWeapon5_"] = { type = "Prefix", affix = "Volcanic", "(55-69)% increased Fire Damage", statOrder = { 1241 }, level = 46, group = "FireDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 100, 100, 100, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePrefixOnWeapon6"] = { type = "Prefix", affix = "Magmatic", "(70-84)% increased Fire Damage", statOrder = { 1241 }, level = 58, group = "FireDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 50, 50, 50, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePrefixOnWeapon7_"] = { type = "Prefix", affix = "Pyroclastic", "(85-99)% increased Fire Damage", statOrder = { 1241 }, level = 64, group = "FireDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 25, 25, 25, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePrefixOnWeapon8_"] = { type = "Prefix", affix = "Xoph's", "(100-109)% increased Fire Damage", statOrder = { 1241 }, level = 84, group = "FireDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 12, 12, 12, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePrefixOnTwoHandWeapon1"] = { type = "Prefix", affix = "Searing", "(15-29)% increased Fire Damage", statOrder = { 1241 }, level = 2, group = "TwoHandFireDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePrefixOnTwoHandWeapon2___"] = { type = "Prefix", affix = "Sizzling", "(30-44)% increased Fire Damage", statOrder = { 1241 }, level = 11, group = "TwoHandFireDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePrefixOnTwoHandWeapon3"] = { type = "Prefix", affix = "Blistering", "(45-59)% increased Fire Damage", statOrder = { 1241 }, level = 23, group = "TwoHandFireDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePrefixOnTwoHandWeapon4"] = { type = "Prefix", affix = "Cauterising", "(60-84)% increased Fire Damage", statOrder = { 1241 }, level = 35, group = "TwoHandFireDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePrefixOnTwoHandWeapon5"] = { type = "Prefix", affix = "Volcanic", "(85-104)% increased Fire Damage", statOrder = { 1241 }, level = 46, group = "TwoHandFireDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePrefixOnTwoHandWeapon6"] = { type = "Prefix", affix = "Magmatic", "(105-124)% increased Fire Damage", statOrder = { 1241 }, level = 58, group = "TwoHandFireDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 50, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePrefixOnTwoHandWeapon7"] = { type = "Prefix", affix = "Pyroclastic", "(125-149)% increased Fire Damage", statOrder = { 1241 }, level = 79, group = "TwoHandFireDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 25, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePrefixOnTwoHandWeapon8_"] = { type = "Prefix", affix = "Xoph's", "(150-164)% increased Fire Damage", statOrder = { 1241 }, level = 84, group = "TwoHandFireDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 13, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePrefixOnWeaponEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "(75-79)% increased Fire Damage", "Adds (15-20) to (30-35) Fire Damage to Spells", statOrder = { 1241, 1288 }, level = 1, group = "FireDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["FireDamagePrefixOnTwoHandWeaponEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "(111-115)% increased Fire Damage", "Adds (20-27) to (41-48) Fire Damage to Spells", statOrder = { 1241, 1288 }, level = 1, group = "TwoHandFireDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["ColdDamagePrefixOnWeapon1"] = { type = "Prefix", affix = "Bitter", "(10-19)% increased Cold Damage", statOrder = { 1250 }, level = 2, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePrefixOnWeapon2"] = { type = "Prefix", affix = "Biting", "(20-29)% increased Cold Damage", statOrder = { 1250 }, level = 11, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePrefixOnWeapon3_"] = { type = "Prefix", affix = "Alpine", "(30-39)% increased Cold Damage", statOrder = { 1250 }, level = 23, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePrefixOnWeapon4"] = { type = "Prefix", affix = "Snowy", "(40-54)% increased Cold Damage", statOrder = { 1250 }, level = 35, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 200, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePrefixOnWeapon5_"] = { type = "Prefix", affix = "Hailing", "(55-69)% increased Cold Damage", statOrder = { 1250 }, level = 46, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 100, 100, 100, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePrefixOnWeapon6"] = { type = "Prefix", affix = "Crystalline", "(70-84)% increased Cold Damage", statOrder = { 1250 }, level = 58, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 50, 50, 50, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePrefixOnWeapon7"] = { type = "Prefix", affix = "Cryomancer's", "(85-99)% increased Cold Damage", statOrder = { 1250 }, level = 64, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 25, 25, 25, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePrefixOnWeapon8"] = { type = "Prefix", affix = "Tul's", "(100-109)% increased Cold Damage", statOrder = { 1250 }, level = 84, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 12, 12, 12, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePrefixOnTwoHandWeapon1"] = { type = "Prefix", affix = "Bitter", "(15-29)% increased Cold Damage", statOrder = { 1250 }, level = 2, group = "TwoHandColdDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePrefixOnTwoHandWeapon2"] = { type = "Prefix", affix = "Biting", "(30-44)% increased Cold Damage", statOrder = { 1250 }, level = 11, group = "TwoHandColdDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePrefixOnTwoHandWeapon3"] = { type = "Prefix", affix = "Alpine", "(45-59)% increased Cold Damage", statOrder = { 1250 }, level = 23, group = "TwoHandColdDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePrefixOnTwoHandWeapon4_"] = { type = "Prefix", affix = "Snowy", "(60-84)% increased Cold Damage", statOrder = { 1250 }, level = 35, group = "TwoHandColdDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePrefixOnTwoHandWeapon5_"] = { type = "Prefix", affix = "Hailing", "(85-104)% increased Cold Damage", statOrder = { 1250 }, level = 46, group = "TwoHandColdDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePrefixOnTwoHandWeapon6"] = { type = "Prefix", affix = "Crystalline", "(105-124)% increased Cold Damage", statOrder = { 1250 }, level = 58, group = "TwoHandColdDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 50, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePrefixOnTwoHandWeapon7"] = { type = "Prefix", affix = "Cryomancer's", "(125-149)% increased Cold Damage", statOrder = { 1250 }, level = 79, group = "TwoHandColdDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 25, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePrefixOnTwoHandWeapon8"] = { type = "Prefix", affix = "Tul's", "(150-164)% increased Cold Damage", statOrder = { 1250 }, level = 84, group = "TwoHandColdDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 13, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePrefixOnWeaponEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "(75-79)% increased Cold Damage", "Adds (12-16) to (25-29) Cold Damage to Spells", statOrder = { 1250, 1289 }, level = 1, group = "ColdDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["ColdDamagePrefixOnTwoHandWeaponEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "(111-115)% increased Cold Damage", "Adds (19-25) to (37-44) Cold Damage to Spells", statOrder = { 1250, 1289 }, level = 1, group = "TwoHandColdDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["LightningDamagePrefixOnWeapon1_"] = { type = "Prefix", affix = "Charged", "(10-19)% increased Lightning Damage", statOrder = { 1261 }, level = 2, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningDamagePrefixOnWeapon2"] = { type = "Prefix", affix = "Hissing", "(20-29)% increased Lightning Damage", statOrder = { 1261 }, level = 11, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningDamagePrefixOnWeapon3"] = { type = "Prefix", affix = "Bolting", "(30-39)% increased Lightning Damage", statOrder = { 1261 }, level = 23, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningDamagePrefixOnWeapon4"] = { type = "Prefix", affix = "Coursing", "(40-54)% increased Lightning Damage", statOrder = { 1261 }, level = 35, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 200, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningDamagePrefixOnWeapon5"] = { type = "Prefix", affix = "Striking", "(55-69)% increased Lightning Damage", statOrder = { 1261 }, level = 46, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 100, 100, 100, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningDamagePrefixOnWeapon6"] = { type = "Prefix", affix = "Smiting", "(70-84)% increased Lightning Damage", statOrder = { 1261 }, level = 58, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 50, 50, 50, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningDamagePrefixOnWeapon7"] = { type = "Prefix", affix = "Ionising", "(85-99)% increased Lightning Damage", statOrder = { 1261 }, level = 64, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 25, 25, 25, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningDamagePrefixOnWeapon8"] = { type = "Prefix", affix = "Esh's", "(100-109)% increased Lightning Damage", statOrder = { 1261 }, level = 84, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 12, 12, 12, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningDamagePrefixOnTwoHandWeapon1"] = { type = "Prefix", affix = "Charged", "(15-29)% increased Lightning Damage", statOrder = { 1261 }, level = 2, group = "TwoHandLightningDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningDamagePrefixOnTwoHandWeapon2"] = { type = "Prefix", affix = "Hissing", "(30-44)% increased Lightning Damage", statOrder = { 1261 }, level = 11, group = "TwoHandLightningDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningDamagePrefixOnTwoHandWeapon3"] = { type = "Prefix", affix = "Bolting", "(45-59)% increased Lightning Damage", statOrder = { 1261 }, level = 23, group = "TwoHandLightningDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningDamagePrefixOnTwoHandWeapon4"] = { type = "Prefix", affix = "Coursing", "(60-84)% increased Lightning Damage", statOrder = { 1261 }, level = 35, group = "TwoHandLightningDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningDamagePrefixOnTwoHandWeapon5"] = { type = "Prefix", affix = "Striking", "(85-104)% increased Lightning Damage", statOrder = { 1261 }, level = 46, group = "TwoHandLightningDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningDamagePrefixOnTwoHandWeapon6"] = { type = "Prefix", affix = "Smiting", "(105-124)% increased Lightning Damage", statOrder = { 1261 }, level = 58, group = "TwoHandLightningDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 50, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningDamagePrefixOnTwoHandWeapon7"] = { type = "Prefix", affix = "Ionising", "(125-149)% increased Lightning Damage", statOrder = { 1261 }, level = 79, group = "TwoHandLightningDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 25, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningDamagePrefixOnTwoHandWeapon8"] = { type = "Prefix", affix = "Esh's", "(150-164)% increased Lightning Damage", statOrder = { 1261 }, level = 84, group = "TwoHandLightningDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 13, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningDamagePrefixOnWeaponEnhancedMod_"] = { type = "Prefix", affix = "Topotante's", "(75-79)% increased Lightning Damage", "Adds (1-4) to (53-56) Lightning Damage to Spells", statOrder = { 1261, 1290 }, level = 1, group = "LightningDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["LightningDamagePrefixOnTwoHandWeaponEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "(111-115)% increased Lightning Damage", "Adds (2-6) to (79-84) Lightning Damage to Spells", statOrder = { 1261, 1290 }, level = 1, group = "TwoHandLightningDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["WeaponElementalDamage1"] = { type = "Prefix", affix = "Catalysing", "(5-10)% increased Elemental Damage with Attack Skills", statOrder = { 6010 }, level = 4, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["WeaponElementalDamage2"] = { type = "Prefix", affix = "Infusing", "(11-20)% increased Elemental Damage with Attack Skills", statOrder = { 6010 }, level = 15, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["WeaponElementalDamage3"] = { type = "Prefix", affix = "Empowering", "(21-30)% increased Elemental Damage with Attack Skills", statOrder = { 6010 }, level = 30, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["WeaponElementalDamage4"] = { type = "Prefix", affix = "Unleashed", "(31-36)% increased Elemental Damage with Attack Skills", statOrder = { 6010 }, level = 60, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["WeaponElementalDamage5"] = { type = "Prefix", affix = "Overpowering", "(37-42)% increased Elemental Damage with Attack Skills", statOrder = { 6010 }, level = 81, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["WeaponElementalDamage6_"] = { type = "Prefix", affix = "Devastating", "(43-50)% increased Elemental Damage with Attack Skills", statOrder = { 6010 }, level = 86, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "amulet", "belt", "default", }, weightVal = { 300, 300, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["WeaponElementalDamageEssence1"] = { type = "Prefix", affix = "Essences", "(11-15)% increased Elemental Damage with Attack Skills", statOrder = { 6010 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["WeaponElementalDamageEssence2"] = { type = "Prefix", affix = "Essences", "(16-20)% increased Elemental Damage with Attack Skills", statOrder = { 6010 }, level = 10, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["WeaponElementalDamageEssence3"] = { type = "Prefix", affix = "Essences", "(21-25)% increased Elemental Damage with Attack Skills", statOrder = { 6010 }, level = 26, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["WeaponElementalDamageEssence4"] = { type = "Prefix", affix = "Essences", "(26-29)% increased Elemental Damage with Attack Skills", statOrder = { 6010 }, level = 42, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["WeaponElementalDamageEssence5"] = { type = "Prefix", affix = "Essences", "(30-34)% increased Elemental Damage with Attack Skills", statOrder = { 6010 }, level = 58, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["WeaponElementalDamageEssence6_"] = { type = "Prefix", affix = "Essences", "(35-38)% increased Elemental Damage with Attack Skills", statOrder = { 6010 }, level = 74, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["WeaponElementalDamageEssence7"] = { type = "Prefix", affix = "Essences", "(39-42)% increased Elemental Damage with Attack Skills", statOrder = { 6010 }, level = 82, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["WeaponElementalDamageOnWeapons1_"] = { type = "Prefix", affix = "Catalysing", "(11-20)% increased Elemental Damage with Attack Skills", statOrder = { 6010 }, level = 4, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["WeaponElementalDamageOnWeapons2"] = { type = "Prefix", affix = "Infusing", "(21-30)% increased Elemental Damage with Attack Skills", statOrder = { 6010 }, level = 15, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["WeaponElementalDamageOnWeapons3_"] = { type = "Prefix", affix = "Empowering", "(31-36)% increased Elemental Damage with Attack Skills", statOrder = { 6010 }, level = 30, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["WeaponElementalDamageOnWeapons4"] = { type = "Prefix", affix = "Unleashed", "(37-42)% increased Elemental Damage with Attack Skills", statOrder = { 6010 }, level = 60, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["WeaponElementalDamageOnWeapons5_"] = { type = "Prefix", affix = "Overpowering", "(43-50)% increased Elemental Damage with Attack Skills", statOrder = { 6010 }, level = 81, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["WeaponElementalDamageOnWeapons6"] = { type = "Prefix", affix = "Devastating", "(51-59)% increased Elemental Damage with Attack Skills", statOrder = { 6010 }, level = 86, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["WeaponElementalDamageOnTwohandWeapon1"] = { type = "Prefix", affix = "Catalysing", "(19-34)% increased Elemental Damage with Attack Skills", statOrder = { 6010 }, level = 4, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["WeaponElementalDamageOnTwohandWeapon2____"] = { type = "Prefix", affix = "Infusing", "(36-51)% increased Elemental Damage with Attack Skills", statOrder = { 6010 }, level = 15, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["WeaponElementalDamageOnTwohandWeapon3"] = { type = "Prefix", affix = "Empowering", "(53-61)% increased Elemental Damage with Attack Skills", statOrder = { 6010 }, level = 30, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["WeaponElementalDamageOnTwohandWeapon4"] = { type = "Prefix", affix = "Unleashed", "(63-71)% increased Elemental Damage with Attack Skills", statOrder = { 6010 }, level = 60, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["WeaponElementalDamageOnTwohandWeapon5"] = { type = "Prefix", affix = "Overpowering", "(73-85)% increased Elemental Damage with Attack Skills", statOrder = { 6010 }, level = 81, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["WeaponElementalDamageOnTwohandWeapon6"] = { type = "Prefix", affix = "Devastating", "(87-100)% increased Elemental Damage with Attack Skills", statOrder = { 6010 }, level = 86, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["ManaLeech1"] = { type = "Prefix", affix = "Thirsty", "(1-2)% of Physical Attack Damage Leeched as Mana", statOrder = { 1578 }, level = 9, group = "ManaLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, }, - ["ManaLeech2"] = { type = "Prefix", affix = "Parched", "(3-4)% of Physical Attack Damage Leeched as Mana", statOrder = { 1578 }, level = 74, group = "ManaLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, }, - ["ManaLeechPermyriad1"] = { type = "Prefix", affix = "Thirsty", "(0.2-0.4)% of Physical Attack Damage Leeched as Mana", statOrder = { 1580 }, level = 50, group = "ManaLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, }, - ["ManaLeechPermyriad2"] = { type = "Prefix", affix = "Parched", "(0.6-0.8)% of Physical Attack Damage Leeched as Mana", statOrder = { 1580 }, level = 70, group = "ManaLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, }, - ["ManaLeechPermyriadSuffix1"] = { type = "Suffix", affix = "of Thirst", "(0.2-0.4)% of Physical Attack Damage Leeched as Mana", statOrder = { 1580 }, level = 50, group = "ManaLeechPermyriad", weightKey = { "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "mana", "physical", "attack" }, }, - ["ManaLeechPermyriadSuffix2"] = { type = "Suffix", affix = "of Parching", "(0.6-0.8)% of Physical Attack Damage Leeched as Mana", statOrder = { 1580 }, level = 70, group = "ManaLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "mana", "physical", "attack" }, }, - ["ManaLeechPermyriadEssence7"] = { type = "Prefix", affix = "Essences", "(0.9-1)% of Physical Attack Damage Leeched as Mana", statOrder = { 1580 }, level = 82, group = "ManaLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, }, - ["ManaLeechPermyriadSuffixEssence7"] = { type = "Suffix", affix = "of the Essence", "(0.9-1)% of Physical Attack Damage Leeched as Mana", statOrder = { 1580 }, level = 82, group = "ManaLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, }, - ["LocalManaLeechPermyriadEssence5"] = { type = "Prefix", affix = "Essences", "(0.2-0.4)% of Physical Attack Damage Leeched as Mana", statOrder = { 1582 }, level = 58, group = "ManaLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, }, - ["LocalManaLeechPermyriadEssence6"] = { type = "Prefix", affix = "Essences", "(0.6-0.8)% of Physical Attack Damage Leeched as Mana", statOrder = { 1582 }, level = 74, group = "ManaLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, }, - ["LocalManaLeechPermyriadEssence7"] = { type = "Prefix", affix = "Essences", "(0.9-1)% of Physical Attack Damage Leeched as Mana", statOrder = { 1582 }, level = 82, group = "ManaLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, }, - ["ItemFoundQuantityIncrease1"] = { type = "Suffix", affix = "of Collecting", "(4-8)% increased Quantity of Items found", statOrder = { 1474 }, level = 2, group = "ItemFoundQuantityIncrease", weightKey = { "default", }, weightVal = { 0 }, modTags = { "drop" }, }, - ["ItemFoundQuantityIncrease2"] = { type = "Suffix", affix = "of Gathering", "(9-12)% increased Quantity of Items found", statOrder = { 1474 }, level = 32, group = "ItemFoundQuantityIncrease", weightKey = { "default", }, weightVal = { 0 }, modTags = { "drop" }, }, - ["ItemFoundQuantityIncrease3"] = { type = "Suffix", affix = "of Hoarding", "(13-16)% increased Quantity of Items found", statOrder = { 1474 }, level = 55, group = "ItemFoundQuantityIncrease", weightKey = { "default", }, weightVal = { 0 }, modTags = { "drop" }, }, - ["ItemFoundQuantityIncrease4"] = { type = "Suffix", affix = "of Amassment", "(17-20)% increased Quantity of Items found", statOrder = { 1474 }, level = 77, group = "ItemFoundQuantityIncrease", weightKey = { "default", }, weightVal = { 0 }, modTags = { "drop" }, }, - ["ItemFoundRarityIncrease1"] = { type = "Suffix", affix = "of Plunder", "(6-10)% increased Rarity of Items found", statOrder = { 1478 }, level = 3, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "gloves", "boots", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "drop" }, }, - ["ItemFoundRarityIncrease2"] = { type = "Suffix", affix = "of Raiding", "(11-14)% increased Rarity of Items found", statOrder = { 1478 }, level = 30, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "gloves", "boots", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "drop" }, }, - ["ItemFoundRarityIncrease3"] = { type = "Suffix", affix = "of Archaeology", "(15-20)% increased Rarity of Items found", statOrder = { 1478 }, level = 53, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "drop" }, }, - ["ItemFoundRarityIncrease4"] = { type = "Suffix", affix = "of Excavation", "(21-26)% increased Rarity of Items found", statOrder = { 1478 }, level = 75, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "drop" }, }, - ["ItemFoundRarityIncreasePrefix1"] = { type = "Prefix", affix = "Magpie's", "(8-12)% increased Rarity of Items found", statOrder = { 1478 }, level = 20, group = "ItemFoundRarityIncreasePrefix", weightKey = { "ring", "amulet", "gloves", "boots", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "drop" }, }, - ["ItemFoundRarityIncreasePrefix2"] = { type = "Prefix", affix = "Pirate's", "(13-18)% increased Rarity of Items found", statOrder = { 1478 }, level = 39, group = "ItemFoundRarityIncreasePrefix", weightKey = { "ring", "amulet", "gloves", "boots", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "drop" }, }, - ["ItemFoundRarityIncreasePrefix3"] = { type = "Prefix", affix = "Dragon's", "(19-24)% increased Rarity of Items found", statOrder = { 1478 }, level = 62, group = "ItemFoundRarityIncreasePrefix", weightKey = { "ring", "amulet", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "drop" }, }, - ["ItemFoundRarityIncreasePrefix4_"] = { type = "Prefix", affix = "Perandus'", "(25-28)% increased Rarity of Items found", statOrder = { 1478 }, level = 84, group = "ItemFoundRarityIncreasePrefix", weightKey = { "ring", "amulet", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "drop" }, }, - ["IncreasedCastSpeed1"] = { type = "Suffix", affix = "of Talent", "(5-8)% increased Cast Speed", statOrder = { 1330 }, level = 2, group = "IncreasedCastSpeed", weightKey = { "wand", "staff", "attack_dagger", "dagger", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 0, 0, 1000, 1000, 800, 800, 0 }, modTags = { "caster", "speed" }, }, - ["IncreasedCastSpeed2"] = { type = "Suffix", affix = "of Nimbleness", "(9-12)% increased Cast Speed", statOrder = { 1330 }, level = 15, group = "IncreasedCastSpeed", weightKey = { "wand", "staff", "attack_dagger", "dagger", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 0, 0, 1000, 1000, 800, 800, 0 }, modTags = { "caster", "speed" }, }, - ["IncreasedCastSpeed3"] = { type = "Suffix", affix = "of Expertise", "(13-16)% increased Cast Speed", statOrder = { 1330 }, level = 30, group = "IncreasedCastSpeed", weightKey = { "wand", "staff", "attack_dagger", "dagger", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 0, 0, 1000, 1000, 800, 800, 0 }, modTags = { "caster", "speed" }, }, - ["IncreasedCastSpeed4"] = { type = "Suffix", affix = "of Legerdemain", "(17-20)% increased Cast Speed", statOrder = { 1330 }, level = 40, group = "IncreasedCastSpeed", weightKey = { "wand", "staff", "attack_dagger", "dagger", "sceptre", "amulet", "default", }, weightVal = { 1000, 0, 0, 1000, 1000, 800, 0 }, modTags = { "caster", "speed" }, }, - ["IncreasedCastSpeed5"] = { type = "Suffix", affix = "of Prestidigitation", "(21-24)% increased Cast Speed", statOrder = { 1330 }, level = 55, group = "IncreasedCastSpeed", weightKey = { "wand", "staff", "attack_dagger", "dagger", "sceptre", "default", }, weightVal = { 1000, 0, 0, 1000, 1000, 0 }, modTags = { "caster", "speed" }, }, - ["IncreasedCastSpeed6"] = { type = "Suffix", affix = "of Sortilege", "(25-28)% increased Cast Speed", statOrder = { 1330 }, level = 72, group = "IncreasedCastSpeed", weightKey = { "wand", "staff", "attack_dagger", "dagger", "sceptre", "default", }, weightVal = { 500, 0, 0, 500, 500, 0 }, modTags = { "caster", "speed" }, }, - ["IncreasedCastSpeed7"] = { type = "Suffix", affix = "of Finesse", "(29-32)% increased Cast Speed", statOrder = { 1330 }, level = 83, group = "IncreasedCastSpeed", weightKey = { "wand", "staff", "attack_dagger", "dagger", "sceptre", "default", }, weightVal = { 250, 0, 0, 250, 250, 0 }, modTags = { "caster", "speed" }, }, - ["IncreasedCastSpeedEssence7"] = { type = "Suffix", affix = "of the Essence", "(26-28)% increased Cast Speed", statOrder = { 1330 }, level = 82, group = "IncreasedCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "speed" }, }, - ["IncreasedCastSpeedTwoHand1_"] = { type = "Suffix", affix = "of Talent", "(8-13)% increased Cast Speed", statOrder = { 1330 }, level = 2, group = "IncreasedCastSpeed", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, }, - ["IncreasedCastSpeedTwoHand2"] = { type = "Suffix", affix = "of Nimbleness", "(14-19)% increased Cast Speed", statOrder = { 1330 }, level = 15, group = "IncreasedCastSpeed", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, }, - ["IncreasedCastSpeedTwoHand3"] = { type = "Suffix", affix = "of Expertise", "(20-25)% increased Cast Speed", statOrder = { 1330 }, level = 30, group = "IncreasedCastSpeed", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, }, - ["IncreasedCastSpeedTwoHand4"] = { type = "Suffix", affix = "of Legerdemain", "(26-31)% increased Cast Speed", statOrder = { 1330 }, level = 40, group = "IncreasedCastSpeed", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, }, - ["IncreasedCastSpeedTwoHand5"] = { type = "Suffix", affix = "of Prestidigitation", "(32-37)% increased Cast Speed", statOrder = { 1330 }, level = 55, group = "IncreasedCastSpeed", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, }, - ["IncreasedCastSpeedTwoHand6"] = { type = "Suffix", affix = "of Sortilege", "(38-43)% increased Cast Speed", statOrder = { 1330 }, level = 72, group = "IncreasedCastSpeed", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster", "speed" }, }, - ["IncreasedCastSpeedTwoHand7"] = { type = "Suffix", affix = "of Finesse", "(44-49)% increased Cast Speed", statOrder = { 1330 }, level = 83, group = "IncreasedCastSpeed", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0 }, modTags = { "caster", "speed" }, }, - ["IncreasedCastSpeedTwoHandEssence7"] = { type = "Suffix", affix = "of the Essence", "(39-42)% increased Cast Speed", statOrder = { 1330 }, level = 82, group = "IncreasedCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "speed" }, }, - ["IncreasedCastSpeedEnhancedMod_"] = { type = "Suffix", affix = "of Tacati", "Adds (17-24) to (36-40) Chaos Damage to Spells", "(29-32)% increased Cast Speed", statOrder = { 1291, 1330 }, level = 1, group = "IncreasedCastSpeedAddedChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster", "speed" }, }, - ["IncreasedCastSpeedTwoHandEnhancedMod"] = { type = "Suffix", affix = "of Tacati", "Adds (24-32) to (49-57) Chaos Damage to Spells", "(44-49)% increased Cast Speed", statOrder = { 1291, 1330 }, level = 1, group = "IncreasedCastSpeedAddedChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster", "speed" }, }, - ["IncreasedCastSpeedRing3"] = { type = "Suffix", affix = "of the Essence", "(13-14)% increased Cast Speed", statOrder = { 1330 }, level = 30, group = "IncreasedCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "speed" }, }, - ["IncreasedCastSpeedRing4"] = { type = "Suffix", affix = "of the Essence", "(15-16)% increased Cast Speed", statOrder = { 1330 }, level = 40, group = "IncreasedCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "speed" }, }, - ["IncreasedCastSpeedFishing"] = { type = "Suffix", affix = "of Casting", "(24-28)% increased Cast Speed", statOrder = { 1330 }, level = 10, group = "IncreasedCastSpeedFishing", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { "red_herring", "caster", "speed" }, }, - ["LocalIncreasedAttackSpeed1"] = { type = "Suffix", affix = "of Skill", "(5-7)% increased Attack Speed", statOrder = { 1297 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "speed" }, }, - ["LocalIncreasedAttackSpeed2"] = { type = "Suffix", affix = "of Ease", "(8-10)% increased Attack Speed", statOrder = { 1297 }, level = 11, group = "LocalIncreasedAttackSpeed", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "speed" }, }, - ["LocalIncreasedAttackSpeed3"] = { type = "Suffix", affix = "of Mastery", "(11-13)% increased Attack Speed", statOrder = { 1297 }, level = 22, group = "LocalIncreasedAttackSpeed", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "speed" }, }, - ["LocalIncreasedAttackSpeed4"] = { type = "Suffix", affix = "of Renown", "(14-16)% increased Attack Speed", statOrder = { 1297 }, level = 30, group = "LocalIncreasedAttackSpeed", weightKey = { "ranged", "weapon", "default", }, weightVal = { 500, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "speed" }, }, - ["LocalIncreasedAttackSpeed5"] = { type = "Suffix", affix = "of Acclaim", "(17-19)% increased Attack Speed", statOrder = { 1297 }, level = 37, group = "LocalIncreasedAttackSpeed", weightKey = { "ranged", "weapon", "default", }, weightVal = { 500, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "speed" }, }, - ["LocalIncreasedAttackSpeed6"] = { type = "Suffix", affix = "of Fame", "(20-22)% increased Attack Speed", statOrder = { 1297 }, level = 45, group = "LocalIncreasedAttackSpeed", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "speed" }, }, - ["LocalIncreasedAttackSpeed7"] = { type = "Suffix", affix = "of Infamy", "(23-25)% increased Attack Speed", statOrder = { 1297 }, level = 60, group = "LocalIncreasedAttackSpeed", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "speed" }, }, - ["LocalIncreasedAttackSpeed8"] = { type = "Suffix", affix = "of Celebration", "(26-27)% increased Attack Speed", statOrder = { 1297 }, level = 77, group = "LocalIncreasedAttackSpeed", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "speed" }, }, - ["LocalIncreasedAttackSpeedEssence7"] = { type = "Suffix", affix = "of the Essence", "(28-30)% increased Attack Speed", statOrder = { 1297 }, level = 82, group = "LocalIncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, }, - ["LocalIncreasedAttackSpeedEssenceRanged4_"] = { type = "Suffix", affix = "of the Essence", "(11-12)% increased Attack Speed", statOrder = { 1297 }, level = 42, group = "LocalIncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, }, - ["LocalIncreasedAttackSpeedEssenceRanged5"] = { type = "Suffix", affix = "of the Essence", "(13-14)% increased Attack Speed", statOrder = { 1297 }, level = 58, group = "LocalIncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, }, - ["LocalIncreasedAttackSpeedEssenceRanged6"] = { type = "Suffix", affix = "of the Essence", "(15-16)% increased Attack Speed", statOrder = { 1297 }, level = 74, group = "LocalIncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, }, - ["LocalIncreasedAttackSpeedEssenceRanged7"] = { type = "Suffix", affix = "of the Essence", "(17-18)% increased Attack Speed", statOrder = { 1297 }, level = 82, group = "LocalIncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, }, - ["LocalIncreasedAttackSpeedEnhancedMod"] = { type = "Suffix", affix = "of Tacati", "Adds (23-36) to (49-61) Chaos Damage", "(26-27)% increased Attack Speed", statOrder = { 1274, 1297 }, level = 1, group = "LocalIncreasedAttackSpeedAddedChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack", "speed" }, }, - ["LocalIncreasedAttackSpeedRangedEnhancedMod_"] = { type = "Suffix", affix = "of Tacati", "Adds (23-36) to (49-61) Chaos Damage", "(14-16)% increased Attack Speed", statOrder = { 1274, 1297 }, level = 1, group = "LocalIncreasedAttackSpeedAddedChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack", "speed" }, }, - ["IncreasedAttackSpeed1"] = { type = "Suffix", affix = "of Skill", "(5-7)% increased Attack Speed", statOrder = { 1294 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "ring", "gloves", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attack", "speed" }, }, - ["IncreasedAttackSpeed2"] = { type = "Suffix", affix = "of Ease", "(8-10)% increased Attack Speed", statOrder = { 1294 }, level = 11, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "attack", "speed" }, }, - ["IncreasedAttackSpeed3"] = { type = "Suffix", affix = "of Mastery", "(11-13)% increased Attack Speed", statOrder = { 1294 }, level = 22, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "attack", "speed" }, }, - ["IncreasedAttackSpeed4"] = { type = "Suffix", affix = "of Grandmastery", "(14-16)% increased Attack Speed", statOrder = { 1294 }, level = 76, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "attack", "speed" }, }, - ["IncreasedAttackSpeedEssenceGloves7"] = { type = "Suffix", affix = "of the Essence", "(17-18)% increased Attack Speed", statOrder = { 1294 }, level = 82, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, }, - ["IncreasedAttackSpeedEssenceJewellery4"] = { type = "Suffix", affix = "of the Essence", "(4-5)% increased Attack Speed", statOrder = { 1294 }, level = 42, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, }, - ["IncreasedAttackSpeedEssenceJewellery5"] = { type = "Suffix", affix = "of the Essence", "(5-6)% increased Attack Speed", statOrder = { 1294 }, level = 58, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, }, - ["IncreasedAttackSpeedEssenceJewellery6"] = { type = "Suffix", affix = "of the Essence", "(6-7)% increased Attack Speed", statOrder = { 1294 }, level = 74, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, }, - ["IncreasedAttackSpeedEssenceJewellery7"] = { type = "Suffix", affix = "of the Essence", "(7-8)% increased Attack Speed", statOrder = { 1294 }, level = 82, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, }, - ["IncreasedAttackSpeedEssenceQuiver4"] = { type = "Suffix", affix = "of the Essence", "(6-7)% increased Attack Speed", statOrder = { 1294 }, level = 42, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, }, - ["IncreasedAttackSpeedEssenceQuiver5_"] = { type = "Suffix", affix = "of the Essence", "(8-9)% increased Attack Speed", statOrder = { 1294 }, level = 58, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, }, - ["IncreasedAttackSpeedEssenceQuiver6"] = { type = "Suffix", affix = "of the Essence", "(10-12)% increased Attack Speed", statOrder = { 1294 }, level = 74, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, }, - ["IncreasedAttackSpeedEssenceQuiver7___"] = { type = "Suffix", affix = "of the Essence", "(13-15)% increased Attack Speed", statOrder = { 1294 }, level = 82, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, }, - ["IncreasedAccuracy1"] = { type = "Suffix", affix = "of Calm", "+(5-15) to Accuracy Rating", statOrder = { 1317 }, level = 1, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "attack" }, }, - ["IncreasedAccuracy2"] = { type = "Suffix", affix = "of Steadiness", "+(16-60) to Accuracy Rating", statOrder = { 1317 }, level = 12, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "attack" }, }, - ["IncreasedAccuracy3"] = { type = "Suffix", affix = "of Accuracy", "+(61-100) to Accuracy Rating", statOrder = { 1317 }, level = 20, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "attack" }, }, - ["IncreasedAccuracy4"] = { type = "Suffix", affix = "of Precision", "+(101-130) to Accuracy Rating", statOrder = { 1317 }, level = 26, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "attack" }, }, - ["IncreasedAccuracy5"] = { type = "Suffix", affix = "of the Sniper", "+(131-165) to Accuracy Rating", statOrder = { 1317 }, level = 33, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "attack" }, }, - ["IncreasedAccuracy6"] = { type = "Suffix", affix = "of the Marksman", "+(166-200) to Accuracy Rating", statOrder = { 1317 }, level = 41, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "attack" }, }, - ["IncreasedAccuracy7"] = { type = "Suffix", affix = "of the Deadeye", "+(201-250) to Accuracy Rating", statOrder = { 1317 }, level = 50, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "attack" }, }, - ["IncreasedAccuracy8"] = { type = "Suffix", affix = "of the Ranger", "+(251-320) to Accuracy Rating", statOrder = { 1317 }, level = 63, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "attack" }, }, - ["IncreasedAccuracy9"] = { type = "Suffix", affix = "of the Assassin", "+(321-400) to Accuracy Rating", statOrder = { 1317 }, level = 76, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "attack" }, }, - ["IncreasedAccuracy10"] = { type = "Suffix", affix = "of Lioneye", "+(401-500) to Accuracy Rating", statOrder = { 1317 }, level = 85, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, - ["IncreasedAccuracyEssence7"] = { type = "Suffix", affix = "of the Essence", "+(401-440) to Accuracy Rating", statOrder = { 1317 }, level = 82, group = "IncreasedAccuracy", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, }, - ["IncreasedAccuracyNew1_"] = { type = "Suffix", affix = "of Steadiness", "+(50-100) to Accuracy Rating", statOrder = { 1317 }, level = 1, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 600, 600, 600, 600, 600, 600, 600, 600, 0 }, modTags = { "attack" }, }, - ["IncreasedAccuracyNew2"] = { type = "Suffix", affix = "of Precision", "+(100-165) to Accuracy Rating", statOrder = { 1317 }, level = 20, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "attack" }, }, - ["IncreasedAccuracyNew3"] = { type = "Suffix", affix = "of the Sniper", "+(166-250) to Accuracy Rating", statOrder = { 1317 }, level = 40, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "attack" }, }, - ["IncreasedAccuracyNew4"] = { type = "Suffix", affix = "of the Marksman", "+(251-350) to Accuracy Rating", statOrder = { 1317 }, level = 60, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "attack" }, }, - ["IncreasedAccuracyNew5_"] = { type = "Suffix", affix = "of the Ranger", "+(351-480) to Accuracy Rating", statOrder = { 1317 }, level = 75, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "attack" }, }, - ["IncreasedAccuracyNew6"] = { type = "Suffix", affix = "of Lioneye", "+(481-600) to Accuracy Rating", statOrder = { 1317 }, level = 85, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "attack" }, }, - ["LifeRegeneration1"] = { type = "Suffix", affix = "of the Newt", "Regenerate (1-2) Life per second", statOrder = { 1456 }, level = 1, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "default", }, weightVal = { 0, 0, 0, 1000 }, modTags = { "flat_life_regen", "resource", "life" }, }, - ["LifeRegeneration2"] = { type = "Suffix", affix = "of the Lizard", "Regenerate (2.1-8) Life per second", statOrder = { 1456 }, level = 7, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "default", }, weightVal = { 0, 0, 0, 1000 }, modTags = { "flat_life_regen", "resource", "life" }, }, - ["LifeRegeneration3"] = { type = "Suffix", affix = "of the Flatworm", "Regenerate (8.1-16) Life per second", statOrder = { 1456 }, level = 19, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "default", }, weightVal = { 0, 0, 0, 1000 }, modTags = { "flat_life_regen", "resource", "life" }, }, - ["LifeRegeneration4"] = { type = "Suffix", affix = "of the Starfish", "Regenerate (16.1-24) Life per second", statOrder = { 1456 }, level = 31, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "default", }, weightVal = { 0, 0, 0, 1000 }, modTags = { "flat_life_regen", "resource", "life" }, }, - ["LifeRegeneration5"] = { type = "Suffix", affix = "of the Hydra", "Regenerate (24.1-32) Life per second", statOrder = { 1456 }, level = 44, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "default", }, weightVal = { 0, 0, 0, 1000 }, modTags = { "flat_life_regen", "resource", "life" }, }, - ["LifeRegeneration6"] = { type = "Suffix", affix = "of the Troll", "Regenerate (32.1-48) Life per second", statOrder = { 1456 }, level = 55, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "default", }, weightVal = { 0, 0, 0, 1000 }, modTags = { "flat_life_regen", "resource", "life" }, }, - ["LifeRegeneration7"] = { type = "Suffix", affix = "of Ryslatha", "Regenerate (48.1-64) Life per second", statOrder = { 1456 }, level = 68, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "default", }, weightVal = { 0, 0, 0, 1000 }, modTags = { "flat_life_regen", "resource", "life" }, }, - ["LifeRegeneration8_"] = { type = "Suffix", affix = "of the Phoenix", "Regenerate (64.1-96) Life per second", statOrder = { 1456 }, level = 74, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "ring", "default", }, weightVal = { 0, 0, 0, 0, 1000 }, modTags = { "flat_life_regen", "resource", "life" }, }, - ["LifeRegeneration9"] = { type = "Suffix", affix = "of Recuperation", "Regenerate (96.1-128) Life per second", statOrder = { 1456 }, level = 78, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "ring", "amulet", "boots", "gloves", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000 }, modTags = { "flat_life_regen", "resource", "life" }, }, - ["LifeRegeneration10__"] = { type = "Suffix", affix = "of Life-giving", "Regenerate (128.1-152) Life per second", statOrder = { 1456 }, level = 83, group = "LifeRegeneration", weightKey = { "shield", "body_armour", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "flat_life_regen", "resource", "life" }, }, - ["LifeRegeneration11____"] = { type = "Suffix", affix = "of Convalescence", "Regenerate (152.1-176) Life per second", statOrder = { 1456 }, level = 86, group = "LifeRegeneration", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "flat_life_regen", "resource", "life" }, }, - ["LifeRegenerationEssence2"] = { type = "Suffix", affix = "of the Essence", "Regenerate (2-5) Life per second", statOrder = { 1456 }, level = 10, group = "LifeRegeneration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flat_life_regen", "resource", "life" }, }, - ["LifeRegenerationEssence7"] = { type = "Suffix", affix = "of the Essence", "Regenerate (30-40) Life per second", statOrder = { 1456 }, level = 82, group = "LifeRegeneration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flat_life_regen", "resource", "life" }, }, - ["LifeRegenerationEnhancedMod"] = { type = "Suffix", affix = "of Guatelitzi", "Regenerate (16-20) Life per second", "Regenerate 0.4% of Life per second", statOrder = { 1456, 1823 }, level = 1, group = "LifeRegenerationAndPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, - ["LifeRegenerationPercent1"] = { type = "Suffix", affix = "of Youthfulness", "Regenerate (0.4-0.5)% of Life per second", statOrder = { 1823 }, level = 18, group = "LifeRegenerationRatePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, - ["LifeRegenerationPercent2__"] = { type = "Suffix", affix = "of Vitality", "Regenerate (0.6-0.7)% of Life per second", statOrder = { 1823 }, level = 36, group = "LifeRegenerationRatePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, - ["LifeRegenerationPercent3_"] = { type = "Suffix", affix = "of Longevity", "Regenerate (0.8-0.9)% of Life per second", statOrder = { 1823 }, level = 60, group = "LifeRegenerationRatePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, - ["LifeRegenerationPercent4"] = { type = "Suffix", affix = "of Immortality", "Regenerate (1-1.1)% of Life per second", statOrder = { 1823 }, level = 81, group = "LifeRegenerationRatePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, - ["ManaRegeneration1"] = { type = "Suffix", affix = "of Excitement", "(10-19)% increased Mana Regeneration Rate", statOrder = { 1466 }, level = 2, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["ManaRegeneration2"] = { type = "Suffix", affix = "of Joy", "(20-29)% increased Mana Regeneration Rate", statOrder = { 1466 }, level = 18, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["ManaRegeneration3"] = { type = "Suffix", affix = "of Elation", "(30-39)% increased Mana Regeneration Rate", statOrder = { 1466 }, level = 29, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["ManaRegeneration4"] = { type = "Suffix", affix = "of Bliss", "(40-49)% increased Mana Regeneration Rate", statOrder = { 1466 }, level = 42, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["ManaRegeneration5"] = { type = "Suffix", affix = "of Euphoria", "(50-59)% increased Mana Regeneration Rate", statOrder = { 1466 }, level = 55, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["ManaRegeneration6"] = { type = "Suffix", affix = "of Nirvana", "(60-69)% increased Mana Regeneration Rate", statOrder = { 1466 }, level = 79, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["ManaRegenerationTwoHand1"] = { type = "Suffix", affix = "of Excitement", "(20-32)% increased Mana Regeneration Rate", statOrder = { 1466 }, level = 2, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, }, - ["ManaRegenerationTwoHand2"] = { type = "Suffix", affix = "of Joy", "(33-45)% increased Mana Regeneration Rate", statOrder = { 1466 }, level = 18, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, }, - ["ManaRegenerationTwoHand3"] = { type = "Suffix", affix = "of Elation", "(46-58)% increased Mana Regeneration Rate", statOrder = { 1466 }, level = 29, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, }, - ["ManaRegenerationTwoHand4"] = { type = "Suffix", affix = "of Bliss", "(59-72)% increased Mana Regeneration Rate", statOrder = { 1466 }, level = 42, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, }, - ["ManaRegenerationTwoHand5"] = { type = "Suffix", affix = "of Euphoria", "(73-85)% increased Mana Regeneration Rate", statOrder = { 1466 }, level = 55, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, }, - ["ManaRegenerationTwoHand6"] = { type = "Suffix", affix = "of Nirvana", "(86-105)% increased Mana Regeneration Rate", statOrder = { 1466 }, level = 79, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, }, - ["ManaRegenerationEssence7_"] = { type = "Suffix", affix = "of the Essence", "(70-76)% increased Mana Regeneration Rate", statOrder = { 1466 }, level = 82, group = "ManaRegeneration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, - ["StunThresholdReduction1"] = { type = "Suffix", affix = "of the Pugilist", "(5-7)% reduced Enemy Stun Threshold", statOrder = { 1400 }, level = 5, group = "StunThresholdReduction", weightKey = { "mace", "sceptre", "staff", "sword", "axe", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["StunThresholdReduction2"] = { type = "Suffix", affix = "of the Brawler", "(8-9)% reduced Enemy Stun Threshold", statOrder = { 1400 }, level = 20, group = "StunThresholdReduction", weightKey = { "mace", "sceptre", "staff", "sword", "axe", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["StunThresholdReduction3"] = { type = "Suffix", affix = "of the Boxer", "(10-11)% reduced Enemy Stun Threshold", statOrder = { 1400 }, level = 30, group = "StunThresholdReduction", weightKey = { "mace", "sceptre", "staff", "sword", "axe", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["StunThresholdReduction4"] = { type = "Suffix", affix = "of the Combatant", "(12-13)% reduced Enemy Stun Threshold", statOrder = { 1400 }, level = 44, group = "StunThresholdReduction", weightKey = { "mace", "sceptre", "staff", "sword", "axe", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["StunThresholdReduction5"] = { type = "Suffix", affix = "of the Gladiator", "(14-15)% reduced Enemy Stun Threshold", statOrder = { 1400 }, level = 58, group = "StunThresholdReduction", weightKey = { "mace", "sceptre", "staff", "sword", "axe", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["StunThresholdReductionEssence7"] = { type = "Suffix", affix = "of the Essence", "(16-17)% reduced Enemy Stun Threshold", statOrder = { 1400 }, level = 82, group = "StunThresholdReduction", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["CriticalStrikeChance1"] = { type = "Suffix", affix = "of Needling", "(10-14)% increased Global Critical Strike Chance", statOrder = { 1343 }, level = 5, group = "CriticalStrikeChance", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "critical" }, }, - ["CriticalStrikeChance2"] = { type = "Suffix", affix = "of Stinging", "(15-19)% increased Global Critical Strike Chance", statOrder = { 1343 }, level = 20, group = "CriticalStrikeChance", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "critical" }, }, - ["CriticalStrikeChance3"] = { type = "Suffix", affix = "of Piercing", "(20-24)% increased Global Critical Strike Chance", statOrder = { 1343 }, level = 30, group = "CriticalStrikeChance", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "critical" }, }, - ["CriticalStrikeChance4"] = { type = "Suffix", affix = "of Rupturing", "(25-29)% increased Global Critical Strike Chance", statOrder = { 1343 }, level = 44, group = "CriticalStrikeChance", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "critical" }, }, - ["CriticalStrikeChance5"] = { type = "Suffix", affix = "of Penetrating", "(30-34)% increased Global Critical Strike Chance", statOrder = { 1343 }, level = 58, group = "CriticalStrikeChance", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "critical" }, }, - ["CriticalStrikeChance6"] = { type = "Suffix", affix = "of Incision", "(35-38)% increased Global Critical Strike Chance", statOrder = { 1343 }, level = 72, group = "CriticalStrikeChance", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "critical" }, }, - ["CriticalStrikeChance7"] = { type = "Suffix", affix = "of Rending", "(39-44)% increased Global Critical Strike Chance", statOrder = { 1343 }, level = 85, group = "CriticalStrikeChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, }, - ["CriticalStrikeChanceWithBows1_"] = { type = "Suffix", affix = "of Needling", "(10-14)% increased Critical Strike Chance with Bows", statOrder = { 1349 }, level = 5, group = "CriticalStrikeChanceWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "critical" }, }, - ["CriticalStrikeChanceWithBows2_"] = { type = "Suffix", affix = "of Stinging", "(15-19)% increased Critical Strike Chance with Bows", statOrder = { 1349 }, level = 20, group = "CriticalStrikeChanceWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "critical" }, }, - ["CriticalStrikeChanceWithBows3"] = { type = "Suffix", affix = "of Piercing", "(20-24)% increased Critical Strike Chance with Bows", statOrder = { 1349 }, level = 30, group = "CriticalStrikeChanceWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "critical" }, }, - ["CriticalStrikeChanceWithBows4"] = { type = "Suffix", affix = "of Rupturing", "(25-29)% increased Critical Strike Chance with Bows", statOrder = { 1349 }, level = 44, group = "CriticalStrikeChanceWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "critical" }, }, - ["CriticalStrikeChanceWithBows5_"] = { type = "Suffix", affix = "of Penetrating", "(30-34)% increased Critical Strike Chance with Bows", statOrder = { 1349 }, level = 58, group = "CriticalStrikeChanceWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "critical" }, }, - ["CriticalStrikeChanceWithBows6"] = { type = "Suffix", affix = "of Incision", "(35-38)% increased Critical Strike Chance with Bows", statOrder = { 1349 }, level = 72, group = "CriticalStrikeChanceWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "critical" }, }, - ["CriticalStrikeChanceWithBows7"] = { type = "Suffix", affix = "of Rending", "(39-44)% increased Critical Strike Chance with Bows", statOrder = { 1349 }, level = 85, group = "CriticalStrikeChanceWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "critical" }, }, - ["CriticalStrikeChanceEssence7"] = { type = "Suffix", affix = "of the Essence", "(39-42)% increased Global Critical Strike Chance", statOrder = { 1343 }, level = 82, group = "CriticalStrikeChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, }, - ["CriticalStrikeChanceEssenceGloves4"] = { type = "Suffix", affix = "of the Essence", "(15-17)% increased Global Critical Strike Chance", statOrder = { 1343 }, level = 42, group = "CriticalStrikeChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, }, - ["CriticalStrikeChanceEssenceGloves5"] = { type = "Suffix", affix = "of the Essence", "(18-20)% increased Global Critical Strike Chance", statOrder = { 1343 }, level = 58, group = "CriticalStrikeChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, }, - ["CriticalStrikeChanceEssenceGloves6"] = { type = "Suffix", affix = "of the Essence", "(21-23)% increased Global Critical Strike Chance", statOrder = { 1343 }, level = 74, group = "CriticalStrikeChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, }, - ["CriticalStrikeChanceEssenceGloves7"] = { type = "Suffix", affix = "of the Essence", "(24-26)% increased Global Critical Strike Chance", statOrder = { 1343 }, level = 82, group = "CriticalStrikeChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, }, - ["FireResist1"] = { type = "Suffix", affix = "of the Whelpling", "+(6-11)% to Fire Resistance", statOrder = { 1507 }, level = 1, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["FireResist2"] = { type = "Suffix", affix = "of the Salamander", "+(12-17)% to Fire Resistance", statOrder = { 1507 }, level = 12, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["FireResist3"] = { type = "Suffix", affix = "of the Drake", "+(18-23)% to Fire Resistance", statOrder = { 1507 }, level = 24, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["FireResist4"] = { type = "Suffix", affix = "of the Kiln", "+(24-29)% to Fire Resistance", statOrder = { 1507 }, level = 36, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["FireResist5"] = { type = "Suffix", affix = "of the Furnace", "+(30-35)% to Fire Resistance", statOrder = { 1507 }, level = 48, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["FireResist6"] = { type = "Suffix", affix = "of the Volcano", "+(36-41)% to Fire Resistance", statOrder = { 1507 }, level = 60, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["FireResist7"] = { type = "Suffix", affix = "of the Magma", "+(42-45)% to Fire Resistance", statOrder = { 1507 }, level = 72, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["FireResist8"] = { type = "Suffix", affix = "of Tzteosh", "+(46-48)% to Fire Resistance", statOrder = { 1507 }, level = 84, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["ColdResist1"] = { type = "Suffix", affix = "of the Inuit", "+(6-11)% to Cold Resistance", statOrder = { 1513 }, level = 1, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["ColdResist2"] = { type = "Suffix", affix = "of the Seal", "+(12-17)% to Cold Resistance", statOrder = { 1513 }, level = 14, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["ColdResist3"] = { type = "Suffix", affix = "of the Penguin", "+(18-23)% to Cold Resistance", statOrder = { 1513 }, level = 26, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["ColdResist4"] = { type = "Suffix", affix = "of the Yeti", "+(24-29)% to Cold Resistance", statOrder = { 1513 }, level = 38, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["ColdResist5"] = { type = "Suffix", affix = "of the Walrus", "+(30-35)% to Cold Resistance", statOrder = { 1513 }, level = 50, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["ColdResist6"] = { type = "Suffix", affix = "of the Polar Bear", "+(36-41)% to Cold Resistance", statOrder = { 1513 }, level = 60, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["ColdResist7"] = { type = "Suffix", affix = "of the Ice", "+(42-45)% to Cold Resistance", statOrder = { 1513 }, level = 72, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["ColdResist8"] = { type = "Suffix", affix = "of Haast", "+(46-48)% to Cold Resistance", statOrder = { 1513 }, level = 84, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["LightningResist1"] = { type = "Suffix", affix = "of the Cloud", "+(6-11)% to Lightning Resistance", statOrder = { 1518 }, level = 1, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["LightningResist2"] = { type = "Suffix", affix = "of the Squall", "+(12-17)% to Lightning Resistance", statOrder = { 1518 }, level = 13, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["LightningResist3"] = { type = "Suffix", affix = "of the Storm", "+(18-23)% to Lightning Resistance", statOrder = { 1518 }, level = 25, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["LightningResist4"] = { type = "Suffix", affix = "of the Thunderhead", "+(24-29)% to Lightning Resistance", statOrder = { 1518 }, level = 37, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["LightningResist5"] = { type = "Suffix", affix = "of the Tempest", "+(30-35)% to Lightning Resistance", statOrder = { 1518 }, level = 49, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["LightningResist6"] = { type = "Suffix", affix = "of the Maelstrom", "+(36-41)% to Lightning Resistance", statOrder = { 1518 }, level = 60, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["LightningResist7"] = { type = "Suffix", affix = "of the Lightning", "+(42-45)% to Lightning Resistance", statOrder = { 1518 }, level = 72, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["LightningResist8"] = { type = "Suffix", affix = "of Ephij", "+(46-48)% to Lightning Resistance", statOrder = { 1518 }, level = 84, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["FireResistEnhancedModPhys_"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Fire Resistance", "(9-10)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 1507, 2323 }, level = 1, group = "FireResistancePhysTakenAsFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "fire", "resistance" }, }, - ["ColdResistEnhancedModPhys"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Cold Resistance", "(9-10)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 1513, 2324 }, level = 1, group = "ColdResistancePhysTakenAsCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "cold", "resistance" }, }, - ["LightningResistEnhancedModPhys"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Lightning Resistance", "(9-10)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 1518, 2325 }, level = 1, group = "LightningResistancePhysTakenAsLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "lightning", "resistance" }, }, - ["FireResistEnhancedModLeech"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Fire Resistance", "0.4% of Fire Damage Leeched as Life", statOrder = { 1507, 1551 }, level = 1, group = "FireResistanceLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "fire", "resistance" }, }, - ["ColdResistEnhancedModLeech"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Cold Resistance", "0.4% of Cold Damage Leeched as Life", statOrder = { 1513, 1556 }, level = 1, group = "ColdResistanceLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "cold", "resistance" }, }, - ["LightningResistEnhancedModLeech_"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Lightning Resistance", "0.4% of Lightning Damage Leeched as Life", statOrder = { 1518, 1560 }, level = 1, group = "LightningResistanceLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "lightning", "resistance" }, }, - ["FireResistEnhancedModAilments"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Fire Resistance", "(45-52) to (75-78) added Fire Damage against Burning Enemies", statOrder = { 1507, 9801 }, level = 1, group = "FireResistanceAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "resistance" }, }, - ["ColdResistEnhancedModAilments__"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Cold Resistance", "(30-50)% increased Damage with Hits against Chilled Enemies", statOrder = { 1513, 5770 }, level = 1, group = "ColdResistanceAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "resistance" }, }, - ["LightningResistEnhancedModAilments"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Lightning Resistance", "(40-60)% increased Critical Strike Chance against Shocked Enemies", statOrder = { 1518, 5617 }, level = 1, group = "LightningResistanceAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "resistance", "critical" }, }, - ["ChaosResist1"] = { type = "Suffix", affix = "of the Lost", "+(5-10)% to Chaos Resistance", statOrder = { 1522 }, level = 16, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 250, 250, 250, 250, 250, 0 }, modTags = { "chaos", "resistance" }, }, - ["ChaosResist2"] = { type = "Suffix", affix = "of Banishment", "+(11-15)% to Chaos Resistance", statOrder = { 1522 }, level = 30, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 250, 250, 250, 250, 250, 0 }, modTags = { "chaos", "resistance" }, }, - ["ChaosResist3"] = { type = "Suffix", affix = "of Eviction", "+(16-20)% to Chaos Resistance", statOrder = { 1522 }, level = 44, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 250, 250, 250, 250, 250, 0 }, modTags = { "chaos", "resistance" }, }, - ["ChaosResist4"] = { type = "Suffix", affix = "of Expulsion", "+(21-25)% to Chaos Resistance", statOrder = { 1522 }, level = 56, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 250, 250, 250, 250, 250, 0 }, modTags = { "chaos", "resistance" }, }, - ["ChaosResist5"] = { type = "Suffix", affix = "of Exile", "+(26-30)% to Chaos Resistance", statOrder = { 1522 }, level = 65, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 250, 250, 250, 250, 250, 0 }, modTags = { "chaos", "resistance" }, }, - ["ChaosResist6"] = { type = "Suffix", affix = "of Bameth", "+(31-35)% to Chaos Resistance", statOrder = { 1522 }, level = 81, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 250, 250, 250, 250, 250, 0 }, modTags = { "chaos", "resistance" }, }, - ["ChaosResistEnhancedMod_"] = { type = "Suffix", affix = "of Tacati", "+(31-35)% to Chaos Resistance", "(9-10)% reduced Chaos Damage taken over time", statOrder = { 1522, 1827 }, level = 1, group = "ChaosResistanceDamageOverTime", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "resistance" }, }, - ["AllResistances1"] = { type = "Suffix", affix = "of the Crystal", "+(3-5)% to all Elemental Resistances", statOrder = { 1501 }, level = 12, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "elemental", "resistance" }, }, - ["AllResistances2"] = { type = "Suffix", affix = "of the Prism", "+(6-8)% to all Elemental Resistances", statOrder = { 1501 }, level = 24, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "elemental", "resistance" }, }, - ["AllResistances3"] = { type = "Suffix", affix = "of the Kaleidoscope", "+(9-11)% to all Elemental Resistances", statOrder = { 1501 }, level = 36, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "elemental", "resistance" }, }, - ["AllResistances4"] = { type = "Suffix", affix = "of Variegation", "+(12-14)% to all Elemental Resistances", statOrder = { 1501 }, level = 48, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "elemental", "resistance" }, }, - ["AllResistances5"] = { type = "Suffix", affix = "of the Rainbow", "+(15-16)% to all Elemental Resistances", statOrder = { 1501 }, level = 60, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "elemental", "resistance" }, }, - ["AllResistances6"] = { type = "Suffix", affix = "of the Span", "+(17-18)% to all Elemental Resistances", statOrder = { 1501 }, level = 85, group = "AllResistances", weightKey = { "shield", "amulet", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "resistance" }, }, - ["CriticalMultiplier1"] = { type = "Suffix", affix = "of Ire", "+(8-12)% to Global Critical Strike Multiplier", statOrder = { 1372 }, level = 8, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage", "critical" }, }, - ["CriticalMultiplier2"] = { type = "Suffix", affix = "of Anger", "+(13-19)% to Global Critical Strike Multiplier", statOrder = { 1372 }, level = 21, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage", "critical" }, }, - ["CriticalMultiplier3"] = { type = "Suffix", affix = "of Rage", "+(20-24)% to Global Critical Strike Multiplier", statOrder = { 1372 }, level = 31, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage", "critical" }, }, - ["CriticalMultiplier4"] = { type = "Suffix", affix = "of Fury", "+(25-29)% to Global Critical Strike Multiplier", statOrder = { 1372 }, level = 45, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage", "critical" }, }, - ["CriticalMultiplier5"] = { type = "Suffix", affix = "of Ferocity", "+(30-34)% to Global Critical Strike Multiplier", statOrder = { 1372 }, level = 59, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage", "critical" }, }, - ["CriticalMultiplier6"] = { type = "Suffix", affix = "of Destruction", "+(35-38)% to Global Critical Strike Multiplier", statOrder = { 1372 }, level = 74, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage", "critical" }, }, - ["CriticalMultiplierWithBows1"] = { type = "Suffix", affix = "of Ire", "+(8-12)% to Critical Strike Multiplier with Bows", statOrder = { 1379 }, level = 8, group = "CriticalStrikeMultiplierWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "attack", "critical" }, }, - ["CriticalMultiplierWithBows2"] = { type = "Suffix", affix = "of Anger", "+(13-19)% to Critical Strike Multiplier with Bows", statOrder = { 1379 }, level = 21, group = "CriticalStrikeMultiplierWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "attack", "critical" }, }, - ["CriticalMultiplierWithBows3"] = { type = "Suffix", affix = "of Rage", "+(20-24)% to Critical Strike Multiplier with Bows", statOrder = { 1379 }, level = 31, group = "CriticalStrikeMultiplierWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "attack", "critical" }, }, - ["CriticalMultiplierWithBows4__"] = { type = "Suffix", affix = "of Fury", "+(25-29)% to Critical Strike Multiplier with Bows", statOrder = { 1379 }, level = 45, group = "CriticalStrikeMultiplierWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "attack", "critical" }, }, - ["CriticalMultiplierWithBows5_"] = { type = "Suffix", affix = "of Ferocity", "+(30-34)% to Critical Strike Multiplier with Bows", statOrder = { 1379 }, level = 59, group = "CriticalStrikeMultiplierWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "attack", "critical" }, }, - ["CriticalMultiplierWithBows6"] = { type = "Suffix", affix = "of Destruction", "+(35-38)% to Critical Strike Multiplier with Bows", statOrder = { 1379 }, level = 74, group = "CriticalStrikeMultiplierWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "attack", "critical" }, }, - ["CriitcalMultiplierEssence7"] = { type = "Suffix", affix = "of the Essence", "+(35-41)% to Global Critical Strike Multiplier", statOrder = { 1372 }, level = 82, group = "CriticalStrikeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "critical" }, }, - ["CriticalMultiplierEssenceRing5_"] = { type = "Suffix", affix = "of the Essence", "+(15-17)% to Global Critical Strike Multiplier", statOrder = { 1372 }, level = 58, group = "CriticalStrikeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "critical" }, }, - ["CriticalMultiplierEssenceRing6_"] = { type = "Suffix", affix = "of the Essence", "+(18-20)% to Global Critical Strike Multiplier", statOrder = { 1372 }, level = 74, group = "CriticalStrikeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "critical" }, }, - ["CriticalMultiplierEssenceRing7"] = { type = "Suffix", affix = "of the Essence", "+(21-25)% to Global Critical Strike Multiplier", statOrder = { 1372 }, level = 82, group = "CriticalStrikeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "critical" }, }, - ["StunRecovery1"] = { type = "Suffix", affix = "of Thick Skin", "(11-13)% increased Stun and Block Recovery", statOrder = { 1781 }, level = 1, group = "StunRecovery", weightKey = { "gloves", "armour", "belt", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, - ["StunRecovery2"] = { type = "Suffix", affix = "of Stone Skin", "(14-16)% increased Stun and Block Recovery", statOrder = { 1781 }, level = 17, group = "StunRecovery", weightKey = { "gloves", "armour", "belt", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, - ["StunRecovery3"] = { type = "Suffix", affix = "of Iron Skin", "(17-19)% increased Stun and Block Recovery", statOrder = { 1781 }, level = 28, group = "StunRecovery", weightKey = { "gloves", "armour", "belt", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, - ["StunRecovery4"] = { type = "Suffix", affix = "of Steel Skin", "(20-22)% increased Stun and Block Recovery", statOrder = { 1781 }, level = 42, group = "StunRecovery", weightKey = { "gloves", "armour", "belt", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, - ["StunRecovery5"] = { type = "Suffix", affix = "of Adamantite Skin", "(23-25)% increased Stun and Block Recovery", statOrder = { 1781 }, level = 56, group = "StunRecovery", weightKey = { "gloves", "armour", "belt", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, - ["StunRecovery6"] = { type = "Suffix", affix = "of Corundum Skin", "(26-28)% increased Stun and Block Recovery", statOrder = { 1781 }, level = 79, group = "StunRecovery", weightKey = { "gloves", "armour", "belt", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, - ["StunRecoveryEssence7"] = { type = "Suffix", affix = "of the Essence", "(29-34)% increased Stun and Block Recovery", statOrder = { 1781 }, level = 82, group = "StunRecovery", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["StunDuration1"] = { type = "Suffix", affix = "of Impact", "(11-15)% increased Stun Duration on Enemies", statOrder = { 1744 }, level = 5, group = "StunDurationIncreasePercent", weightKey = { "weapon", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, }, - ["StunDuration2"] = { type = "Suffix", affix = "of Dazing", "(16-20)% increased Stun Duration on Enemies", statOrder = { 1744 }, level = 18, group = "StunDurationIncreasePercent", weightKey = { "weapon", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, }, - ["StunDuration3"] = { type = "Suffix", affix = "of Stunning", "(21-25)% increased Stun Duration on Enemies", statOrder = { 1744 }, level = 30, group = "StunDurationIncreasePercent", weightKey = { "weapon", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, }, - ["StunDuration4"] = { type = "Suffix", affix = "of Slamming", "(26-30)% increased Stun Duration on Enemies", statOrder = { 1744 }, level = 44, group = "StunDurationIncreasePercent", weightKey = { "weapon", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, }, - ["StunDuration5"] = { type = "Suffix", affix = "of Staggering", "(31-35)% increased Stun Duration on Enemies", statOrder = { 1744 }, level = 58, group = "StunDurationIncreasePercent", weightKey = { "weapon", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, }, - ["StunDurationEssence7"] = { type = "Suffix", affix = "of the Essence", "(36-39)% increased Stun Duration on Enemies", statOrder = { 1744 }, level = 82, group = "StunDurationIncreasePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["SpellCriticalStrikeChance1"] = { type = "Suffix", affix = "of Menace", "(10-19)% increased Spell Critical Strike Chance", statOrder = { 1342 }, level = 11, group = "SpellCriticalStrikeChance", weightKey = { "attack_dagger", "attack_staff", "focus", "str_int_shield", "dex_int_shield", "wand", "staff", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "caster", "critical" }, }, - ["SpellCriticalStrikeChance2"] = { type = "Suffix", affix = "of Havoc", "(20-39)% increased Spell Critical Strike Chance", statOrder = { 1342 }, level = 21, group = "SpellCriticalStrikeChance", weightKey = { "attack_dagger", "attack_staff", "focus", "str_int_shield", "dex_int_shield", "wand", "staff", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "caster", "critical" }, }, - ["SpellCriticalStrikeChance3"] = { type = "Suffix", affix = "of Disaster", "(40-59)% increased Spell Critical Strike Chance", statOrder = { 1342 }, level = 28, group = "SpellCriticalStrikeChance", weightKey = { "attack_dagger", "attack_staff", "focus", "str_int_shield", "dex_int_shield", "wand", "staff", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "caster", "critical" }, }, - ["SpellCriticalStrikeChance4"] = { type = "Suffix", affix = "of Calamity", "(60-79)% increased Spell Critical Strike Chance", statOrder = { 1342 }, level = 41, group = "SpellCriticalStrikeChance", weightKey = { "attack_dagger", "attack_staff", "focus", "str_int_shield", "dex_int_shield", "wand", "staff", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "caster", "critical" }, }, - ["SpellCriticalStrikeChance5"] = { type = "Suffix", affix = "of Ruin", "(80-99)% increased Spell Critical Strike Chance", statOrder = { 1342 }, level = 59, group = "SpellCriticalStrikeChance", weightKey = { "attack_dagger", "attack_staff", "focus", "str_int_shield", "dex_int_shield", "wand", "staff", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "caster", "critical" }, }, - ["SpellCriticalStrikeChance6_"] = { type = "Suffix", affix = "of Unmaking", "(100-109)% increased Spell Critical Strike Chance", statOrder = { 1342 }, level = 76, group = "SpellCriticalStrikeChance", weightKey = { "attack_dagger", "attack_staff", "focus", "str_int_shield", "dex_int_shield", "wand", "staff", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "caster", "critical" }, }, - ["SpellCriticalStrikeChanceEssence7"] = { type = "Suffix", affix = "of the Essence", "(110-119)% increased Spell Critical Strike Chance", statOrder = { 1342 }, level = 82, group = "SpellCriticalStrikeChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "critical" }, }, - ["ProjectileSpeed1"] = { type = "Suffix", affix = "of Darting", "(10-17)% increased Projectile Speed", statOrder = { 1677 }, level = 14, group = "ProjectileSpeed", weightKey = { "ranged", "quiver", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "speed" }, }, - ["ProjectileSpeed2"] = { type = "Suffix", affix = "of Flight", "(18-25)% increased Projectile Speed", statOrder = { 1677 }, level = 27, group = "ProjectileSpeed", weightKey = { "ranged", "quiver", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "speed" }, }, - ["ProjectileSpeed3"] = { type = "Suffix", affix = "of Propulsion", "(26-33)% increased Projectile Speed", statOrder = { 1677 }, level = 41, group = "ProjectileSpeed", weightKey = { "ranged", "quiver", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "speed" }, }, - ["ProjectileSpeed4"] = { type = "Suffix", affix = "of the Zephyr", "(34-41)% increased Projectile Speed", statOrder = { 1677 }, level = 55, group = "ProjectileSpeed", weightKey = { "ranged", "quiver", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "speed" }, }, - ["ProjectileSpeed5"] = { type = "Suffix", affix = "of the Gale", "(42-46)% increased Projectile Speed", statOrder = { 1677 }, level = 82, group = "ProjectileSpeed", weightKey = { "ranged", "quiver", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "speed" }, }, - ["ProjectileSpeedEssence6"] = { type = "Suffix", affix = "of the Essence", "(47-52)% increased Projectile Speed", statOrder = { 1677 }, level = 28, group = "ProjectileSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, - ["LifeGainPerTarget1"] = { type = "Suffix", affix = "of Rejuvenation", "Gain 2 Life per Enemy Hit with Attacks", statOrder = { 1621 }, level = 8, group = "LifeGainPerTarget", weightKey = { "amulet", "ring", "gloves", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "resource", "life", "attack" }, }, - ["LifeGainPerTarget2"] = { type = "Suffix", affix = "of Restoration", "Gain 3 Life per Enemy Hit with Attacks", statOrder = { 1621 }, level = 20, group = "LifeGainPerTarget", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life", "attack" }, }, - ["LifeGainPerTarget3"] = { type = "Suffix", affix = "of Regrowth", "Gain 4 Life per Enemy Hit with Attacks", statOrder = { 1621 }, level = 30, group = "LifeGainPerTarget", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life", "attack" }, }, - ["LifeGainPerTarget4"] = { type = "Suffix", affix = "of Nourishment", "Gain 5 Life per Enemy Hit with Attacks", statOrder = { 1621 }, level = 40, group = "LifeGainPerTarget", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "attack" }, }, - ["LifeGainPerTargetLocal1"] = { type = "Suffix", affix = "of Rejuvenation", "Grants (2-3) Life per Enemy Hit", statOrder = { 1619 }, level = 8, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "attack" }, }, - ["LifeGainPerTargetLocal2"] = { type = "Suffix", affix = "of Restoration", "Grants (4-6) Life per Enemy Hit", statOrder = { 1619 }, level = 20, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "attack" }, }, - ["LifeGainPerTargetLocal3"] = { type = "Suffix", affix = "of Regrowth", "Grants (7-10) Life per Enemy Hit", statOrder = { 1619 }, level = 30, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "attack" }, }, - ["LifeGainPerTargetLocal4"] = { type = "Suffix", affix = "of Nourishment", "Grants (11-14) Life per Enemy Hit", statOrder = { 1619 }, level = 40, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "attack" }, }, - ["LifeGainPerTargetLocal5"] = { type = "Suffix", affix = "of Regenesis", "Grants (15-18) Life per Enemy Hit", statOrder = { 1619 }, level = 50, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "attack" }, }, - ["LifeGainPerTargetLocal6"] = { type = "Suffix", affix = "of Renewal", "Grants (19-22) Life per Enemy Hit", statOrder = { 1619 }, level = 60, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "attack" }, }, - ["LifeGainPerTargetLocal7"] = { type = "Suffix", affix = "of Recuperation", "Grants (23-26) Life per Enemy Hit", statOrder = { 1619 }, level = 70, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "attack" }, }, - ["LifeGainPerTargetLocal8"] = { type = "Suffix", affix = "of Revitalization", "Grants (27-30) Life per Enemy Hit", statOrder = { 1619 }, level = 80, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "attack" }, }, - ["FireDamagePercent1"] = { type = "Suffix", affix = "of Embers", "(10-12)% increased Fire Damage", statOrder = { 1241 }, level = 8, group = "FireDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePercent2"] = { type = "Suffix", affix = "of Coals", "(13-15)% increased Fire Damage", statOrder = { 1241 }, level = 22, group = "FireDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePercent3"] = { type = "Suffix", affix = "of Cinders", "(16-18)% increased Fire Damage", statOrder = { 1241 }, level = 36, group = "FireDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePercent4"] = { type = "Suffix", affix = "of Flames", "(19-22)% increased Fire Damage", statOrder = { 1241 }, level = 50, group = "FireDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePercent5"] = { type = "Suffix", affix = "of Immolation", "(23-26)% increased Fire Damage", statOrder = { 1241 }, level = 64, group = "FireDamagePercentage", weightKey = { "wand", "sceptre", "amulet", "default", }, weightVal = { 1000, 1000, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePercent6"] = { type = "Suffix", affix = "of Ashes", "(27-30)% increased Fire Damage", statOrder = { 1241 }, level = 76, group = "FireDamagePercentage", weightKey = { "wand", "sceptre", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePercentTwoHand1"] = { type = "Suffix", affix = "of Embers", "(18-22)% increased Fire Damage", statOrder = { 1241 }, level = 8, group = "FireDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePercentTwoHand2"] = { type = "Suffix", affix = "of Coals", "(23-28)% increased Fire Damage", statOrder = { 1241 }, level = 22, group = "FireDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePercentTwoHand3"] = { type = "Suffix", affix = "of Cinders", "(29-34)% increased Fire Damage", statOrder = { 1241 }, level = 36, group = "FireDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePercentTwoHand4"] = { type = "Suffix", affix = "of Flames", "(35-39)% increased Fire Damage", statOrder = { 1241 }, level = 50, group = "FireDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePercentTwoHand5"] = { type = "Suffix", affix = "of Immolation", "(40-44)% increased Fire Damage", statOrder = { 1241 }, level = 64, group = "FireDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePercentTwoHand6"] = { type = "Suffix", affix = "of Ashes", "(45-50)% increased Fire Damage", statOrder = { 1241 }, level = 76, group = "FireDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePercentEssence2_"] = { type = "Suffix", affix = "of the Essence", "(11-14)% increased Fire Damage", statOrder = { 1241 }, level = 10, group = "FireDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePercentEssence3"] = { type = "Suffix", affix = "of the Essence", "(15-18)% increased Fire Damage", statOrder = { 1241 }, level = 26, group = "FireDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePercentEssence4"] = { type = "Suffix", affix = "of the Essence", "(19-22)% increased Fire Damage", statOrder = { 1241 }, level = 42, group = "FireDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePercentEssence5"] = { type = "Suffix", affix = "of the Essence", "(23-26)% increased Fire Damage", statOrder = { 1241 }, level = 58, group = "FireDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePercentEssence6_"] = { type = "Suffix", affix = "of the Essence", "(27-30)% increased Fire Damage", statOrder = { 1241 }, level = 74, group = "FireDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePercentEssence7"] = { type = "Suffix", affix = "of the Essence", "(31-34)% increased Fire Damage", statOrder = { 1241 }, level = 82, group = "FireDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["ColdDamagePercent1"] = { type = "Suffix", affix = "of Snow", "(10-12)% increased Cold Damage", statOrder = { 1250 }, level = 12, group = "ColdDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePercent2"] = { type = "Suffix", affix = "of Sleet", "(13-15)% increased Cold Damage", statOrder = { 1250 }, level = 24, group = "ColdDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePercent3"] = { type = "Suffix", affix = "of Ice", "(16-18)% increased Cold Damage", statOrder = { 1250 }, level = 36, group = "ColdDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePercent4"] = { type = "Suffix", affix = "of Rime", "(19-22)% increased Cold Damage", statOrder = { 1250 }, level = 50, group = "ColdDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePercent5"] = { type = "Suffix", affix = "of Floe", "(23-26)% increased Cold Damage", statOrder = { 1250 }, level = 64, group = "ColdDamagePercentage", weightKey = { "wand", "sceptre", "amulet", "default", }, weightVal = { 1000, 1000, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePercent6"] = { type = "Suffix", affix = "of Glaciation", "(27-30)% increased Cold Damage", statOrder = { 1250 }, level = 76, group = "ColdDamagePercentage", weightKey = { "wand", "sceptre", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePercentTwoHand1"] = { type = "Suffix", affix = "of Snow", "(18-22)% increased Cold Damage", statOrder = { 1250 }, level = 12, group = "ColdDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePercentTwoHand2"] = { type = "Suffix", affix = "of Sleet", "(23-28)% increased Cold Damage", statOrder = { 1250 }, level = 24, group = "ColdDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePercentTwoHand3"] = { type = "Suffix", affix = "of Ice", "(29-34)% increased Cold Damage", statOrder = { 1250 }, level = 36, group = "ColdDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePercentTwoHand4"] = { type = "Suffix", affix = "of Rime", "(35-39)% increased Cold Damage", statOrder = { 1250 }, level = 50, group = "ColdDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePercentTwoHand5"] = { type = "Suffix", affix = "of Floe", "(40-44)% increased Cold Damage", statOrder = { 1250 }, level = 64, group = "ColdDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePercentTwoHand6"] = { type = "Suffix", affix = "of Glaciation", "(45-50)% increased Cold Damage", statOrder = { 1250 }, level = 76, group = "ColdDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePercentEssence1"] = { type = "Suffix", affix = "of the Essence", "(6-10)% increased Cold Damage", statOrder = { 1250 }, level = 1, group = "ColdDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePercentEssence2"] = { type = "Suffix", affix = "of the Essence", "(11-14)% increased Cold Damage", statOrder = { 1250 }, level = 10, group = "ColdDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePercentEssence3"] = { type = "Suffix", affix = "of the Essence", "(15-18)% increased Cold Damage", statOrder = { 1250 }, level = 26, group = "ColdDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePercentEssence4_"] = { type = "Suffix", affix = "of the Essence", "(19-22)% increased Cold Damage", statOrder = { 1250 }, level = 42, group = "ColdDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePercentEssence5"] = { type = "Suffix", affix = "of the Essence", "(23-26)% increased Cold Damage", statOrder = { 1250 }, level = 58, group = "ColdDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePercentEssence6_"] = { type = "Suffix", affix = "of the Essence", "(27-30)% increased Cold Damage", statOrder = { 1250 }, level = 74, group = "ColdDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePercentEssence7"] = { type = "Suffix", affix = "of the Essence", "(31-34)% increased Cold Damage", statOrder = { 1250 }, level = 82, group = "ColdDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["LightningDamagePercent1"] = { type = "Suffix", affix = "of Sparks", "(10-12)% increased Lightning Damage", statOrder = { 1261 }, level = 10, group = "LightningDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningDamagePercent2"] = { type = "Suffix", affix = "of Static", "(13-15)% increased Lightning Damage", statOrder = { 1261 }, level = 23, group = "LightningDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningDamagePercent3"] = { type = "Suffix", affix = "of Electricity", "(16-18)% increased Lightning Damage", statOrder = { 1261 }, level = 36, group = "LightningDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningDamagePercent4"] = { type = "Suffix", affix = "of Voltage", "(19-22)% increased Lightning Damage", statOrder = { 1261 }, level = 50, group = "LightningDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningDamagePercent5"] = { type = "Suffix", affix = "of Discharge", "(23-26)% increased Lightning Damage", statOrder = { 1261 }, level = 64, group = "LightningDamagePercentage", weightKey = { "wand", "sceptre", "amulet", "default", }, weightVal = { 1000, 1000, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningDamagePercent6"] = { type = "Suffix", affix = "of Arcing", "(27-30)% increased Lightning Damage", statOrder = { 1261 }, level = 76, group = "LightningDamagePercentage", weightKey = { "wand", "sceptre", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningDamagePercentTwoHand1"] = { type = "Suffix", affix = "of Sparks", "(18-22)% increased Lightning Damage", statOrder = { 1261 }, level = 10, group = "LightningDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningDamagePercentTwoHand2"] = { type = "Suffix", affix = "of Static", "(23-28)% increased Lightning Damage", statOrder = { 1261 }, level = 23, group = "LightningDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningDamagePercentTwoHand3"] = { type = "Suffix", affix = "of Electricity", "(29-34)% increased Lightning Damage", statOrder = { 1261 }, level = 36, group = "LightningDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningDamagePercentTwoHand4"] = { type = "Suffix", affix = "of Voltage", "(35-39)% increased Lightning Damage", statOrder = { 1261 }, level = 50, group = "LightningDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningDamagePercentTwoHand5"] = { type = "Suffix", affix = "of Discharge", "(40-44)% increased Lightning Damage", statOrder = { 1261 }, level = 64, group = "LightningDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningDamagePercentTwoHand6"] = { type = "Suffix", affix = "of Arcing", "(45-50)% increased Lightning Damage", statOrder = { 1261 }, level = 76, group = "LightningDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningDamagePercentEssence7"] = { type = "Suffix", affix = "of the Essence", "(31-34)% increased Lightning Damage", statOrder = { 1261 }, level = 82, group = "LightningDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LifeGainedFromEnemyDeath1"] = { type = "Suffix", affix = "of Success", "Gain (7-10) Life per Enemy Killed", statOrder = { 1629 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "life" }, }, - ["LifeGainedFromEnemyDeath2"] = { type = "Suffix", affix = "of Victory", "Gain (12-18) Life per Enemy Killed", statOrder = { 1629 }, level = 23, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "life" }, }, - ["LifeGainedFromEnemyDeath3"] = { type = "Suffix", affix = "of Triumph", "Gain (24-32) Life per Enemy Killed", statOrder = { 1629 }, level = 40, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "life" }, }, - ["LifeGainedFromEnemyDeath4"] = { type = "Suffix", affix = "of Conquest", "Gain (35-44) Life per Enemy Killed", statOrder = { 1629 }, level = 52, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "life" }, }, - ["LifeGainedFromEnemyDeath5"] = { type = "Suffix", affix = "of Feat", "Gain (56-72) Life per Enemy Killed", statOrder = { 1629 }, level = 66, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "life" }, }, - ["LifeGainedFromEnemyDeath6"] = { type = "Suffix", affix = "of Masterstroke", "Gain (84-110) Life per Enemy Killed", statOrder = { 1629 }, level = 81, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "life" }, }, - ["ManaGainedFromEnemyDeath1"] = { type = "Suffix", affix = "of Absorption", "Gain (4-6) Mana per Enemy Killed", statOrder = { 1644 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "mana" }, }, - ["ManaGainedFromEnemyDeath2"] = { type = "Suffix", affix = "of Osmosis", "Gain (7-10) Mana per Enemy Killed", statOrder = { 1644 }, level = 24, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "mana" }, }, - ["ManaGainedFromEnemyDeath3"] = { type = "Suffix", affix = "of Consumption", "Gain (11-15) Mana per Enemy Killed", statOrder = { 1644 }, level = 40, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "mana" }, }, - ["ManaGainedFromEnemyDeath4"] = { type = "Suffix", affix = "of Diffusion", "Gain (16-25) Mana per Enemy Killed", statOrder = { 1644 }, level = 52, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "mana" }, }, - ["ManaGainedFromEnemyDeath5"] = { type = "Suffix", affix = "of Permeation", "Gain (26-37) Mana per Enemy Killed", statOrder = { 1644 }, level = 66, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "mana" }, }, - ["ManaGainedFromEnemyDeath6"] = { type = "Suffix", affix = "of Retention", "Gain (38-50) Mana per Enemy Killed", statOrder = { 1644 }, level = 81, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "mana" }, }, - ["LocalCriticalStrikeChance1"] = { type = "Suffix", affix = "of Needling", "(10-14)% increased Critical Strike Chance", statOrder = { 1348 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "critical" }, }, - ["LocalCriticalStrikeChance2"] = { type = "Suffix", affix = "of Stinging", "(15-19)% increased Critical Strike Chance", statOrder = { 1348 }, level = 20, group = "LocalCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "critical" }, }, - ["LocalCriticalStrikeChance3"] = { type = "Suffix", affix = "of Piercing", "(20-24)% increased Critical Strike Chance", statOrder = { 1348 }, level = 30, group = "LocalCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "critical" }, }, - ["LocalCriticalStrikeChance4"] = { type = "Suffix", affix = "of Puncturing", "(25-29)% increased Critical Strike Chance", statOrder = { 1348 }, level = 44, group = "LocalCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "critical" }, }, - ["LocalCriticalStrikeChance5"] = { type = "Suffix", affix = "of Penetrating", "(30-34)% increased Critical Strike Chance", statOrder = { 1348 }, level = 59, group = "LocalCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "critical" }, }, - ["LocalCriticalStrikeChance6"] = { type = "Suffix", affix = "of Incision", "(35-38)% increased Critical Strike Chance", statOrder = { 1348 }, level = 73, group = "LocalCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "critical" }, }, - ["LocalCriticalMultiplier1"] = { type = "Suffix", affix = "of Ire", "+(10-14)% to Global Critical Strike Multiplier", statOrder = { 1372 }, level = 8, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "critical" }, }, - ["LocalCriticalMultiplier2"] = { type = "Suffix", affix = "of Anger", "+(15-19)% to Global Critical Strike Multiplier", statOrder = { 1372 }, level = 21, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "critical" }, }, - ["LocalCriticalMultiplier3"] = { type = "Suffix", affix = "of Rage", "+(20-24)% to Global Critical Strike Multiplier", statOrder = { 1372 }, level = 30, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "critical" }, }, - ["LocalCriticalMultiplier4"] = { type = "Suffix", affix = "of Fury", "+(25-29)% to Global Critical Strike Multiplier", statOrder = { 1372 }, level = 44, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "critical" }, }, - ["LocalCriticalMultiplier5"] = { type = "Suffix", affix = "of Ferocity", "+(30-34)% to Global Critical Strike Multiplier", statOrder = { 1372 }, level = 59, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "critical" }, }, - ["LocalCriticalMultiplier6"] = { type = "Suffix", affix = "of Destruction", "+(35-38)% to Global Critical Strike Multiplier", statOrder = { 1372 }, level = 73, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "critical" }, }, - ["LocalIncreaseSocketedGemLevel1"] = { type = "Prefix", affix = "Paragon's", "+1 to Level of Socketed Gems", statOrder = { 141 }, level = 50, group = "LocalIncreaseSocketedGemLevel", weightKey = { "attack_staff", "attack_dagger", "staff", "wand", "dagger", "sceptre", "weapon", "default", }, weightVal = { 1000, 1000, 0, 0, 0, 0, 1000, 0 }, modTags = { "gem" }, }, - ["LocalIncreaseSocketedGemUnsetRing1"] = { type = "Prefix", affix = "Exemplary", "+1 to Level of Socketed Gems", statOrder = { 141 }, level = 2, group = "LocalIncreaseSocketedGemLevel", weightKey = { "unset_ring", "default", }, weightVal = { 1000, 0 }, modTags = { "gem" }, }, - ["LocalIncreaseSocketedGemUnsetRing2"] = { type = "Prefix", affix = "Quintessential", "+2 to Level of Socketed Gems", statOrder = { 141 }, level = 50, group = "LocalIncreaseSocketedGemLevel", weightKey = { "unset_ring", "default", }, weightVal = { 1000, 0 }, modTags = { "gem" }, }, - ["LocalIncreaseSocketedGemUnsetRing3"] = { type = "Prefix", affix = "Flawless", "+3 to Level of Socketed Gems", statOrder = { 141 }, level = 76, group = "LocalIncreaseSocketedGemLevel", weightKey = { "unset_ring", "default", }, weightVal = { 250, 0 }, modTags = { "gem" }, }, - ["GlobalSpellGemsLevel1"] = { type = "Prefix", affix = "Magister's", "+1 to Level of all Spell Skill Gems", statOrder = { 1490 }, level = 55, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 50, 50, 50, 0 }, modTags = { "caster", "gem" }, }, - ["GlobalSpellGemsLevelTwoHand1"] = { type = "Prefix", affix = "Magister's", "+(1-2) to Level of all Spell Skill Gems", statOrder = { 1490 }, level = 55, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 50, 0 }, modTags = { "caster", "gem" }, }, - ["LocalIncreaseSocketedFireGemLevel1"] = { type = "Prefix", affix = "Flame Spinner's", "+1 to Level of Socketed Fire Gems", statOrder = { 146 }, level = 2, group = "LocalIncreaseSocketedFireGemLevel", weightKey = { "attack_staff", "attack_dagger", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "fire", "gem" }, }, - ["LocalIncreaseSocketedFireGemLevel2_"] = { type = "Prefix", affix = "Lava Caller's", "+2 to Level of Socketed Fire Gems", statOrder = { 146 }, level = 55, group = "LocalIncreaseSocketedFireGemLevel", weightKey = { "attack_staff", "attack_dagger", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "fire", "gem" }, }, - ["GlobalFireSpellGemsLevel1_"] = { type = "Prefix", affix = "Flame Shaper's", "+1 to Level of all Fire Spell Skill Gems", statOrder = { 1492 }, level = 2, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "focus", "default", }, weightVal = { 0, 250, 250, 250, 250, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, }, - ["GlobalFireSpellGemsLevelTwoHand1__"] = { type = "Prefix", affix = "Flame Shaper's", "+(1-2) to Level of all Fire Spell Skill Gems", statOrder = { 1492 }, level = 2, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, }, - ["GlobalFireSpellGemsLevelTwoHand2"] = { type = "Prefix", affix = "Lava Conjurer's", "+3 to Level of all Fire Spell Skill Gems", statOrder = { 1492 }, level = 77, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, }, - ["LocalIncreaseSocketedColdGemLevel1"] = { type = "Prefix", affix = "Frost Weaver's", "+1 to Level of Socketed Cold Gems", statOrder = { 147 }, level = 2, group = "LocalIncreaseSocketedColdGemLevel", weightKey = { "attack_staff", "attack_dagger", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "cold", "gem" }, }, - ["LocalIncreaseSocketedColdGemLevel2"] = { type = "Prefix", affix = "Winterbringer's", "+2 to Level of Socketed Cold Gems", statOrder = { 147 }, level = 55, group = "LocalIncreaseSocketedColdGemLevel", weightKey = { "attack_staff", "attack_dagger", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "cold", "gem" }, }, - ["GlobalColdSpellGemsLevel1_"] = { type = "Prefix", affix = "Frost Singer's", "+1 to Level of all Cold Spell Skill Gems", statOrder = { 1493 }, level = 2, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "focus", "default", }, weightVal = { 0, 250, 250, 250, 250, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, }, - ["GlobalColdSpellGemsLevelTwoHand1"] = { type = "Prefix", affix = "Frost Singer's", "+(1-2) to Level of all Cold Spell Skill Gems", statOrder = { 1493 }, level = 2, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, }, - ["GlobalColdSpellGemsLevelTwoHand2"] = { type = "Prefix", affix = "Winter Beckoner's", "+3 to Level of all Cold Spell Skill Gems", statOrder = { 1493 }, level = 77, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, }, - ["LocalIncreaseSocketedLightningGemLevel1"] = { type = "Prefix", affix = "Thunder Lord's", "+1 to Level of Socketed Lightning Gems", statOrder = { 148 }, level = 2, group = "LocalIncreaseSocketedLightningGemLevel", weightKey = { "attack_staff", "attack_dagger", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "lightning", "gem" }, }, - ["LocalIncreaseSocketedLightningGemLevel2"] = { type = "Prefix", affix = "Tempest King's", "+2 to Level of Socketed Lightning Gems", statOrder = { 148 }, level = 55, group = "LocalIncreaseSocketedLightningGemLevel", weightKey = { "attack_staff", "attack_dagger", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "lightning", "gem" }, }, - ["GlobalLightningSpellGemsLevel1"] = { type = "Prefix", affix = "Thunderhand's", "+1 to Level of all Lightning Spell Skill Gems", statOrder = { 1494 }, level = 2, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "focus", "default", }, weightVal = { 0, 250, 250, 250, 250, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, }, - ["GlobalLightningSpellGemsLevelTwoHand1"] = { type = "Prefix", affix = "Thunderhand's", "+(1-2) to Level of all Lightning Spell Skill Gems", statOrder = { 1494 }, level = 2, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, }, - ["GlobalLightningSpellGemsLevelTwoHand2"] = { type = "Prefix", affix = "Tempest Master's", "+3 to Level of all Lightning Spell Skill Gems", statOrder = { 1494 }, level = 77, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, }, - ["LocalIncreaseSocketedChaosGemLevel1"] = { type = "Prefix", affix = "Nihilist's", "+1 to Level of Socketed Chaos Gems", statOrder = { 149 }, level = 4, group = "LocalIncreaseSocketedChaosGemLevel", weightKey = { "attack_staff", "attack_dagger", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "chaos", "gem" }, }, - ["LocalIncreaseSocketedChaosGemLevel2"] = { type = "Prefix", affix = "Anarchist's", "+2 to Level of Socketed Chaos Gems", statOrder = { 149 }, level = 55, group = "LocalIncreaseSocketedChaosGemLevel", weightKey = { "attack_staff", "attack_dagger", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "chaos", "gem" }, }, - ["GlobalChaosSpellGemsLevel1"] = { type = "Prefix", affix = "Mad Lord's", "+1 to Level of all Chaos Spell Skill Gems", statOrder = { 1495 }, level = 2, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { "attack_dagger", "wand", "dagger", "focus", "default", }, weightVal = { 0, 200, 200, 200, 0 }, modTags = { "chaos", "caster", "gem" }, }, - ["GlobalChaosSpellGemsLevelTwoHand1"] = { type = "Prefix", affix = "Mad Lord's", "+(1-2) to Level of all Chaos Spell Skill Gems", statOrder = { 1495 }, level = 2, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 200, 0 }, modTags = { "chaos", "caster", "gem" }, }, - ["GlobalChaosSpellGemsLevelTwoHand2"] = { type = "Prefix", affix = "Splintermind's", "+3 to Level of all Chaos Spell Skill Gems", statOrder = { 1495 }, level = 77, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0 }, modTags = { "chaos", "caster", "gem" }, }, - ["GlobalPhysicalSpellGemsLevel1"] = { type = "Prefix", affix = "Lithomancer's", "+1 to Level of all Physical Spell Skill Gems", statOrder = { 1491 }, level = 2, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "focus", "default", }, weightVal = { 0, 200, 200, 200, 200, 0 }, modTags = { "physical", "caster", "gem" }, }, - ["GlobalPhysicalSpellGemsLevelTwoHand1_"] = { type = "Prefix", affix = "Lithomancer's", "+(1-2) to Level of all Physical Spell Skill Gems", statOrder = { 1491 }, level = 2, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 200, 0 }, modTags = { "physical", "caster", "gem" }, }, - ["GlobalPhysicalSpellGemsLevelTwoHand2_"] = { type = "Prefix", affix = "Tecton's", "+3 to Level of all Physical Spell Skill Gems", statOrder = { 1491 }, level = 77, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "caster", "gem" }, }, - ["LocalIncreaseSocketedSpellGemLevelRace"] = { type = "Prefix", affix = "Competitor's", "+1 to Level of Socketed Spell Gems", statOrder = { 153 }, level = 1, group = "LocalIncreaseSocketedSpellGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "gem" }, }, - ["LocalIncreaseSocketedMeleeGemLevel1"] = { type = "Prefix", affix = "Combatant's", "+1 to Level of Socketed Melee Gems", statOrder = { 158 }, level = 8, group = "LocalIncreaseSocketedMeleeGemLevel", weightKey = { "bow", "wand", "focus", "shield", "weapon", "default", }, weightVal = { 0, 0, 0, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "gem" }, }, - ["LocalIncreaseSocketedMeleeGemLevel"] = { type = "Prefix", affix = "Weaponmaster's", "+2 to Level of Socketed Melee Gems", statOrder = { 158 }, level = 63, group = "LocalIncreaseSocketedMeleeGemLevel", weightKey = { "bow", "wand", "focus", "shield", "weapon", "default", }, weightVal = { 0, 0, 0, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "gem" }, }, - ["LocalIncreaseSocketedBowGemLevel1"] = { type = "Prefix", affix = "Fletcher's", "+1 to Level of Socketed Bow Gems", statOrder = { 157 }, level = 9, group = "LocalIncreaseSocketedBowGemLevel", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "gem" }, }, - ["LocalIncreaseSocketedBowGemLevel2"] = { type = "Prefix", affix = "Sharpshooter's", "+2 to Level of Socketed Bow Gems", statOrder = { 157 }, level = 64, group = "LocalIncreaseSocketedBowGemLevel", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "gem" }, }, - ["LocalIncreaseSocketedMinionGemLevel1"] = { type = "Prefix", affix = "Reanimator's", "+1 to Level of Socketed Minion Gems", statOrder = { 159 }, level = 14, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion", "gem" }, }, - ["LocalIncreaseSocketedMinionGemLevel2"] = { type = "Prefix", affix = "Summoner's", "+2 to Level of Socketed Minion Gems", statOrder = { 159 }, level = 65, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion", "gem" }, }, - ["LocalIncreaseSocketedMinionGemLevel3_"] = { type = "Prefix", affix = "Necromancer's", "+3 to Level of Socketed Minion Gems", statOrder = { 159 }, level = 86, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion", "gem" }, }, - ["GlobalIncreaseMinionSpellSkillGemLevel1"] = { type = "Prefix", affix = "Taskmaster's", "+1 to Level of all Minion Skill Gems", statOrder = { 1496 }, level = 14, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "minion", "gem" }, }, - ["GlobalIncreaseMinionSpellSkillGemLevel2"] = { type = "Prefix", affix = "Overseer's", "+2 to Level of all Minion Skill Gems", statOrder = { 1496 }, level = 75, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { "helmet", "default", }, weightVal = { 25, 0 }, modTags = { "minion", "gem" }, }, - ["LocalIncreasedAccuracy1"] = { type = "Suffix", affix = "of Calm", "+(5-15) to Accuracy Rating", statOrder = { 1901 }, level = 1, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, }, - ["LocalIncreasedAccuracy2"] = { type = "Suffix", affix = "of Steadiness", "+(16-60) to Accuracy Rating", statOrder = { 1901 }, level = 12, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, }, - ["LocalIncreasedAccuracy3"] = { type = "Suffix", affix = "of Accuracy", "+(61-100) to Accuracy Rating", statOrder = { 1901 }, level = 20, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, }, - ["LocalIncreasedAccuracy4"] = { type = "Suffix", affix = "of Precision", "+(101-130) to Accuracy Rating", statOrder = { 1901 }, level = 26, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, }, - ["LocalIncreasedAccuracy5"] = { type = "Suffix", affix = "of the Sniper", "+(131-165) to Accuracy Rating", statOrder = { 1901 }, level = 33, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, }, - ["LocalIncreasedAccuracy6"] = { type = "Suffix", affix = "of the Marksman", "+(166-200) to Accuracy Rating", statOrder = { 1901 }, level = 41, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, }, - ["LocalIncreasedAccuracy7"] = { type = "Suffix", affix = "of the Deadeye", "+(201-250) to Accuracy Rating", statOrder = { 1901 }, level = 50, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, }, - ["LocalIncreasedAccuracy"] = { type = "Suffix", affix = "of the Ranger", "+(251-320) to Accuracy Rating", statOrder = { 1901 }, level = 63, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, }, - ["LocalIncreasedAccuracy9_"] = { type = "Suffix", affix = "of the Assassin", "+(321-360) to Accuracy Rating", statOrder = { 1901 }, level = 80, group = "LocalAccuracyRating", weightKey = { "bow", "wand", "weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack" }, }, - ["LocalIncreasedAccuracyEssence7"] = { type = "Suffix", affix = "of the Essence", "+(361-380) to Accuracy Rating", statOrder = { 1901 }, level = 82, group = "LocalAccuracyRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, }, - ["LocalIncreasedAccuracyNew1"] = { type = "Suffix", affix = "of Steadiness", "+(80-130) to Accuracy Rating", statOrder = { 1901 }, level = 1, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack" }, }, - ["LocalIncreasedAccuracyNew2"] = { type = "Suffix", affix = "of Precision", "+(131-215) to Accuracy Rating", statOrder = { 1901 }, level = 20, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack" }, }, - ["LocalIncreasedAccuracyNew3"] = { type = "Suffix", affix = "of the Sniper", "+(216-325) to Accuracy Rating", statOrder = { 1901 }, level = 40, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack" }, }, - ["LocalIncreasedAccuracyNew4"] = { type = "Suffix", affix = "of the Marksman", "+(326-455) to Accuracy Rating", statOrder = { 1901 }, level = 60, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack" }, }, - ["LocalIncreasedAccuracyNew5"] = { type = "Suffix", affix = "of the Ranger", "+(456-624) to Accuracy Rating", statOrder = { 1901 }, level = 75, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack" }, }, - ["LocalIncreasedAccuracyNew6"] = { type = "Suffix", affix = "of Lioneye", "+(625-780) to Accuracy Rating", statOrder = { 1901 }, level = 85, group = "LocalAccuracyRating", weightKey = { "bow", "wand", "weapon", "default", }, weightVal = { 1000, 1000, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack" }, }, - ["CannotBeFrozenWarbands"] = { type = "Prefix", affix = "Mutewind", "Cannot be Frozen", statOrder = { 1719 }, level = 1, group = "CannotBeFrozen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["AdditionalArrowBow1_"] = { type = "Suffix", affix = "of Splintering", "Bow Attacks fire an additional Arrow", statOrder = { 1675 }, level = 70, group = "AdditionalArrows", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "attack" }, }, - ["AdditionalArrowBow2_"] = { type = "Suffix", affix = "of Many", "Bow Attacks fire 2 additional Arrows", statOrder = { 1675 }, level = 86, group = "AdditionalArrows", weightKey = { "bow", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, }, - ["AdditionalArrowQuiver1_"] = { type = "Suffix", affix = "of Splintering", "Bow Attacks fire an additional Arrow", statOrder = { 1675 }, level = 70, group = "AdditionalArrows", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "attack" }, }, - ["MinionRunSpeedEssence2"] = { type = "Suffix", affix = "of the Essence", "Minions have (13-15)% increased Movement Speed", statOrder = { 1650 }, level = 10, group = "MinionRunSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed", "minion" }, }, - ["MinionRunSpeedEssence3"] = { type = "Suffix", affix = "of the Essence", "Minions have (16-18)% increased Movement Speed", statOrder = { 1650 }, level = 26, group = "MinionRunSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed", "minion" }, }, - ["MinionRunSpeedEssence4"] = { type = "Suffix", affix = "of the Essence", "Minions have (19-21)% increased Movement Speed", statOrder = { 1650 }, level = 42, group = "MinionRunSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed", "minion" }, }, - ["MinionRunSpeedEssence5"] = { type = "Suffix", affix = "of the Essence", "Minions have (22-24)% increased Movement Speed", statOrder = { 1650 }, level = 58, group = "MinionRunSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed", "minion" }, }, - ["MinionRunSpeedEssence6"] = { type = "Suffix", affix = "of the Essence", "Minions have (25-27)% increased Movement Speed", statOrder = { 1650 }, level = 74, group = "MinionRunSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed", "minion" }, }, - ["MinionRunSpeedEssence7"] = { type = "Suffix", affix = "of the Essence", "Minions have (28-30)% increased Movement Speed", statOrder = { 1650 }, level = 82, group = "MinionRunSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed", "minion" }, }, - ["MinionLifeEssence2"] = { type = "Suffix", affix = "of the Essence", "Minions have (13-15)% increased maximum Life", statOrder = { 1647 }, level = 10, group = "MinionLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "minion" }, }, - ["MinionLifeEssence3_"] = { type = "Suffix", affix = "of the Essence", "Minions have (16-18)% increased maximum Life", statOrder = { 1647 }, level = 26, group = "MinionLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "minion" }, }, - ["MinionLifeEssence4"] = { type = "Suffix", affix = "of the Essence", "Minions have (19-21)% increased maximum Life", statOrder = { 1647 }, level = 42, group = "MinionLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "minion" }, }, - ["MinionLifeEssence5"] = { type = "Suffix", affix = "of the Essence", "Minions have (22-24)% increased maximum Life", statOrder = { 1647 }, level = 58, group = "MinionLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "minion" }, }, - ["MinionLifeEssence6"] = { type = "Suffix", affix = "of the Essence", "Minions have (25-27)% increased maximum Life", statOrder = { 1647 }, level = 74, group = "MinionLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "minion" }, }, - ["MinionLifeEssence7"] = { type = "Suffix", affix = "of the Essence", "Minions have (28-30)% increased maximum Life", statOrder = { 1647 }, level = 82, group = "MinionLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "minion" }, }, - ["MinionDamageEssence2"] = { type = "Suffix", affix = "of the Essence", "Minions deal (7-10)% increased Damage", statOrder = { 1852 }, level = 10, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageEssence3"] = { type = "Suffix", affix = "of the Essence", "Minions deal (11-14)% increased Damage", statOrder = { 1852 }, level = 26, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageEssence4_"] = { type = "Suffix", affix = "of the Essence", "Minions deal (15-18)% increased Damage", statOrder = { 1852 }, level = 42, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageEssence5"] = { type = "Suffix", affix = "of the Essence", "Minions deal (19-22)% increased Damage", statOrder = { 1852 }, level = 58, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageEssence6"] = { type = "Suffix", affix = "of the Essence", "Minions deal (23-26)% increased Damage", statOrder = { 1852 }, level = 74, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageEssence7"] = { type = "Suffix", affix = "of the Essence", "Minions deal (27-30)% increased Damage", statOrder = { 1852 }, level = 82, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, - ["MinionAccuracyEssence2_"] = { type = "Suffix", affix = "of the Essence", "(13-15)% increased Minion Accuracy Rating", statOrder = { 8806 }, level = 10, group = "MinionAccuracyRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "minion" }, }, - ["MinionAccuracyEssence3_"] = { type = "Suffix", affix = "of the Essence", "(16-18)% increased Minion Accuracy Rating", statOrder = { 8806 }, level = 26, group = "MinionAccuracyRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "minion" }, }, - ["MinionAccuracyEssence4___"] = { type = "Suffix", affix = "of the Essence", "(19-21)% increased Minion Accuracy Rating", statOrder = { 8806 }, level = 42, group = "MinionAccuracyRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "minion" }, }, - ["MinionAccuracyEssence5"] = { type = "Suffix", affix = "of the Essence", "(22-24)% increased Minion Accuracy Rating", statOrder = { 8806 }, level = 58, group = "MinionAccuracyRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "minion" }, }, - ["MinionAccuracyEssence6"] = { type = "Suffix", affix = "of the Essence", "(25-27)% increased Minion Accuracy Rating", statOrder = { 8806 }, level = 74, group = "MinionAccuracyRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "minion" }, }, - ["MinionAccuracyEssence7_"] = { type = "Suffix", affix = "of the Essence", "(28-30)% increased Minion Accuracy Rating", statOrder = { 8806 }, level = 82, group = "MinionAccuracyRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "minion" }, }, - ["MinionDamageGlovesEssence2"] = { type = "Prefix", affix = "Essences", "Minions deal (13-15)% increased Damage", statOrder = { 1852 }, level = 10, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageGlovesEssence3"] = { type = "Prefix", affix = "Essences", "Minions deal (16-18)% increased Damage", statOrder = { 1852 }, level = 26, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageGlovesEssence4"] = { type = "Prefix", affix = "Essences", "Minions deal (19-21)% increased Damage", statOrder = { 1852 }, level = 42, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageGlovesEssence5"] = { type = "Prefix", affix = "Essences", "Minions deal (22-24)% increased Damage", statOrder = { 1852 }, level = 58, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageGlovesEssence6___"] = { type = "Prefix", affix = "Essences", "Minions deal (25-27)% increased Damage", statOrder = { 1852 }, level = 74, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageGlovesEssence7"] = { type = "Prefix", affix = "Essences", "Minions deal (28-30)% increased Damage", statOrder = { 1852 }, level = 82, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageEssenceTwoHand2"] = { type = "Suffix", affix = "of the Essence", "Minions deal (10-15)% increased Damage", statOrder = { 1852 }, level = 10, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageEssenceTwoHand3_"] = { type = "Suffix", affix = "of the Essence", "Minions deal (16-21)% increased Damage", statOrder = { 1852 }, level = 26, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageEssenceTwoHand4"] = { type = "Suffix", affix = "of the Essence", "Minions deal (22-27)% increased Damage", statOrder = { 1852 }, level = 42, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageEssenceTwoHand5_"] = { type = "Suffix", affix = "of the Essence", "Minions deal (28-33)% increased Damage", statOrder = { 1852 }, level = 58, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageEssenceTwoHand6"] = { type = "Suffix", affix = "of the Essence", "Minions deal (34-39)% increased Damage", statOrder = { 1852 }, level = 74, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageEssenceTwoHand7_"] = { type = "Suffix", affix = "of the Essence", "Minions deal (40-45)% increased Damage", statOrder = { 1852 }, level = 82, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, - ["BeltIncreasedFlaskChargesGained1"] = { type = "Suffix", affix = "of Refilling", "(5-10)% increased Flask Charges gained", statOrder = { 2060 }, level = 2, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, }, - ["BeltIncreasedFlaskChargesGained2"] = { type = "Suffix", affix = "of Restocking", "(11-16)% increased Flask Charges gained", statOrder = { 2060 }, level = 16, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, }, - ["BeltIncreasedFlaskChargesGained3_____"] = { type = "Suffix", affix = "of Replenishing", "(17-22)% increased Flask Charges gained", statOrder = { 2060 }, level = 32, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, }, - ["BeltIncreasedFlaskChargesGained4"] = { type = "Suffix", affix = "of Pouring", "(23-28)% increased Flask Charges gained", statOrder = { 2060 }, level = 48, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, }, - ["BeltIncreasedFlaskChargesGained5_"] = { type = "Suffix", affix = "of Brimming", "(29-34)% increased Flask Charges gained", statOrder = { 2060 }, level = 70, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, }, - ["BeltIncreasedFlaskChargesGained6"] = { type = "Suffix", affix = "of Overflowing", "(35-40)% increased Flask Charges gained", statOrder = { 2060 }, level = 84, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, }, - ["BeltIncreasedFlaskEffect1_"] = { type = "Prefix", affix = "Distilling", "Flasks applied to you have (4-6)% increased Effect", statOrder = { 2617 }, level = 45, group = "FlaskEffect", weightKey = { "belt", "default", }, weightVal = { 250, 0 }, modTags = { "flask" }, }, - ["BeltIncreasedFlaskEffect2"] = { type = "Prefix", affix = "Condensing", "Flasks applied to you have (7-9)% increased Effect", statOrder = { 2617 }, level = 65, group = "FlaskEffect", weightKey = { "belt", "default", }, weightVal = { 250, 0 }, modTags = { "flask" }, }, - ["BeltIncreasedFlaskEffect3"] = { type = "Prefix", affix = "Magnifying", "Flasks applied to you have (10-12)% increased Effect", statOrder = { 2617 }, level = 85, group = "FlaskEffect", weightKey = { "belt", "default", }, weightVal = { 250, 0 }, modTags = { "flask" }, }, - ["BeltReducedFlaskChargesUsed1"] = { type = "Suffix", affix = "of Sipping", "(10-20)% reduced Flask Charges used", statOrder = { 2061 }, level = 3, group = "BeltReducedFlaskChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, - ["BeltIncreasedFlaskDuration1"] = { type = "Suffix", affix = "of Sipping", "(4-9)% increased Flask Effect Duration", statOrder = { 2064 }, level = 8, group = "BeltIncreasedFlaskDuration", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, }, - ["BeltIncreasedFlaskDuration2"] = { type = "Suffix", affix = "of Tasting", "(10-15)% increased Flask Effect Duration", statOrder = { 2064 }, level = 34, group = "BeltIncreasedFlaskDuration", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, }, - ["BeltIncreasedFlaskDuration3"] = { type = "Suffix", affix = "of Savouring", "(16-21)% increased Flask Effect Duration", statOrder = { 2064 }, level = 50, group = "BeltIncreasedFlaskDuration", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, }, - ["BeltIncreasedFlaskDuration4"] = { type = "Suffix", affix = "of Relishing", "(22-27)% increased Flask Effect Duration", statOrder = { 2064 }, level = 66, group = "BeltIncreasedFlaskDuration", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, }, - ["BeltIncreasedFlaskDuration5_"] = { type = "Suffix", affix = "of Reveling", "(28-33)% increased Flask Effect Duration", statOrder = { 2064 }, level = 82, group = "BeltIncreasedFlaskDuration", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, }, - ["BeltFlaskLifeRecoveryRate1"] = { type = "Prefix", affix = "Restoring", "(5-10)% increased Flask Life Recovery rate", statOrder = { 2066 }, level = 5, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "life" }, }, - ["BeltFlaskLifeRecoveryRate2"] = { type = "Prefix", affix = "Recovering", "(11-16)% increased Flask Life Recovery rate", statOrder = { 2066 }, level = 21, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "life" }, }, - ["BeltFlaskLifeRecoveryRate3_"] = { type = "Prefix", affix = "Renewing", "(17-22)% increased Flask Life Recovery rate", statOrder = { 2066 }, level = 35, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "life" }, }, - ["BeltFlaskLifeRecoveryRate4"] = { type = "Prefix", affix = "Refreshing", "(23-28)% increased Flask Life Recovery rate", statOrder = { 2066 }, level = 49, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "life" }, }, - ["BeltFlaskLifeRecoveryRate5"] = { type = "Prefix", affix = "Rejuvenating", "(29-34)% increased Flask Life Recovery rate", statOrder = { 2066 }, level = 63, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "life" }, }, - ["BeltFlaskLifeRecoveryRate6"] = { type = "Prefix", affix = "Regenerating", "(35-40)% increased Flask Life Recovery rate", statOrder = { 2066 }, level = 77, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "life" }, }, - ["BeltFlaskLifeRecoveryRateEssence1"] = { type = "Prefix", affix = "Essences", "(8-11)% increased Flask Life Recovery rate", statOrder = { 2066 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, }, - ["BeltFlaskLifeRecoveryRateEssence2"] = { type = "Prefix", affix = "Essences", "(12-15)% increased Flask Life Recovery rate", statOrder = { 2066 }, level = 10, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, }, - ["BeltFlaskLifeRecoveryRateEssence3"] = { type = "Prefix", affix = "Essences", "(16-19)% increased Flask Life Recovery rate", statOrder = { 2066 }, level = 26, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, }, - ["BeltFlaskLifeRecoveryRateEssence4"] = { type = "Prefix", affix = "Essences", "(20-23)% increased Flask Life Recovery rate", statOrder = { 2066 }, level = 42, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, }, - ["BeltFlaskLifeRecoveryRateEssence5"] = { type = "Prefix", affix = "Essences", "(24-27)% increased Flask Life Recovery rate", statOrder = { 2066 }, level = 58, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, }, - ["BeltFlaskLifeRecoveryRateEssence6"] = { type = "Prefix", affix = "Essences", "(28-31)% increased Flask Life Recovery rate", statOrder = { 2066 }, level = 74, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, }, - ["BeltFlaskLifeRecoveryRateEssence7"] = { type = "Prefix", affix = "Essences", "(32-35)% increased Flask Life Recovery rate", statOrder = { 2066 }, level = 82, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, }, - ["BeltFlaskManaRecoveryRate1_"] = { type = "Prefix", affix = "Affecting", "(5-10)% increased Flask Mana Recovery rate", statOrder = { 2067 }, level = 5, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "mana" }, }, - ["BeltFlaskManaRecoveryRate2"] = { type = "Prefix", affix = "Stirring", "(11-16)% increased Flask Mana Recovery rate", statOrder = { 2067 }, level = 21, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "mana" }, }, - ["BeltFlaskManaRecoveryRate3_"] = { type = "Prefix", affix = "Heartening", "(17-22)% increased Flask Mana Recovery rate", statOrder = { 2067 }, level = 35, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "mana" }, }, - ["BeltFlaskManaRecoveryRate4__"] = { type = "Prefix", affix = "Exciting", "(23-28)% increased Flask Mana Recovery rate", statOrder = { 2067 }, level = 49, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "mana" }, }, - ["BeltFlaskManaRecoveryRate5"] = { type = "Prefix", affix = "Galvanizing", "(29-34)% increased Flask Mana Recovery rate", statOrder = { 2067 }, level = 63, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "mana" }, }, - ["BeltFlaskManaRecoveryRate6"] = { type = "Prefix", affix = "Inspiring", "(35-40)% increased Flask Mana Recovery rate", statOrder = { 2067 }, level = 77, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "mana" }, }, - ["BeltFlaskManaRecoveryRateEssence1"] = { type = "Prefix", affix = "Essences", "(11-15)% increased Flask Mana Recovery rate", statOrder = { 2067 }, level = 58, group = "BeltFlaskManaRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana" }, }, - ["BeltFlaskManaRecoveryRateEssence2"] = { type = "Prefix", affix = "Essences", "(16-20)% increased Flask Mana Recovery rate", statOrder = { 2067 }, level = 74, group = "BeltFlaskManaRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana" }, }, - ["BeltFlaskManaRecoveryRateEssence3"] = { type = "Prefix", affix = "Essences", "(21-25)% increased Flask Mana Recovery rate", statOrder = { 2067 }, level = 82, group = "BeltFlaskManaRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana" }, }, - ["ChanceToAvoidShockEssence2_"] = { type = "Suffix", affix = "of the Essence", "(35-38)% chance to Avoid being Shocked", statOrder = { 1729 }, level = 10, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ChanceToAvoidShockEssence3"] = { type = "Suffix", affix = "of the Essence", "(39-42)% chance to Avoid being Shocked", statOrder = { 1729 }, level = 26, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ChanceToAvoidShockEssence4"] = { type = "Suffix", affix = "of the Essence", "(43-46)% chance to Avoid being Shocked", statOrder = { 1729 }, level = 42, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ChanceToAvoidShockEssence5"] = { type = "Suffix", affix = "of the Essence", "(47-50)% chance to Avoid being Shocked", statOrder = { 1729 }, level = 58, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ChanceToAvoidShockEssence6"] = { type = "Suffix", affix = "of the Essence", "(51-55)% chance to Avoid being Shocked", statOrder = { 1729 }, level = 74, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ChanceToAvoidShockEssence7"] = { type = "Suffix", affix = "of the Essence", "(56-60)% chance to Avoid being Shocked", statOrder = { 1729 }, level = 82, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["AttackerTakesDamage1"] = { type = "Prefix", affix = "Thorny", "Reflects (1-4) Physical Damage to Melee Attackers", statOrder = { 2079 }, level = 1, group = "AttackerTakesDamageNoRange", weightKey = { "body_armour", "shield", "belt", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["AttackerTakesDamage2"] = { type = "Prefix", affix = "Spiny", "Reflects (5-10) Physical Damage to Melee Attackers", statOrder = { 2079 }, level = 10, group = "AttackerTakesDamageNoRange", weightKey = { "body_armour", "shield", "belt", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["AttackerTakesDamage3"] = { type = "Prefix", affix = "Barbed", "Reflects (11-24) Physical Damage to Melee Attackers", statOrder = { 2079 }, level = 20, group = "AttackerTakesDamageNoRange", weightKey = { "body_armour", "shield", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["AttackerTakesDamage4"] = { type = "Prefix", affix = "Jagged", "Reflects (25-50) Physical Damage to Melee Attackers", statOrder = { 2079 }, level = 35, group = "AttackerTakesDamageNoRange", weightKey = { "body_armour", "shield", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["AttackerTakesDamageEssence5"] = { type = "Prefix", affix = "Essences", "Reflects (51-100) Physical Damage to Melee Attackers", statOrder = { 2079 }, level = 58, group = "AttackerTakesDamageNoRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["AttackerTakesDamageEssence6"] = { type = "Prefix", affix = "Essences", "Reflects (101-150) Physical Damage to Melee Attackers", statOrder = { 2079 }, level = 74, group = "AttackerTakesDamageNoRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["AttackerTakesDamageEssence7"] = { type = "Prefix", affix = "Essences", "Reflects (151-200) Physical Damage to Melee Attackers", statOrder = { 2079 }, level = 82, group = "AttackerTakesDamageNoRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["ChanceToAvoidFreezeEssence3"] = { type = "Suffix", affix = "of the Essence", "(39-42)% chance to Avoid being Frozen", statOrder = { 1726 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ChanceToAvoidFreezeEssence4"] = { type = "Suffix", affix = "of the Essence", "(43-46)% chance to Avoid being Frozen", statOrder = { 1726 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ChanceToAvoidFreezeEssence5"] = { type = "Suffix", affix = "of the Essence", "(47-50)% chance to Avoid being Frozen", statOrder = { 1726 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ChanceToAvoidFreezeEssence6"] = { type = "Suffix", affix = "of the Essence", "(51-55)% chance to Avoid being Frozen", statOrder = { 1726 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ChanceToAvoidFreezeEssence7"] = { type = "Suffix", affix = "of the Essence", "(56-60)% chance to Avoid being Frozen", statOrder = { 1726 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["AdditionalBlockChance1"] = { type = "Suffix", affix = "of Intercepting", "+(1-3)% Chance to Block", statOrder = { 2126 }, level = 10, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, - ["AdditionalBlockChance2"] = { type = "Suffix", affix = "of Walling", "+(4-5)% Chance to Block", statOrder = { 2126 }, level = 25, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, - ["AdditionalBlockChance3"] = { type = "Suffix", affix = "of Blocking", "+(6-7)% Chance to Block", statOrder = { 2126 }, level = 40, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, - ["AdditionalBlockChance4_"] = { type = "Suffix", affix = "of the Stalwart", "+(8-9)% Chance to Block", statOrder = { 2126 }, level = 55, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, - ["AdditionalBlockChance5"] = { type = "Suffix", affix = "of the Buttress", "+(10-11)% Chance to Block", statOrder = { 2126 }, level = 66, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, - ["AdditionalBlockChance6"] = { type = "Suffix", affix = "of the Sentinel", "+(12-13)% Chance to Block", statOrder = { 2126 }, level = 77, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, - ["AdditionalBlockChance7"] = { type = "Suffix", affix = "of the Citadel", "+(14-15)% Chance to Block", statOrder = { 2126 }, level = 86, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, - ["AdditionalShieldBlockChance1"] = { type = "Suffix", affix = "of the Essence", "+(1-2)% Chance to Block", statOrder = { 2126 }, level = 42, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, - ["AdditionalShieldBlockChance2"] = { type = "Suffix", affix = "of the Essence", "+(3-4)% Chance to Block", statOrder = { 2126 }, level = 58, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, - ["AdditionalShieldBlockChance3"] = { type = "Suffix", affix = "of the Essence", "+(5-6)% Chance to Block", statOrder = { 2126 }, level = 74, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, - ["AdditionalShieldBlockChance4"] = { type = "Suffix", affix = "of the Essence", "+(7-8)% Chance to Block", statOrder = { 2126 }, level = 82, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, - ["PhysicalDamageTakenAsFirePercentWarbands"] = { type = "Prefix", affix = "Redblade", "10% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2323 }, level = 1, group = "PhysicalDamageTakenAsFirePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["ChanceToAvoidIgniteEssence4"] = { type = "Suffix", affix = "of the Essence", "(43-46)% chance to Avoid being Ignited", statOrder = { 1727 }, level = 42, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ChanceToAvoidIgniteEssence5"] = { type = "Suffix", affix = "of the Essence", "(47-50)% chance to Avoid being Ignited", statOrder = { 1727 }, level = 58, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ChanceToAvoidIgniteEssence6"] = { type = "Suffix", affix = "of the Essence", "(51-55)% chance to Avoid being Ignited", statOrder = { 1727 }, level = 74, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ChanceToAvoidIgniteEssence7_"] = { type = "Suffix", affix = "of the Essence", "(56-60)% chance to Avoid being Ignited", statOrder = { 1727 }, level = 82, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ChanceToBlockProjectileAttacks1_"] = { type = "Suffix", affix = "of Deflection", "+(1-2)% chance to Block Projectile Attack Damage", statOrder = { 2340 }, level = 8, group = "BlockVsProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, - ["ChanceToBlockProjectileAttacks2"] = { type = "Suffix", affix = "of Protection", "+(3-4)% chance to Block Projectile Attack Damage", statOrder = { 2340 }, level = 19, group = "BlockVsProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, - ["ChanceToBlockProjectileAttacks3"] = { type = "Suffix", affix = "of Cover", "+(5-6)% chance to Block Projectile Attack Damage", statOrder = { 2340 }, level = 30, group = "BlockVsProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, - ["ChanceToBlockProjectileAttacks4"] = { type = "Suffix", affix = "of Asylum", "+(7-8)% chance to Block Projectile Attack Damage", statOrder = { 2340 }, level = 55, group = "BlockVsProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, - ["ChanceToBlockProjectileAttacks5_"] = { type = "Suffix", affix = "of Refuge", "+(9-10)% chance to Block Projectile Attack Damage", statOrder = { 2340 }, level = 70, group = "BlockVsProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, - ["ChanceToBlockProjectileAttacks6"] = { type = "Suffix", affix = "of Sanctuary", "+(11-12)% chance to Block Projectile Attack Damage", statOrder = { 2340 }, level = 81, group = "BlockVsProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, - ["AllDamageMasterVendorItem"] = { type = "Prefix", affix = "Leo's", "(5-15)% increased Damage", statOrder = { 1076 }, level = 1, group = "AllDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, }, - ["ReducedManaReservationCostEssence4"] = { type = "Suffix", affix = "of the Essence", "4% increased Mana Reservation Efficiency of Skills", statOrder = { 2109 }, level = 42, group = "ReducedReservation", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, - ["ReducedManaReservationCostEssence5"] = { type = "Suffix", affix = "of the Essence", "6% increased Mana Reservation Efficiency of Skills", statOrder = { 2109 }, level = 58, group = "ReducedReservation", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, - ["ReducedManaReservationCostEssence6"] = { type = "Suffix", affix = "of the Essence", "8% increased Mana Reservation Efficiency of Skills", statOrder = { 2109 }, level = 74, group = "ReducedReservation", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, - ["ReducedManaReservationCostEssence7"] = { type = "Suffix", affix = "of the Essence", "10% increased Mana Reservation Efficiency of Skills", statOrder = { 2109 }, level = 82, group = "ReducedReservation", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, - ["ManaReservationEfficiencyEssence4"] = { type = "Suffix", affix = "of the Essence", "(3-4)% increased Mana Reservation Efficiency of Skills", statOrder = { 2105 }, level = 42, group = "ManaReservationEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, - ["ManaReservationEfficiencyEssence5__"] = { type = "Suffix", affix = "of the Essence", "(5-6)% increased Mana Reservation Efficiency of Skills", statOrder = { 2105 }, level = 58, group = "ManaReservationEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, - ["ManaReservationEfficiencyEssence6_"] = { type = "Suffix", affix = "of the Essence", "(7-8)% increased Mana Reservation Efficiency of Skills", statOrder = { 2105 }, level = 74, group = "ManaReservationEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, - ["ManaReservationEfficiencyEssence7"] = { type = "Suffix", affix = "of the Essence", "(9-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 2105 }, level = 82, group = "ManaReservationEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, - ["ReducedLocalAttributeRequirements1"] = { type = "Suffix", affix = "of the Worthy", "18% reduced Attribute Requirements", statOrder = { 964 }, level = 36, group = "LocalAttributeRequirements", weightKey = { "weapon", "body_armour", "helmet", "shield", "gloves", "boots", "default", }, weightVal = { 1000, 850, 650, 750, 450, 550, 0 }, modTags = { }, }, - ["ReducedLocalAttributeRequirements2"] = { type = "Suffix", affix = "of the Apt", "32% reduced Attribute Requirements", statOrder = { 964 }, level = 60, group = "LocalAttributeRequirements", weightKey = { "weapon", "body_armour", "helmet", "shield", "gloves", "boots", "default", }, weightVal = { 1000, 850, 650, 750, 450, 550, 0 }, modTags = { }, }, - ["LightRadiusAndAccuracy1"] = { type = "Suffix", affix = "of Shining", "+(10-20) to Accuracy Rating", "5% increased Light Radius", statOrder = { 1317, 2376 }, level = 8, group = "LightRadiusAndAccuracy", weightKey = { "helmet", "ring", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, - ["LightRadiusAndAccuracy2"] = { type = "Suffix", affix = "of Light", "+(21-40) to Accuracy Rating", "10% increased Light Radius", statOrder = { 1317, 2376 }, level = 15, group = "LightRadiusAndAccuracy", weightKey = { "helmet", "ring", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, - ["LightRadiusAndAccuracy3"] = { type = "Suffix", affix = "of Radiance", "(16-20)% increased Global Accuracy Rating", "15% increased Light Radius", statOrder = { 1318, 2376 }, level = 30, group = "LightRadiusAndAccuracyPercent", weightKey = { "helmet", "ring", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "attack" }, }, - ["LightRadiusAndAccuracyNew1"] = { type = "Suffix", affix = "of Shining", "(9-11)% increased Global Accuracy Rating", "5% increased Light Radius", statOrder = { 1318, 2376 }, level = 8, group = "LightRadiusAndAccuracyPercent", weightKey = { "helmet", "ring", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "attack" }, }, - ["LightRadiusAndAccuracyNew2"] = { type = "Suffix", affix = "of Light", "(12-15)% increased Global Accuracy Rating", "10% increased Light Radius", statOrder = { 1318, 2376 }, level = 15, group = "LightRadiusAndAccuracyPercent", weightKey = { "helmet", "ring", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "attack" }, }, - ["LocalLightRadiusAndAccuracy1"] = { type = "Suffix", affix = "of Shining", "+(10-20) to Accuracy Rating", "5% increased Light Radius", statOrder = { 1901, 2376 }, level = 8, group = "LocalLightRadiusAndAccuracy", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, }, - ["LocalLightRadiusAndAccuracy2"] = { type = "Suffix", affix = "of Light", "+(21-40) to Accuracy Rating", "10% increased Light Radius", statOrder = { 1901, 2376 }, level = 15, group = "LocalLightRadiusAndAccuracy", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, }, - ["LocalLightRadiusAndAccuracy3"] = { type = "Suffix", affix = "of Radiance", "(16-20)% increased Global Accuracy Rating", "15% increased Light Radius", statOrder = { 1318, 2376 }, level = 30, group = "LocalLightRadiusAndAccuracyPercent", weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, modTags = { "attack" }, }, - ["LocalLightRadiusAndAccuracyNew1_"] = { type = "Suffix", affix = "of Shining", "(9-11)% increased Global Accuracy Rating", "5% increased Light Radius", statOrder = { 1318, 2376 }, level = 8, group = "LocalLightRadiusAndAccuracyPercent", weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack" }, }, - ["LocalLightRadiusAndAccuracyNew2"] = { type = "Suffix", affix = "of Light", "(12-15)% increased Global Accuracy Rating", "10% increased Light Radius", statOrder = { 1318, 2376 }, level = 15, group = "LocalLightRadiusAndAccuracyPercent", weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack" }, }, - ["LocalIncreasedMeleeWeaponRangeEssence5"] = { type = "Suffix", affix = "of the Essence", "+0.1 metres to Weapon Range", statOrder = { 2620 }, level = 58, group = "LocalMeleeWeaponRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, }, - ["LocalIncreasedMeleeWeaponRangeEssence6"] = { type = "Suffix", affix = "of the Essence", "+0.2 metres to Weapon Range", statOrder = { 2620 }, level = 74, group = "LocalMeleeWeaponRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, }, - ["LocalIncreasedMeleeWeaponRangeEssence7"] = { type = "Suffix", affix = "of the Essence", "+0.3 metres to Weapon Range", statOrder = { 2620 }, level = 82, group = "LocalMeleeWeaponRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, }, - ["GainLifeOnBlock1"] = { type = "Suffix", affix = "of Repairing", "(5-15) Life gained when you Block", statOrder = { 1638 }, level = 11, group = "GainLifeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "life" }, }, - ["GainLifeOnBlock2_"] = { type = "Suffix", affix = "of Resurgence", "(16-25) Life gained when you Block", statOrder = { 1638 }, level = 22, group = "GainLifeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "life" }, }, - ["GainLifeOnBlock3"] = { type = "Suffix", affix = "of Renewal", "(26-40) Life gained when you Block", statOrder = { 1638 }, level = 36, group = "GainLifeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "life" }, }, - ["GainLifeOnBlock4"] = { type = "Suffix", affix = "of Revival", "(41-60) Life gained when you Block", statOrder = { 1638 }, level = 48, group = "GainLifeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "life" }, }, - ["GainLifeOnBlock5"] = { type = "Suffix", affix = "of Rebounding", "(61-85) Life gained when you Block", statOrder = { 1638 }, level = 60, group = "GainLifeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "life" }, }, - ["GainLifeOnBlock6_"] = { type = "Suffix", affix = "of Revitalization", "(86-100) Life gained when you Block", statOrder = { 1638 }, level = 75, group = "GainLifeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "life" }, }, - ["GainManaOnBlock1"] = { type = "Suffix", affix = "of Redirection", "(4-12) Mana gained when you Block", statOrder = { 1639 }, level = 15, group = "GainManaOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "mana" }, }, - ["GainManaOnBlock2"] = { type = "Suffix", affix = "of Transformation", "(13-21) Mana gained when you Block", statOrder = { 1639 }, level = 32, group = "GainManaOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "mana" }, }, - ["GainManaOnBlock3"] = { type = "Suffix", affix = "of Conservation", "(22-30) Mana gained when you Block", statOrder = { 1639 }, level = 58, group = "GainManaOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "mana" }, }, - ["GainManaOnBlock4"] = { type = "Suffix", affix = "of Utilisation", "(31-39) Mana gained when you Block", statOrder = { 1639 }, level = 75, group = "GainManaOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "mana" }, }, - ["FishingLineStrength"] = { type = "Prefix", affix = "Filigree", "(20-40)% increased Fishing Line Strength", statOrder = { 2717 }, level = 1, group = "FishingLineStrength", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["FishingPoolConsumption"] = { type = "Prefix", affix = "Calming", "(15-30)% reduced Fishing Pool Consumption", statOrder = { 2718 }, level = 1, group = "FishingPoolConsumption", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["FishingLureType"] = { type = "Prefix", affix = "Alluring", "Rhoa Feather Lure", statOrder = { 2719 }, level = 1, group = "FishingLureType", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["FishingHookType"] = { type = "Suffix", affix = "of Snaring", "Karui Stone Hook", statOrder = { 2720 }, level = 1, group = "FishingHookType", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["FishingCastDistance"] = { type = "Suffix", affix = "of Flight", "(30-50)% increased Fishing Range", statOrder = { 2721 }, level = 1, group = "FishingCastDistance", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["FishingQuantity"] = { type = "Suffix", affix = "of Fascination", "(15-20)% increased Quantity of Fish Caught", statOrder = { 2722 }, level = 1, group = "FishingQuantity", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { "drop" }, }, - ["FishingRarity"] = { type = "Suffix", affix = "of Bounty", "(25-40)% increased Rarity of Fish Caught", statOrder = { 2723 }, level = 1, group = "FishingRarity", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { "drop" }, }, - ["ChanceToDodge1"] = { type = "Suffix", affix = "of Mist", "+3% chance to Suppress Spell Damage", statOrder = { 1031 }, level = 35, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["ChanceToDodge2"] = { type = "Suffix", affix = "of Haze", "+4% chance to Suppress Spell Damage", statOrder = { 1031 }, level = 62, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["ChanceToDodge3"] = { type = "Suffix", affix = "of Fog", "+6% chance to Suppress Spell Damage", statOrder = { 1031 }, level = 78, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["ChanceToDodgeEssence4"] = { type = "Suffix", affix = "of the Essence", "+(4-6)% chance to Suppress Spell Damage", statOrder = { 1031 }, level = 42, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["ChanceToDodgeEssence5"] = { type = "Suffix", affix = "of the Essence", "+(7-9)% chance to Suppress Spell Damage", statOrder = { 1031 }, level = 58, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["ChanceToDodgeEssence6"] = { type = "Suffix", affix = "of the Essence", "+(10-12)% chance to Suppress Spell Damage", statOrder = { 1031 }, level = 74, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["ChanceToDodgeEssence7"] = { type = "Suffix", affix = "of the Essence", "+(13-15)% chance to Suppress Spell Damage", statOrder = { 1031 }, level = 82, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["ChanceToDodgeSpells1"] = { type = "Suffix", affix = "of Prayers", "+3% chance to Suppress Spell Damage", statOrder = { 1031 }, level = 35, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["ChanceToDodgeSpells2"] = { type = "Suffix", affix = "of Invocations", "+4% chance to Suppress Spell Damage", statOrder = { 1031 }, level = 62, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["ChanceToDodgeSpells3"] = { type = "Suffix", affix = "of Incantations", "+6% chance to Suppress Spell Damage", statOrder = { 1031 }, level = 78, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["ChanceToDodgeSpellsEssence5"] = { type = "Suffix", affix = "of the Essence", "+(4-6)% chance to Suppress Spell Damage", statOrder = { 1031 }, level = 1, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["ChanceToDodgeSpellsEssence6"] = { type = "Suffix", affix = "of the Essence", "+(7-9)% chance to Suppress Spell Damage", statOrder = { 1031 }, level = 1, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["ChanceToDodgeSpellsEssence7"] = { type = "Suffix", affix = "of the Essence", "+(10-12)% chance to Suppress Spell Damage", statOrder = { 1031 }, level = 1, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["ChaosResistanceWhileUsingFlaskEssence1"] = { type = "Suffix", affix = "of the Essence", "+50% to Chaos Resistance during any Flask Effect", statOrder = { 3167 }, level = 63, group = "ChaosResistanceWhileUsingFlask", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "chaos", "resistance" }, }, - ["SpellBlockPercentage1__"] = { type = "Suffix", affix = "of the Barrier", "(4-6)% Chance to Block Spell Damage", statOrder = { 1046 }, level = 30, group = "SpellBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, - ["SpellBlockPercentage2"] = { type = "Suffix", affix = "of the Bulwark", "(7-9)% Chance to Block Spell Damage", statOrder = { 1046 }, level = 52, group = "SpellBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, - ["SpellBlockPercentage3_"] = { type = "Suffix", affix = "of the Barricade", "(10-12)% Chance to Block Spell Damage", statOrder = { 1046 }, level = 71, group = "SpellBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, - ["SpellBlockPercentage4_"] = { type = "Suffix", affix = "of the Bastion", "(13-15)% Chance to Block Spell Damage", statOrder = { 1046 }, level = 84, group = "SpellBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, + ["Strength1"] = { type = "Suffix", affix = "of the Brute", "+(8-12) to Strength", statOrder = { 1089 }, level = 1, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 333, 500, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, }, + ["Strength2"] = { type = "Suffix", affix = "of the Wrestler", "+(13-17) to Strength", statOrder = { 1089 }, level = 11, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 333, 500, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, }, + ["Strength3"] = { type = "Suffix", affix = "of the Bear", "+(18-22) to Strength", statOrder = { 1089 }, level = 22, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 333, 500, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, }, + ["Strength4"] = { type = "Suffix", affix = "of the Lion", "+(23-27) to Strength", statOrder = { 1089 }, level = 33, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 333, 500, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, }, + ["Strength5"] = { type = "Suffix", affix = "of the Gorilla", "+(28-32) to Strength", statOrder = { 1089 }, level = 44, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 333, 500, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, }, + ["Strength6"] = { type = "Suffix", affix = "of the Goliath", "+(33-37) to Strength", statOrder = { 1089 }, level = 55, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 333, 500, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, }, + ["Strength7"] = { type = "Suffix", affix = "of the Leviathan", "+(38-42) to Strength", statOrder = { 1089 }, level = 66, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 333, 500, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, }, + ["Strength8"] = { type = "Suffix", affix = "of the Titan", "+(43-50) to Strength", statOrder = { 1089 }, level = 74, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 333, 500, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, }, + ["Strength9"] = { type = "Suffix", affix = "of the Gods", "+(51-55) to Strength", statOrder = { 1089 }, level = 82, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 333, 500, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, }, + ["Strength10"] = { type = "Suffix", affix = "of the Godslayer", "+(56-60) to Strength", statOrder = { 1089 }, level = 85, group = "Strength", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "attribute" }, }, + ["StrengthEssence7_"] = { type = "Suffix", affix = "of the Essence", "+(51-58) to Strength", statOrder = { 1089 }, level = 82, group = "Strength", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attribute" }, }, + ["Dexterity1"] = { type = "Suffix", affix = "of the Mongoose", "+(8-12) to Dexterity", statOrder = { 1090 }, level = 1, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 500, 500, 333, 1000, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, }, + ["Dexterity2"] = { type = "Suffix", affix = "of the Lynx", "+(13-17) to Dexterity", statOrder = { 1090 }, level = 11, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 500, 500, 333, 1000, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, }, + ["Dexterity3"] = { type = "Suffix", affix = "of the Fox", "+(18-22) to Dexterity", statOrder = { 1090 }, level = 22, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 500, 500, 333, 1000, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, }, + ["Dexterity4"] = { type = "Suffix", affix = "of the Falcon", "+(23-27) to Dexterity", statOrder = { 1090 }, level = 33, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 500, 500, 333, 1000, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, }, + ["Dexterity5"] = { type = "Suffix", affix = "of the Panther", "+(28-32) to Dexterity", statOrder = { 1090 }, level = 44, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 500, 500, 333, 1000, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, }, + ["Dexterity6"] = { type = "Suffix", affix = "of the Leopard", "+(33-37) to Dexterity", statOrder = { 1090 }, level = 55, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 500, 500, 333, 1000, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, }, + ["Dexterity7"] = { type = "Suffix", affix = "of the Jaguar", "+(38-42) to Dexterity", statOrder = { 1090 }, level = 66, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 500, 500, 333, 1000, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, }, + ["Dexterity8"] = { type = "Suffix", affix = "of the Phantom", "+(43-50) to Dexterity", statOrder = { 1090 }, level = 74, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 500, 500, 333, 1000, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, }, + ["Dexterity9"] = { type = "Suffix", affix = "of the Wind", "+(51-55) to Dexterity", statOrder = { 1090 }, level = 82, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 500, 500, 333, 1000, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, }, + ["Dexterity10"] = { type = "Suffix", affix = "of the Blur", "+(56-60) to Dexterity", statOrder = { 1090 }, level = 85, group = "Dexterity", weightKey = { "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "attribute" }, }, + ["DexterityEssence7"] = { type = "Suffix", affix = "of the Essence", "+(51-58) to Dexterity", statOrder = { 1090 }, level = 82, group = "Dexterity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attribute" }, }, + ["Intelligence1"] = { type = "Suffix", affix = "of the Pupil", "+(8-12) to Intelligence", statOrder = { 1091 }, level = 1, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 500, 333, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, }, + ["Intelligence2"] = { type = "Suffix", affix = "of the Student", "+(13-17) to Intelligence", statOrder = { 1091 }, level = 11, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 500, 333, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, }, + ["Intelligence3"] = { type = "Suffix", affix = "of the Prodigy", "+(18-22) to Intelligence", statOrder = { 1091 }, level = 22, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 500, 333, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, }, + ["Intelligence4"] = { type = "Suffix", affix = "of the Augur", "+(23-27) to Intelligence", statOrder = { 1091 }, level = 33, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 500, 333, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, }, + ["Intelligence5"] = { type = "Suffix", affix = "of the Philosopher", "+(28-32) to Intelligence", statOrder = { 1091 }, level = 44, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 500, 333, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, }, + ["Intelligence6"] = { type = "Suffix", affix = "of the Sage", "+(33-37) to Intelligence", statOrder = { 1091 }, level = 55, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 500, 333, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, }, + ["Intelligence7"] = { type = "Suffix", affix = "of the Savant", "+(38-42) to Intelligence", statOrder = { 1091 }, level = 66, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 500, 333, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, }, + ["Intelligence8"] = { type = "Suffix", affix = "of the Virtuoso", "+(43-50) to Intelligence", statOrder = { 1091 }, level = 74, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 500, 333, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, }, + ["Intelligence9"] = { type = "Suffix", affix = "of the Genius", "+(51-55) to Intelligence", statOrder = { 1091 }, level = 82, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 500, 333, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, }, + ["Intelligence10"] = { type = "Suffix", affix = "of the Polymath", "+(56-60) to Intelligence", statOrder = { 1091 }, level = 85, group = "Intelligence", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { "attribute" }, }, + ["IntelligenceEssence7"] = { type = "Suffix", affix = "of the Essence", "+(51-58) to Intelligence", statOrder = { 1091 }, level = 82, group = "Intelligence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attribute" }, }, + ["AllAttributes1"] = { type = "Suffix", affix = "of the Clouds", "+(1-4) to all Attributes", statOrder = { 1088 }, level = 1, group = "AllAttributes", weightKey = { "amulet", "ring", "default", }, weightVal = { 800, 400, 0 }, modTags = { "attribute" }, }, + ["AllAttributes2"] = { type = "Suffix", affix = "of the Sky", "+(5-8) to all Attributes", statOrder = { 1088 }, level = 11, group = "AllAttributes", weightKey = { "amulet", "ring", "default", }, weightVal = { 800, 400, 0 }, modTags = { "attribute" }, }, + ["AllAttributes3"] = { type = "Suffix", affix = "of the Meteor", "+(9-12) to all Attributes", statOrder = { 1088 }, level = 22, group = "AllAttributes", weightKey = { "amulet", "ring", "default", }, weightVal = { 800, 400, 0 }, modTags = { "attribute" }, }, + ["AllAttributes4"] = { type = "Suffix", affix = "of the Comet", "+(13-16) to all Attributes", statOrder = { 1088 }, level = 33, group = "AllAttributes", weightKey = { "amulet", "ring", "default", }, weightVal = { 800, 400, 0 }, modTags = { "attribute" }, }, + ["AllAttributes5"] = { type = "Suffix", affix = "of the Heavens", "+(17-20) to all Attributes", statOrder = { 1088 }, level = 44, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 800, 0 }, modTags = { "attribute" }, }, + ["AllAttributes6"] = { type = "Suffix", affix = "of the Galaxy", "+(21-24) to all Attributes", statOrder = { 1088 }, level = 55, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 800, 0 }, modTags = { "attribute" }, }, + ["AllAttributes7"] = { type = "Suffix", affix = "of the Universe", "+(25-28) to all Attributes", statOrder = { 1088 }, level = 66, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 800, 0 }, modTags = { "attribute" }, }, + ["AllAttributes8"] = { type = "Suffix", affix = "of the Infinite", "+(29-32) to all Attributes", statOrder = { 1088 }, level = 77, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 800, 0 }, modTags = { "attribute" }, }, + ["AllAttributes9_"] = { type = "Suffix", affix = "of the Multiverse", "+(33-35) to all Attributes", statOrder = { 1088 }, level = 85, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 800, 0 }, modTags = { "attribute" }, }, + ["IncreasedLife0"] = { type = "Prefix", affix = "Hale", "+(3-9) to maximum Life", statOrder = { 1480 }, level = 1, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000 }, modTags = { "resource", "life" }, }, + ["IncreasedLife1"] = { type = "Prefix", affix = "Healthy", "+(10-24) to maximum Life", statOrder = { 1480 }, level = 5, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000 }, modTags = { "resource", "life" }, }, + ["IncreasedLife2"] = { type = "Prefix", affix = "Sanguine", "+(25-39) to maximum Life", statOrder = { 1480 }, level = 11, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000 }, modTags = { "resource", "life" }, }, + ["IncreasedLife3"] = { type = "Prefix", affix = "Stalwart", "+(40-54) to maximum Life", statOrder = { 1480 }, level = 18, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000 }, modTags = { "resource", "life" }, }, + ["IncreasedLife4"] = { type = "Prefix", affix = "Stout", "+(55-69) to maximum Life", statOrder = { 1480 }, level = 24, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000 }, modTags = { "resource", "life" }, }, + ["IncreasedLife5"] = { type = "Prefix", affix = "Robust", "+(70-84) to maximum Life", statOrder = { 1480 }, level = 30, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000 }, modTags = { "resource", "life" }, }, + ["IncreasedLife6"] = { type = "Prefix", affix = "Rotund", "+(85-99) to maximum Life", statOrder = { 1480 }, level = 36, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000 }, modTags = { "resource", "life" }, }, + ["IncreasedLife7"] = { type = "Prefix", affix = "Virile", "+(100-114) to maximum Life", statOrder = { 1480 }, level = 44, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000 }, modTags = { "resource", "life" }, }, + ["IncreasedLife8"] = { type = "Prefix", affix = "Athlete's", "+(115-129) to maximum Life", statOrder = { 1480 }, level = 54, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "ring", "default", }, weightVal = { 0, 0, 0, 1000 }, modTags = { "resource", "life" }, }, + ["IncreasedLife9"] = { type = "Prefix", affix = "Fecund", "+(130-144) to maximum Life", statOrder = { 1480 }, level = 64, group = "IncreasedLife", weightKey = { "fishing_rod", "boots", "gloves", "weapon", "ring", "amulet", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1000 }, modTags = { "resource", "life" }, }, + ["IncreasedLife10"] = { type = "Prefix", affix = "Vigorous", "+(145-159) to maximum Life", statOrder = { 1480 }, level = 73, group = "IncreasedLife", weightKey = { "shield", "body_armour", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resource", "life" }, }, + ["IncreasedLife11"] = { type = "Prefix", affix = "Rapturous", "+(160-174) to maximum Life", statOrder = { 1480 }, level = 81, group = "IncreasedLife", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life" }, }, + ["IncreasedLife12"] = { type = "Prefix", affix = "Prime", "+(175-189) to maximum Life", statOrder = { 1480 }, level = 86, group = "IncreasedLife", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life" }, }, + ["IncreasedLifeEssence1_"] = { type = "Prefix", affix = "Essences", "+(5-14) to maximum Life", statOrder = { 1480 }, level = 3, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, + ["IncreasedLifeEssence2"] = { type = "Prefix", affix = "Essences", "+(15-30) to maximum Life", statOrder = { 1480 }, level = 10, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, + ["IncreasedLifeEssence3"] = { type = "Prefix", affix = "Essences", "+(31-45) to maximum Life", statOrder = { 1480 }, level = 26, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, + ["IncreasedLifeEssence4"] = { type = "Prefix", affix = "Essences", "+(46-60) to maximum Life", statOrder = { 1480 }, level = 42, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, + ["IncreasedLifeEssence5"] = { type = "Prefix", affix = "Essences", "+(61-75) to maximum Life", statOrder = { 1480 }, level = 58, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, + ["IncreasedLifeEssence6"] = { type = "Prefix", affix = "Essences", "+(76-90) to maximum Life", statOrder = { 1480 }, level = 74, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, + ["IncreasedLifeEssenceChest1"] = { type = "Prefix", affix = "Essences", "+(120-126) to maximum Life", statOrder = { 1480 }, level = 82, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, + ["IncreasedLifeEssenceShield1"] = { type = "Prefix", affix = "Essences", "+(110-116) to maximum Life", statOrder = { 1480 }, level = 82, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, + ["IncreasedLifeEssenceHelm1"] = { type = "Prefix", affix = "Essences", "+(100-106) to maximum Life", statOrder = { 1480 }, level = 82, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, + ["IncreasedLifeEssenceBootsGloves1"] = { type = "Prefix", affix = "Essences", "+(91-105) to maximum Life", statOrder = { 1480 }, level = 82, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, + ["IncreasedLifeEnhancedMod"] = { type = "Prefix", affix = "Guatelitzi's", "+(70-79) to maximum Life", "(3-5)% increased maximum Life", statOrder = { 1480, 1482 }, level = 1, group = "IncreasedLifeAndPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, + ["IncreasedLifeEnhancedBodyMod___"] = { type = "Prefix", affix = "Guatelitzi's", "+(110-119) to maximum Life", "(8-10)% increased maximum Life", statOrder = { 1480, 1482 }, level = 1, group = "IncreasedLifeAndPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, + ["IncreasedMana1"] = { type = "Prefix", affix = "Beryl", "+(15-19) to maximum Mana", statOrder = { 1490 }, level = 1, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedMana2"] = { type = "Prefix", affix = "Cobalt", "+(20-24) to maximum Mana", statOrder = { 1490 }, level = 11, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedMana3"] = { type = "Prefix", affix = "Azure", "+(25-29) to maximum Mana", statOrder = { 1490 }, level = 17, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedMana4"] = { type = "Prefix", affix = "Sapphire", "+(30-34) to maximum Mana", statOrder = { 1490 }, level = 23, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedMana5"] = { type = "Prefix", affix = "Cerulean", "+(35-39) to maximum Mana", statOrder = { 1490 }, level = 29, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedMana6"] = { type = "Prefix", affix = "Aqua", "+(40-44) to maximum Mana", statOrder = { 1490 }, level = 35, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedMana7"] = { type = "Prefix", affix = "Opalescent", "+(45-49) to maximum Mana", statOrder = { 1490 }, level = 42, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedMana8"] = { type = "Prefix", affix = "Gentian", "+(50-54) to maximum Mana", statOrder = { 1490 }, level = 51, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedMana9"] = { type = "Prefix", affix = "Chalybeous", "+(55-59) to maximum Mana", statOrder = { 1490 }, level = 60, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedMana10"] = { type = "Prefix", affix = "Mazarine", "+(60-64) to maximum Mana", statOrder = { 1490 }, level = 69, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedMana11"] = { type = "Prefix", affix = "Blue", "+(65-68) to maximum Mana", statOrder = { 1490 }, level = 75, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedMana12"] = { type = "Prefix", affix = "Zaffre", "+(69-73) to maximum Mana", statOrder = { 1490 }, level = 81, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedMana13"] = { type = "Prefix", affix = "Ultramarine", "+(74-78) to maximum Mana", statOrder = { 1490 }, level = 85, group = "IncreasedMana", weightKey = { "ring", "amulet", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaEssence7"] = { type = "Prefix", affix = "Essences", "+(69-77) to maximum Mana", statOrder = { 1490 }, level = 82, group = "IncreasedMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaEnhancedModPercent"] = { type = "Prefix", affix = "Xopec's", "+(69-73) to maximum Mana", "(7-10)% increased maximum Mana", statOrder = { 1490, 1491 }, level = 1, group = "IncreasedManaAndPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaEnhancedModOnHit_"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "Gain (2-3) Mana per Enemy Hit with Attacks", statOrder = { 1490, 1655 }, level = 1, group = "IncreasedManaAndOnHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "attack" }, }, + ["IncreasedManaEnhancedModRegen"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "Regenerate (5-7) Mana per second", statOrder = { 1490, 1493 }, level = 1, group = "IncreasedManaAndRegen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaEnhancedModReservation"] = { type = "Prefix", affix = "Xopec's", "+(69-73) to maximum Mana", "(6-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 1490, 2141 }, level = 1, group = "IncreasedManaAndReservation", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaEnhancedModCost"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "-(8-6) to Total Mana Cost of Skills", statOrder = { 1490, 1802 }, level = 1, group = "IncreasedManaAndCost", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaWeapon1"] = { type = "Prefix", affix = "Beryl", "+(30-39) to maximum Mana", statOrder = { 1490 }, level = 1, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaWeapon2__"] = { type = "Prefix", affix = "Cobalt", "+(40-49) to maximum Mana", statOrder = { 1490 }, level = 11, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaWeapon3_"] = { type = "Prefix", affix = "Azure", "+(50-59) to maximum Mana", statOrder = { 1490 }, level = 17, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaWeapon4"] = { type = "Prefix", affix = "Sapphire", "+(60-69) to maximum Mana", statOrder = { 1490 }, level = 23, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaWeapon5"] = { type = "Prefix", affix = "Cerulean", "+(70-79) to maximum Mana", statOrder = { 1490 }, level = 29, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaWeapon6"] = { type = "Prefix", affix = "Aqua", "+(80-89) to maximum Mana", statOrder = { 1490 }, level = 35, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaWeapon7"] = { type = "Prefix", affix = "Opalescent", "+(90-99) to maximum Mana", statOrder = { 1490 }, level = 42, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaWeapon8"] = { type = "Prefix", affix = "Gentian", "+(100-109) to maximum Mana", statOrder = { 1490 }, level = 51, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaWeapon9___"] = { type = "Prefix", affix = "Chalybeous", "+(110-119) to maximum Mana", statOrder = { 1490 }, level = 60, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaWeapon10"] = { type = "Prefix", affix = "Mazarine", "+(120-129) to maximum Mana", statOrder = { 1490 }, level = 69, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 800, 800, 800, 800, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaWeapon11"] = { type = "Prefix", affix = "Blue", "+(130-139) to maximum Mana", statOrder = { 1490 }, level = 75, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 600, 600, 600, 600, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaWeapon12"] = { type = "Prefix", affix = "Zaffre", "+(140-159) to maximum Mana", statOrder = { 1490 }, level = 81, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 400, 400, 400, 400, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaTwoHandWeapon1"] = { type = "Prefix", affix = "Beryl", "+(40-49) to maximum Mana", statOrder = { 1490 }, level = 1, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaTwoHandWeapon2_"] = { type = "Prefix", affix = "Cobalt", "+(50-59) to maximum Mana", statOrder = { 1490 }, level = 11, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaTwoHandWeapon3_"] = { type = "Prefix", affix = "Azure", "+(60-69) to maximum Mana", statOrder = { 1490 }, level = 17, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaTwoHandWeapon4"] = { type = "Prefix", affix = "Sapphire", "+(70-79) to maximum Mana", statOrder = { 1490 }, level = 23, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaTwoHandWeapon5"] = { type = "Prefix", affix = "Cerulean", "+(80-89) to maximum Mana", statOrder = { 1490 }, level = 29, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaTwoHandWeapon6"] = { type = "Prefix", affix = "Aqua", "+(90-99) to maximum Mana", statOrder = { 1490 }, level = 35, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaTwoHandWeapon7"] = { type = "Prefix", affix = "Opalescent", "+(100-119) to maximum Mana", statOrder = { 1490 }, level = 42, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaTwoHandWeapon8_"] = { type = "Prefix", affix = "Gentian", "+(120-139) to maximum Mana", statOrder = { 1490 }, level = 51, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaTwoHandWeapon9"] = { type = "Prefix", affix = "Chalybeous", "+(140-159) to maximum Mana", statOrder = { 1490 }, level = 60, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaTwoHandWeapon10"] = { type = "Prefix", affix = "Mazarine", "+(160-179) to maximum Mana", statOrder = { 1490 }, level = 69, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaTwoHandWeapon11"] = { type = "Prefix", affix = "Blue", "+(180-199) to maximum Mana", statOrder = { 1490 }, level = 75, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 600, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaTwoHandWeapon12"] = { type = "Prefix", affix = "Zaffre", "+(200-229) to maximum Mana", statOrder = { 1490 }, level = 81, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 400, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedEnergyShield1"] = { type = "Prefix", affix = "Shining", "+(1-3) to maximum Energy Shield", statOrder = { 1469 }, level = 3, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["IncreasedEnergyShield2"] = { type = "Prefix", affix = "Glimmering", "+(4-8) to maximum Energy Shield", statOrder = { 1469 }, level = 11, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["IncreasedEnergyShield3"] = { type = "Prefix", affix = "Glittering", "+(9-12) to maximum Energy Shield", statOrder = { 1469 }, level = 17, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["IncreasedEnergyShield4"] = { type = "Prefix", affix = "Glowing", "+(13-15) to maximum Energy Shield", statOrder = { 1469 }, level = 23, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["IncreasedEnergyShield5"] = { type = "Prefix", affix = "Radiating", "+(16-19) to maximum Energy Shield", statOrder = { 1469 }, level = 29, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["IncreasedEnergyShield6"] = { type = "Prefix", affix = "Pulsing", "+(20-22) to maximum Energy Shield", statOrder = { 1469 }, level = 35, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["IncreasedEnergyShield7"] = { type = "Prefix", affix = "Seething", "+(23-26) to maximum Energy Shield", statOrder = { 1469 }, level = 42, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["IncreasedEnergyShield8"] = { type = "Prefix", affix = "Blazing", "+(27-31) to maximum Energy Shield", statOrder = { 1469 }, level = 50, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["IncreasedEnergyShield9"] = { type = "Prefix", affix = "Scintillating", "+(32-37) to maximum Energy Shield", statOrder = { 1469 }, level = 59, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["IncreasedEnergyShield10"] = { type = "Prefix", affix = "Incandescent", "+(38-43) to maximum Energy Shield", statOrder = { 1469 }, level = 68, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["IncreasedEnergyShield11"] = { type = "Prefix", affix = "Resplendent", "+(44-47) to maximum Energy Shield", statOrder = { 1469 }, level = 74, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["IncreasedEnergyShield12"] = { type = "Prefix", affix = "Dazzling", "+(48-51) to maximum Energy Shield", statOrder = { 1469 }, level = 80, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["IncreasedEnergyShieldEnhancedModES"] = { type = "Prefix", affix = "Guatelitzi's", "+(44-47) to maximum Energy Shield", "(7-10)% increased maximum Energy Shield", statOrder = { 1469, 1472 }, level = 1, group = "EnergyShieldAndPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, + ["IncreasedEnergyShieldEnhancedModRegen_"] = { type = "Prefix", affix = "Guatelitzi's", "+(44-47) to maximum Energy Shield", "Regenerate 0.4% of Energy Shield per second", statOrder = { 1469, 2554 }, level = 1, group = "EnergyShieldAndRegen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShield1"] = { type = "Prefix", affix = "Shining", "+(3-5) to maximum Energy Shield", statOrder = { 1470 }, level = 3, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShield2"] = { type = "Prefix", affix = "Glimmering", "+(6-11) to maximum Energy Shield", statOrder = { 1470 }, level = 11, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShield3"] = { type = "Prefix", affix = "Glittering", "+(12-16) to maximum Energy Shield", statOrder = { 1470 }, level = 17, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShield4"] = { type = "Prefix", affix = "Glowing", "+(17-23) to maximum Energy Shield", statOrder = { 1470 }, level = 23, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShield5"] = { type = "Prefix", affix = "Radiating", "+(24-30) to maximum Energy Shield", statOrder = { 1470 }, level = 29, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShield6"] = { type = "Prefix", affix = "Pulsing", "+(31-38) to maximum Energy Shield", statOrder = { 1470 }, level = 35, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShield7"] = { type = "Prefix", affix = "Seething", "+(39-49) to maximum Energy Shield", statOrder = { 1470 }, level = 43, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShield8"] = { type = "Prefix", affix = "Blazing", "+(50-61) to maximum Energy Shield", statOrder = { 1470 }, level = 51, group = "LocalEnergyShield", weightKey = { "gloves", "boots", "int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 166, 0 }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShield9"] = { type = "Prefix", affix = "Scintillating", "+(62-76) to maximum Energy Shield", statOrder = { 1470 }, level = 60, group = "LocalEnergyShield", weightKey = { "helmet", "gloves", "boots", "int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShield10"] = { type = "Prefix", affix = "Incandescent", "+(77-90) to maximum Energy Shield", statOrder = { 1470 }, level = 69, group = "LocalEnergyShield", weightKey = { "helmet", "gloves", "boots", "int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShield11"] = { type = "Prefix", affix = "Resplendent", "+(91-100) to maximum Energy Shield", statOrder = { 1470 }, level = 75, group = "LocalEnergyShield", weightKey = { "shield", "helmet", "gloves", "boots", "int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldEssenceChest5"] = { type = "Prefix", affix = "Essences", "+(62-72) to maximum Energy Shield", statOrder = { 1470 }, level = 58, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldEssenceChest6"] = { type = "Prefix", affix = "Essences", "+(73-82) to maximum Energy Shield", statOrder = { 1470 }, level = 74, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldEssenceChest7__"] = { type = "Prefix", affix = "Essences", "+(88-95) to maximum Energy Shield", statOrder = { 1470 }, level = 82, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldEssenceShield5"] = { type = "Prefix", affix = "Essences", "+(50-59) to maximum Energy Shield", statOrder = { 1470 }, level = 58, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldEssenceShield6"] = { type = "Prefix", affix = "Essences", "+(60-69) to maximum Energy Shield", statOrder = { 1470 }, level = 74, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldEssenceShield7"] = { type = "Prefix", affix = "Essences", "+(75-85) to maximum Energy Shield", statOrder = { 1470 }, level = 82, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldEssenceBootsGloves4"] = { type = "Prefix", affix = "Essences", "+(18-26) to maximum Energy Shield", statOrder = { 1470 }, level = 42, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldEssenceBootsGloves5"] = { type = "Prefix", affix = "Essences", "+(27-32) to maximum Energy Shield", statOrder = { 1470 }, level = 58, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldEssenceBootsGloves6"] = { type = "Prefix", affix = "Essences", "+(28-35) to maximum Energy Shield", statOrder = { 1470 }, level = 74, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldEssenceBootsGloves7"] = { type = "Prefix", affix = "Essences", "+(38-45) to maximum Energy Shield", statOrder = { 1470 }, level = 82, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldEssenceHelm5"] = { type = "Prefix", affix = "Essences", "+(39-45) to maximum Energy Shield", statOrder = { 1470 }, level = 58, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldEssenceHelm6"] = { type = "Prefix", affix = "Essences", "+(46-51) to maximum Energy Shield", statOrder = { 1470 }, level = 74, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldEssenceHelm7"] = { type = "Prefix", affix = "Essences", "+(52-58) to maximum Energy Shield", statOrder = { 1470 }, level = 82, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, + ["AddedPhysicalDamage1"] = { type = "Prefix", affix = "Glinting", "Adds 1 to 2 Physical Damage to Attacks", statOrder = { 1178 }, level = 5, group = "PhysicalDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamage2"] = { type = "Prefix", affix = "Burnished", "Adds (2-3) to (4-5) Physical Damage to Attacks", statOrder = { 1178 }, level = 13, group = "PhysicalDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamage3"] = { type = "Prefix", affix = "Polished", "Adds (3-4) to (6-7) Physical Damage to Attacks", statOrder = { 1178 }, level = 19, group = "PhysicalDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamage4"] = { type = "Prefix", affix = "Honed", "Adds (4-6) to (9-10) Physical Damage to Attacks", statOrder = { 1178 }, level = 28, group = "PhysicalDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamage5"] = { type = "Prefix", affix = "Gleaming", "Adds (5-7) to (11-12) Physical Damage to Attacks", statOrder = { 1178 }, level = 35, group = "PhysicalDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 1000, 1000, 0, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamage6"] = { type = "Prefix", affix = "Annealed", "Adds (6-9) to (13-15) Physical Damage to Attacks", statOrder = { 1178 }, level = 44, group = "PhysicalDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 1000, 1000, 0, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamage7"] = { type = "Prefix", affix = "Razor-sharp", "Adds (7-10) to (15-18) Physical Damage to Attacks", statOrder = { 1178 }, level = 52, group = "PhysicalDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 0, 1000, 0, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamage8"] = { type = "Prefix", affix = "Tempered", "Adds (9-12) to (19-22) Physical Damage to Attacks", statOrder = { 1178 }, level = 64, group = "PhysicalDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 0, 1000, 0, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamage9"] = { type = "Prefix", affix = "Flaring", "Adds (11-15) to (22-26) Physical Damage to Attacks", statOrder = { 1178 }, level = 76, group = "PhysicalDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 0, 1000, 0, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamageQuiver1"] = { type = "Prefix", affix = "Glinting", "Adds (1-2) to 3 Physical Damage to Attacks", statOrder = { 1178 }, level = 5, group = "PhysicalDamage", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamageQuiver2"] = { type = "Prefix", affix = "Burnished", "Adds (3-4) to (6-8) Physical Damage to Attacks", statOrder = { 1178 }, level = 13, group = "PhysicalDamage", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamageQuiver3"] = { type = "Prefix", affix = "Polished", "Adds (5-6) to (9-10) Physical Damage to Attacks", statOrder = { 1178 }, level = 19, group = "PhysicalDamage", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamageQuiver4"] = { type = "Prefix", affix = "Honed", "Adds (6-9) to (13-16) Physical Damage to Attacks", statOrder = { 1178 }, level = 28, group = "PhysicalDamage", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamageQuiver5"] = { type = "Prefix", affix = "Gleaming", "Adds (8-11) to (16-18) Physical Damage to Attacks", statOrder = { 1178 }, level = 35, group = "PhysicalDamage", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamageQuiver6"] = { type = "Prefix", affix = "Annealed", "Adds (10-13) to (19-23) Physical Damage to Attacks", statOrder = { 1178 }, level = 44, group = "PhysicalDamage", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamageQuiver7"] = { type = "Prefix", affix = "Razor-sharp", "Adds (11-16) to (23-26) Physical Damage to Attacks", statOrder = { 1178 }, level = 52, group = "PhysicalDamage", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamageQuiver8"] = { type = "Prefix", affix = "Tempered", "Adds (14-19) to (28-33) Physical Damage to Attacks", statOrder = { 1178 }, level = 64, group = "PhysicalDamage", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamageQuiver9"] = { type = "Prefix", affix = "Flaring", "Adds (17-23) to (34-39) Physical Damage to Attacks", statOrder = { 1178 }, level = 76, group = "PhysicalDamage", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamageEssenceAmulet7"] = { type = "Prefix", affix = "Essences", "Adds (16-18) to (27-30) Physical Damage to Attacks", statOrder = { 1178 }, level = 82, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamageEssenceRing5"] = { type = "Prefix", affix = "Essences", "Adds (6-8) to (12-13) Physical Damage to Attacks", statOrder = { 1178 }, level = 58, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamageEssenceRing6"] = { type = "Prefix", affix = "Essences", "Adds (7-9) to (13-15) Physical Damage to Attacks", statOrder = { 1178 }, level = 74, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamageEssenceRing7"] = { type = "Prefix", affix = "Essences", "Adds (10-11) to (16-17) Physical Damage to Attacks", statOrder = { 1178 }, level = 82, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamageEssenceGlovesQuiver4"] = { type = "Prefix", affix = "Essences", "Adds (3-5) to (7-8) Physical Damage to Attacks", statOrder = { 1178 }, level = 42, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamageEssenceGlovesQuiver5"] = { type = "Prefix", affix = "Essences", "Adds (4-5) to (8-9) Physical Damage to Attacks", statOrder = { 1178 }, level = 58, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamageEssenceGlovesQuiver6"] = { type = "Prefix", affix = "Essences", "Adds (5-6) to (9-10) Physical Damage to Attacks", statOrder = { 1178 }, level = 74, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamageEssenceGlovesQuiver7"] = { type = "Prefix", affix = "Essences", "Adds (6-7) to (10-11) Physical Damage to Attacks", statOrder = { 1178 }, level = 82, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedFireDamage1"] = { type = "Prefix", affix = "Heated", "Adds 1 to 2 Fire Damage to Attacks", statOrder = { 1271 }, level = 1, group = "FireDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedFireDamage2"] = { type = "Prefix", affix = "Smouldering", "Adds (3-5) to (7-8) Fire Damage to Attacks", statOrder = { 1271 }, level = 12, group = "FireDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedFireDamage3"] = { type = "Prefix", affix = "Smoking", "Adds (5-7) to (11-13) Fire Damage to Attacks", statOrder = { 1271 }, level = 20, group = "FireDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedFireDamage4"] = { type = "Prefix", affix = "Burning", "Adds (7-10) to (15-18) Fire Damage to Attacks", statOrder = { 1271 }, level = 28, group = "FireDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedFireDamage5"] = { type = "Prefix", affix = "Flaming", "Adds (9-12) to (19-22) Fire Damage to Attacks", statOrder = { 1271 }, level = 35, group = "FireDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedFireDamage6"] = { type = "Prefix", affix = "Scorching", "Adds (11-15) to (23-27) Fire Damage to Attacks", statOrder = { 1271 }, level = 44, group = "FireDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedFireDamage7"] = { type = "Prefix", affix = "Incinerating", "Adds (13-18) to (27-31) Fire Damage to Attacks", statOrder = { 1271 }, level = 52, group = "FireDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 100, 500, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedFireDamage8"] = { type = "Prefix", affix = "Blasting", "Adds (16-22) to (32-38) Fire Damage to Attacks", statOrder = { 1271 }, level = 64, group = "FireDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 100, 500, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedFireDamage9"] = { type = "Prefix", affix = "Cremating", "Adds (19-25) to (39-45) Fire Damage to Attacks", statOrder = { 1271 }, level = 76, group = "FireDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 50, 250, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedFireDamageQuiver1"] = { type = "Prefix", affix = "Heated", "Adds (1-2) to 3 Fire Damage to Attacks", statOrder = { 1271 }, level = 1, group = "FireDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedFireDamageQuiver2"] = { type = "Prefix", affix = "Smouldering", "Adds (5-7) to (10-12) Fire Damage to Attacks", statOrder = { 1271 }, level = 12, group = "FireDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedFireDamageQuiver3"] = { type = "Prefix", affix = "Smoking", "Adds (8-10) to (15-18) Fire Damage to Attacks", statOrder = { 1271 }, level = 20, group = "FireDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedFireDamageQuiver4"] = { type = "Prefix", affix = "Burning", "Adds (11-14) to (21-25) Fire Damage to Attacks", statOrder = { 1271 }, level = 28, group = "FireDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedFireDamageQuiver5_"] = { type = "Prefix", affix = "Flaming", "Adds (13-18) to (27-31) Fire Damage to Attacks", statOrder = { 1271 }, level = 35, group = "FireDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedFireDamageQuiver6"] = { type = "Prefix", affix = "Scorching", "Adds (17-22) to (33-38) Fire Damage to Attacks", statOrder = { 1271 }, level = 44, group = "FireDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedFireDamageQuiver7"] = { type = "Prefix", affix = "Incinerating", "Adds (20-27) to (40-47) Fire Damage to Attacks", statOrder = { 1271 }, level = 52, group = "FireDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedFireDamageQuiver8__"] = { type = "Prefix", affix = "Blasting", "Adds (27-35) to (53-62) Fire Damage to Attacks", statOrder = { 1271 }, level = 64, group = "FireDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedFireDamageQuiver9"] = { type = "Prefix", affix = "Cremating", "Adds (37-50) to (74-87) Fire Damage to Attacks", statOrder = { 1271 }, level = 76, group = "FireDamage", weightKey = { "quiver", "default", }, weightVal = { 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedFireDamageQuiverEssence10"] = { type = "Prefix", affix = "Essences", "Adds (41-55) to (81-96) Fire Damage to Attacks", statOrder = { 1271 }, level = 82, group = "FireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedFireDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (23-27) to (43-48) Fire Damage to Attacks", statOrder = { 1271 }, level = 82, group = "FireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedFireDamageEssenceGlovesQuiver4"] = { type = "Prefix", affix = "Essences", "Adds (5-7) to (11-14) Fire Damage to Attacks", statOrder = { 1271 }, level = 42, group = "FireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedFireDamageEssenceGlovesQuiver5"] = { type = "Prefix", affix = "Essences", "Adds (6-8) to (13-17) Fire Damage to Attacks", statOrder = { 1271 }, level = 58, group = "FireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedFireDamageEssenceGlovesQuiver6"] = { type = "Prefix", affix = "Essences", "Adds (8-10) to (16-18) Fire Damage to Attacks", statOrder = { 1271 }, level = 74, group = "FireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedFireDamageEssenceGlovesQuiver7"] = { type = "Prefix", affix = "Essences", "Adds (9-11) to (17-21) Fire Damage to Attacks", statOrder = { 1271 }, level = 82, group = "FireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedColdDamage1"] = { type = "Prefix", affix = "Frosted", "Adds 1 to 2 Cold Damage to Attacks", statOrder = { 1280 }, level = 2, group = "ColdDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedColdDamage2"] = { type = "Prefix", affix = "Chilled", "Adds (3-4) to (7-8) Cold Damage to Attacks", statOrder = { 1280 }, level = 13, group = "ColdDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedColdDamage3"] = { type = "Prefix", affix = "Icy", "Adds (5-7) to (10-12) Cold Damage to Attacks", statOrder = { 1280 }, level = 21, group = "ColdDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedColdDamage4"] = { type = "Prefix", affix = "Frigid", "Adds (6-9) to (13-16) Cold Damage to Attacks", statOrder = { 1280 }, level = 29, group = "ColdDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedColdDamage5"] = { type = "Prefix", affix = "Freezing", "Adds (8-11) to (16-19) Cold Damage to Attacks", statOrder = { 1280 }, level = 36, group = "ColdDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedColdDamage6"] = { type = "Prefix", affix = "Frozen", "Adds (10-13) to (20-24) Cold Damage to Attacks", statOrder = { 1280 }, level = 45, group = "ColdDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedColdDamage7"] = { type = "Prefix", affix = "Glaciated", "Adds (12-16) to (24-28) Cold Damage to Attacks", statOrder = { 1280 }, level = 53, group = "ColdDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 100, 500, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedColdDamage8"] = { type = "Prefix", affix = "Polar", "Adds (14-19) to (29-34) Cold Damage to Attacks", statOrder = { 1280 }, level = 65, group = "ColdDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 100, 500, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedColdDamage9"] = { type = "Prefix", affix = "Entombing", "Adds (17-22) to (34-40) Cold Damage to Attacks", statOrder = { 1280 }, level = 77, group = "ColdDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 50, 250, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedColdDamageQuiver1"] = { type = "Prefix", affix = "Frosted", "Adds (1-2) to 3 Cold Damage to Attacks", statOrder = { 1280 }, level = 2, group = "ColdDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedColdDamageQuiver2"] = { type = "Prefix", affix = "Chilled", "Adds (5-6) to (9-10) Cold Damage to Attacks", statOrder = { 1280 }, level = 13, group = "ColdDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedColdDamageQuiver3_"] = { type = "Prefix", affix = "Icy", "Adds (7-9) to (14-16) Cold Damage to Attacks", statOrder = { 1280 }, level = 21, group = "ColdDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedColdDamageQuiver4__"] = { type = "Prefix", affix = "Frigid", "Adds (10-13) to (19-22) Cold Damage to Attacks", statOrder = { 1280 }, level = 29, group = "ColdDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedColdDamageQuiver5"] = { type = "Prefix", affix = "Freezing", "Adds (12-16) to (24-28) Cold Damage to Attacks", statOrder = { 1280 }, level = 36, group = "ColdDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedColdDamageQuiver6"] = { type = "Prefix", affix = "Frozen", "Adds (15-20) to (30-35) Cold Damage to Attacks", statOrder = { 1280 }, level = 45, group = "ColdDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedColdDamageQuiver7"] = { type = "Prefix", affix = "Glaciated", "Adds (18-24) to (36-42) Cold Damage to Attacks", statOrder = { 1280 }, level = 53, group = "ColdDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedColdDamageQuiver8"] = { type = "Prefix", affix = "Polar", "Adds (23-32) to (48-55) Cold Damage to Attacks", statOrder = { 1280 }, level = 65, group = "ColdDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedColdDamageQuiver9_"] = { type = "Prefix", affix = "Entombing", "Adds (33-45) to (67-78) Cold Damage to Attacks", statOrder = { 1280 }, level = 77, group = "ColdDamage", weightKey = { "quiver", "default", }, weightVal = { 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedColdDamageQuiverEssence10"] = { type = "Prefix", affix = "Essences", "Adds (36-50) to (74-86) Cold Damage to Attacks", statOrder = { 1280 }, level = 82, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedColdDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (20-24) to (38-44) Cold Damage to Attacks", statOrder = { 1280 }, level = 82, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedColdDamageEssenceQuiverGloves4"] = { type = "Prefix", affix = "Essences", "Adds (6-7) to (11-14) Cold Damage to Attacks", statOrder = { 1280 }, level = 42, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedColdDamageEssenceQuiverGloves5"] = { type = "Prefix", affix = "Essences", "Adds (6-8) to (12-15) Cold Damage to Attacks", statOrder = { 1280 }, level = 58, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedColdDamageEssenceQuiverGloves6"] = { type = "Prefix", affix = "Essences", "Adds (7-9) to (13-16) Cold Damage to Attacks", statOrder = { 1280 }, level = 74, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedColdDamageEssenceQuiverGloves7"] = { type = "Prefix", affix = "Essences", "Adds (8-10) to (14-17) Cold Damage to Attacks", statOrder = { 1280 }, level = 82, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedLightningDamage1"] = { type = "Prefix", affix = "Humming", "Adds 1 to 5 Lightning Damage to Attacks", statOrder = { 1291 }, level = 3, group = "LightningDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamage2"] = { type = "Prefix", affix = "Buzzing", "Adds 1 to (14-15) Lightning Damage to Attacks", statOrder = { 1291 }, level = 13, group = "LightningDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamage3"] = { type = "Prefix", affix = "Snapping", "Adds (1-2) to (22-23) Lightning Damage to Attacks", statOrder = { 1291 }, level = 22, group = "LightningDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamage4"] = { type = "Prefix", affix = "Crackling", "Adds (1-2) to (27-28) Lightning Damage to Attacks", statOrder = { 1291 }, level = 28, group = "LightningDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamage5"] = { type = "Prefix", affix = "Sparking", "Adds (1-3) to (33-34) Lightning Damage to Attacks", statOrder = { 1291 }, level = 35, group = "LightningDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamage6"] = { type = "Prefix", affix = "Arcing", "Adds (1-4) to (40-43) Lightning Damage to Attacks", statOrder = { 1291 }, level = 44, group = "LightningDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamage7"] = { type = "Prefix", affix = "Shocking", "Adds (2-5) to (47-50) Lightning Damage to Attacks", statOrder = { 1291 }, level = 52, group = "LightningDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 100, 500, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamage8"] = { type = "Prefix", affix = "Discharging", "Adds (3-6) to (57-61) Lightning Damage to Attacks", statOrder = { 1291 }, level = 64, group = "LightningDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 100, 500, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamage9"] = { type = "Prefix", affix = "Electrocuting", "Adds (3-7) to (68-72) Lightning Damage to Attacks", statOrder = { 1291 }, level = 76, group = "LightningDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 50, 250, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamageQuiver1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (3-4) Lightning Damage to Attacks", statOrder = { 1291 }, level = 3, group = "LightningDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamageQuiver2"] = { type = "Prefix", affix = "Buzzing", "Adds 2 to (16-18) Lightning Damage to Attacks", statOrder = { 1291 }, level = 13, group = "LightningDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamageQuiver3"] = { type = "Prefix", affix = "Snapping", "Adds (1-3) to (25-28) Lightning Damage to Attacks", statOrder = { 1291 }, level = 22, group = "LightningDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamageQuiver4"] = { type = "Prefix", affix = "Crackling", "Adds (2-3) to (35-40) Lightning Damage to Attacks", statOrder = { 1291 }, level = 28, group = "LightningDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamageQuiver5_"] = { type = "Prefix", affix = "Sparking", "Adds (2-4) to (44-50) Lightning Damage to Attacks", statOrder = { 1291 }, level = 35, group = "LightningDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamageQuiver6___"] = { type = "Prefix", affix = "Arcing", "Adds (2-5) to (56-62) Lightning Damage to Attacks", statOrder = { 1291 }, level = 44, group = "LightningDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamageQuiver7"] = { type = "Prefix", affix = "Shocking", "Adds (2-6) to (66-75) Lightning Damage to Attacks", statOrder = { 1291 }, level = 52, group = "LightningDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamageQuiver8"] = { type = "Prefix", affix = "Discharging", "Adds (3-8) to (89-99) Lightning Damage to Attacks", statOrder = { 1291 }, level = 64, group = "LightningDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamageQuiver9"] = { type = "Prefix", affix = "Electrocuting", "Adds (5-11) to (124-140) Lightning Damage to Attacks", statOrder = { 1291 }, level = 76, group = "LightningDamage", weightKey = { "quiver", "default", }, weightVal = { 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamageQuiverEssence10__"] = { type = "Prefix", affix = "Essences", "Adds (6-13) to (136-155) Lightning Damage to Attacks", statOrder = { 1291 }, level = 82, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (4-8) to (71-76) Lightning Damage to Attacks", statOrder = { 1291 }, level = 82, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamageEssenceQuiverGloves3_"] = { type = "Prefix", affix = "Essences", "Adds (1-2) to (21-22) Lightning Damage to Attacks", statOrder = { 1291 }, level = 26, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamageEssenceQuiverGloves4"] = { type = "Prefix", affix = "Essences", "Adds (1-2) to (23-24) Lightning Damage to Attacks", statOrder = { 1291 }, level = 42, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamageEssenceQuiverGloves5"] = { type = "Prefix", affix = "Essences", "Adds (1-2) to (25-26) Lightning Damage to Attacks", statOrder = { 1291 }, level = 58, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamageEssenceQuiverGloves6"] = { type = "Prefix", affix = "Essences", "Adds (1-2) to (27-28) Lightning Damage to Attacks", statOrder = { 1291 }, level = 74, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamageEssenceQuiverGloves7"] = { type = "Prefix", affix = "Essences", "Adds (1-3) to (29-30) Lightning Damage to Attacks", statOrder = { 1291 }, level = 82, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedChaosDamageQuiver1"] = { type = "Prefix", affix = "Malicious", "Adds (27-41) to (55-69) Chaos Damage to Attacks", statOrder = { 1298 }, level = 83, group = "ChaosDamage", weightKey = { "quiver", "default", }, weightVal = { 125, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["AddedFireDamageEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "Adds (5-7) to (11-13) Fire Damage to Attacks", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1271, 1864 }, level = 1, group = "FireDamagePhysConvertedToFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire", "attack" }, }, + ["AddedColdDamageEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "Adds (5-7) to (10-12) Cold Damage to Attacks", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1280, 1866 }, level = 1, group = "ColdDamagePhysConvertedToCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold", "attack" }, }, + ["AddedLightningDamageEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "Adds (1-2) to (22-23) Lightning Damage to Attacks", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1291, 1868 }, level = 1, group = "LightningDamagePhysConvertedToLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning", "attack" }, }, + ["LifeLeech1"] = { type = "Prefix", affix = "Remora's", "(1-2)% of Physical Attack Damage Leeched as Life", statOrder = { 1558 }, level = 9, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeech2"] = { type = "Prefix", affix = "Lamprey's", "(3-4)% of Physical Attack Damage Leeched as Life", statOrder = { 1558 }, level = 25, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeech3"] = { type = "Prefix", affix = "Vampire's", "(5-6)% of Physical Attack Damage Leeched as Life", statOrder = { 1558 }, level = 72, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriad1"] = { type = "Prefix", affix = "Remora's", "(0.2-0.4)% of Physical Attack Damage Leeched as Life", statOrder = { 1560 }, level = 50, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriad2"] = { type = "Prefix", affix = "Lamprey's", "(0.6-0.8)% of Physical Attack Damage Leeched as Life", statOrder = { 1560 }, level = 60, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriad3"] = { type = "Prefix", affix = "Vampire's", "(1-1.2)% of Physical Attack Damage Leeched as Life", statOrder = { 1560 }, level = 70, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadSuffix1"] = { type = "Suffix", affix = "of the Remora", "(0.2-0.4)% of Physical Attack Damage Leeched as Life", statOrder = { 1560 }, level = 50, group = "LifeLeechPermyriad", weightKey = { "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadSuffix2"] = { type = "Suffix", affix = "of the Lamprey", "(0.6-0.8)% of Physical Attack Damage Leeched as Life", statOrder = { 1560 }, level = 60, group = "LifeLeechPermyriad", weightKey = { "ranged", "amulet", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadSuffix3"] = { type = "Suffix", affix = "of the Vampire", "(1-1.2)% of Physical Attack Damage Leeched as Life", statOrder = { 1560 }, level = 70, group = "LifeLeechPermyriad", weightKey = { "ranged", "amulet", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadEssence1"] = { type = "Prefix", affix = "Essences", "(0.5-0.7)% of Physical Attack Damage Leeched as Life", statOrder = { 1560 }, level = 1, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadEssence2"] = { type = "Prefix", affix = "Essences", "(0.6-0.8)% of Physical Attack Damage Leeched as Life", statOrder = { 1560 }, level = 10, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadEssence3_"] = { type = "Prefix", affix = "Essences", "(0.7-0.9)% of Physical Attack Damage Leeched as Life", statOrder = { 1560 }, level = 26, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadEssence4"] = { type = "Prefix", affix = "Essences", "(0.8-1)% of Physical Attack Damage Leeched as Life", statOrder = { 1560 }, level = 42, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadEssence5"] = { type = "Prefix", affix = "Essences", "(0.9-1.1)% of Physical Attack Damage Leeched as Life", statOrder = { 1560 }, level = 58, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadEssence6"] = { type = "Prefix", affix = "Essences", "(1-1.2)% of Physical Attack Damage Leeched as Life", statOrder = { 1560 }, level = 74, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadEssence7"] = { type = "Prefix", affix = "Essences", "(1.1-1.3)% of Physical Attack Damage Leeched as Life", statOrder = { 1560 }, level = 82, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadSuffixEssence1"] = { type = "Suffix", affix = "of the Essence", "(0.5-0.7)% of Physical Attack Damage Leeched as Life", statOrder = { 1560 }, level = 1, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadSuffixEssence2"] = { type = "Suffix", affix = "of the Essence", "(0.6-0.8)% of Physical Attack Damage Leeched as Life", statOrder = { 1560 }, level = 10, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadSuffixEssence3_"] = { type = "Suffix", affix = "of the Essence", "(0.7-0.9)% of Physical Attack Damage Leeched as Life", statOrder = { 1560 }, level = 26, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadSuffixEssence4"] = { type = "Suffix", affix = "of the Essence", "(0.8-1)% of Physical Attack Damage Leeched as Life", statOrder = { 1560 }, level = 42, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadSuffixEssence5"] = { type = "Suffix", affix = "of the Essence", "(0.9-1.1)% of Physical Attack Damage Leeched as Life", statOrder = { 1560 }, level = 58, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadSuffixEssence6"] = { type = "Suffix", affix = "of the Essence", "(1-1.2)% of Physical Attack Damage Leeched as Life", statOrder = { 1560 }, level = 74, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadSuffixEssence7"] = { type = "Suffix", affix = "of the Essence", "(1.1-1.3)% of Physical Attack Damage Leeched as Life", statOrder = { 1560 }, level = 82, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["ElementalDamagePercent1"] = { type = "Prefix", affix = "Augur's", "(4-8)% increased Elemental Damage", statOrder = { 1889 }, level = 4, group = "ElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["ElementalDamagePercent2"] = { type = "Prefix", affix = "Auspex's", "(9-16)% increased Elemental Damage", statOrder = { 1889 }, level = 15, group = "ElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["ElementalDamagePercent3"] = { type = "Prefix", affix = "Druid's", "(17-24)% increased Elemental Damage", statOrder = { 1889 }, level = 30, group = "ElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["ElementalDamagePercent4"] = { type = "Prefix", affix = "Haruspex's", "(25-29)% increased Elemental Damage", statOrder = { 1889 }, level = 60, group = "ElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["ElementalDamagePercent5"] = { type = "Prefix", affix = "Harbinger's", "(30-34)% increased Elemental Damage", statOrder = { 1889 }, level = 81, group = "ElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating1"] = { type = "Prefix", affix = "Squire's", "(15-19)% increased Physical Damage", "+(16-20) to Accuracy Rating", statOrder = { 1144, 1933 }, level = 1, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating2"] = { type = "Prefix", affix = "Journeyman's", "(20-24)% increased Physical Damage", "+(21-46) to Accuracy Rating", statOrder = { 1144, 1933 }, level = 11, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating3"] = { type = "Prefix", affix = "Reaver's", "(25-34)% increased Physical Damage", "+(47-72) to Accuracy Rating", statOrder = { 1144, 1933 }, level = 23, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating4"] = { type = "Prefix", affix = "Mercenary's", "(35-44)% increased Physical Damage", "+(73-97) to Accuracy Rating", statOrder = { 1144, 1933 }, level = 35, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating5"] = { type = "Prefix", affix = "Champion's", "(45-54)% increased Physical Damage", "+(98-123) to Accuracy Rating", statOrder = { 1144, 1933 }, level = 46, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating6"] = { type = "Prefix", affix = "Conqueror's", "(55-64)% increased Physical Damage", "+(124-149) to Accuracy Rating", statOrder = { 1144, 1933 }, level = 60, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating7"] = { type = "Prefix", affix = "Emperor's", "(65-74)% increased Physical Damage", "+(150-174) to Accuracy Rating", statOrder = { 1144, 1933 }, level = 73, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating8"] = { type = "Prefix", affix = "Dictator's", "(75-79)% increased Physical Damage", "+(175-200) to Accuracy Rating", statOrder = { 1144, 1933 }, level = 83, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 25, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercent1"] = { type = "Prefix", affix = "Heavy", "(40-49)% increased Physical Damage", statOrder = { 1144 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercent2"] = { type = "Prefix", affix = "Serrated", "(50-64)% increased Physical Damage", statOrder = { 1144 }, level = 11, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercent3"] = { type = "Prefix", affix = "Wicked", "(65-84)% increased Physical Damage", statOrder = { 1144 }, level = 23, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercent4"] = { type = "Prefix", affix = "Vicious", "(85-109)% increased Physical Damage", statOrder = { 1144 }, level = 35, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercent5"] = { type = "Prefix", affix = "Bloodthirsty", "(110-134)% increased Physical Damage", statOrder = { 1144 }, level = 46, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercent6"] = { type = "Prefix", affix = "Cruel", "(135-154)% increased Physical Damage", statOrder = { 1144 }, level = 60, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercent7"] = { type = "Prefix", affix = "Tyrannical", "(155-169)% increased Physical Damage", statOrder = { 1144 }, level = 73, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercent8"] = { type = "Prefix", affix = "Merciless", "(170-179)% increased Physical Damage", statOrder = { 1144 }, level = 83, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 25, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamageEnhancedMod"] = { type = "Prefix", affix = "Tacati's", "(155-169)% increased Physical Damage", "Gain (9-10)% of Physical Damage as Extra Chaos Damage", statOrder = { 1144, 1844 }, level = 1, group = "LocalPhysicalDamagePercentAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos", "attack" }, }, + ["IncreasedPhysicalDamagePercent1"] = { type = "Prefix", affix = "Heavy", "(8-12)% increased Global Physical Damage", statOrder = { 1143 }, level = 4, group = "PhysicalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["IncreasedPhysicalDamagePercent2"] = { type = "Prefix", affix = "Serrated", "(13-17)% increased Global Physical Damage", statOrder = { 1143 }, level = 15, group = "PhysicalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["IncreasedPhysicalDamagePercent3"] = { type = "Prefix", affix = "Wicked", "(18-22)% increased Global Physical Damage", statOrder = { 1143 }, level = 30, group = "PhysicalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["IncreasedPhysicalDamagePercent4"] = { type = "Prefix", affix = "Cruel", "(23-28)% increased Global Physical Damage", statOrder = { 1143 }, level = 60, group = "PhysicalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["IncreasedPhysicalDamagePercent5__"] = { type = "Prefix", affix = "Merciless", "(29-33)% increased Global Physical Damage", statOrder = { 1143 }, level = 81, group = "PhysicalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["LocalAddedPhysicalDamage1"] = { type = "Prefix", affix = "Glinting", "Adds 1 to (2-3) Physical Damage", statOrder = { 1187 }, level = 2, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamage2"] = { type = "Prefix", affix = "Burnished", "Adds (4-5) to (8-9) Physical Damage", statOrder = { 1187 }, level = 13, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamage3"] = { type = "Prefix", affix = "Polished", "Adds (6-9) to (13-15) Physical Damage", statOrder = { 1187 }, level = 21, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamage4"] = { type = "Prefix", affix = "Honed", "Adds (8-12) to (17-20) Physical Damage", statOrder = { 1187 }, level = 29, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamage5"] = { type = "Prefix", affix = "Gleaming", "Adds (11-14) to (21-25) Physical Damage", statOrder = { 1187 }, level = 36, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamage6"] = { type = "Prefix", affix = "Annealed", "Adds (13-18) to (27-31) Physical Damage", statOrder = { 1187 }, level = 46, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamage7"] = { type = "Prefix", affix = "Razor-sharp", "Adds (16-21) to (32-38) Physical Damage", statOrder = { 1187 }, level = 54, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamage8"] = { type = "Prefix", affix = "Tempered", "Adds (19-25) to (39-45) Physical Damage", statOrder = { 1187 }, level = 65, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamage9"] = { type = "Prefix", affix = "Flaring", "Adds (22-29) to (45-52) Physical Damage", statOrder = { 1187 }, level = 77, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageEssenceNew7"] = { type = "Prefix", affix = "Essences", "Adds (20-26) to (40-47) Physical Damage", statOrder = { 1187 }, level = 82, group = "LocalPhysicalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageTwoHand1"] = { type = "Prefix", affix = "Glinting", "Adds 2 to (4-5) Physical Damage", statOrder = { 1187 }, level = 2, group = "LocalPhysicalDamageTwoHanded", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageTwoHand2"] = { type = "Prefix", affix = "Burnished", "Adds (6-8) to (12-15) Physical Damage", statOrder = { 1187 }, level = 13, group = "LocalPhysicalDamageTwoHanded", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageTwoHand3"] = { type = "Prefix", affix = "Polished", "Adds (10-13) to (21-25) Physical Damage", statOrder = { 1187 }, level = 21, group = "LocalPhysicalDamageTwoHanded", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageTwoHand4"] = { type = "Prefix", affix = "Honed", "Adds (13-17) to (28-32) Physical Damage", statOrder = { 1187 }, level = 29, group = "LocalPhysicalDamageTwoHanded", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageTwoHand5"] = { type = "Prefix", affix = "Gleaming", "Adds (16-22) to (35-40) Physical Damage", statOrder = { 1187 }, level = 36, group = "LocalPhysicalDamageTwoHanded", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageTwoHand6"] = { type = "Prefix", affix = "Annealed", "Adds (20-28) to (43-51) Physical Damage", statOrder = { 1187 }, level = 46, group = "LocalPhysicalDamageTwoHanded", weightKey = { "two_hand_weapon", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageTwoHand7"] = { type = "Prefix", affix = "Razor-sharp", "Adds (25-33) to (52-61) Physical Damage", statOrder = { 1187 }, level = 54, group = "LocalPhysicalDamageTwoHanded", weightKey = { "two_hand_weapon", "default", }, weightVal = { 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageTwoHand8"] = { type = "Prefix", affix = "Tempered", "Adds (30-40) to (63-73) Physical Damage", statOrder = { 1187 }, level = 65, group = "LocalPhysicalDamageTwoHanded", weightKey = { "two_hand_weapon", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageTwoHand9"] = { type = "Prefix", affix = "Flaring", "Adds (34-47) to (72-84) Physical Damage", statOrder = { 1187 }, level = 77, group = "LocalPhysicalDamageTwoHanded", weightKey = { "two_hand_weapon", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageTwoHandEssenceNew7__"] = { type = "Prefix", affix = "Essences", "Adds (31-42) to (65-75) Physical Damage", statOrder = { 1187 }, level = 82, group = "LocalPhysicalDamageTwoHanded", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedEnergyShieldPercent1"] = { type = "Prefix", affix = "Protective", "(11-28)% increased Energy Shield", statOrder = { 1471 }, level = 3, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldPercent2"] = { type = "Prefix", affix = "Strong-Willed", "(27-42)% increased Energy Shield", statOrder = { 1471 }, level = 18, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldPercent3"] = { type = "Prefix", affix = "Resolute", "(43-55)% increased Energy Shield", statOrder = { 1471 }, level = 30, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldPercent4"] = { type = "Prefix", affix = "Fearless", "(56-67)% increased Energy Shield", statOrder = { 1471 }, level = 44, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldPercent5"] = { type = "Prefix", affix = "Dauntless", "(68-79)% increased Energy Shield", statOrder = { 1471 }, level = 60, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldPercent6"] = { type = "Prefix", affix = "Indomitable", "(80-91)% increased Energy Shield", statOrder = { 1471 }, level = 72, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldPercent7_"] = { type = "Prefix", affix = "Unassailable", "(92-100)% increased Energy Shield", statOrder = { 1471 }, level = 84, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldPercent8"] = { type = "Prefix", affix = "Unfaltering", "(101-110)% increased Energy Shield", statOrder = { 1471 }, level = 86, 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, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercent1"] = { type = "Prefix", affix = "Reinforced", "(15-26)% increased Armour", statOrder = { 1453 }, level = 3, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercent2"] = { type = "Prefix", affix = "Layered", "(27-42)% increased Armour", statOrder = { 1453 }, level = 17, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercent3"] = { type = "Prefix", affix = "Lobstered", "(43-55)% increased Armour", statOrder = { 1453 }, level = 29, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercent4"] = { type = "Prefix", affix = "Buttressed", "(56-67)% increased Armour", statOrder = { 1453 }, level = 42, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercent5"] = { type = "Prefix", affix = "Thickened", "(68-79)% increased Armour", statOrder = { 1453 }, level = 60, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercent6"] = { type = "Prefix", affix = "Girded", "(80-91)% increased Armour", statOrder = { 1453 }, level = 72, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercent7"] = { type = "Prefix", affix = "Impregnable", "(92-100)% increased Armour", statOrder = { 1453 }, level = 84, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercent8_"] = { type = "Prefix", affix = "Impenetrable", "(101-110)% increased Armour", statOrder = { 1453 }, level = 86, 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, 1000, 1000, 0 }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedEvasionRatingPercent1"] = { type = "Prefix", affix = "Shade's", "(15-26)% increased Evasion Rating", statOrder = { 1461 }, level = 3, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingPercent2"] = { type = "Prefix", affix = "Ghost's", "(27-42)% increased Evasion Rating", statOrder = { 1461 }, level = 19, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingPercent3"] = { type = "Prefix", affix = "Spectre's", "(43-55)% increased Evasion Rating", statOrder = { 1461 }, level = 30, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingPercent4"] = { type = "Prefix", affix = "Wraith's", "(56-67)% increased Evasion Rating", statOrder = { 1461 }, level = 44, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingPercent5"] = { type = "Prefix", affix = "Phantasm's", "(68-79)% increased Evasion Rating", statOrder = { 1461 }, level = 60, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingPercent6"] = { type = "Prefix", affix = "Nightmare's", "(80-91)% increased Evasion Rating", statOrder = { 1461 }, level = 72, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingPercent7"] = { type = "Prefix", affix = "Mirage's", "(92-100)% increased Evasion Rating", statOrder = { 1461 }, level = 84, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingPercent8"] = { type = "Prefix", affix = "Illusion's", "(101-110)% increased Evasion Rating", statOrder = { 1461 }, level = 86, 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, 1000, 1000, 0 }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedArmourAndEnergyShield1"] = { type = "Prefix", affix = "Infixed", "(15-26)% increased Armour and Energy Shield", statOrder = { 1463 }, level = 3, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalIncreasedArmourAndEnergyShield2"] = { type = "Prefix", affix = "Ingrained", "(27-42)% increased Armour and Energy Shield", statOrder = { 1463 }, level = 19, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalIncreasedArmourAndEnergyShield3"] = { type = "Prefix", affix = "Instilled", "(43-55)% increased Armour and Energy Shield", statOrder = { 1463 }, level = 30, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalIncreasedArmourAndEnergyShield4"] = { type = "Prefix", affix = "Infused", "(56-67)% increased Armour and Energy Shield", statOrder = { 1463 }, level = 44, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalIncreasedArmourAndEnergyShield5"] = { type = "Prefix", affix = "Inculcated", "(68-79)% increased Armour and Energy Shield", statOrder = { 1463 }, level = 60, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalIncreasedArmourAndEnergyShield6"] = { type = "Prefix", affix = "Interpolated", "(80-91)% increased Armour and Energy Shield", statOrder = { 1463 }, level = 72, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalIncreasedArmourAndEnergyShield7"] = { type = "Prefix", affix = "Inspired", "(92-100)% increased Armour and Energy Shield", statOrder = { 1463 }, level = 84, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalIncreasedArmourAndEnergyShield8"] = { type = "Prefix", affix = "Interpermeated", "(101-110)% increased Armour and Energy Shield", statOrder = { 1463 }, level = 86, 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, 1000, 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalIncreasedArmourAndEvasion1"] = { type = "Prefix", affix = "Scrapper's", "(15-26)% increased Armour and Evasion", statOrder = { 1464 }, level = 3, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, }, + ["LocalIncreasedArmourAndEvasion2"] = { type = "Prefix", affix = "Brawler's", "(27-42)% increased Armour and Evasion", statOrder = { 1464 }, level = 19, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, }, + ["LocalIncreasedArmourAndEvasion3"] = { type = "Prefix", affix = "Fencer's", "(43-55)% increased Armour and Evasion", statOrder = { 1464 }, level = 30, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, }, + ["LocalIncreasedArmourAndEvasion4"] = { type = "Prefix", affix = "Gladiator's", "(56-67)% increased Armour and Evasion", statOrder = { 1464 }, level = 44, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, }, + ["LocalIncreasedArmourAndEvasion5"] = { type = "Prefix", affix = "Duelist's", "(68-79)% increased Armour and Evasion", statOrder = { 1464 }, level = 60, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, }, + ["LocalIncreasedArmourAndEvasion6"] = { type = "Prefix", affix = "Hero's", "(80-91)% increased Armour and Evasion", statOrder = { 1464 }, level = 72, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, }, + ["LocalIncreasedArmourAndEvasion7"] = { type = "Prefix", affix = "Legend's", "(92-100)% increased Armour and Evasion", statOrder = { 1464 }, level = 84, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, }, + ["LocalIncreasedArmourAndEvasion8"] = { type = "Prefix", affix = "Victor's", "(101-110)% increased Armour and Evasion", statOrder = { 1464 }, level = 86, 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, 1000, 1000, 0 }, modTags = { "defences", "armour", "evasion" }, }, + ["LocalIncreasedEvasionAndEnergyShield1"] = { type = "Prefix", affix = "Shadowy", "(15-26)% increased Evasion and Energy Shield", statOrder = { 1465 }, level = 3, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["LocalIncreasedEvasionAndEnergyShield2"] = { type = "Prefix", affix = "Ethereal", "(27-42)% increased Evasion and Energy Shield", statOrder = { 1465 }, level = 19, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["LocalIncreasedEvasionAndEnergyShield3"] = { type = "Prefix", affix = "Unworldly", "(43-55)% increased Evasion and Energy Shield", statOrder = { 1465 }, level = 30, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["LocalIncreasedEvasionAndEnergyShield4"] = { type = "Prefix", affix = "Ephemeral", "(56-67)% increased Evasion and Energy Shield", statOrder = { 1465 }, level = 44, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["LocalIncreasedEvasionAndEnergyShield5_"] = { type = "Prefix", affix = "Evanescent", "(68-79)% increased Evasion and Energy Shield", statOrder = { 1465 }, level = 60, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["LocalIncreasedEvasionAndEnergyShield6"] = { type = "Prefix", affix = "Unreal", "(80-91)% increased Evasion and Energy Shield", statOrder = { 1465 }, level = 72, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["LocalIncreasedEvasionAndEnergyShield7"] = { type = "Prefix", affix = "Illusory", "(92-100)% increased Evasion and Energy Shield", statOrder = { 1465 }, level = 84, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["LocalIncreasedEvasionAndEnergyShield8"] = { type = "Prefix", affix = "Incorporeal", "(101-110)% increased Evasion and Energy Shield", statOrder = { 1465 }, level = 86, 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, 1000, 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["LocalIncreasedArmourEvasionEnergyShield1"] = { type = "Prefix", affix = "Shadowy", "(27-42)% increased Armour, Evasion and Energy Shield", statOrder = { 1466 }, level = 3, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, }, + ["LocalIncreasedArmourEvasionEnergyShield2"] = { type = "Prefix", affix = "Ethereal", "(43-55)% increased Armour, Evasion and Energy Shield", statOrder = { 1466 }, level = 19, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, }, + ["LocalIncreasedArmourEvasionEnergyShield3"] = { type = "Prefix", affix = "Unworldly", "(56-67)% increased Armour, Evasion and Energy Shield", statOrder = { 1466 }, level = 30, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, }, + ["LocalIncreasedArmourEvasionEnergyShield4"] = { type = "Prefix", affix = "Ephemeral", "(68-79)% increased Armour, Evasion and Energy Shield", statOrder = { 1466 }, level = 44, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, }, + ["LocalIncreasedArmourEvasionEnergyShield5"] = { type = "Prefix", affix = "Evanescent", "(80-91)% increased Armour, Evasion and Energy Shield", statOrder = { 1466 }, level = 60, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, }, + ["LocalIncreasedArmourEvasionEnergyShield6"] = { type = "Prefix", affix = "Unreal", "(92-100)% increased Armour, Evasion and Energy Shield", statOrder = { 1466 }, level = 72, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, }, + ["LocalIncreasedArmourEvasionEnergyShield7__"] = { type = "Prefix", affix = "Incorporeal", "(101-110)% increased Armour, Evasion and Energy Shield", statOrder = { 1466 }, level = 85, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "int_armour", "str_int_armour", "dex_armour", "str_armour", "str_dex_armour", "dex_int_armour", "body_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldPercentAndStunRecovery1"] = { type = "Prefix", affix = "Pixie's", "(6-13)% increased Energy Shield", "(6-7)% increased Stun and Block Recovery", statOrder = { 1471, 1811 }, level = 3, group = "LocalEnergyShieldAndStunRecoveryPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldPercentAndStunRecovery2"] = { type = "Prefix", affix = "Gremlin's", "(14-20)% increased Energy Shield", "(8-9)% increased Stun and Block Recovery", statOrder = { 1471, 1811 }, level = 18, group = "LocalEnergyShieldAndStunRecoveryPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldPercentAndStunRecovery3"] = { type = "Prefix", affix = "Boggart's", "(21-26)% increased Energy Shield", "(10-11)% increased Stun and Block Recovery", statOrder = { 1471, 1811 }, level = 30, group = "LocalEnergyShieldAndStunRecoveryPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldPercentAndStunRecovery4"] = { type = "Prefix", affix = "Naga's", "(27-32)% increased Energy Shield", "(12-13)% increased Stun and Block Recovery", statOrder = { 1471, 1811 }, level = 44, group = "LocalEnergyShieldAndStunRecoveryPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldPercentAndStunRecovery5"] = { type = "Prefix", affix = "Djinn's", "(33-38)% increased Energy Shield", "(14-15)% increased Stun and Block Recovery", statOrder = { 1471, 1811 }, level = 60, group = "LocalEnergyShieldAndStunRecoveryPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldPercentAndStunRecovery6"] = { type = "Prefix", affix = "Seraphim's", "(39-42)% increased Energy Shield", "(16-17)% increased Stun and Block Recovery", statOrder = { 1471, 1811 }, level = 78, group = "LocalEnergyShieldAndStunRecoveryPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentAndStunRecovery1"] = { type = "Prefix", affix = "Beetle's", "(6-13)% increased Armour", "(6-7)% increased Stun and Block Recovery", statOrder = { 1453, 1811 }, level = 1, group = "LocalPhysicalDamageReductionRatingAndStunRecoveryPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentAndStunRecovery2"] = { type = "Prefix", affix = "Crab's", "(14-20)% increased Armour", "(8-9)% increased Stun and Block Recovery", statOrder = { 1453, 1811 }, level = 17, group = "LocalPhysicalDamageReductionRatingAndStunRecoveryPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentAndStunRecovery3"] = { type = "Prefix", affix = "Armadillo's", "(21-26)% increased Armour", "(10-11)% increased Stun and Block Recovery", statOrder = { 1453, 1811 }, level = 29, group = "LocalPhysicalDamageReductionRatingAndStunRecoveryPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentAndStunRecovery4"] = { type = "Prefix", affix = "Rhino's", "(27-32)% increased Armour", "(12-13)% increased Stun and Block Recovery", statOrder = { 1453, 1811 }, level = 42, group = "LocalPhysicalDamageReductionRatingAndStunRecoveryPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentAndStunRecovery5"] = { type = "Prefix", affix = "Elephant's", "(33-38)% increased Armour", "(14-15)% increased Stun and Block Recovery", statOrder = { 1453, 1811 }, level = 60, group = "LocalPhysicalDamageReductionRatingAndStunRecoveryPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentAndStunRecovery6"] = { type = "Prefix", affix = "Mammoth's", "(39-42)% increased Armour", "(16-17)% increased Stun and Block Recovery", statOrder = { 1453, 1811 }, level = 78, group = "LocalPhysicalDamageReductionRatingAndStunRecoveryPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentAndAdditionalBlockChance1"] = { type = "Prefix", affix = "Reliable", "(25-30)% increased Armour", "+2% Chance to Block", statOrder = { 1453, 2158 }, level = 45, group = "LocalPhysicalDamageReductionRatingPercentAndBlockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentAndAdditionalBlockChance2"] = { type = "Prefix", affix = "Unfailing", "(31-36)% increased Armour", "+3% Chance to Block", statOrder = { 1453, 2158 }, level = 78, group = "LocalPhysicalDamageReductionRatingPercentAndBlockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "defences", "armour" }, }, + ["LocalIncreasedEvasionRatingPercentAndStunRecovery1"] = { type = "Prefix", affix = "Mosquito's", "(6-13)% increased Evasion Rating", "(6-7)% increased Stun and Block Recovery", statOrder = { 1461, 1811 }, level = 2, group = "LocalEvasionRatingAndStunRecoveryIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingPercentAndStunRecovery2"] = { type = "Prefix", affix = "Moth's", "(14-20)% increased Evasion Rating", "(8-9)% increased Stun and Block Recovery", statOrder = { 1461, 1811 }, level = 19, group = "LocalEvasionRatingAndStunRecoveryIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingPercentAndStunRecovery3"] = { type = "Prefix", affix = "Butterfly's", "(21-26)% increased Evasion Rating", "(10-11)% increased Stun and Block Recovery", statOrder = { 1461, 1811 }, level = 30, group = "LocalEvasionRatingAndStunRecoveryIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingPercentAndStunRecovery4"] = { type = "Prefix", affix = "Wasp's", "(27-32)% increased Evasion Rating", "(12-13)% increased Stun and Block Recovery", statOrder = { 1461, 1811 }, level = 44, group = "LocalEvasionRatingAndStunRecoveryIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingPercentAndStunRecovery5"] = { type = "Prefix", affix = "Dragonfly's", "(33-38)% increased Evasion Rating", "(14-15)% increased Stun and Block Recovery", statOrder = { 1461, 1811 }, level = 60, group = "LocalEvasionRatingAndStunRecoveryIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingPercentAndStunRecovery6"] = { type = "Prefix", affix = "Hummingbird's", "(39-42)% increased Evasion Rating", "(16-17)% increased Stun and Block Recovery", statOrder = { 1461, 1811 }, level = 78, group = "LocalEvasionRatingAndStunRecoveryIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedArmourAndEnergyShieldAndStunRecovery1"] = { type = "Prefix", affix = "Pixie's", "(6-13)% increased Armour and Energy Shield", "(6-7)% increased Stun and Block Recovery", statOrder = { 1463, 1811 }, level = 2, group = "LocalArmourAndEnergyShieldAndStunRecovery", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalIncreasedArmourAndEnergyShieldAndStunRecovery2"] = { type = "Prefix", affix = "Gremlin's", "(14-20)% increased Armour and Energy Shield", "(8-9)% increased Stun and Block Recovery", statOrder = { 1463, 1811 }, level = 19, group = "LocalArmourAndEnergyShieldAndStunRecovery", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalIncreasedArmourAndEnergyShieldAndStunRecovery3"] = { type = "Prefix", affix = "Boggart's", "(21-26)% increased Armour and Energy Shield", "(10-11)% increased Stun and Block Recovery", statOrder = { 1463, 1811 }, level = 30, group = "LocalArmourAndEnergyShieldAndStunRecovery", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalIncreasedArmourAndEnergyShieldAndStunRecovery4"] = { type = "Prefix", affix = "Naga's", "(27-32)% increased Armour and Energy Shield", "(12-13)% increased Stun and Block Recovery", statOrder = { 1463, 1811 }, level = 44, group = "LocalArmourAndEnergyShieldAndStunRecovery", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalIncreasedArmourAndEnergyShieldAndStunRecovery5"] = { type = "Prefix", affix = "Djinn's", "(33-38)% increased Armour and Energy Shield", "(14-15)% increased Stun and Block Recovery", statOrder = { 1463, 1811 }, level = 60, group = "LocalArmourAndEnergyShieldAndStunRecovery", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalIncreasedArmourAndEnergyShieldAndStunRecovery6"] = { type = "Prefix", affix = "Seraphim's", "(39-42)% increased Armour and Energy Shield", "(16-17)% increased Stun and Block Recovery", statOrder = { 1463, 1811 }, level = 78, group = "LocalArmourAndEnergyShieldAndStunRecovery", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalIncreasedArmourAndEvasionAndStunRecovery1"] = { type = "Prefix", affix = "Beetle's", "(6-13)% increased Armour and Evasion", "(6-7)% increased Stun and Block Recovery", statOrder = { 1464, 1811 }, level = 2, group = "LocalArmourAndEvasionAndStunRecovery", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, }, + ["LocalIncreasedArmourAndEvasionAndStunRecovery2"] = { type = "Prefix", affix = "Crab's", "(14-20)% increased Armour and Evasion", "(8-9)% increased Stun and Block Recovery", statOrder = { 1464, 1811 }, level = 19, group = "LocalArmourAndEvasionAndStunRecovery", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, }, + ["LocalIncreasedArmourAndEvasionAndStunRecovery3"] = { type = "Prefix", affix = "Armadillo's", "(21-26)% increased Armour and Evasion", "(10-11)% increased Stun and Block Recovery", statOrder = { 1464, 1811 }, level = 30, group = "LocalArmourAndEvasionAndStunRecovery", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, }, + ["LocalIncreasedArmourAndEvasionAndStunRecovery4"] = { type = "Prefix", affix = "Rhino's", "(27-32)% increased Armour and Evasion", "(12-13)% increased Stun and Block Recovery", statOrder = { 1464, 1811 }, level = 44, group = "LocalArmourAndEvasionAndStunRecovery", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, }, + ["LocalIncreasedArmourAndEvasionAndStunRecovery5"] = { type = "Prefix", affix = "Elephant's", "(33-38)% increased Armour and Evasion", "(14-15)% increased Stun and Block Recovery", statOrder = { 1464, 1811 }, level = 60, group = "LocalArmourAndEvasionAndStunRecovery", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, }, + ["LocalIncreasedArmourAndEvasionAndStunRecovery6"] = { type = "Prefix", affix = "Mammoth's", "(39-42)% increased Armour and Evasion", "(16-17)% increased Stun and Block Recovery", statOrder = { 1464, 1811 }, level = 78, group = "LocalArmourAndEvasionAndStunRecovery", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, }, + ["LocalIncreasedEvasionAndEnergyShieldAndStunRecovery1"] = { type = "Prefix", affix = "Mosquito's", "(6-13)% increased Evasion and Energy Shield", "(6-7)% increased Stun and Block Recovery", statOrder = { 1465, 1811 }, level = 2, group = "LocalEvasionAndEnergyShieldAndStunRecovery", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["LocalIncreasedEvasionAndEnergyShieldAndStunRecovery2"] = { type = "Prefix", affix = "Moth's", "(14-20)% increased Evasion and Energy Shield", "(8-9)% increased Stun and Block Recovery", statOrder = { 1465, 1811 }, level = 19, group = "LocalEvasionAndEnergyShieldAndStunRecovery", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["LocalIncreasedEvasionAndEnergyShieldAndStunRecovery3"] = { type = "Prefix", affix = "Butterfly's", "(21-26)% increased Evasion and Energy Shield", "(10-11)% increased Stun and Block Recovery", statOrder = { 1465, 1811 }, level = 30, group = "LocalEvasionAndEnergyShieldAndStunRecovery", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["LocalIncreasedEvasionAndEnergyShieldAndStunRecovery4"] = { type = "Prefix", affix = "Wasp's", "(27-32)% increased Evasion and Energy Shield", "(12-13)% increased Stun and Block Recovery", statOrder = { 1465, 1811 }, level = 44, group = "LocalEvasionAndEnergyShieldAndStunRecovery", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["LocalIncreasedEvasionAndEnergyShieldAndStunRecovery5"] = { type = "Prefix", affix = "Dragonfly's", "(33-38)% increased Evasion and Energy Shield", "(14-15)% increased Stun and Block Recovery", statOrder = { 1465, 1811 }, level = 60, group = "LocalEvasionAndEnergyShieldAndStunRecovery", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["LocalIncreasedEvasionAndEnergyShieldAndStunRecovery6"] = { type = "Prefix", affix = "Hummingbird's", "(39-42)% increased Evasion and Energy Shield", "(16-17)% increased Stun and Block Recovery", statOrder = { 1465, 1811 }, level = 78, group = "LocalEvasionAndEnergyShieldAndStunRecovery", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["LocalIncreasedArmourEvasionEnergyShieldStunRecovery1"] = { type = "Prefix", affix = "Mosquito's", "(6-13)% increased Armour, Evasion and Energy Shield", "(6-7)% increased Stun and Block Recovery", statOrder = { 1466, 1811 }, level = 2, group = "LocalArmourAndEvasionAndEnergyShieldAndStunRecovery", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, }, + ["LocalIncreasedArmourEvasionEnergyShieldStunRecovery2"] = { type = "Prefix", affix = "Moth's", "(14-20)% increased Armour, Evasion and Energy Shield", "(8-9)% increased Stun and Block Recovery", statOrder = { 1466, 1811 }, level = 19, group = "LocalArmourAndEvasionAndEnergyShieldAndStunRecovery", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, }, + ["LocalIncreasedArmourEvasionEnergyShieldStunRecovery3"] = { type = "Prefix", affix = "Butterfly's", "(21-26)% increased Armour, Evasion and Energy Shield", "(10-11)% increased Stun and Block Recovery", statOrder = { 1466, 1811 }, level = 30, group = "LocalArmourAndEvasionAndEnergyShieldAndStunRecovery", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, }, + ["LocalIncreasedArmourEvasionEnergyShieldStunRecovery4"] = { type = "Prefix", affix = "Wasp's", "(27-32)% increased Armour, Evasion and Energy Shield", "(12-13)% increased Stun and Block Recovery", statOrder = { 1466, 1811 }, level = 44, group = "LocalArmourAndEvasionAndEnergyShieldAndStunRecovery", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, }, + ["LocalIncreasedArmourEvasionEnergyShieldStunRecovery5"] = { type = "Prefix", affix = "Dragonfly's", "(33-38)% increased Armour, Evasion and Energy Shield", "(14-15)% increased Stun and Block Recovery", statOrder = { 1466, 1811 }, level = 60, group = "LocalArmourAndEvasionAndEnergyShieldAndStunRecovery", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, }, + ["LocalIncreasedArmourEvasionEnergyShieldStunRecovery6"] = { type = "Prefix", affix = "Hummingbird's", "(39-42)% increased Armour, Evasion and Energy Shield", "(16-17)% increased Stun and Block Recovery", statOrder = { 1466, 1811 }, level = 78, group = "LocalArmourAndEvasionAndEnergyShieldAndStunRecovery", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, }, + ["LocalAddedFireDamage1"] = { type = "Prefix", affix = "Heated", "Adds (1-2) to (3-4) Fire Damage", statOrder = { 1273 }, level = 1, group = "LocalFireDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamage2"] = { type = "Prefix", affix = "Smouldering", "Adds (8-10) to (15-18) Fire Damage", statOrder = { 1273 }, level = 11, group = "LocalFireDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamage3"] = { type = "Prefix", affix = "Smoking", "Adds (12-17) to (25-29) Fire Damage", statOrder = { 1273 }, level = 18, group = "LocalFireDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamage4"] = { type = "Prefix", affix = "Burning", "Adds (17-24) to (35-41) Fire Damage", statOrder = { 1273 }, level = 26, group = "LocalFireDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamage5"] = { type = "Prefix", affix = "Flaming", "Adds (24-33) to (49-57) Fire Damage", statOrder = { 1273 }, level = 33, group = "LocalFireDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamage6"] = { type = "Prefix", affix = "Scorching", "Adds (34-46) to (68-80) Fire Damage", statOrder = { 1273 }, level = 42, group = "LocalFireDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamage7"] = { type = "Prefix", affix = "Incinerating", "Adds (46-62) to (93-107) Fire Damage", statOrder = { 1273 }, level = 51, group = "LocalFireDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamage8"] = { type = "Prefix", affix = "Blasting", "Adds (59-81) to (120-140) Fire Damage", statOrder = { 1273 }, level = 62, group = "LocalFireDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 1600, 960, 960, 640, 400, 400, 960, 960, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamage9"] = { type = "Prefix", affix = "Cremating", "Adds (74-101) to (150-175) Fire Damage", statOrder = { 1273 }, level = 74, group = "LocalFireDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 700, 420, 420, 280, 175, 175, 420, 420, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamage10_"] = { type = "Prefix", affix = "Carbonising", "Adds (89-121) to (180-210) Fire Damage", statOrder = { 1273 }, level = 82, group = "LocalFireDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 180, 108, 108, 72, 45, 45, 108, 108, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (80-109) to (162-189) Fire Damage", statOrder = { 1273 }, level = 82, group = "LocalFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamageEnhancedMod_"] = { type = "Prefix", affix = "Topotante's", "Adds (59-79) to (118-138) Fire Damage", "Attacks with this Weapon Penetrate (13-15)% Fire Resistance", statOrder = { 1273, 3670 }, level = 1, group = "LocalFireDamageAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamageTwoHand1"] = { type = "Prefix", affix = "Heated", "Adds (3-5) to (6-7) Fire Damage", statOrder = { 1273 }, level = 1, group = "LocalFireDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamageTwoHand2"] = { type = "Prefix", affix = "Smouldering", "Adds (14-20) to (29-33) Fire Damage", statOrder = { 1273 }, level = 11, group = "LocalFireDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamageTwoHand3"] = { type = "Prefix", affix = "Smoking", "Adds (23-31) to (47-54) Fire Damage", statOrder = { 1273 }, level = 18, group = "LocalFireDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamageTwoHand4"] = { type = "Prefix", affix = "Burning", "Adds (32-44) to (65-76) Fire Damage", statOrder = { 1273 }, level = 26, group = "LocalFireDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamageTwoHand5"] = { type = "Prefix", affix = "Flaming", "Adds (45-61) to (91-106) Fire Damage", statOrder = { 1273 }, level = 33, group = "LocalFireDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamageTwoHand6"] = { type = "Prefix", affix = "Scorching", "Adds (63-85) to (128-148) Fire Damage", statOrder = { 1273 }, level = 42, group = "LocalFireDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamageTwoHand7"] = { type = "Prefix", affix = "Incinerating", "Adds (85-115) to (172-200) Fire Damage", statOrder = { 1273 }, level = 51, group = "LocalFireDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamageTwoHand8_"] = { type = "Prefix", affix = "Blasting", "Adds (110-150) to (223-260) Fire Damage", statOrder = { 1273 }, level = 62, group = "LocalFireDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1120, 960, 960, 400, 480, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamageTwoHand9"] = { type = "Prefix", affix = "Cremating", "Adds (137-188) to (279-325) Fire Damage", statOrder = { 1273 }, level = 74, group = "LocalFireDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 490, 420, 420, 175, 210, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamageTwoHand10"] = { type = "Prefix", affix = "Carbonising", "Adds (165-225) to (335-390) Fire Damage", statOrder = { 1273 }, level = 82, group = "LocalFireDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 126, 108, 108, 45, 54, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamageRanged1"] = { type = "Prefix", affix = "Heated", "Adds (3-5) to (6-7) Fire Damage", statOrder = { 1273 }, level = 1, group = "LocalFireDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamageRanged2"] = { type = "Prefix", affix = "Smouldering", "Adds (14-20) to (29-33) Fire Damage", statOrder = { 1273 }, level = 11, group = "LocalFireDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamageRanged3"] = { type = "Prefix", affix = "Smoking", "Adds (23-31) to (47-54) Fire Damage", statOrder = { 1273 }, level = 18, group = "LocalFireDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamageRanged4"] = { type = "Prefix", affix = "Burning", "Adds (32-44) to (65-76) Fire Damage", statOrder = { 1273 }, level = 26, group = "LocalFireDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamageRanged5"] = { type = "Prefix", affix = "Flaming", "Adds (45-61) to (91-106) Fire Damage", statOrder = { 1273 }, level = 33, group = "LocalFireDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamageRanged6"] = { type = "Prefix", affix = "Scorching", "Adds (63-85) to (128-148) Fire Damage", statOrder = { 1273 }, level = 42, group = "LocalFireDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamageRanged7"] = { type = "Prefix", affix = "Incinerating", "Adds (85-115) to (172-200) Fire Damage", statOrder = { 1273 }, level = 51, group = "LocalFireDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamageRanged8"] = { type = "Prefix", affix = "Blasting", "Adds (110-150) to (223-260) Fire Damage", statOrder = { 1273 }, level = 62, group = "LocalFireDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamageRanged9_"] = { type = "Prefix", affix = "Cremating", "Adds (137-188) to (279-325) Fire Damage", statOrder = { 1273 }, level = 74, group = "LocalFireDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamageRanged10"] = { type = "Prefix", affix = "Carbonising", "Adds (165-225) to (335-390) Fire Damage", statOrder = { 1273 }, level = 82, group = "LocalFireDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamageTwoHandEssence7"] = { type = "Prefix", affix = "Essences", "Adds (149-203) to (302-351) Fire Damage", statOrder = { 1273 }, level = 82, group = "LocalFireDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamageEnhancedTwoHandMod"] = { type = "Prefix", affix = "Topotante's", "Adds (109-147) to (220-256) Fire Damage", "Attacks with this Weapon Penetrate (13-15)% Fire Resistance", statOrder = { 1273, 3670 }, level = 1, group = "LocalFireDamageTwoHandAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedColdDamage1"] = { type = "Prefix", affix = "Frosted", "Adds (1-2) to (3-4) Cold Damage", statOrder = { 1282 }, level = 2, group = "LocalColdDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamage2"] = { type = "Prefix", affix = "Chilled", "Adds (7-9) to (14-16) Cold Damage", statOrder = { 1282 }, level = 12, group = "LocalColdDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamage3"] = { type = "Prefix", affix = "Icy", "Adds (11-15) to (23-26) Cold Damage", statOrder = { 1282 }, level = 19, group = "LocalColdDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamage4"] = { type = "Prefix", affix = "Frigid", "Adds (16-21) to (31-37) Cold Damage", statOrder = { 1282 }, level = 27, group = "LocalColdDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamage5"] = { type = "Prefix", affix = "Freezing", "Adds (22-30) to (44-51) Cold Damage", statOrder = { 1282 }, level = 34, group = "LocalColdDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamage6"] = { type = "Prefix", affix = "Frozen", "Adds (31-42) to (62-71) Cold Damage", statOrder = { 1282 }, level = 43, group = "LocalColdDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamage7"] = { type = "Prefix", affix = "Glaciated", "Adds (41-57) to (83-97) Cold Damage", statOrder = { 1282 }, level = 52, group = "LocalColdDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamage8"] = { type = "Prefix", affix = "Polar", "Adds (54-74) to (108-126) Cold Damage", statOrder = { 1282 }, level = 63, group = "LocalColdDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 1600, 960, 960, 640, 400, 400, 960, 960, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamage9"] = { type = "Prefix", affix = "Entombing", "Adds (68-92) to (136-157) Cold Damage", statOrder = { 1282 }, level = 75, group = "LocalColdDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 700, 420, 420, 280, 175, 175, 420, 420, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamage10__"] = { type = "Prefix", affix = "Crystalising", "Adds (81-111) to (163-189) Cold Damage", statOrder = { 1282 }, level = 82, group = "LocalColdDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 180, 108, 108, 72, 45, 45, 108, 108, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (73-100) to (147-170) Cold Damage", statOrder = { 1282 }, level = 82, group = "LocalColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamageEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "Adds (53-72) to (107-124) Cold Damage", "Attacks with this Weapon Penetrate (13-15)% Cold Resistance", statOrder = { 1282, 3671 }, level = 1, group = "LocalColdDamageAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamageTwoHand1"] = { type = "Prefix", affix = "Frosted", "Adds (2-3) to (6-7) Cold Damage", statOrder = { 1282 }, level = 2, group = "LocalColdDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamageTwoHand2"] = { type = "Prefix", affix = "Chilled", "Adds (12-17) to (26-30) Cold Damage", statOrder = { 1282 }, level = 12, group = "LocalColdDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamageTwoHand3"] = { type = "Prefix", affix = "Icy", "Adds (21-28) to (42-48) Cold Damage", statOrder = { 1282 }, level = 19, group = "LocalColdDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamageTwoHand4"] = { type = "Prefix", affix = "Frigid", "Adds (29-40) to (58-68) Cold Damage", statOrder = { 1282 }, level = 27, group = "LocalColdDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamageTwoHand5"] = { type = "Prefix", affix = "Freezing", "Adds (41-55) to (81-95) Cold Damage", statOrder = { 1282 }, level = 34, group = "LocalColdDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamageTwoHand6"] = { type = "Prefix", affix = "Frozen", "Adds (57-77) to (114-132) Cold Damage", statOrder = { 1282 }, level = 43, group = "LocalColdDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamageTwoHand7"] = { type = "Prefix", affix = "Glaciated", "Adds (77-104) to (154-178) Cold Damage", statOrder = { 1282 }, level = 52, group = "LocalColdDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamageTwoHand8"] = { type = "Prefix", affix = "Polar", "Adds (99-136) to (200-232) Cold Damage", statOrder = { 1282 }, level = 63, group = "LocalColdDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1120, 960, 960, 400, 480, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamageTwoHand9"] = { type = "Prefix", affix = "Entombing", "Adds (124-170) to (250-290) Cold Damage", statOrder = { 1282 }, level = 75, group = "LocalColdDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 490, 420, 420, 175, 210, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamageTwoHand10"] = { type = "Prefix", affix = "Crystalising", "Adds (149-204) to (300-348) Cold Damage", statOrder = { 1282 }, level = 82, group = "LocalColdDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 126, 108, 108, 45, 54, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamageRanged1"] = { type = "Prefix", affix = "Frosted", "Adds (2-3) to (6-7) Cold Damage", statOrder = { 1282 }, level = 2, group = "LocalColdDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamageRanged2"] = { type = "Prefix", affix = "Chilled", "Adds (12-17) to (26-30) Cold Damage", statOrder = { 1282 }, level = 12, group = "LocalColdDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamageRanged3"] = { type = "Prefix", affix = "Icy", "Adds (21-28) to (42-48) Cold Damage", statOrder = { 1282 }, level = 19, group = "LocalColdDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamageRanged4"] = { type = "Prefix", affix = "Frigid", "Adds (29-40) to (58-68) Cold Damage", statOrder = { 1282 }, level = 27, group = "LocalColdDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamageRanged5"] = { type = "Prefix", affix = "Freezing", "Adds (41-55) to (81-95) Cold Damage", statOrder = { 1282 }, level = 34, group = "LocalColdDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamageRanged6"] = { type = "Prefix", affix = "Frozen", "Adds (57-77) to (114-132) Cold Damage", statOrder = { 1282 }, level = 43, group = "LocalColdDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamageRanged7"] = { type = "Prefix", affix = "Glaciated", "Adds (77-104) to (154-178) Cold Damage", statOrder = { 1282 }, level = 52, group = "LocalColdDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamageRanged8"] = { type = "Prefix", affix = "Polar", "Adds (99-136) to (200-232) Cold Damage", statOrder = { 1282 }, level = 63, group = "LocalColdDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamageRanged9"] = { type = "Prefix", affix = "Entombing", "Adds (124-170) to (250-290) Cold Damage", statOrder = { 1282 }, level = 75, group = "LocalColdDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamageRanged10"] = { type = "Prefix", affix = "Crystalising", "Adds (149-204) to (300-348) Cold Damage", statOrder = { 1282 }, level = 82, group = "LocalColdDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamageTwoHandEssence7"] = { type = "Prefix", affix = "Essences", "Adds (134-184) to (270-313) Cold Damage", statOrder = { 1282 }, level = 82, group = "LocalColdDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamageEnhancedTwoHandMod"] = { type = "Prefix", affix = "Topotante's", "Adds (100-132) to (197-230) Cold Damage", "Attacks with this Weapon Penetrate (13-15)% Cold Resistance", statOrder = { 1282, 3671 }, level = 1, group = "LocalColdDamageTwoHandAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedLightningDamage1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (5-6) Lightning Damage", statOrder = { 1293 }, level = 3, group = "LocalLightningDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamage2"] = { type = "Prefix", affix = "Buzzing", "Adds 2 to (25-29) Lightning Damage", statOrder = { 1293 }, level = 13, group = "LocalLightningDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamage3"] = { type = "Prefix", affix = "Snapping", "Adds 2 to (41-48) Lightning Damage", statOrder = { 1293 }, level = 19, group = "LocalLightningDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamage4"] = { type = "Prefix", affix = "Crackling", "Adds 3 to (57-67) Lightning Damage", statOrder = { 1293 }, level = 31, group = "LocalLightningDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamage5"] = { type = "Prefix", affix = "Sparking", "Adds (4-5) to (80-94) Lightning Damage", statOrder = { 1293 }, level = 34, group = "LocalLightningDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamage6"] = { type = "Prefix", affix = "Arcing", "Adds (5-8) to (112-131) Lightning Damage", statOrder = { 1293 }, level = 42, group = "LocalLightningDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamage7"] = { type = "Prefix", affix = "Shocking", "Adds (8-10) to (152-176) Lightning Damage", statOrder = { 1293 }, level = 51, group = "LocalLightningDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamage8"] = { type = "Prefix", affix = "Discharging", "Adds (10-14) to (197-229) Lightning Damage", statOrder = { 1293 }, level = 63, group = "LocalLightningDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 1600, 960, 960, 640, 400, 400, 960, 960, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamage9"] = { type = "Prefix", affix = "Electrocuting", "Adds (13-17) to (247-286) Lightning Damage", statOrder = { 1293 }, level = 74, group = "LocalLightningDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 700, 420, 420, 280, 175, 175, 420, 420, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamage10"] = { type = "Prefix", affix = "Vapourising", "Adds (15-21) to (296-344) Lightning Damage", statOrder = { 1293 }, level = 82, group = "LocalLightningDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 180, 108, 108, 72, 45, 45, 108, 108, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamageEssence7_"] = { type = "Prefix", affix = "Essences", "Adds (13-19) to (266-310) Lightning Damage", statOrder = { 1293 }, level = 82, group = "LocalLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamageEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "Adds (7-17) to (198-224) Lightning Damage", "Attacks with this Weapon Penetrate (13-15)% Lightning Resistance", statOrder = { 1293, 3672 }, level = 1, group = "LocalLightningDamageAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamageTwoHand1_"] = { type = "Prefix", affix = "Humming", "Adds 2 to (10-11) Lightning Damage", statOrder = { 1293 }, level = 3, group = "LocalLightningDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamageTwoHand2"] = { type = "Prefix", affix = "Buzzing", "Adds 3 to (46-53) Lightning Damage", statOrder = { 1293 }, level = 13, group = "LocalLightningDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamageTwoHand3"] = { type = "Prefix", affix = "Snapping", "Adds (4-5) to (76-88) Lightning Damage", statOrder = { 1293 }, level = 19, group = "LocalLightningDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamageTwoHand4"] = { type = "Prefix", affix = "Crackling", "Adds (5-8) to (106-123) Lightning Damage", statOrder = { 1293 }, level = 31, group = "LocalLightningDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamageTwoHand5"] = { type = "Prefix", affix = "Sparking", "Adds (8-10) to (148-173) Lightning Damage", statOrder = { 1293 }, level = 34, group = "LocalLightningDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamageTwoHand6"] = { type = "Prefix", affix = "Arcing", "Adds (11-14) to (208-242) Lightning Damage", statOrder = { 1293 }, level = 42, group = "LocalLightningDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamageTwoHand7"] = { type = "Prefix", affix = "Shocking", "Adds (14-20) to (281-327) Lightning Damage", statOrder = { 1293 }, level = 51, group = "LocalLightningDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamageTwoHand8"] = { type = "Prefix", affix = "Discharging", "Adds (19-25) to (366-425) Lightning Damage", statOrder = { 1293 }, level = 63, group = "LocalLightningDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1120, 960, 960, 400, 480, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamageTwoHand9"] = { type = "Prefix", affix = "Electrocuting", "Adds (23-32) to (458-531) Lightning Damage", statOrder = { 1293 }, level = 74, group = "LocalLightningDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 490, 420, 420, 175, 210, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamageTwoHand10"] = { type = "Prefix", affix = "Vapourising", "Adds (28-38) to (549-638) Lightning Damage", statOrder = { 1293 }, level = 82, group = "LocalLightningDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 126, 108, 108, 45, 54, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamageRanged1"] = { type = "Prefix", affix = "Humming", "Adds 2 to (10-11) Lightning Damage", statOrder = { 1293 }, level = 3, group = "LocalLightningDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamageRanged2"] = { type = "Prefix", affix = "Buzzing", "Adds 3 to (46-53) Lightning Damage", statOrder = { 1293 }, level = 13, group = "LocalLightningDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamageRanged3___"] = { type = "Prefix", affix = "Snapping", "Adds (4-5) to (76-88) Lightning Damage", statOrder = { 1293 }, level = 19, group = "LocalLightningDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamageRanged4"] = { type = "Prefix", affix = "Crackling", "Adds (5-8) to (106-123) Lightning Damage", statOrder = { 1293 }, level = 31, group = "LocalLightningDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamageRanged5"] = { type = "Prefix", affix = "Sparking", "Adds (8-10) to (148-173) Lightning Damage", statOrder = { 1293 }, level = 34, group = "LocalLightningDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamageRanged6_"] = { type = "Prefix", affix = "Arcing", "Adds (11-14) to (208-242) Lightning Damage", statOrder = { 1293 }, level = 42, group = "LocalLightningDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamageRanged7"] = { type = "Prefix", affix = "Shocking", "Adds (14-20) to (281-327) Lightning Damage", statOrder = { 1293 }, level = 51, group = "LocalLightningDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamageRanged8"] = { type = "Prefix", affix = "Discharging", "Adds (19-25) to (366-425) Lightning Damage", statOrder = { 1293 }, level = 63, group = "LocalLightningDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamageRanged9"] = { type = "Prefix", affix = "Electrocuting", "Adds (23-32) to (458-531) Lightning Damage", statOrder = { 1293 }, level = 74, group = "LocalLightningDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamageRanged10_"] = { type = "Prefix", affix = "Vapourising", "Adds (28-38) to (549-638) Lightning Damage", statOrder = { 1293 }, level = 82, group = "LocalLightningDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamageTwoHandEssence7"] = { type = "Prefix", affix = "Essences", "Adds (25-34) to (494-575) Lightning Damage", statOrder = { 1293 }, level = 82, group = "LocalLightningDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamageEnhancedTwoHandMod"] = { type = "Prefix", affix = "Topotante's", "Adds (12-31) to (367-415) Lightning Damage", "Attacks with this Weapon Penetrate (13-15)% Lightning Resistance", statOrder = { 1293, 3672 }, level = 1, group = "LocalLightningDamageTwoHandAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["IncreasedPhysicalDamageReductionRatingPercent1"] = { type = "Prefix", affix = "Reinforced", "(4-8)% increased Armour", statOrder = { 1452 }, level = 2, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, + ["IncreasedPhysicalDamageReductionRatingPercent2"] = { type = "Prefix", affix = "Layered", "(9-13)% increased Armour", statOrder = { 1452 }, level = 18, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, + ["IncreasedPhysicalDamageReductionRatingPercent3"] = { type = "Prefix", affix = "Lobstered", "(14-18)% increased Armour", statOrder = { 1452 }, level = 30, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, + ["IncreasedPhysicalDamageReductionRatingPercent4"] = { type = "Prefix", affix = "Buttressed", "(19-23)% increased Armour", statOrder = { 1452 }, level = 42, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, + ["IncreasedPhysicalDamageReductionRatingPercent5"] = { type = "Prefix", affix = "Thickened", "(24-28)% increased Armour", statOrder = { 1452 }, level = 56, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, + ["IncreasedPhysicalDamageReductionRatingPercent6"] = { type = "Prefix", affix = "Girded", "(29-32)% increased Armour", statOrder = { 1452 }, level = 70, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, + ["IncreasedPhysicalDamageReductionRatingPercent7"] = { type = "Prefix", affix = "Impregnable", "(33-36)% increased Armour", statOrder = { 1452 }, level = 77, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, + ["IncreasedPhysicalDamageReductionRatingPercentEssence6"] = { type = "Prefix", affix = "Essences", "(29-31)% increased Armour", statOrder = { 1452 }, level = 77, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, }, + ["IncreasedPhysicalDamageReductionRatingPercentEssence7"] = { type = "Prefix", affix = "Essences", "(32-33)% increased Armour", statOrder = { 1452 }, level = 82, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, }, + ["IncreasedEvasionRatingPercent1"] = { type = "Prefix", affix = "Agile", "(4-8)% increased Evasion Rating", statOrder = { 1460 }, level = 2, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, + ["IncreasedEvasionRatingPercent2"] = { type = "Prefix", affix = "Dancer's", "(9-13)% increased Evasion Rating", statOrder = { 1460 }, level = 19, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, + ["IncreasedEvasionRatingPercent3"] = { type = "Prefix", affix = "Acrobat's", "(14-18)% increased Evasion Rating", statOrder = { 1460 }, level = 30, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, + ["IncreasedEvasionRatingPercent4"] = { type = "Prefix", affix = "Fleet", "(19-23)% increased Evasion Rating", statOrder = { 1460 }, level = 42, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, + ["IncreasedEvasionRatingPercent5"] = { type = "Prefix", affix = "Blurred", "(24-28)% increased Evasion Rating", statOrder = { 1460 }, level = 56, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, + ["IncreasedEvasionRatingPercent6"] = { type = "Prefix", affix = "Phased", "(29-32)% increased Evasion Rating", statOrder = { 1460 }, level = 70, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, + ["IncreasedEvasionRatingPercent7"] = { type = "Prefix", affix = "Vaporous", "(33-36)% increased Evasion Rating", statOrder = { 1460 }, level = 77, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, + ["IncreasedEvasionRatingPercentEssence6"] = { type = "Prefix", affix = "Essences", "(29-31)% increased Evasion Rating", statOrder = { 1460 }, level = 77, group = "GlobalEvasionRatingPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, }, + ["IncreasedEvasionRatingPercentEssence7"] = { type = "Prefix", affix = "Essences", "(32-33)% increased Evasion Rating", statOrder = { 1460 }, level = 82, group = "GlobalEvasionRatingPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, }, + ["IncreasedEnergyShieldPercent1"] = { type = "Prefix", affix = "Protective", "(2-4)% increased maximum Energy Shield", statOrder = { 1472 }, level = 3, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["IncreasedEnergyShieldPercent2"] = { type = "Prefix", affix = "Strong-Willed", "(5-7)% increased maximum Energy Shield", statOrder = { 1472 }, level = 18, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["IncreasedEnergyShieldPercent3"] = { type = "Prefix", affix = "Resolute", "(8-10)% increased maximum Energy Shield", statOrder = { 1472 }, level = 30, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["IncreasedEnergyShieldPercent4"] = { type = "Prefix", affix = "Fearless", "(11-13)% increased maximum Energy Shield", statOrder = { 1472 }, level = 42, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["IncreasedEnergyShieldPercent5"] = { type = "Prefix", affix = "Dauntless", "(14-16)% increased maximum Energy Shield", statOrder = { 1472 }, level = 56, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["IncreasedEnergyShieldPercent6"] = { type = "Prefix", affix = "Indomitable", "(17-19)% increased maximum Energy Shield", statOrder = { 1472 }, level = 70, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["IncreasedEnergyShieldPercent7"] = { type = "Prefix", affix = "Unassailable", "(20-22)% increased maximum Energy Shield", statOrder = { 1472 }, level = 77, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["IncreasedEnergyShieldPercentEssence1"] = { type = "Prefix", affix = "Essences", "(4-6)% increased maximum Energy Shield", statOrder = { 1472 }, level = 10, group = "GlobalEnergyShieldPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, + ["IncreasedEnergyShieldPercentEssence4"] = { type = "Prefix", affix = "Essences", "(11-13)% increased maximum Energy Shield", statOrder = { 1472 }, level = 10, group = "GlobalEnergyShieldPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, + ["IncreasedEnergyShieldPercentEssence5"] = { type = "Prefix", affix = "Essences", "(14-16)% increased maximum Energy Shield", statOrder = { 1472 }, level = 10, group = "GlobalEnergyShieldPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, + ["IncreasedEnergyShieldPercentEssence6"] = { type = "Prefix", affix = "Essences", "(17-18)% increased maximum Energy Shield", statOrder = { 1472 }, level = 77, group = "GlobalEnergyShieldPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, + ["IncreasedEnergyShieldPercentEssence7_"] = { type = "Prefix", affix = "Essences", "(18-19)% increased maximum Energy Shield", statOrder = { 1472 }, level = 82, group = "GlobalEnergyShieldPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, + ["IncreasedEvasionRating1"] = { type = "Prefix", affix = "Agile", "+(3-10) to Evasion Rating", statOrder = { 1455 }, level = 1, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, + ["IncreasedEvasionRating2"] = { type = "Prefix", affix = "Dancer's", "+(11-35) to Evasion Rating", statOrder = { 1455 }, level = 18, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, + ["IncreasedEvasionRating3"] = { type = "Prefix", affix = "Acrobat's", "+(36-60) to Evasion Rating", statOrder = { 1455 }, level = 29, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, + ["IncreasedEvasionRating4"] = { type = "Prefix", affix = "Fleet", "+(61-80) to Evasion Rating", statOrder = { 1455 }, level = 42, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, + ["IncreasedEvasionRating5"] = { type = "Prefix", affix = "Blurred", "+(81-120) to Evasion Rating", statOrder = { 1455 }, level = 58, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, + ["IncreasedEvasionRating6"] = { type = "Prefix", affix = "Phased", "+(121-150) to Evasion Rating", statOrder = { 1455 }, level = 72, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, + ["IncreasedEvasionRating7"] = { type = "Prefix", affix = "Vaporous", "+(151-170) to Evasion Rating", statOrder = { 1455 }, level = 84, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, + ["IncreasedEvasionRatingEssence7"] = { type = "Prefix", affix = "Essences", "+(151-180) to Evasion Rating", statOrder = { 1455 }, level = 82, group = "EvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRating1"] = { type = "Prefix", affix = "Agile", "+(6-12) to Evasion Rating", statOrder = { 1459 }, level = 1, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRating2"] = { type = "Prefix", affix = "Dancer's", "+(13-35) to Evasion Rating", statOrder = { 1459 }, level = 11, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRating3"] = { type = "Prefix", affix = "Acrobat's", "+(36-63) to Evasion Rating", statOrder = { 1459 }, level = 17, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRating4"] = { type = "Prefix", affix = "Fleet", "+(64-82) to Evasion Rating", statOrder = { 1459 }, level = 23, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRating5"] = { type = "Prefix", affix = "Blurred", "+(83-101) to Evasion Rating", statOrder = { 1459 }, level = 29, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRating6"] = { type = "Prefix", affix = "Phased", "+(102-120) to Evasion Rating", statOrder = { 1459 }, level = 35, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRating7_"] = { type = "Prefix", affix = "Vaporous", "+(121-150) to Evasion Rating", statOrder = { 1459 }, level = 43, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRating8"] = { type = "Prefix", affix = "Elusory", "+(151-200) to Evasion Rating", statOrder = { 1459 }, level = 51, group = "LocalEvasionRating", weightKey = { "gloves", "boots", "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 166, 0 }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRating9___"] = { type = "Prefix", affix = "Adroit", "+(201-300) to Evasion Rating", statOrder = { 1459 }, level = 60, group = "LocalEvasionRating", weightKey = { "helmet", "gloves", "boots", "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRating10"] = { type = "Prefix", affix = "Lissome", "+(301-400) to Evasion Rating", statOrder = { 1459 }, level = 69, group = "LocalEvasionRating", weightKey = { "helmet", "gloves", "boots", "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRating11"] = { type = "Prefix", affix = "Fugitive", "+(401-500) to Evasion Rating", statOrder = { 1459 }, level = 77, group = "LocalEvasionRating", weightKey = { "shield", "helmet", "gloves", "boots", "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingEssence7"] = { type = "Prefix", affix = "Essences", "+(390-475) to Evasion Rating", statOrder = { 1459 }, level = 82, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingEssenceHelm4__"] = { type = "Prefix", affix = "Essences", "+(40-49) to Evasion Rating", statOrder = { 1459 }, level = 42, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingEssenceHelm5"] = { type = "Prefix", affix = "Essences", "+(121-140) to Evasion Rating", statOrder = { 1459 }, level = 58, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingEssenceHelm6"] = { type = "Prefix", affix = "Essences", "+(141-160) to Evasion Rating", statOrder = { 1459 }, level = 74, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingEssenceHelm7"] = { type = "Prefix", affix = "Essences", "+(161-180) to Evasion Rating", statOrder = { 1459 }, level = 82, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingEssenceGlovesBoots3"] = { type = "Prefix", affix = "Essences", "+(21-25) to Evasion Rating", statOrder = { 1459 }, level = 26, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingEssenceGlovesBoots4"] = { type = "Prefix", affix = "Essences", "+(81-90) to Evasion Rating", statOrder = { 1459 }, level = 42, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingEssenceGlovesBoots5"] = { type = "Prefix", affix = "Essences", "+(91-105) to Evasion Rating", statOrder = { 1459 }, level = 58, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingEssenceGlovesBoots6"] = { type = "Prefix", affix = "Essences", "+(106-120) to Evasion Rating", statOrder = { 1459 }, level = 74, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingEssenceGlovesBoots7"] = { type = "Prefix", affix = "Essences", "+(121-135) to Evasion Rating", statOrder = { 1459 }, level = 82, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingEssenceShield5"] = { type = "Prefix", affix = "Essences", "+(151-225) to Evasion Rating", statOrder = { 1459 }, level = 58, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingEssenceShield6"] = { type = "Prefix", affix = "Essences", "+(226-300) to Evasion Rating", statOrder = { 1459 }, level = 74, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingEssenceShield7____"] = { type = "Prefix", affix = "Essences", "+(301-375) to Evasion Rating", statOrder = { 1459 }, level = 82, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, }, + ["IncreasedPhysicalDamageReductionRating1"] = { type = "Prefix", affix = "Lacquered", "+(3-10) to Armour", statOrder = { 1450 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, + ["IncreasedPhysicalDamageReductionRating2"] = { type = "Prefix", affix = "Studded", "+(11-35) to Armour", statOrder = { 1450 }, level = 18, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, + ["IncreasedPhysicalDamageReductionRating3"] = { type = "Prefix", affix = "Ribbed", "+(36-60) to Armour", statOrder = { 1450 }, level = 30, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, + ["IncreasedPhysicalDamageReductionRating4"] = { type = "Prefix", affix = "Fortified", "+(61-138) to Armour", statOrder = { 1450 }, level = 44, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, + ["IncreasedPhysicalDamageReductionRating5"] = { type = "Prefix", affix = "Plated", "+(139-322) to Armour", statOrder = { 1450 }, level = 57, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, + ["IncreasedPhysicalDamageReductionRating6"] = { type = "Prefix", affix = "Carapaced", "+(323-400) to Armour", statOrder = { 1450 }, level = 71, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, + ["IncreasedPhysicalDamageReductionRating7"] = { type = "Prefix", affix = "Encased", "+(401-460) to Armour", statOrder = { 1450 }, level = 83, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, + ["IncreasedPhysicalDamageReductionRating8_"] = { type = "Prefix", affix = "Enveloped", "+(461-540) to Armour", statOrder = { 1450 }, level = 86, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, + ["IncreasedPhysicalDamageReductionRatingEssence7"] = { type = "Prefix", affix = "Essences", "+(481-520) to Armour", statOrder = { 1450 }, level = 82, group = "PhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, }, + ["IncreasedPhysicalDamageReductionRatingEssenceRing5"] = { type = "Prefix", affix = "Essences", "+(80-120) to Armour", statOrder = { 1450 }, level = 58, group = "PhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, }, + ["IncreasedPhysicalDamageReductionRatingEssenceRing6"] = { type = "Prefix", affix = "Essences", "+(121-200) to Armour", statOrder = { 1450 }, level = 74, group = "PhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, }, + ["IncreasedPhysicalDamageReductionRatingEssenceRing7"] = { type = "Prefix", affix = "Essences", "+(201-300) to Armour", statOrder = { 1450 }, level = 82, group = "PhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRating1"] = { type = "Prefix", affix = "Lacquered", "+(6-12) to Armour", statOrder = { 1451 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRating2"] = { type = "Prefix", affix = "Studded", "+(13-35) to Armour", statOrder = { 1451 }, level = 11, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRating3"] = { type = "Prefix", affix = "Ribbed", "+(36-63) to Armour", statOrder = { 1451 }, level = 17, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRating4"] = { type = "Prefix", affix = "Fortified", "+(64-82) to Armour", statOrder = { 1451 }, level = 23, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRating5"] = { type = "Prefix", affix = "Plated", "+(83-101) to Armour", statOrder = { 1451 }, level = 29, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRating6"] = { type = "Prefix", affix = "Carapaced", "+(102-120) to Armour", statOrder = { 1451 }, level = 35, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRating7__"] = { type = "Prefix", affix = "Encased", "+(121-150) to Armour", statOrder = { 1451 }, level = 43, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRating8"] = { type = "Prefix", affix = "Enveloped", "+(151-200) to Armour", statOrder = { 1451 }, level = 51, group = "LocalPhysicalDamageReductionRating", weightKey = { "gloves", "boots", "str_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRating9_"] = { type = "Prefix", affix = "Abating", "+(201-300) to Armour", statOrder = { 1451 }, level = 60, group = "LocalPhysicalDamageReductionRating", weightKey = { "helmet", "gloves", "boots", "str_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRating10"] = { type = "Prefix", affix = "Unmoving", "+(301-400) to Armour", statOrder = { 1451 }, level = 69, group = "LocalPhysicalDamageReductionRating", weightKey = { "helmet", "gloves", "boots", "str_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRating11"] = { type = "Prefix", affix = "Impervious", "+(401-500) to Armour", statOrder = { 1451 }, level = 77, group = "LocalPhysicalDamageReductionRating", weightKey = { "shield", "helmet", "gloves", "boots", "str_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingEssence7"] = { type = "Prefix", affix = "Essences", "+(390-475) to Armour", statOrder = { 1451 }, level = 82, group = "LocalPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingEssenceHelm5"] = { type = "Prefix", affix = "Essences", "+(121-140) to Armour", statOrder = { 1451 }, level = 58, group = "LocalPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingEssenceHelm6_"] = { type = "Prefix", affix = "Essences", "+(141-160) to Armour", statOrder = { 1451 }, level = 74, group = "LocalPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingEssenceHelm7_"] = { type = "Prefix", affix = "Essences", "+(161-180) to Armour", statOrder = { 1451 }, level = 82, group = "LocalPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingEssenceBootsGloves5"] = { type = "Prefix", affix = "Essences", "+(91-105) to Armour", statOrder = { 1451 }, level = 58, group = "LocalPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingEssenceBootsGloves6"] = { type = "Prefix", affix = "Essences", "+(106-120) to Armour", statOrder = { 1451 }, level = 74, group = "LocalPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingEssenceBootsGloves7"] = { type = "Prefix", affix = "Essences", "+(121-135) to Armour", statOrder = { 1451 }, level = 82, group = "LocalPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingEssenceShield5_"] = { type = "Prefix", affix = "Essences", "+(151-225) to Armour", statOrder = { 1451 }, level = 58, group = "LocalPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingEssenceShield6"] = { type = "Prefix", affix = "Essences", "+(226-300) to Armour", statOrder = { 1451 }, level = 74, group = "LocalPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingEssenceShield7____"] = { type = "Prefix", affix = "Essences", "+(301-375) to Armour", statOrder = { 1451 }, level = 82, group = "LocalPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, }, + ["LocalBaseArmourAndEvasionRating1"] = { type = "Prefix", affix = "Supple", "+(5-9) to Armour", "+(5-9) to Evasion Rating", statOrder = { 1451, 1459 }, level = 1, group = "LocalBaseArmourAndEvasionRating", weightKey = { "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour", "evasion" }, }, + ["LocalBaseArmourAndEvasionRating2"] = { type = "Prefix", affix = "Pliant", "+(10-27) to Armour", "+(10-27) to Evasion Rating", statOrder = { 1451, 1459 }, level = 18, group = "LocalBaseArmourAndEvasionRating", weightKey = { "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour", "evasion" }, }, + ["LocalBaseArmourAndEvasionRating3"] = { type = "Prefix", affix = "Flexible", "+(28-48) to Armour", "+(28-48) to Evasion Rating", statOrder = { 1451, 1459 }, level = 30, group = "LocalBaseArmourAndEvasionRating", weightKey = { "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour", "evasion" }, }, + ["LocalBaseArmourAndEvasionRating4"] = { type = "Prefix", affix = "Durable", "+(49-85) to Armour", "+(49-85) to Evasion Rating", statOrder = { 1451, 1459 }, level = 38, group = "LocalBaseArmourAndEvasionRating", weightKey = { "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour", "evasion" }, }, + ["LocalBaseArmourAndEvasionRating5"] = { type = "Prefix", affix = "Sturdy", "+(86-145) to Armour", "+(86-145) to Evasion Rating", statOrder = { 1451, 1459 }, level = 46, group = "LocalBaseArmourAndEvasionRating", weightKey = { "boots", "gloves", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour", "evasion" }, }, + ["LocalBaseArmourAndEvasionRating6_"] = { type = "Prefix", affix = "Resilient", "+(146-220) to Armour", "+(146-220) to Evasion Rating", statOrder = { 1451, 1459 }, level = 58, group = "LocalBaseArmourAndEvasionRating", weightKey = { "boots", "gloves", "helmet", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour", "evasion" }, }, + ["LocalBaseArmourAndEvasionRating7"] = { type = "Prefix", affix = "Adaptable", "+(221-300) to Armour", "+(221-300) to Evasion Rating", statOrder = { 1451, 1459 }, level = 69, group = "LocalBaseArmourAndEvasionRating", weightKey = { "boots", "gloves", "helmet", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour", "evasion" }, }, + ["LocalBaseArmourAndEvasionRating8"] = { type = "Prefix", affix = "Versatile", "+(301-375) to Armour", "+(301-375) to Evasion Rating", statOrder = { 1451, 1459 }, level = 79, group = "LocalBaseArmourAndEvasionRating", weightKey = { "shield", "boots", "gloves", "helmet", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour", "evasion" }, }, + ["LocalBaseArmourAndEnergyShield1"] = { type = "Prefix", affix = "Blessed", "+(5-9) to Armour", "+(3-4) to maximum Energy Shield", statOrder = { 1451, 1470 }, level = 1, group = "LocalBaseArmourAndEnergyShield", weightKey = { "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalBaseArmourAndEnergyShield2_"] = { type = "Prefix", affix = "Anointed", "+(10-27) to Armour", "+(5-12) to maximum Energy Shield", statOrder = { 1451, 1470 }, level = 18, group = "LocalBaseArmourAndEnergyShield", weightKey = { "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalBaseArmourAndEnergyShield3"] = { type = "Prefix", affix = "Sanctified", "+(28-48) to Armour", "+(13-22) to maximum Energy Shield", statOrder = { 1451, 1470 }, level = 30, group = "LocalBaseArmourAndEnergyShield", weightKey = { "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalBaseArmourAndEnergyShield4"] = { type = "Prefix", affix = "Hallowed", "+(49-85) to Armour", "+(23-28) to maximum Energy Shield", statOrder = { 1451, 1470 }, level = 38, group = "LocalBaseArmourAndEnergyShield", weightKey = { "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalBaseArmourAndEnergyShield5"] = { type = "Prefix", affix = "Beatified", "+(86-145) to Armour", "+(29-48) to maximum Energy Shield", statOrder = { 1451, 1470 }, level = 46, group = "LocalBaseArmourAndEnergyShield", weightKey = { "boots", "gloves", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalBaseArmourAndEnergyShield6"] = { type = "Prefix", affix = "Consecrated", "+(146-220) to Armour", "+(49-60) to maximum Energy Shield", statOrder = { 1451, 1470 }, level = 58, group = "LocalBaseArmourAndEnergyShield", weightKey = { "boots", "gloves", "helmet", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalBaseArmourAndEnergyShield7"] = { type = "Prefix", affix = "Saintly", "+(221-300) to Armour", "+(61-72) to maximum Energy Shield", statOrder = { 1451, 1470 }, level = 69, group = "LocalBaseArmourAndEnergyShield", weightKey = { "boots", "gloves", "helmet", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalBaseArmourAndEnergyShield8"] = { type = "Prefix", affix = "Godly", "+(301-375) to Armour", "+(73-80) to maximum Energy Shield", statOrder = { 1451, 1470 }, level = 79, group = "LocalBaseArmourAndEnergyShield", weightKey = { "shield", "boots", "gloves", "helmet", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalBaseEvasionRatingAndEnergyShield1"] = { type = "Prefix", affix = "Will-o-wisp's", "+(5-9) to Evasion Rating", "+(3-4) to maximum Energy Shield", statOrder = { 1459, 1470 }, level = 1, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["LocalBaseEvasionRatingAndEnergyShield2"] = { type = "Prefix", affix = "Nymph's", "+(10-27) to Evasion Rating", "+(5-12) to maximum Energy Shield", statOrder = { 1459, 1470 }, level = 18, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["LocalBaseEvasionRatingAndEnergyShield3"] = { type = "Prefix", affix = "Sylph's", "+(28-48) to Evasion Rating", "+(13-22) to maximum Energy Shield", statOrder = { 1459, 1470 }, level = 30, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["LocalBaseEvasionRatingAndEnergyShield4"] = { type = "Prefix", affix = "Cherub's", "+(49-85) to Evasion Rating", "+(23-28) to maximum Energy Shield", statOrder = { 1459, 1470 }, level = 38, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["LocalBaseEvasionRatingAndEnergyShield5_"] = { type = "Prefix", affix = "Spirit's", "+(86-145) to Evasion Rating", "+(29-48) to maximum Energy Shield", statOrder = { 1459, 1470 }, level = 46, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "boots", "gloves", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 166, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["LocalBaseEvasionRatingAndEnergyShield6"] = { type = "Prefix", affix = "Eidolon's", "+(146-220) to Evasion Rating", "+(49-60) to maximum Energy Shield", statOrder = { 1459, 1470 }, level = 58, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "boots", "gloves", "helmet", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["LocalBaseEvasionRatingAndEnergyShield7___"] = { type = "Prefix", affix = "Apparition's", "+(221-300) to Evasion Rating", "+(61-72) to maximum Energy Shield", statOrder = { 1459, 1470 }, level = 69, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "boots", "gloves", "helmet", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["LocalBaseEvasionRatingAndEnergyShield8___"] = { type = "Prefix", affix = "Phantasm's", "+(301-375) to Evasion Rating", "+(73-80) to maximum Energy Shield", statOrder = { 1459, 1470 }, level = 79, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "shield", "boots", "gloves", "helmet", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["LocalBaseArmourAndEvasionRatingAndLife1"] = { type = "Prefix", affix = "Rhoa's", "+(8-10) to Armour", "+(8-10) to Evasion Rating", "+(18-23) to maximum Life", statOrder = { 1451, 1459, 1480 }, level = 30, group = "LocalBaseArmourEvasionRatingAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "armour", "evasion" }, }, + ["LocalBaseArmourAndEvasionRatingAndLife2"] = { type = "Prefix", affix = "Rhex's", "+(11-21) to Armour", "+(11-21) to Evasion Rating", "+(24-28) to maximum Life", statOrder = { 1451, 1459, 1480 }, level = 46, group = "LocalBaseArmourEvasionRatingAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "armour", "evasion" }, }, + ["LocalBaseArmourAndEvasionRatingAndLife3"] = { type = "Prefix", affix = "Chimeral's", "+(22-48) to Armour", "+(22-48) to Evasion Rating", "+(29-33) to maximum Life", statOrder = { 1451, 1459, 1480 }, level = 62, group = "LocalBaseArmourEvasionRatingAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "armour", "evasion" }, }, + ["LocalBaseArmourAndEvasionRatingAndLife4"] = { type = "Prefix", affix = "Bull's", "+(49-60) to Armour", "+(49-60) to Evasion Rating", "+(34-38) to maximum Life", statOrder = { 1451, 1459, 1480 }, level = 78, group = "LocalBaseArmourEvasionRatingAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "armour", "evasion" }, }, + ["LocalBaseArmourAndEnergyShieldAndLife1_"] = { type = "Prefix", affix = "Coelacanth's", "+(8-10) to Armour", "+(3-5) to maximum Energy Shield", "+(18-23) to maximum Life", statOrder = { 1451, 1470, 1480 }, level = 30, group = "LocalBaseArmourEnergyShieldAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "armour", "energy_shield" }, }, + ["LocalBaseArmourAndEnergyShieldAndLife2_"] = { type = "Prefix", affix = "Swordfish's", "+(11-21) to Armour", "+(6-8) to maximum Energy Shield", "+(24-28) to maximum Life", statOrder = { 1451, 1470, 1480 }, level = 46, group = "LocalBaseArmourEnergyShieldAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "armour", "energy_shield" }, }, + ["LocalBaseArmourAndEnergyShieldAndLife3"] = { type = "Prefix", affix = "Shark's", "+(22-48) to Armour", "+(9-12) to maximum Energy Shield", "+(29-33) to maximum Life", statOrder = { 1451, 1470, 1480 }, level = 62, group = "LocalBaseArmourEnergyShieldAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "armour", "energy_shield" }, }, + ["LocalBaseArmourAndEnergyShieldAndLife4_"] = { type = "Prefix", affix = "Whale's", "+(49-60) to Armour", "+(13-15) to maximum Energy Shield", "+(34-38) to maximum Life", statOrder = { 1451, 1470, 1480 }, level = 78, group = "LocalBaseArmourEnergyShieldAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "armour", "energy_shield" }, }, + ["LocalBaseEvasionRatingAndEnergyShieldAndLife1"] = { type = "Prefix", affix = "Vulture's", "+(8-10) to Evasion Rating", "+(3-5) to maximum Energy Shield", "+(18-23) to maximum Life", statOrder = { 1459, 1470, 1480 }, level = 30, group = "LocalBaseEvasionRatingEnergyShieldAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "evasion", "energy_shield" }, }, + ["LocalBaseEvasionRatingAndEnergyShieldAndLife2"] = { type = "Prefix", affix = "Kingfisher's", "+(11-21) to Evasion Rating", "+(6-8) to maximum Energy Shield", "+(24-28) to maximum Life", statOrder = { 1459, 1470, 1480 }, level = 46, group = "LocalBaseEvasionRatingEnergyShieldAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "evasion", "energy_shield" }, }, + ["LocalBaseEvasionRatingAndEnergyShieldAndLife3"] = { type = "Prefix", affix = "Owl's", "+(22-48) to Evasion Rating", "+(9-12) to maximum Energy Shield", "+(29-33) to maximum Life", statOrder = { 1459, 1470, 1480 }, level = 62, group = "LocalBaseEvasionRatingEnergyShieldAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "evasion", "energy_shield" }, }, + ["LocalBaseEvasionRatingAndEnergyShieldAndLife4"] = { type = "Prefix", affix = "Eagle's", "+(49-60) to Evasion Rating", "+(13-15) to maximum Energy Shield", "+(34-38) to maximum Life", statOrder = { 1459, 1470, 1480 }, level = 78, group = "LocalBaseEvasionRatingEnergyShieldAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "evasion", "energy_shield" }, }, + ["LocalBaseArmourAndLife1"] = { type = "Prefix", affix = "Oyster's", "+(20-32) to Armour", "+(18-23) to maximum Life", statOrder = { 1451, 1480 }, level = 30, group = "LocalBaseArmourAndLife", weightKey = { "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 500, 500, 333, 0 }, modTags = { "resource", "life", "defences", "armour" }, }, + ["LocalBaseArmourAndLife2"] = { type = "Prefix", affix = "Urchin's", "+(33-48) to Armour", "+(24-28) to maximum Life", statOrder = { 1451, 1480 }, level = 46, group = "LocalBaseArmourAndLife", weightKey = { "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 500, 500, 333, 0 }, modTags = { "resource", "life", "defences", "armour" }, }, + ["LocalBaseArmourAndLife3"] = { type = "Prefix", affix = "Nautilus's", "+(49-96) to Armour", "+(29-33) to maximum Life", statOrder = { 1451, 1480 }, level = 62, group = "LocalBaseArmourAndLife", weightKey = { "boots", "gloves", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 500, 500, 333, 0 }, modTags = { "resource", "life", "defences", "armour" }, }, + ["LocalBaseArmourAndLife4"] = { type = "Prefix", affix = "Crocodile's", "+(97-144) to Armour", "+(34-38) to maximum Life", statOrder = { 1451, 1480 }, level = 78, group = "LocalBaseArmourAndLife", weightKey = { "shield", "boots", "gloves", "helmet", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 500, 250, 250, 166, 0 }, modTags = { "resource", "life", "defences", "armour" }, }, + ["LocalBaseEvasionRatingAndLife1"] = { type = "Prefix", affix = "Flea's", "+(14-20) to Evasion Rating", "+(18-23) to maximum Life", statOrder = { 1459, 1480 }, level = 30, group = "LocalBaseEvasionRatingAndLife", weightKey = { "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 500, 500, 333, 0 }, modTags = { "resource", "life", "defences", "evasion" }, }, + ["LocalBaseEvasionRatingAndLife2"] = { type = "Prefix", affix = "Fawn's", "+(21-42) to Evasion Rating", "+(24-28) to maximum Life", statOrder = { 1459, 1480 }, level = 46, group = "LocalBaseEvasionRatingAndLife", weightKey = { "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 500, 500, 333, 0 }, modTags = { "resource", "life", "defences", "evasion" }, }, + ["LocalBaseEvasionRatingAndLife3"] = { type = "Prefix", affix = "Ram's", "+(43-95) to Evasion Rating", "+(29-33) to maximum Life", statOrder = { 1459, 1480 }, level = 62, group = "LocalBaseEvasionRatingAndLife", weightKey = { "boots", "gloves", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 500, 500, 333, 0 }, modTags = { "resource", "life", "defences", "evasion" }, }, + ["LocalBaseEvasionRatingAndLife4"] = { type = "Prefix", affix = "Ibex's", "+(96-120) to Evasion Rating", "+(34-38) to maximum Life", statOrder = { 1459, 1480 }, level = 78, group = "LocalBaseEvasionRatingAndLife", weightKey = { "shield", "boots", "gloves", "helmet", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 500, 250, 250, 166, 0 }, modTags = { "resource", "life", "defences", "evasion" }, }, + ["LocalBaseEnergyShieldAndLife1"] = { type = "Prefix", affix = "Monk's", "+(8-10) to maximum Energy Shield", "+(18-23) to maximum Life", statOrder = { 1470, 1480 }, level = 30, group = "LocalBaseEnergyShieldAndLife", weightKey = { "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 500, 500, 333, 0 }, modTags = { "resource", "life", "defences", "energy_shield" }, }, + ["LocalBaseEnergyShieldAndLife2"] = { type = "Prefix", affix = "Prior's", "+(11-15) to maximum Energy Shield", "+(24-28) to maximum Life", statOrder = { 1470, 1480 }, level = 46, group = "LocalBaseEnergyShieldAndLife", weightKey = { "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 500, 500, 333, 0 }, modTags = { "resource", "life", "defences", "energy_shield" }, }, + ["LocalBaseEnergyShieldAndLife3_"] = { type = "Prefix", affix = "Abbot's", "+(16-25) to maximum Energy Shield", "+(29-33) to maximum Life", statOrder = { 1470, 1480 }, level = 62, group = "LocalBaseEnergyShieldAndLife", weightKey = { "boots", "gloves", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 500, 500, 333, 0 }, modTags = { "resource", "life", "defences", "energy_shield" }, }, + ["LocalBaseEnergyShieldAndLife4_"] = { type = "Prefix", affix = "Exarch's", "+(26-30) to maximum Energy Shield", "+(34-38) to maximum Life", statOrder = { 1470, 1480 }, level = 78, group = "LocalBaseEnergyShieldAndLife", weightKey = { "shield", "boots", "gloves", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 500, 250, 250, 166, 0 }, modTags = { "resource", "life", "defences", "energy_shield" }, }, + ["LocalBaseEnergyShieldAndMana1"] = { type = "Prefix", affix = "Acolyte's", "+(8-10) to maximum Energy Shield", "+(11-15) to maximum Mana", statOrder = { 1470, 1490 }, level = 30, group = "LocalBaseEnergyShieldAndMana", weightKey = { "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 500, 500, 333, 0 }, modTags = { "resource", "mana", "defences", "energy_shield" }, }, + ["LocalBaseEnergyShieldAndMana2"] = { type = "Prefix", affix = "Deacon's", "+(11-15) to maximum Energy Shield", "+(16-19) to maximum Mana", statOrder = { 1470, 1490 }, level = 46, group = "LocalBaseEnergyShieldAndMana", weightKey = { "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 500, 500, 333, 0 }, modTags = { "resource", "mana", "defences", "energy_shield" }, }, + ["LocalBaseEnergyShieldAndMana3"] = { type = "Prefix", affix = "Priest's", "+(16-25) to maximum Energy Shield", "+(20-22) to maximum Mana", statOrder = { 1470, 1490 }, level = 62, group = "LocalBaseEnergyShieldAndMana", weightKey = { "boots", "gloves", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 500, 500, 333, 0 }, modTags = { "resource", "mana", "defences", "energy_shield" }, }, + ["LocalBaseEnergyShieldAndMana4"] = { type = "Prefix", affix = "Bishop's", "+(26-30) to maximum Energy Shield", "+(23-25) to maximum Mana", statOrder = { 1470, 1490 }, level = 78, group = "LocalBaseEnergyShieldAndMana", weightKey = { "shield", "boots", "gloves", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 500, 250, 250, 166, 0 }, modTags = { "resource", "mana", "defences", "energy_shield" }, }, + ["MovementVelocity1"] = { type = "Prefix", affix = "Runner's", "10% increased Movement Speed", statOrder = { 1709 }, level = 1, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, }, + ["MovementVelocity2"] = { type = "Prefix", affix = "Sprinter's", "15% increased Movement Speed", statOrder = { 1709 }, level = 15, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, }, + ["MovementVelocity3"] = { type = "Prefix", affix = "Stallion's", "20% increased Movement Speed", statOrder = { 1709 }, level = 30, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, }, + ["MovementVelocity4"] = { type = "Prefix", affix = "Gazelle's", "25% increased Movement Speed", statOrder = { 1709 }, level = 40, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, }, + ["MovementVelocity5"] = { type = "Prefix", affix = "Cheetah's", "30% increased Movement Speed", statOrder = { 1709 }, level = 55, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, }, + ["MovementVelocity6"] = { type = "Prefix", affix = "Hellion's", "35% increased Movement Speed", statOrder = { 1709 }, level = 86, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, }, + ["MovementVelocityEssence7"] = { type = "Prefix", affix = "Essences", "32% increased Movement Speed", statOrder = { 1709 }, level = 82, group = "MovementVelocity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, + ["MovementVelocityEnhancedModSpeed"] = { type = "Prefix", affix = "Matatl's", "30% increased Movement Speed", "5% increased Movement Speed if you haven't been Hit Recently", statOrder = { 1709, 3151 }, level = 1, group = "MovementVelocitySpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, + ["MovementVelocityEnhancedModDodge_"] = { type = "Prefix", affix = "Matatl's", "30% increased Movement Speed", "(10-15)% chance to Avoid Bleeding", statOrder = { 1709, 4123 }, level = 1, group = "MovementVelocityDodge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, + ["MovementVelocityEnhancedModSpellDodge_"] = { type = "Prefix", affix = "Matatl's", "30% increased Movement Speed", "(10-15)% chance to Avoid being Poisoned", statOrder = { 1709, 1760 }, level = 1, group = "MovementVelocitySpellDodge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, + ["SpellDamage1"] = { type = "Prefix", affix = "Chanter's", "(3-7)% increased Spell Damage", statOrder = { 1135 }, level = 5, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamage2"] = { type = "Prefix", affix = "Mage's", "(8-12)% increased Spell Damage", statOrder = { 1135 }, level = 20, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamage3"] = { type = "Prefix", affix = "Sorcerer's", "(13-17)% increased Spell Damage", statOrder = { 1135 }, level = 38, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamage4"] = { type = "Prefix", affix = "Thaumaturgist's", "(18-22)% increased Spell Damage", statOrder = { 1135 }, level = 56, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamage5"] = { type = "Prefix", affix = "Wizard's", "(23-26)% increased Spell Damage", statOrder = { 1135 }, level = 76, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageOnWeapon1"] = { type = "Prefix", affix = "Apprentice's", "(10-19)% increased Spell Damage", statOrder = { 1135 }, level = 2, group = "WeaponSpellDamage", weightKey = { "attack_dagger", "focus", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1500, 1500, 1500, 1500, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageOnWeapon2"] = { type = "Prefix", affix = "Adept's", "(20-29)% increased Spell Damage", statOrder = { 1135 }, level = 11, group = "WeaponSpellDamage", weightKey = { "attack_dagger", "focus", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1500, 1500, 1500, 1500, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageOnWeapon3"] = { type = "Prefix", affix = "Scholar's", "(30-39)% increased Spell Damage", statOrder = { 1135 }, level = 23, group = "WeaponSpellDamage", weightKey = { "attack_dagger", "focus", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1500, 1500, 1500, 1500, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageOnWeapon4"] = { type = "Prefix", affix = "Professor's", "(40-54)% increased Spell Damage", statOrder = { 1135 }, level = 35, group = "WeaponSpellDamage", weightKey = { "attack_dagger", "focus", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 600, 600, 600, 600, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageOnWeapon5"] = { type = "Prefix", affix = "Occultist's", "(55-69)% increased Spell Damage", statOrder = { 1135 }, level = 46, group = "WeaponSpellDamage", weightKey = { "attack_dagger", "focus", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 300, 300, 300, 300, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageOnWeapon6"] = { type = "Prefix", affix = "Incanter's", "(70-84)% increased Spell Damage", statOrder = { 1135 }, level = 58, group = "WeaponSpellDamage", weightKey = { "attack_dagger", "focus", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 150, 150, 150, 150, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageOnWeapon7"] = { type = "Prefix", affix = "Glyphic", "(85-99)% increased Spell Damage", statOrder = { 1135 }, level = 64, group = "WeaponSpellDamage", weightKey = { "attack_dagger", "focus", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 80, 80, 80, 80, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageOnWeapon8_"] = { type = "Prefix", affix = "Runic", "(100-109)% increased Spell Damage", statOrder = { 1135 }, level = 84, group = "WeaponSpellDamage", weightKey = { "attack_dagger", "focus", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 40, 40, 40, 40, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageOnWeaponEssence5_"] = { type = "Prefix", affix = "Essences", "(50-66)% increased Spell Damage", statOrder = { 1135 }, level = 58, group = "WeaponSpellDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageOnWeaponEssence6"] = { type = "Prefix", affix = "Essences", "(67-82)% increased Spell Damage", statOrder = { 1135 }, level = 74, group = "WeaponSpellDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageOnWeaponEssence7"] = { type = "Prefix", affix = "Essences", "(83-94)% increased Spell Damage", statOrder = { 1135 }, level = 82, group = "WeaponSpellDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageOnWeaponEnhancedMod"] = { type = "Prefix", affix = "Tacati's", "(70-74)% increased Spell Damage", "Gain 5% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 1135, 9286 }, level = 1, group = "WeaponSpellDamageAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["SpellDamageOnTwoHandWeapon1"] = { type = "Prefix", affix = "Apprentice's", "(15-29)% increased Spell Damage", statOrder = { 1135 }, level = 2, group = "TwoHandWeaponSpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1500, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageOnTwoHandWeapon2"] = { type = "Prefix", affix = "Adept's", "(30-44)% increased Spell Damage", statOrder = { 1135 }, level = 11, group = "TwoHandWeaponSpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1500, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageOnTwoHandWeapon3"] = { type = "Prefix", affix = "Scholar's", "(45-59)% increased Spell Damage", statOrder = { 1135 }, level = 23, group = "TwoHandWeaponSpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1500, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageOnTwoHandWeapon4"] = { type = "Prefix", affix = "Professor's", "(60-84)% increased Spell Damage", statOrder = { 1135 }, level = 35, group = "TwoHandWeaponSpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 600, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageOnTwoHandWeapon5"] = { type = "Prefix", affix = "Occultist's", "(85-104)% increased Spell Damage", statOrder = { 1135 }, level = 46, group = "TwoHandWeaponSpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageOnTwoHandWeapon6"] = { type = "Prefix", affix = "Incanter's", "(105-124)% increased Spell Damage", statOrder = { 1135 }, level = 58, group = "TwoHandWeaponSpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 150, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageOnTwoHandWeapon7"] = { type = "Prefix", affix = "Glyphic", "(125-149)% increased Spell Damage", statOrder = { 1135 }, level = 79, group = "TwoHandWeaponSpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 80, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageOnTwoHandWeapon8"] = { type = "Prefix", affix = "Runic", "(150-164)% increased Spell Damage", statOrder = { 1135 }, level = 84, group = "TwoHandWeaponSpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 40, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageOnTwoHandWeaponEssence5"] = { type = "Prefix", affix = "Essences", "(85-106)% increased Spell Damage", statOrder = { 1135 }, level = 58, group = "TwoHandWeaponSpellDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageOnTwoHandWeaponEssence6"] = { type = "Prefix", affix = "Essences", "(107-122)% increased Spell Damage", statOrder = { 1135 }, level = 74, group = "TwoHandWeaponSpellDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageOnTwoHandWeaponEssence7"] = { type = "Prefix", affix = "Essences", "(123-144)% increased Spell Damage", statOrder = { 1135 }, level = 82, group = "TwoHandWeaponSpellDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageOnTwoHandWeaponEnhancedMod"] = { type = "Prefix", affix = "Tacati's", "(105-110)% increased Spell Damage", "Gain 5% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 1135, 9286 }, level = 1, group = "WeaponSpellDamageAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["SpellDamageAndManaOnWeapon1"] = { type = "Prefix", affix = "Caster's", "(5-9)% increased Spell Damage", "+(17-20) to maximum Mana", statOrder = { 1135, 1490 }, level = 2, group = "WeaponSpellDamageAndMana", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 750, 750, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, }, + ["SpellDamageAndManaOnWeapon2"] = { type = "Prefix", affix = "Conjuror's", "(10-14)% increased Spell Damage", "+(21-24) to maximum Mana", statOrder = { 1135, 1490 }, level = 11, group = "WeaponSpellDamageAndMana", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 750, 750, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, }, + ["SpellDamageAndManaOnWeapon3"] = { type = "Prefix", affix = "Wizard's", "(15-19)% increased Spell Damage", "+(25-28) to maximum Mana", statOrder = { 1135, 1490 }, level = 23, group = "WeaponSpellDamageAndMana", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 750, 750, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, }, + ["SpellDamageAndManaOnWeapon4"] = { type = "Prefix", affix = "Warlock's", "(20-24)% increased Spell Damage", "+(29-33) to maximum Mana", statOrder = { 1135, 1490 }, level = 35, group = "WeaponSpellDamageAndMana", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 600, 600, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, }, + ["SpellDamageAndManaOnWeapon5"] = { type = "Prefix", affix = "Mage's", "(25-29)% increased Spell Damage", "+(34-37) to maximum Mana", statOrder = { 1135, 1490 }, level = 46, group = "WeaponSpellDamageAndMana", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 400, 300, 300, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, }, + ["SpellDamageAndManaOnWeapon6"] = { type = "Prefix", affix = "Archmage's", "(30-34)% increased Spell Damage", "+(38-41) to maximum Mana", statOrder = { 1135, 1490 }, level = 58, group = "WeaponSpellDamageAndMana", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 200, 150, 150, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, }, + ["SpellDamageAndManaOnWeapon7"] = { type = "Prefix", affix = "Lich's", "(35-39)% increased Spell Damage", "+(42-45) to maximum Mana", statOrder = { 1135, 1490 }, level = 80, group = "WeaponSpellDamageAndMana", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 75, 75, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, }, + ["SpellDamageAndManaOnTwoHandWeapon1"] = { type = "Prefix", affix = "Caster's", "(8-14)% increased Spell Damage", "+(26-30) to maximum Mana", statOrder = { 1135, 1490 }, level = 2, group = "TwoHandWeaponSpellDamageAndMana", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1500, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, }, + ["SpellDamageAndManaOnTwoHandWeapon2"] = { type = "Prefix", affix = "Conjuror's", "(15-22)% increased Spell Damage", "+(31-35) to maximum Mana", statOrder = { 1135, 1490 }, level = 11, group = "TwoHandWeaponSpellDamageAndMana", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1500, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, }, + ["SpellDamageAndManaOnTwoHandWeapon3"] = { type = "Prefix", affix = "Wizard's", "(23-29)% increased Spell Damage", "+(36-41) to maximum Mana", statOrder = { 1135, 1490 }, level = 23, group = "TwoHandWeaponSpellDamageAndMana", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1500, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, }, + ["SpellDamageAndManaOnTwoHandWeapon4"] = { type = "Prefix", affix = "Warlock's", "(30-37)% increased Spell Damage", "+(42-47) to maximum Mana", statOrder = { 1135, 1490 }, level = 35, group = "TwoHandWeaponSpellDamageAndMana", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 600, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, }, + ["SpellDamageAndManaOnTwoHandWeapon5"] = { type = "Prefix", affix = "Mage's", "(38-44)% increased Spell Damage", "+(48-53) to maximum Mana", statOrder = { 1135, 1490 }, level = 46, group = "TwoHandWeaponSpellDamageAndMana", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, }, + ["SpellDamageAndManaOnTwoHandWeapon6"] = { type = "Prefix", affix = "Archmage's", "(45-50)% increased Spell Damage", "+(54-59) to maximum Mana", statOrder = { 1135, 1490 }, level = 58, group = "TwoHandWeaponSpellDamageAndMana", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 150, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, }, + ["SpellDamageAndManaOnTwoHandWeapon7"] = { type = "Prefix", affix = "Lich's", "(51-55)% increased Spell Damage", "+(60-64) to maximum Mana", statOrder = { 1135, 1490 }, level = 80, group = "TwoHandWeaponSpellDamageAndMana", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 75, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, }, + ["TrapDamageOnWeaponEnhancedMod"] = { type = "Prefix", affix = "Matatl's", "(90-95)% increased Trap Damage", statOrder = { 1106 }, level = 1, group = "TrapDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, }, + ["TrapDamageOnTwoHandWeaponEnhancedMod"] = { type = "Prefix", affix = "Matatl's", "(133-138)% increased Trap Damage", statOrder = { 1106 }, level = 1, group = "TrapDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, }, + ["TrapThrowSpeedEnhancedMod"] = { type = "Suffix", affix = "of Matatl", "(20-22)% increased Trap Throwing Speed", statOrder = { 1836 }, level = 1, group = "TrapThrowSpeedOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, + ["TrapCooldownRecoveryAndDurationEnhancedMod"] = { type = "Suffix", affix = "of Matatl", "(17-20)% increased Trap Duration", "(14-15)% increased Cooldown Recovery Rate for throwing Traps", statOrder = { 1832, 3369 }, level = 1, group = "TrapCooldownRecoveryAndDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["TrapAreaOfEffectEnhancedMod_"] = { type = "Suffix", affix = "of Matatl", "Skills used by Traps have (22-25)% increased Area of Effect", statOrder = { 3387 }, level = 1, group = "TrapAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["LocalIncreaseSocketedTrapGemLevelEnhancedMod_"] = { type = "Prefix", affix = "Matatl's", "+2 to Level of Socketed Trap Gems", statOrder = { 166 }, level = 1, group = "LocalIncreaseSocketedTrapGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "gem" }, }, + ["MinionDamageOnWeaponEnhancedMod__"] = { type = "Prefix", affix = "Citaqualotl's", "Minions deal (90-95)% increased Damage", statOrder = { 1882 }, level = 1, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageOnTwoHandWeaponEnhancedMod"] = { type = "Prefix", affix = "Citaqualotl's", "Minions deal (133-138)% increased Damage", statOrder = { 1882 }, level = 1, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, + ["MinionAttackAndCastSpeedEnhancedMod"] = { type = "Suffix", affix = "of Citaqualotl", "Minions have (13-15)% increased Attack Speed", "Minions have (13-15)% increased Cast Speed", statOrder = { 2817, 2818 }, level = 1, group = "MinionAttackAndCastSpeedOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, + ["MinionDurationEnhancedMod_"] = { type = "Suffix", affix = "of Citaqualotl", "(17-20)% increased Minion Duration", statOrder = { 4926 }, level = 1, group = "MinionDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, }, + ["LocalIncreaseSocketedMinionGemLevelEnhancedMod"] = { type = "Prefix", affix = "Citaqualotl's", "+2 to Level of Socketed Minion Gems", statOrder = { 160 }, level = 1, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion", "gem" }, }, + ["FireDamagePrefixOnWeapon1"] = { type = "Prefix", affix = "Searing", "(10-19)% increased Fire Damage", statOrder = { 1268 }, level = 2, group = "FireDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePrefixOnWeapon2"] = { type = "Prefix", affix = "Sizzling", "(20-29)% increased Fire Damage", statOrder = { 1268 }, level = 11, group = "FireDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePrefixOnWeapon3"] = { type = "Prefix", affix = "Blistering", "(30-39)% increased Fire Damage", statOrder = { 1268 }, level = 23, group = "FireDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePrefixOnWeapon4"] = { type = "Prefix", affix = "Cauterising", "(40-54)% increased Fire Damage", statOrder = { 1268 }, level = 35, group = "FireDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 200, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePrefixOnWeapon5_"] = { type = "Prefix", affix = "Volcanic", "(55-69)% increased Fire Damage", statOrder = { 1268 }, level = 46, group = "FireDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 100, 100, 100, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePrefixOnWeapon6"] = { type = "Prefix", affix = "Magmatic", "(70-84)% increased Fire Damage", statOrder = { 1268 }, level = 58, group = "FireDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 50, 50, 50, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePrefixOnWeapon7_"] = { type = "Prefix", affix = "Pyroclastic", "(85-99)% increased Fire Damage", statOrder = { 1268 }, level = 64, group = "FireDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 25, 25, 25, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePrefixOnWeapon8_"] = { type = "Prefix", affix = "Xoph's", "(100-109)% increased Fire Damage", statOrder = { 1268 }, level = 84, group = "FireDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 12, 12, 12, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePrefixOnTwoHandWeapon1"] = { type = "Prefix", affix = "Searing", "(15-29)% increased Fire Damage", statOrder = { 1268 }, level = 2, group = "TwoHandFireDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePrefixOnTwoHandWeapon2___"] = { type = "Prefix", affix = "Sizzling", "(30-44)% increased Fire Damage", statOrder = { 1268 }, level = 11, group = "TwoHandFireDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePrefixOnTwoHandWeapon3"] = { type = "Prefix", affix = "Blistering", "(45-59)% increased Fire Damage", statOrder = { 1268 }, level = 23, group = "TwoHandFireDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePrefixOnTwoHandWeapon4"] = { type = "Prefix", affix = "Cauterising", "(60-84)% increased Fire Damage", statOrder = { 1268 }, level = 35, group = "TwoHandFireDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePrefixOnTwoHandWeapon5"] = { type = "Prefix", affix = "Volcanic", "(85-104)% increased Fire Damage", statOrder = { 1268 }, level = 46, group = "TwoHandFireDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePrefixOnTwoHandWeapon6"] = { type = "Prefix", affix = "Magmatic", "(105-124)% increased Fire Damage", statOrder = { 1268 }, level = 58, group = "TwoHandFireDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 50, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePrefixOnTwoHandWeapon7"] = { type = "Prefix", affix = "Pyroclastic", "(125-149)% increased Fire Damage", statOrder = { 1268 }, level = 79, group = "TwoHandFireDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 25, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePrefixOnTwoHandWeapon8_"] = { type = "Prefix", affix = "Xoph's", "(150-164)% increased Fire Damage", statOrder = { 1268 }, level = 84, group = "TwoHandFireDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 13, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePrefixOnWeaponEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "(75-79)% increased Fire Damage", "Adds (15-20) to (30-35) Fire Damage to Spells", statOrder = { 1268, 1315 }, level = 1, group = "FireDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["FireDamagePrefixOnTwoHandWeaponEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "(111-115)% increased Fire Damage", "Adds (20-27) to (41-48) Fire Damage to Spells", statOrder = { 1268, 1315 }, level = 1, group = "TwoHandFireDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["ColdDamagePrefixOnWeapon1"] = { type = "Prefix", affix = "Bitter", "(10-19)% increased Cold Damage", statOrder = { 1277 }, level = 2, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePrefixOnWeapon2"] = { type = "Prefix", affix = "Biting", "(20-29)% increased Cold Damage", statOrder = { 1277 }, level = 11, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePrefixOnWeapon3_"] = { type = "Prefix", affix = "Alpine", "(30-39)% increased Cold Damage", statOrder = { 1277 }, level = 23, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePrefixOnWeapon4"] = { type = "Prefix", affix = "Snowy", "(40-54)% increased Cold Damage", statOrder = { 1277 }, level = 35, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 200, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePrefixOnWeapon5_"] = { type = "Prefix", affix = "Hailing", "(55-69)% increased Cold Damage", statOrder = { 1277 }, level = 46, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 100, 100, 100, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePrefixOnWeapon6"] = { type = "Prefix", affix = "Crystalline", "(70-84)% increased Cold Damage", statOrder = { 1277 }, level = 58, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 50, 50, 50, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePrefixOnWeapon7"] = { type = "Prefix", affix = "Cryomancer's", "(85-99)% increased Cold Damage", statOrder = { 1277 }, level = 64, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 25, 25, 25, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePrefixOnWeapon8"] = { type = "Prefix", affix = "Tul's", "(100-109)% increased Cold Damage", statOrder = { 1277 }, level = 84, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 12, 12, 12, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePrefixOnTwoHandWeapon1"] = { type = "Prefix", affix = "Bitter", "(15-29)% increased Cold Damage", statOrder = { 1277 }, level = 2, group = "TwoHandColdDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePrefixOnTwoHandWeapon2"] = { type = "Prefix", affix = "Biting", "(30-44)% increased Cold Damage", statOrder = { 1277 }, level = 11, group = "TwoHandColdDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePrefixOnTwoHandWeapon3"] = { type = "Prefix", affix = "Alpine", "(45-59)% increased Cold Damage", statOrder = { 1277 }, level = 23, group = "TwoHandColdDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePrefixOnTwoHandWeapon4_"] = { type = "Prefix", affix = "Snowy", "(60-84)% increased Cold Damage", statOrder = { 1277 }, level = 35, group = "TwoHandColdDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePrefixOnTwoHandWeapon5_"] = { type = "Prefix", affix = "Hailing", "(85-104)% increased Cold Damage", statOrder = { 1277 }, level = 46, group = "TwoHandColdDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePrefixOnTwoHandWeapon6"] = { type = "Prefix", affix = "Crystalline", "(105-124)% increased Cold Damage", statOrder = { 1277 }, level = 58, group = "TwoHandColdDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 50, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePrefixOnTwoHandWeapon7"] = { type = "Prefix", affix = "Cryomancer's", "(125-149)% increased Cold Damage", statOrder = { 1277 }, level = 79, group = "TwoHandColdDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 25, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePrefixOnTwoHandWeapon8"] = { type = "Prefix", affix = "Tul's", "(150-164)% increased Cold Damage", statOrder = { 1277 }, level = 84, group = "TwoHandColdDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 13, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePrefixOnWeaponEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "(75-79)% increased Cold Damage", "Adds (12-16) to (25-29) Cold Damage to Spells", statOrder = { 1277, 1316 }, level = 1, group = "ColdDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["ColdDamagePrefixOnTwoHandWeaponEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "(111-115)% increased Cold Damage", "Adds (19-25) to (37-44) Cold Damage to Spells", statOrder = { 1277, 1316 }, level = 1, group = "TwoHandColdDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["LightningDamagePrefixOnWeapon1_"] = { type = "Prefix", affix = "Charged", "(10-19)% increased Lightning Damage", statOrder = { 1288 }, level = 2, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePrefixOnWeapon2"] = { type = "Prefix", affix = "Hissing", "(20-29)% increased Lightning Damage", statOrder = { 1288 }, level = 11, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePrefixOnWeapon3"] = { type = "Prefix", affix = "Bolting", "(30-39)% increased Lightning Damage", statOrder = { 1288 }, level = 23, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePrefixOnWeapon4"] = { type = "Prefix", affix = "Coursing", "(40-54)% increased Lightning Damage", statOrder = { 1288 }, level = 35, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 200, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePrefixOnWeapon5"] = { type = "Prefix", affix = "Striking", "(55-69)% increased Lightning Damage", statOrder = { 1288 }, level = 46, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 100, 100, 100, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePrefixOnWeapon6"] = { type = "Prefix", affix = "Smiting", "(70-84)% increased Lightning Damage", statOrder = { 1288 }, level = 58, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 50, 50, 50, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePrefixOnWeapon7"] = { type = "Prefix", affix = "Ionising", "(85-99)% increased Lightning Damage", statOrder = { 1288 }, level = 64, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 25, 25, 25, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePrefixOnWeapon8"] = { type = "Prefix", affix = "Esh's", "(100-109)% increased Lightning Damage", statOrder = { 1288 }, level = 84, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 12, 12, 12, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePrefixOnTwoHandWeapon1"] = { type = "Prefix", affix = "Charged", "(15-29)% increased Lightning Damage", statOrder = { 1288 }, level = 2, group = "TwoHandLightningDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePrefixOnTwoHandWeapon2"] = { type = "Prefix", affix = "Hissing", "(30-44)% increased Lightning Damage", statOrder = { 1288 }, level = 11, group = "TwoHandLightningDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePrefixOnTwoHandWeapon3"] = { type = "Prefix", affix = "Bolting", "(45-59)% increased Lightning Damage", statOrder = { 1288 }, level = 23, group = "TwoHandLightningDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePrefixOnTwoHandWeapon4"] = { type = "Prefix", affix = "Coursing", "(60-84)% increased Lightning Damage", statOrder = { 1288 }, level = 35, group = "TwoHandLightningDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePrefixOnTwoHandWeapon5"] = { type = "Prefix", affix = "Striking", "(85-104)% increased Lightning Damage", statOrder = { 1288 }, level = 46, group = "TwoHandLightningDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePrefixOnTwoHandWeapon6"] = { type = "Prefix", affix = "Smiting", "(105-124)% increased Lightning Damage", statOrder = { 1288 }, level = 58, group = "TwoHandLightningDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 50, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePrefixOnTwoHandWeapon7"] = { type = "Prefix", affix = "Ionising", "(125-149)% increased Lightning Damage", statOrder = { 1288 }, level = 79, group = "TwoHandLightningDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 25, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePrefixOnTwoHandWeapon8"] = { type = "Prefix", affix = "Esh's", "(150-164)% increased Lightning Damage", statOrder = { 1288 }, level = 84, group = "TwoHandLightningDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 13, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePrefixOnWeaponEnhancedMod_"] = { type = "Prefix", affix = "Topotante's", "(75-79)% increased Lightning Damage", "Adds (1-4) to (53-56) Lightning Damage to Spells", statOrder = { 1288, 1317 }, level = 1, group = "LightningDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["LightningDamagePrefixOnTwoHandWeaponEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "(111-115)% increased Lightning Damage", "Adds (2-6) to (79-84) Lightning Damage to Spells", statOrder = { 1288, 1317 }, level = 1, group = "TwoHandLightningDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["WeaponElementalDamage1"] = { type = "Prefix", affix = "Catalysing", "(5-10)% increased Elemental Damage with Attack Skills", statOrder = { 6215 }, level = 4, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["WeaponElementalDamage2"] = { type = "Prefix", affix = "Infusing", "(11-20)% increased Elemental Damage with Attack Skills", statOrder = { 6215 }, level = 15, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["WeaponElementalDamage3"] = { type = "Prefix", affix = "Empowering", "(21-30)% increased Elemental Damage with Attack Skills", statOrder = { 6215 }, level = 30, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["WeaponElementalDamage4"] = { type = "Prefix", affix = "Unleashed", "(31-36)% increased Elemental Damage with Attack Skills", statOrder = { 6215 }, level = 60, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["WeaponElementalDamage5"] = { type = "Prefix", affix = "Overpowering", "(37-42)% increased Elemental Damage with Attack Skills", statOrder = { 6215 }, level = 81, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["WeaponElementalDamage6_"] = { type = "Prefix", affix = "Devastating", "(43-50)% increased Elemental Damage with Attack Skills", statOrder = { 6215 }, level = 86, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "amulet", "belt", "default", }, weightVal = { 300, 300, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["WeaponElementalDamageEssence1"] = { type = "Prefix", affix = "Essences", "(11-15)% increased Elemental Damage with Attack Skills", statOrder = { 6215 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["WeaponElementalDamageEssence2"] = { type = "Prefix", affix = "Essences", "(16-20)% increased Elemental Damage with Attack Skills", statOrder = { 6215 }, level = 10, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["WeaponElementalDamageEssence3"] = { type = "Prefix", affix = "Essences", "(21-25)% increased Elemental Damage with Attack Skills", statOrder = { 6215 }, level = 26, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["WeaponElementalDamageEssence4"] = { type = "Prefix", affix = "Essences", "(26-29)% increased Elemental Damage with Attack Skills", statOrder = { 6215 }, level = 42, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["WeaponElementalDamageEssence5"] = { type = "Prefix", affix = "Essences", "(30-34)% increased Elemental Damage with Attack Skills", statOrder = { 6215 }, level = 58, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["WeaponElementalDamageEssence6_"] = { type = "Prefix", affix = "Essences", "(35-38)% increased Elemental Damage with Attack Skills", statOrder = { 6215 }, level = 74, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["WeaponElementalDamageEssence7"] = { type = "Prefix", affix = "Essences", "(39-42)% increased Elemental Damage with Attack Skills", statOrder = { 6215 }, level = 82, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["WeaponElementalDamageOnWeapons1_"] = { type = "Prefix", affix = "Catalysing", "(11-20)% increased Elemental Damage with Attack Skills", statOrder = { 6215 }, level = 4, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["WeaponElementalDamageOnWeapons2"] = { type = "Prefix", affix = "Infusing", "(21-30)% increased Elemental Damage with Attack Skills", statOrder = { 6215 }, level = 15, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["WeaponElementalDamageOnWeapons3_"] = { type = "Prefix", affix = "Empowering", "(31-36)% increased Elemental Damage with Attack Skills", statOrder = { 6215 }, level = 30, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["WeaponElementalDamageOnWeapons4"] = { type = "Prefix", affix = "Unleashed", "(37-42)% increased Elemental Damage with Attack Skills", statOrder = { 6215 }, level = 60, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["WeaponElementalDamageOnWeapons5_"] = { type = "Prefix", affix = "Overpowering", "(43-50)% increased Elemental Damage with Attack Skills", statOrder = { 6215 }, level = 81, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["WeaponElementalDamageOnWeapons6"] = { type = "Prefix", affix = "Devastating", "(51-59)% increased Elemental Damage with Attack Skills", statOrder = { 6215 }, level = 86, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["WeaponElementalDamageOnTwohandWeapon1"] = { type = "Prefix", affix = "Catalysing", "(19-34)% increased Elemental Damage with Attack Skills", statOrder = { 6215 }, level = 4, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["WeaponElementalDamageOnTwohandWeapon2____"] = { type = "Prefix", affix = "Infusing", "(36-51)% increased Elemental Damage with Attack Skills", statOrder = { 6215 }, level = 15, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["WeaponElementalDamageOnTwohandWeapon3"] = { type = "Prefix", affix = "Empowering", "(53-61)% increased Elemental Damage with Attack Skills", statOrder = { 6215 }, level = 30, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["WeaponElementalDamageOnTwohandWeapon4"] = { type = "Prefix", affix = "Unleashed", "(63-71)% increased Elemental Damage with Attack Skills", statOrder = { 6215 }, level = 60, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["WeaponElementalDamageOnTwohandWeapon5"] = { type = "Prefix", affix = "Overpowering", "(73-85)% increased Elemental Damage with Attack Skills", statOrder = { 6215 }, level = 81, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["WeaponElementalDamageOnTwohandWeapon6"] = { type = "Prefix", affix = "Devastating", "(87-100)% increased Elemental Damage with Attack Skills", statOrder = { 6215 }, level = 86, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["ManaLeech1"] = { type = "Prefix", affix = "Thirsty", "(1-2)% of Physical Attack Damage Leeched as Mana", statOrder = { 1608 }, level = 9, group = "ManaLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, }, + ["ManaLeech2"] = { type = "Prefix", affix = "Parched", "(3-4)% of Physical Attack Damage Leeched as Mana", statOrder = { 1608 }, level = 74, group = "ManaLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, }, + ["ManaLeechPermyriad1"] = { type = "Prefix", affix = "Thirsty", "(0.2-0.4)% of Physical Attack Damage Leeched as Mana", statOrder = { 1610 }, level = 50, group = "ManaLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, }, + ["ManaLeechPermyriad2"] = { type = "Prefix", affix = "Parched", "(0.6-0.8)% of Physical Attack Damage Leeched as Mana", statOrder = { 1610 }, level = 70, group = "ManaLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, }, + ["ManaLeechPermyriadSuffix1"] = { type = "Suffix", affix = "of Thirst", "(0.2-0.4)% of Physical Attack Damage Leeched as Mana", statOrder = { 1610 }, level = 50, group = "ManaLeechPermyriad", weightKey = { "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "mana", "physical", "attack" }, }, + ["ManaLeechPermyriadSuffix2"] = { type = "Suffix", affix = "of Parching", "(0.6-0.8)% of Physical Attack Damage Leeched as Mana", statOrder = { 1610 }, level = 70, group = "ManaLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "mana", "physical", "attack" }, }, + ["ManaLeechPermyriadEssence7"] = { type = "Prefix", affix = "Essences", "(0.9-1)% of Physical Attack Damage Leeched as Mana", statOrder = { 1610 }, level = 82, group = "ManaLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, }, + ["ManaLeechPermyriadSuffixEssence7"] = { type = "Suffix", affix = "of the Essence", "(0.9-1)% of Physical Attack Damage Leeched as Mana", statOrder = { 1610 }, level = 82, group = "ManaLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, }, + ["LocalManaLeechPermyriadEssence5"] = { type = "Prefix", affix = "Essences", "(0.2-0.4)% of Physical Attack Damage Leeched as Mana", statOrder = { 1612 }, level = 58, group = "ManaLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, }, + ["LocalManaLeechPermyriadEssence6"] = { type = "Prefix", affix = "Essences", "(0.6-0.8)% of Physical Attack Damage Leeched as Mana", statOrder = { 1612 }, level = 74, group = "ManaLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, }, + ["LocalManaLeechPermyriadEssence7"] = { type = "Prefix", affix = "Essences", "(0.9-1)% of Physical Attack Damage Leeched as Mana", statOrder = { 1612 }, level = 82, group = "ManaLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, }, + ["ItemFoundQuantityIncrease1"] = { type = "Suffix", affix = "of Collecting", "(4-8)% increased Quantity of Items found", statOrder = { 1503 }, level = 2, group = "ItemFoundQuantityIncrease", weightKey = { "default", }, weightVal = { 0 }, modTags = { "drop" }, }, + ["ItemFoundQuantityIncrease2"] = { type = "Suffix", affix = "of Gathering", "(9-12)% increased Quantity of Items found", statOrder = { 1503 }, level = 32, group = "ItemFoundQuantityIncrease", weightKey = { "default", }, weightVal = { 0 }, modTags = { "drop" }, }, + ["ItemFoundQuantityIncrease3"] = { type = "Suffix", affix = "of Hoarding", "(13-16)% increased Quantity of Items found", statOrder = { 1503 }, level = 55, group = "ItemFoundQuantityIncrease", weightKey = { "default", }, weightVal = { 0 }, modTags = { "drop" }, }, + ["ItemFoundQuantityIncrease4"] = { type = "Suffix", affix = "of Amassment", "(17-20)% increased Quantity of Items found", statOrder = { 1503 }, level = 77, group = "ItemFoundQuantityIncrease", weightKey = { "default", }, weightVal = { 0 }, modTags = { "drop" }, }, + ["ItemFoundRarityIncrease1"] = { type = "Suffix", affix = "of Plunder", "(6-10)% increased Rarity of Items found", statOrder = { 1507 }, level = 3, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "gloves", "boots", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "drop" }, }, + ["ItemFoundRarityIncrease2"] = { type = "Suffix", affix = "of Raiding", "(11-14)% increased Rarity of Items found", statOrder = { 1507 }, level = 30, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "gloves", "boots", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "drop" }, }, + ["ItemFoundRarityIncrease3"] = { type = "Suffix", affix = "of Archaeology", "(15-20)% increased Rarity of Items found", statOrder = { 1507 }, level = 53, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "drop" }, }, + ["ItemFoundRarityIncrease4"] = { type = "Suffix", affix = "of Excavation", "(21-26)% increased Rarity of Items found", statOrder = { 1507 }, level = 75, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "drop" }, }, + ["ItemFoundRarityIncreasePrefix1"] = { type = "Prefix", affix = "Magpie's", "(8-12)% increased Rarity of Items found", statOrder = { 1507 }, level = 20, group = "ItemFoundRarityIncreasePrefix", weightKey = { "ring", "amulet", "gloves", "boots", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "drop" }, }, + ["ItemFoundRarityIncreasePrefix2"] = { type = "Prefix", affix = "Pirate's", "(13-18)% increased Rarity of Items found", statOrder = { 1507 }, level = 39, group = "ItemFoundRarityIncreasePrefix", weightKey = { "ring", "amulet", "gloves", "boots", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "drop" }, }, + ["ItemFoundRarityIncreasePrefix3"] = { type = "Prefix", affix = "Dragon's", "(19-24)% increased Rarity of Items found", statOrder = { 1507 }, level = 62, group = "ItemFoundRarityIncreasePrefix", weightKey = { "ring", "amulet", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "drop" }, }, + ["ItemFoundRarityIncreasePrefix4_"] = { type = "Prefix", affix = "Perandus'", "(25-28)% increased Rarity of Items found", statOrder = { 1507 }, level = 84, group = "ItemFoundRarityIncreasePrefix", weightKey = { "ring", "amulet", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "drop" }, }, + ["IncreasedCastSpeed1"] = { type = "Suffix", affix = "of Talent", "(5-8)% increased Cast Speed", statOrder = { 1357 }, level = 2, group = "IncreasedCastSpeed", weightKey = { "wand", "staff", "attack_dagger", "dagger", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 0, 0, 1000, 1000, 800, 800, 0 }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeed2"] = { type = "Suffix", affix = "of Nimbleness", "(9-12)% increased Cast Speed", statOrder = { 1357 }, level = 15, group = "IncreasedCastSpeed", weightKey = { "wand", "staff", "attack_dagger", "dagger", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 0, 0, 1000, 1000, 800, 800, 0 }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeed3"] = { type = "Suffix", affix = "of Expertise", "(13-16)% increased Cast Speed", statOrder = { 1357 }, level = 30, group = "IncreasedCastSpeed", weightKey = { "wand", "staff", "attack_dagger", "dagger", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 0, 0, 1000, 1000, 800, 800, 0 }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeed4"] = { type = "Suffix", affix = "of Legerdemain", "(17-20)% increased Cast Speed", statOrder = { 1357 }, level = 40, group = "IncreasedCastSpeed", weightKey = { "wand", "staff", "attack_dagger", "dagger", "sceptre", "amulet", "default", }, weightVal = { 1000, 0, 0, 1000, 1000, 800, 0 }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeed5"] = { type = "Suffix", affix = "of Prestidigitation", "(21-24)% increased Cast Speed", statOrder = { 1357 }, level = 55, group = "IncreasedCastSpeed", weightKey = { "wand", "staff", "attack_dagger", "dagger", "sceptre", "default", }, weightVal = { 1000, 0, 0, 1000, 1000, 0 }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeed6"] = { type = "Suffix", affix = "of Sortilege", "(25-28)% increased Cast Speed", statOrder = { 1357 }, level = 72, group = "IncreasedCastSpeed", weightKey = { "wand", "staff", "attack_dagger", "dagger", "sceptre", "default", }, weightVal = { 500, 0, 0, 500, 500, 0 }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeed7"] = { type = "Suffix", affix = "of Finesse", "(29-32)% increased Cast Speed", statOrder = { 1357 }, level = 83, group = "IncreasedCastSpeed", weightKey = { "wand", "staff", "attack_dagger", "dagger", "sceptre", "default", }, weightVal = { 250, 0, 0, 250, 250, 0 }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedEssence7"] = { type = "Suffix", affix = "of the Essence", "(26-28)% increased Cast Speed", statOrder = { 1357 }, level = 82, group = "IncreasedCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedTwoHand1_"] = { type = "Suffix", affix = "of Talent", "(8-13)% increased Cast Speed", statOrder = { 1357 }, level = 2, group = "IncreasedCastSpeed", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedTwoHand2"] = { type = "Suffix", affix = "of Nimbleness", "(14-19)% increased Cast Speed", statOrder = { 1357 }, level = 15, group = "IncreasedCastSpeed", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedTwoHand3"] = { type = "Suffix", affix = "of Expertise", "(20-25)% increased Cast Speed", statOrder = { 1357 }, level = 30, group = "IncreasedCastSpeed", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedTwoHand4"] = { type = "Suffix", affix = "of Legerdemain", "(26-31)% increased Cast Speed", statOrder = { 1357 }, level = 40, group = "IncreasedCastSpeed", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedTwoHand5"] = { type = "Suffix", affix = "of Prestidigitation", "(32-37)% increased Cast Speed", statOrder = { 1357 }, level = 55, group = "IncreasedCastSpeed", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedTwoHand6"] = { type = "Suffix", affix = "of Sortilege", "(38-43)% increased Cast Speed", statOrder = { 1357 }, level = 72, group = "IncreasedCastSpeed", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedTwoHand7"] = { type = "Suffix", affix = "of Finesse", "(44-49)% increased Cast Speed", statOrder = { 1357 }, level = 83, group = "IncreasedCastSpeed", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0 }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedTwoHandEssence7"] = { type = "Suffix", affix = "of the Essence", "(39-42)% increased Cast Speed", statOrder = { 1357 }, level = 82, group = "IncreasedCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedEnhancedMod_"] = { type = "Suffix", affix = "of Tacati", "Adds (17-24) to (36-40) Chaos Damage to Spells", "(29-32)% increased Cast Speed", statOrder = { 1318, 1357 }, level = 1, group = "IncreasedCastSpeedAddedChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster", "speed" }, }, + ["IncreasedCastSpeedTwoHandEnhancedMod"] = { type = "Suffix", affix = "of Tacati", "Adds (24-32) to (49-57) Chaos Damage to Spells", "(44-49)% increased Cast Speed", statOrder = { 1318, 1357 }, level = 1, group = "IncreasedCastSpeedAddedChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster", "speed" }, }, + ["IncreasedCastSpeedRing3"] = { type = "Suffix", affix = "of the Essence", "(13-14)% increased Cast Speed", statOrder = { 1357 }, level = 30, group = "IncreasedCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedRing4"] = { type = "Suffix", affix = "of the Essence", "(15-16)% increased Cast Speed", statOrder = { 1357 }, level = 40, group = "IncreasedCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedFishing"] = { type = "Suffix", affix = "of Casting", "(24-28)% increased Cast Speed", statOrder = { 1357 }, level = 10, group = "IncreasedCastSpeedFishing", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { "red_herring", "caster", "speed" }, }, + ["LocalIncreasedAttackSpeed1"] = { type = "Suffix", affix = "of Skill", "(5-7)% increased Attack Speed", statOrder = { 1324 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeed2"] = { type = "Suffix", affix = "of Ease", "(8-10)% increased Attack Speed", statOrder = { 1324 }, level = 11, group = "LocalIncreasedAttackSpeed", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeed3"] = { type = "Suffix", affix = "of Mastery", "(11-13)% increased Attack Speed", statOrder = { 1324 }, level = 22, group = "LocalIncreasedAttackSpeed", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeed4"] = { type = "Suffix", affix = "of Renown", "(14-16)% increased Attack Speed", statOrder = { 1324 }, level = 30, group = "LocalIncreasedAttackSpeed", weightKey = { "ranged", "weapon", "default", }, weightVal = { 500, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeed5"] = { type = "Suffix", affix = "of Acclaim", "(17-19)% increased Attack Speed", statOrder = { 1324 }, level = 37, group = "LocalIncreasedAttackSpeed", weightKey = { "ranged", "weapon", "default", }, weightVal = { 500, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeed6"] = { type = "Suffix", affix = "of Fame", "(20-22)% increased Attack Speed", statOrder = { 1324 }, level = 45, group = "LocalIncreasedAttackSpeed", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeed7"] = { type = "Suffix", affix = "of Infamy", "(23-25)% increased Attack Speed", statOrder = { 1324 }, level = 60, group = "LocalIncreasedAttackSpeed", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeed8"] = { type = "Suffix", affix = "of Celebration", "(26-27)% increased Attack Speed", statOrder = { 1324 }, level = 77, group = "LocalIncreasedAttackSpeed", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedEssence7"] = { type = "Suffix", affix = "of the Essence", "(28-30)% increased Attack Speed", statOrder = { 1324 }, level = 82, group = "LocalIncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedEssenceRanged4_"] = { type = "Suffix", affix = "of the Essence", "(11-12)% increased Attack Speed", statOrder = { 1324 }, level = 42, group = "LocalIncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedEssenceRanged5"] = { type = "Suffix", affix = "of the Essence", "(13-14)% increased Attack Speed", statOrder = { 1324 }, level = 58, group = "LocalIncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedEssenceRanged6"] = { type = "Suffix", affix = "of the Essence", "(15-16)% increased Attack Speed", statOrder = { 1324 }, level = 74, group = "LocalIncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedEssenceRanged7"] = { type = "Suffix", affix = "of the Essence", "(17-18)% increased Attack Speed", statOrder = { 1324 }, level = 82, group = "LocalIncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedEnhancedMod"] = { type = "Suffix", affix = "of Tacati", "Adds (23-36) to (49-61) Chaos Damage", "(26-27)% increased Attack Speed", statOrder = { 1301, 1324 }, level = 1, group = "LocalIncreasedAttackSpeedAddedChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedRangedEnhancedMod_"] = { type = "Suffix", affix = "of Tacati", "Adds (23-36) to (49-61) Chaos Damage", "(14-16)% increased Attack Speed", statOrder = { 1301, 1324 }, level = 1, group = "LocalIncreasedAttackSpeedAddedChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack", "speed" }, }, + ["IncreasedAttackSpeed1"] = { type = "Suffix", affix = "of Skill", "(5-7)% increased Attack Speed", statOrder = { 1321 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "ring", "gloves", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeed2"] = { type = "Suffix", affix = "of Ease", "(8-10)% increased Attack Speed", statOrder = { 1321 }, level = 11, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeed3"] = { type = "Suffix", affix = "of Mastery", "(11-13)% increased Attack Speed", statOrder = { 1321 }, level = 22, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeed4"] = { type = "Suffix", affix = "of Grandmastery", "(14-16)% increased Attack Speed", statOrder = { 1321 }, level = 76, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedEssenceGloves7"] = { type = "Suffix", affix = "of the Essence", "(17-18)% increased Attack Speed", statOrder = { 1321 }, level = 82, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedEssenceJewellery4"] = { type = "Suffix", affix = "of the Essence", "(4-5)% increased Attack Speed", statOrder = { 1321 }, level = 42, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedEssenceJewellery5"] = { type = "Suffix", affix = "of the Essence", "(5-6)% increased Attack Speed", statOrder = { 1321 }, level = 58, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedEssenceJewellery6"] = { type = "Suffix", affix = "of the Essence", "(6-7)% increased Attack Speed", statOrder = { 1321 }, level = 74, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedEssenceJewellery7"] = { type = "Suffix", affix = "of the Essence", "(7-8)% increased Attack Speed", statOrder = { 1321 }, level = 82, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedEssenceQuiver4"] = { type = "Suffix", affix = "of the Essence", "(6-7)% increased Attack Speed", statOrder = { 1321 }, level = 42, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedEssenceQuiver5_"] = { type = "Suffix", affix = "of the Essence", "(8-9)% increased Attack Speed", statOrder = { 1321 }, level = 58, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedEssenceQuiver6"] = { type = "Suffix", affix = "of the Essence", "(10-12)% increased Attack Speed", statOrder = { 1321 }, level = 74, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedEssenceQuiver7___"] = { type = "Suffix", affix = "of the Essence", "(13-15)% increased Attack Speed", statOrder = { 1321 }, level = 82, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, }, + ["IncreasedAccuracy1"] = { type = "Suffix", affix = "of Calm", "+(5-15) to Accuracy Rating", statOrder = { 1344 }, level = 1, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "attack" }, }, + ["IncreasedAccuracy2"] = { type = "Suffix", affix = "of Steadiness", "+(16-60) to Accuracy Rating", statOrder = { 1344 }, level = 12, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "attack" }, }, + ["IncreasedAccuracy3"] = { type = "Suffix", affix = "of Accuracy", "+(61-100) to Accuracy Rating", statOrder = { 1344 }, level = 20, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "attack" }, }, + ["IncreasedAccuracy4"] = { type = "Suffix", affix = "of Precision", "+(101-130) to Accuracy Rating", statOrder = { 1344 }, level = 26, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "attack" }, }, + ["IncreasedAccuracy5"] = { type = "Suffix", affix = "of the Sniper", "+(131-165) to Accuracy Rating", statOrder = { 1344 }, level = 33, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "attack" }, }, + ["IncreasedAccuracy6"] = { type = "Suffix", affix = "of the Marksman", "+(166-200) to Accuracy Rating", statOrder = { 1344 }, level = 41, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "attack" }, }, + ["IncreasedAccuracy7"] = { type = "Suffix", affix = "of the Deadeye", "+(201-250) to Accuracy Rating", statOrder = { 1344 }, level = 50, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "attack" }, }, + ["IncreasedAccuracy8"] = { type = "Suffix", affix = "of the Ranger", "+(251-320) to Accuracy Rating", statOrder = { 1344 }, level = 63, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "attack" }, }, + ["IncreasedAccuracy9"] = { type = "Suffix", affix = "of the Assassin", "+(321-400) to Accuracy Rating", statOrder = { 1344 }, level = 76, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "attack" }, }, + ["IncreasedAccuracy10"] = { type = "Suffix", affix = "of Lioneye", "+(401-500) to Accuracy Rating", statOrder = { 1344 }, level = 85, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, + ["IncreasedAccuracyEssence7"] = { type = "Suffix", affix = "of the Essence", "+(401-440) to Accuracy Rating", statOrder = { 1344 }, level = 82, group = "IncreasedAccuracy", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, }, + ["IncreasedAccuracyNew1_"] = { type = "Suffix", affix = "of Steadiness", "+(50-100) to Accuracy Rating", statOrder = { 1344 }, level = 1, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 600, 600, 600, 600, 600, 600, 600, 600, 0 }, modTags = { "attack" }, }, + ["IncreasedAccuracyNew2"] = { type = "Suffix", affix = "of Precision", "+(100-165) to Accuracy Rating", statOrder = { 1344 }, level = 20, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "attack" }, }, + ["IncreasedAccuracyNew3"] = { type = "Suffix", affix = "of the Sniper", "+(166-250) to Accuracy Rating", statOrder = { 1344 }, level = 40, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "attack" }, }, + ["IncreasedAccuracyNew4"] = { type = "Suffix", affix = "of the Marksman", "+(251-350) to Accuracy Rating", statOrder = { 1344 }, level = 60, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "attack" }, }, + ["IncreasedAccuracyNew5_"] = { type = "Suffix", affix = "of the Ranger", "+(351-480) to Accuracy Rating", statOrder = { 1344 }, level = 75, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "attack" }, }, + ["IncreasedAccuracyNew6"] = { type = "Suffix", affix = "of Lioneye", "+(481-600) to Accuracy Rating", statOrder = { 1344 }, level = 85, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "attack" }, }, + ["LifeRegeneration1"] = { type = "Suffix", affix = "of the Newt", "Regenerate (1-2) Life per second", statOrder = { 1485 }, level = 1, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "default", }, weightVal = { 0, 0, 0, 1000 }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["LifeRegeneration2"] = { type = "Suffix", affix = "of the Lizard", "Regenerate (2.1-8) Life per second", statOrder = { 1485 }, level = 7, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "default", }, weightVal = { 0, 0, 0, 1000 }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["LifeRegeneration3"] = { type = "Suffix", affix = "of the Flatworm", "Regenerate (8.1-16) Life per second", statOrder = { 1485 }, level = 19, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "default", }, weightVal = { 0, 0, 0, 1000 }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["LifeRegeneration4"] = { type = "Suffix", affix = "of the Starfish", "Regenerate (16.1-24) Life per second", statOrder = { 1485 }, level = 31, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "default", }, weightVal = { 0, 0, 0, 1000 }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["LifeRegeneration5"] = { type = "Suffix", affix = "of the Hydra", "Regenerate (24.1-32) Life per second", statOrder = { 1485 }, level = 44, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "default", }, weightVal = { 0, 0, 0, 1000 }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["LifeRegeneration6"] = { type = "Suffix", affix = "of the Troll", "Regenerate (32.1-48) Life per second", statOrder = { 1485 }, level = 55, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "default", }, weightVal = { 0, 0, 0, 1000 }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["LifeRegeneration7"] = { type = "Suffix", affix = "of Ryslatha", "Regenerate (48.1-64) Life per second", statOrder = { 1485 }, level = 68, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "default", }, weightVal = { 0, 0, 0, 1000 }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["LifeRegeneration8_"] = { type = "Suffix", affix = "of the Phoenix", "Regenerate (64.1-96) Life per second", statOrder = { 1485 }, level = 74, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "ring", "default", }, weightVal = { 0, 0, 0, 0, 1000 }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["LifeRegeneration9"] = { type = "Suffix", affix = "of Recuperation", "Regenerate (96.1-128) Life per second", statOrder = { 1485 }, level = 78, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "ring", "amulet", "boots", "gloves", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000 }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["LifeRegeneration10__"] = { type = "Suffix", affix = "of Life-giving", "Regenerate (128.1-152) Life per second", statOrder = { 1485 }, level = 83, group = "LifeRegeneration", weightKey = { "shield", "body_armour", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["LifeRegeneration11____"] = { type = "Suffix", affix = "of Convalescence", "Regenerate (152.1-176) Life per second", statOrder = { 1485 }, level = 86, group = "LifeRegeneration", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["LifeRegenerationEssence2"] = { type = "Suffix", affix = "of the Essence", "Regenerate (2-5) Life per second", statOrder = { 1485 }, level = 10, group = "LifeRegeneration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["LifeRegenerationEssence7"] = { type = "Suffix", affix = "of the Essence", "Regenerate (30-40) Life per second", statOrder = { 1485 }, level = 82, group = "LifeRegeneration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["LifeRegenerationEnhancedMod"] = { type = "Suffix", affix = "of Guatelitzi", "Regenerate (16-20) Life per second", "Regenerate 0.4% of Life per second", statOrder = { 1485, 1853 }, level = 1, group = "LifeRegenerationAndPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, + ["LifeRegenerationPercent1"] = { type = "Suffix", affix = "of Youthfulness", "Regenerate (0.4-0.5)% of Life per second", statOrder = { 1853 }, level = 18, group = "LifeRegenerationRatePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, + ["LifeRegenerationPercent2__"] = { type = "Suffix", affix = "of Vitality", "Regenerate (0.6-0.7)% of Life per second", statOrder = { 1853 }, level = 36, group = "LifeRegenerationRatePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, + ["LifeRegenerationPercent3_"] = { type = "Suffix", affix = "of Longevity", "Regenerate (0.8-0.9)% of Life per second", statOrder = { 1853 }, level = 60, group = "LifeRegenerationRatePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, + ["LifeRegenerationPercent4"] = { type = "Suffix", affix = "of Immortality", "Regenerate (1-1.1)% of Life per second", statOrder = { 1853 }, level = 81, group = "LifeRegenerationRatePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, + ["ManaRegeneration1"] = { type = "Suffix", affix = "of Excitement", "(10-19)% increased Mana Regeneration Rate", statOrder = { 1495 }, level = 2, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["ManaRegeneration2"] = { type = "Suffix", affix = "of Joy", "(20-29)% increased Mana Regeneration Rate", statOrder = { 1495 }, level = 18, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["ManaRegeneration3"] = { type = "Suffix", affix = "of Elation", "(30-39)% increased Mana Regeneration Rate", statOrder = { 1495 }, level = 29, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["ManaRegeneration4"] = { type = "Suffix", affix = "of Bliss", "(40-49)% increased Mana Regeneration Rate", statOrder = { 1495 }, level = 42, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["ManaRegeneration5"] = { type = "Suffix", affix = "of Euphoria", "(50-59)% increased Mana Regeneration Rate", statOrder = { 1495 }, level = 55, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["ManaRegeneration6"] = { type = "Suffix", affix = "of Nirvana", "(60-69)% increased Mana Regeneration Rate", statOrder = { 1495 }, level = 79, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["ManaRegenerationTwoHand1"] = { type = "Suffix", affix = "of Excitement", "(20-32)% increased Mana Regeneration Rate", statOrder = { 1495 }, level = 2, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, }, + ["ManaRegenerationTwoHand2"] = { type = "Suffix", affix = "of Joy", "(33-45)% increased Mana Regeneration Rate", statOrder = { 1495 }, level = 18, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, }, + ["ManaRegenerationTwoHand3"] = { type = "Suffix", affix = "of Elation", "(46-58)% increased Mana Regeneration Rate", statOrder = { 1495 }, level = 29, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, }, + ["ManaRegenerationTwoHand4"] = { type = "Suffix", affix = "of Bliss", "(59-72)% increased Mana Regeneration Rate", statOrder = { 1495 }, level = 42, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, }, + ["ManaRegenerationTwoHand5"] = { type = "Suffix", affix = "of Euphoria", "(73-85)% increased Mana Regeneration Rate", statOrder = { 1495 }, level = 55, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, }, + ["ManaRegenerationTwoHand6"] = { type = "Suffix", affix = "of Nirvana", "(86-105)% increased Mana Regeneration Rate", statOrder = { 1495 }, level = 79, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, }, + ["ManaRegenerationEssence7_"] = { type = "Suffix", affix = "of the Essence", "(70-76)% increased Mana Regeneration Rate", statOrder = { 1495 }, level = 82, group = "ManaRegeneration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, + ["StunThresholdReduction1"] = { type = "Suffix", affix = "of the Pugilist", "(5-7)% reduced Enemy Stun Threshold", statOrder = { 1428 }, level = 5, group = "StunThresholdReduction", weightKey = { "mace", "sceptre", "staff", "sword", "axe", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["StunThresholdReduction2"] = { type = "Suffix", affix = "of the Brawler", "(8-9)% reduced Enemy Stun Threshold", statOrder = { 1428 }, level = 20, group = "StunThresholdReduction", weightKey = { "mace", "sceptre", "staff", "sword", "axe", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["StunThresholdReduction3"] = { type = "Suffix", affix = "of the Boxer", "(10-11)% reduced Enemy Stun Threshold", statOrder = { 1428 }, level = 30, group = "StunThresholdReduction", weightKey = { "mace", "sceptre", "staff", "sword", "axe", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["StunThresholdReduction4"] = { type = "Suffix", affix = "of the Combatant", "(12-13)% reduced Enemy Stun Threshold", statOrder = { 1428 }, level = 44, group = "StunThresholdReduction", weightKey = { "mace", "sceptre", "staff", "sword", "axe", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["StunThresholdReduction5"] = { type = "Suffix", affix = "of the Gladiator", "(14-15)% reduced Enemy Stun Threshold", statOrder = { 1428 }, level = 58, group = "StunThresholdReduction", weightKey = { "mace", "sceptre", "staff", "sword", "axe", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["StunThresholdReductionEssence7"] = { type = "Suffix", affix = "of the Essence", "(16-17)% reduced Enemy Stun Threshold", statOrder = { 1428 }, level = 82, group = "StunThresholdReduction", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["CriticalStrikeChance1"] = { type = "Suffix", affix = "of Needling", "(10-14)% increased Global Critical Strike Chance", statOrder = { 1370 }, level = 5, group = "CriticalStrikeChance", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "critical" }, }, + ["CriticalStrikeChance2"] = { type = "Suffix", affix = "of Stinging", "(15-19)% increased Global Critical Strike Chance", statOrder = { 1370 }, level = 20, group = "CriticalStrikeChance", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "critical" }, }, + ["CriticalStrikeChance3"] = { type = "Suffix", affix = "of Piercing", "(20-24)% increased Global Critical Strike Chance", statOrder = { 1370 }, level = 30, group = "CriticalStrikeChance", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "critical" }, }, + ["CriticalStrikeChance4"] = { type = "Suffix", affix = "of Rupturing", "(25-29)% increased Global Critical Strike Chance", statOrder = { 1370 }, level = 44, group = "CriticalStrikeChance", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "critical" }, }, + ["CriticalStrikeChance5"] = { type = "Suffix", affix = "of Penetrating", "(30-34)% increased Global Critical Strike Chance", statOrder = { 1370 }, level = 58, group = "CriticalStrikeChance", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "critical" }, }, + ["CriticalStrikeChance6"] = { type = "Suffix", affix = "of Incision", "(35-38)% increased Global Critical Strike Chance", statOrder = { 1370 }, level = 72, group = "CriticalStrikeChance", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "critical" }, }, + ["CriticalStrikeChance7"] = { type = "Suffix", affix = "of Rending", "(39-44)% increased Global Critical Strike Chance", statOrder = { 1370 }, level = 85, group = "CriticalStrikeChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, }, + ["CriticalStrikeChanceWithBows1_"] = { type = "Suffix", affix = "of Needling", "(10-14)% increased Critical Strike Chance with Bows", statOrder = { 1376 }, level = 5, group = "CriticalStrikeChanceWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "critical" }, }, + ["CriticalStrikeChanceWithBows2_"] = { type = "Suffix", affix = "of Stinging", "(15-19)% increased Critical Strike Chance with Bows", statOrder = { 1376 }, level = 20, group = "CriticalStrikeChanceWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "critical" }, }, + ["CriticalStrikeChanceWithBows3"] = { type = "Suffix", affix = "of Piercing", "(20-24)% increased Critical Strike Chance with Bows", statOrder = { 1376 }, level = 30, group = "CriticalStrikeChanceWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "critical" }, }, + ["CriticalStrikeChanceWithBows4"] = { type = "Suffix", affix = "of Rupturing", "(25-29)% increased Critical Strike Chance with Bows", statOrder = { 1376 }, level = 44, group = "CriticalStrikeChanceWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "critical" }, }, + ["CriticalStrikeChanceWithBows5_"] = { type = "Suffix", affix = "of Penetrating", "(30-34)% increased Critical Strike Chance with Bows", statOrder = { 1376 }, level = 58, group = "CriticalStrikeChanceWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "critical" }, }, + ["CriticalStrikeChanceWithBows6"] = { type = "Suffix", affix = "of Incision", "(35-38)% increased Critical Strike Chance with Bows", statOrder = { 1376 }, level = 72, group = "CriticalStrikeChanceWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "critical" }, }, + ["CriticalStrikeChanceWithBows7"] = { type = "Suffix", affix = "of Rending", "(39-44)% increased Critical Strike Chance with Bows", statOrder = { 1376 }, level = 85, group = "CriticalStrikeChanceWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "critical" }, }, + ["CriticalStrikeChanceEssence7"] = { type = "Suffix", affix = "of the Essence", "(39-42)% increased Global Critical Strike Chance", statOrder = { 1370 }, level = 82, group = "CriticalStrikeChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, }, + ["CriticalStrikeChanceEssenceGloves4"] = { type = "Suffix", affix = "of the Essence", "(15-17)% increased Global Critical Strike Chance", statOrder = { 1370 }, level = 42, group = "CriticalStrikeChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, }, + ["CriticalStrikeChanceEssenceGloves5"] = { type = "Suffix", affix = "of the Essence", "(18-20)% increased Global Critical Strike Chance", statOrder = { 1370 }, level = 58, group = "CriticalStrikeChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, }, + ["CriticalStrikeChanceEssenceGloves6"] = { type = "Suffix", affix = "of the Essence", "(21-23)% increased Global Critical Strike Chance", statOrder = { 1370 }, level = 74, group = "CriticalStrikeChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, }, + ["CriticalStrikeChanceEssenceGloves7"] = { type = "Suffix", affix = "of the Essence", "(24-26)% increased Global Critical Strike Chance", statOrder = { 1370 }, level = 82, group = "CriticalStrikeChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, }, + ["FireResist1"] = { type = "Suffix", affix = "of the Whelpling", "+(6-11)% to Fire Resistance", statOrder = { 1536 }, level = 1, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResist2"] = { type = "Suffix", affix = "of the Salamander", "+(12-17)% to Fire Resistance", statOrder = { 1536 }, level = 12, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResist3"] = { type = "Suffix", affix = "of the Drake", "+(18-23)% to Fire Resistance", statOrder = { 1536 }, level = 24, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResist4"] = { type = "Suffix", affix = "of the Kiln", "+(24-29)% to Fire Resistance", statOrder = { 1536 }, level = 36, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResist5"] = { type = "Suffix", affix = "of the Furnace", "+(30-35)% to Fire Resistance", statOrder = { 1536 }, level = 48, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResist6"] = { type = "Suffix", affix = "of the Volcano", "+(36-41)% to Fire Resistance", statOrder = { 1536 }, level = 60, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResist7"] = { type = "Suffix", affix = "of the Magma", "+(42-45)% to Fire Resistance", statOrder = { 1536 }, level = 72, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResist8"] = { type = "Suffix", affix = "of Tzteosh", "+(46-48)% to Fire Resistance", statOrder = { 1536 }, level = 84, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["ColdResist1"] = { type = "Suffix", affix = "of the Inuit", "+(6-11)% to Cold Resistance", statOrder = { 1542 }, level = 1, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResist2"] = { type = "Suffix", affix = "of the Seal", "+(12-17)% to Cold Resistance", statOrder = { 1542 }, level = 14, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResist3"] = { type = "Suffix", affix = "of the Penguin", "+(18-23)% to Cold Resistance", statOrder = { 1542 }, level = 26, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResist4"] = { type = "Suffix", affix = "of the Yeti", "+(24-29)% to Cold Resistance", statOrder = { 1542 }, level = 38, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResist5"] = { type = "Suffix", affix = "of the Walrus", "+(30-35)% to Cold Resistance", statOrder = { 1542 }, level = 50, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResist6"] = { type = "Suffix", affix = "of the Polar Bear", "+(36-41)% to Cold Resistance", statOrder = { 1542 }, level = 60, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResist7"] = { type = "Suffix", affix = "of the Ice", "+(42-45)% to Cold Resistance", statOrder = { 1542 }, level = 72, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResist8"] = { type = "Suffix", affix = "of Haast", "+(46-48)% to Cold Resistance", statOrder = { 1542 }, level = 84, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["LightningResist1"] = { type = "Suffix", affix = "of the Cloud", "+(6-11)% to Lightning Resistance", statOrder = { 1547 }, level = 1, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResist2"] = { type = "Suffix", affix = "of the Squall", "+(12-17)% to Lightning Resistance", statOrder = { 1547 }, level = 13, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResist3"] = { type = "Suffix", affix = "of the Storm", "+(18-23)% to Lightning Resistance", statOrder = { 1547 }, level = 25, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResist4"] = { type = "Suffix", affix = "of the Thunderhead", "+(24-29)% to Lightning Resistance", statOrder = { 1547 }, level = 37, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResist5"] = { type = "Suffix", affix = "of the Tempest", "+(30-35)% to Lightning Resistance", statOrder = { 1547 }, level = 49, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResist6"] = { type = "Suffix", affix = "of the Maelstrom", "+(36-41)% to Lightning Resistance", statOrder = { 1547 }, level = 60, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResist7"] = { type = "Suffix", affix = "of the Lightning", "+(42-45)% to Lightning Resistance", statOrder = { 1547 }, level = 72, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResist8"] = { type = "Suffix", affix = "of Ephij", "+(46-48)% to Lightning Resistance", statOrder = { 1547 }, level = 84, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["FireResistEnhancedModPhys_"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Fire Resistance", "(9-10)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 1536, 2356 }, level = 1, group = "FireResistancePhysTakenAsFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "fire", "resistance" }, }, + ["ColdResistEnhancedModPhys"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Cold Resistance", "(9-10)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 1542, 2357 }, level = 1, group = "ColdResistancePhysTakenAsCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "cold", "resistance" }, }, + ["LightningResistEnhancedModPhys"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Lightning Resistance", "(9-10)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 1547, 2358 }, level = 1, group = "LightningResistancePhysTakenAsLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "lightning", "resistance" }, }, + ["FireResistEnhancedModLeech"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Fire Resistance", "0.4% of Fire Damage Leeched as Life", statOrder = { 1536, 1581 }, level = 1, group = "FireResistanceLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "fire", "resistance" }, }, + ["ColdResistEnhancedModLeech"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Cold Resistance", "0.4% of Cold Damage Leeched as Life", statOrder = { 1542, 1586 }, level = 1, group = "ColdResistanceLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "cold", "resistance" }, }, + ["LightningResistEnhancedModLeech_"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Lightning Resistance", "0.4% of Lightning Damage Leeched as Life", statOrder = { 1547, 1590 }, level = 1, group = "LightningResistanceLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "lightning", "resistance" }, }, + ["FireResistEnhancedModAilments"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Fire Resistance", "(45-52) to (75-78) added Fire Damage against Burning Enemies", statOrder = { 1536, 10105 }, level = 1, group = "FireResistanceAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "resistance" }, }, + ["ColdResistEnhancedModAilments__"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Cold Resistance", "(30-50)% increased Damage with Hits against Chilled Enemies", statOrder = { 1542, 5965 }, level = 1, group = "ColdResistanceAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "resistance" }, }, + ["LightningResistEnhancedModAilments"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Lightning Resistance", "(40-60)% increased Critical Strike Chance against Shocked Enemies", statOrder = { 1547, 5810 }, level = 1, group = "LightningResistanceAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "resistance", "critical" }, }, + ["ChaosResist1"] = { type = "Suffix", affix = "of the Lost", "+(5-10)% to Chaos Resistance", statOrder = { 1552 }, level = 16, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 250, 250, 250, 250, 250, 0 }, modTags = { "chaos", "resistance" }, }, + ["ChaosResist2"] = { type = "Suffix", affix = "of Banishment", "+(11-15)% to Chaos Resistance", statOrder = { 1552 }, level = 30, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 250, 250, 250, 250, 250, 0 }, modTags = { "chaos", "resistance" }, }, + ["ChaosResist3"] = { type = "Suffix", affix = "of Eviction", "+(16-20)% to Chaos Resistance", statOrder = { 1552 }, level = 44, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 250, 250, 250, 250, 250, 0 }, modTags = { "chaos", "resistance" }, }, + ["ChaosResist4"] = { type = "Suffix", affix = "of Expulsion", "+(21-25)% to Chaos Resistance", statOrder = { 1552 }, level = 56, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 250, 250, 250, 250, 250, 0 }, modTags = { "chaos", "resistance" }, }, + ["ChaosResist5"] = { type = "Suffix", affix = "of Exile", "+(26-30)% to Chaos Resistance", statOrder = { 1552 }, level = 65, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 250, 250, 250, 250, 250, 0 }, modTags = { "chaos", "resistance" }, }, + ["ChaosResist6"] = { type = "Suffix", affix = "of Bameth", "+(31-35)% to Chaos Resistance", statOrder = { 1552 }, level = 81, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 250, 250, 250, 250, 250, 0 }, modTags = { "chaos", "resistance" }, }, + ["ChaosResistEnhancedMod_"] = { type = "Suffix", affix = "of Tacati", "+(31-35)% to Chaos Resistance", "(9-10)% reduced Chaos Damage taken over time", statOrder = { 1552, 1857 }, level = 1, group = "ChaosResistanceDamageOverTime", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "resistance" }, }, + ["AllResistances1"] = { type = "Suffix", affix = "of the Crystal", "+(3-5)% to all Elemental Resistances", statOrder = { 1530 }, level = 12, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "elemental", "resistance" }, }, + ["AllResistances2"] = { type = "Suffix", affix = "of the Prism", "+(6-8)% to all Elemental Resistances", statOrder = { 1530 }, level = 24, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "elemental", "resistance" }, }, + ["AllResistances3"] = { type = "Suffix", affix = "of the Kaleidoscope", "+(9-11)% to all Elemental Resistances", statOrder = { 1530 }, level = 36, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "elemental", "resistance" }, }, + ["AllResistances4"] = { type = "Suffix", affix = "of Variegation", "+(12-14)% to all Elemental Resistances", statOrder = { 1530 }, level = 48, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "elemental", "resistance" }, }, + ["AllResistances5"] = { type = "Suffix", affix = "of the Rainbow", "+(15-16)% to all Elemental Resistances", statOrder = { 1530 }, level = 60, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "elemental", "resistance" }, }, + ["AllResistances6"] = { type = "Suffix", affix = "of the Span", "+(17-18)% to all Elemental Resistances", statOrder = { 1530 }, level = 85, group = "AllResistances", weightKey = { "shield", "amulet", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "resistance" }, }, + ["CriticalMultiplier1"] = { type = "Suffix", affix = "of Ire", "+(8-12)% to Global Critical Strike Multiplier", statOrder = { 1399 }, level = 8, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage", "critical" }, }, + ["CriticalMultiplier2"] = { type = "Suffix", affix = "of Anger", "+(13-19)% to Global Critical Strike Multiplier", statOrder = { 1399 }, level = 21, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage", "critical" }, }, + ["CriticalMultiplier3"] = { type = "Suffix", affix = "of Rage", "+(20-24)% to Global Critical Strike Multiplier", statOrder = { 1399 }, level = 31, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage", "critical" }, }, + ["CriticalMultiplier4"] = { type = "Suffix", affix = "of Fury", "+(25-29)% to Global Critical Strike Multiplier", statOrder = { 1399 }, level = 45, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage", "critical" }, }, + ["CriticalMultiplier5"] = { type = "Suffix", affix = "of Ferocity", "+(30-34)% to Global Critical Strike Multiplier", statOrder = { 1399 }, level = 59, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage", "critical" }, }, + ["CriticalMultiplier6"] = { type = "Suffix", affix = "of Destruction", "+(35-38)% to Global Critical Strike Multiplier", statOrder = { 1399 }, level = 74, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage", "critical" }, }, + ["CriticalMultiplierWithBows1"] = { type = "Suffix", affix = "of Ire", "+(8-12)% to Critical Strike Multiplier with Bows", statOrder = { 1407 }, level = 8, group = "CriticalStrikeMultiplierWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "attack", "critical" }, }, + ["CriticalMultiplierWithBows2"] = { type = "Suffix", affix = "of Anger", "+(13-19)% to Critical Strike Multiplier with Bows", statOrder = { 1407 }, level = 21, group = "CriticalStrikeMultiplierWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "attack", "critical" }, }, + ["CriticalMultiplierWithBows3"] = { type = "Suffix", affix = "of Rage", "+(20-24)% to Critical Strike Multiplier with Bows", statOrder = { 1407 }, level = 31, group = "CriticalStrikeMultiplierWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "attack", "critical" }, }, + ["CriticalMultiplierWithBows4__"] = { type = "Suffix", affix = "of Fury", "+(25-29)% to Critical Strike Multiplier with Bows", statOrder = { 1407 }, level = 45, group = "CriticalStrikeMultiplierWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "attack", "critical" }, }, + ["CriticalMultiplierWithBows5_"] = { type = "Suffix", affix = "of Ferocity", "+(30-34)% to Critical Strike Multiplier with Bows", statOrder = { 1407 }, level = 59, group = "CriticalStrikeMultiplierWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "attack", "critical" }, }, + ["CriticalMultiplierWithBows6"] = { type = "Suffix", affix = "of Destruction", "+(35-38)% to Critical Strike Multiplier with Bows", statOrder = { 1407 }, level = 74, group = "CriticalStrikeMultiplierWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "attack", "critical" }, }, + ["CriitcalMultiplierEssence7"] = { type = "Suffix", affix = "of the Essence", "+(35-41)% to Global Critical Strike Multiplier", statOrder = { 1399 }, level = 82, group = "CriticalStrikeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "critical" }, }, + ["CriticalMultiplierEssenceRing5_"] = { type = "Suffix", affix = "of the Essence", "+(15-17)% to Global Critical Strike Multiplier", statOrder = { 1399 }, level = 58, group = "CriticalStrikeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "critical" }, }, + ["CriticalMultiplierEssenceRing6_"] = { type = "Suffix", affix = "of the Essence", "+(18-20)% to Global Critical Strike Multiplier", statOrder = { 1399 }, level = 74, group = "CriticalStrikeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "critical" }, }, + ["CriticalMultiplierEssenceRing7"] = { type = "Suffix", affix = "of the Essence", "+(21-25)% to Global Critical Strike Multiplier", statOrder = { 1399 }, level = 82, group = "CriticalStrikeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "critical" }, }, + ["StunRecovery1"] = { type = "Suffix", affix = "of Thick Skin", "(11-13)% increased Stun and Block Recovery", statOrder = { 1811 }, level = 1, group = "StunRecovery", weightKey = { "gloves", "armour", "belt", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, + ["StunRecovery2"] = { type = "Suffix", affix = "of Stone Skin", "(14-16)% increased Stun and Block Recovery", statOrder = { 1811 }, level = 17, group = "StunRecovery", weightKey = { "gloves", "armour", "belt", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, + ["StunRecovery3"] = { type = "Suffix", affix = "of Iron Skin", "(17-19)% increased Stun and Block Recovery", statOrder = { 1811 }, level = 28, group = "StunRecovery", weightKey = { "gloves", "armour", "belt", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, + ["StunRecovery4"] = { type = "Suffix", affix = "of Steel Skin", "(20-22)% increased Stun and Block Recovery", statOrder = { 1811 }, level = 42, group = "StunRecovery", weightKey = { "gloves", "armour", "belt", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, + ["StunRecovery5"] = { type = "Suffix", affix = "of Adamantite Skin", "(23-25)% increased Stun and Block Recovery", statOrder = { 1811 }, level = 56, group = "StunRecovery", weightKey = { "gloves", "armour", "belt", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, + ["StunRecovery6"] = { type = "Suffix", affix = "of Corundum Skin", "(26-28)% increased Stun and Block Recovery", statOrder = { 1811 }, level = 79, group = "StunRecovery", weightKey = { "gloves", "armour", "belt", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, + ["StunRecoveryEssence7"] = { type = "Suffix", affix = "of the Essence", "(29-34)% increased Stun and Block Recovery", statOrder = { 1811 }, level = 82, group = "StunRecovery", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["StunDuration1"] = { type = "Suffix", affix = "of Impact", "(11-15)% increased Stun Duration on Enemies", statOrder = { 1774 }, level = 5, group = "StunDurationIncreasePercent", weightKey = { "weapon", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, }, + ["StunDuration2"] = { type = "Suffix", affix = "of Dazing", "(16-20)% increased Stun Duration on Enemies", statOrder = { 1774 }, level = 18, group = "StunDurationIncreasePercent", weightKey = { "weapon", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, }, + ["StunDuration3"] = { type = "Suffix", affix = "of Stunning", "(21-25)% increased Stun Duration on Enemies", statOrder = { 1774 }, level = 30, group = "StunDurationIncreasePercent", weightKey = { "weapon", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, }, + ["StunDuration4"] = { type = "Suffix", affix = "of Slamming", "(26-30)% increased Stun Duration on Enemies", statOrder = { 1774 }, level = 44, group = "StunDurationIncreasePercent", weightKey = { "weapon", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, }, + ["StunDuration5"] = { type = "Suffix", affix = "of Staggering", "(31-35)% increased Stun Duration on Enemies", statOrder = { 1774 }, level = 58, group = "StunDurationIncreasePercent", weightKey = { "weapon", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, }, + ["StunDurationEssence7"] = { type = "Suffix", affix = "of the Essence", "(36-39)% increased Stun Duration on Enemies", statOrder = { 1774 }, level = 82, group = "StunDurationIncreasePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["SpellCriticalStrikeChance1"] = { type = "Suffix", affix = "of Menace", "(10-19)% increased Spell Critical Strike Chance", statOrder = { 1369 }, level = 11, group = "SpellCriticalStrikeChance", weightKey = { "attack_dagger", "attack_staff", "focus", "str_int_shield", "dex_int_shield", "wand", "staff", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "caster", "critical" }, }, + ["SpellCriticalStrikeChance2"] = { type = "Suffix", affix = "of Havoc", "(20-39)% increased Spell Critical Strike Chance", statOrder = { 1369 }, level = 21, group = "SpellCriticalStrikeChance", weightKey = { "attack_dagger", "attack_staff", "focus", "str_int_shield", "dex_int_shield", "wand", "staff", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "caster", "critical" }, }, + ["SpellCriticalStrikeChance3"] = { type = "Suffix", affix = "of Disaster", "(40-59)% increased Spell Critical Strike Chance", statOrder = { 1369 }, level = 28, group = "SpellCriticalStrikeChance", weightKey = { "attack_dagger", "attack_staff", "focus", "str_int_shield", "dex_int_shield", "wand", "staff", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "caster", "critical" }, }, + ["SpellCriticalStrikeChance4"] = { type = "Suffix", affix = "of Calamity", "(60-79)% increased Spell Critical Strike Chance", statOrder = { 1369 }, level = 41, group = "SpellCriticalStrikeChance", weightKey = { "attack_dagger", "attack_staff", "focus", "str_int_shield", "dex_int_shield", "wand", "staff", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "caster", "critical" }, }, + ["SpellCriticalStrikeChance5"] = { type = "Suffix", affix = "of Ruin", "(80-99)% increased Spell Critical Strike Chance", statOrder = { 1369 }, level = 59, group = "SpellCriticalStrikeChance", weightKey = { "attack_dagger", "attack_staff", "focus", "str_int_shield", "dex_int_shield", "wand", "staff", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "caster", "critical" }, }, + ["SpellCriticalStrikeChance6_"] = { type = "Suffix", affix = "of Unmaking", "(100-109)% increased Spell Critical Strike Chance", statOrder = { 1369 }, level = 76, group = "SpellCriticalStrikeChance", weightKey = { "attack_dagger", "attack_staff", "focus", "str_int_shield", "dex_int_shield", "wand", "staff", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "caster", "critical" }, }, + ["SpellCriticalStrikeChanceEssence7"] = { type = "Suffix", affix = "of the Essence", "(110-119)% increased Spell Critical Strike Chance", statOrder = { 1369 }, level = 82, group = "SpellCriticalStrikeChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "critical" }, }, + ["ProjectileSpeed1"] = { type = "Suffix", affix = "of Darting", "(10-17)% increased Projectile Speed", statOrder = { 1707 }, level = 14, group = "ProjectileSpeed", weightKey = { "ranged", "quiver", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "speed" }, }, + ["ProjectileSpeed2"] = { type = "Suffix", affix = "of Flight", "(18-25)% increased Projectile Speed", statOrder = { 1707 }, level = 27, group = "ProjectileSpeed", weightKey = { "ranged", "quiver", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "speed" }, }, + ["ProjectileSpeed3"] = { type = "Suffix", affix = "of Propulsion", "(26-33)% increased Projectile Speed", statOrder = { 1707 }, level = 41, group = "ProjectileSpeed", weightKey = { "ranged", "quiver", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "speed" }, }, + ["ProjectileSpeed4"] = { type = "Suffix", affix = "of the Zephyr", "(34-41)% increased Projectile Speed", statOrder = { 1707 }, level = 55, group = "ProjectileSpeed", weightKey = { "ranged", "quiver", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "speed" }, }, + ["ProjectileSpeed5"] = { type = "Suffix", affix = "of the Gale", "(42-46)% increased Projectile Speed", statOrder = { 1707 }, level = 82, group = "ProjectileSpeed", weightKey = { "ranged", "quiver", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "speed" }, }, + ["ProjectileSpeedEssence6"] = { type = "Suffix", affix = "of the Essence", "(47-52)% increased Projectile Speed", statOrder = { 1707 }, level = 28, group = "ProjectileSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, + ["LifeGainPerTarget1"] = { type = "Suffix", affix = "of Rejuvenation", "Gain 2 Life per Enemy Hit with Attacks", statOrder = { 1651 }, level = 8, group = "LifeGainPerTarget", weightKey = { "amulet", "ring", "gloves", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "resource", "life", "attack" }, }, + ["LifeGainPerTarget2"] = { type = "Suffix", affix = "of Restoration", "Gain 3 Life per Enemy Hit with Attacks", statOrder = { 1651 }, level = 20, group = "LifeGainPerTarget", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life", "attack" }, }, + ["LifeGainPerTarget3"] = { type = "Suffix", affix = "of Regrowth", "Gain 4 Life per Enemy Hit with Attacks", statOrder = { 1651 }, level = 30, group = "LifeGainPerTarget", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life", "attack" }, }, + ["LifeGainPerTarget4"] = { type = "Suffix", affix = "of Nourishment", "Gain 5 Life per Enemy Hit with Attacks", statOrder = { 1651 }, level = 40, group = "LifeGainPerTarget", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "attack" }, }, + ["LifeGainPerTargetLocal1"] = { type = "Suffix", affix = "of Rejuvenation", "Grants (2-3) Life per Enemy Hit", statOrder = { 1649 }, level = 8, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "attack" }, }, + ["LifeGainPerTargetLocal2"] = { type = "Suffix", affix = "of Restoration", "Grants (4-6) Life per Enemy Hit", statOrder = { 1649 }, level = 20, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "attack" }, }, + ["LifeGainPerTargetLocal3"] = { type = "Suffix", affix = "of Regrowth", "Grants (7-10) Life per Enemy Hit", statOrder = { 1649 }, level = 30, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "attack" }, }, + ["LifeGainPerTargetLocal4"] = { type = "Suffix", affix = "of Nourishment", "Grants (11-14) Life per Enemy Hit", statOrder = { 1649 }, level = 40, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "attack" }, }, + ["LifeGainPerTargetLocal5"] = { type = "Suffix", affix = "of Regenesis", "Grants (15-18) Life per Enemy Hit", statOrder = { 1649 }, level = 50, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "attack" }, }, + ["LifeGainPerTargetLocal6"] = { type = "Suffix", affix = "of Renewal", "Grants (19-22) Life per Enemy Hit", statOrder = { 1649 }, level = 60, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "attack" }, }, + ["LifeGainPerTargetLocal7"] = { type = "Suffix", affix = "of Recuperation", "Grants (23-26) Life per Enemy Hit", statOrder = { 1649 }, level = 70, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "attack" }, }, + ["LifeGainPerTargetLocal8"] = { type = "Suffix", affix = "of Revitalization", "Grants (27-30) Life per Enemy Hit", statOrder = { 1649 }, level = 80, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "attack" }, }, + ["FireDamagePercent1"] = { type = "Suffix", affix = "of Embers", "(10-12)% increased Fire Damage", statOrder = { 1268 }, level = 8, group = "FireDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePercent2"] = { type = "Suffix", affix = "of Coals", "(13-15)% increased Fire Damage", statOrder = { 1268 }, level = 22, group = "FireDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePercent3"] = { type = "Suffix", affix = "of Cinders", "(16-18)% increased Fire Damage", statOrder = { 1268 }, level = 36, group = "FireDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePercent4"] = { type = "Suffix", affix = "of Flames", "(19-22)% increased Fire Damage", statOrder = { 1268 }, level = 50, group = "FireDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePercent5"] = { type = "Suffix", affix = "of Immolation", "(23-26)% increased Fire Damage", statOrder = { 1268 }, level = 64, group = "FireDamagePercentage", weightKey = { "wand", "sceptre", "amulet", "default", }, weightVal = { 1000, 1000, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePercent6"] = { type = "Suffix", affix = "of Ashes", "(27-30)% increased Fire Damage", statOrder = { 1268 }, level = 76, group = "FireDamagePercentage", weightKey = { "wand", "sceptre", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePercentTwoHand1"] = { type = "Suffix", affix = "of Embers", "(18-22)% increased Fire Damage", statOrder = { 1268 }, level = 8, group = "FireDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePercentTwoHand2"] = { type = "Suffix", affix = "of Coals", "(23-28)% increased Fire Damage", statOrder = { 1268 }, level = 22, group = "FireDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePercentTwoHand3"] = { type = "Suffix", affix = "of Cinders", "(29-34)% increased Fire Damage", statOrder = { 1268 }, level = 36, group = "FireDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePercentTwoHand4"] = { type = "Suffix", affix = "of Flames", "(35-39)% increased Fire Damage", statOrder = { 1268 }, level = 50, group = "FireDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePercentTwoHand5"] = { type = "Suffix", affix = "of Immolation", "(40-44)% increased Fire Damage", statOrder = { 1268 }, level = 64, group = "FireDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePercentTwoHand6"] = { type = "Suffix", affix = "of Ashes", "(45-50)% increased Fire Damage", statOrder = { 1268 }, level = 76, group = "FireDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePercentEssence2_"] = { type = "Suffix", affix = "of the Essence", "(11-14)% increased Fire Damage", statOrder = { 1268 }, level = 10, group = "FireDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePercentEssence3"] = { type = "Suffix", affix = "of the Essence", "(15-18)% increased Fire Damage", statOrder = { 1268 }, level = 26, group = "FireDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePercentEssence4"] = { type = "Suffix", affix = "of the Essence", "(19-22)% increased Fire Damage", statOrder = { 1268 }, level = 42, group = "FireDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePercentEssence5"] = { type = "Suffix", affix = "of the Essence", "(23-26)% increased Fire Damage", statOrder = { 1268 }, level = 58, group = "FireDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePercentEssence6_"] = { type = "Suffix", affix = "of the Essence", "(27-30)% increased Fire Damage", statOrder = { 1268 }, level = 74, group = "FireDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePercentEssence7"] = { type = "Suffix", affix = "of the Essence", "(31-34)% increased Fire Damage", statOrder = { 1268 }, level = 82, group = "FireDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["ColdDamagePercent1"] = { type = "Suffix", affix = "of Snow", "(10-12)% increased Cold Damage", statOrder = { 1277 }, level = 12, group = "ColdDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePercent2"] = { type = "Suffix", affix = "of Sleet", "(13-15)% increased Cold Damage", statOrder = { 1277 }, level = 24, group = "ColdDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePercent3"] = { type = "Suffix", affix = "of Ice", "(16-18)% increased Cold Damage", statOrder = { 1277 }, level = 36, group = "ColdDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePercent4"] = { type = "Suffix", affix = "of Rime", "(19-22)% increased Cold Damage", statOrder = { 1277 }, level = 50, group = "ColdDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePercent5"] = { type = "Suffix", affix = "of Floe", "(23-26)% increased Cold Damage", statOrder = { 1277 }, level = 64, group = "ColdDamagePercentage", weightKey = { "wand", "sceptre", "amulet", "default", }, weightVal = { 1000, 1000, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePercent6"] = { type = "Suffix", affix = "of Glaciation", "(27-30)% increased Cold Damage", statOrder = { 1277 }, level = 76, group = "ColdDamagePercentage", weightKey = { "wand", "sceptre", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePercentTwoHand1"] = { type = "Suffix", affix = "of Snow", "(18-22)% increased Cold Damage", statOrder = { 1277 }, level = 12, group = "ColdDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePercentTwoHand2"] = { type = "Suffix", affix = "of Sleet", "(23-28)% increased Cold Damage", statOrder = { 1277 }, level = 24, group = "ColdDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePercentTwoHand3"] = { type = "Suffix", affix = "of Ice", "(29-34)% increased Cold Damage", statOrder = { 1277 }, level = 36, group = "ColdDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePercentTwoHand4"] = { type = "Suffix", affix = "of Rime", "(35-39)% increased Cold Damage", statOrder = { 1277 }, level = 50, group = "ColdDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePercentTwoHand5"] = { type = "Suffix", affix = "of Floe", "(40-44)% increased Cold Damage", statOrder = { 1277 }, level = 64, group = "ColdDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePercentTwoHand6"] = { type = "Suffix", affix = "of Glaciation", "(45-50)% increased Cold Damage", statOrder = { 1277 }, level = 76, group = "ColdDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePercentEssence1"] = { type = "Suffix", affix = "of the Essence", "(6-10)% increased Cold Damage", statOrder = { 1277 }, level = 1, group = "ColdDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePercentEssence2"] = { type = "Suffix", affix = "of the Essence", "(11-14)% increased Cold Damage", statOrder = { 1277 }, level = 10, group = "ColdDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePercentEssence3"] = { type = "Suffix", affix = "of the Essence", "(15-18)% increased Cold Damage", statOrder = { 1277 }, level = 26, group = "ColdDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePercentEssence4_"] = { type = "Suffix", affix = "of the Essence", "(19-22)% increased Cold Damage", statOrder = { 1277 }, level = 42, group = "ColdDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePercentEssence5"] = { type = "Suffix", affix = "of the Essence", "(23-26)% increased Cold Damage", statOrder = { 1277 }, level = 58, group = "ColdDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePercentEssence6_"] = { type = "Suffix", affix = "of the Essence", "(27-30)% increased Cold Damage", statOrder = { 1277 }, level = 74, group = "ColdDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePercentEssence7"] = { type = "Suffix", affix = "of the Essence", "(31-34)% increased Cold Damage", statOrder = { 1277 }, level = 82, group = "ColdDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["LightningDamagePercent1"] = { type = "Suffix", affix = "of Sparks", "(10-12)% increased Lightning Damage", statOrder = { 1288 }, level = 10, group = "LightningDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePercent2"] = { type = "Suffix", affix = "of Static", "(13-15)% increased Lightning Damage", statOrder = { 1288 }, level = 23, group = "LightningDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePercent3"] = { type = "Suffix", affix = "of Electricity", "(16-18)% increased Lightning Damage", statOrder = { 1288 }, level = 36, group = "LightningDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePercent4"] = { type = "Suffix", affix = "of Voltage", "(19-22)% increased Lightning Damage", statOrder = { 1288 }, level = 50, group = "LightningDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePercent5"] = { type = "Suffix", affix = "of Discharge", "(23-26)% increased Lightning Damage", statOrder = { 1288 }, level = 64, group = "LightningDamagePercentage", weightKey = { "wand", "sceptre", "amulet", "default", }, weightVal = { 1000, 1000, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePercent6"] = { type = "Suffix", affix = "of Arcing", "(27-30)% increased Lightning Damage", statOrder = { 1288 }, level = 76, group = "LightningDamagePercentage", weightKey = { "wand", "sceptre", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePercentTwoHand1"] = { type = "Suffix", affix = "of Sparks", "(18-22)% increased Lightning Damage", statOrder = { 1288 }, level = 10, group = "LightningDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePercentTwoHand2"] = { type = "Suffix", affix = "of Static", "(23-28)% increased Lightning Damage", statOrder = { 1288 }, level = 23, group = "LightningDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePercentTwoHand3"] = { type = "Suffix", affix = "of Electricity", "(29-34)% increased Lightning Damage", statOrder = { 1288 }, level = 36, group = "LightningDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePercentTwoHand4"] = { type = "Suffix", affix = "of Voltage", "(35-39)% increased Lightning Damage", statOrder = { 1288 }, level = 50, group = "LightningDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePercentTwoHand5"] = { type = "Suffix", affix = "of Discharge", "(40-44)% increased Lightning Damage", statOrder = { 1288 }, level = 64, group = "LightningDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePercentTwoHand6"] = { type = "Suffix", affix = "of Arcing", "(45-50)% increased Lightning Damage", statOrder = { 1288 }, level = 76, group = "LightningDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePercentEssence7"] = { type = "Suffix", affix = "of the Essence", "(31-34)% increased Lightning Damage", statOrder = { 1288 }, level = 82, group = "LightningDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LifeGainedFromEnemyDeath1"] = { type = "Suffix", affix = "of Success", "Gain (7-10) Life per Enemy Killed", statOrder = { 1659 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "life" }, }, + ["LifeGainedFromEnemyDeath2"] = { type = "Suffix", affix = "of Victory", "Gain (12-18) Life per Enemy Killed", statOrder = { 1659 }, level = 23, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "life" }, }, + ["LifeGainedFromEnemyDeath3"] = { type = "Suffix", affix = "of Triumph", "Gain (24-32) Life per Enemy Killed", statOrder = { 1659 }, level = 40, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "life" }, }, + ["LifeGainedFromEnemyDeath4"] = { type = "Suffix", affix = "of Conquest", "Gain (35-44) Life per Enemy Killed", statOrder = { 1659 }, level = 52, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "life" }, }, + ["LifeGainedFromEnemyDeath5"] = { type = "Suffix", affix = "of Feat", "Gain (56-72) Life per Enemy Killed", statOrder = { 1659 }, level = 66, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "life" }, }, + ["LifeGainedFromEnemyDeath6"] = { type = "Suffix", affix = "of Masterstroke", "Gain (84-110) Life per Enemy Killed", statOrder = { 1659 }, level = 81, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "life" }, }, + ["ManaGainedFromEnemyDeath1"] = { type = "Suffix", affix = "of Absorption", "Gain (4-6) Mana per Enemy Killed", statOrder = { 1674 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "mana" }, }, + ["ManaGainedFromEnemyDeath2"] = { type = "Suffix", affix = "of Osmosis", "Gain (7-10) Mana per Enemy Killed", statOrder = { 1674 }, level = 24, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "mana" }, }, + ["ManaGainedFromEnemyDeath3"] = { type = "Suffix", affix = "of Consumption", "Gain (11-15) Mana per Enemy Killed", statOrder = { 1674 }, level = 40, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "mana" }, }, + ["ManaGainedFromEnemyDeath4"] = { type = "Suffix", affix = "of Diffusion", "Gain (16-25) Mana per Enemy Killed", statOrder = { 1674 }, level = 52, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "mana" }, }, + ["ManaGainedFromEnemyDeath5"] = { type = "Suffix", affix = "of Permeation", "Gain (26-37) Mana per Enemy Killed", statOrder = { 1674 }, level = 66, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "mana" }, }, + ["ManaGainedFromEnemyDeath6"] = { type = "Suffix", affix = "of Retention", "Gain (38-50) Mana per Enemy Killed", statOrder = { 1674 }, level = 81, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "mana" }, }, + ["LocalCriticalStrikeChance1"] = { type = "Suffix", affix = "of Needling", "(10-14)% increased Critical Strike Chance", statOrder = { 1375 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "critical" }, }, + ["LocalCriticalStrikeChance2"] = { type = "Suffix", affix = "of Stinging", "(15-19)% increased Critical Strike Chance", statOrder = { 1375 }, level = 20, group = "LocalCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "critical" }, }, + ["LocalCriticalStrikeChance3"] = { type = "Suffix", affix = "of Piercing", "(20-24)% increased Critical Strike Chance", statOrder = { 1375 }, level = 30, group = "LocalCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "critical" }, }, + ["LocalCriticalStrikeChance4"] = { type = "Suffix", affix = "of Puncturing", "(25-29)% increased Critical Strike Chance", statOrder = { 1375 }, level = 44, group = "LocalCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "critical" }, }, + ["LocalCriticalStrikeChance5"] = { type = "Suffix", affix = "of Penetrating", "(30-34)% increased Critical Strike Chance", statOrder = { 1375 }, level = 59, group = "LocalCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "critical" }, }, + ["LocalCriticalStrikeChance6"] = { type = "Suffix", affix = "of Incision", "(35-38)% increased Critical Strike Chance", statOrder = { 1375 }, level = 73, group = "LocalCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "critical" }, }, + ["LocalCriticalMultiplier1"] = { type = "Suffix", affix = "of Ire", "+(10-14)% to Global Critical Strike Multiplier", statOrder = { 1399 }, level = 8, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "critical" }, }, + ["LocalCriticalMultiplier2"] = { type = "Suffix", affix = "of Anger", "+(15-19)% to Global Critical Strike Multiplier", statOrder = { 1399 }, level = 21, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "critical" }, }, + ["LocalCriticalMultiplier3"] = { type = "Suffix", affix = "of Rage", "+(20-24)% to Global Critical Strike Multiplier", statOrder = { 1399 }, level = 30, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "critical" }, }, + ["LocalCriticalMultiplier4"] = { type = "Suffix", affix = "of Fury", "+(25-29)% to Global Critical Strike Multiplier", statOrder = { 1399 }, level = 44, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "critical" }, }, + ["LocalCriticalMultiplier5"] = { type = "Suffix", affix = "of Ferocity", "+(30-34)% to Global Critical Strike Multiplier", statOrder = { 1399 }, level = 59, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "critical" }, }, + ["LocalCriticalMultiplier6"] = { type = "Suffix", affix = "of Destruction", "+(35-38)% to Global Critical Strike Multiplier", statOrder = { 1399 }, level = 73, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "critical" }, }, + ["LocalIncreaseSocketedGemLevel1"] = { type = "Prefix", affix = "Paragon's", "+1 to Level of Socketed Gems", statOrder = { 142 }, level = 50, group = "LocalIncreaseSocketedGemLevel", weightKey = { "attack_staff", "attack_dagger", "staff", "wand", "dagger", "sceptre", "weapon", "default", }, weightVal = { 1000, 1000, 0, 0, 0, 0, 1000, 0 }, modTags = { "gem" }, }, + ["LocalIncreaseSocketedGemUnsetRing1"] = { type = "Prefix", affix = "Exemplary", "+1 to Level of Socketed Gems", statOrder = { 142 }, level = 2, group = "LocalIncreaseSocketedGemLevel", weightKey = { "unset_ring", "default", }, weightVal = { 1000, 0 }, modTags = { "gem" }, }, + ["LocalIncreaseSocketedGemUnsetRing2"] = { type = "Prefix", affix = "Quintessential", "+2 to Level of Socketed Gems", statOrder = { 142 }, level = 50, group = "LocalIncreaseSocketedGemLevel", weightKey = { "unset_ring", "default", }, weightVal = { 1000, 0 }, modTags = { "gem" }, }, + ["LocalIncreaseSocketedGemUnsetRing3"] = { type = "Prefix", affix = "Flawless", "+3 to Level of Socketed Gems", statOrder = { 142 }, level = 76, group = "LocalIncreaseSocketedGemLevel", weightKey = { "unset_ring", "default", }, weightVal = { 250, 0 }, modTags = { "gem" }, }, + ["GlobalSpellGemsLevel1"] = { type = "Prefix", affix = "Magister's", "+1 to Level of all Spell Skill Gems", statOrder = { 1519 }, level = 55, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 50, 50, 50, 0 }, modTags = { "caster", "gem" }, }, + ["GlobalSpellGemsLevelTwoHand1"] = { type = "Prefix", affix = "Magister's", "+(1-2) to Level of all Spell Skill Gems", statOrder = { 1519 }, level = 55, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 50, 0 }, modTags = { "caster", "gem" }, }, + ["LocalIncreaseSocketedFireGemLevel1"] = { type = "Prefix", affix = "Flame Spinner's", "+1 to Level of Socketed Fire Gems", statOrder = { 147 }, level = 2, group = "LocalIncreaseSocketedFireGemLevel", weightKey = { "attack_staff", "attack_dagger", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "fire", "gem" }, }, + ["LocalIncreaseSocketedFireGemLevel2_"] = { type = "Prefix", affix = "Lava Caller's", "+2 to Level of Socketed Fire Gems", statOrder = { 147 }, level = 55, group = "LocalIncreaseSocketedFireGemLevel", weightKey = { "attack_staff", "attack_dagger", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "fire", "gem" }, }, + ["GlobalFireSpellGemsLevel1_"] = { type = "Prefix", affix = "Flame Shaper's", "+1 to Level of all Fire Spell Skill Gems", statOrder = { 1521 }, level = 2, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "focus", "default", }, weightVal = { 0, 250, 250, 250, 250, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, }, + ["GlobalFireSpellGemsLevelTwoHand1__"] = { type = "Prefix", affix = "Flame Shaper's", "+(1-2) to Level of all Fire Spell Skill Gems", statOrder = { 1521 }, level = 2, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, }, + ["GlobalFireSpellGemsLevelTwoHand2"] = { type = "Prefix", affix = "Lava Conjurer's", "+3 to Level of all Fire Spell Skill Gems", statOrder = { 1521 }, level = 77, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, }, + ["LocalIncreaseSocketedColdGemLevel1"] = { type = "Prefix", affix = "Frost Weaver's", "+1 to Level of Socketed Cold Gems", statOrder = { 148 }, level = 2, group = "LocalIncreaseSocketedColdGemLevel", weightKey = { "attack_staff", "attack_dagger", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "cold", "gem" }, }, + ["LocalIncreaseSocketedColdGemLevel2"] = { type = "Prefix", affix = "Winterbringer's", "+2 to Level of Socketed Cold Gems", statOrder = { 148 }, level = 55, group = "LocalIncreaseSocketedColdGemLevel", weightKey = { "attack_staff", "attack_dagger", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "cold", "gem" }, }, + ["GlobalColdSpellGemsLevel1_"] = { type = "Prefix", affix = "Frost Singer's", "+1 to Level of all Cold Spell Skill Gems", statOrder = { 1522 }, level = 2, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "focus", "default", }, weightVal = { 0, 250, 250, 250, 250, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, }, + ["GlobalColdSpellGemsLevelTwoHand1"] = { type = "Prefix", affix = "Frost Singer's", "+(1-2) to Level of all Cold Spell Skill Gems", statOrder = { 1522 }, level = 2, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, }, + ["GlobalColdSpellGemsLevelTwoHand2"] = { type = "Prefix", affix = "Winter Beckoner's", "+3 to Level of all Cold Spell Skill Gems", statOrder = { 1522 }, level = 77, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, }, + ["LocalIncreaseSocketedLightningGemLevel1"] = { type = "Prefix", affix = "Thunder Lord's", "+1 to Level of Socketed Lightning Gems", statOrder = { 149 }, level = 2, group = "LocalIncreaseSocketedLightningGemLevel", weightKey = { "attack_staff", "attack_dagger", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "lightning", "gem" }, }, + ["LocalIncreaseSocketedLightningGemLevel2"] = { type = "Prefix", affix = "Tempest King's", "+2 to Level of Socketed Lightning Gems", statOrder = { 149 }, level = 55, group = "LocalIncreaseSocketedLightningGemLevel", weightKey = { "attack_staff", "attack_dagger", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "lightning", "gem" }, }, + ["GlobalLightningSpellGemsLevel1"] = { type = "Prefix", affix = "Thunderhand's", "+1 to Level of all Lightning Spell Skill Gems", statOrder = { 1523 }, level = 2, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "focus", "default", }, weightVal = { 0, 250, 250, 250, 250, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, }, + ["GlobalLightningSpellGemsLevelTwoHand1"] = { type = "Prefix", affix = "Thunderhand's", "+(1-2) to Level of all Lightning Spell Skill Gems", statOrder = { 1523 }, level = 2, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, }, + ["GlobalLightningSpellGemsLevelTwoHand2"] = { type = "Prefix", affix = "Tempest Master's", "+3 to Level of all Lightning Spell Skill Gems", statOrder = { 1523 }, level = 77, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, }, + ["LocalIncreaseSocketedChaosGemLevel1"] = { type = "Prefix", affix = "Nihilist's", "+1 to Level of Socketed Chaos Gems", statOrder = { 150 }, level = 4, group = "LocalIncreaseSocketedChaosGemLevel", weightKey = { "attack_staff", "attack_dagger", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "chaos", "gem" }, }, + ["LocalIncreaseSocketedChaosGemLevel2"] = { type = "Prefix", affix = "Anarchist's", "+2 to Level of Socketed Chaos Gems", statOrder = { 150 }, level = 55, group = "LocalIncreaseSocketedChaosGemLevel", weightKey = { "attack_staff", "attack_dagger", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "chaos", "gem" }, }, + ["GlobalChaosSpellGemsLevel1"] = { type = "Prefix", affix = "Mad Lord's", "+1 to Level of all Chaos Spell Skill Gems", statOrder = { 1524 }, level = 2, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { "attack_dagger", "wand", "dagger", "focus", "default", }, weightVal = { 0, 200, 200, 200, 0 }, modTags = { "chaos", "caster", "gem" }, }, + ["GlobalChaosSpellGemsLevelTwoHand1"] = { type = "Prefix", affix = "Mad Lord's", "+(1-2) to Level of all Chaos Spell Skill Gems", statOrder = { 1524 }, level = 2, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 200, 0 }, modTags = { "chaos", "caster", "gem" }, }, + ["GlobalChaosSpellGemsLevelTwoHand2"] = { type = "Prefix", affix = "Splintermind's", "+3 to Level of all Chaos Spell Skill Gems", statOrder = { 1524 }, level = 77, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0 }, modTags = { "chaos", "caster", "gem" }, }, + ["GlobalPhysicalSpellGemsLevel1"] = { type = "Prefix", affix = "Lithomancer's", "+1 to Level of all Physical Spell Skill Gems", statOrder = { 1520 }, level = 2, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "focus", "default", }, weightVal = { 0, 200, 200, 200, 200, 0 }, modTags = { "physical", "caster", "gem" }, }, + ["GlobalPhysicalSpellGemsLevelTwoHand1_"] = { type = "Prefix", affix = "Lithomancer's", "+(1-2) to Level of all Physical Spell Skill Gems", statOrder = { 1520 }, level = 2, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 200, 0 }, modTags = { "physical", "caster", "gem" }, }, + ["GlobalPhysicalSpellGemsLevelTwoHand2_"] = { type = "Prefix", affix = "Tecton's", "+3 to Level of all Physical Spell Skill Gems", statOrder = { 1520 }, level = 77, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "caster", "gem" }, }, + ["LocalIncreaseSocketedSpellGemLevelRace"] = { type = "Prefix", affix = "Competitor's", "+1 to Level of Socketed Spell Gems", statOrder = { 154 }, level = 1, group = "LocalIncreaseSocketedSpellGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "gem" }, }, + ["LocalIncreaseSocketedMeleeGemLevel1"] = { type = "Prefix", affix = "Combatant's", "+1 to Level of Socketed Melee Gems", statOrder = { 159 }, level = 8, group = "LocalIncreaseSocketedMeleeGemLevel", weightKey = { "bow", "wand", "focus", "shield", "weapon", "default", }, weightVal = { 0, 0, 0, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "gem" }, }, + ["LocalIncreaseSocketedMeleeGemLevel"] = { type = "Prefix", affix = "Weaponmaster's", "+2 to Level of Socketed Melee Gems", statOrder = { 159 }, level = 63, group = "LocalIncreaseSocketedMeleeGemLevel", weightKey = { "bow", "wand", "focus", "shield", "weapon", "default", }, weightVal = { 0, 0, 0, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "gem" }, }, + ["LocalIncreaseSocketedBowGemLevel1"] = { type = "Prefix", affix = "Fletcher's", "+1 to Level of Socketed Bow Gems", statOrder = { 158 }, level = 9, group = "LocalIncreaseSocketedBowGemLevel", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "gem" }, }, + ["LocalIncreaseSocketedBowGemLevel2"] = { type = "Prefix", affix = "Sharpshooter's", "+2 to Level of Socketed Bow Gems", statOrder = { 158 }, level = 64, group = "LocalIncreaseSocketedBowGemLevel", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "gem" }, }, + ["LocalIncreaseSocketedMinionGemLevel1"] = { type = "Prefix", affix = "Reanimator's", "+1 to Level of Socketed Minion Gems", statOrder = { 160 }, level = 14, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion", "gem" }, }, + ["LocalIncreaseSocketedMinionGemLevel2"] = { type = "Prefix", affix = "Summoner's", "+2 to Level of Socketed Minion Gems", statOrder = { 160 }, level = 65, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion", "gem" }, }, + ["LocalIncreaseSocketedMinionGemLevel3_"] = { type = "Prefix", affix = "Necromancer's", "+3 to Level of Socketed Minion Gems", statOrder = { 160 }, level = 86, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion", "gem" }, }, + ["GlobalIncreaseMinionSpellSkillGemLevel1"] = { type = "Prefix", affix = "Taskmaster's", "+1 to Level of all Minion Skill Gems", statOrder = { 1525 }, level = 14, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "minion", "gem" }, }, + ["GlobalIncreaseMinionSpellSkillGemLevel2"] = { type = "Prefix", affix = "Overseer's", "+2 to Level of all Minion Skill Gems", statOrder = { 1525 }, level = 75, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { "helmet", "default", }, weightVal = { 25, 0 }, modTags = { "minion", "gem" }, }, + ["LocalIncreasedAccuracy1"] = { type = "Suffix", affix = "of Calm", "+(5-15) to Accuracy Rating", statOrder = { 1933 }, level = 1, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, }, + ["LocalIncreasedAccuracy2"] = { type = "Suffix", affix = "of Steadiness", "+(16-60) to Accuracy Rating", statOrder = { 1933 }, level = 12, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, }, + ["LocalIncreasedAccuracy3"] = { type = "Suffix", affix = "of Accuracy", "+(61-100) to Accuracy Rating", statOrder = { 1933 }, level = 20, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, }, + ["LocalIncreasedAccuracy4"] = { type = "Suffix", affix = "of Precision", "+(101-130) to Accuracy Rating", statOrder = { 1933 }, level = 26, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, }, + ["LocalIncreasedAccuracy5"] = { type = "Suffix", affix = "of the Sniper", "+(131-165) to Accuracy Rating", statOrder = { 1933 }, level = 33, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, }, + ["LocalIncreasedAccuracy6"] = { type = "Suffix", affix = "of the Marksman", "+(166-200) to Accuracy Rating", statOrder = { 1933 }, level = 41, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, }, + ["LocalIncreasedAccuracy7"] = { type = "Suffix", affix = "of the Deadeye", "+(201-250) to Accuracy Rating", statOrder = { 1933 }, level = 50, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, }, + ["LocalIncreasedAccuracy"] = { type = "Suffix", affix = "of the Ranger", "+(251-320) to Accuracy Rating", statOrder = { 1933 }, level = 63, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, }, + ["LocalIncreasedAccuracy9_"] = { type = "Suffix", affix = "of the Assassin", "+(321-360) to Accuracy Rating", statOrder = { 1933 }, level = 80, group = "LocalAccuracyRating", weightKey = { "bow", "wand", "weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack" }, }, + ["LocalIncreasedAccuracyEssence7"] = { type = "Suffix", affix = "of the Essence", "+(361-380) to Accuracy Rating", statOrder = { 1933 }, level = 82, group = "LocalAccuracyRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, }, + ["LocalIncreasedAccuracyNew1"] = { type = "Suffix", affix = "of Steadiness", "+(80-130) to Accuracy Rating", statOrder = { 1933 }, level = 1, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack" }, }, + ["LocalIncreasedAccuracyNew2"] = { type = "Suffix", affix = "of Precision", "+(131-215) to Accuracy Rating", statOrder = { 1933 }, level = 20, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack" }, }, + ["LocalIncreasedAccuracyNew3"] = { type = "Suffix", affix = "of the Sniper", "+(216-325) to Accuracy Rating", statOrder = { 1933 }, level = 40, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack" }, }, + ["LocalIncreasedAccuracyNew4"] = { type = "Suffix", affix = "of the Marksman", "+(326-455) to Accuracy Rating", statOrder = { 1933 }, level = 60, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack" }, }, + ["LocalIncreasedAccuracyNew5"] = { type = "Suffix", affix = "of the Ranger", "+(456-624) to Accuracy Rating", statOrder = { 1933 }, level = 75, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack" }, }, + ["LocalIncreasedAccuracyNew6"] = { type = "Suffix", affix = "of Lioneye", "+(625-780) to Accuracy Rating", statOrder = { 1933 }, level = 85, group = "LocalAccuracyRating", weightKey = { "bow", "wand", "weapon", "default", }, weightVal = { 1000, 1000, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack" }, }, + ["CannotBeFrozenWarbands"] = { type = "Prefix", affix = "Mutewind", "Cannot be Frozen", statOrder = { 1749 }, level = 1, group = "CannotBeFrozen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["AdditionalArrowBow1_"] = { type = "Suffix", affix = "of Splintering", "Bow Attacks fire an additional Arrow", statOrder = { 1705 }, level = 70, group = "AdditionalArrows", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "attack" }, }, + ["AdditionalArrowBow2_"] = { type = "Suffix", affix = "of Many", "Bow Attacks fire 2 additional Arrows", statOrder = { 1705 }, level = 86, group = "AdditionalArrows", weightKey = { "bow", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, }, + ["AdditionalArrowQuiver1_"] = { type = "Suffix", affix = "of Splintering", "Bow Attacks fire an additional Arrow", statOrder = { 1705 }, level = 70, group = "AdditionalArrows", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "attack" }, }, + ["MinionRunSpeedEssence2"] = { type = "Suffix", affix = "of the Essence", "Minions have (13-15)% increased Movement Speed", statOrder = { 1680 }, level = 10, group = "MinionRunSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed", "minion" }, }, + ["MinionRunSpeedEssence3"] = { type = "Suffix", affix = "of the Essence", "Minions have (16-18)% increased Movement Speed", statOrder = { 1680 }, level = 26, group = "MinionRunSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed", "minion" }, }, + ["MinionRunSpeedEssence4"] = { type = "Suffix", affix = "of the Essence", "Minions have (19-21)% increased Movement Speed", statOrder = { 1680 }, level = 42, group = "MinionRunSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed", "minion" }, }, + ["MinionRunSpeedEssence5"] = { type = "Suffix", affix = "of the Essence", "Minions have (22-24)% increased Movement Speed", statOrder = { 1680 }, level = 58, group = "MinionRunSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed", "minion" }, }, + ["MinionRunSpeedEssence6"] = { type = "Suffix", affix = "of the Essence", "Minions have (25-27)% increased Movement Speed", statOrder = { 1680 }, level = 74, group = "MinionRunSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed", "minion" }, }, + ["MinionRunSpeedEssence7"] = { type = "Suffix", affix = "of the Essence", "Minions have (28-30)% increased Movement Speed", statOrder = { 1680 }, level = 82, group = "MinionRunSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed", "minion" }, }, + ["MinionLifeEssence2"] = { type = "Suffix", affix = "of the Essence", "Minions have (13-15)% increased maximum Life", statOrder = { 1677 }, level = 10, group = "MinionLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "minion" }, }, + ["MinionLifeEssence3_"] = { type = "Suffix", affix = "of the Essence", "Minions have (16-18)% increased maximum Life", statOrder = { 1677 }, level = 26, group = "MinionLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "minion" }, }, + ["MinionLifeEssence4"] = { type = "Suffix", affix = "of the Essence", "Minions have (19-21)% increased maximum Life", statOrder = { 1677 }, level = 42, group = "MinionLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "minion" }, }, + ["MinionLifeEssence5"] = { type = "Suffix", affix = "of the Essence", "Minions have (22-24)% increased maximum Life", statOrder = { 1677 }, level = 58, group = "MinionLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "minion" }, }, + ["MinionLifeEssence6"] = { type = "Suffix", affix = "of the Essence", "Minions have (25-27)% increased maximum Life", statOrder = { 1677 }, level = 74, group = "MinionLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "minion" }, }, + ["MinionLifeEssence7"] = { type = "Suffix", affix = "of the Essence", "Minions have (28-30)% increased maximum Life", statOrder = { 1677 }, level = 82, group = "MinionLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "minion" }, }, + ["MinionDamageEssence2"] = { type = "Suffix", affix = "of the Essence", "Minions deal (7-10)% increased Damage", statOrder = { 1882 }, level = 10, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageEssence3"] = { type = "Suffix", affix = "of the Essence", "Minions deal (11-14)% increased Damage", statOrder = { 1882 }, level = 26, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageEssence4_"] = { type = "Suffix", affix = "of the Essence", "Minions deal (15-18)% increased Damage", statOrder = { 1882 }, level = 42, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageEssence5"] = { type = "Suffix", affix = "of the Essence", "Minions deal (19-22)% increased Damage", statOrder = { 1882 }, level = 58, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageEssence6"] = { type = "Suffix", affix = "of the Essence", "Minions deal (23-26)% increased Damage", statOrder = { 1882 }, level = 74, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageEssence7"] = { type = "Suffix", affix = "of the Essence", "Minions deal (27-30)% increased Damage", statOrder = { 1882 }, level = 82, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, + ["MinionAccuracyEssence2_"] = { type = "Suffix", affix = "of the Essence", "(13-15)% increased Minion Accuracy Rating", statOrder = { 9076 }, level = 10, group = "MinionAccuracyRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "minion" }, }, + ["MinionAccuracyEssence3_"] = { type = "Suffix", affix = "of the Essence", "(16-18)% increased Minion Accuracy Rating", statOrder = { 9076 }, level = 26, group = "MinionAccuracyRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "minion" }, }, + ["MinionAccuracyEssence4___"] = { type = "Suffix", affix = "of the Essence", "(19-21)% increased Minion Accuracy Rating", statOrder = { 9076 }, level = 42, group = "MinionAccuracyRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "minion" }, }, + ["MinionAccuracyEssence5"] = { type = "Suffix", affix = "of the Essence", "(22-24)% increased Minion Accuracy Rating", statOrder = { 9076 }, level = 58, group = "MinionAccuracyRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "minion" }, }, + ["MinionAccuracyEssence6"] = { type = "Suffix", affix = "of the Essence", "(25-27)% increased Minion Accuracy Rating", statOrder = { 9076 }, level = 74, group = "MinionAccuracyRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "minion" }, }, + ["MinionAccuracyEssence7_"] = { type = "Suffix", affix = "of the Essence", "(28-30)% increased Minion Accuracy Rating", statOrder = { 9076 }, level = 82, group = "MinionAccuracyRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "minion" }, }, + ["MinionDamageGlovesEssence2"] = { type = "Prefix", affix = "Essences", "Minions deal (13-15)% increased Damage", statOrder = { 1882 }, level = 10, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageGlovesEssence3"] = { type = "Prefix", affix = "Essences", "Minions deal (16-18)% increased Damage", statOrder = { 1882 }, level = 26, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageGlovesEssence4"] = { type = "Prefix", affix = "Essences", "Minions deal (19-21)% increased Damage", statOrder = { 1882 }, level = 42, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageGlovesEssence5"] = { type = "Prefix", affix = "Essences", "Minions deal (22-24)% increased Damage", statOrder = { 1882 }, level = 58, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageGlovesEssence6___"] = { type = "Prefix", affix = "Essences", "Minions deal (25-27)% increased Damage", statOrder = { 1882 }, level = 74, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageGlovesEssence7"] = { type = "Prefix", affix = "Essences", "Minions deal (28-30)% increased Damage", statOrder = { 1882 }, level = 82, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageEssenceTwoHand2"] = { type = "Suffix", affix = "of the Essence", "Minions deal (10-15)% increased Damage", statOrder = { 1882 }, level = 10, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageEssenceTwoHand3_"] = { type = "Suffix", affix = "of the Essence", "Minions deal (16-21)% increased Damage", statOrder = { 1882 }, level = 26, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageEssenceTwoHand4"] = { type = "Suffix", affix = "of the Essence", "Minions deal (22-27)% increased Damage", statOrder = { 1882 }, level = 42, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageEssenceTwoHand5_"] = { type = "Suffix", affix = "of the Essence", "Minions deal (28-33)% increased Damage", statOrder = { 1882 }, level = 58, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageEssenceTwoHand6"] = { type = "Suffix", affix = "of the Essence", "Minions deal (34-39)% increased Damage", statOrder = { 1882 }, level = 74, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageEssenceTwoHand7_"] = { type = "Suffix", affix = "of the Essence", "Minions deal (40-45)% increased Damage", statOrder = { 1882 }, level = 82, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, + ["BeltIncreasedFlaskChargesGained1"] = { type = "Suffix", affix = "of Refilling", "(5-10)% increased Flask Charges gained", statOrder = { 2092 }, level = 2, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, }, + ["BeltIncreasedFlaskChargesGained2"] = { type = "Suffix", affix = "of Restocking", "(11-16)% increased Flask Charges gained", statOrder = { 2092 }, level = 16, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, }, + ["BeltIncreasedFlaskChargesGained3_____"] = { type = "Suffix", affix = "of Replenishing", "(17-22)% increased Flask Charges gained", statOrder = { 2092 }, level = 32, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, }, + ["BeltIncreasedFlaskChargesGained4"] = { type = "Suffix", affix = "of Pouring", "(23-28)% increased Flask Charges gained", statOrder = { 2092 }, level = 48, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, }, + ["BeltIncreasedFlaskChargesGained5_"] = { type = "Suffix", affix = "of Brimming", "(29-34)% increased Flask Charges gained", statOrder = { 2092 }, level = 70, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, }, + ["BeltIncreasedFlaskChargesGained6"] = { type = "Suffix", affix = "of Overflowing", "(35-40)% increased Flask Charges gained", statOrder = { 2092 }, level = 84, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, }, + ["BeltIncreasedFlaskEffect1_"] = { type = "Prefix", affix = "Distilling", "Flasks applied to you have (4-6)% increased Effect", statOrder = { 2652 }, level = 45, group = "FlaskEffect", weightKey = { "belt", "default", }, weightVal = { 250, 0 }, modTags = { "flask" }, }, + ["BeltIncreasedFlaskEffect2"] = { type = "Prefix", affix = "Condensing", "Flasks applied to you have (7-9)% increased Effect", statOrder = { 2652 }, level = 65, group = "FlaskEffect", weightKey = { "belt", "default", }, weightVal = { 250, 0 }, modTags = { "flask" }, }, + ["BeltIncreasedFlaskEffect3"] = { type = "Prefix", affix = "Magnifying", "Flasks applied to you have (10-12)% increased Effect", statOrder = { 2652 }, level = 85, group = "FlaskEffect", weightKey = { "belt", "default", }, weightVal = { 250, 0 }, modTags = { "flask" }, }, + ["BeltReducedFlaskChargesUsed1"] = { type = "Suffix", affix = "of Sipping", "(10-20)% reduced Flask Charges used", statOrder = { 2093 }, level = 3, group = "BeltReducedFlaskChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, + ["BeltIncreasedFlaskDuration1"] = { type = "Suffix", affix = "of Sipping", "(4-9)% increased Flask Effect Duration", statOrder = { 2096 }, level = 8, group = "BeltIncreasedFlaskDuration", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, }, + ["BeltIncreasedFlaskDuration2"] = { type = "Suffix", affix = "of Tasting", "(10-15)% increased Flask Effect Duration", statOrder = { 2096 }, level = 34, group = "BeltIncreasedFlaskDuration", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, }, + ["BeltIncreasedFlaskDuration3"] = { type = "Suffix", affix = "of Savouring", "(16-21)% increased Flask Effect Duration", statOrder = { 2096 }, level = 50, group = "BeltIncreasedFlaskDuration", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, }, + ["BeltIncreasedFlaskDuration4"] = { type = "Suffix", affix = "of Relishing", "(22-27)% increased Flask Effect Duration", statOrder = { 2096 }, level = 66, group = "BeltIncreasedFlaskDuration", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, }, + ["BeltIncreasedFlaskDuration5_"] = { type = "Suffix", affix = "of Reveling", "(28-33)% increased Flask Effect Duration", statOrder = { 2096 }, level = 82, group = "BeltIncreasedFlaskDuration", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, }, + ["BeltFlaskLifeRecoveryRate1"] = { type = "Prefix", affix = "Restoring", "(5-10)% increased Flask Life Recovery rate", statOrder = { 2098 }, level = 5, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "life" }, }, + ["BeltFlaskLifeRecoveryRate2"] = { type = "Prefix", affix = "Recovering", "(11-16)% increased Flask Life Recovery rate", statOrder = { 2098 }, level = 21, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "life" }, }, + ["BeltFlaskLifeRecoveryRate3_"] = { type = "Prefix", affix = "Renewing", "(17-22)% increased Flask Life Recovery rate", statOrder = { 2098 }, level = 35, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "life" }, }, + ["BeltFlaskLifeRecoveryRate4"] = { type = "Prefix", affix = "Refreshing", "(23-28)% increased Flask Life Recovery rate", statOrder = { 2098 }, level = 49, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "life" }, }, + ["BeltFlaskLifeRecoveryRate5"] = { type = "Prefix", affix = "Rejuvenating", "(29-34)% increased Flask Life Recovery rate", statOrder = { 2098 }, level = 63, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "life" }, }, + ["BeltFlaskLifeRecoveryRate6"] = { type = "Prefix", affix = "Regenerating", "(35-40)% increased Flask Life Recovery rate", statOrder = { 2098 }, level = 77, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "life" }, }, + ["BeltFlaskLifeRecoveryRateEssence1"] = { type = "Prefix", affix = "Essences", "(8-11)% increased Flask Life Recovery rate", statOrder = { 2098 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, }, + ["BeltFlaskLifeRecoveryRateEssence2"] = { type = "Prefix", affix = "Essences", "(12-15)% increased Flask Life Recovery rate", statOrder = { 2098 }, level = 10, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, }, + ["BeltFlaskLifeRecoveryRateEssence3"] = { type = "Prefix", affix = "Essences", "(16-19)% increased Flask Life Recovery rate", statOrder = { 2098 }, level = 26, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, }, + ["BeltFlaskLifeRecoveryRateEssence4"] = { type = "Prefix", affix = "Essences", "(20-23)% increased Flask Life Recovery rate", statOrder = { 2098 }, level = 42, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, }, + ["BeltFlaskLifeRecoveryRateEssence5"] = { type = "Prefix", affix = "Essences", "(24-27)% increased Flask Life Recovery rate", statOrder = { 2098 }, level = 58, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, }, + ["BeltFlaskLifeRecoveryRateEssence6"] = { type = "Prefix", affix = "Essences", "(28-31)% increased Flask Life Recovery rate", statOrder = { 2098 }, level = 74, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, }, + ["BeltFlaskLifeRecoveryRateEssence7"] = { type = "Prefix", affix = "Essences", "(32-35)% increased Flask Life Recovery rate", statOrder = { 2098 }, level = 82, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, }, + ["BeltFlaskManaRecoveryRate1_"] = { type = "Prefix", affix = "Affecting", "(5-10)% increased Flask Mana Recovery rate", statOrder = { 2099 }, level = 5, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "mana" }, }, + ["BeltFlaskManaRecoveryRate2"] = { type = "Prefix", affix = "Stirring", "(11-16)% increased Flask Mana Recovery rate", statOrder = { 2099 }, level = 21, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "mana" }, }, + ["BeltFlaskManaRecoveryRate3_"] = { type = "Prefix", affix = "Heartening", "(17-22)% increased Flask Mana Recovery rate", statOrder = { 2099 }, level = 35, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "mana" }, }, + ["BeltFlaskManaRecoveryRate4__"] = { type = "Prefix", affix = "Exciting", "(23-28)% increased Flask Mana Recovery rate", statOrder = { 2099 }, level = 49, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "mana" }, }, + ["BeltFlaskManaRecoveryRate5"] = { type = "Prefix", affix = "Galvanizing", "(29-34)% increased Flask Mana Recovery rate", statOrder = { 2099 }, level = 63, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "mana" }, }, + ["BeltFlaskManaRecoveryRate6"] = { type = "Prefix", affix = "Inspiring", "(35-40)% increased Flask Mana Recovery rate", statOrder = { 2099 }, level = 77, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "mana" }, }, + ["BeltFlaskManaRecoveryRateEssence1"] = { type = "Prefix", affix = "Essences", "(11-15)% increased Flask Mana Recovery rate", statOrder = { 2099 }, level = 58, group = "BeltFlaskManaRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana" }, }, + ["BeltFlaskManaRecoveryRateEssence2"] = { type = "Prefix", affix = "Essences", "(16-20)% increased Flask Mana Recovery rate", statOrder = { 2099 }, level = 74, group = "BeltFlaskManaRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana" }, }, + ["BeltFlaskManaRecoveryRateEssence3"] = { type = "Prefix", affix = "Essences", "(21-25)% increased Flask Mana Recovery rate", statOrder = { 2099 }, level = 82, group = "BeltFlaskManaRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana" }, }, + ["ChanceToAvoidShockEssence2_"] = { type = "Suffix", affix = "of the Essence", "(35-38)% chance to Avoid being Shocked", statOrder = { 1759 }, level = 10, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ChanceToAvoidShockEssence3"] = { type = "Suffix", affix = "of the Essence", "(39-42)% chance to Avoid being Shocked", statOrder = { 1759 }, level = 26, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ChanceToAvoidShockEssence4"] = { type = "Suffix", affix = "of the Essence", "(43-46)% chance to Avoid being Shocked", statOrder = { 1759 }, level = 42, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ChanceToAvoidShockEssence5"] = { type = "Suffix", affix = "of the Essence", "(47-50)% chance to Avoid being Shocked", statOrder = { 1759 }, level = 58, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ChanceToAvoidShockEssence6"] = { type = "Suffix", affix = "of the Essence", "(51-55)% chance to Avoid being Shocked", statOrder = { 1759 }, level = 74, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ChanceToAvoidShockEssence7"] = { type = "Suffix", affix = "of the Essence", "(56-60)% chance to Avoid being Shocked", statOrder = { 1759 }, level = 82, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["AttackerTakesDamage1"] = { type = "Prefix", affix = "Thorny", "Reflects (1-4) Physical Damage to Melee Attackers", statOrder = { 2111 }, level = 1, group = "AttackerTakesDamageNoRange", weightKey = { "body_armour", "shield", "belt", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["AttackerTakesDamage2"] = { type = "Prefix", affix = "Spiny", "Reflects (5-10) Physical Damage to Melee Attackers", statOrder = { 2111 }, level = 10, group = "AttackerTakesDamageNoRange", weightKey = { "body_armour", "shield", "belt", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["AttackerTakesDamage3"] = { type = "Prefix", affix = "Barbed", "Reflects (11-24) Physical Damage to Melee Attackers", statOrder = { 2111 }, level = 20, group = "AttackerTakesDamageNoRange", weightKey = { "body_armour", "shield", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["AttackerTakesDamage4"] = { type = "Prefix", affix = "Jagged", "Reflects (25-50) Physical Damage to Melee Attackers", statOrder = { 2111 }, level = 35, group = "AttackerTakesDamageNoRange", weightKey = { "body_armour", "shield", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["AttackerTakesDamageEssence5"] = { type = "Prefix", affix = "Essences", "Reflects (51-100) Physical Damage to Melee Attackers", statOrder = { 2111 }, level = 58, group = "AttackerTakesDamageNoRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["AttackerTakesDamageEssence6"] = { type = "Prefix", affix = "Essences", "Reflects (101-150) Physical Damage to Melee Attackers", statOrder = { 2111 }, level = 74, group = "AttackerTakesDamageNoRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["AttackerTakesDamageEssence7"] = { type = "Prefix", affix = "Essences", "Reflects (151-200) Physical Damage to Melee Attackers", statOrder = { 2111 }, level = 82, group = "AttackerTakesDamageNoRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["ChanceToAvoidFreezeEssence3"] = { type = "Suffix", affix = "of the Essence", "(39-42)% chance to Avoid being Frozen", statOrder = { 1756 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ChanceToAvoidFreezeEssence4"] = { type = "Suffix", affix = "of the Essence", "(43-46)% chance to Avoid being Frozen", statOrder = { 1756 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ChanceToAvoidFreezeEssence5"] = { type = "Suffix", affix = "of the Essence", "(47-50)% chance to Avoid being Frozen", statOrder = { 1756 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ChanceToAvoidFreezeEssence6"] = { type = "Suffix", affix = "of the Essence", "(51-55)% chance to Avoid being Frozen", statOrder = { 1756 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ChanceToAvoidFreezeEssence7"] = { type = "Suffix", affix = "of the Essence", "(56-60)% chance to Avoid being Frozen", statOrder = { 1756 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["AdditionalBlockChance1"] = { type = "Suffix", affix = "of Intercepting", "+(1-3)% Chance to Block", statOrder = { 2158 }, level = 10, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, + ["AdditionalBlockChance2"] = { type = "Suffix", affix = "of Walling", "+(4-5)% Chance to Block", statOrder = { 2158 }, level = 25, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, + ["AdditionalBlockChance3"] = { type = "Suffix", affix = "of Blocking", "+(6-7)% Chance to Block", statOrder = { 2158 }, level = 40, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, + ["AdditionalBlockChance4_"] = { type = "Suffix", affix = "of the Stalwart", "+(8-9)% Chance to Block", statOrder = { 2158 }, level = 55, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, + ["AdditionalBlockChance5"] = { type = "Suffix", affix = "of the Buttress", "+(10-11)% Chance to Block", statOrder = { 2158 }, level = 66, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, + ["AdditionalBlockChance6"] = { type = "Suffix", affix = "of the Sentinel", "+(12-13)% Chance to Block", statOrder = { 2158 }, level = 77, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, + ["AdditionalBlockChance7"] = { type = "Suffix", affix = "of the Citadel", "+(14-15)% Chance to Block", statOrder = { 2158 }, level = 86, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, + ["AdditionalShieldBlockChance1"] = { type = "Suffix", affix = "of the Essence", "+(1-2)% Chance to Block", statOrder = { 2158 }, level = 42, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, + ["AdditionalShieldBlockChance2"] = { type = "Suffix", affix = "of the Essence", "+(3-4)% Chance to Block", statOrder = { 2158 }, level = 58, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, + ["AdditionalShieldBlockChance3"] = { type = "Suffix", affix = "of the Essence", "+(5-6)% Chance to Block", statOrder = { 2158 }, level = 74, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, + ["AdditionalShieldBlockChance4"] = { type = "Suffix", affix = "of the Essence", "+(7-8)% Chance to Block", statOrder = { 2158 }, level = 82, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, + ["PhysicalDamageTakenAsFirePercentWarbands"] = { type = "Prefix", affix = "Redblade", "10% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2356 }, level = 1, group = "PhysicalDamageTakenAsFirePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["ChanceToAvoidIgniteEssence4"] = { type = "Suffix", affix = "of the Essence", "(43-46)% chance to Avoid being Ignited", statOrder = { 1757 }, level = 42, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ChanceToAvoidIgniteEssence5"] = { type = "Suffix", affix = "of the Essence", "(47-50)% chance to Avoid being Ignited", statOrder = { 1757 }, level = 58, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ChanceToAvoidIgniteEssence6"] = { type = "Suffix", affix = "of the Essence", "(51-55)% chance to Avoid being Ignited", statOrder = { 1757 }, level = 74, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ChanceToAvoidIgniteEssence7_"] = { type = "Suffix", affix = "of the Essence", "(56-60)% chance to Avoid being Ignited", statOrder = { 1757 }, level = 82, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ChanceToBlockProjectileAttacks1_"] = { type = "Suffix", affix = "of Deflection", "+(1-2)% chance to Block Projectile Attack Damage", statOrder = { 2373 }, level = 8, group = "BlockVsProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, + ["ChanceToBlockProjectileAttacks2"] = { type = "Suffix", affix = "of Protection", "+(3-4)% chance to Block Projectile Attack Damage", statOrder = { 2373 }, level = 19, group = "BlockVsProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, + ["ChanceToBlockProjectileAttacks3"] = { type = "Suffix", affix = "of Cover", "+(5-6)% chance to Block Projectile Attack Damage", statOrder = { 2373 }, level = 30, group = "BlockVsProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, + ["ChanceToBlockProjectileAttacks4"] = { type = "Suffix", affix = "of Asylum", "+(7-8)% chance to Block Projectile Attack Damage", statOrder = { 2373 }, level = 55, group = "BlockVsProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, + ["ChanceToBlockProjectileAttacks5_"] = { type = "Suffix", affix = "of Refuge", "+(9-10)% chance to Block Projectile Attack Damage", statOrder = { 2373 }, level = 70, group = "BlockVsProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, + ["ChanceToBlockProjectileAttacks6"] = { type = "Suffix", affix = "of Sanctuary", "+(11-12)% chance to Block Projectile Attack Damage", statOrder = { 2373 }, level = 81, group = "BlockVsProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, + ["AllDamageMasterVendorItem"] = { type = "Prefix", affix = "Leo's", "(5-15)% increased Damage", statOrder = { 1103 }, level = 1, group = "AllDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, }, + ["ReducedManaReservationCostEssence4"] = { type = "Suffix", affix = "of the Essence", "4% increased Mana Reservation Efficiency of Skills", statOrder = { 2141 }, level = 42, group = "ReducedReservation", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, + ["ReducedManaReservationCostEssence5"] = { type = "Suffix", affix = "of the Essence", "6% increased Mana Reservation Efficiency of Skills", statOrder = { 2141 }, level = 58, group = "ReducedReservation", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, + ["ReducedManaReservationCostEssence6"] = { type = "Suffix", affix = "of the Essence", "8% increased Mana Reservation Efficiency of Skills", statOrder = { 2141 }, level = 74, group = "ReducedReservation", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, + ["ReducedManaReservationCostEssence7"] = { type = "Suffix", affix = "of the Essence", "10% increased Mana Reservation Efficiency of Skills", statOrder = { 2141 }, level = 82, group = "ReducedReservation", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, + ["ManaReservationEfficiencyEssence4"] = { type = "Suffix", affix = "of the Essence", "(3-4)% increased Mana Reservation Efficiency of Skills", statOrder = { 2137 }, level = 42, group = "ManaReservationEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, + ["ManaReservationEfficiencyEssence5__"] = { type = "Suffix", affix = "of the Essence", "(5-6)% increased Mana Reservation Efficiency of Skills", statOrder = { 2137 }, level = 58, group = "ManaReservationEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, + ["ManaReservationEfficiencyEssence6_"] = { type = "Suffix", affix = "of the Essence", "(7-8)% increased Mana Reservation Efficiency of Skills", statOrder = { 2137 }, level = 74, group = "ManaReservationEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, + ["ManaReservationEfficiencyEssence7"] = { type = "Suffix", affix = "of the Essence", "(9-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 2137 }, level = 82, group = "ManaReservationEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, + ["ReducedLocalAttributeRequirements1"] = { type = "Suffix", affix = "of the Worthy", "18% reduced Attribute Requirements", statOrder = { 988 }, level = 36, group = "LocalAttributeRequirements", weightKey = { "weapon", "body_armour", "helmet", "shield", "gloves", "boots", "default", }, weightVal = { 1000, 850, 650, 750, 450, 550, 0 }, modTags = { }, }, + ["ReducedLocalAttributeRequirements2"] = { type = "Suffix", affix = "of the Apt", "32% reduced Attribute Requirements", statOrder = { 988 }, level = 60, group = "LocalAttributeRequirements", weightKey = { "weapon", "body_armour", "helmet", "shield", "gloves", "boots", "default", }, weightVal = { 1000, 850, 650, 750, 450, 550, 0 }, modTags = { }, }, + ["LightRadiusAndAccuracy1"] = { type = "Suffix", affix = "of Shining", "+(10-20) to Accuracy Rating", "5% increased Light Radius", statOrder = { 1344, 2409 }, level = 8, group = "LightRadiusAndAccuracy", weightKey = { "helmet", "ring", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, + ["LightRadiusAndAccuracy2"] = { type = "Suffix", affix = "of Light", "+(21-40) to Accuracy Rating", "10% increased Light Radius", statOrder = { 1344, 2409 }, level = 15, group = "LightRadiusAndAccuracy", weightKey = { "helmet", "ring", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, + ["LightRadiusAndAccuracy3"] = { type = "Suffix", affix = "of Radiance", "(16-20)% increased Global Accuracy Rating", "15% increased Light Radius", statOrder = { 1345, 2409 }, level = 30, group = "LightRadiusAndAccuracyPercent", weightKey = { "helmet", "ring", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "attack" }, }, + ["LightRadiusAndAccuracyNew1"] = { type = "Suffix", affix = "of Shining", "(9-11)% increased Global Accuracy Rating", "5% increased Light Radius", statOrder = { 1345, 2409 }, level = 8, group = "LightRadiusAndAccuracyPercent", weightKey = { "helmet", "ring", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "attack" }, }, + ["LightRadiusAndAccuracyNew2"] = { type = "Suffix", affix = "of Light", "(12-15)% increased Global Accuracy Rating", "10% increased Light Radius", statOrder = { 1345, 2409 }, level = 15, group = "LightRadiusAndAccuracyPercent", weightKey = { "helmet", "ring", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "attack" }, }, + ["LocalLightRadiusAndAccuracy1"] = { type = "Suffix", affix = "of Shining", "+(10-20) to Accuracy Rating", "5% increased Light Radius", statOrder = { 1933, 2409 }, level = 8, group = "LocalLightRadiusAndAccuracy", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, }, + ["LocalLightRadiusAndAccuracy2"] = { type = "Suffix", affix = "of Light", "+(21-40) to Accuracy Rating", "10% increased Light Radius", statOrder = { 1933, 2409 }, level = 15, group = "LocalLightRadiusAndAccuracy", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, }, + ["LocalLightRadiusAndAccuracy3"] = { type = "Suffix", affix = "of Radiance", "(16-20)% increased Global Accuracy Rating", "15% increased Light Radius", statOrder = { 1345, 2409 }, level = 30, group = "LocalLightRadiusAndAccuracyPercent", weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, modTags = { "attack" }, }, + ["LocalLightRadiusAndAccuracyNew1_"] = { type = "Suffix", affix = "of Shining", "(9-11)% increased Global Accuracy Rating", "5% increased Light Radius", statOrder = { 1345, 2409 }, level = 8, group = "LocalLightRadiusAndAccuracyPercent", weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack" }, }, + ["LocalLightRadiusAndAccuracyNew2"] = { type = "Suffix", affix = "of Light", "(12-15)% increased Global Accuracy Rating", "10% increased Light Radius", statOrder = { 1345, 2409 }, level = 15, group = "LocalLightRadiusAndAccuracyPercent", weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack" }, }, + ["LocalIncreasedMeleeWeaponRangeEssence5"] = { type = "Suffix", affix = "of the Essence", "+0.1 metres to Weapon Range", statOrder = { 2655 }, level = 58, group = "LocalMeleeWeaponRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, }, + ["LocalIncreasedMeleeWeaponRangeEssence6"] = { type = "Suffix", affix = "of the Essence", "+0.2 metres to Weapon Range", statOrder = { 2655 }, level = 74, group = "LocalMeleeWeaponRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, }, + ["LocalIncreasedMeleeWeaponRangeEssence7"] = { type = "Suffix", affix = "of the Essence", "+0.3 metres to Weapon Range", statOrder = { 2655 }, level = 82, group = "LocalMeleeWeaponRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, }, + ["GainLifeOnBlock1"] = { type = "Suffix", affix = "of Repairing", "(5-15) Life gained when you Block", statOrder = { 1668 }, level = 11, group = "GainLifeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "life" }, }, + ["GainLifeOnBlock2_"] = { type = "Suffix", affix = "of Resurgence", "(16-25) Life gained when you Block", statOrder = { 1668 }, level = 22, group = "GainLifeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "life" }, }, + ["GainLifeOnBlock3"] = { type = "Suffix", affix = "of Renewal", "(26-40) Life gained when you Block", statOrder = { 1668 }, level = 36, group = "GainLifeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "life" }, }, + ["GainLifeOnBlock4"] = { type = "Suffix", affix = "of Revival", "(41-60) Life gained when you Block", statOrder = { 1668 }, level = 48, group = "GainLifeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "life" }, }, + ["GainLifeOnBlock5"] = { type = "Suffix", affix = "of Rebounding", "(61-85) Life gained when you Block", statOrder = { 1668 }, level = 60, group = "GainLifeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "life" }, }, + ["GainLifeOnBlock6_"] = { type = "Suffix", affix = "of Revitalization", "(86-100) Life gained when you Block", statOrder = { 1668 }, level = 75, group = "GainLifeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "life" }, }, + ["GainManaOnBlock1"] = { type = "Suffix", affix = "of Redirection", "(4-12) Mana gained when you Block", statOrder = { 1669 }, level = 15, group = "GainManaOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "mana" }, }, + ["GainManaOnBlock2"] = { type = "Suffix", affix = "of Transformation", "(13-21) Mana gained when you Block", statOrder = { 1669 }, level = 32, group = "GainManaOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "mana" }, }, + ["GainManaOnBlock3"] = { type = "Suffix", affix = "of Conservation", "(22-30) Mana gained when you Block", statOrder = { 1669 }, level = 58, group = "GainManaOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "mana" }, }, + ["GainManaOnBlock4"] = { type = "Suffix", affix = "of Utilisation", "(31-39) Mana gained when you Block", statOrder = { 1669 }, level = 75, group = "GainManaOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "mana" }, }, + ["FishingLineStrength"] = { type = "Prefix", affix = "Filigree", "(20-40)% increased Fishing Line Strength", statOrder = { 2753 }, level = 1, group = "FishingLineStrength", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["FishingPoolConsumption"] = { type = "Prefix", affix = "Calming", "(15-30)% reduced Fishing Pool Consumption", statOrder = { 2754 }, level = 1, group = "FishingPoolConsumption", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["FishingLureType"] = { type = "Prefix", affix = "Alluring", "Rhoa Feather Lure", statOrder = { 2755 }, level = 1, group = "FishingLureType", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["FishingHookType"] = { type = "Suffix", affix = "of Snaring", "Karui Stone Hook", statOrder = { 2756 }, level = 1, group = "FishingHookType", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["FishingCastDistance"] = { type = "Suffix", affix = "of Flight", "(30-50)% increased Fishing Range", statOrder = { 2757 }, level = 1, group = "FishingCastDistance", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["FishingQuantity"] = { type = "Suffix", affix = "of Fascination", "(15-20)% increased Quantity of Fish Caught", statOrder = { 2758 }, level = 1, group = "FishingQuantity", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { "drop" }, }, + ["FishingRarity"] = { type = "Suffix", affix = "of Bounty", "(25-40)% increased Rarity of Fish Caught", statOrder = { 2759 }, level = 1, group = "FishingRarity", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { "drop" }, }, + ["ChanceToDodge1"] = { type = "Suffix", affix = "of Mist", "+3% chance to Suppress Spell Damage", statOrder = { 1055 }, level = 35, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["ChanceToDodge2"] = { type = "Suffix", affix = "of Haze", "+4% chance to Suppress Spell Damage", statOrder = { 1055 }, level = 62, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["ChanceToDodge3"] = { type = "Suffix", affix = "of Fog", "+6% chance to Suppress Spell Damage", statOrder = { 1055 }, level = 78, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["ChanceToDodgeEssence4"] = { type = "Suffix", affix = "of the Essence", "+(4-6)% chance to Suppress Spell Damage", statOrder = { 1055 }, level = 42, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["ChanceToDodgeEssence5"] = { type = "Suffix", affix = "of the Essence", "+(7-9)% chance to Suppress Spell Damage", statOrder = { 1055 }, level = 58, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["ChanceToDodgeEssence6"] = { type = "Suffix", affix = "of the Essence", "+(10-12)% chance to Suppress Spell Damage", statOrder = { 1055 }, level = 74, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["ChanceToDodgeEssence7"] = { type = "Suffix", affix = "of the Essence", "+(13-15)% chance to Suppress Spell Damage", statOrder = { 1055 }, level = 82, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["ChanceToDodgeSpells1"] = { type = "Suffix", affix = "of Prayers", "+3% chance to Suppress Spell Damage", statOrder = { 1055 }, level = 35, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["ChanceToDodgeSpells2"] = { type = "Suffix", affix = "of Invocations", "+4% chance to Suppress Spell Damage", statOrder = { 1055 }, level = 62, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["ChanceToDodgeSpells3"] = { type = "Suffix", affix = "of Incantations", "+6% chance to Suppress Spell Damage", statOrder = { 1055 }, level = 78, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["ChanceToDodgeSpellsEssence5"] = { type = "Suffix", affix = "of the Essence", "+(4-6)% chance to Suppress Spell Damage", statOrder = { 1055 }, level = 1, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["ChanceToDodgeSpellsEssence6"] = { type = "Suffix", affix = "of the Essence", "+(7-9)% chance to Suppress Spell Damage", statOrder = { 1055 }, level = 1, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["ChanceToDodgeSpellsEssence7"] = { type = "Suffix", affix = "of the Essence", "+(10-12)% chance to Suppress Spell Damage", statOrder = { 1055 }, level = 1, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["ChaosResistanceWhileUsingFlaskEssence1"] = { type = "Suffix", affix = "of the Essence", "+50% to Chaos Resistance during any Flask Effect", statOrder = { 3209 }, level = 63, group = "ChaosResistanceWhileUsingFlask", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "chaos", "resistance" }, }, + ["SpellBlockPercentage1__"] = { type = "Suffix", affix = "of the Barrier", "(4-6)% Chance to Block Spell Damage", statOrder = { 1072 }, level = 30, group = "SpellBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, + ["SpellBlockPercentage2"] = { type = "Suffix", affix = "of the Bulwark", "(7-9)% Chance to Block Spell Damage", statOrder = { 1072 }, level = 52, group = "SpellBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, + ["SpellBlockPercentage3_"] = { type = "Suffix", affix = "of the Barricade", "(10-12)% Chance to Block Spell Damage", statOrder = { 1072 }, level = 71, group = "SpellBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, + ["SpellBlockPercentage4_"] = { type = "Suffix", affix = "of the Bastion", "(13-15)% Chance to Block Spell Damage", statOrder = { 1072 }, level = 84, group = "SpellBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, ["LocalIncreasedBlockPercentage1"] = { type = "Prefix", affix = "Steadfast", "(40-45)% increased Chance to Block", statOrder = { 70 }, level = 2, group = "LocalIncreasedBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 0 }, modTags = { "block" }, }, ["LocalIncreasedBlockPercentage2"] = { type = "Prefix", affix = "Unrelenting", "(46-51)% increased Chance to Block", statOrder = { 70 }, level = 15, group = "LocalIncreasedBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 0 }, modTags = { "block" }, }, ["LocalIncreasedBlockPercentage3"] = { type = "Prefix", affix = "Adamant", "(52-57)% increased Chance to Block", statOrder = { 70 }, level = 35, group = "LocalIncreasedBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 0 }, modTags = { "block" }, }, @@ -1371,10106 +1371,10106 @@ return { ["LocalIncreasedBlockPercentage5"] = { type = "Prefix", affix = "Unwavering", "(64-69)% increased Chance to Block", statOrder = { 70 }, level = 61, group = "LocalIncreasedBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 0 }, modTags = { "block" }, }, ["LocalIncreasedBlockPercentage6"] = { type = "Prefix", affix = "Enduring", "(70-75)% increased Chance to Block", statOrder = { 70 }, level = 77, group = "LocalIncreasedBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 0 }, modTags = { "block" }, }, ["LocalIncreasedBlockPercentage7"] = { type = "Prefix", affix = "Unyielding", "(76-81)% increased Chance to Block", statOrder = { 70 }, level = 86, group = "LocalIncreasedBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 0 }, modTags = { "block" }, }, - ["ShieldSpellBlockPercentage1"] = { type = "Prefix", affix = "Mystic", "(4-5)% Chance to Block Spell Damage", statOrder = { 1046 }, level = 16, group = "SpellBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 500, 500, 500, 500, 1000, 1000, 0 }, modTags = { "block" }, }, - ["ShieldSpellBlockPercentage2"] = { type = "Prefix", affix = "Clairvoyant", "(6-7)% Chance to Block Spell Damage", statOrder = { 1046 }, level = 28, group = "SpellBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 500, 500, 500, 500, 1000, 1000, 0 }, modTags = { "block" }, }, - ["ShieldSpellBlockPercentage3"] = { type = "Prefix", affix = "Enigmatic", "(8-9)% Chance to Block Spell Damage", statOrder = { 1046 }, level = 40, group = "SpellBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 500, 500, 500, 500, 1000, 1000, 0 }, modTags = { "block" }, }, - ["ShieldSpellBlockPercentage4"] = { type = "Prefix", affix = "Enlightened", "(10-11)% Chance to Block Spell Damage", statOrder = { 1046 }, level = 55, group = "SpellBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 500, 500, 500, 500, 1000, 1000, 0 }, modTags = { "block" }, }, - ["ShieldSpellBlockPercentage5"] = { type = "Prefix", affix = "Seer's", "(12-13)% Chance to Block Spell Damage", statOrder = { 1046 }, level = 66, group = "SpellBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 500, 500, 500, 500, 1000, 1000, 0 }, modTags = { "block" }, }, - ["ShieldSpellBlockPercentage6"] = { type = "Prefix", affix = "Oracle's", "(14-15)% Chance to Block Spell Damage", statOrder = { 1046 }, level = 77, group = "SpellBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 500, 500, 500, 500, 1000, 1000, 0 }, modTags = { "block" }, }, - ["MovementVelocityCorrupted"] = { type = "Corrupted", affix = "", "(2-5)% increased Movement Speed", statOrder = { 1679 }, level = 1, group = "MovementVelocity", weightKey = { "amulet", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, }, - ["MaxFrenzyChargesCorrupted"] = { type = "Corrupted", affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1690 }, level = 20, group = "MaximumFrenzyCharges", weightKey = { "boots", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "frenzy_charge" }, }, - ["MaxPowerChargesCorrupted"] = { type = "Corrupted", affix = "", "+1 to Maximum Power Charges", statOrder = { 1695 }, level = 20, group = "IncreasedMaximumPowerCharges", weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { "power_charge" }, }, - ["MinionDamageCorrupted"] = { type = "Corrupted", affix = "", "Minions deal (15-20)% increased Damage", statOrder = { 1852 }, level = 1, group = "MinionDamage", weightKey = { "helmet", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage", "minion" }, }, - ["SocketedVaalGemsIncreaseCorrupted"] = { type = "Corrupted", affix = "", "+(1-2) to Level of Socketed Vaal Gems", statOrder = { 167 }, level = 1, group = "LocalIncreaseSocketedVaalGemLevel", weightKey = { "helmet", "gloves", "boots", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0 }, modTags = { "vaal", "gem" }, }, - ["DamageTakenFlatReductionCorrupted1"] = { type = "Corrupted", affix = "", "-(10-5) Physical Damage taken from Attack Hits", statOrder = { 2111 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { "amulet", "shield", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "attack" }, }, - ["DamageTakenFlatReductionCorrupted2"] = { type = "Corrupted", affix = "", "-(16-11) Physical Damage taken from Attack Hits", statOrder = { 2111 }, level = 30, group = "PhysicalAttackDamageTaken", weightKey = { "amulet", "shield", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "attack" }, }, - ["DamageTakenFlatReductionCorrupted3"] = { type = "Corrupted", affix = "", "-(24-17) Physical Damage taken from Attack Hits", statOrder = { 2111 }, level = 60, group = "PhysicalAttackDamageTaken", weightKey = { "amulet", "shield", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "attack" }, }, - ["FireDamageLifeLeechPermyriadCorrupted"] = { type = "Corrupted", affix = "", "0.2% of Fire Damage Leeched as Life", statOrder = { 1551 }, level = 50, group = "FireDamageLifeLeechPermyriad", weightKey = { "amulet", "quiver", "two_hand_weapon", "weapon", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "resource", "life", "elemental", "fire" }, }, - ["ColdDamageLifeLeechPermyriadCorrupted"] = { type = "Corrupted", affix = "", "0.2% of Cold Damage Leeched as Life", statOrder = { 1556 }, level = 50, group = "ColdDamageLifeLeechPermyriad", weightKey = { "amulet", "quiver", "two_hand_weapon", "weapon", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "resource", "life", "elemental", "cold" }, }, - ["LightningDamageLifeLeechPermyriadCorrupted"] = { type = "Corrupted", affix = "", "0.2% of Lightning Damage Leeched as Life", statOrder = { 1560 }, level = 50, group = "LightningDamageLifeLeechPermyriad", weightKey = { "amulet", "quiver", "two_hand_weapon", "weapon", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, }, - ["IncreasedCastSpeedCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% increased Cast Speed", statOrder = { 1330 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "ring", "gloves", "focus", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "caster", "speed" }, }, - ["ChanceToFleeCorrupted"] = { type = "Corrupted", affix = "", "5% chance to Cause Monsters to Flee", statOrder = { 1919 }, level = 1, group = "HitsCauseMonsterFlee", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["BlockChanceCorrupted"] = { type = "Corrupted", affix = "", "(2-4)% Chance to Block Attack Damage", statOrder = { 1027 }, level = 1, group = "BlockPercent", weightKey = { "staff", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "block" }, }, - ["LocalAddedChaosDamageCorrupted1"] = { type = "Corrupted", affix = "", "Adds (1-2) to (3-5) Chaos Damage", statOrder = { 1274 }, level = 1, group = "LocalChaosDamage", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["LocalAddedChaosDamageCorrupted2"] = { type = "Corrupted", affix = "", "Adds (6-8) to (11-13) Chaos Damage", statOrder = { 1274 }, level = 20, group = "LocalChaosDamage", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["LocalAddedChaosDamageCorrupted3"] = { type = "Corrupted", affix = "", "Adds (8-11) to (19-23) Chaos Damage", statOrder = { 1274 }, level = 40, group = "LocalChaosDamage", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["AddedChaosDamageCorrupted1"] = { type = "Corrupted", affix = "", "Adds 1 to (2-3) Chaos Damage to Attacks", statOrder = { 1271 }, level = 1, group = "ChaosDamage", weightKey = { "ring", "default", }, weightVal = { 0, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["AddedChaosDamageCorrupted2"] = { type = "Corrupted", affix = "", "Adds (3-4) to (6-8) Chaos Damage to Attacks", statOrder = { 1271 }, level = 20, group = "ChaosDamage", weightKey = { "ring", "default", }, weightVal = { 0, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["AddedChaosDamageCorrupted3"] = { type = "Corrupted", affix = "", "Adds (7-9) to (11-13) Chaos Damage to Attacks", statOrder = { 1271 }, level = 40, group = "ChaosDamage", weightKey = { "ring", "default", }, weightVal = { 0, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["SpellBlockChanceCorrupted"] = { type = "Corrupted", affix = "", "(2-4)% Chance to Block Spell Damage", statOrder = { 1046 }, level = 1, group = "SpellBlockPercentage", weightKey = { "staff", "amulet", "shield", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "block" }, }, - ["AttackSpeedCorrupted"] = { type = "Corrupted", affix = "", "(4-8)% increased Attack Speed", statOrder = { 1294 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "amulet", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, }, - ["WeaponElementalDamageCorrupted"] = { type = "Corrupted", affix = "", "(6-12)% increased Elemental Damage with Attack Skills", statOrder = { 6010 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "ring", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["CullingStrikeCorrupted"] = { type = "Corrupted", affix = "", "Culling Strike", statOrder = { 1916 }, level = 1, group = "CullingStrike", weightKey = { "sword", "axe", "dagger", "wand", "bow", "claw", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, - ["ManaOnLifeLostCorrupted"] = { type = "Corrupted", affix = "", "(3-6)% of Damage taken Recouped as Mana", statOrder = { 2331 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { "amulet", "ring", "shield", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "mana" }, }, - ["MaximumResistanceCorrupted"] = { type = "Corrupted", affix = "", "+1% to all maximum Resistances", statOrder = { 1523 }, level = 1, group = "MaximumResistances", weightKey = { "amulet", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resistance" }, }, - ["AdditionalCurseCorrupted"] = { type = "Corrupted", affix = "", "You can apply an additional Curse", statOrder = { 2045 }, level = 1, group = "AdditionalCurseOnEnemies", weightKey = { "amulet", "default", }, weightVal = { 0, 0 }, modTags = { "caster", "curse" }, }, - ["ChanceToAvoidFreezeCorruption"] = { type = "Corrupted", affix = "", "(10-20)% chance to Avoid being Frozen", statOrder = { 1726 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "amulet", "body_armour", "ring", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ChanceToAvoidIgniteCorruption"] = { type = "Corrupted", affix = "", "(10-20)% chance to Avoid being Ignited", statOrder = { 1727 }, level = 1, group = "AvoidIgnite", weightKey = { "amulet", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ChaosResistCorruption"] = { type = "Corrupted", affix = "", "+(2-4)% to Chaos Resistance", statOrder = { 1522 }, level = 1, group = "ChaosResistance", weightKey = { "fishing_rod", "weapon", "jewel", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "chaos", "resistance" }, }, - ["ChanceToDodgeCorruption"] = { type = "Corrupted", affix = "", "+(3-6)% chance to Suppress Spell Damage", statOrder = { 1031 }, level = 1, group = "ChanceToSuppressSpellsOld", weightKey = { "boots", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["CannotBeKnockedBackCorruption"] = { type = "Corrupted", affix = "", "Cannot be Knocked Back", statOrder = { 1404 }, level = 1, group = "ImmuneToKnockback", weightKey = { "boots", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["GemLevelCorruption"] = { type = "Corrupted", affix = "", "+1 to Level of Socketed Gems", statOrder = { 141 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { "boots", "gloves", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "gem" }, }, - ["AvoidShockCorruption"] = { type = "Corrupted", affix = "", "(10-20)% chance to Avoid being Shocked", statOrder = { 1729 }, level = 1, group = "ReducedShockChance", weightKey = { "body_armour", "belt", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["CannotBeLeechedFromCorruption"] = { type = "Corrupted", affix = "", "Enemies Cannot Leech Life From you", statOrder = { 2317 }, level = 1, group = "EnemiesCantLifeLeech", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["DamageTakenFromManaBeforeLifeCorruption"] = { type = "Corrupted", affix = "", "(3-5)% of Damage is taken from Mana before Life", statOrder = { 2572 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "life", "mana" }, }, - ["DamageConversionFireCorruption"] = { type = "Corrupted", affix = "", "(10-20)% of Physical Damage Converted to Fire Damage", statOrder = { 1834 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { "quiver", "sceptre", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, - ["DamageConversionColdCorruption"] = { type = "Corrupted", affix = "", "(10-20)% of Physical Damage Converted to Cold Damage", statOrder = { 1836 }, level = 1, group = "ConvertPhysicalToCold", weightKey = { "quiver", "sceptre", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, - ["DamageConversionLighningCorruption"] = { type = "Corrupted", affix = "", "(10-20)% of Physical Damage Converted to Lightning Damage", statOrder = { 1838 }, level = 1, group = "MonsterConvertPhysicalDamageToLightning", weightKey = { "quiver", "sceptre", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, - ["AdditionalArrowsCorruption"] = { type = "Corrupted", affix = "", "Bow Attacks fire an additional Arrow", statOrder = { 1675 }, level = 1, group = "AdditionalArrows", weightKey = { "quiver", "bow", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, - ["AdditionalAOERangeCorruption"] = { type = "Corrupted", affix = "", "(4-6)% increased Area of Effect", statOrder = { 1761 }, level = 1, group = "AreaOfEffect", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["IncreasedDurationCorruption"] = { type = "Corrupted", affix = "", "(5-8)% increased Skill Effect Duration", statOrder = { 1776 }, level = 1, group = "SkillEffectDuration", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["AdditionalTrapsCorruption_"] = { type = "Corrupted", affix = "", "Can have up to 1 additional Trap placed at a time", statOrder = { 2132 }, level = 1, group = "TrapsAllowed", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["MaximumEnduranceChargesCorruption_"] = { type = "Corrupted", affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1685 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { "endurance_charge" }, }, - ["DualWieldBlockCorruption"] = { type = "Corrupted", affix = "", "+(3-6)% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1047 }, level = 1, group = "BlockWhileDualWielding", weightKey = { "sceptre", "axe", "mace", "wand", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 0, 0 }, modTags = { "block" }, }, - ["AdditionalPierceCorruption"] = { type = "Corrupted", affix = "", "Arrows Pierce an additional Target", statOrder = { 1672 }, level = 1, group = "AdditionalArrowPierce", weightKey = { "bow", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, }, - ["GlobalPierceCorruption"] = { type = "Corrupted", affix = "", "(4-8)% increased Projectile Speed", statOrder = { 1677 }, level = 1, group = "ProjectileSpeed", weightKey = { "wand", "default", }, weightVal = { 0, 0 }, modTags = { "speed" }, }, - ["CurseOnHitTemporalChainsCurruption"] = { type = "Corrupted", affix = "", "Curse Enemies with Temporal Chains on Hit", statOrder = { 2398 }, level = 30, group = "CurseOnHitLevelTemporalChains", weightKey = { "gloves", "default", }, weightVal = { 0, 0 }, modTags = { "caster", "curse" }, }, - ["CurseOnHitVulnerabilityCorruption"] = { type = "Corrupted", affix = "", "Curse Enemies with Vulnerability on Hit", statOrder = { 2399 }, level = 30, group = "CurseOnHitLevelVulnerability", weightKey = { "gloves", "default", }, weightVal = { 0, 0 }, modTags = { "caster", "curse" }, }, - ["CurseOnHitElementalWeaknessCorruption"] = { type = "Corrupted", affix = "", "Curse Enemies with Elemental Weakness on Hit", statOrder = { 2401 }, level = 30, group = "CurseOnHitLevelElementalWeakness", weightKey = { "gloves", "default", }, weightVal = { 0, 0 }, modTags = { "caster", "curse" }, }, - ["SupportedByCastOnStunCorruption"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 12 Cast when Stunned", statOrder = { 397 }, level = 35, group = "SupportedByCastOnStun", weightKey = { "gloves", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "support", "gem" }, }, - ["SupportedByCastOnCritCorruption"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 12 Cast On Critical Strike", statOrder = { 392 }, level = 35, group = "SupportedByCastOnCrit", weightKey = { "gloves", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "support", "gem" }, }, - ["SupportedByMeleeSplashCorruption"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 10 Melee Splash", statOrder = { 391 }, level = 20, group = "SupportedByMeleeSplash", weightKey = { "wand", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0 }, modTags = { "support", "gem" }, }, - ["SupportedByAddedFireDamageCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 12 Added Fire Damage", statOrder = { 382 }, level = 48, group = "DisplaySocketedGemsGetAddedFireDamage", weightKey = { "two_hand_weapon", "mace", "default", }, weightVal = { 0, 0, 0 }, modTags = { "support", "gem" }, }, - ["SupportedByStunCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 6 Stun", statOrder = { 399 }, level = 38, group = "SupportedByStun", weightKey = { "mace", "default", }, weightVal = { 0, 0 }, modTags = { "support", "gem" }, }, - ["LocalMeleeWeaponRangeCorrupted"] = { type = "Corrupted", affix = "", "+(0.1-0.2) metres to Weapon Range", statOrder = { 2620 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { "sceptre", "rapier", "wand", "bow", "weapon", "default", }, weightVal = { 0, 0, 0, 0, 0, 0 }, modTags = { "attack" }, }, - ["SocketedSkillsManaMultiplierCorrupted"] = { type = "Corrupted", affix = "", "Socketed Skill Gems get a 95% Cost & Reservation Multiplier", statOrder = { 449 }, level = 1, group = "SocketedSkillsManaMultiplier", weightKey = { "body_armour", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana", "gem" }, }, - ["SupportedByElementalProliferationCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 1 Elemental Proliferation", statOrder = { 386 }, level = 12, group = "DisplaySocketedGemGetsElementalProliferation", weightKey = { "wand", "default", }, weightVal = { 0, 0 }, modTags = { "support", "gem" }, }, - ["SupportedByAccuracyCorrupted_"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 12 Additional Accuracy", statOrder = { 400 }, level = 48, group = "SupportedByAccuracy", weightKey = { "one_hand_weapon", "sword", "default", }, weightVal = { 0, 0, 0 }, modTags = { "support", "gem" }, }, - ["SupportedByMultistrikeCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 1 Multistrike", statOrder = { 401 }, level = 28, group = "SupportedByMultistrike", weightKey = { "two_hand_weapon", "sword", "default", }, weightVal = { 0, 0, 0 }, modTags = { "support", "gem" }, }, - ["SupportedByAreaOfEffectCorrupted_"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 1 Increased Area of Effect", statOrder = { 202 }, level = 24, group = "DisplaySocketedGemGetsIncreasedAreaOfEffectLevel", weightKey = { "staff", "default", }, weightVal = { 0, 0 }, modTags = { "support", "gem" }, }, - ["SupportedByLifeLeechCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 15 Life Leech", statOrder = { 403 }, level = 59, group = "SupportedByLifeLeech", weightKey = { "claw", "default", }, weightVal = { 0, 0 }, modTags = { "support", "gem" }, }, - ["SupportedByCriticalMultiplierCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 14 Increased Critical Damage", statOrder = { 405 }, level = 35, group = "SupportedByCriticalMultiplier", weightKey = { "dagger", "default", }, weightVal = { 0, 0 }, modTags = { "support", "gem" }, }, - ["SupportedByForkCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 1 Fork", statOrder = { 406 }, level = 6, group = "SupportedByFork", weightKey = { "bow", "default", }, weightVal = { 0, 0 }, modTags = { "support", "gem" }, }, - ["SupportedByWeaponElementalDamageCorrupted_"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 12 Elemental Damage with Attacks", statOrder = { 407 }, level = 24, group = "SupportedByWeaponElementalDamage", weightKey = { "sceptre", "default", }, weightVal = { 0, 0 }, modTags = { "support", "gem" }, }, - ["SupportedByFasterCastCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 10 Faster Casting", statOrder = { 420 }, level = 24, group = "DisplaySocketedGemsGetFasterCast", weightKey = { "sceptre", "default", }, weightVal = { 0, 0 }, modTags = { "support", "gem" }, }, - ["PuritySkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 15 Purity of Elements Skill", statOrder = { 550 }, level = 45, group = "PuritySkill", weightKey = { "amulet", "belt", "default", }, weightVal = { 0, 0, 0 }, modTags = { "skill" }, }, - ["CriticalWeaknessSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 10 Assassin's Mark Skill", statOrder = { 552 }, level = 31, group = "CriticalWeaknessSkill", weightKey = { "gloves", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, }, - ["PurityOfFireSkillCorrupted_"] = { type = "Corrupted", affix = "", "Grants Level 15 Purity of Fire Skill", statOrder = { 528 }, level = 45, group = "PurityOfFireSkill", weightKey = { "amulet", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "skill" }, }, - ["PurityOfColdSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 15 Purity of Ice Skill", statOrder = { 534 }, level = 45, group = "PurityOfColdSkill", weightKey = { "amulet", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "skill" }, }, - ["PurityOfLightningSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 15 Purity of Lightning Skill", statOrder = { 536 }, level = 45, group = "PurityOfLightningSkill", weightKey = { "amulet", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "skill" }, }, - ["WrathSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 7 Wrath Skill", statOrder = { 553 }, level = 28, group = "WrathSkill", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, }, - ["HatredSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 11 Hatred Skill", statOrder = { 554 }, level = 44, group = "HatredSkill", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, }, - ["AngerSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 15 Anger Skill", statOrder = { 555 }, level = 56, group = "AngerSkill", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, }, - ["DeterminationSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 16 Determination Skill", statOrder = { 556 }, level = 61, group = "DeterminationSkill", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, }, - ["GraceSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 16 Grace Skill", statOrder = { 557 }, level = 61, group = "GraceSkill", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, }, - ["DisciplineSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 16 Discipline Skill", statOrder = { 559 }, level = 61, group = "DisciplineSkill", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, }, - ["ProjectileWeaknessSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 15 Sniper's Mark Skill", statOrder = { 563 }, level = 58, group = "ProjectileWeaknessSkill", weightKey = { "quiver", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, }, - ["ElementalWeaknessSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 10 Elemental Weakness Skill", statOrder = { 564 }, level = 31, group = "ElementalWeaknessSkill", weightKey = { "wand", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, }, - ["VulnerabilitySkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 10 Vulnerability Skill", statOrder = { 566 }, level = 31, group = "VulnerabilitySkill", weightKey = { "axe", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, }, - ["ClaritySkillCorrupted1"] = { type = "Corrupted", affix = "", "Grants Level 4 Clarity Skill", statOrder = { 546 }, level = 19, group = "ClaritySkill", weightKey = { "amulet", "belt", "default", }, weightVal = { 0, 0, 0 }, modTags = { "skill" }, }, - ["ClaritySkillCorrupted2"] = { type = "Corrupted", affix = "", "Grants Level 8 Clarity Skill", statOrder = { 546 }, level = 32, group = "ClaritySkill", weightKey = { "amulet", "belt", "default", }, weightVal = { 0, 0, 0 }, modTags = { "skill" }, }, - ["ClaritySkillCorrupted3"] = { type = "Corrupted", affix = "", "Grants Level 12 Clarity Skill", statOrder = { 546 }, level = 47, group = "ClaritySkill", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, }, - ["ClaritySkillCorrupted4"] = { type = "Corrupted", affix = "", "Grants Level 16 Clarity Skill", statOrder = { 546 }, level = 59, group = "ClaritySkill", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, }, - ["FrostbiteSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 14 Frostbite Skill", statOrder = { 542 }, level = 46, group = "FrostbiteSkill", weightKey = { "ring", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, }, - ["FlammabilitySkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 14 Flammability Skill", statOrder = { 537 }, level = 46, group = "FlammabilitySkill", weightKey = { "ring", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, }, - ["ConductivitySkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 14 Conductivity Skill", statOrder = { 541 }, level = 46, group = "ConductivitySkill", weightKey = { "ring", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, }, - ["TemporalChainsSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 14 Temporal Chains Skill", statOrder = { 543 }, level = 40, group = "TemporalChainsSkill", weightKey = { "boots", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, }, - ["HasteSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 14 Haste Skill", statOrder = { 544 }, level = 40, group = "HasteSkill", weightKey = { "boots", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, }, - ["ManaOnHitCorrupted"] = { type = "Corrupted", affix = "", "Gain (1-2) Mana per Enemy Hit with Attacks", statOrder = { 1625 }, level = 40, group = "ManaGainPerTarget", weightKey = { "ring", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana", "attack" }, }, - ["VitalitySkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 15 Vitality Skill", statOrder = { 548 }, level = 35, group = "VitalitySkill", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, }, - ["FishingQuantityCorrupted"] = { type = "Corrupted", affix = "", "(5-10)% increased Quantity of Fish Caught", statOrder = { 2722 }, level = 1, group = "FishingQuantity", weightKey = { "fishing_rod", "default", }, weightVal = { 0, 0 }, modTags = { "drop" }, }, - ["FishingRarityCorrupted"] = { type = "Corrupted", affix = "", "(5-10)% increased Rarity of Fish Caught", statOrder = { 2723 }, level = 1, group = "FishingRarity", weightKey = { "fishing_rod", "default", }, weightVal = { 0, 0 }, modTags = { "drop" }, }, - ["CastSpeedCorrupted"] = { type = "Corrupted", affix = "", "(10-20)% increased Cast Speed", statOrder = { 1330 }, level = 1, group = "IncreasedCastSpeedFishing", weightKey = { "fishing_rod", "default", }, weightVal = { 0, 0 }, modTags = { "red_herring", "caster", "speed" }, }, - ["CanCatchCorruptFishCorrupted"] = { type = "Corrupted", affix = "", "You can catch Corrupted Fish", statOrder = { 2729 }, level = 1, group = "CorruptFish", weightKey = { "fishing_rod", "default", }, weightVal = { 0, 0 }, modTags = { "vaal", "drop" }, }, - ["V2AddedArmourWhileStationaryCorrupted1"] = { type = "Corrupted", affix = "", "+(35-60) Armour while stationary", statOrder = { 4175 }, level = 1, group = "AddedArmourWhileStationary", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, - ["V2AddedArmourWhileStationaryCorrupted2"] = { type = "Corrupted", affix = "", "+(61-138) Armour while stationary", statOrder = { 4175 }, level = 31, group = "AddedArmourWhileStationary", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, - ["V2AddedArmourWhileStationaryCorrupted3"] = { type = "Corrupted", affix = "", "+(139-322) Armour while stationary", statOrder = { 4175 }, level = 75, group = "AddedArmourWhileStationary", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { "defences", "armour" }, }, - ["V2AddedColdDamageCorrupted1"] = { type = "Corrupted", affix = "", "Adds (3-4) to (7-8) Cold Damage to Spells and Attacks", statOrder = { 1258 }, level = 1, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, }, - ["V2AddedColdDamageCorrupted2"] = { type = "Corrupted", affix = "", "Adds (6-9) to (13-16) Cold Damage to Spells and Attacks", statOrder = { 1258 }, level = 31, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, }, - ["V2AddedColdDamageCorrupted3"] = { type = "Corrupted", affix = "", "Adds (12-16) to (24-28) Cold Damage to Spells and Attacks", statOrder = { 1258 }, level = 81, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, }, - ["V2AddedColdDamageToBowAttacksCorrupted1__"] = { type = "Corrupted", affix = "", "(8-11) to (18-21) Added Cold Damage with Bow Attacks", statOrder = { 1965 }, level = 1, group = "AddedColdDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["V2AddedColdDamageToBowAttacksCorrupted2"] = { type = "Corrupted", affix = "", "(20-25) to (38-45) Added Cold Damage with Bow Attacks", statOrder = { 1965 }, level = 31, group = "AddedColdDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["V2AddedColdDamageToBowAttacksCorrupted3"] = { type = "Corrupted", affix = "", "(29-35) to (55-62) Added Cold Damage with Bow Attacks", statOrder = { 1965 }, level = 75, group = "AddedColdDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["V2AddedEvasionWhileMovingCorrupted1_"] = { type = "Corrupted", affix = "", "+(35-60) to Global Evasion Rating while moving", statOrder = { 6529 }, level = 1, group = "AddedEvasionWhileMovingCorrupted", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, - ["V2AddedEvasionWhileMovingCorrupted2"] = { type = "Corrupted", affix = "", "+(61-138) to Global Evasion Rating while moving", statOrder = { 6529 }, level = 31, group = "AddedEvasionWhileMovingCorrupted", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, - ["V2AddedEvasionWhileMovingCorrupted3"] = { type = "Corrupted", affix = "", "+(139-322) to Global Evasion Rating while moving", statOrder = { 6529 }, level = 75, group = "AddedEvasionWhileMovingCorrupted", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { "defences", "evasion" }, }, - ["V2AddedFireDamageCorrupted1"] = { type = "Corrupted", affix = "", "Adds (3-5) to (7-8) Fire Damage to Spells and Attacks", statOrder = { 1257 }, level = 1, group = "AddedFireDamageSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "attack", "caster" }, }, - ["V2AddedFireDamageCorrupted2"] = { type = "Corrupted", affix = "", "Adds (7-10) to (15-18) Fire Damage to Spells and Attacks", statOrder = { 1257 }, level = 31, group = "AddedFireDamageSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "attack", "caster" }, }, - ["V2AddedFireDamageCorrupted3"] = { type = "Corrupted", affix = "", "Adds (13-18) to (28-33) Fire Damage to Spells and Attacks", statOrder = { 1257 }, level = 82, group = "AddedFireDamageSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "attack", "caster" }, }, - ["V2AddedFireDamageToBowAttacksCorrupted1__"] = { type = "Corrupted", affix = "", "(11-14) to (21-25) Added Fire Damage with Bow Attacks", statOrder = { 1957 }, level = 1, group = "AddedFireDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["V2AddedFireDamageToBowAttacksCorrupted2"] = { type = "Corrupted", affix = "", "(24-31) to (46-55) Added Fire Damage with Bow Attacks", statOrder = { 1957 }, level = 31, group = "AddedFireDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["V2AddedFireDamageToBowAttacksCorrupted3"] = { type = "Corrupted", affix = "", "(29-39) to (59-69) Added Fire Damage with Bow Attacks", statOrder = { 1957 }, level = 75, group = "AddedFireDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["V2AddedLightningDamageCorrupted1"] = { type = "Corrupted", affix = "", "Adds 1 to (14-15) Lightning Damage to Spells and Attacks", statOrder = { 1293 }, level = 1, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "attack", "caster" }, }, - ["V2AddedLightningDamageCorrupted2"] = { type = "Corrupted", affix = "", "Adds (1-2) to (27-28) Lightning Damage to Spells and Attacks", statOrder = { 1293 }, level = 31, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "attack", "caster" }, }, - ["V2AddedLightningDamageCorrupted3"] = { type = "Corrupted", affix = "", "Adds (1-5) to (50-52) Lightning Damage to Spells and Attacks", statOrder = { 1293 }, level = 83, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "attack", "caster" }, }, - ["V2AddedLightningDamageToBowAttacksCorrupted1_"] = { type = "Corrupted", affix = "", "(1-3) to (38-39) Added Lightning Damage with Bow Attacks", statOrder = { 1973 }, level = 1, group = "AddedLightningDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["V2AddedLightningDamageToBowAttacksCorrupted2"] = { type = "Corrupted", affix = "", "(3-7) to (81-85) Added Lightning Damage with Bow Attacks", statOrder = { 1973 }, level = 31, group = "AddedLightningDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["V2AddedLightningDamageToBowAttacksCorrupted3"] = { type = "Corrupted", affix = "", "(3-8) to (101-106) Added Lightning Damage with Bow Attacks", statOrder = { 1973 }, level = 75, group = "AddedLightningDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["V2AddedPhysicalDamageToBowAttacksCorrupted1"] = { type = "Corrupted", affix = "", "(3-4) to (6-10) Added Physical Damage with Bow Attacks", statOrder = { 1947 }, level = 1, group = "AddedPhysicalDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["V2AddedPhysicalDamageToBowAttacksCorrupted2___"] = { type = "Corrupted", affix = "", "(5-7) to (10-14) Added Physical Damage with Bow Attacks", statOrder = { 1947 }, level = 31, group = "AddedPhysicalDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["V2AddedPhysicalDamageToBowAttacksCorrupted3"] = { type = "Corrupted", affix = "", "(9-12) to (16-19) Added Physical Damage with Bow Attacks", statOrder = { 1947 }, level = 75, group = "AddedPhysicalDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["V2AddedChaosDamageToBowAttacksCorrupted1"] = { type = "Corrupted", affix = "", "(23-29) to (37-43) Added Chaos Damage with Bow Attacks", statOrder = { 1980 }, level = 81, group = "AddedChaosDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["V2AdditionalAOERangeCorrupted"] = { type = "Corrupted", affix = "", "(8-10)% increased Area of Effect", statOrder = { 1761 }, level = 1, group = "AreaOfEffect", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["V2AdditionalArrowsCorrupted"] = { type = "Corrupted", affix = "", "Bow Attacks fire an additional Arrow", statOrder = { 1675 }, level = 75, group = "AdditionalArrows", weightKey = { "quiver", "bow", "default", }, weightVal = { 200, 200, 0 }, modTags = { "attack" }, }, - ["V2AdditionalChainCorrupted"] = { type = "Corrupted", affix = "", "Arrows Chain +1 times", statOrder = { 1669 }, level = 80, group = "AdditionalArrowChain", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "attack" }, }, - ["V2ChanceToSuppressSpells_"] = { type = "Corrupted", affix = "", "+(8-12)% chance to Suppress Spell Damage", statOrder = { 1032 }, level = 75, group = "ChanceToSuppressSpells", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["V2AdditionalCriticalStrikeMultiplierUnderFlaskEffectCorrupted"] = { type = "Corrupted", affix = "", "+(20-25)% to Critical Strike Multiplier during any Flask Effect", statOrder = { 5656 }, level = 60, group = "AdditionalCriticalStrikeMultiplierUnderFlaskEffect", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "damage", "critical" }, }, - ["V2AdditionalCurseCorrupted"] = { type = "Corrupted", affix = "", "You can apply an additional Curse", statOrder = { 2045 }, level = 60, group = "AdditionalCurseOnEnemies", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { "caster", "curse" }, }, - ["V2AdditionalPhysicalDamageReductionWhileStationaryCorrupted_"] = { type = "Corrupted", affix = "", "(3-5)% additional Physical Damage Reduction while stationary", statOrder = { 4174 }, level = 1, group = "PhysicalDamageReductionWhileNotMoving", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "physical" }, }, - ["V2AdditionalProjectilesCorrupted"] = { type = "Corrupted", affix = "", "Skills fire an additional Projectile", statOrder = { 1673 }, level = 1, group = "AdditionalProjectilesCorrupted", weightKey = { "rapier", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["V2AngerSkillReducedCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 21 Anger Skill", statOrder = { 555 }, level = 56, group = "AngerSkill", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "skill" }, }, - ["V2AttackSpeedCorrupted"] = { type = "Corrupted", affix = "", "(8-10)% increased Attack Speed", statOrder = { 1294 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "speed" }, }, - ["V2BlindImmunityCorrupted"] = { type = "Corrupted", affix = "", "Cannot be Blinded", statOrder = { 2846 }, level = 1, group = "ImmunityToBlind", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["V2BlockChanceCorrupted"] = { type = "Corrupted", affix = "", "(4-5)% Chance to Block Attack Damage", statOrder = { 1027 }, level = 1, group = "MonsterBlock", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "block" }, }, - ["V2CanCatchCorruptFishCorrupted"] = { type = "Corrupted", affix = "", "You can catch Corrupted Fish", statOrder = { 2729 }, level = 1, group = "CorruptFish", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { "vaal", "drop" }, }, - ["V2CannotGainBleedingCorrupted_"] = { type = "Corrupted", affix = "", "Bleeding cannot be inflicted on you", statOrder = { 4076 }, level = 60, group = "BleedingImmunity", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["V2AvoidIgniteCorrupted"] = { type = "Corrupted", affix = "", "Cannot be Ignited", statOrder = { 1720 }, level = 40, group = "CannotBeIgnited", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["V2CannotBePoisonedCorrupted"] = { type = "Corrupted", affix = "", "Cannot be Poisoned", statOrder = { 3235 }, level = 40, group = "CannotBePoisoned", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["V2CastSpeedCorrupted"] = { type = "Corrupted", affix = "", "(10-20)% increased Cast Speed", statOrder = { 1330 }, level = 1, group = "IncreasedCastSpeedFishing", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { "red_herring", "caster", "speed" }, }, - ["V2ChanceToBleedOnHitAndIncreasedDamageToBleedingTargetsCorrupted_"] = { type = "Corrupted", affix = "", "20% chance to cause Bleeding on Hit", "(30-40)% increased Attack Damage against Bleeding Enemies", statOrder = { 2359, 2367 }, level = 1, group = "ChanceToBleedOnHitAndIncreasedDamageToBleedingTargets", weightKey = { "axe", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, - ["V2ChanceToDodgeCorrupted"] = { type = "Corrupted", affix = "", "+(4-6)% chance to Suppress Spell Damage", statOrder = { 1032 }, level = 1, group = "ChanceToSuppressSpells", weightKey = { "boots", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["V2ChanceToGainEnduranceChargeOnStunCorrupted_"] = { type = "Corrupted", affix = "", "(5-7)% chance to gain an Endurance Charge when you Stun an Enemy", statOrder = { 5396 }, level = 1, group = "GainEnduranceChargeOnStunChance", weightKey = { "sceptre", "staff", "mace", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "endurance_charge" }, }, - ["V2ChanceToGainFortifyOnMeleeHitCorrupted"] = { type = "Corrupted", affix = "", "Melee Hits have (10-15)% chance to Fortify", statOrder = { 2141 }, level = 1, group = "FortifyOnMeleeHit", weightKey = { "sceptre", "wand", "dagger", "claw", "rapier", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 0, 1000, 0 }, modTags = { "attack" }, }, - ["V2ChanceToGainFrenzyChargeOnKillCorrupted"] = { type = "Corrupted", affix = "", "(9-11)% chance to gain a Frenzy Charge on Kill", statOrder = { 2506 }, level = 1, group = "FrenzyChargeOnKillChance", weightKey = { "dagger", "claw", "bow", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "frenzy_charge" }, }, - ["V2ChanceToGainOnslaughtOnKillCorrupted_"] = { type = "Corrupted", affix = "", "(10-15)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2865 }, level = 1, group = "ChanceToGainOnslaughtOnKill", weightKey = { "sceptre", "wand", "dagger", "claw", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, modTags = { }, }, - ["V2ChanceToGainPowerChargeOnCritCorrupted"] = { type = "Corrupted", affix = "", "(5-7)% chance to gain a Power Charge on Critical Strike", statOrder = { 1711 }, level = 1, group = "PowerChargeOnCriticalStrikeChance", weightKey = { "wand", "dagger", "claw", "sceptre", "staff", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "power_charge", "critical" }, }, - ["V2UnholyMightOnKillPercentChanceCorrupted"] = { type = "Corrupted", affix = "", "(10-15)% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3243 }, level = 1, group = "UnholyMightOnKillPercentChance", weightKey = { "wand", "dagger", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { }, }, - ["V2ChanceToSpellDodgeCorrupted_"] = { type = "Corrupted", affix = "", "+(6-9)% chance to Suppress Spell Damage", statOrder = { 1032 }, level = 45, group = "ChanceToSuppressSpells", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["V2ClaritySkillReducedCorrupted_"] = { type = "Corrupted", affix = "", "Grants Level 21 Clarity Skill", statOrder = { 546 }, level = 56, group = "ClaritySkill", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "skill" }, }, - ["V2ColdDamageLifeLeechPermyriadCorrupted_"] = { type = "Corrupted", affix = "", "0.5% of Cold Damage Leeched as Life", statOrder = { 1556 }, level = 50, group = "ColdDamageLifeLeechPermyriad", weightKey = { "helmet", "amulet", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "resource", "life", "elemental", "cold" }, }, - ["V2ConductivitySkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Conductivity Skill", statOrder = { 541 }, level = 56, group = "ConductivitySkill", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "skill" }, }, - ["V2CurseOnHitDespair"] = { type = "Corrupted", affix = "", "Curse Enemies with Despair on Hit", statOrder = { 2404 }, level = 30, group = "CurseOnHitDespair", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "curse" }, }, - ["V2CurseOnHitElementalWeaknessCorrupted"] = { type = "Corrupted", affix = "", "Curse Enemies with Elemental Weakness on Hit", statOrder = { 2401 }, level = 30, group = "CurseOnHitLevelElementalWeakness", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "curse" }, }, - ["V2CurseOnHitEnfeeble"] = { type = "Corrupted", affix = "", "Curse Enemies with Enfeeble on Hit", statOrder = { 2405 }, level = 30, group = "CurseOnHitEnfeeble", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "curse" }, }, - ["V2CurseOnHitTemporalChainsCurrupted"] = { type = "Corrupted", affix = "", "Curse Enemies with Temporal Chains on Hit", statOrder = { 2398 }, level = 30, group = "CurseOnHitLevelTemporalChains", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "curse" }, }, - ["V2CurseOnHitVulnerabilityCorrupted"] = { type = "Corrupted", affix = "", "Curse Enemies with Vulnerability on Hit", statOrder = { 2399 }, level = 30, group = "CurseOnHitLevelVulnerability", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "curse" }, }, - ["V2DespairSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Despair Skill", statOrder = { 533 }, level = 56, group = "DespairSkill", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "skill" }, }, - ["V2DeterminationSkillCorrupted__"] = { type = "Corrupted", affix = "", "Grants Level 23 Determination Skill", statOrder = { 556 }, level = 56, group = "DeterminationSkill", weightKey = { "shield", "default", }, weightVal = { 333, 0 }, modTags = { "skill" }, }, - ["V2DisciplineSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Discipline Skill", statOrder = { 559 }, level = 56, group = "DisciplineSkill", weightKey = { "shield", "default", }, weightVal = { 333, 0 }, modTags = { "skill" }, }, - ["V2DodgeAttackHitsWhileMovingCorrupted_"] = { type = "Corrupted", affix = "", "+(6-10)% chance to Suppress Spell Damage while moving", statOrder = { 9661 }, level = 60, group = "DodgeSpellHitsWhileMoving", weightKey = { "boots", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["V2DodgeSpellHitsWhileMovingCorrupted"] = { type = "Corrupted", affix = "", "+(6-10)% chance to Suppress Spell Damage while moving", statOrder = { 9661 }, level = 60, group = "DodgeSpellHitsWhileMoving", weightKey = { "boots", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["V2DualWieldBlockCorrupted"] = { type = "Corrupted", affix = "", "+(8-10)% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1047 }, level = 1, group = "BlockWhileDualWielding", weightKey = { "claw", "default", }, weightVal = { 1000, 0 }, modTags = { "block" }, }, - ["V2ElementalDamagePenetrationCorrupted"] = { type = "Corrupted", affix = "", "Damage Penetrates (8-10)% Elemental Resistances", statOrder = { 2852 }, level = 1, group = "ElementalPenetration", weightKey = { "wand", "rapier", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["V2FireDamageLifeLeechPermyriadCorrupted_"] = { type = "Corrupted", affix = "", "0.5% of Fire Damage Leeched as Life", statOrder = { 1551 }, level = 50, group = "FireDamageLifeLeechPermyriad", weightKey = { "helmet", "amulet", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "resource", "life", "elemental", "fire" }, }, - ["V2FishingQuantityCorrupted"] = { type = "Corrupted", affix = "", "(5-10)% increased Quantity of Fish Caught", statOrder = { 2722 }, level = 1, group = "FishingQuantity", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { "drop" }, }, - ["V2FishingRarityCorrupted_"] = { type = "Corrupted", affix = "", "(5-10)% increased Rarity of Fish Caught", statOrder = { 2723 }, level = 1, group = "FishingRarity", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { "drop" }, }, - ["V2FlammabilitySkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Flammability Skill", statOrder = { 537 }, level = 56, group = "FlammabilitySkill", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "skill" }, }, - ["V2FrostbiteSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Frostbite Skill", statOrder = { 542 }, level = 56, group = "FrostbiteSkill", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "skill" }, }, - ["V2GainFrenzyChargeAfterSpending200ManaCorrupted"] = { type = "Corrupted", affix = "", "Gain a Frenzy Charge after Spending a total of 200 Mana", statOrder = { 6367 }, level = 1, group = "GainFrenzyChargeAfterSpending200Mana", weightKey = { "rapier", "default", }, weightVal = { 1000, 0 }, modTags = { "frenzy_charge" }, }, - ["V2GemLevelCorrupted"] = { type = "Corrupted", affix = "", "+1 to Level of Socketed Gems", statOrder = { 141 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { "boots", "gloves", "body_armour", "shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "gem" }, }, - ["V2GlobalCriticalStrikeMultiplierCorrupted"] = { type = "Corrupted", affix = "", "+(25-30)% to Global Critical Strike Multiplier", statOrder = { 1372 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { "dagger", "claw", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "damage", "critical" }, }, - ["V2GraceSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Grace Skill", statOrder = { 557 }, level = 56, group = "GraceSkill", weightKey = { "shield", "default", }, weightVal = { 333, 0 }, modTags = { "skill" }, }, - ["V2HasteSkillCorrupted_"] = { type = "Corrupted", affix = "", "Grants Level 21 Haste Skill", statOrder = { 544 }, level = 56, group = "HasteSkill", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { "skill" }, }, - ["V2HatredSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 21 Hatred Skill", statOrder = { 554 }, level = 56, group = "HatredSkill", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "skill" }, }, - ["V2MalevolenceSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Malevolence Skill", statOrder = { 613 }, level = 56, group = "MalevolenceSkill", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "skill" }, }, - ["V2ZealotrySkillCorrupted_"] = { type = "Corrupted", affix = "", "Grants Level 23 Zealotry Skill", statOrder = { 629 }, level = 56, group = "ZealotrySkill", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "skill" }, }, - ["V2PrideSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 21 Pride Skill", statOrder = { 617 }, level = 56, group = "PrideSkill", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "skill" }, }, - ["V2IncreasedAreaOfEffect1hCorrupted"] = { type = "Corrupted", affix = "", "(15-20)% increased Area of Effect", statOrder = { 1761 }, level = 1, group = "AreaOfEffect", weightKey = { "dagger", "claw", "rapier", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { }, }, - ["V2IncreasedAreaOfEffect2hCorrupted_"] = { type = "Corrupted", affix = "", "(25-30)% increased Area of Effect", statOrder = { 1761 }, level = 1, group = "AreaOfEffect", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["V2IncreasedAtackCriticalStrikeCorruption"] = { type = "Corrupted", affix = "", "Attacks have +(0.5-0.8)% to Critical Strike Chance", statOrder = { 4617 }, level = 60, group = "AdditionalCriticalStrikeChanceWithAttacks", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "critical" }, }, - ["V2IncreasedAttackSpeedCorrupted"] = { type = "Corrupted", affix = "", "(8-10)% increased Attack Speed", statOrder = { 1294 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "gloves", "ring", "default", }, weightVal = { 1000, 500, 0 }, modTags = { "attack", "speed" }, }, - ["V2IncreasedAttackSpeedUnderFlaskEffectCorrupted"] = { type = "Corrupted", affix = "", "(8-12)% increased Attack Speed during any Flask Effect", statOrder = { 3166 }, level = 60, group = "AttackSpeedDuringFlaskEffect", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "attack", "speed" }, }, - ["V2IncreasedBurningDamageCorrupted"] = { type = "Corrupted", affix = "", "(30-40)% increased Burning Damage", statOrder = { 1758 }, level = 40, group = "BurnDamage", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["V2IncreasedCastSpeedCorrupted_"] = { type = "Corrupted", affix = "", "(8-10)% increased Cast Speed", statOrder = { 1330 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "gloves", "ring", "default", }, weightVal = { 1000, 500, 0 }, modTags = { "caster", "speed" }, }, - ["V2IncreasedCastSpeedUnderFlaskEffectCorrupted"] = { type = "Corrupted", affix = "", "(8-12)% increased Cast Speed during any Flask Effect", statOrder = { 5170 }, level = 60, group = "CastSpeedDuringFlaskEffect", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "caster", "speed" }, }, - ["V2IncreasedChillEffectCorrupted"] = { type = "Corrupted", affix = "", "(25-30)% increased Effect of Cold Ailments", statOrder = { 5505 }, level = 40, group = "ChillEffect", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["V2IncreasedCriticalStrikeUnderFlaskEffectCorrupted"] = { type = "Corrupted", affix = "", "(35-40)% increased Critical Strike Chance during any Flask Effect", statOrder = { 5626 }, level = 1, group = "IncreasedCriticalStrikeUnderFlaskEffect", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "critical" }, }, - ["V2IncreasedDamageCorrupted_"] = { type = "Corrupted", affix = "", "(40-50)% increased Damage", statOrder = { 1076 }, level = 1, group = "IncreasedDamage", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, }, - ["V2IncreasedDamageOverTimeCorrupted_"] = { type = "Corrupted", affix = "", "(50-60)% increased Damage over Time", statOrder = { 1095 }, level = 1, group = "DamageOverTime", weightKey = { "dagger", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, }, - ["V2IncreasedDurationCorrupted"] = { type = "Corrupted", affix = "", "(12-15)% increased Skill Effect Duration", statOrder = { 1776 }, level = 1, group = "SkillEffectDuration", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["V2IncreasedEnergyShieldCorrupted"] = { type = "Corrupted", affix = "", "(8-10)% increased maximum Energy Shield", statOrder = { 1443 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["V2IncreasedGlobalPhysicalDamageCorrupted"] = { type = "Corrupted", affix = "", "(15-25)% increased Global Physical Damage", statOrder = { 1116 }, level = 1, group = "PhysicalDamagePercent", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["V2IncreasedLifeCorrupted"] = { type = "Corrupted", affix = "", "(6-8)% increased maximum Life", statOrder = { 1453 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life" }, }, - ["V2IncreasedLifeRegenerationPerSecondCorrupted"] = { type = "Corrupted", affix = "", "Regenerate (1.6-2)% of Life per second", statOrder = { 1823 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life" }, }, - ["V2IncreasedMovementVelocityUnderFlaskEffectCorrupted"] = { type = "Corrupted", affix = "", "(8-12)% increased Movement Speed during any Flask Effect", statOrder = { 3052 }, level = 60, group = "MovementSpeedDuringFlaskEffect", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "speed" }, }, - ["V2IncreasedProjectileDamageForEachChainCorrupted"] = { type = "Corrupted", affix = "", "Projectiles deal (20-25)% increased Damage with Hits and Ailments for each time they have Chained", statOrder = { 9236 }, level = 40, group = "IncreasedProjectileDamageForEachChain", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, }, - ["V2IncreasedProjectileDamageForEachPierceCorrupted"] = { type = "Corrupted", affix = "", "Projectiles deal (8-10)% increased Damage with Hits and Ailments for each Enemy Pierced", statOrder = { 9237 }, level = 40, group = "ProjectileDamagePerEnemyPierced", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, }, - ["V2IncreasedShockEffectCorrupted_"] = { type = "Corrupted", affix = "", "(25-30)% increased Effect of Shock", statOrder = { 9496 }, level = 40, group = "ShockEffect", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["V2IncreasedSpellCriticalStrikeCorruption"] = { type = "Corrupted", affix = "", "+(0.5-0.8)% to Spell Critical Strike Chance", statOrder = { 9610 }, level = 60, group = "AdditionalCriticalStrikeChanceWithSpells", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "critical" }, }, - ["V2LevelOfSocketedColdGemsCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Cold Gems", statOrder = { 147 }, level = 1, group = "LocalIncreaseSocketedColdGemLevelCorrupted", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "cold", "gem" }, }, - ["V2LevelOfSocketedFireGemsCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Fire Gems", statOrder = { 146 }, level = 1, group = "LocalIncreaseSocketedFireGemLevelCorrupted", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "fire", "gem" }, }, - ["V2LevelOfSocketedLightningGemsCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Lightning Gems", statOrder = { 148 }, level = 1, group = "LocalIncreaseSocketedLightningGemLevelCorrupted", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "lightning", "gem" }, }, - ["V2LightningDamageLifeLeechPermyriadCorrupted"] = { type = "Corrupted", affix = "", "0.5% of Lightning Damage Leeched as Life", statOrder = { 1560 }, level = 50, group = "LightningDamageLifeLeechPermyriad", weightKey = { "helmet", "amulet", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, }, - ["V2LocalAddedChaosDamage1hCorrupted1"] = { type = "Corrupted", affix = "", "Adds (1-2) to (3-5) Chaos Damage", statOrder = { 1274 }, level = 1, group = "LocalChaosDamage", weightKey = { "dagger", "default", }, weightVal = { 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["V2LocalAddedChaosDamage1hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (6-8) to (11-13) Chaos Damage", statOrder = { 1274 }, level = 31, group = "LocalChaosDamage", weightKey = { "dagger", "default", }, weightVal = { 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["V2LocalAddedChaosDamage1hCorrupted3"] = { type = "Corrupted", affix = "", "Adds (8-11) to (19-23) Chaos Damage", statOrder = { 1274 }, level = 84, group = "LocalChaosDamage", weightKey = { "dagger", "default", }, weightVal = { 250, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["V2LocalAddedColdDamage1hCorrupted1"] = { type = "Corrupted", affix = "", "Adds (6-8) to (13-15) Cold Damage", statOrder = { 1255 }, level = 1, group = "LocalColdDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["V2LocalAddedColdDamage1hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (14-18) to (27-32) Cold Damage", statOrder = { 1255 }, level = 31, group = "LocalColdDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["V2LocalAddedColdDamage1hCorrupted3_"] = { type = "Corrupted", affix = "", "Adds (17-23) to (24-40) Cold Damage", statOrder = { 1255 }, level = 84, group = "LocalColdDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["V2LocalAddedColdDamage2hCorrupted1"] = { type = "Corrupted", affix = "", "Adds (9-13) to (20-23) Cold Damage", statOrder = { 1255 }, level = 1, group = "LocalColdDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["V2LocalAddedColdDamage2hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (22-27) to (36-44) Cold Damage", statOrder = { 1255 }, level = 31, group = "LocalColdDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["V2LocalAddedColdDamage2hCorrupted3_"] = { type = "Corrupted", affix = "", "Adds (26-32) to (45-55) Cold Damage", statOrder = { 1255 }, level = 84, group = "LocalColdDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 250, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["V2LocalAddedFireDamage1hCorrupted1"] = { type = "Corrupted", affix = "", "Adds (8-10) to (15-18) Fire Damage", statOrder = { 1246 }, level = 1, group = "LocalFireDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["V2LocalAddedFireDamage1hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (17-22) to (33-39) Fire Damage", statOrder = { 1246 }, level = 31, group = "LocalFireDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["V2LocalAddedFireDamage1hCorrupted3"] = { type = "Corrupted", affix = "", "Adds (21-28) to (40-48) Fire Damage", statOrder = { 1246 }, level = 84, group = "LocalFireDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["V2LocalAddedFireDamage2hCorrupted1"] = { type = "Corrupted", affix = "", "Adds (12-17) to (23-27) Fire Damage", statOrder = { 1246 }, level = 1, group = "LocalFireDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["V2LocalAddedFireDamage2hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (27-31) to (39-50) Fire Damage", statOrder = { 1246 }, level = 31, group = "LocalFireDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["V2LocalAddedFireDamage2hCorrupted3"] = { type = "Corrupted", affix = "", "Adds (31-39) to (52-61) Fire Damage", statOrder = { 1246 }, level = 84, group = "LocalFireDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 250, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["V2LocalAddedLightningDamage1hCorrupted1"] = { type = "Corrupted", affix = "", "Adds (1-2) to (27-28) Lightning Damage", statOrder = { 1266 }, level = 1, group = "LocalLightningDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["V2LocalAddedLightningDamage1hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (2-5) to (58-61) Lightning Damage", statOrder = { 1266 }, level = 31, group = "LocalLightningDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["V2LocalAddedLightningDamage1hCorrupted3"] = { type = "Corrupted", affix = "", "Adds (2-6) to (72-76) Lightning Damage", statOrder = { 1266 }, level = 84, group = "LocalLightningDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["V2LocalAddedLightningDamage2hCorrupted1"] = { type = "Corrupted", affix = "", "Adds (2-3) to (35-39) Lightning Damage", statOrder = { 1266 }, level = 1, group = "LocalLightningDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["V2LocalAddedLightningDamage2hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (3-7) to (73-84) Lightning Damage", statOrder = { 1266 }, level = 31, group = "LocalLightningDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["V2LocalAddedLightningDamage2hCorrupted3"] = { type = "Corrupted", affix = "", "Adds (5-9) to (103-107) Lightning Damage", statOrder = { 1266 }, level = 84, group = "LocalLightningDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 250, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["V2LocalAddedPhysicalDamage1hCorrupted1"] = { type = "Corrupted", affix = "", "Adds 1 to 2 Physical Damage", statOrder = { 1160 }, level = 1, group = "LocalPhysicalDamage", weightKey = { "wand", "dagger", "rapier", "claw", "sceptre", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["V2LocalAddedPhysicalDamage1hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (3-4) to (5-7) Physical Damage", statOrder = { 1160 }, level = 31, group = "LocalPhysicalDamage", weightKey = { "wand", "dagger", "rapier", "claw", "sceptre", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["V2LocalAddedPhysicalDamage1hCorrupted3"] = { type = "Corrupted", affix = "", "Adds (5-7) to (10-12) Physical Damage", statOrder = { 1160 }, level = 84, group = "LocalPhysicalDamage", weightKey = { "wand", "dagger", "rapier", "claw", "sceptre", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 0, 250, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["V2LocalAddedPhysicalDamage2hCorrupted1"] = { type = "Corrupted", affix = "", "Adds 1 to (2-3) Physical Damage", statOrder = { 1160 }, level = 1, group = "LocalPhysicalDamage", weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["V2LocalAddedPhysicalDamage2hCorrupted2__"] = { type = "Corrupted", affix = "", "Adds (4-5) to (6-8) Physical Damage", statOrder = { 1160 }, level = 31, group = "LocalPhysicalDamage", weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["V2LocalAddedPhysicalDamage2hCorrupted3"] = { type = "Corrupted", affix = "", "Adds (8-9) to (11-13) Physical Damage", statOrder = { 1160 }, level = 84, group = "LocalPhysicalDamage", weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["V2LocalBlockChanceCorrupted"] = { type = "Corrupted", affix = "", "+(4-5)% Chance to Block", statOrder = { 2126 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { "block" }, }, - ["V2LocalIncreasedAttackSpeedBowCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% increased Attack Speed", statOrder = { 1297 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "speed" }, }, - ["V2LocalIncreasedAttackSpeed1hCorrupted"] = { type = "Corrupted", affix = "", "(5-7)% increased Attack Speed", statOrder = { 1297 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { "wand", "one_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack", "speed" }, }, - ["V2LocalIncreasedAttackSpeed2hCorrupted_"] = { type = "Corrupted", affix = "", "(5-7)% increased Attack Speed", statOrder = { 1297 }, level = 70, group = "LocalIncreasedAttackSpeed", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack", "speed" }, }, - ["V2LocalIncreasedAttackSpeedWandCorrupted_"] = { type = "Corrupted", affix = "", "(3-5)% increased Attack Speed", statOrder = { 1297 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { "wand", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "speed" }, }, - ["V2IncreasedCastSpeedCorrupted__"] = { type = "Corrupted", affix = "", "(12-15)% increased Cast Speed", statOrder = { 1330 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "sceptre", "staff", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "caster", "speed" }, }, - ["V2LocalIncreasedCriticalStrikeChance1hCorrupted1"] = { type = "Corrupted", affix = "", "(14-18)% increased Critical Strike Chance", statOrder = { 1348 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { "wand", "rapier", "claw", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "attack", "critical" }, }, - ["V2LocalIncreasedCriticalStrikeChance2hCorrupted_"] = { type = "Corrupted", affix = "", "(14-18)% increased Critical Strike Chance", statOrder = { 1348 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { "bow", "staff", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "attack", "critical" }, }, - ["V2LocalIncreasedCriticalStrikeChance1hCorrupted2__"] = { type = "Corrupted", affix = "", "(14-18)% increased Critical Strike Chance", statOrder = { 1348 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { "dagger", "sceptre", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "attack", "critical" }, }, - ["V2LocalIncreasedPhysicalDamageBowCorrupted1"] = { type = "Corrupted", affix = "", "(10-15)% increased Physical Damage", statOrder = { 1117 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["V2LocalIncreasedPhysicalDamageBowCorrupted2"] = { type = "Corrupted", affix = "", "(16-20)% increased Physical Damage", statOrder = { 1117 }, level = 85, group = "LocalPhysicalDamagePercent", weightKey = { "bow", "default", }, weightVal = { 100, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["V2LocalIncreasedPhysicalDamageCorrupted1"] = { type = "Corrupted", affix = "", "(10-15)% increased Physical Damage", statOrder = { 1117 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { "rapier", "sword", "axe", "mace", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["V2LocalIncreasedPhysicalDamageCorrupted2"] = { type = "Corrupted", affix = "", "(16-20)% increased Physical Damage", statOrder = { 1117 }, level = 85, group = "LocalPhysicalDamagePercent", weightKey = { "rapier", "sword", "axe", "mace", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["V2IncreasedSpellDamage1hCorrupted"] = { type = "Corrupted", affix = "", "(50-60)% increased Spell Damage", statOrder = { 1108 }, level = 1, group = "SpellDamage", weightKey = { "dagger", "default", }, weightVal = { 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["V2LocalMeleeWeaponRangeCorrupted"] = { type = "Corrupted", affix = "", "+(0.1-0.2) metres to Weapon Range", statOrder = { 2620 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { "sword", "mace", "staff", "bow", "two_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, modTags = { "attack" }, }, - ["V2ManaOnHitCorrupted"] = { type = "Corrupted", affix = "", "Gain (4-6) Mana per Enemy Hit with Attacks", statOrder = { 1625 }, level = 40, group = "ManaGainPerTarget", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "mana", "attack" }, }, - ["V2MaximumEnduranceChargesCorruption"] = { type = "Corrupted", affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1685 }, level = 60, group = "MaximumEnduranceCharges", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "endurance_charge" }, }, - ["V2MaxFrenzyChargesCorrupted"] = { type = "Corrupted", affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1690 }, level = 60, group = "MaximumFrenzyCharges", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, modTags = { "frenzy_charge" }, }, - ["V2MaxPowerChargesCorrupted"] = { type = "Corrupted", affix = "", "+1 to Maximum Power Charges", statOrder = { 1695 }, level = 60, group = "IncreasedMaximumPowerCharges", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { "power_charge" }, }, - ["V2MaximumBlockCorruption"] = { type = "Corrupted", affix = "", "+1% to maximum Chance to Block Attack Damage", statOrder = { 1865 }, level = 60, group = "MaximumBlockChance", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { "block" }, }, - ["V2MaximumResistanceCorrupted"] = { type = "Corrupted", affix = "", "+1% to all maximum Resistances", statOrder = { 1523 }, level = 80, group = "MaximumResistances", weightKey = { "amulet", "body_armour", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resistance" }, }, - ["V2MovementVelocityCorrupted"] = { type = "Corrupted", affix = "", "(8-10)% increased Movement Speed", statOrder = { 1679 }, level = 1, group = "MovementVelocity", weightKey = { "amulet", "boots", "default", }, weightVal = { 500, 500, 0 }, modTags = { "speed" }, }, - ["V2PercentageOfBlockAppliesToSpellBlockCorrupted_"] = { type = "Corrupted", affix = "", "(6-7)% Chance to Block Spell Damage", statOrder = { 1041 }, level = 1, group = "BlockingBlocksSpells", weightKey = { "shield", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "block" }, }, - ["V2SpellBlockPercentageCorrupted"] = { type = "Corrupted", affix = "", "(4-5)% Chance to Block Spell Damage", statOrder = { 1046 }, level = 1, group = "SpellBlockPercentage", weightKey = { "shield", "amulet", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "block" }, }, - ["V2PhysicalDamageAddedAsColdCorrupted"] = { type = "Corrupted", affix = "", "Gain (8-12)% of Physical Damage as Extra Cold Damage", statOrder = { 1812 }, level = 1, group = "ColdDamageAsPortionOfDamage", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, - ["V2PhysicalDamageAddedAsFireCorrupted"] = { type = "Corrupted", affix = "", "Gain (8-12)% of Physical Damage as Extra Fire Damage", statOrder = { 1811 }, level = 1, group = "FireDamageAsPortionOfDamage", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, - ["V2PhysicalDamageAddedAsLightningCorrupted"] = { type = "Corrupted", affix = "", "Gain (8-12)% of Physical Damage as Extra Lightning Damage", statOrder = { 1813 }, level = 1, group = "LightningDamageAsPortionOfDamage", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, - ["V2PhysicalDamageTakenAsColdCorrupted"] = { type = "Corrupted", affix = "", "(6-8)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2324 }, level = 60, group = "PhysicalDamageTakenAsCold", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["V2PhysicalDamageTakenAsFireCorrupted"] = { type = "Corrupted", affix = "", "(6-8)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2323 }, level = 60, group = "PhysicalDamageTakenAsFirePercent", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["V2PhysicalDamageTakenAsLightningCorrupted"] = { type = "Corrupted", affix = "", "(6-8)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2325 }, level = 60, group = "PhysicalDamageTakenAsLightningPercent", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["V2PhysicalDamageTakenAsChaosCorrupted_"] = { type = "Corrupted", affix = "", "(6-8)% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2327 }, level = 60, group = "PhysicalDamageTakenAsChaos", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { "physical", "chaos" }, }, - ["V2PointBlankCorrupted"] = { type = "Corrupted", affix = "", "Point Blank", statOrder = { 10246 }, level = 1, group = "PointBlank", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "attack" }, }, - ["V2PurityOfFireSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Purity of Fire Skill", statOrder = { 528 }, level = 56, group = "PurityOfFireSkill", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "skill" }, }, - ["V2PurityOfColdSkillCorrupted___"] = { type = "Corrupted", affix = "", "Grants Level 23 Purity of Ice Skill", statOrder = { 534 }, level = 56, group = "PurityOfColdSkill", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "skill" }, }, - ["V2PurityOfLightningSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Purity of Lightning Skill", statOrder = { 536 }, level = 56, group = "PurityOfLightningSkill", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "skill" }, }, - ["V2PuritySkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 21 Purity of Elements Skill", statOrder = { 550 }, level = 56, group = "PuritySkill", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "skill" }, }, - ["V2ReducedChaosDamageTakenCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% reduced Chaos Damage taken", statOrder = { 2120 }, level = 45, group = "ChaosDamageTakenPercentage", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "chaos" }, }, - ["V2ReducedColdDamageTakenCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% reduced Cold Damage taken", statOrder = { 3255 }, level = 45, group = "ColdDamageTakenPercentage", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "cold" }, }, - ["V2ReducedDamageFromAreaOfEffectCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% reduced Area Damage taken from Hits", statOrder = { 2116 }, level = 20, group = "AreaOfEffectDamageTaken", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["V2ReducedDamageFromProjectilesCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% reduced Damage taken from Projectile Hits", statOrder = { 2624 }, level = 20, group = "ProjectileDamageTaken", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["V2ReducedFireDamageTakenCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% reduced Fire Damage taken", statOrder = { 2119 }, level = 45, group = "FireDamageTaken", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "fire" }, }, - ["V2ReducedLightningDamageTakenCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% reduced Lightning Damage taken", statOrder = { 3254 }, level = 45, group = "LightningDamageTaken", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "lightning" }, }, - ["V2ReducedExtraDamageFromCriticalStrikesBodyCorrupted__"] = { type = "Corrupted", affix = "", "You take 50% reduced Extra Damage from Critical Strikes", statOrder = { 1395 }, level = 20, group = "ReducedExtraDamageFromCrits", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "critical" }, }, - ["V2ReducedExtraDamageFromCriticalStrikesShieldCorrupted"] = { type = "Corrupted", affix = "", "You take (20-30)% reduced Extra Damage from Critical Strikes", statOrder = { 1395 }, level = 20, group = "ReducedExtraDamageFromCrits", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "critical" }, }, - ["V2RegenerateLifePerSecondWhileMovingCorrupted_"] = { type = "Corrupted", affix = "", "Regenerate 100 Life per second while moving", statOrder = { 7018 }, level = 60, group = "LifeRegenerationWhileMoving", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life" }, }, - ["V2ResoluteTechniqueCorrupted"] = { type = "Corrupted", affix = "", "Resolute Technique", statOrder = { 10269 }, level = 40, group = "ResoluteTechnique", weightKey = { "sword", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "critical" }, }, - ["V2SocketedSkillsManaMultiplierCorrupted__"] = { type = "Corrupted", affix = "", "Socketed Skill Gems get a 90% Cost & Reservation Multiplier", statOrder = { 449 }, level = 1, group = "SocketedSkillsManaMultiplier", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana", "gem" }, }, - ["V2SupportedByAccuracyCorrupted__"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 10 Additional Accuracy", statOrder = { 400 }, level = 1, group = "SupportedByAccuracy", weightKey = { "mace", "axe", "bow", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, modTags = { "support", "gem" }, }, - ["V2SupportedByBlindCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 10 Blind", statOrder = { 390 }, level = 1, group = "SupportedByBlind", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "gem" }, }, - ["V2SupportedByBloodmagicCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 1 Lifetap", statOrder = { 269 }, level = 1, group = "SocketedGemsSupportedByLifetap", weightKey = { "mace", "sword", "bow", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, modTags = { "skill", "gem" }, }, - ["V2SupportedByFasterProjectilesCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 10 Faster Projectiles", statOrder = { 402 }, level = 1, group = "SupportedByProjectileSpeed", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "gem" }, }, - ["V2SupportedByFortifyCorrupted_"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 10 Fortify", statOrder = { 416 }, level = 1, group = "SupportedByFortify", weightKey = { "bow", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "support", "gem" }, }, - ["V2SupportedByLifeGainOnHitCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 10 Life Gain On Hit", statOrder = { 268 }, level = 1, group = "SupportedByLifeGainOnHit", weightKey = { "sword", "mace", "bow", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, modTags = { "support", "gem" }, }, - ["V2SupportedByOnslaughtCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 10 Momentum", statOrder = { 282 }, level = 1, group = "SupportedByOnslaught", weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "support", "gem" }, }, - ["V2SupportedByReducedManaCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 10 Inspiration", statOrder = { 414 }, level = 1, group = "SupportedByReducedMana", weightKey = { "sword", "bow", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "support", "gem" }, }, - ["V2WeaponElementalDamageCorrupted"] = { type = "Corrupted", affix = "", "(20-24)% increased Elemental Damage with Attack Skills", statOrder = { 6010 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["V2WrathSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 21 Wrath Skill", statOrder = { 553 }, level = 45, group = "WrathSkill", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "skill" }, }, - ["V2SocketedDurationGemCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Duration Gems", statOrder = { 154 }, level = 20, group = "IncreaseSocketedDurationGemLevel", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "gem" }, }, - ["V2SocketedAoEGemCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed AoE Gems", statOrder = { 155 }, level = 20, group = "IncreasedSocketedAoEGemLevel", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "gem" }, }, - ["V2SocketedAuraGemCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Aura Gems", statOrder = { 160 }, level = 20, group = "LocalIncreaseSocketedAuraLevelCorrupted", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "aura", "gem" }, }, - ["V2SocketedCurseGemCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Curse Gems", statOrder = { 163 }, level = 20, group = "LocalIncreaseSocketedCurseLevelCorrupted", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "gem", "curse" }, }, - ["V2SocketedTrapOrMineGemCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Trap or Mine Gems", statOrder = { 166 }, level = 20, group = "IncreasedSocketedTrapOrMineGemLevel", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "gem" }, }, - ["V2SocketedMinionGemCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Minion Gems", statOrder = { 159 }, level = 20, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "minion", "gem" }, }, - ["V2SocketedWarcryGemCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Warcry Gems", statOrder = { 171 }, level = 20, group = "LocalSocketedWarcryGemLevel", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "gem" }, }, - ["V2SocketedProjectileGemCorrupted_"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Projectile Gems", statOrder = { 156 }, level = 20, group = "LocalIncreaseSocketedProjectileLevelCorrupted", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "gem" }, }, - ["V2IncreasedMaximumLifeCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% increased maximum Life", statOrder = { 1453 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life" }, }, - ["V2IncreasedMaximumEnergyShieldCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% increased maximum Energy Shield", statOrder = { 1443 }, level = 1, group = "MaximumEnergyShieldPercent", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["V2ItemRarityCorrupted_"] = { type = "Corrupted", affix = "", "(20-30)% increased Rarity of Items found", statOrder = { 1478 }, level = 60, group = "IncreasedItemRarity", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "drop" }, }, - ["V2ItemQuantityCorrupted_"] = { type = "Corrupted", affix = "", "(3-5)% increased Quantity of Items found", statOrder = { 1474 }, level = 84, group = "IncreasedItemQuantity", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "drop" }, }, - ["V2IncreasedAuraEffectWrathCorrupted"] = { type = "Corrupted", affix = "", "Wrath has (15-20)% increased Aura Effect", statOrder = { 3227 }, level = 45, group = "IncreasedAuraEffectWrathCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "aura" }, }, - ["V2IncreasedAuraEffectAngerCorrupted"] = { type = "Corrupted", affix = "", "Anger has (15-20)% increased Aura Effect", statOrder = { 3222 }, level = 45, group = "IncreasedAuraEffectAngerCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "aura" }, }, - ["V2IncreasedAuraEffectHatredCorrupted"] = { type = "Corrupted", affix = "", "Hatred has (15-20)% increased Aura Effect", statOrder = { 3232 }, level = 45, group = "IncreasedAuraEffectHatredCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "aura" }, }, - ["V2IncreasedAuraEffectDeterminationCorrupted"] = { type = "Corrupted", affix = "", "Determination has (15-20)% increased Aura Effect", statOrder = { 3233 }, level = 45, group = "IncreasedAuraEffectDeterminationCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "aura" }, }, - ["V2IncreasedAuraEffectDisciplineCorrupted"] = { type = "Corrupted", affix = "", "Discipline has (15-20)% increased Aura Effect", statOrder = { 3234 }, level = 45, group = "IncreasedAuraEffectDisciplineCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "aura" }, }, - ["V2IncreasedAuraEffectGraceCorrupted"] = { type = "Corrupted", affix = "", "Grace has (15-20)% increased Aura Effect", statOrder = { 3229 }, level = 45, group = "IncreasedAuraEffectGraceCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "aura" }, }, - ["V2IncreasedAuraEffectMalevolenceCorrupted"] = { type = "Corrupted", affix = "", "Malevolence has (15-20)% increased Aura Effect", statOrder = { 5857 }, level = 45, group = "IncreasedAuraEffectMalevolenceCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "aura" }, }, - ["V2IncreasedAuraEffectZealotryCorrupted_"] = { type = "Corrupted", affix = "", "Zealotry has (15-20)% increased Aura Effect", statOrder = { 10169 }, level = 45, group = "IncreasedAuraEffectZealotryCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "aura" }, }, - ["V2IncreasedAuraEffectPrideCorrupted"] = { type = "Corrupted", affix = "", "Pride has (15-20)% increased Aura Effect", statOrder = { 9217 }, level = 45, group = "IncreasedAuraEffectPrideCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "aura" }, }, - ["V2IncreasedIntelligenceDexterityCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% increased Dexterity", "(4-6)% increased Intelligence", statOrder = { 1070, 1071 }, level = 1, group = "IncreasedIntelligenceDexterityCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "attribute" }, }, - ["V2IncreasedDexterityStrengthCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% increased Strength", "(4-6)% increased Dexterity", statOrder = { 1069, 1070 }, level = 1, group = "IncreasedDexterityStrengthCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "attribute" }, }, - ["V2IncreasedStrengthIntelligenceCorrupted_"] = { type = "Corrupted", affix = "", "(4-6)% increased Strength", "(4-6)% increased Intelligence", statOrder = { 1069, 1071 }, level = 1, group = "IncreasedStrengthIntelligenceCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "attribute" }, }, - ["V2AllResistancesCorrupted"] = { type = "Corrupted", affix = "", "+(14-16)% to all Elemental Resistances", statOrder = { 1501 }, level = 1, group = "AllResistancesCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "elemental", "resistance" }, }, - ["LocalIncreaseSocketedSupportGemLevelIntMasterVendorItem"] = { type = "Prefix", affix = "Catarina's", "+1 to Level of Socketed Support Gems", statOrder = { 168 }, level = 1, group = "LocalIncreaseSocketedSupportGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "gem" }, }, - ["IncreasedChaosDamageEssence5"] = { type = "Suffix", affix = "of the Essence", "(23-26)% increased Chaos Damage", statOrder = { 1269 }, level = 58, group = "IncreasedChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["IncreasedChaosDamageEssence6"] = { type = "Suffix", affix = "of the Essence", "(27-30)% increased Chaos Damage", statOrder = { 1269 }, level = 74, group = "IncreasedChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["IncreasedChaosDamageEssence7"] = { type = "Suffix", affix = "of the Essence", "(31-34)% increased Chaos Damage", statOrder = { 1269 }, level = 82, group = "IncreasedChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["IncreasedLifeLeechRateEssence1"] = { type = "Suffix", affix = "of the Essence", "150% increased total Recovery per second from Life Leech", statOrder = { 2034 }, level = 63, group = "IncreasedLifeLeechRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, - ["ChaosLeechedAsLifeEssence1_"] = { type = "Suffix", affix = "of the Essence", "0.5% of Chaos Damage Leeched as Life", statOrder = { 1563 }, level = 63, group = "ChaosDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "chaos" }, }, - ["ReduceGlobalFlatManaCostStrIntMasterVendor"] = { type = "Prefix", affix = "Elreon's", "-(8-4) to Total Mana Cost of Skills", statOrder = { 1772 }, level = 1, group = "IncreaseManaCostFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, - ["LifeLeechSpeedDexIntMasterVendorItem"] = { type = "Prefix", affix = "Vorici's", "(20-40)% increased total Recovery per second from Life Leech", statOrder = { 2034 }, level = 1, group = "LifeLeechSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, - ["SocketedGemQualityStrMasterVendorItem"] = { type = "Prefix", affix = "Haku's", "+(3-6)% to Quality of Socketed Support Gems", statOrder = { 183 }, level = 1, group = "IncreaseSocketedSupportGemQuality", weightKey = { "default", }, weightVal = { 0 }, modTags = { "gem" }, }, - ["BleedOnHitGainedDexMasterVendorItem"] = { type = "Prefix", affix = "Tora's", "25% chance to cause Bleeding on Hit", statOrder = { 2357 }, level = 1, group = "CausesBleeding25PercentChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["BleedOnHitGainedDexMasterVendorItemUpdated_"] = { type = "Prefix", affix = "Tora's", "25% chance to cause Bleeding on Hit", statOrder = { 2359 }, level = 1, group = "CausesBleedingChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["AlwaysHitsStrDexMasterVendorItem"] = { type = "Prefix", affix = "Vagan's", "Hits can't be Evaded", statOrder = { 1920 }, level = 1, group = "AlwaysHits", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, }, - ["MapInvasionBossMasterVendorItem"] = { type = "Prefix", affix = "Kirac's", "Area is inhabited by an additional Invasion Boss", statOrder = { 2495 }, level = 1, group = "MapExtraInvasionBosses", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["LightningPenetrationWarbands"] = { type = "Prefix", affix = "Turncoat's", "Damage Penetrates (6-10)% Lightning Resistance", statOrder = { 2856 }, level = 60, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningResistancePenetrationEssence1_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 5% Lightning Resistance", statOrder = { 2856 }, level = 42, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningResistancePenetrationEssence2"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 6% Lightning Resistance", statOrder = { 2856 }, level = 58, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningResistancePenetrationEssence3"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 7% Lightning Resistance", statOrder = { 2856 }, level = 74, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningResistancePenetrationEssence4"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 8% Lightning Resistance", statOrder = { 2856 }, level = 82, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningResistancePenetrationTwoHandEssence1_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (9-10)% Lightning Resistance", statOrder = { 2856 }, level = 42, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningResistancePenetrationTwoHandEssence2"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (11-12)% Lightning Resistance", statOrder = { 2856 }, level = 58, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningResistancePenetrationTwoHandEssence3_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (13-14)% Lightning Resistance", statOrder = { 2856 }, level = 74, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningResistancePenetrationTwoHandEssence4"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (15-16)% Lightning Resistance", statOrder = { 2856 }, level = 82, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["FireResistancePenetrationWarbands"] = { type = "Prefix", affix = "Betrayer's", "Damage Penetrates (6-10)% Fire Resistance", statOrder = { 2853 }, level = 60, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireResistancePenetrationEssence1"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 4% Fire Resistance", statOrder = { 2853 }, level = 26, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireResistancePenetrationEssence2"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 5% Fire Resistance", statOrder = { 2853 }, level = 42, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireResistancePenetrationEssence3"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 6% Fire Resistance", statOrder = { 2853 }, level = 58, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireResistancePenetrationEssence4___"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 7% Fire Resistance", statOrder = { 2853 }, level = 74, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireResistancePenetrationEssence5"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 8% Fire Resistance", statOrder = { 2853 }, level = 82, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireResistancePenetrationTwoHandEssence1"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (7-8)% Fire Resistance", statOrder = { 2853 }, level = 26, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireResistancePenetrationTwoHandEssence2_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (9-10)% Fire Resistance", statOrder = { 2853 }, level = 42, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireResistancePenetrationTwoHandEssence3"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (11-12)% Fire Resistance", statOrder = { 2853 }, level = 58, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireResistancePenetrationTwoHandEssence4"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (13-14)% Fire Resistance", statOrder = { 2853 }, level = 74, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireResistancePenetrationTwoHandEssence5"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (15-16)% Fire Resistance", statOrder = { 2853 }, level = 82, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["ColdResistancePenetrationWarbands"] = { type = "Prefix", affix = "Deceiver's", "Damage Penetrates (6-10)% Cold Resistance", statOrder = { 2855 }, level = 60, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdResistancePenetrationEssence1"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 3% Cold Resistance", statOrder = { 2855 }, level = 10, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdResistancePenetrationEssence2"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 4% Cold Resistance", statOrder = { 2855 }, level = 26, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdResistancePenetrationEssence3"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 5% Cold Resistance", statOrder = { 2855 }, level = 42, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdResistancePenetrationEssence4_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 6% Cold Resistance", statOrder = { 2855 }, level = 58, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdResistancePenetrationEssence5"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 7% Cold Resistance", statOrder = { 2855 }, level = 74, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdResistancePenetrationEssence6_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 8% Cold Resistance", statOrder = { 2855 }, level = 82, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdResistancePenetrationTwoHandEssence1"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (5-6)% Cold Resistance", statOrder = { 2855 }, level = 10, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdResistancePenetrationTwoHandEssence2"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (7-8)% Cold Resistance", statOrder = { 2855 }, level = 26, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdResistancePenetrationTwoHandEssence3"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (9-10)% Cold Resistance", statOrder = { 2855 }, level = 42, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdResistancePenetrationTwoHandEssence4"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (11-12)% Cold Resistance", statOrder = { 2855 }, level = 58, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdResistancePenetrationTwoHandEssence5"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (13-14)% Cold Resistance", statOrder = { 2855 }, level = 74, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdResistancePenetrationTwoHandEssence6__"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (15-16)% Cold Resistance", statOrder = { 2855 }, level = 82, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ChanceToAvoidElementalStatusAilments1"] = { type = "Suffix", affix = "of Stoicism", "(16-20)% chance to Avoid Elemental Ailments", statOrder = { 1724 }, level = 23, group = "AvoidElementalStatusAilments", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, - ["ChanceToAvoidElementalStatusAilments2"] = { type = "Suffix", affix = "of Resolve", "(21-25)% chance to Avoid Elemental Ailments", statOrder = { 1724 }, level = 41, group = "AvoidElementalStatusAilments", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, - ["ChanceToAvoidElementalStatusAilments3__"] = { type = "Suffix", affix = "of Fortitude", "(26-30)% chance to Avoid Elemental Ailments", statOrder = { 1724 }, level = 57, group = "AvoidElementalStatusAilments", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, - ["ChanceToAvoidElementalStatusAilments4"] = { type = "Suffix", affix = "of Will", "(31-35)% chance to Avoid Elemental Ailments", statOrder = { 1724 }, level = 73, group = "AvoidElementalStatusAilments", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, - ["ChanceToAvoidElementalStatusAilmentsEssence1"] = { type = "Suffix", affix = "of the Essence", "(16-20)% chance to Avoid Elemental Ailments", statOrder = { 1724 }, level = 42, group = "AvoidElementalStatusAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, - ["ChanceToAvoidElementalStatusAilmentsEssence2"] = { type = "Suffix", affix = "of the Essence", "(21-25)% chance to Avoid Elemental Ailments", statOrder = { 1724 }, level = 58, group = "AvoidElementalStatusAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, - ["ChanceToAvoidElementalStatusAilmentsEssence3"] = { type = "Suffix", affix = "of the Essence", "(26-30)% chance to Avoid Elemental Ailments", statOrder = { 1724 }, level = 74, group = "AvoidElementalStatusAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, - ["ChanceToAvoidElementalStatusAilmentsEssence4"] = { type = "Suffix", affix = "of the Essence", "(31-35)% chance to Avoid Elemental Ailments", statOrder = { 1724 }, level = 82, group = "AvoidElementalStatusAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, - ["AttackAndCastSpeed1"] = { type = "Suffix", affix = "of Zeal", "(3-4)% increased Attack and Cast Speed", statOrder = { 1923 }, level = 15, group = "AttackAndCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "caster", "speed" }, }, - ["AttackAndCastSpeed2"] = { type = "Suffix", affix = "of Fervour", "(5-6)% increased Attack and Cast Speed", statOrder = { 1923 }, level = 45, group = "AttackAndCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "caster", "speed" }, }, - ["AttackAndCastSpeed3"] = { type = "Suffix", affix = "of Haste", "(7-8)% increased Attack and Cast Speed", statOrder = { 1923 }, level = 70, group = "AttackAndCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "caster", "speed" }, }, - ["LifeLeechPermyriadLocal1"] = { type = "Prefix", affix = "Remora's", "(0.2-0.4)% of Physical Attack Damage Leeched as Life", statOrder = { 1532 }, level = 50, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeechPermyriadLocal2"] = { type = "Prefix", affix = "Lamprey's", "(0.6-0.8)% of Physical Attack Damage Leeched as Life", statOrder = { 1532 }, level = 60, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeechPermyriadLocal3"] = { type = "Prefix", affix = "Vampire's", "(1-1.2)% of Physical Attack Damage Leeched as Life", statOrder = { 1532 }, level = 70, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeechPermyriadLocalSuffix1"] = { type = "Suffix", affix = "of the Remora", "(2-2.4)% of Physical Attack Damage Leeched as Life", statOrder = { 1532 }, level = 20, group = "LifeLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeechPermyriadLocalSuffix2"] = { type = "Suffix", affix = "of the Lamprey", "(2.6-3.2)% of Physical Attack Damage Leeched as Life", statOrder = { 1532 }, level = 45, group = "LifeLeechLocalPermyriad", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeechPermyriadLocalSuffix3"] = { type = "Suffix", affix = "of the Vampire", "(3.5-4.5)% of Physical Attack Damage Leeched as Life", statOrder = { 1532 }, level = 70, group = "LifeLeechLocalPermyriad", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeechPermyriadLocalEssence1"] = { type = "Prefix", affix = "Essences", "(0.5-0.7)% of Physical Attack Damage Leeched as Life", statOrder = { 1532 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeechPermyriadLocalEssence2"] = { type = "Prefix", affix = "Essences", "(0.6-0.8)% of Physical Attack Damage Leeched as Life", statOrder = { 1532 }, level = 10, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeechPermyriadLocalEssence3"] = { type = "Prefix", affix = "Essences", "(0.7-0.9)% of Physical Attack Damage Leeched as Life", statOrder = { 1532 }, level = 26, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeechPermyriadLocalEssence4"] = { type = "Prefix", affix = "Essences", "(0.8-1)% of Physical Attack Damage Leeched as Life", statOrder = { 1532 }, level = 42, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeechPermyriadLocalEssence5"] = { type = "Prefix", affix = "Essences", "(0.9-1.1)% of Physical Attack Damage Leeched as Life", statOrder = { 1532 }, level = 58, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeechPermyriadLocalEssence6"] = { type = "Prefix", affix = "Essences", "(1-1.2)% of Physical Attack Damage Leeched as Life", statOrder = { 1532 }, level = 74, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeechPermyriadLocalEssence7"] = { type = "Prefix", affix = "Essences", "(1.1-1.3)% of Physical Attack Damage Leeched as Life", statOrder = { 1532 }, level = 82, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeechPermyriadLocalSuffixEssence1"] = { type = "Suffix", affix = "of the Essence", "(2-2.2)% of Physical Attack Damage Leeched as Life", statOrder = { 1532 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeechPermyriadLocalSuffixEssence2"] = { type = "Suffix", affix = "of the Essence", "(2.3-2.4)% of Physical Attack Damage Leeched as Life", statOrder = { 1532 }, level = 10, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeechPermyriadLocalSuffixEssence3"] = { type = "Suffix", affix = "of the Essence", "(2.5-2.8)% of Physical Attack Damage Leeched as Life", statOrder = { 1532 }, level = 26, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeechPermyriadLocalSuffixEssence4"] = { type = "Suffix", affix = "of the Essence", "(2.9-3.2)% of Physical Attack Damage Leeched as Life", statOrder = { 1532 }, level = 42, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeechPermyriadLocalSuffixEssence5"] = { type = "Suffix", affix = "of the Essence", "(3.3-3.6)% of Physical Attack Damage Leeched as Life", statOrder = { 1532 }, level = 58, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeechPermyriadLocalSuffixEssence6"] = { type = "Suffix", affix = "of the Essence", "(3.7-4)% of Physical Attack Damage Leeched as Life", statOrder = { 1532 }, level = 74, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeechPermyriadLocalSuffixEssence7"] = { type = "Suffix", affix = "of the Essence", "(4.1-4.4)% of Physical Attack Damage Leeched as Life", statOrder = { 1532 }, level = 82, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, - ["ManaLeechPermyriadLocal1"] = { type = "Prefix", affix = "Thirsty", "(0.2-0.4)% of Physical Attack Damage Leeched as Mana", statOrder = { 1582 }, level = 50, group = "ManaLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "mana", "physical", "attack" }, }, - ["ManaLeechPermyriadLocalSuffix1"] = { type = "Suffix", affix = "of Thirst", "(2.6-3.2)% of Physical Attack Damage Leeched as Mana", statOrder = { 1582 }, level = 50, group = "ManaLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "mana", "physical", "attack" }, }, - ["AttackDamagePercent1"] = { type = "Prefix", affix = "Bully's", "(4-8)% increased Attack Damage", statOrder = { 1083 }, level = 4, group = "AttackDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack" }, }, - ["AttackDamagePercent2"] = { type = "Prefix", affix = "Thug's", "(9-16)% increased Attack Damage", statOrder = { 1083 }, level = 15, group = "AttackDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack" }, }, - ["AttackDamagePercent3"] = { type = "Prefix", affix = "Brute's", "(17-24)% increased Attack Damage", statOrder = { 1083 }, level = 30, group = "AttackDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack" }, }, - ["AttackDamagePercent4"] = { type = "Prefix", affix = "Assailant's", "(25-29)% increased Attack Damage", statOrder = { 1083 }, level = 60, group = "AttackDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack" }, }, - ["AttackDamagePercent5"] = { type = "Prefix", affix = "Predator's", "(30-34)% increased Attack Damage", statOrder = { 1083 }, level = 81, group = "AttackDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack" }, }, - ["SummonTotemCastSpeedEssence1"] = { type = "Suffix", affix = "of the Essence", "(21-25)% increased Totem Placement speed", statOrder = { 2454 }, level = 42, group = "SummonTotemCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, - ["SummonTotemCastSpeedEssence2"] = { type = "Suffix", affix = "of the Essence", "(26-30)% increased Totem Placement speed", statOrder = { 2454 }, level = 58, group = "SummonTotemCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, - ["SummonTotemCastSpeedEssence3"] = { type = "Suffix", affix = "of the Essence", "(31-35)% increased Totem Placement speed", statOrder = { 2454 }, level = 74, group = "SummonTotemCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, - ["SummonTotemCastSpeedEssence4"] = { type = "Suffix", affix = "of the Essence", "(36-45)% increased Totem Placement speed", statOrder = { 2454 }, level = 82, group = "SummonTotemCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, - ["StunAvoidance1"] = { type = "Suffix", affix = "of Composure", "(11-13)% chance to Avoid being Stunned", statOrder = { 1732 }, level = 1, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["StunAvoidance2"] = { type = "Suffix", affix = "of Surefootedness", "(14-16)% chance to Avoid being Stunned", statOrder = { 1732 }, level = 1, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["StunAvoidance3"] = { type = "Suffix", affix = "of Persistence", "(17-19)% chance to Avoid being Stunned", statOrder = { 1732 }, level = 1, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["StunAvoidance4"] = { type = "Suffix", affix = "of Relentlessness", "(20-22)% chance to Avoid being Stunned", statOrder = { 1732 }, level = 1, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["StunAvoidanceEssence5"] = { type = "Suffix", affix = "of the Essence", "(23-26)% chance to Avoid being Stunned", statOrder = { 1732 }, level = 58, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["StunAvoidanceEssence6"] = { type = "Suffix", affix = "of the Essence", "(27-30)% chance to Avoid being Stunned", statOrder = { 1732 }, level = 74, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["StunAvoidanceEssence7"] = { type = "Suffix", affix = "of the Essence", "(31-44)% chance to Avoid being Stunned", statOrder = { 1732 }, level = 82, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["IncreasedStunThresholdEssence5"] = { type = "Suffix", affix = "of the Essence", "(31-39)% increased Stun Threshold", statOrder = { 3138 }, level = 58, group = "IncreasedStunThreshold", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["IncreasedStunThresholdEssence6"] = { type = "Suffix", affix = "of the Essence", "(40-45)% increased Stun Threshold", statOrder = { 3138 }, level = 74, group = "IncreasedStunThreshold", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["IncreasedStunThresholdEssence7"] = { type = "Suffix", affix = "of the Essence", "(46-60)% increased Stun Threshold", statOrder = { 3138 }, level = 82, group = "IncreasedStunThreshold", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["SpellAddedFireDamage1"] = { type = "Prefix", affix = "Heated", "Adds (1-2) to (3-4) Fire Damage to Spells", statOrder = { 1288 }, level = 1, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamage2_"] = { type = "Prefix", affix = "Smouldering", "Adds (6-8) to (12-14) Fire Damage to Spells", statOrder = { 1288 }, level = 11, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamage3"] = { type = "Prefix", affix = "Smoking", "Adds (10-12) to (19-23) Fire Damage to Spells", statOrder = { 1288 }, level = 18, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamage4"] = { type = "Prefix", affix = "Burning", "Adds (13-18) to (27-31) Fire Damage to Spells", statOrder = { 1288 }, level = 26, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamage5"] = { type = "Prefix", affix = "Flaming", "Adds (19-25) to (37-44) Fire Damage to Spells", statOrder = { 1288 }, level = 33, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamage6"] = { type = "Prefix", affix = "Scorching", "Adds (24-33) to (48-57) Fire Damage to Spells", statOrder = { 1288 }, level = 42, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamage7"] = { type = "Prefix", affix = "Incinerating", "Adds (31-42) to (64-73) Fire Damage to Spells", statOrder = { 1288 }, level = 51, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamage8"] = { type = "Prefix", affix = "Blasting", "Adds (40-52) to (79-91) Fire Damage to Spells", statOrder = { 1288 }, level = 62, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamage9"] = { type = "Prefix", affix = "Cremating", "Adds (49-66) to (98-115) Fire Damage to Spells", statOrder = { 1288 }, level = 74, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (45-54) to (80-90) Fire Damage to Spells", statOrder = { 1288 }, level = 82, group = "SpellAddedFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedColdDamage1"] = { type = "Prefix", affix = "Frosted", "Adds 1 to (2-3) Cold Damage to Spells", statOrder = { 1289 }, level = 1, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamage2"] = { type = "Prefix", affix = "Chilled", "Adds (5-7) to (10-12) Cold Damage to Spells", statOrder = { 1289 }, level = 11, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamage3"] = { type = "Prefix", affix = "Icy", "Adds (8-10) to (16-18) Cold Damage to Spells", statOrder = { 1289 }, level = 18, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamage4"] = { type = "Prefix", affix = "Frigid", "Adds (11-15) to (22-25) Cold Damage to Spells", statOrder = { 1289 }, level = 26, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamage5"] = { type = "Prefix", affix = "Freezing", "Adds (16-20) to (30-36) Cold Damage to Spells", statOrder = { 1289 }, level = 33, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamage6_"] = { type = "Prefix", affix = "Frozen", "Adds (20-26) to (40-46) Cold Damage to Spells", statOrder = { 1289 }, level = 42, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamage7"] = { type = "Prefix", affix = "Glaciated", "Adds (26-35) to (51-60) Cold Damage to Spells", statOrder = { 1289 }, level = 51, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamage8"] = { type = "Prefix", affix = "Polar", "Adds (33-43) to (64-75) Cold Damage to Spells", statOrder = { 1289 }, level = 62, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamage9"] = { type = "Prefix", affix = "Entombing", "Adds (41-54) to (81-93) Cold Damage to Spells", statOrder = { 1289 }, level = 74, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (35-45) to (66-74) Cold Damage to Spells", statOrder = { 1289 }, level = 82, group = "SpellAddedColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedLightningDamage1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (4-5) Lightning Damage to Spells", statOrder = { 1290 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamage2"] = { type = "Prefix", affix = "Buzzing", "Adds (1-2) to (21-22) Lightning Damage to Spells", statOrder = { 1290 }, level = 11, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamage3"] = { type = "Prefix", affix = "Snapping", "Adds (1-2) to (33-35) Lightning Damage to Spells", statOrder = { 1290 }, level = 18, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamage4"] = { type = "Prefix", affix = "Crackling", "Adds (1-4) to (46-48) Lightning Damage to Spells", statOrder = { 1290 }, level = 26, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamage5"] = { type = "Prefix", affix = "Sparking", "Adds (2-5) to (64-68) Lightning Damage to Spells", statOrder = { 1290 }, level = 33, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamage6"] = { type = "Prefix", affix = "Arcing", "Adds (2-7) to (84-88) Lightning Damage to Spells", statOrder = { 1290 }, level = 42, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamage7"] = { type = "Prefix", affix = "Shocking", "Adds (2-9) to (109-115) Lightning Damage to Spells", statOrder = { 1290 }, level = 51, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamage8"] = { type = "Prefix", affix = "Discharging", "Adds (4-11) to (136-144) Lightning Damage to Spells", statOrder = { 1290 }, level = 62, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamage9"] = { type = "Prefix", affix = "Electrocuting", "Adds (4-14) to (170-179) Lightning Damage to Spells", statOrder = { 1290 }, level = 74, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (4-11) to (134-144) Lightning Damage to Spells", statOrder = { 1290 }, level = 82, group = "SpellAddedLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedFireDamageTwoHand1"] = { type = "Prefix", affix = "Heated", "Adds (1-2) to (4-5) Fire Damage to Spells", statOrder = { 1288 }, level = 1, group = "SpellAddedFireDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamageTwoHand2"] = { type = "Prefix", affix = "Smouldering", "Adds (8-11) to (17-19) Fire Damage to Spells", statOrder = { 1288 }, level = 11, group = "SpellAddedFireDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamageTwoHand3"] = { type = "Prefix", affix = "Smoking", "Adds (13-17) to (26-29) Fire Damage to Spells", statOrder = { 1288 }, level = 18, group = "SpellAddedFireDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamageTwoHand4"] = { type = "Prefix", affix = "Burning", "Adds (18-23) to (36-42) Fire Damage to Spells", statOrder = { 1288 }, level = 26, group = "SpellAddedFireDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamageTwoHand5"] = { type = "Prefix", affix = "Flaming", "Adds (25-33) to (50-59) Fire Damage to Spells", statOrder = { 1288 }, level = 33, group = "SpellAddedFireDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamageTwoHand6_"] = { type = "Prefix", affix = "Scorching", "Adds (32-44) to (65-76) Fire Damage to Spells", statOrder = { 1288 }, level = 42, group = "SpellAddedFireDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamageTwoHand7"] = { type = "Prefix", affix = "Incinerating", "Adds (42-56) to (85-99) Fire Damage to Spells", statOrder = { 1288 }, level = 51, group = "SpellAddedFireDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamageTwoHand8"] = { type = "Prefix", affix = "Blasting", "Adds (53-70) to (107-123) Fire Damage to Spells", statOrder = { 1288 }, level = 62, group = "SpellAddedFireDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamageTwoHand9"] = { type = "Prefix", affix = "Cremating", "Adds (66-88) to (132-155) Fire Damage to Spells", statOrder = { 1288 }, level = 74, group = "SpellAddedFireDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamageTwoHandEssence7_"] = { type = "Prefix", affix = "Essences", "Adds (67-81) to (120-135) Fire Damage to Spells", statOrder = { 1288 }, level = 82, group = "SpellAddedFireDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedColdDamageTwoHand1_"] = { type = "Prefix", affix = "Frosted", "Adds (1-2) to (3-4) Cold Damage to Spells", statOrder = { 1289 }, level = 1, group = "SpellAddedColdDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamageTwoHand2"] = { type = "Prefix", affix = "Chilled", "Adds (8-10) to (15-18) Cold Damage to Spells", statOrder = { 1289 }, level = 11, group = "SpellAddedColdDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamageTwoHand3"] = { type = "Prefix", affix = "Icy", "Adds (12-15) to (23-28) Cold Damage to Spells", statOrder = { 1289 }, level = 18, group = "SpellAddedColdDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamageTwoHand4"] = { type = "Prefix", affix = "Frigid", "Adds (16-22) to (33-38) Cold Damage to Spells", statOrder = { 1289 }, level = 26, group = "SpellAddedColdDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamageTwoHand5"] = { type = "Prefix", affix = "Freezing", "Adds (24-30) to (45-53) Cold Damage to Spells", statOrder = { 1289 }, level = 33, group = "SpellAddedColdDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamageTwoHand6"] = { type = "Prefix", affix = "Frozen", "Adds (30-40) to (59-69) Cold Damage to Spells", statOrder = { 1289 }, level = 42, group = "SpellAddedColdDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamageTwoHand7"] = { type = "Prefix", affix = "Glaciated", "Adds (39-52) to (77-90) Cold Damage to Spells", statOrder = { 1289 }, level = 51, group = "SpellAddedColdDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamageTwoHand8"] = { type = "Prefix", affix = "Polar", "Adds (49-64) to (96-113) Cold Damage to Spells", statOrder = { 1289 }, level = 62, group = "SpellAddedColdDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamageTwoHand9"] = { type = "Prefix", affix = "Entombing", "Adds (61-81) to (120-140) Cold Damage to Spells", statOrder = { 1289 }, level = 74, group = "SpellAddedColdDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamageTwoHandEssence7"] = { type = "Prefix", affix = "Essences", "Adds (57-66) to (100-111) Cold Damage to Spells", statOrder = { 1289 }, level = 82, group = "SpellAddedColdDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedLightningDamageTwoHand1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (6-7) Lightning Damage to Spells", statOrder = { 1290 }, level = 1, group = "SpellAddedLightningDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamageTwoHand2"] = { type = "Prefix", affix = "Buzzing", "Adds (1-3) to (32-34) Lightning Damage to Spells", statOrder = { 1290 }, level = 11, group = "SpellAddedLightningDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamageTwoHand3"] = { type = "Prefix", affix = "Snapping", "Adds (1-4) to (49-52) Lightning Damage to Spells", statOrder = { 1290 }, level = 18, group = "SpellAddedLightningDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamageTwoHand4"] = { type = "Prefix", affix = "Crackling", "Adds (2-5) to (69-73) Lightning Damage to Spells", statOrder = { 1290 }, level = 26, group = "SpellAddedLightningDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamageTwoHand5"] = { type = "Prefix", affix = "Sparking", "Adds (2-8) to (97-102) Lightning Damage to Spells", statOrder = { 1290 }, level = 33, group = "SpellAddedLightningDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamageTwoHand6"] = { type = "Prefix", affix = "Arcing", "Adds (3-10) to (126-133) Lightning Damage to Spells", statOrder = { 1290 }, level = 42, group = "SpellAddedLightningDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamageTwoHand7"] = { type = "Prefix", affix = "Shocking", "Adds (5-12) to (164-173) Lightning Damage to Spells", statOrder = { 1290 }, level = 51, group = "SpellAddedLightningDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamageTwoHand8"] = { type = "Prefix", affix = "Discharging", "Adds (5-17) to (204-216) Lightning Damage to Spells", statOrder = { 1290 }, level = 62, group = "SpellAddedLightningDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamageTwoHand9_"] = { type = "Prefix", affix = "Electrocuting", "Adds (7-20) to (255-270) Lightning Damage to Spells", statOrder = { 1290 }, level = 74, group = "SpellAddedLightningDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamageTwoHandEssence7"] = { type = "Prefix", affix = "Essences", "Adds (6-16) to (201-216) Lightning Damage to Spells", statOrder = { 1290 }, level = 82, group = "SpellAddedLightningDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["LocalAddedChaosDamage1"] = { type = "Prefix", affix = "Malicious", "Adds (56-87) to (105-160) Chaos Damage", statOrder = { 1274 }, level = 83, group = "LocalChaosDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 600, 600, 600, 400, 250, 250, 600, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["LocalAddedChaosDamageEssence1_"] = { type = "Prefix", affix = "Essences", "Adds (37-59) to (79-103) Chaos Damage", statOrder = { 1274 }, level = 62, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["LocalAddedChaosDamageEssence2__"] = { type = "Prefix", affix = "Essences", "Adds (43-67) to (89-113) Chaos Damage", statOrder = { 1274 }, level = 74, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["LocalAddedChaosDamageEssence3"] = { type = "Prefix", affix = "Essences", "Adds (53-79) to (101-131) Chaos Damage", statOrder = { 1274 }, level = 82, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["LocalAddedChaosDamageTwoHand1"] = { type = "Prefix", affix = "Malicious", "Adds (98-149) to (183-280) Chaos Damage", statOrder = { 1274 }, level = 83, group = "LocalChaosDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 700, 600, 600, 250, 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["LocalAddedChaosDamageTwoHandEssence1"] = { type = "Prefix", affix = "Essences", "Adds (61-103) to (149-193) Chaos Damage", statOrder = { 1274 }, level = 62, group = "LocalChaosDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["LocalAddedChaosDamageTwoHandEssence2"] = { type = "Prefix", affix = "Essences", "Adds (73-113) to (163-205) Chaos Damage", statOrder = { 1274 }, level = 74, group = "LocalChaosDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["LocalAddedChaosDamageTwoHandEssence3"] = { type = "Prefix", affix = "Essences", "Adds (89-131) to (181-229) Chaos Damage", statOrder = { 1274 }, level = 82, group = "LocalChaosDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["RarityDuringFlaskEffectWarbands"] = { type = "Prefix", affix = "Brinerot", "30% increased Rarity of Items found during any Flask Effect", statOrder = { 2631 }, level = 1, group = "RarityDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "drop" }, }, - ["DamageDuringFlaskEffectWarbands"] = { type = "Prefix", affix = "Brinerot", "(20-25)% increased Damage during any Flask Effect", statOrder = { 3944 }, level = 1, group = "DamageDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "damage" }, }, - ["PierceChanceEssence5"] = { type = "Prefix", affix = "", "Projectiles Pierce an additional Target", statOrder = { 9282 }, level = 1, group = "Quiver1AdditionalPierceOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["PierceChanceEssence6_"] = { type = "Prefix", affix = "", "Projectiles Pierce an additional Target", statOrder = { 9282 }, level = 1, group = "Quiver1AdditionalPierceOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["PierceChanceEssence7"] = { type = "Prefix", affix = "", "Projectiles Pierce 2 additional Targets", statOrder = { 9283 }, level = 1, group = "Quiver2AdditionalPierceOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["AdditionalPierceEssence5"] = { type = "Prefix", affix = "Essences", "Projectiles Pierce an additional Target", statOrder = { 1671 }, level = 1, group = "AdditionalPierce", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["AdditionalPierceEssence6_"] = { type = "Prefix", affix = "Essences", "Projectiles Pierce an additional Target", statOrder = { 1671 }, level = 1, group = "AdditionalPierce", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["AdditionalPierceEssence7"] = { type = "Prefix", affix = "Essences", "Projectiles Pierce 2 additional Targets", statOrder = { 1671 }, level = 1, group = "AdditionalPierce", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["CannotBePoisonedEssence1"] = { type = "Suffix", affix = "of the Essence", "Cannot be Poisoned", statOrder = { 3235 }, level = 63, group = "CannotBePoisoned", weightKey = { "default", }, weightVal = { 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["ChanceToAvoidFireDamageEssence4"] = { type = "Suffix", affix = "of the Essence", "(6-7)% chance to Avoid Fire Damage from Hits", statOrder = { 3239 }, level = 42, group = "FireDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire" }, }, - ["ChanceToAvoidFireDamageEssence5"] = { type = "Suffix", affix = "of the Essence", "(7-8)% chance to Avoid Fire Damage from Hits", statOrder = { 3239 }, level = 58, group = "FireDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire" }, }, - ["ChanceToAvoidFireDamageEssence6"] = { type = "Suffix", affix = "of the Essence", "(8-9)% chance to Avoid Fire Damage from Hits", statOrder = { 3239 }, level = 74, group = "FireDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire" }, }, - ["ChanceToAvoidFireDamageEssence7"] = { type = "Suffix", affix = "of the Essence", "(9-10)% chance to Avoid Fire Damage from Hits", statOrder = { 3239 }, level = 82, group = "FireDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire" }, }, - ["ChanceToAvoidColdDamageEssence3"] = { type = "Suffix", affix = "of the Essence", "(5-6)% chance to Avoid Cold Damage from Hits", statOrder = { 3240 }, level = 26, group = "ColdDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold" }, }, - ["ChanceToAvoidColdDamageEssence4"] = { type = "Suffix", affix = "of the Essence", "(6-7)% chance to Avoid Cold Damage from Hits", statOrder = { 3240 }, level = 42, group = "ColdDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold" }, }, - ["ChanceToAvoidColdDamageEssence5"] = { type = "Suffix", affix = "of the Essence", "(7-8)% chance to Avoid Cold Damage from Hits", statOrder = { 3240 }, level = 58, group = "ColdDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold" }, }, - ["ChanceToAvoidColdDamageEssence6"] = { type = "Suffix", affix = "of the Essence", "(8-9)% chance to Avoid Cold Damage from Hits", statOrder = { 3240 }, level = 74, group = "ColdDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold" }, }, - ["ChanceToAvoidColdDamageEssence7"] = { type = "Suffix", affix = "of the Essence", "(9-10)% chance to Avoid Cold Damage from Hits", statOrder = { 3240 }, level = 82, group = "ColdDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold" }, }, - ["ChanceToAvoidLightningDamageEssence2"] = { type = "Suffix", affix = "of the Essence", "(4-5)% chance to Avoid Lightning Damage from Hits", statOrder = { 3241 }, level = 10, group = "LightningDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning" }, }, - ["ChanceToAvoidLightningDamageEssence3"] = { type = "Suffix", affix = "of the Essence", "(5-6)% chance to Avoid Lightning Damage from Hits", statOrder = { 3241 }, level = 26, group = "LightningDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning" }, }, - ["ChanceToAvoidLightningDamageEssence4"] = { type = "Suffix", affix = "of the Essence", "(6-7)% chance to Avoid Lightning Damage from Hits", statOrder = { 3241 }, level = 42, group = "LightningDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning" }, }, - ["ChanceToAvoidLightningDamageEssence5"] = { type = "Suffix", affix = "of the Essence", "(7-8)% chance to Avoid Lightning Damage from Hits", statOrder = { 3241 }, level = 58, group = "LightningDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning" }, }, - ["ChanceToAvoidLightningDamageEssence6"] = { type = "Suffix", affix = "of the Essence", "(8-9)% chance to Avoid Lightning Damage from Hits", statOrder = { 3241 }, level = 74, group = "LightningDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning" }, }, - ["ChanceToAvoidLightningDamageEssence7"] = { type = "Suffix", affix = "of the Essence", "(9-10)% chance to Avoid Lightning Damage from Hits", statOrder = { 3241 }, level = 82, group = "LightningDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning" }, }, - ["QuiverAddedChaosEssence1_"] = { type = "Prefix", affix = "Essences", "Adds (11-15) to (27-33) Chaos Damage to Attacks", statOrder = { 1271 }, level = 62, group = "ChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["QuiverAddedChaosEssence2_"] = { type = "Prefix", affix = "Essences", "Adds (17-21) to (37-43) Chaos Damage to Attacks", statOrder = { 1271 }, level = 74, group = "ChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["QuiverAddedChaosEssence3__"] = { type = "Prefix", affix = "Essences", "Adds (23-37) to (49-61) Chaos Damage to Attacks", statOrder = { 1271 }, level = 82, group = "ChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["PoisonDuration1"] = { type = "Suffix", affix = "of Rot", "(8-12)% increased Poison Duration", statOrder = { 3036 }, level = 30, group = "PoisonDuration", weightKey = { "bow", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["PoisonDuration2"] = { type = "Suffix", affix = "of Putrefaction", "(13-18)% increased Poison Duration", statOrder = { 3036 }, level = 60, group = "PoisonDuration", weightKey = { "bow", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["PoisonDurationEnhancedMod"] = { type = "Suffix", affix = "of Tacati", "(26-30)% increased Chaos Damage", "(13-18)% increased Poison Duration", statOrder = { 1269, 3036 }, level = 1, group = "PoisonDurationChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["SocketedGemsDealAdditionalFireDamageEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems deal 175 to 225 Added Fire Damage", statOrder = { 474 }, level = 63, group = "SocketedGemsDealAdditionalFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "elemental_damage", "damage", "elemental", "fire", "gem" }, }, - ["SocketedGemsHaveMoreAttackAndCastSpeedEssence1"] = { type = "Suffix", affix = "", "Socketed Gems have 20% more Attack and Cast Speed", statOrder = { 468 }, level = 63, group = "SocketedGemsHaveMoreAttackAndCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "attack", "caster", "speed", "gem" }, }, - ["SocketedGemsHaveMoreAttackAndCastSpeedEssenceNew1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems have 16% more Attack and Cast Speed", statOrder = { 468 }, level = 63, group = "SocketedGemsHaveMoreAttackAndCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "attack", "caster", "speed", "gem" }, }, - ["SocketedGemsAddPercentageOfPhysicalAsLightningEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems gain 50% of Physical Damage as extra Lightning Damage", statOrder = { 475 }, level = 63, group = "SocketedGemsAddPercentageOfPhysicalAsLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning", "gem" }, }, - ["SocketedGemsDealMoreElementalDamageEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems deal 30% more Elemental Damage", statOrder = { 471 }, level = 63, group = "SocketedGemsDealMoreElementalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "elemental_damage", "damage", "elemental", "gem" }, }, - ["ElementalDamageTakenWhileStationaryEssence1"] = { type = "Suffix", affix = "of the Essence", "5% reduced Elemental Damage Taken while stationary", statOrder = { 4173 }, level = 63, group = "ElementalDamageTakenWhileStationary", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental" }, }, - ["BurningGroundWhileMovingEssence1"] = { type = "Suffix", affix = "of the Essence", "Drops Burning Ground while moving, dealing 2500 Fire Damage per second for 4 seconds", statOrder = { 4170 }, level = 63, group = "BurningGroundWhileMoving", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["PhysicalDamageTakenAsColdEssence1"] = { type = "Prefix", affix = "Essences", "15% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2324 }, level = 63, group = "PhysicalDamageTakenAsCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["ReducedDamageFromCriticalStrikesPerEnduranceChargeEssence1"] = { type = "Suffix", affix = "of the Essence", "You take 10% reduced Extra Damage from Critical Strikes per Endurance Charge", statOrder = { 1397 }, level = 63, group = "ReducedDamageFromCriticalStrikesPerEnduranceCharge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, }, - ["FireDamageAsPortionOfPhysicalDamageEssence1"] = { type = "Prefix", affix = "Essences", "Gain 10% of Physical Damage as Extra Fire Damage", statOrder = { 1811 }, level = 63, group = "FireDamageAsPortionOfDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, - ["FireDamageAsPortionOfPhysicalDamageEssence2"] = { type = "Prefix", affix = "Essences", "Gain 15% of Physical Damage as Extra Fire Damage", statOrder = { 1811 }, level = 63, group = "FireDamageAsPortionOfDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, - ["ChaosDamageOverTimeTakenEssence1"] = { type = "Suffix", affix = "of the Essence", "25% reduced Chaos Damage taken over time", statOrder = { 1827 }, level = 63, group = "ChaosDamageOverTimeTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos" }, }, - ["SocketedSkillsCriticalChanceEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems have +3.5% Critical Strike Chance", statOrder = { 460 }, level = 63, group = "SocketedSkillsCriticalChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, }, - ["AttackAndCastSpeedDuringFlaskEffectEssence1"] = { type = "Suffix", affix = "", "10% increased Attack and Cast Speed during any Flask Effect", statOrder = { 4135 }, level = 63, group = "AttackAndCastSpeedDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "attack", "caster", "speed" }, }, - ["MovementVelocityDuringFlaskEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "10% increased Movement Speed during any Flask Effect", statOrder = { 3052 }, level = 63, group = "MovementSpeedDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "speed" }, }, - ["AddedColdDamagePerFrenzyChargeEssence1"] = { type = "Prefix", affix = "Essences", "4 to 7 Added Cold Damage per Frenzy Charge", statOrder = { 4134 }, level = 63, group = "AddedColdDamagePerFrenzyCharge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["AddedColdDamagePerFrenzyChargeEssenceQuiver1"] = { type = "Prefix", affix = "Essences", "8 to 12 Added Cold Damage per Frenzy Charge", statOrder = { 4134 }, level = 63, group = "AddedColdDamagePerFrenzyCharge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["AddedFireDamageIfBlockedRecentlyEssence1"] = { type = "Suffix", affix = "of the Essence", "Adds 60 to 100 Fire Damage if you've Blocked Recently", statOrder = { 4136 }, level = 63, group = "AddedFireDamageIfBlockedRecently", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["SocketedSkillAlwaysIgniteEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems have 50% chance to Ignite", statOrder = { 453 }, level = 63, group = "DisplaySupportedSkillsHaveAChanceToIgnite", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["SocketedSkillDamageOnLowLifeEssence1__"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems deal 30% more Damage while on Low Life", statOrder = { 470 }, level = 63, group = "DisplaySupportedSkillsDealDamageOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, }, - ["ElementalPenetrationDuringFlaskEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "Damage Penetrates 5% Elemental Resistances during any Flask Effect", statOrder = { 4128 }, level = 63, group = "ElementalPenetrationDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "elemental_damage", "damage", "elemental" }, }, - ["AdditionalPhysicalDamageReductionDuringFlaskEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "5% additional Physical Damage Reduction during any Flask Effect", statOrder = { 4129 }, level = 63, group = "AdditionalPhysicalDamageReductionDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "physical" }, }, - ["ReflectDamageTakenEssence1"] = { type = "Suffix", affix = "of the Essence", "You and your Minions take 40% reduced Reflected Damage", statOrder = { 9375 }, level = 63, group = "ReflectDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["PowerChargeOnBlockEssence1"] = { type = "Suffix", affix = "of the Essence", "25% chance to gain a Power Charge when you Block", statOrder = { 4131 }, level = 63, group = "PowerChargeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "power_charge" }, }, - ["NearbyEnemiesChilledOnBlockEssence1"] = { type = "Suffix", affix = "of the Essence", "Chill Nearby Enemies when you Block", statOrder = { 4132 }, level = 63, group = "NearbyEnemiesChilledOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "elemental", "cold", "ailment" }, }, - ["PoisonDamageEssence1"] = { type = "Prefix", affix = "Essences", "40% increased Damage with Poison", statOrder = { 3047 }, level = 63, group = "PoisonDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["ChanceToRecoverManaOnSkillUseEssence1"] = { type = "Suffix", affix = "of the Essence", "10% chance to Recover 10% of Mana when you use a Skill", statOrder = { 3338 }, level = 63, group = "ChanceToRecoverManaOnSkillUse", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, - ["FortifyEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "+3 to maximum Fortification", statOrder = { 8672 }, level = 63, group = "FortifyEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["CrushOnHitChanceEssence1"] = { type = "Suffix", affix = "of the Essence", "(15-25)% chance to Crush on Hit", statOrder = { 5365 }, level = 63, group = "CrushOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, }, - ["AlchemistsGeniusOnFlaskEssence1_"] = { type = "Suffix", affix = "of the Essence", "Gain Alchemist's Genius when you use a Flask", statOrder = { 6385 }, level = 63, group = "AlchemistsGeniusOnFlaskUseChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, }, - ["PowerFrenzyOrEnduranceChargeOnKillEssence1"] = { type = "Suffix", affix = "of the Essence", "16% chance to gain a Power, Frenzy or Endurance Charge on Kill", statOrder = { 3475 }, level = 63, group = "PowerFrenzyOrEnduranceChargeOnKill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, }, - ["SocketedGemsNonCurseAuraEffectEssence1"] = { type = "Suffix", affix = "", "Socketed Non-Curse Aura Gems have 20% increased Aura Effect", statOrder = { 509 }, level = 63, group = "SocketedGemsNonCurseAuraEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "aura", "gem" }, }, - ["SocketedAuraGemLevelsEssence1"] = { type = "Suffix", affix = "of the Essence", "+2 to Level of Socketed Aura Gems", statOrder = { 160 }, level = 63, group = "LocalIncreaseSocketedAuraLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "aura", "gem" }, }, - ["FireBurstOnHitEssence1"] = { type = "Suffix", affix = "of the Essence", "Cast Level 20 Fire Burst on Hit", statOrder = { 675 }, level = 63, group = "FireBurstOnHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "attack" }, }, - ["SpiritMinionEssence1"] = { type = "Suffix", affix = "of the Essence", "Triggers Level 20 Spectral Spirits when Equipped", "+3 to maximum number of Spectral Spirits", statOrder = { 649, 649.1 }, level = 63, group = "GrantsEssenceMinion", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, }, - ["AreaOfEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "25% increased Area of Effect", statOrder = { 1761 }, level = 63, group = "AreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["OnslaughtWhenHitEssence1"] = { type = "Suffix", affix = "of the Essence", "Gain Onslaught for 3 seconds when Hit", statOrder = { 6446 }, level = 63, group = "OnslaughtWhenHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["OnslaughtWhenHitNewEssence1"] = { type = "Suffix", affix = "of the Essence", "You gain Onslaught for 6 seconds when Hit", statOrder = { 2701 }, level = 63, group = "OnslaughtWhenHitForDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["SupportDamageOverTimeEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems deal 30% more Damage over Time", statOrder = { 507 }, level = 63, group = "SupportDamageOverTime", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "damage", "gem" }, }, - ["SpellBlockOnLowLifeEssence1"] = { type = "Suffix", affix = "of the Essence", "+15% Chance to Block Spell Damage while on Low Life", statOrder = { 1034 }, level = 63, group = "SpellBlockPercentageOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, - ["MaximumDoomEssence1__"] = { type = "Suffix", affix = "of the Essence", "5% increased Effect of your Curses", statOrder = { 2472 }, level = 63, group = "CurseEffectiveness", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, }, - ["MaximumDoomAmuletEssence1"] = { type = "Suffix", affix = "of the Essence", "10% increased Effect of your Curses", statOrder = { 2472 }, level = 63, group = "CurseEffectiveness", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, }, - ["MarkEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "25% increased Effect of your Marks", statOrder = { 2474 }, level = 63, group = "MarkEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, }, - ["DecayOnHitEssence1"] = { type = "Suffix", affix = "of the Essence", "Your Hits inflict Decay, dealing 700 Chaos Damage per second for 8 seconds", statOrder = { 5832 }, level = 63, group = "DecayOnHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["SpellBlockAmuletEssence1"] = { type = "Suffix", affix = "of the Essence", "(6-7)% Chance to Block Spell Damage", statOrder = { 1046 }, level = 63, group = "SpellBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, - ["MovementSpeedOnBurningChilledShockedGroundEssence1"] = { type = "Suffix", affix = "of the Essence", "12% increased Movement speed while on Burning, Chilled or Shocked ground", statOrder = { 8957 }, level = 63, group = "MovementSpeedOnBurningChilledShockedGround", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, - ["ManaRegenerationWhileShockedEssence1"] = { type = "Suffix", affix = "of the Essence", "70% increased Mana Regeneration Rate while Shocked", statOrder = { 2384 }, level = 63, group = "ManaRegenerationWhileShocked", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, - ["ManaGainedOnBlockEssence1"] = { type = "Suffix", affix = "of the Essence", "Recover 5% of your maximum Mana when you Block", statOrder = { 7758 }, level = 63, group = "ManaGainedOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "mana" }, }, - ["BleedDuration1"] = { type = "Suffix", affix = "of Agony", "(8-12)% increased Bleeding Duration", statOrder = { 4811 }, level = 30, group = "BleedDuration", weightKey = { "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["BleedDuration2"] = { type = "Suffix", affix = "of Torment", "(13-18)% increased Bleeding Duration", statOrder = { 4811 }, level = 60, group = "BleedDuration", weightKey = { "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["ChanceToIgnite1"] = { type = "Suffix", affix = "of Ignition", "(18-24)% chance to Ignite", statOrder = { 1903 }, level = 15, group = "ChanceToIgnite", weightKey = { "sceptre", "wand", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ChanceToIgnite2"] = { type = "Suffix", affix = "of Combustion", "(25-30)% chance to Ignite", statOrder = { 1903 }, level = 45, group = "ChanceToIgnite", weightKey = { "sceptre", "wand", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ChanceToIgnite3_"] = { type = "Suffix", affix = "of Conflagration", "(31-40)% chance to Ignite", statOrder = { 1903 }, level = 75, group = "ChanceToIgnite", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["TwoHandChanceToIgnite1"] = { type = "Suffix", affix = "of Ignition", "(25-32)% chance to Ignite", statOrder = { 1903 }, level = 15, group = "ChanceToIgnite", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["TwoHandChanceToIgnite2_"] = { type = "Suffix", affix = "of Combustion", "(33-42)% chance to Ignite", statOrder = { 1903 }, level = 45, group = "ChanceToIgnite", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["TwoHandChanceToIgnite3"] = { type = "Suffix", affix = "of Conflagration", "(43-55)% chance to Ignite", statOrder = { 1903 }, level = 75, group = "ChanceToIgnite", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ChanceToBleed1"] = { type = "Suffix", affix = "of Bleeding", "10% chance to cause Bleeding on Hit", statOrder = { 2359 }, level = 15, group = "LocalChanceToBleed", weightKey = { "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["ChanceToBleed2_"] = { type = "Suffix", affix = "of Flaying", "15% chance to cause Bleeding on Hit", statOrder = { 2359 }, level = 55, group = "LocalChanceToBleed", weightKey = { "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["ChanceToBleed3"] = { type = "Suffix", affix = "of Hemorrhaging", "20% chance to cause Bleeding on Hit", statOrder = { 2359 }, level = 85, group = "LocalChanceToBleed", weightKey = { "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["ChanceToPoison1"] = { type = "Suffix", affix = "of Poisoning", "10% chance to Poison on Hit", statOrder = { 7593 }, level = 15, group = "LocalChanceToPoisonOnHit", weightKey = { "bow", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "poison", "chaos", "attack", "ailment" }, }, - ["ChanceToPoison2"] = { type = "Suffix", affix = "of Toxins", "20% chance to Poison on Hit", statOrder = { 7593 }, level = 55, group = "LocalChanceToPoisonOnHit", weightKey = { "bow", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "poison", "chaos", "attack", "ailment" }, }, - ["ChanceToPoison3_"] = { type = "Suffix", affix = "of Death", "30% chance to Poison on Hit", statOrder = { 7593 }, level = 85, group = "LocalChanceToPoisonOnHit", weightKey = { "bow", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "poison", "chaos", "attack", "ailment" }, }, - ["ChanceToPoisonEnhancedMod"] = { type = "Suffix", affix = "of Tacati", "(26-30)% increased Chaos Damage", "30% chance to Poison on Hit", statOrder = { 1269, 7593 }, level = 1, group = "LocalChanceToPoisonOnHitChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "attack", "ailment" }, }, - ["ChanceToFreeze1"] = { type = "Suffix", affix = "of Freezing", "(18-24)% chance to Freeze", statOrder = { 1906 }, level = 15, group = "ChanceToFreeze", weightKey = { "sceptre", "wand", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ChanceToFreeze2"] = { type = "Suffix", affix = "of Bleakness", "(25-30)% chance to Freeze", statOrder = { 1906 }, level = 45, group = "ChanceToFreeze", weightKey = { "sceptre", "wand", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ChanceToFreeze3"] = { type = "Suffix", affix = "of the Hyperboreal", "(31-40)% chance to Freeze", statOrder = { 1906 }, level = 75, group = "ChanceToFreeze", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["TwoHandChanceToFreeze1"] = { type = "Suffix", affix = "of Freezing", "(25-32)% chance to Freeze", statOrder = { 1906 }, level = 15, group = "ChanceToFreeze", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["TwoHandChanceToFreeze2"] = { type = "Suffix", affix = "of Bleakness", "(33-42)% chance to Freeze", statOrder = { 1906 }, level = 45, group = "ChanceToFreeze", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["TwoHandChanceToFreeze3____"] = { type = "Suffix", affix = "of the Hyperboreal", "(43-55)% chance to Freeze", statOrder = { 1906 }, level = 75, group = "ChanceToFreeze", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ChanceToShock1"] = { type = "Suffix", affix = "of Shocking", "(18-24)% chance to Shock", statOrder = { 1910 }, level = 15, group = "ChanceToShock", weightKey = { "sceptre", "wand", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ChanceToShock2__"] = { type = "Suffix", affix = "of Zapping", "(25-30)% chance to Shock", statOrder = { 1910 }, level = 45, group = "ChanceToShock", weightKey = { "sceptre", "wand", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ChanceToShock3"] = { type = "Suffix", affix = "of Electrocution", "(31-40)% chance to Shock", statOrder = { 1910 }, level = 75, group = "ChanceToShock", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["TwoHandChanceToShock1__"] = { type = "Suffix", affix = "of Shocking", "(25-32)% chance to Shock", statOrder = { 1910 }, level = 15, group = "ChanceToShock", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["TwoHandChanceToShock2_"] = { type = "Suffix", affix = "of Zapping", "(33-42)% chance to Shock", statOrder = { 1910 }, level = 45, group = "ChanceToShock", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["TwoHandChanceToShock3"] = { type = "Suffix", affix = "of Electrocution", "(43-55)% chance to Shock", statOrder = { 1910 }, level = 75, group = "ChanceToShock", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["BurnDamage1_"] = { type = "Suffix", affix = "of Burning", "(26-30)% increased Burning Damage", statOrder = { 1758 }, level = 20, group = "BurnDamage", weightKey = { "sceptre", "wand", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["BurnDamage2"] = { type = "Suffix", affix = "of Combusting", "(31-35)% increased Burning Damage", statOrder = { 1758 }, level = 40, group = "BurnDamage", weightKey = { "sceptre", "wand", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["BurnDamage3"] = { type = "Suffix", affix = "of Conflagrating", "(36-40)% increased Burning Damage", statOrder = { 1758 }, level = 60, group = "BurnDamage", weightKey = { "sceptre", "wand", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["TwoHandBurnDamage1"] = { type = "Suffix", affix = "of Burning", "(31-40)% increased Burning Damage", statOrder = { 1758 }, level = 20, group = "BurnDamage", weightKey = { "staff", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["TwoHandBurnDamage2"] = { type = "Suffix", affix = "of Combusting", "(41-50)% increased Burning Damage", statOrder = { 1758 }, level = 40, group = "BurnDamage", weightKey = { "staff", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["TwoHandBurnDamage3"] = { type = "Suffix", affix = "of Conflagrating", "(51-60)% increased Burning Damage", statOrder = { 1758 }, level = 60, group = "BurnDamage", weightKey = { "staff", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["PoisonDamage1"] = { type = "Suffix", affix = "of Poison", "(21-30)% increased Damage with Poison", "20% chance to Poison on Hit", statOrder = { 3047, 7593 }, level = 20, group = "PoisonDamageAndLocalChanceOnHit", weightKey = { "bow", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "attack", "ailment" }, }, - ["PoisonDamage2"] = { type = "Suffix", affix = "of Venom", "(31-40)% increased Damage with Poison", "25% chance to Poison on Hit", statOrder = { 3047, 7593 }, level = 40, group = "PoisonDamageAndLocalChanceOnHit", weightKey = { "bow", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "attack", "ailment" }, }, - ["PoisonDamage3"] = { type = "Suffix", affix = "of Virulence", "(41-50)% increased Damage with Poison", "30% chance to Poison on Hit", statOrder = { 3047, 7593 }, level = 60, group = "PoisonDamageAndLocalChanceOnHit", weightKey = { "bow", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "attack", "ailment" }, }, - ["PoisonDamageEnhancedAttacksMod"] = { type = "Suffix", affix = "of Tacati", "Adds (23-36) to (49-61) Chaos Damage", "(31-35)% increased Damage with Poison", statOrder = { 1274, 3047 }, level = 1, group = "PoisonDamageAddedChaosToAttacks", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "attack", "ailment" }, }, - ["PoisonDamageEnhancedSpellsMod"] = { type = "Suffix", affix = "of Tacati", "Adds (17-24) to (36-40) Chaos Damage to Spells", "(31-35)% increased Damage with Poison", statOrder = { 1291, 3047 }, level = 1, group = "PoisonDamageAddedChaosToSpells", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "poison", "damage", "chaos", "caster", "ailment" }, }, - ["BleedDamage1_"] = { type = "Suffix", affix = "of Bloodletting", "Attacks have 20% chance to cause Bleeding", "(21-30)% increased Damage with Bleeding", statOrder = { 2365, 3035 }, level = 20, group = "BleedingDamageChanceWeaponSuffix", weightKey = { "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, - ["BleedDamage2"] = { type = "Suffix", affix = "of Haemophilia", "Attacks have 25% chance to cause Bleeding", "(31-40)% increased Damage with Bleeding", statOrder = { 2365, 3035 }, level = 40, group = "BleedingDamageChanceWeaponSuffix", weightKey = { "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, - ["BleedDamage3"] = { type = "Suffix", affix = "of Exsanguination", "Attacks have 30% chance to cause Bleeding", "(41-50)% increased Damage with Bleeding", statOrder = { 2365, 3035 }, level = 60, group = "BleedingDamageChanceWeaponSuffix", weightKey = { "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, - ["ReducedPhysicalDamageTaken1"] = { type = "Suffix", affix = "of Dampening", "2% additional Physical Damage Reduction", statOrder = { 2150 }, level = 25, group = "ReducedPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, }, - ["ReducedPhysicalDamageTaken2_"] = { type = "Suffix", affix = "of Numbing", "(3-4)% additional Physical Damage Reduction", statOrder = { 2150 }, level = 85, group = "ReducedPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, }, - ["ChanceToDodge1_"] = { type = "Suffix", affix = "of Haze", "+(4-6)% chance to Suppress Spell Damage", statOrder = { 1031 }, level = 25, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["ChanceToDodge2__"] = { type = "Suffix", affix = "of Fog", "+(7-9)% chance to Suppress Spell Damage", statOrder = { 1031 }, level = 85, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["EnergyShieldRegenerationPerMinute1"] = { type = "Suffix", affix = "of Vibrance", "Regenerate 0.6% of Energy Shield per second", statOrder = { 2521 }, level = 25, group = "EnergyShieldRegenerationPerMinute", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldRegenerationPerMinute2"] = { type = "Suffix", affix = "of Exuberance", "Regenerate 1% of Energy Shield per second", statOrder = { 2521 }, level = 85, group = "EnergyShieldRegenerationPerMinute", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, - ["LifeRegenerationRate1"] = { type = "Suffix", affix = "of Esprit", "(9-11)% increased Life Regeneration rate", statOrder = { 1459 }, level = 46, group = "LifeRegenerationRate", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "resource", "life" }, }, - ["LifeRegenerationRate2"] = { type = "Suffix", affix = "of Perpetuity", "(12-14)% increased Life Regeneration rate", statOrder = { 1459 }, level = 57, group = "LifeRegenerationRate", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "resource", "life" }, }, - ["LifeRegenerationRate3"] = { type = "Suffix", affix = "of Vivification", "(15-17)% increased Life Regeneration rate", statOrder = { 1459 }, level = 68, group = "LifeRegenerationRate", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "resource", "life" }, }, - ["LifeRegenerationRate4"] = { type = "Suffix", affix = "of Youth", "(18-19)% increased Life Regeneration rate", statOrder = { 1459 }, level = 76, group = "LifeRegenerationRate", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "resource", "life" }, }, - ["LifeRegenerationRate5"] = { type = "Suffix", affix = "of Everlasting", "(20-21)% increased Life Regeneration rate", statOrder = { 1459 }, level = 85, group = "LifeRegenerationRate", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "resource", "life" }, }, - ["AdditionalPhysicalDamageReduction1"] = { type = "Suffix", affix = "of the Watchman", "4% additional Physical Damage Reduction", statOrder = { 2150 }, level = 45, group = "ReducedPhysicalDamageTaken", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "physical" }, }, - ["AdditionalPhysicalDamageReduction2"] = { type = "Suffix", affix = "of the Sentry", "5% additional Physical Damage Reduction", statOrder = { 2150 }, level = 58, group = "ReducedPhysicalDamageTaken", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "physical" }, }, - ["AdditionalPhysicalDamageReduction3"] = { type = "Suffix", affix = "of the Keeper", "6% additional Physical Damage Reduction", statOrder = { 2150 }, level = 67, group = "ReducedPhysicalDamageTaken", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "physical" }, }, - ["AdditionalPhysicalDamageReduction4"] = { type = "Suffix", affix = "of the Protector", "7% additional Physical Damage Reduction", statOrder = { 2150 }, level = 77, group = "ReducedPhysicalDamageTaken", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "physical" }, }, - ["AdditionalPhysicalDamageReduction5_"] = { type = "Suffix", affix = "of the Conservator", "8% additional Physical Damage Reduction", statOrder = { 2150 }, level = 86, group = "ReducedPhysicalDamageTaken", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "physical" }, }, - ["ChanceToSuppressSpells1_"] = { type = "Suffix", affix = "of Rebuttal", "+(5-6)% chance to Suppress Spell Damage", statOrder = { 1032 }, level = 46, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, }, - ["ChanceToSuppressSpells2"] = { type = "Suffix", affix = "of Snuffing", "+(7-8)% chance to Suppress Spell Damage", statOrder = { 1032 }, level = 57, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, }, - ["ChanceToSuppressSpells3"] = { type = "Suffix", affix = "of Revoking", "+(9-10)% chance to Suppress Spell Damage", statOrder = { 1032 }, level = 68, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, }, - ["ChanceToSuppressSpells4"] = { type = "Suffix", affix = "of Abjuration", "+(11-12)% chance to Suppress Spell Damage", statOrder = { 1032 }, level = 76, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, }, - ["ChanceToSuppressSpells5__"] = { type = "Suffix", affix = "of Nullification", "+(13-14)% chance to Suppress Spell Damage", statOrder = { 1032 }, level = 85, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, }, - ["ChanceToSuppressSpellsHigh1__"] = { type = "Suffix", affix = "of Rebuttal", "+(8-10)% chance to Suppress Spell Damage", statOrder = { 1032 }, level = 45, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, }, - ["ChanceToSuppressSpellsHigh2__"] = { type = "Suffix", affix = "of Snuffing", "+(11-13)% chance to Suppress Spell Damage", statOrder = { 1032 }, level = 58, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, }, - ["ChanceToSuppressSpellsHigh3"] = { type = "Suffix", affix = "of Revoking", "+(14-16)% chance to Suppress Spell Damage", statOrder = { 1032 }, level = 67, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, }, - ["ChanceToSuppressSpellsHigh4_"] = { type = "Suffix", affix = "of Abjuration", "+(17-19)% chance to Suppress Spell Damage", statOrder = { 1032 }, level = 77, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, }, - ["ChanceToSuppressSpellsHigh5___"] = { type = "Suffix", affix = "of Nullification", "+(20-22)% chance to Suppress Spell Damage", statOrder = { 1032 }, level = 86, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, }, - ["EnergyShieldRechargeRate1"] = { type = "Suffix", affix = "of Allaying", "(24-26)% increased Energy Shield Recharge Rate", statOrder = { 1447 }, level = 46, group = "EnergyShieldRegeneration", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldRechargeRate2"] = { type = "Suffix", affix = "of Diffusion", "(27-29)% increased Energy Shield Recharge Rate", statOrder = { 1447 }, level = 57, group = "EnergyShieldRegeneration", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldRechargeRate3"] = { type = "Suffix", affix = "of Dispersal", "(30-32)% increased Energy Shield Recharge Rate", statOrder = { 1447 }, level = 68, group = "EnergyShieldRegeneration", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldRechargeRate4"] = { type = "Suffix", affix = "of Buffering", "(33-35)% increased Energy Shield Recharge Rate", statOrder = { 1447 }, level = 76, group = "EnergyShieldRegeneration", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldRechargeRate5______"] = { type = "Suffix", affix = "of Ardour", "(36-38)% increased Energy Shield Recharge Rate", statOrder = { 1447 }, level = 85, group = "EnergyShieldRegeneration", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, - ["FasterStartEnergyShieldRecharge1"] = { type = "Suffix", affix = "of Enlivening", "(27-34)% faster start of Energy Shield Recharge", statOrder = { 1444 }, level = 45, group = "EnergyShieldDelay", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, - ["FasterStartEnergyShieldRecharge2"] = { type = "Suffix", affix = "of Zest", "(35-42)% faster start of Energy Shield Recharge", statOrder = { 1444 }, level = 58, group = "EnergyShieldDelay", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, - ["FasterStartEnergyShieldRecharge3__"] = { type = "Suffix", affix = "of Galvanising", "(43-50)% faster start of Energy Shield Recharge", statOrder = { 1444 }, level = 67, group = "EnergyShieldDelay", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, - ["FasterStartEnergyShieldRecharge4"] = { type = "Suffix", affix = "of Vigour", "(51-58)% faster start of Energy Shield Recharge", statOrder = { 1444 }, level = 77, group = "EnergyShieldDelay", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, - ["FasterStartEnergyShieldRecharge5_"] = { type = "Suffix", affix = "of Second Wind", "(59-66)% faster start of Energy Shield Recharge", statOrder = { 1444 }, level = 86, group = "EnergyShieldDelay", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, - ["ReducedExtraDamageFromCrits1___"] = { type = "Suffix", affix = "of Dulling", "You take (21-30)% reduced Extra Damage from Critical Strikes", statOrder = { 1395 }, level = 33, group = "ReducedExtraDamageFromCrits", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "damage", "critical" }, }, - ["ReducedExtraDamageFromCrits2__"] = { type = "Suffix", affix = "of Deadening", "You take (31-40)% reduced Extra Damage from Critical Strikes", statOrder = { 1395 }, level = 45, group = "ReducedExtraDamageFromCrits", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "damage", "critical" }, }, - ["ReducedExtraDamageFromCrits3"] = { type = "Suffix", affix = "of Interference", "You take (41-50)% reduced Extra Damage from Critical Strikes", statOrder = { 1395 }, level = 67, group = "ReducedExtraDamageFromCrits", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "damage", "critical" }, }, - ["ReducedExtraDamageFromCrits4__"] = { type = "Suffix", affix = "of Obstruction", "You take (51-60)% reduced Extra Damage from Critical Strikes", statOrder = { 1395 }, level = 78, group = "ReducedExtraDamageFromCrits", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "damage", "critical" }, }, - ["DamageTakenGainedAsLife1___"] = { type = "Suffix", affix = "of Bandaging", "(4-6)% of Damage taken Recouped as Life", statOrder = { 5803 }, level = 44, group = "DamageTakenGainedAsLife", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, }, - ["DamageTakenGainedAsLife2"] = { type = "Suffix", affix = "of Stitching", "(7-9)% of Damage taken Recouped as Life", statOrder = { 5803 }, level = 56, group = "DamageTakenGainedAsLife", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, }, - ["DamageTakenGainedAsLife3"] = { type = "Suffix", affix = "of Suturing", "(10-12)% of Damage taken Recouped as Life", statOrder = { 5803 }, level = 68, group = "DamageTakenGainedAsLife", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, }, - ["DamageTakenGainedAsLife4_"] = { type = "Suffix", affix = "of Fleshbinding", "(13-15)% of Damage taken Recouped as Life", statOrder = { 5803 }, level = 79, group = "DamageTakenGainedAsLife", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, }, - ["GlobalSkillGemLevel1"] = { type = "Prefix", affix = "Exalter's", "+1 to Level of all Skill Gems", statOrder = { 4476 }, level = 75, group = "GlobalSkillGemLevel", weightKey = { "amulet", "default", }, weightVal = { 50, 0 }, modTags = { "gem" }, }, - ["GlobalFireGemLevel1_"] = { type = "Prefix", affix = "Vulcanist's", "+1 to Level of all Fire Skill Gems", statOrder = { 6255 }, level = 75, group = "GlobalFireGemLevel", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "fire", "gem" }, }, - ["GlobalColdGemLevel1__"] = { type = "Prefix", affix = "Rimedweller's", "+1 to Level of all Cold Skill Gems", statOrder = { 5542 }, level = 75, group = "GlobalColdGemLevel", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "cold", "gem" }, }, - ["GlobalLightningGemLevel1"] = { type = "Prefix", affix = "Stormbrewer's", "+1 to Level of all Lightning Skill Gems", statOrder = { 7077 }, level = 75, group = "GlobalLightningGemLevel", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "lightning", "gem" }, }, - ["GlobalPhysicalGemLevel1_"] = { type = "Prefix", affix = "Behemoth's", "+1 to Level of all Physical Skill Gems", statOrder = { 9178 }, level = 75, group = "GlobalPhysicalGemLevel", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "physical", "gem" }, }, - ["GlobalChaosGemLevel1"] = { type = "Prefix", affix = "Provocateur's", "+1 to Level of all Chaos Skill Gems", statOrder = { 5463 }, level = 75, group = "GlobalChaosGemLevel", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "chaos", "gem" }, }, - ["MaximumFireResist1"] = { type = "Suffix", affix = "of the Bushfire", "+1% to maximum Fire Resistance", statOrder = { 1505 }, level = 68, group = "MaximumFireResist", weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["MaximumFireResist2_"] = { type = "Suffix", affix = "of the Molten Core", "+2% to maximum Fire Resistance", statOrder = { 1505 }, level = 75, group = "MaximumFireResist", weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["MaximumFireResist3"] = { type = "Suffix", affix = "of the Solar Storm", "+3% to maximum Fire Resistance", statOrder = { 1505 }, level = 81, group = "MaximumFireResist", weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["MaximumColdResist1"] = { type = "Suffix", affix = "of Furs", "+1% to maximum Cold Resistance", statOrder = { 1511 }, level = 68, group = "MaximumColdResist", weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["MaximumColdResist2"] = { type = "Suffix", affix = "of the Tundra", "+2% to maximum Cold Resistance", statOrder = { 1511 }, level = 75, group = "MaximumColdResist", weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["MaximumColdResist3"] = { type = "Suffix", affix = "of the Mammoth", "+3% to maximum Cold Resistance", statOrder = { 1511 }, level = 81, group = "MaximumColdResist", weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["MaximumLightningResist1"] = { type = "Suffix", affix = "of Impedance", "+1% to maximum Lightning Resistance", statOrder = { 1516 }, level = 68, group = "MaximumLightningResistance", weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["MaximumLightningResist2___"] = { type = "Suffix", affix = "of Shockproofing", "+2% to maximum Lightning Resistance", statOrder = { 1516 }, level = 75, group = "MaximumLightningResistance", weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["MaximumLightningResist3"] = { type = "Suffix", affix = "of the Lightning Rod", "+3% to maximum Lightning Resistance", statOrder = { 1516 }, level = 81, group = "MaximumLightningResistance", weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["MaximumChaosResist1"] = { type = "Suffix", affix = "of Regularity", "+1% to maximum Chaos Resistance", statOrder = { 1521 }, level = 68, group = "MaximumChaosResistance", weightKey = { "shield", "default", }, weightVal = { 125, 0 }, modTags = { "chaos", "resistance" }, }, - ["MaximumChaosResist2_"] = { type = "Suffix", affix = "of Concord", "+2% to maximum Chaos Resistance", statOrder = { 1521 }, level = 75, group = "MaximumChaosResistance", weightKey = { "shield", "default", }, weightVal = { 125, 0 }, modTags = { "chaos", "resistance" }, }, - ["MaximumChaosResist3"] = { type = "Suffix", affix = "of Harmony", "+3% to maximum Chaos Resistance", statOrder = { 1521 }, level = 81, group = "MaximumChaosResistance", weightKey = { "shield", "default", }, weightVal = { 125, 0 }, modTags = { "chaos", "resistance" }, }, - ["MaximumAllResist1_"] = { type = "Suffix", affix = "of the Sempiternal", "+1% to all maximum Resistances", statOrder = { 1523 }, level = 75, group = "MaximumResistances", weightKey = { "shield", "default", }, weightVal = { 125, 0 }, modTags = { "resistance" }, }, - ["MaximumAllResist2"] = { type = "Suffix", affix = "of the Deathless", "+2% to all maximum Resistances", statOrder = { 1523 }, level = 81, group = "MaximumResistances", weightKey = { "shield", "default", }, weightVal = { 125, 0 }, modTags = { "resistance" }, }, - ["DamageWithBowSkills1"] = { type = "Prefix", affix = "Acute", "(5-10)% increased Damage with Bow Skills", statOrder = { 5722 }, level = 4, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, }, - ["DamageWithBowSkills2"] = { type = "Prefix", affix = "Trenchant", "(11-20)% increased Damage with Bow Skills", statOrder = { 5722 }, level = 15, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, }, - ["DamageWithBowSkills3"] = { type = "Prefix", affix = "Perforating", "(21-30)% increased Damage with Bow Skills", statOrder = { 5722 }, level = 30, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, }, - ["DamageWithBowSkills4_"] = { type = "Prefix", affix = "Incisive", "(31-36)% increased Damage with Bow Skills", statOrder = { 5722 }, level = 60, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, }, - ["DamageWithBowSkills5"] = { type = "Prefix", affix = "Lacerating", "(37-42)% increased Damage with Bow Skills", statOrder = { 5722 }, level = 81, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, }, - ["DamageWithBowSkills6_"] = { type = "Prefix", affix = "Impaling", "(43-50)% increased Damage with Bow Skills", statOrder = { 5722 }, level = 86, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, }, - ["DamageWithBowSkillsEssence3a"] = { type = "Prefix", affix = "Essences", "(21-25)% increased Damage with Bow Skills", statOrder = { 5722 }, level = 26, group = "DamageWithBowSkills", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, }, - ["DamageWithBowSkillsEssence3b_"] = { type = "Prefix", affix = "Essences", "(26-30)% increased Damage with Bow Skills", statOrder = { 5722 }, level = 42, group = "DamageWithBowSkills", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, }, - ["IncreasedDurationBootsUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 15 More Duration", "(10-15)% increased Skill Effect Duration", statOrder = { 262, 1776 }, level = 68, group = "SkillEffectDurationSupported", weightKey = { "boots_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, }, - ["IncreasedCooldownRecoveryBootsUber1"] = { type = "Suffix", affix = "of Shaping", "(10-15)% increased Cooldown Recovery Rate", statOrder = { 4822 }, level = 80, group = "GlobalCooldownRecovery", weightKey = { "boots_shaper", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, - ["SupportedByFortifyUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Fortify", statOrder = { 416 }, level = 68, group = "DisplaySocketedGemsSupportedByFortify", weightKey = { "boots_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, }, - ["ImmuneToChilledGroundUber1"] = { type = "Prefix", affix = "The Shaper's", "Unaffected by Chilled Ground", statOrder = { 9936 }, level = 68, group = "ChilledGroundEffectEffectiveness", weightKey = { "boots_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, }, - ["ImmuneToBurningGroundUber1"] = { type = "Prefix", affix = "The Shaper's", "Unaffected by Burning Ground", statOrder = { 9931 }, level = 68, group = "BurningGroundEffectEffectiveness", weightKey = { "boots_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "elemental", "fire" }, }, - ["ImmuneToShockedGroundUber1"] = { type = "Prefix", affix = "The Elder's", "Unaffected by Shocked Ground", statOrder = { 9956 }, level = 68, group = "ShockedGroundEffectEffectiveness", weightKey = { "boots_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, }, - ["ImmuneToDesecratedGroundUber1_"] = { type = "Prefix", affix = "The Elder's", "Unaffected by Desecrated Ground", statOrder = { 9942 }, level = 68, group = "DesecratedGroundEffectEffectiveness", weightKey = { "boots_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "chaos" }, }, - ["ChanceToDodgeUber1"] = { type = "Suffix", affix = "of Shaping", "+(4-7)% chance to Suppress Spell Damage", statOrder = { 1031 }, level = 68, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, - ["ChanceToDodgeUber2"] = { type = "Suffix", affix = "of Shaping", "+(9-12)% chance to Suppress Spell Damage", statOrder = { 1031 }, level = 75, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, - ["ChanceToDodgeUber3"] = { type = "Suffix", affix = "of Shaping", "+(13-15)% chance to Suppress Spell Damage", statOrder = { 1031 }, level = 84, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, - ["ChanceToDodgeSpellsUber1"] = { type = "Suffix", affix = "of the Elder", "+(4-7)% chance to Suppress Spell Damage", statOrder = { 1031 }, level = 68, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, - ["ChanceToDodgeSpellsUber2"] = { type = "Suffix", affix = "of the Elder", "+(9-12)% chance to Suppress Spell Damage", statOrder = { 1031 }, level = 75, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, - ["ChanceToDodgeSpellsUber3"] = { type = "Suffix", affix = "of the Elder", "+(13-15)% chance to Suppress Spell Damage", statOrder = { 1031 }, level = 83, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, - ["ChanceToAvoidStunUber1"] = { type = "Suffix", affix = "of the Elder", "(15-22)% chance to Avoid being Stunned", statOrder = { 1732 }, level = 68, group = "AvoidStun", weightKey = { "boots_elder", "quiver_elder", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod" }, }, - ["ChanceToAvoidStunUber2"] = { type = "Suffix", affix = "of the Elder", "(23-30)% chance to Avoid being Stunned", statOrder = { 1732 }, level = 75, group = "AvoidStun", weightKey = { "boots_elder", "quiver_elder", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod" }, }, - ["ChanceToAvoidStunUber3"] = { type = "Suffix", affix = "of the Elder", "(31-35)% chance to Avoid being Stunned", statOrder = { 1732 }, level = 82, group = "AvoidStun", weightKey = { "boots_elder", "quiver_elder", "default", }, weightVal = { 1600, 1600, 0 }, modTags = { "influence_mod" }, }, - ["ChanceToAvoidElementalAilmentsUber1_"] = { type = "Suffix", affix = "of Shaping", "(14-17)% chance to Avoid Elemental Ailments", statOrder = { 1724 }, level = 68, group = "AvoidElementalStatusAilments", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "cold", "lightning", "ailment" }, }, - ["ChanceToAvoidElementalAilmentsUber2"] = { type = "Suffix", affix = "of Shaping", "(18-21)% chance to Avoid Elemental Ailments", statOrder = { 1724 }, level = 75, group = "AvoidElementalStatusAilments", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "cold", "lightning", "ailment" }, }, - ["ChanceToAvoidElementalAilmentsUber3"] = { type = "Suffix", affix = "of Shaping", "(31-35)% chance to Avoid Elemental Ailments", statOrder = { 1724 }, level = 81, group = "AvoidElementalStatusAilments", weightKey = { "boots_shaper", "default", }, weightVal = { 1600, 0 }, modTags = { "influence_mod", "elemental", "fire", "cold", "lightning", "ailment" }, }, - ["ChanceToAvoidProjectilesUber1"] = { type = "Suffix", affix = "of Shaping", "(6-9)% chance to avoid Projectiles", statOrder = { 4810 }, level = 68, group = "ChanceToAvoidProjectiles", weightKey = { "boots_shaper", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, - ["ChanceToAvoidProjectilesUber2"] = { type = "Suffix", affix = "of Shaping", "(10-12)% chance to avoid Projectiles", statOrder = { 4810 }, level = 84, group = "ChanceToAvoidProjectiles", weightKey = { "boots_shaper", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, - ["ChanceToGainEnduranceChargeOnKillUber1"] = { type = "Prefix", affix = "The Elder's", "(4-6)% chance to gain an Endurance Charge on Kill", statOrder = { 2504 }, level = 68, group = "EnduranceChargeOnKillChance", weightKey = { "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "staff_elder", "warstaff_elder", "boots_elder", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "endurance_charge", "influence_mod" }, }, - ["ChanceToGainEnduranceChargeOnKillUber2"] = { type = "Prefix", affix = "The Elder's", "(7-10)% chance to gain an Endurance Charge on Kill", statOrder = { 2504 }, level = 83, group = "EnduranceChargeOnKillChance", weightKey = { "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "staff_elder", "warstaff_elder", "boots_elder", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "endurance_charge", "influence_mod" }, }, - ["TotemDamageSpellUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Spell Totem", "(20-25)% increased Totem Damage", statOrder = { 384, 1078 }, level = 68, group = "TotemDamageSpellSupported", weightKey = { "boots_elder", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, - ["TotemDamageSpellUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Spell Totem", "(26-30)% increased Totem Damage", statOrder = { 384, 1078 }, level = 75, group = "TotemDamageSpellSupported", weightKey = { "boots_elder", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, - ["TotemDamageSpellUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 22 Spell Totem", "(31-35)% increased Totem Damage", statOrder = { 384, 1078 }, level = 80, group = "TotemDamageSpellSupported", weightKey = { "boots_elder", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, - ["TotemSpeedSpellUber1_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Spell Totem", "(8-12)% increased Totem Placement speed", statOrder = { 384, 2454 }, level = 68, group = "TotemSpeedSpellSupported", weightKey = { "boots_elder", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, }, - ["TotemSpeedSpellUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Spell Totem", "(13-16)% increased Totem Placement speed", statOrder = { 384, 2454 }, level = 75, group = "TotemSpeedSpellSupported", weightKey = { "boots_elder", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, }, - ["TotemSpeedSpellUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 22 Spell Totem", "(17-20)% increased Totem Placement speed", statOrder = { 384, 2454 }, level = 80, group = "TotemSpeedSpellSupported", weightKey = { "boots_elder", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, }, - ["TotemDamageAttackUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Ballista Totem", "(20-25)% increased Totem Damage", statOrder = { 296, 1078 }, level = 68, group = "TotemDamageAttackSupported", weightKey = { "boots_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, - ["TotemDamageAttackUber2_"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Ballista Totem", "(26-30)% increased Totem Damage", statOrder = { 296, 1078 }, level = 75, group = "TotemDamageAttackSupported", weightKey = { "boots_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, - ["TotemDamageAttackUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 22 Ballista Totem", "(31-35)% increased Totem Damage", statOrder = { 296, 1078 }, level = 80, group = "TotemDamageAttackSupported", weightKey = { "boots_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, - ["TotemSpeedAttackUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Ballista Totem", "(8-12)% increased Totem Placement speed", statOrder = { 296, 2454 }, level = 68, group = "TotemSpeedAttackSupported", weightKey = { "boots_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, }, - ["TotemSpeedAttackUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Ballista Totem", "(13-16)% increased Totem Placement speed", statOrder = { 296, 2454 }, level = 75, group = "TotemSpeedAttackSupported", weightKey = { "boots_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, }, - ["TotemSpeedAttackUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 22 Ballista Totem", "(17-20)% increased Totem Placement speed", statOrder = { 296, 2454 }, level = 80, group = "TotemSpeedAttackSupported", weightKey = { "boots_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, }, - ["SupportedByLifeLeechUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are supported by Level 15 Life Leech", statOrder = { 403 }, level = 68, group = "SupportedByLifeLeech", weightKey = { "boots_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, }, - ["GrantsDecoyTotemSkillUber1"] = { type = "Suffix", affix = "of Shaping", "Grants Level 20 Decoy Totem Skill", statOrder = { 602 }, level = 68, group = "DecoyTotemSkill", weightKey = { "boots_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, }, - ["GlobalRaiseSpectreGemLevelUber1"] = { type = "Suffix", affix = "of the Elder", "+1 to Level of all Raise Spectre Gems", statOrder = { 1498 }, level = 75, group = "MinionGlobalSkillLevel", weightKey = { "boots_elder", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "influence_mod", "minion", "gem" }, }, - ["IncreasedAttackSpeedUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Faster Attacks", "(7-9)% increased Attack Speed", statOrder = { 389, 1294 }, level = 68, group = "IncreasedAttackSpeedSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, }, - ["IncreasedAttackSpeedUber2_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Faster Attacks", "(10-12)% increased Attack Speed", statOrder = { 389, 1294 }, level = 75, group = "IncreasedAttackSpeedSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, }, - ["IncreasedAttackSpeedUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Faster Attacks", "(13-14)% increased Attack Speed", statOrder = { 389, 1294 }, level = 82, group = "IncreasedAttackSpeedSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, }, - ["IncreasedCastSpeedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Faster Casting", "(7-9)% increased Cast Speed", statOrder = { 420, 1330 }, level = 68, group = "IncreasedCastSpeedSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "caster", "speed", "gem" }, }, - ["IncreasedCastSpeedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Faster Casting", "(10-12)% increased Cast Speed", statOrder = { 420, 1330 }, level = 75, group = "IncreasedCastSpeedSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "caster", "speed", "gem" }, }, - ["IncreasedCastSpeedUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Faster Casting", "(13-14)% increased Cast Speed", statOrder = { 420, 1330 }, level = 84, group = "IncreasedCastSpeedSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "caster", "speed", "gem" }, }, - ["IncreasedAttackAndCastSpeedUber1_"] = { type = "Suffix", affix = "of the Elder", "(7-9)% increased Attack and Cast Speed", statOrder = { 1923 }, level = 68, group = "IncreasedAttackAndCastSpeedSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attack", "caster", "speed" }, }, - ["IncreasedAttackAndCastSpeedUber2"] = { type = "Suffix", affix = "of the Elder", "(10-12)% increased Attack and Cast Speed", statOrder = { 1923 }, level = 75, group = "IncreasedAttackAndCastSpeedSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attack", "caster", "speed" }, }, - ["IncreasedAttackAndCastSpeedUber3_"] = { type = "Suffix", affix = "of the Elder", "(13-14)% increased Attack and Cast Speed", statOrder = { 1923 }, level = 85, group = "IncreasedAttackAndCastSpeedSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attack", "caster", "speed" }, }, - ["SupportedByManaLeechUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 15 Mana Leech", statOrder = { 433 }, level = 68, group = "DisplaySupportedByManaLeech", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, }, - ["ProjectileSpeedUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are supported by Level 16 Faster Projectiles", "(15-20)% increased Projectile Speed", statOrder = { 402, 1677 }, level = 68, group = "ProjectileSpeedSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, }, - ["ProjectileSpeedUber2"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are supported by Level 18 Faster Projectiles", "(21-25)% increased Projectile Speed", statOrder = { 402, 1677 }, level = 75, group = "ProjectileSpeedSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, }, - ["ProjectileSpeedUber3_"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are supported by Level 20 Faster Projectiles", "(26-30)% increased Projectile Speed", statOrder = { 402, 1677 }, level = 82, group = "ProjectileSpeedSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, }, - ["ProjectileDamageUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Slower Projectiles", "(15-18)% increased Projectile Damage", statOrder = { 309, 1873 }, level = 68, group = "ProjectileDamageSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, - ["ProjectileDamageUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Slower Projectiles", "(19-22)% increased Projectile Damage", statOrder = { 309, 1873 }, level = 75, group = "ProjectileDamageSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, - ["ProjectileDamageUber3"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Slower Projectiles", "(23-25)% increased Projectile Damage", statOrder = { 309, 1873 }, level = 83, group = "ProjectileDamageSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, - ["ChanceToAvoidInterruptionWhileCastingUber1_"] = { type = "Suffix", affix = "of Shaping", "(15-20)% chance to Ignore Stuns while Casting", statOrder = { 1779 }, level = 68, group = "AvoidInterruptionWhileCasting", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, }, - ["ChanceToAvoidInterruptionWhileCastingUber2"] = { type = "Suffix", affix = "of Shaping", "(21-25)% chance to Ignore Stuns while Casting", statOrder = { 1779 }, level = 75, group = "AvoidInterruptionWhileCasting", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, }, - ["ChanceToAvoidInterruptionWhileCastingUber3"] = { type = "Suffix", affix = "of Shaping", "(26-30)% chance to Ignore Stuns while Casting", statOrder = { 1779 }, level = 80, group = "AvoidInterruptionWhileCasting", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, }, - ["IncreasedMeleeWeaponRangeUber1"] = { type = "Suffix", affix = "of the Elder", "+0.2 metres to Melee Strike Range", statOrder = { 2410 }, level = 85, group = "MeleeWeaponAndUnarmedRange", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack" }, }, - ["IncreasedMeleeWeaponRangeAndMeleeDamageUber1"] = { type = "Suffix", affix = "of the Elder", "(13-16)% increased Melee Damage", "+0.2 metres to Melee Strike Range", statOrder = { 1119, 2410 }, level = 80, group = "MeleeDamageAndMeleeRange", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "damage", "attack" }, }, - ["AdditionalTrapsThrownSupportedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Trap", "Skills which Throw Traps throw up to 1 additional Trap", statOrder = { 374, 9043 }, level = 68, group = "AdditionalTrapsThrownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, }, - ["AdditionalTrapsThrownSupportedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Trap", "Skills which Throw Traps throw up to 1 additional Trap", statOrder = { 374, 9043 }, level = 75, group = "AdditionalTrapsThrownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, }, - ["AdditionalTrapsThrownSupportedUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 22 Trap", "Skills which Throw Traps throw up to 1 additional Trap", statOrder = { 374, 9043 }, level = 84, group = "AdditionalTrapsThrownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, }, - ["TrapDamageUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Trap", "(20-25)% increased Trap Damage", statOrder = { 374, 1079 }, level = 68, group = "TrapDamageSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, - ["TrapDamageUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Trap", "(26-30)% increased Trap Damage", statOrder = { 374, 1079 }, level = 75, group = "TrapDamageSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, - ["TrapDamageUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 22 Trap", "(31-35)% increased Trap Damage", statOrder = { 374, 1079 }, level = 80, group = "TrapDamageSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, - ["TrapDamageCooldownUber1_"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Advanced Traps", "(20-25)% increased Trap Damage", statOrder = { 320, 1079 }, level = 68, group = "TrapDamageCooldownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, - ["TrapDamageCooldownUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Advanced Traps", "(26-30)% increased Trap Damage", statOrder = { 320, 1079 }, level = 75, group = "TrapDamageCooldownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, - ["TrapDamageCooldownUber3_"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Advanced Traps", "(31-35)% increased Trap Damage", statOrder = { 320, 1079 }, level = 80, group = "TrapDamageCooldownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, - ["TrapSpeedCooldownUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Advanced Traps", "(8-12)% increased Trap Throwing Speed", statOrder = { 320, 1806 }, level = 68, group = "TrapSpeedCooldownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "gem" }, }, - ["TrapSpeedCooldownUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Advanced Traps", "(13-16)% increased Trap Throwing Speed", statOrder = { 320, 1806 }, level = 75, group = "TrapSpeedCooldownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "gem" }, }, - ["TrapSpeedCooldownUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Advanced Traps", "(17-20)% increased Trap Throwing Speed", statOrder = { 320, 1806 }, level = 80, group = "TrapSpeedCooldownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "gem" }, }, - ["TrapDamageMineUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Trap And Mine Damage", "(20-25)% increased Trap Damage", statOrder = { 377, 1079 }, level = 68, group = "TrapDamageMineSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, - ["TrapDamageMineUber2_"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Trap And Mine Damage", "(26-30)% increased Trap Damage", statOrder = { 377, 1079 }, level = 75, group = "TrapDamageMineSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, - ["TrapDamageMineUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Trap And Mine Damage", "(31-35)% increased Trap Damage", statOrder = { 377, 1079 }, level = 80, group = "TrapDamageMineSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, - ["PoisonDamageSupportedUber1_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Chance to Poison", "(20-25)% increased Damage with Poison", statOrder = { 442, 3047 }, level = 68, group = "PoisonDamageSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "chaos_damage", "poison", "influence_mod", "damage", "chaos", "ailment", "gem" }, }, - ["PoisonDamageSupportedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Chance to Poison", "(26-30)% increased Damage with Poison", statOrder = { 442, 3047 }, level = 75, group = "PoisonDamageSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "chaos_damage", "poison", "influence_mod", "damage", "chaos", "ailment", "gem" }, }, - ["PoisonDamageSupportedUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Chance to Poison", "(31-35)% increased Damage with Poison", statOrder = { 442, 3047 }, level = 80, group = "PoisonDamageSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "chaos_damage", "poison", "influence_mod", "damage", "chaos", "ailment", "gem" }, }, - ["PoisonDurationSupportedUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Chance to Poison", "(8-12)% increased Poison Duration", statOrder = { 442, 3036 }, level = 68, group = "PoisonDurationSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "poison", "influence_mod", "chaos", "ailment", "gem" }, }, - ["PoisonDurationSupportedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Chance to Poison", "(13-16)% increased Poison Duration", statOrder = { 442, 3036 }, level = 75, group = "PoisonDurationSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "poison", "influence_mod", "chaos", "ailment", "gem" }, }, - ["PoisonDurationSupportedUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Chance to Poison", "(17-20)% increased Poison Duration", statOrder = { 442, 3036 }, level = 80, group = "PoisonDurationSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "poison", "influence_mod", "chaos", "ailment", "gem" }, }, - ["BleedingDamageUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Chance To Bleed", "(20-25)% increased Damage with Bleeding", statOrder = { 218, 3035 }, level = 68, group = "BleedingDamageSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment", "gem" }, }, - ["BleedingDamageUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Chance To Bleed", "(26-30)% increased Damage with Bleeding", statOrder = { 218, 3035 }, level = 75, group = "BleedingDamageSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment", "gem" }, }, - ["BleedingDamageUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Chance To Bleed", "(31-35)% increased Damage with Bleeding", statOrder = { 218, 3035 }, level = 80, group = "BleedingDamageSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment", "gem" }, }, - ["ChanceToGainFrenzyChargeOnKillUberElder1"] = { type = "Prefix", affix = "The Elder's", "(4-6)% chance to gain a Frenzy Charge on Kill", statOrder = { 2506 }, level = 68, group = "FrenzyChargeOnKillChance", weightKey = { "gloves_elder", "default", }, weightVal = { 400, 0 }, modTags = { "frenzy_charge", "influence_mod" }, }, - ["ChanceToGainFrenzyChargeOnKillUberElder2_"] = { type = "Prefix", affix = "The Elder's", "(7-10)% chance to gain a Frenzy Charge on Kill", statOrder = { 2506 }, level = 84, group = "FrenzyChargeOnKillChance", weightKey = { "gloves_elder", "default", }, weightVal = { 400, 0 }, modTags = { "frenzy_charge", "influence_mod" }, }, - ["ChanceToGainFrenzyChargeOnKillUberShaper1"] = { type = "Prefix", affix = "The Shaper's", "(4-6)% chance to gain a Frenzy Charge on Kill", statOrder = { 2506 }, level = 68, group = "FrenzyChargeOnKillChance", weightKey = { "2h_axe_shaper", "2h_sword_shaper", "bow_shaper", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "frenzy_charge", "influence_mod" }, }, - ["ChanceToGainFrenzyChargeOnKillUberShaper2_"] = { type = "Prefix", affix = "The Shaper's", "(7-10)% chance to gain a Frenzy Charge on Kill", statOrder = { 2506 }, level = 84, group = "FrenzyChargeOnKillChance", weightKey = { "2h_axe_shaper", "2h_sword_shaper", "bow_shaper", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "frenzy_charge", "influence_mod" }, }, - ["IncreasedAccuracySupportedUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are supported by Level 16 Additional Accuracy", "(6-10)% increased Global Accuracy Rating", statOrder = { 400, 1318 }, level = 68, group = "IncreasedAccuracyPercentSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "attack", "gem" }, }, - ["IncreasedAccuracySupportedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are supported by Level 18 Additional Accuracy", "(11-15)% increased Global Accuracy Rating", statOrder = { 400, 1318 }, level = 75, group = "IncreasedAccuracyPercentSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "attack", "gem" }, }, - ["IncreasedAccuracySupportedUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are supported by Level 20 Additional Accuracy", "(16-20)% increased Global Accuracy Rating", statOrder = { 400, 1318 }, level = 83, group = "IncreasedAccuracyPercentSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "attack", "gem" }, }, - ["AdditionalBlockChanceUber1"] = { type = "Suffix", affix = "of the Elder", "(2-3)% Chance to Block Attack Damage", statOrder = { 1027 }, level = 68, group = "BlockPercent", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod" }, }, - ["AdditionalBlockChanceUber2"] = { type = "Suffix", affix = "of the Elder", "(4-5)% Chance to Block Attack Damage", statOrder = { 1027 }, level = 80, group = "BlockPercent", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod" }, }, - ["BlindOnHitSupportedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are supported by Level 16 Blind", "(5-6)% Global chance to Blind Enemies on hit", statOrder = { 390, 2830 }, level = 68, group = "BlindOnHitSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, }, - ["BlindOnHitSupportedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are supported by Level 18 Blind", "(7-8)% Global chance to Blind Enemies on hit", statOrder = { 390, 2830 }, level = 75, group = "BlindOnHitSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, }, - ["BlindOnHitSupportedUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are supported by Level 20 Blind", "(9-10)% Global chance to Blind Enemies on hit", statOrder = { 390, 2830 }, level = 80, group = "BlindOnHitSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, }, - ["SocketedSpellCriticalMultiplierUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Spells have +30% to Critical Strike Multiplier", statOrder = { 485 }, level = 68, group = "SocketedSpellCriticalMultiplier", weightKey = { "gloves_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "caster_damage", "influence_mod", "damage", "caster", "critical", "gem" }, }, - ["SocketedSpellCriticalMultiplierUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Spells have +50% to Critical Strike Multiplier", statOrder = { 485 }, level = 75, group = "SocketedSpellCriticalMultiplier", weightKey = { "gloves_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "caster_damage", "influence_mod", "damage", "caster", "critical", "gem" }, }, - ["SocketedSpellCriticalMultiplierUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Spells have +70% to Critical Strike Multiplier", statOrder = { 485 }, level = 83, group = "SocketedSpellCriticalMultiplier", weightKey = { "gloves_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "caster_damage", "influence_mod", "damage", "caster", "critical", "gem" }, }, - ["SocketedAttackCriticalMultiplierUber1_"] = { type = "Suffix", affix = "of the Elder", "Socketed Attacks have +30% to Critical Strike Multiplier", statOrder = { 466 }, level = 68, group = "SocketedAttackCriticalMultiplier", weightKey = { "gloves_elder", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "influence_mod", "damage", "attack", "critical", "gem" }, }, - ["SocketedAttackCriticalMultiplierUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Attacks have +50% to Critical Strike Multiplier", statOrder = { 466 }, level = 75, group = "SocketedAttackCriticalMultiplier", weightKey = { "gloves_elder", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "influence_mod", "damage", "attack", "critical", "gem" }, }, - ["SocketedAttackCriticalMultiplierUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Attacks have +70% to Critical Strike Multiplier", statOrder = { 466 }, level = 84, group = "SocketedAttackCriticalMultiplier", weightKey = { "gloves_elder", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "influence_mod", "damage", "attack", "critical", "gem" }, }, - ["AreaDamageSupportedUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Concentrated Effect", "(15-18)% increased Area Damage", statOrder = { 373, 1912 }, level = 68, group = "AreaDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, - ["AreaDamageSupportedUber2_"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Concentrated Effect", "(19-22)% increased Area Damage", statOrder = { 373, 1912 }, level = 75, group = "AreaDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, - ["AreaDamageSupportedUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Concentrated Effect", "(23-25)% increased Area Damage", statOrder = { 373, 1912 }, level = 82, group = "AreaDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, - ["AreaOfEffectSupportedUber1_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Increased Area of Effect", "(7-9)% increased Area of Effect", statOrder = { 202, 1761 }, level = 68, group = "AreaOfEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, }, - ["AreaOfEffectSupportedUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Increased Area of Effect", "(10-12)% increased Area of Effect", statOrder = { 202, 1761 }, level = 75, group = "AreaOfEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, }, - ["AreaOfEffectSupportedUber3"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Increased Area of Effect", "(13-15)% increased Area of Effect", statOrder = { 202, 1761 }, level = 83, group = "AreaOfEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, }, - ["MaximumManaUber1"] = { type = "Prefix", affix = "The Elder's", "(9-11)% increased maximum Mana", statOrder = { 1462 }, level = 68, group = "MaximumManaIncreasePercent", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, - ["MaximumManaUber2_"] = { type = "Prefix", affix = "The Elder's", "(12-15)% increased maximum Mana", statOrder = { 1462 }, level = 75, group = "MaximumManaIncreasePercent", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, - ["MinionDamageSupportedUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Minion Damage", "Minions deal (15-18)% increased Damage", statOrder = { 425, 1852 }, level = 68, group = "MinionDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "damage", "minion", "gem" }, }, - ["MinionDamageSupportedUber2"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Minion Damage", "Minions deal (19-22)% increased Damage", statOrder = { 425, 1852 }, level = 75, group = "MinionDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "damage", "minion", "gem" }, }, - ["MinionDamageSupportedUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Minion Damage", "Minions deal (23-25)% increased Damage", statOrder = { 425, 1852 }, level = 83, group = "MinionDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "damage", "minion", "gem" }, }, - ["MinionLifeSupportedUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Minion Life", "Minions have (15-18)% increased maximum Life", statOrder = { 423, 1647 }, level = 68, group = "MinionLifeSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "resource", "influence_mod", "life", "minion", "gem" }, }, - ["MinionLifeSupportedUber2"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Minion Life", "Minions have (19-22)% increased maximum Life", statOrder = { 423, 1647 }, level = 75, group = "MinionLifeSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "resource", "influence_mod", "life", "minion", "gem" }, }, - ["MinionLifeSupportedUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Minion Life", "Minions have (23-25)% increased maximum Life", statOrder = { 423, 1647 }, level = 80, group = "MinionLifeSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "resource", "influence_mod", "life", "minion", "gem" }, }, - ["AdditionalMinesPlacedSupportedUber1_"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Blastchain Mine", "Throw an additional Mine", statOrder = { 417, 3412 }, level = 68, group = "AdditionalMinesPlacedSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, }, - ["AdditionalMinesPlacedSupportedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Blastchain Mine", "Throw an additional Mine", statOrder = { 417, 3412 }, level = 75, group = "AdditionalMinesPlacedSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, }, - ["AdditionalMinesPlacedSupportedUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 22 Blastchain Mine", "Throw an additional Mine", statOrder = { 417, 3412 }, level = 85, group = "AdditionalMinesPlacedSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, }, - ["MineDamageUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Blastchain Mine", "(20-25)% increased Mine Damage", statOrder = { 417, 1081 }, level = 68, group = "MineDamageSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, - ["MineDamageUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Blastchain Mine", "(26-30)% increased Mine Damage", statOrder = { 417, 1081 }, level = 75, group = "MineDamageSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, - ["MineDamageUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 22 Blastchain Mine", "(31-35)% increased Mine Damage", statOrder = { 417, 1081 }, level = 80, group = "MineDamageSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, - ["MineDamageTrapUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Trap And Mine Damage", "(20-25)% increased Mine Damage", statOrder = { 377, 1081 }, level = 68, group = "MineDamageTrapSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, - ["MineDamageTrapUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Trap And Mine Damage", "(26-30)% increased Mine Damage", statOrder = { 377, 1081 }, level = 75, group = "MineDamageTrapSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, - ["MineDamageTrapUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Trap And Mine Damage", "(31-35)% increased Mine Damage", statOrder = { 377, 1081 }, level = 80, group = "MineDamageTrapSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, - ["IncreasedChillEffectSupportedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Hypothermia", "(8-12)% increased Effect of Cold Ailments", statOrder = { 430, 5505 }, level = 68, group = "ChillEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "elemental", "cold", "ailment", "gem" }, }, - ["IncreasedChillEffectSupportedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Hypothermia", "(13-16)% increased Effect of Cold Ailments", statOrder = { 430, 5505 }, level = 75, group = "ChillEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "elemental", "cold", "ailment", "gem" }, }, - ["IncreasedChillEffectSupportedUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Hypothermia", "(17-20)% increased Effect of Cold Ailments", statOrder = { 430, 5505 }, level = 80, group = "ChillEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "elemental", "cold", "ailment", "gem" }, }, - ["IncreasedShockEffectSupportedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Innervate", "(8-12)% increased Effect of Lightning Ailments", statOrder = { 440, 7045 }, level = 68, group = "ShockEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "elemental", "lightning", "ailment", "gem" }, }, - ["IncreasedShockEffectSupportedUber2___"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Innervate", "(13-16)% increased Effect of Lightning Ailments", statOrder = { 440, 7045 }, level = 75, group = "ShockEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "elemental", "lightning", "ailment", "gem" }, }, - ["IncreasedShockEffectSupportedUber3_"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Innervate", "(17-20)% increased Effect of Lightning Ailments", statOrder = { 440, 7045 }, level = 80, group = "ShockEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "elemental", "lightning", "ailment", "gem" }, }, - ["IgniteDurationSupportedUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Immolate", "(8-12)% increased Ignite Duration on Enemies", statOrder = { 257, 1740 }, level = 68, group = "IgniteDurationSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "elemental", "fire", "ailment", "gem" }, }, - ["IgniteDurationSupportedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Immolate", "(13-16)% increased Ignite Duration on Enemies", statOrder = { 257, 1740 }, level = 75, group = "IgniteDurationSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "elemental", "fire", "ailment", "gem" }, }, - ["IgniteDurationSupportedUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Immolate", "(17-20)% increased Ignite Duration on Enemies", statOrder = { 257, 1740 }, level = 80, group = "IgniteDurationSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "elemental", "fire", "ailment", "gem" }, }, - ["IncreasedBurningDamageSupportedUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Burning Damage", "(20-25)% increased Burning Damage", statOrder = { 260, 1758 }, level = 68, group = "BurningDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "fire", "gem" }, }, - ["IncreasedBurningDamageSupportedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Burning Damage", "(26-30)% increased Burning Damage", statOrder = { 260, 1758 }, level = 75, group = "BurningDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "fire", "gem" }, }, - ["IncreasedBurningDamageSupportedUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Burning Damage", "(31-35)% increased Burning Damage", statOrder = { 260, 1758 }, level = 82, group = "BurningDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "fire", "gem" }, }, - ["ChanceToGainPowerChargeOnKillUber1"] = { type = "Prefix", affix = "The Shaper's", "(4-6)% chance to gain a Power Charge on Kill", statOrder = { 2508 }, level = 68, group = "PowerChargeOnKillChance", weightKey = { "helmet_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "power_charge", "influence_mod" }, }, - ["ChanceToGainPowerChargeOnKillUber2"] = { type = "Prefix", affix = "The Shaper's", "(7-10)% chance to gain a Power Charge on Kill", statOrder = { 2508 }, level = 84, group = "PowerChargeOnKillChance", weightKey = { "helmet_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "power_charge", "influence_mod" }, }, - ["SupportedByLessDurationUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Less Duration", statOrder = { 299 }, level = 68, group = "SupportedByLessDuration", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, }, - ["SpellAddedFireDamageUber1"] = { type = "Prefix", affix = "The Elder's", "Adds (17-22) to (33-39) Fire Damage to Spells", statOrder = { 1288 }, level = 68, group = "SpellAddedFireDamageUber", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamageUber2"] = { type = "Prefix", affix = "The Elder's", "Adds (21-28) to (42-49) Fire Damage to Spells", statOrder = { 1288 }, level = 75, group = "SpellAddedFireDamageUber", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamageUber3"] = { type = "Prefix", affix = "The Elder's", "Adds (25-34) to (51-59) Fire Damage to Spells", statOrder = { 1288 }, level = 82, group = "SpellAddedFireDamageUber", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedColdDamageUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (14-18) to (27-32) Cold Damage to Spells", statOrder = { 1289 }, level = 68, group = "SpellAddedColdDamageUber", weightKey = { "helmet_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamageUber2"] = { type = "Prefix", affix = "The Shaper's", "Adds (17-23) to (34-40) Cold Damage to Spells", statOrder = { 1289 }, level = 75, group = "SpellAddedColdDamageUber", weightKey = { "helmet_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamageUber3"] = { type = "Prefix", affix = "The Shaper's", "Adds (21-28) to (41-48) Cold Damage to Spells", statOrder = { 1289 }, level = 83, group = "SpellAddedColdDamageUber", weightKey = { "helmet_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedLightningDamageUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (2-5) to (58-61) Lightning Damage to Spells", statOrder = { 1290 }, level = 68, group = "SpellAddedLightningDamageUber", weightKey = { "helmet_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamageUber2"] = { type = "Prefix", affix = "The Shaper's", "Adds (2-6) to (73-77) Lightning Damage to Spells", statOrder = { 1290 }, level = 75, group = "SpellAddedLightningDamageUber", weightKey = { "helmet_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamageUber3"] = { type = "Prefix", affix = "The Shaper's", "Adds (2-7) to (88-93) Lightning Damage to Spells", statOrder = { 1290 }, level = 84, group = "SpellAddedLightningDamageUber", weightKey = { "helmet_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedPhysicalDamageUber1"] = { type = "Prefix", affix = "The Elder's", "Adds (17-22) to (33-39) Physical Damage to Spells", statOrder = { 1287 }, level = 68, group = "SpellAddedPhysicalDamage", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "physical_damage", "caster_damage", "influence_mod", "damage", "physical", "caster" }, }, - ["SpellAddedPhysicalDamageUber2"] = { type = "Prefix", affix = "The Elder's", "Adds (21-28) to (42-49) Physical Damage to Spells", statOrder = { 1287 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "physical_damage", "caster_damage", "influence_mod", "damage", "physical", "caster" }, }, - ["SpellAddedPhysicalDamageUber3"] = { type = "Prefix", affix = "The Elder's", "Adds (25-34) to (51-59) Physical Damage to Spells", statOrder = { 1287 }, level = 85, group = "SpellAddedPhysicalDamage", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "physical_damage", "caster_damage", "influence_mod", "damage", "physical", "caster" }, }, - ["SpellAddedChaosDamageUber1"] = { type = "Prefix", affix = "The Elder's", "Adds (14-18) to (27-32) Chaos Damage to Spells", statOrder = { 1291 }, level = 68, group = "SpellAddedChaosDamage", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "caster_damage", "chaos_damage", "influence_mod", "damage", "chaos", "caster" }, }, - ["SpellAddedChaosDamageUber2"] = { type = "Prefix", affix = "The Elder's", "Adds (17-23) to (34-40) Chaos Damage to Spells", statOrder = { 1291 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "caster_damage", "chaos_damage", "influence_mod", "damage", "chaos", "caster" }, }, - ["SpellAddedChaosDamageUber3"] = { type = "Prefix", affix = "The Elder's", "Adds (21-28) to (41-48) Chaos Damage to Spells", statOrder = { 1291 }, level = 85, group = "SpellAddedChaosDamage", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "caster_damage", "chaos_damage", "influence_mod", "damage", "chaos", "caster" }, }, - ["ManaRegenerationUber1"] = { type = "Suffix", affix = "of Shaping", "(41-55)% increased Mana Regeneration Rate", statOrder = { 1466 }, level = 68, group = "ManaRegeneration", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, - ["ManaRegenerationUber2"] = { type = "Suffix", affix = "of Shaping", "(56-70)% increased Mana Regeneration Rate", statOrder = { 1466 }, level = 75, group = "ManaRegeneration", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, - ["AddedManaRegenerationUber1"] = { type = "Suffix", affix = "of Shaping", "Regenerate (3-5) Mana per second", statOrder = { 1464 }, level = 68, group = "AddedManaRegeneration", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, - ["AddedManaRegenerationUber2"] = { type = "Suffix", affix = "of Shaping", "Regenerate (6-8) Mana per second", statOrder = { 1464 }, level = 80, group = "AddedManaRegeneration", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, - ["AdditionalSpellBlockChanceUber1"] = { type = "Suffix", affix = "of the Elder", "(3-4)% Chance to Block Spell Damage", statOrder = { 1046 }, level = 68, group = "SpellBlockPercentage", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod" }, }, - ["AdditionalSpellBlockChanceUber2"] = { type = "Suffix", affix = "of the Elder", "(5-6)% Chance to Block Spell Damage", statOrder = { 1046 }, level = 80, group = "SpellBlockPercentage", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod" }, }, - ["SocketedSpellCriticalStrikeChanceUber1_"] = { type = "Suffix", affix = "of Shaping", "Socketed Spells have +1% to Critical Strike Chance", statOrder = { 484 }, level = 68, group = "SocketedSpellCriticalStrikeChance", weightKey = { "helmet_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "influence_mod", "caster", "critical", "gem" }, }, - ["SocketedSpellCriticalStrikeChanceUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Spells have +2% to Critical Strike Chance", statOrder = { 484 }, level = 75, group = "SocketedSpellCriticalStrikeChance", weightKey = { "helmet_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "influence_mod", "caster", "critical", "gem" }, }, - ["SocketedSpellCriticalStrikeChanceUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Spells have +3% to Critical Strike Chance", statOrder = { 484 }, level = 84, group = "SocketedSpellCriticalStrikeChance", weightKey = { "helmet_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "influence_mod", "caster", "critical", "gem" }, }, - ["SocketedAttackCriticalStrikeChanceUber1__"] = { type = "Suffix", affix = "of the Elder", "Socketed Attacks have +1% to Critical Strike Chance", statOrder = { 465 }, level = 68, group = "SocketedAttackCriticalStrikeChance", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "influence_mod", "attack", "critical", "gem" }, }, - ["SocketedAttackCriticalStrikeChanceUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Attacks have +2% to Critical Strike Chance", statOrder = { 465 }, level = 75, group = "SocketedAttackCriticalStrikeChance", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "influence_mod", "attack", "critical", "gem" }, }, - ["SocketedAttackCriticalStrikeChanceUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Attacks have +3% to Critical Strike Chance", statOrder = { 465 }, level = 83, group = "SocketedAttackCriticalStrikeChance", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "influence_mod", "attack", "critical", "gem" }, }, - ["EnemyPhysicalDamageTakenAuraUber1_"] = { type = "Suffix", affix = "of the Elder", "Nearby Enemies take 9% increased Physical Damage", statOrder = { 7522 }, level = 85, group = "NearbyEnemyPhysicalDamageTaken", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, }, - ["EnemyElementalDamageTakenAuraUber1"] = { type = "Suffix", affix = "of Shaping", "Nearby Enemies take 6% increased Elemental Damage", statOrder = { 7517 }, level = 85, group = "NearbyEnemyElementalDamageTaken", weightKey = { "helmet_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, }, - ["LocalIncreaseSocketedActiveGemLevelUber1"] = { type = "Prefix", affix = "The Shaper's", "+1 to Level of Socketed Skill Gems", statOrder = { 169 }, level = 80, group = "LocalIncreaseSocketedActiveSkillGemLevel", weightKey = { "body_armour_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "gem" }, }, - ["LocalIncreaseSocketedSupportGemLevelUber1"] = { type = "Prefix", affix = "The Elder's", "+1 to Level of Socketed Support Gems", statOrder = { 168 }, level = 80, group = "LocalIncreaseSocketedSupportGemLevel", weightKey = { "body_armour_elder", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "gem" }, }, - ["PhysicalDamageTakenAsFirePercentUber1"] = { type = "Prefix", affix = "The Elder's", "(8-12)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2323 }, level = 68, group = "PhysicalDamageTakenAsFireUber", weightKey = { "body_armour_elder", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "physical", "elemental", "fire" }, }, - ["PhysicalDamageTakenAsFirePercentUber2"] = { type = "Prefix", affix = "The Elder's", "(13-15)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2323 }, level = 84, group = "PhysicalDamageTakenAsFireUber", weightKey = { "body_armour_elder", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "physical", "elemental", "fire" }, }, - ["PhysicalDamageTakenAsColdPercentUber1"] = { type = "Prefix", affix = "The Shaper's", "(8-12)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2324 }, level = 68, group = "PhysicalDamageTakenAsColdUber", weightKey = { "body_armour_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "physical", "elemental", "cold" }, }, - ["PhysicalDamageTakenAsColdPercentUber2"] = { type = "Prefix", affix = "The Shaper's", "(13-15)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2324 }, level = 83, group = "PhysicalDamageTakenAsColdUber", weightKey = { "body_armour_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "physical", "elemental", "cold" }, }, - ["PhysicalDamageTakenAsLightningPercentUber1"] = { type = "Prefix", affix = "The Shaper's", "(8-12)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2325 }, level = 68, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "body_armour_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "physical", "elemental", "lightning" }, }, - ["PhysicalDamageTakenAsLightningPercentUber2___"] = { type = "Prefix", affix = "The Shaper's", "(13-15)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2325 }, level = 82, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "body_armour_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "physical", "elemental", "lightning" }, }, - ["ReducedElementalReflectTakenUber1"] = { type = "Prefix", affix = "The Shaper's", "You and your Minions take 100% reduced Reflected Elemental Damage", statOrder = { 6023 }, level = 68, group = "ReducedElementalReflectTaken", weightKey = { "body_armour_shaper", "default", }, weightVal = { 200, 0 }, modTags = { "influence_mod", "elemental" }, }, - ["ReducedElementalReflectTakenUber2"] = { type = "Prefix", affix = "The Shaper's", "You and your Minions take 100% reduced Reflected Elemental Damage", statOrder = { 6023 }, level = 75, group = "ReducedElementalReflectTaken", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental" }, }, - ["ReducedPhysicalReflectTakenUber1"] = { type = "Prefix", affix = "The Elder's", "You and your Minions take 100% reduced Reflected Physical Damage", statOrder = { 9177 }, level = 68, group = "ReducedPhysicalReflectTaken", weightKey = { "body_armour_elder", "default", }, weightVal = { 200, 0 }, modTags = { "influence_mod", "physical" }, }, - ["ReducedPhysicalReflectTakenUber2"] = { type = "Prefix", affix = "The Elder's", "You and your Minions take 100% reduced Reflected Physical Damage", statOrder = { 9177 }, level = 75, group = "ReducedPhysicalReflectTaken", weightKey = { "body_armour_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical" }, }, - ["MaximumLifeUber1"] = { type = "Prefix", affix = "The Elder's", "(5-8)% increased maximum Life", statOrder = { 1453 }, level = 68, group = "MaximumLifeIncreasePercent", weightKey = { "body_armour_elder", "default", }, weightVal = { 400, 0 }, modTags = { "resource", "influence_mod", "life" }, }, - ["MaximumLifeUber2"] = { type = "Prefix", affix = "The Elder's", "(9-12)% increased maximum Life", statOrder = { 1453 }, level = 85, group = "MaximumLifeIncreasePercent", weightKey = { "body_armour_elder", "default", }, weightVal = { 400, 0 }, modTags = { "resource", "influence_mod", "life" }, }, - ["MaximumManaBodyUber1"] = { type = "Prefix", affix = "The Shaper's", "(9-11)% increased maximum Mana", statOrder = { 1462 }, level = 68, group = "MaximumManaIncreaseShaper", weightKey = { "body_armour_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, - ["MaximumManaBodyUber2"] = { type = "Prefix", affix = "The Shaper's", "(12-15)% increased maximum Mana", statOrder = { 1462 }, level = 75, group = "MaximumManaIncreaseShaper", weightKey = { "body_armour_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, - ["DamageTakenFromManaBeforeLifeUber1_"] = { type = "Prefix", affix = "The Shaper's", "(5-10)% of Damage is taken from Mana before Life", statOrder = { 2572 }, level = 80, group = "DamageRemovedFromManaBeforeLife", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "mana" }, }, - ["MaximumLifeOnKillPercentUber1"] = { type = "Suffix", affix = "of the Elder", "Recover (3-4)% of Life on Kill", statOrder = { 1630 }, level = 68, group = "MaximumLifeOnKillPercent", weightKey = { "body_armour_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life" }, }, - ["MaximumLifeOnKillPercentUber2__"] = { type = "Suffix", affix = "of the Elder", "Recover (5-6)% of Life on Kill", statOrder = { 1630 }, level = 75, group = "MaximumLifeOnKillPercent", weightKey = { "body_armour_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life" }, }, - ["MaximumManaOnKillPercentUber1"] = { type = "Suffix", affix = "of Shaping", "Recover (3-4)% of Mana on Kill", statOrder = { 1632 }, level = 68, group = "MaximumManaOnKillPercent", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, - ["MaximumManaOnKillPercentUber2"] = { type = "Suffix", affix = "of Shaping", "Recover (5-6)% of Mana on Kill", statOrder = { 1632 }, level = 75, group = "MaximumManaOnKillPercent", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, - ["MaximumEnergyShieldOnKillPercentUber1"] = { type = "Suffix", affix = "of Shaping", "Recover (3-4)% of Energy Shield on Kill", statOrder = { 1631 }, level = 68, group = "MaximumEnergyShieldOnKillPercent", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, - ["MaximumEnergyShieldOnKillPercentUber2"] = { type = "Suffix", affix = "of Shaping", "Recover (5-6)% of Energy Shield on Kill", statOrder = { 1631 }, level = 75, group = "MaximumEnergyShieldOnKillPercent", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, - ["PercentageStrengthUber1_"] = { type = "Suffix", affix = "of the Elder", "(5-8)% increased Strength", statOrder = { 1069 }, level = 68, group = "PercentageStrength", weightKey = { "body_armour_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attribute" }, }, - ["PercentageStrengthUber2__"] = { type = "Suffix", affix = "of the Elder", "(9-12)% increased Strength", statOrder = { 1069 }, level = 83, group = "PercentageStrength", weightKey = { "body_armour_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attribute" }, }, - ["PercentageDexterityUber1"] = { type = "Suffix", affix = "of the Elder", "(5-8)% increased Dexterity", statOrder = { 1070 }, level = 68, group = "PercentageDexterity", weightKey = { "body_armour_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attribute" }, }, - ["PercentageDexterityUber2"] = { type = "Suffix", affix = "of the Elder", "(9-12)% increased Dexterity", statOrder = { 1070 }, level = 83, group = "PercentageDexterity", weightKey = { "body_armour_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attribute" }, }, - ["PercentageIntelligenceUber1"] = { type = "Suffix", affix = "of Shaping", "(5-8)% increased Intelligence", statOrder = { 1071 }, level = 68, group = "PercentageIntelligence", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attribute" }, }, - ["PercentageIntelligenceUber2"] = { type = "Suffix", affix = "of Shaping", "(9-12)% increased Intelligence", statOrder = { 1071 }, level = 83, group = "PercentageIntelligence", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attribute" }, }, - ["LifeRegenerationRatePercentUber1"] = { type = "Suffix", affix = "of the Elder", "Regenerate (1-1.5)% of Life per second", statOrder = { 1823 }, level = 68, group = "LifeRegenerationRatePercentage", weightKey = { "body_armour_elder", "amulet_elder", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "influence_mod", "life" }, }, - ["LifeRegenerationRatePercentUber2"] = { type = "Suffix", affix = "of the Elder", "Regenerate (1.6-2)% of Life per second", statOrder = { 1823 }, level = 75, group = "LifeRegenerationRatePercentage", weightKey = { "body_armour_elder", "amulet_elder", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "influence_mod", "life" }, }, - ["SupportedByItemRarityUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 10 Item Rarity", "(8-12)% increased Rarity of Items found from Slain Unique Enemies", statOrder = { 267, 9977 }, level = 68, group = "SupportedByItemRarityUnique", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem", "drop" }, }, - ["SupportedByItemRarityUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 15 Item Rarity", "(13-18)% increased Rarity of Items found from Slain Unique Enemies", statOrder = { 267, 9977 }, level = 85, group = "SupportedByItemRarityUnique", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem", "drop" }, }, - ["AdditionalCriticalStrikeChanceWithAttacksUber1"] = { type = "Suffix", affix = "of the Elder", "Attacks have +(0.5-1)% to Critical Strike Chance", statOrder = { 4617 }, level = 68, group = "AdditionalCriticalStrikeChanceWithAttacks", weightKey = { "body_armour_elder", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "attack", "critical" }, }, - ["AdditionalCriticalStrikeChanceWithAttacksUber2"] = { type = "Suffix", affix = "of the Elder", "Attacks have +(1.1-1.5)% to Critical Strike Chance", statOrder = { 4617 }, level = 84, group = "AdditionalCriticalStrikeChanceWithAttacks", weightKey = { "body_armour_elder", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "attack", "critical" }, }, - ["AdditionalCriticalStrikeChanceWithSpellsUber1_"] = { type = "Suffix", affix = "of Shaping", "+(0.5-1)% to Spell Critical Strike Chance", statOrder = { 9610 }, level = 68, group = "AdditionalCriticalStrikeChanceWithSpells", weightKey = { "body_armour_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "caster", "critical" }, }, - ["AdditionalCriticalStrikeChanceWithSpellsUber2_"] = { type = "Suffix", affix = "of Shaping", "+(1.1-1.5)% to Spell Critical Strike Chance", statOrder = { 9610 }, level = 84, group = "AdditionalCriticalStrikeChanceWithSpells", weightKey = { "body_armour_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "caster", "critical" }, }, - ["GrantsWrathAuraUber1"] = { type = "Suffix", affix = "of the Elder", "Grants Level 22 Wrath Skill", statOrder = { 553 }, level = 68, group = "WrathSkill", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, }, - ["GrantsAngerAuraUber1"] = { type = "Suffix", affix = "of the Elder", "Grants Level 22 Anger Skill", statOrder = { 555 }, level = 68, group = "AngerSkill", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, }, - ["GrantsHatredAuraUber1__"] = { type = "Suffix", affix = "of the Elder", "Grants Level 22 Hatred Skill", statOrder = { 554 }, level = 68, group = "HatredSkill", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, }, - ["GrantsEnvyAuraUber1"] = { type = "Suffix", affix = "of the Elder", "Grants Level 15 Envy Skill", statOrder = { 560 }, level = 85, group = "GrantsEnvy", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, }, - ["GrantsDeterminationAuraUber1_"] = { type = "Suffix", affix = "of Shaping", "Grants Level 22 Determination Skill", statOrder = { 556 }, level = 68, group = "DeterminationSkill", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, }, - ["GrantsGraceAuraUber1"] = { type = "Suffix", affix = "of Shaping", "Grants Level 22 Grace Skill", statOrder = { 557 }, level = 68, group = "GraceSkill", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, }, - ["GrantsDisciplineAuraUber1"] = { type = "Suffix", affix = "of Shaping", "Grants Level 22 Discipline Skill", statOrder = { 559 }, level = 68, group = "DisciplineSkill", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, }, - ["GrantsHasteAuraUber1"] = { type = "Suffix", affix = "of Shaping", "Grants Level 22 Haste Skill", statOrder = { 544 }, level = 68, group = "HasteSkill", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, }, - ["GrantsVitalityAuraUber1"] = { type = "Suffix", affix = "of Shaping", "Grants Level 22 Vitality Skill", statOrder = { 548 }, level = 68, group = "VitalitySkill", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, }, - ["GrantsClarityAuraUber1"] = { type = "Suffix", affix = "of Shaping", "Grants Level 22 Clarity Skill", statOrder = { 546 }, level = 68, group = "ClaritySkill", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, }, - ["ReducedAttributeRequirementsUber1"] = { type = "Suffix", affix = "of Shaping", "Items and Gems have (5-10)% reduced Attribute Requirements", statOrder = { 2428 }, level = 68, group = "GlobalItemAttributeRequirements", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, }, - ["ReducedAttributeRequirementsUber2"] = { type = "Suffix", affix = "of Shaping", "Items and Gems have (11-15)% reduced Attribute Requirements", statOrder = { 2428 }, level = 75, group = "GlobalItemAttributeRequirements", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, }, - ["FireDamageLifeLeechUber1"] = { type = "Prefix", affix = "The Elder's", "(0.3-0.5)% of Fire Damage Leeched as Life", statOrder = { 1551 }, level = 68, group = "FireDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "fire" }, }, - ["ColdDamageLifeLeechUber1_"] = { type = "Prefix", affix = "The Shaper's", "(0.3-0.5)% of Cold Damage Leeched as Life", statOrder = { 1556 }, level = 68, group = "ColdDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "cold" }, }, - ["LightningDamageLifeLeechUber1"] = { type = "Prefix", affix = "The Shaper's", "(0.3-0.5)% of Lightning Damage Leeched as Life", statOrder = { 1560 }, level = 68, group = "LightningDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "lightning" }, }, - ["PhysicalDamageLifeLeechUber1"] = { type = "Prefix", affix = "The Elder's", "(0.3-0.5)% of Physical Damage Leeched as Life", statOrder = { 1547 }, level = 68, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "influence_mod", "life", "physical" }, }, - ["FireDamageLifeLeechSuffixUber1"] = { type = "Suffix", affix = "of the Elder", "(0.3-0.5)% of Fire Damage Leeched as Life", statOrder = { 1551 }, level = 68, group = "FireDamageLifeLeechPermyriad", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "fire" }, }, - ["ColdDamageLifeLeechSuffixUber1_"] = { type = "Suffix", affix = "of Shaping", "(0.3-0.5)% of Cold Damage Leeched as Life", statOrder = { 1556 }, level = 68, group = "ColdDamageLifeLeechPermyriad", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "cold" }, }, - ["LightningDamageLifeLeechSuffixUber1"] = { type = "Suffix", affix = "of Shaping", "(0.3-0.5)% of Lightning Damage Leeched as Life", statOrder = { 1560 }, level = 68, group = "LightningDamageLifeLeechPermyriad", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "lightning" }, }, - ["PhysicalDamageLifeLeechSuffixUber1"] = { type = "Suffix", affix = "of the Elder", "(0.3-0.5)% of Physical Damage Leeched as Life", statOrder = { 1547 }, level = 68, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life", "physical" }, }, - ["MovementVelocityAmuletUber1"] = { type = "Prefix", affix = "The Shaper's", "(4-6)% increased Movement Speed", statOrder = { 1679 }, level = 68, group = "MovementVelocity", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "speed" }, }, - ["MovementVelocityAmuletUber2"] = { type = "Prefix", affix = "The Shaper's", "(7-8)% increased Movement Speed", statOrder = { 1679 }, level = 84, group = "MovementVelocity", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "speed" }, }, - ["BlockAppliesToSpellsUber1"] = { type = "Suffix", affix = "of Shaping", "(7-10)% Chance to Block Spell Damage", statOrder = { 1041 }, level = 68, group = "BlockingBlocksSpells", weightKey = { "amulet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "block", "influence_mod" }, }, - ["BlockAppliesToSpellsUber2"] = { type = "Suffix", affix = "of Shaping", "(10-12)% Chance to Block Spell Damage", statOrder = { 1041 }, level = 75, group = "BlockingBlocksSpells", weightKey = { "amulet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "block", "influence_mod" }, }, - ["SpellBlockAmuletUber1_"] = { type = "Suffix", affix = "of Shaping", "(4-5)% Chance to Block Spell Damage", statOrder = { 1046 }, level = 68, group = "SpellBlockPercentage", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod" }, }, - ["SpellBlockAmuletUber2_"] = { type = "Suffix", affix = "of Shaping", "(6-7)% Chance to Block Spell Damage", statOrder = { 1046 }, level = 75, group = "SpellBlockPercentage", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod" }, }, - ["PercentageAllAttributesUberElder1"] = { type = "Suffix", affix = "of the Elder", "(6-9)% increased Attributes", statOrder = { 1068 }, level = 68, group = "PercentageAllAttributes", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attribute" }, }, - ["PercentageAllAttributesUberElder2"] = { type = "Suffix", affix = "of the Elder", "(10-12)% increased Attributes", statOrder = { 1068 }, level = 75, group = "PercentageAllAttributes", weightKey = { "belt_elder", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "attribute" }, }, - ["PercentageAllAttributesUberShaper1"] = { type = "Suffix", affix = "of Shaping", "(6-9)% increased Attributes", statOrder = { 1068 }, level = 68, group = "PercentageAllAttributes", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attribute" }, }, - ["PercentageAllAttributesUberShaper2"] = { type = "Suffix", affix = "of Shaping", "(10-12)% increased Attributes", statOrder = { 1068 }, level = 75, group = "PercentageAllAttributes", weightKey = { "amulet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attribute" }, }, - ["ReducedManaReservedUber1"] = { type = "Suffix", affix = "of Shaping", "(6-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 2109 }, level = 82, group = "ReducedReservation", weightKey = { "amulet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, - ["ManaReservationEfficiencyUber1"] = { type = "Suffix", affix = "of Shaping", "(6-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 2105 }, level = 82, group = "ManaReservationEfficiency", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, - ["AreaOfEffectUber1_"] = { type = "Prefix", affix = "The Elder's", "(7-9)% increased Area of Effect", statOrder = { 1761 }, level = 68, group = "AreaOfEffect", weightKey = { "amulet_elder", "quiver_elder", "shield_elder", "default", }, weightVal = { 800, 800, 800, 0 }, modTags = { "influence_mod" }, }, - ["AreaOfEffectUber2"] = { type = "Prefix", affix = "The Elder's", "(10-12)% increased Area of Effect", statOrder = { 1761 }, level = 75, group = "AreaOfEffect", weightKey = { "amulet_elder", "quiver_elder", "shield_elder", "default", }, weightVal = { 600, 600, 600, 0 }, modTags = { "influence_mod" }, }, - ["AreaOfEffectUber3_"] = { type = "Prefix", affix = "The Elder's", "(13-15)% increased Area of Effect", statOrder = { 1761 }, level = 82, group = "AreaOfEffect", weightKey = { "amulet_elder", "quiver_elder", "shield_elder", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "influence_mod" }, }, - ["AdditionalPierceUber1"] = { type = "Prefix", affix = "The Elder's", "Projectiles Pierce an additional Target", statOrder = { 1671 }, level = 68, group = "AdditionalPierce", weightKey = { "amulet_elder", "quiver_elder", "default", }, weightVal = { 800, 800, 0 }, modTags = { "influence_mod" }, }, - ["ReducedPhysicalDamageTakenUber1"] = { type = "Suffix", affix = "of the Elder", "(3-5)% additional Physical Damage Reduction", statOrder = { 2150 }, level = 83, group = "ReducedPhysicalDamageTaken", weightKey = { "amulet_elder", "shield_elder", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "physical" }, }, - ["ItemFoundQuantityIncreaseUber1"] = { type = "Suffix", affix = "of Shaping", "(4-7)% increased Quantity of Items found", statOrder = { 1474 }, level = 75, group = "ItemFoundQuantityIncrease", weightKey = { "amulet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "drop" }, }, - ["ItemFoundQuantityIncreaseUber2"] = { type = "Suffix", affix = "of Shaping", "(8-10)% increased Quantity of Items found", statOrder = { 1474 }, level = 85, group = "ItemFoundQuantityIncrease", weightKey = { "amulet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "drop" }, }, - ["PhysicalAddedAsFireAmuletUber1"] = { type = "Prefix", affix = "The Elder's", "Gain (8-11)% of Physical Damage as Extra Fire Damage", statOrder = { 1811 }, level = 68, group = "PhysicalAddedAsFire", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, }, - ["PhysicalAddedAsFireAmuletUber2"] = { type = "Prefix", affix = "The Elder's", "Gain (12-15)% of Physical Damage as Extra Fire Damage", statOrder = { 1811 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, }, - ["PhysicalAddedAsColdAmuletUber1"] = { type = "Prefix", affix = "The Shaper's", "Gain (8-11)% of Physical Damage as Extra Cold Damage", statOrder = { 1812 }, level = 68, group = "PhysicalAddedAsCold", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, }, - ["PhysicalAddedAsColdAmuletUber2"] = { type = "Prefix", affix = "The Shaper's", "Gain (12-15)% of Physical Damage as Extra Cold Damage", statOrder = { 1812 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, }, - ["PhysicalAddedAsLightningAmuletUber1"] = { type = "Prefix", affix = "The Shaper's", "Gain (8-11)% of Physical Damage as Extra Lightning Damage", statOrder = { 1813 }, level = 68, group = "PhysicalAddedAsLightning", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, }, - ["PhysicalAddedAsLightningAmuletUber2_"] = { type = "Prefix", affix = "The Shaper's", "Gain (12-15)% of Physical Damage as Extra Lightning Damage", statOrder = { 1813 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, }, - ["IncreasedAttackSpeedAmuletUber1"] = { type = "Suffix", affix = "of the Elder", "(7-13)% increased Attack Speed", statOrder = { 1294 }, level = 82, group = "IncreasedAttackSpeed", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attack", "speed" }, }, - ["NonChaosAddedAsChaosUber1"] = { type = "Prefix", affix = "The Elder's", "Gain (3-5)% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 9009 }, level = 81, group = "NonChaosAddedAsChaos", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "chaos_damage", "influence_mod", "damage", "chaos" }, }, - ["PowerFrenzyOrEnduranceChargeOnKillUber1_"] = { type = "Suffix", affix = "of Shaping", "(3-6)% chance to gain a Power, Frenzy or Endurance Charge on Kill", statOrder = { 3475 }, level = 68, group = "PowerFrenzyOrEnduranceChargeOnKill", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "endurance_charge", "frenzy_charge", "power_charge", "influence_mod" }, }, - ["PowerFrenzyOrEnduranceChargeOnKillUber2"] = { type = "Suffix", affix = "of Shaping", "(7-10)% chance to gain a Power, Frenzy or Endurance Charge on Kill", statOrder = { 3475 }, level = 75, group = "PowerFrenzyOrEnduranceChargeOnKill", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "endurance_charge", "frenzy_charge", "power_charge", "influence_mod" }, }, - ["MaximumZombiesUber1"] = { type = "Prefix", affix = "The Elder's", "+1 to maximum number of Raised Zombies", statOrder = { 2037 }, level = 68, group = "MaximumMinionCount", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "minion" }, }, - ["MaximumSkeletonsUber1"] = { type = "Prefix", affix = "The Elder's", "+1 to maximum number of Skeletons", statOrder = { 2039 }, level = 68, group = "MaximumMinionCount", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "minion" }, }, - ["MaximumBlockChanceUber1"] = { type = "Suffix", affix = "of Shaping", "+2% to maximum Chance to Block Attack Damage", statOrder = { 1865 }, level = 68, group = "MaximumBlockChance", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod" }, }, - ["MaximumLifeLeechRateUber1"] = { type = "Prefix", affix = "The Elder's", "(15-25)% increased Maximum total Life Recovery per second from Leech", statOrder = { 1613 }, level = 68, group = "MaximumLifeLeechRateOldFix", weightKey = { "amulet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life" }, }, - ["MaximumLifeLeechRateUpdatedUber1"] = { type = "Prefix", affix = "The Elder's", "(15-25)% increased Maximum total Life Recovery per second from Leech", statOrder = { 1612 }, level = 68, group = "MaximumLifeLeechRate", weightKey = { "amulet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life" }, }, - ["MaximumLifeLeechRateUpdatedSuffixUber1"] = { type = "Suffix", affix = "of the Elder", "(15-25)% increased Maximum total Life Recovery per second from Leech", statOrder = { 1612 }, level = 68, group = "MaximumLifeLeechRate", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life" }, }, - ["ElementalPenetrationUber1"] = { type = "Prefix", affix = "The Shaper's", "Damage Penetrates (4-7)% Elemental Resistances", statOrder = { 2852 }, level = 68, group = "ElementalPenetration", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, }, - ["ElementalPenetrationUber2"] = { type = "Prefix", affix = "The Shaper's", "Damage Penetrates (8-10)% Elemental Resistances", statOrder = { 2852 }, level = 82, group = "ElementalPenetration", weightKey = { "amulet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, }, - ["DamagePer15StrengthUber1"] = { type = "Prefix", affix = "The Elder's", "1% increased Damage per 15 Strength", statOrder = { 5758 }, level = 80, group = "DamagePer15Strength", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "damage" }, }, - ["DamagePer15DexterityUber1"] = { type = "Prefix", affix = "The Shaper's", "1% increased Damage per 15 Dexterity", statOrder = { 5756 }, level = 80, group = "DamagePer15Dexterity", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "damage" }, }, - ["DamagePer15IntelligenceUber1"] = { type = "Prefix", affix = "The Shaper's", "1% increased Damage per 15 Intelligence", statOrder = { 5757 }, level = 80, group = "DamagePer15Intelligence", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "damage" }, }, - ["ReducedCurseEffectUber1_"] = { type = "Suffix", affix = "of Shaping", "(25-29)% reduced Effect of Curses on you", statOrder = { 2047 }, level = 68, group = "ReducedCurseEffect", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, - ["ReducedCurseEffectUber2"] = { type = "Suffix", affix = "of Shaping", "(35-40)% reduced Effect of Curses on you", statOrder = { 2047 }, level = 75, group = "ReducedCurseEffect", weightKey = { "ring_shaper", "default", }, weightVal = { 1600, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, - ["MeleeDamageRingUber1"] = { type = "Suffix", affix = "of the Elder", "(20-25)% increased Melee Damage", statOrder = { 1119 }, level = 68, group = "MeleeDamage", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "attack" }, }, - ["MeleeDamageRingUber2"] = { type = "Suffix", affix = "of the Elder", "(26-30)% increased Melee Damage", statOrder = { 1119 }, level = 75, group = "MeleeDamage", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "attack" }, }, - ["MeleeDamageRingUber3"] = { type = "Suffix", affix = "of the Elder", "(31-35)% increased Melee Damage", statOrder = { 1119 }, level = 83, group = "MeleeDamage", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "attack" }, }, - ["ProjectileAttackDamageRingUber1"] = { type = "Suffix", affix = "of the Elder", "(20-25)% increased Projectile Attack Damage", statOrder = { 1874 }, level = 68, group = "ProjectileAttackDamage", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "attack" }, }, - ["ProjectileAttackDamageRingUber2"] = { type = "Suffix", affix = "of the Elder", "(26-30)% increased Projectile Attack Damage", statOrder = { 1874 }, level = 75, group = "ProjectileAttackDamage", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "attack" }, }, - ["ProjectileAttackDamageRingUber3"] = { type = "Suffix", affix = "of the Elder", "(31-35)% increased Projectile Attack Damage", statOrder = { 1874 }, level = 84, group = "ProjectileAttackDamage", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "attack" }, }, - ["SpellDamageRingUber1"] = { type = "Suffix", affix = "of Shaping", "(20-25)% increased Spell Damage", statOrder = { 1108 }, level = 68, group = "SpellDamage", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, }, - ["SpellDamageRingUber2"] = { type = "Suffix", affix = "of Shaping", "(26-30)% increased Spell Damage", statOrder = { 1108 }, level = 75, group = "SpellDamage", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, }, - ["SpellDamageRingUber3__"] = { type = "Suffix", affix = "of Shaping", "(31-35)% increased Spell Damage", statOrder = { 1108 }, level = 82, group = "SpellDamage", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, }, - ["ReducedElementalReflectTakenRingUber1"] = { type = "Prefix", affix = "The Shaper's", "You and your Minions take (31-45)% reduced Reflected Elemental Damage", statOrder = { 6023 }, level = 68, group = "ReducedElementalReflectTaken", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "elemental" }, }, - ["ReducedElementalReflectTakenRingUber2"] = { type = "Prefix", affix = "The Shaper's", "You and your Minions take (46-55)% reduced Reflected Elemental Damage", statOrder = { 6023 }, level = 75, group = "ReducedElementalReflectTaken", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "elemental" }, }, - ["ReducedPhysicalReflectTakenRingUber1"] = { type = "Prefix", affix = "The Elder's", "You and your Minions take (31-45)% reduced Reflected Physical Damage", statOrder = { 9177 }, level = 68, group = "ReducedPhysicalReflectTaken", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "physical" }, }, - ["ReducedPhysicalReflectTakenRingUber2"] = { type = "Prefix", affix = "The Elder's", "You and your Minions take (46-55)% reduced Reflected Physical Damage", statOrder = { 9177 }, level = 75, group = "ReducedPhysicalReflectTaken", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "physical" }, }, - ["CriticalStrikeChanceUber1"] = { type = "Suffix", affix = "of Shaping", "(10-15)% increased Global Critical Strike Chance", statOrder = { 1343 }, level = 68, group = "CriticalStrikeChance", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "critical" }, }, - ["CriticalStrikeChanceUber2"] = { type = "Suffix", affix = "of Shaping", "(16-20)% increased Global Critical Strike Chance", statOrder = { 1343 }, level = 75, group = "CriticalStrikeChance", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "critical" }, }, - ["CriticalStrikeChanceUber3_"] = { type = "Suffix", affix = "of Shaping", "(21-25)% increased Global Critical Strike Chance", statOrder = { 1343 }, level = 80, group = "CriticalStrikeChance", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "critical" }, }, - ["CriticalStrikeMultiplierUber1"] = { type = "Suffix", affix = "of the Elder", "+(8-12)% to Global Critical Strike Multiplier", statOrder = { 1372 }, level = 68, group = "CriticalStrikeMultiplier", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "damage", "critical" }, }, - ["CriticalStrikeMultiplierUber2_"] = { type = "Suffix", affix = "of the Elder", "+(13-16)% to Global Critical Strike Multiplier", statOrder = { 1372 }, level = 75, group = "CriticalStrikeMultiplier", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "damage", "critical" }, }, - ["CriticalStrikeMultiplierUber3"] = { type = "Suffix", affix = "of the Elder", "+(17-20)% to Global Critical Strike Multiplier", statOrder = { 1372 }, level = 80, group = "CriticalStrikeMultiplier", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "damage", "critical" }, }, - ["AddedFireDamageToSpellsAndAttacksUber1"] = { type = "Prefix", affix = "The Elder's", "Adds (17-20) to (38-42) Fire Damage to Spells and Attacks", statOrder = { 1257 }, level = 68, group = "AddedFireDamageSpellsAndAttacks", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "attack", "caster" }, }, - ["AddedFireDamageToSpellsAndAttacksUber2"] = { type = "Prefix", affix = "The Elder's", "Adds (21-24) to (43-48) Fire Damage to Spells and Attacks", statOrder = { 1257 }, level = 75, group = "AddedFireDamageSpellsAndAttacks", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "attack", "caster" }, }, - ["AddedColdDamageToSpellsAndAttacksUber1__"] = { type = "Prefix", affix = "The Shaper's", "Adds (17-20) to (38-42) Cold Damage to Spells and Attacks", statOrder = { 1258 }, level = 68, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "attack", "caster" }, }, - ["AddedColdDamageToSpellsAndAttacksUber2"] = { type = "Prefix", affix = "The Shaper's", "Adds (21-24) to (43-48) Cold Damage to Spells and Attacks", statOrder = { 1258 }, level = 75, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "attack", "caster" }, }, - ["AddedLightningDamageToSpellsAndAttacksUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (9-12) to (48-52) Lightning Damage to Spells and Attacks", statOrder = { 1293 }, level = 68, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "attack", "caster" }, }, - ["AddedLightningDamageToSpellsAndAttacksUber2"] = { type = "Prefix", affix = "The Shaper's", "Adds (13-16) to (56-60) Lightning Damage to Spells and Attacks", statOrder = { 1293 }, level = 75, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "attack", "caster" }, }, - ["IncreasedExperienceGainUber1"] = { type = "Prefix", affix = "The Shaper's", "(2-3)% increased Experience gain", statOrder = { 1485 }, level = 85, group = "ExperienceIncrease", weightKey = { "ring_shaper", "default", }, weightVal = { 50, 0 }, modTags = { "influence_mod" }, }, - ["LifeGainPerTargetUber1"] = { type = "Prefix", affix = "The Elder's", "Gain (10-15) Life per Enemy Hit with Attacks", statOrder = { 1621 }, level = 68, group = "LifeGainPerTarget", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life", "attack" }, }, - ["LifeGainPerTargetUber2"] = { type = "Prefix", affix = "The Elder's", "Gain (16-20) Life per Enemy Hit with Attacks", statOrder = { 1621 }, level = 75, group = "LifeGainPerTarget", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life", "attack" }, }, - ["ManaGainPerTargetUberShaper1"] = { type = "Prefix", affix = "The Shaper's", "Gain (2-3) Mana per Enemy Hit with Attacks", statOrder = { 1625 }, level = 68, group = "ManaGainPerTarget", weightKey = { "quiver_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana", "attack" }, }, - ["ManaGainPerTargetUberElder1"] = { type = "Prefix", affix = "The Elder's", "Gain (2-3) Mana per Enemy Hit with Attacks", statOrder = { 1625 }, level = 68, group = "ManaGainPerTarget", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana", "attack" }, }, - ["LifeGainedOnSpellHitUber1"] = { type = "Prefix", affix = "The Shaper's", "Gain (8-12) Life per Enemy Hit with Spells", statOrder = { 1620 }, level = 68, group = "LifeGainedOnSpellHit", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life", "caster" }, }, - ["LifeGainedOnSpellHitUber2"] = { type = "Prefix", affix = "The Shaper's", "Gain (13-15) Life per Enemy Hit with Spells", statOrder = { 1620 }, level = 75, group = "LifeGainedOnSpellHit", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life", "caster" }, }, - ["ManaGainedOnSpellHitUber1_"] = { type = "Prefix", affix = "The Shaper's", "Gain (2-3) Mana per Enemy Hit with Spells", statOrder = { 7752 }, level = 68, group = "ManaGainedOnSpellHit", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana", "caster" }, }, - ["IncreasedAccuracyPercentUber1_"] = { type = "Suffix", affix = "of the Elder", "(6-10)% increased Global Accuracy Rating", statOrder = { 1318 }, level = 68, group = "IncreasedAccuracyPercent", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attack" }, }, - ["IncreasedAccuracyPercentUber2"] = { type = "Suffix", affix = "of the Elder", "(11-15)% increased Global Accuracy Rating", statOrder = { 1318 }, level = 75, group = "IncreasedAccuracyPercent", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attack" }, }, - ["IncreasedAccuracyPercentUber3"] = { type = "Suffix", affix = "of the Elder", "(16-20)% increased Global Accuracy Rating", statOrder = { 1318 }, level = 82, group = "IncreasedAccuracyPercent", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attack" }, }, - ["CurseOnHitAssassinsMarkUber1"] = { type = "Suffix", affix = "of Shaping", "Trigger Level 8 Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 655 }, level = 75, group = "CurseOnHitCriticalWeakness", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, - ["CurseOnHitAssassinsMarkUber2"] = { type = "Suffix", affix = "of Shaping", "Trigger Level 12 Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 655 }, level = 80, group = "CurseOnHitCriticalWeakness", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, - ["CurseOnHitPoachersMarkUber1"] = { type = "Suffix", affix = "of the Elder", "Trigger Level 8 Poacher's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 656 }, level = 75, group = "CurseOnHitPoachersMark", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, - ["CurseOnHitPoachersMarkUber2"] = { type = "Suffix", affix = "of the Elder", "Trigger Level 12 Poacher's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 656 }, level = 80, group = "CurseOnHitPoachersMark", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, - ["CurseOnHitWarlordsMarkUber1_"] = { type = "Suffix", affix = "of the Elder", "Trigger Level 8 Warlords's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 658 }, level = 75, group = "CurseOnHitWarlordsMark", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, - ["CurseOnHitWarlordsMarkUber2"] = { type = "Suffix", affix = "of the Elder", "Trigger Level 12 Warlords's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 658 }, level = 80, group = "CurseOnHitWarlordsMark", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, - ["CurseOnHitAssassinsMarkNewUber1"] = { type = "Suffix", affix = "of Shaping", "Trigger Level 8 Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 694 }, level = 75, group = "TriggerOnRareAssassinsMark", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, - ["CurseOnHitAssassinsMarkNewUber2"] = { type = "Suffix", affix = "of Shaping", "Trigger Level 12 Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 694 }, level = 80, group = "TriggerOnRareAssassinsMark", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, - ["CurseOnHitPoachersMarkNewUber1__"] = { type = "Suffix", affix = "of the Elder", "Trigger Level 8 Poacher's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 699 }, level = 75, group = "TriggerOnRarePoachersMark", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, - ["CurseOnHitPoachersMarkNewUber2__"] = { type = "Suffix", affix = "of the Elder", "Trigger Level 12 Poacher's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 699 }, level = 80, group = "TriggerOnRarePoachersMark", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, - ["CurseOnHitWarlordsMarkNewUber1"] = { type = "Suffix", affix = "of the Elder", "Trigger Level 8 Warlord's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 701 }, level = 75, group = "TriggerOnRareWarlordsMark", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, - ["CurseOnHitWarlordsMarkNewUber2"] = { type = "Suffix", affix = "of the Elder", "Trigger Level 12 Warlord's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 701 }, level = 80, group = "TriggerOnRareWarlordsMark", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, - ["GrantsHeraldOfAshSkillUber1"] = { type = "Suffix", affix = "of the Elder", "Grants Level 22 Herald of Ash Skill", statOrder = { 607 }, level = 68, group = "HeraldOfAshSkill", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, }, - ["GrantsHeraldOfIceSkillUber1"] = { type = "Suffix", affix = "of Shaping", "Grants Level 22 Herald of Ice Skill", statOrder = { 608 }, level = 68, group = "HeraldOfIceSkill", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, }, - ["GrantsHeraldOfThunderSkillUber1"] = { type = "Suffix", affix = "of Shaping", "Grants Level 22 Herald of Thunder Skill", statOrder = { 610 }, level = 68, group = "HeraldOfThunderSkill", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, }, - ["AdditionalChanceToEvadeUber1__"] = { type = "Suffix", affix = "of the Elder", "+(2-3)% chance to Evade Attack Hits", statOrder = { 5383 }, level = 68, group = "AdditionalChanceToEvade", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "evasion" }, }, - ["AdditionalChanceToEvadeUber2"] = { type = "Suffix", affix = "of the Elder", "+(4-5)% chance to Evade Attack Hits", statOrder = { 5383 }, level = 75, group = "AdditionalChanceToEvade", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "evasion" }, }, - ["ChanceToIgniteAddedDamageUber1"] = { type = "Prefix", affix = "The Elder's", "Adds (19-26) to (38-46) Fire Damage against Ignited Enemies", statOrder = { 6532 }, level = 68, group = "ChanceToIgniteAddedDamage", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, }, - ["ChanceToIgniteAddedDamageUber2__"] = { type = "Prefix", affix = "The Elder's", "Adds (23-30) to (47-54) Fire Damage against Ignited Enemies", statOrder = { 6532 }, level = 75, group = "ChanceToIgniteAddedDamage", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, }, - ["ChanceToFreezeAddedDamageUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (17-23) to (35-41) Cold Damage against Chilled or Frozen Enemies", statOrder = { 6531 }, level = 68, group = "ChanceToFreezeAddedDamage", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "ailment" }, }, - ["ChanceToFreezeAddedDamageUber2"] = { type = "Prefix", affix = "The Shaper's", "Adds (20-26) to (41-48) Cold Damage against Chilled or Frozen Enemies", statOrder = { 6531 }, level = 75, group = "ChanceToFreezeAddedDamage", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "ailment" }, }, - ["ChanceToShockAddedDamageUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (3-7) to (68-73) Lightning Damage against Shocked Enemies", statOrder = { 6534 }, level = 68, group = "ChanceToShockAddedDamage", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "ailment" }, }, - ["ChanceToShockAddedDamageUber2"] = { type = "Prefix", affix = "The Shaper's", "Adds (4-8) to (82-86) Lightning Damage against Shocked Enemies", statOrder = { 6534 }, level = 75, group = "ChanceToShockAddedDamage", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "ailment" }, }, - ["PhysicalAttackDamageTakenUber1_"] = { type = "Suffix", affix = "of Shaping", "-(35-25) Physical Damage taken from Attack Hits", statOrder = { 2111 }, level = 68, group = "PhysicalAttackDamageTaken", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "physical", "attack" }, }, - ["PhysicalAttackDamageTakenUber2"] = { type = "Suffix", affix = "of Shaping", "-(45-36) Physical Damage taken from Attack Hits", statOrder = { 2111 }, level = 75, group = "PhysicalAttackDamageTaken", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "physical", "attack" }, }, - ["IncreasedCooldownRecoveryUber1"] = { type = "Suffix", affix = "of Shaping", "(10-15)% increased Cooldown Recovery Rate", statOrder = { 4822 }, level = 75, group = "GlobalCooldownRecovery", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, }, - ["IncreasedCooldownRecoveryUber2_"] = { type = "Suffix", affix = "of Shaping", "(16-20)% increased Cooldown Recovery Rate", statOrder = { 4822 }, level = 84, group = "GlobalCooldownRecovery", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, }, - ["MaximumLifeIncreasePercentBeltUber1"] = { type = "Prefix", affix = "The Elder's", "(4-7)% increased maximum Life", statOrder = { 1453 }, level = 68, group = "MaximumLifeIncreasePercent", weightKey = { "belt_elder", "default", }, weightVal = { 400, 0 }, modTags = { "resource", "influence_mod", "life" }, }, - ["MaximumLifeIncreasePercentBeltUber2"] = { type = "Prefix", affix = "The Elder's", "(8-10)% increased maximum Life", statOrder = { 1453 }, level = 75, group = "MaximumLifeIncreasePercent", weightKey = { "belt_elder", "default", }, weightVal = { 400, 0 }, modTags = { "resource", "influence_mod", "life" }, }, - ["GlobalEnergyShieldPercentBeltUber1"] = { type = "Prefix", affix = "The Shaper's", "(4-7)% increased maximum Energy Shield", statOrder = { 1443 }, level = 68, group = "GlobalEnergyShieldPercent", weightKey = { "belt_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, - ["GlobalEnergyShieldPercentBeltUber2"] = { type = "Prefix", affix = "The Shaper's", "(8-10)% increased maximum Energy Shield", statOrder = { 1443 }, level = 75, group = "GlobalEnergyShieldPercent", weightKey = { "belt_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, - ["FlaskEffectUber1"] = { type = "Prefix", affix = "The Elder's", "Flasks applied to you have (4-7)% increased Effect", statOrder = { 2617 }, level = 75, group = "FlaskEffect", weightKey = { "belt_elder", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "influence_mod" }, }, - ["FlaskEffectUber2"] = { type = "Prefix", affix = "The Elder's", "Flasks applied to you have (8-10)% increased Effect", statOrder = { 2617 }, level = 81, group = "FlaskEffect", weightKey = { "belt_elder", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "influence_mod" }, }, - ["AllResistancesBeltUber1"] = { type = "Suffix", affix = "of the Elder", "+(13-15)% to all Elemental Resistances", statOrder = { 1501 }, level = 68, group = "AllResistances", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "elemental", "resistance" }, }, - ["AllResistancesBeltUber2"] = { type = "Suffix", affix = "of the Elder", "+(16-18)% to all Elemental Resistances", statOrder = { 1501 }, level = 75, group = "AllResistances", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "elemental", "resistance" }, }, - ["ReducedCriticalStrikeDamageTakenUber1"] = { type = "Prefix", affix = "The Shaper's", "You take (15-20)% reduced Extra Damage from Critical Strikes", statOrder = { 1395 }, level = 68, group = "ReducedCriticalStrikeDamageTaken", weightKey = { "belt_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "critical" }, }, - ["ReducedCriticalStrikeDamageTakenUber2"] = { type = "Prefix", affix = "The Shaper's", "You take (21-30)% reduced Extra Damage from Critical Strikes", statOrder = { 1395 }, level = 75, group = "ReducedCriticalStrikeDamageTaken", weightKey = { "belt_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "critical" }, }, - ["LifeRecoveryRateUber1"] = { type = "Suffix", affix = "of the Elder", "(7-9)% increased Life Recovery rate", statOrder = { 1460 }, level = 68, group = "LifeRecoveryRate", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life" }, }, - ["LifeRecoveryRateUber2_"] = { type = "Suffix", affix = "of the Elder", "(10-12)% increased Life Recovery rate", statOrder = { 1460 }, level = 75, group = "LifeRecoveryRate", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life" }, }, - ["EnergyShieldRecoveryRateUber1"] = { type = "Suffix", affix = "of Shaping", "(7-9)% increased Energy Shield Recovery rate", statOrder = { 1450 }, level = 68, group = "EnergyShieldRecoveryRate", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, - ["EnergyShieldRecoveryRateUber2"] = { type = "Suffix", affix = "of Shaping", "(10-12)% increased Energy Shield Recovery rate", statOrder = { 1450 }, level = 75, group = "EnergyShieldRecoveryRate", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, - ["ManaRecoveryRateUber1_"] = { type = "Suffix", affix = "of Shaping", "(7-9)% increased Mana Recovery rate", statOrder = { 1468 }, level = 68, group = "ManaRecoveryRate", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, - ["ManaRecoveryRateUber2"] = { type = "Suffix", affix = "of Shaping", "(10-12)% increased Mana Recovery rate", statOrder = { 1468 }, level = 75, group = "ManaRecoveryRate", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, - ["FlaskChanceToNotConsumeChargesUber1_"] = { type = "Prefix", affix = "The Elder's", "(6-10)% chance for Flasks you use to not consume Charges", statOrder = { 4091 }, level = 82, group = "FlaskChanceToNotConsumeCharges", weightKey = { "belt_elder", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "influence_mod" }, }, - ["ChaosResistanceWhileUsingFlaskUber1"] = { type = "Suffix", affix = "of the Elder", "+(20-25)% to Chaos Resistance during any Flask Effect", statOrder = { 3167 }, level = 68, group = "ChaosResistanceWhileUsingFlask", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "influence_mod", "chaos", "resistance" }, }, - ["ChaosResistanceWhileUsingFlaskUber2_"] = { type = "Suffix", affix = "of the Elder", "+(26-30)% to Chaos Resistance during any Flask Effect", statOrder = { 3167 }, level = 75, group = "ChaosResistanceWhileUsingFlask", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "influence_mod", "chaos", "resistance" }, }, - ["MovementSpeedDuringFlaskEffectUber1"] = { type = "Suffix", affix = "of Shaping", "(6-10)% increased Movement Speed during any Flask Effect", statOrder = { 3052 }, level = 81, group = "MovementSpeedDuringFlaskEffect", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "influence_mod", "speed" }, }, - ["FortifyOnMeleeStunUber1"] = { type = "Prefix", affix = "The Elder's", "Melee Hits which Stun have (8-12)% chance to Fortify", statOrder = { 5388 }, level = 68, group = "FortifyOnMeleeStun", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, }, - ["GrantsEnduringCrySkillUber1"] = { type = "Prefix", affix = "The Elder's", "Grants Level 22 Enduring Cry Skill", statOrder = { 604 }, level = 68, group = "EnduringCrySkill", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, }, - ["GrantsRallyingCrySkillUber1"] = { type = "Prefix", affix = "The Elder's", "Grants Level 22 Rallying Cry Skill", statOrder = { 619 }, level = 68, group = "RallyingCrySkill", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, }, - ["GrantsAbyssalCrySkillUber1"] = { type = "Prefix", affix = "The Shaper's", "Grants Level 22 Intimidating Cry Skill", statOrder = { 588 }, level = 68, group = "AbyssalCrySkill", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, }, - ["RemoveIgniteOnFlaskUseUber1"] = { type = "Suffix", affix = "of the Elder", "Remove Ignite and Burning when you use a Flask", statOrder = { 9401 }, level = 75, group = "RemoveIgniteOnFlaskUse", weightKey = { "belt_elder", "default", }, weightVal = { 400, 0 }, modTags = { "flask", "influence_mod", "elemental", "fire", "ailment" }, }, - ["RemoveFreezeOnFlaskUseUber1_"] = { type = "Suffix", affix = "of Shaping", "Remove Chill and Freeze when you use a Flask", statOrder = { 9397 }, level = 75, group = "RemoveFreezeOnFlaskUse", weightKey = { "belt_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "flask", "influence_mod", "elemental", "cold", "ailment" }, }, - ["RemoveShockOnFlaskUseUber1_"] = { type = "Suffix", affix = "of Shaping", "Remove Shock when you use a Flask", statOrder = { 9409 }, level = 75, group = "RemoveShockOnFlaskUse", weightKey = { "belt_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "flask", "influence_mod", "elemental", "lightning", "ailment" }, }, - ["AttackSpeedDuringFlaskEffectUber1"] = { type = "Suffix", affix = "of the Elder", "(8-14)% increased Attack Speed during any Flask Effect", statOrder = { 3166 }, level = 68, group = "AttackSpeedDuringFlaskEffect", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "influence_mod", "attack", "speed" }, }, - ["CastSpeedDuringFlaskEffectUber1"] = { type = "Suffix", affix = "of Shaping", "(8-14)% increased Cast Speed during any Flask Effect", statOrder = { 5170 }, level = 68, group = "CastSpeedDuringFlaskEffect", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "influence_mod", "caster", "speed" }, }, - ["MeleeDamageDuringFlaskEffectUber1"] = { type = "Suffix", affix = "of the Elder", "(20-25)% increased Melee Damage during any Flask Effect", statOrder = { 8733 }, level = 68, group = "MeleeDamageDuringFlaskEffect", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, }, - ["MeleeDamageDuringFlaskEffectUber2_"] = { type = "Suffix", affix = "of the Elder", "(26-30)% increased Melee Damage during any Flask Effect", statOrder = { 8733 }, level = 75, group = "MeleeDamageDuringFlaskEffect", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, }, - ["MeleeDamageDuringFlaskEffectUber3"] = { type = "Suffix", affix = "of the Elder", "(31-35)% increased Melee Damage during any Flask Effect", statOrder = { 8733 }, level = 80, group = "MeleeDamageDuringFlaskEffect", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, }, - ["ProjectileAttackDamageDuringFlaskEffectUber1_"] = { type = "Suffix", affix = "of the Elder", "(20-25)% increased Projectile Attack Damage during any Flask Effect", statOrder = { 9231 }, level = 68, group = "ProjectileAttackDamageDuringFlaskEffect", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, }, - ["ProjectileAttackDamageDuringFlaskEffectUber2_"] = { type = "Suffix", affix = "of the Elder", "(26-30)% increased Projectile Attack Damage during any Flask Effect", statOrder = { 9231 }, level = 75, group = "ProjectileAttackDamageDuringFlaskEffect", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, }, - ["ProjectileAttackDamageDuringFlaskEffectUber3"] = { type = "Suffix", affix = "of the Elder", "(31-35)% increased Projectile Attack Damage during any Flask Effect", statOrder = { 9231 }, level = 80, group = "ProjectileAttackDamageDuringFlaskEffect", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, }, - ["SpellDamageDuringFlaskEffectUber1"] = { type = "Suffix", affix = "of Shaping", "(20-25)% increased Spell Damage during any Flask Effect", statOrder = { 9631 }, level = 68, group = "SpellDamageDuringFlaskEffect", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "caster_damage", "influence_mod", "damage", "caster" }, }, - ["SpellDamageDuringFlaskEffectUber2"] = { type = "Suffix", affix = "of Shaping", "(26-30)% increased Spell Damage during any Flask Effect", statOrder = { 9631 }, level = 75, group = "SpellDamageDuringFlaskEffect", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "caster_damage", "influence_mod", "damage", "caster" }, }, - ["SpellDamageDuringFlaskEffectUber3_"] = { type = "Suffix", affix = "of Shaping", "(31-35)% increased Spell Damage during any Flask Effect", statOrder = { 9631 }, level = 80, group = "SpellDamageDuringFlaskEffect", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "caster_damage", "influence_mod", "damage", "caster" }, }, - ["PhysicalDamageBeltUber1"] = { type = "Prefix", affix = "The Elder's", "(16-20)% increased Global Physical Damage", statOrder = { 1116 }, level = 68, group = "PhysicalDamagePercentPrefix", weightKey = { "belt_elder", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, }, - ["PhysicalDamageBeltUber2"] = { type = "Prefix", affix = "The Elder's", "(21-25)% increased Global Physical Damage", statOrder = { 1116 }, level = 75, group = "PhysicalDamagePercentPrefix", weightKey = { "belt_elder", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, }, - ["PhysicalDamageBeltUber3___"] = { type = "Prefix", affix = "The Elder's", "(26-30)% increased Global Physical Damage", statOrder = { 1116 }, level = 80, group = "PhysicalDamagePercentPrefix", weightKey = { "belt_elder", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, }, - ["ElementalDamageBeltUber1"] = { type = "Prefix", affix = "The Shaper's", "(11-15)% increased Elemental Damage", statOrder = { 1857 }, level = 68, group = "ElementalDamagePercent", weightKey = { "belt_shaper", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, }, - ["ElementalDamageBeltUber2"] = { type = "Prefix", affix = "The Shaper's", "(16-20)% increased Elemental Damage", statOrder = { 1857 }, level = 75, group = "ElementalDamagePercent", weightKey = { "belt_shaper", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, }, - ["ElementalDamageBeltUber3"] = { type = "Prefix", affix = "The Shaper's", "(21-25)% increased Elemental Damage", statOrder = { 1857 }, level = 80, group = "ElementalDamagePercent", weightKey = { "belt_shaper", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, }, - ["ArmourDoubleArmourEffectUber1"] = { type = "Prefix", affix = "The Elder's", "(11-20)% chance to Defend with 200% of Armour", statOrder = { 5381 }, level = 75, group = "ChanceWhenHitForArmourToBeDoubled", weightKey = { "belt_elder", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "defences", "armour" }, }, - ["ArmourDoubleArmourEffectUber2"] = { type = "Prefix", affix = "The Elder's", "(21-30)% chance to Defend with 200% of Armour", statOrder = { 5381 }, level = 80, group = "ChanceWhenHitForArmourToBeDoubled", weightKey = { "belt_elder", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "defences", "armour" }, }, - ["IncreasedEnergyShieldFromBodyArmourUber1_"] = { type = "Prefix", affix = "The Shaper's", "(21-25)% increased Energy Shield from Equipped Body Armour", statOrder = { 8685 }, level = 75, group = "MaximumEnergyShieldFromBodyArmour", weightKey = { "belt_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, - ["IncreasedEnergyShieldFromBodyArmourUber2"] = { type = "Prefix", affix = "The Shaper's", "(26-30)% increased Energy Shield from Equipped Body Armour", statOrder = { 8685 }, level = 80, group = "MaximumEnergyShieldFromBodyArmour", weightKey = { "belt_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, - ["AdditionalArrowUber1__"] = { type = "Prefix", affix = "The Shaper's", "Bow Attacks fire an additional Arrow", statOrder = { 1675 }, level = 80, group = "AdditionalArrows", weightKey = { "quiver_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack" }, }, - ["PoisonOnHitQuiverUber1_"] = { type = "Suffix", affix = "of the Elder", "15% chance to Poison on Hit", "(15-25)% increased Damage with Poison", statOrder = { 3039, 3047 }, level = 68, group = "PoisonOnHitAndDamage", weightKey = { "quiver_elder", "default", }, weightVal = { 800, 0 }, modTags = { "chaos_damage", "poison", "influence_mod", "damage", "chaos", "ailment" }, }, - ["PoisonOnHitQuiverUber2"] = { type = "Suffix", affix = "of the Elder", "20% chance to Poison on Hit", "(26-30)% increased Damage with Poison", statOrder = { 3039, 3047 }, level = 75, group = "PoisonOnHitAndDamage", weightKey = { "quiver_elder", "default", }, weightVal = { 800, 0 }, modTags = { "chaos_damage", "poison", "influence_mod", "damage", "chaos", "ailment" }, }, - ["BleedOnHitQuiverUber1"] = { type = "Suffix", affix = "of the Elder", "Attacks have 10% chance to cause Bleeding", "(15-25)% increased Damage with Bleeding", statOrder = { 2365, 3035 }, level = 68, group = "BleedOnHitAndDamage", weightKey = { "quiver_elder", "default", }, weightVal = { 800, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment" }, }, - ["BleedOnHitQuiverUber2_"] = { type = "Suffix", affix = "of the Elder", "Attacks have 15% chance to cause Bleeding", "(26-30)% increased Damage with Bleeding", statOrder = { 2365, 3035 }, level = 75, group = "BleedOnHitAndDamage", weightKey = { "quiver_elder", "default", }, weightVal = { 800, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment" }, }, - ["MaimOnHitQuiverUber1"] = { type = "Suffix", affix = "of Shaping", "Attacks have 15% chance to Maim on Hit", statOrder = { 7728 }, level = 68, group = "GlobalMaimOnHit", weightKey = { "quiver_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attack" }, }, - ["MaimOnHitQuiverUber2"] = { type = "Suffix", affix = "of Shaping", "Attacks have 20% chance to Maim on Hit", statOrder = { 7728 }, level = 75, group = "GlobalMaimOnHit", weightKey = { "quiver_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attack" }, }, - ["ChancetoGainPhasingOnKillUber1"] = { type = "Suffix", affix = "of the Elder", "(5-6)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3328 }, level = 68, group = "ChancetoGainPhasingOnKill", weightKey = { "quiver_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, }, - ["ChancetoGainPhasingOnKillUber2_"] = { type = "Suffix", affix = "of the Elder", "(7-8)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3328 }, level = 75, group = "ChancetoGainPhasingOnKill", weightKey = { "quiver_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, }, - ["ChancetoGainPhasingOnKillUber3_"] = { type = "Suffix", affix = "of the Elder", "(9-10)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3328 }, level = 80, group = "ChancetoGainPhasingOnKill", weightKey = { "quiver_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, }, - ["AddedColdDamagePerFrenzyChargeUber1"] = { type = "Prefix", affix = "The Elder's", "8 to 12 Added Cold Damage per Frenzy Charge", statOrder = { 4134 }, level = 80, group = "AddedColdDamagePerFrenzyCharge", weightKey = { "quiver_elder", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, }, - ["PhysicalAddedAsColdQuiverUber1"] = { type = "Prefix", affix = "The Shaper's", "Gain (5-10)% of Physical Damage as Extra Cold Damage", statOrder = { 1812 }, level = 68, group = "PhysicalAddedAsCold", weightKey = { "quiver_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, }, - ["PhysicalAddedAsColdQuiverUber2"] = { type = "Prefix", affix = "The Shaper's", "Gain (11-15)% of Physical Damage as Extra Cold Damage", statOrder = { 1812 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "quiver_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, }, - ["MovementVelocityQuiverUber1"] = { type = "Prefix", affix = "The Shaper's", "(3-6)% increased Movement Speed", statOrder = { 1679 }, level = 75, group = "MovementVelocity", weightKey = { "quiver_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "speed" }, }, - ["MovementVelocityQuiverUber2"] = { type = "Prefix", affix = "The Shaper's", "(7-10)% increased Movement Speed", statOrder = { 1679 }, level = 80, group = "MovementVelocity", weightKey = { "quiver_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "speed" }, }, - ["FrenzyChargeOnHittingRareOrUniqueUber1"] = { type = "Suffix", affix = "of the Elder", "(3-5)% chance to gain a Frenzy Charge when you Hit a Rare or Unique Enemy", statOrder = { 6425 }, level = 75, group = "FrenzyChargeOnHittingRareOrUnique", weightKey = { "quiver_elder", "default", }, weightVal = { 400, 0 }, modTags = { "frenzy_charge", "influence_mod" }, }, - ["MaximumFireResistanceUber1"] = { type = "Prefix", affix = "The Elder's", "+1% to maximum Fire Resistance", statOrder = { 1505 }, level = 75, group = "MaximumFireResist", weightKey = { "shield_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "resistance" }, }, - ["MaximumFireResistanceUber2"] = { type = "Prefix", affix = "The Elder's", "+2% to maximum Fire Resistance", statOrder = { 1505 }, level = 80, group = "MaximumFireResist", weightKey = { "shield_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "resistance" }, }, - ["MaximumFireResistanceUber3_"] = { type = "Prefix", affix = "The Elder's", "+3% to maximum Fire Resistance", statOrder = { 1505 }, level = 86, group = "MaximumFireResist", weightKey = { "shield_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "resistance" }, }, - ["MaximumColdResistanceUber1"] = { type = "Prefix", affix = "The Shaper's", "+1% to maximum Cold Resistance", statOrder = { 1511 }, level = 75, group = "MaximumColdResist", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "resistance" }, }, - ["MaximumColdResistanceUber2"] = { type = "Prefix", affix = "The Shaper's", "+2% to maximum Cold Resistance", statOrder = { 1511 }, level = 80, group = "MaximumColdResist", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "resistance" }, }, - ["MaximumColdResistanceUber3"] = { type = "Prefix", affix = "The Shaper's", "+3% to maximum Cold Resistance", statOrder = { 1511 }, level = 86, group = "MaximumColdResist", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "resistance" }, }, - ["MaximumLightningResistanceUber1"] = { type = "Prefix", affix = "The Shaper's", "+1% to maximum Lightning Resistance", statOrder = { 1516 }, level = 75, group = "MaximumLightningResistance", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "resistance" }, }, - ["MaximumLightningResistanceUber2"] = { type = "Prefix", affix = "The Shaper's", "+2% to maximum Lightning Resistance", statOrder = { 1516 }, level = 80, group = "MaximumLightningResistance", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "resistance" }, }, - ["MaximumLightningResistanceUber3"] = { type = "Prefix", affix = "The Shaper's", "+3% to maximum Lightning Resistance", statOrder = { 1516 }, level = 86, group = "MaximumLightningResistance", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "resistance" }, }, - ["MaximumAllResistanceUber1"] = { type = "Prefix", affix = "The Shaper's", "+1% to all maximum Resistances", statOrder = { 1523 }, level = 80, group = "MaximumResistances", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "resistance" }, }, - ["MaximumAllResistanceUber2__"] = { type = "Prefix", affix = "The Shaper's", "+2% to all maximum Resistances", statOrder = { 1523 }, level = 85, group = "MaximumResistances", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "resistance" }, }, - ["SupportedByCastOnDamageTakenUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 5 Cast when Damage Taken", statOrder = { 214 }, level = 68, group = "SupportedByCastOnDamageTaken", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, }, - ["MaximumLifeIncreasePercentShieldUber1"] = { type = "Prefix", affix = "The Elder's", "(3-6)% increased maximum Life", statOrder = { 1453 }, level = 68, group = "MaximumLifeIncreasePercent", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life" }, }, - ["MaximumLifeIncreasePercentShieldUber2"] = { type = "Prefix", affix = "The Elder's", "(7-10)% increased maximum Life", statOrder = { 1453 }, level = 84, group = "MaximumLifeIncreasePercent", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life" }, }, - ["DisplaySocketedGemsGetReducedReservationUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems have 20% increased Reservation Efficiency", statOrder = { 447 }, level = 68, group = "DisplaySocketedGemsGetReducedReservation", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod", "gem" }, }, - ["DisplaySocketedGemsGetReducedReservationUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems have 30% increased Reservation Efficiency", statOrder = { 447 }, level = 80, group = "DisplaySocketedGemsGetReducedReservation", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod", "gem" }, }, - ["BlockAppliesToSpellsShieldUber1_"] = { type = "Suffix", affix = "of Shaping", "(9-12)% Chance to Block Spell Damage", statOrder = { 1041 }, level = 68, group = "BlockingBlocksSpells", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "block", "influence_mod" }, }, - ["BlockAppliesToSpellsShieldUber2_"] = { type = "Suffix", affix = "of Shaping", "(12-15)% Chance to Block Spell Damage", statOrder = { 1041 }, level = 75, group = "BlockingBlocksSpells", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "block", "influence_mod" }, }, - ["SpellBlockOnShieldUber1"] = { type = "Suffix", affix = "of Shaping", "(7-9)% Chance to Block Spell Damage", statOrder = { 1046 }, level = 68, group = "SpellBlockPercentage", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "block", "influence_mod" }, }, - ["SpellBlockOnShieldUber2_"] = { type = "Suffix", affix = "of Shaping", "(10-12)% Chance to Block Spell Damage", statOrder = { 1046 }, level = 75, group = "SpellBlockPercentage", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "block", "influence_mod" }, }, - ["GainArmourIfBlockedRecentlyUber1"] = { type = "Prefix", affix = "The Elder's", "+(500-650) Armour if you've Blocked Recently", statOrder = { 4359 }, level = 68, group = "GainArmourIfBlockedRecently", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "defences", "armour" }, }, - ["GainArmourIfBlockedRecentlyUber2"] = { type = "Prefix", affix = "The Elder's", "+(651-800) Armour if you've Blocked Recently", statOrder = { 4359 }, level = 75, group = "GainArmourIfBlockedRecently", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "defences", "armour" }, }, - ["AdditionalBlockWith5NearbyEnemiesUber1"] = { type = "Suffix", affix = "of the Elder", "+(2-3)% Chance to Block Attack Damage if there are at least 5 nearby Enemies", statOrder = { 4401 }, level = 68, group = "AdditionalBlockWith5NearbyEnemies", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod" }, }, - ["AdditionalBlockWith5NearbyEnemiesUber2"] = { type = "Suffix", affix = "of the Elder", "+(4-5)% Chance to Block Attack Damage if there are at least 5 nearby Enemies", statOrder = { 4401 }, level = 75, group = "AdditionalBlockWith5NearbyEnemies", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod" }, }, - ["GainRandomChargeOnBlockUber1__"] = { type = "Suffix", affix = "of Shaping", "Gain an Endurance, Frenzy or Power charge when you Block", statOrder = { 6476 }, level = 68, group = "GainRandomChargeOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "block", "endurance_charge", "frenzy_charge", "power_charge", "influence_mod" }, }, - ["ChanceToDodgeIfBlockedRecentlyUber1"] = { type = "Suffix", affix = "of Shaping", "+(4-7)% chance to Suppress Spell Damage", statOrder = { 1031 }, level = 68, group = "ChanceToSuppressSpellsOld", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, - ["DamagePerBlockChanceUber1_"] = { type = "Prefix", affix = "The Elder's", "1% increased Damage per 1% Chance to Block Attack Damage", statOrder = { 5759 }, level = 68, group = "DamagePerBlockChance", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "damage" }, }, - ["ChanceToChillAttackersOnBlockUber1"] = { type = "Suffix", affix = "of Shaping", "(25-40)% chance to Chill Attackers for 4 seconds on Block", statOrder = { 5473 }, level = 68, group = "ChanceToChillAttackersOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "block", "red_herring", "influence_mod", "elemental", "cold", "ailment" }, }, - ["ChanceToChillAttackersOnBlockUber2"] = { type = "Suffix", affix = "of Shaping", "(41-50)% chance to Chill Attackers for 4 seconds on Block", statOrder = { 5473 }, level = 75, group = "ChanceToChillAttackersOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "block", "red_herring", "influence_mod", "elemental", "cold", "ailment" }, }, - ["ChanceToShockAttackersOnBlockUber1"] = { type = "Suffix", affix = "of Shaping", "(25-40)% chance to Shock Attackers for 4 seconds on Block", statOrder = { 9493 }, level = 68, group = "ChanceToShockAttackersOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod", "elemental", "lightning", "ailment" }, }, - ["ChanceToShockAttackersOnBlockUber2"] = { type = "Suffix", affix = "of Shaping", "(41-50)% chance to Shock Attackers for 4 seconds on Block", statOrder = { 9493 }, level = 75, group = "ChanceToShockAttackersOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod", "elemental", "lightning", "ailment" }, }, - ["RecoverLifePercentOnBlockUber1_"] = { type = "Suffix", affix = "of Shaping", "Recover (3-5)% of Life when you Block", statOrder = { 2929 }, level = 68, group = "RecoverLifePercentOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "block", "resource", "influence_mod", "life" }, }, - ["RecoverManaPercentOnBlockUber1"] = { type = "Suffix", affix = "of Shaping", "Recover (3-5)% of your maximum Mana when you Block", statOrder = { 7758 }, level = 68, group = "RecoverManaPercentOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "block", "resource", "influence_mod", "mana" }, }, - ["RecoverEnergyShieldPercentOnBlockUber1"] = { type = "Suffix", affix = "of Shaping", "Recover (3-5)% of Energy Shield when you Block", statOrder = { 2343 }, level = 68, group = "RecoverEnergyShieldPercentOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod", "defences", "energy_shield" }, }, - ["MaximumTotemUber1"] = { type = "Prefix", affix = "The Shaper's", "+1 to maximum number of Summoned Totems", statOrder = { 2131 }, level = 70, group = "AdditionalTotems", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, }, - ["SupportedByEnduranceChargeOnStunWeaponUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 10 Endurance Charge on Melee Stun", statOrder = { 445 }, level = 68, group = "SupportedByEnduranceChargeOnStunWeapon", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 0, 400, 400, 400, 400, 400, 0 }, modTags = { "support", "influence_mod", "gem" }, }, - ["SupportedByOnslaughtWeaponUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 10 Momentum", statOrder = { 282 }, level = 68, group = "SupportedByOnslaughtWeapon", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "bow_elder", "default", }, weightVal = { 0, 400, 400, 400, 0 }, modTags = { "support", "influence_mod", "gem" }, }, - ["SupportedByPowerChargeOnCritWeaponUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 10 Power Charge On Critical Strike", statOrder = { 291 }, level = 68, group = "SupportedByPowerChargeOnCritWeapon", weightKey = { "grants_2h_support", "staff_elder", "warstaff_elder", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "support", "influence_mod", "gem" }, }, - ["SupportedByFortifyWeaponUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 1 Fortify", statOrder = { 416 }, level = 68, group = "SupportedByFortifyWeapon", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 0, 400, 400, 400, 400, 400, 0 }, modTags = { "support", "influence_mod", "gem" }, }, - ["SupportedByArcaneSurgeWeaponUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 1 Arcane Surge", statOrder = { 203 }, level = 68, group = "SupportedByArcaneSurgeWeapon", weightKey = { "grants_2h_support", "staff_shaper", "default", }, weightVal = { 0, 400, 0 }, modTags = { "support", "influence_mod", "gem" }, }, - ["SupportedByInspirationWeaponUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 1 Inspiration", statOrder = { 414 }, level = 68, group = "SupportedByInspirationWeapon", weightKey = { "grants_2h_support", "staff_elder", "warstaff_elder", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "support", "influence_mod", "gem" }, }, - ["LocalIncreasedPhysicalDamagePercentMeleePhysicalUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Melee Physical Damage", "(101-115)% increased Physical Damage", statOrder = { 388, 1117 }, level = 68, group = "LocalPhysicalDamagePercentMeleePhysicalDamage", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, - ["LocalIncreasedPhysicalDamagePercentMeleePhysicalUber2"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Melee Physical Damage", "(116-126)% increased Physical Damage", statOrder = { 388, 1117 }, level = 75, group = "LocalPhysicalDamagePercentMeleePhysicalDamage", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, - ["LocalIncreasedPhysicalDamagePercentMeleePhysicalUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Melee Physical Damage", "(127-134)% increased Physical Damage", statOrder = { 388, 1117 }, level = 80, group = "LocalPhysicalDamagePercentMeleePhysicalDamage", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 100, 100, 100, 100, 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, - ["LocalIncreasedPhysicalDamagePercentBrutalityUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Brutality", "(101-115)% increased Physical Damage", statOrder = { 212, 1117 }, level = 68, group = "LocalPhysicalDamagePercentBrutality", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, - ["LocalIncreasedPhysicalDamagePercentBrutalityUber2_"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Brutality", "(116-126)% increased Physical Damage", statOrder = { 212, 1117 }, level = 75, group = "LocalPhysicalDamagePercentBrutality", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, - ["LocalIncreasedPhysicalDamagePercentBrutalityUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Brutality", "(127-134)% increased Physical Damage", statOrder = { 212, 1117 }, level = 80, group = "LocalPhysicalDamagePercentBrutality", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 100, 100, 100, 100, 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, - ["LocalIncreasedPhysicalDamagePercentAddedFireUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Added Fire Damage", "(101-115)% increased Physical Damage", statOrder = { 382, 1117 }, level = 68, group = "LocalPhysicalDamagePercentAddedFireDamage", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire", "attack", "gem" }, }, - ["LocalIncreasedPhysicalDamagePercentAddedFireUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Added Fire Damage", "(116-126)% increased Physical Damage", statOrder = { 382, 1117 }, level = 75, group = "LocalPhysicalDamagePercentAddedFireDamage", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire", "attack", "gem" }, }, - ["LocalIncreasedPhysicalDamagePercentAddedFireUber3_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Added Fire Damage", "(127-134)% increased Physical Damage", statOrder = { 382, 1117 }, level = 80, group = "LocalPhysicalDamagePercentAddedFireDamage", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 100, 100, 100, 100, 100, 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire", "attack", "gem" }, }, - ["LocalIncreasedPhysicalDamagePercentRuthlessUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Ruthless", "(101-115)% increased Physical Damage", statOrder = { 303, 1117 }, level = 68, group = "LocalPhysicalDamagePercentRuthless", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, - ["LocalIncreasedPhysicalDamagePercentRuthlessUber2__"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Ruthless", "(116-126)% increased Physical Damage", statOrder = { 303, 1117 }, level = 75, group = "LocalPhysicalDamagePercentRuthless", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, - ["LocalIncreasedPhysicalDamagePercentRuthlessUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Ruthless", "(127-134)% increased Physical Damage", statOrder = { 303, 1117 }, level = 80, group = "LocalPhysicalDamagePercentRuthless", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 100, 100, 100, 100, 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, - ["LocalIncreasedPhysicalDamagePercentOnslaughtUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Momentum", "(101-115)% increased Physical Damage", statOrder = { 282, 1117 }, level = 68, group = "LocalPhysicalDamagePercentOnslaught", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, - ["LocalIncreasedPhysicalDamagePercentOnslaughtUber2"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Momentum", "(116-126)% increased Physical Damage", statOrder = { 282, 1117 }, level = 75, group = "LocalPhysicalDamagePercentOnslaught", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, - ["LocalIncreasedPhysicalDamagePercentOnslaughtUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Momentum", "(127-134)% increased Physical Damage", statOrder = { 282, 1117 }, level = 80, group = "LocalPhysicalDamagePercentOnslaught", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, - ["LocalIncreasedPhysicalDamagePercentEnduranceChargeOnStunUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Endurance Charge on Melee Stun", "(101-115)% increased Physical Damage", statOrder = { 445, 1117 }, level = 68, group = "LocalPhysicalDamagePercentEnduranceChargeOnStun", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, - ["LocalIncreasedPhysicalDamagePercentEnduranceChargeOnStunUber2"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Endurance Charge on Melee Stun", "(116-126)% increased Physical Damage", statOrder = { 445, 1117 }, level = 75, group = "LocalPhysicalDamagePercentEnduranceChargeOnStun", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, - ["LocalIncreasedPhysicalDamagePercentEnduranceChargeOnStunUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Endurance Charge on Melee Stun", "(127-134)% increased Physical Damage", statOrder = { 445, 1117 }, level = 80, group = "LocalPhysicalDamagePercentEnduranceChargeOnStun", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, - ["LocalIncreasedPhysicalDamagePercentFortifyUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Fortify", "(101-115)% increased Physical Damage", statOrder = { 416, 1117 }, level = 68, group = "LocalPhysicalDamagePercentFortify", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, - ["LocalIncreasedPhysicalDamagePercentFortifyUber2_"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Fortify", "(116-126)% increased Physical Damage", statOrder = { 416, 1117 }, level = 75, group = "LocalPhysicalDamagePercentFortify", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, - ["LocalIncreasedPhysicalDamagePercentFortifyUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Fortify", "(127-134)% increased Physical Damage", statOrder = { 416, 1117 }, level = 80, group = "LocalPhysicalDamagePercentFortify", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, - ["LocalIncreasedPhysicalDamagePercentPowerChargeOnCritUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Power Charge On Critical Strike", "(101-115)% increased Physical Damage", statOrder = { 291, 1117 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentPowerChargeOnCrit", weightKey = { "grants_2h_support", "staff_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, - ["LocalIncreasedPhysicalDamagePercentPowerChargeOnCritUber2"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Power Charge On Critical Strike", "(116-126)% increased Physical Damage", statOrder = { 291, 1117 }, level = 75, group = "LocalIncreasedPhysicalDamagePercentPowerChargeOnCrit", weightKey = { "grants_2h_support", "staff_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, - ["LocalIncreasedPhysicalDamagePercentPowerChargeOnCritUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Power Charge On Critical Strike", "(127-134)% increased Physical Damage", statOrder = { 291, 1117 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentPowerChargeOnCrit", weightKey = { "grants_2h_support", "staff_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, - ["LocalIncreasedPhysicalDamagePercentIronGripUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Iron Grip", "(101-115)% increased Physical Damage", statOrder = { 265, 1117 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentIronGrip", weightKey = { "grants_2h_support", "bow_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, - ["LocalIncreasedPhysicalDamagePercentIronGripUber2_"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Iron Grip", "(116-126)% increased Physical Damage", statOrder = { 265, 1117 }, level = 75, group = "LocalIncreasedPhysicalDamagePercentIronGrip", weightKey = { "grants_2h_support", "bow_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, - ["LocalIncreasedPhysicalDamagePercentIronGripUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Iron Grip", "(127-134)% increased Physical Damage", statOrder = { 265, 1117 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentIronGrip", weightKey = { "grants_2h_support", "bow_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, - ["LocalIncreasedPhysicalDamagePercentFasterProjectilesUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are supported by Level 16 Faster Projectiles", "(101-115)% increased Physical Damage", statOrder = { 402, 1117 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentFasterProjectiles", weightKey = { "grants_2h_support", "bow_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, - ["LocalIncreasedPhysicalDamagePercentFasterProjectilesUber2_"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are supported by Level 18 Faster Projectiles", "(116-126)% increased Physical Damage", statOrder = { 402, 1117 }, level = 75, group = "LocalIncreasedPhysicalDamagePercentFasterProjectiles", weightKey = { "grants_2h_support", "bow_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, - ["LocalIncreasedPhysicalDamagePercentFasterProjectilesUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are supported by Level 20 Faster Projectiles", "(127-134)% increased Physical Damage", statOrder = { 402, 1117 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentFasterProjectiles", weightKey = { "grants_2h_support", "bow_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, - ["LocalIncreasedPhysicalDamagePercentProjectileAttackDamageUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Vicious Projectiles", "(101-115)% increased Physical Damage", statOrder = { 286, 1117 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentProjectileAttackDamage", weightKey = { "grants_2h_support", "bow_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, - ["LocalIncreasedPhysicalDamagePercentProjectileAttackDamageUber2"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Vicious Projectiles", "(116-126)% increased Physical Damage", statOrder = { 286, 1117 }, level = 75, group = "LocalIncreasedPhysicalDamagePercentProjectileAttackDamage", weightKey = { "grants_2h_support", "bow_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, - ["LocalIncreasedPhysicalDamagePercentProjectileAttackDamageUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Vicious Projectiles", "(127-134)% increased Physical Damage", statOrder = { 286, 1117 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentProjectileAttackDamage", weightKey = { "grants_2h_support", "bow_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, - ["SupportedByMeleeSplashDamageUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are supported by Level 16 Melee Splash", "(23-27)% increased Area Damage", statOrder = { 391, 1912 }, level = 68, group = "SupportedByMeleeSplashDamage", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "gem" }, }, - ["SupportedByMeleeSplashDamageUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are supported by Level 18 Melee Splash", "(28-32)% increased Area Damage", statOrder = { 391, 1912 }, level = 75, group = "SupportedByMeleeSplashDamage", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "gem" }, }, - ["SupportedByMeleeSplashDamageUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are supported by Level 20 Melee Splash", "(33-37)% increased Area Damage", statOrder = { 391, 1912 }, level = 80, group = "SupportedByMeleeSplashDamage", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "gem" }, }, - ["SupportedBySpiritStrikeAreaUber1_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Ancestral Call", "(5-8)% increased Area of Effect", statOrder = { 314, 1761 }, level = 68, group = "SupportedBySpiritStrikeArea", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "gem" }, }, - ["SupportedBySpiritStrikeAreaUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Ancestral Call", "(9-12)% increased Area of Effect", statOrder = { 314, 1761 }, level = 75, group = "SupportedBySpiritStrikeArea", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "gem" }, }, - ["SupportedBySpiritStrikeAreaUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Ancestral Call", "(13-15)% increased Area of Effect", statOrder = { 314, 1761 }, level = 80, group = "SupportedBySpiritStrikeArea", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "gem" }, }, - ["LocalIncreasedAttackSpeedMultistrikeUber1_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are supported by Level 18 Multistrike", "(17-19)% increased Attack Speed", statOrder = { 401, 1297 }, level = 68, group = "LocalIncreasedAttackSpeedMultistrike", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, }, - ["LocalIncreasedAttackSpeedMultistrikeUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are supported by Level 20 Multistrike", "(20-21)% increased Attack Speed", statOrder = { 401, 1297 }, level = 75, group = "LocalIncreasedAttackSpeedMultistrike", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, }, - ["LocalIncreasedAttackSpeedFasterAttacksUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Faster Attacks", "(17-19)% increased Attack Speed", statOrder = { 389, 1297 }, level = 68, group = "LocalIncreasedAttackSpeedFasterAttacks", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, }, - ["LocalIncreasedAttackSpeedFasterAttacksUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Faster Attacks", "(20-21)% increased Attack Speed", statOrder = { 389, 1297 }, level = 75, group = "LocalIncreasedAttackSpeedFasterAttacks", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, }, - ["LocalIncreasedAttackSpeedRangedOnslaughtUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Momentum", "(8-10)% increased Attack Speed", statOrder = { 282, 1297 }, level = 68, group = "LocalIncreasedAttackSpeedOnslaught", weightKey = { "wand_elder", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, }, - ["LocalIncreasedAttackSpeedRangedOnslaughtUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Momentum", "(11-12)% increased Attack Speed", statOrder = { 282, 1297 }, level = 75, group = "LocalIncreasedAttackSpeedOnslaught", weightKey = { "wand_elder", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, }, - ["LocalIncreasedAttackSpeedRangedFasterAttacksUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Faster Attacks", "(8-10)% increased Attack Speed", statOrder = { 389, 1297 }, level = 68, group = "LocalIncreasedAttackSpeedFasterAttacks", weightKey = { "wand_shaper", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, }, - ["LocalIncreasedAttackSpeedRangedFasterAttacksUber2_"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Faster Attacks", "(11-12)% increased Attack Speed", statOrder = { 389, 1297 }, level = 75, group = "LocalIncreasedAttackSpeedFasterAttacks", weightKey = { "wand_shaper", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, }, - ["LocalIncreasedAttackSpeedTwoHandedDoubleDamageUber1"] = { type = "Suffix", affix = "of Shaping", "(17-19)% increased Attack Speed", "(4-6)% chance to deal Double Damage", statOrder = { 1297, 5369 }, level = 68, group = "AttackSpeedDoubleDamage", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "damage", "attack", "speed" }, }, - ["LocalIncreasedAttackSpeedTwoHandedDoubleDamageUber2"] = { type = "Suffix", affix = "of Shaping", "(20-21)% increased Attack Speed", "(4-6)% chance to deal Double Damage", statOrder = { 1297, 5369 }, level = 75, group = "AttackSpeedDoubleDamage", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "damage", "attack", "speed" }, }, - ["LocalIncreasedAttackSpeedTwoHandedKilledRecentlyUber1"] = { type = "Suffix", affix = "of the Elder", "(17-19)% increased Attack Speed", "20% increased Attack Speed if you've Killed Recently", statOrder = { 1297, 4715 }, level = 68, group = "AttackSpeedKilledRecently", weightKey = { "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack", "speed" }, }, - ["LocalIncreasedAttackSpeedTwoHandedKilledRecentlyUber2"] = { type = "Suffix", affix = "of the Elder", "(20-21)% increased Attack Speed", "20% increased Attack Speed if you've Killed Recently", statOrder = { 1297, 4715 }, level = 75, group = "AttackSpeedKilledRecently", weightKey = { "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack", "speed" }, }, - ["LocalIncreasedAttackSpeedRangedDoubleDamageUber1"] = { type = "Suffix", affix = "of Shaping", "(8-10)% increased Attack Speed", "(4-6)% chance to deal Double Damage", statOrder = { 1297, 5369 }, level = 68, group = "AttackSpeedDoubleDamage", weightKey = { "bow_shaper", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "damage", "attack", "speed" }, }, - ["LocalIncreasedAttackSpeedRangedDoubleDamageUber2"] = { type = "Suffix", affix = "of Shaping", "(11-12)% increased Attack Speed", "(4-6)% chance to deal Double Damage", statOrder = { 1297, 5369 }, level = 75, group = "AttackSpeedDoubleDamage", weightKey = { "bow_shaper", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "damage", "attack", "speed" }, }, - ["LocalIncreasedAttackSpeedRangedKilledRecentlyUber1"] = { type = "Suffix", affix = "of the Elder", "(8-10)% increased Attack Speed", "20% increased Attack Speed if you've Killed Recently", statOrder = { 1297, 4715 }, level = 68, group = "AttackSpeedKilledRecently", weightKey = { "bow_elder", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack", "speed" }, }, - ["LocalIncreasedAttackSpeedRangedKilledRecentlyUber2"] = { type = "Suffix", affix = "of the Elder", "(11-12)% increased Attack Speed", "20% increased Attack Speed if you've Killed Recently", statOrder = { 1297, 4715 }, level = 75, group = "AttackSpeedKilledRecently", weightKey = { "bow_elder", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack", "speed" }, }, - ["CriticalStrikeChanceSupportedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Increased Critical Strikes", "(22-25)% increased Critical Strike Chance", statOrder = { 261, 1348 }, level = 68, group = "CriticalStrikeChanceSupported", weightKey = { "grants_crit_chance_support", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "attack", "critical", "gem" }, }, - ["CriticalStrikeChanceSupportedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Increased Critical Strikes", "(26-29)% increased Critical Strike Chance", statOrder = { 261, 1348 }, level = 75, group = "CriticalStrikeChanceSupported", weightKey = { "grants_crit_chance_support", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "attack", "critical", "gem" }, }, - ["CriticalStrikeChanceTwoHandedCritChanceRecentlyUber1_"] = { type = "Suffix", affix = "of Shaping", "(22-25)% increased Critical Strike Chance", "50% increased Critical Strike Chance if you have Killed Recently", statOrder = { 1348, 5629 }, level = 68, group = "CriticalStrikeChanceTwoHandedCritChanceRecently", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "staff_shaper", "warstaff_shaper", "bow_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack", "critical" }, }, - ["CriticalStrikeChanceTwoHandedCritChanceRecentlyUber2"] = { type = "Suffix", affix = "of Shaping", "(26-29)% increased Critical Strike Chance", "50% increased Critical Strike Chance if you have Killed Recently", statOrder = { 1348, 5629 }, level = 75, group = "CriticalStrikeChanceTwoHandedCritChanceRecently", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "staff_shaper", "warstaff_shaper", "bow_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack", "critical" }, }, - ["CriticalStrikeChanceTwoHandedCritMultiRecentlyUber1_"] = { type = "Suffix", affix = "of the Elder", "(22-25)% increased Critical Strike Chance", "+50% to Critical Strike Multiplier if you haven't dealt a Critical Strike Recently", statOrder = { 1348, 5663 }, level = 68, group = "CriticalStrikeChanceTwoHandedCritMultiRecently", weightKey = { "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "staff_elder", "warstaff_elder", "bow_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "damage", "attack", "critical" }, }, - ["CriticalStrikeChanceTwoHandedCritMultiRecentlyUber2"] = { type = "Suffix", affix = "of the Elder", "(26-29)% increased Critical Strike Chance", "+50% to Critical Strike Multiplier if you haven't dealt a Critical Strike Recently", statOrder = { 1348, 5663 }, level = 75, group = "CriticalStrikeChanceTwoHandedCritMultiRecently", weightKey = { "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "staff_elder", "warstaff_elder", "bow_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "damage", "attack", "critical" }, }, - ["CriticalMultiplierSupportedUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are supported by Level 18 Increased Critical Damage", "+(22-25)% to Global Critical Strike Multiplier", statOrder = { 405, 1372 }, level = 68, group = "CriticalStrikeMultiplierSupported", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "damage", "attack", "critical", "gem" }, }, - ["CriticalMultiplierSupportedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are supported by Level 20 Increased Critical Damage", "+(26-29)% to Global Critical Strike Multiplier", statOrder = { 405, 1372 }, level = 75, group = "CriticalStrikeMultiplierSupported", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "damage", "attack", "critical", "gem" }, }, - ["CriticalMultiplierSupportedTwoHandedUber1"] = { type = "Suffix", affix = "of Shaping", "+(22-25)% to Global Critical Strike Multiplier", "(5-8)% chance to gain a Power Charge on Critical Strike", statOrder = { 1372, 1711 }, level = 68, group = "CriticalMultiplierSupportedTwoHanded", weightKey = { "bow_shaper", "default", }, weightVal = { 500, 0 }, modTags = { "power_charge", "influence_mod", "damage", "attack", "critical" }, }, - ["CriticalMultiplierSupportedTwoHandedUber2"] = { type = "Suffix", affix = "of Shaping", "+(26-29)% to Global Critical Strike Multiplier", "(9-10)% chance to gain a Power Charge on Critical Strike", statOrder = { 1372, 1711 }, level = 75, group = "CriticalMultiplierSupportedTwoHanded", weightKey = { "bow_shaper", "default", }, weightVal = { 500, 0 }, modTags = { "power_charge", "influence_mod", "damage", "attack", "critical" }, }, - ["WeaponElementalDamageSupportedUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are supported by Level 18 Elemental Damage with Attacks", "(28-32)% increased Elemental Damage with Attack Skills", statOrder = { 407, 6010 }, level = 68, group = "IncreasedWeaponElementalDamagePercentSupported", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "attack", "gem" }, }, - ["WeaponElementalDamageSupportedUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are supported by Level 20 Elemental Damage with Attacks", "(33-37)% increased Elemental Damage with Attack Skills", statOrder = { 407, 6010 }, level = 75, group = "IncreasedWeaponElementalDamagePercentSupported", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "attack", "gem" }, }, - ["ChanceToMaimUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Maim", "15% chance to Maim on Hit", statOrder = { 272, 7581 }, level = 68, group = "ChanceToMaimSupported", weightKey = { "grants_2h_support", "2h_mace_shaper", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "influence_mod", "attack", "gem" }, }, - ["ChanceToMaimUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Maim", "20% chance to Maim on Hit", statOrder = { 272, 7581 }, level = 75, group = "ChanceToMaimSupported", weightKey = { "grants_2h_support", "2h_mace_shaper", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "influence_mod", "attack", "gem" }, }, - ["ChanceToPoisonUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Chance to Poison", "15% chance to Poison on Hit", statOrder = { 442, 7593 }, level = 68, group = "ChanceToPoisonSupported", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "poison", "influence_mod", "chaos", "attack", "ailment", "gem" }, }, - ["ChanceToPoisonUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Chance to Poison", "20% chance to Poison on Hit", statOrder = { 442, 7593 }, level = 75, group = "ChanceToPoisonSupported", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "poison", "influence_mod", "chaos", "attack", "ailment", "gem" }, }, - ["ChanceToBleedUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Chance To Bleed", "10% chance to cause Bleeding on Hit", statOrder = { 218, 2359 }, level = 68, group = "ChanceToBleedSupported", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "bleed", "influence_mod", "physical", "attack", "ailment", "gem" }, }, - ["ChanceToBleedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Chance To Bleed", "15% chance to cause Bleeding on Hit", statOrder = { 218, 2359 }, level = 75, group = "ChanceToBleedSupported", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "bleed", "influence_mod", "physical", "attack", "ailment", "gem" }, }, - ["PhysicalAddedAsFireUber1_"] = { type = "Prefix", affix = "The Shaper's", "Gain (7-12)% of Physical Damage as Extra Fire Damage", statOrder = { 1811 }, level = 68, group = "PhysicalAddedAsFire", weightKey = { "2h_sword_shaper", "sword_shaper", "axe_shaper", "mace_shaper", "sceptre_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, }, - ["PhysicalAddedAsFireUber2"] = { type = "Prefix", affix = "The Shaper's", "Gain (13-17)% of Physical Damage as Extra Fire Damage", statOrder = { 1811 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "2h_sword_shaper", "sword_shaper", "axe_shaper", "mace_shaper", "sceptre_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, }, - ["PhysicalAddedAsFireUber3"] = { type = "Prefix", affix = "The Shaper's", "Gain (18-20)% of Physical Damage as Extra Fire Damage", statOrder = { 1811 }, level = 80, group = "PhysicalAddedAsFire", weightKey = { "2h_sword_shaper", "sword_shaper", "axe_shaper", "mace_shaper", "sceptre_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, }, - ["PhysicalAddedAsColdUber1"] = { type = "Prefix", affix = "The Shaper's", "Gain (7-12)% of Physical Damage as Extra Cold Damage", statOrder = { 1812 }, level = 68, group = "PhysicalAddedAsCold", weightKey = { "bow_shaper", "2h_sword_shaper", "sword_shaper", "axe_shaper", "claw_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, }, - ["PhysicalAddedAsColdUber2"] = { type = "Prefix", affix = "The Shaper's", "Gain (13-17)% of Physical Damage as Extra Cold Damage", statOrder = { 1812 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "bow_shaper", "2h_sword_shaper", "sword_shaper", "axe_shaper", "claw_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, }, - ["PhysicalAddedAsColdUber3"] = { type = "Prefix", affix = "The Shaper's", "Gain (18-20)% of Physical Damage as Extra Cold Damage", statOrder = { 1812 }, level = 80, group = "PhysicalAddedAsCold", weightKey = { "bow_shaper", "2h_sword_shaper", "sword_shaper", "axe_shaper", "claw_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, }, - ["PhysicalAddedAsLightningUber1"] = { type = "Prefix", affix = "The Shaper's", "Gain (7-12)% of Physical Damage as Extra Lightning Damage", statOrder = { 1813 }, level = 68, group = "PhysicalAddedAsLightning", weightKey = { "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, }, - ["PhysicalAddedAsLightningUber2"] = { type = "Prefix", affix = "The Shaper's", "Gain (13-17)% of Physical Damage as Extra Lightning Damage", statOrder = { 1813 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, }, - ["PhysicalAddedAsLightningUber3"] = { type = "Prefix", affix = "The Shaper's", "Gain (18-20)% of Physical Damage as Extra Lightning Damage", statOrder = { 1813 }, level = 80, group = "PhysicalAddedAsLightning", weightKey = { "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, }, - ["OnslaugtOnKillUber1"] = { type = "Suffix", affix = "of Shaping", "(5-6)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3246 }, level = 68, group = "OnslaugtOnKillPercentChance", weightKey = { "bow_shaper", "2h_axe_shaper", "2h_sword_shaper", "sword_shaper", "quiver_shaper", "axe_shaper", "claw_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "influence_mod" }, }, - ["OnslaugtOnKillUber2"] = { type = "Suffix", affix = "of Shaping", "(7-8)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3246 }, level = 75, group = "OnslaugtOnKillPercentChance", weightKey = { "bow_shaper", "2h_axe_shaper", "2h_sword_shaper", "sword_shaper", "quiver_shaper", "axe_shaper", "claw_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "influence_mod" }, }, - ["OnslaugtOnKillUber3"] = { type = "Suffix", affix = "of Shaping", "(9-10)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3246 }, level = 83, group = "OnslaugtOnKillPercentChance", weightKey = { "bow_shaper", "2h_axe_shaper", "2h_sword_shaper", "sword_shaper", "quiver_shaper", "axe_shaper", "claw_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "influence_mod" }, }, - ["UnholyMightOnKillUber1"] = { type = "Suffix", affix = "of the Elder", "(5-6)% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3243 }, level = 68, group = "UnholyMightOnKillPercentChance", weightKey = { "claw_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "influence_mod" }, }, - ["UnholyMightOnKillUber2_"] = { type = "Suffix", affix = "of the Elder", "(7-8)% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3243 }, level = 75, group = "UnholyMightOnKillPercentChance", weightKey = { "claw_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "influence_mod" }, }, - ["UnholyMightOnKillUber3"] = { type = "Suffix", affix = "of the Elder", "(9-10)% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3243 }, level = 84, group = "UnholyMightOnKillPercentChance", weightKey = { "claw_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "influence_mod" }, }, - ["BlindOnHitUber1"] = { type = "Suffix", affix = "of the Elder", "(5-6)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4736 }, level = 68, group = "AttacksBlindOnHitChance", weightKey = { "bow_elder", "2h_axe_elder", "2h_sword_elder", "sword_elder", "axe_elder", "claw_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, }, - ["BlindOnHitUber2"] = { type = "Suffix", affix = "of the Elder", "(7-8)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4736 }, level = 75, group = "AttacksBlindOnHitChance", weightKey = { "bow_elder", "2h_axe_elder", "2h_sword_elder", "sword_elder", "axe_elder", "claw_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, }, - ["BlindOnHitUber3"] = { type = "Suffix", affix = "of the Elder", "(9-10)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4736 }, level = 81, group = "AttacksBlindOnHitChance", weightKey = { "bow_elder", "2h_axe_elder", "2h_sword_elder", "sword_elder", "axe_elder", "claw_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, }, - ["BlindOnHitShaperUber1"] = { type = "Suffix", affix = "of Shaping", "(5-6)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4736 }, level = 68, group = "AttacksBlindOnHitChance", weightKey = { "quiver_shaper", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, }, - ["BlindOnHitShaperUber2"] = { type = "Suffix", affix = "of Shaping", "(7-8)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4736 }, level = 75, group = "AttacksBlindOnHitChance", weightKey = { "quiver_shaper", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, }, - ["BlindOnHitShaperUber3"] = { type = "Suffix", affix = "of Shaping", "(9-10)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4736 }, level = 81, group = "AttacksBlindOnHitChance", weightKey = { "quiver_shaper", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, }, - ["BlockWhileDualWieldingUber1"] = { type = "Suffix", affix = "of Shaping", "+(2-4)% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1047 }, level = 68, group = "BlockWhileDualWielding", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "block", "influence_mod" }, }, - ["BlockWhileDualWieldingUber2"] = { type = "Suffix", affix = "of Shaping", "+(5-7)% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1047 }, level = 75, group = "BlockWhileDualWielding", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "block", "influence_mod" }, }, - ["BlockWhileDualWieldingUber3_"] = { type = "Suffix", affix = "of Shaping", "+(8-9)% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1047 }, level = 80, group = "BlockWhileDualWielding", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "block", "influence_mod" }, }, - ["PhysicalDamageWhileDualWieldingUber1"] = { type = "Suffix", affix = "of the Elder", "(23-27)% increased Physical Attack Damage while Dual Wielding", statOrder = { 1163 }, level = 68, group = "DualWieldingPhysicalDamage", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, }, - ["PhysicalDamageWhileDualWieldingUber2"] = { type = "Suffix", affix = "of the Elder", "(28-32)% increased Physical Attack Damage while Dual Wielding", statOrder = { 1163 }, level = 75, group = "DualWieldingPhysicalDamage", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, }, - ["PhysicalDamageWhileDualWieldingUber3"] = { type = "Suffix", affix = "of the Elder", "(33-37)% increased Physical Attack Damage while Dual Wielding", statOrder = { 1163 }, level = 80, group = "DualWieldingPhysicalDamage", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, }, - ["ElementalPenetrationWeaponUber1"] = { type = "Suffix", affix = "of Shaping", "Damage Penetrates (5-6)% Elemental Resistances", statOrder = { 2852 }, level = 68, group = "ElementalPenetration", weightKey = { "bow_shaper", "2h_axe_shaper", "2h_mace_shaper", "2h_sword_shaper", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "wand_shaper", "staff_shaper", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, }, - ["ElementalPenetrationWeaponUber2"] = { type = "Suffix", affix = "of Shaping", "Damage Penetrates (7-8)% Elemental Resistances", statOrder = { 2852 }, level = 75, group = "ElementalPenetration", weightKey = { "bow_shaper", "2h_axe_shaper", "2h_mace_shaper", "2h_sword_shaper", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "wand_shaper", "staff_shaper", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, }, - ["ElementalPenetrationWeaponUber3"] = { type = "Suffix", affix = "of Shaping", "Damage Penetrates (9-10)% Elemental Resistances", statOrder = { 2852 }, level = 83, group = "ElementalPenetration", weightKey = { "bow_shaper", "2h_axe_shaper", "2h_mace_shaper", "2h_sword_shaper", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "wand_shaper", "staff_shaper", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, }, - ["ElementalPenetrationWeaponNewUber1"] = { type = "Prefix", affix = "The Shaper's", "Damage Penetrates 4% Elemental Resistances", statOrder = { 2852 }, level = 68, group = "ElementalPenetration", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, }, - ["ElementalPenetrationWeaponNewUber2"] = { type = "Prefix", affix = "The Shaper's", "Damage Penetrates 5% Elemental Resistances", statOrder = { 2852 }, level = 75, group = "ElementalPenetration", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, }, - ["ElementalPenetrationWeaponNewUber3"] = { type = "Prefix", affix = "The Shaper's", "Damage Penetrates 6% Elemental Resistances", statOrder = { 2852 }, level = 83, group = "ElementalPenetration", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, }, - ["ElementalPenetrationTwoWeaponNewUber1"] = { type = "Prefix", affix = "The Shaper's", "Damage Penetrates (7-8)% Elemental Resistances", statOrder = { 2852 }, level = 68, group = "ElementalPenetration", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "bow_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, }, - ["ElementalPenetrationTwoWeaponNewUber2"] = { type = "Prefix", affix = "The Shaper's", "Damage Penetrates (9-10)% Elemental Resistances", statOrder = { 2852 }, level = 75, group = "ElementalPenetration", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "bow_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, }, - ["ElementalPenetrationTwoWeaponNewUber3"] = { type = "Prefix", affix = "The Shaper's", "Damage Penetrates (11-12)% Elemental Resistances", statOrder = { 2852 }, level = 83, group = "ElementalPenetration", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "bow_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, }, - ["WeaponSocketedAttacksDamageFinalUber1_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Skills deal 40% more Attack Damage", statOrder = { 464 }, level = 83, group = "SocketedAttacksDamageFinal", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "skill", "influence_mod", "damage", "attack", "gem" }, }, - ["WeaponSocketedAttacksDamageFinalTwoHandUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Skills deal 20% more Attack Damage", statOrder = { 464 }, level = 83, group = "SocketedAttacksDamageFinal", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "bow_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "skill", "influence_mod", "damage", "attack", "gem" }, }, - ["WeaponSocketedSpellsDamageFinalUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Skills deal 40% more Spell Damage", statOrder = { 483 }, level = 83, group = "SocketedSpellsDamageFinal", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "skill", "caster_damage", "influence_mod", "damage", "caster", "gem" }, }, - ["WeaponSocketedSpellsDamageFinalTwoHandUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Skills deal 20% more Spell Damage", statOrder = { 483 }, level = 83, group = "SocketedSpellsDamageFinal", weightKey = { "staff_shaper", "default", }, weightVal = { 500, 0 }, modTags = { "skill", "caster_damage", "influence_mod", "damage", "caster", "gem" }, }, - ["ChanceForPoisonDamageFinalInflictedWithThisWeaponUber1"] = { type = "Prefix", affix = "The Elder's", "60% chance for Poisons inflicted with this Weapon to deal 100% more Damage", statOrder = { 7477 }, level = 83, group = "LocalChanceForPoisonDamage100FinalInflictedWithThisWeapon", weightKey = { "bow_elder", "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "chaos_damage", "poison", "influence_mod", "damage", "chaos", "attack", "ailment" }, }, - ["ChanceForBleedDamageFinalInflictedWithThisWeaponUber1"] = { type = "Prefix", affix = "The Elder's", "60% chance for Bleeding inflicted with this Weapon to deal 100% more Damage", statOrder = { 7476 }, level = 83, group = "LocalChanceForBleedingDamage100FinalInflictedWithThisWeapon", weightKey = { "bow_elder", "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment" }, }, - ["LocalBleedDamageOverTimeMultiplierUber1___"] = { type = "Prefix", affix = "The Elder's", "+(37-42)% to Damage over Time Multiplier for Bleeding from Hits with this Weapon", statOrder = { 7471 }, level = 68, group = "LocalBleedDamageOverTimeMultiplier", weightKey = { "bow_elder", "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "bleed", "influence_mod", "physical", "attack", "ailment" }, }, - ["LocalBleedDamageOverTimeMultiplierUber2"] = { type = "Prefix", affix = "The Elder's", "+(43-50)% to Damage over Time Multiplier for Bleeding from Hits with this Weapon", statOrder = { 7471 }, level = 75, group = "LocalBleedDamageOverTimeMultiplier", weightKey = { "bow_elder", "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "bleed", "influence_mod", "physical", "attack", "ailment" }, }, - ["LocalBleedDamageOverTimeMultiplierUber3"] = { type = "Prefix", affix = "The Elder's", "+(51-59)% to Damage over Time Multiplier for Bleeding from Hits with this Weapon", statOrder = { 7471 }, level = 83, group = "LocalBleedDamageOverTimeMultiplier", weightKey = { "bow_elder", "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "bleed", "influence_mod", "physical", "attack", "ailment" }, }, - ["LocalPoisonDamageOverTimeMultiplierUber1__"] = { type = "Prefix", affix = "The Elder's", "+(37-42)% to Damage over Time Multiplier for Poison inflicted with this Weapon", statOrder = { 1149 }, level = 68, group = "LocalPoisonDamageOverTimeMultiplier", weightKey = { "bow_elder", "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "poison", "influence_mod", "chaos", "attack", "ailment" }, }, - ["LocalPoisonDamageOverTimeMultiplierUber2__"] = { type = "Prefix", affix = "The Elder's", "+(43-50)% to Damage over Time Multiplier for Poison inflicted with this Weapon", statOrder = { 1149 }, level = 75, group = "LocalPoisonDamageOverTimeMultiplier", weightKey = { "bow_elder", "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "poison", "influence_mod", "chaos", "attack", "ailment" }, }, - ["LocalPoisonDamageOverTimeMultiplierUber3"] = { type = "Prefix", affix = "The Elder's", "+(51-59)% to Damage over Time Multiplier for Poison inflicted with this Weapon", statOrder = { 1149 }, level = 83, group = "LocalPoisonDamageOverTimeMultiplier", weightKey = { "bow_elder", "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "poison", "influence_mod", "chaos", "attack", "ailment" }, }, - ["PhysicalDamageConvertedToChaosUber1"] = { type = "Suffix", affix = "of the Elder", "(10-15)% of Physical Damage Converted to Chaos Damage", statOrder = { 1841 }, level = 68, group = "PhysicalDamageConvertedToChaos", weightKey = { "bow_elder", "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "chaos_damage", "influence_mod", "damage", "physical", "chaos" }, }, - ["PhysicalDamageConvertedToChaosUber2"] = { type = "Suffix", affix = "of the Elder", "(16-20)% of Physical Damage Converted to Chaos Damage", statOrder = { 1841 }, level = 75, group = "PhysicalDamageConvertedToChaos", weightKey = { "bow_elder", "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "chaos_damage", "influence_mod", "damage", "physical", "chaos" }, }, - ["PhysicalDamageConvertedToChaosUber3"] = { type = "Suffix", affix = "of the Elder", "(21-25)% of Physical Damage Converted to Chaos Damage", statOrder = { 1841 }, level = 85, group = "PhysicalDamageConvertedToChaos", weightKey = { "bow_elder", "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "chaos_damage", "influence_mod", "damage", "physical", "chaos" }, }, - ["AddedFireDamagePerStrengthUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (1-2) to (3-4) Fire Damage to Attacks with this Weapon per 10 Strength", statOrder = { 4691 }, level = 68, group = "AddedFireDamagePerStrength", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "sceptre_shaper", "default", }, weightVal = { 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, }, - ["AddedFireDamagePerStrengthTwoHandedUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (2-3) to (4-5) Fire Damage to Attacks with this Weapon per 10 Strength", statOrder = { 4691 }, level = 68, group = "AddedFireDamagePerStrength", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, }, - ["AddedColdDamagePerDexterityUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (1-2) to (3-4) Cold Damage to Attacks with this Weapon per 10 Dexterity", statOrder = { 4745 }, level = 68, group = "AddedColdDamagePerDexterity", weightKey = { "sword_shaper", "axe_shaper", "claw_shaper", "dagger_shaper", "rune_dagger_shaper", "bow_shaper", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, }, - ["AddedColdDamagePerDexterityTwoHandedUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (2-3) to (4-5) Cold Damage to Attacks with this Weapon per 10 Dexterity", statOrder = { 4745 }, level = 68, group = "AddedColdDamagePerDexterity", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "default", }, weightVal = { 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, }, - ["AddedLightningDamagePerIntelligenceUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds 1 to (5-6) Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrder = { 4694 }, level = 68, group = "AddedLightningDamagePerIntelligence", weightKey = { "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, }, - ["AddedLightningDamagePerIntelligenceTwoHandedUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds 1 to (7-8) Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrder = { 4694 }, level = 68, group = "AddedLightningDamagePerIntelligence", weightKey = { "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, }, - ["SupportedByCastOnCritUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are supported by Level 18 Cast On Critical Strike", statOrder = { 392 }, level = 68, group = "SupportedByCastOnCritWeapon", weightKey = { "grants_2h_support", "bow_shaper", "2h_axe_shaper", "2h_sword_shaper", "default", }, weightVal = { 0, 350, 350, 350, 0 }, modTags = { "support", "influence_mod", "gem" }, }, - ["SupportedByCastOnCritUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are supported by Level 20 Cast On Critical Strike", statOrder = { 392 }, level = 75, group = "SupportedByCastOnCritWeapon", weightKey = { "grants_2h_support", "bow_shaper", "2h_axe_shaper", "2h_sword_shaper", "default", }, weightVal = { 0, 350, 350, 350, 0 }, modTags = { "support", "influence_mod", "gem" }, }, - ["SupportedByCastOnMeleeKillUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Cast On Melee Kill", statOrder = { 215 }, level = 68, group = "SupportedByCastOnMeleeKillWeapon", weightKey = { "grants_2h_support", "2h_mace_shaper", "2h_axe_shaper", "2h_sword_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 0, 250, 250, 250, 250, 250, 0 }, modTags = { "support", "influence_mod", "gem" }, }, - ["SupportedByCastOnMeleeKillUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Cast On Melee Kill", statOrder = { 215 }, level = 75, group = "SupportedByCastOnMeleeKillWeapon", weightKey = { "grants_2h_support", "2h_mace_shaper", "2h_axe_shaper", "2h_sword_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 0, 250, 250, 250, 250, 250, 0 }, modTags = { "support", "influence_mod", "gem" }, }, - ["SupportedByCastWhileChannellingUber1_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Cast While Channelling", statOrder = { 216 }, level = 68, group = "SupportedByCastWhileChannellingWeapon", weightKey = { "grants_2h_support", "attack_staff", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 0, 0, 500, 500, 0 }, modTags = { "support", "influence_mod", "gem" }, }, - ["SupportedByCastWhileChannellingUber2_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Cast While Channelling", statOrder = { 216 }, level = 75, group = "SupportedByCastWhileChannellingWeapon", weightKey = { "grants_2h_support", "attack_staff", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 0, 0, 500, 500, 0 }, modTags = { "support", "influence_mod", "gem" }, }, - ["CullingStrikeUber1"] = { type = "Suffix", affix = "of the Elder", "Culling Strike", statOrder = { 1916 }, level = 68, group = "CullingStrike", weightKey = { "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "bow_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "influence_mod" }, }, - ["MeleeWeaponRangeUber1"] = { type = "Suffix", affix = "of the Elder", "+0.1 metres to Weapon Range", statOrder = { 2620 }, level = 75, group = "LocalWeaponRangeUber", weightKey = { "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, }, - ["MeleeWeaponRangeUber2"] = { type = "Suffix", affix = "of the Elder", "+0.2 metres to Weapon Range", statOrder = { 2620 }, level = 85, group = "LocalWeaponRangeUber", weightKey = { "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, }, - ["AreaOfEffectTwoHandedWeaponUber1"] = { type = "Suffix", affix = "of the Elder", "(5-10)% increased Area of Effect", statOrder = { 1761 }, level = 68, group = "AreaOfEffect", weightKey = { "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "bow_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "influence_mod" }, }, - ["AreaOfEffectTwoHandedWeaponUber2"] = { type = "Suffix", affix = "of the Elder", "(11-15)% increased Area of Effect", statOrder = { 1761 }, level = 75, group = "AreaOfEffect", weightKey = { "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "bow_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "influence_mod" }, }, - ["AreaOfEffectTwoHandedWeaponUber3"] = { type = "Suffix", affix = "of the Elder", "(16-20)% increased Area of Effect", statOrder = { 1761 }, level = 82, group = "AreaOfEffect", weightKey = { "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "bow_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "influence_mod" }, }, - ["MovementVelocityTwoHandedWeaponUber1"] = { type = "Suffix", affix = "of Shaping", "(3-6)% increased Movement Speed", statOrder = { 1679 }, level = 75, group = "MovementVelocity", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "bow_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "influence_mod", "speed" }, }, - ["MovementVelocityTwoHandedWeaponUber2"] = { type = "Suffix", affix = "of Shaping", "(7-10)% increased Movement Speed", statOrder = { 1679 }, level = 84, group = "MovementVelocity", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "bow_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "influence_mod", "speed" }, }, - ["AdditionalArrowsUber1"] = { type = "Suffix", affix = "of the Elder", "Skills fire an additional Projectile", statOrder = { 1673 }, level = 82, group = "AdditionalProjectiles", weightKey = { "2h_sword_elder", "2h_axe_elder", "staff_elder", "warstaff_elder", "bow_elder", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, }, - ["AdditionalPierceRangedUber1"] = { type = "Suffix", affix = "of Shaping", "Projectiles Pierce an additional Target", statOrder = { 1671 }, level = 68, group = "AdditionalPierce", weightKey = { "bow_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "influence_mod" }, }, - ["AdditionalPierceRangedUber2"] = { type = "Suffix", affix = "of Shaping", "Projectiles Pierce 2 additional Targets", statOrder = { 1671 }, level = 75, group = "AdditionalPierce", weightKey = { "bow_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "influence_mod" }, }, - ["SpellDamageOnWeaponControlledDestructionUber1_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Controlled Destruction", "(45-52)% increased Spell Damage", statOrder = { 444, 1108 }, level = 68, group = "WeaponSpellDamageControlledDestruction", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, }, - ["SpellDamageOnWeaponControlledDestructionUber2_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Controlled Destruction", "(53-56)% increased Spell Damage", statOrder = { 444, 1108 }, level = 75, group = "WeaponSpellDamageControlledDestruction", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 200, 200, 200, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, }, - ["SpellDamageOnWeaponControlledDestructionUber3"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Controlled Destruction", "(57-60)% increased Spell Damage", statOrder = { 444, 1108 }, level = 80, group = "WeaponSpellDamageControlledDestruction", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 100, 100, 100, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, }, - ["SpellDamageOnWeaponEfficacyUber1_"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Efficacy", "(45-52)% increased Spell Damage", statOrder = { 232, 1108 }, level = 68, group = "WeaponSpellDamageEfficacy", weightKey = { "sceptre_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, }, - ["SpellDamageOnWeaponEfficacyUber2"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Efficacy", "(53-56)% increased Spell Damage", statOrder = { 232, 1108 }, level = 75, group = "WeaponSpellDamageEfficacy", weightKey = { "sceptre_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 200, 200, 200, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, }, - ["SpellDamageOnWeaponEfficacyUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Efficacy", "(57-60)% increased Spell Damage", statOrder = { 232, 1108 }, level = 80, group = "WeaponSpellDamageEfficacy", weightKey = { "sceptre_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 100, 100, 100, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, }, - ["SpellDamageOnWeaponArcaneSurgeUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Arcane Surge", "(67-78)% increased Spell Damage", statOrder = { 203, 1108 }, level = 68, group = "WeaponSpellDamageArcaneSurge", weightKey = { "grants_2h_support", "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, }, - ["SpellDamageOnWeaponArcaneSurgeUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Arcane Surge", "(79-83)% increased Spell Damage", statOrder = { 203, 1108 }, level = 75, group = "WeaponSpellDamageArcaneSurge", weightKey = { "grants_2h_support", "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, }, - ["SpellDamageOnWeaponArcaneSurgeUber3"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Arcane Surge", "(84-87)% increased Spell Damage", statOrder = { 203, 1108 }, level = 80, group = "WeaponSpellDamageArcaneSurge", weightKey = { "grants_2h_support", "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, }, - ["SpellDamageOnWeaponReducedManaUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Inspiration", "(67-78)% increased Spell Damage", statOrder = { 414, 1108 }, level = 68, group = "WeaponSpellDamageReducedMana", weightKey = { "grants_2h_support", "attack_staff", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, }, - ["SpellDamageOnWeaponReducedManaUber2_"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Inspiration", "(79-83)% increased Spell Damage", statOrder = { 414, 1108 }, level = 75, group = "WeaponSpellDamageReducedMana", weightKey = { "grants_2h_support", "attack_staff", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, }, - ["SpellDamageOnWeaponReducedManaUber3__"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Inspiration", "(84-87)% increased Spell Damage", statOrder = { 414, 1108 }, level = 80, group = "WeaponSpellDamageReducedMana", weightKey = { "grants_2h_support", "attack_staff", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, }, - ["SpellDamageOnWeaponPowerChargeOnCritUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Power Charge On Critical Strike", "(67-78)% increased Spell Damage", statOrder = { 291, 1108 }, level = 68, group = "WeaponSpellDamagePowerChargeOnCrit", weightKey = { "grants_2h_support", "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, }, - ["SpellDamageOnWeaponPowerChargeOnCritUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Power Charge On Critical Strike", "(79-83)% increased Spell Damage", statOrder = { 291, 1108 }, level = 75, group = "WeaponSpellDamagePowerChargeOnCrit", weightKey = { "grants_2h_support", "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, }, - ["SpellDamageOnWeaponPowerChargeOnCritUber3_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Power Charge On Critical Strike", "(84-87)% increased Spell Damage", statOrder = { 291, 1108 }, level = 80, group = "WeaponSpellDamagePowerChargeOnCrit", weightKey = { "grants_2h_support", "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, }, - ["ElementalDamagePrefixOnWeaponElementalFocusUber1_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Elemental Focus", "(45-52)% increased Elemental Damage", statOrder = { 233, 1857 }, level = 68, group = "ElementalDamagePrefixElementalFocus", weightKey = { "sceptre_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "gem" }, }, - ["ElementalDamagePrefixOnWeaponElementalFocusUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Elemental Focus", "(53-56)% increased Elemental Damage", statOrder = { 233, 1857 }, level = 75, group = "ElementalDamagePrefixElementalFocus", weightKey = { "sceptre_shaper", "default", }, weightVal = { 200, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "gem" }, }, - ["ElementalDamagePrefixOnWeaponElementalFocusUber3"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Elemental Focus", "(57-60)% increased Elemental Damage", statOrder = { 233, 1857 }, level = 80, group = "ElementalDamagePrefixElementalFocus", weightKey = { "sceptre_shaper", "default", }, weightVal = { 100, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "gem" }, }, - ["FireDamagePrefixOnWeaponFirePenetrationUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Fire Penetration", "(45-52)% increased Fire Damage", statOrder = { 242, 1241 }, level = 68, group = "FireDamagePrefixFirePenetration", weightKey = { "sceptre_elder", "wand_elder", "default", }, weightVal = { 400, 400, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "fire", "gem" }, }, - ["FireDamagePrefixOnWeaponFirePenetrationUber2_"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Fire Penetration", "(53-56)% increased Fire Damage", statOrder = { 242, 1241 }, level = 75, group = "FireDamagePrefixFirePenetration", weightKey = { "sceptre_elder", "wand_elder", "default", }, weightVal = { 200, 200, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "fire", "gem" }, }, - ["FireDamagePrefixOnWeaponFirePenetrationUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Fire Penetration", "(57-60)% increased Fire Damage", statOrder = { 242, 1241 }, level = 80, group = "FireDamagePrefixFirePenetration", weightKey = { "sceptre_elder", "wand_elder", "default", }, weightVal = { 100, 100, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "fire", "gem" }, }, - ["ColdDamagePrefixOnWeaponColdPenetrationUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Cold Penetration", "(45-52)% increased Cold Damage", statOrder = { 432, 1250 }, level = 68, group = "ColdDamagePrefixColdPenetration", weightKey = { "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 400, 400, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "cold", "gem" }, }, - ["ColdDamagePrefixOnWeaponColdPenetrationUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Cold Penetration", "(53-56)% increased Cold Damage", statOrder = { 432, 1250 }, level = 75, group = "ColdDamagePrefixColdPenetration", weightKey = { "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 200, 200, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "cold", "gem" }, }, - ["ColdDamagePrefixOnWeaponColdPenetrationUber3"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Cold Penetration", "(57-60)% increased Cold Damage", statOrder = { 432, 1250 }, level = 80, group = "ColdDamagePrefixColdPenetration", weightKey = { "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 100, 100, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "cold", "gem" }, }, - ["LightningDamagePrefixOnWeaponLightningPenetrationUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Lightning Penetration", "(45-52)% increased Lightning Damage", statOrder = { 270, 1261 }, level = 68, group = "LightningDamagePrefixLightningPenetration", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "gem" }, }, - ["LightningDamagePrefixOnWeaponLightningPenetrationUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Lightning Penetration", "(53-56)% increased Lightning Damage", statOrder = { 270, 1261 }, level = 75, group = "LightningDamagePrefixLightningPenetration", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 200, 200, 200, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "gem" }, }, - ["LightningDamagePrefixOnWeaponLightningPenetrationUber3_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Lightning Penetration", "(57-60)% increased Lightning Damage", statOrder = { 270, 1261 }, level = 80, group = "LightningDamagePrefixLightningPenetration", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 100, 100, 100, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "gem" }, }, - ["IncreasedCastSpeedSpellEchoUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Spell Echo", "(15-17)% increased Cast Speed", statOrder = { 280, 1330 }, level = 68, group = "IncreasedCastSpeedSpellEcho", weightKey = { "sceptre_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "caster", "speed", "gem" }, }, - ["IncreasedCastSpeedSpellEchoUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Spell Echo", "(18-20)% increased Cast Speed", statOrder = { 280, 1330 }, level = 75, group = "IncreasedCastSpeedSpellEcho", weightKey = { "sceptre_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "support", "influence_mod", "caster", "speed", "gem" }, }, - ["IncreasedCastSpeedFasterCastingUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Faster Casting", "(15-17)% increased Cast Speed", statOrder = { 420, 1330 }, level = 68, group = "IncreasedCastSpeedFasterCasting", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "caster", "speed", "gem" }, }, - ["IncreasedCastSpeedFasterCastingUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Faster Casting", "(18-20)% increased Cast Speed", statOrder = { 420, 1330 }, level = 75, group = "IncreasedCastSpeedFasterCasting", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "support", "influence_mod", "caster", "speed", "gem" }, }, - ["IncreasedCastSpeedTwoHandedAvoidInterruptionUber1"] = { type = "Suffix", affix = "of the Elder", "(15-17)% increased Cast Speed", "(15-25)% chance to Ignore Stuns while Casting", statOrder = { 1330, 1779 }, level = 68, group = "IncreasedCastSpeedTwoHandedAvoidInterruption", weightKey = { "attack_staff", "staff_elder", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "influence_mod", "caster", "speed" }, }, - ["IncreasedCastSpeedTwoHandedAvoidInterruptionUber2"] = { type = "Suffix", affix = "of the Elder", "(18-20)% increased Cast Speed", "(26-35)% chance to Ignore Stuns while Casting", statOrder = { 1330, 1779 }, level = 75, group = "IncreasedCastSpeedTwoHandedAvoidInterruption", weightKey = { "attack_staff", "staff_elder", "default", }, weightVal = { 0, 500, 0 }, modTags = { "influence_mod", "caster", "speed" }, }, - ["IncreasedCastSpeedTwoHandedKilledRecentlyUber1"] = { type = "Suffix", affix = "of Shaping", "(15-17)% increased Cast Speed", "20% increased Cast Speed if you've Killed Recently", statOrder = { 1330, 5171 }, level = 68, group = "IncreasedCastSpeedTwoHandedKilledRecently", weightKey = { "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "influence_mod", "caster", "speed" }, }, - ["IncreasedCastSpeedTwoHandedKilledRecentlyUber2"] = { type = "Suffix", affix = "of Shaping", "(18-20)% increased Cast Speed", "20% increased Cast Speed if you've Killed Recently", statOrder = { 1330, 5171 }, level = 75, group = "IncreasedCastSpeedTwoHandedKilledRecently", weightKey = { "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 500, 0 }, modTags = { "influence_mod", "caster", "speed" }, }, - ["CriticalStrikeChanceSpellsSupportedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Increased Critical Strikes", "(60-74)% increased Spell Critical Strike Chance", statOrder = { 261, 1342 }, level = 68, group = "CriticalStrikeChanceSpellsSupported", weightKey = { "grants_crit_chance_support", "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "caster", "critical", "gem" }, }, - ["CriticalStrikeChanceSpellsSupportedUber2__"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Increased Critical Strikes", "(75-82)% increased Spell Critical Strike Chance", statOrder = { 261, 1342 }, level = 75, group = "CriticalStrikeChanceSpellsSupported", weightKey = { "grants_crit_chance_support", "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "caster", "critical", "gem" }, }, - ["CriticalStrikeChanceSpellsTwoHandedPowerChargeUber1"] = { type = "Suffix", affix = "of Shaping", "(60-74)% increased Spell Critical Strike Chance", "10% chance to gain a Power Charge on Critical Strike", statOrder = { 1342, 1711 }, level = 68, group = "CriticalStrikeChanceSpellsTwoHandedPowerCharge", weightKey = { "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "power_charge", "influence_mod", "caster", "critical" }, }, - ["CriticalStrikeChanceSpellsTwoHandedPowerChargeUber2"] = { type = "Suffix", affix = "of Shaping", "(75-82)% increased Spell Critical Strike Chance", "10% chance to gain a Power Charge on Critical Strike", statOrder = { 1342, 1711 }, level = 75, group = "CriticalStrikeChanceSpellsTwoHandedPowerCharge", weightKey = { "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "power_charge", "influence_mod", "caster", "critical" }, }, - ["ChanceToFreezeShockIgniteProliferationUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Elemental Proliferation", "(5-7)% chance to Freeze, Shock and Ignite", statOrder = { 386, 2676 }, level = 68, group = "ChanceToFreezeShockIgniteProliferation", weightKey = { "sceptre_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "influence_mod", "elemental", "fire", "cold", "lightning", "ailment", "gem" }, }, - ["ChanceToFreezeShockIgniteProliferationUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Elemental Proliferation", "(8-10)% chance to Freeze, Shock and Ignite", statOrder = { 386, 2676 }, level = 75, group = "ChanceToFreezeShockIgniteProliferation", weightKey = { "sceptre_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "influence_mod", "elemental", "fire", "cold", "lightning", "ailment", "gem" }, }, - ["ChanceToFreezeShockIgniteUnboundAilmentsUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Unbound Ailments", "(5-7)% chance to Freeze, Shock and Ignite", statOrder = { 323, 2676 }, level = 68, group = "ChanceToFreezeShockIgniteUnboundAilments", weightKey = { "sceptre_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "influence_mod", "elemental", "fire", "cold", "lightning", "ailment", "gem" }, }, - ["ChanceToFreezeShockIgniteUnboundAilmentsUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Unbound Ailments", "(8-10)% chance to Freeze, Shock and Ignite", statOrder = { 323, 2676 }, level = 75, group = "ChanceToFreezeShockIgniteUnboundAilments", weightKey = { "sceptre_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "influence_mod", "elemental", "fire", "cold", "lightning", "ailment", "gem" }, }, - ["PoisonDamageWeaponSupportedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Chance to Poison", "(19-23)% increased Damage with Poison", statOrder = { 442, 3047 }, level = 68, group = "PoisonDamageWeaponSupported", weightKey = { "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "support", "chaos_damage", "poison", "influence_mod", "damage", "chaos", "ailment", "gem" }, }, - ["PoisonDamageWeaponSupportedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Chance to Poison", "(24-26)% increased Damage with Poison", statOrder = { 442, 3047 }, level = 75, group = "PoisonDamageWeaponSupported", weightKey = { "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "support", "chaos_damage", "poison", "influence_mod", "damage", "chaos", "ailment", "gem" }, }, - ["PoisonDurationWeaponSupportedUber1_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Critical Strike Affliction", "(6-9)% increased Poison Duration", statOrder = { 290, 3036 }, level = 68, group = "PoisonDurationWeaponSupported", weightKey = { "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "support", "poison", "influence_mod", "chaos", "ailment", "gem" }, }, - ["PoisonDurationWeaponSupportedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Critical Strike Affliction", "(10-14)% increased Poison Duration", statOrder = { 290, 3036 }, level = 75, group = "PoisonDurationWeaponSupported", weightKey = { "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "support", "poison", "influence_mod", "chaos", "ailment", "gem" }, }, - ["SupportedByIncreasedAreaOfEffectDamageUber1_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Increased Area of Effect", "(23-27)% increased Area Damage", statOrder = { 202, 1912 }, level = 68, group = "SupportedByIncreasedAreaOfEffectDamage", weightKey = { "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, - ["SupportedByIncreasedAreaOfEffectDamageUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Increased Area of Effect", "(28-32)% increased Area Damage", statOrder = { 202, 1912 }, level = 75, group = "SupportedByIncreasedAreaOfEffectDamage", weightKey = { "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, - ["SupportedByIncreasedAreaOfEffectDamageUber3_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Increased Area of Effect", "(33-37)% increased Area Damage", statOrder = { 202, 1912 }, level = 80, group = "SupportedByIncreasedAreaOfEffectDamage", weightKey = { "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, - ["SupportedBySpellCascadeAreaUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Spell Cascade", "(5-8)% increased Area of Effect", statOrder = { 311, 1761 }, level = 68, group = "SupportedBySpellCascadeArea", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "gem" }, }, - ["SupportedBySpellCascadeAreaUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Spell Cascade", "(9-12)% increased Area of Effect", statOrder = { 311, 1761 }, level = 75, group = "SupportedBySpellCascadeArea", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "gem" }, }, - ["SupportedBySpellCascadeAreaUber3_"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Spell Cascade", "(13-15)% increased Area of Effect", statOrder = { 311, 1761 }, level = 80, group = "SupportedBySpellCascadeArea", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "gem" }, }, - ["SupportedByLesserMultipleProjectilesDamageUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Lesser Multiple Projectiles", "(15-20)% increased Projectile Damage", statOrder = { 424, 1873 }, level = 68, group = "SupportedByLesserMultipleProjectilesDamage", weightKey = { "wand_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, - ["SupportedByLesserMultipleProjectilesDamageUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Lesser Multiple Projectiles", "(21-25)% increased Projectile Damage", statOrder = { 424, 1873 }, level = 75, group = "SupportedByLesserMultipleProjectilesDamage", weightKey = { "wand_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, - ["SupportedByLesserMultipleProjectilesDamageUber3_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Lesser Multiple Projectiles", "(26-30)% increased Projectile Damage", statOrder = { 424, 1873 }, level = 80, group = "SupportedByLesserMultipleProjectilesDamage", weightKey = { "wand_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, - ["SupportedByVolleySpeedUber1__"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Volley", "(15-18)% increased Projectile Speed", statOrder = { 285, 1677 }, level = 68, group = "SupportedByVolleySpeed", weightKey = { "wand_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, }, - ["SupportedByVolleySpeedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Volley", "(19-22)% increased Projectile Speed", statOrder = { 285, 1677 }, level = 75, group = "SupportedByVolleySpeed", weightKey = { "wand_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, }, - ["SupportedByVolleySpeedUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Volley", "(23-25)% increased Projectile Speed", statOrder = { 285, 1677 }, level = 80, group = "SupportedByVolleySpeed", weightKey = { "wand_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, }, - ["ElementalDamagePercentAddedAsChaosUber1"] = { type = "Prefix", affix = "The Shaper's", "Gain (5-6)% of Elemental Damage as Extra Chaos Damage", statOrder = { 1821 }, level = 75, group = "ElementalDamagePercentAddedAsChaos", weightKey = { "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "chaos_damage", "influence_mod", "damage", "elemental", "chaos" }, }, - ["ElementalDamagePercentAddedAsChaosUber2"] = { type = "Prefix", affix = "The Shaper's", "Gain (7-8)% of Elemental Damage as Extra Chaos Damage", statOrder = { 1821 }, level = 85, group = "ElementalDamagePercentAddedAsChaos", weightKey = { "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "chaos_damage", "influence_mod", "damage", "elemental", "chaos" }, }, - ["ElementalDamagePercentAddedAsChaosStaffUber1"] = { type = "Prefix", affix = "The Shaper's", "Gain (10-12)% of Elemental Damage as Extra Chaos Damage", statOrder = { 1821 }, level = 75, group = "ElementalDamagePercentAddedAsChaos", weightKey = { "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "chaos_damage", "influence_mod", "damage", "elemental", "chaos" }, }, - ["ElementalDamagePercentAddedAsChaosStaffUber2__"] = { type = "Prefix", affix = "The Shaper's", "Gain (13-15)% of Elemental Damage as Extra Chaos Damage", statOrder = { 1821 }, level = 85, group = "ElementalDamagePercentAddedAsChaos", weightKey = { "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "chaos_damage", "influence_mod", "damage", "elemental", "chaos" }, }, - ["DisplaySocketedSkillsChainUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems Chain 1 additional times", statOrder = { 459 }, level = 85, group = "DisplaySocketedSkillsChain", weightKey = { "bow_shaper", "default", }, weightVal = { 200, 0 }, modTags = { "skill", "influence_mod", "gem" }, }, - ["SpellAddedPhysicalDamageWeaponUber1"] = { type = "Prefix", affix = "The Elder's", "Adds (22-31) to (46-53) Physical Damage to Spells", statOrder = { 1287 }, level = 68, group = "SpellAddedPhysicalDamage", weightKey = { "sceptre_elder", "wand_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "influence_mod", "damage", "physical", "caster" }, }, - ["SpellAddedPhysicalDamageWeaponUber2_"] = { type = "Prefix", affix = "The Elder's", "Adds (28-37) to (55-64) Physical Damage to Spells", statOrder = { 1287 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "sceptre_elder", "wand_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "influence_mod", "damage", "physical", "caster" }, }, - ["SpellAddedPhysicalDamageWeaponUber3"] = { type = "Prefix", affix = "The Elder's", "Adds (32-44) to (66-76) Physical Damage to Spells", statOrder = { 1287 }, level = 84, group = "SpellAddedPhysicalDamage", weightKey = { "sceptre_elder", "wand_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "influence_mod", "damage", "physical", "caster" }, }, - ["SpellAddedPhysicalDamageTwoHandWeaponUber1_"] = { type = "Prefix", affix = "The Elder's", "Adds (37-49) to (75-86) Physical Damage to Spells", statOrder = { 1287 }, level = 68, group = "SpellAddedPhysicalDamage", weightKey = { "attack_staff", "staff_elder", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "influence_mod", "damage", "physical", "caster" }, }, - ["SpellAddedPhysicalDamageTwoHandWeaponUber2"] = { type = "Prefix", affix = "The Elder's", "Adds (44-58) to (88-103) Physical Damage to Spells", statOrder = { 1287 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "attack_staff", "staff_elder", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "influence_mod", "damage", "physical", "caster" }, }, - ["SpellAddedPhysicalDamageTwoHandWeaponUber3"] = { type = "Prefix", affix = "The Elder's", "Adds (60-73) to (108-122) Physical Damage to Spells", statOrder = { 1287 }, level = 84, group = "SpellAddedPhysicalDamage", weightKey = { "attack_staff", "staff_elder", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "influence_mod", "damage", "physical", "caster" }, }, - ["SpellAddedChaosDamageWeaponUber1"] = { type = "Prefix", affix = "The Elder's", "Adds (22-31) to (46-53) Chaos Damage to Spells", statOrder = { 1291 }, level = 68, group = "SpellAddedChaosDamage", weightKey = { "sceptre_elder", "wand_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "influence_mod", "damage", "chaos", "caster" }, }, - ["SpellAddedChaosDamageWeaponUber2"] = { type = "Prefix", affix = "The Elder's", "Adds (28-37) to (55-64) Chaos Damage to Spells", statOrder = { 1291 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "sceptre_elder", "wand_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "influence_mod", "damage", "chaos", "caster" }, }, - ["SpellAddedChaosDamageWeaponUber3_"] = { type = "Prefix", affix = "The Elder's", "Adds (32-44) to (66-76) Chaos Damage to Spells", statOrder = { 1291 }, level = 85, group = "SpellAddedChaosDamage", weightKey = { "sceptre_elder", "wand_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "influence_mod", "damage", "chaos", "caster" }, }, - ["SpellAddedChaosDamageTwoHandWeaponUber1"] = { type = "Prefix", affix = "The Elder's", "Adds (37-49) to (75-86) Chaos Damage to Spells", statOrder = { 1291 }, level = 68, group = "SpellAddedChaosDamage", weightKey = { "attack_staff", "staff_elder", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "influence_mod", "damage", "chaos", "caster" }, }, - ["SpellAddedChaosDamageTwoHandWeaponUber2"] = { type = "Prefix", affix = "The Elder's", "Adds (44-58) to (88-103) Chaos Damage to Spells", statOrder = { 1291 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "attack_staff", "staff_elder", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "influence_mod", "damage", "chaos", "caster" }, }, - ["SpellAddedChaosDamageTwoHandWeaponUber3"] = { type = "Prefix", affix = "The Elder's", "Adds (60-73) to (108-122) Chaos Damage to Spells", statOrder = { 1291 }, level = 85, group = "SpellAddedChaosDamage", weightKey = { "attack_staff", "staff_elder", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "influence_mod", "damage", "chaos", "caster" }, }, - ["SpellDamagePer16StrengthUber1"] = { type = "Prefix", affix = "The Elder's", "1% increased Spell Damage per 16 Strength", statOrder = { 9639 }, level = 68, group = "SpellDamagePer16Strength", weightKey = { "sceptre_elder", "default", }, weightVal = { 400, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, }, - ["SpellDamagePer16DexterityUber1__"] = { type = "Prefix", affix = "The Elder's", "1% increased Spell Damage per 16 Dexterity", statOrder = { 9637 }, level = 68, group = "SpellDamagePer16Dexterity", weightKey = { "rune_dagger_elder", "default", }, weightVal = { 400, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, }, - ["SpellDamagePer16IntelligenceUber1"] = { type = "Prefix", affix = "The Elder's", "1% increased Spell Damage per 16 Intelligence", statOrder = { 9638 }, level = 68, group = "SpellDamagePer16Intelligence", weightKey = { "sceptre_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, }, - ["SpellDamagePer10StrengthUber1"] = { type = "Prefix", affix = "The Elder's", "1% increased Spell Damage per 10 Strength", statOrder = { 9636 }, level = 68, group = "SpellDamagePer10Strength", weightKey = { "attack_staff", "staff_elder", "default", }, weightVal = { 0, 400, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, }, - ["SpellDamagePer10IntelligenceUber1_"] = { type = "Prefix", affix = "The Elder's", "1% increased Spell Damage per 10 Intelligence", statOrder = { 2613 }, level = 68, group = "SpellDamagePer10Intelligence", weightKey = { "attack_staff", "staff_elder", "default", }, weightVal = { 0, 400, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, }, - ["MaximumEnduranceChargeUber1"] = { type = "Suffix", affix = "of Shaping", "+1 to Maximum Endurance Charges", statOrder = { 1685 }, level = 84, group = "MaximumEnduranceCharges", weightKey = { "2h_mace_shaper", "2h_sword_shaper", "2h_axe_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "endurance_charge", "influence_mod" }, }, - ["MaximumFrenzyChargeUber1"] = { type = "Suffix", affix = "of Shaping", "+1 to Maximum Frenzy Charges", statOrder = { 1690 }, level = 84, group = "MaximumFrenzyCharges", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "bow_shaper", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "frenzy_charge", "influence_mod" }, }, - ["MaximumPowerChargeUber1"] = { type = "Suffix", affix = "of Shaping", "+1 to Maximum Power Charges", statOrder = { 1695 }, level = 84, group = "IncreasedMaximumPowerCharges", weightKey = { "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "power_charge", "influence_mod" }, }, - ["PowerChargeOnBlockUber1"] = { type = "Suffix", affix = "of the Elder", "+5% Chance to Block Attack Damage while wielding a Staff", "25% chance to gain a Power Charge when you Block", statOrder = { 1038, 4131 }, level = 68, group = "PowerChargeOnBlockUber", weightKey = { "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "block", "power_charge", "influence_mod" }, }, - ["CriticalStrikeMultiplierIfBlockedRecentlyUber1_"] = { type = "Suffix", affix = "of Shaping", "+5% Chance to Block Attack Damage while wielding a Staff", "+(35-45)% to Critical Strike Multiplier if you have Blocked Recently", statOrder = { 1038, 5666 }, level = 68, group = "CriticalStrikeMultiplierIfBlockedRecentlyUber", weightKey = { "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "block", "influence_mod", "damage", "critical" }, }, - ["BlockingBlocksSpellsUber1"] = { type = "Suffix", affix = "of the Elder", "+5% Chance to Block Attack Damage while wielding a Staff", "(12-18)% Chance to Block Spell Damage", statOrder = { 1038, 1041 }, level = 68, group = "BlockingBlocksSpellsUber", weightKey = { "staff_elder", "default", }, weightVal = { 0, 0 }, modTags = { "block", "influence_mod" }, }, - ["SpellBlockStaffUber1_"] = { type = "Suffix", affix = "of the Elder", "+5% Chance to Block Attack Damage while wielding a Staff", "(8-12)% Chance to Block Spell Damage", statOrder = { 1038, 1046 }, level = 68, group = "SpellBlockAndBlockUber", weightKey = { "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "block", "influence_mod" }, }, - ["CriticalStrikeChanceIfNoCriticalStrikeDealtRecentlyUber1"] = { type = "Suffix", affix = "of Shaping", "+(15-25)% to Global Critical Strike Multiplier", "(80-100)% increased Critical Strike Chance if you haven't dealt a Critical Strike Recently", statOrder = { 1372, 5631 }, level = 68, group = "CriticalStrikeChanceIfNoCriticalStrikeDealtRecentlyUber", weightKey = { "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "influence_mod", "damage", "critical" }, }, - ["PowerChargeOnManaSpentUber1"] = { type = "Suffix", affix = "of Shaping", "Gain a Power Charge after Spending a total of 200 Mana", statOrder = { 7498 }, level = 68, group = "PowerChargeOnManaSpent", weightKey = { "wand_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "power_charge", "influence_mod" }, }, - ["IncreasedDamagePerPowerChargeUber1"] = { type = "Suffix", affix = "of the Elder", "(5-10)% increased Damage per Power Charge", statOrder = { 5766 }, level = 68, group = "IncreasedDamagePerPowerCharge", weightKey = { "wand_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "damage" }, }, - ["ProjectileDamagePerEnemyPiercedUber1_"] = { type = "Suffix", affix = "of Shaping", "Projectiles deal (20-30)% increased Damage with Hits and Ailments for each Enemy Pierced", statOrder = { 9237 }, level = 68, group = "ProjectileDamagePerEnemyPierced", weightKey = { "bow_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "damage" }, }, - ["IncreaseProjectileAttackDamagePerAccuracyUber1"] = { type = "Suffix", affix = "of the Elder", "1% increased Projectile Attack Damage per 200 Accuracy Rating", statOrder = { 4169 }, level = 68, group = "IncreaseProjectileAttackDamagePerAccuracy", weightKey = { "bow_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "damage", "attack" }, }, - ["CriticalStrikeChanceAgainstPoisonedEnemiesUber1"] = { type = "Suffix", affix = "of the Elder", "(80-100)% increased Critical Strike Chance against Poisoned Enemies", statOrder = { 3158 }, level = 68, group = "CriticalStrikeChanceAgainstPoisonedEnemies", weightKey = { "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "influence_mod", "critical" }, }, - ["CriticalStrikeMultiplierAgainstEnemiesOnFullLifeUber1"] = { type = "Suffix", affix = "of Shaping", "+(50-60)% to Critical Strike Multiplier against Enemies that are on Full Life", statOrder = { 3299 }, level = 68, group = "CriticalStrikeMultiplierAgainstEnemiesOnFullLife", weightKey = { "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "influence_mod", "damage", "critical" }, }, - ["GainRareMonsterModsOnKillChanceUber1"] = { type = "Suffix", affix = "of the Elder", "When you Kill a Rare Monster, (15-20)% chance to gain one of its Modifiers for 10 seconds", statOrder = { 6362 }, level = 68, group = "GainRareMonsterModsOnKillChance", weightKey = { "claw_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod" }, }, - ["EnemiesHaveReducedEvasionIfHitRecentlyUber1"] = { type = "Suffix", affix = "of Shaping", "Enemies have 20% reduced Evasion if you have Hit them Recently", statOrder = { 6098 }, level = 68, group = "EnemiesHaveReducedEvasionIfHitRecently", weightKey = { "claw_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "defences", "evasion" }, }, - ["LifeGainPerBlindedEnemyHitUber1"] = { type = "Suffix", affix = "of the Elder", "Gain (35-50) Life per Blinded Enemy Hit with this Weapon", statOrder = { 7577 }, level = 68, group = "LifeGainPerBlindedEnemyHit", weightKey = { "claw_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "influence_mod", "life", "attack" }, }, - ["CriticalChanceAgainstBlindedEnemiesUber1_"] = { type = "Suffix", affix = "of Shaping", "(80-100)% increased Critical Strike Chance against Blinded Enemies", statOrder = { 3272 }, level = 68, group = "CriticalChanceAgainstBlindedEnemies", weightKey = { "claw_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "critical" }, }, - ["AdditionalBlockChancePerEnduranceChargeUber1_"] = { type = "Suffix", affix = "of the Elder", "(20-25)% chance to gain an Endurance Charge when you Block", "+1% Chance to Block Attack Damage per Endurance Charge", statOrder = { 2001, 4397 }, level = 68, group = "AdditionalBlockChancePerEnduranceChargeUber", weightKey = { "sword_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "block", "endurance_charge", "influence_mod" }, }, - ["AccuracyRatingPerFrenzyChargeUber1"] = { type = "Suffix", affix = "of Shaping", "5% increased Accuracy Rating per Frenzy Charge", "(20-25)% chance to gain a Frenzy Charge when you Block", statOrder = { 1927, 5399 }, level = 68, group = "AccuracyRatingPerFrenzyChargeUber", weightKey = { "sword_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "block", "frenzy_charge", "influence_mod", "attack" }, }, - ["MovementSkillsCostNoManaUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Movement Skills Cost no Mana", statOrder = { 478 }, level = 68, group = "DisplayMovementSkillsCostNoMana", weightKey = { "2h_sword_shaper", "sword_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "skill", "resource", "influence_mod", "mana", "gem" }, }, - ["GainEnduranceChargeWhileStationaryUber1"] = { type = "Suffix", affix = "of the Elder", "Gain an Endurance Charge every 4 seconds while Stationary", statOrder = { 9047 }, level = 68, group = "GainEnduranceChargeWhileStationary", weightKey = { "2h_sword_elder", "sword_elder", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "endurance_charge", "influence_mod" }, }, - ["CullingStrikeOnBleedingEnemiesUber1"] = { type = "Suffix", affix = "of the Elder", "(30-49)% increased Physical Damage", "Hits with this Weapon have Culling Strike against Bleeding Enemies", statOrder = { 1117, 7490 }, level = 68, group = "CullingStrikeOnBleedingEnemiesUber", weightKey = { "2h_axe_elder", "axe_elder", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, }, - ["GainEnduranceChargeOnHittingBleedingEnemyUber1"] = { type = "Suffix", affix = "of the Elder", "(5-10)% chance to gain an Endurance Charge when you Hit a Bleeding Enemy", statOrder = { 5395 }, level = 68, group = "GainEnduranceChargeOnHittingBleedingEnemy", weightKey = { "axe_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "endurance_charge", "influence_mod" }, }, - ["GainEnduranceChargeOnCritUber1"] = { type = "Suffix", affix = "of Shaping", "(15-20)% increased Critical Strike Chance", "(5-10)% chance to gain an Endurance Charge on Critical Strike", statOrder = { 1348, 1700 }, level = 68, group = "GainEnduranceChargeOnCritUber", weightKey = { "2h_axe_shaper", "axe_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "endurance_charge", "influence_mod", "attack", "critical" }, }, - ["CriticalStrikeChanceIfKilledRecentlyUber1"] = { type = "Suffix", affix = "of Shaping", "(80-100)% increased Critical Strike Chance if you have Killed Recently", statOrder = { 5629 }, level = 68, group = "CriticalStrikeChanceIfKilledRecently", weightKey = { "axe_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "critical" }, }, - ["EnemiesExplodeOnDeathDealingFireUber1"] = { type = "Suffix", affix = "of Shaping", "Enemies Killed with Attack or Spell Hits Explode, dealing 5% of their Life as Fire Damage", statOrder = { 2579 }, level = 68, group = "EnemiesExplodeOnDeath", weightKey = { "2h_mace_shaper", "mace_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, - ["GainFortifyOnStunChanceUber1"] = { type = "Suffix", affix = "of Shaping", "Melee Hits which Stun have (10-20)% chance to Fortify", statOrder = { 5388 }, level = 68, group = "GainFortifyOnStunChance", weightKey = { "mace_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "attack" }, }, - ["AreaOfEffectPer50StrengthUber1"] = { type = "Suffix", affix = "of the Elder", "3% increased Area of Effect per 50 Strength", statOrder = { 4559 }, level = 68, group = "AreaOfEffectPer50Strength", weightKey = { "mace_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod" }, }, - ["AreaOfEffectIfStunnedEnemyRecentlyUber1___"] = { type = "Suffix", affix = "of the Elder", "(25-35)% increased Area of Effect if you have Stunned an Enemy Recently", statOrder = { 4556 }, level = 68, group = "AreaOfEffectIfStunnedEnemyRecently", weightKey = { "2h_mace_elder", "mace_elder", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "influence_mod" }, }, - ["MeleeWeaponRangeIfKilledRecentlyUber1"] = { type = "Suffix", affix = "of the Elder", "+(0.1-0.2) metres to Melee Strike Range if you have Killed Recently", statOrder = { 8755 }, level = 68, group = "MeleeWeaponRangeIfKilledRecently", weightKey = { "2h_sword_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "attack" }, }, - ["MovementSkillsFortifyOnHitChanceUber1"] = { type = "Suffix", affix = "of Shaping", "Hits with Melee Movement Skills have (30-50)% chance to Fortify", statOrder = { 8737 }, level = 68, group = "MovementSkillsFortifyOnHitChance", weightKey = { "2h_sword_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "attack" }, }, - ["GainEnduranceChargeOnTauntingEnemiesUber1_"] = { type = "Suffix", affix = "of Shaping", "(15-30)% chance to gain an Endurance Charge when you Taunt an Enemy", statOrder = { 5397 }, level = 68, group = "GainEnduranceChargeOnTauntingEnemies", weightKey = { "2h_axe_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "endurance_charge", "influence_mod" }, }, - ["RemoveBleedingOnWarcryUber1"] = { type = "Suffix", affix = "of the Elder", "Removes Bleeding when you use a Warcry", statOrder = { 9396 }, level = 68, group = "RemoveBleedingOnWarcry", weightKey = { "2h_axe_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "bleed", "influence_mod", "physical", "attack", "ailment" }, }, - ["AreaOfEffectPerEnduranceChargeUber1"] = { type = "Suffix", affix = "of the Elder", "5% increased Area of Effect per Endurance Charge", statOrder = { 4561 }, level = 68, group = "AreaOfEffectPerEnduranceCharge", weightKey = { "2h_mace_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod" }, }, - ["StunDurationAndThresholdUber1"] = { type = "Suffix", affix = "of Shaping", "(20-30)% reduced Enemy Stun Threshold", "(20-30)% increased Stun Duration on Enemies", statOrder = { 1400, 1744 }, level = 68, group = "StunDurationAndThresholdUber", weightKey = { "2h_mace_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod" }, }, - ["PhysicalDamageAddedAsRandomElementUber1"] = { type = "Suffix", affix = "of Shaping", "Gain (7-9)% of Physical Damage as Extra Damage of a random Element", statOrder = { 2809 }, level = 68, group = "PhysicalDamageAddedAsRandomElement", weightKey = { "sceptre_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental" }, }, - ["PhysicalDamageAddedAsRandomElementUber2"] = { type = "Suffix", affix = "of Shaping", "Gain (10-12)% of Physical Damage as Extra Damage of a random Element", statOrder = { 2809 }, level = 75, group = "PhysicalDamageAddedAsRandomElement", weightKey = { "sceptre_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental" }, }, - ["PhysicalDamageAddedAsRandomElementUber3"] = { type = "Suffix", affix = "of Shaping", "Gain (13-15)% of Physical Damage as Extra Damage of a random Element", statOrder = { 2809 }, level = 80, group = "PhysicalDamageAddedAsRandomElement", weightKey = { "sceptre_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental" }, }, - ["GrantsCatAspectCrafted"] = { type = "Suffix", affix = "of Farrul", "Grants Level 20 Aspect of the Cat Skill", statOrder = { 597 }, level = 20, group = "GrantsCatAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, }, - ["GrantsBirdAspectCrafted"] = { type = "Suffix", affix = "of Saqawal", "Grants Level 20 Aspect of the Avian Skill", statOrder = { 593 }, level = 20, group = "GrantsBirdAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, }, - ["GrantsSpiderAspectCrafted"] = { type = "Suffix", affix = "of Fenumus", "Grants Level 20 Aspect of the Spider Skill", statOrder = { 621 }, level = 20, group = "GrantsSpiderAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, }, - ["GrantsCrabAspectCrafted"] = { type = "Suffix", affix = "of Craiceann", "Grants Level 20 Aspect of the Crab Skill", statOrder = { 599 }, level = 20, group = "GrantsCrabAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "blue_herring", "skill" }, }, - ["GrantsCatAspectCrafted30"] = { type = "Suffix", affix = "of Farrul", "Grants Level 30 Aspect of the Cat Skill", statOrder = { 597 }, level = 20, group = "GrantsCatAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, }, - ["GrantsBirdAspectCrafted30"] = { type = "Suffix", affix = "of Saqawal", "Grants Level 30 Aspect of the Avian Skill", statOrder = { 593 }, level = 20, group = "GrantsBirdAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, }, - ["GrantsSpiderAspectCrafted30"] = { type = "Suffix", affix = "of Fenumus", "Grants Level 30 Aspect of the Spider Skill", statOrder = { 621 }, level = 20, group = "GrantsSpiderAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, }, - ["GrantsCrabAspectCrafted30"] = { type = "Suffix", affix = "of Craiceann", "Grants Level 30 Aspect of the Crab Skill", statOrder = { 599 }, level = 20, group = "GrantsCrabAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "blue_herring", "skill" }, }, - ["DoubleModSellPrice1"] = { type = "DelveImplicit", affix = "", "Item sells for much more to vendors", statOrder = { 7548 }, level = 1, group = "DoubleModSellPrice1", weightKey = { "default", }, weightVal = { 6000 }, modTags = { }, }, - ["DoubleModSellPrice2"] = { type = "DelveImplicit", affix = "", "Item sells for much more to vendors", statOrder = { 7548 }, level = 1, group = "DoubleModSellPrice2", weightKey = { "default", }, weightVal = { 1000 }, modTags = { }, }, - ["DoubleModSellPrice3_"] = { type = "DelveImplicit", affix = "", "Item sells for much more to vendors", statOrder = { 7548 }, level = 1, group = "DoubleModSellPrice3", weightKey = { "default", }, weightVal = { 6000 }, modTags = { }, }, - ["DoubleModSellPrice4"] = { type = "DelveImplicit", affix = "", "Item sells for much more to vendors", statOrder = { 7548 }, level = 1, group = "DoubleModSellPrice4", weightKey = { "default", }, weightVal = { 1000 }, modTags = { }, }, - ["DoubleModSellPrice5_"] = { type = "DelveImplicit", affix = "", "Item sells for much more to vendors", statOrder = { 7548 }, level = 1, group = "DoubleModSellPrice5", weightKey = { "default", }, weightVal = { 6000 }, modTags = { }, }, - ["DoubleModSellPrice6"] = { type = "DelveImplicit", affix = "", "Item sells for much more to vendors", statOrder = { 7548 }, level = 1, group = "DoubleModSellPrice6", weightKey = { "default", }, weightVal = { 10 }, modTags = { }, }, - ["DoubleModSellPrice7"] = { type = "DelveImplicit", affix = "", "Item sells for much more to vendors", statOrder = { 7548 }, level = 1, group = "DoubleModSellPrice7", weightKey = { "default", }, weightVal = { 2000 }, modTags = { }, }, - ["DoubleModSellPrice8"] = { type = "DelveImplicit", affix = "", "Item sells for much more to vendors", statOrder = { 7548 }, level = 1, group = "DoubleModSellPrice8", weightKey = { "default", }, weightVal = { 1 }, modTags = { }, }, - ["DoubleModSellPrice9"] = { type = "DelveImplicit", affix = "", "Item sells for much more to vendors", statOrder = { 7548 }, level = 1, group = "DoubleModSellPrice9", weightKey = { "default", }, weightVal = { 1000 }, modTags = { }, }, - ["LocalIncreaseSocketedMinionGemLevelDelve"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Minion Gems", statOrder = { 159 }, level = 60, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion", "gem" }, }, - ["MaximumMinionCountZombieDelve"] = { type = "Prefix", affix = "Subterranean", "+1 to maximum number of Raised Zombies", statOrder = { 2037 }, level = 60, group = "MaximumMinionCount", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, }, - ["MaximumMinionCountSkeletonDelve"] = { type = "Prefix", affix = "Subterranean", "+1 to maximum number of Skeletons", statOrder = { 2039 }, level = 60, group = "MaximumMinionCount", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, }, - ["MaximumMinionCountSpectreDelve"] = { type = "Prefix", affix = "Subterranean", "+1 to maximum number of Spectres", statOrder = { 2038 }, level = 60, group = "MaximumMinionCount", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, }, - ["MinionDamageDelve"] = { type = "Suffix", affix = "of the Underground", "Minions deal (25-35)% increased Damage", statOrder = { 1852 }, level = 60, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, - ["MaximumMinionCountAmuletZombieDelve"] = { type = "Prefix", affix = "Subterranean", "+1 to maximum number of Raised Zombies", statOrder = { 2037 }, level = 60, group = "MaximumMinionCount", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, }, - ["MaximumMinionCountAmuletSkeletonDelve__"] = { type = "Prefix", affix = "Subterranean", "+1 to maximum number of Skeletons", statOrder = { 2039 }, level = 60, group = "MaximumMinionCount", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, }, - ["ReducedManaReservationsCostDelve_"] = { type = "Suffix", affix = "of the Underground", "10% increased Mana Reservation Efficiency of Skills", statOrder = { 2109 }, level = 60, group = "ReducedReservation", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, - ["LocalIncreaseSocketedAuraLevelDelve"] = { type = "Suffix", affix = "of the Underground", "+2 to Level of Socketed Aura Gems", statOrder = { 160 }, level = 60, group = "LocalIncreaseSocketedAuraLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "aura", "gem" }, }, - ["ReducedPhysicalDamageTakenDelve"] = { type = "Suffix", affix = "of the Underground", "(3-5)% additional Physical Damage Reduction", statOrder = { 2150 }, level = 60, group = "ReducedPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, }, - ["BleedingDamageChanceDelve__"] = { type = "Suffix", affix = "of the Underground", "Attacks have 25% chance to cause Bleeding", "(30-50)% increased Damage with Bleeding", statOrder = { 2365, 3035 }, level = 60, group = "BleedingDamageChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, - ["CorruptedBloodImmunityDelve"] = { type = "Suffix", affix = "of the Underground", "Corrupted Blood cannot be inflicted on you", statOrder = { 5116 }, level = 60, group = "CorruptedBloodImmunity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "bleed", "physical", "ailment" }, }, - ["DoubleDamageChanceDelve"] = { type = "Suffix", affix = "of the Underground", "10% chance to deal Double Damage", statOrder = { 5369 }, level = 60, group = "DoubleDamageChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, }, - ["SpellAddedPhysicalDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Global Physical Damage", "Adds (11-15) to (23-26) Physical Damage to Spells", statOrder = { 1116, 1287 }, level = 60, group = "SpellAddedPhysicalDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["SpellAddedPhysicalDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Global Physical Damage", "Adds (15-20) to (30-35) Physical Damage to Spells", statOrder = { 1116, 1287 }, level = 60, group = "SpellAddedPhysicalDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["CurseOnHitLevelVulnerabilityDelve"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Vulnerability on Hit", statOrder = { 2399 }, level = 60, group = "CurseOnHitLevelVulnerabilityMod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, }, - ["PhysicalDamageLifeLeechDelve"] = { type = "Prefix", affix = "Subterranean", "0.4% of Physical Damage Leeched as Life", statOrder = { 1547 }, level = 60, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical" }, }, - ["PhysicalDamageTakenAsFireDelve"] = { type = "Suffix", affix = "of the Underground", "10% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2323 }, level = 60, group = "PhysicalDamageTakenAsFireUber", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["MaximumFireResistDelve"] = { type = "Prefix", affix = "Subterranean", "+3% to maximum Fire Resistance", statOrder = { 1505 }, level = 60, group = "MaximumFireResist", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["FireDamageTakenDelve"] = { type = "Prefix", affix = "Subterranean", "(4-6)% reduced Fire Damage taken", statOrder = { 2119 }, level = 60, group = "FireDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire" }, }, - ["LocalFireDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Fire Damage", "Adds (18-24) to (36-42) Fire Damage", statOrder = { 1241, 1246 }, level = 60, group = "LocalFireDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["LocalFireDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Fire Damage", "Adds (31-42) to (64-74) Fire Damage", statOrder = { 1241, 1246 }, level = 60, group = "LocalFireDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["SpellAddedFireDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Fire Damage", "Adds (14-20) to (29-34) Fire Damage to Spells", statOrder = { 1241, 1288 }, level = 60, group = "SpellAddedFireDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Fire Damage", "Adds (20-26) to (39-46) Fire Damage to Spells", statOrder = { 1241, 1288 }, level = 60, group = "SpellAddedFireDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["CurseOnHitLevelFlammabilityDelve"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Flammability on Hit", statOrder = { 2406 }, level = 60, group = "FlammabilityOnHitLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, }, - ["FireDamageLifeLeechDelve"] = { type = "Prefix", affix = "Subterranean", "0.4% of Fire Damage Leeched as Life", statOrder = { 1551 }, level = 60, group = "FireDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "fire" }, }, - ["PhysicalDamageTakenAsColdDelve"] = { type = "Suffix", affix = "of the Underground", "10% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2324 }, level = 60, group = "PhysicalDamageTakenAsColdUber", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["MaximumColdResistDelve"] = { type = "Prefix", affix = "Subterranean", "+3% to maximum Cold Resistance", statOrder = { 1511 }, level = 60, group = "MaximumColdResist", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["ColdDamageTakenDelve"] = { type = "Prefix", affix = "Subterranean", "(4-6)% reduced Cold Damage taken", statOrder = { 3255 }, level = 60, group = "ColdDamageTakenPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold" }, }, - ["LocalColdDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Cold Damage", "Adds (15-20) to (30-35) Cold Damage", statOrder = { 1250, 1255 }, level = 60, group = "LocalColdDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["LocalColdDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Cold Damage", "Adds (26-35) to (52-60) Cold Damage", statOrder = { 1250, 1255 }, level = 60, group = "LocalColdDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["SpellAddedColdDamageHybridDelve_"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Cold Damage", "Adds (12-16) to (24-28) Cold Damage to Spells", statOrder = { 1250, 1289 }, level = 60, group = "SpellAddedColdDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Cold Damage", "Adds (18-24) to (36-42) Cold Damage to Spells", statOrder = { 1250, 1289 }, level = 60, group = "SpellAddedColdDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["CurseOnHitLevelFrostbiteDelve"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Frostbite on Hit", statOrder = { 2407 }, level = 60, group = "FrostbiteOnHitLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, }, - ["ColdDamageLifeLeechDelve"] = { type = "Prefix", affix = "Subterranean", "0.4% of Cold Damage Leeched as Life", statOrder = { 1556 }, level = 60, group = "ColdDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "cold" }, }, - ["PhysicalDamageTakenAsLightningDelve_"] = { type = "Suffix", affix = "of the Underground", "10% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2325 }, level = 60, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["MaximumLightningResistDelve"] = { type = "Prefix", affix = "Subterranean", "+3% to maximum Lightning Resistance", statOrder = { 1516 }, level = 60, group = "MaximumLightningResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["LightningDamageTakenDelve"] = { type = "Prefix", affix = "Subterranean", "(4-6)% reduced Lightning Damage taken", statOrder = { 3254 }, level = 60, group = "LightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning" }, }, - ["LocalLightningDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Lightning Damage", "Adds (2-5) to (63-66) Lightning Damage", statOrder = { 1261, 1266 }, level = 60, group = "LocalLightningDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["LocalLightningDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Lightning Damage", "Adds (2-9) to (110-116) Lightning Damage", statOrder = { 1261, 1266 }, level = 60, group = "LocalLightningDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["SpellAddedLightningDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Lightning Damage", "Adds (1-4) to (50-53) Lightning Damage to Spells", statOrder = { 1261, 1290 }, level = 60, group = "SpellAddedLightningDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Lightning Damage", "Adds (2-6) to (76-80) Lightning Damage to Spells", statOrder = { 1261, 1290 }, level = 60, group = "SpellAddedLightningDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["CurseOnHitLevelConductivityDelve"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Conductivity on Hit", statOrder = { 2403 }, level = 60, group = "ConductivityOnHitLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, }, - ["LightningDamageLifeLeechDelve__"] = { type = "Prefix", affix = "Subterranean", "0.4% of Lightning Damage Leeched as Life", statOrder = { 1560 }, level = 60, group = "LightningDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "lightning" }, }, - ["PhysicalDamageTakenAsChaosDelve"] = { type = "Suffix", affix = "of the Underground", "10% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2327 }, level = 60, group = "PhysicalDamageTakenAsChaosUber", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "chaos" }, }, - ["MaximumChaosResistDelve"] = { type = "Prefix", affix = "Subterranean", "+3% to maximum Chaos Resistance", statOrder = { 1521 }, level = 60, group = "MaximumChaosResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "resistance" }, }, - ["ChaosDamageTakenDelve"] = { type = "Prefix", affix = "Subterranean", "(4-6)% reduced Chaos Damage taken", statOrder = { 2120 }, level = 60, group = "ChaosDamageTakenPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos" }, }, - ["LocalChaosDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(15-30)% increased Chaos Damage", "Adds (18-28) to (39-49) Chaos Damage", statOrder = { 1269, 1274 }, level = 60, group = "LocalChaosDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["LocalChaosDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(15-30)% increased Chaos Damage", "Adds (32-50) to (68-86) Chaos Damage", statOrder = { 1269, 1274 }, level = 60, group = "LocalChaosDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["SpellAddedChaosDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(15-30)% increased Chaos Damage", "Adds (11-15) to (23-26) Chaos Damage to Spells", statOrder = { 1269, 1291 }, level = 60, group = "SpellAddedChaosDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["SpellAddedChaosDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(15-30)% increased Chaos Damage", "Adds (15-20) to (30-35) Chaos Damage to Spells", statOrder = { 1269, 1291 }, level = 60, group = "SpellAddedChaosDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["CurseOnHitLevelDespairDelve"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Despair on Hit", statOrder = { 2404 }, level = 60, group = "CurseOnHitDespairMod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, }, - ["ChaosDamageLifeLeechDelve"] = { type = "Prefix", affix = "Subterranean", "0.4% of Chaos Damage Leeched as Life", statOrder = { 1563 }, level = 60, group = "ChaosDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "chaos" }, }, - ["CurseEffectivenessDelve"] = { type = "Suffix", affix = "of the Underground", "(10-15)% increased Effect of your Curses", statOrder = { 2472 }, level = 60, group = "CurseEffectiveness", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, }, - ["AdditionalCurseOnEnemiesDelve"] = { type = "Prefix", affix = "Subterranean", "You can apply an additional Curse", statOrder = { 2045 }, level = 60, group = "AdditionalCurseOnEnemies", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, }, - ["IncreaseSocketedCurseGemLevelDelve_"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Curse Gems", statOrder = { 163 }, level = 60, group = "IncreaseSocketedCurseGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "gem", "curse" }, }, - ["CurseAreaOfEffectDelve"] = { type = "Suffix", affix = "of the Underground", "(25-40)% increased Area of Effect of Hex Skills", statOrder = { 2102 }, level = 60, group = "CurseAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, }, - ["CurseDurationDelve"] = { type = "Suffix", affix = "of the Underground", "Curse Skills have (25-40)% increased Skill Effect Duration", statOrder = { 5703 }, level = 60, group = "CurseDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, }, - ["IncreasedDamagePerCurseDelve"] = { type = "Prefix", affix = "Subterranean", "(8-10)% increased Damage with Hits and Ailments per Curse on Enemy", statOrder = { 2886 }, level = 60, group = "IncreasedDamagePerCurse", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, }, - ["ManaRegenerationDelve"] = { type = "Suffix", affix = "of the Underground", "(30-50)% increased Mana Regeneration Rate", statOrder = { 1466 }, level = 60, group = "ManaRegeneration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, - ["PercentDamageGoesToManaDelve"] = { type = "Suffix", affix = "of the Underground", "(5-8)% of Damage taken Recouped as Mana", statOrder = { 2331 }, level = 60, group = "PercentDamageGoesToMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, - ["AddedManaRegenerationDelve"] = { type = "Suffix", affix = "of the Underground", "Regenerate (3-5) Mana per second", statOrder = { 1464 }, level = 60, group = "AddedManaRegeneration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, - ["MaximumManaIncreasePercentDelve_"] = { type = "Prefix", affix = "Subterranean", "(10-15)% increased maximum Mana", statOrder = { 1462 }, level = 60, group = "MaximumManaIncreasePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, - ["ImpaleChanceDelve__"] = { type = "Prefix", affix = "Subterranean", "(5-10)% chance to Impale Enemies on Hit with Attacks", statOrder = { 4739 }, level = 60, group = "AttackImpaleChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "attack" }, }, - ["FasterBleedDelve"] = { type = "Suffix", affix = "of the Underground", "Bleeding you inflict deals Damage (5-10)% faster", statOrder = { 6214 }, level = 60, group = "FasterBleedDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, - ["AddedPhysicalSpellDamageDelve___"] = { type = "Prefix", affix = "Subterranean", "Adds (11-22) to (34-46) Physical Damage to Spells", statOrder = { 1287 }, level = 60, group = "SpellAddedPhysicalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["LightningAilmentEffectDelve"] = { type = "Suffix", affix = "of the Underground", "(15-25)% increased Effect of Lightning Ailments", statOrder = { 7045 }, level = 60, group = "LightningAilmentEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["PhysicalDamageConvertedToLightningDelve"] = { type = "Prefix", affix = "Subterranean", "10% of Physical Damage Converted to Lightning Damage", statOrder = { 1838 }, level = 60, group = "ConvertPhysicalToLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, - ["ColdAilmentDurationDelve"] = { type = "Suffix", affix = "of the Underground", "(15-25)% increased Duration of Cold Ailments", statOrder = { 5503 }, level = 60, group = "ColdAilmentDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["PhysicalDamageConvertedToColdDelve"] = { type = "Prefix", affix = "Subterranean", "10% of Physical Damage Converted to Cold Damage", statOrder = { 1836 }, level = 60, group = "ConvertPhysicalToCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, - ["FasterIgniteDelve_"] = { type = "Suffix", affix = "of the Underground", "Ignites you inflict deal Damage (5-10)% faster", statOrder = { 2440 }, level = 60, group = "FasterIgniteDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, - ["PhysicalDamageConvertedToFireDelve"] = { type = "Prefix", affix = "Subterranean", "10% of Physical Damage Converted to Fire Damage", statOrder = { 1834 }, level = 60, group = "ConvertPhysicalToFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, - ["FasterPoisonDelve_"] = { type = "Suffix", affix = "of the Underground", "Poisons you inflict deal Damage (5-10)% faster", statOrder = { 6215 }, level = 60, group = "FasterPoisonDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["ZeroChaosResistanceDelve"] = { type = "Suffix", affix = "of the Underground", "Chaos Resistance is Zero", statOrder = { 10174 }, level = 60, group = "ZeroChaosResistanceDelve", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "resistance" }, }, - ["MinionCriticalStrikeMultiplierDelve"] = { type = "Suffix", affix = "of the Underground", "Minions have +(30-38)% to Critical Strike Multiplier", statOrder = { 8831 }, level = 60, group = "MinionCriticalStrikeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion", "critical" }, }, - ["MinionLargerAggroRadiusDelve"] = { type = "Suffix", affix = "of the Underground", "Minions are Aggressive", statOrder = { 10207 }, level = 60, group = "MinionLargerAggroRadius", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, }, - ["MinionAreaOfEffectDelve"] = { type = "Prefix", affix = "Subterranean", "Minions have (20-30)% increased Area of Effect", statOrder = { 2895 }, level = 60, group = "MinionAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, }, - ["MinionLeechDelve___"] = { type = "Prefix", affix = "Subterranean", "Minions Leech 1% of Damage as Life", statOrder = { 2784 }, level = 60, group = "MinionLifeLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "minion" }, }, - ["SpiritAndPhantasmRefreshOnUniqueDelve"] = { type = "Prefix", affix = "Subterranean", "Summoned Phantasms have 5% chance to refresh their Duration when they Hit a Rare or Unique Enemy", "Summoned Raging Spirits have 5% chance to refresh their Duration when they Hit a Rare or Unique Enemy", statOrder = { 9126, 9302 }, level = 60, group = "SpiritAndPhantasmRefreshOnUnique", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, }, - ["AuraEffectOnEnemiesDelve_____"] = { type = "Suffix", affix = "of the Underground", "(12-18)% increased Effect of Non-Curse Auras from your Skills on Enemies", statOrder = { 3430 }, level = 60, group = "AuraEffectOnEnemies", weightKey = { "default", }, weightVal = { 0 }, modTags = { "aura" }, }, - ["LifeReservationEfficiencyDelve"] = { type = "Prefix", affix = "Subterranean", "10% increased Life Reservation Efficiency of Skills", statOrder = { 2103 }, level = 60, group = "LifeReservationEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, - ["DoomGainRateDelve"] = { type = "Prefix", affix = "Subterranean", "(40-60)% increased Damage with Hits and Ailments against Cursed Enemies", statOrder = { 6785 }, level = 60, group = "HitAndAilmentDamageCursedEnemies", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "curse" }, }, - ["MarkEffectDelve"] = { type = "Suffix", affix = "of the Underground", "(15-25)% increased Effect of your Marks", statOrder = { 2474 }, level = 60, group = "MarkEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, }, - ["DelveWeaponFirePenetration1h1_"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (5-7)% Fire Resistance", statOrder = { 2853 }, level = 1, group = "FireResistancePenetration", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["DelveWeaponFirePenetration2h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (12-15)% Fire Resistance", statOrder = { 2853 }, level = 1, group = "FireResistancePenetration", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["DelveJewelFirePenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates 1% Fire Resistance", statOrder = { 2853 }, level = 1, group = "FireResistancePenetration", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["DelveArmourFireResistance1"] = { type = "Prefix", affix = "Subterranean", "+(20-35)% to Fire Resistance", statOrder = { 1507 }, level = 1, group = "FireResistancePrefix", weightKey = { "quiver", "shield", "body_armour", "boots", "gloves", "default", }, weightVal = { 0, 0, 0, 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["DelveBodyArmourAvoidFire1_"] = { type = "Prefix", affix = "Subterranean", "(8-10)% chance to Avoid Fire Damage from Hits", statOrder = { 3239 }, level = 1, group = "FireDamageAvoidance", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "elemental", "fire" }, }, - ["DelveGlovesFireDamageToSpells1"] = { type = "Prefix", affix = "Subterranean", "Adds (20-25) to (26-35) Fire Damage", statOrder = { 1243 }, level = 1, group = "GlobalAddedFireDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["DelveBootsSocketedFireGemLevel1"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Fire Gems", statOrder = { 146 }, level = 1, group = "LocalIncreaseSocketedFireGemLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "fire", "gem" }, }, - ["DelveRingFireLeech1"] = { type = "Prefix", affix = "Subterranean", "0.2% of Fire Damage Leeched as Life", statOrder = { 1551 }, level = 1, group = "FireDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "elemental", "fire" }, }, - ["DelveHelmetEnemyFireResistanceAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies have -9% to Fire Resistance", statOrder = { 7518 }, level = 1, group = "NearbyEnemyFireDamageResistance", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "resistance" }, }, - ["DelveJewelryFireDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Fire Damage", statOrder = { 1241 }, level = 1, group = "FireDamagePercentagePrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["DelveWeaponColdPenetration1h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (5-7)% Cold Resistance", statOrder = { 2855 }, level = 1, group = "ColdResistancePenetration", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["DelveWeaponColdPenetration2h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (12-15)% Cold Resistance", statOrder = { 2855 }, level = 1, group = "ColdResistancePenetration", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["DelveJewelColdPenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates 1% Cold Resistance", statOrder = { 2855 }, level = 1, group = "ColdResistancePenetration", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["DelveArmourColdResistance1"] = { type = "Prefix", affix = "Subterranean", "+(20-35)% to Cold Resistance", statOrder = { 1513 }, level = 1, group = "ColdResistancePrefix", weightKey = { "quiver", "shield", "body_armour", "boots", "gloves", "default", }, weightVal = { 0, 0, 0, 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["DelveBodyArmourAvoidCold1"] = { type = "Prefix", affix = "Subterranean", "(6-10)% chance to Avoid Cold Damage from Hits", statOrder = { 3240 }, level = 1, group = "ColdDamageAvoidance", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "elemental", "cold" }, }, - ["DelveGlovesColdDamageToSpells1"] = { type = "Prefix", affix = "Subterranean", "Adds (20-25) to (26-35) Cold Damage", statOrder = { 1252 }, level = 1, group = "GlobalAddedColdDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["DelveBootsSocketedColdGemLevel1"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Cold Gems", statOrder = { 147 }, level = 1, group = "LocalIncreaseSocketedColdGemLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "cold", "gem" }, }, - ["DelveRingColdLeech1"] = { type = "Prefix", affix = "Subterranean", "0.2% of Cold Damage Leeched as Life", statOrder = { 1556 }, level = 1, group = "ColdDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "elemental", "cold" }, }, - ["DelveHelmetEnemyColdResistanceAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies have -9% to Cold Resistance", statOrder = { 7516 }, level = 1, group = "NearbyEnemyColdDamageResistance", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "resistance" }, }, - ["DelveJewelryColdDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Cold Damage", statOrder = { 1250 }, level = 1, group = "ColdDamagePercentagePrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["DelveWeaponLightningPenetration1h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (5-7)% Lightning Resistance", statOrder = { 2856 }, level = 1, group = "LightningResistancePenetration", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["DelveWeaponLightningPenetration2h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (12-15)% Lightning Resistance", statOrder = { 2856 }, level = 1, group = "LightningResistancePenetration", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["DelveJewelLightningPenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates 1% Lightning Resistance", statOrder = { 2856 }, level = 1, group = "LightningResistancePenetration", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["DelveArmourLightningResistance1"] = { type = "Prefix", affix = "Subterranean", "+(20-35)% to Lightning Resistance", statOrder = { 1518 }, level = 1, group = "LightningResistancePrefix", weightKey = { "quiver", "shield", "body_armour", "boots", "gloves", "default", }, weightVal = { 0, 0, 0, 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["DelveBodyArmourAvoidLightning1"] = { type = "Prefix", affix = "Subterranean", "(6-10)% chance to Avoid Lightning Damage from Hits", statOrder = { 3241 }, level = 1, group = "LightningDamageAvoidance", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "elemental", "lightning" }, }, - ["DelveGlovesLightningDamageToSpells1"] = { type = "Prefix", affix = "Subterranean", "Adds 1 to (48-60) Lightning Damage", statOrder = { 1263 }, level = 1, group = "GlobalAddedLightningDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["DelveBootsSocketedLightningGemLevel1_"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Lightning Gems", statOrder = { 148 }, level = 1, group = "LocalIncreaseSocketedLightningGemLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "lightning", "gem" }, }, - ["DelveRingLightningLeech1_"] = { type = "Prefix", affix = "Subterranean", "0.2% of Lightning Damage Leeched as Life", statOrder = { 1560 }, level = 1, group = "LightningDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, }, - ["DelveHelmetEnemyLightningResistanceAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies have -9% to Lightning Resistance", statOrder = { 7520 }, level = 1, group = "NearbyEnemyLightningDamageResistance", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "resistance" }, }, - ["DelveJewelryLightningDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Lightning Damage", statOrder = { 1261 }, level = 1, group = "LightningDamagePercentagePrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["DelveWeaponIntimidateOnHit1"] = { type = "Suffix", affix = "of the Underground", "15% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 7480 }, level = 1, group = "LocalChanceToIntimidateOnHit", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "attack" }, }, - ["DelveArmourPhysDamageTaken1"] = { type = "Suffix", affix = "of the Underground", "-(75-50) Physical Damage taken from Hits", statOrder = { 2112 }, level = 1, group = "FlatPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "physical" }, }, - ["DelveArmourPhysDamageTakenv2_1"] = { type = "Suffix", affix = "of the Underground", "-(34-20) Physical Damage taken from Hits", statOrder = { 2112 }, level = 1, group = "FlatPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical" }, }, - ["DelveArmourPhysDamageTakenv2_2"] = { type = "Suffix", affix = "of the Underground", "-(49-35) Physical Damage taken from Hits", statOrder = { 2112 }, level = 30, group = "FlatPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical" }, }, - ["DelveArmourPhysDamageTakenv2_3"] = { type = "Suffix", affix = "of the Underground", "-(75-50) Physical Damage taken from Hits", statOrder = { 2112 }, level = 60, group = "FlatPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical" }, }, - ["DelveShieldPhysicalDamageReductionRating1"] = { type = "Prefix", affix = "Subterranean", "(3-5)% additional Physical Damage Reduction", statOrder = { 2150 }, level = 1, group = "ReducedPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "physical" }, }, - ["DelveBootsPhyiscalDamageReductionRatingWhileMoving1"] = { type = "Suffix", affix = "of the Underground", "(3-5)% additional Physical Damage Reduction while moving", statOrder = { 4438 }, level = 1, group = "AdditionalPhysicalDamageReductionWhileMoving", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical" }, }, - ["DelveGlovesGlobalAddedPhysicalDamage1"] = { type = "Prefix", affix = "Subterranean", "Adds (6-8) to (9-11) Physical Damage", statOrder = { 1150 }, level = 1, group = "GlobalAddedPhysicalDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["DelveRingPhysicalLeech1"] = { type = "Prefix", affix = "Subterranean", "0.2% of Physical Damage Leeched as Life", statOrder = { 1547 }, level = 1, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "physical" }, }, - ["DelveHelmetEnemyPhysicalDamageTakenAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies take 9% increased Physical Damage", statOrder = { 7522 }, level = 1, group = "NearbyEnemyPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["DelveJewelryPhysicalDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Global Physical Damage", statOrder = { 1116 }, level = 1, group = "PhysicalDamagePercentPrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["DelveJewelPhysicalDamageOverTimeTaken1"] = { type = "Prefix", affix = "Subterranean", "(1-2)% reduced Physical Damage taken over time", statOrder = { 4856 }, level = 1, group = "PhysicalDamageOverTimeTaken", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "physical" }, }, - ["DelveWeaponDespairOnHit1h1"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Despair on Hit", statOrder = { 2404 }, level = 1, group = "CurseOnHitDespair", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "caster", "curse" }, }, - ["DelveWeaponDespairOnHit2h1"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Despair on Hit", statOrder = { 2404 }, level = 1, group = "CurseOnHitDespair", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "caster", "curse" }, }, - ["DelveArmourChaosResistance1_"] = { type = "Prefix", affix = "Subterranean", "+(20-35)% to Chaos Resistance", statOrder = { 1522 }, level = 1, group = "ChaosResistancePrefix", weightKey = { "abyss_jewel", "jewel", "quiver", "shield", "body_armour", "boots", "gloves", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "chaos", "resistance" }, }, - ["DelveBodyArmourChaosDegenResist1"] = { type = "Suffix", affix = "of the Underground", "+(30-40)% Chaos Resistance against Damage Over Time", statOrder = { 5442 }, level = 1, group = "ChaosResistanceAgainstDamageOverTime", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "chaos", "resistance" }, }, - ["DelveGlovesChaosDamageToSpells1"] = { type = "Prefix", affix = "Subterranean", "Adds (15-20) to (21-30) Chaos Damage", statOrder = { 1270 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["DelveBootsSocketedChaosGemLevel1"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Chaos Gems", statOrder = { 149 }, level = 1, group = "LocalIncreaseSocketedChaosGemLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "chaos", "gem" }, }, - ["DelveRingChaosLeech1"] = { type = "Prefix", affix = "Subterranean", "0.2% of Chaos Damage Leeched as Life", statOrder = { 1563 }, level = 1, group = "ChaosDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "chaos" }, }, - ["DelveHelmetEnemyChaosResistanceAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies have -9% to Chaos Resistance", statOrder = { 7515 }, level = 1, group = "NearbyEnemyChaosDamageResistance", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "chaos_damage", "damage", "chaos", "resistance" }, }, - ["DelveJewelryChaosDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Chaos Damage", statOrder = { 1269 }, level = 1, group = "IncreasedChaosDamagePrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["DelveJewelChaosDamage1"] = { type = "Suffix", affix = "of the Underground", "(13-19)% increased Chaos Damage", statOrder = { 1269 }, level = 1, group = "IncreasedChaosDamage", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["DelveWeaponDamageOnFullLife1h1__"] = { type = "Suffix", affix = "of the Underground", "(50-60)% increased Damage when on Full Life", statOrder = { 5774 }, level = 1, group = "DamageOnFullLife", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage" }, }, - ["DelveWeaponDamageOnFullLife2h1"] = { type = "Suffix", affix = "of the Underground", "(100-120)% increased Damage when on Full Life", statOrder = { 5774 }, level = 1, group = "DamageOnFullLife", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage" }, }, - ["DelveBodyArmourLife1"] = { type = "Prefix", affix = "Subterranean", "+(25-40) to maximum Life", "(3-5)% increased maximum Life", statOrder = { 1451, 1453 }, level = 1, group = "LifeAndPercentLife", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "life" }, }, - ["DelveNonBodyArmourLife1"] = { type = "Prefix", affix = "Subterranean", "+(15-25) to maximum Life", "(2-3)% increased maximum Life", statOrder = { 1451, 1453 }, level = 1, group = "LifeAndPercentLife", weightKey = { "abyss_jewel", "jewel", "shield", "boots", "helmet", "gloves", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "resource", "life" }, }, - ["DelveArmourLifeRegen1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 1% of Life per second", statOrder = { 1823 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { "abyss_jewel", "jewel", "quiver", "shield", "body_armour", "helmet", "gloves", "boots", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 2000, 2000, 0 }, modTags = { "resource", "life" }, }, - ["DelveJewelryFlaskLifeRecovery1"] = { type = "Suffix", affix = "of the Underground", "(20-30)% increased Life Recovery from Flasks", statOrder = { 1936 }, level = 1, group = "GlobalFlaskLifeRecovery", weightKey = { "abyss_jewel", "jewel", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "flask", "resource", "life" }, }, - ["DelveWeaponArmourIfYouHitRecently1h1"] = { type = "Suffix", affix = "of the Underground", "+500 to Armour if you've Hit an Enemy Recently", statOrder = { 9159 }, level = 1, group = "PhysicalDamageReductionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "sceptre", "mace", "axe", "sword", "default", }, weightVal = { 0, 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "armour" }, }, - ["DelveJewelLifeRegeneration1"] = { type = "Prefix", affix = "Subterranean", "Regenerate 0.3% of Life per second", statOrder = { 1823 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resource", "life" }, }, - ["DelveWeaponArmourIfYouHitRecently2h1"] = { type = "Suffix", affix = "of the Underground", "+1000 to Armour if you've Hit an Enemy Recently", statOrder = { 9159 }, level = 1, group = "PhysicalDamageReductionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "staff", "mace", "axe", "sword", "default", }, weightVal = { 0, 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "armour" }, }, - ["DelveJewelArmourIfYouHitRecently1"] = { type = "Suffix", affix = "of the Underground", "+(250-300) to Armour if you've Hit an Enemy Recently", statOrder = { 9159 }, level = 1, group = "PhysicalDamageReductionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 300, 300, 0 }, modTags = { "defences", "armour" }, }, - ["DelveWeaponEvasionIfYouHitRecently1h1"] = { type = "Suffix", affix = "of the Underground", "+500 to Evasion Rating if Hit an Enemy Recently", statOrder = { 6162 }, level = 1, group = "EvasionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "axe", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "evasion" }, }, - ["DelveWeaponEvasionIfYouHitRecently2h1"] = { type = "Suffix", affix = "of the Underground", "+1000 to Evasion Rating if Hit an Enemy Recently", statOrder = { 6162 }, level = 1, group = "EvasionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "axe", "sword", "bow", "default", }, weightVal = { 0, 0, 0, 1600, 1600, 1600, 0 }, modTags = { "defences", "evasion" }, }, - ["DelveJewelEvasionIfYouHitRecently1"] = { type = "Suffix", affix = "of the Underground", "+(250-300) to Evasion Rating if Hit an Enemy Recently", statOrder = { 6162 }, level = 1, group = "EvasionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 300, 300, 0 }, modTags = { "defences", "evasion" }, }, - ["DelveWeaponEnergyShieldRegenIfYouHitRecently1h1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.5% of Energy Shield per second if you've Hit an Enemy Recently", statOrder = { 6135 }, level = 1, group = "EnergyShieldRegenerationRatePerMinuteIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "dagger", "claw", "wand", "sceptre", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "energy_shield" }, }, - ["DelveWeaponEnergyShieldRegenIfYouHitRecently2h1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 1% of Energy Shield per second if you've Hit an Enemy Recently", statOrder = { 6135 }, level = 1, group = "EnergyShieldRegenerationRatePerMinuteIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "staff", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["DelveJewelEnergyShieldRegenIfYouHitRecently1_"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.3% of Energy Shield per second if you've Hit an Enemy Recently", statOrder = { 6135 }, level = 1, group = "EnergyShieldRegenerationRatePerMinuteIfYouHaveHitAnEnemyRecently", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 300, 300, 0 }, modTags = { "defences", "energy_shield" }, }, - ["DelveArmourArmour1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Armour", statOrder = { 1425 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercentSuffix", weightKey = { "abyss_jewel", "jewel", "str_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour" }, }, - ["DelveArmourEvasion1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Evasion Rating", statOrder = { 1433 }, level = 1, group = "LocalEvasionRatingIncreasePercentSuffix", weightKey = { "abyss_jewel", "jewel", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "evasion" }, }, - ["DelveArmourEnergyShield1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Energy Shield", statOrder = { 1442 }, level = 1, group = "LocalEnergyShieldPercentSuffix", weightKey = { "abyss_jewel", "jewel", "int_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, }, - ["DelveArmourArmourAndEvasion1_"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Armour and Evasion", statOrder = { 1436 }, level = 1, group = "LocalArmourAndEvasionSuffix", weightKey = { "abyss_jewel", "jewel", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour", "evasion" }, }, - ["DelveArmourArmourAndEnergyShield1__"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Armour and Energy Shield", statOrder = { 1435 }, level = 1, group = "LocalArmourAndEnergyShieldSuffix", weightKey = { "abyss_jewel", "jewel", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, - ["DelveArmourEvasionAndEnergyShield1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Evasion and Energy Shield", statOrder = { 1437 }, level = 1, group = "LocalEvasionAndEnergyShieldSuffix", weightKey = { "abyss_jewel", "jewel", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, - ["DelveArmourDefences1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Armour, Evasion and Energy Shield", statOrder = { 1438 }, level = 1, group = "LocalArmourAndEvasionAndEnergyShieldSuffix", weightKey = { "abyss_jewel", "jewel", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, }, - ["DelveArmourQuality"] = { type = "Suffix", affix = "of the Underground", "+(10-20)% to Quality", statOrder = { 7547 }, level = 1, group = "LocalItemQuality", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { }, }, - ["DelveArmourEnergyShieldRegen"] = { type = "Suffix", affix = "of the Underground", "Regenerate 1% of Energy Shield per second", statOrder = { 2521 }, level = 1, group = "EnergyShieldRegenerationPerMinute", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "helmet", "int_armour", "dex_int_armour", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["DelveArmourEnergyShieldLeechSpells_"] = { type = "Suffix", affix = "of the Underground", "0.3% of Spell Damage Leeched as Energy Shield", statOrder = { 1603 }, level = 1, group = "EnergyShieldLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "boots", "helmet", "int_armour", "dex_int_armour", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["DelveArmourSpellBlock__"] = { type = "Suffix", affix = "of the Underground", "(3-4)% Chance to Block Spell Damage", statOrder = { 1046 }, level = 1, group = "SpellBlockPercentage", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "boots", "gloves", "int_armour", "dex_int_armour", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "block" }, }, - ["DelveArmourDodgeAndSpellDodge_"] = { type = "Suffix", affix = "of the Underground", "+(4-6)% chance to Suppress Spell Damage", statOrder = { 1031 }, level = 1, group = "ChanceToDodgeAndSpellDodge", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "helmet", "dex_armour", "dex_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { }, }, - ["DelveArmourBlindChance"] = { type = "Suffix", affix = "of the Underground", "(4-6)% Global chance to Blind Enemies on hit", statOrder = { 2830 }, level = 1, group = "GlobalChanceToBlindOnHit", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "boots", "helmet", "dex_armour", "dex_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { }, }, - ["DelveArmourEvasionOnFullLife"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Global Evasion Rating when on Full Life", statOrder = { 6169 }, level = 1, group = "GlobalEvasionRatingPercentOnFullLife", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "boots", "dex_armour", "dex_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "defences", "evasion" }, }, - ["DelveArmourDoubleArmourEffectOnHit"] = { type = "Suffix", affix = "of the Underground", "(10-20)% chance to Defend with 200% of Armour", statOrder = { 5381 }, level = 1, group = "ChanceWhenHitForArmourToBeDoubled", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "helmet", "str_armour", "str_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "defences", "armour" }, }, - ["DelveArmourAttackBlock"] = { type = "Suffix", affix = "of the Underground", "(3-4)% Chance to Block Attack Damage", statOrder = { 1027 }, level = 1, group = "BlockPercent", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "boots", "helmet", "str_armour", "str_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "block" }, }, - ["DelveArmourFortifyEffect"] = { type = "Suffix", affix = "of the Underground", "+(3-5) to maximum Fortification", statOrder = { 8672 }, level = 1, group = "FortifyEffect", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "boots", "str_armour", "str_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { }, }, - ["DelveJewelryIncreasedEnergyShieldFromBodyArmour1"] = { type = "Suffix", affix = "of the Underground", "(20-30)% increased Energy Shield from Equipped Body Armour", statOrder = { 8685 }, level = 1, group = "MaximumEnergyShieldFromBodyArmour", weightKey = { "abyss_jewel", "jewel", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 0 }, modTags = { "defences", "energy_shield" }, }, - ["DelveJewelryChanceWhenHitForArmourToBeDoubled1"] = { type = "Suffix", affix = "of the Underground", "20% chance to Defend with 200% of Armour", statOrder = { 5381 }, level = 1, group = "ChanceWhenHitForArmourToBeDoubled", weightKey = { "abyss_jewel", "jewel", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 0 }, modTags = { "defences", "armour" }, }, - ["DelveJewelryChanceToEvade"] = { type = "Suffix", affix = "of the Underground", "+(1-2)% chance to Evade Attack Hits", statOrder = { 5383 }, level = 1, group = "AdditionalChanceToEvade", weightKey = { "abyss_jewel", "jewel", "quiver", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "evasion" }, }, - ["DelveJewelGlobalDefences1"] = { type = "Prefix", affix = "Subterranean", "(4-6)% increased Global Defences", statOrder = { 2707 }, level = 1, group = "AllDefences", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "defences" }, }, - ["DelveWeaponLocalChanceForPoisonDamage100FinalInflictedWithThisWeapon1"] = { type = "Prefix", affix = "Subterranean", "60% chance for Poisons inflicted with this Weapon to deal 100% more Damage", statOrder = { 7477 }, level = 1, group = "LocalChanceForPoisonDamage100FinalInflictedWithThisWeapon", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "attack", "ailment" }, }, - ["DelveWeaponLocalChanceForBleedingDamage100FinalInflictedWithThisWeapon1"] = { type = "Prefix", affix = "Subterranean", "60% chance for Bleeding inflicted with this Weapon to deal 100% more Damage", statOrder = { 7476 }, level = 1, group = "LocalChanceForBleedingDamage100FinalInflictedWithThisWeapon", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, - ["DelveArmourAvoidPoison1"] = { type = "Suffix", affix = "of the Underground", "50% chance to Avoid being Poisoned", statOrder = { 1730 }, level = 1, group = "ChanceToAvoidPoison", weightKey = { "abyss_jewel", "jewel", "shield", "helmet", "boots", "body_armour", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["DelveArmourAvoidBleeding1"] = { type = "Suffix", affix = "of the Underground", "50% chance to Avoid Bleeding", statOrder = { 4077 }, level = 1, group = "ChanceToAvoidBleeding", weightKey = { "abyss_jewel", "jewel", "shield", "helmet", "boots", "body_armour", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["DelveJewelryAilmentDamage1_"] = { type = "Suffix", affix = "of the Underground", "(30-40)% increased Damage with Ailments", statOrder = { 4801 }, level = 1, group = "AilmentDamage", weightKey = { "abyss_jewel", "jewel", "quiver", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "damage", "ailment" }, }, - ["DelveJewelAilmentDamage1__"] = { type = "Suffix", affix = "of the Underground", "(15-20)% increased Damage with Ailments", statOrder = { 4801 }, level = 1, group = "AilmentDamage", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "damage", "ailment" }, }, - ["DelveGlovesAddedPhysicalDamageVsPoisonedEnemies1"] = { type = "Prefix", affix = "Subterranean", "Adds (7-11) to (12-18) Physical Damage against Poisoned Enemies", statOrder = { 8791 }, level = 1, group = "AddedPhysicalDamageVsPoisonedEnemies", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 1600, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["DelveGlovesAddedPhysicalDamageVsBleedingEnemies1"] = { type = "Prefix", affix = "Subterranean", "Adds (7-11) to (12-18) Physical Damage against Bleeding Enemies", statOrder = { 2370 }, level = 1, group = "AddedPhysicalDamageVsBleedingEnemies", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 1600, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["DelveWeaponLocalAttackReduceEnemyElementalResistance1h1"] = { type = "Prefix", affix = "Subterranean", "Attacks with this Weapon Penetrate (9-12)% Elemental Resistances", statOrder = { 3624 }, level = 1, group = "LocalAttackReduceEnemyElementalResistance", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["DelveWeaponElementalDamage1h1"] = { type = "Prefix", affix = "Subterranean", "(40-60)% increased Elemental Damage", statOrder = { 1857 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["DelveWeaponElementalDamage2h1"] = { type = "Prefix", affix = "Subterranean", "(80-120)% increased Elemental Damage", statOrder = { 1857 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["DelveWeaponElementalDamagev2_1h1"] = { type = "Prefix", affix = "Subterranean", "(19-25)% increased Elemental Damage", statOrder = { 1857 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["DelveWeaponElementalDamagev2_1h2_"] = { type = "Prefix", affix = "Subterranean", "(26-32)% increased Elemental Damage", statOrder = { 1857 }, level = 25, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["DelveWeaponElementalDamagev2_1h3"] = { type = "Prefix", affix = "Subterranean", "(33-39)% increased Elemental Damage", statOrder = { 1857 }, level = 50, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["DelveWeaponElementalDamagev2_1h4"] = { type = "Prefix", affix = "Subterranean", "(40-49)% increased Elemental Damage", statOrder = { 1857 }, level = 75, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["DelveWeaponElementalDamagev2_2h1"] = { type = "Prefix", affix = "Subterranean", "(37-50)% increased Elemental Damage", statOrder = { 1857 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["DelveWeaponElementalDamagev2_2h2__"] = { type = "Prefix", affix = "Subterranean", "(51-65)% increased Elemental Damage", statOrder = { 1857 }, level = 25, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["DelveWeaponElementalDamagev2_2h3"] = { type = "Prefix", affix = "Subterranean", "(66-79)% increased Elemental Damage", statOrder = { 1857 }, level = 50, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["DelveWeaponElementalDamagev2_2h4_"] = { type = "Prefix", affix = "Subterranean", "(80-94)% increased Elemental Damage", statOrder = { 1857 }, level = 75, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["DelveArmourElementalAilmentDuration1___"] = { type = "Suffix", affix = "of the Underground", "(20-30)% reduced Elemental Ailment Duration on you", statOrder = { 1748 }, level = 1, group = "SelfStatusAilmentDuration", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "helmet", "gloves", "boots", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 2000, 0 }, modTags = { "elemental", "ailment" }, }, - ["DelveJewelryElementalPenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (3-5)% Elemental Resistances", statOrder = { 2852 }, level = 1, group = "ElementalPenetration", weightKey = { "abyss_jewel", "jewel", "quiver", "amulet", "default", }, weightVal = { 0, 0, 1600, 1600, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["DelveRingElementalDamage1"] = { type = "Suffix", affix = "of the Underground", "(25-30)% increased Elemental Damage", statOrder = { 1857 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "belt", "ring", "default", }, weightVal = { 0, 0, 1600, 1600, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["DelveWeaponSocketedSpellsDamageFinal1h1_"] = { type = "Prefix", affix = "Subterranean", "Socketed Skills deal 40% more Spell Damage", statOrder = { 483 }, level = 1, group = "SocketedSpellsDamageFinal", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "caster_damage", "damage", "caster", "gem" }, }, - ["DelveWeaponSocketedSpellsDamageFinal2h1"] = { type = "Prefix", affix = "Subterranean", "Socketed Skills deal 20% more Spell Damage", statOrder = { 483 }, level = 1, group = "SocketedSpellsDamageFinal", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "caster_damage", "damage", "caster", "gem" }, }, - ["DelveBodyArmourSocketedSkillsSupportedByArcaneSurge1_"] = { type = "Suffix", affix = "of the Underground", "Socketed Gems are Supported by Level 1 Arcane Surge", statOrder = { 203 }, level = 1, group = "SupportedByArcaneSurge", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "support", "gem" }, }, - ["DelveGlovesSocketedSkillsCastSpeed1_"] = { type = "Suffix", affix = "of the Underground", "Socketed Skills have 18% increased Cast Speed", statOrder = { 480 }, level = 1, group = "SocketedSkillsCastSpeed", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "caster", "speed", "gem" }, }, - ["DelveArmourSocketedSpellsManaCost1_"] = { type = "Suffix", affix = "of the Underground", "Socketed Spells have 20% reduced Mana Cost", statOrder = { 486 }, level = 1, group = "SocketedSpellsManaCost", weightKey = { "abyss_jewel", "jewel", "shield", "boots", "helmet", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "skill", "resource", "mana", "caster", "gem" }, }, - ["DelveJewelAvoidInterruptionWhileCasting1"] = { type = "Suffix", affix = "of the Underground", "(15-20)% chance to Ignore Stuns while Casting", statOrder = { 1779 }, level = 1, group = "AvoidInterruptionWhileCasting", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { }, }, - ["DelveWeaponSocketedAttacksDamageFinal1h1"] = { type = "Prefix", affix = "Subterranean", "Socketed Skills deal 40% more Attack Damage", statOrder = { 464 }, level = 1, group = "SocketedAttacksDamageFinal", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "skill", "damage", "attack", "gem" }, }, - ["DelveWeaponSocketedAttacksDamageFinal2h1_"] = { type = "Prefix", affix = "Subterranean", "Socketed Skills deal 20% more Attack Damage", statOrder = { 464 }, level = 1, group = "SocketedAttacksDamageFinal", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "skill", "damage", "attack", "gem" }, }, - ["DelveBodyArmourSocketedSkillsSupportedByMaim1"] = { type = "Suffix", affix = "of the Underground", "Socketed Gems are Supported by Level 1 Maim", statOrder = { 272 }, level = 1, group = "SupportedByMaim", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "support", "gem" }, }, - ["DelveGlovesLocalDisplaySocketedSkillsAttackSpeed1"] = { type = "Suffix", affix = "of the Underground", "Socketed Skills have 18% increased Attack Speed", statOrder = { 479 }, level = 1, group = "SocketedSkillsAttackSpeed", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "attack", "speed", "gem" }, }, - ["DelveArmourLocalDisplaySocketedAttacksManaCost1_"] = { type = "Suffix", affix = "of the Underground", "Socketed Attacks have -15 to Total Mana Cost", statOrder = { 467 }, level = 1, group = "SocketedAttacksManaCost", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "boots", "helmet", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 0 }, modTags = { "skill", "resource", "mana", "attack", "gem" }, }, - ["DelveJewelAttackLeech1"] = { type = "Suffix", affix = "of the Underground", "0.3% of Attack Damage Leeched as Life", statOrder = { 1545 }, level = 1, group = "LifeLeechFromAttacksPermyriad", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resource", "life", "attack" }, }, - ["DelveWeaponManaRegeneratedIfYouveHitRecently1h1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.4% of Mana per second if you've Hit an Enemy Recently", statOrder = { 7771 }, level = 1, group = "ManaRegeneratedIfYouveHitRecently", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "resource", "mana" }, }, - ["DelveWeaponManaRegeneratedIfYouveHitRecently2h1_"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.8% of Mana per second if you've Hit an Enemy Recently", statOrder = { 7771 }, level = 1, group = "ManaRegeneratedIfYouveHitRecently", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, }, - ["DelveBodyDamageRemovedFromManaBeforeLife1_"] = { type = "Suffix", affix = "of the Underground", "(5-10)% of Damage is taken from Mana before Life", statOrder = { 2572 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "life", "mana" }, }, - ["DelveBodyDamageRemovedFromManaBeforeLifeNew1"] = { type = "Prefix", affix = "Subterranean", "(5-10)% of Damage is taken from Mana before Life", statOrder = { 2572 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "life", "mana" }, }, - ["DelveBootsManaRegenerationRateWhileMoving1"] = { type = "Suffix", affix = "of the Underground", "(50-70)% increased Mana Regeneration Rate while moving", statOrder = { 7783 }, level = 1, group = "ManaRegenerationRateWhileMoving", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, }, - ["DelveGlovesManaGainPerTarget1"] = { type = "Suffix", affix = "of the Underground", "Gain (2-4) Mana per Enemy Hit with Attacks", statOrder = { 1625 }, level = 1, group = "ManaGainPerTarget", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana", "attack" }, }, - ["DelveHelmBaseManaRegeneration1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.5% of Mana per second", statOrder = { 1463 }, level = 1, group = "BaseManaRegeneration", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, }, - ["DelveAmuletBeltManaRecoveryRate1"] = { type = "Suffix", affix = "of the Underground", "(8-12)% increased Mana Recovery rate", statOrder = { 1468 }, level = 1, group = "ManaRecoveryRate", weightKey = { "abyss_jewel", "jewel", "belt", "amulet", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "resource", "mana" }, }, - ["DelveRingManaCostReduction1"] = { type = "Suffix", affix = "of the Underground", "(4-6)% reduced Mana Cost of Skills", statOrder = { 1764 }, level = 1, group = "ManaCostReduction", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, }, - ["DelveQuiverIncreasedMana1"] = { type = "Suffix", affix = "of the Underground", "(20-30)% increased maximum Mana", statOrder = { 1462 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { "abyss_jewel", "jewel", "quiver", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, }, - ["DelveJewelDamageTakenGainedAsMana1"] = { type = "Suffix", affix = "of the Underground", "(2-3)% of Damage taken Recouped as Mana", statOrder = { 2331 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["DelveWeaponChanceToGainOnslaughtOnKill1h1_"] = { type = "Suffix", affix = "of the Underground", "10% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2865 }, level = 1, group = "ChanceToGainOnslaughtOnKill", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { }, }, - ["DelveWeaponChanceToGainOnslaughtOnKill2h1"] = { type = "Suffix", affix = "of the Underground", "20% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2865 }, level = 1, group = "ChanceToGainOnslaughtOnKill", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { }, }, - ["DelveBodyFrenzyChargeWhenHit1"] = { type = "Suffix", affix = "of the Underground", "(15-20)% chance to gain a Frenzy Charge when Hit", statOrder = { 4386 }, level = 1, group = "FrenzyChargeWhenHit", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "frenzy_charge" }, }, - ["DelveBootsMovementSpeedIfHitRecently1"] = { type = "Suffix", affix = "of the Underground", "(4-6)% increased Movement Speed if you've Hit an Enemy Recently", statOrder = { 8941 }, level = 1, group = "MovementSpeedIfHitRecently", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "speed" }, }, - ["DelveGlovesAttackAndCastSpeedIfHitRecently1"] = { type = "Suffix", affix = "of the Underground", "(5-10)% increased Attack and Cast Speed if you've Hit an Enemy Recently", statOrder = { 4639 }, level = 1, group = "AttackAndCastSpeedIfHitRecently", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "attack", "caster", "speed" }, }, - ["DelveHelmIgnoreArmourMovementPenalties1"] = { type = "Suffix", affix = "of the Underground", "Ignore all Movement Penalties from Armour", statOrder = { 2058 }, level = 1, group = "IgnoreArmourMovementPenalties", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "speed" }, }, - ["DelveAmuletCannotBeChilledOrFrozenWhileMoving1"] = { type = "Suffix", affix = "of the Underground", "Cannot be Chilled or Frozen while moving", statOrder = { 5104 }, level = 1, group = "CannotBeChilledOrFrozenWhileMoving", weightKey = { "abyss_jewel", "jewel", "amulet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["DelveBeltChanceToGainOnslaughtOnFlaskUse1"] = { type = "Suffix", affix = "of the Underground", "(15-20)% chance to gain Onslaught when you use a Flask", statOrder = { 5402 }, level = 1, group = "ChanceToGainOnslaughtOnFlaskUse", weightKey = { "abyss_jewel", "jewel", "belt", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "flask" }, }, - ["DelveRingCannotBeShockedWhileMoving1"] = { type = "Suffix", affix = "of the Underground", "Cannot be Shocked or Ignited while moving", statOrder = { 5120 }, level = 1, group = "CannotBeShockedOrIgnitedWhileMoving", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["DelveQuiverFrenzyChargeOnHittingRareOrUnique1"] = { type = "Suffix", affix = "of the Underground", "(3-5)% chance to gain a Frenzy Charge when you Hit a Rare or Unique Enemy", statOrder = { 6425 }, level = 1, group = "FrenzyChargeOnHittingRareOrUnique", weightKey = { "abyss_jewel", "jewel", "quiver", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "frenzy_charge" }, }, - ["DelveJewelChanceToGainOnslaughtOnFlaskUse1"] = { type = "Suffix", affix = "of the Underground", "(5-10)% chance to gain Onslaught when you use a Flask", statOrder = { 5402 }, level = 1, group = "ChanceToGainOnslaughtOnFlaskUse", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "flask" }, }, - ["DelveWeaponIncreasedDamageFromAuras1h1"] = { type = "Suffix", affix = "of the Underground", "Auras from your Skills grant 2% increased Damage to you and Allies", statOrder = { 3321 }, level = 1, group = "IncreasedDamageFromAuras", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "aura" }, }, - ["DelveWeaponIncreasedDamageFromAuras2h1"] = { type = "Suffix", affix = "of the Underground", "Auras from your Skills grant 4% increased Damage to you and Allies", statOrder = { 3321 }, level = 1, group = "IncreasedDamageFromAuras", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "aura" }, }, - ["DelveWeaponMinionDamage1h1_"] = { type = "Prefix", affix = "Subterranean", "Minions deal (30-44)% increased Damage", statOrder = { 1852 }, level = 1, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, }, - ["DelveWeaponMinionDamage1h2"] = { type = "Prefix", affix = "Subterranean", "Minions deal (45-59)% increased Damage", statOrder = { 1852 }, level = 25, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, }, - ["DelveWeaponMinionDamage1h3___"] = { type = "Prefix", affix = "Subterranean", "Minions deal (60-74)% increased Damage", statOrder = { 1852 }, level = 50, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "damage", "minion" }, }, - ["DelveWeaponMinionDamage1h4"] = { type = "Prefix", affix = "Subterranean", "Minions deal (75-80)% increased Damage", statOrder = { 1852 }, level = 75, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 500, 0 }, modTags = { "damage", "minion" }, }, - ["DelveWeaponMinionDamage2h1"] = { type = "Prefix", affix = "Subterranean", "Minions deal (51-70)% increased Damage", statOrder = { 1852 }, level = 1, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, }, - ["DelveWeaponMinionDamage2h2"] = { type = "Prefix", affix = "Subterranean", "Minions deal (71-90)% increased Damage", statOrder = { 1852 }, level = 25, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, }, - ["DelveWeaponMinionDamage2h3_"] = { type = "Prefix", affix = "Subterranean", "Minions deal (91-110)% increased Damage", statOrder = { 1852 }, level = 50, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "damage", "minion" }, }, - ["DelveWeaponMinionDamage2h4"] = { type = "Prefix", affix = "Subterranean", "Minions deal (111-130)% increased Damage", statOrder = { 1852 }, level = 75, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 500, 0 }, modTags = { "damage", "minion" }, }, - ["DelveGlovesMinionDamage1"] = { type = "Prefix", affix = "Subterranean", "Minions deal (20-30)% increased Damage", statOrder = { 1852 }, level = 1, group = "MinionDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, }, - ["DelveJewelryMinionRunSpeed1"] = { type = "Suffix", affix = "of the Underground", "Minions have (15-30)% increased Movement Speed", statOrder = { 1650 }, level = 74, group = "MinionRunSpeed", weightKey = { "abyss_jewel", "jewel", "quiver", "ring", "amulet", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "speed", "minion" }, }, - ["DelveArmourMinionLife1"] = { type = "Suffix", affix = "of the Underground", "Minions have (20-30)% increased maximum Life", statOrder = { 1647 }, level = 74, group = "MinionLife", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "resource", "life", "minion" }, }, - ["DelveBootsAdditionalSpectre1_"] = { type = "Suffix", affix = "of the Underground", "+1 to Level of all Raise Spectre Gems", statOrder = { 1498 }, level = 1, group = "MinionGlobalSkillLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "minion", "gem" }, }, - ["DelveBodyArmourAuraEffect1_"] = { type = "Suffix", affix = "of the Underground", "(20-25)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3429 }, level = 1, group = "AuraEffect", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "aura" }, }, - ["DelveHelmetReducedManaReserved1"] = { type = "Suffix", affix = "of the Underground", "(8-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 2109 }, level = 1, group = "ReducedReservation", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, }, - ["DelveHelmetManaReservationEfficiency1"] = { type = "Suffix", affix = "of the Underground", "10% increased Mana Reservation Efficiency of Skills", statOrder = { 2105 }, level = 1, group = "ManaReservationEfficiency", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, }, - ["DelveAbyssJewelMinionDamage1"] = { type = "Prefix", affix = "Subterranean", "Minions deal (14-16)% increased Damage", statOrder = { 1852 }, level = 1, group = "MinionDamage", weightKey = { "abyss_jewel", "default", }, weightVal = { 2000, 0 }, modTags = { "damage", "minion" }, }, + ["ShieldSpellBlockPercentage1"] = { type = "Prefix", affix = "Mystic", "(4-5)% Chance to Block Spell Damage", statOrder = { 1072 }, level = 16, group = "SpellBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 500, 500, 500, 500, 1000, 1000, 0 }, modTags = { "block" }, }, + ["ShieldSpellBlockPercentage2"] = { type = "Prefix", affix = "Clairvoyant", "(6-7)% Chance to Block Spell Damage", statOrder = { 1072 }, level = 28, group = "SpellBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 500, 500, 500, 500, 1000, 1000, 0 }, modTags = { "block" }, }, + ["ShieldSpellBlockPercentage3"] = { type = "Prefix", affix = "Enigmatic", "(8-9)% Chance to Block Spell Damage", statOrder = { 1072 }, level = 40, group = "SpellBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 500, 500, 500, 500, 1000, 1000, 0 }, modTags = { "block" }, }, + ["ShieldSpellBlockPercentage4"] = { type = "Prefix", affix = "Enlightened", "(10-11)% Chance to Block Spell Damage", statOrder = { 1072 }, level = 55, group = "SpellBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 500, 500, 500, 500, 1000, 1000, 0 }, modTags = { "block" }, }, + ["ShieldSpellBlockPercentage5"] = { type = "Prefix", affix = "Seer's", "(12-13)% Chance to Block Spell Damage", statOrder = { 1072 }, level = 66, group = "SpellBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 500, 500, 500, 500, 1000, 1000, 0 }, modTags = { "block" }, }, + ["ShieldSpellBlockPercentage6"] = { type = "Prefix", affix = "Oracle's", "(14-15)% Chance to Block Spell Damage", statOrder = { 1072 }, level = 77, group = "SpellBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 500, 500, 500, 500, 1000, 1000, 0 }, modTags = { "block" }, }, + ["MovementVelocityCorrupted"] = { type = "Corrupted", affix = "", "(2-5)% increased Movement Speed", statOrder = { 1709 }, level = 1, group = "MovementVelocity", weightKey = { "amulet", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, }, + ["MaxFrenzyChargesCorrupted"] = { type = "Corrupted", affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1720 }, level = 20, group = "MaximumFrenzyCharges", weightKey = { "boots", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "frenzy_charge" }, }, + ["MaxPowerChargesCorrupted"] = { type = "Corrupted", affix = "", "+1 to Maximum Power Charges", statOrder = { 1725 }, level = 20, group = "IncreasedMaximumPowerCharges", weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { "power_charge" }, }, + ["MinionDamageCorrupted"] = { type = "Corrupted", affix = "", "Minions deal (15-20)% increased Damage", statOrder = { 1882 }, level = 1, group = "MinionDamage", weightKey = { "helmet", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage", "minion" }, }, + ["SocketedVaalGemsIncreaseCorrupted"] = { type = "Corrupted", affix = "", "+(1-2) to Level of Socketed Vaal Gems", statOrder = { 168 }, level = 1, group = "LocalIncreaseSocketedVaalGemLevel", weightKey = { "helmet", "gloves", "boots", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0 }, modTags = { "vaal", "gem" }, }, + ["DamageTakenFlatReductionCorrupted1"] = { type = "Corrupted", affix = "", "-(10-5) Physical Damage taken from Attack Hits", statOrder = { 2143 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { "amulet", "shield", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "attack" }, }, + ["DamageTakenFlatReductionCorrupted2"] = { type = "Corrupted", affix = "", "-(16-11) Physical Damage taken from Attack Hits", statOrder = { 2143 }, level = 30, group = "PhysicalAttackDamageTaken", weightKey = { "amulet", "shield", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "attack" }, }, + ["DamageTakenFlatReductionCorrupted3"] = { type = "Corrupted", affix = "", "-(24-17) Physical Damage taken from Attack Hits", statOrder = { 2143 }, level = 60, group = "PhysicalAttackDamageTaken", weightKey = { "amulet", "shield", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "attack" }, }, + ["FireDamageLifeLeechPermyriadCorrupted"] = { type = "Corrupted", affix = "", "0.2% of Fire Damage Leeched as Life", statOrder = { 1581 }, level = 50, group = "FireDamageLifeLeechPermyriad", weightKey = { "amulet", "quiver", "two_hand_weapon", "weapon", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "resource", "life", "elemental", "fire" }, }, + ["ColdDamageLifeLeechPermyriadCorrupted"] = { type = "Corrupted", affix = "", "0.2% of Cold Damage Leeched as Life", statOrder = { 1586 }, level = 50, group = "ColdDamageLifeLeechPermyriad", weightKey = { "amulet", "quiver", "two_hand_weapon", "weapon", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "resource", "life", "elemental", "cold" }, }, + ["LightningDamageLifeLeechPermyriadCorrupted"] = { type = "Corrupted", affix = "", "0.2% of Lightning Damage Leeched as Life", statOrder = { 1590 }, level = 50, group = "LightningDamageLifeLeechPermyriad", weightKey = { "amulet", "quiver", "two_hand_weapon", "weapon", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, }, + ["IncreasedCastSpeedCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% increased Cast Speed", statOrder = { 1357 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "ring", "gloves", "focus", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "caster", "speed" }, }, + ["ChanceToFleeCorrupted"] = { type = "Corrupted", affix = "", "5% chance to Cause Monsters to Flee", statOrder = { 1951 }, level = 1, group = "HitsCauseMonsterFlee", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["BlockChanceCorrupted"] = { type = "Corrupted", affix = "", "(2-4)% Chance to Block Attack Damage", statOrder = { 1051 }, level = 1, group = "BlockPercent", weightKey = { "staff", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "block" }, }, + ["LocalAddedChaosDamageCorrupted1"] = { type = "Corrupted", affix = "", "Adds (1-2) to (3-5) Chaos Damage", statOrder = { 1301 }, level = 1, group = "LocalChaosDamage", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["LocalAddedChaosDamageCorrupted2"] = { type = "Corrupted", affix = "", "Adds (6-8) to (11-13) Chaos Damage", statOrder = { 1301 }, level = 20, group = "LocalChaosDamage", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["LocalAddedChaosDamageCorrupted3"] = { type = "Corrupted", affix = "", "Adds (8-11) to (19-23) Chaos Damage", statOrder = { 1301 }, level = 40, group = "LocalChaosDamage", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["AddedChaosDamageCorrupted1"] = { type = "Corrupted", affix = "", "Adds 1 to (2-3) Chaos Damage to Attacks", statOrder = { 1298 }, level = 1, group = "ChaosDamage", weightKey = { "ring", "default", }, weightVal = { 0, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["AddedChaosDamageCorrupted2"] = { type = "Corrupted", affix = "", "Adds (3-4) to (6-8) Chaos Damage to Attacks", statOrder = { 1298 }, level = 20, group = "ChaosDamage", weightKey = { "ring", "default", }, weightVal = { 0, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["AddedChaosDamageCorrupted3"] = { type = "Corrupted", affix = "", "Adds (7-9) to (11-13) Chaos Damage to Attacks", statOrder = { 1298 }, level = 40, group = "ChaosDamage", weightKey = { "ring", "default", }, weightVal = { 0, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["SpellBlockChanceCorrupted"] = { type = "Corrupted", affix = "", "(2-4)% Chance to Block Spell Damage", statOrder = { 1072 }, level = 1, group = "SpellBlockPercentage", weightKey = { "staff", "amulet", "shield", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "block" }, }, + ["AttackSpeedCorrupted"] = { type = "Corrupted", affix = "", "(4-8)% increased Attack Speed", statOrder = { 1321 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "amulet", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, }, + ["WeaponElementalDamageCorrupted"] = { type = "Corrupted", affix = "", "(6-12)% increased Elemental Damage with Attack Skills", statOrder = { 6215 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "ring", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["CullingStrikeCorrupted"] = { type = "Corrupted", affix = "", "Culling Strike", statOrder = { 1948 }, level = 1, group = "CullingStrike", weightKey = { "sword", "axe", "dagger", "wand", "bow", "claw", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, + ["ManaOnLifeLostCorrupted"] = { type = "Corrupted", affix = "", "(3-6)% of Damage taken Recouped as Mana", statOrder = { 2364 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { "amulet", "ring", "shield", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "mana" }, }, + ["MaximumResistanceCorrupted"] = { type = "Corrupted", affix = "", "+1% to all maximum Resistances", statOrder = { 1553 }, level = 1, group = "MaximumResistances", weightKey = { "amulet", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resistance" }, }, + ["AdditionalCurseCorrupted"] = { type = "Corrupted", affix = "", "You can apply an additional Curse", statOrder = { 2077 }, level = 1, group = "AdditionalCurseOnEnemies", weightKey = { "amulet", "default", }, weightVal = { 0, 0 }, modTags = { "caster", "curse" }, }, + ["ChanceToAvoidFreezeCorruption"] = { type = "Corrupted", affix = "", "(10-20)% chance to Avoid being Frozen", statOrder = { 1756 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "amulet", "body_armour", "ring", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ChanceToAvoidIgniteCorruption"] = { type = "Corrupted", affix = "", "(10-20)% chance to Avoid being Ignited", statOrder = { 1757 }, level = 1, group = "AvoidIgnite", weightKey = { "amulet", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ChaosResistCorruption"] = { type = "Corrupted", affix = "", "+(2-4)% to Chaos Resistance", statOrder = { 1552 }, level = 1, group = "ChaosResistance", weightKey = { "fishing_rod", "weapon", "jewel", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "chaos", "resistance" }, }, + ["ChanceToDodgeCorruption"] = { type = "Corrupted", affix = "", "+(3-6)% chance to Suppress Spell Damage", statOrder = { 1055 }, level = 1, group = "ChanceToSuppressSpellsOld", weightKey = { "boots", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["CannotBeKnockedBackCorruption"] = { type = "Corrupted", affix = "", "Cannot be Knocked Back", statOrder = { 1432 }, level = 1, group = "ImmuneToKnockback", weightKey = { "boots", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["GemLevelCorruption"] = { type = "Corrupted", affix = "", "+1 to Level of Socketed Gems", statOrder = { 142 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { "boots", "gloves", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "gem" }, }, + ["AvoidShockCorruption"] = { type = "Corrupted", affix = "", "(10-20)% chance to Avoid being Shocked", statOrder = { 1759 }, level = 1, group = "ReducedShockChance", weightKey = { "body_armour", "belt", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["CannotBeLeechedFromCorruption"] = { type = "Corrupted", affix = "", "Enemies Cannot Leech Life From you", statOrder = { 2349 }, level = 1, group = "EnemiesCantLifeLeech", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["DamageTakenFromManaBeforeLifeCorruption"] = { type = "Corrupted", affix = "", "(3-5)% of Damage is taken from Mana before Life", statOrder = { 2607 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "life", "mana" }, }, + ["DamageConversionFireCorruption"] = { type = "Corrupted", affix = "", "(10-20)% of Physical Damage Converted to Fire Damage", statOrder = { 1864 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { "quiver", "sceptre", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["DamageConversionColdCorruption"] = { type = "Corrupted", affix = "", "(10-20)% of Physical Damage Converted to Cold Damage", statOrder = { 1866 }, level = 1, group = "ConvertPhysicalToCold", weightKey = { "quiver", "sceptre", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, + ["DamageConversionLighningCorruption"] = { type = "Corrupted", affix = "", "(10-20)% of Physical Damage Converted to Lightning Damage", statOrder = { 1868 }, level = 1, group = "MonsterConvertPhysicalDamageToLightning", weightKey = { "quiver", "sceptre", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, + ["AdditionalArrowsCorruption"] = { type = "Corrupted", affix = "", "Bow Attacks fire an additional Arrow", statOrder = { 1705 }, level = 1, group = "AdditionalArrows", weightKey = { "quiver", "bow", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, + ["AdditionalAOERangeCorruption"] = { type = "Corrupted", affix = "", "(4-6)% increased Area of Effect", statOrder = { 1791 }, level = 1, group = "AreaOfEffect", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["IncreasedDurationCorruption"] = { type = "Corrupted", affix = "", "(5-8)% increased Skill Effect Duration", statOrder = { 1806 }, level = 1, group = "SkillEffectDuration", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["AdditionalTrapsCorruption_"] = { type = "Corrupted", affix = "", "Can have up to 1 additional Trap placed at a time", statOrder = { 2164 }, level = 1, group = "TrapsAllowed", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["MaximumEnduranceChargesCorruption_"] = { type = "Corrupted", affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1715 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { "endurance_charge" }, }, + ["DualWieldBlockCorruption"] = { type = "Corrupted", affix = "", "+(3-6)% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1074 }, level = 1, group = "BlockWhileDualWielding", weightKey = { "sceptre", "axe", "mace", "wand", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 0, 0 }, modTags = { "block" }, }, + ["AdditionalPierceCorruption"] = { type = "Corrupted", affix = "", "Arrows Pierce an additional Target", statOrder = { 1702 }, level = 1, group = "AdditionalArrowPierce", weightKey = { "bow", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, }, + ["GlobalPierceCorruption"] = { type = "Corrupted", affix = "", "(4-8)% increased Projectile Speed", statOrder = { 1707 }, level = 1, group = "ProjectileSpeed", weightKey = { "wand", "default", }, weightVal = { 0, 0 }, modTags = { "speed" }, }, + ["CurseOnHitTemporalChainsCurruption"] = { type = "Corrupted", affix = "", "Curse Enemies with Temporal Chains on Hit", statOrder = { 2431 }, level = 30, group = "CurseOnHitLevelTemporalChains", weightKey = { "gloves", "default", }, weightVal = { 0, 0 }, modTags = { "caster", "curse" }, }, + ["CurseOnHitVulnerabilityCorruption"] = { type = "Corrupted", affix = "", "Curse Enemies with Vulnerability on Hit", statOrder = { 2432 }, level = 30, group = "CurseOnHitLevelVulnerability", weightKey = { "gloves", "default", }, weightVal = { 0, 0 }, modTags = { "caster", "curse" }, }, + ["CurseOnHitElementalWeaknessCorruption"] = { type = "Corrupted", affix = "", "Curse Enemies with Elemental Weakness on Hit", statOrder = { 2434 }, level = 30, group = "CurseOnHitLevelElementalWeakness", weightKey = { "gloves", "default", }, weightVal = { 0, 0 }, modTags = { "caster", "curse" }, }, + ["SupportedByCastOnStunCorruption"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 12 Cast when Stunned", statOrder = { 404 }, level = 35, group = "SupportedByCastOnStun", weightKey = { "gloves", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "support", "gem" }, }, + ["SupportedByCastOnCritCorruption"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 12 Cast On Critical Strike", statOrder = { 399 }, level = 35, group = "SupportedByCastOnCrit", weightKey = { "gloves", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "support", "gem" }, }, + ["SupportedByMeleeSplashCorruption"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 10 Melee Splash", statOrder = { 398 }, level = 20, group = "SupportedByMeleeSplash", weightKey = { "wand", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0 }, modTags = { "support", "gem" }, }, + ["SupportedByAddedFireDamageCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 12 Added Fire Damage", statOrder = { 389 }, level = 48, group = "DisplaySocketedGemsGetAddedFireDamage", weightKey = { "two_hand_weapon", "mace", "default", }, weightVal = { 0, 0, 0 }, modTags = { "support", "gem" }, }, + ["SupportedByStunCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 6 Stun", statOrder = { 406 }, level = 38, group = "SupportedByStun", weightKey = { "mace", "default", }, weightVal = { 0, 0 }, modTags = { "support", "gem" }, }, + ["LocalMeleeWeaponRangeCorrupted"] = { type = "Corrupted", affix = "", "+(0.1-0.2) metres to Weapon Range", statOrder = { 2655 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { "sceptre", "rapier", "wand", "bow", "weapon", "default", }, weightVal = { 0, 0, 0, 0, 0, 0 }, modTags = { "attack" }, }, + ["SocketedSkillsManaMultiplierCorrupted"] = { type = "Corrupted", affix = "", "Socketed Skill Gems get a 95% Cost & Reservation Multiplier", statOrder = { 457 }, level = 1, group = "SocketedSkillsManaMultiplier", weightKey = { "body_armour", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana", "gem" }, }, + ["SupportedByElementalProliferationCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 1 Elemental Proliferation", statOrder = { 393 }, level = 12, group = "DisplaySocketedGemGetsElementalProliferation", weightKey = { "wand", "default", }, weightVal = { 0, 0 }, modTags = { "support", "gem" }, }, + ["SupportedByAccuracyCorrupted_"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 12 Additional Accuracy", statOrder = { 407 }, level = 48, group = "SupportedByAccuracy", weightKey = { "one_hand_weapon", "sword", "default", }, weightVal = { 0, 0, 0 }, modTags = { "support", "gem" }, }, + ["SupportedByMultistrikeCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 1 Multistrike", statOrder = { 408 }, level = 28, group = "SupportedByMultistrike", weightKey = { "two_hand_weapon", "sword", "default", }, weightVal = { 0, 0, 0 }, modTags = { "support", "gem" }, }, + ["SupportedByAreaOfEffectCorrupted_"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 1 Increased Area of Effect", statOrder = { 203 }, level = 24, group = "DisplaySocketedGemGetsIncreasedAreaOfEffectLevel", weightKey = { "staff", "default", }, weightVal = { 0, 0 }, modTags = { "support", "gem" }, }, + ["SupportedByLifeLeechCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 15 Life Leech", statOrder = { 410 }, level = 59, group = "SupportedByLifeLeech", weightKey = { "claw", "default", }, weightVal = { 0, 0 }, modTags = { "support", "gem" }, }, + ["SupportedByCriticalMultiplierCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 14 Increased Critical Damage", statOrder = { 412 }, level = 35, group = "SupportedByCriticalMultiplier", weightKey = { "dagger", "default", }, weightVal = { 0, 0 }, modTags = { "support", "gem" }, }, + ["SupportedByForkCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 1 Fork", statOrder = { 413 }, level = 6, group = "SupportedByFork", weightKey = { "bow", "default", }, weightVal = { 0, 0 }, modTags = { "support", "gem" }, }, + ["SupportedByWeaponElementalDamageCorrupted_"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 12 Elemental Damage with Attacks", statOrder = { 414 }, level = 24, group = "SupportedByWeaponElementalDamage", weightKey = { "sceptre", "default", }, weightVal = { 0, 0 }, modTags = { "support", "gem" }, }, + ["SupportedByFasterCastCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 10 Faster Casting", statOrder = { 427 }, level = 24, group = "DisplaySocketedGemsGetFasterCast", weightKey = { "sceptre", "default", }, weightVal = { 0, 0 }, modTags = { "support", "gem" }, }, + ["PuritySkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 15 Purity of Elements Skill", statOrder = { 559 }, level = 45, group = "PuritySkill", weightKey = { "amulet", "belt", "default", }, weightVal = { 0, 0, 0 }, modTags = { "skill" }, }, + ["CriticalWeaknessSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 10 Assassin's Mark Skill", statOrder = { 561 }, level = 31, group = "CriticalWeaknessSkill", weightKey = { "gloves", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, }, + ["PurityOfFireSkillCorrupted_"] = { type = "Corrupted", affix = "", "Grants Level 15 Purity of Fire Skill", statOrder = { 537 }, level = 45, group = "PurityOfFireSkill", weightKey = { "amulet", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "skill" }, }, + ["PurityOfColdSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 15 Purity of Ice Skill", statOrder = { 543 }, level = 45, group = "PurityOfColdSkill", weightKey = { "amulet", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "skill" }, }, + ["PurityOfLightningSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 15 Purity of Lightning Skill", statOrder = { 545 }, level = 45, group = "PurityOfLightningSkill", weightKey = { "amulet", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "skill" }, }, + ["WrathSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 7 Wrath Skill", statOrder = { 562 }, level = 28, group = "WrathSkill", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, }, + ["HatredSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 11 Hatred Skill", statOrder = { 563 }, level = 44, group = "HatredSkill", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, }, + ["AngerSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 15 Anger Skill", statOrder = { 564 }, level = 56, group = "AngerSkill", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, }, + ["DeterminationSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 16 Determination Skill", statOrder = { 565 }, level = 61, group = "DeterminationSkill", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, }, + ["GraceSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 16 Grace Skill", statOrder = { 566 }, level = 61, group = "GraceSkill", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, }, + ["DisciplineSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 16 Discipline Skill", statOrder = { 568 }, level = 61, group = "DisciplineSkill", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, }, + ["ProjectileWeaknessSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 15 Sniper's Mark Skill", statOrder = { 572 }, level = 58, group = "ProjectileWeaknessSkill", weightKey = { "quiver", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, }, + ["ElementalWeaknessSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 10 Elemental Weakness Skill", statOrder = { 573 }, level = 31, group = "ElementalWeaknessSkill", weightKey = { "wand", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, }, + ["VulnerabilitySkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 10 Vulnerability Skill", statOrder = { 575 }, level = 31, group = "VulnerabilitySkill", weightKey = { "axe", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, }, + ["ClaritySkillCorrupted1"] = { type = "Corrupted", affix = "", "Grants Level 4 Clarity Skill", statOrder = { 555 }, level = 19, group = "ClaritySkill", weightKey = { "amulet", "belt", "default", }, weightVal = { 0, 0, 0 }, modTags = { "skill" }, }, + ["ClaritySkillCorrupted2"] = { type = "Corrupted", affix = "", "Grants Level 8 Clarity Skill", statOrder = { 555 }, level = 32, group = "ClaritySkill", weightKey = { "amulet", "belt", "default", }, weightVal = { 0, 0, 0 }, modTags = { "skill" }, }, + ["ClaritySkillCorrupted3"] = { type = "Corrupted", affix = "", "Grants Level 12 Clarity Skill", statOrder = { 555 }, level = 47, group = "ClaritySkill", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, }, + ["ClaritySkillCorrupted4"] = { type = "Corrupted", affix = "", "Grants Level 16 Clarity Skill", statOrder = { 555 }, level = 59, group = "ClaritySkill", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, }, + ["FrostbiteSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 14 Frostbite Skill", statOrder = { 551 }, level = 46, group = "FrostbiteSkill", weightKey = { "ring", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, }, + ["FlammabilitySkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 14 Flammability Skill", statOrder = { 546 }, level = 46, group = "FlammabilitySkill", weightKey = { "ring", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, }, + ["ConductivitySkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 14 Conductivity Skill", statOrder = { 550 }, level = 46, group = "ConductivitySkill", weightKey = { "ring", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, }, + ["TemporalChainsSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 14 Temporal Chains Skill", statOrder = { 552 }, level = 40, group = "TemporalChainsSkill", weightKey = { "boots", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, }, + ["HasteSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 14 Haste Skill", statOrder = { 553 }, level = 40, group = "HasteSkill", weightKey = { "boots", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, }, + ["ManaOnHitCorrupted"] = { type = "Corrupted", affix = "", "Gain (1-2) Mana per Enemy Hit with Attacks", statOrder = { 1655 }, level = 40, group = "ManaGainPerTarget", weightKey = { "ring", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana", "attack" }, }, + ["VitalitySkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 15 Vitality Skill", statOrder = { 557 }, level = 35, group = "VitalitySkill", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, }, + ["FishingQuantityCorrupted"] = { type = "Corrupted", affix = "", "(5-10)% increased Quantity of Fish Caught", statOrder = { 2758 }, level = 1, group = "FishingQuantity", weightKey = { "fishing_rod", "default", }, weightVal = { 0, 0 }, modTags = { "drop" }, }, + ["FishingRarityCorrupted"] = { type = "Corrupted", affix = "", "(5-10)% increased Rarity of Fish Caught", statOrder = { 2759 }, level = 1, group = "FishingRarity", weightKey = { "fishing_rod", "default", }, weightVal = { 0, 0 }, modTags = { "drop" }, }, + ["CastSpeedCorrupted"] = { type = "Corrupted", affix = "", "(10-20)% increased Cast Speed", statOrder = { 1357 }, level = 1, group = "IncreasedCastSpeedFishing", weightKey = { "fishing_rod", "default", }, weightVal = { 0, 0 }, modTags = { "red_herring", "caster", "speed" }, }, + ["CanCatchCorruptFishCorrupted"] = { type = "Corrupted", affix = "", "You can catch Corrupted Fish", statOrder = { 2765 }, level = 1, group = "CorruptFish", weightKey = { "fishing_rod", "default", }, weightVal = { 0, 0 }, modTags = { "vaal", "drop" }, }, + ["V2AddedArmourWhileStationaryCorrupted1"] = { type = "Corrupted", affix = "", "+(35-60) Armour while stationary", statOrder = { 4221 }, level = 1, group = "AddedArmourWhileStationary", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, + ["V2AddedArmourWhileStationaryCorrupted2"] = { type = "Corrupted", affix = "", "+(61-138) Armour while stationary", statOrder = { 4221 }, level = 31, group = "AddedArmourWhileStationary", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, + ["V2AddedArmourWhileStationaryCorrupted3"] = { type = "Corrupted", affix = "", "+(139-322) Armour while stationary", statOrder = { 4221 }, level = 75, group = "AddedArmourWhileStationary", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { "defences", "armour" }, }, + ["V2AddedColdDamageCorrupted1"] = { type = "Corrupted", affix = "", "Adds (3-4) to (7-8) Cold Damage to Spells and Attacks", statOrder = { 1285 }, level = 1, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, }, + ["V2AddedColdDamageCorrupted2"] = { type = "Corrupted", affix = "", "Adds (6-9) to (13-16) Cold Damage to Spells and Attacks", statOrder = { 1285 }, level = 31, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, }, + ["V2AddedColdDamageCorrupted3"] = { type = "Corrupted", affix = "", "Adds (12-16) to (24-28) Cold Damage to Spells and Attacks", statOrder = { 1285 }, level = 81, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, }, + ["V2AddedColdDamageToBowAttacksCorrupted1__"] = { type = "Corrupted", affix = "", "(8-11) to (18-21) Added Cold Damage with Bow Attacks", statOrder = { 1997 }, level = 1, group = "AddedColdDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["V2AddedColdDamageToBowAttacksCorrupted2"] = { type = "Corrupted", affix = "", "(20-25) to (38-45) Added Cold Damage with Bow Attacks", statOrder = { 1997 }, level = 31, group = "AddedColdDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["V2AddedColdDamageToBowAttacksCorrupted3"] = { type = "Corrupted", affix = "", "(29-35) to (55-62) Added Cold Damage with Bow Attacks", statOrder = { 1997 }, level = 75, group = "AddedColdDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["V2AddedEvasionWhileMovingCorrupted1_"] = { type = "Corrupted", affix = "", "+(35-60) to Global Evasion Rating while moving", statOrder = { 6754 }, level = 1, group = "AddedEvasionWhileMovingCorrupted", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, + ["V2AddedEvasionWhileMovingCorrupted2"] = { type = "Corrupted", affix = "", "+(61-138) to Global Evasion Rating while moving", statOrder = { 6754 }, level = 31, group = "AddedEvasionWhileMovingCorrupted", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, + ["V2AddedEvasionWhileMovingCorrupted3"] = { type = "Corrupted", affix = "", "+(139-322) to Global Evasion Rating while moving", statOrder = { 6754 }, level = 75, group = "AddedEvasionWhileMovingCorrupted", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { "defences", "evasion" }, }, + ["V2AddedFireDamageCorrupted1"] = { type = "Corrupted", affix = "", "Adds (3-5) to (7-8) Fire Damage to Spells and Attacks", statOrder = { 1284 }, level = 1, group = "AddedFireDamageSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "attack", "caster" }, }, + ["V2AddedFireDamageCorrupted2"] = { type = "Corrupted", affix = "", "Adds (7-10) to (15-18) Fire Damage to Spells and Attacks", statOrder = { 1284 }, level = 31, group = "AddedFireDamageSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "attack", "caster" }, }, + ["V2AddedFireDamageCorrupted3"] = { type = "Corrupted", affix = "", "Adds (13-18) to (28-33) Fire Damage to Spells and Attacks", statOrder = { 1284 }, level = 82, group = "AddedFireDamageSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "attack", "caster" }, }, + ["V2AddedFireDamageToBowAttacksCorrupted1__"] = { type = "Corrupted", affix = "", "(11-14) to (21-25) Added Fire Damage with Bow Attacks", statOrder = { 1989 }, level = 1, group = "AddedFireDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["V2AddedFireDamageToBowAttacksCorrupted2"] = { type = "Corrupted", affix = "", "(24-31) to (46-55) Added Fire Damage with Bow Attacks", statOrder = { 1989 }, level = 31, group = "AddedFireDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["V2AddedFireDamageToBowAttacksCorrupted3"] = { type = "Corrupted", affix = "", "(29-39) to (59-69) Added Fire Damage with Bow Attacks", statOrder = { 1989 }, level = 75, group = "AddedFireDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["V2AddedLightningDamageCorrupted1"] = { type = "Corrupted", affix = "", "Adds 1 to (14-15) Lightning Damage to Spells and Attacks", statOrder = { 1320 }, level = 1, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "attack", "caster" }, }, + ["V2AddedLightningDamageCorrupted2"] = { type = "Corrupted", affix = "", "Adds (1-2) to (27-28) Lightning Damage to Spells and Attacks", statOrder = { 1320 }, level = 31, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "attack", "caster" }, }, + ["V2AddedLightningDamageCorrupted3"] = { type = "Corrupted", affix = "", "Adds (1-5) to (50-52) Lightning Damage to Spells and Attacks", statOrder = { 1320 }, level = 83, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "attack", "caster" }, }, + ["V2AddedLightningDamageToBowAttacksCorrupted1_"] = { type = "Corrupted", affix = "", "(1-3) to (38-39) Added Lightning Damage with Bow Attacks", statOrder = { 2005 }, level = 1, group = "AddedLightningDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["V2AddedLightningDamageToBowAttacksCorrupted2"] = { type = "Corrupted", affix = "", "(3-7) to (81-85) Added Lightning Damage with Bow Attacks", statOrder = { 2005 }, level = 31, group = "AddedLightningDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["V2AddedLightningDamageToBowAttacksCorrupted3"] = { type = "Corrupted", affix = "", "(3-8) to (101-106) Added Lightning Damage with Bow Attacks", statOrder = { 2005 }, level = 75, group = "AddedLightningDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["V2AddedPhysicalDamageToBowAttacksCorrupted1"] = { type = "Corrupted", affix = "", "(3-4) to (6-10) Added Physical Damage with Bow Attacks", statOrder = { 1979 }, level = 1, group = "AddedPhysicalDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["V2AddedPhysicalDamageToBowAttacksCorrupted2___"] = { type = "Corrupted", affix = "", "(5-7) to (10-14) Added Physical Damage with Bow Attacks", statOrder = { 1979 }, level = 31, group = "AddedPhysicalDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["V2AddedPhysicalDamageToBowAttacksCorrupted3"] = { type = "Corrupted", affix = "", "(9-12) to (16-19) Added Physical Damage with Bow Attacks", statOrder = { 1979 }, level = 75, group = "AddedPhysicalDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["V2AddedChaosDamageToBowAttacksCorrupted1"] = { type = "Corrupted", affix = "", "(23-29) to (37-43) Added Chaos Damage with Bow Attacks", statOrder = { 2012 }, level = 81, group = "AddedChaosDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["V2AdditionalAOERangeCorrupted"] = { type = "Corrupted", affix = "", "(8-10)% increased Area of Effect", statOrder = { 1791 }, level = 1, group = "AreaOfEffect", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["V2AdditionalArrowsCorrupted"] = { type = "Corrupted", affix = "", "Bow Attacks fire an additional Arrow", statOrder = { 1705 }, level = 75, group = "AdditionalArrows", weightKey = { "quiver", "bow", "default", }, weightVal = { 200, 200, 0 }, modTags = { "attack" }, }, + ["V2AdditionalChainCorrupted"] = { type = "Corrupted", affix = "", "Arrows Chain +1 times", statOrder = { 1699 }, level = 80, group = "AdditionalArrowChain", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "attack" }, }, + ["V2ChanceToSuppressSpells_"] = { type = "Corrupted", affix = "", "+(8-12)% chance to Suppress Spell Damage", statOrder = { 1056 }, level = 75, group = "ChanceToSuppressSpells", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["V2AdditionalCriticalStrikeMultiplierUnderFlaskEffectCorrupted"] = { type = "Corrupted", affix = "", "+(20-25)% to Critical Strike Multiplier during any Flask Effect", statOrder = { 5850 }, level = 60, group = "AdditionalCriticalStrikeMultiplierUnderFlaskEffect", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "damage", "critical" }, }, + ["V2AdditionalCurseCorrupted"] = { type = "Corrupted", affix = "", "You can apply an additional Curse", statOrder = { 2077 }, level = 60, group = "AdditionalCurseOnEnemies", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { "caster", "curse" }, }, + ["V2AdditionalPhysicalDamageReductionWhileStationaryCorrupted_"] = { type = "Corrupted", affix = "", "(3-5)% additional Physical Damage Reduction while stationary", statOrder = { 4220 }, level = 1, group = "PhysicalDamageReductionWhileNotMoving", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "physical" }, }, + ["V2AdditionalProjectilesCorrupted"] = { type = "Corrupted", affix = "", "Skills fire an additional Projectile", statOrder = { 1703 }, level = 1, group = "AdditionalProjectilesCorrupted", weightKey = { "rapier", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["V2AngerSkillReducedCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 21 Anger Skill", statOrder = { 564 }, level = 56, group = "AngerSkill", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "skill" }, }, + ["V2AttackSpeedCorrupted"] = { type = "Corrupted", affix = "", "(8-10)% increased Attack Speed", statOrder = { 1321 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "speed" }, }, + ["V2BlindImmunityCorrupted"] = { type = "Corrupted", affix = "", "Cannot be Blinded", statOrder = { 2883 }, level = 1, group = "ImmunityToBlind", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["V2BlockChanceCorrupted"] = { type = "Corrupted", affix = "", "(4-5)% Chance to Block Attack Damage", statOrder = { 1051 }, level = 1, group = "MonsterBlock", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "block" }, }, + ["V2CanCatchCorruptFishCorrupted"] = { type = "Corrupted", affix = "", "You can catch Corrupted Fish", statOrder = { 2765 }, level = 1, group = "CorruptFish", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { "vaal", "drop" }, }, + ["V2CannotGainBleedingCorrupted_"] = { type = "Corrupted", affix = "", "Bleeding cannot be inflicted on you", statOrder = { 4122 }, level = 60, group = "BleedingImmunity", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["V2AvoidIgniteCorrupted"] = { type = "Corrupted", affix = "", "Cannot be Ignited", statOrder = { 1750 }, level = 40, group = "CannotBeIgnited", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["V2CannotBePoisonedCorrupted"] = { type = "Corrupted", affix = "", "Cannot be Poisoned", statOrder = { 3277 }, level = 40, group = "CannotBePoisoned", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["V2CastSpeedCorrupted"] = { type = "Corrupted", affix = "", "(10-20)% increased Cast Speed", statOrder = { 1357 }, level = 1, group = "IncreasedCastSpeedFishing", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { "red_herring", "caster", "speed" }, }, + ["V2ChanceToBleedOnHitAndIncreasedDamageToBleedingTargetsCorrupted_"] = { type = "Corrupted", affix = "", "20% chance to cause Bleeding on Hit", "(30-40)% increased Attack Damage against Bleeding Enemies", statOrder = { 2392, 2400 }, level = 1, group = "ChanceToBleedOnHitAndIncreasedDamageToBleedingTargets", weightKey = { "axe", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["V2ChanceToDodgeCorrupted"] = { type = "Corrupted", affix = "", "+(4-6)% chance to Suppress Spell Damage", statOrder = { 1056 }, level = 1, group = "ChanceToSuppressSpells", weightKey = { "boots", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["V2ChanceToGainEnduranceChargeOnStunCorrupted_"] = { type = "Corrupted", affix = "", "(5-7)% chance to gain an Endurance Charge when you Stun an Enemy", statOrder = { 5584 }, level = 1, group = "GainEnduranceChargeOnStunChance", weightKey = { "sceptre", "staff", "mace", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "endurance_charge" }, }, + ["V2ChanceToGainFortifyOnMeleeHitCorrupted"] = { type = "Corrupted", affix = "", "Melee Hits have (10-15)% chance to Fortify", statOrder = { 2173 }, level = 1, group = "FortifyOnMeleeHit", weightKey = { "sceptre", "wand", "dagger", "claw", "rapier", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 0, 1000, 0 }, modTags = { "attack" }, }, + ["V2ChanceToGainFrenzyChargeOnKillCorrupted"] = { type = "Corrupted", affix = "", "(9-11)% chance to gain a Frenzy Charge on Kill", statOrder = { 2539 }, level = 1, group = "FrenzyChargeOnKillChance", weightKey = { "dagger", "claw", "bow", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "frenzy_charge" }, }, + ["V2ChanceToGainOnslaughtOnKillCorrupted_"] = { type = "Corrupted", affix = "", "(10-15)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2902 }, level = 1, group = "ChanceToGainOnslaughtOnKill", weightKey = { "sceptre", "wand", "dagger", "claw", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, modTags = { }, }, + ["V2ChanceToGainPowerChargeOnCritCorrupted"] = { type = "Corrupted", affix = "", "(5-7)% chance to gain a Power Charge on Critical Strike", statOrder = { 1741 }, level = 1, group = "PowerChargeOnCriticalStrikeChance", weightKey = { "wand", "dagger", "claw", "sceptre", "staff", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "power_charge", "critical" }, }, + ["V2UnholyMightOnKillPercentChanceCorrupted"] = { type = "Corrupted", affix = "", "(10-15)% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3285 }, level = 1, group = "UnholyMightOnKillPercentChance", weightKey = { "wand", "dagger", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { }, }, + ["V2ChanceToSpellDodgeCorrupted_"] = { type = "Corrupted", affix = "", "+(6-9)% chance to Suppress Spell Damage", statOrder = { 1056 }, level = 45, group = "ChanceToSuppressSpells", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["V2ClaritySkillReducedCorrupted_"] = { type = "Corrupted", affix = "", "Grants Level 21 Clarity Skill", statOrder = { 555 }, level = 56, group = "ClaritySkill", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "skill" }, }, + ["V2ColdDamageLifeLeechPermyriadCorrupted_"] = { type = "Corrupted", affix = "", "0.5% of Cold Damage Leeched as Life", statOrder = { 1586 }, level = 50, group = "ColdDamageLifeLeechPermyriad", weightKey = { "helmet", "amulet", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "resource", "life", "elemental", "cold" }, }, + ["V2ConductivitySkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Conductivity Skill", statOrder = { 550 }, level = 56, group = "ConductivitySkill", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "skill" }, }, + ["V2CurseOnHitDespair"] = { type = "Corrupted", affix = "", "Curse Enemies with Despair on Hit", statOrder = { 2437 }, level = 30, group = "CurseOnHitDespair", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "curse" }, }, + ["V2CurseOnHitElementalWeaknessCorrupted"] = { type = "Corrupted", affix = "", "Curse Enemies with Elemental Weakness on Hit", statOrder = { 2434 }, level = 30, group = "CurseOnHitLevelElementalWeakness", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "curse" }, }, + ["V2CurseOnHitEnfeeble"] = { type = "Corrupted", affix = "", "Curse Enemies with Enfeeble on Hit", statOrder = { 2438 }, level = 30, group = "CurseOnHitEnfeeble", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "curse" }, }, + ["V2CurseOnHitTemporalChainsCurrupted"] = { type = "Corrupted", affix = "", "Curse Enemies with Temporal Chains on Hit", statOrder = { 2431 }, level = 30, group = "CurseOnHitLevelTemporalChains", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "curse" }, }, + ["V2CurseOnHitVulnerabilityCorrupted"] = { type = "Corrupted", affix = "", "Curse Enemies with Vulnerability on Hit", statOrder = { 2432 }, level = 30, group = "CurseOnHitLevelVulnerability", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "curse" }, }, + ["V2DespairSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Despair Skill", statOrder = { 542 }, level = 56, group = "DespairSkill", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "skill" }, }, + ["V2DeterminationSkillCorrupted__"] = { type = "Corrupted", affix = "", "Grants Level 23 Determination Skill", statOrder = { 565 }, level = 56, group = "DeterminationSkill", weightKey = { "shield", "default", }, weightVal = { 333, 0 }, modTags = { "skill" }, }, + ["V2DisciplineSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Discipline Skill", statOrder = { 568 }, level = 56, group = "DisciplineSkill", weightKey = { "shield", "default", }, weightVal = { 333, 0 }, modTags = { "skill" }, }, + ["V2DodgeAttackHitsWhileMovingCorrupted_"] = { type = "Corrupted", affix = "", "+(6-10)% chance to Suppress Spell Damage while moving", statOrder = { 9962 }, level = 60, group = "DodgeSpellHitsWhileMoving", weightKey = { "boots", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["V2DodgeSpellHitsWhileMovingCorrupted"] = { type = "Corrupted", affix = "", "+(6-10)% chance to Suppress Spell Damage while moving", statOrder = { 9962 }, level = 60, group = "DodgeSpellHitsWhileMoving", weightKey = { "boots", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["V2DualWieldBlockCorrupted"] = { type = "Corrupted", affix = "", "+(8-10)% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1074 }, level = 1, group = "BlockWhileDualWielding", weightKey = { "claw", "default", }, weightVal = { 1000, 0 }, modTags = { "block" }, }, + ["V2ElementalDamagePenetrationCorrupted"] = { type = "Corrupted", affix = "", "Damage Penetrates (8-10)% Elemental Resistances", statOrder = { 2889 }, level = 1, group = "ElementalPenetration", weightKey = { "wand", "rapier", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["V2FireDamageLifeLeechPermyriadCorrupted_"] = { type = "Corrupted", affix = "", "0.5% of Fire Damage Leeched as Life", statOrder = { 1581 }, level = 50, group = "FireDamageLifeLeechPermyriad", weightKey = { "helmet", "amulet", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "resource", "life", "elemental", "fire" }, }, + ["V2FishingQuantityCorrupted"] = { type = "Corrupted", affix = "", "(5-10)% increased Quantity of Fish Caught", statOrder = { 2758 }, level = 1, group = "FishingQuantity", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { "drop" }, }, + ["V2FishingRarityCorrupted_"] = { type = "Corrupted", affix = "", "(5-10)% increased Rarity of Fish Caught", statOrder = { 2759 }, level = 1, group = "FishingRarity", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { "drop" }, }, + ["V2FlammabilitySkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Flammability Skill", statOrder = { 546 }, level = 56, group = "FlammabilitySkill", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "skill" }, }, + ["V2FrostbiteSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Frostbite Skill", statOrder = { 551 }, level = 56, group = "FrostbiteSkill", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "skill" }, }, + ["V2GainFrenzyChargeAfterSpending200ManaCorrupted"] = { type = "Corrupted", affix = "", "Gain a Frenzy Charge after Spending a total of 200 Mana", statOrder = { 6586 }, level = 1, group = "GainFrenzyChargeAfterSpending200Mana", weightKey = { "rapier", "default", }, weightVal = { 1000, 0 }, modTags = { "frenzy_charge" }, }, + ["V2GemLevelCorrupted"] = { type = "Corrupted", affix = "", "+1 to Level of Socketed Gems", statOrder = { 142 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { "boots", "gloves", "body_armour", "shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "gem" }, }, + ["V2GlobalCriticalStrikeMultiplierCorrupted"] = { type = "Corrupted", affix = "", "+(25-30)% to Global Critical Strike Multiplier", statOrder = { 1399 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { "dagger", "claw", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "damage", "critical" }, }, + ["V2GraceSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Grace Skill", statOrder = { 566 }, level = 56, group = "GraceSkill", weightKey = { "shield", "default", }, weightVal = { 333, 0 }, modTags = { "skill" }, }, + ["V2HasteSkillCorrupted_"] = { type = "Corrupted", affix = "", "Grants Level 21 Haste Skill", statOrder = { 553 }, level = 56, group = "HasteSkill", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { "skill" }, }, + ["V2HatredSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 21 Hatred Skill", statOrder = { 563 }, level = 56, group = "HatredSkill", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "skill" }, }, + ["V2MalevolenceSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Malevolence Skill", statOrder = { 626 }, level = 56, group = "MalevolenceSkill", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "skill" }, }, + ["V2ZealotrySkillCorrupted_"] = { type = "Corrupted", affix = "", "Grants Level 23 Zealotry Skill", statOrder = { 644 }, level = 56, group = "ZealotrySkill", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "skill" }, }, + ["V2PrideSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 21 Pride Skill", statOrder = { 630 }, level = 56, group = "PrideSkill", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "skill" }, }, + ["V2IncreasedAreaOfEffect1hCorrupted"] = { type = "Corrupted", affix = "", "(15-20)% increased Area of Effect", statOrder = { 1791 }, level = 1, group = "AreaOfEffect", weightKey = { "dagger", "claw", "rapier", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { }, }, + ["V2IncreasedAreaOfEffect2hCorrupted_"] = { type = "Corrupted", affix = "", "(25-30)% increased Area of Effect", statOrder = { 1791 }, level = 1, group = "AreaOfEffect", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, + ["V2IncreasedAtackCriticalStrikeCorruption"] = { type = "Corrupted", affix = "", "Attacks have +(0.5-0.8)% to Critical Strike Chance", statOrder = { 4691 }, level = 60, group = "AdditionalCriticalStrikeChanceWithAttacks", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "critical" }, }, + ["V2IncreasedAttackSpeedCorrupted"] = { type = "Corrupted", affix = "", "(8-10)% increased Attack Speed", statOrder = { 1321 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "gloves", "ring", "default", }, weightVal = { 1000, 500, 0 }, modTags = { "attack", "speed" }, }, + ["V2IncreasedAttackSpeedUnderFlaskEffectCorrupted"] = { type = "Corrupted", affix = "", "(8-12)% increased Attack Speed during any Flask Effect", statOrder = { 3208 }, level = 60, group = "AttackSpeedDuringFlaskEffect", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "attack", "speed" }, }, + ["V2IncreasedBurningDamageCorrupted"] = { type = "Corrupted", affix = "", "(30-40)% increased Burning Damage", statOrder = { 1788 }, level = 40, group = "BurnDamage", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["V2IncreasedCastSpeedCorrupted_"] = { type = "Corrupted", affix = "", "(8-10)% increased Cast Speed", statOrder = { 1357 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "gloves", "ring", "default", }, weightVal = { 1000, 500, 0 }, modTags = { "caster", "speed" }, }, + ["V2IncreasedCastSpeedUnderFlaskEffectCorrupted"] = { type = "Corrupted", affix = "", "(8-12)% increased Cast Speed during any Flask Effect", statOrder = { 5358 }, level = 60, group = "CastSpeedDuringFlaskEffect", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "caster", "speed" }, }, + ["V2IncreasedChillEffectCorrupted"] = { type = "Corrupted", affix = "", "(25-30)% increased Effect of Cold Ailments", statOrder = { 5695 }, level = 40, group = "ChillEffect", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["V2IncreasedCriticalStrikeUnderFlaskEffectCorrupted"] = { type = "Corrupted", affix = "", "(35-40)% increased Critical Strike Chance during any Flask Effect", statOrder = { 5819 }, level = 1, group = "IncreasedCriticalStrikeUnderFlaskEffect", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "critical" }, }, + ["V2IncreasedDamageCorrupted_"] = { type = "Corrupted", affix = "", "(40-50)% increased Damage", statOrder = { 1103 }, level = 1, group = "IncreasedDamage", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, }, + ["V2IncreasedDamageOverTimeCorrupted_"] = { type = "Corrupted", affix = "", "(50-60)% increased Damage over Time", statOrder = { 1122 }, level = 1, group = "DamageOverTime", weightKey = { "dagger", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, }, + ["V2IncreasedDurationCorrupted"] = { type = "Corrupted", affix = "", "(12-15)% increased Skill Effect Duration", statOrder = { 1806 }, level = 1, group = "SkillEffectDuration", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["V2IncreasedEnergyShieldCorrupted"] = { type = "Corrupted", affix = "", "(8-10)% increased maximum Energy Shield", statOrder = { 1472 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["V2IncreasedGlobalPhysicalDamageCorrupted"] = { type = "Corrupted", affix = "", "(15-25)% increased Global Physical Damage", statOrder = { 1143 }, level = 1, group = "PhysicalDamagePercent", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["V2IncreasedLifeCorrupted"] = { type = "Corrupted", affix = "", "(6-8)% increased maximum Life", statOrder = { 1482 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life" }, }, + ["V2IncreasedLifeRegenerationPerSecondCorrupted"] = { type = "Corrupted", affix = "", "Regenerate (1.6-2)% of Life per second", statOrder = { 1853 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life" }, }, + ["V2IncreasedMovementVelocityUnderFlaskEffectCorrupted"] = { type = "Corrupted", affix = "", "(8-12)% increased Movement Speed during any Flask Effect", statOrder = { 3094 }, level = 60, group = "MovementSpeedDuringFlaskEffect", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "speed" }, }, + ["V2IncreasedProjectileDamageForEachChainCorrupted"] = { type = "Corrupted", affix = "", "Projectiles deal (20-25)% increased Damage with Hits and Ailments for each time they have Chained", statOrder = { 9521 }, level = 40, group = "IncreasedProjectileDamageForEachChain", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, }, + ["V2IncreasedProjectileDamageForEachPierceCorrupted"] = { type = "Corrupted", affix = "", "Projectiles deal (8-10)% increased Damage with Hits and Ailments for each Enemy Pierced", statOrder = { 9522 }, level = 40, group = "ProjectileDamagePerEnemyPierced", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, }, + ["V2IncreasedShockEffectCorrupted_"] = { type = "Corrupted", affix = "", "(25-30)% increased Effect of Shock", statOrder = { 9792 }, level = 40, group = "ShockEffect", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["V2IncreasedSpellCriticalStrikeCorruption"] = { type = "Corrupted", affix = "", "+(0.5-0.8)% to Spell Critical Strike Chance", statOrder = { 9909 }, level = 60, group = "AdditionalCriticalStrikeChanceWithSpells", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "critical" }, }, + ["V2LevelOfSocketedColdGemsCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Cold Gems", statOrder = { 148 }, level = 1, group = "LocalIncreaseSocketedColdGemLevelCorrupted", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "cold", "gem" }, }, + ["V2LevelOfSocketedFireGemsCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Fire Gems", statOrder = { 147 }, level = 1, group = "LocalIncreaseSocketedFireGemLevelCorrupted", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "fire", "gem" }, }, + ["V2LevelOfSocketedLightningGemsCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Lightning Gems", statOrder = { 149 }, level = 1, group = "LocalIncreaseSocketedLightningGemLevelCorrupted", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "lightning", "gem" }, }, + ["V2LightningDamageLifeLeechPermyriadCorrupted"] = { type = "Corrupted", affix = "", "0.5% of Lightning Damage Leeched as Life", statOrder = { 1590 }, level = 50, group = "LightningDamageLifeLeechPermyriad", weightKey = { "helmet", "amulet", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, }, + ["V2LocalAddedChaosDamage1hCorrupted1"] = { type = "Corrupted", affix = "", "Adds (1-2) to (3-5) Chaos Damage", statOrder = { 1301 }, level = 1, group = "LocalChaosDamage", weightKey = { "dagger", "default", }, weightVal = { 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["V2LocalAddedChaosDamage1hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (6-8) to (11-13) Chaos Damage", statOrder = { 1301 }, level = 31, group = "LocalChaosDamage", weightKey = { "dagger", "default", }, weightVal = { 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["V2LocalAddedChaosDamage1hCorrupted3"] = { type = "Corrupted", affix = "", "Adds (8-11) to (19-23) Chaos Damage", statOrder = { 1301 }, level = 84, group = "LocalChaosDamage", weightKey = { "dagger", "default", }, weightVal = { 250, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["V2LocalAddedColdDamage1hCorrupted1"] = { type = "Corrupted", affix = "", "Adds (6-8) to (13-15) Cold Damage", statOrder = { 1282 }, level = 1, group = "LocalColdDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["V2LocalAddedColdDamage1hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (14-18) to (27-32) Cold Damage", statOrder = { 1282 }, level = 31, group = "LocalColdDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["V2LocalAddedColdDamage1hCorrupted3_"] = { type = "Corrupted", affix = "", "Adds (17-23) to (24-40) Cold Damage", statOrder = { 1282 }, level = 84, group = "LocalColdDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["V2LocalAddedColdDamage2hCorrupted1"] = { type = "Corrupted", affix = "", "Adds (9-13) to (20-23) Cold Damage", statOrder = { 1282 }, level = 1, group = "LocalColdDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["V2LocalAddedColdDamage2hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (22-27) to (36-44) Cold Damage", statOrder = { 1282 }, level = 31, group = "LocalColdDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["V2LocalAddedColdDamage2hCorrupted3_"] = { type = "Corrupted", affix = "", "Adds (26-32) to (45-55) Cold Damage", statOrder = { 1282 }, level = 84, group = "LocalColdDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 250, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["V2LocalAddedFireDamage1hCorrupted1"] = { type = "Corrupted", affix = "", "Adds (8-10) to (15-18) Fire Damage", statOrder = { 1273 }, level = 1, group = "LocalFireDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["V2LocalAddedFireDamage1hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (17-22) to (33-39) Fire Damage", statOrder = { 1273 }, level = 31, group = "LocalFireDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["V2LocalAddedFireDamage1hCorrupted3"] = { type = "Corrupted", affix = "", "Adds (21-28) to (40-48) Fire Damage", statOrder = { 1273 }, level = 84, group = "LocalFireDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["V2LocalAddedFireDamage2hCorrupted1"] = { type = "Corrupted", affix = "", "Adds (12-17) to (23-27) Fire Damage", statOrder = { 1273 }, level = 1, group = "LocalFireDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["V2LocalAddedFireDamage2hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (27-31) to (39-50) Fire Damage", statOrder = { 1273 }, level = 31, group = "LocalFireDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["V2LocalAddedFireDamage2hCorrupted3"] = { type = "Corrupted", affix = "", "Adds (31-39) to (52-61) Fire Damage", statOrder = { 1273 }, level = 84, group = "LocalFireDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 250, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["V2LocalAddedLightningDamage1hCorrupted1"] = { type = "Corrupted", affix = "", "Adds (1-2) to (27-28) Lightning Damage", statOrder = { 1293 }, level = 1, group = "LocalLightningDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["V2LocalAddedLightningDamage1hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (2-5) to (58-61) Lightning Damage", statOrder = { 1293 }, level = 31, group = "LocalLightningDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["V2LocalAddedLightningDamage1hCorrupted3"] = { type = "Corrupted", affix = "", "Adds (2-6) to (72-76) Lightning Damage", statOrder = { 1293 }, level = 84, group = "LocalLightningDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["V2LocalAddedLightningDamage2hCorrupted1"] = { type = "Corrupted", affix = "", "Adds (2-3) to (35-39) Lightning Damage", statOrder = { 1293 }, level = 1, group = "LocalLightningDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["V2LocalAddedLightningDamage2hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (3-7) to (73-84) Lightning Damage", statOrder = { 1293 }, level = 31, group = "LocalLightningDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["V2LocalAddedLightningDamage2hCorrupted3"] = { type = "Corrupted", affix = "", "Adds (5-9) to (103-107) Lightning Damage", statOrder = { 1293 }, level = 84, group = "LocalLightningDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 250, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["V2LocalAddedPhysicalDamage1hCorrupted1"] = { type = "Corrupted", affix = "", "Adds 1 to 2 Physical Damage", statOrder = { 1187 }, level = 1, group = "LocalPhysicalDamage", weightKey = { "wand", "dagger", "rapier", "claw", "sceptre", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["V2LocalAddedPhysicalDamage1hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (3-4) to (5-7) Physical Damage", statOrder = { 1187 }, level = 31, group = "LocalPhysicalDamage", weightKey = { "wand", "dagger", "rapier", "claw", "sceptre", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["V2LocalAddedPhysicalDamage1hCorrupted3"] = { type = "Corrupted", affix = "", "Adds (5-7) to (10-12) Physical Damage", statOrder = { 1187 }, level = 84, group = "LocalPhysicalDamage", weightKey = { "wand", "dagger", "rapier", "claw", "sceptre", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 0, 250, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["V2LocalAddedPhysicalDamage2hCorrupted1"] = { type = "Corrupted", affix = "", "Adds 1 to (2-3) Physical Damage", statOrder = { 1187 }, level = 1, group = "LocalPhysicalDamage", weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["V2LocalAddedPhysicalDamage2hCorrupted2__"] = { type = "Corrupted", affix = "", "Adds (4-5) to (6-8) Physical Damage", statOrder = { 1187 }, level = 31, group = "LocalPhysicalDamage", weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["V2LocalAddedPhysicalDamage2hCorrupted3"] = { type = "Corrupted", affix = "", "Adds (8-9) to (11-13) Physical Damage", statOrder = { 1187 }, level = 84, group = "LocalPhysicalDamage", weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["V2LocalBlockChanceCorrupted"] = { type = "Corrupted", affix = "", "+(4-5)% Chance to Block", statOrder = { 2158 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { "block" }, }, + ["V2LocalIncreasedAttackSpeedBowCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% increased Attack Speed", statOrder = { 1324 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "speed" }, }, + ["V2LocalIncreasedAttackSpeed1hCorrupted"] = { type = "Corrupted", affix = "", "(5-7)% increased Attack Speed", statOrder = { 1324 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { "wand", "one_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack", "speed" }, }, + ["V2LocalIncreasedAttackSpeed2hCorrupted_"] = { type = "Corrupted", affix = "", "(5-7)% increased Attack Speed", statOrder = { 1324 }, level = 70, group = "LocalIncreasedAttackSpeed", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack", "speed" }, }, + ["V2LocalIncreasedAttackSpeedWandCorrupted_"] = { type = "Corrupted", affix = "", "(3-5)% increased Attack Speed", statOrder = { 1324 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { "wand", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "speed" }, }, + ["V2IncreasedCastSpeedCorrupted__"] = { type = "Corrupted", affix = "", "(12-15)% increased Cast Speed", statOrder = { 1357 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "sceptre", "staff", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "caster", "speed" }, }, + ["V2LocalIncreasedCriticalStrikeChance1hCorrupted1"] = { type = "Corrupted", affix = "", "(14-18)% increased Critical Strike Chance", statOrder = { 1375 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { "wand", "rapier", "claw", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "attack", "critical" }, }, + ["V2LocalIncreasedCriticalStrikeChance2hCorrupted_"] = { type = "Corrupted", affix = "", "(14-18)% increased Critical Strike Chance", statOrder = { 1375 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { "bow", "staff", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "attack", "critical" }, }, + ["V2LocalIncreasedCriticalStrikeChance1hCorrupted2__"] = { type = "Corrupted", affix = "", "(14-18)% increased Critical Strike Chance", statOrder = { 1375 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { "dagger", "sceptre", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "attack", "critical" }, }, + ["V2LocalIncreasedPhysicalDamageBowCorrupted1"] = { type = "Corrupted", affix = "", "(10-15)% increased Physical Damage", statOrder = { 1144 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["V2LocalIncreasedPhysicalDamageBowCorrupted2"] = { type = "Corrupted", affix = "", "(16-20)% increased Physical Damage", statOrder = { 1144 }, level = 85, group = "LocalPhysicalDamagePercent", weightKey = { "bow", "default", }, weightVal = { 100, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["V2LocalIncreasedPhysicalDamageCorrupted1"] = { type = "Corrupted", affix = "", "(10-15)% increased Physical Damage", statOrder = { 1144 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { "rapier", "sword", "axe", "mace", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["V2LocalIncreasedPhysicalDamageCorrupted2"] = { type = "Corrupted", affix = "", "(16-20)% increased Physical Damage", statOrder = { 1144 }, level = 85, group = "LocalPhysicalDamagePercent", weightKey = { "rapier", "sword", "axe", "mace", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["V2IncreasedSpellDamage1hCorrupted"] = { type = "Corrupted", affix = "", "(50-60)% increased Spell Damage", statOrder = { 1135 }, level = 1, group = "SpellDamage", weightKey = { "dagger", "default", }, weightVal = { 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["V2LocalMeleeWeaponRangeCorrupted"] = { type = "Corrupted", affix = "", "+(0.1-0.2) metres to Weapon Range", statOrder = { 2655 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { "sword", "mace", "staff", "bow", "two_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, modTags = { "attack" }, }, + ["V2ManaOnHitCorrupted"] = { type = "Corrupted", affix = "", "Gain (4-6) Mana per Enemy Hit with Attacks", statOrder = { 1655 }, level = 40, group = "ManaGainPerTarget", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "mana", "attack" }, }, + ["V2MaximumEnduranceChargesCorruption"] = { type = "Corrupted", affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1715 }, level = 60, group = "MaximumEnduranceCharges", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "endurance_charge" }, }, + ["V2MaxFrenzyChargesCorrupted"] = { type = "Corrupted", affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1720 }, level = 60, group = "MaximumFrenzyCharges", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, modTags = { "frenzy_charge" }, }, + ["V2MaxPowerChargesCorrupted"] = { type = "Corrupted", affix = "", "+1 to Maximum Power Charges", statOrder = { 1725 }, level = 60, group = "IncreasedMaximumPowerCharges", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { "power_charge" }, }, + ["V2MaximumBlockCorruption"] = { type = "Corrupted", affix = "", "+1% to maximum Chance to Block Attack Damage", statOrder = { 1897 }, level = 60, group = "MaximumBlockChance", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { "block" }, }, + ["V2MaximumResistanceCorrupted"] = { type = "Corrupted", affix = "", "+1% to all maximum Resistances", statOrder = { 1553 }, level = 80, group = "MaximumResistances", weightKey = { "amulet", "body_armour", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resistance" }, }, + ["V2MovementVelocityCorrupted"] = { type = "Corrupted", affix = "", "(8-10)% increased Movement Speed", statOrder = { 1709 }, level = 1, group = "MovementVelocity", weightKey = { "amulet", "boots", "default", }, weightVal = { 500, 500, 0 }, modTags = { "speed" }, }, + ["V2PercentageOfBlockAppliesToSpellBlockCorrupted_"] = { type = "Corrupted", affix = "", "(6-7)% Chance to Block Spell Damage", statOrder = { 1067 }, level = 1, group = "BlockingBlocksSpells", weightKey = { "shield", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "block" }, }, + ["V2SpellBlockPercentageCorrupted"] = { type = "Corrupted", affix = "", "(4-5)% Chance to Block Spell Damage", statOrder = { 1072 }, level = 1, group = "SpellBlockPercentage", weightKey = { "shield", "amulet", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "block" }, }, + ["V2PhysicalDamageAddedAsColdCorrupted"] = { type = "Corrupted", affix = "", "Gain (8-12)% of Physical Damage as Extra Cold Damage", statOrder = { 1842 }, level = 1, group = "ColdDamageAsPortionOfDamage", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, + ["V2PhysicalDamageAddedAsFireCorrupted"] = { type = "Corrupted", affix = "", "Gain (8-12)% of Physical Damage as Extra Fire Damage", statOrder = { 1841 }, level = 1, group = "FireDamageAsPortionOfDamage", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["V2PhysicalDamageAddedAsLightningCorrupted"] = { type = "Corrupted", affix = "", "Gain (8-12)% of Physical Damage as Extra Lightning Damage", statOrder = { 1843 }, level = 1, group = "LightningDamageAsPortionOfDamage", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, + ["V2PhysicalDamageTakenAsColdCorrupted"] = { type = "Corrupted", affix = "", "(6-8)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2357 }, level = 60, group = "PhysicalDamageTakenAsCold", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["V2PhysicalDamageTakenAsFireCorrupted"] = { type = "Corrupted", affix = "", "(6-8)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2356 }, level = 60, group = "PhysicalDamageTakenAsFirePercent", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["V2PhysicalDamageTakenAsLightningCorrupted"] = { type = "Corrupted", affix = "", "(6-8)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2358 }, level = 60, group = "PhysicalDamageTakenAsLightningPercent", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["V2PhysicalDamageTakenAsChaosCorrupted_"] = { type = "Corrupted", affix = "", "(6-8)% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2360 }, level = 60, group = "PhysicalDamageTakenAsChaos", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { "physical", "chaos" }, }, + ["V2PointBlankCorrupted"] = { type = "Corrupted", affix = "", "Point Blank", statOrder = { 10573 }, level = 1, group = "PointBlank", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "attack" }, }, + ["V2PurityOfFireSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Purity of Fire Skill", statOrder = { 537 }, level = 56, group = "PurityOfFireSkill", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "skill" }, }, + ["V2PurityOfColdSkillCorrupted___"] = { type = "Corrupted", affix = "", "Grants Level 23 Purity of Ice Skill", statOrder = { 543 }, level = 56, group = "PurityOfColdSkill", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "skill" }, }, + ["V2PurityOfLightningSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Purity of Lightning Skill", statOrder = { 545 }, level = 56, group = "PurityOfLightningSkill", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "skill" }, }, + ["V2PuritySkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 21 Purity of Elements Skill", statOrder = { 559 }, level = 56, group = "PuritySkill", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "skill" }, }, + ["V2ReducedChaosDamageTakenCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% reduced Chaos Damage taken", statOrder = { 2152 }, level = 45, group = "ChaosDamageTakenPercentage", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "chaos" }, }, + ["V2ReducedColdDamageTakenCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% reduced Cold Damage taken", statOrder = { 3297 }, level = 45, group = "ColdDamageTakenPercentage", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "cold" }, }, + ["V2ReducedDamageFromAreaOfEffectCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% reduced Area Damage taken from Hits", statOrder = { 2148 }, level = 20, group = "AreaOfEffectDamageTaken", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["V2ReducedDamageFromProjectilesCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% reduced Damage taken from Projectile Hits", statOrder = { 2659 }, level = 20, group = "ProjectileDamageTaken", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["V2ReducedFireDamageTakenCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% reduced Fire Damage taken", statOrder = { 2151 }, level = 45, group = "FireDamageTaken", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "fire" }, }, + ["V2ReducedLightningDamageTakenCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% reduced Lightning Damage taken", statOrder = { 3296 }, level = 45, group = "LightningDamageTaken", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "lightning" }, }, + ["V2ReducedExtraDamageFromCriticalStrikesBodyCorrupted__"] = { type = "Corrupted", affix = "", "You take 50% reduced Extra Damage from Critical Strikes", statOrder = { 1423 }, level = 20, group = "ReducedExtraDamageFromCrits", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "critical" }, }, + ["V2ReducedExtraDamageFromCriticalStrikesShieldCorrupted"] = { type = "Corrupted", affix = "", "You take (20-30)% reduced Extra Damage from Critical Strikes", statOrder = { 1423 }, level = 20, group = "ReducedExtraDamageFromCrits", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "critical" }, }, + ["V2RegenerateLifePerSecondWhileMovingCorrupted_"] = { type = "Corrupted", affix = "", "Regenerate 100 Life per second while moving", statOrder = { 7266 }, level = 60, group = "LifeRegenerationWhileMoving", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life" }, }, + ["V2ResoluteTechniqueCorrupted"] = { type = "Corrupted", affix = "", "Resolute Technique", statOrder = { 10598 }, level = 40, group = "ResoluteTechnique", weightKey = { "sword", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "critical" }, }, + ["V2SocketedSkillsManaMultiplierCorrupted__"] = { type = "Corrupted", affix = "", "Socketed Skill Gems get a 90% Cost & Reservation Multiplier", statOrder = { 457 }, level = 1, group = "SocketedSkillsManaMultiplier", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana", "gem" }, }, + ["V2SupportedByAccuracyCorrupted__"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 10 Additional Accuracy", statOrder = { 407 }, level = 1, group = "SupportedByAccuracy", weightKey = { "mace", "axe", "bow", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, modTags = { "support", "gem" }, }, + ["V2SupportedByBlindCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 10 Blind", statOrder = { 397 }, level = 1, group = "SupportedByBlind", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "gem" }, }, + ["V2SupportedByBloodmagicCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 1 Lifetap", statOrder = { 271 }, level = 1, group = "SocketedGemsSupportedByLifetap", weightKey = { "mace", "sword", "bow", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, modTags = { "skill", "gem" }, }, + ["V2SupportedByFasterProjectilesCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 10 Faster Projectiles", statOrder = { 409 }, level = 1, group = "SupportedByProjectileSpeed", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "gem" }, }, + ["V2SupportedByFortifyCorrupted_"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 10 Fortify", statOrder = { 423 }, level = 1, group = "SupportedByFortify", weightKey = { "bow", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "support", "gem" }, }, + ["V2SupportedByLifeGainOnHitCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 10 Life Gain On Hit", statOrder = { 270 }, level = 1, group = "SupportedByLifeGainOnHit", weightKey = { "sword", "mace", "bow", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, modTags = { "support", "gem" }, }, + ["V2SupportedByOnslaughtCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 10 Momentum", statOrder = { 285 }, level = 1, group = "SupportedByOnslaught", weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "support", "gem" }, }, + ["V2SupportedByReducedManaCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 10 Inspiration", statOrder = { 421 }, level = 1, group = "SupportedByReducedMana", weightKey = { "sword", "bow", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "support", "gem" }, }, + ["V2WeaponElementalDamageCorrupted"] = { type = "Corrupted", affix = "", "(20-24)% increased Elemental Damage with Attack Skills", statOrder = { 6215 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["V2WrathSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 21 Wrath Skill", statOrder = { 562 }, level = 45, group = "WrathSkill", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "skill" }, }, + ["V2SocketedDurationGemCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Duration Gems", statOrder = { 155 }, level = 20, group = "IncreaseSocketedDurationGemLevel", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "gem" }, }, + ["V2SocketedAoEGemCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed AoE Gems", statOrder = { 156 }, level = 20, group = "IncreasedSocketedAoEGemLevel", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "gem" }, }, + ["V2SocketedAuraGemCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Aura Gems", statOrder = { 161 }, level = 20, group = "LocalIncreaseSocketedAuraLevelCorrupted", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "aura", "gem" }, }, + ["V2SocketedCurseGemCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Curse Gems", statOrder = { 164 }, level = 20, group = "LocalIncreaseSocketedCurseLevelCorrupted", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "gem", "curse" }, }, + ["V2SocketedTrapOrMineGemCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Trap or Mine Gems", statOrder = { 167 }, level = 20, group = "IncreasedSocketedTrapOrMineGemLevel", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "gem" }, }, + ["V2SocketedMinionGemCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Minion Gems", statOrder = { 160 }, level = 20, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "minion", "gem" }, }, + ["V2SocketedWarcryGemCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Warcry Gems", statOrder = { 172 }, level = 20, group = "LocalSocketedWarcryGemLevel", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "gem" }, }, + ["V2SocketedProjectileGemCorrupted_"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Projectile Gems", statOrder = { 157 }, level = 20, group = "LocalIncreaseSocketedProjectileLevelCorrupted", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "gem" }, }, + ["V2IncreasedMaximumLifeCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% increased maximum Life", statOrder = { 1482 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life" }, }, + ["V2IncreasedMaximumEnergyShieldCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% increased maximum Energy Shield", statOrder = { 1472 }, level = 1, group = "MaximumEnergyShieldPercent", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["V2ItemRarityCorrupted_"] = { type = "Corrupted", affix = "", "(20-30)% increased Rarity of Items found", statOrder = { 1507 }, level = 60, group = "IncreasedItemRarity", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "drop" }, }, + ["V2ItemQuantityCorrupted_"] = { type = "Corrupted", affix = "", "(3-5)% increased Quantity of Items found", statOrder = { 1503 }, level = 84, group = "IncreasedItemQuantity", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "drop" }, }, + ["V2IncreasedAuraEffectWrathCorrupted"] = { type = "Corrupted", affix = "", "Wrath has (15-20)% increased Aura Effect", statOrder = { 3269 }, level = 45, group = "IncreasedAuraEffectWrathCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "aura" }, }, + ["V2IncreasedAuraEffectAngerCorrupted"] = { type = "Corrupted", affix = "", "Anger has (15-20)% increased Aura Effect", statOrder = { 3264 }, level = 45, group = "IncreasedAuraEffectAngerCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "aura" }, }, + ["V2IncreasedAuraEffectHatredCorrupted"] = { type = "Corrupted", affix = "", "Hatred has (15-20)% increased Aura Effect", statOrder = { 3274 }, level = 45, group = "IncreasedAuraEffectHatredCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "aura" }, }, + ["V2IncreasedAuraEffectDeterminationCorrupted"] = { type = "Corrupted", affix = "", "Determination has (15-20)% increased Aura Effect", statOrder = { 3275 }, level = 45, group = "IncreasedAuraEffectDeterminationCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "aura" }, }, + ["V2IncreasedAuraEffectDisciplineCorrupted"] = { type = "Corrupted", affix = "", "Discipline has (15-20)% increased Aura Effect", statOrder = { 3276 }, level = 45, group = "IncreasedAuraEffectDisciplineCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "aura" }, }, + ["V2IncreasedAuraEffectGraceCorrupted"] = { type = "Corrupted", affix = "", "Grace has (15-20)% increased Aura Effect", statOrder = { 3271 }, level = 45, group = "IncreasedAuraEffectGraceCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "aura" }, }, + ["V2IncreasedAuraEffectMalevolenceCorrupted"] = { type = "Corrupted", affix = "", "Malevolence has (15-20)% increased Aura Effect", statOrder = { 6055 }, level = 45, group = "IncreasedAuraEffectMalevolenceCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "aura" }, }, + ["V2IncreasedAuraEffectZealotryCorrupted_"] = { type = "Corrupted", affix = "", "Zealotry has (15-20)% increased Aura Effect", statOrder = { 10495 }, level = 45, group = "IncreasedAuraEffectZealotryCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "aura" }, }, + ["V2IncreasedAuraEffectPrideCorrupted"] = { type = "Corrupted", affix = "", "Pride has (15-20)% increased Aura Effect", statOrder = { 9498 }, level = 45, group = "IncreasedAuraEffectPrideCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "aura" }, }, + ["V2IncreasedIntelligenceDexterityCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% increased Dexterity", "(4-6)% increased Intelligence", statOrder = { 1097, 1098 }, level = 1, group = "IncreasedIntelligenceDexterityCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "attribute" }, }, + ["V2IncreasedDexterityStrengthCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% increased Strength", "(4-6)% increased Dexterity", statOrder = { 1096, 1097 }, level = 1, group = "IncreasedDexterityStrengthCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "attribute" }, }, + ["V2IncreasedStrengthIntelligenceCorrupted_"] = { type = "Corrupted", affix = "", "(4-6)% increased Strength", "(4-6)% increased Intelligence", statOrder = { 1096, 1098 }, level = 1, group = "IncreasedStrengthIntelligenceCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "attribute" }, }, + ["V2AllResistancesCorrupted"] = { type = "Corrupted", affix = "", "+(14-16)% to all Elemental Resistances", statOrder = { 1530 }, level = 1, group = "AllResistancesCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "elemental", "resistance" }, }, + ["LocalIncreaseSocketedSupportGemLevelIntMasterVendorItem"] = { type = "Prefix", affix = "Catarina's", "+1 to Level of Socketed Support Gems", statOrder = { 169 }, level = 1, group = "LocalIncreaseSocketedSupportGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "gem" }, }, + ["IncreasedChaosDamageEssence5"] = { type = "Suffix", affix = "of the Essence", "(23-26)% increased Chaos Damage", statOrder = { 1296 }, level = 58, group = "IncreasedChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["IncreasedChaosDamageEssence6"] = { type = "Suffix", affix = "of the Essence", "(27-30)% increased Chaos Damage", statOrder = { 1296 }, level = 74, group = "IncreasedChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["IncreasedChaosDamageEssence7"] = { type = "Suffix", affix = "of the Essence", "(31-34)% increased Chaos Damage", statOrder = { 1296 }, level = 82, group = "IncreasedChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["IncreasedLifeLeechRateEssence1"] = { type = "Suffix", affix = "of the Essence", "150% increased total Recovery per second from Life Leech", statOrder = { 2066 }, level = 63, group = "IncreasedLifeLeechRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, + ["ChaosLeechedAsLifeEssence1_"] = { type = "Suffix", affix = "of the Essence", "0.5% of Chaos Damage Leeched as Life", statOrder = { 1593 }, level = 63, group = "ChaosDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "chaos" }, }, + ["ReduceGlobalFlatManaCostStrIntMasterVendor"] = { type = "Prefix", affix = "Elreon's", "-(8-4) to Total Mana Cost of Skills", statOrder = { 1802 }, level = 1, group = "IncreaseManaCostFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, + ["LifeLeechSpeedDexIntMasterVendorItem"] = { type = "Prefix", affix = "Vorici's", "(20-40)% increased total Recovery per second from Life Leech", statOrder = { 2066 }, level = 1, group = "LifeLeechSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, + ["SocketedGemQualityStrMasterVendorItem"] = { type = "Prefix", affix = "Haku's", "+(3-6)% to Quality of Socketed Support Gems", statOrder = { 184 }, level = 1, group = "IncreaseSocketedSupportGemQuality", weightKey = { "default", }, weightVal = { 0 }, modTags = { "gem" }, }, + ["BleedOnHitGainedDexMasterVendorItem"] = { type = "Prefix", affix = "Tora's", "25% chance to cause Bleeding on Hit", statOrder = { 2390 }, level = 1, group = "CausesBleeding25PercentChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["BleedOnHitGainedDexMasterVendorItemUpdated_"] = { type = "Prefix", affix = "Tora's", "25% chance to cause Bleeding on Hit", statOrder = { 2392 }, level = 1, group = "CausesBleedingChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["AlwaysHitsStrDexMasterVendorItem"] = { type = "Prefix", affix = "Vagan's", "Hits can't be Evaded", statOrder = { 1952 }, level = 1, group = "AlwaysHits", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, }, + ["MapInvasionBossMasterVendorItem"] = { type = "Prefix", affix = "Kirac's", "Area is inhabited by an additional Invasion Boss", statOrder = { 2528 }, level = 1, group = "MapExtraInvasionBosses", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["LightningPenetrationWarbands"] = { type = "Prefix", affix = "Turncoat's", "Damage Penetrates (6-10)% Lightning Resistance", statOrder = { 2893 }, level = 60, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningResistancePenetrationEssence1_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 5% Lightning Resistance", statOrder = { 2893 }, level = 42, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningResistancePenetrationEssence2"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 6% Lightning Resistance", statOrder = { 2893 }, level = 58, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningResistancePenetrationEssence3"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 7% Lightning Resistance", statOrder = { 2893 }, level = 74, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningResistancePenetrationEssence4"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 8% Lightning Resistance", statOrder = { 2893 }, level = 82, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningResistancePenetrationTwoHandEssence1_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (9-10)% Lightning Resistance", statOrder = { 2893 }, level = 42, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningResistancePenetrationTwoHandEssence2"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (11-12)% Lightning Resistance", statOrder = { 2893 }, level = 58, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningResistancePenetrationTwoHandEssence3_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (13-14)% Lightning Resistance", statOrder = { 2893 }, level = 74, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningResistancePenetrationTwoHandEssence4"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (15-16)% Lightning Resistance", statOrder = { 2893 }, level = 82, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["FireResistancePenetrationWarbands"] = { type = "Prefix", affix = "Betrayer's", "Damage Penetrates (6-10)% Fire Resistance", statOrder = { 2890 }, level = 60, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireResistancePenetrationEssence1"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 4% Fire Resistance", statOrder = { 2890 }, level = 26, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireResistancePenetrationEssence2"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 5% Fire Resistance", statOrder = { 2890 }, level = 42, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireResistancePenetrationEssence3"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 6% Fire Resistance", statOrder = { 2890 }, level = 58, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireResistancePenetrationEssence4___"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 7% Fire Resistance", statOrder = { 2890 }, level = 74, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireResistancePenetrationEssence5"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 8% Fire Resistance", statOrder = { 2890 }, level = 82, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireResistancePenetrationTwoHandEssence1"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (7-8)% Fire Resistance", statOrder = { 2890 }, level = 26, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireResistancePenetrationTwoHandEssence2_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (9-10)% Fire Resistance", statOrder = { 2890 }, level = 42, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireResistancePenetrationTwoHandEssence3"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (11-12)% Fire Resistance", statOrder = { 2890 }, level = 58, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireResistancePenetrationTwoHandEssence4"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (13-14)% Fire Resistance", statOrder = { 2890 }, level = 74, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireResistancePenetrationTwoHandEssence5"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (15-16)% Fire Resistance", statOrder = { 2890 }, level = 82, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["ColdResistancePenetrationWarbands"] = { type = "Prefix", affix = "Deceiver's", "Damage Penetrates (6-10)% Cold Resistance", statOrder = { 2892 }, level = 60, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdResistancePenetrationEssence1"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 3% Cold Resistance", statOrder = { 2892 }, level = 10, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdResistancePenetrationEssence2"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 4% Cold Resistance", statOrder = { 2892 }, level = 26, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdResistancePenetrationEssence3"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 5% Cold Resistance", statOrder = { 2892 }, level = 42, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdResistancePenetrationEssence4_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 6% Cold Resistance", statOrder = { 2892 }, level = 58, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdResistancePenetrationEssence5"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 7% Cold Resistance", statOrder = { 2892 }, level = 74, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdResistancePenetrationEssence6_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 8% Cold Resistance", statOrder = { 2892 }, level = 82, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdResistancePenetrationTwoHandEssence1"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (5-6)% Cold Resistance", statOrder = { 2892 }, level = 10, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdResistancePenetrationTwoHandEssence2"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (7-8)% Cold Resistance", statOrder = { 2892 }, level = 26, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdResistancePenetrationTwoHandEssence3"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (9-10)% Cold Resistance", statOrder = { 2892 }, level = 42, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdResistancePenetrationTwoHandEssence4"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (11-12)% Cold Resistance", statOrder = { 2892 }, level = 58, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdResistancePenetrationTwoHandEssence5"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (13-14)% Cold Resistance", statOrder = { 2892 }, level = 74, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdResistancePenetrationTwoHandEssence6__"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (15-16)% Cold Resistance", statOrder = { 2892 }, level = 82, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ChanceToAvoidElementalStatusAilments1"] = { type = "Suffix", affix = "of Stoicism", "(16-20)% chance to Avoid Elemental Ailments", statOrder = { 1754 }, level = 23, group = "AvoidElementalStatusAilments", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["ChanceToAvoidElementalStatusAilments2"] = { type = "Suffix", affix = "of Resolve", "(21-25)% chance to Avoid Elemental Ailments", statOrder = { 1754 }, level = 41, group = "AvoidElementalStatusAilments", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["ChanceToAvoidElementalStatusAilments3__"] = { type = "Suffix", affix = "of Fortitude", "(26-30)% chance to Avoid Elemental Ailments", statOrder = { 1754 }, level = 57, group = "AvoidElementalStatusAilments", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["ChanceToAvoidElementalStatusAilments4"] = { type = "Suffix", affix = "of Will", "(31-35)% chance to Avoid Elemental Ailments", statOrder = { 1754 }, level = 73, group = "AvoidElementalStatusAilments", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["ChanceToAvoidElementalStatusAilmentsEssence1"] = { type = "Suffix", affix = "of the Essence", "(16-20)% chance to Avoid Elemental Ailments", statOrder = { 1754 }, level = 42, group = "AvoidElementalStatusAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["ChanceToAvoidElementalStatusAilmentsEssence2"] = { type = "Suffix", affix = "of the Essence", "(21-25)% chance to Avoid Elemental Ailments", statOrder = { 1754 }, level = 58, group = "AvoidElementalStatusAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["ChanceToAvoidElementalStatusAilmentsEssence3"] = { type = "Suffix", affix = "of the Essence", "(26-30)% chance to Avoid Elemental Ailments", statOrder = { 1754 }, level = 74, group = "AvoidElementalStatusAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["ChanceToAvoidElementalStatusAilmentsEssence4"] = { type = "Suffix", affix = "of the Essence", "(31-35)% chance to Avoid Elemental Ailments", statOrder = { 1754 }, level = 82, group = "AvoidElementalStatusAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["AttackAndCastSpeed1"] = { type = "Suffix", affix = "of Zeal", "(3-4)% increased Attack and Cast Speed", statOrder = { 1955 }, level = 15, group = "AttackAndCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "caster", "speed" }, }, + ["AttackAndCastSpeed2"] = { type = "Suffix", affix = "of Fervour", "(5-6)% increased Attack and Cast Speed", statOrder = { 1955 }, level = 45, group = "AttackAndCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "caster", "speed" }, }, + ["AttackAndCastSpeed3"] = { type = "Suffix", affix = "of Haste", "(7-8)% increased Attack and Cast Speed", statOrder = { 1955 }, level = 70, group = "AttackAndCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "caster", "speed" }, }, + ["LifeLeechPermyriadLocal1"] = { type = "Prefix", affix = "Remora's", "(0.2-0.4)% of Physical Attack Damage Leeched as Life", statOrder = { 1562 }, level = 50, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadLocal2"] = { type = "Prefix", affix = "Lamprey's", "(0.6-0.8)% of Physical Attack Damage Leeched as Life", statOrder = { 1562 }, level = 60, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadLocal3"] = { type = "Prefix", affix = "Vampire's", "(1-1.2)% of Physical Attack Damage Leeched as Life", statOrder = { 1562 }, level = 70, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadLocalSuffix1"] = { type = "Suffix", affix = "of the Remora", "(2-2.4)% of Physical Attack Damage Leeched as Life", statOrder = { 1562 }, level = 20, group = "LifeLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadLocalSuffix2"] = { type = "Suffix", affix = "of the Lamprey", "(2.6-3.2)% of Physical Attack Damage Leeched as Life", statOrder = { 1562 }, level = 45, group = "LifeLeechLocalPermyriad", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadLocalSuffix3"] = { type = "Suffix", affix = "of the Vampire", "(3.5-4.5)% of Physical Attack Damage Leeched as Life", statOrder = { 1562 }, level = 70, group = "LifeLeechLocalPermyriad", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadLocalEssence1"] = { type = "Prefix", affix = "Essences", "(0.5-0.7)% of Physical Attack Damage Leeched as Life", statOrder = { 1562 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadLocalEssence2"] = { type = "Prefix", affix = "Essences", "(0.6-0.8)% of Physical Attack Damage Leeched as Life", statOrder = { 1562 }, level = 10, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadLocalEssence3"] = { type = "Prefix", affix = "Essences", "(0.7-0.9)% of Physical Attack Damage Leeched as Life", statOrder = { 1562 }, level = 26, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadLocalEssence4"] = { type = "Prefix", affix = "Essences", "(0.8-1)% of Physical Attack Damage Leeched as Life", statOrder = { 1562 }, level = 42, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadLocalEssence5"] = { type = "Prefix", affix = "Essences", "(0.9-1.1)% of Physical Attack Damage Leeched as Life", statOrder = { 1562 }, level = 58, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadLocalEssence6"] = { type = "Prefix", affix = "Essences", "(1-1.2)% of Physical Attack Damage Leeched as Life", statOrder = { 1562 }, level = 74, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadLocalEssence7"] = { type = "Prefix", affix = "Essences", "(1.1-1.3)% of Physical Attack Damage Leeched as Life", statOrder = { 1562 }, level = 82, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadLocalSuffixEssence1"] = { type = "Suffix", affix = "of the Essence", "(2-2.2)% of Physical Attack Damage Leeched as Life", statOrder = { 1562 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadLocalSuffixEssence2"] = { type = "Suffix", affix = "of the Essence", "(2.3-2.4)% of Physical Attack Damage Leeched as Life", statOrder = { 1562 }, level = 10, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadLocalSuffixEssence3"] = { type = "Suffix", affix = "of the Essence", "(2.5-2.8)% of Physical Attack Damage Leeched as Life", statOrder = { 1562 }, level = 26, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadLocalSuffixEssence4"] = { type = "Suffix", affix = "of the Essence", "(2.9-3.2)% of Physical Attack Damage Leeched as Life", statOrder = { 1562 }, level = 42, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadLocalSuffixEssence5"] = { type = "Suffix", affix = "of the Essence", "(3.3-3.6)% of Physical Attack Damage Leeched as Life", statOrder = { 1562 }, level = 58, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadLocalSuffixEssence6"] = { type = "Suffix", affix = "of the Essence", "(3.7-4)% of Physical Attack Damage Leeched as Life", statOrder = { 1562 }, level = 74, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadLocalSuffixEssence7"] = { type = "Suffix", affix = "of the Essence", "(4.1-4.4)% of Physical Attack Damage Leeched as Life", statOrder = { 1562 }, level = 82, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["ManaLeechPermyriadLocal1"] = { type = "Prefix", affix = "Thirsty", "(0.2-0.4)% of Physical Attack Damage Leeched as Mana", statOrder = { 1612 }, level = 50, group = "ManaLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "mana", "physical", "attack" }, }, + ["ManaLeechPermyriadLocalSuffix1"] = { type = "Suffix", affix = "of Thirst", "(2.6-3.2)% of Physical Attack Damage Leeched as Mana", statOrder = { 1612 }, level = 50, group = "ManaLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "mana", "physical", "attack" }, }, + ["AttackDamagePercent1"] = { type = "Prefix", affix = "Bully's", "(4-8)% increased Attack Damage", statOrder = { 1110 }, level = 4, group = "AttackDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack" }, }, + ["AttackDamagePercent2"] = { type = "Prefix", affix = "Thug's", "(9-16)% increased Attack Damage", statOrder = { 1110 }, level = 15, group = "AttackDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack" }, }, + ["AttackDamagePercent3"] = { type = "Prefix", affix = "Brute's", "(17-24)% increased Attack Damage", statOrder = { 1110 }, level = 30, group = "AttackDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack" }, }, + ["AttackDamagePercent4"] = { type = "Prefix", affix = "Assailant's", "(25-29)% increased Attack Damage", statOrder = { 1110 }, level = 60, group = "AttackDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack" }, }, + ["AttackDamagePercent5"] = { type = "Prefix", affix = "Predator's", "(30-34)% increased Attack Damage", statOrder = { 1110 }, level = 81, group = "AttackDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack" }, }, + ["SummonTotemCastSpeedEssence1"] = { type = "Suffix", affix = "of the Essence", "(21-25)% increased Totem Placement speed", statOrder = { 2487 }, level = 42, group = "SummonTotemCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, + ["SummonTotemCastSpeedEssence2"] = { type = "Suffix", affix = "of the Essence", "(26-30)% increased Totem Placement speed", statOrder = { 2487 }, level = 58, group = "SummonTotemCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, + ["SummonTotemCastSpeedEssence3"] = { type = "Suffix", affix = "of the Essence", "(31-35)% increased Totem Placement speed", statOrder = { 2487 }, level = 74, group = "SummonTotemCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, + ["SummonTotemCastSpeedEssence4"] = { type = "Suffix", affix = "of the Essence", "(36-45)% increased Totem Placement speed", statOrder = { 2487 }, level = 82, group = "SummonTotemCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, + ["StunAvoidance1"] = { type = "Suffix", affix = "of Composure", "(11-13)% chance to Avoid being Stunned", statOrder = { 1762 }, level = 1, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["StunAvoidance2"] = { type = "Suffix", affix = "of Surefootedness", "(14-16)% chance to Avoid being Stunned", statOrder = { 1762 }, level = 1, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["StunAvoidance3"] = { type = "Suffix", affix = "of Persistence", "(17-19)% chance to Avoid being Stunned", statOrder = { 1762 }, level = 1, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["StunAvoidance4"] = { type = "Suffix", affix = "of Relentlessness", "(20-22)% chance to Avoid being Stunned", statOrder = { 1762 }, level = 1, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["StunAvoidanceEssence5"] = { type = "Suffix", affix = "of the Essence", "(23-26)% chance to Avoid being Stunned", statOrder = { 1762 }, level = 58, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["StunAvoidanceEssence6"] = { type = "Suffix", affix = "of the Essence", "(27-30)% chance to Avoid being Stunned", statOrder = { 1762 }, level = 74, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["StunAvoidanceEssence7"] = { type = "Suffix", affix = "of the Essence", "(31-44)% chance to Avoid being Stunned", statOrder = { 1762 }, level = 82, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["IncreasedStunThresholdEssence5"] = { type = "Suffix", affix = "of the Essence", "(31-39)% increased Stun Threshold", statOrder = { 3180 }, level = 58, group = "IncreasedStunThreshold", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["IncreasedStunThresholdEssence6"] = { type = "Suffix", affix = "of the Essence", "(40-45)% increased Stun Threshold", statOrder = { 3180 }, level = 74, group = "IncreasedStunThreshold", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["IncreasedStunThresholdEssence7"] = { type = "Suffix", affix = "of the Essence", "(46-60)% increased Stun Threshold", statOrder = { 3180 }, level = 82, group = "IncreasedStunThreshold", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["SpellAddedFireDamage1"] = { type = "Prefix", affix = "Heated", "Adds (1-2) to (3-4) Fire Damage to Spells", statOrder = { 1315 }, level = 1, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamage2_"] = { type = "Prefix", affix = "Smouldering", "Adds (6-8) to (12-14) Fire Damage to Spells", statOrder = { 1315 }, level = 11, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamage3"] = { type = "Prefix", affix = "Smoking", "Adds (10-12) to (19-23) Fire Damage to Spells", statOrder = { 1315 }, level = 18, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamage4"] = { type = "Prefix", affix = "Burning", "Adds (13-18) to (27-31) Fire Damage to Spells", statOrder = { 1315 }, level = 26, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamage5"] = { type = "Prefix", affix = "Flaming", "Adds (19-25) to (37-44) Fire Damage to Spells", statOrder = { 1315 }, level = 33, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamage6"] = { type = "Prefix", affix = "Scorching", "Adds (24-33) to (48-57) Fire Damage to Spells", statOrder = { 1315 }, level = 42, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamage7"] = { type = "Prefix", affix = "Incinerating", "Adds (31-42) to (64-73) Fire Damage to Spells", statOrder = { 1315 }, level = 51, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamage8"] = { type = "Prefix", affix = "Blasting", "Adds (40-52) to (79-91) Fire Damage to Spells", statOrder = { 1315 }, level = 62, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamage9"] = { type = "Prefix", affix = "Cremating", "Adds (49-66) to (98-115) Fire Damage to Spells", statOrder = { 1315 }, level = 74, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (45-54) to (80-90) Fire Damage to Spells", statOrder = { 1315 }, level = 82, group = "SpellAddedFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedColdDamage1"] = { type = "Prefix", affix = "Frosted", "Adds 1 to (2-3) Cold Damage to Spells", statOrder = { 1316 }, level = 1, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamage2"] = { type = "Prefix", affix = "Chilled", "Adds (5-7) to (10-12) Cold Damage to Spells", statOrder = { 1316 }, level = 11, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamage3"] = { type = "Prefix", affix = "Icy", "Adds (8-10) to (16-18) Cold Damage to Spells", statOrder = { 1316 }, level = 18, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamage4"] = { type = "Prefix", affix = "Frigid", "Adds (11-15) to (22-25) Cold Damage to Spells", statOrder = { 1316 }, level = 26, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamage5"] = { type = "Prefix", affix = "Freezing", "Adds (16-20) to (30-36) Cold Damage to Spells", statOrder = { 1316 }, level = 33, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamage6_"] = { type = "Prefix", affix = "Frozen", "Adds (20-26) to (40-46) Cold Damage to Spells", statOrder = { 1316 }, level = 42, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamage7"] = { type = "Prefix", affix = "Glaciated", "Adds (26-35) to (51-60) Cold Damage to Spells", statOrder = { 1316 }, level = 51, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamage8"] = { type = "Prefix", affix = "Polar", "Adds (33-43) to (64-75) Cold Damage to Spells", statOrder = { 1316 }, level = 62, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamage9"] = { type = "Prefix", affix = "Entombing", "Adds (41-54) to (81-93) Cold Damage to Spells", statOrder = { 1316 }, level = 74, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (35-45) to (66-74) Cold Damage to Spells", statOrder = { 1316 }, level = 82, group = "SpellAddedColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedLightningDamage1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (4-5) Lightning Damage to Spells", statOrder = { 1317 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamage2"] = { type = "Prefix", affix = "Buzzing", "Adds (1-2) to (21-22) Lightning Damage to Spells", statOrder = { 1317 }, level = 11, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamage3"] = { type = "Prefix", affix = "Snapping", "Adds (1-2) to (33-35) Lightning Damage to Spells", statOrder = { 1317 }, level = 18, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamage4"] = { type = "Prefix", affix = "Crackling", "Adds (1-4) to (46-48) Lightning Damage to Spells", statOrder = { 1317 }, level = 26, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamage5"] = { type = "Prefix", affix = "Sparking", "Adds (2-5) to (64-68) Lightning Damage to Spells", statOrder = { 1317 }, level = 33, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamage6"] = { type = "Prefix", affix = "Arcing", "Adds (2-7) to (84-88) Lightning Damage to Spells", statOrder = { 1317 }, level = 42, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamage7"] = { type = "Prefix", affix = "Shocking", "Adds (2-9) to (109-115) Lightning Damage to Spells", statOrder = { 1317 }, level = 51, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamage8"] = { type = "Prefix", affix = "Discharging", "Adds (4-11) to (136-144) Lightning Damage to Spells", statOrder = { 1317 }, level = 62, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamage9"] = { type = "Prefix", affix = "Electrocuting", "Adds (4-14) to (170-179) Lightning Damage to Spells", statOrder = { 1317 }, level = 74, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (4-11) to (134-144) Lightning Damage to Spells", statOrder = { 1317 }, level = 82, group = "SpellAddedLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedFireDamageTwoHand1"] = { type = "Prefix", affix = "Heated", "Adds (1-2) to (4-5) Fire Damage to Spells", statOrder = { 1315 }, level = 1, group = "SpellAddedFireDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamageTwoHand2"] = { type = "Prefix", affix = "Smouldering", "Adds (8-11) to (17-19) Fire Damage to Spells", statOrder = { 1315 }, level = 11, group = "SpellAddedFireDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamageTwoHand3"] = { type = "Prefix", affix = "Smoking", "Adds (13-17) to (26-29) Fire Damage to Spells", statOrder = { 1315 }, level = 18, group = "SpellAddedFireDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamageTwoHand4"] = { type = "Prefix", affix = "Burning", "Adds (18-23) to (36-42) Fire Damage to Spells", statOrder = { 1315 }, level = 26, group = "SpellAddedFireDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamageTwoHand5"] = { type = "Prefix", affix = "Flaming", "Adds (25-33) to (50-59) Fire Damage to Spells", statOrder = { 1315 }, level = 33, group = "SpellAddedFireDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamageTwoHand6_"] = { type = "Prefix", affix = "Scorching", "Adds (32-44) to (65-76) Fire Damage to Spells", statOrder = { 1315 }, level = 42, group = "SpellAddedFireDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamageTwoHand7"] = { type = "Prefix", affix = "Incinerating", "Adds (42-56) to (85-99) Fire Damage to Spells", statOrder = { 1315 }, level = 51, group = "SpellAddedFireDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamageTwoHand8"] = { type = "Prefix", affix = "Blasting", "Adds (53-70) to (107-123) Fire Damage to Spells", statOrder = { 1315 }, level = 62, group = "SpellAddedFireDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamageTwoHand9"] = { type = "Prefix", affix = "Cremating", "Adds (66-88) to (132-155) Fire Damage to Spells", statOrder = { 1315 }, level = 74, group = "SpellAddedFireDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamageTwoHandEssence7_"] = { type = "Prefix", affix = "Essences", "Adds (67-81) to (120-135) Fire Damage to Spells", statOrder = { 1315 }, level = 82, group = "SpellAddedFireDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedColdDamageTwoHand1_"] = { type = "Prefix", affix = "Frosted", "Adds (1-2) to (3-4) Cold Damage to Spells", statOrder = { 1316 }, level = 1, group = "SpellAddedColdDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamageTwoHand2"] = { type = "Prefix", affix = "Chilled", "Adds (8-10) to (15-18) Cold Damage to Spells", statOrder = { 1316 }, level = 11, group = "SpellAddedColdDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamageTwoHand3"] = { type = "Prefix", affix = "Icy", "Adds (12-15) to (23-28) Cold Damage to Spells", statOrder = { 1316 }, level = 18, group = "SpellAddedColdDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamageTwoHand4"] = { type = "Prefix", affix = "Frigid", "Adds (16-22) to (33-38) Cold Damage to Spells", statOrder = { 1316 }, level = 26, group = "SpellAddedColdDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamageTwoHand5"] = { type = "Prefix", affix = "Freezing", "Adds (24-30) to (45-53) Cold Damage to Spells", statOrder = { 1316 }, level = 33, group = "SpellAddedColdDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamageTwoHand6"] = { type = "Prefix", affix = "Frozen", "Adds (30-40) to (59-69) Cold Damage to Spells", statOrder = { 1316 }, level = 42, group = "SpellAddedColdDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamageTwoHand7"] = { type = "Prefix", affix = "Glaciated", "Adds (39-52) to (77-90) Cold Damage to Spells", statOrder = { 1316 }, level = 51, group = "SpellAddedColdDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamageTwoHand8"] = { type = "Prefix", affix = "Polar", "Adds (49-64) to (96-113) Cold Damage to Spells", statOrder = { 1316 }, level = 62, group = "SpellAddedColdDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamageTwoHand9"] = { type = "Prefix", affix = "Entombing", "Adds (61-81) to (120-140) Cold Damage to Spells", statOrder = { 1316 }, level = 74, group = "SpellAddedColdDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamageTwoHandEssence7"] = { type = "Prefix", affix = "Essences", "Adds (57-66) to (100-111) Cold Damage to Spells", statOrder = { 1316 }, level = 82, group = "SpellAddedColdDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedLightningDamageTwoHand1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (6-7) Lightning Damage to Spells", statOrder = { 1317 }, level = 1, group = "SpellAddedLightningDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamageTwoHand2"] = { type = "Prefix", affix = "Buzzing", "Adds (1-3) to (32-34) Lightning Damage to Spells", statOrder = { 1317 }, level = 11, group = "SpellAddedLightningDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamageTwoHand3"] = { type = "Prefix", affix = "Snapping", "Adds (1-4) to (49-52) Lightning Damage to Spells", statOrder = { 1317 }, level = 18, group = "SpellAddedLightningDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamageTwoHand4"] = { type = "Prefix", affix = "Crackling", "Adds (2-5) to (69-73) Lightning Damage to Spells", statOrder = { 1317 }, level = 26, group = "SpellAddedLightningDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamageTwoHand5"] = { type = "Prefix", affix = "Sparking", "Adds (2-8) to (97-102) Lightning Damage to Spells", statOrder = { 1317 }, level = 33, group = "SpellAddedLightningDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamageTwoHand6"] = { type = "Prefix", affix = "Arcing", "Adds (3-10) to (126-133) Lightning Damage to Spells", statOrder = { 1317 }, level = 42, group = "SpellAddedLightningDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamageTwoHand7"] = { type = "Prefix", affix = "Shocking", "Adds (5-12) to (164-173) Lightning Damage to Spells", statOrder = { 1317 }, level = 51, group = "SpellAddedLightningDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamageTwoHand8"] = { type = "Prefix", affix = "Discharging", "Adds (5-17) to (204-216) Lightning Damage to Spells", statOrder = { 1317 }, level = 62, group = "SpellAddedLightningDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamageTwoHand9_"] = { type = "Prefix", affix = "Electrocuting", "Adds (7-20) to (255-270) Lightning Damage to Spells", statOrder = { 1317 }, level = 74, group = "SpellAddedLightningDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamageTwoHandEssence7"] = { type = "Prefix", affix = "Essences", "Adds (6-16) to (201-216) Lightning Damage to Spells", statOrder = { 1317 }, level = 82, group = "SpellAddedLightningDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["LocalAddedChaosDamage1"] = { type = "Prefix", affix = "Malicious", "Adds (56-87) to (105-160) Chaos Damage", statOrder = { 1301 }, level = 83, group = "LocalChaosDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 600, 600, 600, 400, 250, 250, 600, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["LocalAddedChaosDamageEssence1_"] = { type = "Prefix", affix = "Essences", "Adds (37-59) to (79-103) Chaos Damage", statOrder = { 1301 }, level = 62, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["LocalAddedChaosDamageEssence2__"] = { type = "Prefix", affix = "Essences", "Adds (43-67) to (89-113) Chaos Damage", statOrder = { 1301 }, level = 74, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["LocalAddedChaosDamageEssence3"] = { type = "Prefix", affix = "Essences", "Adds (53-79) to (101-131) Chaos Damage", statOrder = { 1301 }, level = 82, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["LocalAddedChaosDamageTwoHand1"] = { type = "Prefix", affix = "Malicious", "Adds (98-149) to (183-280) Chaos Damage", statOrder = { 1301 }, level = 83, group = "LocalChaosDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 700, 600, 600, 250, 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["LocalAddedChaosDamageTwoHandEssence1"] = { type = "Prefix", affix = "Essences", "Adds (61-103) to (149-193) Chaos Damage", statOrder = { 1301 }, level = 62, group = "LocalChaosDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["LocalAddedChaosDamageTwoHandEssence2"] = { type = "Prefix", affix = "Essences", "Adds (73-113) to (163-205) Chaos Damage", statOrder = { 1301 }, level = 74, group = "LocalChaosDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["LocalAddedChaosDamageTwoHandEssence3"] = { type = "Prefix", affix = "Essences", "Adds (89-131) to (181-229) Chaos Damage", statOrder = { 1301 }, level = 82, group = "LocalChaosDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["RarityDuringFlaskEffectWarbands"] = { type = "Prefix", affix = "Brinerot", "30% increased Rarity of Items found during any Flask Effect", statOrder = { 2666 }, level = 1, group = "RarityDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "drop" }, }, + ["DamageDuringFlaskEffectWarbands"] = { type = "Prefix", affix = "Brinerot", "(20-25)% increased Damage during any Flask Effect", statOrder = { 3990 }, level = 1, group = "DamageDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "damage" }, }, + ["PierceChanceEssence5"] = { type = "Prefix", affix = "", "Projectiles Pierce an additional Target", statOrder = { 9569 }, level = 1, group = "Quiver1AdditionalPierceOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["PierceChanceEssence6_"] = { type = "Prefix", affix = "", "Projectiles Pierce an additional Target", statOrder = { 9569 }, level = 1, group = "Quiver1AdditionalPierceOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["PierceChanceEssence7"] = { type = "Prefix", affix = "", "Projectiles Pierce 2 additional Targets", statOrder = { 9570 }, level = 1, group = "Quiver2AdditionalPierceOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["AdditionalPierceEssence5"] = { type = "Prefix", affix = "Essences", "Projectiles Pierce an additional Target", statOrder = { 1701 }, level = 1, group = "AdditionalPierce", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["AdditionalPierceEssence6_"] = { type = "Prefix", affix = "Essences", "Projectiles Pierce an additional Target", statOrder = { 1701 }, level = 1, group = "AdditionalPierce", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["AdditionalPierceEssence7"] = { type = "Prefix", affix = "Essences", "Projectiles Pierce 2 additional Targets", statOrder = { 1701 }, level = 1, group = "AdditionalPierce", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["CannotBePoisonedEssence1"] = { type = "Suffix", affix = "of the Essence", "Cannot be Poisoned", statOrder = { 3277 }, level = 63, group = "CannotBePoisoned", weightKey = { "default", }, weightVal = { 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["ChanceToAvoidFireDamageEssence4"] = { type = "Suffix", affix = "of the Essence", "(6-7)% chance to Avoid Fire Damage from Hits", statOrder = { 3281 }, level = 42, group = "FireDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire" }, }, + ["ChanceToAvoidFireDamageEssence5"] = { type = "Suffix", affix = "of the Essence", "(7-8)% chance to Avoid Fire Damage from Hits", statOrder = { 3281 }, level = 58, group = "FireDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire" }, }, + ["ChanceToAvoidFireDamageEssence6"] = { type = "Suffix", affix = "of the Essence", "(8-9)% chance to Avoid Fire Damage from Hits", statOrder = { 3281 }, level = 74, group = "FireDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire" }, }, + ["ChanceToAvoidFireDamageEssence7"] = { type = "Suffix", affix = "of the Essence", "(9-10)% chance to Avoid Fire Damage from Hits", statOrder = { 3281 }, level = 82, group = "FireDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire" }, }, + ["ChanceToAvoidColdDamageEssence3"] = { type = "Suffix", affix = "of the Essence", "(5-6)% chance to Avoid Cold Damage from Hits", statOrder = { 3282 }, level = 26, group = "ColdDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold" }, }, + ["ChanceToAvoidColdDamageEssence4"] = { type = "Suffix", affix = "of the Essence", "(6-7)% chance to Avoid Cold Damage from Hits", statOrder = { 3282 }, level = 42, group = "ColdDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold" }, }, + ["ChanceToAvoidColdDamageEssence5"] = { type = "Suffix", affix = "of the Essence", "(7-8)% chance to Avoid Cold Damage from Hits", statOrder = { 3282 }, level = 58, group = "ColdDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold" }, }, + ["ChanceToAvoidColdDamageEssence6"] = { type = "Suffix", affix = "of the Essence", "(8-9)% chance to Avoid Cold Damage from Hits", statOrder = { 3282 }, level = 74, group = "ColdDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold" }, }, + ["ChanceToAvoidColdDamageEssence7"] = { type = "Suffix", affix = "of the Essence", "(9-10)% chance to Avoid Cold Damage from Hits", statOrder = { 3282 }, level = 82, group = "ColdDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold" }, }, + ["ChanceToAvoidLightningDamageEssence2"] = { type = "Suffix", affix = "of the Essence", "(4-5)% chance to Avoid Lightning Damage from Hits", statOrder = { 3283 }, level = 10, group = "LightningDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning" }, }, + ["ChanceToAvoidLightningDamageEssence3"] = { type = "Suffix", affix = "of the Essence", "(5-6)% chance to Avoid Lightning Damage from Hits", statOrder = { 3283 }, level = 26, group = "LightningDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning" }, }, + ["ChanceToAvoidLightningDamageEssence4"] = { type = "Suffix", affix = "of the Essence", "(6-7)% chance to Avoid Lightning Damage from Hits", statOrder = { 3283 }, level = 42, group = "LightningDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning" }, }, + ["ChanceToAvoidLightningDamageEssence5"] = { type = "Suffix", affix = "of the Essence", "(7-8)% chance to Avoid Lightning Damage from Hits", statOrder = { 3283 }, level = 58, group = "LightningDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning" }, }, + ["ChanceToAvoidLightningDamageEssence6"] = { type = "Suffix", affix = "of the Essence", "(8-9)% chance to Avoid Lightning Damage from Hits", statOrder = { 3283 }, level = 74, group = "LightningDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning" }, }, + ["ChanceToAvoidLightningDamageEssence7"] = { type = "Suffix", affix = "of the Essence", "(9-10)% chance to Avoid Lightning Damage from Hits", statOrder = { 3283 }, level = 82, group = "LightningDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning" }, }, + ["QuiverAddedChaosEssence1_"] = { type = "Prefix", affix = "Essences", "Adds (11-15) to (27-33) Chaos Damage to Attacks", statOrder = { 1298 }, level = 62, group = "ChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["QuiverAddedChaosEssence2_"] = { type = "Prefix", affix = "Essences", "Adds (17-21) to (37-43) Chaos Damage to Attacks", statOrder = { 1298 }, level = 74, group = "ChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["QuiverAddedChaosEssence3__"] = { type = "Prefix", affix = "Essences", "Adds (23-37) to (49-61) Chaos Damage to Attacks", statOrder = { 1298 }, level = 82, group = "ChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["PoisonDuration1"] = { type = "Suffix", affix = "of Rot", "(8-12)% increased Poison Duration", statOrder = { 3078 }, level = 30, group = "PoisonDuration", weightKey = { "bow", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["PoisonDuration2"] = { type = "Suffix", affix = "of Putrefaction", "(13-18)% increased Poison Duration", statOrder = { 3078 }, level = 60, group = "PoisonDuration", weightKey = { "bow", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["PoisonDurationEnhancedMod"] = { type = "Suffix", affix = "of Tacati", "(26-30)% increased Chaos Damage", "(13-18)% increased Poison Duration", statOrder = { 1296, 3078 }, level = 1, group = "PoisonDurationChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["SocketedGemsDealAdditionalFireDamageEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems deal 175 to 225 Added Fire Damage", statOrder = { 483 }, level = 63, group = "SocketedGemsDealAdditionalFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "elemental_damage", "damage", "elemental", "fire", "gem" }, }, + ["SocketedGemsHaveMoreAttackAndCastSpeedEssence1"] = { type = "Suffix", affix = "", "Socketed Gems have 20% more Attack and Cast Speed", statOrder = { 477 }, level = 63, group = "SocketedGemsHaveMoreAttackAndCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "attack", "caster", "speed", "gem" }, }, + ["SocketedGemsHaveMoreAttackAndCastSpeedEssenceNew1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems have 16% more Attack and Cast Speed", statOrder = { 477 }, level = 63, group = "SocketedGemsHaveMoreAttackAndCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "attack", "caster", "speed", "gem" }, }, + ["SocketedGemsAddPercentageOfPhysicalAsLightningEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems gain 50% of Physical Damage as extra Lightning Damage", statOrder = { 484 }, level = 63, group = "SocketedGemsAddPercentageOfPhysicalAsLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning", "gem" }, }, + ["SocketedGemsDealMoreElementalDamageEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems deal 30% more Elemental Damage", statOrder = { 480 }, level = 63, group = "SocketedGemsDealMoreElementalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "elemental_damage", "damage", "elemental", "gem" }, }, + ["ElementalDamageTakenWhileStationaryEssence1"] = { type = "Suffix", affix = "of the Essence", "5% reduced Elemental Damage Taken while stationary", statOrder = { 4219 }, level = 63, group = "ElementalDamageTakenWhileStationary", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental" }, }, + ["BurningGroundWhileMovingEssence1"] = { type = "Suffix", affix = "of the Essence", "Drops Burning Ground while moving, dealing 2500 Fire Damage per second for 4 seconds", statOrder = { 4216 }, level = 63, group = "BurningGroundWhileMoving", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["PhysicalDamageTakenAsColdEssence1"] = { type = "Prefix", affix = "Essences", "15% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2357 }, level = 63, group = "PhysicalDamageTakenAsCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["ReducedDamageFromCriticalStrikesPerEnduranceChargeEssence1"] = { type = "Suffix", affix = "of the Essence", "You take 10% reduced Extra Damage from Critical Strikes per Endurance Charge", statOrder = { 1425 }, level = 63, group = "ReducedDamageFromCriticalStrikesPerEnduranceCharge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, }, + ["FireDamageAsPortionOfPhysicalDamageEssence1"] = { type = "Prefix", affix = "Essences", "Gain 10% of Physical Damage as Extra Fire Damage", statOrder = { 1841 }, level = 63, group = "FireDamageAsPortionOfDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["FireDamageAsPortionOfPhysicalDamageEssence2"] = { type = "Prefix", affix = "Essences", "Gain 15% of Physical Damage as Extra Fire Damage", statOrder = { 1841 }, level = 63, group = "FireDamageAsPortionOfDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["ChaosDamageOverTimeTakenEssence1"] = { type = "Suffix", affix = "of the Essence", "25% reduced Chaos Damage taken over time", statOrder = { 1857 }, level = 63, group = "ChaosDamageOverTimeTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos" }, }, + ["SocketedSkillsCriticalChanceEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems have +3.5% Critical Strike Chance", statOrder = { 468 }, level = 63, group = "SocketedSkillsCriticalChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, }, + ["AttackAndCastSpeedDuringFlaskEffectEssence1"] = { type = "Suffix", affix = "", "10% increased Attack and Cast Speed during any Flask Effect", statOrder = { 4181 }, level = 63, group = "AttackAndCastSpeedDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "attack", "caster", "speed" }, }, + ["MovementVelocityDuringFlaskEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "10% increased Movement Speed during any Flask Effect", statOrder = { 3094 }, level = 63, group = "MovementSpeedDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "speed" }, }, + ["AddedColdDamagePerFrenzyChargeEssence1"] = { type = "Prefix", affix = "Essences", "4 to 7 Added Cold Damage per Frenzy Charge", statOrder = { 4180 }, level = 63, group = "AddedColdDamagePerFrenzyCharge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["AddedColdDamagePerFrenzyChargeEssenceQuiver1"] = { type = "Prefix", affix = "Essences", "8 to 12 Added Cold Damage per Frenzy Charge", statOrder = { 4180 }, level = 63, group = "AddedColdDamagePerFrenzyCharge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["AddedFireDamageIfBlockedRecentlyEssence1"] = { type = "Suffix", affix = "of the Essence", "Adds 60 to 100 Fire Damage if you've Blocked Recently", statOrder = { 4182 }, level = 63, group = "AddedFireDamageIfBlockedRecently", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["SocketedSkillAlwaysIgniteEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems have 50% chance to Ignite", statOrder = { 461 }, level = 63, group = "DisplaySupportedSkillsHaveAChanceToIgnite", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["SocketedSkillDamageOnLowLifeEssence1__"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems deal 30% more Damage while on Low Life", statOrder = { 479 }, level = 63, group = "DisplaySupportedSkillsDealDamageOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, }, + ["ElementalPenetrationDuringFlaskEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "Damage Penetrates 5% Elemental Resistances during any Flask Effect", statOrder = { 4174 }, level = 63, group = "ElementalPenetrationDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "elemental_damage", "damage", "elemental" }, }, + ["AdditionalPhysicalDamageReductionDuringFlaskEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "5% additional Physical Damage Reduction during any Flask Effect", statOrder = { 4175 }, level = 63, group = "AdditionalPhysicalDamageReductionDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "physical" }, }, + ["ReflectDamageTakenEssence1"] = { type = "Suffix", affix = "of the Essence", "You and your Minions take 40% reduced Reflected Damage", statOrder = { 9668 }, level = 63, group = "ReflectDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["PowerChargeOnBlockEssence1"] = { type = "Suffix", affix = "of the Essence", "25% chance to gain a Power Charge when you Block", statOrder = { 4177 }, level = 63, group = "PowerChargeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "power_charge" }, }, + ["NearbyEnemiesChilledOnBlockEssence1"] = { type = "Suffix", affix = "of the Essence", "Chill Nearby Enemies when you Block", statOrder = { 4178 }, level = 63, group = "NearbyEnemiesChilledOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "elemental", "cold", "ailment" }, }, + ["PoisonDamageEssence1"] = { type = "Prefix", affix = "Essences", "40% increased Damage with Poison", statOrder = { 3089 }, level = 63, group = "PoisonDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["ChanceToRecoverManaOnSkillUseEssence1"] = { type = "Suffix", affix = "of the Essence", "10% chance to Recover 10% of Mana when you use a Skill", statOrder = { 3383 }, level = 63, group = "ChanceToRecoverManaOnSkillUse", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, + ["FortifyEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "+3 to maximum Fortification", statOrder = { 8936 }, level = 63, group = "FortifyEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["CrushOnHitChanceEssence1"] = { type = "Suffix", affix = "of the Essence", "(15-25)% chance to Crush on Hit", statOrder = { 5553 }, level = 63, group = "CrushOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, }, + ["AlchemistsGeniusOnFlaskEssence1_"] = { type = "Suffix", affix = "of the Essence", "Gain Alchemist's Genius when you use a Flask", statOrder = { 6605 }, level = 63, group = "AlchemistsGeniusOnFlaskUseChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, }, + ["PowerFrenzyOrEnduranceChargeOnKillEssence1"] = { type = "Suffix", affix = "of the Essence", "16% chance to gain a Power, Frenzy or Endurance Charge on Kill", statOrder = { 3520 }, level = 63, group = "PowerFrenzyOrEnduranceChargeOnKill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, }, + ["SocketedGemsNonCurseAuraEffectEssence1"] = { type = "Suffix", affix = "", "Socketed Non-Curse Aura Gems have 20% increased Aura Effect", statOrder = { 518 }, level = 63, group = "SocketedGemsNonCurseAuraEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "aura", "gem" }, }, + ["SocketedAuraGemLevelsEssence1"] = { type = "Suffix", affix = "of the Essence", "+2 to Level of Socketed Aura Gems", statOrder = { 161 }, level = 63, group = "LocalIncreaseSocketedAuraLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "aura", "gem" }, }, + ["FireBurstOnHitEssence1"] = { type = "Suffix", affix = "of the Essence", "Cast Level 20 Fire Burst on Hit", statOrder = { 693 }, level = 63, group = "FireBurstOnHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "attack" }, }, + ["SpiritMinionEssence1"] = { type = "Suffix", affix = "of the Essence", "Triggers Level 20 Spectral Spirits when Equipped", "+3 to maximum number of Spectral Spirits", statOrder = { 665, 665.1 }, level = 63, group = "GrantsEssenceMinion", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, }, + ["AreaOfEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "25% increased Area of Effect", statOrder = { 1791 }, level = 63, group = "AreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["OnslaughtWhenHitEssence1"] = { type = "Suffix", affix = "of the Essence", "Gain Onslaught for 3 seconds when Hit", statOrder = { 6666 }, level = 63, group = "OnslaughtWhenHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["OnslaughtWhenHitNewEssence1"] = { type = "Suffix", affix = "of the Essence", "You gain Onslaught for 6 seconds when Hit", statOrder = { 2736 }, level = 63, group = "OnslaughtWhenHitForDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["SupportDamageOverTimeEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems deal 30% more Damage over Time", statOrder = { 516 }, level = 63, group = "SupportDamageOverTime", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "damage", "gem" }, }, + ["SpellBlockOnLowLifeEssence1"] = { type = "Suffix", affix = "of the Essence", "+15% Chance to Block Spell Damage while on Low Life", statOrder = { 1058 }, level = 63, group = "SpellBlockPercentageOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, + ["MaximumDoomEssence1__"] = { type = "Suffix", affix = "of the Essence", "5% increased Effect of your Curses", statOrder = { 2505 }, level = 63, group = "CurseEffectiveness", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, }, + ["MaximumDoomAmuletEssence1"] = { type = "Suffix", affix = "of the Essence", "10% increased Effect of your Curses", statOrder = { 2505 }, level = 63, group = "CurseEffectiveness", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, }, + ["MarkEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "25% increased Effect of your Marks", statOrder = { 2507 }, level = 63, group = "MarkEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, }, + ["DecayOnHitEssence1"] = { type = "Suffix", affix = "of the Essence", "Your Hits inflict Decay, dealing 700 Chaos Damage per second for 8 seconds", statOrder = { 6030 }, level = 63, group = "DecayOnHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["SpellBlockAmuletEssence1"] = { type = "Suffix", affix = "of the Essence", "(6-7)% Chance to Block Spell Damage", statOrder = { 1072 }, level = 63, group = "SpellBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, + ["MovementSpeedOnBurningChilledShockedGroundEssence1"] = { type = "Suffix", affix = "of the Essence", "12% increased Movement speed while on Burning, Chilled or Shocked ground", statOrder = { 9232 }, level = 63, group = "MovementSpeedOnBurningChilledShockedGround", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, + ["ManaRegenerationWhileShockedEssence1"] = { type = "Suffix", affix = "of the Essence", "70% increased Mana Regeneration Rate while Shocked", statOrder = { 2417 }, level = 63, group = "ManaRegenerationWhileShocked", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, + ["ManaGainedOnBlockEssence1"] = { type = "Suffix", affix = "of the Essence", "Recover 5% of your maximum Mana when you Block", statOrder = { 8019 }, level = 63, group = "ManaGainedOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "mana" }, }, + ["BleedDuration1"] = { type = "Suffix", affix = "of Agony", "(8-12)% increased Bleeding Duration", statOrder = { 4888 }, level = 30, group = "BleedDuration", weightKey = { "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["BleedDuration2"] = { type = "Suffix", affix = "of Torment", "(13-18)% increased Bleeding Duration", statOrder = { 4888 }, level = 60, group = "BleedDuration", weightKey = { "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToIgnite1"] = { type = "Suffix", affix = "of Ignition", "(18-24)% chance to Ignite", statOrder = { 1935 }, level = 15, group = "ChanceToIgnite", weightKey = { "sceptre", "wand", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ChanceToIgnite2"] = { type = "Suffix", affix = "of Combustion", "(25-30)% chance to Ignite", statOrder = { 1935 }, level = 45, group = "ChanceToIgnite", weightKey = { "sceptre", "wand", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ChanceToIgnite3_"] = { type = "Suffix", affix = "of Conflagration", "(31-40)% chance to Ignite", statOrder = { 1935 }, level = 75, group = "ChanceToIgnite", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["TwoHandChanceToIgnite1"] = { type = "Suffix", affix = "of Ignition", "(25-32)% chance to Ignite", statOrder = { 1935 }, level = 15, group = "ChanceToIgnite", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["TwoHandChanceToIgnite2_"] = { type = "Suffix", affix = "of Combustion", "(33-42)% chance to Ignite", statOrder = { 1935 }, level = 45, group = "ChanceToIgnite", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["TwoHandChanceToIgnite3"] = { type = "Suffix", affix = "of Conflagration", "(43-55)% chance to Ignite", statOrder = { 1935 }, level = 75, group = "ChanceToIgnite", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ChanceToBleed1"] = { type = "Suffix", affix = "of Bleeding", "10% chance to cause Bleeding on Hit", statOrder = { 2392 }, level = 15, group = "LocalChanceToBleed", weightKey = { "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToBleed2_"] = { type = "Suffix", affix = "of Flaying", "15% chance to cause Bleeding on Hit", statOrder = { 2392 }, level = 55, group = "LocalChanceToBleed", weightKey = { "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToBleed3"] = { type = "Suffix", affix = "of Hemorrhaging", "20% chance to cause Bleeding on Hit", statOrder = { 2392 }, level = 85, group = "LocalChanceToBleed", weightKey = { "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToPoison1"] = { type = "Suffix", affix = "of Poisoning", "10% chance to Poison on Hit", statOrder = { 7849 }, level = 15, group = "LocalChanceToPoisonOnHit", weightKey = { "bow", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "poison", "chaos", "attack", "ailment" }, }, + ["ChanceToPoison2"] = { type = "Suffix", affix = "of Toxins", "20% chance to Poison on Hit", statOrder = { 7849 }, level = 55, group = "LocalChanceToPoisonOnHit", weightKey = { "bow", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "poison", "chaos", "attack", "ailment" }, }, + ["ChanceToPoison3_"] = { type = "Suffix", affix = "of Death", "30% chance to Poison on Hit", statOrder = { 7849 }, level = 85, group = "LocalChanceToPoisonOnHit", weightKey = { "bow", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "poison", "chaos", "attack", "ailment" }, }, + ["ChanceToPoisonEnhancedMod"] = { type = "Suffix", affix = "of Tacati", "(26-30)% increased Chaos Damage", "30% chance to Poison on Hit", statOrder = { 1296, 7849 }, level = 1, group = "LocalChanceToPoisonOnHitChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "attack", "ailment" }, }, + ["ChanceToFreeze1"] = { type = "Suffix", affix = "of Freezing", "(18-24)% chance to Freeze", statOrder = { 1938 }, level = 15, group = "ChanceToFreeze", weightKey = { "sceptre", "wand", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ChanceToFreeze2"] = { type = "Suffix", affix = "of Bleakness", "(25-30)% chance to Freeze", statOrder = { 1938 }, level = 45, group = "ChanceToFreeze", weightKey = { "sceptre", "wand", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ChanceToFreeze3"] = { type = "Suffix", affix = "of the Hyperboreal", "(31-40)% chance to Freeze", statOrder = { 1938 }, level = 75, group = "ChanceToFreeze", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["TwoHandChanceToFreeze1"] = { type = "Suffix", affix = "of Freezing", "(25-32)% chance to Freeze", statOrder = { 1938 }, level = 15, group = "ChanceToFreeze", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["TwoHandChanceToFreeze2"] = { type = "Suffix", affix = "of Bleakness", "(33-42)% chance to Freeze", statOrder = { 1938 }, level = 45, group = "ChanceToFreeze", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["TwoHandChanceToFreeze3____"] = { type = "Suffix", affix = "of the Hyperboreal", "(43-55)% chance to Freeze", statOrder = { 1938 }, level = 75, group = "ChanceToFreeze", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ChanceToShock1"] = { type = "Suffix", affix = "of Shocking", "(18-24)% chance to Shock", statOrder = { 1942 }, level = 15, group = "ChanceToShock", weightKey = { "sceptre", "wand", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ChanceToShock2__"] = { type = "Suffix", affix = "of Zapping", "(25-30)% chance to Shock", statOrder = { 1942 }, level = 45, group = "ChanceToShock", weightKey = { "sceptre", "wand", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ChanceToShock3"] = { type = "Suffix", affix = "of Electrocution", "(31-40)% chance to Shock", statOrder = { 1942 }, level = 75, group = "ChanceToShock", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["TwoHandChanceToShock1__"] = { type = "Suffix", affix = "of Shocking", "(25-32)% chance to Shock", statOrder = { 1942 }, level = 15, group = "ChanceToShock", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["TwoHandChanceToShock2_"] = { type = "Suffix", affix = "of Zapping", "(33-42)% chance to Shock", statOrder = { 1942 }, level = 45, group = "ChanceToShock", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["TwoHandChanceToShock3"] = { type = "Suffix", affix = "of Electrocution", "(43-55)% chance to Shock", statOrder = { 1942 }, level = 75, group = "ChanceToShock", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["BurnDamage1_"] = { type = "Suffix", affix = "of Burning", "(26-30)% increased Burning Damage", statOrder = { 1788 }, level = 20, group = "BurnDamage", weightKey = { "sceptre", "wand", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["BurnDamage2"] = { type = "Suffix", affix = "of Combusting", "(31-35)% increased Burning Damage", statOrder = { 1788 }, level = 40, group = "BurnDamage", weightKey = { "sceptre", "wand", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["BurnDamage3"] = { type = "Suffix", affix = "of Conflagrating", "(36-40)% increased Burning Damage", statOrder = { 1788 }, level = 60, group = "BurnDamage", weightKey = { "sceptre", "wand", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["TwoHandBurnDamage1"] = { type = "Suffix", affix = "of Burning", "(31-40)% increased Burning Damage", statOrder = { 1788 }, level = 20, group = "BurnDamage", weightKey = { "staff", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["TwoHandBurnDamage2"] = { type = "Suffix", affix = "of Combusting", "(41-50)% increased Burning Damage", statOrder = { 1788 }, level = 40, group = "BurnDamage", weightKey = { "staff", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["TwoHandBurnDamage3"] = { type = "Suffix", affix = "of Conflagrating", "(51-60)% increased Burning Damage", statOrder = { 1788 }, level = 60, group = "BurnDamage", weightKey = { "staff", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["PoisonDamage1"] = { type = "Suffix", affix = "of Poison", "(21-30)% increased Damage with Poison", "20% chance to Poison on Hit", statOrder = { 3089, 7849 }, level = 20, group = "PoisonDamageAndLocalChanceOnHit", weightKey = { "bow", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "attack", "ailment" }, }, + ["PoisonDamage2"] = { type = "Suffix", affix = "of Venom", "(31-40)% increased Damage with Poison", "25% chance to Poison on Hit", statOrder = { 3089, 7849 }, level = 40, group = "PoisonDamageAndLocalChanceOnHit", weightKey = { "bow", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "attack", "ailment" }, }, + ["PoisonDamage3"] = { type = "Suffix", affix = "of Virulence", "(41-50)% increased Damage with Poison", "30% chance to Poison on Hit", statOrder = { 3089, 7849 }, level = 60, group = "PoisonDamageAndLocalChanceOnHit", weightKey = { "bow", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "attack", "ailment" }, }, + ["PoisonDamageEnhancedAttacksMod"] = { type = "Suffix", affix = "of Tacati", "Adds (23-36) to (49-61) Chaos Damage", "(31-35)% increased Damage with Poison", statOrder = { 1301, 3089 }, level = 1, group = "PoisonDamageAddedChaosToAttacks", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "attack", "ailment" }, }, + ["PoisonDamageEnhancedSpellsMod"] = { type = "Suffix", affix = "of Tacati", "Adds (17-24) to (36-40) Chaos Damage to Spells", "(31-35)% increased Damage with Poison", statOrder = { 1318, 3089 }, level = 1, group = "PoisonDamageAddedChaosToSpells", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "poison", "damage", "chaos", "caster", "ailment" }, }, + ["BleedDamage1_"] = { type = "Suffix", affix = "of Bloodletting", "Attacks have 20% chance to cause Bleeding", "(21-30)% increased Damage with Bleeding", statOrder = { 2398, 3077 }, level = 20, group = "BleedingDamageChanceWeaponSuffix", weightKey = { "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["BleedDamage2"] = { type = "Suffix", affix = "of Haemophilia", "Attacks have 25% chance to cause Bleeding", "(31-40)% increased Damage with Bleeding", statOrder = { 2398, 3077 }, level = 40, group = "BleedingDamageChanceWeaponSuffix", weightKey = { "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["BleedDamage3"] = { type = "Suffix", affix = "of Exsanguination", "Attacks have 30% chance to cause Bleeding", "(41-50)% increased Damage with Bleeding", statOrder = { 2398, 3077 }, level = 60, group = "BleedingDamageChanceWeaponSuffix", weightKey = { "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["ReducedPhysicalDamageTaken1"] = { type = "Suffix", affix = "of Dampening", "2% additional Physical Damage Reduction", statOrder = { 2182 }, level = 25, group = "ReducedPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, }, + ["ReducedPhysicalDamageTaken2_"] = { type = "Suffix", affix = "of Numbing", "(3-4)% additional Physical Damage Reduction", statOrder = { 2182 }, level = 85, group = "ReducedPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, }, + ["ChanceToDodge1_"] = { type = "Suffix", affix = "of Haze", "+(4-6)% chance to Suppress Spell Damage", statOrder = { 1055 }, level = 25, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["ChanceToDodge2__"] = { type = "Suffix", affix = "of Fog", "+(7-9)% chance to Suppress Spell Damage", statOrder = { 1055 }, level = 85, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["EnergyShieldRegenerationPerMinute1"] = { type = "Suffix", affix = "of Vibrance", "Regenerate 0.6% of Energy Shield per second", statOrder = { 2554 }, level = 25, group = "EnergyShieldRegenerationPerMinute", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldRegenerationPerMinute2"] = { type = "Suffix", affix = "of Exuberance", "Regenerate 1% of Energy Shield per second", statOrder = { 2554 }, level = 85, group = "EnergyShieldRegenerationPerMinute", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, + ["LifeRegenerationRate1"] = { type = "Suffix", affix = "of Esprit", "(9-11)% increased Life Regeneration rate", statOrder = { 1488 }, level = 46, group = "LifeRegenerationRate", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "resource", "life" }, }, + ["LifeRegenerationRate2"] = { type = "Suffix", affix = "of Perpetuity", "(12-14)% increased Life Regeneration rate", statOrder = { 1488 }, level = 57, group = "LifeRegenerationRate", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "resource", "life" }, }, + ["LifeRegenerationRate3"] = { type = "Suffix", affix = "of Vivification", "(15-17)% increased Life Regeneration rate", statOrder = { 1488 }, level = 68, group = "LifeRegenerationRate", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "resource", "life" }, }, + ["LifeRegenerationRate4"] = { type = "Suffix", affix = "of Youth", "(18-19)% increased Life Regeneration rate", statOrder = { 1488 }, level = 76, group = "LifeRegenerationRate", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "resource", "life" }, }, + ["LifeRegenerationRate5"] = { type = "Suffix", affix = "of Everlasting", "(20-21)% increased Life Regeneration rate", statOrder = { 1488 }, level = 85, group = "LifeRegenerationRate", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "resource", "life" }, }, + ["AdditionalPhysicalDamageReduction1"] = { type = "Suffix", affix = "of the Watchman", "4% additional Physical Damage Reduction", statOrder = { 2182 }, level = 45, group = "ReducedPhysicalDamageTaken", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "physical" }, }, + ["AdditionalPhysicalDamageReduction2"] = { type = "Suffix", affix = "of the Sentry", "5% additional Physical Damage Reduction", statOrder = { 2182 }, level = 58, group = "ReducedPhysicalDamageTaken", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "physical" }, }, + ["AdditionalPhysicalDamageReduction3"] = { type = "Suffix", affix = "of the Keeper", "6% additional Physical Damage Reduction", statOrder = { 2182 }, level = 67, group = "ReducedPhysicalDamageTaken", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "physical" }, }, + ["AdditionalPhysicalDamageReduction4"] = { type = "Suffix", affix = "of the Protector", "7% additional Physical Damage Reduction", statOrder = { 2182 }, level = 77, group = "ReducedPhysicalDamageTaken", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "physical" }, }, + ["AdditionalPhysicalDamageReduction5_"] = { type = "Suffix", affix = "of the Conservator", "8% additional Physical Damage Reduction", statOrder = { 2182 }, level = 86, group = "ReducedPhysicalDamageTaken", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "physical" }, }, + ["ChanceToSuppressSpells1_"] = { type = "Suffix", affix = "of Rebuttal", "+(5-6)% chance to Suppress Spell Damage", statOrder = { 1056 }, level = 46, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, }, + ["ChanceToSuppressSpells2"] = { type = "Suffix", affix = "of Snuffing", "+(7-8)% chance to Suppress Spell Damage", statOrder = { 1056 }, level = 57, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, }, + ["ChanceToSuppressSpells3"] = { type = "Suffix", affix = "of Revoking", "+(9-10)% chance to Suppress Spell Damage", statOrder = { 1056 }, level = 68, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, }, + ["ChanceToSuppressSpells4"] = { type = "Suffix", affix = "of Abjuration", "+(11-12)% chance to Suppress Spell Damage", statOrder = { 1056 }, level = 76, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, }, + ["ChanceToSuppressSpells5__"] = { type = "Suffix", affix = "of Nullification", "+(13-14)% chance to Suppress Spell Damage", statOrder = { 1056 }, level = 85, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, }, + ["ChanceToSuppressSpellsHigh1__"] = { type = "Suffix", affix = "of Rebuttal", "+(8-10)% chance to Suppress Spell Damage", statOrder = { 1056 }, level = 45, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, }, + ["ChanceToSuppressSpellsHigh2__"] = { type = "Suffix", affix = "of Snuffing", "+(11-13)% chance to Suppress Spell Damage", statOrder = { 1056 }, level = 58, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, }, + ["ChanceToSuppressSpellsHigh3"] = { type = "Suffix", affix = "of Revoking", "+(14-16)% chance to Suppress Spell Damage", statOrder = { 1056 }, level = 67, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, }, + ["ChanceToSuppressSpellsHigh4_"] = { type = "Suffix", affix = "of Abjuration", "+(17-19)% chance to Suppress Spell Damage", statOrder = { 1056 }, level = 77, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, }, + ["ChanceToSuppressSpellsHigh5___"] = { type = "Suffix", affix = "of Nullification", "+(20-22)% chance to Suppress Spell Damage", statOrder = { 1056 }, level = 86, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, }, + ["EnergyShieldRechargeRate1"] = { type = "Suffix", affix = "of Allaying", "(24-26)% increased Energy Shield Recharge Rate", statOrder = { 1476 }, level = 46, group = "EnergyShieldRegeneration", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldRechargeRate2"] = { type = "Suffix", affix = "of Diffusion", "(27-29)% increased Energy Shield Recharge Rate", statOrder = { 1476 }, level = 57, group = "EnergyShieldRegeneration", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldRechargeRate3"] = { type = "Suffix", affix = "of Dispersal", "(30-32)% increased Energy Shield Recharge Rate", statOrder = { 1476 }, level = 68, group = "EnergyShieldRegeneration", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldRechargeRate4"] = { type = "Suffix", affix = "of Buffering", "(33-35)% increased Energy Shield Recharge Rate", statOrder = { 1476 }, level = 76, group = "EnergyShieldRegeneration", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldRechargeRate5______"] = { type = "Suffix", affix = "of Ardour", "(36-38)% increased Energy Shield Recharge Rate", statOrder = { 1476 }, level = 85, group = "EnergyShieldRegeneration", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, + ["FasterStartEnergyShieldRecharge1"] = { type = "Suffix", affix = "of Enlivening", "(27-34)% faster start of Energy Shield Recharge", statOrder = { 1473 }, level = 45, group = "EnergyShieldDelay", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, + ["FasterStartEnergyShieldRecharge2"] = { type = "Suffix", affix = "of Zest", "(35-42)% faster start of Energy Shield Recharge", statOrder = { 1473 }, level = 58, group = "EnergyShieldDelay", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, + ["FasterStartEnergyShieldRecharge3__"] = { type = "Suffix", affix = "of Galvanising", "(43-50)% faster start of Energy Shield Recharge", statOrder = { 1473 }, level = 67, group = "EnergyShieldDelay", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, + ["FasterStartEnergyShieldRecharge4"] = { type = "Suffix", affix = "of Vigour", "(51-58)% faster start of Energy Shield Recharge", statOrder = { 1473 }, level = 77, group = "EnergyShieldDelay", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, + ["FasterStartEnergyShieldRecharge5_"] = { type = "Suffix", affix = "of Second Wind", "(59-66)% faster start of Energy Shield Recharge", statOrder = { 1473 }, level = 86, group = "EnergyShieldDelay", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, + ["ReducedExtraDamageFromCrits1___"] = { type = "Suffix", affix = "of Dulling", "You take (21-30)% reduced Extra Damage from Critical Strikes", statOrder = { 1423 }, level = 33, group = "ReducedExtraDamageFromCrits", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "damage", "critical" }, }, + ["ReducedExtraDamageFromCrits2__"] = { type = "Suffix", affix = "of Deadening", "You take (31-40)% reduced Extra Damage from Critical Strikes", statOrder = { 1423 }, level = 45, group = "ReducedExtraDamageFromCrits", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "damage", "critical" }, }, + ["ReducedExtraDamageFromCrits3"] = { type = "Suffix", affix = "of Interference", "You take (41-50)% reduced Extra Damage from Critical Strikes", statOrder = { 1423 }, level = 67, group = "ReducedExtraDamageFromCrits", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "damage", "critical" }, }, + ["ReducedExtraDamageFromCrits4__"] = { type = "Suffix", affix = "of Obstruction", "You take (51-60)% reduced Extra Damage from Critical Strikes", statOrder = { 1423 }, level = 78, group = "ReducedExtraDamageFromCrits", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "damage", "critical" }, }, + ["DamageTakenGainedAsLife1___"] = { type = "Suffix", affix = "of Bandaging", "(4-6)% of Damage taken Recouped as Life", statOrder = { 6000 }, level = 44, group = "DamageTakenGainedAsLife", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, }, + ["DamageTakenGainedAsLife2"] = { type = "Suffix", affix = "of Stitching", "(7-9)% of Damage taken Recouped as Life", statOrder = { 6000 }, level = 56, group = "DamageTakenGainedAsLife", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, }, + ["DamageTakenGainedAsLife3"] = { type = "Suffix", affix = "of Suturing", "(10-12)% of Damage taken Recouped as Life", statOrder = { 6000 }, level = 68, group = "DamageTakenGainedAsLife", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, }, + ["DamageTakenGainedAsLife4_"] = { type = "Suffix", affix = "of Fleshbinding", "(13-15)% of Damage taken Recouped as Life", statOrder = { 6000 }, level = 79, group = "DamageTakenGainedAsLife", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, }, + ["GlobalSkillGemLevel1"] = { type = "Prefix", affix = "Exalter's", "+1 to Level of all Skill Gems", statOrder = { 4535 }, level = 75, group = "GlobalSkillGemLevel", weightKey = { "amulet", "default", }, weightVal = { 50, 0 }, modTags = { "gem" }, }, + ["GlobalFireGemLevel1_"] = { type = "Prefix", affix = "Vulcanist's", "+1 to Level of all Fire Skill Gems", statOrder = { 6472 }, level = 75, group = "GlobalFireGemLevel", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "fire", "gem" }, }, + ["GlobalColdGemLevel1__"] = { type = "Prefix", affix = "Rimedweller's", "+1 to Level of all Cold Skill Gems", statOrder = { 5734 }, level = 75, group = "GlobalColdGemLevel", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "cold", "gem" }, }, + ["GlobalLightningGemLevel1"] = { type = "Prefix", affix = "Stormbrewer's", "+1 to Level of all Lightning Skill Gems", statOrder = { 7326 }, level = 75, group = "GlobalLightningGemLevel", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "lightning", "gem" }, }, + ["GlobalPhysicalGemLevel1_"] = { type = "Prefix", affix = "Behemoth's", "+1 to Level of all Physical Skill Gems", statOrder = { 9459 }, level = 75, group = "GlobalPhysicalGemLevel", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "physical", "gem" }, }, + ["GlobalChaosGemLevel1"] = { type = "Prefix", affix = "Provocateur's", "+1 to Level of all Chaos Skill Gems", statOrder = { 5653 }, level = 75, group = "GlobalChaosGemLevel", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "chaos", "gem" }, }, + ["MaximumFireResist1"] = { type = "Suffix", affix = "of the Bushfire", "+1% to maximum Fire Resistance", statOrder = { 1534 }, level = 68, group = "MaximumFireResist", weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["MaximumFireResist2_"] = { type = "Suffix", affix = "of the Molten Core", "+2% to maximum Fire Resistance", statOrder = { 1534 }, level = 75, group = "MaximumFireResist", weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["MaximumFireResist3"] = { type = "Suffix", affix = "of the Solar Storm", "+3% to maximum Fire Resistance", statOrder = { 1534 }, level = 81, group = "MaximumFireResist", weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["MaximumColdResist1"] = { type = "Suffix", affix = "of Furs", "+1% to maximum Cold Resistance", statOrder = { 1540 }, level = 68, group = "MaximumColdResist", weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["MaximumColdResist2"] = { type = "Suffix", affix = "of the Tundra", "+2% to maximum Cold Resistance", statOrder = { 1540 }, level = 75, group = "MaximumColdResist", weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["MaximumColdResist3"] = { type = "Suffix", affix = "of the Mammoth", "+3% to maximum Cold Resistance", statOrder = { 1540 }, level = 81, group = "MaximumColdResist", weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["MaximumLightningResist1"] = { type = "Suffix", affix = "of Impedance", "+1% to maximum Lightning Resistance", statOrder = { 1545 }, level = 68, group = "MaximumLightningResistance", weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["MaximumLightningResist2___"] = { type = "Suffix", affix = "of Shockproofing", "+2% to maximum Lightning Resistance", statOrder = { 1545 }, level = 75, group = "MaximumLightningResistance", weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["MaximumLightningResist3"] = { type = "Suffix", affix = "of the Lightning Rod", "+3% to maximum Lightning Resistance", statOrder = { 1545 }, level = 81, group = "MaximumLightningResistance", weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["MaximumChaosResist1"] = { type = "Suffix", affix = "of Regularity", "+1% to maximum Chaos Resistance", statOrder = { 1551 }, level = 68, group = "MaximumChaosResistance", weightKey = { "shield", "default", }, weightVal = { 125, 0 }, modTags = { "chaos", "resistance" }, }, + ["MaximumChaosResist2_"] = { type = "Suffix", affix = "of Concord", "+2% to maximum Chaos Resistance", statOrder = { 1551 }, level = 75, group = "MaximumChaosResistance", weightKey = { "shield", "default", }, weightVal = { 125, 0 }, modTags = { "chaos", "resistance" }, }, + ["MaximumChaosResist3"] = { type = "Suffix", affix = "of Harmony", "+3% to maximum Chaos Resistance", statOrder = { 1551 }, level = 81, group = "MaximumChaosResistance", weightKey = { "shield", "default", }, weightVal = { 125, 0 }, modTags = { "chaos", "resistance" }, }, + ["MaximumAllResist1_"] = { type = "Suffix", affix = "of the Sempiternal", "+1% to all maximum Resistances", statOrder = { 1553 }, level = 75, group = "MaximumResistances", weightKey = { "shield", "default", }, weightVal = { 125, 0 }, modTags = { "resistance" }, }, + ["MaximumAllResist2"] = { type = "Suffix", affix = "of the Deathless", "+2% to all maximum Resistances", statOrder = { 1553 }, level = 81, group = "MaximumResistances", weightKey = { "shield", "default", }, weightVal = { 125, 0 }, modTags = { "resistance" }, }, + ["DamageWithBowSkills1"] = { type = "Prefix", affix = "Acute", "(5-10)% increased Damage with Bow Skills", statOrder = { 5916 }, level = 4, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, }, + ["DamageWithBowSkills2"] = { type = "Prefix", affix = "Trenchant", "(11-20)% increased Damage with Bow Skills", statOrder = { 5916 }, level = 15, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, }, + ["DamageWithBowSkills3"] = { type = "Prefix", affix = "Perforating", "(21-30)% increased Damage with Bow Skills", statOrder = { 5916 }, level = 30, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, }, + ["DamageWithBowSkills4_"] = { type = "Prefix", affix = "Incisive", "(31-36)% increased Damage with Bow Skills", statOrder = { 5916 }, level = 60, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, }, + ["DamageWithBowSkills5"] = { type = "Prefix", affix = "Lacerating", "(37-42)% increased Damage with Bow Skills", statOrder = { 5916 }, level = 81, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, }, + ["DamageWithBowSkills6_"] = { type = "Prefix", affix = "Impaling", "(43-50)% increased Damage with Bow Skills", statOrder = { 5916 }, level = 86, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, }, + ["DamageWithBowSkillsEssence3a"] = { type = "Prefix", affix = "Essences", "(21-25)% increased Damage with Bow Skills", statOrder = { 5916 }, level = 26, group = "DamageWithBowSkills", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, }, + ["DamageWithBowSkillsEssence3b_"] = { type = "Prefix", affix = "Essences", "(26-30)% increased Damage with Bow Skills", statOrder = { 5916 }, level = 42, group = "DamageWithBowSkills", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, }, + ["IncreasedDurationBootsUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 15 More Duration", "(10-15)% increased Skill Effect Duration", statOrder = { 263, 1806 }, level = 68, group = "SkillEffectDurationSupported", weightKey = { "boots_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, }, + ["IncreasedCooldownRecoveryBootsUber1"] = { type = "Suffix", affix = "of Shaping", "(10-15)% increased Cooldown Recovery Rate", statOrder = { 4899 }, level = 80, group = "GlobalCooldownRecovery", weightKey = { "boots_shaper", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, + ["SupportedByFortifyUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Fortify", statOrder = { 423 }, level = 68, group = "DisplaySocketedGemsSupportedByFortify", weightKey = { "boots_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, }, + ["ImmuneToChilledGroundUber1"] = { type = "Prefix", affix = "The Shaper's", "Unaffected by Chilled Ground", statOrder = { 10244 }, level = 68, group = "ChilledGroundEffectEffectiveness", weightKey = { "boots_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, }, + ["ImmuneToBurningGroundUber1"] = { type = "Prefix", affix = "The Shaper's", "Unaffected by Burning Ground", statOrder = { 10239 }, level = 68, group = "BurningGroundEffectEffectiveness", weightKey = { "boots_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "elemental", "fire" }, }, + ["ImmuneToShockedGroundUber1"] = { type = "Prefix", affix = "The Elder's", "Unaffected by Shocked Ground", statOrder = { 10264 }, level = 68, group = "ShockedGroundEffectEffectiveness", weightKey = { "boots_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, }, + ["ImmuneToDesecratedGroundUber1_"] = { type = "Prefix", affix = "The Elder's", "Unaffected by Desecrated Ground", statOrder = { 10250 }, level = 68, group = "DesecratedGroundEffectEffectiveness", weightKey = { "boots_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "chaos" }, }, + ["ChanceToDodgeUber1"] = { type = "Suffix", affix = "of Shaping", "+(4-7)% chance to Suppress Spell Damage", statOrder = { 1055 }, level = 68, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, + ["ChanceToDodgeUber2"] = { type = "Suffix", affix = "of Shaping", "+(9-12)% chance to Suppress Spell Damage", statOrder = { 1055 }, level = 75, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, + ["ChanceToDodgeUber3"] = { type = "Suffix", affix = "of Shaping", "+(13-15)% chance to Suppress Spell Damage", statOrder = { 1055 }, level = 84, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, + ["ChanceToDodgeSpellsUber1"] = { type = "Suffix", affix = "of the Elder", "+(4-7)% chance to Suppress Spell Damage", statOrder = { 1055 }, level = 68, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, + ["ChanceToDodgeSpellsUber2"] = { type = "Suffix", affix = "of the Elder", "+(9-12)% chance to Suppress Spell Damage", statOrder = { 1055 }, level = 75, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, + ["ChanceToDodgeSpellsUber3"] = { type = "Suffix", affix = "of the Elder", "+(13-15)% chance to Suppress Spell Damage", statOrder = { 1055 }, level = 83, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, + ["ChanceToAvoidStunUber1"] = { type = "Suffix", affix = "of the Elder", "(15-22)% chance to Avoid being Stunned", statOrder = { 1762 }, level = 68, group = "AvoidStun", weightKey = { "boots_elder", "quiver_elder", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod" }, }, + ["ChanceToAvoidStunUber2"] = { type = "Suffix", affix = "of the Elder", "(23-30)% chance to Avoid being Stunned", statOrder = { 1762 }, level = 75, group = "AvoidStun", weightKey = { "boots_elder", "quiver_elder", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod" }, }, + ["ChanceToAvoidStunUber3"] = { type = "Suffix", affix = "of the Elder", "(31-35)% chance to Avoid being Stunned", statOrder = { 1762 }, level = 82, group = "AvoidStun", weightKey = { "boots_elder", "quiver_elder", "default", }, weightVal = { 1600, 1600, 0 }, modTags = { "influence_mod" }, }, + ["ChanceToAvoidElementalAilmentsUber1_"] = { type = "Suffix", affix = "of Shaping", "(14-17)% chance to Avoid Elemental Ailments", statOrder = { 1754 }, level = 68, group = "AvoidElementalStatusAilments", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["ChanceToAvoidElementalAilmentsUber2"] = { type = "Suffix", affix = "of Shaping", "(18-21)% chance to Avoid Elemental Ailments", statOrder = { 1754 }, level = 75, group = "AvoidElementalStatusAilments", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["ChanceToAvoidElementalAilmentsUber3"] = { type = "Suffix", affix = "of Shaping", "(31-35)% chance to Avoid Elemental Ailments", statOrder = { 1754 }, level = 81, group = "AvoidElementalStatusAilments", weightKey = { "boots_shaper", "default", }, weightVal = { 1600, 0 }, modTags = { "influence_mod", "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["ChanceToAvoidProjectilesUber1"] = { type = "Suffix", affix = "of Shaping", "(6-9)% chance to avoid Projectiles", statOrder = { 4887 }, level = 68, group = "ChanceToAvoidProjectiles", weightKey = { "boots_shaper", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, + ["ChanceToAvoidProjectilesUber2"] = { type = "Suffix", affix = "of Shaping", "(10-12)% chance to avoid Projectiles", statOrder = { 4887 }, level = 84, group = "ChanceToAvoidProjectiles", weightKey = { "boots_shaper", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, + ["ChanceToGainEnduranceChargeOnKillUber1"] = { type = "Prefix", affix = "The Elder's", "(4-6)% chance to gain an Endurance Charge on Kill", statOrder = { 2537 }, level = 68, group = "EnduranceChargeOnKillChance", weightKey = { "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "staff_elder", "warstaff_elder", "boots_elder", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "endurance_charge", "influence_mod" }, }, + ["ChanceToGainEnduranceChargeOnKillUber2"] = { type = "Prefix", affix = "The Elder's", "(7-10)% chance to gain an Endurance Charge on Kill", statOrder = { 2537 }, level = 83, group = "EnduranceChargeOnKillChance", weightKey = { "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "staff_elder", "warstaff_elder", "boots_elder", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "endurance_charge", "influence_mod" }, }, + ["TotemDamageSpellUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Spell Totem", "(20-25)% increased Totem Damage", statOrder = { 391, 1105 }, level = 68, group = "TotemDamageSpellSupported", weightKey = { "boots_elder", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, + ["TotemDamageSpellUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Spell Totem", "(26-30)% increased Totem Damage", statOrder = { 391, 1105 }, level = 75, group = "TotemDamageSpellSupported", weightKey = { "boots_elder", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, + ["TotemDamageSpellUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 22 Spell Totem", "(31-35)% increased Totem Damage", statOrder = { 391, 1105 }, level = 80, group = "TotemDamageSpellSupported", weightKey = { "boots_elder", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, + ["TotemSpeedSpellUber1_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Spell Totem", "(8-12)% increased Totem Placement speed", statOrder = { 391, 2487 }, level = 68, group = "TotemSpeedSpellSupported", weightKey = { "boots_elder", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, }, + ["TotemSpeedSpellUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Spell Totem", "(13-16)% increased Totem Placement speed", statOrder = { 391, 2487 }, level = 75, group = "TotemSpeedSpellSupported", weightKey = { "boots_elder", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, }, + ["TotemSpeedSpellUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 22 Spell Totem", "(17-20)% increased Totem Placement speed", statOrder = { 391, 2487 }, level = 80, group = "TotemSpeedSpellSupported", weightKey = { "boots_elder", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, }, + ["TotemDamageAttackUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Ballista Totem", "(20-25)% increased Totem Damage", statOrder = { 299, 1105 }, level = 68, group = "TotemDamageAttackSupported", weightKey = { "boots_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, + ["TotemDamageAttackUber2_"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Ballista Totem", "(26-30)% increased Totem Damage", statOrder = { 299, 1105 }, level = 75, group = "TotemDamageAttackSupported", weightKey = { "boots_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, + ["TotemDamageAttackUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 22 Ballista Totem", "(31-35)% increased Totem Damage", statOrder = { 299, 1105 }, level = 80, group = "TotemDamageAttackSupported", weightKey = { "boots_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, + ["TotemSpeedAttackUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Ballista Totem", "(8-12)% increased Totem Placement speed", statOrder = { 299, 2487 }, level = 68, group = "TotemSpeedAttackSupported", weightKey = { "boots_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, }, + ["TotemSpeedAttackUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Ballista Totem", "(13-16)% increased Totem Placement speed", statOrder = { 299, 2487 }, level = 75, group = "TotemSpeedAttackSupported", weightKey = { "boots_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, }, + ["TotemSpeedAttackUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 22 Ballista Totem", "(17-20)% increased Totem Placement speed", statOrder = { 299, 2487 }, level = 80, group = "TotemSpeedAttackSupported", weightKey = { "boots_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, }, + ["SupportedByLifeLeechUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are supported by Level 15 Life Leech", statOrder = { 410 }, level = 68, group = "SupportedByLifeLeech", weightKey = { "boots_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, }, + ["GrantsDecoyTotemSkillUber1"] = { type = "Suffix", affix = "of Shaping", "Grants Level 20 Decoy Totem Skill", statOrder = { 614 }, level = 68, group = "DecoyTotemSkill", weightKey = { "boots_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, }, + ["GlobalRaiseSpectreGemLevelUber1"] = { type = "Suffix", affix = "of the Elder", "+1 to Level of all Raise Spectre Gems", statOrder = { 1527 }, level = 75, group = "MinionGlobalSkillLevel", weightKey = { "boots_elder", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "influence_mod", "minion", "gem" }, }, + ["IncreasedAttackSpeedUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Faster Attacks", "(7-9)% increased Attack Speed", statOrder = { 396, 1321 }, level = 68, group = "IncreasedAttackSpeedSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, }, + ["IncreasedAttackSpeedUber2_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Faster Attacks", "(10-12)% increased Attack Speed", statOrder = { 396, 1321 }, level = 75, group = "IncreasedAttackSpeedSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, }, + ["IncreasedAttackSpeedUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Faster Attacks", "(13-14)% increased Attack Speed", statOrder = { 396, 1321 }, level = 82, group = "IncreasedAttackSpeedSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, }, + ["IncreasedCastSpeedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Faster Casting", "(7-9)% increased Cast Speed", statOrder = { 427, 1357 }, level = 68, group = "IncreasedCastSpeedSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "caster", "speed", "gem" }, }, + ["IncreasedCastSpeedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Faster Casting", "(10-12)% increased Cast Speed", statOrder = { 427, 1357 }, level = 75, group = "IncreasedCastSpeedSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "caster", "speed", "gem" }, }, + ["IncreasedCastSpeedUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Faster Casting", "(13-14)% increased Cast Speed", statOrder = { 427, 1357 }, level = 84, group = "IncreasedCastSpeedSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "caster", "speed", "gem" }, }, + ["IncreasedAttackAndCastSpeedUber1_"] = { type = "Suffix", affix = "of the Elder", "(7-9)% increased Attack and Cast Speed", statOrder = { 1955 }, level = 68, group = "IncreasedAttackAndCastSpeedSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attack", "caster", "speed" }, }, + ["IncreasedAttackAndCastSpeedUber2"] = { type = "Suffix", affix = "of the Elder", "(10-12)% increased Attack and Cast Speed", statOrder = { 1955 }, level = 75, group = "IncreasedAttackAndCastSpeedSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attack", "caster", "speed" }, }, + ["IncreasedAttackAndCastSpeedUber3_"] = { type = "Suffix", affix = "of the Elder", "(13-14)% increased Attack and Cast Speed", statOrder = { 1955 }, level = 85, group = "IncreasedAttackAndCastSpeedSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attack", "caster", "speed" }, }, + ["SupportedByManaLeechUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 15 Mana Leech", statOrder = { 441 }, level = 68, group = "DisplaySupportedByManaLeech", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, }, + ["ProjectileSpeedUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are supported by Level 16 Faster Projectiles", "(15-20)% increased Projectile Speed", statOrder = { 409, 1707 }, level = 68, group = "ProjectileSpeedSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, }, + ["ProjectileSpeedUber2"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are supported by Level 18 Faster Projectiles", "(21-25)% increased Projectile Speed", statOrder = { 409, 1707 }, level = 75, group = "ProjectileSpeedSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, }, + ["ProjectileSpeedUber3_"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are supported by Level 20 Faster Projectiles", "(26-30)% increased Projectile Speed", statOrder = { 409, 1707 }, level = 82, group = "ProjectileSpeedSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, }, + ["ProjectileDamageUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Slower Projectiles", "(15-18)% increased Projectile Damage", statOrder = { 312, 1905 }, level = 68, group = "ProjectileDamageSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, + ["ProjectileDamageUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Slower Projectiles", "(19-22)% increased Projectile Damage", statOrder = { 312, 1905 }, level = 75, group = "ProjectileDamageSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, + ["ProjectileDamageUber3"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Slower Projectiles", "(23-25)% increased Projectile Damage", statOrder = { 312, 1905 }, level = 83, group = "ProjectileDamageSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, + ["ChanceToAvoidInterruptionWhileCastingUber1_"] = { type = "Suffix", affix = "of Shaping", "(15-20)% chance to Ignore Stuns while Casting", statOrder = { 1809 }, level = 68, group = "AvoidInterruptionWhileCasting", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, }, + ["ChanceToAvoidInterruptionWhileCastingUber2"] = { type = "Suffix", affix = "of Shaping", "(21-25)% chance to Ignore Stuns while Casting", statOrder = { 1809 }, level = 75, group = "AvoidInterruptionWhileCasting", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, }, + ["ChanceToAvoidInterruptionWhileCastingUber3"] = { type = "Suffix", affix = "of Shaping", "(26-30)% chance to Ignore Stuns while Casting", statOrder = { 1809 }, level = 80, group = "AvoidInterruptionWhileCasting", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, }, + ["IncreasedMeleeWeaponRangeUber1"] = { type = "Suffix", affix = "of the Elder", "+0.2 metres to Melee Strike Range", statOrder = { 2443 }, level = 85, group = "MeleeWeaponAndUnarmedRange", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack" }, }, + ["IncreasedMeleeWeaponRangeAndMeleeDamageUber1"] = { type = "Suffix", affix = "of the Elder", "(13-16)% increased Melee Damage", "+0.2 metres to Melee Strike Range", statOrder = { 1146, 2443 }, level = 80, group = "MeleeDamageAndMeleeRange", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "damage", "attack" }, }, + ["AdditionalTrapsThrownSupportedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Trap", "Skills which Throw Traps throw up to 1 additional Trap", statOrder = { 381, 9322 }, level = 68, group = "AdditionalTrapsThrownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, }, + ["AdditionalTrapsThrownSupportedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Trap", "Skills which Throw Traps throw up to 1 additional Trap", statOrder = { 381, 9322 }, level = 75, group = "AdditionalTrapsThrownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, }, + ["AdditionalTrapsThrownSupportedUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 22 Trap", "Skills which Throw Traps throw up to 1 additional Trap", statOrder = { 381, 9322 }, level = 84, group = "AdditionalTrapsThrownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, }, + ["TrapDamageUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Trap", "(20-25)% increased Trap Damage", statOrder = { 381, 1106 }, level = 68, group = "TrapDamageSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, + ["TrapDamageUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Trap", "(26-30)% increased Trap Damage", statOrder = { 381, 1106 }, level = 75, group = "TrapDamageSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, + ["TrapDamageUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 22 Trap", "(31-35)% increased Trap Damage", statOrder = { 381, 1106 }, level = 80, group = "TrapDamageSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, + ["TrapDamageCooldownUber1_"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Advanced Traps", "(20-25)% increased Trap Damage", statOrder = { 324, 1106 }, level = 68, group = "TrapDamageCooldownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, + ["TrapDamageCooldownUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Advanced Traps", "(26-30)% increased Trap Damage", statOrder = { 324, 1106 }, level = 75, group = "TrapDamageCooldownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, + ["TrapDamageCooldownUber3_"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Advanced Traps", "(31-35)% increased Trap Damage", statOrder = { 324, 1106 }, level = 80, group = "TrapDamageCooldownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, + ["TrapSpeedCooldownUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Advanced Traps", "(8-12)% increased Trap Throwing Speed", statOrder = { 324, 1836 }, level = 68, group = "TrapSpeedCooldownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "gem" }, }, + ["TrapSpeedCooldownUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Advanced Traps", "(13-16)% increased Trap Throwing Speed", statOrder = { 324, 1836 }, level = 75, group = "TrapSpeedCooldownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "gem" }, }, + ["TrapSpeedCooldownUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Advanced Traps", "(17-20)% increased Trap Throwing Speed", statOrder = { 324, 1836 }, level = 80, group = "TrapSpeedCooldownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "gem" }, }, + ["TrapDamageMineUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Trap And Mine Damage", "(20-25)% increased Trap Damage", statOrder = { 384, 1106 }, level = 68, group = "TrapDamageMineSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, + ["TrapDamageMineUber2_"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Trap And Mine Damage", "(26-30)% increased Trap Damage", statOrder = { 384, 1106 }, level = 75, group = "TrapDamageMineSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, + ["TrapDamageMineUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Trap And Mine Damage", "(31-35)% increased Trap Damage", statOrder = { 384, 1106 }, level = 80, group = "TrapDamageMineSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, + ["PoisonDamageSupportedUber1_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Chance to Poison", "(20-25)% increased Damage with Poison", statOrder = { 450, 3089 }, level = 68, group = "PoisonDamageSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "chaos_damage", "poison", "influence_mod", "damage", "chaos", "ailment", "gem" }, }, + ["PoisonDamageSupportedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Chance to Poison", "(26-30)% increased Damage with Poison", statOrder = { 450, 3089 }, level = 75, group = "PoisonDamageSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "chaos_damage", "poison", "influence_mod", "damage", "chaos", "ailment", "gem" }, }, + ["PoisonDamageSupportedUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Chance to Poison", "(31-35)% increased Damage with Poison", statOrder = { 450, 3089 }, level = 80, group = "PoisonDamageSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "chaos_damage", "poison", "influence_mod", "damage", "chaos", "ailment", "gem" }, }, + ["PoisonDurationSupportedUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Chance to Poison", "(8-12)% increased Poison Duration", statOrder = { 450, 3078 }, level = 68, group = "PoisonDurationSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "poison", "influence_mod", "chaos", "ailment", "gem" }, }, + ["PoisonDurationSupportedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Chance to Poison", "(13-16)% increased Poison Duration", statOrder = { 450, 3078 }, level = 75, group = "PoisonDurationSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "poison", "influence_mod", "chaos", "ailment", "gem" }, }, + ["PoisonDurationSupportedUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Chance to Poison", "(17-20)% increased Poison Duration", statOrder = { 450, 3078 }, level = 80, group = "PoisonDurationSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "poison", "influence_mod", "chaos", "ailment", "gem" }, }, + ["BleedingDamageUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Chance To Bleed", "(20-25)% increased Damage with Bleeding", statOrder = { 219, 3077 }, level = 68, group = "BleedingDamageSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment", "gem" }, }, + ["BleedingDamageUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Chance To Bleed", "(26-30)% increased Damage with Bleeding", statOrder = { 219, 3077 }, level = 75, group = "BleedingDamageSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment", "gem" }, }, + ["BleedingDamageUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Chance To Bleed", "(31-35)% increased Damage with Bleeding", statOrder = { 219, 3077 }, level = 80, group = "BleedingDamageSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment", "gem" }, }, + ["ChanceToGainFrenzyChargeOnKillUberElder1"] = { type = "Prefix", affix = "The Elder's", "(4-6)% chance to gain a Frenzy Charge on Kill", statOrder = { 2539 }, level = 68, group = "FrenzyChargeOnKillChance", weightKey = { "gloves_elder", "default", }, weightVal = { 400, 0 }, modTags = { "frenzy_charge", "influence_mod" }, }, + ["ChanceToGainFrenzyChargeOnKillUberElder2_"] = { type = "Prefix", affix = "The Elder's", "(7-10)% chance to gain a Frenzy Charge on Kill", statOrder = { 2539 }, level = 84, group = "FrenzyChargeOnKillChance", weightKey = { "gloves_elder", "default", }, weightVal = { 400, 0 }, modTags = { "frenzy_charge", "influence_mod" }, }, + ["ChanceToGainFrenzyChargeOnKillUberShaper1"] = { type = "Prefix", affix = "The Shaper's", "(4-6)% chance to gain a Frenzy Charge on Kill", statOrder = { 2539 }, level = 68, group = "FrenzyChargeOnKillChance", weightKey = { "2h_axe_shaper", "2h_sword_shaper", "bow_shaper", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "frenzy_charge", "influence_mod" }, }, + ["ChanceToGainFrenzyChargeOnKillUberShaper2_"] = { type = "Prefix", affix = "The Shaper's", "(7-10)% chance to gain a Frenzy Charge on Kill", statOrder = { 2539 }, level = 84, group = "FrenzyChargeOnKillChance", weightKey = { "2h_axe_shaper", "2h_sword_shaper", "bow_shaper", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "frenzy_charge", "influence_mod" }, }, + ["IncreasedAccuracySupportedUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are supported by Level 16 Additional Accuracy", "(6-10)% increased Global Accuracy Rating", statOrder = { 407, 1345 }, level = 68, group = "IncreasedAccuracyPercentSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "attack", "gem" }, }, + ["IncreasedAccuracySupportedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are supported by Level 18 Additional Accuracy", "(11-15)% increased Global Accuracy Rating", statOrder = { 407, 1345 }, level = 75, group = "IncreasedAccuracyPercentSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "attack", "gem" }, }, + ["IncreasedAccuracySupportedUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are supported by Level 20 Additional Accuracy", "(16-20)% increased Global Accuracy Rating", statOrder = { 407, 1345 }, level = 83, group = "IncreasedAccuracyPercentSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "attack", "gem" }, }, + ["AdditionalBlockChanceUber1"] = { type = "Suffix", affix = "of the Elder", "(2-3)% Chance to Block Attack Damage", statOrder = { 1051 }, level = 68, group = "BlockPercent", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod" }, }, + ["AdditionalBlockChanceUber2"] = { type = "Suffix", affix = "of the Elder", "(4-5)% Chance to Block Attack Damage", statOrder = { 1051 }, level = 80, group = "BlockPercent", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod" }, }, + ["BlindOnHitSupportedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are supported by Level 16 Blind", "(5-6)% Global chance to Blind Enemies on hit", statOrder = { 397, 2867 }, level = 68, group = "BlindOnHitSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, }, + ["BlindOnHitSupportedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are supported by Level 18 Blind", "(7-8)% Global chance to Blind Enemies on hit", statOrder = { 397, 2867 }, level = 75, group = "BlindOnHitSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, }, + ["BlindOnHitSupportedUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are supported by Level 20 Blind", "(9-10)% Global chance to Blind Enemies on hit", statOrder = { 397, 2867 }, level = 80, group = "BlindOnHitSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, }, + ["SocketedSpellCriticalMultiplierUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Spells have +30% to Critical Strike Multiplier", statOrder = { 494 }, level = 68, group = "SocketedSpellCriticalMultiplier", weightKey = { "gloves_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "caster_damage", "influence_mod", "damage", "caster", "critical", "gem" }, }, + ["SocketedSpellCriticalMultiplierUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Spells have +50% to Critical Strike Multiplier", statOrder = { 494 }, level = 75, group = "SocketedSpellCriticalMultiplier", weightKey = { "gloves_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "caster_damage", "influence_mod", "damage", "caster", "critical", "gem" }, }, + ["SocketedSpellCriticalMultiplierUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Spells have +70% to Critical Strike Multiplier", statOrder = { 494 }, level = 83, group = "SocketedSpellCriticalMultiplier", weightKey = { "gloves_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "caster_damage", "influence_mod", "damage", "caster", "critical", "gem" }, }, + ["SocketedAttackCriticalMultiplierUber1_"] = { type = "Suffix", affix = "of the Elder", "Socketed Attacks have +30% to Critical Strike Multiplier", statOrder = { 475 }, level = 68, group = "SocketedAttackCriticalMultiplier", weightKey = { "gloves_elder", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "influence_mod", "damage", "attack", "critical", "gem" }, }, + ["SocketedAttackCriticalMultiplierUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Attacks have +50% to Critical Strike Multiplier", statOrder = { 475 }, level = 75, group = "SocketedAttackCriticalMultiplier", weightKey = { "gloves_elder", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "influence_mod", "damage", "attack", "critical", "gem" }, }, + ["SocketedAttackCriticalMultiplierUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Attacks have +70% to Critical Strike Multiplier", statOrder = { 475 }, level = 84, group = "SocketedAttackCriticalMultiplier", weightKey = { "gloves_elder", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "influence_mod", "damage", "attack", "critical", "gem" }, }, + ["AreaDamageSupportedUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Concentrated Effect", "(15-18)% increased Area Damage", statOrder = { 380, 1944 }, level = 68, group = "AreaDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, + ["AreaDamageSupportedUber2_"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Concentrated Effect", "(19-22)% increased Area Damage", statOrder = { 380, 1944 }, level = 75, group = "AreaDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, + ["AreaDamageSupportedUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Concentrated Effect", "(23-25)% increased Area Damage", statOrder = { 380, 1944 }, level = 82, group = "AreaDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, + ["AreaOfEffectSupportedUber1_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Increased Area of Effect", "(7-9)% increased Area of Effect", statOrder = { 203, 1791 }, level = 68, group = "AreaOfEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, }, + ["AreaOfEffectSupportedUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Increased Area of Effect", "(10-12)% increased Area of Effect", statOrder = { 203, 1791 }, level = 75, group = "AreaOfEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, }, + ["AreaOfEffectSupportedUber3"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Increased Area of Effect", "(13-15)% increased Area of Effect", statOrder = { 203, 1791 }, level = 83, group = "AreaOfEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, }, + ["MaximumManaUber1"] = { type = "Prefix", affix = "The Elder's", "(9-11)% increased maximum Mana", statOrder = { 1491 }, level = 68, group = "MaximumManaIncreasePercent", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, + ["MaximumManaUber2_"] = { type = "Prefix", affix = "The Elder's", "(12-15)% increased maximum Mana", statOrder = { 1491 }, level = 75, group = "MaximumManaIncreasePercent", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, + ["MinionDamageSupportedUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Minion Damage", "Minions deal (15-18)% increased Damage", statOrder = { 433, 1882 }, level = 68, group = "MinionDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "damage", "minion", "gem" }, }, + ["MinionDamageSupportedUber2"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Minion Damage", "Minions deal (19-22)% increased Damage", statOrder = { 433, 1882 }, level = 75, group = "MinionDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "damage", "minion", "gem" }, }, + ["MinionDamageSupportedUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Minion Damage", "Minions deal (23-25)% increased Damage", statOrder = { 433, 1882 }, level = 83, group = "MinionDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "damage", "minion", "gem" }, }, + ["MinionLifeSupportedUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Minion Life", "Minions have (15-18)% increased maximum Life", statOrder = { 431, 1677 }, level = 68, group = "MinionLifeSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "resource", "influence_mod", "life", "minion", "gem" }, }, + ["MinionLifeSupportedUber2"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Minion Life", "Minions have (19-22)% increased maximum Life", statOrder = { 431, 1677 }, level = 75, group = "MinionLifeSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "resource", "influence_mod", "life", "minion", "gem" }, }, + ["MinionLifeSupportedUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Minion Life", "Minions have (23-25)% increased maximum Life", statOrder = { 431, 1677 }, level = 80, group = "MinionLifeSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "resource", "influence_mod", "life", "minion", "gem" }, }, + ["AdditionalMinesPlacedSupportedUber1_"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Blastchain Mine", "Throw an additional Mine", statOrder = { 424, 3457 }, level = 68, group = "AdditionalMinesPlacedSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, }, + ["AdditionalMinesPlacedSupportedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Blastchain Mine", "Throw an additional Mine", statOrder = { 424, 3457 }, level = 75, group = "AdditionalMinesPlacedSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, }, + ["AdditionalMinesPlacedSupportedUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 22 Blastchain Mine", "Throw an additional Mine", statOrder = { 424, 3457 }, level = 85, group = "AdditionalMinesPlacedSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, }, + ["MineDamageUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Blastchain Mine", "(20-25)% increased Mine Damage", statOrder = { 424, 1108 }, level = 68, group = "MineDamageSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, + ["MineDamageUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Blastchain Mine", "(26-30)% increased Mine Damage", statOrder = { 424, 1108 }, level = 75, group = "MineDamageSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, + ["MineDamageUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 22 Blastchain Mine", "(31-35)% increased Mine Damage", statOrder = { 424, 1108 }, level = 80, group = "MineDamageSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, + ["MineDamageTrapUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Trap And Mine Damage", "(20-25)% increased Mine Damage", statOrder = { 384, 1108 }, level = 68, group = "MineDamageTrapSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, + ["MineDamageTrapUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Trap And Mine Damage", "(26-30)% increased Mine Damage", statOrder = { 384, 1108 }, level = 75, group = "MineDamageTrapSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, + ["MineDamageTrapUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Trap And Mine Damage", "(31-35)% increased Mine Damage", statOrder = { 384, 1108 }, level = 80, group = "MineDamageTrapSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, + ["IncreasedChillEffectSupportedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Hypothermia", "(8-12)% increased Effect of Cold Ailments", statOrder = { 438, 5695 }, level = 68, group = "ChillEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "elemental", "cold", "ailment", "gem" }, }, + ["IncreasedChillEffectSupportedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Hypothermia", "(13-16)% increased Effect of Cold Ailments", statOrder = { 438, 5695 }, level = 75, group = "ChillEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "elemental", "cold", "ailment", "gem" }, }, + ["IncreasedChillEffectSupportedUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Hypothermia", "(17-20)% increased Effect of Cold Ailments", statOrder = { 438, 5695 }, level = 80, group = "ChillEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "elemental", "cold", "ailment", "gem" }, }, + ["IncreasedShockEffectSupportedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Innervate", "(8-12)% increased Effect of Lightning Ailments", statOrder = { 448, 7293 }, level = 68, group = "ShockEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "elemental", "lightning", "ailment", "gem" }, }, + ["IncreasedShockEffectSupportedUber2___"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Innervate", "(13-16)% increased Effect of Lightning Ailments", statOrder = { 448, 7293 }, level = 75, group = "ShockEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "elemental", "lightning", "ailment", "gem" }, }, + ["IncreasedShockEffectSupportedUber3_"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Innervate", "(17-20)% increased Effect of Lightning Ailments", statOrder = { 448, 7293 }, level = 80, group = "ShockEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "elemental", "lightning", "ailment", "gem" }, }, + ["IgniteDurationSupportedUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Immolate", "(8-12)% increased Ignite Duration on Enemies", statOrder = { 258, 1770 }, level = 68, group = "IgniteDurationSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "elemental", "fire", "ailment", "gem" }, }, + ["IgniteDurationSupportedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Immolate", "(13-16)% increased Ignite Duration on Enemies", statOrder = { 258, 1770 }, level = 75, group = "IgniteDurationSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "elemental", "fire", "ailment", "gem" }, }, + ["IgniteDurationSupportedUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Immolate", "(17-20)% increased Ignite Duration on Enemies", statOrder = { 258, 1770 }, level = 80, group = "IgniteDurationSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "elemental", "fire", "ailment", "gem" }, }, + ["IncreasedBurningDamageSupportedUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Burning Damage", "(20-25)% increased Burning Damage", statOrder = { 261, 1788 }, level = 68, group = "BurningDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "fire", "gem" }, }, + ["IncreasedBurningDamageSupportedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Burning Damage", "(26-30)% increased Burning Damage", statOrder = { 261, 1788 }, level = 75, group = "BurningDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "fire", "gem" }, }, + ["IncreasedBurningDamageSupportedUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Burning Damage", "(31-35)% increased Burning Damage", statOrder = { 261, 1788 }, level = 82, group = "BurningDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "fire", "gem" }, }, + ["ChanceToGainPowerChargeOnKillUber1"] = { type = "Prefix", affix = "The Shaper's", "(4-6)% chance to gain a Power Charge on Kill", statOrder = { 2541 }, level = 68, group = "PowerChargeOnKillChance", weightKey = { "helmet_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "power_charge", "influence_mod" }, }, + ["ChanceToGainPowerChargeOnKillUber2"] = { type = "Prefix", affix = "The Shaper's", "(7-10)% chance to gain a Power Charge on Kill", statOrder = { 2541 }, level = 84, group = "PowerChargeOnKillChance", weightKey = { "helmet_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "power_charge", "influence_mod" }, }, + ["SupportedByLessDurationUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Less Duration", statOrder = { 302 }, level = 68, group = "SupportedByLessDuration", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, }, + ["SpellAddedFireDamageUber1"] = { type = "Prefix", affix = "The Elder's", "Adds (17-22) to (33-39) Fire Damage to Spells", statOrder = { 1315 }, level = 68, group = "SpellAddedFireDamageUber", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamageUber2"] = { type = "Prefix", affix = "The Elder's", "Adds (21-28) to (42-49) Fire Damage to Spells", statOrder = { 1315 }, level = 75, group = "SpellAddedFireDamageUber", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamageUber3"] = { type = "Prefix", affix = "The Elder's", "Adds (25-34) to (51-59) Fire Damage to Spells", statOrder = { 1315 }, level = 82, group = "SpellAddedFireDamageUber", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedColdDamageUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (14-18) to (27-32) Cold Damage to Spells", statOrder = { 1316 }, level = 68, group = "SpellAddedColdDamageUber", weightKey = { "helmet_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamageUber2"] = { type = "Prefix", affix = "The Shaper's", "Adds (17-23) to (34-40) Cold Damage to Spells", statOrder = { 1316 }, level = 75, group = "SpellAddedColdDamageUber", weightKey = { "helmet_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamageUber3"] = { type = "Prefix", affix = "The Shaper's", "Adds (21-28) to (41-48) Cold Damage to Spells", statOrder = { 1316 }, level = 83, group = "SpellAddedColdDamageUber", weightKey = { "helmet_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedLightningDamageUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (2-5) to (58-61) Lightning Damage to Spells", statOrder = { 1317 }, level = 68, group = "SpellAddedLightningDamageUber", weightKey = { "helmet_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamageUber2"] = { type = "Prefix", affix = "The Shaper's", "Adds (2-6) to (73-77) Lightning Damage to Spells", statOrder = { 1317 }, level = 75, group = "SpellAddedLightningDamageUber", weightKey = { "helmet_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamageUber3"] = { type = "Prefix", affix = "The Shaper's", "Adds (2-7) to (88-93) Lightning Damage to Spells", statOrder = { 1317 }, level = 84, group = "SpellAddedLightningDamageUber", weightKey = { "helmet_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedPhysicalDamageUber1"] = { type = "Prefix", affix = "The Elder's", "Adds (17-22) to (33-39) Physical Damage to Spells", statOrder = { 1314 }, level = 68, group = "SpellAddedPhysicalDamage", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "physical_damage", "caster_damage", "influence_mod", "damage", "physical", "caster" }, }, + ["SpellAddedPhysicalDamageUber2"] = { type = "Prefix", affix = "The Elder's", "Adds (21-28) to (42-49) Physical Damage to Spells", statOrder = { 1314 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "physical_damage", "caster_damage", "influence_mod", "damage", "physical", "caster" }, }, + ["SpellAddedPhysicalDamageUber3"] = { type = "Prefix", affix = "The Elder's", "Adds (25-34) to (51-59) Physical Damage to Spells", statOrder = { 1314 }, level = 85, group = "SpellAddedPhysicalDamage", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "physical_damage", "caster_damage", "influence_mod", "damage", "physical", "caster" }, }, + ["SpellAddedChaosDamageUber1"] = { type = "Prefix", affix = "The Elder's", "Adds (14-18) to (27-32) Chaos Damage to Spells", statOrder = { 1318 }, level = 68, group = "SpellAddedChaosDamage", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "caster_damage", "chaos_damage", "influence_mod", "damage", "chaos", "caster" }, }, + ["SpellAddedChaosDamageUber2"] = { type = "Prefix", affix = "The Elder's", "Adds (17-23) to (34-40) Chaos Damage to Spells", statOrder = { 1318 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "caster_damage", "chaos_damage", "influence_mod", "damage", "chaos", "caster" }, }, + ["SpellAddedChaosDamageUber3"] = { type = "Prefix", affix = "The Elder's", "Adds (21-28) to (41-48) Chaos Damage to Spells", statOrder = { 1318 }, level = 85, group = "SpellAddedChaosDamage", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "caster_damage", "chaos_damage", "influence_mod", "damage", "chaos", "caster" }, }, + ["ManaRegenerationUber1"] = { type = "Suffix", affix = "of Shaping", "(41-55)% increased Mana Regeneration Rate", statOrder = { 1495 }, level = 68, group = "ManaRegeneration", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, + ["ManaRegenerationUber2"] = { type = "Suffix", affix = "of Shaping", "(56-70)% increased Mana Regeneration Rate", statOrder = { 1495 }, level = 75, group = "ManaRegeneration", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, + ["AddedManaRegenerationUber1"] = { type = "Suffix", affix = "of Shaping", "Regenerate (3-5) Mana per second", statOrder = { 1493 }, level = 68, group = "AddedManaRegeneration", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, + ["AddedManaRegenerationUber2"] = { type = "Suffix", affix = "of Shaping", "Regenerate (6-8) Mana per second", statOrder = { 1493 }, level = 80, group = "AddedManaRegeneration", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, + ["AdditionalSpellBlockChanceUber1"] = { type = "Suffix", affix = "of the Elder", "(3-4)% Chance to Block Spell Damage", statOrder = { 1072 }, level = 68, group = "SpellBlockPercentage", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod" }, }, + ["AdditionalSpellBlockChanceUber2"] = { type = "Suffix", affix = "of the Elder", "(5-6)% Chance to Block Spell Damage", statOrder = { 1072 }, level = 80, group = "SpellBlockPercentage", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod" }, }, + ["SocketedSpellCriticalStrikeChanceUber1_"] = { type = "Suffix", affix = "of Shaping", "Socketed Spells have +1% to Critical Strike Chance", statOrder = { 493 }, level = 68, group = "SocketedSpellCriticalStrikeChance", weightKey = { "helmet_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "influence_mod", "caster", "critical", "gem" }, }, + ["SocketedSpellCriticalStrikeChanceUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Spells have +2% to Critical Strike Chance", statOrder = { 493 }, level = 75, group = "SocketedSpellCriticalStrikeChance", weightKey = { "helmet_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "influence_mod", "caster", "critical", "gem" }, }, + ["SocketedSpellCriticalStrikeChanceUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Spells have +3% to Critical Strike Chance", statOrder = { 493 }, level = 84, group = "SocketedSpellCriticalStrikeChance", weightKey = { "helmet_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "influence_mod", "caster", "critical", "gem" }, }, + ["SocketedAttackCriticalStrikeChanceUber1__"] = { type = "Suffix", affix = "of the Elder", "Socketed Attacks have +1% to Critical Strike Chance", statOrder = { 474 }, level = 68, group = "SocketedAttackCriticalStrikeChance", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "influence_mod", "attack", "critical", "gem" }, }, + ["SocketedAttackCriticalStrikeChanceUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Attacks have +2% to Critical Strike Chance", statOrder = { 474 }, level = 75, group = "SocketedAttackCriticalStrikeChance", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "influence_mod", "attack", "critical", "gem" }, }, + ["SocketedAttackCriticalStrikeChanceUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Attacks have +3% to Critical Strike Chance", statOrder = { 474 }, level = 83, group = "SocketedAttackCriticalStrikeChance", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "influence_mod", "attack", "critical", "gem" }, }, + ["EnemyPhysicalDamageTakenAuraUber1_"] = { type = "Suffix", affix = "of the Elder", "Nearby Enemies take 9% increased Physical Damage", statOrder = { 7770 }, level = 85, group = "NearbyEnemyPhysicalDamageTaken", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, }, + ["EnemyElementalDamageTakenAuraUber1"] = { type = "Suffix", affix = "of Shaping", "Nearby Enemies take 6% increased Elemental Damage", statOrder = { 7765 }, level = 85, group = "NearbyEnemyElementalDamageTaken", weightKey = { "helmet_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, }, + ["LocalIncreaseSocketedActiveGemLevelUber1"] = { type = "Prefix", affix = "The Shaper's", "+1 to Level of Socketed Skill Gems", statOrder = { 170 }, level = 80, group = "LocalIncreaseSocketedActiveSkillGemLevel", weightKey = { "body_armour_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "gem" }, }, + ["LocalIncreaseSocketedSupportGemLevelUber1"] = { type = "Prefix", affix = "The Elder's", "+1 to Level of Socketed Support Gems", statOrder = { 169 }, level = 80, group = "LocalIncreaseSocketedSupportGemLevel", weightKey = { "body_armour_elder", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "gem" }, }, + ["PhysicalDamageTakenAsFirePercentUber1"] = { type = "Prefix", affix = "The Elder's", "(8-12)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2356 }, level = 68, group = "PhysicalDamageTakenAsFireUber", weightKey = { "body_armour_elder", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "physical", "elemental", "fire" }, }, + ["PhysicalDamageTakenAsFirePercentUber2"] = { type = "Prefix", affix = "The Elder's", "(13-15)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2356 }, level = 84, group = "PhysicalDamageTakenAsFireUber", weightKey = { "body_armour_elder", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "physical", "elemental", "fire" }, }, + ["PhysicalDamageTakenAsColdPercentUber1"] = { type = "Prefix", affix = "The Shaper's", "(8-12)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2357 }, level = 68, group = "PhysicalDamageTakenAsColdUber", weightKey = { "body_armour_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "physical", "elemental", "cold" }, }, + ["PhysicalDamageTakenAsColdPercentUber2"] = { type = "Prefix", affix = "The Shaper's", "(13-15)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2357 }, level = 83, group = "PhysicalDamageTakenAsColdUber", weightKey = { "body_armour_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "physical", "elemental", "cold" }, }, + ["PhysicalDamageTakenAsLightningPercentUber1"] = { type = "Prefix", affix = "The Shaper's", "(8-12)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2358 }, level = 68, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "body_armour_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "physical", "elemental", "lightning" }, }, + ["PhysicalDamageTakenAsLightningPercentUber2___"] = { type = "Prefix", affix = "The Shaper's", "(13-15)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2358 }, level = 82, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "body_armour_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "physical", "elemental", "lightning" }, }, + ["ReducedElementalReflectTakenUber1"] = { type = "Prefix", affix = "The Shaper's", "You and your Minions take 100% reduced Reflected Elemental Damage", statOrder = { 6228 }, level = 68, group = "ReducedElementalReflectTaken", weightKey = { "body_armour_shaper", "default", }, weightVal = { 200, 0 }, modTags = { "influence_mod", "elemental" }, }, + ["ReducedElementalReflectTakenUber2"] = { type = "Prefix", affix = "The Shaper's", "You and your Minions take 100% reduced Reflected Elemental Damage", statOrder = { 6228 }, level = 75, group = "ReducedElementalReflectTaken", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental" }, }, + ["ReducedPhysicalReflectTakenUber1"] = { type = "Prefix", affix = "The Elder's", "You and your Minions take 100% reduced Reflected Physical Damage", statOrder = { 9458 }, level = 68, group = "ReducedPhysicalReflectTaken", weightKey = { "body_armour_elder", "default", }, weightVal = { 200, 0 }, modTags = { "influence_mod", "physical" }, }, + ["ReducedPhysicalReflectTakenUber2"] = { type = "Prefix", affix = "The Elder's", "You and your Minions take 100% reduced Reflected Physical Damage", statOrder = { 9458 }, level = 75, group = "ReducedPhysicalReflectTaken", weightKey = { "body_armour_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical" }, }, + ["MaximumLifeUber1"] = { type = "Prefix", affix = "The Elder's", "(5-8)% increased maximum Life", statOrder = { 1482 }, level = 68, group = "MaximumLifeIncreasePercent", weightKey = { "body_armour_elder", "default", }, weightVal = { 400, 0 }, modTags = { "resource", "influence_mod", "life" }, }, + ["MaximumLifeUber2"] = { type = "Prefix", affix = "The Elder's", "(9-12)% increased maximum Life", statOrder = { 1482 }, level = 85, group = "MaximumLifeIncreasePercent", weightKey = { "body_armour_elder", "default", }, weightVal = { 400, 0 }, modTags = { "resource", "influence_mod", "life" }, }, + ["MaximumManaBodyUber1"] = { type = "Prefix", affix = "The Shaper's", "(9-11)% increased maximum Mana", statOrder = { 1491 }, level = 68, group = "MaximumManaIncreaseShaper", weightKey = { "body_armour_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, + ["MaximumManaBodyUber2"] = { type = "Prefix", affix = "The Shaper's", "(12-15)% increased maximum Mana", statOrder = { 1491 }, level = 75, group = "MaximumManaIncreaseShaper", weightKey = { "body_armour_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, + ["DamageTakenFromManaBeforeLifeUber1_"] = { type = "Prefix", affix = "The Shaper's", "(5-10)% of Damage is taken from Mana before Life", statOrder = { 2607 }, level = 80, group = "DamageRemovedFromManaBeforeLife", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "mana" }, }, + ["MaximumLifeOnKillPercentUber1"] = { type = "Suffix", affix = "of the Elder", "Recover (3-4)% of Life on Kill", statOrder = { 1660 }, level = 68, group = "MaximumLifeOnKillPercent", weightKey = { "body_armour_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life" }, }, + ["MaximumLifeOnKillPercentUber2__"] = { type = "Suffix", affix = "of the Elder", "Recover (5-6)% of Life on Kill", statOrder = { 1660 }, level = 75, group = "MaximumLifeOnKillPercent", weightKey = { "body_armour_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life" }, }, + ["MaximumManaOnKillPercentUber1"] = { type = "Suffix", affix = "of Shaping", "Recover (3-4)% of Mana on Kill", statOrder = { 1662 }, level = 68, group = "MaximumManaOnKillPercent", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, + ["MaximumManaOnKillPercentUber2"] = { type = "Suffix", affix = "of Shaping", "Recover (5-6)% of Mana on Kill", statOrder = { 1662 }, level = 75, group = "MaximumManaOnKillPercent", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, + ["MaximumEnergyShieldOnKillPercentUber1"] = { type = "Suffix", affix = "of Shaping", "Recover (3-4)% of Energy Shield on Kill", statOrder = { 1661 }, level = 68, group = "MaximumEnergyShieldOnKillPercent", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, + ["MaximumEnergyShieldOnKillPercentUber2"] = { type = "Suffix", affix = "of Shaping", "Recover (5-6)% of Energy Shield on Kill", statOrder = { 1661 }, level = 75, group = "MaximumEnergyShieldOnKillPercent", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, + ["PercentageStrengthUber1_"] = { type = "Suffix", affix = "of the Elder", "(5-8)% increased Strength", statOrder = { 1096 }, level = 68, group = "PercentageStrength", weightKey = { "body_armour_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attribute" }, }, + ["PercentageStrengthUber2__"] = { type = "Suffix", affix = "of the Elder", "(9-12)% increased Strength", statOrder = { 1096 }, level = 83, group = "PercentageStrength", weightKey = { "body_armour_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attribute" }, }, + ["PercentageDexterityUber1"] = { type = "Suffix", affix = "of the Elder", "(5-8)% increased Dexterity", statOrder = { 1097 }, level = 68, group = "PercentageDexterity", weightKey = { "body_armour_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attribute" }, }, + ["PercentageDexterityUber2"] = { type = "Suffix", affix = "of the Elder", "(9-12)% increased Dexterity", statOrder = { 1097 }, level = 83, group = "PercentageDexterity", weightKey = { "body_armour_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attribute" }, }, + ["PercentageIntelligenceUber1"] = { type = "Suffix", affix = "of Shaping", "(5-8)% increased Intelligence", statOrder = { 1098 }, level = 68, group = "PercentageIntelligence", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attribute" }, }, + ["PercentageIntelligenceUber2"] = { type = "Suffix", affix = "of Shaping", "(9-12)% increased Intelligence", statOrder = { 1098 }, level = 83, group = "PercentageIntelligence", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attribute" }, }, + ["LifeRegenerationRatePercentUber1"] = { type = "Suffix", affix = "of the Elder", "Regenerate (1-1.5)% of Life per second", statOrder = { 1853 }, level = 68, group = "LifeRegenerationRatePercentage", weightKey = { "body_armour_elder", "amulet_elder", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "influence_mod", "life" }, }, + ["LifeRegenerationRatePercentUber2"] = { type = "Suffix", affix = "of the Elder", "Regenerate (1.6-2)% of Life per second", statOrder = { 1853 }, level = 75, group = "LifeRegenerationRatePercentage", weightKey = { "body_armour_elder", "amulet_elder", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "influence_mod", "life" }, }, + ["SupportedByItemRarityUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 10 Item Rarity", "(8-12)% increased Rarity of Items found from Slain Unique Enemies", statOrder = { 268, 10287 }, level = 68, group = "SupportedByItemRarityUnique", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem", "drop" }, }, + ["SupportedByItemRarityUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 15 Item Rarity", "(13-18)% increased Rarity of Items found from Slain Unique Enemies", statOrder = { 268, 10287 }, level = 85, group = "SupportedByItemRarityUnique", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem", "drop" }, }, + ["AdditionalCriticalStrikeChanceWithAttacksUber1"] = { type = "Suffix", affix = "of the Elder", "Attacks have +(0.5-1)% to Critical Strike Chance", statOrder = { 4691 }, level = 68, group = "AdditionalCriticalStrikeChanceWithAttacks", weightKey = { "body_armour_elder", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "attack", "critical" }, }, + ["AdditionalCriticalStrikeChanceWithAttacksUber2"] = { type = "Suffix", affix = "of the Elder", "Attacks have +(1.1-1.5)% to Critical Strike Chance", statOrder = { 4691 }, level = 84, group = "AdditionalCriticalStrikeChanceWithAttacks", weightKey = { "body_armour_elder", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "attack", "critical" }, }, + ["AdditionalCriticalStrikeChanceWithSpellsUber1_"] = { type = "Suffix", affix = "of Shaping", "+(0.5-1)% to Spell Critical Strike Chance", statOrder = { 9909 }, level = 68, group = "AdditionalCriticalStrikeChanceWithSpells", weightKey = { "body_armour_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "caster", "critical" }, }, + ["AdditionalCriticalStrikeChanceWithSpellsUber2_"] = { type = "Suffix", affix = "of Shaping", "+(1.1-1.5)% to Spell Critical Strike Chance", statOrder = { 9909 }, level = 84, group = "AdditionalCriticalStrikeChanceWithSpells", weightKey = { "body_armour_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "caster", "critical" }, }, + ["GrantsWrathAuraUber1"] = { type = "Suffix", affix = "of the Elder", "Grants Level 22 Wrath Skill", statOrder = { 562 }, level = 68, group = "WrathSkill", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, }, + ["GrantsAngerAuraUber1"] = { type = "Suffix", affix = "of the Elder", "Grants Level 22 Anger Skill", statOrder = { 564 }, level = 68, group = "AngerSkill", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, }, + ["GrantsHatredAuraUber1__"] = { type = "Suffix", affix = "of the Elder", "Grants Level 22 Hatred Skill", statOrder = { 563 }, level = 68, group = "HatredSkill", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, }, + ["GrantsEnvyAuraUber1"] = { type = "Suffix", affix = "of the Elder", "Grants Level 15 Envy Skill", statOrder = { 569 }, level = 85, group = "GrantsEnvy", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, }, + ["GrantsDeterminationAuraUber1_"] = { type = "Suffix", affix = "of Shaping", "Grants Level 22 Determination Skill", statOrder = { 565 }, level = 68, group = "DeterminationSkill", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, }, + ["GrantsGraceAuraUber1"] = { type = "Suffix", affix = "of Shaping", "Grants Level 22 Grace Skill", statOrder = { 566 }, level = 68, group = "GraceSkill", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, }, + ["GrantsDisciplineAuraUber1"] = { type = "Suffix", affix = "of Shaping", "Grants Level 22 Discipline Skill", statOrder = { 568 }, level = 68, group = "DisciplineSkill", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, }, + ["GrantsHasteAuraUber1"] = { type = "Suffix", affix = "of Shaping", "Grants Level 22 Haste Skill", statOrder = { 553 }, level = 68, group = "HasteSkill", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, }, + ["GrantsVitalityAuraUber1"] = { type = "Suffix", affix = "of Shaping", "Grants Level 22 Vitality Skill", statOrder = { 557 }, level = 68, group = "VitalitySkill", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, }, + ["GrantsClarityAuraUber1"] = { type = "Suffix", affix = "of Shaping", "Grants Level 22 Clarity Skill", statOrder = { 555 }, level = 68, group = "ClaritySkill", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, }, + ["ReducedAttributeRequirementsUber1"] = { type = "Suffix", affix = "of Shaping", "Items and Gems have (5-10)% reduced Attribute Requirements", statOrder = { 2461 }, level = 68, group = "GlobalItemAttributeRequirements", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, }, + ["ReducedAttributeRequirementsUber2"] = { type = "Suffix", affix = "of Shaping", "Items and Gems have (11-15)% reduced Attribute Requirements", statOrder = { 2461 }, level = 75, group = "GlobalItemAttributeRequirements", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, }, + ["FireDamageLifeLeechUber1"] = { type = "Prefix", affix = "The Elder's", "(0.3-0.5)% of Fire Damage Leeched as Life", statOrder = { 1581 }, level = 68, group = "FireDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "fire" }, }, + ["ColdDamageLifeLeechUber1_"] = { type = "Prefix", affix = "The Shaper's", "(0.3-0.5)% of Cold Damage Leeched as Life", statOrder = { 1586 }, level = 68, group = "ColdDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "cold" }, }, + ["LightningDamageLifeLeechUber1"] = { type = "Prefix", affix = "The Shaper's", "(0.3-0.5)% of Lightning Damage Leeched as Life", statOrder = { 1590 }, level = 68, group = "LightningDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "lightning" }, }, + ["PhysicalDamageLifeLeechUber1"] = { type = "Prefix", affix = "The Elder's", "(0.3-0.5)% of Physical Damage Leeched as Life", statOrder = { 1577 }, level = 68, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "influence_mod", "life", "physical" }, }, + ["FireDamageLifeLeechSuffixUber1"] = { type = "Suffix", affix = "of the Elder", "(0.3-0.5)% of Fire Damage Leeched as Life", statOrder = { 1581 }, level = 68, group = "FireDamageLifeLeechPermyriad", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "fire" }, }, + ["ColdDamageLifeLeechSuffixUber1_"] = { type = "Suffix", affix = "of Shaping", "(0.3-0.5)% of Cold Damage Leeched as Life", statOrder = { 1586 }, level = 68, group = "ColdDamageLifeLeechPermyriad", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "cold" }, }, + ["LightningDamageLifeLeechSuffixUber1"] = { type = "Suffix", affix = "of Shaping", "(0.3-0.5)% of Lightning Damage Leeched as Life", statOrder = { 1590 }, level = 68, group = "LightningDamageLifeLeechPermyriad", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "lightning" }, }, + ["PhysicalDamageLifeLeechSuffixUber1"] = { type = "Suffix", affix = "of the Elder", "(0.3-0.5)% of Physical Damage Leeched as Life", statOrder = { 1577 }, level = 68, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life", "physical" }, }, + ["MovementVelocityAmuletUber1"] = { type = "Prefix", affix = "The Shaper's", "(4-6)% increased Movement Speed", statOrder = { 1709 }, level = 68, group = "MovementVelocity", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "speed" }, }, + ["MovementVelocityAmuletUber2"] = { type = "Prefix", affix = "The Shaper's", "(7-8)% increased Movement Speed", statOrder = { 1709 }, level = 84, group = "MovementVelocity", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "speed" }, }, + ["BlockAppliesToSpellsUber1"] = { type = "Suffix", affix = "of Shaping", "(7-10)% Chance to Block Spell Damage", statOrder = { 1067 }, level = 68, group = "BlockingBlocksSpells", weightKey = { "amulet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "block", "influence_mod" }, }, + ["BlockAppliesToSpellsUber2"] = { type = "Suffix", affix = "of Shaping", "(10-12)% Chance to Block Spell Damage", statOrder = { 1067 }, level = 75, group = "BlockingBlocksSpells", weightKey = { "amulet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "block", "influence_mod" }, }, + ["SpellBlockAmuletUber1_"] = { type = "Suffix", affix = "of Shaping", "(4-5)% Chance to Block Spell Damage", statOrder = { 1072 }, level = 68, group = "SpellBlockPercentage", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod" }, }, + ["SpellBlockAmuletUber2_"] = { type = "Suffix", affix = "of Shaping", "(6-7)% Chance to Block Spell Damage", statOrder = { 1072 }, level = 75, group = "SpellBlockPercentage", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod" }, }, + ["PercentageAllAttributesUberElder1"] = { type = "Suffix", affix = "of the Elder", "(6-9)% increased Attributes", statOrder = { 1095 }, level = 68, group = "PercentageAllAttributes", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attribute" }, }, + ["PercentageAllAttributesUberElder2"] = { type = "Suffix", affix = "of the Elder", "(10-12)% increased Attributes", statOrder = { 1095 }, level = 75, group = "PercentageAllAttributes", weightKey = { "belt_elder", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "attribute" }, }, + ["PercentageAllAttributesUberShaper1"] = { type = "Suffix", affix = "of Shaping", "(6-9)% increased Attributes", statOrder = { 1095 }, level = 68, group = "PercentageAllAttributes", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attribute" }, }, + ["PercentageAllAttributesUberShaper2"] = { type = "Suffix", affix = "of Shaping", "(10-12)% increased Attributes", statOrder = { 1095 }, level = 75, group = "PercentageAllAttributes", weightKey = { "amulet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attribute" }, }, + ["ReducedManaReservedUber1"] = { type = "Suffix", affix = "of Shaping", "(6-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 2141 }, level = 82, group = "ReducedReservation", weightKey = { "amulet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, + ["ManaReservationEfficiencyUber1"] = { type = "Suffix", affix = "of Shaping", "(6-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 2137 }, level = 82, group = "ManaReservationEfficiency", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, + ["AreaOfEffectUber1_"] = { type = "Prefix", affix = "The Elder's", "(7-9)% increased Area of Effect", statOrder = { 1791 }, level = 68, group = "AreaOfEffect", weightKey = { "amulet_elder", "quiver_elder", "shield_elder", "default", }, weightVal = { 800, 800, 800, 0 }, modTags = { "influence_mod" }, }, + ["AreaOfEffectUber2"] = { type = "Prefix", affix = "The Elder's", "(10-12)% increased Area of Effect", statOrder = { 1791 }, level = 75, group = "AreaOfEffect", weightKey = { "amulet_elder", "quiver_elder", "shield_elder", "default", }, weightVal = { 600, 600, 600, 0 }, modTags = { "influence_mod" }, }, + ["AreaOfEffectUber3_"] = { type = "Prefix", affix = "The Elder's", "(13-15)% increased Area of Effect", statOrder = { 1791 }, level = 82, group = "AreaOfEffect", weightKey = { "amulet_elder", "quiver_elder", "shield_elder", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "influence_mod" }, }, + ["AdditionalPierceUber1"] = { type = "Prefix", affix = "The Elder's", "Projectiles Pierce an additional Target", statOrder = { 1701 }, level = 68, group = "AdditionalPierce", weightKey = { "amulet_elder", "quiver_elder", "default", }, weightVal = { 800, 800, 0 }, modTags = { "influence_mod" }, }, + ["ReducedPhysicalDamageTakenUber1"] = { type = "Suffix", affix = "of the Elder", "(3-5)% additional Physical Damage Reduction", statOrder = { 2182 }, level = 83, group = "ReducedPhysicalDamageTaken", weightKey = { "amulet_elder", "shield_elder", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "physical" }, }, + ["ItemFoundQuantityIncreaseUber1"] = { type = "Suffix", affix = "of Shaping", "(4-7)% increased Quantity of Items found", statOrder = { 1503 }, level = 75, group = "ItemFoundQuantityIncrease", weightKey = { "amulet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "drop" }, }, + ["ItemFoundQuantityIncreaseUber2"] = { type = "Suffix", affix = "of Shaping", "(8-10)% increased Quantity of Items found", statOrder = { 1503 }, level = 85, group = "ItemFoundQuantityIncrease", weightKey = { "amulet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "drop" }, }, + ["PhysicalAddedAsFireAmuletUber1"] = { type = "Prefix", affix = "The Elder's", "Gain (8-11)% of Physical Damage as Extra Fire Damage", statOrder = { 1841 }, level = 68, group = "PhysicalAddedAsFire", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, }, + ["PhysicalAddedAsFireAmuletUber2"] = { type = "Prefix", affix = "The Elder's", "Gain (12-15)% of Physical Damage as Extra Fire Damage", statOrder = { 1841 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, }, + ["PhysicalAddedAsColdAmuletUber1"] = { type = "Prefix", affix = "The Shaper's", "Gain (8-11)% of Physical Damage as Extra Cold Damage", statOrder = { 1842 }, level = 68, group = "PhysicalAddedAsCold", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, }, + ["PhysicalAddedAsColdAmuletUber2"] = { type = "Prefix", affix = "The Shaper's", "Gain (12-15)% of Physical Damage as Extra Cold Damage", statOrder = { 1842 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, }, + ["PhysicalAddedAsLightningAmuletUber1"] = { type = "Prefix", affix = "The Shaper's", "Gain (8-11)% of Physical Damage as Extra Lightning Damage", statOrder = { 1843 }, level = 68, group = "PhysicalAddedAsLightning", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, }, + ["PhysicalAddedAsLightningAmuletUber2_"] = { type = "Prefix", affix = "The Shaper's", "Gain (12-15)% of Physical Damage as Extra Lightning Damage", statOrder = { 1843 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, }, + ["IncreasedAttackSpeedAmuletUber1"] = { type = "Suffix", affix = "of the Elder", "(7-13)% increased Attack Speed", statOrder = { 1321 }, level = 82, group = "IncreasedAttackSpeed", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attack", "speed" }, }, + ["NonChaosAddedAsChaosUber1"] = { type = "Prefix", affix = "The Elder's", "Gain (3-5)% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 9286 }, level = 81, group = "NonChaosAddedAsChaos", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "chaos_damage", "influence_mod", "damage", "chaos" }, }, + ["PowerFrenzyOrEnduranceChargeOnKillUber1_"] = { type = "Suffix", affix = "of Shaping", "(3-6)% chance to gain a Power, Frenzy or Endurance Charge on Kill", statOrder = { 3520 }, level = 68, group = "PowerFrenzyOrEnduranceChargeOnKill", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "endurance_charge", "frenzy_charge", "power_charge", "influence_mod" }, }, + ["PowerFrenzyOrEnduranceChargeOnKillUber2"] = { type = "Suffix", affix = "of Shaping", "(7-10)% chance to gain a Power, Frenzy or Endurance Charge on Kill", statOrder = { 3520 }, level = 75, group = "PowerFrenzyOrEnduranceChargeOnKill", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "endurance_charge", "frenzy_charge", "power_charge", "influence_mod" }, }, + ["MaximumZombiesUber1"] = { type = "Prefix", affix = "The Elder's", "+1 to maximum number of Raised Zombies", statOrder = { 2069 }, level = 68, group = "MaximumMinionCount", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "minion" }, }, + ["MaximumSkeletonsUber1"] = { type = "Prefix", affix = "The Elder's", "+1 to maximum number of Skeletons", statOrder = { 2071 }, level = 68, group = "MaximumMinionCount", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "minion" }, }, + ["MaximumBlockChanceUber1"] = { type = "Suffix", affix = "of Shaping", "+2% to maximum Chance to Block Attack Damage", statOrder = { 1897 }, level = 68, group = "MaximumBlockChance", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod" }, }, + ["MaximumLifeLeechRateUber1"] = { type = "Prefix", affix = "The Elder's", "(15-25)% increased Maximum total Life Recovery per second from Leech", statOrder = { 1643 }, level = 68, group = "MaximumLifeLeechRateOldFix", weightKey = { "amulet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life" }, }, + ["MaximumLifeLeechRateUpdatedUber1"] = { type = "Prefix", affix = "The Elder's", "(15-25)% increased Maximum total Life Recovery per second from Leech", statOrder = { 1642 }, level = 68, group = "MaximumLifeLeechRate", weightKey = { "amulet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life" }, }, + ["MaximumLifeLeechRateUpdatedSuffixUber1"] = { type = "Suffix", affix = "of the Elder", "(15-25)% increased Maximum total Life Recovery per second from Leech", statOrder = { 1642 }, level = 68, group = "MaximumLifeLeechRate", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life" }, }, + ["ElementalPenetrationUber1"] = { type = "Prefix", affix = "The Shaper's", "Damage Penetrates (4-7)% Elemental Resistances", statOrder = { 2889 }, level = 68, group = "ElementalPenetration", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, }, + ["ElementalPenetrationUber2"] = { type = "Prefix", affix = "The Shaper's", "Damage Penetrates (8-10)% Elemental Resistances", statOrder = { 2889 }, level = 82, group = "ElementalPenetration", weightKey = { "amulet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, }, + ["DamagePer15StrengthUber1"] = { type = "Prefix", affix = "The Elder's", "1% increased Damage per 15 Strength", statOrder = { 5953 }, level = 80, group = "DamagePer15Strength", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "damage" }, }, + ["DamagePer15DexterityUber1"] = { type = "Prefix", affix = "The Shaper's", "1% increased Damage per 15 Dexterity", statOrder = { 5951 }, level = 80, group = "DamagePer15Dexterity", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "damage" }, }, + ["DamagePer15IntelligenceUber1"] = { type = "Prefix", affix = "The Shaper's", "1% increased Damage per 15 Intelligence", statOrder = { 5952 }, level = 80, group = "DamagePer15Intelligence", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "damage" }, }, + ["ReducedCurseEffectUber1_"] = { type = "Suffix", affix = "of Shaping", "(25-29)% reduced Effect of Curses on you", statOrder = { 2079 }, level = 68, group = "ReducedCurseEffect", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, + ["ReducedCurseEffectUber2"] = { type = "Suffix", affix = "of Shaping", "(35-40)% reduced Effect of Curses on you", statOrder = { 2079 }, level = 75, group = "ReducedCurseEffect", weightKey = { "ring_shaper", "default", }, weightVal = { 1600, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, + ["MeleeDamageRingUber1"] = { type = "Suffix", affix = "of the Elder", "(20-25)% increased Melee Damage", statOrder = { 1146 }, level = 68, group = "MeleeDamage", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "attack" }, }, + ["MeleeDamageRingUber2"] = { type = "Suffix", affix = "of the Elder", "(26-30)% increased Melee Damage", statOrder = { 1146 }, level = 75, group = "MeleeDamage", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "attack" }, }, + ["MeleeDamageRingUber3"] = { type = "Suffix", affix = "of the Elder", "(31-35)% increased Melee Damage", statOrder = { 1146 }, level = 83, group = "MeleeDamage", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "attack" }, }, + ["ProjectileAttackDamageRingUber1"] = { type = "Suffix", affix = "of the Elder", "(20-25)% increased Projectile Attack Damage", statOrder = { 1906 }, level = 68, group = "ProjectileAttackDamage", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "attack" }, }, + ["ProjectileAttackDamageRingUber2"] = { type = "Suffix", affix = "of the Elder", "(26-30)% increased Projectile Attack Damage", statOrder = { 1906 }, level = 75, group = "ProjectileAttackDamage", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "attack" }, }, + ["ProjectileAttackDamageRingUber3"] = { type = "Suffix", affix = "of the Elder", "(31-35)% increased Projectile Attack Damage", statOrder = { 1906 }, level = 84, group = "ProjectileAttackDamage", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "attack" }, }, + ["SpellDamageRingUber1"] = { type = "Suffix", affix = "of Shaping", "(20-25)% increased Spell Damage", statOrder = { 1135 }, level = 68, group = "SpellDamage", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, }, + ["SpellDamageRingUber2"] = { type = "Suffix", affix = "of Shaping", "(26-30)% increased Spell Damage", statOrder = { 1135 }, level = 75, group = "SpellDamage", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, }, + ["SpellDamageRingUber3__"] = { type = "Suffix", affix = "of Shaping", "(31-35)% increased Spell Damage", statOrder = { 1135 }, level = 82, group = "SpellDamage", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, }, + ["ReducedElementalReflectTakenRingUber1"] = { type = "Prefix", affix = "The Shaper's", "You and your Minions take (31-45)% reduced Reflected Elemental Damage", statOrder = { 6228 }, level = 68, group = "ReducedElementalReflectTaken", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "elemental" }, }, + ["ReducedElementalReflectTakenRingUber2"] = { type = "Prefix", affix = "The Shaper's", "You and your Minions take (46-55)% reduced Reflected Elemental Damage", statOrder = { 6228 }, level = 75, group = "ReducedElementalReflectTaken", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "elemental" }, }, + ["ReducedPhysicalReflectTakenRingUber1"] = { type = "Prefix", affix = "The Elder's", "You and your Minions take (31-45)% reduced Reflected Physical Damage", statOrder = { 9458 }, level = 68, group = "ReducedPhysicalReflectTaken", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "physical" }, }, + ["ReducedPhysicalReflectTakenRingUber2"] = { type = "Prefix", affix = "The Elder's", "You and your Minions take (46-55)% reduced Reflected Physical Damage", statOrder = { 9458 }, level = 75, group = "ReducedPhysicalReflectTaken", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "physical" }, }, + ["CriticalStrikeChanceUber1"] = { type = "Suffix", affix = "of Shaping", "(10-15)% increased Global Critical Strike Chance", statOrder = { 1370 }, level = 68, group = "CriticalStrikeChance", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "critical" }, }, + ["CriticalStrikeChanceUber2"] = { type = "Suffix", affix = "of Shaping", "(16-20)% increased Global Critical Strike Chance", statOrder = { 1370 }, level = 75, group = "CriticalStrikeChance", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "critical" }, }, + ["CriticalStrikeChanceUber3_"] = { type = "Suffix", affix = "of Shaping", "(21-25)% increased Global Critical Strike Chance", statOrder = { 1370 }, level = 80, group = "CriticalStrikeChance", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "critical" }, }, + ["CriticalStrikeMultiplierUber1"] = { type = "Suffix", affix = "of the Elder", "+(8-12)% to Global Critical Strike Multiplier", statOrder = { 1399 }, level = 68, group = "CriticalStrikeMultiplier", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "damage", "critical" }, }, + ["CriticalStrikeMultiplierUber2_"] = { type = "Suffix", affix = "of the Elder", "+(13-16)% to Global Critical Strike Multiplier", statOrder = { 1399 }, level = 75, group = "CriticalStrikeMultiplier", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "damage", "critical" }, }, + ["CriticalStrikeMultiplierUber3"] = { type = "Suffix", affix = "of the Elder", "+(17-20)% to Global Critical Strike Multiplier", statOrder = { 1399 }, level = 80, group = "CriticalStrikeMultiplier", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "damage", "critical" }, }, + ["AddedFireDamageToSpellsAndAttacksUber1"] = { type = "Prefix", affix = "The Elder's", "Adds (17-20) to (38-42) Fire Damage to Spells and Attacks", statOrder = { 1284 }, level = 68, group = "AddedFireDamageSpellsAndAttacks", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "attack", "caster" }, }, + ["AddedFireDamageToSpellsAndAttacksUber2"] = { type = "Prefix", affix = "The Elder's", "Adds (21-24) to (43-48) Fire Damage to Spells and Attacks", statOrder = { 1284 }, level = 75, group = "AddedFireDamageSpellsAndAttacks", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "attack", "caster" }, }, + ["AddedColdDamageToSpellsAndAttacksUber1__"] = { type = "Prefix", affix = "The Shaper's", "Adds (17-20) to (38-42) Cold Damage to Spells and Attacks", statOrder = { 1285 }, level = 68, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "attack", "caster" }, }, + ["AddedColdDamageToSpellsAndAttacksUber2"] = { type = "Prefix", affix = "The Shaper's", "Adds (21-24) to (43-48) Cold Damage to Spells and Attacks", statOrder = { 1285 }, level = 75, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "attack", "caster" }, }, + ["AddedLightningDamageToSpellsAndAttacksUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (9-12) to (48-52) Lightning Damage to Spells and Attacks", statOrder = { 1320 }, level = 68, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "attack", "caster" }, }, + ["AddedLightningDamageToSpellsAndAttacksUber2"] = { type = "Prefix", affix = "The Shaper's", "Adds (13-16) to (56-60) Lightning Damage to Spells and Attacks", statOrder = { 1320 }, level = 75, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "attack", "caster" }, }, + ["IncreasedExperienceGainUber1"] = { type = "Prefix", affix = "The Shaper's", "(2-3)% increased Experience gain", statOrder = { 1514 }, level = 85, group = "ExperienceIncrease", weightKey = { "ring_shaper", "default", }, weightVal = { 50, 0 }, modTags = { "influence_mod" }, }, + ["LifeGainPerTargetUber1"] = { type = "Prefix", affix = "The Elder's", "Gain (10-15) Life per Enemy Hit with Attacks", statOrder = { 1651 }, level = 68, group = "LifeGainPerTarget", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life", "attack" }, }, + ["LifeGainPerTargetUber2"] = { type = "Prefix", affix = "The Elder's", "Gain (16-20) Life per Enemy Hit with Attacks", statOrder = { 1651 }, level = 75, group = "LifeGainPerTarget", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life", "attack" }, }, + ["ManaGainPerTargetUberShaper1"] = { type = "Prefix", affix = "The Shaper's", "Gain (2-3) Mana per Enemy Hit with Attacks", statOrder = { 1655 }, level = 68, group = "ManaGainPerTarget", weightKey = { "quiver_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana", "attack" }, }, + ["ManaGainPerTargetUberElder1"] = { type = "Prefix", affix = "The Elder's", "Gain (2-3) Mana per Enemy Hit with Attacks", statOrder = { 1655 }, level = 68, group = "ManaGainPerTarget", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana", "attack" }, }, + ["LifeGainedOnSpellHitUber1"] = { type = "Prefix", affix = "The Shaper's", "Gain (8-12) Life per Enemy Hit with Spells", statOrder = { 1650 }, level = 68, group = "LifeGainedOnSpellHit", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life", "caster" }, }, + ["LifeGainedOnSpellHitUber2"] = { type = "Prefix", affix = "The Shaper's", "Gain (13-15) Life per Enemy Hit with Spells", statOrder = { 1650 }, level = 75, group = "LifeGainedOnSpellHit", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life", "caster" }, }, + ["ManaGainedOnSpellHitUber1_"] = { type = "Prefix", affix = "The Shaper's", "Gain (2-3) Mana per Enemy Hit with Spells", statOrder = { 8012 }, level = 68, group = "ManaGainedOnSpellHit", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana", "caster" }, }, + ["IncreasedAccuracyPercentUber1_"] = { type = "Suffix", affix = "of the Elder", "(6-10)% increased Global Accuracy Rating", statOrder = { 1345 }, level = 68, group = "IncreasedAccuracyPercent", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attack" }, }, + ["IncreasedAccuracyPercentUber2"] = { type = "Suffix", affix = "of the Elder", "(11-15)% increased Global Accuracy Rating", statOrder = { 1345 }, level = 75, group = "IncreasedAccuracyPercent", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attack" }, }, + ["IncreasedAccuracyPercentUber3"] = { type = "Suffix", affix = "of the Elder", "(16-20)% increased Global Accuracy Rating", statOrder = { 1345 }, level = 82, group = "IncreasedAccuracyPercent", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attack" }, }, + ["CurseOnHitAssassinsMarkUber1"] = { type = "Suffix", affix = "of Shaping", "Trigger Level 8 Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 672 }, level = 75, group = "CurseOnHitCriticalWeakness", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, + ["CurseOnHitAssassinsMarkUber2"] = { type = "Suffix", affix = "of Shaping", "Trigger Level 12 Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 672 }, level = 80, group = "CurseOnHitCriticalWeakness", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, + ["CurseOnHitPoachersMarkUber1"] = { type = "Suffix", affix = "of the Elder", "Trigger Level 8 Poacher's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 673 }, level = 75, group = "CurseOnHitPoachersMark", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, + ["CurseOnHitPoachersMarkUber2"] = { type = "Suffix", affix = "of the Elder", "Trigger Level 12 Poacher's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 673 }, level = 80, group = "CurseOnHitPoachersMark", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, + ["CurseOnHitWarlordsMarkUber1_"] = { type = "Suffix", affix = "of the Elder", "Trigger Level 8 Warlords's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 675 }, level = 75, group = "CurseOnHitWarlordsMark", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, + ["CurseOnHitWarlordsMarkUber2"] = { type = "Suffix", affix = "of the Elder", "Trigger Level 12 Warlords's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 675 }, level = 80, group = "CurseOnHitWarlordsMark", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, + ["CurseOnHitAssassinsMarkNewUber1"] = { type = "Suffix", affix = "of Shaping", "Trigger Level 8 Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 712 }, level = 75, group = "TriggerOnRareAssassinsMark", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, + ["CurseOnHitAssassinsMarkNewUber2"] = { type = "Suffix", affix = "of Shaping", "Trigger Level 12 Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 712 }, level = 80, group = "TriggerOnRareAssassinsMark", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, + ["CurseOnHitPoachersMarkNewUber1__"] = { type = "Suffix", affix = "of the Elder", "Trigger Level 8 Poacher's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 717 }, level = 75, group = "TriggerOnRarePoachersMark", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, + ["CurseOnHitPoachersMarkNewUber2__"] = { type = "Suffix", affix = "of the Elder", "Trigger Level 12 Poacher's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 717 }, level = 80, group = "TriggerOnRarePoachersMark", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, + ["CurseOnHitWarlordsMarkNewUber1"] = { type = "Suffix", affix = "of the Elder", "Trigger Level 8 Warlord's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 720 }, level = 75, group = "TriggerOnRareWarlordsMark", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, + ["CurseOnHitWarlordsMarkNewUber2"] = { type = "Suffix", affix = "of the Elder", "Trigger Level 12 Warlord's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 720 }, level = 80, group = "TriggerOnRareWarlordsMark", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, + ["GrantsHeraldOfAshSkillUber1"] = { type = "Suffix", affix = "of the Elder", "Grants Level 22 Herald of Ash Skill", statOrder = { 619 }, level = 68, group = "HeraldOfAshSkill", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, }, + ["GrantsHeraldOfIceSkillUber1"] = { type = "Suffix", affix = "of Shaping", "Grants Level 22 Herald of Ice Skill", statOrder = { 620 }, level = 68, group = "HeraldOfIceSkill", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, }, + ["GrantsHeraldOfThunderSkillUber1"] = { type = "Suffix", affix = "of Shaping", "Grants Level 22 Herald of Thunder Skill", statOrder = { 623 }, level = 68, group = "HeraldOfThunderSkill", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, }, + ["AdditionalChanceToEvadeUber1__"] = { type = "Suffix", affix = "of the Elder", "+(2-3)% chance to Evade Attack Hits", statOrder = { 5571 }, level = 68, group = "AdditionalChanceToEvade", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "evasion" }, }, + ["AdditionalChanceToEvadeUber2"] = { type = "Suffix", affix = "of the Elder", "+(4-5)% chance to Evade Attack Hits", statOrder = { 5571 }, level = 75, group = "AdditionalChanceToEvade", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "evasion" }, }, + ["ChanceToIgniteAddedDamageUber1"] = { type = "Prefix", affix = "The Elder's", "Adds (19-26) to (38-46) Fire Damage against Ignited Enemies", statOrder = { 6760 }, level = 68, group = "ChanceToIgniteAddedDamage", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, }, + ["ChanceToIgniteAddedDamageUber2__"] = { type = "Prefix", affix = "The Elder's", "Adds (23-30) to (47-54) Fire Damage against Ignited Enemies", statOrder = { 6760 }, level = 75, group = "ChanceToIgniteAddedDamage", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, }, + ["ChanceToFreezeAddedDamageUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (17-23) to (35-41) Cold Damage against Chilled or Frozen Enemies", statOrder = { 6759 }, level = 68, group = "ChanceToFreezeAddedDamage", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "ailment" }, }, + ["ChanceToFreezeAddedDamageUber2"] = { type = "Prefix", affix = "The Shaper's", "Adds (20-26) to (41-48) Cold Damage against Chilled or Frozen Enemies", statOrder = { 6759 }, level = 75, group = "ChanceToFreezeAddedDamage", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "ailment" }, }, + ["ChanceToShockAddedDamageUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (3-7) to (68-73) Lightning Damage against Shocked Enemies", statOrder = { 6762 }, level = 68, group = "ChanceToShockAddedDamage", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "ailment" }, }, + ["ChanceToShockAddedDamageUber2"] = { type = "Prefix", affix = "The Shaper's", "Adds (4-8) to (82-86) Lightning Damage against Shocked Enemies", statOrder = { 6762 }, level = 75, group = "ChanceToShockAddedDamage", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "ailment" }, }, + ["PhysicalAttackDamageTakenUber1_"] = { type = "Suffix", affix = "of Shaping", "-(35-25) Physical Damage taken from Attack Hits", statOrder = { 2143 }, level = 68, group = "PhysicalAttackDamageTaken", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "physical", "attack" }, }, + ["PhysicalAttackDamageTakenUber2"] = { type = "Suffix", affix = "of Shaping", "-(45-36) Physical Damage taken from Attack Hits", statOrder = { 2143 }, level = 75, group = "PhysicalAttackDamageTaken", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "physical", "attack" }, }, + ["IncreasedCooldownRecoveryUber1"] = { type = "Suffix", affix = "of Shaping", "(10-15)% increased Cooldown Recovery Rate", statOrder = { 4899 }, level = 75, group = "GlobalCooldownRecovery", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, }, + ["IncreasedCooldownRecoveryUber2_"] = { type = "Suffix", affix = "of Shaping", "(16-20)% increased Cooldown Recovery Rate", statOrder = { 4899 }, level = 84, group = "GlobalCooldownRecovery", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, }, + ["MaximumLifeIncreasePercentBeltUber1"] = { type = "Prefix", affix = "The Elder's", "(4-7)% increased maximum Life", statOrder = { 1482 }, level = 68, group = "MaximumLifeIncreasePercent", weightKey = { "belt_elder", "default", }, weightVal = { 400, 0 }, modTags = { "resource", "influence_mod", "life" }, }, + ["MaximumLifeIncreasePercentBeltUber2"] = { type = "Prefix", affix = "The Elder's", "(8-10)% increased maximum Life", statOrder = { 1482 }, level = 75, group = "MaximumLifeIncreasePercent", weightKey = { "belt_elder", "default", }, weightVal = { 400, 0 }, modTags = { "resource", "influence_mod", "life" }, }, + ["GlobalEnergyShieldPercentBeltUber1"] = { type = "Prefix", affix = "The Shaper's", "(4-7)% increased maximum Energy Shield", statOrder = { 1472 }, level = 68, group = "GlobalEnergyShieldPercent", weightKey = { "belt_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, + ["GlobalEnergyShieldPercentBeltUber2"] = { type = "Prefix", affix = "The Shaper's", "(8-10)% increased maximum Energy Shield", statOrder = { 1472 }, level = 75, group = "GlobalEnergyShieldPercent", weightKey = { "belt_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, + ["FlaskEffectUber1"] = { type = "Prefix", affix = "The Elder's", "Flasks applied to you have (4-7)% increased Effect", statOrder = { 2652 }, level = 75, group = "FlaskEffect", weightKey = { "belt_elder", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "influence_mod" }, }, + ["FlaskEffectUber2"] = { type = "Prefix", affix = "The Elder's", "Flasks applied to you have (8-10)% increased Effect", statOrder = { 2652 }, level = 81, group = "FlaskEffect", weightKey = { "belt_elder", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "influence_mod" }, }, + ["AllResistancesBeltUber1"] = { type = "Suffix", affix = "of the Elder", "+(13-15)% to all Elemental Resistances", statOrder = { 1530 }, level = 68, group = "AllResistances", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "elemental", "resistance" }, }, + ["AllResistancesBeltUber2"] = { type = "Suffix", affix = "of the Elder", "+(16-18)% to all Elemental Resistances", statOrder = { 1530 }, level = 75, group = "AllResistances", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "elemental", "resistance" }, }, + ["ReducedCriticalStrikeDamageTakenUber1"] = { type = "Prefix", affix = "The Shaper's", "You take (15-20)% reduced Extra Damage from Critical Strikes", statOrder = { 1423 }, level = 68, group = "ReducedCriticalStrikeDamageTaken", weightKey = { "belt_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "critical" }, }, + ["ReducedCriticalStrikeDamageTakenUber2"] = { type = "Prefix", affix = "The Shaper's", "You take (21-30)% reduced Extra Damage from Critical Strikes", statOrder = { 1423 }, level = 75, group = "ReducedCriticalStrikeDamageTaken", weightKey = { "belt_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "critical" }, }, + ["LifeRecoveryRateUber1"] = { type = "Suffix", affix = "of the Elder", "(7-9)% increased Life Recovery rate", statOrder = { 1489 }, level = 68, group = "LifeRecoveryRate", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life" }, }, + ["LifeRecoveryRateUber2_"] = { type = "Suffix", affix = "of the Elder", "(10-12)% increased Life Recovery rate", statOrder = { 1489 }, level = 75, group = "LifeRecoveryRate", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life" }, }, + ["EnergyShieldRecoveryRateUber1"] = { type = "Suffix", affix = "of Shaping", "(7-9)% increased Energy Shield Recovery rate", statOrder = { 1479 }, level = 68, group = "EnergyShieldRecoveryRate", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, + ["EnergyShieldRecoveryRateUber2"] = { type = "Suffix", affix = "of Shaping", "(10-12)% increased Energy Shield Recovery rate", statOrder = { 1479 }, level = 75, group = "EnergyShieldRecoveryRate", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, + ["ManaRecoveryRateUber1_"] = { type = "Suffix", affix = "of Shaping", "(7-9)% increased Mana Recovery rate", statOrder = { 1497 }, level = 68, group = "ManaRecoveryRate", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, + ["ManaRecoveryRateUber2"] = { type = "Suffix", affix = "of Shaping", "(10-12)% increased Mana Recovery rate", statOrder = { 1497 }, level = 75, group = "ManaRecoveryRate", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, + ["FlaskChanceToNotConsumeChargesUber1_"] = { type = "Prefix", affix = "The Elder's", "(6-10)% chance for Flasks you use to not consume Charges", statOrder = { 4137 }, level = 82, group = "FlaskChanceToNotConsumeCharges", weightKey = { "belt_elder", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "influence_mod" }, }, + ["ChaosResistanceWhileUsingFlaskUber1"] = { type = "Suffix", affix = "of the Elder", "+(20-25)% to Chaos Resistance during any Flask Effect", statOrder = { 3209 }, level = 68, group = "ChaosResistanceWhileUsingFlask", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "influence_mod", "chaos", "resistance" }, }, + ["ChaosResistanceWhileUsingFlaskUber2_"] = { type = "Suffix", affix = "of the Elder", "+(26-30)% to Chaos Resistance during any Flask Effect", statOrder = { 3209 }, level = 75, group = "ChaosResistanceWhileUsingFlask", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "influence_mod", "chaos", "resistance" }, }, + ["MovementSpeedDuringFlaskEffectUber1"] = { type = "Suffix", affix = "of Shaping", "(6-10)% increased Movement Speed during any Flask Effect", statOrder = { 3094 }, level = 81, group = "MovementSpeedDuringFlaskEffect", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "influence_mod", "speed" }, }, + ["FortifyOnMeleeStunUber1"] = { type = "Prefix", affix = "The Elder's", "Melee Hits which Stun have (8-12)% chance to Fortify", statOrder = { 5576 }, level = 68, group = "FortifyOnMeleeStun", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, }, + ["GrantsEnduringCrySkillUber1"] = { type = "Prefix", affix = "The Elder's", "Grants Level 22 Enduring Cry Skill", statOrder = { 616 }, level = 68, group = "EnduringCrySkill", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, }, + ["GrantsRallyingCrySkillUber1"] = { type = "Prefix", affix = "The Elder's", "Grants Level 22 Rallying Cry Skill", statOrder = { 632 }, level = 68, group = "RallyingCrySkill", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, }, + ["GrantsAbyssalCrySkillUber1"] = { type = "Prefix", affix = "The Shaper's", "Grants Level 22 Intimidating Cry Skill", statOrder = { 599 }, level = 68, group = "AbyssalCrySkill", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, }, + ["RemoveIgniteOnFlaskUseUber1"] = { type = "Suffix", affix = "of the Elder", "Remove Ignite and Burning when you use a Flask", statOrder = { 9694 }, level = 75, group = "RemoveIgniteOnFlaskUse", weightKey = { "belt_elder", "default", }, weightVal = { 400, 0 }, modTags = { "flask", "influence_mod", "elemental", "fire", "ailment" }, }, + ["RemoveFreezeOnFlaskUseUber1_"] = { type = "Suffix", affix = "of Shaping", "Remove Chill and Freeze when you use a Flask", statOrder = { 9690 }, level = 75, group = "RemoveFreezeOnFlaskUse", weightKey = { "belt_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "flask", "influence_mod", "elemental", "cold", "ailment" }, }, + ["RemoveShockOnFlaskUseUber1_"] = { type = "Suffix", affix = "of Shaping", "Remove Shock when you use a Flask", statOrder = { 9703 }, level = 75, group = "RemoveShockOnFlaskUse", weightKey = { "belt_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "flask", "influence_mod", "elemental", "lightning", "ailment" }, }, + ["AttackSpeedDuringFlaskEffectUber1"] = { type = "Suffix", affix = "of the Elder", "(8-14)% increased Attack Speed during any Flask Effect", statOrder = { 3208 }, level = 68, group = "AttackSpeedDuringFlaskEffect", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "influence_mod", "attack", "speed" }, }, + ["CastSpeedDuringFlaskEffectUber1"] = { type = "Suffix", affix = "of Shaping", "(8-14)% increased Cast Speed during any Flask Effect", statOrder = { 5358 }, level = 68, group = "CastSpeedDuringFlaskEffect", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "influence_mod", "caster", "speed" }, }, + ["MeleeDamageDuringFlaskEffectUber1"] = { type = "Suffix", affix = "of the Elder", "(20-25)% increased Melee Damage during any Flask Effect", statOrder = { 9002 }, level = 68, group = "MeleeDamageDuringFlaskEffect", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, }, + ["MeleeDamageDuringFlaskEffectUber2_"] = { type = "Suffix", affix = "of the Elder", "(26-30)% increased Melee Damage during any Flask Effect", statOrder = { 9002 }, level = 75, group = "MeleeDamageDuringFlaskEffect", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, }, + ["MeleeDamageDuringFlaskEffectUber3"] = { type = "Suffix", affix = "of the Elder", "(31-35)% increased Melee Damage during any Flask Effect", statOrder = { 9002 }, level = 80, group = "MeleeDamageDuringFlaskEffect", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, }, + ["ProjectileAttackDamageDuringFlaskEffectUber1_"] = { type = "Suffix", affix = "of the Elder", "(20-25)% increased Projectile Attack Damage during any Flask Effect", statOrder = { 9516 }, level = 68, group = "ProjectileAttackDamageDuringFlaskEffect", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, }, + ["ProjectileAttackDamageDuringFlaskEffectUber2_"] = { type = "Suffix", affix = "of the Elder", "(26-30)% increased Projectile Attack Damage during any Flask Effect", statOrder = { 9516 }, level = 75, group = "ProjectileAttackDamageDuringFlaskEffect", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, }, + ["ProjectileAttackDamageDuringFlaskEffectUber3"] = { type = "Suffix", affix = "of the Elder", "(31-35)% increased Projectile Attack Damage during any Flask Effect", statOrder = { 9516 }, level = 80, group = "ProjectileAttackDamageDuringFlaskEffect", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, }, + ["SpellDamageDuringFlaskEffectUber1"] = { type = "Suffix", affix = "of Shaping", "(20-25)% increased Spell Damage during any Flask Effect", statOrder = { 9932 }, level = 68, group = "SpellDamageDuringFlaskEffect", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "caster_damage", "influence_mod", "damage", "caster" }, }, + ["SpellDamageDuringFlaskEffectUber2"] = { type = "Suffix", affix = "of Shaping", "(26-30)% increased Spell Damage during any Flask Effect", statOrder = { 9932 }, level = 75, group = "SpellDamageDuringFlaskEffect", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "caster_damage", "influence_mod", "damage", "caster" }, }, + ["SpellDamageDuringFlaskEffectUber3_"] = { type = "Suffix", affix = "of Shaping", "(31-35)% increased Spell Damage during any Flask Effect", statOrder = { 9932 }, level = 80, group = "SpellDamageDuringFlaskEffect", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "caster_damage", "influence_mod", "damage", "caster" }, }, + ["PhysicalDamageBeltUber1"] = { type = "Prefix", affix = "The Elder's", "(16-20)% increased Global Physical Damage", statOrder = { 1143 }, level = 68, group = "PhysicalDamagePercentPrefix", weightKey = { "belt_elder", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, }, + ["PhysicalDamageBeltUber2"] = { type = "Prefix", affix = "The Elder's", "(21-25)% increased Global Physical Damage", statOrder = { 1143 }, level = 75, group = "PhysicalDamagePercentPrefix", weightKey = { "belt_elder", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, }, + ["PhysicalDamageBeltUber3___"] = { type = "Prefix", affix = "The Elder's", "(26-30)% increased Global Physical Damage", statOrder = { 1143 }, level = 80, group = "PhysicalDamagePercentPrefix", weightKey = { "belt_elder", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, }, + ["ElementalDamageBeltUber1"] = { type = "Prefix", affix = "The Shaper's", "(11-15)% increased Elemental Damage", statOrder = { 1889 }, level = 68, group = "ElementalDamagePercent", weightKey = { "belt_shaper", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, }, + ["ElementalDamageBeltUber2"] = { type = "Prefix", affix = "The Shaper's", "(16-20)% increased Elemental Damage", statOrder = { 1889 }, level = 75, group = "ElementalDamagePercent", weightKey = { "belt_shaper", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, }, + ["ElementalDamageBeltUber3"] = { type = "Prefix", affix = "The Shaper's", "(21-25)% increased Elemental Damage", statOrder = { 1889 }, level = 80, group = "ElementalDamagePercent", weightKey = { "belt_shaper", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, }, + ["ArmourDoubleArmourEffectUber1"] = { type = "Prefix", affix = "The Elder's", "(11-20)% chance to Defend with 200% of Armour", statOrder = { 5569 }, level = 75, group = "ChanceWhenHitForArmourToBeDoubled", weightKey = { "belt_elder", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "defences", "armour" }, }, + ["ArmourDoubleArmourEffectUber2"] = { type = "Prefix", affix = "The Elder's", "(21-30)% chance to Defend with 200% of Armour", statOrder = { 5569 }, level = 80, group = "ChanceWhenHitForArmourToBeDoubled", weightKey = { "belt_elder", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "defences", "armour" }, }, + ["IncreasedEnergyShieldFromBodyArmourUber1_"] = { type = "Prefix", affix = "The Shaper's", "(21-25)% increased Energy Shield from Equipped Body Armour", statOrder = { 8949 }, level = 75, group = "MaximumEnergyShieldFromBodyArmour", weightKey = { "belt_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, + ["IncreasedEnergyShieldFromBodyArmourUber2"] = { type = "Prefix", affix = "The Shaper's", "(26-30)% increased Energy Shield from Equipped Body Armour", statOrder = { 8949 }, level = 80, group = "MaximumEnergyShieldFromBodyArmour", weightKey = { "belt_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, + ["AdditionalArrowUber1__"] = { type = "Prefix", affix = "The Shaper's", "Bow Attacks fire an additional Arrow", statOrder = { 1705 }, level = 80, group = "AdditionalArrows", weightKey = { "quiver_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack" }, }, + ["PoisonOnHitQuiverUber1_"] = { type = "Suffix", affix = "of the Elder", "15% chance to Poison on Hit", "(15-25)% increased Damage with Poison", statOrder = { 3081, 3089 }, level = 68, group = "PoisonOnHitAndDamage", weightKey = { "quiver_elder", "default", }, weightVal = { 800, 0 }, modTags = { "chaos_damage", "poison", "influence_mod", "damage", "chaos", "ailment" }, }, + ["PoisonOnHitQuiverUber2"] = { type = "Suffix", affix = "of the Elder", "20% chance to Poison on Hit", "(26-30)% increased Damage with Poison", statOrder = { 3081, 3089 }, level = 75, group = "PoisonOnHitAndDamage", weightKey = { "quiver_elder", "default", }, weightVal = { 800, 0 }, modTags = { "chaos_damage", "poison", "influence_mod", "damage", "chaos", "ailment" }, }, + ["BleedOnHitQuiverUber1"] = { type = "Suffix", affix = "of the Elder", "Attacks have 10% chance to cause Bleeding", "(15-25)% increased Damage with Bleeding", statOrder = { 2398, 3077 }, level = 68, group = "BleedOnHitAndDamage", weightKey = { "quiver_elder", "default", }, weightVal = { 800, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment" }, }, + ["BleedOnHitQuiverUber2_"] = { type = "Suffix", affix = "of the Elder", "Attacks have 15% chance to cause Bleeding", "(26-30)% increased Damage with Bleeding", statOrder = { 2398, 3077 }, level = 75, group = "BleedOnHitAndDamage", weightKey = { "quiver_elder", "default", }, weightVal = { 800, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment" }, }, + ["MaimOnHitQuiverUber1"] = { type = "Suffix", affix = "of Shaping", "Attacks have 15% chance to Maim on Hit", statOrder = { 7987 }, level = 68, group = "GlobalMaimOnHit", weightKey = { "quiver_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attack" }, }, + ["MaimOnHitQuiverUber2"] = { type = "Suffix", affix = "of Shaping", "Attacks have 20% chance to Maim on Hit", statOrder = { 7987 }, level = 75, group = "GlobalMaimOnHit", weightKey = { "quiver_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attack" }, }, + ["ChancetoGainPhasingOnKillUber1"] = { type = "Suffix", affix = "of the Elder", "(5-6)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3373 }, level = 68, group = "ChancetoGainPhasingOnKill", weightKey = { "quiver_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, }, + ["ChancetoGainPhasingOnKillUber2_"] = { type = "Suffix", affix = "of the Elder", "(7-8)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3373 }, level = 75, group = "ChancetoGainPhasingOnKill", weightKey = { "quiver_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, }, + ["ChancetoGainPhasingOnKillUber3_"] = { type = "Suffix", affix = "of the Elder", "(9-10)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3373 }, level = 80, group = "ChancetoGainPhasingOnKill", weightKey = { "quiver_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, }, + ["AddedColdDamagePerFrenzyChargeUber1"] = { type = "Prefix", affix = "The Elder's", "8 to 12 Added Cold Damage per Frenzy Charge", statOrder = { 4180 }, level = 80, group = "AddedColdDamagePerFrenzyCharge", weightKey = { "quiver_elder", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, }, + ["PhysicalAddedAsColdQuiverUber1"] = { type = "Prefix", affix = "The Shaper's", "Gain (5-10)% of Physical Damage as Extra Cold Damage", statOrder = { 1842 }, level = 68, group = "PhysicalAddedAsCold", weightKey = { "quiver_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, }, + ["PhysicalAddedAsColdQuiverUber2"] = { type = "Prefix", affix = "The Shaper's", "Gain (11-15)% of Physical Damage as Extra Cold Damage", statOrder = { 1842 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "quiver_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, }, + ["MovementVelocityQuiverUber1"] = { type = "Prefix", affix = "The Shaper's", "(3-6)% increased Movement Speed", statOrder = { 1709 }, level = 75, group = "MovementVelocity", weightKey = { "quiver_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "speed" }, }, + ["MovementVelocityQuiverUber2"] = { type = "Prefix", affix = "The Shaper's", "(7-10)% increased Movement Speed", statOrder = { 1709 }, level = 80, group = "MovementVelocity", weightKey = { "quiver_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "speed" }, }, + ["FrenzyChargeOnHittingRareOrUniqueUber1"] = { type = "Suffix", affix = "of the Elder", "(3-5)% chance to gain a Frenzy Charge when you Hit a Rare or Unique Enemy", statOrder = { 6645 }, level = 75, group = "FrenzyChargeOnHittingRareOrUnique", weightKey = { "quiver_elder", "default", }, weightVal = { 400, 0 }, modTags = { "frenzy_charge", "influence_mod" }, }, + ["MaximumFireResistanceUber1"] = { type = "Prefix", affix = "The Elder's", "+1% to maximum Fire Resistance", statOrder = { 1534 }, level = 75, group = "MaximumFireResist", weightKey = { "shield_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "resistance" }, }, + ["MaximumFireResistanceUber2"] = { type = "Prefix", affix = "The Elder's", "+2% to maximum Fire Resistance", statOrder = { 1534 }, level = 80, group = "MaximumFireResist", weightKey = { "shield_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "resistance" }, }, + ["MaximumFireResistanceUber3_"] = { type = "Prefix", affix = "The Elder's", "+3% to maximum Fire Resistance", statOrder = { 1534 }, level = 86, group = "MaximumFireResist", weightKey = { "shield_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "resistance" }, }, + ["MaximumColdResistanceUber1"] = { type = "Prefix", affix = "The Shaper's", "+1% to maximum Cold Resistance", statOrder = { 1540 }, level = 75, group = "MaximumColdResist", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "resistance" }, }, + ["MaximumColdResistanceUber2"] = { type = "Prefix", affix = "The Shaper's", "+2% to maximum Cold Resistance", statOrder = { 1540 }, level = 80, group = "MaximumColdResist", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "resistance" }, }, + ["MaximumColdResistanceUber3"] = { type = "Prefix", affix = "The Shaper's", "+3% to maximum Cold Resistance", statOrder = { 1540 }, level = 86, group = "MaximumColdResist", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "resistance" }, }, + ["MaximumLightningResistanceUber1"] = { type = "Prefix", affix = "The Shaper's", "+1% to maximum Lightning Resistance", statOrder = { 1545 }, level = 75, group = "MaximumLightningResistance", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "resistance" }, }, + ["MaximumLightningResistanceUber2"] = { type = "Prefix", affix = "The Shaper's", "+2% to maximum Lightning Resistance", statOrder = { 1545 }, level = 80, group = "MaximumLightningResistance", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "resistance" }, }, + ["MaximumLightningResistanceUber3"] = { type = "Prefix", affix = "The Shaper's", "+3% to maximum Lightning Resistance", statOrder = { 1545 }, level = 86, group = "MaximumLightningResistance", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "resistance" }, }, + ["MaximumAllResistanceUber1"] = { type = "Prefix", affix = "The Shaper's", "+1% to all maximum Resistances", statOrder = { 1553 }, level = 80, group = "MaximumResistances", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "resistance" }, }, + ["MaximumAllResistanceUber2__"] = { type = "Prefix", affix = "The Shaper's", "+2% to all maximum Resistances", statOrder = { 1553 }, level = 85, group = "MaximumResistances", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "resistance" }, }, + ["SupportedByCastOnDamageTakenUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 5 Cast when Damage Taken", statOrder = { 215 }, level = 68, group = "SupportedByCastOnDamageTaken", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, }, + ["MaximumLifeIncreasePercentShieldUber1"] = { type = "Prefix", affix = "The Elder's", "(3-6)% increased maximum Life", statOrder = { 1482 }, level = 68, group = "MaximumLifeIncreasePercent", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life" }, }, + ["MaximumLifeIncreasePercentShieldUber2"] = { type = "Prefix", affix = "The Elder's", "(7-10)% increased maximum Life", statOrder = { 1482 }, level = 84, group = "MaximumLifeIncreasePercent", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life" }, }, + ["DisplaySocketedGemsGetReducedReservationUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems have 20% increased Reservation Efficiency", statOrder = { 455 }, level = 68, group = "DisplaySocketedGemsGetReducedReservation", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod", "gem" }, }, + ["DisplaySocketedGemsGetReducedReservationUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems have 30% increased Reservation Efficiency", statOrder = { 455 }, level = 80, group = "DisplaySocketedGemsGetReducedReservation", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod", "gem" }, }, + ["BlockAppliesToSpellsShieldUber1_"] = { type = "Suffix", affix = "of Shaping", "(9-12)% Chance to Block Spell Damage", statOrder = { 1067 }, level = 68, group = "BlockingBlocksSpells", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "block", "influence_mod" }, }, + ["BlockAppliesToSpellsShieldUber2_"] = { type = "Suffix", affix = "of Shaping", "(12-15)% Chance to Block Spell Damage", statOrder = { 1067 }, level = 75, group = "BlockingBlocksSpells", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "block", "influence_mod" }, }, + ["SpellBlockOnShieldUber1"] = { type = "Suffix", affix = "of Shaping", "(7-9)% Chance to Block Spell Damage", statOrder = { 1072 }, level = 68, group = "SpellBlockPercentage", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "block", "influence_mod" }, }, + ["SpellBlockOnShieldUber2_"] = { type = "Suffix", affix = "of Shaping", "(10-12)% Chance to Block Spell Damage", statOrder = { 1072 }, level = 75, group = "SpellBlockPercentage", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "block", "influence_mod" }, }, + ["GainArmourIfBlockedRecentlyUber1"] = { type = "Prefix", affix = "The Elder's", "+(500-650) Armour if you've Blocked Recently", statOrder = { 4405 }, level = 68, group = "GainArmourIfBlockedRecently", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "defences", "armour" }, }, + ["GainArmourIfBlockedRecentlyUber2"] = { type = "Prefix", affix = "The Elder's", "+(651-800) Armour if you've Blocked Recently", statOrder = { 4405 }, level = 75, group = "GainArmourIfBlockedRecently", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "defences", "armour" }, }, + ["AdditionalBlockWith5NearbyEnemiesUber1"] = { type = "Suffix", affix = "of the Elder", "+(2-3)% Chance to Block Attack Damage if there are at least 5 nearby Enemies", statOrder = { 4451 }, level = 68, group = "AdditionalBlockWith5NearbyEnemies", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod" }, }, + ["AdditionalBlockWith5NearbyEnemiesUber2"] = { type = "Suffix", affix = "of the Elder", "+(4-5)% Chance to Block Attack Damage if there are at least 5 nearby Enemies", statOrder = { 4451 }, level = 75, group = "AdditionalBlockWith5NearbyEnemies", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod" }, }, + ["GainRandomChargeOnBlockUber1__"] = { type = "Suffix", affix = "of Shaping", "Gain an Endurance, Frenzy or Power charge when you Block", statOrder = { 6697 }, level = 68, group = "GainRandomChargeOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "block", "endurance_charge", "frenzy_charge", "power_charge", "influence_mod" }, }, + ["ChanceToDodgeIfBlockedRecentlyUber1"] = { type = "Suffix", affix = "of Shaping", "+(4-7)% chance to Suppress Spell Damage", statOrder = { 1055 }, level = 68, group = "ChanceToSuppressSpellsOld", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, + ["DamagePerBlockChanceUber1_"] = { type = "Prefix", affix = "The Elder's", "1% increased Damage per 1% Chance to Block Attack Damage", statOrder = { 5954 }, level = 68, group = "DamagePerBlockChance", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "damage" }, }, + ["ChanceToChillAttackersOnBlockUber1"] = { type = "Suffix", affix = "of Shaping", "(25-40)% chance to Chill Attackers for 4 seconds on Block", statOrder = { 5663 }, level = 68, group = "ChanceToChillAttackersOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "block", "red_herring", "influence_mod", "elemental", "cold", "ailment" }, }, + ["ChanceToChillAttackersOnBlockUber2"] = { type = "Suffix", affix = "of Shaping", "(41-50)% chance to Chill Attackers for 4 seconds on Block", statOrder = { 5663 }, level = 75, group = "ChanceToChillAttackersOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "block", "red_herring", "influence_mod", "elemental", "cold", "ailment" }, }, + ["ChanceToShockAttackersOnBlockUber1"] = { type = "Suffix", affix = "of Shaping", "(25-40)% chance to Shock Attackers for 4 seconds on Block", statOrder = { 9789 }, level = 68, group = "ChanceToShockAttackersOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod", "elemental", "lightning", "ailment" }, }, + ["ChanceToShockAttackersOnBlockUber2"] = { type = "Suffix", affix = "of Shaping", "(41-50)% chance to Shock Attackers for 4 seconds on Block", statOrder = { 9789 }, level = 75, group = "ChanceToShockAttackersOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod", "elemental", "lightning", "ailment" }, }, + ["RecoverLifePercentOnBlockUber1_"] = { type = "Suffix", affix = "of Shaping", "Recover (3-5)% of Life when you Block", statOrder = { 2968 }, level = 68, group = "RecoverLifePercentOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "block", "resource", "influence_mod", "life" }, }, + ["RecoverManaPercentOnBlockUber1"] = { type = "Suffix", affix = "of Shaping", "Recover (3-5)% of your maximum Mana when you Block", statOrder = { 8019 }, level = 68, group = "RecoverManaPercentOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "block", "resource", "influence_mod", "mana" }, }, + ["RecoverEnergyShieldPercentOnBlockUber1"] = { type = "Suffix", affix = "of Shaping", "Recover (3-5)% of Energy Shield when you Block", statOrder = { 2376 }, level = 68, group = "RecoverEnergyShieldPercentOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod", "defences", "energy_shield" }, }, + ["MaximumTotemUber1"] = { type = "Prefix", affix = "The Shaper's", "+1 to maximum number of Summoned Totems", statOrder = { 2163 }, level = 70, group = "AdditionalTotems", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, }, + ["SupportedByEnduranceChargeOnStunWeaponUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 10 Endurance Charge on Melee Stun", statOrder = { 453 }, level = 68, group = "SupportedByEnduranceChargeOnStunWeapon", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 0, 400, 400, 400, 400, 400, 0 }, modTags = { "support", "influence_mod", "gem" }, }, + ["SupportedByOnslaughtWeaponUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 10 Momentum", statOrder = { 285 }, level = 68, group = "SupportedByOnslaughtWeapon", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "bow_elder", "default", }, weightVal = { 0, 400, 400, 400, 0 }, modTags = { "support", "influence_mod", "gem" }, }, + ["SupportedByPowerChargeOnCritWeaponUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 10 Power Charge On Critical Strike", statOrder = { 294 }, level = 68, group = "SupportedByPowerChargeOnCritWeapon", weightKey = { "grants_2h_support", "staff_elder", "warstaff_elder", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "support", "influence_mod", "gem" }, }, + ["SupportedByFortifyWeaponUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 1 Fortify", statOrder = { 423 }, level = 68, group = "SupportedByFortifyWeapon", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 0, 400, 400, 400, 400, 400, 0 }, modTags = { "support", "influence_mod", "gem" }, }, + ["SupportedByArcaneSurgeWeaponUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 1 Arcane Surge", statOrder = { 204 }, level = 68, group = "SupportedByArcaneSurgeWeapon", weightKey = { "grants_2h_support", "staff_shaper", "default", }, weightVal = { 0, 400, 0 }, modTags = { "support", "influence_mod", "gem" }, }, + ["SupportedByInspirationWeaponUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 1 Inspiration", statOrder = { 421 }, level = 68, group = "SupportedByInspirationWeapon", weightKey = { "grants_2h_support", "staff_elder", "warstaff_elder", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "support", "influence_mod", "gem" }, }, + ["LocalIncreasedPhysicalDamagePercentMeleePhysicalUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Melee Physical Damage", "(101-115)% increased Physical Damage", statOrder = { 395, 1144 }, level = 68, group = "LocalPhysicalDamagePercentMeleePhysicalDamage", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, + ["LocalIncreasedPhysicalDamagePercentMeleePhysicalUber2"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Melee Physical Damage", "(116-126)% increased Physical Damage", statOrder = { 395, 1144 }, level = 75, group = "LocalPhysicalDamagePercentMeleePhysicalDamage", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, + ["LocalIncreasedPhysicalDamagePercentMeleePhysicalUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Melee Physical Damage", "(127-134)% increased Physical Damage", statOrder = { 395, 1144 }, level = 80, group = "LocalPhysicalDamagePercentMeleePhysicalDamage", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 100, 100, 100, 100, 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, + ["LocalIncreasedPhysicalDamagePercentBrutalityUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Brutality", "(101-115)% increased Physical Damage", statOrder = { 213, 1144 }, level = 68, group = "LocalPhysicalDamagePercentBrutality", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, + ["LocalIncreasedPhysicalDamagePercentBrutalityUber2_"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Brutality", "(116-126)% increased Physical Damage", statOrder = { 213, 1144 }, level = 75, group = "LocalPhysicalDamagePercentBrutality", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, + ["LocalIncreasedPhysicalDamagePercentBrutalityUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Brutality", "(127-134)% increased Physical Damage", statOrder = { 213, 1144 }, level = 80, group = "LocalPhysicalDamagePercentBrutality", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 100, 100, 100, 100, 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, + ["LocalIncreasedPhysicalDamagePercentAddedFireUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Added Fire Damage", "(101-115)% increased Physical Damage", statOrder = { 389, 1144 }, level = 68, group = "LocalPhysicalDamagePercentAddedFireDamage", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire", "attack", "gem" }, }, + ["LocalIncreasedPhysicalDamagePercentAddedFireUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Added Fire Damage", "(116-126)% increased Physical Damage", statOrder = { 389, 1144 }, level = 75, group = "LocalPhysicalDamagePercentAddedFireDamage", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire", "attack", "gem" }, }, + ["LocalIncreasedPhysicalDamagePercentAddedFireUber3_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Added Fire Damage", "(127-134)% increased Physical Damage", statOrder = { 389, 1144 }, level = 80, group = "LocalPhysicalDamagePercentAddedFireDamage", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 100, 100, 100, 100, 100, 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire", "attack", "gem" }, }, + ["LocalIncreasedPhysicalDamagePercentRuthlessUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Ruthless", "(101-115)% increased Physical Damage", statOrder = { 306, 1144 }, level = 68, group = "LocalPhysicalDamagePercentRuthless", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, + ["LocalIncreasedPhysicalDamagePercentRuthlessUber2__"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Ruthless", "(116-126)% increased Physical Damage", statOrder = { 306, 1144 }, level = 75, group = "LocalPhysicalDamagePercentRuthless", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, + ["LocalIncreasedPhysicalDamagePercentRuthlessUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Ruthless", "(127-134)% increased Physical Damage", statOrder = { 306, 1144 }, level = 80, group = "LocalPhysicalDamagePercentRuthless", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 100, 100, 100, 100, 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, + ["LocalIncreasedPhysicalDamagePercentOnslaughtUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Momentum", "(101-115)% increased Physical Damage", statOrder = { 285, 1144 }, level = 68, group = "LocalPhysicalDamagePercentOnslaught", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, + ["LocalIncreasedPhysicalDamagePercentOnslaughtUber2"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Momentum", "(116-126)% increased Physical Damage", statOrder = { 285, 1144 }, level = 75, group = "LocalPhysicalDamagePercentOnslaught", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, + ["LocalIncreasedPhysicalDamagePercentOnslaughtUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Momentum", "(127-134)% increased Physical Damage", statOrder = { 285, 1144 }, level = 80, group = "LocalPhysicalDamagePercentOnslaught", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, + ["LocalIncreasedPhysicalDamagePercentEnduranceChargeOnStunUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Endurance Charge on Melee Stun", "(101-115)% increased Physical Damage", statOrder = { 453, 1144 }, level = 68, group = "LocalPhysicalDamagePercentEnduranceChargeOnStun", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, + ["LocalIncreasedPhysicalDamagePercentEnduranceChargeOnStunUber2"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Endurance Charge on Melee Stun", "(116-126)% increased Physical Damage", statOrder = { 453, 1144 }, level = 75, group = "LocalPhysicalDamagePercentEnduranceChargeOnStun", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, + ["LocalIncreasedPhysicalDamagePercentEnduranceChargeOnStunUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Endurance Charge on Melee Stun", "(127-134)% increased Physical Damage", statOrder = { 453, 1144 }, level = 80, group = "LocalPhysicalDamagePercentEnduranceChargeOnStun", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, + ["LocalIncreasedPhysicalDamagePercentFortifyUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Fortify", "(101-115)% increased Physical Damage", statOrder = { 423, 1144 }, level = 68, group = "LocalPhysicalDamagePercentFortify", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, + ["LocalIncreasedPhysicalDamagePercentFortifyUber2_"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Fortify", "(116-126)% increased Physical Damage", statOrder = { 423, 1144 }, level = 75, group = "LocalPhysicalDamagePercentFortify", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, + ["LocalIncreasedPhysicalDamagePercentFortifyUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Fortify", "(127-134)% increased Physical Damage", statOrder = { 423, 1144 }, level = 80, group = "LocalPhysicalDamagePercentFortify", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, + ["LocalIncreasedPhysicalDamagePercentPowerChargeOnCritUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Power Charge On Critical Strike", "(101-115)% increased Physical Damage", statOrder = { 294, 1144 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentPowerChargeOnCrit", weightKey = { "grants_2h_support", "staff_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, + ["LocalIncreasedPhysicalDamagePercentPowerChargeOnCritUber2"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Power Charge On Critical Strike", "(116-126)% increased Physical Damage", statOrder = { 294, 1144 }, level = 75, group = "LocalIncreasedPhysicalDamagePercentPowerChargeOnCrit", weightKey = { "grants_2h_support", "staff_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, + ["LocalIncreasedPhysicalDamagePercentPowerChargeOnCritUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Power Charge On Critical Strike", "(127-134)% increased Physical Damage", statOrder = { 294, 1144 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentPowerChargeOnCrit", weightKey = { "grants_2h_support", "staff_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, + ["LocalIncreasedPhysicalDamagePercentIronGripUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Iron Grip", "(101-115)% increased Physical Damage", statOrder = { 266, 1144 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentIronGrip", weightKey = { "grants_2h_support", "bow_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, + ["LocalIncreasedPhysicalDamagePercentIronGripUber2_"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Iron Grip", "(116-126)% increased Physical Damage", statOrder = { 266, 1144 }, level = 75, group = "LocalIncreasedPhysicalDamagePercentIronGrip", weightKey = { "grants_2h_support", "bow_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, + ["LocalIncreasedPhysicalDamagePercentIronGripUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Iron Grip", "(127-134)% increased Physical Damage", statOrder = { 266, 1144 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentIronGrip", weightKey = { "grants_2h_support", "bow_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, + ["LocalIncreasedPhysicalDamagePercentFasterProjectilesUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are supported by Level 16 Faster Projectiles", "(101-115)% increased Physical Damage", statOrder = { 409, 1144 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentFasterProjectiles", weightKey = { "grants_2h_support", "bow_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, + ["LocalIncreasedPhysicalDamagePercentFasterProjectilesUber2_"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are supported by Level 18 Faster Projectiles", "(116-126)% increased Physical Damage", statOrder = { 409, 1144 }, level = 75, group = "LocalIncreasedPhysicalDamagePercentFasterProjectiles", weightKey = { "grants_2h_support", "bow_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, + ["LocalIncreasedPhysicalDamagePercentFasterProjectilesUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are supported by Level 20 Faster Projectiles", "(127-134)% increased Physical Damage", statOrder = { 409, 1144 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentFasterProjectiles", weightKey = { "grants_2h_support", "bow_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, + ["LocalIncreasedPhysicalDamagePercentProjectileAttackDamageUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Vicious Projectiles", "(101-115)% increased Physical Damage", statOrder = { 289, 1144 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentProjectileAttackDamage", weightKey = { "grants_2h_support", "bow_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, + ["LocalIncreasedPhysicalDamagePercentProjectileAttackDamageUber2"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Vicious Projectiles", "(116-126)% increased Physical Damage", statOrder = { 289, 1144 }, level = 75, group = "LocalIncreasedPhysicalDamagePercentProjectileAttackDamage", weightKey = { "grants_2h_support", "bow_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, + ["LocalIncreasedPhysicalDamagePercentProjectileAttackDamageUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Vicious Projectiles", "(127-134)% increased Physical Damage", statOrder = { 289, 1144 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentProjectileAttackDamage", weightKey = { "grants_2h_support", "bow_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, + ["SupportedByMeleeSplashDamageUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are supported by Level 16 Melee Splash", "(23-27)% increased Area Damage", statOrder = { 398, 1944 }, level = 68, group = "SupportedByMeleeSplashDamage", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "gem" }, }, + ["SupportedByMeleeSplashDamageUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are supported by Level 18 Melee Splash", "(28-32)% increased Area Damage", statOrder = { 398, 1944 }, level = 75, group = "SupportedByMeleeSplashDamage", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "gem" }, }, + ["SupportedByMeleeSplashDamageUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are supported by Level 20 Melee Splash", "(33-37)% increased Area Damage", statOrder = { 398, 1944 }, level = 80, group = "SupportedByMeleeSplashDamage", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "gem" }, }, + ["SupportedBySpiritStrikeAreaUber1_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Ancestral Call", "(5-8)% increased Area of Effect", statOrder = { 317, 1791 }, level = 68, group = "SupportedBySpiritStrikeArea", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "gem" }, }, + ["SupportedBySpiritStrikeAreaUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Ancestral Call", "(9-12)% increased Area of Effect", statOrder = { 317, 1791 }, level = 75, group = "SupportedBySpiritStrikeArea", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "gem" }, }, + ["SupportedBySpiritStrikeAreaUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Ancestral Call", "(13-15)% increased Area of Effect", statOrder = { 317, 1791 }, level = 80, group = "SupportedBySpiritStrikeArea", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "gem" }, }, + ["LocalIncreasedAttackSpeedMultistrikeUber1_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are supported by Level 18 Multistrike", "(17-19)% increased Attack Speed", statOrder = { 408, 1324 }, level = 68, group = "LocalIncreasedAttackSpeedMultistrike", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, }, + ["LocalIncreasedAttackSpeedMultistrikeUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are supported by Level 20 Multistrike", "(20-21)% increased Attack Speed", statOrder = { 408, 1324 }, level = 75, group = "LocalIncreasedAttackSpeedMultistrike", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, }, + ["LocalIncreasedAttackSpeedFasterAttacksUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Faster Attacks", "(17-19)% increased Attack Speed", statOrder = { 396, 1324 }, level = 68, group = "LocalIncreasedAttackSpeedFasterAttacks", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, }, + ["LocalIncreasedAttackSpeedFasterAttacksUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Faster Attacks", "(20-21)% increased Attack Speed", statOrder = { 396, 1324 }, level = 75, group = "LocalIncreasedAttackSpeedFasterAttacks", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, }, + ["LocalIncreasedAttackSpeedRangedOnslaughtUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Momentum", "(8-10)% increased Attack Speed", statOrder = { 285, 1324 }, level = 68, group = "LocalIncreasedAttackSpeedOnslaught", weightKey = { "wand_elder", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, }, + ["LocalIncreasedAttackSpeedRangedOnslaughtUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Momentum", "(11-12)% increased Attack Speed", statOrder = { 285, 1324 }, level = 75, group = "LocalIncreasedAttackSpeedOnslaught", weightKey = { "wand_elder", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, }, + ["LocalIncreasedAttackSpeedRangedFasterAttacksUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Faster Attacks", "(8-10)% increased Attack Speed", statOrder = { 396, 1324 }, level = 68, group = "LocalIncreasedAttackSpeedFasterAttacks", weightKey = { "wand_shaper", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, }, + ["LocalIncreasedAttackSpeedRangedFasterAttacksUber2_"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Faster Attacks", "(11-12)% increased Attack Speed", statOrder = { 396, 1324 }, level = 75, group = "LocalIncreasedAttackSpeedFasterAttacks", weightKey = { "wand_shaper", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, }, + ["LocalIncreasedAttackSpeedTwoHandedDoubleDamageUber1"] = { type = "Suffix", affix = "of Shaping", "(17-19)% increased Attack Speed", "(4-6)% chance to deal Double Damage", statOrder = { 1324, 5557 }, level = 68, group = "AttackSpeedDoubleDamage", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "damage", "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedTwoHandedDoubleDamageUber2"] = { type = "Suffix", affix = "of Shaping", "(20-21)% increased Attack Speed", "(4-6)% chance to deal Double Damage", statOrder = { 1324, 5557 }, level = 75, group = "AttackSpeedDoubleDamage", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "damage", "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedTwoHandedKilledRecentlyUber1"] = { type = "Suffix", affix = "of the Elder", "(17-19)% increased Attack Speed", "20% increased Attack Speed if you've Killed Recently", statOrder = { 1324, 4791 }, level = 68, group = "AttackSpeedKilledRecently", weightKey = { "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedTwoHandedKilledRecentlyUber2"] = { type = "Suffix", affix = "of the Elder", "(20-21)% increased Attack Speed", "20% increased Attack Speed if you've Killed Recently", statOrder = { 1324, 4791 }, level = 75, group = "AttackSpeedKilledRecently", weightKey = { "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedRangedDoubleDamageUber1"] = { type = "Suffix", affix = "of Shaping", "(8-10)% increased Attack Speed", "(4-6)% chance to deal Double Damage", statOrder = { 1324, 5557 }, level = 68, group = "AttackSpeedDoubleDamage", weightKey = { "bow_shaper", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "damage", "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedRangedDoubleDamageUber2"] = { type = "Suffix", affix = "of Shaping", "(11-12)% increased Attack Speed", "(4-6)% chance to deal Double Damage", statOrder = { 1324, 5557 }, level = 75, group = "AttackSpeedDoubleDamage", weightKey = { "bow_shaper", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "damage", "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedRangedKilledRecentlyUber1"] = { type = "Suffix", affix = "of the Elder", "(8-10)% increased Attack Speed", "20% increased Attack Speed if you've Killed Recently", statOrder = { 1324, 4791 }, level = 68, group = "AttackSpeedKilledRecently", weightKey = { "bow_elder", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedRangedKilledRecentlyUber2"] = { type = "Suffix", affix = "of the Elder", "(11-12)% increased Attack Speed", "20% increased Attack Speed if you've Killed Recently", statOrder = { 1324, 4791 }, level = 75, group = "AttackSpeedKilledRecently", weightKey = { "bow_elder", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack", "speed" }, }, + ["CriticalStrikeChanceSupportedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Increased Critical Strikes", "(22-25)% increased Critical Strike Chance", statOrder = { 262, 1375 }, level = 68, group = "CriticalStrikeChanceSupported", weightKey = { "grants_crit_chance_support", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "attack", "critical", "gem" }, }, + ["CriticalStrikeChanceSupportedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Increased Critical Strikes", "(26-29)% increased Critical Strike Chance", statOrder = { 262, 1375 }, level = 75, group = "CriticalStrikeChanceSupported", weightKey = { "grants_crit_chance_support", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "attack", "critical", "gem" }, }, + ["CriticalStrikeChanceTwoHandedCritChanceRecentlyUber1_"] = { type = "Suffix", affix = "of Shaping", "(22-25)% increased Critical Strike Chance", "50% increased Critical Strike Chance if you have Killed Recently", statOrder = { 1375, 5822 }, level = 68, group = "CriticalStrikeChanceTwoHandedCritChanceRecently", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "staff_shaper", "warstaff_shaper", "bow_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack", "critical" }, }, + ["CriticalStrikeChanceTwoHandedCritChanceRecentlyUber2"] = { type = "Suffix", affix = "of Shaping", "(26-29)% increased Critical Strike Chance", "50% increased Critical Strike Chance if you have Killed Recently", statOrder = { 1375, 5822 }, level = 75, group = "CriticalStrikeChanceTwoHandedCritChanceRecently", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "staff_shaper", "warstaff_shaper", "bow_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack", "critical" }, }, + ["CriticalStrikeChanceTwoHandedCritMultiRecentlyUber1_"] = { type = "Suffix", affix = "of the Elder", "(22-25)% increased Critical Strike Chance", "+50% to Critical Strike Multiplier if you haven't dealt a Critical Strike Recently", statOrder = { 1375, 5857 }, level = 68, group = "CriticalStrikeChanceTwoHandedCritMultiRecently", weightKey = { "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "staff_elder", "warstaff_elder", "bow_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "damage", "attack", "critical" }, }, + ["CriticalStrikeChanceTwoHandedCritMultiRecentlyUber2"] = { type = "Suffix", affix = "of the Elder", "(26-29)% increased Critical Strike Chance", "+50% to Critical Strike Multiplier if you haven't dealt a Critical Strike Recently", statOrder = { 1375, 5857 }, level = 75, group = "CriticalStrikeChanceTwoHandedCritMultiRecently", weightKey = { "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "staff_elder", "warstaff_elder", "bow_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "damage", "attack", "critical" }, }, + ["CriticalMultiplierSupportedUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are supported by Level 18 Increased Critical Damage", "+(22-25)% to Global Critical Strike Multiplier", statOrder = { 412, 1399 }, level = 68, group = "CriticalStrikeMultiplierSupported", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "damage", "attack", "critical", "gem" }, }, + ["CriticalMultiplierSupportedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are supported by Level 20 Increased Critical Damage", "+(26-29)% to Global Critical Strike Multiplier", statOrder = { 412, 1399 }, level = 75, group = "CriticalStrikeMultiplierSupported", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "damage", "attack", "critical", "gem" }, }, + ["CriticalMultiplierSupportedTwoHandedUber1"] = { type = "Suffix", affix = "of Shaping", "+(22-25)% to Global Critical Strike Multiplier", "(5-8)% chance to gain a Power Charge on Critical Strike", statOrder = { 1399, 1741 }, level = 68, group = "CriticalMultiplierSupportedTwoHanded", weightKey = { "bow_shaper", "default", }, weightVal = { 500, 0 }, modTags = { "power_charge", "influence_mod", "damage", "attack", "critical" }, }, + ["CriticalMultiplierSupportedTwoHandedUber2"] = { type = "Suffix", affix = "of Shaping", "+(26-29)% to Global Critical Strike Multiplier", "(9-10)% chance to gain a Power Charge on Critical Strike", statOrder = { 1399, 1741 }, level = 75, group = "CriticalMultiplierSupportedTwoHanded", weightKey = { "bow_shaper", "default", }, weightVal = { 500, 0 }, modTags = { "power_charge", "influence_mod", "damage", "attack", "critical" }, }, + ["WeaponElementalDamageSupportedUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are supported by Level 18 Elemental Damage with Attacks", "(28-32)% increased Elemental Damage with Attack Skills", statOrder = { 414, 6215 }, level = 68, group = "IncreasedWeaponElementalDamagePercentSupported", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "attack", "gem" }, }, + ["WeaponElementalDamageSupportedUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are supported by Level 20 Elemental Damage with Attacks", "(33-37)% increased Elemental Damage with Attack Skills", statOrder = { 414, 6215 }, level = 75, group = "IncreasedWeaponElementalDamagePercentSupported", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "attack", "gem" }, }, + ["ChanceToMaimUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Maim", "15% chance to Maim on Hit", statOrder = { 275, 7836 }, level = 68, group = "ChanceToMaimSupported", weightKey = { "grants_2h_support", "2h_mace_shaper", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "influence_mod", "attack", "gem" }, }, + ["ChanceToMaimUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Maim", "20% chance to Maim on Hit", statOrder = { 275, 7836 }, level = 75, group = "ChanceToMaimSupported", weightKey = { "grants_2h_support", "2h_mace_shaper", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "influence_mod", "attack", "gem" }, }, + ["ChanceToPoisonUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Chance to Poison", "15% chance to Poison on Hit", statOrder = { 450, 7849 }, level = 68, group = "ChanceToPoisonSupported", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "poison", "influence_mod", "chaos", "attack", "ailment", "gem" }, }, + ["ChanceToPoisonUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Chance to Poison", "20% chance to Poison on Hit", statOrder = { 450, 7849 }, level = 75, group = "ChanceToPoisonSupported", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "poison", "influence_mod", "chaos", "attack", "ailment", "gem" }, }, + ["ChanceToBleedUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Chance To Bleed", "10% chance to cause Bleeding on Hit", statOrder = { 219, 2392 }, level = 68, group = "ChanceToBleedSupported", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "bleed", "influence_mod", "physical", "attack", "ailment", "gem" }, }, + ["ChanceToBleedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Chance To Bleed", "15% chance to cause Bleeding on Hit", statOrder = { 219, 2392 }, level = 75, group = "ChanceToBleedSupported", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "bleed", "influence_mod", "physical", "attack", "ailment", "gem" }, }, + ["PhysicalAddedAsFireUber1_"] = { type = "Prefix", affix = "The Shaper's", "Gain (7-12)% of Physical Damage as Extra Fire Damage", statOrder = { 1841 }, level = 68, group = "PhysicalAddedAsFire", weightKey = { "2h_sword_shaper", "sword_shaper", "axe_shaper", "mace_shaper", "sceptre_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, }, + ["PhysicalAddedAsFireUber2"] = { type = "Prefix", affix = "The Shaper's", "Gain (13-17)% of Physical Damage as Extra Fire Damage", statOrder = { 1841 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "2h_sword_shaper", "sword_shaper", "axe_shaper", "mace_shaper", "sceptre_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, }, + ["PhysicalAddedAsFireUber3"] = { type = "Prefix", affix = "The Shaper's", "Gain (18-20)% of Physical Damage as Extra Fire Damage", statOrder = { 1841 }, level = 80, group = "PhysicalAddedAsFire", weightKey = { "2h_sword_shaper", "sword_shaper", "axe_shaper", "mace_shaper", "sceptre_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, }, + ["PhysicalAddedAsColdUber1"] = { type = "Prefix", affix = "The Shaper's", "Gain (7-12)% of Physical Damage as Extra Cold Damage", statOrder = { 1842 }, level = 68, group = "PhysicalAddedAsCold", weightKey = { "bow_shaper", "2h_sword_shaper", "sword_shaper", "axe_shaper", "claw_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, }, + ["PhysicalAddedAsColdUber2"] = { type = "Prefix", affix = "The Shaper's", "Gain (13-17)% of Physical Damage as Extra Cold Damage", statOrder = { 1842 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "bow_shaper", "2h_sword_shaper", "sword_shaper", "axe_shaper", "claw_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, }, + ["PhysicalAddedAsColdUber3"] = { type = "Prefix", affix = "The Shaper's", "Gain (18-20)% of Physical Damage as Extra Cold Damage", statOrder = { 1842 }, level = 80, group = "PhysicalAddedAsCold", weightKey = { "bow_shaper", "2h_sword_shaper", "sword_shaper", "axe_shaper", "claw_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, }, + ["PhysicalAddedAsLightningUber1"] = { type = "Prefix", affix = "The Shaper's", "Gain (7-12)% of Physical Damage as Extra Lightning Damage", statOrder = { 1843 }, level = 68, group = "PhysicalAddedAsLightning", weightKey = { "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, }, + ["PhysicalAddedAsLightningUber2"] = { type = "Prefix", affix = "The Shaper's", "Gain (13-17)% of Physical Damage as Extra Lightning Damage", statOrder = { 1843 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, }, + ["PhysicalAddedAsLightningUber3"] = { type = "Prefix", affix = "The Shaper's", "Gain (18-20)% of Physical Damage as Extra Lightning Damage", statOrder = { 1843 }, level = 80, group = "PhysicalAddedAsLightning", weightKey = { "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, }, + ["OnslaugtOnKillUber1"] = { type = "Suffix", affix = "of Shaping", "(5-6)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3288 }, level = 68, group = "OnslaugtOnKillPercentChance", weightKey = { "bow_shaper", "2h_axe_shaper", "2h_sword_shaper", "sword_shaper", "quiver_shaper", "axe_shaper", "claw_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "influence_mod" }, }, + ["OnslaugtOnKillUber2"] = { type = "Suffix", affix = "of Shaping", "(7-8)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3288 }, level = 75, group = "OnslaugtOnKillPercentChance", weightKey = { "bow_shaper", "2h_axe_shaper", "2h_sword_shaper", "sword_shaper", "quiver_shaper", "axe_shaper", "claw_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "influence_mod" }, }, + ["OnslaugtOnKillUber3"] = { type = "Suffix", affix = "of Shaping", "(9-10)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3288 }, level = 83, group = "OnslaugtOnKillPercentChance", weightKey = { "bow_shaper", "2h_axe_shaper", "2h_sword_shaper", "sword_shaper", "quiver_shaper", "axe_shaper", "claw_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "influence_mod" }, }, + ["UnholyMightOnKillUber1"] = { type = "Suffix", affix = "of the Elder", "(5-6)% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3285 }, level = 68, group = "UnholyMightOnKillPercentChance", weightKey = { "claw_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "influence_mod" }, }, + ["UnholyMightOnKillUber2_"] = { type = "Suffix", affix = "of the Elder", "(7-8)% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3285 }, level = 75, group = "UnholyMightOnKillPercentChance", weightKey = { "claw_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "influence_mod" }, }, + ["UnholyMightOnKillUber3"] = { type = "Suffix", affix = "of the Elder", "(9-10)% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3285 }, level = 84, group = "UnholyMightOnKillPercentChance", weightKey = { "claw_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "influence_mod" }, }, + ["BlindOnHitUber1"] = { type = "Suffix", affix = "of the Elder", "(5-6)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4812 }, level = 68, group = "AttacksBlindOnHitChance", weightKey = { "bow_elder", "2h_axe_elder", "2h_sword_elder", "sword_elder", "axe_elder", "claw_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, }, + ["BlindOnHitUber2"] = { type = "Suffix", affix = "of the Elder", "(7-8)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4812 }, level = 75, group = "AttacksBlindOnHitChance", weightKey = { "bow_elder", "2h_axe_elder", "2h_sword_elder", "sword_elder", "axe_elder", "claw_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, }, + ["BlindOnHitUber3"] = { type = "Suffix", affix = "of the Elder", "(9-10)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4812 }, level = 81, group = "AttacksBlindOnHitChance", weightKey = { "bow_elder", "2h_axe_elder", "2h_sword_elder", "sword_elder", "axe_elder", "claw_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, }, + ["BlindOnHitShaperUber1"] = { type = "Suffix", affix = "of Shaping", "(5-6)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4812 }, level = 68, group = "AttacksBlindOnHitChance", weightKey = { "quiver_shaper", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, }, + ["BlindOnHitShaperUber2"] = { type = "Suffix", affix = "of Shaping", "(7-8)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4812 }, level = 75, group = "AttacksBlindOnHitChance", weightKey = { "quiver_shaper", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, }, + ["BlindOnHitShaperUber3"] = { type = "Suffix", affix = "of Shaping", "(9-10)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4812 }, level = 81, group = "AttacksBlindOnHitChance", weightKey = { "quiver_shaper", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, }, + ["BlockWhileDualWieldingUber1"] = { type = "Suffix", affix = "of Shaping", "+(2-4)% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1074 }, level = 68, group = "BlockWhileDualWielding", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "block", "influence_mod" }, }, + ["BlockWhileDualWieldingUber2"] = { type = "Suffix", affix = "of Shaping", "+(5-7)% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1074 }, level = 75, group = "BlockWhileDualWielding", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "block", "influence_mod" }, }, + ["BlockWhileDualWieldingUber3_"] = { type = "Suffix", affix = "of Shaping", "+(8-9)% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1074 }, level = 80, group = "BlockWhileDualWielding", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "block", "influence_mod" }, }, + ["PhysicalDamageWhileDualWieldingUber1"] = { type = "Suffix", affix = "of the Elder", "(23-27)% increased Physical Attack Damage while Dual Wielding", statOrder = { 1190 }, level = 68, group = "DualWieldingPhysicalDamage", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, }, + ["PhysicalDamageWhileDualWieldingUber2"] = { type = "Suffix", affix = "of the Elder", "(28-32)% increased Physical Attack Damage while Dual Wielding", statOrder = { 1190 }, level = 75, group = "DualWieldingPhysicalDamage", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, }, + ["PhysicalDamageWhileDualWieldingUber3"] = { type = "Suffix", affix = "of the Elder", "(33-37)% increased Physical Attack Damage while Dual Wielding", statOrder = { 1190 }, level = 80, group = "DualWieldingPhysicalDamage", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, }, + ["ElementalPenetrationWeaponUber1"] = { type = "Suffix", affix = "of Shaping", "Damage Penetrates (5-6)% Elemental Resistances", statOrder = { 2889 }, level = 68, group = "ElementalPenetration", weightKey = { "bow_shaper", "2h_axe_shaper", "2h_mace_shaper", "2h_sword_shaper", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "wand_shaper", "staff_shaper", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, }, + ["ElementalPenetrationWeaponUber2"] = { type = "Suffix", affix = "of Shaping", "Damage Penetrates (7-8)% Elemental Resistances", statOrder = { 2889 }, level = 75, group = "ElementalPenetration", weightKey = { "bow_shaper", "2h_axe_shaper", "2h_mace_shaper", "2h_sword_shaper", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "wand_shaper", "staff_shaper", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, }, + ["ElementalPenetrationWeaponUber3"] = { type = "Suffix", affix = "of Shaping", "Damage Penetrates (9-10)% Elemental Resistances", statOrder = { 2889 }, level = 83, group = "ElementalPenetration", weightKey = { "bow_shaper", "2h_axe_shaper", "2h_mace_shaper", "2h_sword_shaper", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "wand_shaper", "staff_shaper", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, }, + ["ElementalPenetrationWeaponNewUber1"] = { type = "Prefix", affix = "The Shaper's", "Damage Penetrates 4% Elemental Resistances", statOrder = { 2889 }, level = 68, group = "ElementalPenetration", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, }, + ["ElementalPenetrationWeaponNewUber2"] = { type = "Prefix", affix = "The Shaper's", "Damage Penetrates 5% Elemental Resistances", statOrder = { 2889 }, level = 75, group = "ElementalPenetration", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, }, + ["ElementalPenetrationWeaponNewUber3"] = { type = "Prefix", affix = "The Shaper's", "Damage Penetrates 6% Elemental Resistances", statOrder = { 2889 }, level = 83, group = "ElementalPenetration", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, }, + ["ElementalPenetrationTwoWeaponNewUber1"] = { type = "Prefix", affix = "The Shaper's", "Damage Penetrates (7-8)% Elemental Resistances", statOrder = { 2889 }, level = 68, group = "ElementalPenetration", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "bow_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, }, + ["ElementalPenetrationTwoWeaponNewUber2"] = { type = "Prefix", affix = "The Shaper's", "Damage Penetrates (9-10)% Elemental Resistances", statOrder = { 2889 }, level = 75, group = "ElementalPenetration", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "bow_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, }, + ["ElementalPenetrationTwoWeaponNewUber3"] = { type = "Prefix", affix = "The Shaper's", "Damage Penetrates (11-12)% Elemental Resistances", statOrder = { 2889 }, level = 83, group = "ElementalPenetration", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "bow_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, }, + ["WeaponSocketedAttacksDamageFinalUber1_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Skills deal 40% more Attack Damage", statOrder = { 473 }, level = 83, group = "SocketedAttacksDamageFinal", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "skill", "influence_mod", "damage", "attack", "gem" }, }, + ["WeaponSocketedAttacksDamageFinalTwoHandUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Skills deal 20% more Attack Damage", statOrder = { 473 }, level = 83, group = "SocketedAttacksDamageFinal", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "bow_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "skill", "influence_mod", "damage", "attack", "gem" }, }, + ["WeaponSocketedSpellsDamageFinalUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Skills deal 40% more Spell Damage", statOrder = { 492 }, level = 83, group = "SocketedSpellsDamageFinal", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "skill", "caster_damage", "influence_mod", "damage", "caster", "gem" }, }, + ["WeaponSocketedSpellsDamageFinalTwoHandUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Skills deal 20% more Spell Damage", statOrder = { 492 }, level = 83, group = "SocketedSpellsDamageFinal", weightKey = { "staff_shaper", "default", }, weightVal = { 500, 0 }, modTags = { "skill", "caster_damage", "influence_mod", "damage", "caster", "gem" }, }, + ["ChanceForPoisonDamageFinalInflictedWithThisWeaponUber1"] = { type = "Prefix", affix = "The Elder's", "60% chance for Poisons inflicted with this Weapon to deal 100% more Damage", statOrder = { 7728 }, level = 83, group = "LocalChanceForPoisonDamage100FinalInflictedWithThisWeapon", weightKey = { "bow_elder", "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "chaos_damage", "poison", "influence_mod", "damage", "chaos", "attack", "ailment" }, }, + ["ChanceForBleedDamageFinalInflictedWithThisWeaponUber1"] = { type = "Prefix", affix = "The Elder's", "60% chance for Bleeding inflicted with this Weapon to deal 100% more Damage", statOrder = { 7727 }, level = 83, group = "LocalChanceForBleedingDamage100FinalInflictedWithThisWeapon", weightKey = { "bow_elder", "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment" }, }, + ["LocalBleedDamageOverTimeMultiplierUber1___"] = { type = "Prefix", affix = "The Elder's", "+(37-42)% to Damage over Time Multiplier for Bleeding from Hits with this Weapon", statOrder = { 7722 }, level = 68, group = "LocalBleedDamageOverTimeMultiplier", weightKey = { "bow_elder", "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "bleed", "influence_mod", "physical", "attack", "ailment" }, }, + ["LocalBleedDamageOverTimeMultiplierUber2"] = { type = "Prefix", affix = "The Elder's", "+(43-50)% to Damage over Time Multiplier for Bleeding from Hits with this Weapon", statOrder = { 7722 }, level = 75, group = "LocalBleedDamageOverTimeMultiplier", weightKey = { "bow_elder", "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "bleed", "influence_mod", "physical", "attack", "ailment" }, }, + ["LocalBleedDamageOverTimeMultiplierUber3"] = { type = "Prefix", affix = "The Elder's", "+(51-59)% to Damage over Time Multiplier for Bleeding from Hits with this Weapon", statOrder = { 7722 }, level = 83, group = "LocalBleedDamageOverTimeMultiplier", weightKey = { "bow_elder", "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "bleed", "influence_mod", "physical", "attack", "ailment" }, }, + ["LocalPoisonDamageOverTimeMultiplierUber1__"] = { type = "Prefix", affix = "The Elder's", "+(37-42)% to Damage over Time Multiplier for Poison inflicted with this Weapon", statOrder = { 1176 }, level = 68, group = "LocalPoisonDamageOverTimeMultiplier", weightKey = { "bow_elder", "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "poison", "influence_mod", "chaos", "attack", "ailment" }, }, + ["LocalPoisonDamageOverTimeMultiplierUber2__"] = { type = "Prefix", affix = "The Elder's", "+(43-50)% to Damage over Time Multiplier for Poison inflicted with this Weapon", statOrder = { 1176 }, level = 75, group = "LocalPoisonDamageOverTimeMultiplier", weightKey = { "bow_elder", "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "poison", "influence_mod", "chaos", "attack", "ailment" }, }, + ["LocalPoisonDamageOverTimeMultiplierUber3"] = { type = "Prefix", affix = "The Elder's", "+(51-59)% to Damage over Time Multiplier for Poison inflicted with this Weapon", statOrder = { 1176 }, level = 83, group = "LocalPoisonDamageOverTimeMultiplier", weightKey = { "bow_elder", "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "poison", "influence_mod", "chaos", "attack", "ailment" }, }, + ["PhysicalDamageConvertedToChaosUber1"] = { type = "Suffix", affix = "of the Elder", "(10-15)% of Physical Damage Converted to Chaos Damage", statOrder = { 1871 }, level = 68, group = "PhysicalDamageConvertedToChaos", weightKey = { "bow_elder", "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "chaos_damage", "influence_mod", "damage", "physical", "chaos" }, }, + ["PhysicalDamageConvertedToChaosUber2"] = { type = "Suffix", affix = "of the Elder", "(16-20)% of Physical Damage Converted to Chaos Damage", statOrder = { 1871 }, level = 75, group = "PhysicalDamageConvertedToChaos", weightKey = { "bow_elder", "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "chaos_damage", "influence_mod", "damage", "physical", "chaos" }, }, + ["PhysicalDamageConvertedToChaosUber3"] = { type = "Suffix", affix = "of the Elder", "(21-25)% of Physical Damage Converted to Chaos Damage", statOrder = { 1871 }, level = 85, group = "PhysicalDamageConvertedToChaos", weightKey = { "bow_elder", "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "chaos_damage", "influence_mod", "damage", "physical", "chaos" }, }, + ["AddedFireDamagePerStrengthUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (1-2) to (3-4) Fire Damage to Attacks with this Weapon per 10 Strength", statOrder = { 4766 }, level = 68, group = "AddedFireDamagePerStrength", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "sceptre_shaper", "default", }, weightVal = { 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, }, + ["AddedFireDamagePerStrengthTwoHandedUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (2-3) to (4-5) Fire Damage to Attacks with this Weapon per 10 Strength", statOrder = { 4766 }, level = 68, group = "AddedFireDamagePerStrength", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, }, + ["AddedColdDamagePerDexterityUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (1-2) to (3-4) Cold Damage to Attacks with this Weapon per 10 Dexterity", statOrder = { 4821 }, level = 68, group = "AddedColdDamagePerDexterity", weightKey = { "sword_shaper", "axe_shaper", "claw_shaper", "dagger_shaper", "rune_dagger_shaper", "bow_shaper", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, }, + ["AddedColdDamagePerDexterityTwoHandedUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (2-3) to (4-5) Cold Damage to Attacks with this Weapon per 10 Dexterity", statOrder = { 4821 }, level = 68, group = "AddedColdDamagePerDexterity", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "default", }, weightVal = { 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, }, + ["AddedLightningDamagePerIntelligenceUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds 1 to (5-6) Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrder = { 4769 }, level = 68, group = "AddedLightningDamagePerIntelligence", weightKey = { "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamagePerIntelligenceTwoHandedUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds 1 to (7-8) Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrder = { 4769 }, level = 68, group = "AddedLightningDamagePerIntelligence", weightKey = { "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, }, + ["SupportedByCastOnCritUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are supported by Level 18 Cast On Critical Strike", statOrder = { 399 }, level = 68, group = "SupportedByCastOnCritWeapon", weightKey = { "grants_2h_support", "bow_shaper", "2h_axe_shaper", "2h_sword_shaper", "default", }, weightVal = { 0, 350, 350, 350, 0 }, modTags = { "support", "influence_mod", "gem" }, }, + ["SupportedByCastOnCritUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are supported by Level 20 Cast On Critical Strike", statOrder = { 399 }, level = 75, group = "SupportedByCastOnCritWeapon", weightKey = { "grants_2h_support", "bow_shaper", "2h_axe_shaper", "2h_sword_shaper", "default", }, weightVal = { 0, 350, 350, 350, 0 }, modTags = { "support", "influence_mod", "gem" }, }, + ["SupportedByCastOnMeleeKillUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Cast On Melee Kill", statOrder = { 216 }, level = 68, group = "SupportedByCastOnMeleeKillWeapon", weightKey = { "grants_2h_support", "2h_mace_shaper", "2h_axe_shaper", "2h_sword_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 0, 250, 250, 250, 250, 250, 0 }, modTags = { "support", "influence_mod", "gem" }, }, + ["SupportedByCastOnMeleeKillUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Cast On Melee Kill", statOrder = { 216 }, level = 75, group = "SupportedByCastOnMeleeKillWeapon", weightKey = { "grants_2h_support", "2h_mace_shaper", "2h_axe_shaper", "2h_sword_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 0, 250, 250, 250, 250, 250, 0 }, modTags = { "support", "influence_mod", "gem" }, }, + ["SupportedByCastWhileChannellingUber1_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Cast While Channelling", statOrder = { 217 }, level = 68, group = "SupportedByCastWhileChannellingWeapon", weightKey = { "grants_2h_support", "attack_staff", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 0, 0, 500, 500, 0 }, modTags = { "support", "influence_mod", "gem" }, }, + ["SupportedByCastWhileChannellingUber2_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Cast While Channelling", statOrder = { 217 }, level = 75, group = "SupportedByCastWhileChannellingWeapon", weightKey = { "grants_2h_support", "attack_staff", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 0, 0, 500, 500, 0 }, modTags = { "support", "influence_mod", "gem" }, }, + ["CullingStrikeUber1"] = { type = "Suffix", affix = "of the Elder", "Culling Strike", statOrder = { 1948 }, level = 68, group = "CullingStrike", weightKey = { "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "bow_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "influence_mod" }, }, + ["MeleeWeaponRangeUber1"] = { type = "Suffix", affix = "of the Elder", "+0.1 metres to Weapon Range", statOrder = { 2655 }, level = 75, group = "LocalWeaponRangeUber", weightKey = { "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, }, + ["MeleeWeaponRangeUber2"] = { type = "Suffix", affix = "of the Elder", "+0.2 metres to Weapon Range", statOrder = { 2655 }, level = 85, group = "LocalWeaponRangeUber", weightKey = { "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, }, + ["AreaOfEffectTwoHandedWeaponUber1"] = { type = "Suffix", affix = "of the Elder", "(5-10)% increased Area of Effect", statOrder = { 1791 }, level = 68, group = "AreaOfEffect", weightKey = { "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "bow_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "influence_mod" }, }, + ["AreaOfEffectTwoHandedWeaponUber2"] = { type = "Suffix", affix = "of the Elder", "(11-15)% increased Area of Effect", statOrder = { 1791 }, level = 75, group = "AreaOfEffect", weightKey = { "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "bow_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "influence_mod" }, }, + ["AreaOfEffectTwoHandedWeaponUber3"] = { type = "Suffix", affix = "of the Elder", "(16-20)% increased Area of Effect", statOrder = { 1791 }, level = 82, group = "AreaOfEffect", weightKey = { "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "bow_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "influence_mod" }, }, + ["MovementVelocityTwoHandedWeaponUber1"] = { type = "Suffix", affix = "of Shaping", "(3-6)% increased Movement Speed", statOrder = { 1709 }, level = 75, group = "MovementVelocity", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "bow_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "influence_mod", "speed" }, }, + ["MovementVelocityTwoHandedWeaponUber2"] = { type = "Suffix", affix = "of Shaping", "(7-10)% increased Movement Speed", statOrder = { 1709 }, level = 84, group = "MovementVelocity", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "bow_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "influence_mod", "speed" }, }, + ["AdditionalArrowsUber1"] = { type = "Suffix", affix = "of the Elder", "Skills fire an additional Projectile", statOrder = { 1703 }, level = 82, group = "AdditionalProjectiles", weightKey = { "2h_sword_elder", "2h_axe_elder", "staff_elder", "warstaff_elder", "bow_elder", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, }, + ["AdditionalPierceRangedUber1"] = { type = "Suffix", affix = "of Shaping", "Projectiles Pierce an additional Target", statOrder = { 1701 }, level = 68, group = "AdditionalPierce", weightKey = { "bow_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "influence_mod" }, }, + ["AdditionalPierceRangedUber2"] = { type = "Suffix", affix = "of Shaping", "Projectiles Pierce 2 additional Targets", statOrder = { 1701 }, level = 75, group = "AdditionalPierce", weightKey = { "bow_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "influence_mod" }, }, + ["SpellDamageOnWeaponControlledDestructionUber1_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Controlled Destruction", "(45-52)% increased Spell Damage", statOrder = { 452, 1135 }, level = 68, group = "WeaponSpellDamageControlledDestruction", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, }, + ["SpellDamageOnWeaponControlledDestructionUber2_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Controlled Destruction", "(53-56)% increased Spell Damage", statOrder = { 452, 1135 }, level = 75, group = "WeaponSpellDamageControlledDestruction", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 200, 200, 200, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, }, + ["SpellDamageOnWeaponControlledDestructionUber3"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Controlled Destruction", "(57-60)% increased Spell Damage", statOrder = { 452, 1135 }, level = 80, group = "WeaponSpellDamageControlledDestruction", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 100, 100, 100, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, }, + ["SpellDamageOnWeaponEfficacyUber1_"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Efficacy", "(45-52)% increased Spell Damage", statOrder = { 233, 1135 }, level = 68, group = "WeaponSpellDamageEfficacy", weightKey = { "sceptre_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, }, + ["SpellDamageOnWeaponEfficacyUber2"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Efficacy", "(53-56)% increased Spell Damage", statOrder = { 233, 1135 }, level = 75, group = "WeaponSpellDamageEfficacy", weightKey = { "sceptre_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 200, 200, 200, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, }, + ["SpellDamageOnWeaponEfficacyUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Efficacy", "(57-60)% increased Spell Damage", statOrder = { 233, 1135 }, level = 80, group = "WeaponSpellDamageEfficacy", weightKey = { "sceptre_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 100, 100, 100, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, }, + ["SpellDamageOnWeaponArcaneSurgeUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Arcane Surge", "(67-78)% increased Spell Damage", statOrder = { 204, 1135 }, level = 68, group = "WeaponSpellDamageArcaneSurge", weightKey = { "grants_2h_support", "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, }, + ["SpellDamageOnWeaponArcaneSurgeUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Arcane Surge", "(79-83)% increased Spell Damage", statOrder = { 204, 1135 }, level = 75, group = "WeaponSpellDamageArcaneSurge", weightKey = { "grants_2h_support", "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, }, + ["SpellDamageOnWeaponArcaneSurgeUber3"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Arcane Surge", "(84-87)% increased Spell Damage", statOrder = { 204, 1135 }, level = 80, group = "WeaponSpellDamageArcaneSurge", weightKey = { "grants_2h_support", "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, }, + ["SpellDamageOnWeaponReducedManaUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Inspiration", "(67-78)% increased Spell Damage", statOrder = { 421, 1135 }, level = 68, group = "WeaponSpellDamageReducedMana", weightKey = { "grants_2h_support", "attack_staff", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, }, + ["SpellDamageOnWeaponReducedManaUber2_"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Inspiration", "(79-83)% increased Spell Damage", statOrder = { 421, 1135 }, level = 75, group = "WeaponSpellDamageReducedMana", weightKey = { "grants_2h_support", "attack_staff", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, }, + ["SpellDamageOnWeaponReducedManaUber3__"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Inspiration", "(84-87)% increased Spell Damage", statOrder = { 421, 1135 }, level = 80, group = "WeaponSpellDamageReducedMana", weightKey = { "grants_2h_support", "attack_staff", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, }, + ["SpellDamageOnWeaponPowerChargeOnCritUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Power Charge On Critical Strike", "(67-78)% increased Spell Damage", statOrder = { 294, 1135 }, level = 68, group = "WeaponSpellDamagePowerChargeOnCrit", weightKey = { "grants_2h_support", "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, }, + ["SpellDamageOnWeaponPowerChargeOnCritUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Power Charge On Critical Strike", "(79-83)% increased Spell Damage", statOrder = { 294, 1135 }, level = 75, group = "WeaponSpellDamagePowerChargeOnCrit", weightKey = { "grants_2h_support", "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, }, + ["SpellDamageOnWeaponPowerChargeOnCritUber3_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Power Charge On Critical Strike", "(84-87)% increased Spell Damage", statOrder = { 294, 1135 }, level = 80, group = "WeaponSpellDamagePowerChargeOnCrit", weightKey = { "grants_2h_support", "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, }, + ["ElementalDamagePrefixOnWeaponElementalFocusUber1_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Elemental Focus", "(45-52)% increased Elemental Damage", statOrder = { 234, 1889 }, level = 68, group = "ElementalDamagePrefixElementalFocus", weightKey = { "sceptre_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "gem" }, }, + ["ElementalDamagePrefixOnWeaponElementalFocusUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Elemental Focus", "(53-56)% increased Elemental Damage", statOrder = { 234, 1889 }, level = 75, group = "ElementalDamagePrefixElementalFocus", weightKey = { "sceptre_shaper", "default", }, weightVal = { 200, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "gem" }, }, + ["ElementalDamagePrefixOnWeaponElementalFocusUber3"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Elemental Focus", "(57-60)% increased Elemental Damage", statOrder = { 234, 1889 }, level = 80, group = "ElementalDamagePrefixElementalFocus", weightKey = { "sceptre_shaper", "default", }, weightVal = { 100, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "gem" }, }, + ["FireDamagePrefixOnWeaponFirePenetrationUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Fire Penetration", "(45-52)% increased Fire Damage", statOrder = { 243, 1268 }, level = 68, group = "FireDamagePrefixFirePenetration", weightKey = { "sceptre_elder", "wand_elder", "default", }, weightVal = { 400, 400, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "fire", "gem" }, }, + ["FireDamagePrefixOnWeaponFirePenetrationUber2_"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Fire Penetration", "(53-56)% increased Fire Damage", statOrder = { 243, 1268 }, level = 75, group = "FireDamagePrefixFirePenetration", weightKey = { "sceptre_elder", "wand_elder", "default", }, weightVal = { 200, 200, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "fire", "gem" }, }, + ["FireDamagePrefixOnWeaponFirePenetrationUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Fire Penetration", "(57-60)% increased Fire Damage", statOrder = { 243, 1268 }, level = 80, group = "FireDamagePrefixFirePenetration", weightKey = { "sceptre_elder", "wand_elder", "default", }, weightVal = { 100, 100, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "fire", "gem" }, }, + ["ColdDamagePrefixOnWeaponColdPenetrationUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Cold Penetration", "(45-52)% increased Cold Damage", statOrder = { 440, 1277 }, level = 68, group = "ColdDamagePrefixColdPenetration", weightKey = { "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 400, 400, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "cold", "gem" }, }, + ["ColdDamagePrefixOnWeaponColdPenetrationUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Cold Penetration", "(53-56)% increased Cold Damage", statOrder = { 440, 1277 }, level = 75, group = "ColdDamagePrefixColdPenetration", weightKey = { "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 200, 200, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "cold", "gem" }, }, + ["ColdDamagePrefixOnWeaponColdPenetrationUber3"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Cold Penetration", "(57-60)% increased Cold Damage", statOrder = { 440, 1277 }, level = 80, group = "ColdDamagePrefixColdPenetration", weightKey = { "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 100, 100, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "cold", "gem" }, }, + ["LightningDamagePrefixOnWeaponLightningPenetrationUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Lightning Penetration", "(45-52)% increased Lightning Damage", statOrder = { 272, 1288 }, level = 68, group = "LightningDamagePrefixLightningPenetration", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "gem" }, }, + ["LightningDamagePrefixOnWeaponLightningPenetrationUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Lightning Penetration", "(53-56)% increased Lightning Damage", statOrder = { 272, 1288 }, level = 75, group = "LightningDamagePrefixLightningPenetration", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 200, 200, 200, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "gem" }, }, + ["LightningDamagePrefixOnWeaponLightningPenetrationUber3_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Lightning Penetration", "(57-60)% increased Lightning Damage", statOrder = { 272, 1288 }, level = 80, group = "LightningDamagePrefixLightningPenetration", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 100, 100, 100, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "gem" }, }, + ["IncreasedCastSpeedSpellEchoUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Spell Echo", "(15-17)% increased Cast Speed", statOrder = { 283, 1357 }, level = 68, group = "IncreasedCastSpeedSpellEcho", weightKey = { "sceptre_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "caster", "speed", "gem" }, }, + ["IncreasedCastSpeedSpellEchoUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Spell Echo", "(18-20)% increased Cast Speed", statOrder = { 283, 1357 }, level = 75, group = "IncreasedCastSpeedSpellEcho", weightKey = { "sceptre_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "support", "influence_mod", "caster", "speed", "gem" }, }, + ["IncreasedCastSpeedFasterCastingUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Faster Casting", "(15-17)% increased Cast Speed", statOrder = { 427, 1357 }, level = 68, group = "IncreasedCastSpeedFasterCasting", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "caster", "speed", "gem" }, }, + ["IncreasedCastSpeedFasterCastingUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Faster Casting", "(18-20)% increased Cast Speed", statOrder = { 427, 1357 }, level = 75, group = "IncreasedCastSpeedFasterCasting", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "support", "influence_mod", "caster", "speed", "gem" }, }, + ["IncreasedCastSpeedTwoHandedAvoidInterruptionUber1"] = { type = "Suffix", affix = "of the Elder", "(15-17)% increased Cast Speed", "(15-25)% chance to Ignore Stuns while Casting", statOrder = { 1357, 1809 }, level = 68, group = "IncreasedCastSpeedTwoHandedAvoidInterruption", weightKey = { "attack_staff", "staff_elder", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "influence_mod", "caster", "speed" }, }, + ["IncreasedCastSpeedTwoHandedAvoidInterruptionUber2"] = { type = "Suffix", affix = "of the Elder", "(18-20)% increased Cast Speed", "(26-35)% chance to Ignore Stuns while Casting", statOrder = { 1357, 1809 }, level = 75, group = "IncreasedCastSpeedTwoHandedAvoidInterruption", weightKey = { "attack_staff", "staff_elder", "default", }, weightVal = { 0, 500, 0 }, modTags = { "influence_mod", "caster", "speed" }, }, + ["IncreasedCastSpeedTwoHandedKilledRecentlyUber1"] = { type = "Suffix", affix = "of Shaping", "(15-17)% increased Cast Speed", "20% increased Cast Speed if you've Killed Recently", statOrder = { 1357, 5359 }, level = 68, group = "IncreasedCastSpeedTwoHandedKilledRecently", weightKey = { "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "influence_mod", "caster", "speed" }, }, + ["IncreasedCastSpeedTwoHandedKilledRecentlyUber2"] = { type = "Suffix", affix = "of Shaping", "(18-20)% increased Cast Speed", "20% increased Cast Speed if you've Killed Recently", statOrder = { 1357, 5359 }, level = 75, group = "IncreasedCastSpeedTwoHandedKilledRecently", weightKey = { "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 500, 0 }, modTags = { "influence_mod", "caster", "speed" }, }, + ["CriticalStrikeChanceSpellsSupportedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Increased Critical Strikes", "(60-74)% increased Spell Critical Strike Chance", statOrder = { 262, 1369 }, level = 68, group = "CriticalStrikeChanceSpellsSupported", weightKey = { "grants_crit_chance_support", "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "caster", "critical", "gem" }, }, + ["CriticalStrikeChanceSpellsSupportedUber2__"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Increased Critical Strikes", "(75-82)% increased Spell Critical Strike Chance", statOrder = { 262, 1369 }, level = 75, group = "CriticalStrikeChanceSpellsSupported", weightKey = { "grants_crit_chance_support", "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "caster", "critical", "gem" }, }, + ["CriticalStrikeChanceSpellsTwoHandedPowerChargeUber1"] = { type = "Suffix", affix = "of Shaping", "(60-74)% increased Spell Critical Strike Chance", "10% chance to gain a Power Charge on Critical Strike", statOrder = { 1369, 1741 }, level = 68, group = "CriticalStrikeChanceSpellsTwoHandedPowerCharge", weightKey = { "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "power_charge", "influence_mod", "caster", "critical" }, }, + ["CriticalStrikeChanceSpellsTwoHandedPowerChargeUber2"] = { type = "Suffix", affix = "of Shaping", "(75-82)% increased Spell Critical Strike Chance", "10% chance to gain a Power Charge on Critical Strike", statOrder = { 1369, 1741 }, level = 75, group = "CriticalStrikeChanceSpellsTwoHandedPowerCharge", weightKey = { "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "power_charge", "influence_mod", "caster", "critical" }, }, + ["ChanceToFreezeShockIgniteProliferationUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Elemental Proliferation", "(5-7)% chance to Freeze, Shock and Ignite", statOrder = { 393, 2711 }, level = 68, group = "ChanceToFreezeShockIgniteProliferation", weightKey = { "sceptre_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "influence_mod", "elemental", "fire", "cold", "lightning", "ailment", "gem" }, }, + ["ChanceToFreezeShockIgniteProliferationUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Elemental Proliferation", "(8-10)% chance to Freeze, Shock and Ignite", statOrder = { 393, 2711 }, level = 75, group = "ChanceToFreezeShockIgniteProliferation", weightKey = { "sceptre_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "influence_mod", "elemental", "fire", "cold", "lightning", "ailment", "gem" }, }, + ["ChanceToFreezeShockIgniteUnboundAilmentsUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Unbound Ailments", "(5-7)% chance to Freeze, Shock and Ignite", statOrder = { 327, 2711 }, level = 68, group = "ChanceToFreezeShockIgniteUnboundAilments", weightKey = { "sceptre_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "influence_mod", "elemental", "fire", "cold", "lightning", "ailment", "gem" }, }, + ["ChanceToFreezeShockIgniteUnboundAilmentsUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Unbound Ailments", "(8-10)% chance to Freeze, Shock and Ignite", statOrder = { 327, 2711 }, level = 75, group = "ChanceToFreezeShockIgniteUnboundAilments", weightKey = { "sceptre_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "influence_mod", "elemental", "fire", "cold", "lightning", "ailment", "gem" }, }, + ["PoisonDamageWeaponSupportedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Chance to Poison", "(19-23)% increased Damage with Poison", statOrder = { 450, 3089 }, level = 68, group = "PoisonDamageWeaponSupported", weightKey = { "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "support", "chaos_damage", "poison", "influence_mod", "damage", "chaos", "ailment", "gem" }, }, + ["PoisonDamageWeaponSupportedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Chance to Poison", "(24-26)% increased Damage with Poison", statOrder = { 450, 3089 }, level = 75, group = "PoisonDamageWeaponSupported", weightKey = { "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "support", "chaos_damage", "poison", "influence_mod", "damage", "chaos", "ailment", "gem" }, }, + ["PoisonDurationWeaponSupportedUber1_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Critical Strike Affliction", "(6-9)% increased Poison Duration", statOrder = { 293, 3078 }, level = 68, group = "PoisonDurationWeaponSupported", weightKey = { "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "support", "poison", "influence_mod", "chaos", "ailment", "gem" }, }, + ["PoisonDurationWeaponSupportedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Critical Strike Affliction", "(10-14)% increased Poison Duration", statOrder = { 293, 3078 }, level = 75, group = "PoisonDurationWeaponSupported", weightKey = { "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "support", "poison", "influence_mod", "chaos", "ailment", "gem" }, }, + ["SupportedByIncreasedAreaOfEffectDamageUber1_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Increased Area of Effect", "(23-27)% increased Area Damage", statOrder = { 203, 1944 }, level = 68, group = "SupportedByIncreasedAreaOfEffectDamage", weightKey = { "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, + ["SupportedByIncreasedAreaOfEffectDamageUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Increased Area of Effect", "(28-32)% increased Area Damage", statOrder = { 203, 1944 }, level = 75, group = "SupportedByIncreasedAreaOfEffectDamage", weightKey = { "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, + ["SupportedByIncreasedAreaOfEffectDamageUber3_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Increased Area of Effect", "(33-37)% increased Area Damage", statOrder = { 203, 1944 }, level = 80, group = "SupportedByIncreasedAreaOfEffectDamage", weightKey = { "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, + ["SupportedBySpellCascadeAreaUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Spell Cascade", "(5-8)% increased Area of Effect", statOrder = { 314, 1791 }, level = 68, group = "SupportedBySpellCascadeArea", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "gem" }, }, + ["SupportedBySpellCascadeAreaUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Spell Cascade", "(9-12)% increased Area of Effect", statOrder = { 314, 1791 }, level = 75, group = "SupportedBySpellCascadeArea", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "gem" }, }, + ["SupportedBySpellCascadeAreaUber3_"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Spell Cascade", "(13-15)% increased Area of Effect", statOrder = { 314, 1791 }, level = 80, group = "SupportedBySpellCascadeArea", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "gem" }, }, + ["SupportedByLesserMultipleProjectilesDamageUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Lesser Multiple Projectiles", "(15-20)% increased Projectile Damage", statOrder = { 432, 1905 }, level = 68, group = "SupportedByLesserMultipleProjectilesDamage", weightKey = { "wand_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, + ["SupportedByLesserMultipleProjectilesDamageUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Lesser Multiple Projectiles", "(21-25)% increased Projectile Damage", statOrder = { 432, 1905 }, level = 75, group = "SupportedByLesserMultipleProjectilesDamage", weightKey = { "wand_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, + ["SupportedByLesserMultipleProjectilesDamageUber3_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Lesser Multiple Projectiles", "(26-30)% increased Projectile Damage", statOrder = { 432, 1905 }, level = 80, group = "SupportedByLesserMultipleProjectilesDamage", weightKey = { "wand_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, + ["SupportedByVolleySpeedUber1__"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Volley", "(15-18)% increased Projectile Speed", statOrder = { 288, 1707 }, level = 68, group = "SupportedByVolleySpeed", weightKey = { "wand_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, }, + ["SupportedByVolleySpeedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Volley", "(19-22)% increased Projectile Speed", statOrder = { 288, 1707 }, level = 75, group = "SupportedByVolleySpeed", weightKey = { "wand_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, }, + ["SupportedByVolleySpeedUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Volley", "(23-25)% increased Projectile Speed", statOrder = { 288, 1707 }, level = 80, group = "SupportedByVolleySpeed", weightKey = { "wand_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, }, + ["ElementalDamagePercentAddedAsChaosUber1"] = { type = "Prefix", affix = "The Shaper's", "Gain (5-6)% of Elemental Damage as Extra Chaos Damage", statOrder = { 1851 }, level = 75, group = "ElementalDamagePercentAddedAsChaos", weightKey = { "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "chaos_damage", "influence_mod", "damage", "elemental", "chaos" }, }, + ["ElementalDamagePercentAddedAsChaosUber2"] = { type = "Prefix", affix = "The Shaper's", "Gain (7-8)% of Elemental Damage as Extra Chaos Damage", statOrder = { 1851 }, level = 85, group = "ElementalDamagePercentAddedAsChaos", weightKey = { "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "chaos_damage", "influence_mod", "damage", "elemental", "chaos" }, }, + ["ElementalDamagePercentAddedAsChaosStaffUber1"] = { type = "Prefix", affix = "The Shaper's", "Gain (10-12)% of Elemental Damage as Extra Chaos Damage", statOrder = { 1851 }, level = 75, group = "ElementalDamagePercentAddedAsChaos", weightKey = { "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "chaos_damage", "influence_mod", "damage", "elemental", "chaos" }, }, + ["ElementalDamagePercentAddedAsChaosStaffUber2__"] = { type = "Prefix", affix = "The Shaper's", "Gain (13-15)% of Elemental Damage as Extra Chaos Damage", statOrder = { 1851 }, level = 85, group = "ElementalDamagePercentAddedAsChaos", weightKey = { "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "chaos_damage", "influence_mod", "damage", "elemental", "chaos" }, }, + ["DisplaySocketedSkillsChainUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems Chain 1 additional times", statOrder = { 467 }, level = 85, group = "DisplaySocketedSkillsChain", weightKey = { "bow_shaper", "default", }, weightVal = { 200, 0 }, modTags = { "skill", "influence_mod", "gem" }, }, + ["SpellAddedPhysicalDamageWeaponUber1"] = { type = "Prefix", affix = "The Elder's", "Adds (22-31) to (46-53) Physical Damage to Spells", statOrder = { 1314 }, level = 68, group = "SpellAddedPhysicalDamage", weightKey = { "sceptre_elder", "wand_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "influence_mod", "damage", "physical", "caster" }, }, + ["SpellAddedPhysicalDamageWeaponUber2_"] = { type = "Prefix", affix = "The Elder's", "Adds (28-37) to (55-64) Physical Damage to Spells", statOrder = { 1314 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "sceptre_elder", "wand_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "influence_mod", "damage", "physical", "caster" }, }, + ["SpellAddedPhysicalDamageWeaponUber3"] = { type = "Prefix", affix = "The Elder's", "Adds (32-44) to (66-76) Physical Damage to Spells", statOrder = { 1314 }, level = 84, group = "SpellAddedPhysicalDamage", weightKey = { "sceptre_elder", "wand_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "influence_mod", "damage", "physical", "caster" }, }, + ["SpellAddedPhysicalDamageTwoHandWeaponUber1_"] = { type = "Prefix", affix = "The Elder's", "Adds (37-49) to (75-86) Physical Damage to Spells", statOrder = { 1314 }, level = 68, group = "SpellAddedPhysicalDamage", weightKey = { "attack_staff", "staff_elder", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "influence_mod", "damage", "physical", "caster" }, }, + ["SpellAddedPhysicalDamageTwoHandWeaponUber2"] = { type = "Prefix", affix = "The Elder's", "Adds (44-58) to (88-103) Physical Damage to Spells", statOrder = { 1314 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "attack_staff", "staff_elder", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "influence_mod", "damage", "physical", "caster" }, }, + ["SpellAddedPhysicalDamageTwoHandWeaponUber3"] = { type = "Prefix", affix = "The Elder's", "Adds (60-73) to (108-122) Physical Damage to Spells", statOrder = { 1314 }, level = 84, group = "SpellAddedPhysicalDamage", weightKey = { "attack_staff", "staff_elder", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "influence_mod", "damage", "physical", "caster" }, }, + ["SpellAddedChaosDamageWeaponUber1"] = { type = "Prefix", affix = "The Elder's", "Adds (22-31) to (46-53) Chaos Damage to Spells", statOrder = { 1318 }, level = 68, group = "SpellAddedChaosDamage", weightKey = { "sceptre_elder", "wand_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "influence_mod", "damage", "chaos", "caster" }, }, + ["SpellAddedChaosDamageWeaponUber2"] = { type = "Prefix", affix = "The Elder's", "Adds (28-37) to (55-64) Chaos Damage to Spells", statOrder = { 1318 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "sceptre_elder", "wand_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "influence_mod", "damage", "chaos", "caster" }, }, + ["SpellAddedChaosDamageWeaponUber3_"] = { type = "Prefix", affix = "The Elder's", "Adds (32-44) to (66-76) Chaos Damage to Spells", statOrder = { 1318 }, level = 85, group = "SpellAddedChaosDamage", weightKey = { "sceptre_elder", "wand_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "influence_mod", "damage", "chaos", "caster" }, }, + ["SpellAddedChaosDamageTwoHandWeaponUber1"] = { type = "Prefix", affix = "The Elder's", "Adds (37-49) to (75-86) Chaos Damage to Spells", statOrder = { 1318 }, level = 68, group = "SpellAddedChaosDamage", weightKey = { "attack_staff", "staff_elder", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "influence_mod", "damage", "chaos", "caster" }, }, + ["SpellAddedChaosDamageTwoHandWeaponUber2"] = { type = "Prefix", affix = "The Elder's", "Adds (44-58) to (88-103) Chaos Damage to Spells", statOrder = { 1318 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "attack_staff", "staff_elder", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "influence_mod", "damage", "chaos", "caster" }, }, + ["SpellAddedChaosDamageTwoHandWeaponUber3"] = { type = "Prefix", affix = "The Elder's", "Adds (60-73) to (108-122) Chaos Damage to Spells", statOrder = { 1318 }, level = 85, group = "SpellAddedChaosDamage", weightKey = { "attack_staff", "staff_elder", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "influence_mod", "damage", "chaos", "caster" }, }, + ["SpellDamagePer16StrengthUber1"] = { type = "Prefix", affix = "The Elder's", "1% increased Spell Damage per 16 Strength", statOrder = { 9940 }, level = 68, group = "SpellDamagePer16Strength", weightKey = { "sceptre_elder", "default", }, weightVal = { 400, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, }, + ["SpellDamagePer16DexterityUber1__"] = { type = "Prefix", affix = "The Elder's", "1% increased Spell Damage per 16 Dexterity", statOrder = { 9938 }, level = 68, group = "SpellDamagePer16Dexterity", weightKey = { "rune_dagger_elder", "default", }, weightVal = { 400, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, }, + ["SpellDamagePer16IntelligenceUber1"] = { type = "Prefix", affix = "The Elder's", "1% increased Spell Damage per 16 Intelligence", statOrder = { 9939 }, level = 68, group = "SpellDamagePer16Intelligence", weightKey = { "sceptre_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, }, + ["SpellDamagePer10StrengthUber1"] = { type = "Prefix", affix = "The Elder's", "1% increased Spell Damage per 10 Strength", statOrder = { 9937 }, level = 68, group = "SpellDamagePer10Strength", weightKey = { "attack_staff", "staff_elder", "default", }, weightVal = { 0, 400, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, }, + ["SpellDamagePer10IntelligenceUber1_"] = { type = "Prefix", affix = "The Elder's", "1% increased Spell Damage per 10 Intelligence", statOrder = { 2648 }, level = 68, group = "SpellDamagePer10Intelligence", weightKey = { "attack_staff", "staff_elder", "default", }, weightVal = { 0, 400, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, }, + ["MaximumEnduranceChargeUber1"] = { type = "Suffix", affix = "of Shaping", "+1 to Maximum Endurance Charges", statOrder = { 1715 }, level = 84, group = "MaximumEnduranceCharges", weightKey = { "2h_mace_shaper", "2h_sword_shaper", "2h_axe_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "endurance_charge", "influence_mod" }, }, + ["MaximumFrenzyChargeUber1"] = { type = "Suffix", affix = "of Shaping", "+1 to Maximum Frenzy Charges", statOrder = { 1720 }, level = 84, group = "MaximumFrenzyCharges", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "bow_shaper", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "frenzy_charge", "influence_mod" }, }, + ["MaximumPowerChargeUber1"] = { type = "Suffix", affix = "of Shaping", "+1 to Maximum Power Charges", statOrder = { 1725 }, level = 84, group = "IncreasedMaximumPowerCharges", weightKey = { "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "power_charge", "influence_mod" }, }, + ["PowerChargeOnBlockUber1"] = { type = "Suffix", affix = "of the Elder", "+5% Chance to Block Attack Damage while wielding a Staff", "25% chance to gain a Power Charge when you Block", statOrder = { 1064, 4177 }, level = 68, group = "PowerChargeOnBlockUber", weightKey = { "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "block", "power_charge", "influence_mod" }, }, + ["CriticalStrikeMultiplierIfBlockedRecentlyUber1_"] = { type = "Suffix", affix = "of Shaping", "+5% Chance to Block Attack Damage while wielding a Staff", "+(35-45)% to Critical Strike Multiplier if you have Blocked Recently", statOrder = { 1064, 5860 }, level = 68, group = "CriticalStrikeMultiplierIfBlockedRecentlyUber", weightKey = { "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "block", "influence_mod", "damage", "critical" }, }, + ["BlockingBlocksSpellsUber1"] = { type = "Suffix", affix = "of the Elder", "+5% Chance to Block Attack Damage while wielding a Staff", "(12-18)% Chance to Block Spell Damage", statOrder = { 1064, 1067 }, level = 68, group = "BlockingBlocksSpellsUber", weightKey = { "staff_elder", "default", }, weightVal = { 0, 0 }, modTags = { "block", "influence_mod" }, }, + ["SpellBlockStaffUber1_"] = { type = "Suffix", affix = "of the Elder", "+5% Chance to Block Attack Damage while wielding a Staff", "(8-12)% Chance to Block Spell Damage", statOrder = { 1064, 1072 }, level = 68, group = "SpellBlockAndBlockUber", weightKey = { "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "block", "influence_mod" }, }, + ["CriticalStrikeChanceIfNoCriticalStrikeDealtRecentlyUber1"] = { type = "Suffix", affix = "of Shaping", "+(15-25)% to Global Critical Strike Multiplier", "(80-100)% increased Critical Strike Chance if you haven't dealt a Critical Strike Recently", statOrder = { 1399, 5824 }, level = 68, group = "CriticalStrikeChanceIfNoCriticalStrikeDealtRecentlyUber", weightKey = { "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "influence_mod", "damage", "critical" }, }, + ["PowerChargeOnManaSpentUber1"] = { type = "Suffix", affix = "of Shaping", "Gain a Power Charge after Spending a total of 200 Mana", statOrder = { 7749 }, level = 68, group = "PowerChargeOnManaSpent", weightKey = { "wand_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "power_charge", "influence_mod" }, }, + ["IncreasedDamagePerPowerChargeUber1"] = { type = "Suffix", affix = "of the Elder", "(5-10)% increased Damage per Power Charge", statOrder = { 5961 }, level = 68, group = "IncreasedDamagePerPowerCharge", weightKey = { "wand_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "damage" }, }, + ["ProjectileDamagePerEnemyPiercedUber1_"] = { type = "Suffix", affix = "of Shaping", "Projectiles deal (20-30)% increased Damage with Hits and Ailments for each Enemy Pierced", statOrder = { 9522 }, level = 68, group = "ProjectileDamagePerEnemyPierced", weightKey = { "bow_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "damage" }, }, + ["IncreaseProjectileAttackDamagePerAccuracyUber1"] = { type = "Suffix", affix = "of the Elder", "1% increased Projectile Attack Damage per 200 Accuracy Rating", statOrder = { 4215 }, level = 68, group = "IncreaseProjectileAttackDamagePerAccuracy", weightKey = { "bow_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "damage", "attack" }, }, + ["CriticalStrikeChanceAgainstPoisonedEnemiesUber1"] = { type = "Suffix", affix = "of the Elder", "(80-100)% increased Critical Strike Chance against Poisoned Enemies", statOrder = { 3200 }, level = 68, group = "CriticalStrikeChanceAgainstPoisonedEnemies", weightKey = { "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "influence_mod", "critical" }, }, + ["CriticalStrikeMultiplierAgainstEnemiesOnFullLifeUber1"] = { type = "Suffix", affix = "of Shaping", "+(50-60)% to Critical Strike Multiplier against Enemies that are on Full Life", statOrder = { 3341 }, level = 68, group = "CriticalStrikeMultiplierAgainstEnemiesOnFullLife", weightKey = { "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "influence_mod", "damage", "critical" }, }, + ["GainRareMonsterModsOnKillChanceUber1"] = { type = "Suffix", affix = "of the Elder", "When you Kill a Rare Monster, (15-20)% chance to gain one of its Modifiers for 10 seconds", statOrder = { 6581 }, level = 68, group = "GainRareMonsterModsOnKillChance", weightKey = { "claw_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod" }, }, + ["EnemiesHaveReducedEvasionIfHitRecentlyUber1"] = { type = "Suffix", affix = "of Shaping", "Enemies have 20% reduced Evasion if you have Hit them Recently", statOrder = { 6307 }, level = 68, group = "EnemiesHaveReducedEvasionIfHitRecently", weightKey = { "claw_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "defences", "evasion" }, }, + ["LifeGainPerBlindedEnemyHitUber1"] = { type = "Suffix", affix = "of the Elder", "Gain (35-50) Life per Blinded Enemy Hit with this Weapon", statOrder = { 7832 }, level = 68, group = "LifeGainPerBlindedEnemyHit", weightKey = { "claw_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "influence_mod", "life", "attack" }, }, + ["CriticalChanceAgainstBlindedEnemiesUber1_"] = { type = "Suffix", affix = "of Shaping", "(80-100)% increased Critical Strike Chance against Blinded Enemies", statOrder = { 3314 }, level = 68, group = "CriticalChanceAgainstBlindedEnemies", weightKey = { "claw_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "critical" }, }, + ["AdditionalBlockChancePerEnduranceChargeUber1_"] = { type = "Suffix", affix = "of the Elder", "(20-25)% chance to gain an Endurance Charge when you Block", "+1% Chance to Block Attack Damage per Endurance Charge", statOrder = { 2033, 4447 }, level = 68, group = "AdditionalBlockChancePerEnduranceChargeUber", weightKey = { "sword_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "block", "endurance_charge", "influence_mod" }, }, + ["AccuracyRatingPerFrenzyChargeUber1"] = { type = "Suffix", affix = "of Shaping", "5% increased Accuracy Rating per Frenzy Charge", "(20-25)% chance to gain a Frenzy Charge when you Block", statOrder = { 1959, 5587 }, level = 68, group = "AccuracyRatingPerFrenzyChargeUber", weightKey = { "sword_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "block", "frenzy_charge", "influence_mod", "attack" }, }, + ["MovementSkillsCostNoManaUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Movement Skills Cost no Mana", statOrder = { 487 }, level = 68, group = "DisplayMovementSkillsCostNoMana", weightKey = { "2h_sword_shaper", "sword_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "skill", "resource", "influence_mod", "mana", "gem" }, }, + ["GainEnduranceChargeWhileStationaryUber1"] = { type = "Suffix", affix = "of the Elder", "Gain an Endurance Charge every 4 seconds while Stationary", statOrder = { 9326 }, level = 68, group = "GainEnduranceChargeWhileStationary", weightKey = { "2h_sword_elder", "sword_elder", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "endurance_charge", "influence_mod" }, }, + ["CullingStrikeOnBleedingEnemiesUber1"] = { type = "Suffix", affix = "of the Elder", "(30-49)% increased Physical Damage", "Hits with this Weapon have Culling Strike against Bleeding Enemies", statOrder = { 1144, 7741 }, level = 68, group = "CullingStrikeOnBleedingEnemiesUber", weightKey = { "2h_axe_elder", "axe_elder", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, }, + ["GainEnduranceChargeOnHittingBleedingEnemyUber1"] = { type = "Suffix", affix = "of the Elder", "(5-10)% chance to gain an Endurance Charge when you Hit a Bleeding Enemy", statOrder = { 5583 }, level = 68, group = "GainEnduranceChargeOnHittingBleedingEnemy", weightKey = { "axe_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "endurance_charge", "influence_mod" }, }, + ["GainEnduranceChargeOnCritUber1"] = { type = "Suffix", affix = "of Shaping", "(15-20)% increased Critical Strike Chance", "(5-10)% chance to gain an Endurance Charge on Critical Strike", statOrder = { 1375, 1730 }, level = 68, group = "GainEnduranceChargeOnCritUber", weightKey = { "2h_axe_shaper", "axe_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "endurance_charge", "influence_mod", "attack", "critical" }, }, + ["CriticalStrikeChanceIfKilledRecentlyUber1"] = { type = "Suffix", affix = "of Shaping", "(80-100)% increased Critical Strike Chance if you have Killed Recently", statOrder = { 5822 }, level = 68, group = "CriticalStrikeChanceIfKilledRecently", weightKey = { "axe_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "critical" }, }, + ["EnemiesExplodeOnDeathDealingFireUber1"] = { type = "Suffix", affix = "of Shaping", "Enemies Killed with Attack or Spell Hits Explode, dealing 5% of their Life as Fire Damage", statOrder = { 2614 }, level = 68, group = "EnemiesExplodeOnDeath", weightKey = { "2h_mace_shaper", "mace_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, + ["GainFortifyOnStunChanceUber1"] = { type = "Suffix", affix = "of Shaping", "Melee Hits which Stun have (10-20)% chance to Fortify", statOrder = { 5576 }, level = 68, group = "GainFortifyOnStunChance", weightKey = { "mace_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "attack" }, }, + ["AreaOfEffectPer50StrengthUber1"] = { type = "Suffix", affix = "of the Elder", "3% increased Area of Effect per 50 Strength", statOrder = { 4631 }, level = 68, group = "AreaOfEffectPer50Strength", weightKey = { "mace_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod" }, }, + ["AreaOfEffectIfStunnedEnemyRecentlyUber1___"] = { type = "Suffix", affix = "of the Elder", "(25-35)% increased Area of Effect if you have Stunned an Enemy Recently", statOrder = { 4628 }, level = 68, group = "AreaOfEffectIfStunnedEnemyRecently", weightKey = { "2h_mace_elder", "mace_elder", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "influence_mod" }, }, + ["MeleeWeaponRangeIfKilledRecentlyUber1"] = { type = "Suffix", affix = "of the Elder", "+(0.1-0.2) metres to Melee Strike Range if you have Killed Recently", statOrder = { 9024 }, level = 68, group = "MeleeWeaponRangeIfKilledRecently", weightKey = { "2h_sword_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "attack" }, }, + ["MovementSkillsFortifyOnHitChanceUber1"] = { type = "Suffix", affix = "of Shaping", "Hits with Melee Movement Skills have (30-50)% chance to Fortify", statOrder = { 9006 }, level = 68, group = "MovementSkillsFortifyOnHitChance", weightKey = { "2h_sword_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "attack" }, }, + ["GainEnduranceChargeOnTauntingEnemiesUber1_"] = { type = "Suffix", affix = "of Shaping", "(15-30)% chance to gain an Endurance Charge when you Taunt an Enemy", statOrder = { 5585 }, level = 68, group = "GainEnduranceChargeOnTauntingEnemies", weightKey = { "2h_axe_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "endurance_charge", "influence_mod" }, }, + ["RemoveBleedingOnWarcryUber1"] = { type = "Suffix", affix = "of the Elder", "Removes Bleeding when you use a Warcry", statOrder = { 9689 }, level = 68, group = "RemoveBleedingOnWarcry", weightKey = { "2h_axe_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "bleed", "influence_mod", "physical", "attack", "ailment" }, }, + ["AreaOfEffectPerEnduranceChargeUber1"] = { type = "Suffix", affix = "of the Elder", "5% increased Area of Effect per Endurance Charge", statOrder = { 4633 }, level = 68, group = "AreaOfEffectPerEnduranceCharge", weightKey = { "2h_mace_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod" }, }, + ["StunDurationAndThresholdUber1"] = { type = "Suffix", affix = "of Shaping", "(20-30)% reduced Enemy Stun Threshold", "(20-30)% increased Stun Duration on Enemies", statOrder = { 1428, 1774 }, level = 68, group = "StunDurationAndThresholdUber", weightKey = { "2h_mace_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod" }, }, + ["PhysicalDamageAddedAsRandomElementUber1"] = { type = "Suffix", affix = "of Shaping", "Gain (7-9)% of Physical Damage as Extra Damage of a random Element", statOrder = { 2845 }, level = 68, group = "PhysicalDamageAddedAsRandomElement", weightKey = { "sceptre_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental" }, }, + ["PhysicalDamageAddedAsRandomElementUber2"] = { type = "Suffix", affix = "of Shaping", "Gain (10-12)% of Physical Damage as Extra Damage of a random Element", statOrder = { 2845 }, level = 75, group = "PhysicalDamageAddedAsRandomElement", weightKey = { "sceptre_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental" }, }, + ["PhysicalDamageAddedAsRandomElementUber3"] = { type = "Suffix", affix = "of Shaping", "Gain (13-15)% of Physical Damage as Extra Damage of a random Element", statOrder = { 2845 }, level = 80, group = "PhysicalDamageAddedAsRandomElement", weightKey = { "sceptre_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental" }, }, + ["GrantsCatAspectCrafted"] = { type = "Suffix", affix = "of Farrul", "Grants Level 20 Aspect of the Cat Skill", statOrder = { 609 }, level = 20, group = "GrantsCatAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, }, + ["GrantsBirdAspectCrafted"] = { type = "Suffix", affix = "of Saqawal", "Grants Level 20 Aspect of the Avian Skill", statOrder = { 604 }, level = 20, group = "GrantsBirdAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, }, + ["GrantsSpiderAspectCrafted"] = { type = "Suffix", affix = "of Fenumus", "Grants Level 20 Aspect of the Spider Skill", statOrder = { 634 }, level = 20, group = "GrantsSpiderAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, }, + ["GrantsCrabAspectCrafted"] = { type = "Suffix", affix = "of Craiceann", "Grants Level 20 Aspect of the Crab Skill", statOrder = { 611 }, level = 20, group = "GrantsCrabAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "blue_herring", "skill" }, }, + ["GrantsCatAspectCrafted30"] = { type = "Suffix", affix = "of Farrul", "Grants Level 30 Aspect of the Cat Skill", statOrder = { 609 }, level = 20, group = "GrantsCatAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, }, + ["GrantsBirdAspectCrafted30"] = { type = "Suffix", affix = "of Saqawal", "Grants Level 30 Aspect of the Avian Skill", statOrder = { 604 }, level = 20, group = "GrantsBirdAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, }, + ["GrantsSpiderAspectCrafted30"] = { type = "Suffix", affix = "of Fenumus", "Grants Level 30 Aspect of the Spider Skill", statOrder = { 634 }, level = 20, group = "GrantsSpiderAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, }, + ["GrantsCrabAspectCrafted30"] = { type = "Suffix", affix = "of Craiceann", "Grants Level 30 Aspect of the Crab Skill", statOrder = { 611 }, level = 20, group = "GrantsCrabAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "blue_herring", "skill" }, }, + ["DoubleModSellPrice1"] = { type = "DelveImplicit", affix = "", "Item sells for much more to vendors", statOrder = { 7801 }, level = 1, group = "DoubleModSellPrice1", weightKey = { "default", }, weightVal = { 6000 }, modTags = { }, }, + ["DoubleModSellPrice2"] = { type = "DelveImplicit", affix = "", "Item sells for much more to vendors", statOrder = { 7801 }, level = 1, group = "DoubleModSellPrice2", weightKey = { "default", }, weightVal = { 1000 }, modTags = { }, }, + ["DoubleModSellPrice3_"] = { type = "DelveImplicit", affix = "", "Item sells for much more to vendors", statOrder = { 7801 }, level = 1, group = "DoubleModSellPrice3", weightKey = { "default", }, weightVal = { 6000 }, modTags = { }, }, + ["DoubleModSellPrice4"] = { type = "DelveImplicit", affix = "", "Item sells for much more to vendors", statOrder = { 7801 }, level = 1, group = "DoubleModSellPrice4", weightKey = { "default", }, weightVal = { 1000 }, modTags = { }, }, + ["DoubleModSellPrice5_"] = { type = "DelveImplicit", affix = "", "Item sells for much more to vendors", statOrder = { 7801 }, level = 1, group = "DoubleModSellPrice5", weightKey = { "default", }, weightVal = { 6000 }, modTags = { }, }, + ["DoubleModSellPrice6"] = { type = "DelveImplicit", affix = "", "Item sells for much more to vendors", statOrder = { 7801 }, level = 1, group = "DoubleModSellPrice6", weightKey = { "default", }, weightVal = { 10 }, modTags = { }, }, + ["DoubleModSellPrice7"] = { type = "DelveImplicit", affix = "", "Item sells for much more to vendors", statOrder = { 7801 }, level = 1, group = "DoubleModSellPrice7", weightKey = { "default", }, weightVal = { 2000 }, modTags = { }, }, + ["DoubleModSellPrice8"] = { type = "DelveImplicit", affix = "", "Item sells for much more to vendors", statOrder = { 7801 }, level = 1, group = "DoubleModSellPrice8", weightKey = { "default", }, weightVal = { 1 }, modTags = { }, }, + ["DoubleModSellPrice9"] = { type = "DelveImplicit", affix = "", "Item sells for much more to vendors", statOrder = { 7801 }, level = 1, group = "DoubleModSellPrice9", weightKey = { "default", }, weightVal = { 1000 }, modTags = { }, }, + ["LocalIncreaseSocketedMinionGemLevelDelve"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Minion Gems", statOrder = { 160 }, level = 60, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion", "gem" }, }, + ["MaximumMinionCountZombieDelve"] = { type = "Prefix", affix = "Subterranean", "+1 to maximum number of Raised Zombies", statOrder = { 2069 }, level = 60, group = "MaximumMinionCount", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, }, + ["MaximumMinionCountSkeletonDelve"] = { type = "Prefix", affix = "Subterranean", "+1 to maximum number of Skeletons", statOrder = { 2071 }, level = 60, group = "MaximumMinionCount", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, }, + ["MaximumMinionCountSpectreDelve"] = { type = "Prefix", affix = "Subterranean", "+1 to maximum number of Spectres", statOrder = { 2070 }, level = 60, group = "MaximumMinionCount", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, }, + ["MinionDamageDelve"] = { type = "Suffix", affix = "of the Underground", "Minions deal (25-35)% increased Damage", statOrder = { 1882 }, level = 60, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, + ["MaximumMinionCountAmuletZombieDelve"] = { type = "Prefix", affix = "Subterranean", "+1 to maximum number of Raised Zombies", statOrder = { 2069 }, level = 60, group = "MaximumMinionCount", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, }, + ["MaximumMinionCountAmuletSkeletonDelve__"] = { type = "Prefix", affix = "Subterranean", "+1 to maximum number of Skeletons", statOrder = { 2071 }, level = 60, group = "MaximumMinionCount", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, }, + ["ReducedManaReservationsCostDelve_"] = { type = "Suffix", affix = "of the Underground", "10% increased Mana Reservation Efficiency of Skills", statOrder = { 2141 }, level = 60, group = "ReducedReservation", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, + ["LocalIncreaseSocketedAuraLevelDelve"] = { type = "Suffix", affix = "of the Underground", "+2 to Level of Socketed Aura Gems", statOrder = { 161 }, level = 60, group = "LocalIncreaseSocketedAuraLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "aura", "gem" }, }, + ["ReducedPhysicalDamageTakenDelve"] = { type = "Suffix", affix = "of the Underground", "(3-5)% additional Physical Damage Reduction", statOrder = { 2182 }, level = 60, group = "ReducedPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, }, + ["BleedingDamageChanceDelve__"] = { type = "Suffix", affix = "of the Underground", "Attacks have 25% chance to cause Bleeding", "(30-50)% increased Damage with Bleeding", statOrder = { 2398, 3077 }, level = 60, group = "BleedingDamageChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["CorruptedBloodImmunityDelve"] = { type = "Suffix", affix = "of the Underground", "Corrupted Blood cannot be inflicted on you", statOrder = { 5301 }, level = 60, group = "CorruptedBloodImmunity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "bleed", "physical", "ailment" }, }, + ["DoubleDamageChanceDelve"] = { type = "Suffix", affix = "of the Underground", "10% chance to deal Double Damage", statOrder = { 5557 }, level = 60, group = "DoubleDamageChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, }, + ["SpellAddedPhysicalDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Global Physical Damage", "Adds (11-15) to (23-26) Physical Damage to Spells", statOrder = { 1143, 1314 }, level = 60, group = "SpellAddedPhysicalDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["SpellAddedPhysicalDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Global Physical Damage", "Adds (15-20) to (30-35) Physical Damage to Spells", statOrder = { 1143, 1314 }, level = 60, group = "SpellAddedPhysicalDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["CurseOnHitLevelVulnerabilityDelve"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Vulnerability on Hit", statOrder = { 2432 }, level = 60, group = "CurseOnHitLevelVulnerabilityMod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, }, + ["PhysicalDamageLifeLeechDelve"] = { type = "Prefix", affix = "Subterranean", "0.4% of Physical Damage Leeched as Life", statOrder = { 1577 }, level = 60, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical" }, }, + ["PhysicalDamageTakenAsFireDelve"] = { type = "Suffix", affix = "of the Underground", "10% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2356 }, level = 60, group = "PhysicalDamageTakenAsFireUber", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["MaximumFireResistDelve"] = { type = "Prefix", affix = "Subterranean", "+3% to maximum Fire Resistance", statOrder = { 1534 }, level = 60, group = "MaximumFireResist", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireDamageTakenDelve"] = { type = "Prefix", affix = "Subterranean", "(4-6)% reduced Fire Damage taken", statOrder = { 2151 }, level = 60, group = "FireDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire" }, }, + ["LocalFireDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Fire Damage", "Adds (18-24) to (36-42) Fire Damage", statOrder = { 1268, 1273 }, level = 60, group = "LocalFireDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalFireDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Fire Damage", "Adds (31-42) to (64-74) Fire Damage", statOrder = { 1268, 1273 }, level = 60, group = "LocalFireDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["SpellAddedFireDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Fire Damage", "Adds (14-20) to (29-34) Fire Damage to Spells", statOrder = { 1268, 1315 }, level = 60, group = "SpellAddedFireDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Fire Damage", "Adds (20-26) to (39-46) Fire Damage to Spells", statOrder = { 1268, 1315 }, level = 60, group = "SpellAddedFireDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["CurseOnHitLevelFlammabilityDelve"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Flammability on Hit", statOrder = { 2439 }, level = 60, group = "FlammabilityOnHitLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, }, + ["FireDamageLifeLeechDelve"] = { type = "Prefix", affix = "Subterranean", "0.4% of Fire Damage Leeched as Life", statOrder = { 1581 }, level = 60, group = "FireDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "fire" }, }, + ["PhysicalDamageTakenAsColdDelve"] = { type = "Suffix", affix = "of the Underground", "10% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2357 }, level = 60, group = "PhysicalDamageTakenAsColdUber", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["MaximumColdResistDelve"] = { type = "Prefix", affix = "Subterranean", "+3% to maximum Cold Resistance", statOrder = { 1540 }, level = 60, group = "MaximumColdResist", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdDamageTakenDelve"] = { type = "Prefix", affix = "Subterranean", "(4-6)% reduced Cold Damage taken", statOrder = { 3297 }, level = 60, group = "ColdDamageTakenPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold" }, }, + ["LocalColdDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Cold Damage", "Adds (15-20) to (30-35) Cold Damage", statOrder = { 1277, 1282 }, level = 60, group = "LocalColdDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["LocalColdDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Cold Damage", "Adds (26-35) to (52-60) Cold Damage", statOrder = { 1277, 1282 }, level = 60, group = "LocalColdDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["SpellAddedColdDamageHybridDelve_"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Cold Damage", "Adds (12-16) to (24-28) Cold Damage to Spells", statOrder = { 1277, 1316 }, level = 60, group = "SpellAddedColdDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Cold Damage", "Adds (18-24) to (36-42) Cold Damage to Spells", statOrder = { 1277, 1316 }, level = 60, group = "SpellAddedColdDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["CurseOnHitLevelFrostbiteDelve"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Frostbite on Hit", statOrder = { 2440 }, level = 60, group = "FrostbiteOnHitLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, }, + ["ColdDamageLifeLeechDelve"] = { type = "Prefix", affix = "Subterranean", "0.4% of Cold Damage Leeched as Life", statOrder = { 1586 }, level = 60, group = "ColdDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "cold" }, }, + ["PhysicalDamageTakenAsLightningDelve_"] = { type = "Suffix", affix = "of the Underground", "10% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2358 }, level = 60, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["MaximumLightningResistDelve"] = { type = "Prefix", affix = "Subterranean", "+3% to maximum Lightning Resistance", statOrder = { 1545 }, level = 60, group = "MaximumLightningResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningDamageTakenDelve"] = { type = "Prefix", affix = "Subterranean", "(4-6)% reduced Lightning Damage taken", statOrder = { 3296 }, level = 60, group = "LightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning" }, }, + ["LocalLightningDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Lightning Damage", "Adds (2-5) to (63-66) Lightning Damage", statOrder = { 1288, 1293 }, level = 60, group = "LocalLightningDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["LocalLightningDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Lightning Damage", "Adds (2-9) to (110-116) Lightning Damage", statOrder = { 1288, 1293 }, level = 60, group = "LocalLightningDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["SpellAddedLightningDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Lightning Damage", "Adds (1-4) to (50-53) Lightning Damage to Spells", statOrder = { 1288, 1317 }, level = 60, group = "SpellAddedLightningDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Lightning Damage", "Adds (2-6) to (76-80) Lightning Damage to Spells", statOrder = { 1288, 1317 }, level = 60, group = "SpellAddedLightningDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["CurseOnHitLevelConductivityDelve"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Conductivity on Hit", statOrder = { 2436 }, level = 60, group = "ConductivityOnHitLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, }, + ["LightningDamageLifeLeechDelve__"] = { type = "Prefix", affix = "Subterranean", "0.4% of Lightning Damage Leeched as Life", statOrder = { 1590 }, level = 60, group = "LightningDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "lightning" }, }, + ["PhysicalDamageTakenAsChaosDelve"] = { type = "Suffix", affix = "of the Underground", "10% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2360 }, level = 60, group = "PhysicalDamageTakenAsChaosUber", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "chaos" }, }, + ["MaximumChaosResistDelve"] = { type = "Prefix", affix = "Subterranean", "+3% to maximum Chaos Resistance", statOrder = { 1551 }, level = 60, group = "MaximumChaosResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "resistance" }, }, + ["ChaosDamageTakenDelve"] = { type = "Prefix", affix = "Subterranean", "(4-6)% reduced Chaos Damage taken", statOrder = { 2152 }, level = 60, group = "ChaosDamageTakenPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos" }, }, + ["LocalChaosDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(15-30)% increased Chaos Damage", "Adds (18-28) to (39-49) Chaos Damage", statOrder = { 1296, 1301 }, level = 60, group = "LocalChaosDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["LocalChaosDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(15-30)% increased Chaos Damage", "Adds (32-50) to (68-86) Chaos Damage", statOrder = { 1296, 1301 }, level = 60, group = "LocalChaosDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["SpellAddedChaosDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(15-30)% increased Chaos Damage", "Adds (11-15) to (23-26) Chaos Damage to Spells", statOrder = { 1296, 1318 }, level = 60, group = "SpellAddedChaosDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["SpellAddedChaosDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(15-30)% increased Chaos Damage", "Adds (15-20) to (30-35) Chaos Damage to Spells", statOrder = { 1296, 1318 }, level = 60, group = "SpellAddedChaosDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["CurseOnHitLevelDespairDelve"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Despair on Hit", statOrder = { 2437 }, level = 60, group = "CurseOnHitDespairMod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, }, + ["ChaosDamageLifeLeechDelve"] = { type = "Prefix", affix = "Subterranean", "0.4% of Chaos Damage Leeched as Life", statOrder = { 1593 }, level = 60, group = "ChaosDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "chaos" }, }, + ["CurseEffectivenessDelve"] = { type = "Suffix", affix = "of the Underground", "(10-15)% increased Effect of your Curses", statOrder = { 2505 }, level = 60, group = "CurseEffectiveness", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, }, + ["AdditionalCurseOnEnemiesDelve"] = { type = "Prefix", affix = "Subterranean", "You can apply an additional Curse", statOrder = { 2077 }, level = 60, group = "AdditionalCurseOnEnemies", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, }, + ["IncreaseSocketedCurseGemLevelDelve_"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Curse Gems", statOrder = { 164 }, level = 60, group = "IncreaseSocketedCurseGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "gem", "curse" }, }, + ["CurseAreaOfEffectDelve"] = { type = "Suffix", affix = "of the Underground", "(25-40)% increased Area of Effect of Hex Skills", statOrder = { 2134 }, level = 60, group = "CurseAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, }, + ["CurseDurationDelve"] = { type = "Suffix", affix = "of the Underground", "Curse Skills have (25-40)% increased Skill Effect Duration", statOrder = { 5897 }, level = 60, group = "CurseDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, }, + ["IncreasedDamagePerCurseDelve"] = { type = "Prefix", affix = "Subterranean", "(8-10)% increased Damage with Hits and Ailments per Curse on Enemy", statOrder = { 2923 }, level = 60, group = "IncreasedDamagePerCurse", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, }, + ["ManaRegenerationDelve"] = { type = "Suffix", affix = "of the Underground", "(30-50)% increased Mana Regeneration Rate", statOrder = { 1495 }, level = 60, group = "ManaRegeneration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, + ["PercentDamageGoesToManaDelve"] = { type = "Suffix", affix = "of the Underground", "(5-8)% of Damage taken Recouped as Mana", statOrder = { 2364 }, level = 60, group = "PercentDamageGoesToMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, + ["AddedManaRegenerationDelve"] = { type = "Suffix", affix = "of the Underground", "Regenerate (3-5) Mana per second", statOrder = { 1493 }, level = 60, group = "AddedManaRegeneration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, + ["MaximumManaIncreasePercentDelve_"] = { type = "Prefix", affix = "Subterranean", "(10-15)% increased maximum Mana", statOrder = { 1491 }, level = 60, group = "MaximumManaIncreasePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, + ["ImpaleChanceDelve__"] = { type = "Prefix", affix = "Subterranean", "(5-10)% chance to Impale Enemies on Hit with Attacks", statOrder = { 4815 }, level = 60, group = "AttackImpaleChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "attack" }, }, + ["FasterBleedDelve"] = { type = "Suffix", affix = "of the Underground", "Bleeding you inflict deals Damage (5-10)% faster", statOrder = { 6430 }, level = 60, group = "FasterBleedDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["AddedPhysicalSpellDamageDelve___"] = { type = "Prefix", affix = "Subterranean", "Adds (11-22) to (34-46) Physical Damage to Spells", statOrder = { 1314 }, level = 60, group = "SpellAddedPhysicalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["LightningAilmentEffectDelve"] = { type = "Suffix", affix = "of the Underground", "(15-25)% increased Effect of Lightning Ailments", statOrder = { 7293 }, level = 60, group = "LightningAilmentEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["PhysicalDamageConvertedToLightningDelve"] = { type = "Prefix", affix = "Subterranean", "10% of Physical Damage Converted to Lightning Damage", statOrder = { 1868 }, level = 60, group = "ConvertPhysicalToLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, + ["ColdAilmentDurationDelve"] = { type = "Suffix", affix = "of the Underground", "(15-25)% increased Duration of Cold Ailments", statOrder = { 5693 }, level = 60, group = "ColdAilmentDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["PhysicalDamageConvertedToColdDelve"] = { type = "Prefix", affix = "Subterranean", "10% of Physical Damage Converted to Cold Damage", statOrder = { 1866 }, level = 60, group = "ConvertPhysicalToCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, + ["FasterIgniteDelve_"] = { type = "Suffix", affix = "of the Underground", "Ignites you inflict deal Damage (5-10)% faster", statOrder = { 2473 }, level = 60, group = "FasterIgniteDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, + ["PhysicalDamageConvertedToFireDelve"] = { type = "Prefix", affix = "Subterranean", "10% of Physical Damage Converted to Fire Damage", statOrder = { 1864 }, level = 60, group = "ConvertPhysicalToFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["FasterPoisonDelve_"] = { type = "Suffix", affix = "of the Underground", "Poisons you inflict deal Damage (5-10)% faster", statOrder = { 6431 }, level = 60, group = "FasterPoisonDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["ZeroChaosResistanceDelve"] = { type = "Suffix", affix = "of the Underground", "Chaos Resistance is Zero", statOrder = { 10500 }, level = 60, group = "ZeroChaosResistanceDelve", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "resistance" }, }, + ["MinionCriticalStrikeMultiplierDelve"] = { type = "Suffix", affix = "of the Underground", "Minions have +(30-38)% to Critical Strike Multiplier", statOrder = { 9101 }, level = 60, group = "MinionCriticalStrikeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion", "critical" }, }, + ["MinionLargerAggroRadiusDelve"] = { type = "Suffix", affix = "of the Underground", "Minions are Aggressive", statOrder = { 10533 }, level = 60, group = "MinionLargerAggroRadius", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, }, + ["MinionAreaOfEffectDelve"] = { type = "Prefix", affix = "Subterranean", "Minions have (20-30)% increased Area of Effect", statOrder = { 2932 }, level = 60, group = "MinionAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, }, + ["MinionLeechDelve___"] = { type = "Prefix", affix = "Subterranean", "Minions Leech 1% of Damage as Life", statOrder = { 2820 }, level = 60, group = "MinionLifeLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "minion" }, }, + ["SpiritAndPhantasmRefreshOnUniqueDelve"] = { type = "Prefix", affix = "Subterranean", "Summoned Phantasms have 5% chance to refresh their Duration when they Hit a Rare or Unique Enemy", "Summoned Raging Spirits have 5% chance to refresh their Duration when they Hit a Rare or Unique Enemy", statOrder = { 9407, 9589 }, level = 60, group = "SpiritAndPhantasmRefreshOnUnique", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, }, + ["AuraEffectOnEnemiesDelve_____"] = { type = "Suffix", affix = "of the Underground", "(12-18)% increased Effect of Non-Curse Auras from your Skills on Enemies", statOrder = { 3475 }, level = 60, group = "AuraEffectOnEnemies", weightKey = { "default", }, weightVal = { 0 }, modTags = { "aura" }, }, + ["LifeReservationEfficiencyDelve"] = { type = "Prefix", affix = "Subterranean", "10% increased Life Reservation Efficiency of Skills", statOrder = { 2135 }, level = 60, group = "LifeReservationEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, + ["DoomGainRateDelve"] = { type = "Prefix", affix = "Subterranean", "(40-60)% increased Damage with Hits and Ailments against Cursed Enemies", statOrder = { 7018 }, level = 60, group = "HitAndAilmentDamageCursedEnemies", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "curse" }, }, + ["MarkEffectDelve"] = { type = "Suffix", affix = "of the Underground", "(15-25)% increased Effect of your Marks", statOrder = { 2507 }, level = 60, group = "MarkEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, }, + ["DelveWeaponFirePenetration1h1_"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (5-7)% Fire Resistance", statOrder = { 2890 }, level = 1, group = "FireResistancePenetration", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["DelveWeaponFirePenetration2h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (12-15)% Fire Resistance", statOrder = { 2890 }, level = 1, group = "FireResistancePenetration", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["DelveJewelFirePenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates 1% Fire Resistance", statOrder = { 2890 }, level = 1, group = "FireResistancePenetration", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["DelveArmourFireResistance1"] = { type = "Prefix", affix = "Subterranean", "+(20-35)% to Fire Resistance", statOrder = { 1536 }, level = 1, group = "FireResistancePrefix", weightKey = { "quiver", "shield", "body_armour", "boots", "gloves", "default", }, weightVal = { 0, 0, 0, 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["DelveBodyArmourAvoidFire1_"] = { type = "Prefix", affix = "Subterranean", "(8-10)% chance to Avoid Fire Damage from Hits", statOrder = { 3281 }, level = 1, group = "FireDamageAvoidance", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "elemental", "fire" }, }, + ["DelveGlovesFireDamageToSpells1"] = { type = "Prefix", affix = "Subterranean", "Adds (20-25) to (26-35) Fire Damage", statOrder = { 1270 }, level = 1, group = "GlobalAddedFireDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["DelveBootsSocketedFireGemLevel1"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Fire Gems", statOrder = { 147 }, level = 1, group = "LocalIncreaseSocketedFireGemLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "fire", "gem" }, }, + ["DelveRingFireLeech1"] = { type = "Prefix", affix = "Subterranean", "0.2% of Fire Damage Leeched as Life", statOrder = { 1581 }, level = 1, group = "FireDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "elemental", "fire" }, }, + ["DelveHelmetEnemyFireResistanceAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies have -9% to Fire Resistance", statOrder = { 7766 }, level = 1, group = "NearbyEnemyFireDamageResistance", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "resistance" }, }, + ["DelveJewelryFireDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Fire Damage", statOrder = { 1268 }, level = 1, group = "FireDamagePercentagePrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["DelveWeaponColdPenetration1h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (5-7)% Cold Resistance", statOrder = { 2892 }, level = 1, group = "ColdResistancePenetration", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["DelveWeaponColdPenetration2h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (12-15)% Cold Resistance", statOrder = { 2892 }, level = 1, group = "ColdResistancePenetration", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["DelveJewelColdPenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates 1% Cold Resistance", statOrder = { 2892 }, level = 1, group = "ColdResistancePenetration", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["DelveArmourColdResistance1"] = { type = "Prefix", affix = "Subterranean", "+(20-35)% to Cold Resistance", statOrder = { 1542 }, level = 1, group = "ColdResistancePrefix", weightKey = { "quiver", "shield", "body_armour", "boots", "gloves", "default", }, weightVal = { 0, 0, 0, 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["DelveBodyArmourAvoidCold1"] = { type = "Prefix", affix = "Subterranean", "(6-10)% chance to Avoid Cold Damage from Hits", statOrder = { 3282 }, level = 1, group = "ColdDamageAvoidance", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "elemental", "cold" }, }, + ["DelveGlovesColdDamageToSpells1"] = { type = "Prefix", affix = "Subterranean", "Adds (20-25) to (26-35) Cold Damage", statOrder = { 1279 }, level = 1, group = "GlobalAddedColdDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["DelveBootsSocketedColdGemLevel1"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Cold Gems", statOrder = { 148 }, level = 1, group = "LocalIncreaseSocketedColdGemLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "cold", "gem" }, }, + ["DelveRingColdLeech1"] = { type = "Prefix", affix = "Subterranean", "0.2% of Cold Damage Leeched as Life", statOrder = { 1586 }, level = 1, group = "ColdDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "elemental", "cold" }, }, + ["DelveHelmetEnemyColdResistanceAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies have -9% to Cold Resistance", statOrder = { 7764 }, level = 1, group = "NearbyEnemyColdDamageResistance", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "resistance" }, }, + ["DelveJewelryColdDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Cold Damage", statOrder = { 1277 }, level = 1, group = "ColdDamagePercentagePrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["DelveWeaponLightningPenetration1h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (5-7)% Lightning Resistance", statOrder = { 2893 }, level = 1, group = "LightningResistancePenetration", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["DelveWeaponLightningPenetration2h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (12-15)% Lightning Resistance", statOrder = { 2893 }, level = 1, group = "LightningResistancePenetration", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["DelveJewelLightningPenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates 1% Lightning Resistance", statOrder = { 2893 }, level = 1, group = "LightningResistancePenetration", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["DelveArmourLightningResistance1"] = { type = "Prefix", affix = "Subterranean", "+(20-35)% to Lightning Resistance", statOrder = { 1547 }, level = 1, group = "LightningResistancePrefix", weightKey = { "quiver", "shield", "body_armour", "boots", "gloves", "default", }, weightVal = { 0, 0, 0, 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["DelveBodyArmourAvoidLightning1"] = { type = "Prefix", affix = "Subterranean", "(6-10)% chance to Avoid Lightning Damage from Hits", statOrder = { 3283 }, level = 1, group = "LightningDamageAvoidance", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "elemental", "lightning" }, }, + ["DelveGlovesLightningDamageToSpells1"] = { type = "Prefix", affix = "Subterranean", "Adds 1 to (48-60) Lightning Damage", statOrder = { 1290 }, level = 1, group = "GlobalAddedLightningDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["DelveBootsSocketedLightningGemLevel1_"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Lightning Gems", statOrder = { 149 }, level = 1, group = "LocalIncreaseSocketedLightningGemLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "lightning", "gem" }, }, + ["DelveRingLightningLeech1_"] = { type = "Prefix", affix = "Subterranean", "0.2% of Lightning Damage Leeched as Life", statOrder = { 1590 }, level = 1, group = "LightningDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, }, + ["DelveHelmetEnemyLightningResistanceAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies have -9% to Lightning Resistance", statOrder = { 7768 }, level = 1, group = "NearbyEnemyLightningDamageResistance", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "resistance" }, }, + ["DelveJewelryLightningDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Lightning Damage", statOrder = { 1288 }, level = 1, group = "LightningDamagePercentagePrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["DelveWeaponIntimidateOnHit1"] = { type = "Suffix", affix = "of the Underground", "15% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 7731 }, level = 1, group = "LocalChanceToIntimidateOnHit", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "attack" }, }, + ["DelveArmourPhysDamageTaken1"] = { type = "Suffix", affix = "of the Underground", "-(75-50) Physical Damage taken from Hits", statOrder = { 2144 }, level = 1, group = "FlatPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "physical" }, }, + ["DelveArmourPhysDamageTakenv2_1"] = { type = "Suffix", affix = "of the Underground", "-(34-20) Physical Damage taken from Hits", statOrder = { 2144 }, level = 1, group = "FlatPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical" }, }, + ["DelveArmourPhysDamageTakenv2_2"] = { type = "Suffix", affix = "of the Underground", "-(49-35) Physical Damage taken from Hits", statOrder = { 2144 }, level = 30, group = "FlatPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical" }, }, + ["DelveArmourPhysDamageTakenv2_3"] = { type = "Suffix", affix = "of the Underground", "-(75-50) Physical Damage taken from Hits", statOrder = { 2144 }, level = 60, group = "FlatPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical" }, }, + ["DelveShieldPhysicalDamageReductionRating1"] = { type = "Prefix", affix = "Subterranean", "(3-5)% additional Physical Damage Reduction", statOrder = { 2182 }, level = 1, group = "ReducedPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "physical" }, }, + ["DelveBootsPhyiscalDamageReductionRatingWhileMoving1"] = { type = "Suffix", affix = "of the Underground", "(3-5)% additional Physical Damage Reduction while moving", statOrder = { 4489 }, level = 1, group = "AdditionalPhysicalDamageReductionWhileMoving", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical" }, }, + ["DelveGlovesGlobalAddedPhysicalDamage1"] = { type = "Prefix", affix = "Subterranean", "Adds (6-8) to (9-11) Physical Damage", statOrder = { 1177 }, level = 1, group = "GlobalAddedPhysicalDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["DelveRingPhysicalLeech1"] = { type = "Prefix", affix = "Subterranean", "0.2% of Physical Damage Leeched as Life", statOrder = { 1577 }, level = 1, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "physical" }, }, + ["DelveHelmetEnemyPhysicalDamageTakenAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies take 9% increased Physical Damage", statOrder = { 7770 }, level = 1, group = "NearbyEnemyPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["DelveJewelryPhysicalDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Global Physical Damage", statOrder = { 1143 }, level = 1, group = "PhysicalDamagePercentPrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["DelveJewelPhysicalDamageOverTimeTaken1"] = { type = "Prefix", affix = "Subterranean", "(1-2)% reduced Physical Damage taken over time", statOrder = { 4935 }, level = 1, group = "PhysicalDamageOverTimeTaken", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "physical" }, }, + ["DelveWeaponDespairOnHit1h1"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Despair on Hit", statOrder = { 2437 }, level = 1, group = "CurseOnHitDespair", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "caster", "curse" }, }, + ["DelveWeaponDespairOnHit2h1"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Despair on Hit", statOrder = { 2437 }, level = 1, group = "CurseOnHitDespair", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "caster", "curse" }, }, + ["DelveArmourChaosResistance1_"] = { type = "Prefix", affix = "Subterranean", "+(20-35)% to Chaos Resistance", statOrder = { 1552 }, level = 1, group = "ChaosResistancePrefix", weightKey = { "abyss_jewel", "jewel", "quiver", "shield", "body_armour", "boots", "gloves", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "chaos", "resistance" }, }, + ["DelveBodyArmourChaosDegenResist1"] = { type = "Suffix", affix = "of the Underground", "+(30-40)% Chaos Resistance against Damage Over Time", statOrder = { 5631 }, level = 1, group = "ChaosResistanceAgainstDamageOverTime", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "chaos", "resistance" }, }, + ["DelveGlovesChaosDamageToSpells1"] = { type = "Prefix", affix = "Subterranean", "Adds (15-20) to (21-30) Chaos Damage", statOrder = { 1297 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["DelveBootsSocketedChaosGemLevel1"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Chaos Gems", statOrder = { 150 }, level = 1, group = "LocalIncreaseSocketedChaosGemLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "chaos", "gem" }, }, + ["DelveRingChaosLeech1"] = { type = "Prefix", affix = "Subterranean", "0.2% of Chaos Damage Leeched as Life", statOrder = { 1593 }, level = 1, group = "ChaosDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "chaos" }, }, + ["DelveHelmetEnemyChaosResistanceAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies have -9% to Chaos Resistance", statOrder = { 7763 }, level = 1, group = "NearbyEnemyChaosDamageResistance", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "chaos_damage", "damage", "chaos", "resistance" }, }, + ["DelveJewelryChaosDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Chaos Damage", statOrder = { 1296 }, level = 1, group = "IncreasedChaosDamagePrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["DelveJewelChaosDamage1"] = { type = "Suffix", affix = "of the Underground", "(13-19)% increased Chaos Damage", statOrder = { 1296 }, level = 1, group = "IncreasedChaosDamage", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["DelveWeaponDamageOnFullLife1h1__"] = { type = "Suffix", affix = "of the Underground", "(50-60)% increased Damage when on Full Life", statOrder = { 5969 }, level = 1, group = "DamageOnFullLife", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage" }, }, + ["DelveWeaponDamageOnFullLife2h1"] = { type = "Suffix", affix = "of the Underground", "(100-120)% increased Damage when on Full Life", statOrder = { 5969 }, level = 1, group = "DamageOnFullLife", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage" }, }, + ["DelveBodyArmourLife1"] = { type = "Prefix", affix = "Subterranean", "+(25-40) to maximum Life", "(3-5)% increased maximum Life", statOrder = { 1480, 1482 }, level = 1, group = "LifeAndPercentLife", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "life" }, }, + ["DelveNonBodyArmourLife1"] = { type = "Prefix", affix = "Subterranean", "+(15-25) to maximum Life", "(2-3)% increased maximum Life", statOrder = { 1480, 1482 }, level = 1, group = "LifeAndPercentLife", weightKey = { "abyss_jewel", "jewel", "shield", "boots", "helmet", "gloves", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "resource", "life" }, }, + ["DelveArmourLifeRegen1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 1% of Life per second", statOrder = { 1853 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { "abyss_jewel", "jewel", "quiver", "shield", "body_armour", "helmet", "gloves", "boots", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 2000, 2000, 0 }, modTags = { "resource", "life" }, }, + ["DelveJewelryFlaskLifeRecovery1"] = { type = "Suffix", affix = "of the Underground", "(20-30)% increased Life Recovery from Flasks", statOrder = { 1968 }, level = 1, group = "GlobalFlaskLifeRecovery", weightKey = { "abyss_jewel", "jewel", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "flask", "resource", "life" }, }, + ["DelveWeaponArmourIfYouHitRecently1h1"] = { type = "Suffix", affix = "of the Underground", "+500 to Armour if you've Hit an Enemy Recently", statOrder = { 9440 }, level = 1, group = "PhysicalDamageReductionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "sceptre", "mace", "axe", "sword", "default", }, weightVal = { 0, 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "armour" }, }, + ["DelveJewelLifeRegeneration1"] = { type = "Prefix", affix = "Subterranean", "Regenerate 0.3% of Life per second", statOrder = { 1853 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resource", "life" }, }, + ["DelveWeaponArmourIfYouHitRecently2h1"] = { type = "Suffix", affix = "of the Underground", "+1000 to Armour if you've Hit an Enemy Recently", statOrder = { 9440 }, level = 1, group = "PhysicalDamageReductionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "staff", "mace", "axe", "sword", "default", }, weightVal = { 0, 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "armour" }, }, + ["DelveJewelArmourIfYouHitRecently1"] = { type = "Suffix", affix = "of the Underground", "+(250-300) to Armour if you've Hit an Enemy Recently", statOrder = { 9440 }, level = 1, group = "PhysicalDamageReductionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 300, 300, 0 }, modTags = { "defences", "armour" }, }, + ["DelveWeaponEvasionIfYouHitRecently1h1"] = { type = "Suffix", affix = "of the Underground", "+500 to Evasion Rating if Hit an Enemy Recently", statOrder = { 6375 }, level = 1, group = "EvasionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "axe", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "evasion" }, }, + ["DelveWeaponEvasionIfYouHitRecently2h1"] = { type = "Suffix", affix = "of the Underground", "+1000 to Evasion Rating if Hit an Enemy Recently", statOrder = { 6375 }, level = 1, group = "EvasionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "axe", "sword", "bow", "default", }, weightVal = { 0, 0, 0, 1600, 1600, 1600, 0 }, modTags = { "defences", "evasion" }, }, + ["DelveJewelEvasionIfYouHitRecently1"] = { type = "Suffix", affix = "of the Underground", "+(250-300) to Evasion Rating if Hit an Enemy Recently", statOrder = { 6375 }, level = 1, group = "EvasionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 300, 300, 0 }, modTags = { "defences", "evasion" }, }, + ["DelveWeaponEnergyShieldRegenIfYouHitRecently1h1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.5% of Energy Shield per second if you've Hit an Enemy Recently", statOrder = { 6345 }, level = 1, group = "EnergyShieldRegenerationRatePerMinuteIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "dagger", "claw", "wand", "sceptre", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "energy_shield" }, }, + ["DelveWeaponEnergyShieldRegenIfYouHitRecently2h1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 1% of Energy Shield per second if you've Hit an Enemy Recently", statOrder = { 6345 }, level = 1, group = "EnergyShieldRegenerationRatePerMinuteIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "staff", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["DelveJewelEnergyShieldRegenIfYouHitRecently1_"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.3% of Energy Shield per second if you've Hit an Enemy Recently", statOrder = { 6345 }, level = 1, group = "EnergyShieldRegenerationRatePerMinuteIfYouHaveHitAnEnemyRecently", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 300, 300, 0 }, modTags = { "defences", "energy_shield" }, }, + ["DelveArmourArmour1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Armour", statOrder = { 1453 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercentSuffix", weightKey = { "abyss_jewel", "jewel", "str_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour" }, }, + ["DelveArmourEvasion1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Evasion Rating", statOrder = { 1461 }, level = 1, group = "LocalEvasionRatingIncreasePercentSuffix", weightKey = { "abyss_jewel", "jewel", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "evasion" }, }, + ["DelveArmourEnergyShield1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Energy Shield", statOrder = { 1471 }, level = 1, group = "LocalEnergyShieldPercentSuffix", weightKey = { "abyss_jewel", "jewel", "int_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, }, + ["DelveArmourArmourAndEvasion1_"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Armour and Evasion", statOrder = { 1464 }, level = 1, group = "LocalArmourAndEvasionSuffix", weightKey = { "abyss_jewel", "jewel", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour", "evasion" }, }, + ["DelveArmourArmourAndEnergyShield1__"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Armour and Energy Shield", statOrder = { 1463 }, level = 1, group = "LocalArmourAndEnergyShieldSuffix", weightKey = { "abyss_jewel", "jewel", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, + ["DelveArmourEvasionAndEnergyShield1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Evasion and Energy Shield", statOrder = { 1465 }, level = 1, group = "LocalEvasionAndEnergyShieldSuffix", weightKey = { "abyss_jewel", "jewel", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["DelveArmourDefences1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Armour, Evasion and Energy Shield", statOrder = { 1466 }, level = 1, group = "LocalArmourAndEvasionAndEnergyShieldSuffix", weightKey = { "abyss_jewel", "jewel", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, }, + ["DelveArmourQuality"] = { type = "Suffix", affix = "of the Underground", "+(10-20)% to Quality", statOrder = { 7800 }, level = 1, group = "LocalItemQuality", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { }, }, + ["DelveArmourEnergyShieldRegen"] = { type = "Suffix", affix = "of the Underground", "Regenerate 1% of Energy Shield per second", statOrder = { 2554 }, level = 1, group = "EnergyShieldRegenerationPerMinute", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "helmet", "int_armour", "dex_int_armour", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["DelveArmourEnergyShieldLeechSpells_"] = { type = "Suffix", affix = "of the Underground", "0.3% of Spell Damage Leeched as Energy Shield", statOrder = { 1633 }, level = 1, group = "EnergyShieldLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "boots", "helmet", "int_armour", "dex_int_armour", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["DelveArmourSpellBlock__"] = { type = "Suffix", affix = "of the Underground", "(3-4)% Chance to Block Spell Damage", statOrder = { 1072 }, level = 1, group = "SpellBlockPercentage", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "boots", "gloves", "int_armour", "dex_int_armour", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "block" }, }, + ["DelveArmourDodgeAndSpellDodge_"] = { type = "Suffix", affix = "of the Underground", "+(4-6)% chance to Suppress Spell Damage", statOrder = { 1055 }, level = 1, group = "ChanceToDodgeAndSpellDodge", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "helmet", "dex_armour", "dex_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { }, }, + ["DelveArmourBlindChance"] = { type = "Suffix", affix = "of the Underground", "(4-6)% Global chance to Blind Enemies on hit", statOrder = { 2867 }, level = 1, group = "GlobalChanceToBlindOnHit", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "boots", "helmet", "dex_armour", "dex_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { }, }, + ["DelveArmourEvasionOnFullLife"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Global Evasion Rating when on Full Life", statOrder = { 6382 }, level = 1, group = "GlobalEvasionRatingPercentOnFullLife", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "boots", "dex_armour", "dex_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "defences", "evasion" }, }, + ["DelveArmourDoubleArmourEffectOnHit"] = { type = "Suffix", affix = "of the Underground", "(10-20)% chance to Defend with 200% of Armour", statOrder = { 5569 }, level = 1, group = "ChanceWhenHitForArmourToBeDoubled", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "helmet", "str_armour", "str_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "defences", "armour" }, }, + ["DelveArmourAttackBlock"] = { type = "Suffix", affix = "of the Underground", "(3-4)% Chance to Block Attack Damage", statOrder = { 1051 }, level = 1, group = "BlockPercent", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "boots", "helmet", "str_armour", "str_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "block" }, }, + ["DelveArmourFortifyEffect"] = { type = "Suffix", affix = "of the Underground", "+(3-5) to maximum Fortification", statOrder = { 8936 }, level = 1, group = "FortifyEffect", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "boots", "str_armour", "str_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { }, }, + ["DelveJewelryIncreasedEnergyShieldFromBodyArmour1"] = { type = "Suffix", affix = "of the Underground", "(20-30)% increased Energy Shield from Equipped Body Armour", statOrder = { 8949 }, level = 1, group = "MaximumEnergyShieldFromBodyArmour", weightKey = { "abyss_jewel", "jewel", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 0 }, modTags = { "defences", "energy_shield" }, }, + ["DelveJewelryChanceWhenHitForArmourToBeDoubled1"] = { type = "Suffix", affix = "of the Underground", "20% chance to Defend with 200% of Armour", statOrder = { 5569 }, level = 1, group = "ChanceWhenHitForArmourToBeDoubled", weightKey = { "abyss_jewel", "jewel", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 0 }, modTags = { "defences", "armour" }, }, + ["DelveJewelryChanceToEvade"] = { type = "Suffix", affix = "of the Underground", "+(1-2)% chance to Evade Attack Hits", statOrder = { 5571 }, level = 1, group = "AdditionalChanceToEvade", weightKey = { "abyss_jewel", "jewel", "quiver", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "evasion" }, }, + ["DelveJewelGlobalDefences1"] = { type = "Prefix", affix = "Subterranean", "(4-6)% increased Global Defences", statOrder = { 2742 }, level = 1, group = "AllDefences", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "defences" }, }, + ["DelveWeaponLocalChanceForPoisonDamage100FinalInflictedWithThisWeapon1"] = { type = "Prefix", affix = "Subterranean", "60% chance for Poisons inflicted with this Weapon to deal 100% more Damage", statOrder = { 7728 }, level = 1, group = "LocalChanceForPoisonDamage100FinalInflictedWithThisWeapon", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "attack", "ailment" }, }, + ["DelveWeaponLocalChanceForBleedingDamage100FinalInflictedWithThisWeapon1"] = { type = "Prefix", affix = "Subterranean", "60% chance for Bleeding inflicted with this Weapon to deal 100% more Damage", statOrder = { 7727 }, level = 1, group = "LocalChanceForBleedingDamage100FinalInflictedWithThisWeapon", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["DelveArmourAvoidPoison1"] = { type = "Suffix", affix = "of the Underground", "50% chance to Avoid being Poisoned", statOrder = { 1760 }, level = 1, group = "ChanceToAvoidPoison", weightKey = { "abyss_jewel", "jewel", "shield", "helmet", "boots", "body_armour", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["DelveArmourAvoidBleeding1"] = { type = "Suffix", affix = "of the Underground", "50% chance to Avoid Bleeding", statOrder = { 4123 }, level = 1, group = "ChanceToAvoidBleeding", weightKey = { "abyss_jewel", "jewel", "shield", "helmet", "boots", "body_armour", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["DelveJewelryAilmentDamage1_"] = { type = "Suffix", affix = "of the Underground", "(30-40)% increased Damage with Ailments", statOrder = { 4878 }, level = 1, group = "AilmentDamage", weightKey = { "abyss_jewel", "jewel", "quiver", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "damage", "ailment" }, }, + ["DelveJewelAilmentDamage1__"] = { type = "Suffix", affix = "of the Underground", "(15-20)% increased Damage with Ailments", statOrder = { 4878 }, level = 1, group = "AilmentDamage", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "damage", "ailment" }, }, + ["DelveGlovesAddedPhysicalDamageVsPoisonedEnemies1"] = { type = "Prefix", affix = "Subterranean", "Adds (7-11) to (12-18) Physical Damage against Poisoned Enemies", statOrder = { 9061 }, level = 1, group = "AddedPhysicalDamageVsPoisonedEnemies", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 1600, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["DelveGlovesAddedPhysicalDamageVsBleedingEnemies1"] = { type = "Prefix", affix = "Subterranean", "Adds (7-11) to (12-18) Physical Damage against Bleeding Enemies", statOrder = { 2403 }, level = 1, group = "AddedPhysicalDamageVsBleedingEnemies", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 1600, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["DelveWeaponLocalAttackReduceEnemyElementalResistance1h1"] = { type = "Prefix", affix = "Subterranean", "Attacks with this Weapon Penetrate (9-12)% Elemental Resistances", statOrder = { 3669 }, level = 1, group = "LocalAttackReduceEnemyElementalResistance", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["DelveWeaponElementalDamage1h1"] = { type = "Prefix", affix = "Subterranean", "(40-60)% increased Elemental Damage", statOrder = { 1889 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["DelveWeaponElementalDamage2h1"] = { type = "Prefix", affix = "Subterranean", "(80-120)% increased Elemental Damage", statOrder = { 1889 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["DelveWeaponElementalDamagev2_1h1"] = { type = "Prefix", affix = "Subterranean", "(19-25)% increased Elemental Damage", statOrder = { 1889 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["DelveWeaponElementalDamagev2_1h2_"] = { type = "Prefix", affix = "Subterranean", "(26-32)% increased Elemental Damage", statOrder = { 1889 }, level = 25, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["DelveWeaponElementalDamagev2_1h3"] = { type = "Prefix", affix = "Subterranean", "(33-39)% increased Elemental Damage", statOrder = { 1889 }, level = 50, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["DelveWeaponElementalDamagev2_1h4"] = { type = "Prefix", affix = "Subterranean", "(40-49)% increased Elemental Damage", statOrder = { 1889 }, level = 75, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["DelveWeaponElementalDamagev2_2h1"] = { type = "Prefix", affix = "Subterranean", "(37-50)% increased Elemental Damage", statOrder = { 1889 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["DelveWeaponElementalDamagev2_2h2__"] = { type = "Prefix", affix = "Subterranean", "(51-65)% increased Elemental Damage", statOrder = { 1889 }, level = 25, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["DelveWeaponElementalDamagev2_2h3"] = { type = "Prefix", affix = "Subterranean", "(66-79)% increased Elemental Damage", statOrder = { 1889 }, level = 50, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["DelveWeaponElementalDamagev2_2h4_"] = { type = "Prefix", affix = "Subterranean", "(80-94)% increased Elemental Damage", statOrder = { 1889 }, level = 75, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["DelveArmourElementalAilmentDuration1___"] = { type = "Suffix", affix = "of the Underground", "(20-30)% reduced Elemental Ailment Duration on you", statOrder = { 1778 }, level = 1, group = "SelfStatusAilmentDuration", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "helmet", "gloves", "boots", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 2000, 0 }, modTags = { "elemental", "ailment" }, }, + ["DelveJewelryElementalPenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (3-5)% Elemental Resistances", statOrder = { 2889 }, level = 1, group = "ElementalPenetration", weightKey = { "abyss_jewel", "jewel", "quiver", "amulet", "default", }, weightVal = { 0, 0, 1600, 1600, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["DelveRingElementalDamage1"] = { type = "Suffix", affix = "of the Underground", "(25-30)% increased Elemental Damage", statOrder = { 1889 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "belt", "ring", "default", }, weightVal = { 0, 0, 1600, 1600, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["DelveWeaponSocketedSpellsDamageFinal1h1_"] = { type = "Prefix", affix = "Subterranean", "Socketed Skills deal 40% more Spell Damage", statOrder = { 492 }, level = 1, group = "SocketedSpellsDamageFinal", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "caster_damage", "damage", "caster", "gem" }, }, + ["DelveWeaponSocketedSpellsDamageFinal2h1"] = { type = "Prefix", affix = "Subterranean", "Socketed Skills deal 20% more Spell Damage", statOrder = { 492 }, level = 1, group = "SocketedSpellsDamageFinal", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "caster_damage", "damage", "caster", "gem" }, }, + ["DelveBodyArmourSocketedSkillsSupportedByArcaneSurge1_"] = { type = "Suffix", affix = "of the Underground", "Socketed Gems are Supported by Level 1 Arcane Surge", statOrder = { 204 }, level = 1, group = "SupportedByArcaneSurge", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "support", "gem" }, }, + ["DelveGlovesSocketedSkillsCastSpeed1_"] = { type = "Suffix", affix = "of the Underground", "Socketed Skills have 18% increased Cast Speed", statOrder = { 489 }, level = 1, group = "SocketedSkillsCastSpeed", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "caster", "speed", "gem" }, }, + ["DelveArmourSocketedSpellsManaCost1_"] = { type = "Suffix", affix = "of the Underground", "Socketed Spells have 20% reduced Mana Cost", statOrder = { 495 }, level = 1, group = "SocketedSpellsManaCost", weightKey = { "abyss_jewel", "jewel", "shield", "boots", "helmet", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "skill", "resource", "mana", "caster", "gem" }, }, + ["DelveJewelAvoidInterruptionWhileCasting1"] = { type = "Suffix", affix = "of the Underground", "(15-20)% chance to Ignore Stuns while Casting", statOrder = { 1809 }, level = 1, group = "AvoidInterruptionWhileCasting", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { }, }, + ["DelveWeaponSocketedAttacksDamageFinal1h1"] = { type = "Prefix", affix = "Subterranean", "Socketed Skills deal 40% more Attack Damage", statOrder = { 473 }, level = 1, group = "SocketedAttacksDamageFinal", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "skill", "damage", "attack", "gem" }, }, + ["DelveWeaponSocketedAttacksDamageFinal2h1_"] = { type = "Prefix", affix = "Subterranean", "Socketed Skills deal 20% more Attack Damage", statOrder = { 473 }, level = 1, group = "SocketedAttacksDamageFinal", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "skill", "damage", "attack", "gem" }, }, + ["DelveBodyArmourSocketedSkillsSupportedByMaim1"] = { type = "Suffix", affix = "of the Underground", "Socketed Gems are Supported by Level 1 Maim", statOrder = { 275 }, level = 1, group = "SupportedByMaim", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "support", "gem" }, }, + ["DelveGlovesLocalDisplaySocketedSkillsAttackSpeed1"] = { type = "Suffix", affix = "of the Underground", "Socketed Skills have 18% increased Attack Speed", statOrder = { 488 }, level = 1, group = "SocketedSkillsAttackSpeed", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "attack", "speed", "gem" }, }, + ["DelveArmourLocalDisplaySocketedAttacksManaCost1_"] = { type = "Suffix", affix = "of the Underground", "Socketed Attacks have -15 to Total Mana Cost", statOrder = { 476 }, level = 1, group = "SocketedAttacksManaCost", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "boots", "helmet", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 0 }, modTags = { "skill", "resource", "mana", "attack", "gem" }, }, + ["DelveJewelAttackLeech1"] = { type = "Suffix", affix = "of the Underground", "0.3% of Attack Damage Leeched as Life", statOrder = { 1575 }, level = 1, group = "LifeLeechFromAttacksPermyriad", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resource", "life", "attack" }, }, + ["DelveWeaponManaRegeneratedIfYouveHitRecently1h1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.4% of Mana per second if you've Hit an Enemy Recently", statOrder = { 8032 }, level = 1, group = "ManaRegeneratedIfYouveHitRecently", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "resource", "mana" }, }, + ["DelveWeaponManaRegeneratedIfYouveHitRecently2h1_"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.8% of Mana per second if you've Hit an Enemy Recently", statOrder = { 8032 }, level = 1, group = "ManaRegeneratedIfYouveHitRecently", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, }, + ["DelveBodyDamageRemovedFromManaBeforeLife1_"] = { type = "Suffix", affix = "of the Underground", "(5-10)% of Damage is taken from Mana before Life", statOrder = { 2607 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "life", "mana" }, }, + ["DelveBodyDamageRemovedFromManaBeforeLifeNew1"] = { type = "Prefix", affix = "Subterranean", "(5-10)% of Damage is taken from Mana before Life", statOrder = { 2607 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "life", "mana" }, }, + ["DelveBootsManaRegenerationRateWhileMoving1"] = { type = "Suffix", affix = "of the Underground", "(50-70)% increased Mana Regeneration Rate while moving", statOrder = { 8044 }, level = 1, group = "ManaRegenerationRateWhileMoving", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, }, + ["DelveGlovesManaGainPerTarget1"] = { type = "Suffix", affix = "of the Underground", "Gain (2-4) Mana per Enemy Hit with Attacks", statOrder = { 1655 }, level = 1, group = "ManaGainPerTarget", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana", "attack" }, }, + ["DelveHelmBaseManaRegeneration1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.5% of Mana per second", statOrder = { 1492 }, level = 1, group = "BaseManaRegeneration", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, }, + ["DelveAmuletBeltManaRecoveryRate1"] = { type = "Suffix", affix = "of the Underground", "(8-12)% increased Mana Recovery rate", statOrder = { 1497 }, level = 1, group = "ManaRecoveryRate", weightKey = { "abyss_jewel", "jewel", "belt", "amulet", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "resource", "mana" }, }, + ["DelveRingManaCostReduction1"] = { type = "Suffix", affix = "of the Underground", "(4-6)% reduced Mana Cost of Skills", statOrder = { 1794 }, level = 1, group = "ManaCostReduction", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, }, + ["DelveQuiverIncreasedMana1"] = { type = "Suffix", affix = "of the Underground", "(20-30)% increased maximum Mana", statOrder = { 1491 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { "abyss_jewel", "jewel", "quiver", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, }, + ["DelveJewelDamageTakenGainedAsMana1"] = { type = "Suffix", affix = "of the Underground", "(2-3)% of Damage taken Recouped as Mana", statOrder = { 2364 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["DelveWeaponChanceToGainOnslaughtOnKill1h1_"] = { type = "Suffix", affix = "of the Underground", "10% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2902 }, level = 1, group = "ChanceToGainOnslaughtOnKill", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { }, }, + ["DelveWeaponChanceToGainOnslaughtOnKill2h1"] = { type = "Suffix", affix = "of the Underground", "20% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2902 }, level = 1, group = "ChanceToGainOnslaughtOnKill", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { }, }, + ["DelveBodyFrenzyChargeWhenHit1"] = { type = "Suffix", affix = "of the Underground", "(15-20)% chance to gain a Frenzy Charge when Hit", statOrder = { 4435 }, level = 1, group = "FrenzyChargeWhenHit", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "frenzy_charge" }, }, + ["DelveBootsMovementSpeedIfHitRecently1"] = { type = "Suffix", affix = "of the Underground", "(4-6)% increased Movement Speed if you've Hit an Enemy Recently", statOrder = { 9216 }, level = 1, group = "MovementSpeedIfHitRecently", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "speed" }, }, + ["DelveGlovesAttackAndCastSpeedIfHitRecently1"] = { type = "Suffix", affix = "of the Underground", "(5-10)% increased Attack and Cast Speed if you've Hit an Enemy Recently", statOrder = { 4713 }, level = 1, group = "AttackAndCastSpeedIfHitRecently", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "attack", "caster", "speed" }, }, + ["DelveHelmIgnoreArmourMovementPenalties1"] = { type = "Suffix", affix = "of the Underground", "Ignore all Movement Penalties from Armour", statOrder = { 2090 }, level = 1, group = "IgnoreArmourMovementPenalties", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "speed" }, }, + ["DelveAmuletCannotBeChilledOrFrozenWhileMoving1"] = { type = "Suffix", affix = "of the Underground", "Cannot be Chilled or Frozen while moving", statOrder = { 5289 }, level = 1, group = "CannotBeChilledOrFrozenWhileMoving", weightKey = { "abyss_jewel", "jewel", "amulet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["DelveBeltChanceToGainOnslaughtOnFlaskUse1"] = { type = "Suffix", affix = "of the Underground", "(15-20)% chance to gain Onslaught when you use a Flask", statOrder = { 5590 }, level = 1, group = "ChanceToGainOnslaughtOnFlaskUse", weightKey = { "abyss_jewel", "jewel", "belt", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "flask" }, }, + ["DelveRingCannotBeShockedWhileMoving1"] = { type = "Suffix", affix = "of the Underground", "Cannot be Shocked or Ignited while moving", statOrder = { 5305 }, level = 1, group = "CannotBeShockedOrIgnitedWhileMoving", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["DelveQuiverFrenzyChargeOnHittingRareOrUnique1"] = { type = "Suffix", affix = "of the Underground", "(3-5)% chance to gain a Frenzy Charge when you Hit a Rare or Unique Enemy", statOrder = { 6645 }, level = 1, group = "FrenzyChargeOnHittingRareOrUnique", weightKey = { "abyss_jewel", "jewel", "quiver", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "frenzy_charge" }, }, + ["DelveJewelChanceToGainOnslaughtOnFlaskUse1"] = { type = "Suffix", affix = "of the Underground", "(5-10)% chance to gain Onslaught when you use a Flask", statOrder = { 5590 }, level = 1, group = "ChanceToGainOnslaughtOnFlaskUse", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "flask" }, }, + ["DelveWeaponIncreasedDamageFromAuras1h1"] = { type = "Suffix", affix = "of the Underground", "Auras from your Skills grant 2% increased Damage to you and Allies", statOrder = { 3366 }, level = 1, group = "IncreasedDamageFromAuras", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "aura" }, }, + ["DelveWeaponIncreasedDamageFromAuras2h1"] = { type = "Suffix", affix = "of the Underground", "Auras from your Skills grant 4% increased Damage to you and Allies", statOrder = { 3366 }, level = 1, group = "IncreasedDamageFromAuras", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "aura" }, }, + ["DelveWeaponMinionDamage1h1_"] = { type = "Prefix", affix = "Subterranean", "Minions deal (30-44)% increased Damage", statOrder = { 1882 }, level = 1, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, }, + ["DelveWeaponMinionDamage1h2"] = { type = "Prefix", affix = "Subterranean", "Minions deal (45-59)% increased Damage", statOrder = { 1882 }, level = 25, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, }, + ["DelveWeaponMinionDamage1h3___"] = { type = "Prefix", affix = "Subterranean", "Minions deal (60-74)% increased Damage", statOrder = { 1882 }, level = 50, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "damage", "minion" }, }, + ["DelveWeaponMinionDamage1h4"] = { type = "Prefix", affix = "Subterranean", "Minions deal (75-80)% increased Damage", statOrder = { 1882 }, level = 75, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 500, 0 }, modTags = { "damage", "minion" }, }, + ["DelveWeaponMinionDamage2h1"] = { type = "Prefix", affix = "Subterranean", "Minions deal (51-70)% increased Damage", statOrder = { 1882 }, level = 1, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, }, + ["DelveWeaponMinionDamage2h2"] = { type = "Prefix", affix = "Subterranean", "Minions deal (71-90)% increased Damage", statOrder = { 1882 }, level = 25, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, }, + ["DelveWeaponMinionDamage2h3_"] = { type = "Prefix", affix = "Subterranean", "Minions deal (91-110)% increased Damage", statOrder = { 1882 }, level = 50, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "damage", "minion" }, }, + ["DelveWeaponMinionDamage2h4"] = { type = "Prefix", affix = "Subterranean", "Minions deal (111-130)% increased Damage", statOrder = { 1882 }, level = 75, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 500, 0 }, modTags = { "damage", "minion" }, }, + ["DelveGlovesMinionDamage1"] = { type = "Prefix", affix = "Subterranean", "Minions deal (20-30)% increased Damage", statOrder = { 1882 }, level = 1, group = "MinionDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, }, + ["DelveJewelryMinionRunSpeed1"] = { type = "Suffix", affix = "of the Underground", "Minions have (15-30)% increased Movement Speed", statOrder = { 1680 }, level = 74, group = "MinionRunSpeed", weightKey = { "abyss_jewel", "jewel", "quiver", "ring", "amulet", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "speed", "minion" }, }, + ["DelveArmourMinionLife1"] = { type = "Suffix", affix = "of the Underground", "Minions have (20-30)% increased maximum Life", statOrder = { 1677 }, level = 74, group = "MinionLife", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "resource", "life", "minion" }, }, + ["DelveBootsAdditionalSpectre1_"] = { type = "Suffix", affix = "of the Underground", "+1 to Level of all Raise Spectre Gems", statOrder = { 1527 }, level = 1, group = "MinionGlobalSkillLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "minion", "gem" }, }, + ["DelveBodyArmourAuraEffect1_"] = { type = "Suffix", affix = "of the Underground", "(20-25)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3474 }, level = 1, group = "AuraEffect", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "aura" }, }, + ["DelveHelmetReducedManaReserved1"] = { type = "Suffix", affix = "of the Underground", "(8-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 2141 }, level = 1, group = "ReducedReservation", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, }, + ["DelveHelmetManaReservationEfficiency1"] = { type = "Suffix", affix = "of the Underground", "10% increased Mana Reservation Efficiency of Skills", statOrder = { 2137 }, level = 1, group = "ManaReservationEfficiency", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, }, + ["DelveAbyssJewelMinionDamage1"] = { type = "Prefix", affix = "Subterranean", "Minions deal (14-16)% increased Damage", statOrder = { 1882 }, level = 1, group = "MinionDamage", weightKey = { "abyss_jewel", "default", }, weightVal = { 2000, 0 }, modTags = { "damage", "minion" }, }, ["DelveStrengthGemLevel1"] = { type = "Suffix", affix = "of the Underground", "+1 to Level of Socketed Strength Gems", statOrder = { 138 }, level = 1, group = "DelveStrengthGemLevel", weightKey = { "abyss_jewel", "jewel", "staff", "sceptre", "mace", "axe", "sword", "bow", "dagger", "claw", "wand", "str_armour", "int_armour", "dex_armour", "str_dex_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "unset_ring", "default", }, weightVal = { 0, 0, 1000, 1000, 1600, 1000, 1000, 750, 750, 750, 750, 1600, 750, 750, 1000, 1000, 750, 1000, 1000, 0 }, modTags = { "attribute", "gem" }, }, - ["DelveDexterityGemLevel1"] = { type = "Suffix", affix = "of the Underground", "+1 to Level of Socketed Dexterity Gems", statOrder = { 139 }, level = 1, group = "DelveDexterityGemLevel", weightKey = { "abyss_jewel", "jewel", "staff", "sceptre", "mace", "axe", "sword", "bow", "dagger", "claw", "wand", "str_armour", "int_armour", "dex_armour", "str_dex_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "unset_ring", "default", }, weightVal = { 0, 0, 750, 750, 750, 1000, 1000, 1600, 1000, 1000, 750, 750, 750, 1600, 1000, 750, 1000, 1000, 1000, 0 }, modTags = { "attribute", "gem" }, }, - ["DelveIntelligenceGemLevel1"] = { type = "Suffix", affix = "of the Underground", "+1 to Level of Socketed Intelligence Gems", statOrder = { 140 }, level = 1, group = "DelveIntelligenceGemLevel", weightKey = { "abyss_jewel", "jewel", "staff", "sceptre", "mace", "axe", "sword", "bow", "dagger", "claw", "wand", "str_armour", "int_armour", "dex_armour", "str_dex_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "unset_ring", "default", }, weightVal = { 0, 0, 1000, 1000, 750, 750, 750, 750, 1000, 1000, 1600, 750, 1600, 750, 750, 1000, 1000, 1000, 1000, 0 }, modTags = { "attribute", "gem" }, }, + ["DelveDexterityGemLevel1"] = { type = "Suffix", affix = "of the Underground", "+1 to Level of Socketed Dexterity Gems", statOrder = { 140 }, level = 1, group = "DelveDexterityGemLevel", weightKey = { "abyss_jewel", "jewel", "staff", "sceptre", "mace", "axe", "sword", "bow", "dagger", "claw", "wand", "str_armour", "int_armour", "dex_armour", "str_dex_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "unset_ring", "default", }, weightVal = { 0, 0, 750, 750, 750, 1000, 1000, 1600, 1000, 1000, 750, 750, 750, 1600, 1000, 750, 1000, 1000, 1000, 0 }, modTags = { "attribute", "gem" }, }, + ["DelveIntelligenceGemLevel1"] = { type = "Suffix", affix = "of the Underground", "+1 to Level of Socketed Intelligence Gems", statOrder = { 141 }, level = 1, group = "DelveIntelligenceGemLevel", weightKey = { "abyss_jewel", "jewel", "staff", "sceptre", "mace", "axe", "sword", "bow", "dagger", "claw", "wand", "str_armour", "int_armour", "dex_armour", "str_dex_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "unset_ring", "default", }, weightVal = { 0, 0, 1000, 1000, 750, 750, 750, 750, 1000, 1000, 1600, 750, 1600, 750, 750, 1000, 1000, 1000, 1000, 0 }, modTags = { "attribute", "gem" }, }, ["DelveAbyssJewelSocket1"] = { type = "Suffix", affix = "of the Underground", "Has 1 Abyssal Socket", statOrder = { 49 }, level = 1, group = "AbyssJewelSocket", weightKey = { "abyss_jewel", "jewel", "weapon", "helmet", "boots", "gloves", "body_armour", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 2000, 0 }, modTags = { }, }, - ["DelveWeaponVaalSoulCost1h1_"] = { type = "Suffix", affix = "of the Underground", "Non-Aura Vaal Skills require 20% reduced Souls Per Use", statOrder = { 9007 }, level = 1, group = "VaalSoulCost", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "vaal" }, }, - ["DelveWeaponVaalSoulCost2h1"] = { type = "Suffix", affix = "of the Underground", "Non-Aura Vaal Skills require 40% reduced Souls Per Use", statOrder = { 9007 }, level = 1, group = "VaalSoulCost", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "vaal" }, }, - ["DelveArmourVaalSoulsOnKill1_"] = { type = "Suffix", affix = "of the Underground", "(5-8)% chance to gain an additional Vaal Soul on Kill", statOrder = { 2970 }, level = 1, group = "AdditionalVaalSoulOnKill", weightKey = { "abyss_jewel", "jewel", "helmet", "body_armour", "boots", "shield", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 0 }, modTags = { "vaal" }, }, - ["DelveGlovesVaalSkillCriticalChance1"] = { type = "Suffix", affix = "of the Underground", "(80-120)% increased Vaal Skill Critical Strike Chance", statOrder = { 2973 }, level = 1, group = "VaalSkillCriticalStrikeChance", weightKey = { "abyss_jewel", "jewel", "quiver", "gloves", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "critical", "vaal" }, }, - ["DelveAmuletVaalSkillDuration1"] = { type = "Suffix", affix = "of the Underground", "(15-25)% increased Vaal Skill Effect Duration", statOrder = { 2971 }, level = 1, group = "VaalSkillDuration", weightKey = { "abyss_jewel", "jewel", "amulet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "vaal" }, }, - ["DelveJewelryVaalSkillDamage1"] = { type = "Suffix", affix = "of the Underground", "(20-40)% increased Damage with Vaal Skills", statOrder = { 2961 }, level = 1, group = "VaalSkillDamage", weightKey = { "abyss_jewel", "jewel", "belt", "ring", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "damage", "vaal" }, }, - ["DelveMapMonsterPacksVaalMapWorlds1"] = { type = "Prefix", affix = "Subterranean", "Area is inhabited by the Vaal", "Found Items have 10% chance to drop Corrupted in Area", statOrder = { 8325, 10267 }, level = 1, group = "MapMonsterPacksVaalMapWorlds", weightKey = { "map", "expedition_logbook", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, }, - ["ChaosNonAilmentDamageOverTimeMultiplier2h1"] = { type = "Prefix", affix = "Waning", "+(26-35)% to Chaos Damage over Time Multiplier", statOrder = { 1144 }, level = 4, group = "ChaosDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["ChaosNonAilmentDamageOverTimeMultiplier2h2"] = { type = "Prefix", affix = "Wasting", "+(36-45)% to Chaos Damage over Time Multiplier", statOrder = { 1144 }, level = 12, group = "ChaosDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["ChaosNonAilmentDamageOverTimeMultiplier2h3"] = { type = "Prefix", affix = "Deteriorating", "+(46-55)% to Chaos Damage over Time Multiplier", statOrder = { 1144 }, level = 36, group = "ChaosDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["ChaosNonAilmentDamageOverTimeMultiplier2h4"] = { type = "Prefix", affix = "Atrophying", "+(56-65)% to Chaos Damage over Time Multiplier", statOrder = { 1144 }, level = 64, group = "ChaosDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["ChaosNonAilmentDamageOverTimeMultiplier2h5"] = { type = "Prefix", affix = "Disintegrating", "+(66-75)% to Chaos Damage over Time Multiplier", statOrder = { 1144 }, level = 78, group = "ChaosDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["ChaosNonAilmentDamageOverTimeMultiplier1h1"] = { type = "Prefix", affix = "Waning", "+(14-18)% to Chaos Damage over Time Multiplier", statOrder = { 1144 }, level = 4, group = "ChaosDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["ChaosNonAilmentDamageOverTimeMultiplier1h2"] = { type = "Prefix", affix = "Wasting", "+(19-23)% to Chaos Damage over Time Multiplier", statOrder = { 1144 }, level = 12, group = "ChaosDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["ChaosNonAilmentDamageOverTimeMultiplier1h3___"] = { type = "Prefix", affix = "Deteriorating", "+(24-28)% to Chaos Damage over Time Multiplier", statOrder = { 1144 }, level = 36, group = "ChaosDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["ChaosNonAilmentDamageOverTimeMultiplier1h4"] = { type = "Prefix", affix = "Atrophying", "+(29-33)% to Chaos Damage over Time Multiplier", statOrder = { 1144 }, level = 64, group = "ChaosDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["ChaosNonAilmentDamageOverTimeMultiplier1h5"] = { type = "Prefix", affix = "Disintegrating", "+(34-38)% to Chaos Damage over Time Multiplier", statOrder = { 1144 }, level = 78, group = "ChaosDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["ChaosNonAilmentDamageOverTimeMultiplierUber1"] = { type = "Suffix", affix = "of the Elder", "+(11-15)% to Chaos Damage over Time Multiplier", statOrder = { 1144 }, level = 68, group = "ChaosDamageOverTimeMultiplier", weightKey = { "gloves_elder", "amulet_elder", "default", }, weightVal = { 200, 400, 0 }, modTags = { "dot_multi", "chaos_damage", "influence_mod", "damage", "chaos" }, }, - ["ChaosNonAilmentDamageOverTimeMultiplierUber2"] = { type = "Suffix", affix = "of the Elder", "+(16-20)% to Chaos Damage over Time Multiplier", statOrder = { 1144 }, level = 80, group = "ChaosDamageOverTimeMultiplier", weightKey = { "gloves_elder", "amulet_elder", "default", }, weightVal = { 200, 400, 0 }, modTags = { "dot_multi", "chaos_damage", "influence_mod", "damage", "chaos" }, }, - ["ColdDamageOverTimeMultiplier2h1_"] = { type = "Prefix", affix = "Inclement", "+(26-35)% to Cold Damage over Time Multiplier", statOrder = { 1141 }, level = 4, group = "ColdDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamageOverTimeMultiplier2h2_"] = { type = "Prefix", affix = "Bleak", "+(36-45)% to Cold Damage over Time Multiplier", statOrder = { 1141 }, level = 12, group = "ColdDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamageOverTimeMultiplier2h3"] = { type = "Prefix", affix = "Boreal", "+(46-55)% to Cold Damage over Time Multiplier", statOrder = { 1141 }, level = 36, group = "ColdDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamageOverTimeMultiplier2h4"] = { type = "Prefix", affix = "Gelid", "+(56-65)% to Cold Damage over Time Multiplier", statOrder = { 1141 }, level = 64, group = "ColdDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamageOverTimeMultiplier2h5"] = { type = "Prefix", affix = "Heartstopping", "+(66-75)% to Cold Damage over Time Multiplier", statOrder = { 1141 }, level = 78, group = "ColdDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamageOverTimeMultiplier1h1"] = { type = "Prefix", affix = "Inclement", "+(14-18)% to Cold Damage over Time Multiplier", statOrder = { 1141 }, level = 4, group = "ColdDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamageOverTimeMultiplier1h2"] = { type = "Prefix", affix = "Bleak", "+(19-23)% to Cold Damage over Time Multiplier", statOrder = { 1141 }, level = 12, group = "ColdDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamageOverTimeMultiplier1h3"] = { type = "Prefix", affix = "Boreal", "+(24-28)% to Cold Damage over Time Multiplier", statOrder = { 1141 }, level = 36, group = "ColdDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamageOverTimeMultiplier1h4"] = { type = "Prefix", affix = "Gelid", "+(29-33)% to Cold Damage over Time Multiplier", statOrder = { 1141 }, level = 64, group = "ColdDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamageOverTimeMultiplier1h5"] = { type = "Prefix", affix = "Heartstopping", "+(34-38)% to Cold Damage over Time Multiplier", statOrder = { 1141 }, level = 78, group = "ColdDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamageOverTimeMultiplierUber1"] = { type = "Suffix", affix = "of Shaping", "+(11-15)% to Cold Damage over Time Multiplier", statOrder = { 1141 }, level = 68, group = "ColdDamageOverTimeMultiplier", weightKey = { "gloves_shaper", "amulet_shaper", "default", }, weightVal = { 200, 400, 0 }, modTags = { "dot_multi", "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, }, - ["ColdDamageOverTimeMultiplierUber2_"] = { type = "Suffix", affix = "of Shaping", "+(16-20)% to Cold Damage over Time Multiplier", statOrder = { 1141 }, level = 80, group = "ColdDamageOverTimeMultiplier", weightKey = { "gloves_shaper", "amulet_shaper", "default", }, weightVal = { 200, 400, 0 }, modTags = { "dot_multi", "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, }, - ["FireDamageOverTimeMultiplier2h1"] = { type = "Prefix", affix = "Earnest", "+(26-35)% to Fire Damage over Time Multiplier", statOrder = { 1136 }, level = 4, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamageOverTimeMultiplier2h2"] = { type = "Prefix", affix = "Fervid", "+(36-45)% to Fire Damage over Time Multiplier", statOrder = { 1136 }, level = 12, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamageOverTimeMultiplier2h3"] = { type = "Prefix", affix = "Ardent", "+(46-55)% to Fire Damage over Time Multiplier", statOrder = { 1136 }, level = 36, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamageOverTimeMultiplier2h4"] = { type = "Prefix", affix = "Zealous", "+(56-65)% to Fire Damage over Time Multiplier", statOrder = { 1136 }, level = 64, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamageOverTimeMultiplier2h5__"] = { type = "Prefix", affix = "Fanatical", "+(66-75)% to Fire Damage over Time Multiplier", statOrder = { 1136 }, level = 78, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamageOverTimeMultiplier1h1"] = { type = "Prefix", affix = "Earnest", "+(14-18)% to Fire Damage over Time Multiplier", statOrder = { 1136 }, level = 4, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamageOverTimeMultiplier1h2"] = { type = "Prefix", affix = "Fervid", "+(19-23)% to Fire Damage over Time Multiplier", statOrder = { 1136 }, level = 12, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamageOverTimeMultiplier1h3"] = { type = "Prefix", affix = "Ardent", "+(24-28)% to Fire Damage over Time Multiplier", statOrder = { 1136 }, level = 36, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamageOverTimeMultiplier1h4"] = { type = "Prefix", affix = "Zealous", "+(29-33)% to Fire Damage over Time Multiplier", statOrder = { 1136 }, level = 64, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamageOverTimeMultiplier1h5"] = { type = "Prefix", affix = "Fanatical", "+(34-38)% to Fire Damage over Time Multiplier", statOrder = { 1136 }, level = 78, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, - ["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 = { 200, 400, 0 }, modTags = { "dot_multi", "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, - ["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 = { 200, 400, 0 }, modTags = { "dot_multi", "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, - ["PhysicalDamageOverTimeMultiplier2h1"] = { type = "Prefix", affix = "Seeping", "+(26-35)% to Physical Damage over Time Multiplier", statOrder = { 1132 }, level = 4, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, - ["PhysicalDamageOverTimeMultiplier2h2_"] = { type = "Prefix", affix = "Spilling", "+(36-45)% to Physical Damage over Time Multiplier", statOrder = { 1132 }, level = 12, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, - ["PhysicalDamageOverTimeMultiplier2h3"] = { type = "Prefix", affix = "Phlebotomising", "+(46-55)% to Physical Damage over Time Multiplier", statOrder = { 1132 }, level = 36, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, - ["PhysicalDamageOverTimeMultiplier2h4"] = { type = "Prefix", affix = "Hemorrhaging", "+(56-65)% to Physical Damage over Time Multiplier", statOrder = { 1132 }, level = 64, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, - ["PhysicalDamageOverTimeMultiplier2h5"] = { type = "Prefix", affix = "Exsanguinating", "+(66-75)% to Physical Damage over Time Multiplier", statOrder = { 1132 }, level = 78, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, - ["PhysicalDamageOverTimeMultiplier1h1"] = { type = "Prefix", affix = "Seeping", "+(14-18)% to Physical Damage over Time Multiplier", statOrder = { 1132 }, level = 4, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, - ["PhysicalDamageOverTimeMultiplier1h2_"] = { type = "Prefix", affix = "Spilling", "+(19-23)% to Physical Damage over Time Multiplier", statOrder = { 1132 }, level = 12, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, - ["PhysicalDamageOverTimeMultiplier1h3"] = { type = "Prefix", affix = "Phlebotomising", "+(24-28)% to Physical Damage over Time Multiplier", statOrder = { 1132 }, level = 36, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, - ["PhysicalDamageOverTimeMultiplier1h4_"] = { type = "Prefix", affix = "Hemorrhaging", "+(29-33)% to Physical Damage over Time Multiplier", statOrder = { 1132 }, level = 64, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, - ["PhysicalDamageOverTimeMultiplier1h5"] = { type = "Prefix", affix = "Exsanguinating", "+(34-38)% to Physical Damage over Time Multiplier", statOrder = { 1132 }, level = 78, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, - ["PhysicalDamageOverTimeMultiplierUber1"] = { type = "Suffix", affix = "of the Elder", "+(11-15)% to Physical Damage over Time Multiplier", statOrder = { 1132 }, level = 68, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "gloves_elder", "amulet_elder", "default", }, weightVal = { 200, 400, 0 }, modTags = { "dot_multi", "physical_damage", "influence_mod", "damage", "physical" }, }, - ["PhysicalDamageOverTimeMultiplierUber2__"] = { type = "Suffix", affix = "of the Elder", "+(16-20)% to Physical Damage over Time Multiplier", statOrder = { 1132 }, level = 80, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "gloves_elder", "amulet_elder", "default", }, weightVal = { 200, 400, 0 }, modTags = { "dot_multi", "physical_damage", "influence_mod", "damage", "physical" }, }, - ["GlobalDamageOverTimeMultiplier1h1"] = { type = "Suffix", affix = "of Acrimony", "+(7-11)% to Damage over Time Multiplier", statOrder = { 1127 }, level = 44, group = "GlobalDamageOverTimeMultiplier", weightKey = { "bow", "one_hand_weapon", "amulet", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "dot_multi", "damage" }, }, - ["GlobalDamageOverTimeMultiplier1h2_"] = { type = "Suffix", affix = "of Dispersion", "+(12-15)% to Damage over Time Multiplier", statOrder = { 1127 }, level = 55, group = "GlobalDamageOverTimeMultiplier", weightKey = { "bow", "one_hand_weapon", "amulet", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "dot_multi", "damage" }, }, - ["GlobalDamageOverTimeMultiplier1h3"] = { type = "Suffix", affix = "of Liquefaction", "+(16-19)% to Damage over Time Multiplier", statOrder = { 1127 }, level = 68, group = "GlobalDamageOverTimeMultiplier", weightKey = { "bow", "one_hand_weapon", "amulet", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "dot_multi", "damage" }, }, - ["GlobalDamageOverTimeMultiplier1h4"] = { type = "Suffix", affix = "of Melting", "+(20-23)% to Damage over Time Multiplier", statOrder = { 1127 }, level = 76, group = "GlobalDamageOverTimeMultiplier", weightKey = { "bow", "one_hand_weapon", "amulet", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "dot_multi", "damage" }, }, - ["GlobalDamageOverTimeMultiplier1h5"] = { type = "Suffix", affix = "of Dissolution", "+(24-26)% to Damage over Time Multiplier", statOrder = { 1127 }, level = 82, group = "GlobalDamageOverTimeMultiplier", weightKey = { "bow", "one_hand_weapon", "amulet", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "dot_multi", "damage" }, }, - ["GlobalDamageOverTimeMultiplier2h1__"] = { type = "Suffix", affix = "of Acrimony", "+(16-21)% to Damage over Time Multiplier", statOrder = { 1127 }, level = 44, group = "GlobalDamageOverTimeMultiplier", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 300, 0 }, modTags = { "dot_multi", "damage" }, }, - ["GlobalDamageOverTimeMultiplier2h2"] = { type = "Suffix", affix = "of Dispersion", "+(24-29)% to Damage over Time Multiplier", statOrder = { 1127 }, level = 55, group = "GlobalDamageOverTimeMultiplier", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 300, 0 }, modTags = { "dot_multi", "damage" }, }, - ["GlobalDamageOverTimeMultiplier2h3___"] = { type = "Suffix", affix = "of Liquefaction", "+(31-35)% to Damage over Time Multiplier", statOrder = { 1127 }, level = 68, group = "GlobalDamageOverTimeMultiplier", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 300, 0 }, modTags = { "dot_multi", "damage" }, }, - ["GlobalDamageOverTimeMultiplier2h4_"] = { type = "Suffix", affix = "of Melting", "+(36-40)% to Damage over Time Multiplier", statOrder = { 1127 }, level = 76, group = "GlobalDamageOverTimeMultiplier", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 300, 0 }, modTags = { "dot_multi", "damage" }, }, - ["GlobalDamageOverTimeMultiplier2h5____"] = { type = "Suffix", affix = "of Dissolution", "+(41-45)% to Damage over Time Multiplier", statOrder = { 1127 }, level = 82, group = "GlobalDamageOverTimeMultiplier", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 300, 0 }, modTags = { "dot_multi", "damage" }, }, - ["GlobalDamageOverTimeMultiplierEssence1_"] = { type = "Suffix", affix = "of the Essence", "+10% to Damage over Time Multiplier", statOrder = { 1127 }, level = 63, group = "GlobalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "damage" }, }, - ["GlobalDamageOverTimeMultiplierRingEssence1"] = { type = "Suffix", affix = "of the Essence", "+(12-15)% to Damage over Time Multiplier", statOrder = { 1127 }, level = 63, group = "GlobalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "damage" }, }, - ["GlobalDamageOverTimeMultiplierWithAttacks1h1"] = { type = "Suffix", affix = "of Acrimony", "+(7-11)% to Damage over Time Multiplier with Attack Skills", statOrder = { 1131 }, level = 44, group = "GlobalDamageOverTimeMultiplierWithAttacks", weightKey = { "quiver", "default", }, weightVal = { 300, 0 }, modTags = { "dot_multi", "damage", "attack" }, }, - ["GlobalDamageOverTimeMultiplierWithAttacks1h2___"] = { type = "Suffix", affix = "of Dispersion", "+(12-15)% to Damage over Time Multiplier with Attack Skills", statOrder = { 1131 }, level = 55, group = "GlobalDamageOverTimeMultiplierWithAttacks", weightKey = { "quiver", "default", }, weightVal = { 300, 0 }, modTags = { "dot_multi", "damage", "attack" }, }, - ["GlobalDamageOverTimeMultiplierWithAttacks1h3"] = { type = "Suffix", affix = "of Liquefaction", "+(16-19)% to Damage over Time Multiplier with Attack Skills", statOrder = { 1131 }, level = 68, group = "GlobalDamageOverTimeMultiplierWithAttacks", weightKey = { "quiver", "default", }, weightVal = { 300, 0 }, modTags = { "dot_multi", "damage", "attack" }, }, - ["GlobalDamageOverTimeMultiplierWithAttacks1h4_"] = { type = "Suffix", affix = "of Melting", "+(20-23)% to Damage over Time Multiplier with Attack Skills", statOrder = { 1131 }, level = 76, group = "GlobalDamageOverTimeMultiplierWithAttacks", weightKey = { "quiver", "default", }, weightVal = { 300, 0 }, modTags = { "dot_multi", "damage", "attack" }, }, - ["GlobalDamageOverTimeMultiplierWithAttacks1h5"] = { type = "Suffix", affix = "of Dissolution", "+(24-26)% to Damage over Time Multiplier with Attack Skills", statOrder = { 1131 }, level = 82, group = "GlobalDamageOverTimeMultiplierWithAttacks", weightKey = { "quiver", "default", }, weightVal = { 300, 0 }, modTags = { "dot_multi", "damage", "attack" }, }, - ["ChaosDamageOverTimeMultiplierTwoHand1_"] = { type = "Suffix", affix = "of Waning", "+(26-35)% to Chaos Damage over Time Multiplier", statOrder = { 1144 }, level = 4, group = "ChaosDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 400, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["ChaosDamageOverTimeMultiplierTwoHand2__"] = { type = "Suffix", affix = "of Wasting", "+(36-45)% to Chaos Damage over Time Multiplier", statOrder = { 1144 }, level = 12, group = "ChaosDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 300, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["ChaosDamageOverTimeMultiplierTwoHand3_"] = { type = "Suffix", affix = "of Deteriorating", "+(46-55)% to Chaos Damage over Time Multiplier", statOrder = { 1144 }, level = 36, group = "ChaosDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 200, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["ChaosDamageOverTimeMultiplierTwoHand4__"] = { type = "Suffix", affix = "of Atrophying", "+(56-65)% to Chaos Damage over Time Multiplier", statOrder = { 1144 }, level = 64, group = "ChaosDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["ChaosDamageOverTimeMultiplierTwoHand5___"] = { type = "Suffix", affix = "of Disintegrating", "+(66-75)% to Chaos Damage over Time Multiplier", statOrder = { 1144 }, level = 78, group = "ChaosDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 50, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["ChaosDamageOverTimeMultiplier1_"] = { type = "Suffix", affix = "of Waning", "+(14-18)% to Chaos Damage over Time Multiplier", statOrder = { 1144 }, level = 4, group = "ChaosDamageOverTimeMultiplier", weightKey = { "wand", "dagger", "default", }, weightVal = { 400, 400, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["ChaosDamageOverTimeMultiplier2"] = { type = "Suffix", affix = "of Wasting", "+(19-23)% to Chaos Damage over Time Multiplier", statOrder = { 1144 }, level = 12, group = "ChaosDamageOverTimeMultiplier", weightKey = { "wand", "dagger", "default", }, weightVal = { 300, 300, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["ChaosDamageOverTimeMultiplier3"] = { type = "Suffix", affix = "of Deteriorating", "+(24-28)% to Chaos Damage over Time Multiplier", statOrder = { 1144 }, level = 36, group = "ChaosDamageOverTimeMultiplier", weightKey = { "wand", "dagger", "default", }, weightVal = { 200, 200, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["ChaosDamageOverTimeMultiplier4"] = { type = "Suffix", affix = "of Atrophying", "+(29-33)% to Chaos Damage over Time Multiplier", statOrder = { 1144 }, level = 64, group = "ChaosDamageOverTimeMultiplier", weightKey = { "wand", "dagger", "default", }, weightVal = { 100, 100, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["ChaosDamageOverTimeMultiplier5"] = { type = "Suffix", affix = "of Disintegrating", "+(34-38)% to Chaos Damage over Time Multiplier", statOrder = { 1144 }, level = 78, group = "ChaosDamageOverTimeMultiplier", weightKey = { "wand", "dagger", "default", }, weightVal = { 50, 50, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["ColdDamageOverTimeMultiplierTwoHand1_"] = { type = "Suffix", affix = "of the Inclement", "+(26-35)% to Cold Damage over Time Multiplier", statOrder = { 1141 }, level = 4, group = "ColdDamageOverTimeMultiplier", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 400, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamageOverTimeMultiplierTwoHand2"] = { type = "Suffix", affix = "of the Bleak", "+(36-45)% to Cold Damage over Time Multiplier", statOrder = { 1141 }, level = 12, group = "ColdDamageOverTimeMultiplier", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamageOverTimeMultiplierTwoHand3"] = { type = "Suffix", affix = "of the Boreal", "+(46-55)% to Cold Damage over Time Multiplier", statOrder = { 1141 }, level = 36, group = "ColdDamageOverTimeMultiplier", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 200, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamageOverTimeMultiplierTwoHand4"] = { type = "Suffix", affix = "of the Gelid", "+(56-65)% to Cold Damage over Time Multiplier", statOrder = { 1141 }, level = 64, group = "ColdDamageOverTimeMultiplier", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamageOverTimeMultiplierTwoHand5"] = { type = "Suffix", affix = "of Heartstopping", "+(66-75)% to Cold Damage over Time Multiplier", statOrder = { 1141 }, level = 78, group = "ColdDamageOverTimeMultiplier", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 50, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamageOverTimeMultiplier1"] = { type = "Suffix", affix = "of the Inclement", "+(14-18)% to Cold Damage over Time Multiplier", statOrder = { 1141 }, level = 4, group = "ColdDamageOverTimeMultiplier", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 300, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamageOverTimeMultiplier2"] = { type = "Suffix", affix = "of the Bleak", "+(19-23)% to Cold Damage over Time Multiplier", statOrder = { 1141 }, level = 12, group = "ColdDamageOverTimeMultiplier", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 220, 220, 220, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamageOverTimeMultiplier3"] = { type = "Suffix", affix = "of the Boreal", "+(24-28)% to Cold Damage over Time Multiplier", statOrder = { 1141 }, level = 36, group = "ColdDamageOverTimeMultiplier", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 140, 140, 140, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamageOverTimeMultiplier4"] = { type = "Suffix", affix = "of the Gelid", "+(29-33)% to Cold Damage over Time Multiplier", statOrder = { 1141 }, level = 64, group = "ColdDamageOverTimeMultiplier", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 70, 70, 70, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamageOverTimeMultiplier5"] = { type = "Suffix", affix = "of Heartstopping", "+(34-38)% to Cold Damage over Time Multiplier", statOrder = { 1141 }, level = 78, group = "ColdDamageOverTimeMultiplier", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 35, 35, 35, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["FireDamageOverTimeMultiplierTwoHand1_"] = { type = "Suffix", affix = "of the Earnest", "+(26-35)% to Fire Damage over Time Multiplier", statOrder = { 1136 }, level = 4, group = "FireDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 400, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamageOverTimeMultiplierTwoHand2_"] = { type = "Suffix", affix = "of the Fervid", "+(36-45)% to Fire Damage over Time Multiplier", statOrder = { 1136 }, level = 12, group = "FireDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamageOverTimeMultiplierTwoHand3"] = { type = "Suffix", affix = "of the Ardent", "+(46-55)% to Fire Damage over Time Multiplier", statOrder = { 1136 }, level = 36, group = "FireDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 200, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamageOverTimeMultiplierTwoHand4"] = { type = "Suffix", affix = "of the Zealous", "+(56-65)% to Fire Damage over Time Multiplier", statOrder = { 1136 }, level = 64, group = "FireDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamageOverTimeMultiplierTwoHand5_"] = { type = "Suffix", affix = "of the Fanatical", "+(66-75)% to Fire Damage over Time Multiplier", statOrder = { 1136 }, level = 78, group = "FireDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 50, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamageOverTimeMultiplier1"] = { type = "Suffix", affix = "of the Earnest", "+(14-18)% to Fire Damage over Time Multiplier", statOrder = { 1136 }, level = 4, group = "FireDamageOverTimeMultiplier", weightKey = { "wand", "sceptre", "default", }, weightVal = { 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamageOverTimeMultiplier2"] = { type = "Suffix", affix = "of the Fervid", "+(19-23)% to Fire Damage over Time Multiplier", statOrder = { 1136 }, level = 12, group = "FireDamageOverTimeMultiplier", weightKey = { "wand", "sceptre", "default", }, weightVal = { 220, 220, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamageOverTimeMultiplier3"] = { type = "Suffix", affix = "of the Ardent", "+(24-28)% to Fire Damage over Time Multiplier", statOrder = { 1136 }, level = 36, group = "FireDamageOverTimeMultiplier", weightKey = { "wand", "sceptre", "default", }, weightVal = { 140, 140, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamageOverTimeMultiplier4__"] = { type = "Suffix", affix = "of the Zealous", "+(29-33)% to Fire Damage over Time Multiplier", statOrder = { 1136 }, level = 64, group = "FireDamageOverTimeMultiplier", weightKey = { "wand", "sceptre", "default", }, weightVal = { 70, 70, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamageOverTimeMultiplier5"] = { type = "Suffix", affix = "of the Fanatical", "+(34-38)% to Fire Damage over Time Multiplier", statOrder = { 1136 }, level = 78, group = "FireDamageOverTimeMultiplier", weightKey = { "wand", "sceptre", "default", }, weightVal = { 35, 35, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, - ["PhysicalDamageOverTimeMultiplierTwoHand1"] = { type = "Suffix", affix = "of Seeping", "+(26-35)% to Physical Damage over Time Multiplier", statOrder = { 1132 }, level = 4, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 400, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, - ["PhysicalDamageOverTimeMultiplierTwoHand2"] = { type = "Suffix", affix = "of Spilling", "+(36-45)% to Physical Damage over Time Multiplier", statOrder = { 1132 }, level = 12, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 300, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, - ["PhysicalDamageOverTimeMultiplierTwoHand3"] = { type = "Suffix", affix = "of Phlebotomising", "+(46-55)% to Physical Damage over Time Multiplier", statOrder = { 1132 }, level = 36, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 200, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, - ["PhysicalDamageOverTimeMultiplierTwoHand4"] = { type = "Suffix", affix = "of Hemorrhaging", "+(56-65)% to Physical Damage over Time Multiplier", statOrder = { 1132 }, level = 64, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, - ["PhysicalDamageOverTimeMultiplierTwoHand5"] = { type = "Suffix", affix = "of Exsanguinating", "+(66-75)% to Physical Damage over Time Multiplier", statOrder = { 1132 }, level = 78, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 50, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, - ["PhysicalDamageOverTimeMultiplier1__"] = { type = "Suffix", affix = "of Seeping", "+(14-18)% to Physical Damage over Time Multiplier", statOrder = { 1132 }, level = 4, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "wand", "default", }, weightVal = { 300, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, - ["PhysicalDamageOverTimeMultiplier2"] = { type = "Suffix", affix = "of Spilling", "+(19-23)% to Physical Damage over Time Multiplier", statOrder = { 1132 }, level = 12, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "wand", "default", }, weightVal = { 220, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, - ["PhysicalDamageOverTimeMultiplier3__"] = { type = "Suffix", affix = "of Phlebotomising", "+(24-28)% to Physical Damage over Time Multiplier", statOrder = { 1132 }, level = 36, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "wand", "default", }, weightVal = { 140, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, - ["PhysicalDamageOverTimeMultiplier4"] = { type = "Suffix", affix = "of Hemorrhaging", "+(29-33)% to Physical Damage over Time Multiplier", statOrder = { 1132 }, level = 64, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "wand", "default", }, weightVal = { 70, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, - ["PhysicalDamageOverTimeMultiplier5"] = { type = "Suffix", affix = "of Exsanguinating", "+(34-38)% to Physical Damage over Time Multiplier", statOrder = { 1132 }, level = 78, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "wand", "default", }, weightVal = { 35, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, - ["IncreasedLifeEnhancedLevel50Mod_"] = { type = "Prefix", affix = "Guatelitzi's", "+(70-79) to maximum Life", "2% increased maximum Life", statOrder = { 1451, 1453 }, level = 50, group = "IncreasedLifeAndPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, - ["IncreasedLifeEnhancedLevel50BodyMod"] = { type = "Prefix", affix = "Guatelitzi's", "+(110-119) to maximum Life", "(8-10)% increased maximum Life", statOrder = { 1451, 1453 }, level = 50, group = "IncreasedLifeAndPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, - ["IncreasedManaEnhancedLevel50ModPercent"] = { type = "Prefix", affix = "Xopec's", "+(69-73) to maximum Mana", "(7-10)% increased maximum Mana", statOrder = { 1461, 1462 }, level = 50, group = "IncreasedManaAndPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaEnhancedLevel50ModOnHit"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "Gain (2-3) Mana per Enemy Hit with Attacks", statOrder = { 1461, 1625 }, level = 50, group = "IncreasedManaAndOnHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "attack" }, }, - ["IncreasedManaEnhancedLevel50ModRegen"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "Regenerate (5-7) Mana per second", statOrder = { 1461, 1464 }, level = 50, group = "IncreasedManaAndRegen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaEnhancedLevel50ModReservation_"] = { type = "Prefix", affix = "Xopec's", "+(69-73) to maximum Mana", "(6-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 1461, 2109 }, level = 50, group = "IncreasedManaAndReservation", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaEnhancedLevel50ModCost"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "-(8-6) to Total Mana Cost of Skills", statOrder = { 1461, 1772 }, level = 50, group = "IncreasedManaAndCost", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaEnhancedLevel50ModCostNew"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "Non-Channelling Skills have -(8-6) to Total Mana Cost", statOrder = { 1461, 9549 }, level = 50, group = "IncreasedManaAndCostNew", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedEnergyShieldEnhancedLevel50ModES_"] = { type = "Prefix", affix = "Guatelitzi's", "+(44-47) to maximum Energy Shield", "3% increased maximum Energy Shield", statOrder = { 1440, 1443 }, level = 50, group = "EnergyShieldAndPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, - ["IncreasedEnergyShieldEnhancedLevel50ModRegen"] = { type = "Prefix", affix = "Guatelitzi's", "+(44-47) to maximum Energy Shield", "Regenerate 0.4% of Energy Shield per second", statOrder = { 1440, 2521 }, level = 50, group = "EnergyShieldAndRegen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, - ["AddedFireDamageEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "Adds (5-7) to (11-13) Fire Damage to Attacks", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1244, 1834 }, level = 50, group = "FireDamagePhysConvertedToFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire", "attack" }, }, - ["AddedColdDamageEnhancedLevel50Mod_"] = { type = "Prefix", affix = "Topotante's", "Adds (5-7) to (10-12) Cold Damage to Attacks", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1253, 1836 }, level = 50, group = "ColdDamagePhysConvertedToCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold", "attack" }, }, - ["AddedLightningDamageEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "Adds (1-2) to (22-23) Lightning Damage to Attacks", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1264, 1838 }, level = 50, group = "LightningDamagePhysConvertedToLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning", "attack" }, }, - ["LocalIncreasedPhysicalDamageEnhancedLevel50Mod"] = { type = "Prefix", affix = "Tacati's", "(155-169)% increased Physical Damage", "Gain (3-5)% of Physical Damage as Extra Chaos Damage", statOrder = { 1117, 1814 }, level = 50, group = "LocalPhysicalDamagePercentAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos", "attack" }, }, - ["LocalAddedFireDamageEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "Adds (45-61) to (91-106) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1246, 3625 }, level = 50, group = "LocalFireDamageAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["LocalAddedFireDamageEnhancedLevel50TwoHandMod"] = { type = "Prefix", affix = "Topotante's", "Adds (79-106) to (159-186) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1246, 3625 }, level = 50, group = "LocalFireDamageTwoHandAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["LocalAddedColdDamageEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "Adds (37-50) to (74-87) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1255, 3626 }, level = 50, group = "LocalColdDamageAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["LocalAddedColdDamageEnhancedLevel50TwoHandMod"] = { type = "Prefix", affix = "Topotante's", "Adds (65-87) to (130-152) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1255, 3626 }, level = 50, group = "LocalColdDamageTwoHandAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["LocalAddedLightningDamageEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "Adds (4-13) to (158-166) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1266, 3627 }, level = 50, group = "LocalLightningDamageAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["LocalAddedLightningDamageEnhancedLevel50TwoHandMod"] = { type = "Prefix", affix = "Topotante's", "Adds (7-22) to (275-290) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1266, 3627 }, level = 50, group = "LocalLightningDamageTwoHandAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["MovementVelocityEnhancedLevel50ModSpeed"] = { type = "Prefix", affix = "Matatl's", "30% increased Movement Speed", "5% increased Movement Speed if you haven't been Hit Recently", statOrder = { 1679, 3109 }, level = 50, group = "MovementVelocitySpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, - ["MovementVelocityEnhancedLevel50ModDodge"] = { type = "Prefix", affix = "Matatl's", "30% increased Movement Speed", "(10-15)% chance to Avoid Bleeding", statOrder = { 1679, 4077 }, level = 50, group = "MovementVelocityDodge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, - ["MovementVelocityEnhancedLevel50ModSpellDodge__"] = { type = "Prefix", affix = "Matatl's", "30% increased Movement Speed", "(10-15)% chance to Avoid being Poisoned", statOrder = { 1679, 1730 }, level = 50, group = "MovementVelocitySpellDodge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, - ["SpellDamageOnWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Tacati's", "(70-74)% increased Spell Damage", "Gain 5% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 1108, 9009 }, level = 50, group = "WeaponSpellDamageAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["SpellDamageOnTwoHandWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Tacati's", "(105-110)% increased Spell Damage", "Gain 5% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 1108, 9009 }, level = 50, group = "WeaponSpellDamageAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["TrapDamageOnWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Matatl's", "(90-95)% increased Trap Damage", statOrder = { 1079 }, level = 50, group = "TrapDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, }, - ["TrapDamageOnTwoHandWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Matatl's", "(133-138)% increased Trap Damage", statOrder = { 1079 }, level = 50, group = "TrapDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, }, - ["MineDamageOnWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Matatl's", "(90-95)% increased Mine Damage", statOrder = { 1081 }, level = 50, group = "MineDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, }, - ["MineDamageOnTwoHandWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Matatl's", "(133-138)% increased Mine Damage", statOrder = { 1081 }, level = 50, group = "MineDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, }, - ["TrapThrowSpeedEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Matatl", "(20-22)% increased Trap Throwing Speed", statOrder = { 1806 }, level = 50, group = "TrapThrowSpeedOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, - ["TrapThrowSpeedTwoHandEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Matatl", "(30-33)% increased Trap Throwing Speed", statOrder = { 1806 }, level = 50, group = "TrapThrowSpeedOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, - ["MineThrowSpeedEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Matatl", "(20-22)% increased Mine Throwing Speed", statOrder = { 1807 }, level = 50, group = "MineLayingSpeedOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, - ["MineThrowSpeedTwoHandEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Matatl", "(30-33)% increased Mine Throwing Speed", statOrder = { 1807 }, level = 50, group = "MineLayingSpeedOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, - ["TrapCooldownRecoveryAndDurationEnhancedLevel50Mod__"] = { type = "Suffix", affix = "of Matatl", "(17-20)% increased Trap Duration", "(14-15)% increased Cooldown Recovery Rate for throwing Traps", statOrder = { 1802, 3324 }, level = 50, group = "TrapCooldownRecoveryAndDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["TrapCooldownRecoveryAndDurationTwoHandEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Matatl", "(26-30)% increased Trap Duration", "(21-22)% increased Cooldown Recovery Rate for throwing Traps", statOrder = { 1802, 3324 }, level = 50, group = "TrapCooldownRecoveryAndDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["MineDetonationSpeedAndDurationEnhancedLevel50Mod_"] = { type = "Suffix", affix = "of Matatl", "(17-20)% increased Mine Duration", "Mines have (14-15)% increased Detonation Speed", statOrder = { 1803, 8762 }, level = 50, group = "MineDetonationSpeedAndDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, - ["MineDetonationSpeedAndDurationTwoHandEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Matatl", "(26-30)% increased Mine Duration", "Mines have (21-22)% increased Detonation Speed", statOrder = { 1803, 8762 }, level = 50, group = "MineDetonationSpeedAndDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, - ["TrapAreaOfEffectEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Matatl", "Skills used by Traps have (22-25)% increased Area of Effect", statOrder = { 3342 }, level = 50, group = "TrapAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["TrapAreaOfEffectTwoHandEnhancedLevel50Mod_"] = { type = "Suffix", affix = "of Matatl", "Skills used by Traps have (33-37)% increased Area of Effect", statOrder = { 3342 }, level = 50, group = "TrapAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["MineAreaOfEffectEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Matatl", "Skills used by Mines have (22-25)% increased Area of Effect", statOrder = { 8759 }, level = 50, group = "MineAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["MineAreaOfEffectTwoHandEnhancedLevel50Mod_"] = { type = "Suffix", affix = "of Matatl", "Skills used by Mines have (33-37)% increased Area of Effect", statOrder = { 8759 }, level = 50, group = "MineAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["LocalIncreaseSocketedTrapGemLevelEnhancedLevel50Mod_"] = { type = "Prefix", affix = "Matatl's", "+2 to Level of Socketed Trap or Mine Gems", statOrder = { 166 }, level = 50, group = "IncreasedSocketedTrapOrMineGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "gem" }, }, - ["MinionDamageOnWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Citaqualotl's", "Minions deal (90-95)% increased Damage", statOrder = { 1852 }, level = 50, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageOnTwoHandWeaponEnhancedLevel50Mod_"] = { type = "Prefix", affix = "Citaqualotl's", "Minions deal (133-138)% increased Damage", statOrder = { 1852 }, level = 50, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageOnWeaponEnhancedLevel50ModNew"] = { type = "Prefix", affix = "Citaqualotl's", "Minions deal (50-66)% increased Damage", "Minions have 5% chance to deal Double Damage", statOrder = { 1852, 8820 }, level = 50, group = "MinionDamageOnWeaponDoubleDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageOnTwoHandWeaponEnhancedLevel50ModNew"] = { type = "Prefix", affix = "Citaqualotl's", "Minions deal (85-94)% increased Damage", "Minions have 5% chance to deal Double Damage", statOrder = { 1852, 8820 }, level = 50, group = "MinionDamageOnWeaponDoubleDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, - ["MinionAttackAndCastSpeedEnhancedLevel50Mod_"] = { type = "Suffix", affix = "of Citaqualotl", "Minions have (25-28)% increased Attack Speed", "Minions have (25-28)% increased Cast Speed", statOrder = { 2781, 2782 }, level = 50, group = "MinionAttackAndCastSpeedOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, - ["MinionAttackAndCastSpeedTwoHandEnhancedLevel50Mod_"] = { type = "Suffix", affix = "of Citaqualotl", "Minions have (36-40)% increased Attack Speed", "Minions have (36-40)% increased Cast Speed", statOrder = { 2781, 2782 }, level = 50, group = "MinionAttackAndCastSpeedOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, - ["MinionDurationEnhancedLevel50Mod_"] = { type = "Suffix", affix = "of Citaqualotl", "(17-20)% increased Minion Duration", statOrder = { 4847 }, level = 50, group = "MinionDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, }, - ["MinionDurationTwoHandedEnhancedLevel50Mod_"] = { type = "Suffix", affix = "of Citaqualotl", "(27-30)% increased Minion Duration", statOrder = { 4847 }, level = 50, group = "MinionDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, }, - ["LocalIncreaseSocketedMinionGemLevelEnhancedLevel50Mod"] = { type = "Prefix", affix = "Citaqualotl's", "+2 to Level of Socketed Minion Gems", statOrder = { 159 }, level = 50, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion", "gem" }, }, - ["FireDamagePrefixOnWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "(75-79)% increased Fire Damage", "Adds (15-20) to (30-35) Fire Damage to Spells", statOrder = { 1241, 1288 }, level = 50, group = "FireDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["FireDamagePrefixOnTwoHandWeaponEnhancedLevel50Mod__"] = { type = "Prefix", affix = "Topotante's", "(111-115)% increased Fire Damage", "Adds (20-27) to (41-48) Fire Damage to Spells", statOrder = { 1241, 1288 }, level = 50, group = "TwoHandFireDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["ColdDamagePrefixOnWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "(75-79)% increased Cold Damage", "Adds (12-16) to (25-29) Cold Damage to Spells", statOrder = { 1250, 1289 }, level = 50, group = "ColdDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["ColdDamagePrefixOnTwoHandWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "(111-115)% increased Cold Damage", "Adds (19-25) to (37-44) Cold Damage to Spells", statOrder = { 1250, 1289 }, level = 50, group = "TwoHandColdDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["LightningDamagePrefixOnWeaponEnhancedLevel50Mod_"] = { type = "Prefix", affix = "Topotante's", "(75-79)% increased Lightning Damage", "Adds (1-4) to (53-56) Lightning Damage to Spells", statOrder = { 1261, 1290 }, level = 50, group = "LightningDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["LightningDamagePrefixOnTwoHandWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "(111-115)% increased Lightning Damage", "Adds (2-6) to (79-84) Lightning Damage to Spells", statOrder = { 1261, 1290 }, level = 50, group = "TwoHandLightningDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["IncreasedCastSpeedEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Tacati", "Adds (17-24) to (36-40) Chaos Damage to Spells", "(29-32)% increased Cast Speed", statOrder = { 1291, 1330 }, level = 50, group = "IncreasedCastSpeedAddedChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster", "speed" }, }, - ["IncreasedCastSpeedTwoHandEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Tacati", "Adds (24-32) to (49-57) Chaos Damage to Spells", "(44-49)% increased Cast Speed", statOrder = { 1291, 1330 }, level = 50, group = "IncreasedCastSpeedAddedChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster", "speed" }, }, - ["LocalIncreasedAttackSpeedEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Tacati", "Adds (23-36) to (49-61) Chaos Damage", "(26-27)% increased Attack Speed", statOrder = { 1274, 1297 }, level = 50, group = "LocalIncreasedAttackSpeedAddedChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack", "speed" }, }, - ["LocalIncreasedAttackSpeedRangedEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Tacati", "Adds (23-36) to (49-61) Chaos Damage", "(14-16)% increased Attack Speed", statOrder = { 1274, 1297 }, level = 50, group = "LocalIncreasedAttackSpeedAddedChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack", "speed" }, }, - ["LifeRegenerationEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Guatelitzi", "Regenerate (32-40) Life per second", "Regenerate 0.4% of Life per second", statOrder = { 1456, 1823 }, level = 50, group = "LifeRegenerationAndPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, - ["FireResistEnhancedLevel50ModPhys"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Fire Resistance", "(3-5)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 1507, 2323 }, level = 50, group = "FireResistancePhysTakenAsFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "fire", "resistance" }, }, - ["ColdResistEnhancedLevel50ModPhys_"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Cold Resistance", "(3-5)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 1513, 2324 }, level = 50, group = "ColdResistancePhysTakenAsCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "cold", "resistance" }, }, - ["LightningResistEnhancedLevel50ModPhys"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Lightning Resistance", "(3-5)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 1518, 2325 }, level = 50, group = "LightningResistancePhysTakenAsLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "lightning", "resistance" }, }, - ["FireResistEnhancedLevel50ModLeech"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Fire Resistance", "0.4% of Fire Damage Leeched as Life", statOrder = { 1507, 1551 }, level = 50, group = "FireResistanceLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "fire", "resistance" }, }, - ["ColdResistEnhancedLevel50ModLeech"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Cold Resistance", "0.4% of Cold Damage Leeched as Life", statOrder = { 1513, 1556 }, level = 50, group = "ColdResistanceLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "cold", "resistance" }, }, - ["LightningResistEnhancedLevel50ModLeech"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Lightning Resistance", "0.4% of Lightning Damage Leeched as Life", statOrder = { 1518, 1560 }, level = 50, group = "LightningResistanceLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "lightning", "resistance" }, }, - ["FireResistEnhancedLevel50ModAilments_"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Fire Resistance", "(45-52) to (75-78) added Fire Damage against Burning Enemies", statOrder = { 1507, 9801 }, level = 50, group = "FireResistanceAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "resistance" }, }, - ["ColdResistEnhancedLevel50ModAilments"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Cold Resistance", "(30-50)% increased Damage with Hits against Chilled Enemies", statOrder = { 1513, 5770 }, level = 50, group = "ColdResistanceAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "resistance" }, }, - ["LightningResistEnhancedLevel50ModAilments"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Lightning Resistance", "(40-60)% increased Critical Strike Chance against Shocked Enemies", statOrder = { 1518, 5617 }, level = 50, group = "LightningResistanceAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "resistance", "critical" }, }, - ["ChaosResistEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Tacati", "+(31-35)% to Chaos Resistance", "(5-7)% reduced Chaos Damage taken over time", statOrder = { 1522, 1827 }, level = 50, group = "ChaosResistanceDamageOverTime", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "resistance" }, }, - ["PoisonDurationEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Tacati", "(26-30)% increased Chaos Damage", "(13-18)% increased Poison Duration", statOrder = { 1269, 3036 }, level = 50, group = "PoisonDurationChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["ChanceToPoisonEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Tacati", "(26-30)% increased Chaos Damage", "30% chance to Poison on Hit", statOrder = { 1269, 7593 }, level = 50, group = "LocalChanceToPoisonOnHitChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "attack", "ailment" }, }, - ["PoisonDamageEnhancedLevel50AttacksMod_"] = { type = "Suffix", affix = "of Tacati", "Adds (23-36) to (49-61) Chaos Damage", "(31-35)% increased Damage with Poison", statOrder = { 1274, 3047 }, level = 50, group = "PoisonDamageAddedChaosToAttacks", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "attack", "ailment" }, }, - ["PoisonDamageEnhancedLevel50SpellsMod"] = { type = "Suffix", affix = "of Tacati", "Adds (17-24) to (36-40) Chaos Damage to Spells", "(31-35)% increased Damage with Poison", statOrder = { 1291, 3047 }, level = 50, group = "PoisonDamageAddedChaosToSpells", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "poison", "damage", "chaos", "caster", "ailment" }, }, - ["SynthesisImplicitLife1"] = { type = "Synthesis", affix = "", "+(8-10) to maximum Life", statOrder = { 1451 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, - ["SynthesisImplicitLife2"] = { type = "Synthesis", affix = "", "+(11-14) to maximum Life", statOrder = { 1451 }, level = 15, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, - ["SynthesisImplicitLife3"] = { type = "Synthesis", affix = "", "+(15-19) to maximum Life", statOrder = { 1451 }, level = 24, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, - ["SynthesisImplicitLife4_"] = { type = "Synthesis", affix = "", "+(20-24) to maximum Life", statOrder = { 1451 }, level = 36, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, - ["SynthesisImplicitLife5"] = { type = "Synthesis", affix = "", "+(25-30) to maximum Life", statOrder = { 1451 }, level = 48, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, - ["SynthesisImplicitLifeJewel1"] = { type = "Synthesis", affix = "", "+(3-4) to maximum Life", statOrder = { 1451 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, - ["SynthesisImplicitLifeJewel2"] = { type = "Synthesis", affix = "", "+(5-6) to maximum Life", statOrder = { 1451 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, - ["SynthesisImplicitPercentLife1_"] = { type = "Synthesis", affix = "", "4% increased maximum Life", statOrder = { 1453 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, - ["SynthesisImplicitPercentLife2"] = { type = "Synthesis", affix = "", "(5-6)% increased maximum Life", statOrder = { 1453 }, level = 15, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, - ["SynthesisImplicitPercentLife3"] = { type = "Synthesis", affix = "", "(8-10)% increased maximum Life", statOrder = { 1453 }, level = 24, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, - ["SynthesisImplicitPercentLifeTrinket1__"] = { type = "Synthesis", affix = "", "4% increased maximum Life", statOrder = { 1453 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, - ["SynthesisImplicitPercentLifeTrinket2"] = { type = "Synthesis", affix = "", "(5-6)% increased maximum Life", statOrder = { 1453 }, level = 15, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, - ["SynthesisImplicitPercentLifeTrinket3"] = { type = "Synthesis", affix = "", "(7-8)% increased maximum Life", statOrder = { 1453 }, level = 24, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, - ["SynthesisImplicitLifeRegen1_"] = { type = "Synthesis", affix = "", "Regenerate (5-7) Life per second", statOrder = { 1456 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, }, - ["SynthesisImplicitLifeRegen2_"] = { type = "Synthesis", affix = "", "Regenerate (7-11.7) Life per second", statOrder = { 1456 }, level = 15, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, }, - ["SynthesisImplicitLifeRegen3"] = { type = "Synthesis", affix = "", "Regenerate (11.7-18.3) Life per second", statOrder = { 1456 }, level = 24, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, }, - ["SynthesisImplicitLifeRegen4"] = { type = "Synthesis", affix = "", "Regenerate (18.4-26.7) Life per second", statOrder = { 1456 }, level = 36, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, }, - ["SynthesisImplicitLifeRegen5_"] = { type = "Synthesis", affix = "", "Regenerate (26.7-40) Life per second", statOrder = { 1456 }, level = 48, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, }, - ["SynthesisImplicitHighLifeRegen1"] = { type = "Synthesis", affix = "", "Regenerate (80-100) Life per second", statOrder = { 1456 }, level = 56, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, }, - ["SynthesisImplicitPercentLifeRegen1"] = { type = "Synthesis", affix = "", "Regenerate (0.6-0.7)% of Life per second", statOrder = { 1823 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, - ["SynthesisImplicitPercentLifeRegen2"] = { type = "Synthesis", affix = "", "Regenerate (0.8-0.93)% of Life per second", statOrder = { 1823 }, level = 15, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, - ["SynthesisImplicitPercentLifeRegen3"] = { type = "Synthesis", affix = "", "Regenerate 1% of Life per second", statOrder = { 1823 }, level = 24, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, - ["SynthesisImplicitPercentLifeRegenJewel1"] = { type = "Synthesis", affix = "", "Regenerate 0.2% of Life per second", statOrder = { 1823 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, - ["SynthesisImplicitLifeLeech1"] = { type = "Synthesis", affix = "", "0.2% of Physical Attack Damage Leeched as Life", statOrder = { 1530 }, level = 1, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, }, - ["SynthesisImplicitLifeLeech2_"] = { type = "Synthesis", affix = "", "0.3% of Physical Attack Damage Leeched as Life", statOrder = { 1530 }, level = 15, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, }, - ["SynthesisImplicitLifeLeech3"] = { type = "Synthesis", affix = "", "0.4% of Physical Attack Damage Leeched as Life", statOrder = { 1530 }, level = 24, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, }, - ["SynthesisImplicitLifeLeechJewel1"] = { type = "Synthesis", affix = "", "0.2% of Physical Attack Damage Leeched as Life", statOrder = { 1530 }, level = 1, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, }, - ["SynthesisImplicitLocalLifeLeech1"] = { type = "Synthesis", affix = "", "0.2% of Physical Attack Damage Leeched as Life", statOrder = { 1532 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, }, - ["SynthesisImplicitLocalLifeLeech2"] = { type = "Synthesis", affix = "", "0.3% of Physical Attack Damage Leeched as Life", statOrder = { 1532 }, level = 15, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, }, - ["SynthesisImplicitLocalLifeLeech3__"] = { type = "Synthesis", affix = "", "0.4% of Physical Attack Damage Leeched as Life", statOrder = { 1532 }, level = 24, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, }, - ["SynthesisImplicitLifeLeechOneHanded1"] = { type = "Synthesis", affix = "", "1.5% of Physical Attack Damage Leeched as Life", statOrder = { 1532 }, level = 36, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, }, - ["SynthesisImplicitLifeLeechTwoHanded1"] = { type = "Synthesis", affix = "", "3% of Physical Attack Damage Leeched as Life", statOrder = { 1532 }, level = 36, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, }, - ["SynthesisImplicitAttackLifeLeech1_"] = { type = "Synthesis", affix = "", "0.4% of Attack Damage Leeched as Life", statOrder = { 1545 }, level = 36, group = "LifeLeechFromAttacksPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, - ["SynthesisImplicitAttackLifeLeechJewel1"] = { type = "Synthesis", affix = "", "0.2% of Attack Damage Leeched as Life", statOrder = { 1545 }, level = 1, group = "LifeLeechFromAttacksPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, - ["SynthesisImplicitMaximumLifeLeechRate1"] = { type = "Synthesis", affix = "", "10% increased Maximum total Life Recovery per second from Leech", statOrder = { 1612 }, level = 56, group = "MaximumLifeLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, - ["SynthesisImplicitIncreasedLifeLeechRate1_"] = { type = "Synthesis", affix = "", "(8-10)% increased total Recovery per second from Life Leech", statOrder = { 2034 }, level = 1, group = "IncreasedLifeLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, - ["SynthesisImplicitIncreasedLifeLeechRate2_"] = { type = "Synthesis", affix = "", "(11-13)% increased total Recovery per second from Life Leech", statOrder = { 2034 }, level = 15, group = "IncreasedLifeLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, - ["SynthesisImplicitIncreasedLifeLeechRate3"] = { type = "Synthesis", affix = "", "(14-16)% increased total Recovery per second from Life Leech", statOrder = { 2034 }, level = 24, group = "IncreasedLifeLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, - ["SynthesisImplicitLifeOnKill1_"] = { type = "Synthesis", affix = "", "Gain (6-8) Life per Enemy Killed", statOrder = { 1629 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, - ["SynthesisImplicitLifeOnKill2"] = { type = "Synthesis", affix = "", "Gain (9-11) Life per Enemy Killed", statOrder = { 1629 }, level = 15, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, - ["SynthesisImplicitLifeOnKill3"] = { type = "Synthesis", affix = "", "Gain (12-15) Life per Enemy Killed", statOrder = { 1629 }, level = 24, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, - ["SynthesisImplicitPercentLifeOnKill1_"] = { type = "Synthesis", affix = "", "Recover (1-2)% of Life on Kill", statOrder = { 1630 }, level = 55, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, - ["SynthesisImplicitLifeOnHit1"] = { type = "Synthesis", affix = "", "Gain (4-5) Life per Enemy Hit with Attacks", statOrder = { 1621 }, level = 1, group = "LifeGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, - ["SynthesisImplicitLifeOnHit2_"] = { type = "Synthesis", affix = "", "Gain (6-8) Life per Enemy Hit with Attacks", statOrder = { 1621 }, level = 15, group = "LifeGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, - ["SynthesisImplicitLifeOnHit3"] = { type = "Synthesis", affix = "", "Gain (9-15) Life per Enemy Hit with Attacks", statOrder = { 1621 }, level = 24, group = "LifeGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, - ["SynthesisImplicitLifeOnHitJewel1"] = { type = "Synthesis", affix = "", "Gain (1-2) Life per Enemy Hit with Attacks", statOrder = { 1621 }, level = 1, group = "LifeGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, - ["SynthesisImplicitLocalLifeOnHit1_"] = { type = "Synthesis", affix = "", "Grants (4-5) Life per Enemy Hit", statOrder = { 1619 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, - ["SynthesisImplicitLocalLifeOnHit2_"] = { type = "Synthesis", affix = "", "Grants (6-8) Life per Enemy Hit", statOrder = { 1619 }, level = 15, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, - ["SynthesisImplicitLocalLifeOnHit3"] = { type = "Synthesis", affix = "", "Grants (9-15) Life per Enemy Hit", statOrder = { 1619 }, level = 24, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, - ["SynthesisImplicitLifeOnHitOneHanded1"] = { type = "Synthesis", affix = "", "Grants (25-30) Life per Enemy Hit", statOrder = { 1619 }, level = 36, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, - ["SynthesisImplicitLifeOnHitTwoHanded1_"] = { type = "Synthesis", affix = "", "Grants (45-50) Life per Enemy Hit", statOrder = { 1619 }, level = 36, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, - ["SynthesisImplicitGlobalFlaskLifeRecovery1_"] = { type = "Synthesis", affix = "", "(7-10)% increased Life Recovery from Flasks", statOrder = { 1936 }, level = 56, group = "GlobalFlaskLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, }, - ["SynthesisImplicitLifeRecoveryRate1"] = { type = "Synthesis", affix = "", "(10-15)% increased Life Recovery rate", statOrder = { 1460 }, level = 60, group = "LifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, - ["SynthesisImplicitMana1"] = { type = "Synthesis", affix = "", "+(8-10) to maximum Mana", statOrder = { 1461 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SynthesisImplicitMana2"] = { type = "Synthesis", affix = "", "+(11-14) to maximum Mana", statOrder = { 1461 }, level = 15, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SynthesisImplicitMana3_"] = { type = "Synthesis", affix = "", "+(15-19) to maximum Mana", statOrder = { 1461 }, level = 24, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SynthesisImplicitMana4"] = { type = "Synthesis", affix = "", "+(20-24) to maximum Mana", statOrder = { 1461 }, level = 36, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SynthesisImplicitMana5"] = { type = "Synthesis", affix = "", "+(25-30) to maximum Mana", statOrder = { 1461 }, level = 48, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SynthesisImplicitManaJewel1_"] = { type = "Synthesis", affix = "", "+(2-3) to maximum Mana", statOrder = { 1461 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SynthesisImplicitManaJewel2"] = { type = "Synthesis", affix = "", "+(4-5) to maximum Mana", statOrder = { 1461 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SynthesisImplicitPercentMana1_"] = { type = "Synthesis", affix = "", "6% increased maximum Mana", statOrder = { 1462 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SynthesisImplicitPercentMana2"] = { type = "Synthesis", affix = "", "(7-8)% increased maximum Mana", statOrder = { 1462 }, level = 15, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SynthesisImplicitPercentMana3"] = { type = "Synthesis", affix = "", "(9-10)% increased maximum Mana", statOrder = { 1462 }, level = 24, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SynthesisImplicitManaRegeneration1"] = { type = "Synthesis", affix = "", "(16-18)% increased Mana Regeneration Rate", statOrder = { 1466 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SynthesisImplicitManaRegeneration2"] = { type = "Synthesis", affix = "", "(19-21)% increased Mana Regeneration Rate", statOrder = { 1466 }, level = 15, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SynthesisImplicitManaRegeneration3_"] = { type = "Synthesis", affix = "", "(22-24)% increased Mana Regeneration Rate", statOrder = { 1466 }, level = 24, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SynthesisImplicitManaRegeneration4_"] = { type = "Synthesis", affix = "", "(25-27)% increased Mana Regeneration Rate", statOrder = { 1466 }, level = 36, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SynthesisImplicitManaRegeneration5"] = { type = "Synthesis", affix = "", "(28-30)% increased Mana Regeneration Rate", statOrder = { 1466 }, level = 48, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SynthesisImplicitManaRegenerationJewel1"] = { type = "Synthesis", affix = "", "(5-7)% increased Mana Regeneration Rate", statOrder = { 1466 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SynthesisImplicitAddedManaRegen1__"] = { type = "Synthesis", affix = "", "Regenerate (2-2.5) Mana per second", statOrder = { 1464 }, level = 1, group = "AddedManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SynthesisImplicitAddedManaRegen2"] = { type = "Synthesis", affix = "", "Regenerate (2.5-3) Mana per second", statOrder = { 1464 }, level = 15, group = "AddedManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SynthesisImplicitAddedManaRegen3_____"] = { type = "Synthesis", affix = "", "Regenerate (3-4) Mana per second", statOrder = { 1464 }, level = 24, group = "AddedManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SynthesisImplicitAddedManaRegenWithStaffJewel1"] = { type = "Synthesis", affix = "", "Regenerate (0.5-0.7) Mana per second while wielding a Staff", statOrder = { 7777 }, level = 1, group = "AddedManaRegenWithStaff", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SynthesisImplicitAddedManaRegenWithDualWieldJewel1"] = { type = "Synthesis", affix = "", "Regenerate (0.5-0.7) Mana per Second while Dual Wielding", statOrder = { 7774 }, level = 1, group = "AddedManaRegenWithDualWield", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SynthesisImplicitAddedManaRegenWithShieldJewel1"] = { type = "Synthesis", affix = "", "Regenerate (0.5-0.7) Mana per Second while holding a Shield", statOrder = { 7775 }, level = 1, group = "AddedManaRegenWithShield", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SynthesisImplicitAddedManaRegenWithStaffJewel2"] = { type = "Synthesis", affix = "", "Regenerate (0.8-1) Mana per second while wielding a Staff", statOrder = { 7777 }, level = 1, group = "AddedManaRegenWithStaff", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SynthesisImplicitAddedManaRegenWithDualWieldJewel2"] = { type = "Synthesis", affix = "", "Regenerate (0.8-1) Mana per Second while Dual Wielding", statOrder = { 7774 }, level = 1, group = "AddedManaRegenWithDualWield", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SynthesisImplicitAddedManaRegenWithShieldJewel2"] = { type = "Synthesis", affix = "", "Regenerate (0.8-1) Mana per Second while holding a Shield", statOrder = { 7775 }, level = 1, group = "AddedManaRegenWithShield", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SynthesisImplicitBaseManaRegeneration1"] = { type = "Synthesis", affix = "", "Regenerate 0.5% of Mana per second", statOrder = { 1463 }, level = 56, group = "BaseManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SynthesisImplicitBaseManaRegenerationOneHand1"] = { type = "Synthesis", affix = "", "Regenerate 0.2% of Mana per second", statOrder = { 1463 }, level = 36, group = "BaseManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SynthesisImplicitBaseManaRegenerationOneHand2_"] = { type = "Synthesis", affix = "", "Regenerate 0.3% of Mana per second", statOrder = { 1463 }, level = 36, group = "BaseManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SynthesisImplicitBaseManaRegenerationTwoHand1"] = { type = "Synthesis", affix = "", "Regenerate 0.4% of Mana per second", statOrder = { 1463 }, level = 36, group = "BaseManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SynthesisImplicitBaseManaRegenerationTwoHand2"] = { type = "Synthesis", affix = "", "Regenerate 0.6% of Mana per second", statOrder = { 1463 }, level = 36, group = "BaseManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SynthesisImplicitManaLeech1"] = { type = "Synthesis", affix = "", "0.1% of Physical Attack Damage Leeched as Mana", statOrder = { 1580 }, level = 1, group = "ManaLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, }, - ["SynthesisImplicitManaLeech2"] = { type = "Synthesis", affix = "", "0.2% of Physical Attack Damage Leeched as Mana", statOrder = { 1580 }, level = 15, group = "ManaLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, }, - ["SynthesisImplicitManaLeech3"] = { type = "Synthesis", affix = "", "0.3% of Physical Attack Damage Leeched as Mana", statOrder = { 1580 }, level = 24, group = "ManaLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, }, - ["SynthesisImplicitManaLeechJewel1"] = { type = "Synthesis", affix = "", "0.1% of Physical Attack Damage Leeched as Mana", statOrder = { 1580 }, level = 1, group = "ManaLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, }, - ["SynthesisImplicitLocalManaLeech1"] = { type = "Synthesis", affix = "", "0.1% of Physical Attack Damage Leeched as Mana", statOrder = { 1582 }, level = 1, group = "ManaLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, }, - ["SynthesisImplicitLocalManaLeech2"] = { type = "Synthesis", affix = "", "0.2% of Physical Attack Damage Leeched as Mana", statOrder = { 1582 }, level = 15, group = "ManaLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, }, - ["SynthesisImplicitLocalManaLeech3"] = { type = "Synthesis", affix = "", "0.3% of Physical Attack Damage Leeched as Mana", statOrder = { 1582 }, level = 24, group = "ManaLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, }, - ["SynthesisImplicitManaLeechOneHanded1"] = { type = "Synthesis", affix = "", "0.5% of Physical Attack Damage Leeched as Mana", statOrder = { 1582 }, level = 36, group = "ManaLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, }, - ["SynthesisImplicitManaLeechTwoHanded1"] = { type = "Synthesis", affix = "", "1% of Physical Attack Damage Leeched as Mana", statOrder = { 1582 }, level = 36, group = "ManaLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, }, - ["SynthesisImplicitAttackManaLeech1"] = { type = "Synthesis", affix = "", "0.4% of Attack Damage Leeched as Mana", statOrder = { 1586 }, level = 36, group = "AttackDamageManaLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, }, - ["SynthesisImplicitMaximumManaLeechRate1_"] = { type = "Synthesis", affix = "", "10% increased Maximum total Mana Recovery per second from Leech", statOrder = { 1614 }, level = 56, group = "MaximumManaLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SynthesisImplicitIncreasedManaLeechRate1"] = { type = "Synthesis", affix = "", "(10-15)% increased total Recovery per second from Mana Leech", statOrder = { 2035 }, level = 36, group = "IncreasedManaLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SynthesisImplicitManaOnKill1_"] = { type = "Synthesis", affix = "", "Gain 3 Mana per Enemy Killed", statOrder = { 1644 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SynthesisImplicitManaOnKill2___"] = { type = "Synthesis", affix = "", "Gain 4 Mana per Enemy Killed", statOrder = { 1644 }, level = 15, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SynthesisImplicitManaOnKill3"] = { type = "Synthesis", affix = "", "Gain 5 Mana per Enemy Killed", statOrder = { 1644 }, level = 24, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SynthesisImplicitManaOnHit1__"] = { type = "Synthesis", affix = "", "Gain 2 Mana per Enemy Hit with Attacks", statOrder = { 1625 }, level = 1, group = "ManaGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, }, - ["SynthesisImplicitManaOnHit2"] = { type = "Synthesis", affix = "", "Gain 3 Mana per Enemy Hit with Attacks", statOrder = { 1625 }, level = 15, group = "ManaGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, }, - ["SynthesisImplicitManaOnHit3"] = { type = "Synthesis", affix = "", "Gain 4 Mana per Enemy Hit with Attacks", statOrder = { 1625 }, level = 24, group = "ManaGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, }, - ["SynthesisImplicitManaOnHitJewel1_"] = { type = "Synthesis", affix = "", "Gain 1 Mana per Enemy Hit with Attacks", statOrder = { 1625 }, level = 1, group = "ManaGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, }, - ["SynthesisImplicitPercentManaOnKill1"] = { type = "Synthesis", affix = "", "Recover (1-2)% of Mana on Kill", statOrder = { 1632 }, level = 56, group = "MaximumManaOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SynthesisImplicitManaRecoveryRate1_"] = { type = "Synthesis", affix = "", "(10-15)% increased Mana Recovery rate", statOrder = { 1468 }, level = 60, group = "ManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SynthesisImplicitTotalManaCost1_"] = { type = "Synthesis", affix = "", "-1 to Total Mana Cost of Skills", statOrder = { 1772 }, level = 1, group = "IncreaseManaCostFlat", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SynthesisImplicitTotalManaCost2_"] = { type = "Synthesis", affix = "", "-2 to Total Mana Cost of Skills", statOrder = { 1772 }, level = 15, group = "IncreaseManaCostFlat", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SynthesisImplicitTotalManaCost3"] = { type = "Synthesis", affix = "", "-3 to Total Mana Cost of Skills", statOrder = { 1772 }, level = 24, group = "IncreaseManaCostFlat", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SynthesisImplicitReducedManaCost1_"] = { type = "Synthesis", affix = "", "2% reduced Mana Cost of Skills", statOrder = { 1764 }, level = 1, group = "ManaCostReduction", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SynthesisImplicitReducedManaCost2"] = { type = "Synthesis", affix = "", "3% reduced Mana Cost of Skills", statOrder = { 1764 }, level = 15, group = "ManaCostReduction", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SynthesisImplicitReducedManaCost3"] = { type = "Synthesis", affix = "", "(4-5)% reduced Mana Cost of Skills", statOrder = { 1764 }, level = 24, group = "ManaCostReduction", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SynthesisImplicitReducedManaCostJewel1_"] = { type = "Synthesis", affix = "", "2% reduced Mana Cost of Skills", statOrder = { 1764 }, level = 1, group = "ManaCostReduction", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SynthesisImplicitAttackDamagePerMana1"] = { type = "Synthesis", affix = "", "(6-8)% increased Attack Damage per 500 Maximum Mana", statOrder = { 4671 }, level = 36, group = "AttackDamagePerMana", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, - ["SynthesisImplicitAttackDamagePerMana2"] = { type = "Synthesis", affix = "", "(12-14)% increased Attack Damage per 500 Maximum Mana", statOrder = { 4671 }, level = 48, group = "AttackDamagePerMana", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, - ["SynthesisImplicitSpellDamagePerMana1"] = { type = "Synthesis", affix = "", "(6-8)% increased Spell Damage per 500 Maximum Mana", statOrder = { 9630 }, level = 36, group = "SpellDamagePerMana", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SynthesisImplicitSpellDamagePerMana2___"] = { type = "Synthesis", affix = "", "(12-14)% increased Spell Damage per 500 Maximum Mana", statOrder = { 9630 }, level = 48, group = "SpellDamagePerMana", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SynthesisImplicitPhysicalDamageTakenFromMana1"] = { type = "Synthesis", affix = "", "(2-3)% of Physical Damage is taken from Mana before Life", statOrder = { 4030 }, level = 36, group = "PhysicalDamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "physical" }, }, - ["SynthesisImplicitPhysicalDamageTakenFromMana2_"] = { type = "Synthesis", affix = "", "(4-5)% of Physical Damage is taken from Mana before Life", statOrder = { 4030 }, level = 48, group = "PhysicalDamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "physical" }, }, - ["SynthesisImplicitFireResist1"] = { type = "Synthesis", affix = "", "+8% to Fire Resistance", statOrder = { 1507 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, - ["SynthesisImplicitFireResist2"] = { type = "Synthesis", affix = "", "+(9-10)% to Fire Resistance", statOrder = { 1507 }, level = 15, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, - ["SynthesisImplicitFireResist3"] = { type = "Synthesis", affix = "", "+(11-12)% to Fire Resistance", statOrder = { 1507 }, level = 24, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, - ["SynthesisImplicitFireResist4"] = { type = "Synthesis", affix = "", "+(13-14)% to Fire Resistance", statOrder = { 1507 }, level = 36, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, - ["SynthesisImplicitFireResist5"] = { type = "Synthesis", affix = "", "+(15-16)% to Fire Resistance", statOrder = { 1507 }, level = 48, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, - ["SynthesisImplicitFireResistJewel1"] = { type = "Synthesis", affix = "", "+(2-3)% to Fire Resistance", statOrder = { 1507 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, - ["SynthesisImplicitFireResistJewel2_"] = { type = "Synthesis", affix = "", "+(4-5)% to Fire Resistance", statOrder = { 1507 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, - ["SynthesisImplicitMaxFireResist1"] = { type = "Synthesis", affix = "", "+1% to maximum Fire Resistance", statOrder = { 1505 }, level = 60, group = "MaximumFireResistanceImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, - ["SynthesisImplicitMaxFireResist2"] = { type = "Synthesis", affix = "", "+3% to maximum Fire Resistance", statOrder = { 1505 }, level = 65, group = "MaximumFireResistanceImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, - ["SynthesisImplicitPhysicalTakenAsFire1"] = { type = "Synthesis", affix = "", "(7-10)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2323 }, level = 56, group = "PhysicalDamageTakenAsFirePercent", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "fire" }, }, - ["SynthesisImplicitFlatFireDamageTaken1"] = { type = "Synthesis", affix = "", "-(15-10) Fire Damage taken from Hits", statOrder = { 2114 }, level = 1, group = "FlatFireDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, }, - ["SynthesisImplicitFlatFireDamageTaken2"] = { type = "Synthesis", affix = "", "-(40-16) Fire Damage taken from Hits", statOrder = { 2114 }, level = 15, group = "FlatFireDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, }, - ["SynthesisImplicitFlatFireDamageTaken3"] = { type = "Synthesis", affix = "", "-(80-40) Fire Damage taken from Hits", statOrder = { 2114 }, level = 24, group = "FlatFireDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, }, - ["SynthesisImplicitImmuneToIgnite1"] = { type = "Synthesis", affix = "", "Cannot be Ignited", statOrder = { 1720 }, level = 56, group = "CannotBeIgnited", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitColdResist1"] = { type = "Synthesis", affix = "", "+8% to Cold Resistance", statOrder = { 1513 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, - ["SynthesisImplicitColdResist2_"] = { type = "Synthesis", affix = "", "+(9-10)% to Cold Resistance", statOrder = { 1513 }, level = 15, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, - ["SynthesisImplicitColdResist3"] = { type = "Synthesis", affix = "", "+(11-12)% to Cold Resistance", statOrder = { 1513 }, level = 24, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, - ["SynthesisImplicitColdResist4"] = { type = "Synthesis", affix = "", "+(13-14)% to Cold Resistance", statOrder = { 1513 }, level = 36, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, - ["SynthesisImplicitColdResist5"] = { type = "Synthesis", affix = "", "+(15-16)% to Cold Resistance", statOrder = { 1513 }, level = 48, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, - ["SynthesisImplicitColdResistJewel1"] = { type = "Synthesis", affix = "", "+(2-3)% to Cold Resistance", statOrder = { 1513 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, - ["SynthesisImplicitColdResistJewel2"] = { type = "Synthesis", affix = "", "+(4-5)% to Cold Resistance", statOrder = { 1513 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, - ["SynthesisImplicitMaxColdResist1_"] = { type = "Synthesis", affix = "", "+1% to maximum Cold Resistance", statOrder = { 1511 }, level = 60, group = "MaximumColdResistanceImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, - ["SynthesisImplicitMaxColdResist2"] = { type = "Synthesis", affix = "", "+3% to maximum Cold Resistance", statOrder = { 1511 }, level = 65, group = "MaximumColdResistanceImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, - ["SynthesisImplicitPhysicalTakenAsCold1__"] = { type = "Synthesis", affix = "", "(7-10)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2324 }, level = 56, group = "PhysicalDamageTakenAsCold", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "cold" }, }, - ["SynthesisImplicitFlatColdDamageTaken1_"] = { type = "Synthesis", affix = "", "-(15-10) Cold Damage taken from Hits", statOrder = { 5525 }, level = 1, group = "FlatColdDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, }, - ["SynthesisImplicitFlatColdDamageTaken2"] = { type = "Synthesis", affix = "", "-(40-16) Cold Damage taken from Hits", statOrder = { 5525 }, level = 15, group = "FlatColdDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, }, - ["SynthesisImplicitFlatColdDamageTaken3"] = { type = "Synthesis", affix = "", "-(80-40) Cold Damage taken from Hits", statOrder = { 5525 }, level = 24, group = "FlatColdDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, }, - ["SynthesisImplicitImmuneToFreeze1"] = { type = "Synthesis", affix = "", "Cannot be Frozen", statOrder = { 1719 }, level = 56, group = "CannotBeFrozen", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, - ["SynthesisImplicitLightningResist1"] = { type = "Synthesis", affix = "", "+8% to Lightning Resistance", statOrder = { 1518 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, - ["SynthesisImplicitLightningResist2"] = { type = "Synthesis", affix = "", "+(9-10)% to Lightning Resistance", statOrder = { 1518 }, level = 15, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, - ["SynthesisImplicitLightningResist3"] = { type = "Synthesis", affix = "", "+(11-12)% to Lightning Resistance", statOrder = { 1518 }, level = 24, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, - ["SynthesisImplicitLightningResist4"] = { type = "Synthesis", affix = "", "+(13-14)% to Lightning Resistance", statOrder = { 1518 }, level = 36, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, - ["SynthesisImplicitLightningResist5"] = { type = "Synthesis", affix = "", "+(15-16)% to Lightning Resistance", statOrder = { 1518 }, level = 48, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, - ["SynthesisImplicitLightningResistJewel1"] = { type = "Synthesis", affix = "", "+(2-3)% to Lightning Resistance", statOrder = { 1518 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, - ["SynthesisImplicitLightningResistJewel2_"] = { type = "Synthesis", affix = "", "+(4-5)% to Lightning Resistance", statOrder = { 1518 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, - ["SynthesisImplicitMaxLightningResist1"] = { type = "Synthesis", affix = "", "+1% to maximum Lightning Resistance", statOrder = { 1516 }, level = 60, group = "MaximumLightningResistanceImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, - ["SynthesisImplicitMaxLightningResist2____"] = { type = "Synthesis", affix = "", "+3% to maximum Lightning Resistance", statOrder = { 1516 }, level = 65, group = "MaximumLightningResistanceImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, - ["SynthesisImplicitPhysicalTakenAsLightning1"] = { type = "Synthesis", affix = "", "(7-10)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2325 }, level = 56, group = "PhysicalDamageTakenAsLightningPercent", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "lightning" }, }, - ["SynthesisImplicitFlatLightningDamageTaken1"] = { type = "Synthesis", affix = "", "-(15-10) Lightning Damage taken from Hits", statOrder = { 7064 }, level = 1, group = "FlatLightningDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, }, - ["SynthesisImplicitFlatLightningDamageTaken2_"] = { type = "Synthesis", affix = "", "-(40-16) Lightning Damage taken from Hits", statOrder = { 7064 }, level = 15, group = "FlatLightningDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, }, - ["SynthesisImplicitFlatLightningDamageTaken3"] = { type = "Synthesis", affix = "", "-(80-40) Lightning Damage taken from Hits", statOrder = { 7064 }, level = 24, group = "FlatLightningDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, }, - ["SynthesisImplicitImmuneToShock1"] = { type = "Synthesis", affix = "", "Cannot be Shocked", statOrder = { 1722 }, level = 56, group = "CannotBeShocked", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitChaosResist1_"] = { type = "Synthesis", affix = "", "+(5-6)% to Chaos Resistance", statOrder = { 1522 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, - ["SynthesisImplicitChaosResist2"] = { type = "Synthesis", affix = "", "+(7-8)% to Chaos Resistance", statOrder = { 1522 }, level = 15, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, - ["SynthesisImplicitChaosResist3"] = { type = "Synthesis", affix = "", "+(9-10)% to Chaos Resistance", statOrder = { 1522 }, level = 24, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, - ["SynthesisImplicitChaosResistJewel1"] = { type = "Synthesis", affix = "", "+(2-3)% to Chaos Resistance", statOrder = { 1522 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, - ["SynthesisImplicitMaxChaosResist1"] = { type = "Synthesis", affix = "", "+1% to maximum Chaos Resistance", statOrder = { 1521 }, level = 60, group = "MaximumChaosResistanceImplicit", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, - ["SynthesisImplicitMaxChaosResist2"] = { type = "Synthesis", affix = "", "+2% to maximum Chaos Resistance", statOrder = { 1521 }, level = 65, group = "MaximumChaosResistanceImplicit", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, - ["SynthesisImplicitPhysicalTakenAsChaos1"] = { type = "Synthesis", affix = "", "(5-8)% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2327 }, level = 56, group = "PhysicalDamageTakenAsChaos", weightKey = { }, weightVal = { }, modTags = { "physical", "chaos" }, }, - ["SynthesisImplicitFlatChaosDamageTaken1"] = { type = "Synthesis", affix = "", "-(17-13) Chaos Damage taken", statOrder = { 2712 }, level = 15, group = "ChaosDamageTaken", weightKey = { }, weightVal = { }, modTags = { "chaos" }, }, - ["SynthesisImplicitFlatChaosDamageTaken2"] = { type = "Synthesis", affix = "", "-(31-18) Chaos Damage taken", statOrder = { 2712 }, level = 24, group = "ChaosDamageTaken", weightKey = { }, weightVal = { }, modTags = { "chaos" }, }, - ["SynthesisImplicitImmuneToPoison1"] = { type = "Synthesis", affix = "", "Cannot be Poisoned", statOrder = { 3235 }, level = 56, group = "CannotBePoisoned", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, }, - ["SynthesisImplicitAllResist1__"] = { type = "Synthesis", affix = "", "+(3-4)% to all Elemental Resistances", statOrder = { 1501 }, level = 15, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, - ["SynthesisImplicitAllResist2_"] = { type = "Synthesis", affix = "", "+(5-6)% to all Elemental Resistances", statOrder = { 1501 }, level = 24, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, - ["SynthesisImplicitAllResist3"] = { type = "Synthesis", affix = "", "+(7-8)% to all Elemental Resistances", statOrder = { 1501 }, level = 36, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, - ["SynthesisImplicitMaximumResistance1"] = { type = "Synthesis", affix = "", "+1% to all maximum Resistances", statOrder = { 1523 }, level = 65, group = "MaximumElementalResistanceImplicit", weightKey = { }, weightVal = { }, modTags = { "resistance" }, }, - ["SynthesisImplicitMaximumResistance2_"] = { type = "Synthesis", affix = "", "+2% to all maximum Resistances", statOrder = { 1523 }, level = 65, group = "MaximumElementalResistanceImplicit", weightKey = { }, weightVal = { }, modTags = { "resistance" }, }, - ["SynthesisImplicitLocalIncreaseSocketedGemLevel1_"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed Gems", statOrder = { 141 }, level = 60, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, - ["SynthesisImplicitLocalCrit1"] = { type = "Synthesis", affix = "", "(5-6)% increased Critical Strike Chance", statOrder = { 1348 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, - ["SynthesisImplicitLocalCrit2"] = { type = "Synthesis", affix = "", "(7-8)% increased Critical Strike Chance", statOrder = { 1348 }, level = 15, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, - ["SynthesisImplicitLocalCrit3"] = { type = "Synthesis", affix = "", "(9-10)% increased Critical Strike Chance", statOrder = { 1348 }, level = 24, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, - ["SynthesisImplicitLocalCrit4_"] = { type = "Synthesis", affix = "", "(11-12)% increased Critical Strike Chance", statOrder = { 1348 }, level = 36, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, - ["SynthesisImplicitLocalCrit5"] = { type = "Synthesis", affix = "", "(13-15)% increased Critical Strike Chance", statOrder = { 1348 }, level = 48, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, - ["SynthesisImplicitGlobalCrit1"] = { type = "Synthesis", affix = "", "(14-15)% increased Global Critical Strike Chance", statOrder = { 1343 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, - ["SynthesisImplicitGlobalCrit2"] = { type = "Synthesis", affix = "", "(16-17)% increased Global Critical Strike Chance", statOrder = { 1343 }, level = 15, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, - ["SynthesisImplicitGlobalCrit3"] = { type = "Synthesis", affix = "", "(18-20)% increased Global Critical Strike Chance", statOrder = { 1343 }, level = 24, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, - ["SynthesisImplicitGlobalCrit4"] = { type = "Synthesis", affix = "", "(21-23)% increased Global Critical Strike Chance", statOrder = { 1343 }, level = 36, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, - ["SynthesisImplicitGlobalCrit5"] = { type = "Synthesis", affix = "", "(24-26)% increased Global Critical Strike Chance", statOrder = { 1343 }, level = 48, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, - ["SynthesisImplicitGlobalCritQuiver1"] = { type = "Synthesis", affix = "", "(26-28)% increased Global Critical Strike Chance", statOrder = { 1343 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, - ["SynthesisImplicitGlobalCritQuiver2"] = { type = "Synthesis", affix = "", "(29-31)% increased Global Critical Strike Chance", statOrder = { 1343 }, level = 15, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, - ["SynthesisImplicitGlobalCritQuiver3"] = { type = "Synthesis", affix = "", "(32-34)% increased Global Critical Strike Chance", statOrder = { 1343 }, level = 24, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, - ["SynthesisImplicitGlobalCritQuiver4"] = { type = "Synthesis", affix = "", "(35-37)% increased Global Critical Strike Chance", statOrder = { 1343 }, level = 36, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, - ["SynthesisImplicitGlobalCritQuiver5"] = { type = "Synthesis", affix = "", "(38-40)% increased Global Critical Strike Chance", statOrder = { 1343 }, level = 48, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, - ["SynthesisImplicitGlobalCritJewel1_"] = { type = "Synthesis", affix = "", "2% increased Global Critical Strike Chance", statOrder = { 1343 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, - ["SynthesisImplicitGlobalCritJewel2"] = { type = "Synthesis", affix = "", "(3-4)% increased Global Critical Strike Chance", statOrder = { 1343 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, - ["SynthesisImplicitMinorCriticalMultiplier1"] = { type = "Synthesis", affix = "", "+12% to Global Critical Strike Multiplier", statOrder = { 1372 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, - ["SynthesisImplicitMinorCriticalMultiplier2"] = { type = "Synthesis", affix = "", "+(13-14)% to Global Critical Strike Multiplier", statOrder = { 1372 }, level = 15, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, - ["SynthesisImplicitMinorCriticalMultiplier3_"] = { type = "Synthesis", affix = "", "+(15-16)% to Global Critical Strike Multiplier", statOrder = { 1372 }, level = 24, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, - ["SynthesisImplicitMinorCriticalMultiplier4_"] = { type = "Synthesis", affix = "", "+(17-18)% to Global Critical Strike Multiplier", statOrder = { 1372 }, level = 36, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, - ["SynthesisImplicitMinorCriticalMultiplier5"] = { type = "Synthesis", affix = "", "+(19-20)% to Global Critical Strike Multiplier", statOrder = { 1372 }, level = 48, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, - ["SynthesisImplicitSpellCriticalStrikeChance1"] = { type = "Synthesis", affix = "", "(29-31)% increased Spell Critical Strike Chance", statOrder = { 1342 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, }, - ["SynthesisImplicitSpellCriticalStrikeChance2"] = { type = "Synthesis", affix = "", "(32-34)% increased Spell Critical Strike Chance", statOrder = { 1342 }, level = 15, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, }, - ["SynthesisImplicitSpellCriticalStrikeChance3_"] = { type = "Synthesis", affix = "", "(35-37)% increased Spell Critical Strike Chance", statOrder = { 1342 }, level = 24, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, }, - ["SynthesisImplicitSpellCriticalStrikeChance4"] = { type = "Synthesis", affix = "", "(38-41)% increased Spell Critical Strike Chance", statOrder = { 1342 }, level = 36, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, }, - ["SynthesisImplicitSpellCriticalStrikeChance5_"] = { type = "Synthesis", affix = "", "(42-45)% increased Spell Critical Strike Chance", statOrder = { 1342 }, level = 48, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, }, - ["SynthesisImplicitCriticalMultiplier1"] = { type = "Synthesis", affix = "", "+(15-17)% to Global Critical Strike Multiplier", statOrder = { 1372 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, - ["SynthesisImplicitCriticalMultiplier2"] = { type = "Synthesis", affix = "", "+(18-20)% to Global Critical Strike Multiplier", statOrder = { 1372 }, level = 15, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, - ["SynthesisImplicitCriticalMultiplier3"] = { type = "Synthesis", affix = "", "+(21-23)% to Global Critical Strike Multiplier", statOrder = { 1372 }, level = 24, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, - ["SynthesisImplicitCriticalMultiplier4"] = { type = "Synthesis", affix = "", "+(24-26)% to Global Critical Strike Multiplier", statOrder = { 1372 }, level = 36, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, - ["SynthesisImplicitCriticalMultiplier5"] = { type = "Synthesis", affix = "", "+(27-30)% to Global Critical Strike Multiplier", statOrder = { 1372 }, level = 48, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, - ["SynthesisImplicitCriticalMultiplierJewel1_"] = { type = "Synthesis", affix = "", "+2% to Global Critical Strike Multiplier", statOrder = { 1372 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, - ["SynthesisImplicitCriticalMultiplierJewel2"] = { type = "Synthesis", affix = "", "+(3-4)% to Global Critical Strike Multiplier", statOrder = { 1372 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, - ["SynthesisImplicitAdditionalCriticalStrikeChanceWithAttacks1_"] = { type = "Synthesis", affix = "", "Attacks have +(0.5-1)% to Critical Strike Chance", statOrder = { 4617 }, level = 65, group = "AdditionalCriticalStrikeChanceWithAttacks", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, - ["SynthesisImplicitAdditionalCriticalStrikeChanceWithSpells1"] = { type = "Synthesis", affix = "", "+(0.5-1)% to Spell Critical Strike Chance", statOrder = { 9610 }, level = 65, group = "AdditionalCriticalStrikeChanceWithSpells", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, }, - ["SynthesisImplicitMaceCriticalMultiplierJewel1"] = { type = "Synthesis", affix = "", "+(2-3)% to Critical Strike Multiplier with Maces or Sceptres", statOrder = { 1377 }, level = 1, group = "MaceCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, }, - ["SynthesisImplicitAxeCriticalMultiplierJewel1_"] = { type = "Synthesis", affix = "", "+(2-3)% to Critical Strike Multiplier with Axes", statOrder = { 1378 }, level = 1, group = "AxeCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, }, - ["SynthesisImplicitSwordCriticalMultiplierJewel1"] = { type = "Synthesis", affix = "", "+(2-3)% to Critical Strike Multiplier with Swords", statOrder = { 1380 }, level = 1, group = "SwordCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, }, - ["SynthesisImplicitBowCriticalMultiplierJewel1_"] = { type = "Synthesis", affix = "", "+(2-3)% to Critical Strike Multiplier with Bows", statOrder = { 1379 }, level = 1, group = "BowCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, }, - ["SynthesisImplicitClawCriticalMultiplierJewel1"] = { type = "Synthesis", affix = "", "+(2-3)% to Critical Strike Multiplier with Claws", statOrder = { 1382 }, level = 1, group = "ClawCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, }, - ["SynthesisImplicitDaggerCriticalMultiplierJewel1_"] = { type = "Synthesis", affix = "", "+(2-3)% to Critical Strike Multiplier with Daggers", statOrder = { 1376 }, level = 1, group = "DaggerCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, }, - ["SynthesisImplicitWandCriticalMultiplierJewel1"] = { type = "Synthesis", affix = "", "+(2-3)% to Critical Strike Multiplier with Wands", statOrder = { 1381 }, level = 1, group = "WandCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, }, - ["SynthesisImplicitStaffCriticalMultiplierJewel1"] = { type = "Synthesis", affix = "", "+(2-3)% to Critical Strike Multiplier with Staves", statOrder = { 1383 }, level = 1, group = "StaffCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, }, - ["SynthesisImplicitMaceCriticalMultiplierJewel2"] = { type = "Synthesis", affix = "", "+(4-5)% to Critical Strike Multiplier with Maces or Sceptres", statOrder = { 1377 }, level = 1, group = "MaceCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, }, - ["SynthesisImplicitAxeCriticalMultiplierJewel2_"] = { type = "Synthesis", affix = "", "+(4-5)% to Critical Strike Multiplier with Axes", statOrder = { 1378 }, level = 1, group = "AxeCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, }, - ["SynthesisImplicitSwordCriticalMultiplierJewel2_"] = { type = "Synthesis", affix = "", "+(4-5)% to Critical Strike Multiplier with Swords", statOrder = { 1380 }, level = 1, group = "SwordCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, }, - ["SynthesisImplicitBowCriticalMultiplierJewel2"] = { type = "Synthesis", affix = "", "+(4-5)% to Critical Strike Multiplier with Bows", statOrder = { 1379 }, level = 1, group = "BowCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, }, - ["SynthesisImplicitClawCriticalMultiplierJewel2"] = { type = "Synthesis", affix = "", "+(4-5)% to Critical Strike Multiplier with Claws", statOrder = { 1382 }, level = 1, group = "ClawCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, }, - ["SynthesisImplicitDaggerCriticalMultiplierJewel2"] = { type = "Synthesis", affix = "", "+(4-5)% to Critical Strike Multiplier with Daggers", statOrder = { 1376 }, level = 1, group = "DaggerCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, }, - ["SynthesisImplicitWandCriticalMultiplierJewel2"] = { type = "Synthesis", affix = "", "+(4-5)% to Critical Strike Multiplier with Wands", statOrder = { 1381 }, level = 1, group = "WandCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, }, - ["SynthesisImplicitStaffCriticalMultiplierJewel2_"] = { type = "Synthesis", affix = "", "+(4-5)% to Critical Strike Multiplier with Staves", statOrder = { 1383 }, level = 1, group = "StaffCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, }, - ["SynthesisImplicitSpellCriticalChanceWithStaffJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Critical Strike Chance for Spells while wielding a Staff", statOrder = { 5649 }, level = 1, group = "SpellCriticalChanceWithStaff", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, }, - ["SynthesisImplicitSpellCriticalChanceWithDualWieldJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Critical Strike Chance for Spells while Dual Wielding", statOrder = { 5647 }, level = 1, group = "SpellCriticalChanceWithDualWield", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, }, - ["SynthesisImplicitSpellCriticalChanceWithShieldJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Critical Strike Chance for Spells while holding a Shield", statOrder = { 5648 }, level = 1, group = "SpellCriticalChanceWithShield", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, }, - ["SynthesisImplicitSpellCriticalChanceWithStaffJewel2__"] = { type = "Synthesis", affix = "", "(4-5)% increased Critical Strike Chance for Spells while wielding a Staff", statOrder = { 5649 }, level = 1, group = "SpellCriticalChanceWithStaff", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, }, - ["SynthesisImplicitSpellCriticalChanceWithDualWieldJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Critical Strike Chance for Spells while Dual Wielding", statOrder = { 5647 }, level = 1, group = "SpellCriticalChanceWithDualWield", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, }, - ["SynthesisImplicitSpellCriticalChanceWithShieldJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Critical Strike Chance for Spells while holding a Shield", statOrder = { 5648 }, level = 1, group = "SpellCriticalChanceWithShield", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, }, - ["SynthesisImplicitSpellCriticalMultiplierWithStaffJewel1"] = { type = "Synthesis", affix = "", "+(2-3)% to Critical Strike Multiplier for Spells while wielding a Staff", statOrder = { 5675 }, level = 1, group = "SpellCriticalMultiplierWithStaff", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster", "critical" }, }, - ["SynthesisImplicitSpellCriticalMultiplierWithDualWieldJewel1"] = { type = "Synthesis", affix = "", "+(2-3)% to Critical Strike Multiplier for Spells while Dual Wielding", statOrder = { 5673 }, level = 1, group = "SpellCriticalMultiplierWithDualWield", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster", "critical" }, }, - ["SynthesisImplicitSpellCriticalMultiplierWithShieldJewel1"] = { type = "Synthesis", affix = "", "+(2-3)% to Critical Strike Multiplier for Spells while holding a Shield", statOrder = { 5674 }, level = 1, group = "SpellCriticalMultiplierWithShield", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster", "critical" }, }, - ["SynthesisImplicitSpellCriticalMultiplierWithStaffJewel2_"] = { type = "Synthesis", affix = "", "+(4-5)% to Critical Strike Multiplier for Spells while wielding a Staff", statOrder = { 5675 }, level = 1, group = "SpellCriticalMultiplierWithStaff", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster", "critical" }, }, - ["SynthesisImplicitSpellCriticalMultiplierWithDualWieldJewel2"] = { type = "Synthesis", affix = "", "+(4-5)% to Critical Strike Multiplier for Spells while Dual Wielding", statOrder = { 5673 }, level = 1, group = "SpellCriticalMultiplierWithDualWield", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster", "critical" }, }, - ["SynthesisImplicitSpellCriticalMultiplierWithShieldJewel2__"] = { type = "Synthesis", affix = "", "+(4-5)% to Critical Strike Multiplier for Spells while holding a Shield", statOrder = { 5674 }, level = 1, group = "SpellCriticalMultiplierWithShield", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster", "critical" }, }, - ["SynthesisImplicitAdditionalArrow1"] = { type = "Synthesis", affix = "", "Bow Attacks fire an additional Arrow", statOrder = { 1675 }, level = 65, group = "AdditionalArrows", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, - ["SynthesisImplicitAdditionalArrowPierce1_"] = { type = "Synthesis", affix = "", "Arrows Pierce an additional Target", statOrder = { 1672 }, level = 56, group = "ArrowAdditionalPierce", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, - ["SynthesisImplicitAdditionalArrowPierce2_"] = { type = "Synthesis", affix = "", "Arrows Pierce 2 additional Targets", statOrder = { 1672 }, level = 61, group = "ArrowAdditionalPierce", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, - ["SynthesisImplicitAdditionalArrowPierce3"] = { type = "Synthesis", affix = "", "Arrows Pierce 3 additional Targets", statOrder = { 1672 }, level = 65, group = "ArrowAdditionalPierce", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, - ["SynthesisImplicitAdditionalPierce1"] = { type = "Synthesis", affix = "", "Projectiles Pierce 2 additional Targets", statOrder = { 1671 }, level = 56, group = "AdditionalPierce", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitStunDuration1_"] = { type = "Synthesis", affix = "", "(15-17)% increased Stun Duration on Enemies", statOrder = { 1744 }, level = 1, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitStunDuration2"] = { type = "Synthesis", affix = "", "(18-25)% increased Stun Duration on Enemies", statOrder = { 1744 }, level = 15, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitStunDuration3_"] = { type = "Synthesis", affix = "", "(26-35)% increased Stun Duration on Enemies", statOrder = { 1744 }, level = 24, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitEnemyStunThreshold1"] = { type = "Synthesis", affix = "", "(5-6)% reduced Enemy Stun Threshold", statOrder = { 1400 }, level = 1, group = "StunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitEnemyStunThreshold2"] = { type = "Synthesis", affix = "", "(7-8)% reduced Enemy Stun Threshold", statOrder = { 1400 }, level = 15, group = "StunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitEnemyStunThreshold3"] = { type = "Synthesis", affix = "", "(9-10)% reduced Enemy Stun Threshold", statOrder = { 1400 }, level = 24, group = "StunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitStunRecovery1"] = { type = "Synthesis", affix = "", "(10-12)% increased Stun and Block Recovery", statOrder = { 1781 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitStunRecovery2_"] = { type = "Synthesis", affix = "", "(13-15)% increased Stun and Block Recovery", statOrder = { 1781 }, level = 15, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitStunRecovery3_"] = { type = "Synthesis", affix = "", "(16-18)% increased Stun and Block Recovery", statOrder = { 1781 }, level = 24, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitStunRecovery4"] = { type = "Synthesis", affix = "", "(19-21)% increased Stun and Block Recovery", statOrder = { 1781 }, level = 36, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitStunRecovery5"] = { type = "Synthesis", affix = "", "(22-25)% increased Stun and Block Recovery", statOrder = { 1781 }, level = 48, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitStunRecoveryJewel1"] = { type = "Synthesis", affix = "", "(6-7)% increased Stun and Block Recovery", statOrder = { 1781 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitStunDurationJewel1___"] = { type = "Synthesis", affix = "", "(2-3)% increased Stun Duration on Enemies", statOrder = { 1744 }, level = 1, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitStunDurationJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Stun Duration on Enemies", statOrder = { 1744 }, level = 1, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitGlobalKnockbackChanceJewel1"] = { type = "Synthesis", affix = "", "(2-3)% chance to Knock Enemies Back on hit", statOrder = { 1872 }, level = 1, group = "GlobalKnockbackChance", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitAvoidStun1"] = { type = "Synthesis", affix = "", "(10-11)% chance to Avoid being Stunned", statOrder = { 1732 }, level = 15, group = "AvoidStun", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitAvoidStun2"] = { type = "Synthesis", affix = "", "(12-13)% chance to Avoid being Stunned", statOrder = { 1732 }, level = 24, group = "AvoidStun", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitAvoidStun3"] = { type = "Synthesis", affix = "", "(14-15)% chance to Avoid being Stunned", statOrder = { 1732 }, level = 36, group = "AvoidStun", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitAvoidStunJewel1"] = { type = "Synthesis", affix = "", "(8-10)% chance to Avoid being Stunned", statOrder = { 1732 }, level = 1, group = "AvoidStun", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitAvoidStunCastingJewel1_"] = { type = "Synthesis", affix = "", "(16-20)% chance to Ignore Stuns while Casting", statOrder = { 1779 }, level = 1, group = "AvoidInterruptionWhileCasting", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitAreaOfEffectOnStun1"] = { type = "Synthesis", affix = "", "(20-25)% increased Area of Effect if you have Stunned an Enemy Recently", statOrder = { 4556 }, level = 56, group = "AreaOfEffectIfStunnedEnemyRecently", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitUnwaveringStance1"] = { type = "Synthesis", affix = "", "Unwavering Stance", statOrder = { 10262 }, level = 65, group = "UnwaveringStance", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, - ["SynthesisImplicitImmuneToBleed1____"] = { type = "Synthesis", affix = "", "Bleeding cannot be inflicted on you", statOrder = { 4076 }, level = 56, group = "BleedingImmunity", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["SynthesisImplicitSelfAilmentDuration1"] = { type = "Synthesis", affix = "", "(15-20)% reduced Elemental Ailment Duration on you", statOrder = { 1748 }, level = 15, group = "SelfStatusAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, }, - ["SynthesisImplicitSelfAilmentDuration2"] = { type = "Synthesis", affix = "", "(21-35)% reduced Elemental Ailment Duration on you", statOrder = { 1748 }, level = 24, group = "SelfStatusAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, }, - ["SynthesisImplicitSelfAilmentDuration3"] = { type = "Synthesis", affix = "", "(36-50)% reduced Elemental Ailment Duration on you", statOrder = { 1748 }, level = 36, group = "SelfStatusAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, }, - ["SynthesisImplicitSelfAilmentDurationJewel1_"] = { type = "Synthesis", affix = "", "(5-7)% reduced Elemental Ailment Duration on you", statOrder = { 1748 }, level = 1, group = "SelfStatusAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, }, - ["SynthesisImplicitSelfAilmentDurationJewel2"] = { type = "Synthesis", affix = "", "(8-10)% reduced Elemental Ailment Duration on you", statOrder = { 1748 }, level = 1, group = "SelfStatusAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, }, - ["SynthesisImplicitAilmentDamage1"] = { type = "Synthesis", affix = "", "8% increased Damage with Ailments", statOrder = { 4801 }, level = 1, group = "AilmentDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "ailment" }, }, - ["SynthesisImplicitAilmentDamage2"] = { type = "Synthesis", affix = "", "(9-10)% increased Damage with Ailments", statOrder = { 4801 }, level = 15, group = "AilmentDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "ailment" }, }, - ["SynthesisImplicitAilmentDamage3"] = { type = "Synthesis", affix = "", "(11-12)% increased Damage with Ailments", statOrder = { 4801 }, level = 24, group = "AilmentDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "ailment" }, }, - ["SynthesisImplicitAilmentDamage4"] = { type = "Synthesis", affix = "", "(13-14)% increased Damage with Ailments", statOrder = { 4801 }, level = 36, group = "AilmentDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "ailment" }, }, - ["SynthesisImplicitAilmentDamage5"] = { type = "Synthesis", affix = "", "(15-16)% increased Damage with Ailments", statOrder = { 4801 }, level = 48, group = "AilmentDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "ailment" }, }, - ["SynthesisImplicitAilmentDamageJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Damage with Ailments", statOrder = { 4801 }, level = 1, group = "AilmentDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "ailment" }, }, - ["SynthesisImplicitAilmentDamageJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Damage with Ailments", statOrder = { 4801 }, level = 1, group = "AilmentDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "ailment" }, }, - ["SynthesisImplicitAilmentEffect1"] = { type = "Synthesis", affix = "", "6% increased Effect of Non-Damaging Ailments", statOrder = { 9017 }, level = 1, group = "IncreasedAilmentEffectOnEnemies", weightKey = { }, weightVal = { }, modTags = { "ailment" }, }, - ["SynthesisImplicitAilmentEffect2_"] = { type = "Synthesis", affix = "", "7% increased Effect of Non-Damaging Ailments", statOrder = { 9017 }, level = 15, group = "IncreasedAilmentEffectOnEnemies", weightKey = { }, weightVal = { }, modTags = { "ailment" }, }, - ["SynthesisImplicitAilmentEffect3"] = { type = "Synthesis", affix = "", "8% increased Effect of Non-Damaging Ailments", statOrder = { 9017 }, level = 24, group = "IncreasedAilmentEffectOnEnemies", weightKey = { }, weightVal = { }, modTags = { "ailment" }, }, - ["SynthesisImplicitAilmentEffect4"] = { type = "Synthesis", affix = "", "9% increased Effect of Non-Damaging Ailments", statOrder = { 9017 }, level = 36, group = "IncreasedAilmentEffectOnEnemies", weightKey = { }, weightVal = { }, modTags = { "ailment" }, }, - ["SynthesisImplicitAilmentEffect5"] = { type = "Synthesis", affix = "", "10% increased Effect of Non-Damaging Ailments", statOrder = { 9017 }, level = 48, group = "IncreasedAilmentEffectOnEnemies", weightKey = { }, weightVal = { }, modTags = { "ailment" }, }, - ["SynthesisImplicitChanceToIgnite1"] = { type = "Synthesis", affix = "", "6% chance to Ignite", statOrder = { 1903 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, - ["SynthesisImplicitChanceToIgnite2"] = { type = "Synthesis", affix = "", "7% chance to Ignite", statOrder = { 1903 }, level = 15, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, - ["SynthesisImplicitChanceToIgnite3"] = { type = "Synthesis", affix = "", "8% chance to Ignite", statOrder = { 1903 }, level = 24, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, - ["SynthesisImplicitChanceToIgniteTwoHand1_"] = { type = "Synthesis", affix = "", "(9-10)% chance to Ignite", statOrder = { 1903 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, - ["SynthesisImplicitChanceToIgniteTwoHand2"] = { type = "Synthesis", affix = "", "(11-12)% chance to Ignite", statOrder = { 1903 }, level = 15, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, - ["SynthesisImplicitChanceToIgniteTwoHand3_"] = { type = "Synthesis", affix = "", "(13-15)% chance to Ignite", statOrder = { 1903 }, level = 24, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, - ["SynthesisImplicitChanceToIgniteJewel1"] = { type = "Synthesis", affix = "", "(1-2)% chance to Ignite", statOrder = { 1903 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, - ["SynthesisImplicitChanceToIgniteJewel2"] = { type = "Synthesis", affix = "", "3% chance to Ignite", statOrder = { 1903 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, - ["SynthesisImplicitIgniteDuration1"] = { type = "Synthesis", affix = "", "(8-10)% increased Ignite Duration on Enemies", statOrder = { 1740 }, level = 36, group = "BurnDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, - ["SynthesisImplicitIgniteDuration2_"] = { type = "Synthesis", affix = "", "(12-15)% increased Ignite Duration on Enemies", statOrder = { 1740 }, level = 48, group = "BurnDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, - ["SynthesisImplicitFasterIgnite1__"] = { type = "Synthesis", affix = "", "Ignites you inflict deal Damage (7-10)% faster", statOrder = { 2440 }, level = 56, group = "FasterIgniteDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, - ["SynthesisImplicitFasterIgniteWeapon1_"] = { type = "Synthesis", affix = "", "Ignites you inflict deal Damage (15-20)% faster", statOrder = { 2440 }, level = 48, group = "FasterIgniteDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, - ["SynthesisImplicitFasterIgniteWeapon2"] = { type = "Synthesis", affix = "", "Ignites you inflict deal Damage (30-35)% faster", statOrder = { 2440 }, level = 48, group = "FasterIgniteDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, - ["SynthesisImplicitAvoidIgnite1_"] = { type = "Synthesis", affix = "", "(13-14)% chance to Avoid being Ignited", statOrder = { 1727 }, level = 15, group = "AvoidIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, - ["SynthesisImplicitAvoidIgnite2"] = { type = "Synthesis", affix = "", "(15-17)% chance to Avoid being Ignited", statOrder = { 1727 }, level = 24, group = "AvoidIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, - ["SynthesisImplicitAvoidIgnite3"] = { type = "Synthesis", affix = "", "(18-20)% chance to Avoid being Ignited", statOrder = { 1727 }, level = 36, group = "AvoidIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, - ["SynthesisImplicitAvoidIgniteJewel1"] = { type = "Synthesis", affix = "", "(8-10)% chance to Avoid being Ignited", statOrder = { 1727 }, level = 1, group = "AvoidIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, - ["SynthesisImplicitChanceToFreeze1"] = { type = "Synthesis", affix = "", "6% chance to Freeze", statOrder = { 1906 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, - ["SynthesisImplicitChanceToFreeze2"] = { type = "Synthesis", affix = "", "7% chance to Freeze", statOrder = { 1906 }, level = 15, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, - ["SynthesisImplicitChanceToFreeze3"] = { type = "Synthesis", affix = "", "8% chance to Freeze", statOrder = { 1906 }, level = 24, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, - ["SynthesisImplicitChanceToFreezeTwoHand1"] = { type = "Synthesis", affix = "", "(9-10)% chance to Freeze", statOrder = { 1906 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, - ["SynthesisImplicitChanceToFreezeTwoHand2"] = { type = "Synthesis", affix = "", "(11-12)% chance to Freeze", statOrder = { 1906 }, level = 15, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, - ["SynthesisImplicitChanceToFreezeTwoHand3"] = { type = "Synthesis", affix = "", "(13-15)% chance to Freeze", statOrder = { 1906 }, level = 24, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, - ["SynthesisImplicitChanceToFreezeJewel1"] = { type = "Synthesis", affix = "", "(1-2)% chance to Freeze", statOrder = { 1906 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, - ["SynthesisImplicitChanceToFreezeJewel2"] = { type = "Synthesis", affix = "", "3% chance to Freeze", statOrder = { 1906 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, - ["SynthesisImplicitFreezeDuration1"] = { type = "Synthesis", affix = "", "(8-10)% increased Freeze Duration on Enemies", statOrder = { 1739 }, level = 36, group = "ChillAndFreezeDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, - ["SynthesisImplicitFreezeDuration2"] = { type = "Synthesis", affix = "", "(12-15)% increased Freeze Duration on Enemies", statOrder = { 1739 }, level = 48, group = "ChillAndFreezeDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, - ["SynthesisImplicitAvoidChill1"] = { type = "Synthesis", affix = "", "(14-16)% chance to Avoid being Chilled", statOrder = { 1725 }, level = 15, group = "AvoidChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, - ["SynthesisImplicitAvoidChill2_"] = { type = "Synthesis", affix = "", "(18-21)% chance to Avoid being Chilled", statOrder = { 1725 }, level = 24, group = "AvoidChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, - ["SynthesisImplicitAvoidChill3"] = { type = "Synthesis", affix = "", "(22-25)% chance to Avoid being Chilled", statOrder = { 1725 }, level = 36, group = "AvoidChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, - ["SynthesisImplicitAvoidFreeze1_"] = { type = "Synthesis", affix = "", "(13-14)% chance to Avoid being Frozen", statOrder = { 1726 }, level = 15, group = "AvoidFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, - ["SynthesisImplicitAvoidFreeze2"] = { type = "Synthesis", affix = "", "(15-17)% chance to Avoid being Frozen", statOrder = { 1726 }, level = 24, group = "AvoidFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, - ["SynthesisImplicitAvoidFreeze3"] = { type = "Synthesis", affix = "", "(18-20)% chance to Avoid being Frozen", statOrder = { 1726 }, level = 36, group = "AvoidFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, - ["SynthesisImplicitAvoidFreezeJewel1"] = { type = "Synthesis", affix = "", "(8-10)% chance to Avoid being Frozen", statOrder = { 1726 }, level = 1, group = "AvoidFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, - ["SynthesisImplicitChillDurationJewel1_"] = { type = "Synthesis", affix = "", "(2-3)% increased Chill Duration on Enemies", statOrder = { 1737 }, level = 1, group = "ChillAndFreezeDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, - ["SynthesisImplicitChillDurationJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Chill Duration on Enemies", statOrder = { 1737 }, level = 1, group = "ChillAndFreezeDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, - ["SynthesisImplicitChillEffect1"] = { type = "Synthesis", affix = "", "(7-10)% increased Effect of Cold Ailments", statOrder = { 5505 }, level = 36, group = "ChillEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, - ["SynthesisImplicitChillEffect2"] = { type = "Synthesis", affix = "", "(11-15)% increased Effect of Cold Ailments", statOrder = { 5505 }, level = 48, group = "ChillEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, - ["SynthesisImplicitChillEffectJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Effect of Cold Ailments", statOrder = { 5505 }, level = 1, group = "ChillEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, - ["SynthesisImplicitChanceToShock1"] = { type = "Synthesis", affix = "", "6% chance to Shock", statOrder = { 1910 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, - ["SynthesisImplicitChanceToShock2"] = { type = "Synthesis", affix = "", "7% chance to Shock", statOrder = { 1910 }, level = 15, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, - ["SynthesisImplicitChanceToShock3"] = { type = "Synthesis", affix = "", "8% chance to Shock", statOrder = { 1910 }, level = 24, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, - ["SynthesisImplicitChanceToShockTwoHand1"] = { type = "Synthesis", affix = "", "(9-10)% chance to Shock", statOrder = { 1910 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, - ["SynthesisImplicitChanceToShockTwoHand2"] = { type = "Synthesis", affix = "", "(11-12)% chance to Shock", statOrder = { 1910 }, level = 15, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, - ["SynthesisImplicitChanceToShockTwoHand3"] = { type = "Synthesis", affix = "", "(13-15)% chance to Shock", statOrder = { 1910 }, level = 24, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, - ["SynthesisImplicitChanceToShockJewel1"] = { type = "Synthesis", affix = "", "(1-2)% chance to Shock", statOrder = { 1910 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, - ["SynthesisImplicitChanceToShockJewel2"] = { type = "Synthesis", affix = "", "3% chance to Shock", statOrder = { 1910 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, - ["SynthesisImplicitShockDuration1"] = { type = "Synthesis", affix = "", "(8-10)% increased Shock Duration on Enemies", statOrder = { 1738 }, level = 36, group = "ShockDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, - ["SynthesisImplicitShockDuration2_"] = { type = "Synthesis", affix = "", "(12-15)% increased Shock Duration on Enemies", statOrder = { 1738 }, level = 48, group = "ShockDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, - ["SynthesisImplicitShockDurationJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Shock Duration on Enemies", statOrder = { 1738 }, level = 1, group = "ShockDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, - ["SynthesisImplicitShockDurationJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Shock Duration on Enemies", statOrder = { 1738 }, level = 1, group = "ShockDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, - ["SynthesisImplicitAvoidShock1"] = { type = "Synthesis", affix = "", "(13-14)% chance to Avoid being Shocked", statOrder = { 1729 }, level = 15, group = "AvoidShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, - ["SynthesisImplicitAvoidShock2_"] = { type = "Synthesis", affix = "", "(15-17)% chance to Avoid being Shocked", statOrder = { 1729 }, level = 24, group = "AvoidShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, - ["SynthesisImplicitAvoidShock3"] = { type = "Synthesis", affix = "", "(18-20)% chance to Avoid being Shocked", statOrder = { 1729 }, level = 36, group = "AvoidShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, - ["SynthesisImplicitAvoidShockJewel1____"] = { type = "Synthesis", affix = "", "(8-10)% chance to Avoid being Shocked", statOrder = { 1729 }, level = 1, group = "AvoidShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, - ["SynthesisImplicitShockEffect1"] = { type = "Synthesis", affix = "", "(7-10)% increased Effect of Shock", statOrder = { 9496 }, level = 36, group = "ShockEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, - ["SynthesisImplicitShockEffect2"] = { type = "Synthesis", affix = "", "(11-15)% increased Effect of Shock", statOrder = { 9496 }, level = 48, group = "ShockEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, - ["SynthesisImplicitShockEffectJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Effect of Shock", statOrder = { 9496 }, level = 1, group = "ShockEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, - ["SynthesisImplicitBurnDamage1"] = { type = "Synthesis", affix = "", "(10-11)% increased Burning Damage", statOrder = { 1758 }, level = 1, group = "BurnDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["SynthesisImplicitBurnDamage2__"] = { type = "Synthesis", affix = "", "(12-13)% increased Burning Damage", statOrder = { 1758 }, level = 15, group = "BurnDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["SynthesisImplicitBurnDamage3"] = { type = "Synthesis", affix = "", "(14-15)% increased Burning Damage", statOrder = { 1758 }, level = 24, group = "BurnDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["SynthesisImplicitBurnDamageOneHand1"] = { type = "Synthesis", affix = "", "(14-18)% increased Burning Damage", statOrder = { 1758 }, level = 1, group = "BurnDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["SynthesisImplicitBurnDamageOneHand2_"] = { type = "Synthesis", affix = "", "(19-23)% increased Burning Damage", statOrder = { 1758 }, level = 15, group = "BurnDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["SynthesisImplicitBurnDamageOneHand3"] = { type = "Synthesis", affix = "", "(24-28)% increased Burning Damage", statOrder = { 1758 }, level = 24, group = "BurnDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["SynthesisImplicitBurnDamageTwoHand1"] = { type = "Synthesis", affix = "", "(22-27)% increased Burning Damage", statOrder = { 1758 }, level = 1, group = "BurnDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["SynthesisImplicitBurnDamageTwoHand2"] = { type = "Synthesis", affix = "", "(28-35)% increased Burning Damage", statOrder = { 1758 }, level = 15, group = "BurnDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["SynthesisImplicitBurnDamageTwoHand3"] = { type = "Synthesis", affix = "", "(36-44)% increased Burning Damage", statOrder = { 1758 }, level = 24, group = "BurnDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["SynthesisImplicitBurnDamageJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Burning Damage", statOrder = { 1758 }, level = 1, group = "BurnDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["SynthesisImplicitBurnDamageJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Burning Damage", statOrder = { 1758 }, level = 1, group = "BurnDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["SynthesisImplicitPoisonDamage1"] = { type = "Synthesis", affix = "", "(10-11)% increased Damage with Poison", statOrder = { 3047 }, level = 1, group = "PoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["SynthesisImplicitPoisonDamage2"] = { type = "Synthesis", affix = "", "(12-13)% increased Damage with Poison", statOrder = { 3047 }, level = 15, group = "PoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["SynthesisImplicitPoisonDamage3"] = { type = "Synthesis", affix = "", "(14-15)% increased Damage with Poison", statOrder = { 3047 }, level = 24, group = "PoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["SynthesisImplicitWeaponPoisonDamage1"] = { type = "Synthesis", affix = "", "(14-18)% increased Damage with Poison", statOrder = { 3047 }, level = 1, group = "PoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["SynthesisImplicitWeaponPoisonDamage2"] = { type = "Synthesis", affix = "", "(19-23)% increased Damage with Poison", statOrder = { 3047 }, level = 15, group = "PoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["SynthesisImplicitWeaponPoisonDamage3"] = { type = "Synthesis", affix = "", "(24-28)% increased Damage with Poison", statOrder = { 3047 }, level = 24, group = "PoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["SynthesisImplicitPoisonDamageJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Damage with Poison", statOrder = { 3047 }, level = 1, group = "PoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["SynthesisImplicitPoisonDamageJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Damage with Poison", statOrder = { 3047 }, level = 1, group = "PoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["SynthesisImplicitLocalPoisonOnHit1_"] = { type = "Synthesis", affix = "", "(25-30)% chance to Poison on Hit", statOrder = { 7593 }, level = 50, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, }, - ["SynthesisImplicitChanceToPoisonJewel1"] = { type = "Synthesis", affix = "", "(1-2)% chance to Poison on Hit", statOrder = { 3039 }, level = 1, group = "PoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, }, - ["SynthesisImplicitChanceToPoisonJewel2_"] = { type = "Synthesis", affix = "", "3% chance to Poison on Hit", statOrder = { 3039 }, level = 1, group = "PoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, }, - ["SynthesisImplicitPoisonDuration1"] = { type = "Synthesis", affix = "", "(8-12)% increased Poison Duration", statOrder = { 3036 }, level = 55, group = "PoisonDuration", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, }, - ["SynthesisImplicitFasterPoison1"] = { type = "Synthesis", affix = "", "Poisons you inflict deal Damage (7-10)% faster", statOrder = { 6215 }, level = 56, group = "FasterPoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["SynthesisImplicitFasterPoisonWeapon1_"] = { type = "Synthesis", affix = "", "Poisons you inflict deal Damage (15-20)% faster", statOrder = { 6215 }, level = 36, group = "FasterPoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["SynthesisImplicitFasterPoisonWeapon2__"] = { type = "Synthesis", affix = "", "Poisons you inflict deal Damage (30-35)% faster", statOrder = { 6215 }, level = 48, group = "FasterPoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["SynthesisImplicitAvoidPoison1"] = { type = "Synthesis", affix = "", "(14-16)% chance to Avoid being Poisoned", statOrder = { 1730 }, level = 24, group = "ChanceToAvoidPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, }, - ["SynthesisImplicitAvoidPoison2"] = { type = "Synthesis", affix = "", "(18-21)% chance to Avoid being Poisoned", statOrder = { 1730 }, level = 36, group = "ChanceToAvoidPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, }, - ["SynthesisImplicitAvoidPoison3"] = { type = "Synthesis", affix = "", "(22-25)% chance to Avoid being Poisoned", statOrder = { 1730 }, level = 48, group = "ChanceToAvoidPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, }, - ["SynthesisImplicitAvoidPoisonJewel1"] = { type = "Synthesis", affix = "", "(8-10)% chance to Avoid being Poisoned", statOrder = { 1730 }, level = 1, group = "ChanceToAvoidPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, }, - ["SynthesisImplicitBleedDamage1"] = { type = "Synthesis", affix = "", "(10-11)% increased Damage with Bleeding", statOrder = { 3035 }, level = 15, group = "BleedingDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, - ["SynthesisImplicitBleedDamage2"] = { type = "Synthesis", affix = "", "(12-13)% increased Damage with Bleeding", statOrder = { 3035 }, level = 24, group = "BleedingDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, - ["SynthesisImplicitBleedDamage3"] = { type = "Synthesis", affix = "", "(14-15)% increased Damage with Bleeding", statOrder = { 3035 }, level = 36, group = "BleedingDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, - ["SynthesisImplicitWeaponBleedDamage1_"] = { type = "Synthesis", affix = "", "(14-18)% increased Damage with Bleeding", statOrder = { 3035 }, level = 15, group = "BleedingDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, - ["SynthesisImplicitWeaponBleedDamage2_"] = { type = "Synthesis", affix = "", "(19-23)% increased Damage with Bleeding", statOrder = { 3035 }, level = 24, group = "BleedingDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, - ["SynthesisImplicitWeaponBleedDamage3"] = { type = "Synthesis", affix = "", "(24-28)% increased Damage with Bleeding", statOrder = { 3035 }, level = 36, group = "BleedingDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, - ["SynthesisImplicitBleedDamageJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Damage with Bleeding", statOrder = { 3035 }, level = 1, group = "BleedingDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, - ["SynthesisImplicitBleedDamageJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Damage with Bleeding", statOrder = { 3035 }, level = 1, group = "BleedingDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, - ["SynthesisImplicitLocalBleedOnHit1"] = { type = "Synthesis", affix = "", "(15-20)% chance to cause Bleeding on Hit", statOrder = { 2359 }, level = 50, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["SynthesisImplicitChanceToBleedJewel1"] = { type = "Synthesis", affix = "", "Attacks have (1-2)% chance to cause Bleeding", statOrder = { 2365 }, level = 1, group = "ChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["SynthesisImplicitChanceToBleedJewel2__"] = { type = "Synthesis", affix = "", "Attacks have 3% chance to cause Bleeding", statOrder = { 2365 }, level = 1, group = "ChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["SynthesisImplicitFasterBleed1_"] = { type = "Synthesis", affix = "", "Bleeding you inflict deals Damage (7-10)% faster", statOrder = { 6214 }, level = 56, group = "FasterBleedDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, - ["SynthesisImplicitFasterBleedWeapon1"] = { type = "Synthesis", affix = "", "Bleeding you inflict deals Damage (15-20)% faster", statOrder = { 6214 }, level = 36, group = "FasterBleedDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, - ["SynthesisImplicitFasterBleedWeapon2_"] = { type = "Synthesis", affix = "", "Bleeding you inflict deals Damage (30-35)% faster", statOrder = { 6214 }, level = 48, group = "FasterBleedDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, - ["SynthesisImplicitBleedDuration1"] = { type = "Synthesis", affix = "", "(8-12)% increased Bleeding Duration", statOrder = { 4811 }, level = 55, group = "BleedDuration", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["SynthesisImplicitAvoidBleed1"] = { type = "Synthesis", affix = "", "(14-16)% chance to Avoid Bleeding", statOrder = { 4077 }, level = 15, group = "ChanceToAvoidBleeding", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["SynthesisImplicitAvoidBleed2_"] = { type = "Synthesis", affix = "", "(18-21)% chance to Avoid Bleeding", statOrder = { 4077 }, level = 24, group = "ChanceToAvoidBleeding", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["SynthesisImplicitAvoidBleed3"] = { type = "Synthesis", affix = "", "(22-25)% chance to Avoid Bleeding", statOrder = { 4077 }, level = 36, group = "ChanceToAvoidBleeding", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["SynthesisImplicitAvoidBleedJewel1"] = { type = "Synthesis", affix = "", "(8-10)% chance to Avoid Bleeding", statOrder = { 4077 }, level = 1, group = "ChanceToAvoidBleeding", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["SynthesisImplicitAllDamage1_"] = { type = "Synthesis", affix = "", "7% increased Damage", statOrder = { 1076 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitAllDamage2"] = { type = "Synthesis", affix = "", "(8-9)% increased Damage", statOrder = { 1076 }, level = 15, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitAllDamage3"] = { type = "Synthesis", affix = "", "(10-11)% increased Damage", statOrder = { 1076 }, level = 24, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitAllDamage4"] = { type = "Synthesis", affix = "", "(12-13)% increased Damage", statOrder = { 1076 }, level = 36, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitAllDamage5"] = { type = "Synthesis", affix = "", "(14-15)% increased Damage", statOrder = { 1076 }, level = 48, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitWeaponAllDamage1"] = { type = "Synthesis", affix = "", "(15-18)% increased Damage", statOrder = { 1076 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitWeaponAllDamage2"] = { type = "Synthesis", affix = "", "(19-22)% increased Damage", statOrder = { 1076 }, level = 15, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitWeaponAllDamage3_"] = { type = "Synthesis", affix = "", "(23-26)% increased Damage", statOrder = { 1076 }, level = 24, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitWeaponAllDamageTwoHand1_"] = { type = "Synthesis", affix = "", "(21-26)% increased Damage", statOrder = { 1076 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitWeaponAllDamageTwoHand2"] = { type = "Synthesis", affix = "", "(27-32)% increased Damage", statOrder = { 1076 }, level = 15, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitWeaponAllDamageTwoHand3"] = { type = "Synthesis", affix = "", "(33-38)% increased Damage", statOrder = { 1076 }, level = 24, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitAllDamageJewel1"] = { type = "Synthesis", affix = "", "2% increased Damage", statOrder = { 1076 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitAllDamageJewel2"] = { type = "Synthesis", affix = "", "(3-4)% increased Damage", statOrder = { 1076 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitFireDamage1_"] = { type = "Synthesis", affix = "", "8% increased Fire Damage", statOrder = { 1241 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["SynthesisImplicitFireDamage2"] = { type = "Synthesis", affix = "", "(9-10)% increased Fire Damage", statOrder = { 1241 }, level = 15, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["SynthesisImplicitFireDamage3"] = { type = "Synthesis", affix = "", "(11-12)% increased Fire Damage", statOrder = { 1241 }, level = 24, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["SynthesisImplicitFireDamage4"] = { type = "Synthesis", affix = "", "(13-14)% increased Fire Damage", statOrder = { 1241 }, level = 36, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["SynthesisImplicitFireDamage5"] = { type = "Synthesis", affix = "", "(15-16)% increased Fire Damage", statOrder = { 1241 }, level = 48, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["SynthesisImplicitFireDamage6"] = { type = "Synthesis", affix = "", "(17-20)% increased Fire Damage", statOrder = { 1241 }, level = 56, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["SynthesisImplicitFireDamageJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Fire Damage", statOrder = { 1241 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["SynthesisImplicitFireDamageJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Fire Damage", statOrder = { 1241 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["SynthesisImplicitFireDamageAttacksJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Fire Damage with Attack Skills", statOrder = { 6246 }, level = 1, group = "FireDamageAttackSkills", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["SynthesisImplicitFireDamageAttacksJewel2_"] = { type = "Synthesis", affix = "", "(5-6)% increased Fire Damage with Attack Skills", statOrder = { 6246 }, level = 1, group = "FireDamageAttackSkills", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["SynthesisImplicitFireDamageSpellsJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Fire Damage with Spell Skills", statOrder = { 6247 }, level = 1, group = "FireDamageSpellSkills", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SynthesisImplicitFireDamageSpellsJewel2__"] = { type = "Synthesis", affix = "", "(5-6)% increased Fire Damage with Spell Skills", statOrder = { 6247 }, level = 1, group = "FireDamageSpellSkills", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SynthesisImplicitPhysicalConvertedToFireMinor1"] = { type = "Synthesis", affix = "", "(7-10)% of Physical Damage Converted to Fire Damage", statOrder = { 1834 }, level = 50, group = "ConvertPhysicalToFireImplicit", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, - ["SynthesisImplicitPhysicalConvertedToFire1"] = { type = "Synthesis", affix = "", "(15-25)% of Physical Damage Converted to Fire Damage", statOrder = { 1834 }, level = 55, group = "ConvertPhysicalToFireImplicit", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, - ["SynthesisImplicitPhysicalConvertedToFire2"] = { type = "Synthesis", affix = "", "(40-50)% of Physical Damage Converted to Fire Damage", statOrder = { 1834 }, level = 60, group = "ConvertPhysicalToFireImplicit", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, - ["SynthesisImplicitPhysicalConvertedToFireJewel1_"] = { type = "Synthesis", affix = "", "3% of Physical Damage Converted to Fire Damage", statOrder = { 1834 }, level = 1, group = "ConvertPhysicalToFireImplicit", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, - ["SynthesisImplicitPhysicalAddedAsFire1"] = { type = "Synthesis", affix = "", "Gain (3-5)% of Physical Damage as Extra Fire Damage", statOrder = { 1811 }, level = 45, group = "PhysicalAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, - ["SynthesisImplicitPhysicalAddedAsFire2"] = { type = "Synthesis", affix = "", "Gain (6-8)% of Physical Damage as Extra Fire Damage", statOrder = { 1811 }, level = 55, group = "PhysicalAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, - ["SynthesisImplicitFireDamagePerStrength1"] = { type = "Synthesis", affix = "", "1% increased Fire Damage per 20 Strength", statOrder = { 6233 }, level = 55, group = "FireDamagePerStrength", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["SynthesisImplicitFireLeechMinor1__"] = { type = "Synthesis", affix = "", "0.2% of Fire Damage Leeched as Life", statOrder = { 1551 }, level = 45, group = "FireDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "elemental", "fire" }, }, - ["SynthesisImplicitFireLeech1"] = { type = "Synthesis", affix = "", "0.5% of Fire Damage Leeched as Life", statOrder = { 1551 }, level = 55, group = "FireDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "elemental", "fire" }, }, - ["SynthesisImplicitWeaponFireDamage1"] = { type = "Synthesis", affix = "", "(15-17)% increased Fire Damage", statOrder = { 1241 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["SynthesisImplicitWeaponFireDamage2"] = { type = "Synthesis", affix = "", "(18-20)% increased Fire Damage", statOrder = { 1241 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["SynthesisImplicitWeaponFireDamage3"] = { type = "Synthesis", affix = "", "(21-23)% increased Fire Damage", statOrder = { 1241 }, level = 24, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["SynthesisImplicitWeaponFireDamage4"] = { type = "Synthesis", affix = "", "(24-26)% increased Fire Damage", statOrder = { 1241 }, level = 36, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["SynthesisImplicitWeaponFireDamage5"] = { type = "Synthesis", affix = "", "(27-30)% increased Fire Damage", statOrder = { 1241 }, level = 48, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["SynthesisImplicitWeaponFireDamageTwoHand1"] = { type = "Synthesis", affix = "", "(25-28)% increased Fire Damage", statOrder = { 1241 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["SynthesisImplicitWeaponFireDamageTwoHand2_"] = { type = "Synthesis", affix = "", "(29-32)% increased Fire Damage", statOrder = { 1241 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["SynthesisImplicitWeaponFireDamageTwoHand3"] = { type = "Synthesis", affix = "", "(33-36)% increased Fire Damage", statOrder = { 1241 }, level = 24, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["SynthesisImplicitWeaponFireDamageTwoHand4"] = { type = "Synthesis", affix = "", "(37-40)% increased Fire Damage", statOrder = { 1241 }, level = 36, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["SynthesisImplicitWeaponFireDamageTwoHand5"] = { type = "Synthesis", affix = "", "(41-44)% increased Fire Damage", statOrder = { 1241 }, level = 48, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["SynthesisImplicitLocalFireDamage1"] = { type = "Synthesis", affix = "", "Adds (4-8) to (9-15) Fire Damage", statOrder = { 1246 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["SynthesisImplicitLocalFireDamage2"] = { type = "Synthesis", affix = "", "Adds (9-12) to (16-23) Fire Damage", statOrder = { 1246 }, level = 15, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["SynthesisImplicitLocalFireDamage3"] = { type = "Synthesis", affix = "", "Adds (13-18) to (24-31) Fire Damage", statOrder = { 1246 }, level = 24, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["SynthesisImplicitLocalFireDamage4"] = { type = "Synthesis", affix = "", "Adds (19-24) to (32-43) Fire Damage", statOrder = { 1246 }, level = 36, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["SynthesisImplicitLocalFireDamage5"] = { type = "Synthesis", affix = "", "Adds (25-30) to (44-53) Fire Damage", statOrder = { 1246 }, level = 48, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["SynthesisImplicitLocalFireDamageTwoHand1"] = { type = "Synthesis", affix = "", "Adds (8-14) to (15-24) Fire Damage", statOrder = { 1246 }, level = 1, group = "LocalFireDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["SynthesisImplicitLocalFireDamageTwoHand2"] = { type = "Synthesis", affix = "", "Adds (15-22) to (26-41) Fire Damage", statOrder = { 1246 }, level = 15, group = "LocalFireDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["SynthesisImplicitLocalFireDamageTwoHand3"] = { type = "Synthesis", affix = "", "Adds (23-31) to (42-56) Fire Damage", statOrder = { 1246 }, level = 24, group = "LocalFireDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["SynthesisImplicitLocalFireDamageTwoHand4"] = { type = "Synthesis", affix = "", "Adds (32-41) to (57-74) Fire Damage", statOrder = { 1246 }, level = 36, group = "LocalFireDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["SynthesisImplicitLocalFireDamageTwoHand5"] = { type = "Synthesis", affix = "", "Adds (42-52) to (75-93) Fire Damage", statOrder = { 1246 }, level = 48, group = "LocalFireDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["SynthesisImplicitSpellAddedFireDamage1"] = { type = "Synthesis", affix = "", "Adds (3-6) to (7-11) Fire Damage to Spells", statOrder = { 1288 }, level = 1, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SynthesisImplicitSpellAddedFireDamage2"] = { type = "Synthesis", affix = "", "Adds (7-9) to (12-17) Fire Damage to Spells", statOrder = { 1288 }, level = 15, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SynthesisImplicitSpellAddedFireDamage3"] = { type = "Synthesis", affix = "", "Adds (10-13) to (17-22) Fire Damage to Spells", statOrder = { 1288 }, level = 24, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SynthesisImplicitSpellAddedFireDamage4"] = { type = "Synthesis", affix = "", "Adds (14-17) to (23-31) Fire Damage to Spells", statOrder = { 1288 }, level = 36, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SynthesisImplicitSpellAddedFireDamage5"] = { type = "Synthesis", affix = "", "Adds (18-21) to (31-38) Fire Damage to Spells", statOrder = { 1288 }, level = 48, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SynthesisImplicitSpellAddedFireDamageTwoHand1_"] = { type = "Synthesis", affix = "", "Adds (5-9) to (10-15) Fire Damage to Spells", statOrder = { 1288 }, level = 1, group = "SpellAddedFireDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SynthesisImplicitSpellAddedFireDamageTwoHand2"] = { type = "Synthesis", affix = "", "Adds (10-14) to (16-25) Fire Damage to Spells", statOrder = { 1288 }, level = 15, group = "SpellAddedFireDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SynthesisImplicitSpellAddedFireDamageTwoHand3"] = { type = "Synthesis", affix = "", "Adds (14-19) to (26-34) Fire Damage to Spells", statOrder = { 1288 }, level = 24, group = "SpellAddedFireDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SynthesisImplicitSpellAddedFireDamageTwoHand4"] = { type = "Synthesis", affix = "", "Adds (20-25) to (35-45) Fire Damage to Spells", statOrder = { 1288 }, level = 36, group = "SpellAddedFireDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SynthesisImplicitSpellAddedFireDamageTwoHand5__"] = { type = "Synthesis", affix = "", "Adds (26-32) to (46-56) Fire Damage to Spells", statOrder = { 1288 }, level = 48, group = "SpellAddedFireDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SynthesisImplicitGlobalAddedFireDamage1"] = { type = "Synthesis", affix = "", "Adds (13-18) to (28-33) Fire Damage", statOrder = { 1243 }, level = 50, group = "GlobalAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["SynthesisImplicitFireAddedAsChaos1"] = { type = "Synthesis", affix = "", "Gain (4-6)% of Fire Damage as Extra Chaos Damage", statOrder = { 1820 }, level = 55, group = "FireAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, }, - ["SynthesisImplicitFireAddedAsChaos2"] = { type = "Synthesis", affix = "", "Gain (7-10)% of Fire Damage as Extra Chaos Damage", statOrder = { 1820 }, level = 65, group = "FireAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, }, - ["SynthesisImplicitColdDamage1"] = { type = "Synthesis", affix = "", "8% increased Cold Damage", statOrder = { 1250 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["SynthesisImplicitColdDamage2"] = { type = "Synthesis", affix = "", "(9-10)% increased Cold Damage", statOrder = { 1250 }, level = 15, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["SynthesisImplicitColdDamage3"] = { type = "Synthesis", affix = "", "(11-12)% increased Cold Damage", statOrder = { 1250 }, level = 24, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["SynthesisImplicitColdDamage4"] = { type = "Synthesis", affix = "", "(13-14)% increased Cold Damage", statOrder = { 1250 }, level = 36, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["SynthesisImplicitColdDamage5_"] = { type = "Synthesis", affix = "", "(15-16)% increased Cold Damage", statOrder = { 1250 }, level = 48, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["SynthesisImplicitColdDamage6"] = { type = "Synthesis", affix = "", "(17-20)% increased Cold Damage", statOrder = { 1250 }, level = 56, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["SynthesisImplicitColdDamageJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Cold Damage", statOrder = { 1250 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["SynthesisImplicitColdDamageJewel2_"] = { type = "Synthesis", affix = "", "(4-5)% increased Cold Damage", statOrder = { 1250 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["SynthesisImplicitColdDamageAttacksJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Cold Damage with Attack Skills", statOrder = { 5527 }, level = 1, group = "ColdDamageAttackSkills", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["SynthesisImplicitColdDamageAttacksJewel2_"] = { type = "Synthesis", affix = "", "(5-6)% increased Cold Damage with Attack Skills", statOrder = { 5527 }, level = 1, group = "ColdDamageAttackSkills", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["SynthesisImplicitColdDamageSpellsJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Cold Damage with Spell Skills", statOrder = { 5528 }, level = 1, group = "ColdDamageSpellSkills", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SynthesisImplicitColdDamageSpellsJewel2"] = { type = "Synthesis", affix = "", "(5-6)% increased Cold Damage with Spell Skills", statOrder = { 5528 }, level = 1, group = "ColdDamageSpellSkills", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SynthesisImplicitPhysicalConvertedToColdMinor1"] = { type = "Synthesis", affix = "", "(7-10)% of Physical Damage Converted to Cold Damage", statOrder = { 1836 }, level = 50, group = "ConvertPhysicalToColdImplicit", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, - ["SynthesisImplicitPhysicalConvertedToCold1_"] = { type = "Synthesis", affix = "", "(15-25)% of Physical Damage Converted to Cold Damage", statOrder = { 1836 }, level = 55, group = "ConvertPhysicalToColdImplicit", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, - ["SynthesisImplicitPhysicalConvertedToCold2"] = { type = "Synthesis", affix = "", "(40-50)% of Physical Damage Converted to Cold Damage", statOrder = { 1836 }, level = 60, group = "ConvertPhysicalToColdImplicit", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, - ["SynthesisImplicitColdDamagePerFrenzyCharge1"] = { type = "Synthesis", affix = "", "4 to 7 Added Cold Damage per Frenzy Charge", statOrder = { 4134 }, level = 55, group = "AddedColdDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["SynthesisImplicitColdLeechMinor1"] = { type = "Synthesis", affix = "", "0.2% of Cold Damage Leeched as Life", statOrder = { 1556 }, level = 45, group = "ColdDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "elemental", "cold" }, }, - ["SynthesisImplicitColdLeech1"] = { type = "Synthesis", affix = "", "0.5% of Cold Damage Leeched as Life", statOrder = { 1556 }, level = 55, group = "ColdDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "elemental", "cold" }, }, - ["SynthesisImplicitWeaponColdDamage1_"] = { type = "Synthesis", affix = "", "(15-17)% increased Cold Damage", statOrder = { 1250 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["SynthesisImplicitWeaponColdDamage2"] = { type = "Synthesis", affix = "", "(18-20)% increased Cold Damage", statOrder = { 1250 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["SynthesisImplicitWeaponColdDamage3_"] = { type = "Synthesis", affix = "", "(21-23)% increased Cold Damage", statOrder = { 1250 }, level = 24, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["SynthesisImplicitWeaponColdDamage4"] = { type = "Synthesis", affix = "", "(24-26)% increased Cold Damage", statOrder = { 1250 }, level = 36, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["SynthesisImplicitWeaponColdDamage5"] = { type = "Synthesis", affix = "", "(27-30)% increased Cold Damage", statOrder = { 1250 }, level = 48, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["SynthesisImplicitWeaponColdDamageTwoHand1"] = { type = "Synthesis", affix = "", "(25-28)% increased Cold Damage", statOrder = { 1250 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["SynthesisImplicitWeaponColdDamageTwoHand2"] = { type = "Synthesis", affix = "", "(29-32)% increased Cold Damage", statOrder = { 1250 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["SynthesisImplicitWeaponColdDamageTwoHand3"] = { type = "Synthesis", affix = "", "(33-36)% increased Cold Damage", statOrder = { 1250 }, level = 24, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["SynthesisImplicitWeaponColdDamageTwoHand4"] = { type = "Synthesis", affix = "", "(37-40)% increased Cold Damage", statOrder = { 1250 }, level = 36, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["SynthesisImplicitWeaponColdDamageTwoHand5"] = { type = "Synthesis", affix = "", "(41-44)% increased Cold Damage", statOrder = { 1250 }, level = 48, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["SynthesisImplicitLocalColdDamage1"] = { type = "Synthesis", affix = "", "Adds (3-6) to (7-11) Cold Damage", statOrder = { 1255 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["SynthesisImplicitLocalColdDamage2"] = { type = "Synthesis", affix = "", "Adds (7-10) to (12-18) Cold Damage", statOrder = { 1255 }, level = 15, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["SynthesisImplicitLocalColdDamage3"] = { type = "Synthesis", affix = "", "Adds (11-15) to (19-26) Cold Damage", statOrder = { 1255 }, level = 24, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["SynthesisImplicitLocalColdDamage4"] = { type = "Synthesis", affix = "", "Adds (16-20) to (27-35) Cold Damage", statOrder = { 1255 }, level = 36, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["SynthesisImplicitLocalColdDamage5"] = { type = "Synthesis", affix = "", "Adds (21-25) to (36-43) Cold Damage", statOrder = { 1255 }, level = 48, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["SynthesisImplicitLocalColdDamageTwoHand1__"] = { type = "Synthesis", affix = "", "Adds (6-9) to (13-21) Cold Damage", statOrder = { 1255 }, level = 1, group = "LocalColdDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["SynthesisImplicitLocalColdDamageTwoHand2__"] = { type = "Synthesis", affix = "", "Adds (10-17) to (22-32) Cold Damage", statOrder = { 1255 }, level = 15, group = "LocalColdDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["SynthesisImplicitLocalColdDamageTwoHand3_"] = { type = "Synthesis", affix = "", "Adds (19-26) to (34-45) Cold Damage", statOrder = { 1255 }, level = 24, group = "LocalColdDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["SynthesisImplicitLocalColdDamageTwoHand4"] = { type = "Synthesis", affix = "", "Adds (27-35) to (46-61) Cold Damage", statOrder = { 1255 }, level = 36, group = "LocalColdDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["SynthesisImplicitLocalColdDamageTwoHand5_"] = { type = "Synthesis", affix = "", "Adds (36-43) to (51-75) Cold Damage", statOrder = { 1255 }, level = 48, group = "LocalColdDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["SynthesisImplicitSpellAddedColdDamage1_"] = { type = "Synthesis", affix = "", "Adds (3-5) to (5-8) Cold Damage to Spells", statOrder = { 1289 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SynthesisImplicitSpellAddedColdDamage2_"] = { type = "Synthesis", affix = "", "Adds (5-7) to (9-13) Cold Damage to Spells", statOrder = { 1289 }, level = 15, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SynthesisImplicitSpellAddedColdDamage3"] = { type = "Synthesis", affix = "", "Adds (8-11) to (14-19) Cold Damage to Spells", statOrder = { 1289 }, level = 24, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SynthesisImplicitSpellAddedColdDamage4"] = { type = "Synthesis", affix = "", "Adds (12-14) to (19-25) Cold Damage to Spells", statOrder = { 1289 }, level = 36, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SynthesisImplicitSpellAddedColdDamage5"] = { type = "Synthesis", affix = "", "Adds (15-18) to (26-31) Cold Damage to Spells", statOrder = { 1289 }, level = 48, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SynthesisImplicitSpellAddedColdDamageTwoHand1_"] = { type = "Synthesis", affix = "", "Adds (4-6) to (8-13) Cold Damage to Spells", statOrder = { 1289 }, level = 1, group = "SpellAddedColdDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SynthesisImplicitSpellAddedColdDamageTwoHand2_"] = { type = "Synthesis", affix = "", "Adds (7-11) to (14-20) Cold Damage to Spells", statOrder = { 1289 }, level = 15, group = "SpellAddedColdDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SynthesisImplicitSpellAddedColdDamageTwoHand3"] = { type = "Synthesis", affix = "", "Adds (12-16) to (21-28) Cold Damage to Spells", statOrder = { 1289 }, level = 24, group = "SpellAddedColdDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SynthesisImplicitSpellAddedColdDamageTwoHand4"] = { type = "Synthesis", affix = "", "Adds (17-21) to (28-38) Cold Damage to Spells", statOrder = { 1289 }, level = 36, group = "SpellAddedColdDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SynthesisImplicitSpellAddedColdDamageTwoHand5"] = { type = "Synthesis", affix = "", "Adds (22-26) to (31-46) Cold Damage to Spells", statOrder = { 1289 }, level = 48, group = "SpellAddedColdDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SynthesisImplicitGlobalAddedColdDamage1_"] = { type = "Synthesis", affix = "", "Adds (12-16) to (24-28) Cold Damage", statOrder = { 1252 }, level = 50, group = "GlobalAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["SynthesisImplicitColdDamageOverTimeMultiplier1"] = { type = "Synthesis", affix = "", "+(9-10)% to Cold Damage over Time Multiplier", statOrder = { 1141 }, level = 15, group = "ColdDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["SynthesisImplicitColdDamageOverTimeMultiplier2"] = { type = "Synthesis", affix = "", "+(11-12)% to Cold Damage over Time Multiplier", statOrder = { 1141 }, level = 24, group = "ColdDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["SynthesisImplicitColdDamageOverTimeMultiplier3_"] = { type = "Synthesis", affix = "", "+(13-15)% to Cold Damage over Time Multiplier", statOrder = { 1141 }, level = 36, group = "ColdDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["SynthesisImplicitColdDamageOverTimeMultiplierTwoHand1_"] = { type = "Synthesis", affix = "", "+(21-23)% to Cold Damage over Time Multiplier", statOrder = { 1141 }, level = 15, group = "ColdDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["SynthesisImplicitColdDamageOverTimeMultiplierTwoHand2_"] = { type = "Synthesis", affix = "", "+(24-26)% to Cold Damage over Time Multiplier", statOrder = { 1141 }, level = 24, group = "ColdDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["SynthesisImplicitColdDamageOverTimeMultiplierTwoHand3_"] = { type = "Synthesis", affix = "", "+(27-30)% to Cold Damage over Time Multiplier", statOrder = { 1141 }, level = 36, group = "ColdDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["SynthesisImplicitColdAddedAsChaos1"] = { type = "Synthesis", affix = "", "Gain (4-6)% of Cold Damage as Extra Chaos Damage", statOrder = { 1819 }, level = 55, group = "ColdAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "cold", "chaos" }, }, - ["SynthesisImplicitColdAddedAsChaos2"] = { type = "Synthesis", affix = "", "Gain (7-10)% of Cold Damage as Extra Chaos Damage", statOrder = { 1819 }, level = 65, group = "ColdAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "cold", "chaos" }, }, - ["SynthesisImplicitLightningDamage1"] = { type = "Synthesis", affix = "", "8% increased Lightning Damage", statOrder = { 1261 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["SynthesisImplicitLightningDamage2_"] = { type = "Synthesis", affix = "", "(9-10)% increased Lightning Damage", statOrder = { 1261 }, level = 15, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["SynthesisImplicitLightningDamage3"] = { type = "Synthesis", affix = "", "(11-12)% increased Lightning Damage", statOrder = { 1261 }, level = 24, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["SynthesisImplicitLightningDamage4"] = { type = "Synthesis", affix = "", "(13-14)% increased Lightning Damage", statOrder = { 1261 }, level = 36, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["SynthesisImplicitLightningDamage5"] = { type = "Synthesis", affix = "", "(15-16)% increased Lightning Damage", statOrder = { 1261 }, level = 48, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["SynthesisImplicitLightningDamage6"] = { type = "Synthesis", affix = "", "(17-20)% increased Lightning Damage", statOrder = { 1261 }, level = 56, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["SynthesisImplicitLightningDamageJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Lightning Damage", statOrder = { 1261 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["SynthesisImplicitLightningDamageJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Lightning Damage", statOrder = { 1261 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["SynthesisImplicitLightningDamageAttacksJewel1_"] = { type = "Synthesis", affix = "", "(3-4)% increased Lightning Damage with Attack Skills", statOrder = { 7065 }, level = 1, group = "LightningDamageAttackSkills", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["SynthesisImplicitLightningDamageAttacksJewel2"] = { type = "Synthesis", affix = "", "(5-6)% increased Lightning Damage with Attack Skills", statOrder = { 7065 }, level = 1, group = "LightningDamageAttackSkills", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["SynthesisImplicitLightningDamageSpellsJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Lightning Damage with Spell Skills", statOrder = { 7066 }, level = 1, group = "LightningDamageSpellSkills", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SynthesisImplicitLightningDamageSpellsJewel2"] = { type = "Synthesis", affix = "", "(5-6)% increased Lightning Damage with Spell Skills", statOrder = { 7066 }, level = 1, group = "LightningDamageSpellSkills", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SynthesisImplicitPhysicalConvertedToLightningMinor1"] = { type = "Synthesis", affix = "", "(7-10)% of Physical Damage Converted to Lightning Damage", statOrder = { 1838 }, level = 50, group = "ConvertPhysicalToLightningImplicit", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, - ["SynthesisImplicitPhysicalConvertedToLightning1"] = { type = "Synthesis", affix = "", "(15-25)% of Physical Damage Converted to Lightning Damage", statOrder = { 1838 }, level = 55, group = "ConvertPhysicalToLightningImplicit", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, - ["SynthesisImplicitPhysicalConvertedToLightning2"] = { type = "Synthesis", affix = "", "(40-50)% of Physical Damage Converted to Lightning Damage", statOrder = { 1838 }, level = 60, group = "ConvertPhysicalToLightningImplicit", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, - ["SynthesisImplicitPhysicalAddedAsLightning1___"] = { type = "Synthesis", affix = "", "Gain (3-5)% of Physical Damage as Extra Lightning Damage", statOrder = { 1813 }, level = 55, group = "PhysicalAddedAsLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, - ["SynthesisImplicitLightningLeechMinor1"] = { type = "Synthesis", affix = "", "0.2% of Lightning Damage Leeched as Life", statOrder = { 1560 }, level = 45, group = "LightningDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "elemental", "lightning" }, }, - ["SynthesisImplicitLightningLeech1"] = { type = "Synthesis", affix = "", "0.5% of Lightning Damage Leeched as Life", statOrder = { 1560 }, level = 55, group = "LightningDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "elemental", "lightning" }, }, - ["SynthesisImplicitWeaponLightningDamage1_"] = { type = "Synthesis", affix = "", "(15-17)% increased Lightning Damage", statOrder = { 1261 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["SynthesisImplicitWeaponLightningDamage2"] = { type = "Synthesis", affix = "", "(18-20)% increased Lightning Damage", statOrder = { 1261 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["SynthesisImplicitWeaponLightningDamage3_"] = { type = "Synthesis", affix = "", "(21-23)% increased Lightning Damage", statOrder = { 1261 }, level = 24, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["SynthesisImplicitWeaponLightningDamage4_"] = { type = "Synthesis", affix = "", "(24-26)% increased Lightning Damage", statOrder = { 1261 }, level = 36, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["SynthesisImplicitWeaponLightningDamage5_"] = { type = "Synthesis", affix = "", "(27-30)% increased Lightning Damage", statOrder = { 1261 }, level = 48, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["SynthesisImplicitWeaponLightningDamageTwoHand1"] = { type = "Synthesis", affix = "", "(25-28)% increased Lightning Damage", statOrder = { 1261 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["SynthesisImplicitWeaponLightningDamageTwoHand2"] = { type = "Synthesis", affix = "", "(29-32)% increased Lightning Damage", statOrder = { 1261 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["SynthesisImplicitWeaponLightningDamageTwoHand3"] = { type = "Synthesis", affix = "", "(33-36)% increased Lightning Damage", statOrder = { 1261 }, level = 24, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["SynthesisImplicitWeaponLightningDamageTwoHand4"] = { type = "Synthesis", affix = "", "(37-40)% increased Lightning Damage", statOrder = { 1261 }, level = 36, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["SynthesisImplicitWeaponLightningDamageTwoHand5_"] = { type = "Synthesis", affix = "", "(41-44)% increased Lightning Damage", statOrder = { 1261 }, level = 48, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["SynthesisImplicitLocalLightningDamage1"] = { type = "Synthesis", affix = "", "Adds 1 to (16-25) Lightning Damage", statOrder = { 1266 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["SynthesisImplicitLocalLightningDamage2"] = { type = "Synthesis", affix = "", "Adds (1-2) to (26-40) Lightning Damage", statOrder = { 1266 }, level = 15, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["SynthesisImplicitLocalLightningDamage3_"] = { type = "Synthesis", affix = "", "Adds (1-3) to (41-55) Lightning Damage", statOrder = { 1266 }, level = 24, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["SynthesisImplicitLocalLightningDamage4"] = { type = "Synthesis", affix = "", "Adds (2-5) to (56-70) Lightning Damage", statOrder = { 1266 }, level = 36, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["SynthesisImplicitLocalLightningDamage5"] = { type = "Synthesis", affix = "", "Adds (2-6) to (71-83) Lightning Damage", statOrder = { 1266 }, level = 48, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["SynthesisImplicitLocalLightningDamageTwoHand1"] = { type = "Synthesis", affix = "", "Adds 1 to (29-46) Lightning Damage", statOrder = { 1266 }, level = 1, group = "LocalLightningDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["SynthesisImplicitLocalLightningDamageTwoHand2"] = { type = "Synthesis", affix = "", "Adds (1-3) to (48-75) Lightning Damage", statOrder = { 1266 }, level = 15, group = "LocalLightningDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["SynthesisImplicitLocalLightningDamageTwoHand3"] = { type = "Synthesis", affix = "", "Adds (2-6) to (77-95) Lightning Damage", statOrder = { 1266 }, level = 24, group = "LocalLightningDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["SynthesisImplicitLocalLightningDamageTwoHand4"] = { type = "Synthesis", affix = "", "Adds (2-8) to (96-123) Lightning Damage", statOrder = { 1266 }, level = 36, group = "LocalLightningDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["SynthesisImplicitLocalLightningDamageTwoHand5"] = { type = "Synthesis", affix = "", "Adds (3-10) to (124-145) Lightning Damage", statOrder = { 1266 }, level = 48, group = "LocalLightningDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["SynthesisImplicitSpellAddedLightningDamage1"] = { type = "Synthesis", affix = "", "Adds 1 to (12-18) Lightning Damage to Spells", statOrder = { 1290 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SynthesisImplicitSpellAddedLightningDamage2"] = { type = "Synthesis", affix = "", "Adds (1-2) to (19-28) Lightning Damage to Spells", statOrder = { 1290 }, level = 15, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SynthesisImplicitSpellAddedLightningDamage3"] = { type = "Synthesis", affix = "", "Adds (1-3) to (29-39) Lightning Damage to Spells", statOrder = { 1290 }, level = 24, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SynthesisImplicitSpellAddedLightningDamage4"] = { type = "Synthesis", affix = "", "Adds (2-4) to (40-49) Lightning Damage to Spells", statOrder = { 1290 }, level = 36, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SynthesisImplicitSpellAddedLightningDamage5"] = { type = "Synthesis", affix = "", "Adds (2-5) to (50-59) Lightning Damage to Spells", statOrder = { 1290 }, level = 48, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SynthesisImplicitSpellAddedLightningDamageTwoHand1"] = { type = "Synthesis", affix = "", "Adds 1 to (18-28) Lightning Damage to Spells", statOrder = { 1290 }, level = 1, group = "SpellAddedLightningDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SynthesisImplicitSpellAddedLightningDamageTwoHand2_"] = { type = "Synthesis", affix = "", "Adds (1-3) to (29-46) Lightning Damage to Spells", statOrder = { 1290 }, level = 15, group = "SpellAddedLightningDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SynthesisImplicitSpellAddedLightningDamageTwoHand3"] = { type = "Synthesis", affix = "", "Adds (2-4) to (47-58) Lightning Damage to Spells", statOrder = { 1290 }, level = 24, group = "SpellAddedLightningDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SynthesisImplicitSpellAddedLightningDamageTwoHand4"] = { type = "Synthesis", affix = "", "Adds (2-5) to (59-75) Lightning Damage to Spells", statOrder = { 1290 }, level = 36, group = "SpellAddedLightningDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SynthesisImplicitSpellAddedLightningDamageTwoHand5"] = { type = "Synthesis", affix = "", "Adds (3-7) to (75-88) Lightning Damage to Spells", statOrder = { 1290 }, level = 48, group = "SpellAddedLightningDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SynthesisImplicitGlobalAddedLightningDamage1"] = { type = "Synthesis", affix = "", "Adds (1-5) to (50-52) Lightning Damage", statOrder = { 1263 }, level = 50, group = "GlobalAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["SynthesisImplicitLightningAddedAsChaos1"] = { type = "Synthesis", affix = "", "Gain (4-6)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1817 }, level = 55, group = "LightningAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, }, - ["SynthesisImplicitLightningAddedAsChaos2"] = { type = "Synthesis", affix = "", "Gain (7-10)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1817 }, level = 65, group = "LightningAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, }, - ["SynthesisImplicitPhysicalDamage1_"] = { type = "Synthesis", affix = "", "8% increased Global Physical Damage", statOrder = { 1116 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, - ["SynthesisImplicitPhysicalDamage2_"] = { type = "Synthesis", affix = "", "(9-10)% increased Global Physical Damage", statOrder = { 1116 }, level = 15, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, - ["SynthesisImplicitPhysicalDamage3_"] = { type = "Synthesis", affix = "", "(11-12)% increased Global Physical Damage", statOrder = { 1116 }, level = 24, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, - ["SynthesisImplicitPhysicalDamage4"] = { type = "Synthesis", affix = "", "(13-14)% increased Global Physical Damage", statOrder = { 1116 }, level = 36, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, - ["SynthesisImplicitPhysicalDamage5"] = { type = "Synthesis", affix = "", "(15-16)% increased Global Physical Damage", statOrder = { 1116 }, level = 48, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, - ["SynthesisImplicitPhysicalDamage6"] = { type = "Synthesis", affix = "", "(17-20)% increased Global Physical Damage", statOrder = { 1116 }, level = 56, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, - ["SynthesisImplicitPhysicalDamageJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Global Physical Damage", statOrder = { 1116 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, - ["SynthesisImplicitPhysicalDamageJewel2__"] = { type = "Synthesis", affix = "", "(4-5)% increased Global Physical Damage", statOrder = { 1116 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, - ["SynthesisImplicitPhysicalDamageAttacksJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Physical Damage with Attack Skills", statOrder = { 9171 }, level = 1, group = "PhysicalDamageAttackSkills", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["SynthesisImplicitPhysicalDamageAttacksJewel2"] = { type = "Synthesis", affix = "", "(5-6)% increased Physical Damage with Attack Skills", statOrder = { 9171 }, level = 1, group = "PhysicalDamageAttackSkills", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["SynthesisImplicitPhysicalDamageSpellsJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Physical Damage with Spell Skills", statOrder = { 9172 }, level = 1, group = "PhysicalDamageSpellSkills", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["SynthesisImplicitPhysicalDamageSpellsJewel2"] = { type = "Synthesis", affix = "", "(5-6)% increased Physical Damage with Spell Skills", statOrder = { 9172 }, level = 1, group = "PhysicalDamageSpellSkills", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["SynthesisImplicitAttackChanceToImpale1"] = { type = "Synthesis", affix = "", "(6-10)% chance to Impale Enemies on Hit with Attacks", statOrder = { 4739 }, level = 1, group = "AttackImpaleChance", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, }, - ["SynthesisImplicitPhysicalLeechMinor1"] = { type = "Synthesis", affix = "", "0.2% of Physical Damage Leeched as Life", statOrder = { 1547 }, level = 45, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical" }, }, - ["SynthesisImplicitPhysicalLeech1"] = { type = "Synthesis", affix = "", "0.5% of Physical Damage Leeched as Life", statOrder = { 1547 }, level = 55, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical" }, }, - ["SynthesisImplicitWeaponPhysicalDamage1"] = { type = "Synthesis", affix = "", "(19-22)% increased Global Physical Damage", statOrder = { 1116 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, - ["SynthesisImplicitWeaponPhysicalDamage2"] = { type = "Synthesis", affix = "", "(23-26)% increased Global Physical Damage", statOrder = { 1116 }, level = 15, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, - ["SynthesisImplicitWeaponPhysicalDamage3"] = { type = "Synthesis", affix = "", "(27-30)% increased Global Physical Damage", statOrder = { 1116 }, level = 24, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, - ["SynthesisImplicitWeaponPhysicalDamageTwoHand1"] = { type = "Synthesis", affix = "", "(27-32)% increased Global Physical Damage", statOrder = { 1116 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, - ["SynthesisImplicitWeaponPhysicalDamageTwoHand2_"] = { type = "Synthesis", affix = "", "(33-38)% increased Global Physical Damage", statOrder = { 1116 }, level = 15, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, - ["SynthesisImplicitWeaponPhysicalDamageTwoHand3"] = { type = "Synthesis", affix = "", "(39-44)% increased Global Physical Damage", statOrder = { 1116 }, level = 24, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, - ["SynthesisImplicitLocalPhysicalDamage1"] = { type = "Synthesis", affix = "", "(13-14)% increased Physical Damage", statOrder = { 1117 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["SynthesisImplicitLocalPhysicalDamage2"] = { type = "Synthesis", affix = "", "(15-16)% increased Physical Damage", statOrder = { 1117 }, level = 15, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["SynthesisImplicitLocalPhysicalDamage3"] = { type = "Synthesis", affix = "", "(17-19)% increased Physical Damage", statOrder = { 1117 }, level = 24, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["SynthesisImplicitLocalPhysicalDamage4"] = { type = "Synthesis", affix = "", "(20-22)% increased Physical Damage", statOrder = { 1117 }, level = 36, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["SynthesisImplicitLocalPhysicalDamage5"] = { type = "Synthesis", affix = "", "(23-25)% increased Physical Damage", statOrder = { 1117 }, level = 48, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["SynthesisImplicitLocalAddedPhysicalDamage1"] = { type = "Synthesis", affix = "", "Adds 1 to 2 Physical Damage", statOrder = { 1160 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["SynthesisImplicitLocalAddedPhysicalDamage2"] = { type = "Synthesis", affix = "", "Adds (2-3) to (3-4) Physical Damage", statOrder = { 1160 }, level = 15, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["SynthesisImplicitLocalAddedPhysicalDamage3"] = { type = "Synthesis", affix = "", "Adds (3-4) to (5-6) Physical Damage", statOrder = { 1160 }, level = 24, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["SynthesisImplicitLocalAddedPhysicalDamage4"] = { type = "Synthesis", affix = "", "Adds (5-6) to (7-8) Physical Damage", statOrder = { 1160 }, level = 36, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["SynthesisImplicitLocalAddedPhysicalDamage5"] = { type = "Synthesis", affix = "", "Adds (6-7) to (9-10) Physical Damage", statOrder = { 1160 }, level = 48, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["SynthesisImplicitLocalAddedPhysicalDamageTwoHand1_"] = { type = "Synthesis", affix = "", "Adds 1 to (2-3) Physical Damage", statOrder = { 1160 }, level = 1, group = "LocalPhysicalDamageTwoHanded", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["SynthesisImplicitLocalAddedPhysicalDamageTwoHand2"] = { type = "Synthesis", affix = "", "Adds (2-3) to (4-5) Physical Damage", statOrder = { 1160 }, level = 15, group = "LocalPhysicalDamageTwoHanded", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["SynthesisImplicitLocalAddedPhysicalDamageTwoHand3"] = { type = "Synthesis", affix = "", "Adds (4-5) to (6-7) Physical Damage", statOrder = { 1160 }, level = 24, group = "LocalPhysicalDamageTwoHanded", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["SynthesisImplicitLocalAddedPhysicalDamageTwoHand4_"] = { type = "Synthesis", affix = "", "Adds (6-7) to (8-10) Physical Damage", statOrder = { 1160 }, level = 36, group = "LocalPhysicalDamageTwoHanded", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["SynthesisImplicitLocalAddedPhysicalDamageTwoHand5"] = { type = "Synthesis", affix = "", "Adds (8-9) to (11-13) Physical Damage", statOrder = { 1160 }, level = 48, group = "LocalPhysicalDamageTwoHanded", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["SynthesisImplicitPhysicalAddedAsChaos1"] = { type = "Synthesis", affix = "", "Gain (4-6)% of Physical Damage as Extra Chaos Damage", statOrder = { 1814 }, level = 55, group = "PhysicalAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, - ["SynthesisImplicitPhysicalAddedAsChaos2"] = { type = "Synthesis", affix = "", "Gain (7-10)% of Physical Damage as Extra Chaos Damage", statOrder = { 1814 }, level = 65, group = "PhysicalAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, - ["SynthesisImplicitChaosDamage1"] = { type = "Synthesis", affix = "", "8% increased Chaos Damage", statOrder = { 1269 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["SynthesisImplicitChaosDamage2_"] = { type = "Synthesis", affix = "", "(9-10)% increased Chaos Damage", statOrder = { 1269 }, level = 15, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["SynthesisImplicitChaosDamage3"] = { type = "Synthesis", affix = "", "(11-12)% increased Chaos Damage", statOrder = { 1269 }, level = 24, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["SynthesisImplicitChaosDamage4"] = { type = "Synthesis", affix = "", "(13-14)% increased Chaos Damage", statOrder = { 1269 }, level = 36, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["SynthesisImplicitChaosDamage5"] = { type = "Synthesis", affix = "", "(15-16)% increased Chaos Damage", statOrder = { 1269 }, level = 48, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["SynthesisImplicitChaosDamage6_"] = { type = "Synthesis", affix = "", "(17-20)% increased Chaos Damage", statOrder = { 1269 }, level = 56, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["SynthesisImplicitChaosDamageJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Chaos Damage", statOrder = { 1269 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["SynthesisImplicitChaosDamageJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Chaos Damage", statOrder = { 1269 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["SynthesisImplicitChaosDamageAttacksJewel1___"] = { type = "Synthesis", affix = "", "(3-4)% increased Chaos Damage with Attack Skills", statOrder = { 5456 }, level = 1, group = "ChaosDamageAttackSkills", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["SynthesisImplicitChaosDamageAttacksJewel2"] = { type = "Synthesis", affix = "", "(5-6)% increased Chaos Damage with Attack Skills", statOrder = { 5456 }, level = 1, group = "ChaosDamageAttackSkills", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["SynthesisImplicitChaosDamageSpellsJewel1_"] = { type = "Synthesis", affix = "", "(3-4)% increased Chaos Damage with Spell Skills", statOrder = { 5457 }, level = 1, group = "ChaosDamageSpellSkills", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["SynthesisImplicitChaosDamageSpellsJewel2"] = { type = "Synthesis", affix = "", "(5-6)% increased Chaos Damage with Spell Skills", statOrder = { 5457 }, level = 1, group = "ChaosDamageSpellSkills", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["SynthesisImplicitPhysicalConvertedToChaos1"] = { type = "Synthesis", affix = "", "(15-25)% of Physical Damage Converted to Chaos Damage", statOrder = { 1841 }, level = 55, group = "PhysicalDamageConvertToChaosImplicit", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, - ["SynthesisImplicitPhysicalConvertedToChaos2_"] = { type = "Synthesis", affix = "", "(40-50)% of Physical Damage Converted to Chaos Damage", statOrder = { 1841 }, level = 60, group = "PhysicalDamageConvertToChaosImplicit", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, - ["SynthesisImplicitChaosLeechMinor1"] = { type = "Synthesis", affix = "", "0.2% of Chaos Damage Leeched as Life", statOrder = { 1563 }, level = 45, group = "ChaosDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "chaos" }, }, - ["SynthesisImplicitChaosLeech1"] = { type = "Synthesis", affix = "", "0.5% of Chaos Damage Leeched as Life", statOrder = { 1563 }, level = 55, group = "ChaosDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "chaos" }, }, - ["SynthesisImplicitWeaponChaosDamage1"] = { type = "Synthesis", affix = "", "(15-17)% increased Chaos Damage", statOrder = { 1269 }, level = 15, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["SynthesisImplicitWeaponChaosDamage2"] = { type = "Synthesis", affix = "", "(18-20)% increased Chaos Damage", statOrder = { 1269 }, level = 24, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["SynthesisImplicitWeaponChaosDamage3"] = { type = "Synthesis", affix = "", "(21-23)% increased Chaos Damage", statOrder = { 1269 }, level = 36, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["SynthesisImplicitWeaponChaosDamage4"] = { type = "Synthesis", affix = "", "(24-26)% increased Chaos Damage", statOrder = { 1269 }, level = 48, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["SynthesisImplicitWeaponChaosDamageTwoHand1"] = { type = "Synthesis", affix = "", "(25-28)% increased Chaos Damage", statOrder = { 1269 }, level = 15, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["SynthesisImplicitWeaponChaosDamageTwoHand2___"] = { type = "Synthesis", affix = "", "(29-32)% increased Chaos Damage", statOrder = { 1269 }, level = 24, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["SynthesisImplicitWeaponChaosDamageTwoHand3_"] = { type = "Synthesis", affix = "", "(33-36)% increased Chaos Damage", statOrder = { 1269 }, level = 36, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["SynthesisImplicitWeaponChaosDamageTwoHand4"] = { type = "Synthesis", affix = "", "(37-40)% increased Chaos Damage", statOrder = { 1269 }, level = 48, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["SynthesisImplicitLocalChaosDamage1"] = { type = "Synthesis", affix = "", "Adds (4-9) to (11-21) Chaos Damage", statOrder = { 1274 }, level = 15, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["SynthesisImplicitLocalChaosDamage2_"] = { type = "Synthesis", affix = "", "Adds (10-18) to (22-34) Chaos Damage", statOrder = { 1274 }, level = 24, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["SynthesisImplicitLocalChaosDamage3"] = { type = "Synthesis", affix = "", "Adds (19-28) to (35-49) Chaos Damage", statOrder = { 1274 }, level = 36, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["SynthesisImplicitLocalChaosDamageTwoHand1"] = { type = "Synthesis", affix = "", "Adds (8-14) to (17-30) Chaos Damage", statOrder = { 1274 }, level = 15, group = "LocalChaosDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["SynthesisImplicitLocalChaosDamageTwoHand2"] = { type = "Synthesis", affix = "", "Adds (15-24) to (31-57) Chaos Damage", statOrder = { 1274 }, level = 24, group = "LocalChaosDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["SynthesisImplicitLocalChaosDamageTwoHand3"] = { type = "Synthesis", affix = "", "Adds (26-50) to (58-86) Chaos Damage", statOrder = { 1274 }, level = 36, group = "LocalChaosDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["SynthesisImplicitGlobalAddedChaosDamage1_"] = { type = "Synthesis", affix = "", "Adds (11-13) to (19-23) Chaos Damage", statOrder = { 1270 }, level = 50, group = "GlobalAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["SynthesisImplicitChaosDamageOverTimeMultiplier1_"] = { type = "Synthesis", affix = "", "+(9-10)% to Chaos Damage over Time Multiplier", statOrder = { 1144 }, level = 15, group = "ChaosDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["SynthesisImplicitChaosDamageOverTimeMultiplier2"] = { type = "Synthesis", affix = "", "+(11-12)% to Chaos Damage over Time Multiplier", statOrder = { 1144 }, level = 24, group = "ChaosDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["SynthesisImplicitChaosDamageOverTimeMultiplier3_"] = { type = "Synthesis", affix = "", "+(13-15)% to Chaos Damage over Time Multiplier", statOrder = { 1144 }, level = 36, group = "ChaosDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["SynthesisImplicitChaosDamageOverTimeMultiplierTwoHand1"] = { type = "Synthesis", affix = "", "+(21-23)% to Chaos Damage over Time Multiplier", statOrder = { 1144 }, level = 15, group = "ChaosDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["SynthesisImplicitChaosDamageOverTimeMultiplierTwoHand2"] = { type = "Synthesis", affix = "", "+(24-26)% to Chaos Damage over Time Multiplier", statOrder = { 1144 }, level = 24, group = "ChaosDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["SynthesisImplicitChaosDamageOverTimeMultiplierTwoHand3"] = { type = "Synthesis", affix = "", "+(27-30)% to Chaos Damage over Time Multiplier", statOrder = { 1144 }, level = 36, group = "ChaosDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["SynthesisImplicitDegenerationDamage1_"] = { type = "Synthesis", affix = "", "(9-10)% increased Damage over Time", statOrder = { 1095 }, level = 1, group = "DegenerationDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitDegenerationDamage2"] = { type = "Synthesis", affix = "", "(11-12)% increased Damage over Time", statOrder = { 1095 }, level = 15, group = "DegenerationDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitDegenerationDamage3"] = { type = "Synthesis", affix = "", "(13-15)% increased Damage over Time", statOrder = { 1095 }, level = 24, group = "DegenerationDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitDegenerationDamageJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Damage over Time", statOrder = { 1095 }, level = 1, group = "DegenerationDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitDegenerationDamageJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Damage over Time", statOrder = { 1095 }, level = 1, group = "DegenerationDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitWeaponElementalDamage1_"] = { type = "Synthesis", affix = "", "(12-13)% increased Elemental Damage with Attack Skills", statOrder = { 6010 }, level = 15, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["SynthesisImplicitWeaponElementalDamage2"] = { type = "Synthesis", affix = "", "(14-15)% increased Elemental Damage with Attack Skills", statOrder = { 6010 }, level = 24, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["SynthesisImplicitWeaponElementalDamage3"] = { type = "Synthesis", affix = "", "(16-18)% increased Elemental Damage with Attack Skills", statOrder = { 6010 }, level = 36, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["SynthesisImplicitWeaponElementalDamage4"] = { type = "Synthesis", affix = "", "(19-21)% increased Elemental Damage with Attack Skills", statOrder = { 6010 }, level = 48, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["SynthesisImplicitWeaponElementalDamage5"] = { type = "Synthesis", affix = "", "(22-24)% increased Elemental Damage with Attack Skills", statOrder = { 6010 }, level = 56, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["SynthesisImplicitPhysicalDamageAddedAsRandomElement1"] = { type = "Synthesis", affix = "", "Gain (8-10)% of Physical Damage as Extra Damage of a random Element", statOrder = { 2809 }, level = 65, group = "PhysicalDamageAddedAsRandomElement", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental" }, }, - ["SynthesisImplicitLocalElementalPen1_"] = { type = "Synthesis", affix = "", "Attacks with this Weapon Penetrate 2% Elemental Resistances", statOrder = { 3624 }, level = 1, group = "LocalAttackReduceEnemyElementalResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["SynthesisImplicitLocalElementalPen2"] = { type = "Synthesis", affix = "", "Attacks with this Weapon Penetrate 3% Elemental Resistances", statOrder = { 3624 }, level = 15, group = "LocalAttackReduceEnemyElementalResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["SynthesisImplicitLocalElementalPen3"] = { type = "Synthesis", affix = "", "Attacks with this Weapon Penetrate (4-5)% Elemental Resistances", statOrder = { 3624 }, level = 24, group = "LocalAttackReduceEnemyElementalResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["SynthesisImplicitElementalDamage1"] = { type = "Synthesis", affix = "", "8% increased Elemental Damage", statOrder = { 1857 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["SynthesisImplicitElementalDamage2"] = { type = "Synthesis", affix = "", "(9-10)% increased Elemental Damage", statOrder = { 1857 }, level = 15, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["SynthesisImplicitElementalDamage3"] = { type = "Synthesis", affix = "", "(11-12)% increased Elemental Damage", statOrder = { 1857 }, level = 24, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["SynthesisImplicitElementalDamage4"] = { type = "Synthesis", affix = "", "(13-14)% increased Elemental Damage", statOrder = { 1857 }, level = 36, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["SynthesisImplicitElementalDamage5"] = { type = "Synthesis", affix = "", "(15-16)% increased Elemental Damage", statOrder = { 1857 }, level = 48, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["SynthesisImplicitElementalDamageHigh1__"] = { type = "Synthesis", affix = "", "(17-19)% increased Elemental Damage", statOrder = { 1857 }, level = 15, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["SynthesisImplicitElementalDamageHigh2"] = { type = "Synthesis", affix = "", "(20-22)% increased Elemental Damage", statOrder = { 1857 }, level = 24, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["SynthesisImplicitElementalDamageHigh3__"] = { type = "Synthesis", affix = "", "(23-26)% increased Elemental Damage", statOrder = { 1857 }, level = 36, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["SynthesisImplicitElementalDamageHighTwoHand1"] = { type = "Synthesis", affix = "", "(21-26)% increased Elemental Damage", statOrder = { 1857 }, level = 15, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["SynthesisImplicitElementalDamageHighTwoHand2_"] = { type = "Synthesis", affix = "", "(27-32)% increased Elemental Damage", statOrder = { 1857 }, level = 24, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["SynthesisImplicitElementalDamageHighTwoHand3"] = { type = "Synthesis", affix = "", "(33-38)% increased Elemental Damage", statOrder = { 1857 }, level = 36, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["SynthesisImplicitElementalDamageJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Elemental Damage", statOrder = { 1857 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["SynthesisImplicitElementalDamageJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Elemental Damage", statOrder = { 1857 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["SynthesisImplicitElementalLeechMinor1"] = { type = "Synthesis", affix = "", "0.2% of Elemental Damage Leeched as Life", statOrder = { 1567 }, level = 45, group = "ElementalDamageLeechedAsLifePermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, - ["SynthesisImplicitFirePenetration1"] = { type = "Synthesis", affix = "", "Damage Penetrates (3-5)% Fire Resistance", statOrder = { 2853 }, level = 60, group = "FireResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["SynthesisImplicitColdPenetration1"] = { type = "Synthesis", affix = "", "Damage Penetrates (3-5)% Cold Resistance", statOrder = { 2855 }, level = 60, group = "ColdResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["SynthesisImplicitLightningPenetration1"] = { type = "Synthesis", affix = "", "Damage Penetrates (3-5)% Lightning Resistance", statOrder = { 2856 }, level = 60, group = "LightningResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["SynthesisImplicitFirePenetrationWeapon1"] = { type = "Synthesis", affix = "", "Damage with Weapons Penetrates (4-6)% Fire Resistance", statOrder = { 3453 }, level = 60, group = "FirePenetrationWeapon", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["SynthesisImplicitColdPenetrationWeapon1_"] = { type = "Synthesis", affix = "", "Damage with Weapons Penetrates (4-6)% Cold Resistance", statOrder = { 3452 }, level = 60, group = "ColdPenetrationWeapon", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["SynthesisImplicitLightningPenetrationWeapon1__"] = { type = "Synthesis", affix = "", "Damage with Weapons Penetrates (4-6)% Lightning Resistance", statOrder = { 3454 }, level = 60, group = "LightningPenetrationWeapon", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["SynthesisImplicitElementalPenetration1"] = { type = "Synthesis", affix = "", "Damage Penetrates (3-5)% Elemental Resistances", statOrder = { 2852 }, level = 60, group = "ElementalPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["SynthesisImplicitMeleeDamageJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Melee Damage", statOrder = { 1119 }, level = 1, group = "MeleeDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, - ["SynthesisImplicitMeleeDamageJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Melee Damage", statOrder = { 1119 }, level = 1, group = "MeleeDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, - ["SynthesisImplicitMaceIncreasedPhysicalDamageJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Physical Damage with Maces or Sceptres", statOrder = { 1211 }, level = 1, group = "MaceIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["SynthesisImplicitAxeIncreasedPhysicalDamageJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Physical Damage with Axes", statOrder = { 1187 }, level = 1, group = "AxeIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["SynthesisImplicitSwordIncreasedPhysicalDamageJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Physical Damage with Swords", statOrder = { 1222 }, level = 1, group = "SwordIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["SynthesisImplicitBowIncreasedPhysicalDamageJewel1_"] = { type = "Synthesis", affix = "", "(3-4)% increased Physical Damage with Bows", statOrder = { 1217 }, level = 1, group = "BowIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["SynthesisImplicitClawIncreasedPhysicalDamageJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Physical Damage with Claws", statOrder = { 1199 }, level = 1, group = "ClawIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["SynthesisImplicitDaggerIncreasedPhysicalDamageJewel1_"] = { type = "Synthesis", affix = "", "(3-4)% increased Physical Damage with Daggers", statOrder = { 1205 }, level = 1, group = "DaggerIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["SynthesisImplicitWandIncreasedPhysicalDamageJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Physical Damage with Wands", statOrder = { 1229 }, level = 1, group = "WandIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["SynthesisImplicitStaffIncreasedPhysicalDamageJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Physical Damage with Staves", statOrder = { 1191 }, level = 1, group = "StaffIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["SynthesisImplicitMaceIncreasedPhysicalDamageJewel2_"] = { type = "Synthesis", affix = "", "(5-6)% increased Physical Damage with Maces or Sceptres", statOrder = { 1211 }, level = 1, group = "MaceIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["SynthesisImplicitAxeIncreasedPhysicalDamageJewel2_"] = { type = "Synthesis", affix = "", "(5-6)% increased Physical Damage with Axes", statOrder = { 1187 }, level = 1, group = "AxeIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["SynthesisImplicitSwordIncreasedPhysicalDamageJewel2"] = { type = "Synthesis", affix = "", "(5-6)% increased Physical Damage with Swords", statOrder = { 1222 }, level = 1, group = "SwordIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["SynthesisImplicitBowIncreasedPhysicalDamageJewel2_"] = { type = "Synthesis", affix = "", "(5-6)% increased Physical Damage with Bows", statOrder = { 1217 }, level = 1, group = "BowIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["SynthesisImplicitClawIncreasedPhysicalDamageJewel2"] = { type = "Synthesis", affix = "", "(5-6)% increased Physical Damage with Claws", statOrder = { 1199 }, level = 1, group = "ClawIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["SynthesisImplicitDaggerIncreasedPhysicalDamageJewel2"] = { type = "Synthesis", affix = "", "(5-6)% increased Physical Damage with Daggers", statOrder = { 1205 }, level = 1, group = "DaggerIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["SynthesisImplicitWandIncreasedPhysicalDamageJewel2"] = { type = "Synthesis", affix = "", "(5-6)% increased Physical Damage with Wands", statOrder = { 1229 }, level = 1, group = "WandIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["SynthesisImplicitStaffIncreasedPhysicalDamageJewel2"] = { type = "Synthesis", affix = "", "(5-6)% increased Physical Damage with Staves", statOrder = { 1191 }, level = 1, group = "StaffIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["SynthesisImplicitSpellDamageWithStaffJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Spell Damage while wielding a Staff", statOrder = { 1112 }, level = 1, group = "SpellDamageWithStaff", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SynthesisImplicitSpellDamageWithDualWieldJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Spell Damage while Dual Wielding", statOrder = { 1115 }, level = 1, group = "SpellDamageWithDualWield", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SynthesisImplicitSpellDamageWithShieldJewel1__"] = { type = "Synthesis", affix = "", "(3-4)% increased Spell Damage while holding a Shield", statOrder = { 1114 }, level = 1, group = "SpellDamageWithShield", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SynthesisImplicitSpellDamageWithStaffJewel2_"] = { type = "Synthesis", affix = "", "(5-6)% increased Spell Damage while wielding a Staff", statOrder = { 1112 }, level = 1, group = "SpellDamageWithStaff", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SynthesisImplicitSpellDamageWithDualWieldJewel2"] = { type = "Synthesis", affix = "", "(5-6)% increased Spell Damage while Dual Wielding", statOrder = { 1115 }, level = 1, group = "SpellDamageWithDualWield", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SynthesisImplicitSpellDamageWithShieldJewel2"] = { type = "Synthesis", affix = "", "(5-6)% increased Spell Damage while holding a Shield", statOrder = { 1114 }, level = 1, group = "SpellDamageWithShield", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SynthesisImplicitAttackDamage1"] = { type = "Synthesis", affix = "", "(12-13)% increased Attack Damage", statOrder = { 1083 }, level = 1, group = "AttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, - ["SynthesisImplicitAttackDamage2"] = { type = "Synthesis", affix = "", "(14-16)% increased Attack Damage", statOrder = { 1083 }, level = 15, group = "AttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, - ["SynthesisImplicitAttackDamage3"] = { type = "Synthesis", affix = "", "(17-20)% increased Attack Damage", statOrder = { 1083 }, level = 24, group = "AttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, - ["SynthesisImplicitWeaponAttackDamage1"] = { type = "Synthesis", affix = "", "(23-26)% increased Attack Damage", statOrder = { 1083 }, level = 1, group = "AttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, - ["SynthesisImplicitWeaponAttackDamage2"] = { type = "Synthesis", affix = "", "(27-30)% increased Attack Damage", statOrder = { 1083 }, level = 15, group = "AttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, - ["SynthesisImplicitWeaponAttackDamage3"] = { type = "Synthesis", affix = "", "(31-35)% increased Attack Damage", statOrder = { 1083 }, level = 24, group = "AttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, - ["SynthesisImplicitWeaponAttackDamageTwoHand1"] = { type = "Synthesis", affix = "", "(29-35)% increased Attack Damage", statOrder = { 1083 }, level = 1, group = "AttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, - ["SynthesisImplicitWeaponAttackDamageTwoHand2"] = { type = "Synthesis", affix = "", "(36-44)% increased Attack Damage", statOrder = { 1083 }, level = 15, group = "AttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, - ["SynthesisImplicitWeaponAttackDamageTwoHand3"] = { type = "Synthesis", affix = "", "(45-51)% increased Attack Damage", statOrder = { 1083 }, level = 24, group = "AttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, - ["SynthesisImplicitSpellDamage1"] = { type = "Synthesis", affix = "", "(12-13)% increased Spell Damage", statOrder = { 1108 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SynthesisImplicitSpellDamage2_"] = { type = "Synthesis", affix = "", "(14-16)% increased Spell Damage", statOrder = { 1108 }, level = 15, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SynthesisImplicitSpellDamage3_"] = { type = "Synthesis", affix = "", "(17-20)% increased Spell Damage", statOrder = { 1108 }, level = 24, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SynthesisImplicitWeaponSpellDamage1"] = { type = "Synthesis", affix = "", "(16-18)% increased Spell Damage", statOrder = { 1108 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SynthesisImplicitWeaponSpellDamage2"] = { type = "Synthesis", affix = "", "(19-22)% increased Spell Damage", statOrder = { 1108 }, level = 15, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SynthesisImplicitWeaponSpellDamage3"] = { type = "Synthesis", affix = "", "(23-26)% increased Spell Damage", statOrder = { 1108 }, level = 24, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SynthesisImplicitWeaponSpellDamage4"] = { type = "Synthesis", affix = "", "(27-30)% increased Spell Damage", statOrder = { 1108 }, level = 36, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SynthesisImplicitWeaponSpellDamage5"] = { type = "Synthesis", affix = "", "(31-35)% increased Spell Damage", statOrder = { 1108 }, level = 48, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SynthesisImplicitWeaponSpellDamageTwoHand1"] = { type = "Synthesis", affix = "", "(22-24)% increased Spell Damage", statOrder = { 1108 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SynthesisImplicitWeaponSpellDamageTwoHand2"] = { type = "Synthesis", affix = "", "(25-28)% increased Spell Damage", statOrder = { 1108 }, level = 15, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SynthesisImplicitWeaponSpellDamageTwoHand3"] = { type = "Synthesis", affix = "", "(29-35)% increased Spell Damage", statOrder = { 1108 }, level = 24, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SynthesisImplicitWeaponSpellDamageTwoHand4_"] = { type = "Synthesis", affix = "", "(36-44)% increased Spell Damage", statOrder = { 1108 }, level = 36, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SynthesisImplicitWeaponSpellDamageTwoHand5"] = { type = "Synthesis", affix = "", "(45-51)% increased Spell Damage", statOrder = { 1108 }, level = 48, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SynthesisImplicitSpellsDoubleDamageChance1__"] = { type = "Synthesis", affix = "", "Spells have a (8-10)% chance to deal Double Damage", statOrder = { 9621 }, level = 60, group = "SpellsDoubleDamageChance", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SynthesisImplicitSpellsDoubleDamageChance2_"] = { type = "Synthesis", affix = "", "Spells have a (16-18)% chance to deal Double Damage", statOrder = { 9621 }, level = 65, group = "SpellsDoubleDamageChance", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SynthesisImplicitSpellDamageJewel1__"] = { type = "Synthesis", affix = "", "(2-3)% increased Spell Damage", statOrder = { 1108 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SynthesisImplicitSpellDamageJewel2_"] = { type = "Synthesis", affix = "", "(4-5)% increased Spell Damage", statOrder = { 1108 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SynthesisImplicitStrength1"] = { type = "Synthesis", affix = "", "+(6-8) to Strength", statOrder = { 1062 }, level = 1, group = "StrengthImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["SynthesisImplicitStrength2__"] = { type = "Synthesis", affix = "", "+(9-11) to Strength", statOrder = { 1062 }, level = 1, group = "StrengthImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["SynthesisImplicitStrength3"] = { type = "Synthesis", affix = "", "+(12-14) to Strength", statOrder = { 1062 }, level = 1, group = "StrengthImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["SynthesisImplicitStrength4"] = { type = "Synthesis", affix = "", "+(15-17) to Strength", statOrder = { 1062 }, level = 15, group = "StrengthImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["SynthesisImplicitStrength5"] = { type = "Synthesis", affix = "", "+(18-20) to Strength", statOrder = { 1062 }, level = 24, group = "StrengthImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["SynthesisImplicitStrengthJewel1__"] = { type = "Synthesis", affix = "", "+(2-3) to Strength", statOrder = { 1062 }, level = 1, group = "StrengthImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["SynthesisImplicitStrengthJewel2"] = { type = "Synthesis", affix = "", "+(4-5) to Strength", statOrder = { 1062 }, level = 1, group = "StrengthImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["SynthesisImplicitPercentStrength1_"] = { type = "Synthesis", affix = "", "4% increased Strength", statOrder = { 1069 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["SynthesisImplicitPercentStrength2_"] = { type = "Synthesis", affix = "", "5% increased Strength", statOrder = { 1069 }, level = 16, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["SynthesisImplicitPercentStrength3_"] = { type = "Synthesis", affix = "", "6% increased Strength", statOrder = { 1069 }, level = 24, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["SynthesisImplicitPercentStrengthTrinket1"] = { type = "Synthesis", affix = "", "(7-9)% increased Strength", statOrder = { 1069 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["SynthesisImplicitPercentStrengthTrinket2"] = { type = "Synthesis", affix = "", "(10-12)% increased Strength", statOrder = { 1069 }, level = 16, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["SynthesisImplicitPercentStrengthTrinket3"] = { type = "Synthesis", affix = "", "(13-15)% increased Strength", statOrder = { 1069 }, level = 24, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["SynthesisImplicitDamagePerStrength1_"] = { type = "Synthesis", affix = "", "1% increased Damage per 15 Strength", statOrder = { 5758 }, level = 60, group = "DamagePer15Strength", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitAddedFireDamagePerStrength1"] = { type = "Synthesis", affix = "", "Adds (1-2) to (3-4) Fire Damage to Attacks with this Weapon per 10 Strength", statOrder = { 4691 }, level = 55, group = "AddedFireDamagePerStrength", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["SynthesisImplicitAddedFireDamagePerStrength2"] = { type = "Synthesis", affix = "", "Adds (2-3) to (4-5) Fire Damage to Attacks with this Weapon per 10 Strength", statOrder = { 4691 }, level = 55, group = "AddedFireDamagePerStrength", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["SynthesisImplicitSpellDamagePerStrength1_"] = { type = "Synthesis", affix = "", "1% increased Spell Damage per 16 Strength", statOrder = { 9639 }, level = 55, group = "SpellDamagePer16Strength", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SynthesisImplicitSpellDamagePerStrength2_"] = { type = "Synthesis", affix = "", "1% increased Spell Damage per 10 Strength", statOrder = { 9636 }, level = 55, group = "SpellDamagePer10Strength", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SynthesisImplicitDamageTakenPer250Strength1"] = { type = "Synthesis", affix = "", "1% reduced Damage taken per 250 Strength", statOrder = { 5808 }, level = 60, group = "DamageTakenPer250Strength", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitDexterity1"] = { type = "Synthesis", affix = "", "+(6-8) to Dexterity", statOrder = { 1063 }, level = 1, group = "DexterityImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["SynthesisImplicitDexterity2"] = { type = "Synthesis", affix = "", "+(9-11) to Dexterity", statOrder = { 1063 }, level = 1, group = "DexterityImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["SynthesisImplicitDexterity3"] = { type = "Synthesis", affix = "", "+(12-14) to Dexterity", statOrder = { 1063 }, level = 1, group = "DexterityImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["SynthesisImplicitDexterity4"] = { type = "Synthesis", affix = "", "+(15-17) to Dexterity", statOrder = { 1063 }, level = 15, group = "DexterityImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["SynthesisImplicitDexterity5"] = { type = "Synthesis", affix = "", "+(18-20) to Dexterity", statOrder = { 1063 }, level = 24, group = "DexterityImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["SynthesisImplicitDexterityJewel1"] = { type = "Synthesis", affix = "", "+(2-3) to Dexterity", statOrder = { 1063 }, level = 1, group = "DexterityImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["SynthesisImplicitDexterityJewel2_"] = { type = "Synthesis", affix = "", "+(4-5) to Dexterity", statOrder = { 1063 }, level = 1, group = "DexterityImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["SynthesisImplicitPercentDexterity1"] = { type = "Synthesis", affix = "", "4% increased Dexterity", statOrder = { 1070 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["SynthesisImplicitPercentDexterity2"] = { type = "Synthesis", affix = "", "5% increased Dexterity", statOrder = { 1070 }, level = 16, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["SynthesisImplicitPercentDexterity3_"] = { type = "Synthesis", affix = "", "6% increased Dexterity", statOrder = { 1070 }, level = 24, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["SynthesisImplicitPercentDexterityTrinket1"] = { type = "Synthesis", affix = "", "(7-9)% increased Dexterity", statOrder = { 1070 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["SynthesisImplicitPercentDexterityTrinket2"] = { type = "Synthesis", affix = "", "(10-12)% increased Dexterity", statOrder = { 1070 }, level = 16, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["SynthesisImplicitPercentDexterityTrinket3"] = { type = "Synthesis", affix = "", "(13-15)% increased Dexterity", statOrder = { 1070 }, level = 24, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["SynthesisImplicitDamagePerDexterity1"] = { type = "Synthesis", affix = "", "1% increased Damage per 15 Dexterity", statOrder = { 5756 }, level = 60, group = "DamagePer15Dexterity", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitAddedColdDamagePerDexterity1_"] = { type = "Synthesis", affix = "", "Adds (1-2) to (3-4) Cold Damage to Attacks with this Weapon per 10 Dexterity", statOrder = { 4745 }, level = 55, group = "AddedColdDamagePerDexterity", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["SynthesisImplicitAddedColdDamagePerDexterity2"] = { type = "Synthesis", affix = "", "Adds (2-3) to (4-5) Cold Damage to Attacks with this Weapon per 10 Dexterity", statOrder = { 4745 }, level = 55, group = "AddedColdDamagePerDexterity", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["SynthesisImplicitSpellDamagePerDexterity1"] = { type = "Synthesis", affix = "", "1% increased Spell Damage per 16 Dexterity", statOrder = { 9637 }, level = 55, group = "SpellDamagePer16Dexterity", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SynthesisImplicitDamageTakenPer250Dexterity1"] = { type = "Synthesis", affix = "", "1% reduced Damage taken per 250 Dexterity", statOrder = { 5806 }, level = 60, group = "DamageTakenPer250Dexterity", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitIntelligence1"] = { type = "Synthesis", affix = "", "+(6-8) to Intelligence", statOrder = { 1064 }, level = 1, group = "IntelligenceImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["SynthesisImplicitIntelligence2_"] = { type = "Synthesis", affix = "", "+(9-11) to Intelligence", statOrder = { 1064 }, level = 1, group = "IntelligenceImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["SynthesisImplicitIntelligence3_"] = { type = "Synthesis", affix = "", "+(12-14) to Intelligence", statOrder = { 1064 }, level = 1, group = "IntelligenceImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["SynthesisImplicitIntelligence4"] = { type = "Synthesis", affix = "", "+(15-17) to Intelligence", statOrder = { 1064 }, level = 15, group = "IntelligenceImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["SynthesisImplicitIntelligence5"] = { type = "Synthesis", affix = "", "+(18-20) to Intelligence", statOrder = { 1064 }, level = 24, group = "IntelligenceImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["SynthesisImplicitIntelligenceJewel1"] = { type = "Synthesis", affix = "", "+(2-3) to Intelligence", statOrder = { 1064 }, level = 1, group = "IntelligenceImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["SynthesisImplicitIntelligenceJewel2"] = { type = "Synthesis", affix = "", "+(4-5) to Intelligence", statOrder = { 1064 }, level = 1, group = "IntelligenceImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["SynthesisImplicitPercentIntelligence1"] = { type = "Synthesis", affix = "", "4% increased Intelligence", statOrder = { 1071 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["SynthesisImplicitPercentIntelligence2_"] = { type = "Synthesis", affix = "", "5% increased Intelligence", statOrder = { 1071 }, level = 16, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["SynthesisImplicitPercentIntelligence3_"] = { type = "Synthesis", affix = "", "6% increased Intelligence", statOrder = { 1071 }, level = 24, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["SynthesisImplicitPercentIntelligenceTrinket1"] = { type = "Synthesis", affix = "", "(7-9)% increased Intelligence", statOrder = { 1071 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["SynthesisImplicitPercentIntelligenceTrinket2_"] = { type = "Synthesis", affix = "", "(10-12)% increased Intelligence", statOrder = { 1071 }, level = 16, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["SynthesisImplicitPercentIntelligenceTrinket3_"] = { type = "Synthesis", affix = "", "(13-15)% increased Intelligence", statOrder = { 1071 }, level = 24, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["SynthesisImplicitDamagePerIntelligence1"] = { type = "Synthesis", affix = "", "1% increased Damage per 15 Intelligence", statOrder = { 5757 }, level = 60, group = "DamagePer15Intelligence", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitAddedLightningDamagePerIntelligence1"] = { type = "Synthesis", affix = "", "Adds 1 to (5-6) Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrder = { 4694 }, level = 55, group = "AddedLightningDamagePerIntelligence", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["SynthesisImplicitAddedLightningDamagePerIntelligence2"] = { type = "Synthesis", affix = "", "Adds 1 to (7-8) Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrder = { 4694 }, level = 55, group = "AddedLightningDamagePerIntelligence", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["SynthesisImplicitSpellDamagePerIntelligence1"] = { type = "Synthesis", affix = "", "1% increased Spell Damage per 16 Intelligence", statOrder = { 9638 }, level = 55, group = "SpellDamagePer16Intelligence", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SynthesisImplicitSpellDamagePerIntelligence2"] = { type = "Synthesis", affix = "", "1% increased Spell Damage per 10 Intelligence", statOrder = { 2613 }, level = 55, group = "SpellDamagePer10Intelligence", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SynthesisImplicitDamageTakenPer250Intelligence1"] = { type = "Synthesis", affix = "", "1% reduced Damage taken per 250 Intelligence", statOrder = { 5807 }, level = 60, group = "DamageTakenPer250Intelligence", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitAllAttributes1"] = { type = "Synthesis", affix = "", "+(6-7) to all Attributes", statOrder = { 1061 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["SynthesisImplicitAllAttributes2"] = { type = "Synthesis", affix = "", "+(8-9) to all Attributes", statOrder = { 1061 }, level = 15, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["SynthesisImplicitAllAttributes3"] = { type = "Synthesis", affix = "", "+(10-12) to all Attributes", statOrder = { 1061 }, level = 24, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["SynthesisImplicitPercentAllAttributes1"] = { type = "Synthesis", affix = "", "2% increased Attributes", statOrder = { 1068 }, level = 48, group = "PercentageAllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["SynthesisImplicitPercentAllAttributes2"] = { type = "Synthesis", affix = "", "3% increased Attributes", statOrder = { 1068 }, level = 56, group = "PercentageAllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["SynthesisImplicitAccuracy1"] = { type = "Synthesis", affix = "", "(10-11)% increased Global Accuracy Rating", statOrder = { 1318 }, level = 1, group = "IncreasedAccuracyPercent", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, - ["SynthesisImplicitAccuracy2"] = { type = "Synthesis", affix = "", "(12-13)% increased Global Accuracy Rating", statOrder = { 1318 }, level = 15, group = "IncreasedAccuracyPercent", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, - ["SynthesisImplicitAccuracy3"] = { type = "Synthesis", affix = "", "(14-15)% increased Global Accuracy Rating", statOrder = { 1318 }, level = 24, group = "IncreasedAccuracyPercent", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, - ["SynthesisImplicitAccuracy4"] = { type = "Synthesis", affix = "", "(16-17)% increased Global Accuracy Rating", statOrder = { 1318 }, level = 36, group = "IncreasedAccuracyPercent", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, - ["SynthesisImplicitAccuracy5_"] = { type = "Synthesis", affix = "", "(18-20)% increased Global Accuracy Rating", statOrder = { 1318 }, level = 48, group = "IncreasedAccuracyPercent", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, - ["SynthesisImplicitAccuracyJewel1"] = { type = "Synthesis", affix = "", "+(21-35) to Accuracy Rating", statOrder = { 1317 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, - ["SynthesisImplicitAccuracyJewel2"] = { type = "Synthesis", affix = "", "+(36-50) to Accuracy Rating", statOrder = { 1317 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, - ["SynthesisImplicitFlatAccuracy1_"] = { type = "Synthesis", affix = "", "+(150-250) to Accuracy Rating", statOrder = { 1317 }, level = 48, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, - ["SynthesisImplicitFlatAccuracy2"] = { type = "Synthesis", affix = "", "+(251-350) to Accuracy Rating", statOrder = { 1317 }, level = 56, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, - ["SynthesisImplicitWeaponAccuracy1"] = { type = "Synthesis", affix = "", "(10-15)% increased Global Accuracy Rating", statOrder = { 1318 }, level = 1, group = "LocalAccuracyRatingIncrease", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, - ["SynthesisImplicitWeaponAccuracy2"] = { type = "Synthesis", affix = "", "(20-25)% increased Global Accuracy Rating", statOrder = { 1318 }, level = 15, group = "LocalAccuracyRatingIncrease", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, - ["SynthesisImplicitWeaponAccuracy3"] = { type = "Synthesis", affix = "", "(30-35)% increased Global Accuracy Rating", statOrder = { 1318 }, level = 24, group = "LocalAccuracyRatingIncrease", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, - ["SynthesisImplicitWeaponAccuracyHigh1"] = { type = "Synthesis", affix = "", "100% increased Global Accuracy Rating", statOrder = { 1318 }, level = 65, group = "LocalAccuracyRatingIncrease", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, - ["SynthesisImplicitMaceAccuracyRatingJewel1__"] = { type = "Synthesis", affix = "", "(2-3)% increased Accuracy Rating with Maces or Sceptres", statOrder = { 1326 }, level = 1, group = "MaceIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, - ["SynthesisImplicitAxeAccuracyRatingJewel1__"] = { type = "Synthesis", affix = "", "(2-3)% increased Accuracy Rating with Axes", statOrder = { 1322 }, level = 1, group = "AxeIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, - ["SynthesisImplicitSwordAccuracyRatingJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Accuracy Rating with Swords", statOrder = { 1328 }, level = 1, group = "SwordIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, - ["SynthesisImplicitBowAccuracyRatingJewel1_"] = { type = "Synthesis", affix = "", "(2-3)% increased Accuracy Rating with Bows", statOrder = { 1327 }, level = 1, group = "BowIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, - ["SynthesisImplicitClawAccuracyRatingJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Accuracy Rating with Claws", statOrder = { 1324 }, level = 1, group = "ClawIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, - ["SynthesisImplicitDaggerAccuracyRatingJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Accuracy Rating with Daggers", statOrder = { 1325 }, level = 1, group = "DaggerIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, - ["SynthesisImplicitWandAccuracyRatingJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Accuracy Rating with Wands", statOrder = { 1329 }, level = 1, group = "WandIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, - ["SynthesisImplicitStaffAccuracyRatingJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Accuracy Rating with Staves", statOrder = { 1323 }, level = 1, group = "StaffIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, - ["SynthesisImplicitMaceAccuracyRatingJewel2_"] = { type = "Synthesis", affix = "", "(4-5)% increased Accuracy Rating with Maces or Sceptres", statOrder = { 1326 }, level = 1, group = "MaceIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, - ["SynthesisImplicitAxeAccuracyRatingJewel2_"] = { type = "Synthesis", affix = "", "(4-5)% increased Accuracy Rating with Axes", statOrder = { 1322 }, level = 1, group = "AxeIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, - ["SynthesisImplicitSwordAccuracyRatingJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Accuracy Rating with Swords", statOrder = { 1328 }, level = 1, group = "SwordIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, - ["SynthesisImplicitBowAccuracyRatingJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Accuracy Rating with Bows", statOrder = { 1327 }, level = 1, group = "BowIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, - ["SynthesisImplicitClawAccuracyRatingJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Accuracy Rating with Claws", statOrder = { 1324 }, level = 1, group = "ClawIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, - ["SynthesisImplicitDaggerAccuracyRatingJewel2_"] = { type = "Synthesis", affix = "", "(4-5)% increased Accuracy Rating with Daggers", statOrder = { 1325 }, level = 1, group = "DaggerIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, - ["SynthesisImplicitWandAccuracyRatingJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Accuracy Rating with Wands", statOrder = { 1329 }, level = 1, group = "WandIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, - ["SynthesisImplicitStaffAccuracyRatingJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Accuracy Rating with Staves", statOrder = { 1323 }, level = 1, group = "StaffIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, - ["SynthesisImplicitIncreasedArmour1_"] = { type = "Synthesis", affix = "", "(15-18)% increased Armour", statOrder = { 1425 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, - ["SynthesisImplicitIncreasedArmour2_"] = { type = "Synthesis", affix = "", "(19-22)% increased Armour", statOrder = { 1425 }, level = 15, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, - ["SynthesisImplicitIncreasedArmour3"] = { type = "Synthesis", affix = "", "(23-26)% increased Armour", statOrder = { 1425 }, level = 24, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, - ["SynthesisImplicitIncreasedArmour4"] = { type = "Synthesis", affix = "", "(27-30)% increased Armour", statOrder = { 1425 }, level = 36, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, - ["SynthesisImplicitIncreasedArmour5_"] = { type = "Synthesis", affix = "", "(30-35)% increased Armour", statOrder = { 1425 }, level = 48, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, - ["SynthesisImplicitFlatArmour1"] = { type = "Synthesis", affix = "", "+(15-20) to Armour", statOrder = { 1423 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, - ["SynthesisImplicitFlatArmour2"] = { type = "Synthesis", affix = "", "+(21-30) to Armour", statOrder = { 1423 }, level = 15, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, - ["SynthesisImplicitFlatArmour3"] = { type = "Synthesis", affix = "", "+(31-40) to Armour", statOrder = { 1423 }, level = 24, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, - ["SynthesisImplicitFlatArmour4"] = { type = "Synthesis", affix = "", "+(41-55) to Armour", statOrder = { 1423 }, level = 36, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, - ["SynthesisImplicitFlatArmour5"] = { type = "Synthesis", affix = "", "+(56-70) to Armour", statOrder = { 1423 }, level = 48, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, - ["SynthesisImplicitAdditionalPhysReduction1"] = { type = "Synthesis", affix = "", "2% additional Physical Damage Reduction", statOrder = { 2150 }, level = 36, group = "ReducedPhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, }, - ["SynthesisImplicitAdditionalPhysReduction2"] = { type = "Synthesis", affix = "", "3% additional Physical Damage Reduction", statOrder = { 2150 }, level = 48, group = "ReducedPhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, }, - ["SynthesisImplicitAdditionalPhysReduction3"] = { type = "Synthesis", affix = "", "4% additional Physical Damage Reduction", statOrder = { 2150 }, level = 56, group = "ReducedPhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, }, - ["SynthesisImplicitGlobalArmour1"] = { type = "Synthesis", affix = "", "(7-9)% increased Armour", statOrder = { 1424 }, level = 1, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, - ["SynthesisImplicitGlobalArmour2"] = { type = "Synthesis", affix = "", "(10-12)% increased Armour", statOrder = { 1424 }, level = 15, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, - ["SynthesisImplicitGlobalArmour3"] = { type = "Synthesis", affix = "", "(13-15)% increased Armour", statOrder = { 1424 }, level = 24, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, - ["SynthesisImplicitGlobalArmourTwoHand1__"] = { type = "Synthesis", affix = "", "(14-16)% increased Armour", statOrder = { 1424 }, level = 36, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, - ["SynthesisImplicitGlobalArmourTwoHand2"] = { type = "Synthesis", affix = "", "(17-19)% increased Armour", statOrder = { 1424 }, level = 48, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, - ["SynthesisImplicitGlobalArmourTwoHand3"] = { type = "Synthesis", affix = "", "(20-22)% increased Armour", statOrder = { 1424 }, level = 56, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, - ["SynthesisImplicitGlobalArmourJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Armour", statOrder = { 1424 }, level = 1, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, - ["SynthesisImplicitGlobalArmourJewel2_"] = { type = "Synthesis", affix = "", "(5-6)% increased Armour", statOrder = { 1424 }, level = 1, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, - ["SynthesisImplicitReducedDamageFromCrits1"] = { type = "Synthesis", affix = "", "You take (15-25)% reduced Extra Damage from Critical Strikes", statOrder = { 1395 }, level = 55, group = "ReducedExtraDamageFromCrits", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, - ["SynthesisImplicitChanceForDoubleArmour1"] = { type = "Synthesis", affix = "", "(15-20)% chance to Defend with 200% of Armour", statOrder = { 5381 }, level = 65, group = "ChanceWhenHitForArmourToBeDoubled", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, - ["SynthesisImplicitIncreasedEvasion1"] = { type = "Synthesis", affix = "", "(15-18)% increased Evasion Rating", statOrder = { 1433 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, - ["SynthesisImplicitIncreasedEvasion2"] = { type = "Synthesis", affix = "", "(19-22)% increased Evasion Rating", statOrder = { 1433 }, level = 15, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, - ["SynthesisImplicitIncreasedEvasion3"] = { type = "Synthesis", affix = "", "(23-26)% increased Evasion Rating", statOrder = { 1433 }, level = 24, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, - ["SynthesisImplicitIncreasedEvasion4"] = { type = "Synthesis", affix = "", "(27-30)% increased Evasion Rating", statOrder = { 1433 }, level = 36, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, - ["SynthesisImplicitIncreasedEvasion5"] = { type = "Synthesis", affix = "", "(30-35)% increased Evasion Rating", statOrder = { 1433 }, level = 48, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, - ["SynthesisImplicitFlatEvasion1"] = { type = "Synthesis", affix = "", "+(15-20) to Evasion Rating", statOrder = { 1431 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, - ["SynthesisImplicitFlatEvasion2"] = { type = "Synthesis", affix = "", "+(21-30) to Evasion Rating", statOrder = { 1431 }, level = 15, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, - ["SynthesisImplicitFlatEvasion3"] = { type = "Synthesis", affix = "", "+(31-40) to Evasion Rating", statOrder = { 1431 }, level = 24, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, - ["SynthesisImplicitFlatEvasion4"] = { type = "Synthesis", affix = "", "+(41-55) to Evasion Rating", statOrder = { 1431 }, level = 36, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, - ["SynthesisImplicitFlatEvasion5"] = { type = "Synthesis", affix = "", "+(56-70) to Evasion Rating", statOrder = { 1431 }, level = 48, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, - ["SynthesisImplicitAdditionalEvadeChance1"] = { type = "Synthesis", affix = "", "+2% chance to Evade Attack Hits", statOrder = { 5383 }, level = 36, group = "AdditionalChanceToEvade", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, - ["SynthesisImplicitAdditionalEvadeChance2"] = { type = "Synthesis", affix = "", "+3% chance to Evade Attack Hits", statOrder = { 5383 }, level = 48, group = "AdditionalChanceToEvade", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, - ["SynthesisImplicitAdditionalEvadeChance3"] = { type = "Synthesis", affix = "", "+4% chance to Evade Attack Hits", statOrder = { 5383 }, level = 56, group = "AdditionalChanceToEvade", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, - ["SynthesisImplicitGlobalEvasion1"] = { type = "Synthesis", affix = "", "(7-9)% increased Evasion Rating", statOrder = { 1432 }, level = 1, group = "GlobalEvasionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, - ["SynthesisImplicitGlobalEvasion2"] = { type = "Synthesis", affix = "", "(10-12)% increased Evasion Rating", statOrder = { 1432 }, level = 15, group = "GlobalEvasionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, - ["SynthesisImplicitGlobalEvasion3"] = { type = "Synthesis", affix = "", "(13-15)% increased Evasion Rating", statOrder = { 1432 }, level = 24, group = "GlobalEvasionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, - ["SynthesisImplicitGlobalEvasionTwoHand1_"] = { type = "Synthesis", affix = "", "(14-16)% increased Evasion Rating", statOrder = { 1432 }, level = 15, group = "GlobalEvasionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, - ["SynthesisImplicitGlobalEvasionTwoHand2_"] = { type = "Synthesis", affix = "", "(17-19)% increased Evasion Rating", statOrder = { 1432 }, level = 24, group = "GlobalEvasionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, - ["SynthesisImplicitGlobalEvasionTwoHand3"] = { type = "Synthesis", affix = "", "(20-22)% increased Evasion Rating", statOrder = { 1432 }, level = 36, group = "GlobalEvasionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, - ["SynthesisImplicitGlobalEvasionJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Evasion Rating", statOrder = { 1432 }, level = 1, group = "GlobalEvasionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, - ["SynthesisImplicitGlobalEvasionJewel2__"] = { type = "Synthesis", affix = "", "(5-6)% increased Evasion Rating", statOrder = { 1432 }, level = 1, group = "GlobalEvasionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, - ["SynthesisImplicitAvoidStatusAilments1"] = { type = "Synthesis", affix = "", "(10-15)% chance to Avoid Elemental Ailments", statOrder = { 1724 }, level = 45, group = "AvoidElementalStatusAilments", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, - ["SynthesisImplicitAvoidStatusAilments2"] = { type = "Synthesis", affix = "", "(16-25)% chance to Avoid Elemental Ailments", statOrder = { 1724 }, level = 55, group = "AvoidElementalStatusAilments", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, - ["SynthesisImplicitAvoidStatusAilmentsMinor1"] = { type = "Synthesis", affix = "", "(10-12)% chance to Avoid Elemental Ailments", statOrder = { 1724 }, level = 45, group = "AvoidElementalStatusAilments", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, - ["SynthesisImplicitAvoidStatusAilmentsMinor2"] = { type = "Synthesis", affix = "", "(13-15)% chance to Avoid Elemental Ailments", statOrder = { 1724 }, level = 55, group = "AvoidElementalStatusAilments", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, - ["SynthesisImplicitAvoidStatusAilmentsJewel1"] = { type = "Synthesis", affix = "", "(5-7)% chance to Avoid Elemental Ailments", statOrder = { 1724 }, level = 1, group = "AvoidElementalStatusAilments", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, - ["SynthesisImplicitBlindOnHit1"] = { type = "Synthesis", affix = "", "(10-15)% Global chance to Blind Enemies on hit", statOrder = { 2830 }, level = 65, group = "GlobalChanceToBlindOnHit", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitIncreasedEnergyShield1"] = { type = "Synthesis", affix = "", "(15-16)% increased Energy Shield", statOrder = { 1442 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["SynthesisImplicitIncreasedEnergyShield2"] = { type = "Synthesis", affix = "", "(17-18)% increased Energy Shield", statOrder = { 1442 }, level = 15, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["SynthesisImplicitIncreasedEnergyShield3__"] = { type = "Synthesis", affix = "", "(19-20)% increased Energy Shield", statOrder = { 1442 }, level = 24, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["SynthesisImplicitIncreasedEnergyShield4"] = { type = "Synthesis", affix = "", "(21-22)% increased Energy Shield", statOrder = { 1442 }, level = 36, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["SynthesisImplicitIncreasedEnergyShield5"] = { type = "Synthesis", affix = "", "(23-25)% increased Energy Shield", statOrder = { 1442 }, level = 48, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["SynthesisImplicitFlatEnergyShield1"] = { type = "Synthesis", affix = "", "+(10-12) to maximum Energy Shield", statOrder = { 1441 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["SynthesisImplicitFlatEnergyShield2"] = { type = "Synthesis", affix = "", "+(13-15) to maximum Energy Shield", statOrder = { 1441 }, level = 15, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["SynthesisImplicitFlatEnergyShield3"] = { type = "Synthesis", affix = "", "+(16-18) to maximum Energy Shield", statOrder = { 1441 }, level = 24, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["SynthesisImplicitFlatEnergyShield4"] = { type = "Synthesis", affix = "", "+(19-21) to maximum Energy Shield", statOrder = { 1441 }, level = 36, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["SynthesisImplicitFlatEnergyShield5_"] = { type = "Synthesis", affix = "", "+(22-25) to maximum Energy Shield", statOrder = { 1441 }, level = 48, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["SynthesisImplicitFlatEnergyShieldMinor1"] = { type = "Synthesis", affix = "", "+(6-7) to maximum Energy Shield", statOrder = { 1441 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["SynthesisImplicitFlatEnergyShieldMinor2_"] = { type = "Synthesis", affix = "", "+(8-9) to maximum Energy Shield", statOrder = { 1441 }, level = 15, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["SynthesisImplicitFlatEnergyShieldMinor3_"] = { type = "Synthesis", affix = "", "+(10-11) to maximum Energy Shield", statOrder = { 1441 }, level = 24, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["SynthesisImplicitFlatEnergyShieldMinor4"] = { type = "Synthesis", affix = "", "+(12-13) to maximum Energy Shield", statOrder = { 1441 }, level = 36, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["SynthesisImplicitFlatEnergyShieldMinor5_"] = { type = "Synthesis", affix = "", "+(14-15) to maximum Energy Shield", statOrder = { 1441 }, level = 48, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["SynthesisImplicitEnergyShieldRegen1"] = { type = "Synthesis", affix = "", "Regenerate (0.6-0.7)% of Energy Shield per second", statOrder = { 2521 }, level = 1, group = "EnergyShieldRegenerationPerMinute", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["SynthesisImplicitEnergyShieldRegen2"] = { type = "Synthesis", affix = "", "Regenerate (0.8-0.9)% of Energy Shield per second", statOrder = { 2521 }, level = 15, group = "EnergyShieldRegenerationPerMinute", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["SynthesisImplicitEnergyShieldRegen3"] = { type = "Synthesis", affix = "", "Regenerate 1% of Energy Shield per second", statOrder = { 2521 }, level = 24, group = "EnergyShieldRegenerationPerMinute", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["SynthesisImplicitEnergyShieldRegenJewel1_"] = { type = "Synthesis", affix = "", "Regenerate 0.2% of Energy Shield per second", statOrder = { 2521 }, level = 1, group = "EnergyShieldRegenerationPerMinute", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["SynthesisImplicitEnergyShieldJewel1"] = { type = "Synthesis", affix = "", "+(3-4) to maximum Energy Shield", statOrder = { 1440 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["SynthesisImplicitEnergyShieldJewel2_"] = { type = "Synthesis", affix = "", "+(5-6) to maximum Energy Shield", statOrder = { 1440 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["SynthesisImplicitEnergyShieldRechargeRate1"] = { type = "Synthesis", affix = "", "(8-9)% increased Energy Shield Recharge Rate", statOrder = { 1447 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["SynthesisImplicitEnergyShieldRechargeRate2_"] = { type = "Synthesis", affix = "", "(10-11)% increased Energy Shield Recharge Rate", statOrder = { 1447 }, level = 15, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["SynthesisImplicitEnergyShieldRechargeRate3_"] = { type = "Synthesis", affix = "", "(12-15)% increased Energy Shield Recharge Rate", statOrder = { 1447 }, level = 24, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["SynthesisImplicitEnergyShieldRechargeRateJewel1_"] = { type = "Synthesis", affix = "", "(3-5)% increased Energy Shield Recharge Rate", statOrder = { 1447 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["SynthesisImplicitGlobalEnergyShield1"] = { type = "Synthesis", affix = "", "(4-5)% increased maximum Energy Shield", statOrder = { 1443 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["SynthesisImplicitGlobalEnergyShield2"] = { type = "Synthesis", affix = "", "(6-7)% increased maximum Energy Shield", statOrder = { 1443 }, level = 15, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["SynthesisImplicitGlobalEnergyShield3__"] = { type = "Synthesis", affix = "", "(8-10)% increased maximum Energy Shield", statOrder = { 1443 }, level = 24, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["SynthesisImplicitGlobalEnergyShieldTwoHand1"] = { type = "Synthesis", affix = "", "(7-9)% increased maximum Energy Shield", statOrder = { 1443 }, level = 15, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["SynthesisImplicitGlobalEnergyShieldTwoHand2"] = { type = "Synthesis", affix = "", "(10-13)% increased maximum Energy Shield", statOrder = { 1443 }, level = 24, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["SynthesisImplicitGlobalEnergyShieldTwoHand3___"] = { type = "Synthesis", affix = "", "(14-16)% increased maximum Energy Shield", statOrder = { 1443 }, level = 36, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["SynthesisImplicitEnergyShieldRecoveryRate1"] = { type = "Synthesis", affix = "", "(10-15)% increased Energy Shield Recovery rate", statOrder = { 1450 }, level = 60, group = "EnergyShieldRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["SynthesisImplicitEnergyShieldLeech1"] = { type = "Synthesis", affix = "", "0.3% of Spell Damage Leeched as Energy Shield", statOrder = { 1603 }, level = 55, group = "EnergyShieldLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["SynthesisImplicitEnergyShieldLeechJewel1"] = { type = "Synthesis", affix = "", "0.2% of Spell Damage Leeched as Energy Shield", statOrder = { 1603 }, level = 1, group = "EnergyShieldLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["SynthesisImplicitMaximumEnergyShieldLeechRate1"] = { type = "Synthesis", affix = "", "10% increased Maximum total Energy Shield Recovery per second from Leech", statOrder = { 1615 }, level = 56, group = "MaximumEnergyShieldLeechRate", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["SynthesisImplicitEnergyShieldOnHitJewel1"] = { type = "Synthesis", affix = "", "Gain (1-2) Energy Shield per Enemy Hit with Attacks", statOrder = { 1628 }, level = 1, group = "EnergyShieldGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield", "attack" }, }, - ["SynthesisImplicitEnergyShieldDelay1"] = { type = "Synthesis", affix = "", "(4-6)% faster start of Energy Shield Recharge", statOrder = { 1444 }, level = 36, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["SynthesisImplicitEnergyShieldDelay2"] = { type = "Synthesis", affix = "", "(7-10)% faster start of Energy Shield Recharge", statOrder = { 1444 }, level = 48, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["SynthesisImplicitLifeAddedAsEnergyShield1_"] = { type = "Synthesis", affix = "", "Gain 3% of Maximum Life as Extra Maximum Energy Shield", statOrder = { 8708 }, level = 65, group = "LifeAddedAsEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["SynthesisImplicitShieldAttackBlock1_"] = { type = "Synthesis", affix = "", "+(2-3)% Chance to Block Attack Damage", statOrder = { 2334 }, level = 1, group = "AdditionalBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, }, - ["SynthesisImplicitShieldAttackBlock2"] = { type = "Synthesis", affix = "", "+(4-5)% Chance to Block Attack Damage", statOrder = { 2334 }, level = 15, group = "AdditionalBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, }, - ["SynthesisImplicitShieldSpellBlock1"] = { type = "Synthesis", affix = "", "(2-3)% Chance to Block Spell Damage", statOrder = { 1046 }, level = 1, group = "SpellBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, }, - ["SynthesisImplicitShieldSpellBlock2_"] = { type = "Synthesis", affix = "", "(4-5)% Chance to Block Spell Damage", statOrder = { 1046 }, level = 15, group = "SpellBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, }, - ["SynthesisImplicitAttackBlock1"] = { type = "Synthesis", affix = "", "2% Chance to Block Attack Damage", statOrder = { 1027 }, level = 48, group = "BlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, }, - ["SynthesisImplicitAttackBlock2"] = { type = "Synthesis", affix = "", "(4-5)% Chance to Block Attack Damage", statOrder = { 1027 }, level = 56, group = "BlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, }, - ["SynthesisImplicitSpellBlock1"] = { type = "Synthesis", affix = "", "2% Chance to Block Spell Damage", statOrder = { 1046 }, level = 48, group = "SpellBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, }, - ["SynthesisImplicitSpellBlock2_"] = { type = "Synthesis", affix = "", "(4-5)% Chance to Block Spell Damage", statOrder = { 1046 }, level = 56, group = "SpellBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, }, - ["SynthesisImplicitLifeOnBlock1_"] = { type = "Synthesis", affix = "", "Recover (3-5)% of Life when you Block", statOrder = { 2929 }, level = 60, group = "RecoverLifePercentOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life" }, }, - ["SynthesisImplicitManaOnBlock1"] = { type = "Synthesis", affix = "", "Recover (3-5)% of your maximum Mana when you Block", statOrder = { 7758 }, level = 60, group = "RecoverManaPercentOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "mana" }, }, - ["SynthesisImplicitEnergyShieldOnBlock1"] = { type = "Synthesis", affix = "", "Recover (3-5)% of Energy Shield when you Block", statOrder = { 2343 }, level = 60, group = "RecoverEnergyShieldPercentOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "defences", "energy_shield" }, }, - ["SynthesisImplicitMaximumAttackBlock1"] = { type = "Synthesis", affix = "", "+(1-2)% to maximum Chance to Block Attack Damage", statOrder = { 1865 }, level = 65, group = "MaximumBlockChance", weightKey = { }, weightVal = { }, modTags = { "block" }, }, - ["SynthesisImplicitMaximumSpellBlock1_"] = { type = "Synthesis", affix = "", "+(1-2)% to maximum Chance to Block Spell Damage", statOrder = { 1866 }, level = 65, group = "MaximumSpellBlockChance", weightKey = { }, weightVal = { }, modTags = { "block" }, }, - ["SynthesisImplicitFlatLifeOnBlock1"] = { type = "Synthesis", affix = "", "(15-25) Life gained when you Block", statOrder = { 1638 }, level = 15, group = "GainLifeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life" }, }, - ["SynthesisImplicitFlatLifeOnBlock2"] = { type = "Synthesis", affix = "", "(26-35) Life gained when you Block", statOrder = { 1638 }, level = 24, group = "GainLifeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life" }, }, - ["SynthesisImplicitFlatLifeOnBlockJewel1"] = { type = "Synthesis", affix = "", "(4-6) Life gained when you Block", statOrder = { 1638 }, level = 1, group = "GainLifeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life" }, }, - ["SynthesisImplicitFlatManaOnBlock1"] = { type = "Synthesis", affix = "", "(5-10) Mana gained when you Block", statOrder = { 1639 }, level = 15, group = "GainManaOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "mana" }, }, - ["SynthesisImplicitFlatManaOnBlock2"] = { type = "Synthesis", affix = "", "(11-15) Mana gained when you Block", statOrder = { 1639 }, level = 24, group = "GainManaOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "mana" }, }, - ["SynthesisImplicitFlatManaOnBlockJewel1"] = { type = "Synthesis", affix = "", "(3-5) Mana gained when you Block", statOrder = { 1639 }, level = 1, group = "GainManaOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "mana" }, }, - ["SynthesisImplicitAttackDodge1"] = { type = "Synthesis", affix = "", "+3% chance to Suppress Spell Damage", statOrder = { 1031 }, level = 48, group = "ChanceToSuppressSpellsOld", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitAttackDodge2"] = { type = "Synthesis", affix = "", "+(6-7)% chance to Suppress Spell Damage", statOrder = { 1031 }, level = 56, group = "ChanceToSuppressSpellsOld", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitSpellDodge1"] = { type = "Synthesis", affix = "", "+3% chance to Suppress Spell Damage", statOrder = { 1031 }, level = 48, group = "ChanceToSuppressSpellsOld", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitSpellDodge2"] = { type = "Synthesis", affix = "", "+(6-7)% chance to Suppress Spell Damage", statOrder = { 1031 }, level = 56, group = "ChanceToSuppressSpellsOld", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitAttackDodgeMinor1"] = { type = "Synthesis", affix = "", "+1% chance to Suppress Spell Damage", statOrder = { 1031 }, level = 48, group = "ChanceToSuppressSpellsOld", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitAttackDodgeMinor2"] = { type = "Synthesis", affix = "", "+3% chance to Suppress Spell Damage", statOrder = { 1031 }, level = 56, group = "ChanceToSuppressSpellsOld", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitAvoidFire1"] = { type = "Synthesis", affix = "", "(3-5)% chance to Avoid Fire Damage from Hits", statOrder = { 3239 }, level = 60, group = "FireDamageAvoidance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, }, - ["SynthesisImplicitAvoidCold1"] = { type = "Synthesis", affix = "", "(3-5)% chance to Avoid Cold Damage from Hits", statOrder = { 3240 }, level = 60, group = "ColdDamageAvoidance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, }, - ["SynthesisImplicitAvoidLightning1"] = { type = "Synthesis", affix = "", "(3-5)% chance to Avoid Lightning Damage from Hits", statOrder = { 3241 }, level = 60, group = "LightningDamageAvoidance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, }, - ["SynthesisImplicitMaximumAttackDodge1_"] = { type = "Synthesis", affix = "", "Prevent +(1-2)% of Suppressed Spell Damage", statOrder = { 1030 }, level = 65, group = "SpellDamageSuppressed", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitMaximumSpellDodge1"] = { type = "Synthesis", affix = "", "Prevent +(1-2)% of Suppressed Spell Damage", statOrder = { 1030 }, level = 65, group = "SpellDamageSuppressed", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitSpellDamageSuppressed1_"] = { type = "Synthesis", affix = "", "Prevent +(2-3)% of Suppressed Spell Damage", statOrder = { 1030 }, level = 65, group = "SpellDamageSuppressed", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitVitalityReservation1"] = { type = "Synthesis", affix = "", "Vitality has 20% increased Mana Reservation Efficiency", statOrder = { 10005 }, level = 48, group = "VitalityReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, }, - ["SynthesisImplicitVitalityReservationEfficiency1"] = { type = "Synthesis", affix = "", "Vitality has 20% increased Mana Reservation Efficiency", statOrder = { 10006 }, level = 48, group = "VitalityReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, }, - ["SynthesisImplicitDeterminationReservation1"] = { type = "Synthesis", affix = "", "Determination has 20% increased Mana Reservation Efficiency", statOrder = { 5868 }, level = 48, group = "DeterminationReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, }, - ["SynthesisImplicitDeterminationReservationEfficiency1_"] = { type = "Synthesis", affix = "", "Determination has 20% increased Mana Reservation Efficiency", statOrder = { 5869 }, level = 48, group = "DeterminationReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, }, - ["SynthesisImplicitGraceReservation1"] = { type = "Synthesis", affix = "", "Grace has 20% increased Mana Reservation Efficiency", statOrder = { 6548 }, level = 48, group = "GraceReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, }, - ["SynthesisImplicitGraceReservationEfficiency1"] = { type = "Synthesis", affix = "", "Grace has 20% increased Mana Reservation Efficiency", statOrder = { 6549 }, level = 48, group = "GraceReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, }, - ["SynthesisImplicitDisciplineReservation1_"] = { type = "Synthesis", affix = "", "Discipline has 20% increased Mana Reservation Efficiency", statOrder = { 5880 }, level = 48, group = "DisciplineReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, }, - ["SynthesisImplicitDisciplineReservationEfficiency1___"] = { type = "Synthesis", affix = "", "Discipline has 20% increased Mana Reservation Efficiency", statOrder = { 5881 }, level = 48, group = "DisciplineReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, }, - ["SynthesisImplicitPurityOfFireReservation1_"] = { type = "Synthesis", affix = "", "Purity of Fire has 20% increased Mana Reservation Efficiency", statOrder = { 9268 }, level = 48, group = "PurityOfFireReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, }, - ["SynthesisImplicitPurityOfFireReservationEfficiency1"] = { type = "Synthesis", affix = "", "Purity of Fire has 20% increased Mana Reservation Efficiency", statOrder = { 9269 }, level = 48, group = "PurityOfFireReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, }, - ["SynthesisImplicitPurityOfFireReservation2_"] = { type = "Synthesis", affix = "", "Purity of Fire has (60-80)% increased Mana Reservation Efficiency", statOrder = { 9268 }, level = 65, group = "PurityOfFireReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, }, - ["SynthesisImplicitPurityOfFireReservationEfficiency2"] = { type = "Synthesis", affix = "", "Purity of Fire has (60-80)% increased Mana Reservation Efficiency", statOrder = { 9269 }, level = 65, group = "PurityOfFireReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, }, - ["SynthesisImplicitPurityOfIceReservation1_"] = { type = "Synthesis", affix = "", "Purity of Ice has 20% increased Mana Reservation Efficiency", statOrder = { 9271 }, level = 48, group = "PurityOfIceReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, }, - ["SynthesisImplicitPurityOfIceReservationEfficiency1"] = { type = "Synthesis", affix = "", "Purity of Ice has 20% increased Mana Reservation Efficiency", statOrder = { 9272 }, level = 48, group = "PurityOfIceReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, }, - ["SynthesisImplicitPurityOfIceReservation2"] = { type = "Synthesis", affix = "", "Purity of Ice has (60-80)% increased Mana Reservation Efficiency", statOrder = { 9271 }, level = 65, group = "PurityOfIceReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, }, - ["SynthesisImplicitPurityOfIceReservationEfficiency2"] = { type = "Synthesis", affix = "", "Purity of Ice has (60-80)% increased Mana Reservation Efficiency", statOrder = { 9272 }, level = 65, group = "PurityOfIceReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, }, - ["SynthesisImplicitPurityOfLightningReservation1"] = { type = "Synthesis", affix = "", "Purity of Lightning has 20% increased Mana Reservation Efficiency", statOrder = { 9274 }, level = 48, group = "PurityOfLightningReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, }, - ["SynthesisImplicitPurityOfLightningReservationEfficiency1"] = { type = "Synthesis", affix = "", "Purity of Lightning has 20% increased Mana Reservation Efficiency", statOrder = { 9275 }, level = 48, group = "PurityOfLightningReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, }, - ["SynthesisImplicitPurityOfLightningReservation2"] = { type = "Synthesis", affix = "", "Purity of Lightning has (60-80)% increased Mana Reservation Efficiency", statOrder = { 9274 }, level = 65, group = "PurityOfLightningReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, }, - ["SynthesisImplicitPurityOfLightningReservationEfficiency2"] = { type = "Synthesis", affix = "", "Purity of Lightning has (60-80)% increased Mana Reservation Efficiency", statOrder = { 9275 }, level = 65, group = "PurityOfLightningReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, }, - ["SynthesisImplicitSocketedGemReducedReservation1_"] = { type = "Synthesis", affix = "", "Socketed Gems have 20% increased Reservation Efficiency", statOrder = { 447 }, level = 60, group = "DisplaySocketedGemsGetReducedReservation", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, }, - ["SynthesisImplicitSelfAuraEffect1_"] = { type = "Synthesis", affix = "", "(10-15)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3429 }, level = 56, group = "AuraEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, }, - ["SynthesisImplicitDeterminationEffect1"] = { type = "Synthesis", affix = "", "Determination has (15-20)% increased Aura Effect", statOrder = { 3233 }, level = 55, group = "IncreasedAuraEffectDeterminationCorrupted", weightKey = { }, weightVal = { }, modTags = { "aura" }, }, - ["SynthesisImplicitGraceEffect1"] = { type = "Synthesis", affix = "", "Grace has (15-20)% increased Aura Effect", statOrder = { 3229 }, level = 55, group = "IncreasedAuraEffectGraceCorrupted", weightKey = { }, weightVal = { }, modTags = { "aura" }, }, - ["SynthesisImplicitDisciplineEffect1"] = { type = "Synthesis", affix = "", "Discipline has (15-20)% increased Aura Effect", statOrder = { 3234 }, level = 55, group = "IncreasedAuraEffectDisciplineCorrupted", weightKey = { }, weightVal = { }, modTags = { "aura" }, }, - ["SynthesisImplicitDeterminationPhysicalDamageReduction1"] = { type = "Synthesis", affix = "", "(4-6)% additional Physical Damage Reduction while affected by Determination", statOrder = { 4433 }, level = 65, group = "DeterminationPhysicalDamageReduction", weightKey = { }, weightVal = { }, modTags = { "physical" }, }, - ["SynthesisImplicitGraceAdditionalChanceToEvade1"] = { type = "Synthesis", affix = "", "+(4-6)% chance to Evade Attack Hits while affected by Grace", statOrder = { 5385 }, level = 65, group = "GraceAdditionalChanceToEvade", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, - ["SynthesisImplicitDisciplineEnergyShieldRegen1___"] = { type = "Synthesis", affix = "", "Regenerate (1.2-2.2)% of Energy Shield per Second while affected by Discipline", statOrder = { 6136 }, level = 65, group = "DisciplineEnergyShieldRegen", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["SynthesisImplicitReducedManaReservation1"] = { type = "Synthesis", affix = "", "(6-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 2109 }, level = 60, group = "ReducedReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SynthesisImplicitManaReservationEfficiency1"] = { type = "Synthesis", affix = "", "(6-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 2105 }, level = 60, group = "ManaReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SynthesisImplicitSocketedSkillsManaMultiplier1"] = { type = "Synthesis", affix = "", "Socketed Skill Gems get a 96% Cost & Reservation Multiplier", statOrder = { 449 }, level = 24, group = "SocketedSkillsManaMultiplier", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "gem" }, }, - ["SynthesisImplicitSocketedSkillsManaMultiplier2"] = { type = "Synthesis", affix = "", "Socketed Skill Gems get a 94% Cost & Reservation Multiplier", statOrder = { 449 }, level = 36, group = "SocketedSkillsManaMultiplier", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "gem" }, }, - ["SynthesisImplicitSocketedSkillsManaMultiplier3"] = { type = "Synthesis", affix = "", "Socketed Skill Gems get a 92% Cost & Reservation Multiplier", statOrder = { 449 }, level = 48, group = "SocketedSkillsManaMultiplier", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "gem" }, }, - ["SynthesisImplicitGrantsPurityOfFire1"] = { type = "Synthesis", affix = "", "Grants Level 25 Purity of Fire Skill", statOrder = { 528 }, level = 75, group = "PurityOfFireSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, - ["SynthesisImplicitGrantsPurityOfIce1__"] = { type = "Synthesis", affix = "", "Grants Level 25 Purity of Ice Skill", statOrder = { 534 }, level = 75, group = "PurityOfColdSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, - ["SynthesisImplicitGrantsPurityOfLightning1"] = { type = "Synthesis", affix = "", "Grants Level 25 Purity of Lightning Skill", statOrder = { 536 }, level = 75, group = "PurityOfLightningSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, - ["SynthesisImplicitGrantsAnger1"] = { type = "Synthesis", affix = "", "Grants Level 10 Anger Skill", statOrder = { 555 }, level = 45, group = "AngerSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, - ["SynthesisImplicitGrantsAnger2"] = { type = "Synthesis", affix = "", "Grants Level 15 Anger Skill", statOrder = { 555 }, level = 62, group = "AngerSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, - ["SynthesisImplicitGrantsHatred1"] = { type = "Synthesis", affix = "", "Grants Level 10 Hatred Skill", statOrder = { 554 }, level = 45, group = "HatredSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, - ["SynthesisImplicitGrantsHatred2"] = { type = "Synthesis", affix = "", "Grants Level 15 Hatred Skill", statOrder = { 554 }, level = 62, group = "HatredSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, - ["SynthesisImplicitGrantsWrath1"] = { type = "Synthesis", affix = "", "Grants Level 10 Wrath Skill", statOrder = { 553 }, level = 45, group = "WrathSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, - ["SynthesisImplicitGrantsWrath2_"] = { type = "Synthesis", affix = "", "Grants Level 15 Wrath Skill", statOrder = { 553 }, level = 62, group = "WrathSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["DelveWeaponVaalSoulCost1h1_"] = { type = "Suffix", affix = "of the Underground", "Non-Aura Vaal Skills require 20% reduced Souls Per Use", statOrder = { 9284 }, level = 1, group = "VaalSoulCost", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "vaal" }, }, + ["DelveWeaponVaalSoulCost2h1"] = { type = "Suffix", affix = "of the Underground", "Non-Aura Vaal Skills require 40% reduced Souls Per Use", statOrder = { 9284 }, level = 1, group = "VaalSoulCost", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "vaal" }, }, + ["DelveArmourVaalSoulsOnKill1_"] = { type = "Suffix", affix = "of the Underground", "(5-8)% chance to gain an additional Vaal Soul on Kill", statOrder = { 3012 }, level = 1, group = "AdditionalVaalSoulOnKill", weightKey = { "abyss_jewel", "jewel", "helmet", "body_armour", "boots", "shield", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 0 }, modTags = { "vaal" }, }, + ["DelveGlovesVaalSkillCriticalChance1"] = { type = "Suffix", affix = "of the Underground", "(80-120)% increased Vaal Skill Critical Strike Chance", statOrder = { 3015 }, level = 1, group = "VaalSkillCriticalStrikeChance", weightKey = { "abyss_jewel", "jewel", "quiver", "gloves", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "critical", "vaal" }, }, + ["DelveAmuletVaalSkillDuration1"] = { type = "Suffix", affix = "of the Underground", "Vaal Skills have (15-25)% increased Skill Effect Duration", statOrder = { 3013 }, level = 1, group = "VaalSkillDuration", weightKey = { "abyss_jewel", "jewel", "amulet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "vaal" }, }, + ["DelveJewelryVaalSkillDamage1"] = { type = "Suffix", affix = "of the Underground", "(20-40)% increased Damage with Vaal Skills", statOrder = { 3003 }, level = 1, group = "VaalSkillDamage", weightKey = { "abyss_jewel", "jewel", "belt", "ring", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "damage", "vaal" }, }, + ["DelveMapMonsterPacksVaalMapWorlds1"] = { type = "Prefix", affix = "Subterranean", "Area is inhabited by the Vaal", "Found Items have 10% chance to drop Corrupted in Area", statOrder = { 8587, 10596 }, level = 1, group = "MapMonsterPacksVaalMapWorlds", weightKey = { "map", "expedition_logbook", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, }, + ["ChaosNonAilmentDamageOverTimeMultiplier2h1"] = { type = "Prefix", affix = "Waning", "+(26-35)% to Chaos Damage over Time Multiplier", statOrder = { 1171 }, level = 4, group = "ChaosDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["ChaosNonAilmentDamageOverTimeMultiplier2h2"] = { type = "Prefix", affix = "Wasting", "+(36-45)% to Chaos Damage over Time Multiplier", statOrder = { 1171 }, level = 12, group = "ChaosDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["ChaosNonAilmentDamageOverTimeMultiplier2h3"] = { type = "Prefix", affix = "Deteriorating", "+(46-55)% to Chaos Damage over Time Multiplier", statOrder = { 1171 }, level = 36, group = "ChaosDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["ChaosNonAilmentDamageOverTimeMultiplier2h4"] = { type = "Prefix", affix = "Atrophying", "+(56-65)% to Chaos Damage over Time Multiplier", statOrder = { 1171 }, level = 64, group = "ChaosDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["ChaosNonAilmentDamageOverTimeMultiplier2h5"] = { type = "Prefix", affix = "Disintegrating", "+(66-75)% to Chaos Damage over Time Multiplier", statOrder = { 1171 }, level = 78, group = "ChaosDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["ChaosNonAilmentDamageOverTimeMultiplier1h1"] = { type = "Prefix", affix = "Waning", "+(14-18)% to Chaos Damage over Time Multiplier", statOrder = { 1171 }, level = 4, group = "ChaosDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["ChaosNonAilmentDamageOverTimeMultiplier1h2"] = { type = "Prefix", affix = "Wasting", "+(19-23)% to Chaos Damage over Time Multiplier", statOrder = { 1171 }, level = 12, group = "ChaosDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["ChaosNonAilmentDamageOverTimeMultiplier1h3___"] = { type = "Prefix", affix = "Deteriorating", "+(24-28)% to Chaos Damage over Time Multiplier", statOrder = { 1171 }, level = 36, group = "ChaosDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["ChaosNonAilmentDamageOverTimeMultiplier1h4"] = { type = "Prefix", affix = "Atrophying", "+(29-33)% to Chaos Damage over Time Multiplier", statOrder = { 1171 }, level = 64, group = "ChaosDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["ChaosNonAilmentDamageOverTimeMultiplier1h5"] = { type = "Prefix", affix = "Disintegrating", "+(34-38)% to Chaos Damage over Time Multiplier", statOrder = { 1171 }, level = 78, group = "ChaosDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["ChaosNonAilmentDamageOverTimeMultiplierUber1"] = { type = "Suffix", affix = "of the Elder", "+(11-15)% to Chaos Damage over Time Multiplier", statOrder = { 1171 }, level = 68, group = "ChaosDamageOverTimeMultiplier", weightKey = { "gloves_elder", "amulet_elder", "default", }, weightVal = { 200, 400, 0 }, modTags = { "dot_multi", "chaos_damage", "influence_mod", "damage", "chaos" }, }, + ["ChaosNonAilmentDamageOverTimeMultiplierUber2"] = { type = "Suffix", affix = "of the Elder", "+(16-20)% to Chaos Damage over Time Multiplier", statOrder = { 1171 }, level = 80, group = "ChaosDamageOverTimeMultiplier", weightKey = { "gloves_elder", "amulet_elder", "default", }, weightVal = { 200, 400, 0 }, modTags = { "dot_multi", "chaos_damage", "influence_mod", "damage", "chaos" }, }, + ["ColdDamageOverTimeMultiplier2h1_"] = { type = "Prefix", affix = "Inclement", "+(26-35)% to Cold Damage over Time Multiplier", statOrder = { 1168 }, level = 4, group = "ColdDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamageOverTimeMultiplier2h2_"] = { type = "Prefix", affix = "Bleak", "+(36-45)% to Cold Damage over Time Multiplier", statOrder = { 1168 }, level = 12, group = "ColdDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamageOverTimeMultiplier2h3"] = { type = "Prefix", affix = "Boreal", "+(46-55)% to Cold Damage over Time Multiplier", statOrder = { 1168 }, level = 36, group = "ColdDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamageOverTimeMultiplier2h4"] = { type = "Prefix", affix = "Gelid", "+(56-65)% to Cold Damage over Time Multiplier", statOrder = { 1168 }, level = 64, group = "ColdDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamageOverTimeMultiplier2h5"] = { type = "Prefix", affix = "Heartstopping", "+(66-75)% to Cold Damage over Time Multiplier", statOrder = { 1168 }, level = 78, group = "ColdDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamageOverTimeMultiplier1h1"] = { type = "Prefix", affix = "Inclement", "+(14-18)% to Cold Damage over Time Multiplier", statOrder = { 1168 }, level = 4, group = "ColdDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamageOverTimeMultiplier1h2"] = { type = "Prefix", affix = "Bleak", "+(19-23)% to Cold Damage over Time Multiplier", statOrder = { 1168 }, level = 12, group = "ColdDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamageOverTimeMultiplier1h3"] = { type = "Prefix", affix = "Boreal", "+(24-28)% to Cold Damage over Time Multiplier", statOrder = { 1168 }, level = 36, group = "ColdDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamageOverTimeMultiplier1h4"] = { type = "Prefix", affix = "Gelid", "+(29-33)% to Cold Damage over Time Multiplier", statOrder = { 1168 }, level = 64, group = "ColdDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamageOverTimeMultiplier1h5"] = { type = "Prefix", affix = "Heartstopping", "+(34-38)% to Cold Damage over Time Multiplier", statOrder = { 1168 }, level = 78, group = "ColdDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamageOverTimeMultiplierUber1"] = { type = "Suffix", affix = "of Shaping", "+(11-15)% to Cold Damage over Time Multiplier", statOrder = { 1168 }, level = 68, group = "ColdDamageOverTimeMultiplier", weightKey = { "gloves_shaper", "amulet_shaper", "default", }, weightVal = { 200, 400, 0 }, modTags = { "dot_multi", "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, }, + ["ColdDamageOverTimeMultiplierUber2_"] = { type = "Suffix", affix = "of Shaping", "+(16-20)% to Cold Damage over Time Multiplier", statOrder = { 1168 }, level = 80, group = "ColdDamageOverTimeMultiplier", weightKey = { "gloves_shaper", "amulet_shaper", "default", }, weightVal = { 200, 400, 0 }, modTags = { "dot_multi", "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, }, + ["FireDamageOverTimeMultiplier2h1"] = { type = "Prefix", affix = "Earnest", "+(26-35)% to Fire Damage over Time Multiplier", statOrder = { 1163 }, level = 4, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamageOverTimeMultiplier2h2"] = { type = "Prefix", affix = "Fervid", "+(36-45)% to Fire Damage over Time Multiplier", statOrder = { 1163 }, level = 12, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamageOverTimeMultiplier2h3"] = { type = "Prefix", affix = "Ardent", "+(46-55)% to Fire Damage over Time Multiplier", statOrder = { 1163 }, level = 36, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamageOverTimeMultiplier2h4"] = { type = "Prefix", affix = "Zealous", "+(56-65)% to Fire Damage over Time Multiplier", statOrder = { 1163 }, level = 64, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamageOverTimeMultiplier2h5__"] = { type = "Prefix", affix = "Fanatical", "+(66-75)% to Fire Damage over Time Multiplier", statOrder = { 1163 }, level = 78, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamageOverTimeMultiplier1h1"] = { type = "Prefix", affix = "Earnest", "+(14-18)% to Fire Damage over Time Multiplier", statOrder = { 1163 }, level = 4, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamageOverTimeMultiplier1h2"] = { type = "Prefix", affix = "Fervid", "+(19-23)% to Fire Damage over Time Multiplier", statOrder = { 1163 }, level = 12, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamageOverTimeMultiplier1h3"] = { type = "Prefix", affix = "Ardent", "+(24-28)% to Fire Damage over Time Multiplier", statOrder = { 1163 }, level = 36, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamageOverTimeMultiplier1h4"] = { type = "Prefix", affix = "Zealous", "+(29-33)% to Fire Damage over Time Multiplier", statOrder = { 1163 }, level = 64, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamageOverTimeMultiplier1h5"] = { type = "Prefix", affix = "Fanatical", "+(34-38)% to Fire Damage over Time Multiplier", statOrder = { 1163 }, level = 78, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamageOverTimeMultiplierUber1___"] = { type = "Suffix", affix = "of Shaping", "+(11-15)% to Fire Damage over Time Multiplier", statOrder = { 1163 }, level = 68, group = "FireDamageOverTimeMultiplier", weightKey = { "gloves_shaper", "amulet_shaper", "default", }, weightVal = { 200, 400, 0 }, modTags = { "dot_multi", "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, + ["FireDamageOverTimeMultiplierUber2"] = { type = "Suffix", affix = "of Shaping", "+(16-20)% to Fire Damage over Time Multiplier", statOrder = { 1163 }, level = 80, group = "FireDamageOverTimeMultiplier", weightKey = { "gloves_shaper", "amulet_shaper", "default", }, weightVal = { 200, 400, 0 }, modTags = { "dot_multi", "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, + ["PhysicalDamageOverTimeMultiplier2h1"] = { type = "Prefix", affix = "Seeping", "+(26-35)% to Physical Damage over Time Multiplier", statOrder = { 1159 }, level = 4, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, + ["PhysicalDamageOverTimeMultiplier2h2_"] = { type = "Prefix", affix = "Spilling", "+(36-45)% to Physical Damage over Time Multiplier", statOrder = { 1159 }, level = 12, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, + ["PhysicalDamageOverTimeMultiplier2h3"] = { type = "Prefix", affix = "Phlebotomising", "+(46-55)% to Physical Damage over Time Multiplier", statOrder = { 1159 }, level = 36, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, + ["PhysicalDamageOverTimeMultiplier2h4"] = { type = "Prefix", affix = "Hemorrhaging", "+(56-65)% to Physical Damage over Time Multiplier", statOrder = { 1159 }, level = 64, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, + ["PhysicalDamageOverTimeMultiplier2h5"] = { type = "Prefix", affix = "Exsanguinating", "+(66-75)% to Physical Damage over Time Multiplier", statOrder = { 1159 }, level = 78, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, + ["PhysicalDamageOverTimeMultiplier1h1"] = { type = "Prefix", affix = "Seeping", "+(14-18)% to Physical Damage over Time Multiplier", statOrder = { 1159 }, level = 4, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, + ["PhysicalDamageOverTimeMultiplier1h2_"] = { type = "Prefix", affix = "Spilling", "+(19-23)% to Physical Damage over Time Multiplier", statOrder = { 1159 }, level = 12, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, + ["PhysicalDamageOverTimeMultiplier1h3"] = { type = "Prefix", affix = "Phlebotomising", "+(24-28)% to Physical Damage over Time Multiplier", statOrder = { 1159 }, level = 36, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, + ["PhysicalDamageOverTimeMultiplier1h4_"] = { type = "Prefix", affix = "Hemorrhaging", "+(29-33)% to Physical Damage over Time Multiplier", statOrder = { 1159 }, level = 64, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, + ["PhysicalDamageOverTimeMultiplier1h5"] = { type = "Prefix", affix = "Exsanguinating", "+(34-38)% to Physical Damage over Time Multiplier", statOrder = { 1159 }, level = 78, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, + ["PhysicalDamageOverTimeMultiplierUber1"] = { type = "Suffix", affix = "of the Elder", "+(11-15)% to Physical Damage over Time Multiplier", statOrder = { 1159 }, level = 68, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "gloves_elder", "amulet_elder", "default", }, weightVal = { 200, 400, 0 }, modTags = { "dot_multi", "physical_damage", "influence_mod", "damage", "physical" }, }, + ["PhysicalDamageOverTimeMultiplierUber2__"] = { type = "Suffix", affix = "of the Elder", "+(16-20)% to Physical Damage over Time Multiplier", statOrder = { 1159 }, level = 80, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "gloves_elder", "amulet_elder", "default", }, weightVal = { 200, 400, 0 }, modTags = { "dot_multi", "physical_damage", "influence_mod", "damage", "physical" }, }, + ["GlobalDamageOverTimeMultiplier1h1"] = { type = "Suffix", affix = "of Acrimony", "+(7-11)% to Damage over Time Multiplier", statOrder = { 1154 }, level = 44, group = "GlobalDamageOverTimeMultiplier", weightKey = { "bow", "one_hand_weapon", "amulet", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "dot_multi", "damage" }, }, + ["GlobalDamageOverTimeMultiplier1h2_"] = { type = "Suffix", affix = "of Dispersion", "+(12-15)% to Damage over Time Multiplier", statOrder = { 1154 }, level = 55, group = "GlobalDamageOverTimeMultiplier", weightKey = { "bow", "one_hand_weapon", "amulet", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "dot_multi", "damage" }, }, + ["GlobalDamageOverTimeMultiplier1h3"] = { type = "Suffix", affix = "of Liquefaction", "+(16-19)% to Damage over Time Multiplier", statOrder = { 1154 }, level = 68, group = "GlobalDamageOverTimeMultiplier", weightKey = { "bow", "one_hand_weapon", "amulet", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "dot_multi", "damage" }, }, + ["GlobalDamageOverTimeMultiplier1h4"] = { type = "Suffix", affix = "of Melting", "+(20-23)% to Damage over Time Multiplier", statOrder = { 1154 }, level = 76, group = "GlobalDamageOverTimeMultiplier", weightKey = { "bow", "one_hand_weapon", "amulet", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "dot_multi", "damage" }, }, + ["GlobalDamageOverTimeMultiplier1h5"] = { type = "Suffix", affix = "of Dissolution", "+(24-26)% to Damage over Time Multiplier", statOrder = { 1154 }, level = 82, group = "GlobalDamageOverTimeMultiplier", weightKey = { "bow", "one_hand_weapon", "amulet", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "dot_multi", "damage" }, }, + ["GlobalDamageOverTimeMultiplier2h1__"] = { type = "Suffix", affix = "of Acrimony", "+(16-21)% to Damage over Time Multiplier", statOrder = { 1154 }, level = 44, group = "GlobalDamageOverTimeMultiplier", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 300, 0 }, modTags = { "dot_multi", "damage" }, }, + ["GlobalDamageOverTimeMultiplier2h2"] = { type = "Suffix", affix = "of Dispersion", "+(24-29)% to Damage over Time Multiplier", statOrder = { 1154 }, level = 55, group = "GlobalDamageOverTimeMultiplier", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 300, 0 }, modTags = { "dot_multi", "damage" }, }, + ["GlobalDamageOverTimeMultiplier2h3___"] = { type = "Suffix", affix = "of Liquefaction", "+(31-35)% to Damage over Time Multiplier", statOrder = { 1154 }, level = 68, group = "GlobalDamageOverTimeMultiplier", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 300, 0 }, modTags = { "dot_multi", "damage" }, }, + ["GlobalDamageOverTimeMultiplier2h4_"] = { type = "Suffix", affix = "of Melting", "+(36-40)% to Damage over Time Multiplier", statOrder = { 1154 }, level = 76, group = "GlobalDamageOverTimeMultiplier", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 300, 0 }, modTags = { "dot_multi", "damage" }, }, + ["GlobalDamageOverTimeMultiplier2h5____"] = { type = "Suffix", affix = "of Dissolution", "+(41-45)% to Damage over Time Multiplier", statOrder = { 1154 }, level = 82, group = "GlobalDamageOverTimeMultiplier", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 300, 0 }, modTags = { "dot_multi", "damage" }, }, + ["GlobalDamageOverTimeMultiplierEssence1_"] = { type = "Suffix", affix = "of the Essence", "+10% to Damage over Time Multiplier", statOrder = { 1154 }, level = 63, group = "GlobalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "damage" }, }, + ["GlobalDamageOverTimeMultiplierRingEssence1"] = { type = "Suffix", affix = "of the Essence", "+(12-15)% to Damage over Time Multiplier", statOrder = { 1154 }, level = 63, group = "GlobalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "damage" }, }, + ["GlobalDamageOverTimeMultiplierWithAttacks1h1"] = { type = "Suffix", affix = "of Acrimony", "+(7-11)% to Damage over Time Multiplier with Attack Skills", statOrder = { 1158 }, level = 44, group = "GlobalDamageOverTimeMultiplierWithAttacks", weightKey = { "quiver", "default", }, weightVal = { 300, 0 }, modTags = { "dot_multi", "damage", "attack" }, }, + ["GlobalDamageOverTimeMultiplierWithAttacks1h2___"] = { type = "Suffix", affix = "of Dispersion", "+(12-15)% to Damage over Time Multiplier with Attack Skills", statOrder = { 1158 }, level = 55, group = "GlobalDamageOverTimeMultiplierWithAttacks", weightKey = { "quiver", "default", }, weightVal = { 300, 0 }, modTags = { "dot_multi", "damage", "attack" }, }, + ["GlobalDamageOverTimeMultiplierWithAttacks1h3"] = { type = "Suffix", affix = "of Liquefaction", "+(16-19)% to Damage over Time Multiplier with Attack Skills", statOrder = { 1158 }, level = 68, group = "GlobalDamageOverTimeMultiplierWithAttacks", weightKey = { "quiver", "default", }, weightVal = { 300, 0 }, modTags = { "dot_multi", "damage", "attack" }, }, + ["GlobalDamageOverTimeMultiplierWithAttacks1h4_"] = { type = "Suffix", affix = "of Melting", "+(20-23)% to Damage over Time Multiplier with Attack Skills", statOrder = { 1158 }, level = 76, group = "GlobalDamageOverTimeMultiplierWithAttacks", weightKey = { "quiver", "default", }, weightVal = { 300, 0 }, modTags = { "dot_multi", "damage", "attack" }, }, + ["GlobalDamageOverTimeMultiplierWithAttacks1h5"] = { type = "Suffix", affix = "of Dissolution", "+(24-26)% to Damage over Time Multiplier with Attack Skills", statOrder = { 1158 }, level = 82, group = "GlobalDamageOverTimeMultiplierWithAttacks", weightKey = { "quiver", "default", }, weightVal = { 300, 0 }, modTags = { "dot_multi", "damage", "attack" }, }, + ["ChaosDamageOverTimeMultiplierTwoHand1_"] = { type = "Suffix", affix = "of Waning", "+(26-35)% to Chaos Damage over Time Multiplier", statOrder = { 1171 }, level = 4, group = "ChaosDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 400, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["ChaosDamageOverTimeMultiplierTwoHand2__"] = { type = "Suffix", affix = "of Wasting", "+(36-45)% to Chaos Damage over Time Multiplier", statOrder = { 1171 }, level = 12, group = "ChaosDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 300, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["ChaosDamageOverTimeMultiplierTwoHand3_"] = { type = "Suffix", affix = "of Deteriorating", "+(46-55)% to Chaos Damage over Time Multiplier", statOrder = { 1171 }, level = 36, group = "ChaosDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 200, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["ChaosDamageOverTimeMultiplierTwoHand4__"] = { type = "Suffix", affix = "of Atrophying", "+(56-65)% to Chaos Damage over Time Multiplier", statOrder = { 1171 }, level = 64, group = "ChaosDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["ChaosDamageOverTimeMultiplierTwoHand5___"] = { type = "Suffix", affix = "of Disintegrating", "+(66-75)% to Chaos Damage over Time Multiplier", statOrder = { 1171 }, level = 78, group = "ChaosDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 50, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["ChaosDamageOverTimeMultiplier1_"] = { type = "Suffix", affix = "of Waning", "+(14-18)% to Chaos Damage over Time Multiplier", statOrder = { 1171 }, level = 4, group = "ChaosDamageOverTimeMultiplier", weightKey = { "wand", "dagger", "default", }, weightVal = { 400, 400, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["ChaosDamageOverTimeMultiplier2"] = { type = "Suffix", affix = "of Wasting", "+(19-23)% to Chaos Damage over Time Multiplier", statOrder = { 1171 }, level = 12, group = "ChaosDamageOverTimeMultiplier", weightKey = { "wand", "dagger", "default", }, weightVal = { 300, 300, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["ChaosDamageOverTimeMultiplier3"] = { type = "Suffix", affix = "of Deteriorating", "+(24-28)% to Chaos Damage over Time Multiplier", statOrder = { 1171 }, level = 36, group = "ChaosDamageOverTimeMultiplier", weightKey = { "wand", "dagger", "default", }, weightVal = { 200, 200, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["ChaosDamageOverTimeMultiplier4"] = { type = "Suffix", affix = "of Atrophying", "+(29-33)% to Chaos Damage over Time Multiplier", statOrder = { 1171 }, level = 64, group = "ChaosDamageOverTimeMultiplier", weightKey = { "wand", "dagger", "default", }, weightVal = { 100, 100, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["ChaosDamageOverTimeMultiplier5"] = { type = "Suffix", affix = "of Disintegrating", "+(34-38)% to Chaos Damage over Time Multiplier", statOrder = { 1171 }, level = 78, group = "ChaosDamageOverTimeMultiplier", weightKey = { "wand", "dagger", "default", }, weightVal = { 50, 50, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["ColdDamageOverTimeMultiplierTwoHand1_"] = { type = "Suffix", affix = "of the Inclement", "+(26-35)% to Cold Damage over Time Multiplier", statOrder = { 1168 }, level = 4, group = "ColdDamageOverTimeMultiplier", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 400, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamageOverTimeMultiplierTwoHand2"] = { type = "Suffix", affix = "of the Bleak", "+(36-45)% to Cold Damage over Time Multiplier", statOrder = { 1168 }, level = 12, group = "ColdDamageOverTimeMultiplier", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamageOverTimeMultiplierTwoHand3"] = { type = "Suffix", affix = "of the Boreal", "+(46-55)% to Cold Damage over Time Multiplier", statOrder = { 1168 }, level = 36, group = "ColdDamageOverTimeMultiplier", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 200, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamageOverTimeMultiplierTwoHand4"] = { type = "Suffix", affix = "of the Gelid", "+(56-65)% to Cold Damage over Time Multiplier", statOrder = { 1168 }, level = 64, group = "ColdDamageOverTimeMultiplier", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamageOverTimeMultiplierTwoHand5"] = { type = "Suffix", affix = "of Heartstopping", "+(66-75)% to Cold Damage over Time Multiplier", statOrder = { 1168 }, level = 78, group = "ColdDamageOverTimeMultiplier", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 50, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamageOverTimeMultiplier1"] = { type = "Suffix", affix = "of the Inclement", "+(14-18)% to Cold Damage over Time Multiplier", statOrder = { 1168 }, level = 4, group = "ColdDamageOverTimeMultiplier", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 300, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamageOverTimeMultiplier2"] = { type = "Suffix", affix = "of the Bleak", "+(19-23)% to Cold Damage over Time Multiplier", statOrder = { 1168 }, level = 12, group = "ColdDamageOverTimeMultiplier", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 220, 220, 220, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamageOverTimeMultiplier3"] = { type = "Suffix", affix = "of the Boreal", "+(24-28)% to Cold Damage over Time Multiplier", statOrder = { 1168 }, level = 36, group = "ColdDamageOverTimeMultiplier", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 140, 140, 140, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamageOverTimeMultiplier4"] = { type = "Suffix", affix = "of the Gelid", "+(29-33)% to Cold Damage over Time Multiplier", statOrder = { 1168 }, level = 64, group = "ColdDamageOverTimeMultiplier", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 70, 70, 70, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamageOverTimeMultiplier5"] = { type = "Suffix", affix = "of Heartstopping", "+(34-38)% to Cold Damage over Time Multiplier", statOrder = { 1168 }, level = 78, group = "ColdDamageOverTimeMultiplier", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 35, 35, 35, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["FireDamageOverTimeMultiplierTwoHand1_"] = { type = "Suffix", affix = "of the Earnest", "+(26-35)% to Fire Damage over Time Multiplier", statOrder = { 1163 }, level = 4, group = "FireDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 400, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamageOverTimeMultiplierTwoHand2_"] = { type = "Suffix", affix = "of the Fervid", "+(36-45)% to Fire Damage over Time Multiplier", statOrder = { 1163 }, level = 12, group = "FireDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamageOverTimeMultiplierTwoHand3"] = { type = "Suffix", affix = "of the Ardent", "+(46-55)% to Fire Damage over Time Multiplier", statOrder = { 1163 }, level = 36, group = "FireDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 200, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamageOverTimeMultiplierTwoHand4"] = { type = "Suffix", affix = "of the Zealous", "+(56-65)% to Fire Damage over Time Multiplier", statOrder = { 1163 }, level = 64, group = "FireDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamageOverTimeMultiplierTwoHand5_"] = { type = "Suffix", affix = "of the Fanatical", "+(66-75)% to Fire Damage over Time Multiplier", statOrder = { 1163 }, level = 78, group = "FireDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 50, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamageOverTimeMultiplier1"] = { type = "Suffix", affix = "of the Earnest", "+(14-18)% to Fire Damage over Time Multiplier", statOrder = { 1163 }, level = 4, group = "FireDamageOverTimeMultiplier", weightKey = { "wand", "sceptre", "default", }, weightVal = { 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamageOverTimeMultiplier2"] = { type = "Suffix", affix = "of the Fervid", "+(19-23)% to Fire Damage over Time Multiplier", statOrder = { 1163 }, level = 12, group = "FireDamageOverTimeMultiplier", weightKey = { "wand", "sceptre", "default", }, weightVal = { 220, 220, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamageOverTimeMultiplier3"] = { type = "Suffix", affix = "of the Ardent", "+(24-28)% to Fire Damage over Time Multiplier", statOrder = { 1163 }, level = 36, group = "FireDamageOverTimeMultiplier", weightKey = { "wand", "sceptre", "default", }, weightVal = { 140, 140, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamageOverTimeMultiplier4__"] = { type = "Suffix", affix = "of the Zealous", "+(29-33)% to Fire Damage over Time Multiplier", statOrder = { 1163 }, level = 64, group = "FireDamageOverTimeMultiplier", weightKey = { "wand", "sceptre", "default", }, weightVal = { 70, 70, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamageOverTimeMultiplier5"] = { type = "Suffix", affix = "of the Fanatical", "+(34-38)% to Fire Damage over Time Multiplier", statOrder = { 1163 }, level = 78, group = "FireDamageOverTimeMultiplier", weightKey = { "wand", "sceptre", "default", }, weightVal = { 35, 35, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["PhysicalDamageOverTimeMultiplierTwoHand1"] = { type = "Suffix", affix = "of Seeping", "+(26-35)% to Physical Damage over Time Multiplier", statOrder = { 1159 }, level = 4, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 400, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, + ["PhysicalDamageOverTimeMultiplierTwoHand2"] = { type = "Suffix", affix = "of Spilling", "+(36-45)% to Physical Damage over Time Multiplier", statOrder = { 1159 }, level = 12, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 300, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, + ["PhysicalDamageOverTimeMultiplierTwoHand3"] = { type = "Suffix", affix = "of Phlebotomising", "+(46-55)% to Physical Damage over Time Multiplier", statOrder = { 1159 }, level = 36, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 200, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, + ["PhysicalDamageOverTimeMultiplierTwoHand4"] = { type = "Suffix", affix = "of Hemorrhaging", "+(56-65)% to Physical Damage over Time Multiplier", statOrder = { 1159 }, level = 64, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, + ["PhysicalDamageOverTimeMultiplierTwoHand5"] = { type = "Suffix", affix = "of Exsanguinating", "+(66-75)% to Physical Damage over Time Multiplier", statOrder = { 1159 }, level = 78, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 50, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, + ["PhysicalDamageOverTimeMultiplier1__"] = { type = "Suffix", affix = "of Seeping", "+(14-18)% to Physical Damage over Time Multiplier", statOrder = { 1159 }, level = 4, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "wand", "default", }, weightVal = { 300, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, + ["PhysicalDamageOverTimeMultiplier2"] = { type = "Suffix", affix = "of Spilling", "+(19-23)% to Physical Damage over Time Multiplier", statOrder = { 1159 }, level = 12, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "wand", "default", }, weightVal = { 220, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, + ["PhysicalDamageOverTimeMultiplier3__"] = { type = "Suffix", affix = "of Phlebotomising", "+(24-28)% to Physical Damage over Time Multiplier", statOrder = { 1159 }, level = 36, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "wand", "default", }, weightVal = { 140, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, + ["PhysicalDamageOverTimeMultiplier4"] = { type = "Suffix", affix = "of Hemorrhaging", "+(29-33)% to Physical Damage over Time Multiplier", statOrder = { 1159 }, level = 64, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "wand", "default", }, weightVal = { 70, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, + ["PhysicalDamageOverTimeMultiplier5"] = { type = "Suffix", affix = "of Exsanguinating", "+(34-38)% to Physical Damage over Time Multiplier", statOrder = { 1159 }, level = 78, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "wand", "default", }, weightVal = { 35, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, + ["IncreasedLifeEnhancedLevel50Mod_"] = { type = "Prefix", affix = "Guatelitzi's", "+(70-79) to maximum Life", "2% increased maximum Life", statOrder = { 1480, 1482 }, level = 50, group = "IncreasedLifeAndPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, + ["IncreasedLifeEnhancedLevel50BodyMod"] = { type = "Prefix", affix = "Guatelitzi's", "+(110-119) to maximum Life", "(8-10)% increased maximum Life", statOrder = { 1480, 1482 }, level = 50, group = "IncreasedLifeAndPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, + ["IncreasedManaEnhancedLevel50ModPercent"] = { type = "Prefix", affix = "Xopec's", "+(69-73) to maximum Mana", "(7-10)% increased maximum Mana", statOrder = { 1490, 1491 }, level = 50, group = "IncreasedManaAndPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaEnhancedLevel50ModOnHit"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "Gain (2-3) Mana per Enemy Hit with Attacks", statOrder = { 1490, 1655 }, level = 50, group = "IncreasedManaAndOnHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "attack" }, }, + ["IncreasedManaEnhancedLevel50ModRegen"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "Regenerate (5-7) Mana per second", statOrder = { 1490, 1493 }, level = 50, group = "IncreasedManaAndRegen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaEnhancedLevel50ModReservation_"] = { type = "Prefix", affix = "Xopec's", "+(69-73) to maximum Mana", "(6-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 1490, 2141 }, level = 50, group = "IncreasedManaAndReservation", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaEnhancedLevel50ModCost"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "-(8-6) to Total Mana Cost of Skills", statOrder = { 1490, 1802 }, level = 50, group = "IncreasedManaAndCost", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaEnhancedLevel50ModCostNew"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "Non-Channelling Skills have -(8-6) to Total Mana Cost", statOrder = { 1490, 9846 }, level = 50, group = "IncreasedManaAndCostNew", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedEnergyShieldEnhancedLevel50ModES_"] = { type = "Prefix", affix = "Guatelitzi's", "+(44-47) to maximum Energy Shield", "3% increased maximum Energy Shield", statOrder = { 1469, 1472 }, level = 50, group = "EnergyShieldAndPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, + ["IncreasedEnergyShieldEnhancedLevel50ModRegen"] = { type = "Prefix", affix = "Guatelitzi's", "+(44-47) to maximum Energy Shield", "Regenerate 0.4% of Energy Shield per second", statOrder = { 1469, 2554 }, level = 50, group = "EnergyShieldAndRegen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, + ["AddedFireDamageEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "Adds (5-7) to (11-13) Fire Damage to Attacks", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1271, 1864 }, level = 50, group = "FireDamagePhysConvertedToFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire", "attack" }, }, + ["AddedColdDamageEnhancedLevel50Mod_"] = { type = "Prefix", affix = "Topotante's", "Adds (5-7) to (10-12) Cold Damage to Attacks", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1280, 1866 }, level = 50, group = "ColdDamagePhysConvertedToCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold", "attack" }, }, + ["AddedLightningDamageEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "Adds (1-2) to (22-23) Lightning Damage to Attacks", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1291, 1868 }, level = 50, group = "LightningDamagePhysConvertedToLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning", "attack" }, }, + ["LocalIncreasedPhysicalDamageEnhancedLevel50Mod"] = { type = "Prefix", affix = "Tacati's", "(155-169)% increased Physical Damage", "Gain (3-5)% of Physical Damage as Extra Chaos Damage", statOrder = { 1144, 1844 }, level = 50, group = "LocalPhysicalDamagePercentAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos", "attack" }, }, + ["LocalAddedFireDamageEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "Adds (45-61) to (91-106) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1273, 3670 }, level = 50, group = "LocalFireDamageAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamageEnhancedLevel50TwoHandMod"] = { type = "Prefix", affix = "Topotante's", "Adds (79-106) to (159-186) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1273, 3670 }, level = 50, group = "LocalFireDamageTwoHandAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedColdDamageEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "Adds (37-50) to (74-87) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1282, 3671 }, level = 50, group = "LocalColdDamageAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamageEnhancedLevel50TwoHandMod"] = { type = "Prefix", affix = "Topotante's", "Adds (65-87) to (130-152) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1282, 3671 }, level = 50, group = "LocalColdDamageTwoHandAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedLightningDamageEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "Adds (4-13) to (158-166) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1293, 3672 }, level = 50, group = "LocalLightningDamageAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamageEnhancedLevel50TwoHandMod"] = { type = "Prefix", affix = "Topotante's", "Adds (7-22) to (275-290) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1293, 3672 }, level = 50, group = "LocalLightningDamageTwoHandAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["MovementVelocityEnhancedLevel50ModSpeed"] = { type = "Prefix", affix = "Matatl's", "30% increased Movement Speed", "5% increased Movement Speed if you haven't been Hit Recently", statOrder = { 1709, 3151 }, level = 50, group = "MovementVelocitySpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, + ["MovementVelocityEnhancedLevel50ModDodge"] = { type = "Prefix", affix = "Matatl's", "30% increased Movement Speed", "(10-15)% chance to Avoid Bleeding", statOrder = { 1709, 4123 }, level = 50, group = "MovementVelocityDodge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, + ["MovementVelocityEnhancedLevel50ModSpellDodge__"] = { type = "Prefix", affix = "Matatl's", "30% increased Movement Speed", "(10-15)% chance to Avoid being Poisoned", statOrder = { 1709, 1760 }, level = 50, group = "MovementVelocitySpellDodge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, + ["SpellDamageOnWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Tacati's", "(70-74)% increased Spell Damage", "Gain 5% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 1135, 9286 }, level = 50, group = "WeaponSpellDamageAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["SpellDamageOnTwoHandWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Tacati's", "(105-110)% increased Spell Damage", "Gain 5% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 1135, 9286 }, level = 50, group = "WeaponSpellDamageAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["TrapDamageOnWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Matatl's", "(90-95)% increased Trap Damage", statOrder = { 1106 }, level = 50, group = "TrapDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, }, + ["TrapDamageOnTwoHandWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Matatl's", "(133-138)% increased Trap Damage", statOrder = { 1106 }, level = 50, group = "TrapDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, }, + ["MineDamageOnWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Matatl's", "(90-95)% increased Mine Damage", statOrder = { 1108 }, level = 50, group = "MineDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, }, + ["MineDamageOnTwoHandWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Matatl's", "(133-138)% increased Mine Damage", statOrder = { 1108 }, level = 50, group = "MineDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, }, + ["TrapThrowSpeedEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Matatl", "(20-22)% increased Trap Throwing Speed", statOrder = { 1836 }, level = 50, group = "TrapThrowSpeedOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, + ["TrapThrowSpeedTwoHandEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Matatl", "(30-33)% increased Trap Throwing Speed", statOrder = { 1836 }, level = 50, group = "TrapThrowSpeedOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, + ["MineThrowSpeedEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Matatl", "(20-22)% increased Mine Throwing Speed", statOrder = { 1837 }, level = 50, group = "MineLayingSpeedOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, + ["MineThrowSpeedTwoHandEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Matatl", "(30-33)% increased Mine Throwing Speed", statOrder = { 1837 }, level = 50, group = "MineLayingSpeedOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, + ["TrapCooldownRecoveryAndDurationEnhancedLevel50Mod__"] = { type = "Suffix", affix = "of Matatl", "(17-20)% increased Trap Duration", "(14-15)% increased Cooldown Recovery Rate for throwing Traps", statOrder = { 1832, 3369 }, level = 50, group = "TrapCooldownRecoveryAndDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["TrapCooldownRecoveryAndDurationTwoHandEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Matatl", "(26-30)% increased Trap Duration", "(21-22)% increased Cooldown Recovery Rate for throwing Traps", statOrder = { 1832, 3369 }, level = 50, group = "TrapCooldownRecoveryAndDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["MineDetonationSpeedAndDurationEnhancedLevel50Mod_"] = { type = "Suffix", affix = "of Matatl", "(17-20)% increased Mine Duration", "Mines have (14-15)% increased Detonation Speed", statOrder = { 1833, 9031 }, level = 50, group = "MineDetonationSpeedAndDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, + ["MineDetonationSpeedAndDurationTwoHandEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Matatl", "(26-30)% increased Mine Duration", "Mines have (21-22)% increased Detonation Speed", statOrder = { 1833, 9031 }, level = 50, group = "MineDetonationSpeedAndDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, + ["TrapAreaOfEffectEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Matatl", "Skills used by Traps have (22-25)% increased Area of Effect", statOrder = { 3387 }, level = 50, group = "TrapAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["TrapAreaOfEffectTwoHandEnhancedLevel50Mod_"] = { type = "Suffix", affix = "of Matatl", "Skills used by Traps have (33-37)% increased Area of Effect", statOrder = { 3387 }, level = 50, group = "TrapAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["MineAreaOfEffectEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Matatl", "Skills used by Mines have (22-25)% increased Area of Effect", statOrder = { 9028 }, level = 50, group = "MineAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["MineAreaOfEffectTwoHandEnhancedLevel50Mod_"] = { type = "Suffix", affix = "of Matatl", "Skills used by Mines have (33-37)% increased Area of Effect", statOrder = { 9028 }, level = 50, group = "MineAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["LocalIncreaseSocketedTrapGemLevelEnhancedLevel50Mod_"] = { type = "Prefix", affix = "Matatl's", "+2 to Level of Socketed Trap or Mine Gems", statOrder = { 167 }, level = 50, group = "IncreasedSocketedTrapOrMineGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "gem" }, }, + ["MinionDamageOnWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Citaqualotl's", "Minions deal (90-95)% increased Damage", statOrder = { 1882 }, level = 50, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageOnTwoHandWeaponEnhancedLevel50Mod_"] = { type = "Prefix", affix = "Citaqualotl's", "Minions deal (133-138)% increased Damage", statOrder = { 1882 }, level = 50, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageOnWeaponEnhancedLevel50ModNew"] = { type = "Prefix", affix = "Citaqualotl's", "Minions deal (50-66)% increased Damage", "Minions have 5% chance to deal Double Damage", statOrder = { 1882, 9090 }, level = 50, group = "MinionDamageOnWeaponDoubleDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageOnTwoHandWeaponEnhancedLevel50ModNew"] = { type = "Prefix", affix = "Citaqualotl's", "Minions deal (85-94)% increased Damage", "Minions have 5% chance to deal Double Damage", statOrder = { 1882, 9090 }, level = 50, group = "MinionDamageOnWeaponDoubleDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, + ["MinionAttackAndCastSpeedEnhancedLevel50Mod_"] = { type = "Suffix", affix = "of Citaqualotl", "Minions have (25-28)% increased Attack Speed", "Minions have (25-28)% increased Cast Speed", statOrder = { 2817, 2818 }, level = 50, group = "MinionAttackAndCastSpeedOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, + ["MinionAttackAndCastSpeedTwoHandEnhancedLevel50Mod_"] = { type = "Suffix", affix = "of Citaqualotl", "Minions have (36-40)% increased Attack Speed", "Minions have (36-40)% increased Cast Speed", statOrder = { 2817, 2818 }, level = 50, group = "MinionAttackAndCastSpeedOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, + ["MinionDurationEnhancedLevel50Mod_"] = { type = "Suffix", affix = "of Citaqualotl", "(17-20)% increased Minion Duration", statOrder = { 4926 }, level = 50, group = "MinionDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, }, + ["MinionDurationTwoHandedEnhancedLevel50Mod_"] = { type = "Suffix", affix = "of Citaqualotl", "(27-30)% increased Minion Duration", statOrder = { 4926 }, level = 50, group = "MinionDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, }, + ["LocalIncreaseSocketedMinionGemLevelEnhancedLevel50Mod"] = { type = "Prefix", affix = "Citaqualotl's", "+2 to Level of Socketed Minion Gems", statOrder = { 160 }, level = 50, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion", "gem" }, }, + ["FireDamagePrefixOnWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "(75-79)% increased Fire Damage", "Adds (15-20) to (30-35) Fire Damage to Spells", statOrder = { 1268, 1315 }, level = 50, group = "FireDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["FireDamagePrefixOnTwoHandWeaponEnhancedLevel50Mod__"] = { type = "Prefix", affix = "Topotante's", "(111-115)% increased Fire Damage", "Adds (20-27) to (41-48) Fire Damage to Spells", statOrder = { 1268, 1315 }, level = 50, group = "TwoHandFireDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["ColdDamagePrefixOnWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "(75-79)% increased Cold Damage", "Adds (12-16) to (25-29) Cold Damage to Spells", statOrder = { 1277, 1316 }, level = 50, group = "ColdDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["ColdDamagePrefixOnTwoHandWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "(111-115)% increased Cold Damage", "Adds (19-25) to (37-44) Cold Damage to Spells", statOrder = { 1277, 1316 }, level = 50, group = "TwoHandColdDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["LightningDamagePrefixOnWeaponEnhancedLevel50Mod_"] = { type = "Prefix", affix = "Topotante's", "(75-79)% increased Lightning Damage", "Adds (1-4) to (53-56) Lightning Damage to Spells", statOrder = { 1288, 1317 }, level = 50, group = "LightningDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["LightningDamagePrefixOnTwoHandWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "(111-115)% increased Lightning Damage", "Adds (2-6) to (79-84) Lightning Damage to Spells", statOrder = { 1288, 1317 }, level = 50, group = "TwoHandLightningDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["IncreasedCastSpeedEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Tacati", "Adds (17-24) to (36-40) Chaos Damage to Spells", "(29-32)% increased Cast Speed", statOrder = { 1318, 1357 }, level = 50, group = "IncreasedCastSpeedAddedChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster", "speed" }, }, + ["IncreasedCastSpeedTwoHandEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Tacati", "Adds (24-32) to (49-57) Chaos Damage to Spells", "(44-49)% increased Cast Speed", statOrder = { 1318, 1357 }, level = 50, group = "IncreasedCastSpeedAddedChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster", "speed" }, }, + ["LocalIncreasedAttackSpeedEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Tacati", "Adds (23-36) to (49-61) Chaos Damage", "(26-27)% increased Attack Speed", statOrder = { 1301, 1324 }, level = 50, group = "LocalIncreasedAttackSpeedAddedChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedRangedEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Tacati", "Adds (23-36) to (49-61) Chaos Damage", "(14-16)% increased Attack Speed", statOrder = { 1301, 1324 }, level = 50, group = "LocalIncreasedAttackSpeedAddedChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack", "speed" }, }, + ["LifeRegenerationEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Guatelitzi", "Regenerate (32-40) Life per second", "Regenerate 0.4% of Life per second", statOrder = { 1485, 1853 }, level = 50, group = "LifeRegenerationAndPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, + ["FireResistEnhancedLevel50ModPhys"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Fire Resistance", "(3-5)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 1536, 2356 }, level = 50, group = "FireResistancePhysTakenAsFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "fire", "resistance" }, }, + ["ColdResistEnhancedLevel50ModPhys_"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Cold Resistance", "(3-5)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 1542, 2357 }, level = 50, group = "ColdResistancePhysTakenAsCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "cold", "resistance" }, }, + ["LightningResistEnhancedLevel50ModPhys"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Lightning Resistance", "(3-5)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 1547, 2358 }, level = 50, group = "LightningResistancePhysTakenAsLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "lightning", "resistance" }, }, + ["FireResistEnhancedLevel50ModLeech"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Fire Resistance", "0.4% of Fire Damage Leeched as Life", statOrder = { 1536, 1581 }, level = 50, group = "FireResistanceLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "fire", "resistance" }, }, + ["ColdResistEnhancedLevel50ModLeech"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Cold Resistance", "0.4% of Cold Damage Leeched as Life", statOrder = { 1542, 1586 }, level = 50, group = "ColdResistanceLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "cold", "resistance" }, }, + ["LightningResistEnhancedLevel50ModLeech"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Lightning Resistance", "0.4% of Lightning Damage Leeched as Life", statOrder = { 1547, 1590 }, level = 50, group = "LightningResistanceLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "lightning", "resistance" }, }, + ["FireResistEnhancedLevel50ModAilments_"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Fire Resistance", "(45-52) to (75-78) added Fire Damage against Burning Enemies", statOrder = { 1536, 10105 }, level = 50, group = "FireResistanceAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "resistance" }, }, + ["ColdResistEnhancedLevel50ModAilments"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Cold Resistance", "(30-50)% increased Damage with Hits against Chilled Enemies", statOrder = { 1542, 5965 }, level = 50, group = "ColdResistanceAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "resistance" }, }, + ["LightningResistEnhancedLevel50ModAilments"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Lightning Resistance", "(40-60)% increased Critical Strike Chance against Shocked Enemies", statOrder = { 1547, 5810 }, level = 50, group = "LightningResistanceAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "resistance", "critical" }, }, + ["ChaosResistEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Tacati", "+(31-35)% to Chaos Resistance", "(5-7)% reduced Chaos Damage taken over time", statOrder = { 1552, 1857 }, level = 50, group = "ChaosResistanceDamageOverTime", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "resistance" }, }, + ["PoisonDurationEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Tacati", "(26-30)% increased Chaos Damage", "(13-18)% increased Poison Duration", statOrder = { 1296, 3078 }, level = 50, group = "PoisonDurationChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["ChanceToPoisonEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Tacati", "(26-30)% increased Chaos Damage", "30% chance to Poison on Hit", statOrder = { 1296, 7849 }, level = 50, group = "LocalChanceToPoisonOnHitChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "attack", "ailment" }, }, + ["PoisonDamageEnhancedLevel50AttacksMod_"] = { type = "Suffix", affix = "of Tacati", "Adds (23-36) to (49-61) Chaos Damage", "(31-35)% increased Damage with Poison", statOrder = { 1301, 3089 }, level = 50, group = "PoisonDamageAddedChaosToAttacks", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "attack", "ailment" }, }, + ["PoisonDamageEnhancedLevel50SpellsMod"] = { type = "Suffix", affix = "of Tacati", "Adds (17-24) to (36-40) Chaos Damage to Spells", "(31-35)% increased Damage with Poison", statOrder = { 1318, 3089 }, level = 50, group = "PoisonDamageAddedChaosToSpells", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "poison", "damage", "chaos", "caster", "ailment" }, }, + ["SynthesisImplicitLife1"] = { type = "Synthesis", affix = "", "+(8-10) to maximum Life", statOrder = { 1480 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["SynthesisImplicitLife2"] = { type = "Synthesis", affix = "", "+(11-14) to maximum Life", statOrder = { 1480 }, level = 15, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["SynthesisImplicitLife3"] = { type = "Synthesis", affix = "", "+(15-19) to maximum Life", statOrder = { 1480 }, level = 24, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["SynthesisImplicitLife4_"] = { type = "Synthesis", affix = "", "+(20-24) to maximum Life", statOrder = { 1480 }, level = 36, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["SynthesisImplicitLife5"] = { type = "Synthesis", affix = "", "+(25-30) to maximum Life", statOrder = { 1480 }, level = 48, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["SynthesisImplicitLifeJewel1"] = { type = "Synthesis", affix = "", "+(3-4) to maximum Life", statOrder = { 1480 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["SynthesisImplicitLifeJewel2"] = { type = "Synthesis", affix = "", "+(5-6) to maximum Life", statOrder = { 1480 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["SynthesisImplicitPercentLife1_"] = { type = "Synthesis", affix = "", "4% increased maximum Life", statOrder = { 1482 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["SynthesisImplicitPercentLife2"] = { type = "Synthesis", affix = "", "(5-6)% increased maximum Life", statOrder = { 1482 }, level = 15, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["SynthesisImplicitPercentLife3"] = { type = "Synthesis", affix = "", "(8-10)% increased maximum Life", statOrder = { 1482 }, level = 24, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["SynthesisImplicitPercentLifeTrinket1__"] = { type = "Synthesis", affix = "", "4% increased maximum Life", statOrder = { 1482 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["SynthesisImplicitPercentLifeTrinket2"] = { type = "Synthesis", affix = "", "(5-6)% increased maximum Life", statOrder = { 1482 }, level = 15, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["SynthesisImplicitPercentLifeTrinket3"] = { type = "Synthesis", affix = "", "(7-8)% increased maximum Life", statOrder = { 1482 }, level = 24, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["SynthesisImplicitLifeRegen1_"] = { type = "Synthesis", affix = "", "Regenerate (5-7) Life per second", statOrder = { 1485 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["SynthesisImplicitLifeRegen2_"] = { type = "Synthesis", affix = "", "Regenerate (7-11.7) Life per second", statOrder = { 1485 }, level = 15, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["SynthesisImplicitLifeRegen3"] = { type = "Synthesis", affix = "", "Regenerate (11.7-18.3) Life per second", statOrder = { 1485 }, level = 24, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["SynthesisImplicitLifeRegen4"] = { type = "Synthesis", affix = "", "Regenerate (18.4-26.7) Life per second", statOrder = { 1485 }, level = 36, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["SynthesisImplicitLifeRegen5_"] = { type = "Synthesis", affix = "", "Regenerate (26.7-40) Life per second", statOrder = { 1485 }, level = 48, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["SynthesisImplicitHighLifeRegen1"] = { type = "Synthesis", affix = "", "Regenerate (80-100) Life per second", statOrder = { 1485 }, level = 56, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["SynthesisImplicitPercentLifeRegen1"] = { type = "Synthesis", affix = "", "Regenerate (0.6-0.7)% of Life per second", statOrder = { 1853 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["SynthesisImplicitPercentLifeRegen2"] = { type = "Synthesis", affix = "", "Regenerate (0.8-0.93)% of Life per second", statOrder = { 1853 }, level = 15, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["SynthesisImplicitPercentLifeRegen3"] = { type = "Synthesis", affix = "", "Regenerate 1% of Life per second", statOrder = { 1853 }, level = 24, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["SynthesisImplicitPercentLifeRegenJewel1"] = { type = "Synthesis", affix = "", "Regenerate 0.2% of Life per second", statOrder = { 1853 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["SynthesisImplicitLifeLeech1"] = { type = "Synthesis", affix = "", "0.2% of Physical Attack Damage Leeched as Life", statOrder = { 1560 }, level = 1, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, }, + ["SynthesisImplicitLifeLeech2_"] = { type = "Synthesis", affix = "", "0.3% of Physical Attack Damage Leeched as Life", statOrder = { 1560 }, level = 15, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, }, + ["SynthesisImplicitLifeLeech3"] = { type = "Synthesis", affix = "", "0.4% of Physical Attack Damage Leeched as Life", statOrder = { 1560 }, level = 24, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, }, + ["SynthesisImplicitLifeLeechJewel1"] = { type = "Synthesis", affix = "", "0.2% of Physical Attack Damage Leeched as Life", statOrder = { 1560 }, level = 1, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, }, + ["SynthesisImplicitLocalLifeLeech1"] = { type = "Synthesis", affix = "", "0.2% of Physical Attack Damage Leeched as Life", statOrder = { 1562 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, }, + ["SynthesisImplicitLocalLifeLeech2"] = { type = "Synthesis", affix = "", "0.3% of Physical Attack Damage Leeched as Life", statOrder = { 1562 }, level = 15, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, }, + ["SynthesisImplicitLocalLifeLeech3__"] = { type = "Synthesis", affix = "", "0.4% of Physical Attack Damage Leeched as Life", statOrder = { 1562 }, level = 24, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, }, + ["SynthesisImplicitLifeLeechOneHanded1"] = { type = "Synthesis", affix = "", "1.5% of Physical Attack Damage Leeched as Life", statOrder = { 1562 }, level = 36, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, }, + ["SynthesisImplicitLifeLeechTwoHanded1"] = { type = "Synthesis", affix = "", "3% of Physical Attack Damage Leeched as Life", statOrder = { 1562 }, level = 36, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, }, + ["SynthesisImplicitAttackLifeLeech1_"] = { type = "Synthesis", affix = "", "0.4% of Attack Damage Leeched as Life", statOrder = { 1575 }, level = 36, group = "LifeLeechFromAttacksPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, + ["SynthesisImplicitAttackLifeLeechJewel1"] = { type = "Synthesis", affix = "", "0.2% of Attack Damage Leeched as Life", statOrder = { 1575 }, level = 1, group = "LifeLeechFromAttacksPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, + ["SynthesisImplicitMaximumLifeLeechRate1"] = { type = "Synthesis", affix = "", "10% increased Maximum total Life Recovery per second from Leech", statOrder = { 1642 }, level = 56, group = "MaximumLifeLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["SynthesisImplicitIncreasedLifeLeechRate1_"] = { type = "Synthesis", affix = "", "(8-10)% increased total Recovery per second from Life Leech", statOrder = { 2066 }, level = 1, group = "IncreasedLifeLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["SynthesisImplicitIncreasedLifeLeechRate2_"] = { type = "Synthesis", affix = "", "(11-13)% increased total Recovery per second from Life Leech", statOrder = { 2066 }, level = 15, group = "IncreasedLifeLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["SynthesisImplicitIncreasedLifeLeechRate3"] = { type = "Synthesis", affix = "", "(14-16)% increased total Recovery per second from Life Leech", statOrder = { 2066 }, level = 24, group = "IncreasedLifeLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["SynthesisImplicitLifeOnKill1_"] = { type = "Synthesis", affix = "", "Gain (6-8) Life per Enemy Killed", statOrder = { 1659 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["SynthesisImplicitLifeOnKill2"] = { type = "Synthesis", affix = "", "Gain (9-11) Life per Enemy Killed", statOrder = { 1659 }, level = 15, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["SynthesisImplicitLifeOnKill3"] = { type = "Synthesis", affix = "", "Gain (12-15) Life per Enemy Killed", statOrder = { 1659 }, level = 24, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["SynthesisImplicitPercentLifeOnKill1_"] = { type = "Synthesis", affix = "", "Recover (1-2)% of Life on Kill", statOrder = { 1660 }, level = 55, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["SynthesisImplicitLifeOnHit1"] = { type = "Synthesis", affix = "", "Gain (4-5) Life per Enemy Hit with Attacks", statOrder = { 1651 }, level = 1, group = "LifeGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, + ["SynthesisImplicitLifeOnHit2_"] = { type = "Synthesis", affix = "", "Gain (6-8) Life per Enemy Hit with Attacks", statOrder = { 1651 }, level = 15, group = "LifeGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, + ["SynthesisImplicitLifeOnHit3"] = { type = "Synthesis", affix = "", "Gain (9-15) Life per Enemy Hit with Attacks", statOrder = { 1651 }, level = 24, group = "LifeGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, + ["SynthesisImplicitLifeOnHitJewel1"] = { type = "Synthesis", affix = "", "Gain (1-2) Life per Enemy Hit with Attacks", statOrder = { 1651 }, level = 1, group = "LifeGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, + ["SynthesisImplicitLocalLifeOnHit1_"] = { type = "Synthesis", affix = "", "Grants (4-5) Life per Enemy Hit", statOrder = { 1649 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, + ["SynthesisImplicitLocalLifeOnHit2_"] = { type = "Synthesis", affix = "", "Grants (6-8) Life per Enemy Hit", statOrder = { 1649 }, level = 15, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, + ["SynthesisImplicitLocalLifeOnHit3"] = { type = "Synthesis", affix = "", "Grants (9-15) Life per Enemy Hit", statOrder = { 1649 }, level = 24, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, + ["SynthesisImplicitLifeOnHitOneHanded1"] = { type = "Synthesis", affix = "", "Grants (25-30) Life per Enemy Hit", statOrder = { 1649 }, level = 36, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, + ["SynthesisImplicitLifeOnHitTwoHanded1_"] = { type = "Synthesis", affix = "", "Grants (45-50) Life per Enemy Hit", statOrder = { 1649 }, level = 36, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, + ["SynthesisImplicitGlobalFlaskLifeRecovery1_"] = { type = "Synthesis", affix = "", "(7-10)% increased Life Recovery from Flasks", statOrder = { 1968 }, level = 56, group = "GlobalFlaskLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, }, + ["SynthesisImplicitLifeRecoveryRate1"] = { type = "Synthesis", affix = "", "(10-15)% increased Life Recovery rate", statOrder = { 1489 }, level = 60, group = "LifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["SynthesisImplicitMana1"] = { type = "Synthesis", affix = "", "+(8-10) to maximum Mana", statOrder = { 1490 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SynthesisImplicitMana2"] = { type = "Synthesis", affix = "", "+(11-14) to maximum Mana", statOrder = { 1490 }, level = 15, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SynthesisImplicitMana3_"] = { type = "Synthesis", affix = "", "+(15-19) to maximum Mana", statOrder = { 1490 }, level = 24, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SynthesisImplicitMana4"] = { type = "Synthesis", affix = "", "+(20-24) to maximum Mana", statOrder = { 1490 }, level = 36, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SynthesisImplicitMana5"] = { type = "Synthesis", affix = "", "+(25-30) to maximum Mana", statOrder = { 1490 }, level = 48, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SynthesisImplicitManaJewel1_"] = { type = "Synthesis", affix = "", "+(2-3) to maximum Mana", statOrder = { 1490 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SynthesisImplicitManaJewel2"] = { type = "Synthesis", affix = "", "+(4-5) to maximum Mana", statOrder = { 1490 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SynthesisImplicitPercentMana1_"] = { type = "Synthesis", affix = "", "6% increased maximum Mana", statOrder = { 1491 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SynthesisImplicitPercentMana2"] = { type = "Synthesis", affix = "", "(7-8)% increased maximum Mana", statOrder = { 1491 }, level = 15, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SynthesisImplicitPercentMana3"] = { type = "Synthesis", affix = "", "(9-10)% increased maximum Mana", statOrder = { 1491 }, level = 24, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SynthesisImplicitManaRegeneration1"] = { type = "Synthesis", affix = "", "(16-18)% increased Mana Regeneration Rate", statOrder = { 1495 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SynthesisImplicitManaRegeneration2"] = { type = "Synthesis", affix = "", "(19-21)% increased Mana Regeneration Rate", statOrder = { 1495 }, level = 15, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SynthesisImplicitManaRegeneration3_"] = { type = "Synthesis", affix = "", "(22-24)% increased Mana Regeneration Rate", statOrder = { 1495 }, level = 24, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SynthesisImplicitManaRegeneration4_"] = { type = "Synthesis", affix = "", "(25-27)% increased Mana Regeneration Rate", statOrder = { 1495 }, level = 36, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SynthesisImplicitManaRegeneration5"] = { type = "Synthesis", affix = "", "(28-30)% increased Mana Regeneration Rate", statOrder = { 1495 }, level = 48, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SynthesisImplicitManaRegenerationJewel1"] = { type = "Synthesis", affix = "", "(5-7)% increased Mana Regeneration Rate", statOrder = { 1495 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SynthesisImplicitAddedManaRegen1__"] = { type = "Synthesis", affix = "", "Regenerate (2-2.5) Mana per second", statOrder = { 1493 }, level = 1, group = "AddedManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SynthesisImplicitAddedManaRegen2"] = { type = "Synthesis", affix = "", "Regenerate (2.5-3) Mana per second", statOrder = { 1493 }, level = 15, group = "AddedManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SynthesisImplicitAddedManaRegen3_____"] = { type = "Synthesis", affix = "", "Regenerate (3-4) Mana per second", statOrder = { 1493 }, level = 24, group = "AddedManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SynthesisImplicitAddedManaRegenWithStaffJewel1"] = { type = "Synthesis", affix = "", "Regenerate (0.5-0.7) Mana per second while wielding a Staff", statOrder = { 8038 }, level = 1, group = "AddedManaRegenWithStaff", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SynthesisImplicitAddedManaRegenWithDualWieldJewel1"] = { type = "Synthesis", affix = "", "Regenerate (0.5-0.7) Mana per Second while Dual Wielding", statOrder = { 8035 }, level = 1, group = "AddedManaRegenWithDualWield", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SynthesisImplicitAddedManaRegenWithShieldJewel1"] = { type = "Synthesis", affix = "", "Regenerate (0.5-0.7) Mana per Second while holding a Shield", statOrder = { 8036 }, level = 1, group = "AddedManaRegenWithShield", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SynthesisImplicitAddedManaRegenWithStaffJewel2"] = { type = "Synthesis", affix = "", "Regenerate (0.8-1) Mana per second while wielding a Staff", statOrder = { 8038 }, level = 1, group = "AddedManaRegenWithStaff", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SynthesisImplicitAddedManaRegenWithDualWieldJewel2"] = { type = "Synthesis", affix = "", "Regenerate (0.8-1) Mana per Second while Dual Wielding", statOrder = { 8035 }, level = 1, group = "AddedManaRegenWithDualWield", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SynthesisImplicitAddedManaRegenWithShieldJewel2"] = { type = "Synthesis", affix = "", "Regenerate (0.8-1) Mana per Second while holding a Shield", statOrder = { 8036 }, level = 1, group = "AddedManaRegenWithShield", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SynthesisImplicitBaseManaRegeneration1"] = { type = "Synthesis", affix = "", "Regenerate 0.5% of Mana per second", statOrder = { 1492 }, level = 56, group = "BaseManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SynthesisImplicitBaseManaRegenerationOneHand1"] = { type = "Synthesis", affix = "", "Regenerate 0.2% of Mana per second", statOrder = { 1492 }, level = 36, group = "BaseManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SynthesisImplicitBaseManaRegenerationOneHand2_"] = { type = "Synthesis", affix = "", "Regenerate 0.3% of Mana per second", statOrder = { 1492 }, level = 36, group = "BaseManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SynthesisImplicitBaseManaRegenerationTwoHand1"] = { type = "Synthesis", affix = "", "Regenerate 0.4% of Mana per second", statOrder = { 1492 }, level = 36, group = "BaseManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SynthesisImplicitBaseManaRegenerationTwoHand2"] = { type = "Synthesis", affix = "", "Regenerate 0.6% of Mana per second", statOrder = { 1492 }, level = 36, group = "BaseManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SynthesisImplicitManaLeech1"] = { type = "Synthesis", affix = "", "0.1% of Physical Attack Damage Leeched as Mana", statOrder = { 1610 }, level = 1, group = "ManaLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, }, + ["SynthesisImplicitManaLeech2"] = { type = "Synthesis", affix = "", "0.2% of Physical Attack Damage Leeched as Mana", statOrder = { 1610 }, level = 15, group = "ManaLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, }, + ["SynthesisImplicitManaLeech3"] = { type = "Synthesis", affix = "", "0.3% of Physical Attack Damage Leeched as Mana", statOrder = { 1610 }, level = 24, group = "ManaLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, }, + ["SynthesisImplicitManaLeechJewel1"] = { type = "Synthesis", affix = "", "0.1% of Physical Attack Damage Leeched as Mana", statOrder = { 1610 }, level = 1, group = "ManaLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, }, + ["SynthesisImplicitLocalManaLeech1"] = { type = "Synthesis", affix = "", "0.1% of Physical Attack Damage Leeched as Mana", statOrder = { 1612 }, level = 1, group = "ManaLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, }, + ["SynthesisImplicitLocalManaLeech2"] = { type = "Synthesis", affix = "", "0.2% of Physical Attack Damage Leeched as Mana", statOrder = { 1612 }, level = 15, group = "ManaLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, }, + ["SynthesisImplicitLocalManaLeech3"] = { type = "Synthesis", affix = "", "0.3% of Physical Attack Damage Leeched as Mana", statOrder = { 1612 }, level = 24, group = "ManaLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, }, + ["SynthesisImplicitManaLeechOneHanded1"] = { type = "Synthesis", affix = "", "0.5% of Physical Attack Damage Leeched as Mana", statOrder = { 1612 }, level = 36, group = "ManaLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, }, + ["SynthesisImplicitManaLeechTwoHanded1"] = { type = "Synthesis", affix = "", "1% of Physical Attack Damage Leeched as Mana", statOrder = { 1612 }, level = 36, group = "ManaLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, }, + ["SynthesisImplicitAttackManaLeech1"] = { type = "Synthesis", affix = "", "0.4% of Attack Damage Leeched as Mana", statOrder = { 1616 }, level = 36, group = "AttackDamageManaLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, }, + ["SynthesisImplicitMaximumManaLeechRate1_"] = { type = "Synthesis", affix = "", "10% increased Maximum total Mana Recovery per second from Leech", statOrder = { 1644 }, level = 56, group = "MaximumManaLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SynthesisImplicitIncreasedManaLeechRate1"] = { type = "Synthesis", affix = "", "(10-15)% increased total Recovery per second from Mana Leech", statOrder = { 2067 }, level = 36, group = "IncreasedManaLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SynthesisImplicitManaOnKill1_"] = { type = "Synthesis", affix = "", "Gain 3 Mana per Enemy Killed", statOrder = { 1674 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SynthesisImplicitManaOnKill2___"] = { type = "Synthesis", affix = "", "Gain 4 Mana per Enemy Killed", statOrder = { 1674 }, level = 15, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SynthesisImplicitManaOnKill3"] = { type = "Synthesis", affix = "", "Gain 5 Mana per Enemy Killed", statOrder = { 1674 }, level = 24, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SynthesisImplicitManaOnHit1__"] = { type = "Synthesis", affix = "", "Gain 2 Mana per Enemy Hit with Attacks", statOrder = { 1655 }, level = 1, group = "ManaGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, }, + ["SynthesisImplicitManaOnHit2"] = { type = "Synthesis", affix = "", "Gain 3 Mana per Enemy Hit with Attacks", statOrder = { 1655 }, level = 15, group = "ManaGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, }, + ["SynthesisImplicitManaOnHit3"] = { type = "Synthesis", affix = "", "Gain 4 Mana per Enemy Hit with Attacks", statOrder = { 1655 }, level = 24, group = "ManaGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, }, + ["SynthesisImplicitManaOnHitJewel1_"] = { type = "Synthesis", affix = "", "Gain 1 Mana per Enemy Hit with Attacks", statOrder = { 1655 }, level = 1, group = "ManaGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, }, + ["SynthesisImplicitPercentManaOnKill1"] = { type = "Synthesis", affix = "", "Recover (1-2)% of Mana on Kill", statOrder = { 1662 }, level = 56, group = "MaximumManaOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SynthesisImplicitManaRecoveryRate1_"] = { type = "Synthesis", affix = "", "(10-15)% increased Mana Recovery rate", statOrder = { 1497 }, level = 60, group = "ManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SynthesisImplicitTotalManaCost1_"] = { type = "Synthesis", affix = "", "-1 to Total Mana Cost of Skills", statOrder = { 1802 }, level = 1, group = "IncreaseManaCostFlat", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SynthesisImplicitTotalManaCost2_"] = { type = "Synthesis", affix = "", "-2 to Total Mana Cost of Skills", statOrder = { 1802 }, level = 15, group = "IncreaseManaCostFlat", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SynthesisImplicitTotalManaCost3"] = { type = "Synthesis", affix = "", "-3 to Total Mana Cost of Skills", statOrder = { 1802 }, level = 24, group = "IncreaseManaCostFlat", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SynthesisImplicitReducedManaCost1_"] = { type = "Synthesis", affix = "", "2% reduced Mana Cost of Skills", statOrder = { 1794 }, level = 1, group = "ManaCostReduction", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SynthesisImplicitReducedManaCost2"] = { type = "Synthesis", affix = "", "3% reduced Mana Cost of Skills", statOrder = { 1794 }, level = 15, group = "ManaCostReduction", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SynthesisImplicitReducedManaCost3"] = { type = "Synthesis", affix = "", "(4-5)% reduced Mana Cost of Skills", statOrder = { 1794 }, level = 24, group = "ManaCostReduction", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SynthesisImplicitReducedManaCostJewel1_"] = { type = "Synthesis", affix = "", "2% reduced Mana Cost of Skills", statOrder = { 1794 }, level = 1, group = "ManaCostReduction", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SynthesisImplicitAttackDamagePerMana1"] = { type = "Synthesis", affix = "", "(6-8)% increased Attack Damage per 500 Maximum Mana", statOrder = { 4745 }, level = 36, group = "AttackDamagePerMana", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, + ["SynthesisImplicitAttackDamagePerMana2"] = { type = "Synthesis", affix = "", "(12-14)% increased Attack Damage per 500 Maximum Mana", statOrder = { 4745 }, level = 48, group = "AttackDamagePerMana", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, + ["SynthesisImplicitSpellDamagePerMana1"] = { type = "Synthesis", affix = "", "(6-8)% increased Spell Damage per 500 Maximum Mana", statOrder = { 9930 }, level = 36, group = "SpellDamagePerMana", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SynthesisImplicitSpellDamagePerMana2___"] = { type = "Synthesis", affix = "", "(12-14)% increased Spell Damage per 500 Maximum Mana", statOrder = { 9930 }, level = 48, group = "SpellDamagePerMana", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SynthesisImplicitPhysicalDamageTakenFromMana1"] = { type = "Synthesis", affix = "", "(2-3)% of Physical Damage is taken from Mana before Life", statOrder = { 4076 }, level = 36, group = "PhysicalDamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "physical" }, }, + ["SynthesisImplicitPhysicalDamageTakenFromMana2_"] = { type = "Synthesis", affix = "", "(4-5)% of Physical Damage is taken from Mana before Life", statOrder = { 4076 }, level = 48, group = "PhysicalDamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "physical" }, }, + ["SynthesisImplicitFireResist1"] = { type = "Synthesis", affix = "", "+8% to Fire Resistance", statOrder = { 1536 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["SynthesisImplicitFireResist2"] = { type = "Synthesis", affix = "", "+(9-10)% to Fire Resistance", statOrder = { 1536 }, level = 15, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["SynthesisImplicitFireResist3"] = { type = "Synthesis", affix = "", "+(11-12)% to Fire Resistance", statOrder = { 1536 }, level = 24, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["SynthesisImplicitFireResist4"] = { type = "Synthesis", affix = "", "+(13-14)% to Fire Resistance", statOrder = { 1536 }, level = 36, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["SynthesisImplicitFireResist5"] = { type = "Synthesis", affix = "", "+(15-16)% to Fire Resistance", statOrder = { 1536 }, level = 48, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["SynthesisImplicitFireResistJewel1"] = { type = "Synthesis", affix = "", "+(2-3)% to Fire Resistance", statOrder = { 1536 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["SynthesisImplicitFireResistJewel2_"] = { type = "Synthesis", affix = "", "+(4-5)% to Fire Resistance", statOrder = { 1536 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["SynthesisImplicitMaxFireResist1"] = { type = "Synthesis", affix = "", "+1% to maximum Fire Resistance", statOrder = { 1534 }, level = 60, group = "MaximumFireResistanceImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["SynthesisImplicitMaxFireResist2"] = { type = "Synthesis", affix = "", "+3% to maximum Fire Resistance", statOrder = { 1534 }, level = 65, group = "MaximumFireResistanceImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["SynthesisImplicitPhysicalTakenAsFire1"] = { type = "Synthesis", affix = "", "(7-10)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2356 }, level = 56, group = "PhysicalDamageTakenAsFirePercent", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "fire" }, }, + ["SynthesisImplicitFlatFireDamageTaken1"] = { type = "Synthesis", affix = "", "-(15-10) Fire Damage taken from Hits", statOrder = { 2146 }, level = 1, group = "FlatFireDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, }, + ["SynthesisImplicitFlatFireDamageTaken2"] = { type = "Synthesis", affix = "", "-(40-16) Fire Damage taken from Hits", statOrder = { 2146 }, level = 15, group = "FlatFireDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, }, + ["SynthesisImplicitFlatFireDamageTaken3"] = { type = "Synthesis", affix = "", "-(80-40) Fire Damage taken from Hits", statOrder = { 2146 }, level = 24, group = "FlatFireDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, }, + ["SynthesisImplicitImmuneToIgnite1"] = { type = "Synthesis", affix = "", "Cannot be Ignited", statOrder = { 1750 }, level = 56, group = "CannotBeIgnited", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitColdResist1"] = { type = "Synthesis", affix = "", "+8% to Cold Resistance", statOrder = { 1542 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["SynthesisImplicitColdResist2_"] = { type = "Synthesis", affix = "", "+(9-10)% to Cold Resistance", statOrder = { 1542 }, level = 15, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["SynthesisImplicitColdResist3"] = { type = "Synthesis", affix = "", "+(11-12)% to Cold Resistance", statOrder = { 1542 }, level = 24, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["SynthesisImplicitColdResist4"] = { type = "Synthesis", affix = "", "+(13-14)% to Cold Resistance", statOrder = { 1542 }, level = 36, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["SynthesisImplicitColdResist5"] = { type = "Synthesis", affix = "", "+(15-16)% to Cold Resistance", statOrder = { 1542 }, level = 48, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["SynthesisImplicitColdResistJewel1"] = { type = "Synthesis", affix = "", "+(2-3)% to Cold Resistance", statOrder = { 1542 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["SynthesisImplicitColdResistJewel2"] = { type = "Synthesis", affix = "", "+(4-5)% to Cold Resistance", statOrder = { 1542 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["SynthesisImplicitMaxColdResist1_"] = { type = "Synthesis", affix = "", "+1% to maximum Cold Resistance", statOrder = { 1540 }, level = 60, group = "MaximumColdResistanceImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["SynthesisImplicitMaxColdResist2"] = { type = "Synthesis", affix = "", "+3% to maximum Cold Resistance", statOrder = { 1540 }, level = 65, group = "MaximumColdResistanceImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["SynthesisImplicitPhysicalTakenAsCold1__"] = { type = "Synthesis", affix = "", "(7-10)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2357 }, level = 56, group = "PhysicalDamageTakenAsCold", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "cold" }, }, + ["SynthesisImplicitFlatColdDamageTaken1_"] = { type = "Synthesis", affix = "", "-(15-10) Cold Damage taken from Hits", statOrder = { 5716 }, level = 1, group = "FlatColdDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, }, + ["SynthesisImplicitFlatColdDamageTaken2"] = { type = "Synthesis", affix = "", "-(40-16) Cold Damage taken from Hits", statOrder = { 5716 }, level = 15, group = "FlatColdDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, }, + ["SynthesisImplicitFlatColdDamageTaken3"] = { type = "Synthesis", affix = "", "-(80-40) Cold Damage taken from Hits", statOrder = { 5716 }, level = 24, group = "FlatColdDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, }, + ["SynthesisImplicitImmuneToFreeze1"] = { type = "Synthesis", affix = "", "Cannot be Frozen", statOrder = { 1749 }, level = 56, group = "CannotBeFrozen", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["SynthesisImplicitLightningResist1"] = { type = "Synthesis", affix = "", "+8% to Lightning Resistance", statOrder = { 1547 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, + ["SynthesisImplicitLightningResist2"] = { type = "Synthesis", affix = "", "+(9-10)% to Lightning Resistance", statOrder = { 1547 }, level = 15, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, + ["SynthesisImplicitLightningResist3"] = { type = "Synthesis", affix = "", "+(11-12)% to Lightning Resistance", statOrder = { 1547 }, level = 24, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, + ["SynthesisImplicitLightningResist4"] = { type = "Synthesis", affix = "", "+(13-14)% to Lightning Resistance", statOrder = { 1547 }, level = 36, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, + ["SynthesisImplicitLightningResist5"] = { type = "Synthesis", affix = "", "+(15-16)% to Lightning Resistance", statOrder = { 1547 }, level = 48, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, + ["SynthesisImplicitLightningResistJewel1"] = { type = "Synthesis", affix = "", "+(2-3)% to Lightning Resistance", statOrder = { 1547 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, + ["SynthesisImplicitLightningResistJewel2_"] = { type = "Synthesis", affix = "", "+(4-5)% to Lightning Resistance", statOrder = { 1547 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, + ["SynthesisImplicitMaxLightningResist1"] = { type = "Synthesis", affix = "", "+1% to maximum Lightning Resistance", statOrder = { 1545 }, level = 60, group = "MaximumLightningResistanceImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, + ["SynthesisImplicitMaxLightningResist2____"] = { type = "Synthesis", affix = "", "+3% to maximum Lightning Resistance", statOrder = { 1545 }, level = 65, group = "MaximumLightningResistanceImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, + ["SynthesisImplicitPhysicalTakenAsLightning1"] = { type = "Synthesis", affix = "", "(7-10)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2358 }, level = 56, group = "PhysicalDamageTakenAsLightningPercent", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "lightning" }, }, + ["SynthesisImplicitFlatLightningDamageTaken1"] = { type = "Synthesis", affix = "", "-(15-10) Lightning Damage taken from Hits", statOrder = { 7312 }, level = 1, group = "FlatLightningDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, }, + ["SynthesisImplicitFlatLightningDamageTaken2_"] = { type = "Synthesis", affix = "", "-(40-16) Lightning Damage taken from Hits", statOrder = { 7312 }, level = 15, group = "FlatLightningDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, }, + ["SynthesisImplicitFlatLightningDamageTaken3"] = { type = "Synthesis", affix = "", "-(80-40) Lightning Damage taken from Hits", statOrder = { 7312 }, level = 24, group = "FlatLightningDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, }, + ["SynthesisImplicitImmuneToShock1"] = { type = "Synthesis", affix = "", "Cannot be Shocked", statOrder = { 1752 }, level = 56, group = "CannotBeShocked", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitChaosResist1_"] = { type = "Synthesis", affix = "", "+(5-6)% to Chaos Resistance", statOrder = { 1552 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, + ["SynthesisImplicitChaosResist2"] = { type = "Synthesis", affix = "", "+(7-8)% to Chaos Resistance", statOrder = { 1552 }, level = 15, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, + ["SynthesisImplicitChaosResist3"] = { type = "Synthesis", affix = "", "+(9-10)% to Chaos Resistance", statOrder = { 1552 }, level = 24, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, + ["SynthesisImplicitChaosResistJewel1"] = { type = "Synthesis", affix = "", "+(2-3)% to Chaos Resistance", statOrder = { 1552 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, + ["SynthesisImplicitMaxChaosResist1"] = { type = "Synthesis", affix = "", "+1% to maximum Chaos Resistance", statOrder = { 1551 }, level = 60, group = "MaximumChaosResistanceImplicit", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, + ["SynthesisImplicitMaxChaosResist2"] = { type = "Synthesis", affix = "", "+2% to maximum Chaos Resistance", statOrder = { 1551 }, level = 65, group = "MaximumChaosResistanceImplicit", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, + ["SynthesisImplicitPhysicalTakenAsChaos1"] = { type = "Synthesis", affix = "", "(5-8)% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2360 }, level = 56, group = "PhysicalDamageTakenAsChaos", weightKey = { }, weightVal = { }, modTags = { "physical", "chaos" }, }, + ["SynthesisImplicitFlatChaosDamageTaken1"] = { type = "Synthesis", affix = "", "-(17-13) Chaos Damage taken", statOrder = { 2748 }, level = 15, group = "ChaosDamageTaken", weightKey = { }, weightVal = { }, modTags = { "chaos" }, }, + ["SynthesisImplicitFlatChaosDamageTaken2"] = { type = "Synthesis", affix = "", "-(31-18) Chaos Damage taken", statOrder = { 2748 }, level = 24, group = "ChaosDamageTaken", weightKey = { }, weightVal = { }, modTags = { "chaos" }, }, + ["SynthesisImplicitImmuneToPoison1"] = { type = "Synthesis", affix = "", "Cannot be Poisoned", statOrder = { 3277 }, level = 56, group = "CannotBePoisoned", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, }, + ["SynthesisImplicitAllResist1__"] = { type = "Synthesis", affix = "", "+(3-4)% to all Elemental Resistances", statOrder = { 1530 }, level = 15, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["SynthesisImplicitAllResist2_"] = { type = "Synthesis", affix = "", "+(5-6)% to all Elemental Resistances", statOrder = { 1530 }, level = 24, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["SynthesisImplicitAllResist3"] = { type = "Synthesis", affix = "", "+(7-8)% to all Elemental Resistances", statOrder = { 1530 }, level = 36, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["SynthesisImplicitMaximumResistance1"] = { type = "Synthesis", affix = "", "+1% to all maximum Resistances", statOrder = { 1553 }, level = 65, group = "MaximumElementalResistanceImplicit", weightKey = { }, weightVal = { }, modTags = { "resistance" }, }, + ["SynthesisImplicitMaximumResistance2_"] = { type = "Synthesis", affix = "", "+2% to all maximum Resistances", statOrder = { 1553 }, level = 65, group = "MaximumElementalResistanceImplicit", weightKey = { }, weightVal = { }, modTags = { "resistance" }, }, + ["SynthesisImplicitLocalIncreaseSocketedGemLevel1_"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed Gems", statOrder = { 142 }, level = 60, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["SynthesisImplicitLocalCrit1"] = { type = "Synthesis", affix = "", "(5-6)% increased Critical Strike Chance", statOrder = { 1375 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, + ["SynthesisImplicitLocalCrit2"] = { type = "Synthesis", affix = "", "(7-8)% increased Critical Strike Chance", statOrder = { 1375 }, level = 15, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, + ["SynthesisImplicitLocalCrit3"] = { type = "Synthesis", affix = "", "(9-10)% increased Critical Strike Chance", statOrder = { 1375 }, level = 24, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, + ["SynthesisImplicitLocalCrit4_"] = { type = "Synthesis", affix = "", "(11-12)% increased Critical Strike Chance", statOrder = { 1375 }, level = 36, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, + ["SynthesisImplicitLocalCrit5"] = { type = "Synthesis", affix = "", "(13-15)% increased Critical Strike Chance", statOrder = { 1375 }, level = 48, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, + ["SynthesisImplicitGlobalCrit1"] = { type = "Synthesis", affix = "", "(14-15)% increased Global Critical Strike Chance", statOrder = { 1370 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["SynthesisImplicitGlobalCrit2"] = { type = "Synthesis", affix = "", "(16-17)% increased Global Critical Strike Chance", statOrder = { 1370 }, level = 15, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["SynthesisImplicitGlobalCrit3"] = { type = "Synthesis", affix = "", "(18-20)% increased Global Critical Strike Chance", statOrder = { 1370 }, level = 24, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["SynthesisImplicitGlobalCrit4"] = { type = "Synthesis", affix = "", "(21-23)% increased Global Critical Strike Chance", statOrder = { 1370 }, level = 36, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["SynthesisImplicitGlobalCrit5"] = { type = "Synthesis", affix = "", "(24-26)% increased Global Critical Strike Chance", statOrder = { 1370 }, level = 48, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["SynthesisImplicitGlobalCritQuiver1"] = { type = "Synthesis", affix = "", "(26-28)% increased Global Critical Strike Chance", statOrder = { 1370 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["SynthesisImplicitGlobalCritQuiver2"] = { type = "Synthesis", affix = "", "(29-31)% increased Global Critical Strike Chance", statOrder = { 1370 }, level = 15, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["SynthesisImplicitGlobalCritQuiver3"] = { type = "Synthesis", affix = "", "(32-34)% increased Global Critical Strike Chance", statOrder = { 1370 }, level = 24, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["SynthesisImplicitGlobalCritQuiver4"] = { type = "Synthesis", affix = "", "(35-37)% increased Global Critical Strike Chance", statOrder = { 1370 }, level = 36, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["SynthesisImplicitGlobalCritQuiver5"] = { type = "Synthesis", affix = "", "(38-40)% increased Global Critical Strike Chance", statOrder = { 1370 }, level = 48, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["SynthesisImplicitGlobalCritJewel1_"] = { type = "Synthesis", affix = "", "2% increased Global Critical Strike Chance", statOrder = { 1370 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["SynthesisImplicitGlobalCritJewel2"] = { type = "Synthesis", affix = "", "(3-4)% increased Global Critical Strike Chance", statOrder = { 1370 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["SynthesisImplicitMinorCriticalMultiplier1"] = { type = "Synthesis", affix = "", "+12% to Global Critical Strike Multiplier", statOrder = { 1399 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, + ["SynthesisImplicitMinorCriticalMultiplier2"] = { type = "Synthesis", affix = "", "+(13-14)% to Global Critical Strike Multiplier", statOrder = { 1399 }, level = 15, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, + ["SynthesisImplicitMinorCriticalMultiplier3_"] = { type = "Synthesis", affix = "", "+(15-16)% to Global Critical Strike Multiplier", statOrder = { 1399 }, level = 24, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, + ["SynthesisImplicitMinorCriticalMultiplier4_"] = { type = "Synthesis", affix = "", "+(17-18)% to Global Critical Strike Multiplier", statOrder = { 1399 }, level = 36, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, + ["SynthesisImplicitMinorCriticalMultiplier5"] = { type = "Synthesis", affix = "", "+(19-20)% to Global Critical Strike Multiplier", statOrder = { 1399 }, level = 48, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, + ["SynthesisImplicitSpellCriticalStrikeChance1"] = { type = "Synthesis", affix = "", "(29-31)% increased Spell Critical Strike Chance", statOrder = { 1369 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, }, + ["SynthesisImplicitSpellCriticalStrikeChance2"] = { type = "Synthesis", affix = "", "(32-34)% increased Spell Critical Strike Chance", statOrder = { 1369 }, level = 15, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, }, + ["SynthesisImplicitSpellCriticalStrikeChance3_"] = { type = "Synthesis", affix = "", "(35-37)% increased Spell Critical Strike Chance", statOrder = { 1369 }, level = 24, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, }, + ["SynthesisImplicitSpellCriticalStrikeChance4"] = { type = "Synthesis", affix = "", "(38-41)% increased Spell Critical Strike Chance", statOrder = { 1369 }, level = 36, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, }, + ["SynthesisImplicitSpellCriticalStrikeChance5_"] = { type = "Synthesis", affix = "", "(42-45)% increased Spell Critical Strike Chance", statOrder = { 1369 }, level = 48, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, }, + ["SynthesisImplicitCriticalMultiplier1"] = { type = "Synthesis", affix = "", "+(15-17)% to Global Critical Strike Multiplier", statOrder = { 1399 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, + ["SynthesisImplicitCriticalMultiplier2"] = { type = "Synthesis", affix = "", "+(18-20)% to Global Critical Strike Multiplier", statOrder = { 1399 }, level = 15, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, + ["SynthesisImplicitCriticalMultiplier3"] = { type = "Synthesis", affix = "", "+(21-23)% to Global Critical Strike Multiplier", statOrder = { 1399 }, level = 24, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, + ["SynthesisImplicitCriticalMultiplier4"] = { type = "Synthesis", affix = "", "+(24-26)% to Global Critical Strike Multiplier", statOrder = { 1399 }, level = 36, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, + ["SynthesisImplicitCriticalMultiplier5"] = { type = "Synthesis", affix = "", "+(27-30)% to Global Critical Strike Multiplier", statOrder = { 1399 }, level = 48, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, + ["SynthesisImplicitCriticalMultiplierJewel1_"] = { type = "Synthesis", affix = "", "+2% to Global Critical Strike Multiplier", statOrder = { 1399 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, + ["SynthesisImplicitCriticalMultiplierJewel2"] = { type = "Synthesis", affix = "", "+(3-4)% to Global Critical Strike Multiplier", statOrder = { 1399 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, + ["SynthesisImplicitAdditionalCriticalStrikeChanceWithAttacks1_"] = { type = "Synthesis", affix = "", "Attacks have +(0.5-1)% to Critical Strike Chance", statOrder = { 4691 }, level = 65, group = "AdditionalCriticalStrikeChanceWithAttacks", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, + ["SynthesisImplicitAdditionalCriticalStrikeChanceWithSpells1"] = { type = "Synthesis", affix = "", "+(0.5-1)% to Spell Critical Strike Chance", statOrder = { 9909 }, level = 65, group = "AdditionalCriticalStrikeChanceWithSpells", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, }, + ["SynthesisImplicitMaceCriticalMultiplierJewel1"] = { type = "Synthesis", affix = "", "+(2-3)% to Critical Strike Multiplier with Maces or Sceptres", statOrder = { 1405 }, level = 1, group = "MaceCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, }, + ["SynthesisImplicitAxeCriticalMultiplierJewel1_"] = { type = "Synthesis", affix = "", "+(2-3)% to Critical Strike Multiplier with Axes", statOrder = { 1406 }, level = 1, group = "AxeCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, }, + ["SynthesisImplicitSwordCriticalMultiplierJewel1"] = { type = "Synthesis", affix = "", "+(2-3)% to Critical Strike Multiplier with Swords", statOrder = { 1408 }, level = 1, group = "SwordCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, }, + ["SynthesisImplicitBowCriticalMultiplierJewel1_"] = { type = "Synthesis", affix = "", "+(2-3)% to Critical Strike Multiplier with Bows", statOrder = { 1407 }, level = 1, group = "BowCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, }, + ["SynthesisImplicitClawCriticalMultiplierJewel1"] = { type = "Synthesis", affix = "", "+(2-3)% to Critical Strike Multiplier with Claws", statOrder = { 1410 }, level = 1, group = "ClawCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, }, + ["SynthesisImplicitDaggerCriticalMultiplierJewel1_"] = { type = "Synthesis", affix = "", "+(2-3)% to Critical Strike Multiplier with Daggers", statOrder = { 1404 }, level = 1, group = "DaggerCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, }, + ["SynthesisImplicitWandCriticalMultiplierJewel1"] = { type = "Synthesis", affix = "", "+(2-3)% to Critical Strike Multiplier with Wands", statOrder = { 1409 }, level = 1, group = "WandCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, }, + ["SynthesisImplicitStaffCriticalMultiplierJewel1"] = { type = "Synthesis", affix = "", "+(2-3)% to Critical Strike Multiplier with Staves", statOrder = { 1411 }, level = 1, group = "StaffCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, }, + ["SynthesisImplicitMaceCriticalMultiplierJewel2"] = { type = "Synthesis", affix = "", "+(4-5)% to Critical Strike Multiplier with Maces or Sceptres", statOrder = { 1405 }, level = 1, group = "MaceCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, }, + ["SynthesisImplicitAxeCriticalMultiplierJewel2_"] = { type = "Synthesis", affix = "", "+(4-5)% to Critical Strike Multiplier with Axes", statOrder = { 1406 }, level = 1, group = "AxeCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, }, + ["SynthesisImplicitSwordCriticalMultiplierJewel2_"] = { type = "Synthesis", affix = "", "+(4-5)% to Critical Strike Multiplier with Swords", statOrder = { 1408 }, level = 1, group = "SwordCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, }, + ["SynthesisImplicitBowCriticalMultiplierJewel2"] = { type = "Synthesis", affix = "", "+(4-5)% to Critical Strike Multiplier with Bows", statOrder = { 1407 }, level = 1, group = "BowCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, }, + ["SynthesisImplicitClawCriticalMultiplierJewel2"] = { type = "Synthesis", affix = "", "+(4-5)% to Critical Strike Multiplier with Claws", statOrder = { 1410 }, level = 1, group = "ClawCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, }, + ["SynthesisImplicitDaggerCriticalMultiplierJewel2"] = { type = "Synthesis", affix = "", "+(4-5)% to Critical Strike Multiplier with Daggers", statOrder = { 1404 }, level = 1, group = "DaggerCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, }, + ["SynthesisImplicitWandCriticalMultiplierJewel2"] = { type = "Synthesis", affix = "", "+(4-5)% to Critical Strike Multiplier with Wands", statOrder = { 1409 }, level = 1, group = "WandCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, }, + ["SynthesisImplicitStaffCriticalMultiplierJewel2_"] = { type = "Synthesis", affix = "", "+(4-5)% to Critical Strike Multiplier with Staves", statOrder = { 1411 }, level = 1, group = "StaffCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, }, + ["SynthesisImplicitSpellCriticalChanceWithStaffJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Critical Strike Chance for Spells while wielding a Staff", statOrder = { 5842 }, level = 1, group = "SpellCriticalChanceWithStaff", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, }, + ["SynthesisImplicitSpellCriticalChanceWithDualWieldJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Critical Strike Chance for Spells while Dual Wielding", statOrder = { 5840 }, level = 1, group = "SpellCriticalChanceWithDualWield", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, }, + ["SynthesisImplicitSpellCriticalChanceWithShieldJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Critical Strike Chance for Spells while holding a Shield", statOrder = { 5841 }, level = 1, group = "SpellCriticalChanceWithShield", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, }, + ["SynthesisImplicitSpellCriticalChanceWithStaffJewel2__"] = { type = "Synthesis", affix = "", "(4-5)% increased Critical Strike Chance for Spells while wielding a Staff", statOrder = { 5842 }, level = 1, group = "SpellCriticalChanceWithStaff", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, }, + ["SynthesisImplicitSpellCriticalChanceWithDualWieldJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Critical Strike Chance for Spells while Dual Wielding", statOrder = { 5840 }, level = 1, group = "SpellCriticalChanceWithDualWield", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, }, + ["SynthesisImplicitSpellCriticalChanceWithShieldJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Critical Strike Chance for Spells while holding a Shield", statOrder = { 5841 }, level = 1, group = "SpellCriticalChanceWithShield", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, }, + ["SynthesisImplicitSpellCriticalMultiplierWithStaffJewel1"] = { type = "Synthesis", affix = "", "+(2-3)% to Critical Strike Multiplier for Spells while wielding a Staff", statOrder = { 5869 }, level = 1, group = "SpellCriticalMultiplierWithStaff", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster", "critical" }, }, + ["SynthesisImplicitSpellCriticalMultiplierWithDualWieldJewel1"] = { type = "Synthesis", affix = "", "+(2-3)% to Critical Strike Multiplier for Spells while Dual Wielding", statOrder = { 5867 }, level = 1, group = "SpellCriticalMultiplierWithDualWield", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster", "critical" }, }, + ["SynthesisImplicitSpellCriticalMultiplierWithShieldJewel1"] = { type = "Synthesis", affix = "", "+(2-3)% to Critical Strike Multiplier for Spells while holding a Shield", statOrder = { 5868 }, level = 1, group = "SpellCriticalMultiplierWithShield", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster", "critical" }, }, + ["SynthesisImplicitSpellCriticalMultiplierWithStaffJewel2_"] = { type = "Synthesis", affix = "", "+(4-5)% to Critical Strike Multiplier for Spells while wielding a Staff", statOrder = { 5869 }, level = 1, group = "SpellCriticalMultiplierWithStaff", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster", "critical" }, }, + ["SynthesisImplicitSpellCriticalMultiplierWithDualWieldJewel2"] = { type = "Synthesis", affix = "", "+(4-5)% to Critical Strike Multiplier for Spells while Dual Wielding", statOrder = { 5867 }, level = 1, group = "SpellCriticalMultiplierWithDualWield", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster", "critical" }, }, + ["SynthesisImplicitSpellCriticalMultiplierWithShieldJewel2__"] = { type = "Synthesis", affix = "", "+(4-5)% to Critical Strike Multiplier for Spells while holding a Shield", statOrder = { 5868 }, level = 1, group = "SpellCriticalMultiplierWithShield", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster", "critical" }, }, + ["SynthesisImplicitAdditionalArrow1"] = { type = "Synthesis", affix = "", "Bow Attacks fire an additional Arrow", statOrder = { 1705 }, level = 65, group = "AdditionalArrows", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["SynthesisImplicitAdditionalArrowPierce1_"] = { type = "Synthesis", affix = "", "Arrows Pierce an additional Target", statOrder = { 1702 }, level = 56, group = "ArrowAdditionalPierce", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["SynthesisImplicitAdditionalArrowPierce2_"] = { type = "Synthesis", affix = "", "Arrows Pierce 2 additional Targets", statOrder = { 1702 }, level = 61, group = "ArrowAdditionalPierce", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["SynthesisImplicitAdditionalArrowPierce3"] = { type = "Synthesis", affix = "", "Arrows Pierce 3 additional Targets", statOrder = { 1702 }, level = 65, group = "ArrowAdditionalPierce", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["SynthesisImplicitAdditionalPierce1"] = { type = "Synthesis", affix = "", "Projectiles Pierce 2 additional Targets", statOrder = { 1701 }, level = 56, group = "AdditionalPierce", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitStunDuration1_"] = { type = "Synthesis", affix = "", "(15-17)% increased Stun Duration on Enemies", statOrder = { 1774 }, level = 1, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitStunDuration2"] = { type = "Synthesis", affix = "", "(18-25)% increased Stun Duration on Enemies", statOrder = { 1774 }, level = 15, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitStunDuration3_"] = { type = "Synthesis", affix = "", "(26-35)% increased Stun Duration on Enemies", statOrder = { 1774 }, level = 24, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitEnemyStunThreshold1"] = { type = "Synthesis", affix = "", "(5-6)% reduced Enemy Stun Threshold", statOrder = { 1428 }, level = 1, group = "StunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitEnemyStunThreshold2"] = { type = "Synthesis", affix = "", "(7-8)% reduced Enemy Stun Threshold", statOrder = { 1428 }, level = 15, group = "StunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitEnemyStunThreshold3"] = { type = "Synthesis", affix = "", "(9-10)% reduced Enemy Stun Threshold", statOrder = { 1428 }, level = 24, group = "StunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitStunRecovery1"] = { type = "Synthesis", affix = "", "(10-12)% increased Stun and Block Recovery", statOrder = { 1811 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitStunRecovery2_"] = { type = "Synthesis", affix = "", "(13-15)% increased Stun and Block Recovery", statOrder = { 1811 }, level = 15, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitStunRecovery3_"] = { type = "Synthesis", affix = "", "(16-18)% increased Stun and Block Recovery", statOrder = { 1811 }, level = 24, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitStunRecovery4"] = { type = "Synthesis", affix = "", "(19-21)% increased Stun and Block Recovery", statOrder = { 1811 }, level = 36, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitStunRecovery5"] = { type = "Synthesis", affix = "", "(22-25)% increased Stun and Block Recovery", statOrder = { 1811 }, level = 48, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitStunRecoveryJewel1"] = { type = "Synthesis", affix = "", "(6-7)% increased Stun and Block Recovery", statOrder = { 1811 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitStunDurationJewel1___"] = { type = "Synthesis", affix = "", "(2-3)% increased Stun Duration on Enemies", statOrder = { 1774 }, level = 1, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitStunDurationJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Stun Duration on Enemies", statOrder = { 1774 }, level = 1, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitGlobalKnockbackChanceJewel1"] = { type = "Synthesis", affix = "", "(2-3)% chance to Knock Enemies Back on hit", statOrder = { 1904 }, level = 1, group = "GlobalKnockbackChance", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitAvoidStun1"] = { type = "Synthesis", affix = "", "(10-11)% chance to Avoid being Stunned", statOrder = { 1762 }, level = 15, group = "AvoidStun", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitAvoidStun2"] = { type = "Synthesis", affix = "", "(12-13)% chance to Avoid being Stunned", statOrder = { 1762 }, level = 24, group = "AvoidStun", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitAvoidStun3"] = { type = "Synthesis", affix = "", "(14-15)% chance to Avoid being Stunned", statOrder = { 1762 }, level = 36, group = "AvoidStun", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitAvoidStunJewel1"] = { type = "Synthesis", affix = "", "(8-10)% chance to Avoid being Stunned", statOrder = { 1762 }, level = 1, group = "AvoidStun", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitAvoidStunCastingJewel1_"] = { type = "Synthesis", affix = "", "(16-20)% chance to Ignore Stuns while Casting", statOrder = { 1809 }, level = 1, group = "AvoidInterruptionWhileCasting", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitAreaOfEffectOnStun1"] = { type = "Synthesis", affix = "", "(20-25)% increased Area of Effect if you have Stunned an Enemy Recently", statOrder = { 4628 }, level = 56, group = "AreaOfEffectIfStunnedEnemyRecently", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitUnwaveringStance1"] = { type = "Synthesis", affix = "", "Unwavering Stance", statOrder = { 10591 }, level = 65, group = "UnwaveringStance", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["SynthesisImplicitImmuneToBleed1____"] = { type = "Synthesis", affix = "", "Bleeding cannot be inflicted on you", statOrder = { 4122 }, level = 56, group = "BleedingImmunity", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["SynthesisImplicitSelfAilmentDuration1"] = { type = "Synthesis", affix = "", "(15-20)% reduced Elemental Ailment Duration on you", statOrder = { 1778 }, level = 15, group = "SelfStatusAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, }, + ["SynthesisImplicitSelfAilmentDuration2"] = { type = "Synthesis", affix = "", "(21-35)% reduced Elemental Ailment Duration on you", statOrder = { 1778 }, level = 24, group = "SelfStatusAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, }, + ["SynthesisImplicitSelfAilmentDuration3"] = { type = "Synthesis", affix = "", "(36-50)% reduced Elemental Ailment Duration on you", statOrder = { 1778 }, level = 36, group = "SelfStatusAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, }, + ["SynthesisImplicitSelfAilmentDurationJewel1_"] = { type = "Synthesis", affix = "", "(5-7)% reduced Elemental Ailment Duration on you", statOrder = { 1778 }, level = 1, group = "SelfStatusAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, }, + ["SynthesisImplicitSelfAilmentDurationJewel2"] = { type = "Synthesis", affix = "", "(8-10)% reduced Elemental Ailment Duration on you", statOrder = { 1778 }, level = 1, group = "SelfStatusAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, }, + ["SynthesisImplicitAilmentDamage1"] = { type = "Synthesis", affix = "", "8% increased Damage with Ailments", statOrder = { 4878 }, level = 1, group = "AilmentDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "ailment" }, }, + ["SynthesisImplicitAilmentDamage2"] = { type = "Synthesis", affix = "", "(9-10)% increased Damage with Ailments", statOrder = { 4878 }, level = 15, group = "AilmentDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "ailment" }, }, + ["SynthesisImplicitAilmentDamage3"] = { type = "Synthesis", affix = "", "(11-12)% increased Damage with Ailments", statOrder = { 4878 }, level = 24, group = "AilmentDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "ailment" }, }, + ["SynthesisImplicitAilmentDamage4"] = { type = "Synthesis", affix = "", "(13-14)% increased Damage with Ailments", statOrder = { 4878 }, level = 36, group = "AilmentDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "ailment" }, }, + ["SynthesisImplicitAilmentDamage5"] = { type = "Synthesis", affix = "", "(15-16)% increased Damage with Ailments", statOrder = { 4878 }, level = 48, group = "AilmentDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "ailment" }, }, + ["SynthesisImplicitAilmentDamageJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Damage with Ailments", statOrder = { 4878 }, level = 1, group = "AilmentDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "ailment" }, }, + ["SynthesisImplicitAilmentDamageJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Damage with Ailments", statOrder = { 4878 }, level = 1, group = "AilmentDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "ailment" }, }, + ["SynthesisImplicitAilmentEffect1"] = { type = "Synthesis", affix = "", "6% increased Effect of Non-Damaging Ailments", statOrder = { 9296 }, level = 1, group = "IncreasedAilmentEffectOnEnemies", weightKey = { }, weightVal = { }, modTags = { "ailment" }, }, + ["SynthesisImplicitAilmentEffect2_"] = { type = "Synthesis", affix = "", "7% increased Effect of Non-Damaging Ailments", statOrder = { 9296 }, level = 15, group = "IncreasedAilmentEffectOnEnemies", weightKey = { }, weightVal = { }, modTags = { "ailment" }, }, + ["SynthesisImplicitAilmentEffect3"] = { type = "Synthesis", affix = "", "8% increased Effect of Non-Damaging Ailments", statOrder = { 9296 }, level = 24, group = "IncreasedAilmentEffectOnEnemies", weightKey = { }, weightVal = { }, modTags = { "ailment" }, }, + ["SynthesisImplicitAilmentEffect4"] = { type = "Synthesis", affix = "", "9% increased Effect of Non-Damaging Ailments", statOrder = { 9296 }, level = 36, group = "IncreasedAilmentEffectOnEnemies", weightKey = { }, weightVal = { }, modTags = { "ailment" }, }, + ["SynthesisImplicitAilmentEffect5"] = { type = "Synthesis", affix = "", "10% increased Effect of Non-Damaging Ailments", statOrder = { 9296 }, level = 48, group = "IncreasedAilmentEffectOnEnemies", weightKey = { }, weightVal = { }, modTags = { "ailment" }, }, + ["SynthesisImplicitChanceToIgnite1"] = { type = "Synthesis", affix = "", "6% chance to Ignite", statOrder = { 1935 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, + ["SynthesisImplicitChanceToIgnite2"] = { type = "Synthesis", affix = "", "7% chance to Ignite", statOrder = { 1935 }, level = 15, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, + ["SynthesisImplicitChanceToIgnite3"] = { type = "Synthesis", affix = "", "8% chance to Ignite", statOrder = { 1935 }, level = 24, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, + ["SynthesisImplicitChanceToIgniteTwoHand1_"] = { type = "Synthesis", affix = "", "(9-10)% chance to Ignite", statOrder = { 1935 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, + ["SynthesisImplicitChanceToIgniteTwoHand2"] = { type = "Synthesis", affix = "", "(11-12)% chance to Ignite", statOrder = { 1935 }, level = 15, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, + ["SynthesisImplicitChanceToIgniteTwoHand3_"] = { type = "Synthesis", affix = "", "(13-15)% chance to Ignite", statOrder = { 1935 }, level = 24, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, + ["SynthesisImplicitChanceToIgniteJewel1"] = { type = "Synthesis", affix = "", "(1-2)% chance to Ignite", statOrder = { 1935 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, + ["SynthesisImplicitChanceToIgniteJewel2"] = { type = "Synthesis", affix = "", "3% chance to Ignite", statOrder = { 1935 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, + ["SynthesisImplicitIgniteDuration1"] = { type = "Synthesis", affix = "", "(8-10)% increased Ignite Duration on Enemies", statOrder = { 1770 }, level = 36, group = "BurnDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, + ["SynthesisImplicitIgniteDuration2_"] = { type = "Synthesis", affix = "", "(12-15)% increased Ignite Duration on Enemies", statOrder = { 1770 }, level = 48, group = "BurnDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, + ["SynthesisImplicitFasterIgnite1__"] = { type = "Synthesis", affix = "", "Ignites you inflict deal Damage (7-10)% faster", statOrder = { 2473 }, level = 56, group = "FasterIgniteDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, + ["SynthesisImplicitFasterIgniteWeapon1_"] = { type = "Synthesis", affix = "", "Ignites you inflict deal Damage (15-20)% faster", statOrder = { 2473 }, level = 48, group = "FasterIgniteDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, + ["SynthesisImplicitFasterIgniteWeapon2"] = { type = "Synthesis", affix = "", "Ignites you inflict deal Damage (30-35)% faster", statOrder = { 2473 }, level = 48, group = "FasterIgniteDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, + ["SynthesisImplicitAvoidIgnite1_"] = { type = "Synthesis", affix = "", "(13-14)% chance to Avoid being Ignited", statOrder = { 1757 }, level = 15, group = "AvoidIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, + ["SynthesisImplicitAvoidIgnite2"] = { type = "Synthesis", affix = "", "(15-17)% chance to Avoid being Ignited", statOrder = { 1757 }, level = 24, group = "AvoidIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, + ["SynthesisImplicitAvoidIgnite3"] = { type = "Synthesis", affix = "", "(18-20)% chance to Avoid being Ignited", statOrder = { 1757 }, level = 36, group = "AvoidIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, + ["SynthesisImplicitAvoidIgniteJewel1"] = { type = "Synthesis", affix = "", "(8-10)% chance to Avoid being Ignited", statOrder = { 1757 }, level = 1, group = "AvoidIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, + ["SynthesisImplicitChanceToFreeze1"] = { type = "Synthesis", affix = "", "6% chance to Freeze", statOrder = { 1938 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["SynthesisImplicitChanceToFreeze2"] = { type = "Synthesis", affix = "", "7% chance to Freeze", statOrder = { 1938 }, level = 15, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["SynthesisImplicitChanceToFreeze3"] = { type = "Synthesis", affix = "", "8% chance to Freeze", statOrder = { 1938 }, level = 24, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["SynthesisImplicitChanceToFreezeTwoHand1"] = { type = "Synthesis", affix = "", "(9-10)% chance to Freeze", statOrder = { 1938 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["SynthesisImplicitChanceToFreezeTwoHand2"] = { type = "Synthesis", affix = "", "(11-12)% chance to Freeze", statOrder = { 1938 }, level = 15, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["SynthesisImplicitChanceToFreezeTwoHand3"] = { type = "Synthesis", affix = "", "(13-15)% chance to Freeze", statOrder = { 1938 }, level = 24, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["SynthesisImplicitChanceToFreezeJewel1"] = { type = "Synthesis", affix = "", "(1-2)% chance to Freeze", statOrder = { 1938 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["SynthesisImplicitChanceToFreezeJewel2"] = { type = "Synthesis", affix = "", "3% chance to Freeze", statOrder = { 1938 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["SynthesisImplicitFreezeDuration1"] = { type = "Synthesis", affix = "", "(8-10)% increased Freeze Duration on Enemies", statOrder = { 1769 }, level = 36, group = "ChillAndFreezeDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["SynthesisImplicitFreezeDuration2"] = { type = "Synthesis", affix = "", "(12-15)% increased Freeze Duration on Enemies", statOrder = { 1769 }, level = 48, group = "ChillAndFreezeDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["SynthesisImplicitAvoidChill1"] = { type = "Synthesis", affix = "", "(14-16)% chance to Avoid being Chilled", statOrder = { 1755 }, level = 15, group = "AvoidChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["SynthesisImplicitAvoidChill2_"] = { type = "Synthesis", affix = "", "(18-21)% chance to Avoid being Chilled", statOrder = { 1755 }, level = 24, group = "AvoidChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["SynthesisImplicitAvoidChill3"] = { type = "Synthesis", affix = "", "(22-25)% chance to Avoid being Chilled", statOrder = { 1755 }, level = 36, group = "AvoidChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["SynthesisImplicitAvoidFreeze1_"] = { type = "Synthesis", affix = "", "(13-14)% chance to Avoid being Frozen", statOrder = { 1756 }, level = 15, group = "AvoidFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["SynthesisImplicitAvoidFreeze2"] = { type = "Synthesis", affix = "", "(15-17)% chance to Avoid being Frozen", statOrder = { 1756 }, level = 24, group = "AvoidFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["SynthesisImplicitAvoidFreeze3"] = { type = "Synthesis", affix = "", "(18-20)% chance to Avoid being Frozen", statOrder = { 1756 }, level = 36, group = "AvoidFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["SynthesisImplicitAvoidFreezeJewel1"] = { type = "Synthesis", affix = "", "(8-10)% chance to Avoid being Frozen", statOrder = { 1756 }, level = 1, group = "AvoidFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["SynthesisImplicitChillDurationJewel1_"] = { type = "Synthesis", affix = "", "(2-3)% increased Chill Duration on Enemies", statOrder = { 1767 }, level = 1, group = "ChillAndFreezeDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["SynthesisImplicitChillDurationJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Chill Duration on Enemies", statOrder = { 1767 }, level = 1, group = "ChillAndFreezeDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["SynthesisImplicitChillEffect1"] = { type = "Synthesis", affix = "", "(7-10)% increased Effect of Cold Ailments", statOrder = { 5695 }, level = 36, group = "ChillEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["SynthesisImplicitChillEffect2"] = { type = "Synthesis", affix = "", "(11-15)% increased Effect of Cold Ailments", statOrder = { 5695 }, level = 48, group = "ChillEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["SynthesisImplicitChillEffectJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Effect of Cold Ailments", statOrder = { 5695 }, level = 1, group = "ChillEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["SynthesisImplicitChanceToShock1"] = { type = "Synthesis", affix = "", "6% chance to Shock", statOrder = { 1942 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["SynthesisImplicitChanceToShock2"] = { type = "Synthesis", affix = "", "7% chance to Shock", statOrder = { 1942 }, level = 15, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["SynthesisImplicitChanceToShock3"] = { type = "Synthesis", affix = "", "8% chance to Shock", statOrder = { 1942 }, level = 24, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["SynthesisImplicitChanceToShockTwoHand1"] = { type = "Synthesis", affix = "", "(9-10)% chance to Shock", statOrder = { 1942 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["SynthesisImplicitChanceToShockTwoHand2"] = { type = "Synthesis", affix = "", "(11-12)% chance to Shock", statOrder = { 1942 }, level = 15, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["SynthesisImplicitChanceToShockTwoHand3"] = { type = "Synthesis", affix = "", "(13-15)% chance to Shock", statOrder = { 1942 }, level = 24, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["SynthesisImplicitChanceToShockJewel1"] = { type = "Synthesis", affix = "", "(1-2)% chance to Shock", statOrder = { 1942 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["SynthesisImplicitChanceToShockJewel2"] = { type = "Synthesis", affix = "", "3% chance to Shock", statOrder = { 1942 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["SynthesisImplicitShockDuration1"] = { type = "Synthesis", affix = "", "(8-10)% increased Shock Duration on Enemies", statOrder = { 1768 }, level = 36, group = "ShockDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["SynthesisImplicitShockDuration2_"] = { type = "Synthesis", affix = "", "(12-15)% increased Shock Duration on Enemies", statOrder = { 1768 }, level = 48, group = "ShockDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["SynthesisImplicitShockDurationJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Shock Duration on Enemies", statOrder = { 1768 }, level = 1, group = "ShockDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["SynthesisImplicitShockDurationJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Shock Duration on Enemies", statOrder = { 1768 }, level = 1, group = "ShockDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["SynthesisImplicitAvoidShock1"] = { type = "Synthesis", affix = "", "(13-14)% chance to Avoid being Shocked", statOrder = { 1759 }, level = 15, group = "AvoidShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["SynthesisImplicitAvoidShock2_"] = { type = "Synthesis", affix = "", "(15-17)% chance to Avoid being Shocked", statOrder = { 1759 }, level = 24, group = "AvoidShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["SynthesisImplicitAvoidShock3"] = { type = "Synthesis", affix = "", "(18-20)% chance to Avoid being Shocked", statOrder = { 1759 }, level = 36, group = "AvoidShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["SynthesisImplicitAvoidShockJewel1____"] = { type = "Synthesis", affix = "", "(8-10)% chance to Avoid being Shocked", statOrder = { 1759 }, level = 1, group = "AvoidShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["SynthesisImplicitShockEffect1"] = { type = "Synthesis", affix = "", "(7-10)% increased Effect of Shock", statOrder = { 9792 }, level = 36, group = "ShockEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["SynthesisImplicitShockEffect2"] = { type = "Synthesis", affix = "", "(11-15)% increased Effect of Shock", statOrder = { 9792 }, level = 48, group = "ShockEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["SynthesisImplicitShockEffectJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Effect of Shock", statOrder = { 9792 }, level = 1, group = "ShockEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["SynthesisImplicitBurnDamage1"] = { type = "Synthesis", affix = "", "(10-11)% increased Burning Damage", statOrder = { 1788 }, level = 1, group = "BurnDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["SynthesisImplicitBurnDamage2__"] = { type = "Synthesis", affix = "", "(12-13)% increased Burning Damage", statOrder = { 1788 }, level = 15, group = "BurnDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["SynthesisImplicitBurnDamage3"] = { type = "Synthesis", affix = "", "(14-15)% increased Burning Damage", statOrder = { 1788 }, level = 24, group = "BurnDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["SynthesisImplicitBurnDamageOneHand1"] = { type = "Synthesis", affix = "", "(14-18)% increased Burning Damage", statOrder = { 1788 }, level = 1, group = "BurnDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["SynthesisImplicitBurnDamageOneHand2_"] = { type = "Synthesis", affix = "", "(19-23)% increased Burning Damage", statOrder = { 1788 }, level = 15, group = "BurnDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["SynthesisImplicitBurnDamageOneHand3"] = { type = "Synthesis", affix = "", "(24-28)% increased Burning Damage", statOrder = { 1788 }, level = 24, group = "BurnDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["SynthesisImplicitBurnDamageTwoHand1"] = { type = "Synthesis", affix = "", "(22-27)% increased Burning Damage", statOrder = { 1788 }, level = 1, group = "BurnDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["SynthesisImplicitBurnDamageTwoHand2"] = { type = "Synthesis", affix = "", "(28-35)% increased Burning Damage", statOrder = { 1788 }, level = 15, group = "BurnDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["SynthesisImplicitBurnDamageTwoHand3"] = { type = "Synthesis", affix = "", "(36-44)% increased Burning Damage", statOrder = { 1788 }, level = 24, group = "BurnDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["SynthesisImplicitBurnDamageJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Burning Damage", statOrder = { 1788 }, level = 1, group = "BurnDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["SynthesisImplicitBurnDamageJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Burning Damage", statOrder = { 1788 }, level = 1, group = "BurnDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["SynthesisImplicitPoisonDamage1"] = { type = "Synthesis", affix = "", "(10-11)% increased Damage with Poison", statOrder = { 3089 }, level = 1, group = "PoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["SynthesisImplicitPoisonDamage2"] = { type = "Synthesis", affix = "", "(12-13)% increased Damage with Poison", statOrder = { 3089 }, level = 15, group = "PoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["SynthesisImplicitPoisonDamage3"] = { type = "Synthesis", affix = "", "(14-15)% increased Damage with Poison", statOrder = { 3089 }, level = 24, group = "PoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["SynthesisImplicitWeaponPoisonDamage1"] = { type = "Synthesis", affix = "", "(14-18)% increased Damage with Poison", statOrder = { 3089 }, level = 1, group = "PoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["SynthesisImplicitWeaponPoisonDamage2"] = { type = "Synthesis", affix = "", "(19-23)% increased Damage with Poison", statOrder = { 3089 }, level = 15, group = "PoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["SynthesisImplicitWeaponPoisonDamage3"] = { type = "Synthesis", affix = "", "(24-28)% increased Damage with Poison", statOrder = { 3089 }, level = 24, group = "PoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["SynthesisImplicitPoisonDamageJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Damage with Poison", statOrder = { 3089 }, level = 1, group = "PoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["SynthesisImplicitPoisonDamageJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Damage with Poison", statOrder = { 3089 }, level = 1, group = "PoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["SynthesisImplicitLocalPoisonOnHit1_"] = { type = "Synthesis", affix = "", "(25-30)% chance to Poison on Hit", statOrder = { 7849 }, level = 50, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, }, + ["SynthesisImplicitChanceToPoisonJewel1"] = { type = "Synthesis", affix = "", "(1-2)% chance to Poison on Hit", statOrder = { 3081 }, level = 1, group = "PoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, }, + ["SynthesisImplicitChanceToPoisonJewel2_"] = { type = "Synthesis", affix = "", "3% chance to Poison on Hit", statOrder = { 3081 }, level = 1, group = "PoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, }, + ["SynthesisImplicitPoisonDuration1"] = { type = "Synthesis", affix = "", "(8-12)% increased Poison Duration", statOrder = { 3078 }, level = 55, group = "PoisonDuration", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, }, + ["SynthesisImplicitFasterPoison1"] = { type = "Synthesis", affix = "", "Poisons you inflict deal Damage (7-10)% faster", statOrder = { 6431 }, level = 56, group = "FasterPoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["SynthesisImplicitFasterPoisonWeapon1_"] = { type = "Synthesis", affix = "", "Poisons you inflict deal Damage (15-20)% faster", statOrder = { 6431 }, level = 36, group = "FasterPoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["SynthesisImplicitFasterPoisonWeapon2__"] = { type = "Synthesis", affix = "", "Poisons you inflict deal Damage (30-35)% faster", statOrder = { 6431 }, level = 48, group = "FasterPoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["SynthesisImplicitAvoidPoison1"] = { type = "Synthesis", affix = "", "(14-16)% chance to Avoid being Poisoned", statOrder = { 1760 }, level = 24, group = "ChanceToAvoidPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, }, + ["SynthesisImplicitAvoidPoison2"] = { type = "Synthesis", affix = "", "(18-21)% chance to Avoid being Poisoned", statOrder = { 1760 }, level = 36, group = "ChanceToAvoidPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, }, + ["SynthesisImplicitAvoidPoison3"] = { type = "Synthesis", affix = "", "(22-25)% chance to Avoid being Poisoned", statOrder = { 1760 }, level = 48, group = "ChanceToAvoidPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, }, + ["SynthesisImplicitAvoidPoisonJewel1"] = { type = "Synthesis", affix = "", "(8-10)% chance to Avoid being Poisoned", statOrder = { 1760 }, level = 1, group = "ChanceToAvoidPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, }, + ["SynthesisImplicitBleedDamage1"] = { type = "Synthesis", affix = "", "(10-11)% increased Damage with Bleeding", statOrder = { 3077 }, level = 15, group = "BleedingDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["SynthesisImplicitBleedDamage2"] = { type = "Synthesis", affix = "", "(12-13)% increased Damage with Bleeding", statOrder = { 3077 }, level = 24, group = "BleedingDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["SynthesisImplicitBleedDamage3"] = { type = "Synthesis", affix = "", "(14-15)% increased Damage with Bleeding", statOrder = { 3077 }, level = 36, group = "BleedingDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["SynthesisImplicitWeaponBleedDamage1_"] = { type = "Synthesis", affix = "", "(14-18)% increased Damage with Bleeding", statOrder = { 3077 }, level = 15, group = "BleedingDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["SynthesisImplicitWeaponBleedDamage2_"] = { type = "Synthesis", affix = "", "(19-23)% increased Damage with Bleeding", statOrder = { 3077 }, level = 24, group = "BleedingDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["SynthesisImplicitWeaponBleedDamage3"] = { type = "Synthesis", affix = "", "(24-28)% increased Damage with Bleeding", statOrder = { 3077 }, level = 36, group = "BleedingDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["SynthesisImplicitBleedDamageJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Damage with Bleeding", statOrder = { 3077 }, level = 1, group = "BleedingDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["SynthesisImplicitBleedDamageJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Damage with Bleeding", statOrder = { 3077 }, level = 1, group = "BleedingDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["SynthesisImplicitLocalBleedOnHit1"] = { type = "Synthesis", affix = "", "(15-20)% chance to cause Bleeding on Hit", statOrder = { 2392 }, level = 50, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["SynthesisImplicitChanceToBleedJewel1"] = { type = "Synthesis", affix = "", "Attacks have (1-2)% chance to cause Bleeding", statOrder = { 2398 }, level = 1, group = "ChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["SynthesisImplicitChanceToBleedJewel2__"] = { type = "Synthesis", affix = "", "Attacks have 3% chance to cause Bleeding", statOrder = { 2398 }, level = 1, group = "ChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["SynthesisImplicitFasterBleed1_"] = { type = "Synthesis", affix = "", "Bleeding you inflict deals Damage (7-10)% faster", statOrder = { 6430 }, level = 56, group = "FasterBleedDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["SynthesisImplicitFasterBleedWeapon1"] = { type = "Synthesis", affix = "", "Bleeding you inflict deals Damage (15-20)% faster", statOrder = { 6430 }, level = 36, group = "FasterBleedDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["SynthesisImplicitFasterBleedWeapon2_"] = { type = "Synthesis", affix = "", "Bleeding you inflict deals Damage (30-35)% faster", statOrder = { 6430 }, level = 48, group = "FasterBleedDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["SynthesisImplicitBleedDuration1"] = { type = "Synthesis", affix = "", "(8-12)% increased Bleeding Duration", statOrder = { 4888 }, level = 55, group = "BleedDuration", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["SynthesisImplicitAvoidBleed1"] = { type = "Synthesis", affix = "", "(14-16)% chance to Avoid Bleeding", statOrder = { 4123 }, level = 15, group = "ChanceToAvoidBleeding", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["SynthesisImplicitAvoidBleed2_"] = { type = "Synthesis", affix = "", "(18-21)% chance to Avoid Bleeding", statOrder = { 4123 }, level = 24, group = "ChanceToAvoidBleeding", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["SynthesisImplicitAvoidBleed3"] = { type = "Synthesis", affix = "", "(22-25)% chance to Avoid Bleeding", statOrder = { 4123 }, level = 36, group = "ChanceToAvoidBleeding", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["SynthesisImplicitAvoidBleedJewel1"] = { type = "Synthesis", affix = "", "(8-10)% chance to Avoid Bleeding", statOrder = { 4123 }, level = 1, group = "ChanceToAvoidBleeding", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["SynthesisImplicitAllDamage1_"] = { type = "Synthesis", affix = "", "7% increased Damage", statOrder = { 1103 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitAllDamage2"] = { type = "Synthesis", affix = "", "(8-9)% increased Damage", statOrder = { 1103 }, level = 15, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitAllDamage3"] = { type = "Synthesis", affix = "", "(10-11)% increased Damage", statOrder = { 1103 }, level = 24, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitAllDamage4"] = { type = "Synthesis", affix = "", "(12-13)% increased Damage", statOrder = { 1103 }, level = 36, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitAllDamage5"] = { type = "Synthesis", affix = "", "(14-15)% increased Damage", statOrder = { 1103 }, level = 48, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitWeaponAllDamage1"] = { type = "Synthesis", affix = "", "(15-18)% increased Damage", statOrder = { 1103 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitWeaponAllDamage2"] = { type = "Synthesis", affix = "", "(19-22)% increased Damage", statOrder = { 1103 }, level = 15, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitWeaponAllDamage3_"] = { type = "Synthesis", affix = "", "(23-26)% increased Damage", statOrder = { 1103 }, level = 24, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitWeaponAllDamageTwoHand1_"] = { type = "Synthesis", affix = "", "(21-26)% increased Damage", statOrder = { 1103 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitWeaponAllDamageTwoHand2"] = { type = "Synthesis", affix = "", "(27-32)% increased Damage", statOrder = { 1103 }, level = 15, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitWeaponAllDamageTwoHand3"] = { type = "Synthesis", affix = "", "(33-38)% increased Damage", statOrder = { 1103 }, level = 24, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitAllDamageJewel1"] = { type = "Synthesis", affix = "", "2% increased Damage", statOrder = { 1103 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitAllDamageJewel2"] = { type = "Synthesis", affix = "", "(3-4)% increased Damage", statOrder = { 1103 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitFireDamage1_"] = { type = "Synthesis", affix = "", "8% increased Fire Damage", statOrder = { 1268 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["SynthesisImplicitFireDamage2"] = { type = "Synthesis", affix = "", "(9-10)% increased Fire Damage", statOrder = { 1268 }, level = 15, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["SynthesisImplicitFireDamage3"] = { type = "Synthesis", affix = "", "(11-12)% increased Fire Damage", statOrder = { 1268 }, level = 24, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["SynthesisImplicitFireDamage4"] = { type = "Synthesis", affix = "", "(13-14)% increased Fire Damage", statOrder = { 1268 }, level = 36, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["SynthesisImplicitFireDamage5"] = { type = "Synthesis", affix = "", "(15-16)% increased Fire Damage", statOrder = { 1268 }, level = 48, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["SynthesisImplicitFireDamage6"] = { type = "Synthesis", affix = "", "(17-20)% increased Fire Damage", statOrder = { 1268 }, level = 56, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["SynthesisImplicitFireDamageJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Fire Damage", statOrder = { 1268 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["SynthesisImplicitFireDamageJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Fire Damage", statOrder = { 1268 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["SynthesisImplicitFireDamageAttacksJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Fire Damage with Attack Skills", statOrder = { 6462 }, level = 1, group = "FireDamageAttackSkills", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["SynthesisImplicitFireDamageAttacksJewel2_"] = { type = "Synthesis", affix = "", "(5-6)% increased Fire Damage with Attack Skills", statOrder = { 6462 }, level = 1, group = "FireDamageAttackSkills", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["SynthesisImplicitFireDamageSpellsJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Fire Damage with Spell Skills", statOrder = { 6463 }, level = 1, group = "FireDamageSpellSkills", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SynthesisImplicitFireDamageSpellsJewel2__"] = { type = "Synthesis", affix = "", "(5-6)% increased Fire Damage with Spell Skills", statOrder = { 6463 }, level = 1, group = "FireDamageSpellSkills", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SynthesisImplicitPhysicalConvertedToFireMinor1"] = { type = "Synthesis", affix = "", "(7-10)% of Physical Damage Converted to Fire Damage", statOrder = { 1864 }, level = 50, group = "ConvertPhysicalToFireImplicit", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["SynthesisImplicitPhysicalConvertedToFire1"] = { type = "Synthesis", affix = "", "(15-25)% of Physical Damage Converted to Fire Damage", statOrder = { 1864 }, level = 55, group = "ConvertPhysicalToFireImplicit", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["SynthesisImplicitPhysicalConvertedToFire2"] = { type = "Synthesis", affix = "", "(40-50)% of Physical Damage Converted to Fire Damage", statOrder = { 1864 }, level = 60, group = "ConvertPhysicalToFireImplicit", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["SynthesisImplicitPhysicalConvertedToFireJewel1_"] = { type = "Synthesis", affix = "", "3% of Physical Damage Converted to Fire Damage", statOrder = { 1864 }, level = 1, group = "ConvertPhysicalToFireImplicit", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["SynthesisImplicitPhysicalAddedAsFire1"] = { type = "Synthesis", affix = "", "Gain (3-5)% of Physical Damage as Extra Fire Damage", statOrder = { 1841 }, level = 45, group = "PhysicalAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["SynthesisImplicitPhysicalAddedAsFire2"] = { type = "Synthesis", affix = "", "Gain (6-8)% of Physical Damage as Extra Fire Damage", statOrder = { 1841 }, level = 55, group = "PhysicalAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["SynthesisImplicitFireDamagePerStrength1"] = { type = "Synthesis", affix = "", "1% increased Fire Damage per 20 Strength", statOrder = { 6449 }, level = 55, group = "FireDamagePerStrength", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["SynthesisImplicitFireLeechMinor1__"] = { type = "Synthesis", affix = "", "0.2% of Fire Damage Leeched as Life", statOrder = { 1581 }, level = 45, group = "FireDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "elemental", "fire" }, }, + ["SynthesisImplicitFireLeech1"] = { type = "Synthesis", affix = "", "0.5% of Fire Damage Leeched as Life", statOrder = { 1581 }, level = 55, group = "FireDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "elemental", "fire" }, }, + ["SynthesisImplicitWeaponFireDamage1"] = { type = "Synthesis", affix = "", "(15-17)% increased Fire Damage", statOrder = { 1268 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["SynthesisImplicitWeaponFireDamage2"] = { type = "Synthesis", affix = "", "(18-20)% increased Fire Damage", statOrder = { 1268 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["SynthesisImplicitWeaponFireDamage3"] = { type = "Synthesis", affix = "", "(21-23)% increased Fire Damage", statOrder = { 1268 }, level = 24, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["SynthesisImplicitWeaponFireDamage4"] = { type = "Synthesis", affix = "", "(24-26)% increased Fire Damage", statOrder = { 1268 }, level = 36, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["SynthesisImplicitWeaponFireDamage5"] = { type = "Synthesis", affix = "", "(27-30)% increased Fire Damage", statOrder = { 1268 }, level = 48, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["SynthesisImplicitWeaponFireDamageTwoHand1"] = { type = "Synthesis", affix = "", "(25-28)% increased Fire Damage", statOrder = { 1268 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["SynthesisImplicitWeaponFireDamageTwoHand2_"] = { type = "Synthesis", affix = "", "(29-32)% increased Fire Damage", statOrder = { 1268 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["SynthesisImplicitWeaponFireDamageTwoHand3"] = { type = "Synthesis", affix = "", "(33-36)% increased Fire Damage", statOrder = { 1268 }, level = 24, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["SynthesisImplicitWeaponFireDamageTwoHand4"] = { type = "Synthesis", affix = "", "(37-40)% increased Fire Damage", statOrder = { 1268 }, level = 36, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["SynthesisImplicitWeaponFireDamageTwoHand5"] = { type = "Synthesis", affix = "", "(41-44)% increased Fire Damage", statOrder = { 1268 }, level = 48, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["SynthesisImplicitLocalFireDamage1"] = { type = "Synthesis", affix = "", "Adds (4-8) to (9-15) Fire Damage", statOrder = { 1273 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["SynthesisImplicitLocalFireDamage2"] = { type = "Synthesis", affix = "", "Adds (9-12) to (16-23) Fire Damage", statOrder = { 1273 }, level = 15, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["SynthesisImplicitLocalFireDamage3"] = { type = "Synthesis", affix = "", "Adds (13-18) to (24-31) Fire Damage", statOrder = { 1273 }, level = 24, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["SynthesisImplicitLocalFireDamage4"] = { type = "Synthesis", affix = "", "Adds (19-24) to (32-43) Fire Damage", statOrder = { 1273 }, level = 36, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["SynthesisImplicitLocalFireDamage5"] = { type = "Synthesis", affix = "", "Adds (25-30) to (44-53) Fire Damage", statOrder = { 1273 }, level = 48, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["SynthesisImplicitLocalFireDamageTwoHand1"] = { type = "Synthesis", affix = "", "Adds (8-14) to (15-24) Fire Damage", statOrder = { 1273 }, level = 1, group = "LocalFireDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["SynthesisImplicitLocalFireDamageTwoHand2"] = { type = "Synthesis", affix = "", "Adds (15-22) to (26-41) Fire Damage", statOrder = { 1273 }, level = 15, group = "LocalFireDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["SynthesisImplicitLocalFireDamageTwoHand3"] = { type = "Synthesis", affix = "", "Adds (23-31) to (42-56) Fire Damage", statOrder = { 1273 }, level = 24, group = "LocalFireDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["SynthesisImplicitLocalFireDamageTwoHand4"] = { type = "Synthesis", affix = "", "Adds (32-41) to (57-74) Fire Damage", statOrder = { 1273 }, level = 36, group = "LocalFireDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["SynthesisImplicitLocalFireDamageTwoHand5"] = { type = "Synthesis", affix = "", "Adds (42-52) to (75-93) Fire Damage", statOrder = { 1273 }, level = 48, group = "LocalFireDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["SynthesisImplicitSpellAddedFireDamage1"] = { type = "Synthesis", affix = "", "Adds (3-6) to (7-11) Fire Damage to Spells", statOrder = { 1315 }, level = 1, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SynthesisImplicitSpellAddedFireDamage2"] = { type = "Synthesis", affix = "", "Adds (7-9) to (12-17) Fire Damage to Spells", statOrder = { 1315 }, level = 15, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SynthesisImplicitSpellAddedFireDamage3"] = { type = "Synthesis", affix = "", "Adds (10-13) to (17-22) Fire Damage to Spells", statOrder = { 1315 }, level = 24, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SynthesisImplicitSpellAddedFireDamage4"] = { type = "Synthesis", affix = "", "Adds (14-17) to (23-31) Fire Damage to Spells", statOrder = { 1315 }, level = 36, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SynthesisImplicitSpellAddedFireDamage5"] = { type = "Synthesis", affix = "", "Adds (18-21) to (31-38) Fire Damage to Spells", statOrder = { 1315 }, level = 48, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SynthesisImplicitSpellAddedFireDamageTwoHand1_"] = { type = "Synthesis", affix = "", "Adds (5-9) to (10-15) Fire Damage to Spells", statOrder = { 1315 }, level = 1, group = "SpellAddedFireDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SynthesisImplicitSpellAddedFireDamageTwoHand2"] = { type = "Synthesis", affix = "", "Adds (10-14) to (16-25) Fire Damage to Spells", statOrder = { 1315 }, level = 15, group = "SpellAddedFireDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SynthesisImplicitSpellAddedFireDamageTwoHand3"] = { type = "Synthesis", affix = "", "Adds (14-19) to (26-34) Fire Damage to Spells", statOrder = { 1315 }, level = 24, group = "SpellAddedFireDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SynthesisImplicitSpellAddedFireDamageTwoHand4"] = { type = "Synthesis", affix = "", "Adds (20-25) to (35-45) Fire Damage to Spells", statOrder = { 1315 }, level = 36, group = "SpellAddedFireDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SynthesisImplicitSpellAddedFireDamageTwoHand5__"] = { type = "Synthesis", affix = "", "Adds (26-32) to (46-56) Fire Damage to Spells", statOrder = { 1315 }, level = 48, group = "SpellAddedFireDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SynthesisImplicitGlobalAddedFireDamage1"] = { type = "Synthesis", affix = "", "Adds (13-18) to (28-33) Fire Damage", statOrder = { 1270 }, level = 50, group = "GlobalAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["SynthesisImplicitFireAddedAsChaos1"] = { type = "Synthesis", affix = "", "Gain (4-6)% of Fire Damage as Extra Chaos Damage", statOrder = { 1850 }, level = 55, group = "FireAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, }, + ["SynthesisImplicitFireAddedAsChaos2"] = { type = "Synthesis", affix = "", "Gain (7-10)% of Fire Damage as Extra Chaos Damage", statOrder = { 1850 }, level = 65, group = "FireAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, }, + ["SynthesisImplicitColdDamage1"] = { type = "Synthesis", affix = "", "8% increased Cold Damage", statOrder = { 1277 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["SynthesisImplicitColdDamage2"] = { type = "Synthesis", affix = "", "(9-10)% increased Cold Damage", statOrder = { 1277 }, level = 15, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["SynthesisImplicitColdDamage3"] = { type = "Synthesis", affix = "", "(11-12)% increased Cold Damage", statOrder = { 1277 }, level = 24, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["SynthesisImplicitColdDamage4"] = { type = "Synthesis", affix = "", "(13-14)% increased Cold Damage", statOrder = { 1277 }, level = 36, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["SynthesisImplicitColdDamage5_"] = { type = "Synthesis", affix = "", "(15-16)% increased Cold Damage", statOrder = { 1277 }, level = 48, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["SynthesisImplicitColdDamage6"] = { type = "Synthesis", affix = "", "(17-20)% increased Cold Damage", statOrder = { 1277 }, level = 56, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["SynthesisImplicitColdDamageJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Cold Damage", statOrder = { 1277 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["SynthesisImplicitColdDamageJewel2_"] = { type = "Synthesis", affix = "", "(4-5)% increased Cold Damage", statOrder = { 1277 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["SynthesisImplicitColdDamageAttacksJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Cold Damage with Attack Skills", statOrder = { 5718 }, level = 1, group = "ColdDamageAttackSkills", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["SynthesisImplicitColdDamageAttacksJewel2_"] = { type = "Synthesis", affix = "", "(5-6)% increased Cold Damage with Attack Skills", statOrder = { 5718 }, level = 1, group = "ColdDamageAttackSkills", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["SynthesisImplicitColdDamageSpellsJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Cold Damage with Spell Skills", statOrder = { 5719 }, level = 1, group = "ColdDamageSpellSkills", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SynthesisImplicitColdDamageSpellsJewel2"] = { type = "Synthesis", affix = "", "(5-6)% increased Cold Damage with Spell Skills", statOrder = { 5719 }, level = 1, group = "ColdDamageSpellSkills", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SynthesisImplicitPhysicalConvertedToColdMinor1"] = { type = "Synthesis", affix = "", "(7-10)% of Physical Damage Converted to Cold Damage", statOrder = { 1866 }, level = 50, group = "ConvertPhysicalToColdImplicit", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, + ["SynthesisImplicitPhysicalConvertedToCold1_"] = { type = "Synthesis", affix = "", "(15-25)% of Physical Damage Converted to Cold Damage", statOrder = { 1866 }, level = 55, group = "ConvertPhysicalToColdImplicit", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, + ["SynthesisImplicitPhysicalConvertedToCold2"] = { type = "Synthesis", affix = "", "(40-50)% of Physical Damage Converted to Cold Damage", statOrder = { 1866 }, level = 60, group = "ConvertPhysicalToColdImplicit", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, + ["SynthesisImplicitColdDamagePerFrenzyCharge1"] = { type = "Synthesis", affix = "", "4 to 7 Added Cold Damage per Frenzy Charge", statOrder = { 4180 }, level = 55, group = "AddedColdDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["SynthesisImplicitColdLeechMinor1"] = { type = "Synthesis", affix = "", "0.2% of Cold Damage Leeched as Life", statOrder = { 1586 }, level = 45, group = "ColdDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "elemental", "cold" }, }, + ["SynthesisImplicitColdLeech1"] = { type = "Synthesis", affix = "", "0.5% of Cold Damage Leeched as Life", statOrder = { 1586 }, level = 55, group = "ColdDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "elemental", "cold" }, }, + ["SynthesisImplicitWeaponColdDamage1_"] = { type = "Synthesis", affix = "", "(15-17)% increased Cold Damage", statOrder = { 1277 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["SynthesisImplicitWeaponColdDamage2"] = { type = "Synthesis", affix = "", "(18-20)% increased Cold Damage", statOrder = { 1277 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["SynthesisImplicitWeaponColdDamage3_"] = { type = "Synthesis", affix = "", "(21-23)% increased Cold Damage", statOrder = { 1277 }, level = 24, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["SynthesisImplicitWeaponColdDamage4"] = { type = "Synthesis", affix = "", "(24-26)% increased Cold Damage", statOrder = { 1277 }, level = 36, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["SynthesisImplicitWeaponColdDamage5"] = { type = "Synthesis", affix = "", "(27-30)% increased Cold Damage", statOrder = { 1277 }, level = 48, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["SynthesisImplicitWeaponColdDamageTwoHand1"] = { type = "Synthesis", affix = "", "(25-28)% increased Cold Damage", statOrder = { 1277 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["SynthesisImplicitWeaponColdDamageTwoHand2"] = { type = "Synthesis", affix = "", "(29-32)% increased Cold Damage", statOrder = { 1277 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["SynthesisImplicitWeaponColdDamageTwoHand3"] = { type = "Synthesis", affix = "", "(33-36)% increased Cold Damage", statOrder = { 1277 }, level = 24, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["SynthesisImplicitWeaponColdDamageTwoHand4"] = { type = "Synthesis", affix = "", "(37-40)% increased Cold Damage", statOrder = { 1277 }, level = 36, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["SynthesisImplicitWeaponColdDamageTwoHand5"] = { type = "Synthesis", affix = "", "(41-44)% increased Cold Damage", statOrder = { 1277 }, level = 48, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["SynthesisImplicitLocalColdDamage1"] = { type = "Synthesis", affix = "", "Adds (3-6) to (7-11) Cold Damage", statOrder = { 1282 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["SynthesisImplicitLocalColdDamage2"] = { type = "Synthesis", affix = "", "Adds (7-10) to (12-18) Cold Damage", statOrder = { 1282 }, level = 15, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["SynthesisImplicitLocalColdDamage3"] = { type = "Synthesis", affix = "", "Adds (11-15) to (19-26) Cold Damage", statOrder = { 1282 }, level = 24, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["SynthesisImplicitLocalColdDamage4"] = { type = "Synthesis", affix = "", "Adds (16-20) to (27-35) Cold Damage", statOrder = { 1282 }, level = 36, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["SynthesisImplicitLocalColdDamage5"] = { type = "Synthesis", affix = "", "Adds (21-25) to (36-43) Cold Damage", statOrder = { 1282 }, level = 48, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["SynthesisImplicitLocalColdDamageTwoHand1__"] = { type = "Synthesis", affix = "", "Adds (6-9) to (13-21) Cold Damage", statOrder = { 1282 }, level = 1, group = "LocalColdDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["SynthesisImplicitLocalColdDamageTwoHand2__"] = { type = "Synthesis", affix = "", "Adds (10-17) to (22-32) Cold Damage", statOrder = { 1282 }, level = 15, group = "LocalColdDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["SynthesisImplicitLocalColdDamageTwoHand3_"] = { type = "Synthesis", affix = "", "Adds (19-26) to (34-45) Cold Damage", statOrder = { 1282 }, level = 24, group = "LocalColdDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["SynthesisImplicitLocalColdDamageTwoHand4"] = { type = "Synthesis", affix = "", "Adds (27-35) to (46-61) Cold Damage", statOrder = { 1282 }, level = 36, group = "LocalColdDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["SynthesisImplicitLocalColdDamageTwoHand5_"] = { type = "Synthesis", affix = "", "Adds (36-43) to (51-75) Cold Damage", statOrder = { 1282 }, level = 48, group = "LocalColdDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["SynthesisImplicitSpellAddedColdDamage1_"] = { type = "Synthesis", affix = "", "Adds (3-5) to (5-8) Cold Damage to Spells", statOrder = { 1316 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SynthesisImplicitSpellAddedColdDamage2_"] = { type = "Synthesis", affix = "", "Adds (5-7) to (9-13) Cold Damage to Spells", statOrder = { 1316 }, level = 15, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SynthesisImplicitSpellAddedColdDamage3"] = { type = "Synthesis", affix = "", "Adds (8-11) to (14-19) Cold Damage to Spells", statOrder = { 1316 }, level = 24, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SynthesisImplicitSpellAddedColdDamage4"] = { type = "Synthesis", affix = "", "Adds (12-14) to (19-25) Cold Damage to Spells", statOrder = { 1316 }, level = 36, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SynthesisImplicitSpellAddedColdDamage5"] = { type = "Synthesis", affix = "", "Adds (15-18) to (26-31) Cold Damage to Spells", statOrder = { 1316 }, level = 48, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SynthesisImplicitSpellAddedColdDamageTwoHand1_"] = { type = "Synthesis", affix = "", "Adds (4-6) to (8-13) Cold Damage to Spells", statOrder = { 1316 }, level = 1, group = "SpellAddedColdDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SynthesisImplicitSpellAddedColdDamageTwoHand2_"] = { type = "Synthesis", affix = "", "Adds (7-11) to (14-20) Cold Damage to Spells", statOrder = { 1316 }, level = 15, group = "SpellAddedColdDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SynthesisImplicitSpellAddedColdDamageTwoHand3"] = { type = "Synthesis", affix = "", "Adds (12-16) to (21-28) Cold Damage to Spells", statOrder = { 1316 }, level = 24, group = "SpellAddedColdDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SynthesisImplicitSpellAddedColdDamageTwoHand4"] = { type = "Synthesis", affix = "", "Adds (17-21) to (28-38) Cold Damage to Spells", statOrder = { 1316 }, level = 36, group = "SpellAddedColdDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SynthesisImplicitSpellAddedColdDamageTwoHand5"] = { type = "Synthesis", affix = "", "Adds (22-26) to (31-46) Cold Damage to Spells", statOrder = { 1316 }, level = 48, group = "SpellAddedColdDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SynthesisImplicitGlobalAddedColdDamage1_"] = { type = "Synthesis", affix = "", "Adds (12-16) to (24-28) Cold Damage", statOrder = { 1279 }, level = 50, group = "GlobalAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["SynthesisImplicitColdDamageOverTimeMultiplier1"] = { type = "Synthesis", affix = "", "+(9-10)% to Cold Damage over Time Multiplier", statOrder = { 1168 }, level = 15, group = "ColdDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["SynthesisImplicitColdDamageOverTimeMultiplier2"] = { type = "Synthesis", affix = "", "+(11-12)% to Cold Damage over Time Multiplier", statOrder = { 1168 }, level = 24, group = "ColdDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["SynthesisImplicitColdDamageOverTimeMultiplier3_"] = { type = "Synthesis", affix = "", "+(13-15)% to Cold Damage over Time Multiplier", statOrder = { 1168 }, level = 36, group = "ColdDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["SynthesisImplicitColdDamageOverTimeMultiplierTwoHand1_"] = { type = "Synthesis", affix = "", "+(21-23)% to Cold Damage over Time Multiplier", statOrder = { 1168 }, level = 15, group = "ColdDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["SynthesisImplicitColdDamageOverTimeMultiplierTwoHand2_"] = { type = "Synthesis", affix = "", "+(24-26)% to Cold Damage over Time Multiplier", statOrder = { 1168 }, level = 24, group = "ColdDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["SynthesisImplicitColdDamageOverTimeMultiplierTwoHand3_"] = { type = "Synthesis", affix = "", "+(27-30)% to Cold Damage over Time Multiplier", statOrder = { 1168 }, level = 36, group = "ColdDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["SynthesisImplicitColdAddedAsChaos1"] = { type = "Synthesis", affix = "", "Gain (4-6)% of Cold Damage as Extra Chaos Damage", statOrder = { 1849 }, level = 55, group = "ColdAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "cold", "chaos" }, }, + ["SynthesisImplicitColdAddedAsChaos2"] = { type = "Synthesis", affix = "", "Gain (7-10)% of Cold Damage as Extra Chaos Damage", statOrder = { 1849 }, level = 65, group = "ColdAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "cold", "chaos" }, }, + ["SynthesisImplicitLightningDamage1"] = { type = "Synthesis", affix = "", "8% increased Lightning Damage", statOrder = { 1288 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["SynthesisImplicitLightningDamage2_"] = { type = "Synthesis", affix = "", "(9-10)% increased Lightning Damage", statOrder = { 1288 }, level = 15, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["SynthesisImplicitLightningDamage3"] = { type = "Synthesis", affix = "", "(11-12)% increased Lightning Damage", statOrder = { 1288 }, level = 24, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["SynthesisImplicitLightningDamage4"] = { type = "Synthesis", affix = "", "(13-14)% increased Lightning Damage", statOrder = { 1288 }, level = 36, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["SynthesisImplicitLightningDamage5"] = { type = "Synthesis", affix = "", "(15-16)% increased Lightning Damage", statOrder = { 1288 }, level = 48, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["SynthesisImplicitLightningDamage6"] = { type = "Synthesis", affix = "", "(17-20)% increased Lightning Damage", statOrder = { 1288 }, level = 56, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["SynthesisImplicitLightningDamageJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Lightning Damage", statOrder = { 1288 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["SynthesisImplicitLightningDamageJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Lightning Damage", statOrder = { 1288 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["SynthesisImplicitLightningDamageAttacksJewel1_"] = { type = "Synthesis", affix = "", "(3-4)% increased Lightning Damage with Attack Skills", statOrder = { 7313 }, level = 1, group = "LightningDamageAttackSkills", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["SynthesisImplicitLightningDamageAttacksJewel2"] = { type = "Synthesis", affix = "", "(5-6)% increased Lightning Damage with Attack Skills", statOrder = { 7313 }, level = 1, group = "LightningDamageAttackSkills", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["SynthesisImplicitLightningDamageSpellsJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Lightning Damage with Spell Skills", statOrder = { 7314 }, level = 1, group = "LightningDamageSpellSkills", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SynthesisImplicitLightningDamageSpellsJewel2"] = { type = "Synthesis", affix = "", "(5-6)% increased Lightning Damage with Spell Skills", statOrder = { 7314 }, level = 1, group = "LightningDamageSpellSkills", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SynthesisImplicitPhysicalConvertedToLightningMinor1"] = { type = "Synthesis", affix = "", "(7-10)% of Physical Damage Converted to Lightning Damage", statOrder = { 1868 }, level = 50, group = "ConvertPhysicalToLightningImplicit", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, + ["SynthesisImplicitPhysicalConvertedToLightning1"] = { type = "Synthesis", affix = "", "(15-25)% of Physical Damage Converted to Lightning Damage", statOrder = { 1868 }, level = 55, group = "ConvertPhysicalToLightningImplicit", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, + ["SynthesisImplicitPhysicalConvertedToLightning2"] = { type = "Synthesis", affix = "", "(40-50)% of Physical Damage Converted to Lightning Damage", statOrder = { 1868 }, level = 60, group = "ConvertPhysicalToLightningImplicit", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, + ["SynthesisImplicitPhysicalAddedAsLightning1___"] = { type = "Synthesis", affix = "", "Gain (3-5)% of Physical Damage as Extra Lightning Damage", statOrder = { 1843 }, level = 55, group = "PhysicalAddedAsLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, + ["SynthesisImplicitLightningLeechMinor1"] = { type = "Synthesis", affix = "", "0.2% of Lightning Damage Leeched as Life", statOrder = { 1590 }, level = 45, group = "LightningDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "elemental", "lightning" }, }, + ["SynthesisImplicitLightningLeech1"] = { type = "Synthesis", affix = "", "0.5% of Lightning Damage Leeched as Life", statOrder = { 1590 }, level = 55, group = "LightningDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "elemental", "lightning" }, }, + ["SynthesisImplicitWeaponLightningDamage1_"] = { type = "Synthesis", affix = "", "(15-17)% increased Lightning Damage", statOrder = { 1288 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["SynthesisImplicitWeaponLightningDamage2"] = { type = "Synthesis", affix = "", "(18-20)% increased Lightning Damage", statOrder = { 1288 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["SynthesisImplicitWeaponLightningDamage3_"] = { type = "Synthesis", affix = "", "(21-23)% increased Lightning Damage", statOrder = { 1288 }, level = 24, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["SynthesisImplicitWeaponLightningDamage4_"] = { type = "Synthesis", affix = "", "(24-26)% increased Lightning Damage", statOrder = { 1288 }, level = 36, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["SynthesisImplicitWeaponLightningDamage5_"] = { type = "Synthesis", affix = "", "(27-30)% increased Lightning Damage", statOrder = { 1288 }, level = 48, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["SynthesisImplicitWeaponLightningDamageTwoHand1"] = { type = "Synthesis", affix = "", "(25-28)% increased Lightning Damage", statOrder = { 1288 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["SynthesisImplicitWeaponLightningDamageTwoHand2"] = { type = "Synthesis", affix = "", "(29-32)% increased Lightning Damage", statOrder = { 1288 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["SynthesisImplicitWeaponLightningDamageTwoHand3"] = { type = "Synthesis", affix = "", "(33-36)% increased Lightning Damage", statOrder = { 1288 }, level = 24, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["SynthesisImplicitWeaponLightningDamageTwoHand4"] = { type = "Synthesis", affix = "", "(37-40)% increased Lightning Damage", statOrder = { 1288 }, level = 36, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["SynthesisImplicitWeaponLightningDamageTwoHand5_"] = { type = "Synthesis", affix = "", "(41-44)% increased Lightning Damage", statOrder = { 1288 }, level = 48, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["SynthesisImplicitLocalLightningDamage1"] = { type = "Synthesis", affix = "", "Adds 1 to (16-25) Lightning Damage", statOrder = { 1293 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["SynthesisImplicitLocalLightningDamage2"] = { type = "Synthesis", affix = "", "Adds (1-2) to (26-40) Lightning Damage", statOrder = { 1293 }, level = 15, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["SynthesisImplicitLocalLightningDamage3_"] = { type = "Synthesis", affix = "", "Adds (1-3) to (41-55) Lightning Damage", statOrder = { 1293 }, level = 24, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["SynthesisImplicitLocalLightningDamage4"] = { type = "Synthesis", affix = "", "Adds (2-5) to (56-70) Lightning Damage", statOrder = { 1293 }, level = 36, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["SynthesisImplicitLocalLightningDamage5"] = { type = "Synthesis", affix = "", "Adds (2-6) to (71-83) Lightning Damage", statOrder = { 1293 }, level = 48, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["SynthesisImplicitLocalLightningDamageTwoHand1"] = { type = "Synthesis", affix = "", "Adds 1 to (29-46) Lightning Damage", statOrder = { 1293 }, level = 1, group = "LocalLightningDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["SynthesisImplicitLocalLightningDamageTwoHand2"] = { type = "Synthesis", affix = "", "Adds (1-3) to (48-75) Lightning Damage", statOrder = { 1293 }, level = 15, group = "LocalLightningDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["SynthesisImplicitLocalLightningDamageTwoHand3"] = { type = "Synthesis", affix = "", "Adds (2-6) to (77-95) Lightning Damage", statOrder = { 1293 }, level = 24, group = "LocalLightningDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["SynthesisImplicitLocalLightningDamageTwoHand4"] = { type = "Synthesis", affix = "", "Adds (2-8) to (96-123) Lightning Damage", statOrder = { 1293 }, level = 36, group = "LocalLightningDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["SynthesisImplicitLocalLightningDamageTwoHand5"] = { type = "Synthesis", affix = "", "Adds (3-10) to (124-145) Lightning Damage", statOrder = { 1293 }, level = 48, group = "LocalLightningDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["SynthesisImplicitSpellAddedLightningDamage1"] = { type = "Synthesis", affix = "", "Adds 1 to (12-18) Lightning Damage to Spells", statOrder = { 1317 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SynthesisImplicitSpellAddedLightningDamage2"] = { type = "Synthesis", affix = "", "Adds (1-2) to (19-28) Lightning Damage to Spells", statOrder = { 1317 }, level = 15, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SynthesisImplicitSpellAddedLightningDamage3"] = { type = "Synthesis", affix = "", "Adds (1-3) to (29-39) Lightning Damage to Spells", statOrder = { 1317 }, level = 24, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SynthesisImplicitSpellAddedLightningDamage4"] = { type = "Synthesis", affix = "", "Adds (2-4) to (40-49) Lightning Damage to Spells", statOrder = { 1317 }, level = 36, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SynthesisImplicitSpellAddedLightningDamage5"] = { type = "Synthesis", affix = "", "Adds (2-5) to (50-59) Lightning Damage to Spells", statOrder = { 1317 }, level = 48, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SynthesisImplicitSpellAddedLightningDamageTwoHand1"] = { type = "Synthesis", affix = "", "Adds 1 to (18-28) Lightning Damage to Spells", statOrder = { 1317 }, level = 1, group = "SpellAddedLightningDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SynthesisImplicitSpellAddedLightningDamageTwoHand2_"] = { type = "Synthesis", affix = "", "Adds (1-3) to (29-46) Lightning Damage to Spells", statOrder = { 1317 }, level = 15, group = "SpellAddedLightningDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SynthesisImplicitSpellAddedLightningDamageTwoHand3"] = { type = "Synthesis", affix = "", "Adds (2-4) to (47-58) Lightning Damage to Spells", statOrder = { 1317 }, level = 24, group = "SpellAddedLightningDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SynthesisImplicitSpellAddedLightningDamageTwoHand4"] = { type = "Synthesis", affix = "", "Adds (2-5) to (59-75) Lightning Damage to Spells", statOrder = { 1317 }, level = 36, group = "SpellAddedLightningDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SynthesisImplicitSpellAddedLightningDamageTwoHand5"] = { type = "Synthesis", affix = "", "Adds (3-7) to (75-88) Lightning Damage to Spells", statOrder = { 1317 }, level = 48, group = "SpellAddedLightningDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SynthesisImplicitGlobalAddedLightningDamage1"] = { type = "Synthesis", affix = "", "Adds (1-5) to (50-52) Lightning Damage", statOrder = { 1290 }, level = 50, group = "GlobalAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["SynthesisImplicitLightningAddedAsChaos1"] = { type = "Synthesis", affix = "", "Gain (4-6)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1847 }, level = 55, group = "LightningAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, }, + ["SynthesisImplicitLightningAddedAsChaos2"] = { type = "Synthesis", affix = "", "Gain (7-10)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1847 }, level = 65, group = "LightningAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, }, + ["SynthesisImplicitPhysicalDamage1_"] = { type = "Synthesis", affix = "", "8% increased Global Physical Damage", statOrder = { 1143 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["SynthesisImplicitPhysicalDamage2_"] = { type = "Synthesis", affix = "", "(9-10)% increased Global Physical Damage", statOrder = { 1143 }, level = 15, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["SynthesisImplicitPhysicalDamage3_"] = { type = "Synthesis", affix = "", "(11-12)% increased Global Physical Damage", statOrder = { 1143 }, level = 24, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["SynthesisImplicitPhysicalDamage4"] = { type = "Synthesis", affix = "", "(13-14)% increased Global Physical Damage", statOrder = { 1143 }, level = 36, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["SynthesisImplicitPhysicalDamage5"] = { type = "Synthesis", affix = "", "(15-16)% increased Global Physical Damage", statOrder = { 1143 }, level = 48, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["SynthesisImplicitPhysicalDamage6"] = { type = "Synthesis", affix = "", "(17-20)% increased Global Physical Damage", statOrder = { 1143 }, level = 56, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["SynthesisImplicitPhysicalDamageJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Global Physical Damage", statOrder = { 1143 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["SynthesisImplicitPhysicalDamageJewel2__"] = { type = "Synthesis", affix = "", "(4-5)% increased Global Physical Damage", statOrder = { 1143 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["SynthesisImplicitPhysicalDamageAttacksJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Physical Damage with Attack Skills", statOrder = { 9452 }, level = 1, group = "PhysicalDamageAttackSkills", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["SynthesisImplicitPhysicalDamageAttacksJewel2"] = { type = "Synthesis", affix = "", "(5-6)% increased Physical Damage with Attack Skills", statOrder = { 9452 }, level = 1, group = "PhysicalDamageAttackSkills", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["SynthesisImplicitPhysicalDamageSpellsJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Physical Damage with Spell Skills", statOrder = { 9453 }, level = 1, group = "PhysicalDamageSpellSkills", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["SynthesisImplicitPhysicalDamageSpellsJewel2"] = { type = "Synthesis", affix = "", "(5-6)% increased Physical Damage with Spell Skills", statOrder = { 9453 }, level = 1, group = "PhysicalDamageSpellSkills", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["SynthesisImplicitAttackChanceToImpale1"] = { type = "Synthesis", affix = "", "(6-10)% chance to Impale Enemies on Hit with Attacks", statOrder = { 4815 }, level = 1, group = "AttackImpaleChance", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, }, + ["SynthesisImplicitPhysicalLeechMinor1"] = { type = "Synthesis", affix = "", "0.2% of Physical Damage Leeched as Life", statOrder = { 1577 }, level = 45, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical" }, }, + ["SynthesisImplicitPhysicalLeech1"] = { type = "Synthesis", affix = "", "0.5% of Physical Damage Leeched as Life", statOrder = { 1577 }, level = 55, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical" }, }, + ["SynthesisImplicitWeaponPhysicalDamage1"] = { type = "Synthesis", affix = "", "(19-22)% increased Global Physical Damage", statOrder = { 1143 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["SynthesisImplicitWeaponPhysicalDamage2"] = { type = "Synthesis", affix = "", "(23-26)% increased Global Physical Damage", statOrder = { 1143 }, level = 15, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["SynthesisImplicitWeaponPhysicalDamage3"] = { type = "Synthesis", affix = "", "(27-30)% increased Global Physical Damage", statOrder = { 1143 }, level = 24, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["SynthesisImplicitWeaponPhysicalDamageTwoHand1"] = { type = "Synthesis", affix = "", "(27-32)% increased Global Physical Damage", statOrder = { 1143 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["SynthesisImplicitWeaponPhysicalDamageTwoHand2_"] = { type = "Synthesis", affix = "", "(33-38)% increased Global Physical Damage", statOrder = { 1143 }, level = 15, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["SynthesisImplicitWeaponPhysicalDamageTwoHand3"] = { type = "Synthesis", affix = "", "(39-44)% increased Global Physical Damage", statOrder = { 1143 }, level = 24, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["SynthesisImplicitLocalPhysicalDamage1"] = { type = "Synthesis", affix = "", "(13-14)% increased Physical Damage", statOrder = { 1144 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["SynthesisImplicitLocalPhysicalDamage2"] = { type = "Synthesis", affix = "", "(15-16)% increased Physical Damage", statOrder = { 1144 }, level = 15, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["SynthesisImplicitLocalPhysicalDamage3"] = { type = "Synthesis", affix = "", "(17-19)% increased Physical Damage", statOrder = { 1144 }, level = 24, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["SynthesisImplicitLocalPhysicalDamage4"] = { type = "Synthesis", affix = "", "(20-22)% increased Physical Damage", statOrder = { 1144 }, level = 36, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["SynthesisImplicitLocalPhysicalDamage5"] = { type = "Synthesis", affix = "", "(23-25)% increased Physical Damage", statOrder = { 1144 }, level = 48, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["SynthesisImplicitLocalAddedPhysicalDamage1"] = { type = "Synthesis", affix = "", "Adds 1 to 2 Physical Damage", statOrder = { 1187 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["SynthesisImplicitLocalAddedPhysicalDamage2"] = { type = "Synthesis", affix = "", "Adds (2-3) to (3-4) Physical Damage", statOrder = { 1187 }, level = 15, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["SynthesisImplicitLocalAddedPhysicalDamage3"] = { type = "Synthesis", affix = "", "Adds (3-4) to (5-6) Physical Damage", statOrder = { 1187 }, level = 24, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["SynthesisImplicitLocalAddedPhysicalDamage4"] = { type = "Synthesis", affix = "", "Adds (5-6) to (7-8) Physical Damage", statOrder = { 1187 }, level = 36, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["SynthesisImplicitLocalAddedPhysicalDamage5"] = { type = "Synthesis", affix = "", "Adds (6-7) to (9-10) Physical Damage", statOrder = { 1187 }, level = 48, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["SynthesisImplicitLocalAddedPhysicalDamageTwoHand1_"] = { type = "Synthesis", affix = "", "Adds 1 to (2-3) Physical Damage", statOrder = { 1187 }, level = 1, group = "LocalPhysicalDamageTwoHanded", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["SynthesisImplicitLocalAddedPhysicalDamageTwoHand2"] = { type = "Synthesis", affix = "", "Adds (2-3) to (4-5) Physical Damage", statOrder = { 1187 }, level = 15, group = "LocalPhysicalDamageTwoHanded", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["SynthesisImplicitLocalAddedPhysicalDamageTwoHand3"] = { type = "Synthesis", affix = "", "Adds (4-5) to (6-7) Physical Damage", statOrder = { 1187 }, level = 24, group = "LocalPhysicalDamageTwoHanded", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["SynthesisImplicitLocalAddedPhysicalDamageTwoHand4_"] = { type = "Synthesis", affix = "", "Adds (6-7) to (8-10) Physical Damage", statOrder = { 1187 }, level = 36, group = "LocalPhysicalDamageTwoHanded", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["SynthesisImplicitLocalAddedPhysicalDamageTwoHand5"] = { type = "Synthesis", affix = "", "Adds (8-9) to (11-13) Physical Damage", statOrder = { 1187 }, level = 48, group = "LocalPhysicalDamageTwoHanded", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["SynthesisImplicitPhysicalAddedAsChaos1"] = { type = "Synthesis", affix = "", "Gain (4-6)% of Physical Damage as Extra Chaos Damage", statOrder = { 1844 }, level = 55, group = "PhysicalAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, + ["SynthesisImplicitPhysicalAddedAsChaos2"] = { type = "Synthesis", affix = "", "Gain (7-10)% of Physical Damage as Extra Chaos Damage", statOrder = { 1844 }, level = 65, group = "PhysicalAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, + ["SynthesisImplicitChaosDamage1"] = { type = "Synthesis", affix = "", "8% increased Chaos Damage", statOrder = { 1296 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["SynthesisImplicitChaosDamage2_"] = { type = "Synthesis", affix = "", "(9-10)% increased Chaos Damage", statOrder = { 1296 }, level = 15, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["SynthesisImplicitChaosDamage3"] = { type = "Synthesis", affix = "", "(11-12)% increased Chaos Damage", statOrder = { 1296 }, level = 24, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["SynthesisImplicitChaosDamage4"] = { type = "Synthesis", affix = "", "(13-14)% increased Chaos Damage", statOrder = { 1296 }, level = 36, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["SynthesisImplicitChaosDamage5"] = { type = "Synthesis", affix = "", "(15-16)% increased Chaos Damage", statOrder = { 1296 }, level = 48, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["SynthesisImplicitChaosDamage6_"] = { type = "Synthesis", affix = "", "(17-20)% increased Chaos Damage", statOrder = { 1296 }, level = 56, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["SynthesisImplicitChaosDamageJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Chaos Damage", statOrder = { 1296 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["SynthesisImplicitChaosDamageJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Chaos Damage", statOrder = { 1296 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["SynthesisImplicitChaosDamageAttacksJewel1___"] = { type = "Synthesis", affix = "", "(3-4)% increased Chaos Damage with Attack Skills", statOrder = { 5646 }, level = 1, group = "ChaosDamageAttackSkills", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["SynthesisImplicitChaosDamageAttacksJewel2"] = { type = "Synthesis", affix = "", "(5-6)% increased Chaos Damage with Attack Skills", statOrder = { 5646 }, level = 1, group = "ChaosDamageAttackSkills", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["SynthesisImplicitChaosDamageSpellsJewel1_"] = { type = "Synthesis", affix = "", "(3-4)% increased Chaos Damage with Spell Skills", statOrder = { 5647 }, level = 1, group = "ChaosDamageSpellSkills", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["SynthesisImplicitChaosDamageSpellsJewel2"] = { type = "Synthesis", affix = "", "(5-6)% increased Chaos Damage with Spell Skills", statOrder = { 5647 }, level = 1, group = "ChaosDamageSpellSkills", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["SynthesisImplicitPhysicalConvertedToChaos1"] = { type = "Synthesis", affix = "", "(15-25)% of Physical Damage Converted to Chaos Damage", statOrder = { 1871 }, level = 55, group = "PhysicalDamageConvertToChaosImplicit", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, + ["SynthesisImplicitPhysicalConvertedToChaos2_"] = { type = "Synthesis", affix = "", "(40-50)% of Physical Damage Converted to Chaos Damage", statOrder = { 1871 }, level = 60, group = "PhysicalDamageConvertToChaosImplicit", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, + ["SynthesisImplicitChaosLeechMinor1"] = { type = "Synthesis", affix = "", "0.2% of Chaos Damage Leeched as Life", statOrder = { 1593 }, level = 45, group = "ChaosDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "chaos" }, }, + ["SynthesisImplicitChaosLeech1"] = { type = "Synthesis", affix = "", "0.5% of Chaos Damage Leeched as Life", statOrder = { 1593 }, level = 55, group = "ChaosDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "chaos" }, }, + ["SynthesisImplicitWeaponChaosDamage1"] = { type = "Synthesis", affix = "", "(15-17)% increased Chaos Damage", statOrder = { 1296 }, level = 15, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["SynthesisImplicitWeaponChaosDamage2"] = { type = "Synthesis", affix = "", "(18-20)% increased Chaos Damage", statOrder = { 1296 }, level = 24, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["SynthesisImplicitWeaponChaosDamage3"] = { type = "Synthesis", affix = "", "(21-23)% increased Chaos Damage", statOrder = { 1296 }, level = 36, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["SynthesisImplicitWeaponChaosDamage4"] = { type = "Synthesis", affix = "", "(24-26)% increased Chaos Damage", statOrder = { 1296 }, level = 48, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["SynthesisImplicitWeaponChaosDamageTwoHand1"] = { type = "Synthesis", affix = "", "(25-28)% increased Chaos Damage", statOrder = { 1296 }, level = 15, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["SynthesisImplicitWeaponChaosDamageTwoHand2___"] = { type = "Synthesis", affix = "", "(29-32)% increased Chaos Damage", statOrder = { 1296 }, level = 24, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["SynthesisImplicitWeaponChaosDamageTwoHand3_"] = { type = "Synthesis", affix = "", "(33-36)% increased Chaos Damage", statOrder = { 1296 }, level = 36, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["SynthesisImplicitWeaponChaosDamageTwoHand4"] = { type = "Synthesis", affix = "", "(37-40)% increased Chaos Damage", statOrder = { 1296 }, level = 48, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["SynthesisImplicitLocalChaosDamage1"] = { type = "Synthesis", affix = "", "Adds (4-9) to (11-21) Chaos Damage", statOrder = { 1301 }, level = 15, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["SynthesisImplicitLocalChaosDamage2_"] = { type = "Synthesis", affix = "", "Adds (10-18) to (22-34) Chaos Damage", statOrder = { 1301 }, level = 24, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["SynthesisImplicitLocalChaosDamage3"] = { type = "Synthesis", affix = "", "Adds (19-28) to (35-49) Chaos Damage", statOrder = { 1301 }, level = 36, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["SynthesisImplicitLocalChaosDamageTwoHand1"] = { type = "Synthesis", affix = "", "Adds (8-14) to (17-30) Chaos Damage", statOrder = { 1301 }, level = 15, group = "LocalChaosDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["SynthesisImplicitLocalChaosDamageTwoHand2"] = { type = "Synthesis", affix = "", "Adds (15-24) to (31-57) Chaos Damage", statOrder = { 1301 }, level = 24, group = "LocalChaosDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["SynthesisImplicitLocalChaosDamageTwoHand3"] = { type = "Synthesis", affix = "", "Adds (26-50) to (58-86) Chaos Damage", statOrder = { 1301 }, level = 36, group = "LocalChaosDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["SynthesisImplicitGlobalAddedChaosDamage1_"] = { type = "Synthesis", affix = "", "Adds (11-13) to (19-23) Chaos Damage", statOrder = { 1297 }, level = 50, group = "GlobalAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["SynthesisImplicitChaosDamageOverTimeMultiplier1_"] = { type = "Synthesis", affix = "", "+(9-10)% to Chaos Damage over Time Multiplier", statOrder = { 1171 }, level = 15, group = "ChaosDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["SynthesisImplicitChaosDamageOverTimeMultiplier2"] = { type = "Synthesis", affix = "", "+(11-12)% to Chaos Damage over Time Multiplier", statOrder = { 1171 }, level = 24, group = "ChaosDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["SynthesisImplicitChaosDamageOverTimeMultiplier3_"] = { type = "Synthesis", affix = "", "+(13-15)% to Chaos Damage over Time Multiplier", statOrder = { 1171 }, level = 36, group = "ChaosDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["SynthesisImplicitChaosDamageOverTimeMultiplierTwoHand1"] = { type = "Synthesis", affix = "", "+(21-23)% to Chaos Damage over Time Multiplier", statOrder = { 1171 }, level = 15, group = "ChaosDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["SynthesisImplicitChaosDamageOverTimeMultiplierTwoHand2"] = { type = "Synthesis", affix = "", "+(24-26)% to Chaos Damage over Time Multiplier", statOrder = { 1171 }, level = 24, group = "ChaosDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["SynthesisImplicitChaosDamageOverTimeMultiplierTwoHand3"] = { type = "Synthesis", affix = "", "+(27-30)% to Chaos Damage over Time Multiplier", statOrder = { 1171 }, level = 36, group = "ChaosDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["SynthesisImplicitDegenerationDamage1_"] = { type = "Synthesis", affix = "", "(9-10)% increased Damage over Time", statOrder = { 1122 }, level = 1, group = "DegenerationDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitDegenerationDamage2"] = { type = "Synthesis", affix = "", "(11-12)% increased Damage over Time", statOrder = { 1122 }, level = 15, group = "DegenerationDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitDegenerationDamage3"] = { type = "Synthesis", affix = "", "(13-15)% increased Damage over Time", statOrder = { 1122 }, level = 24, group = "DegenerationDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitDegenerationDamageJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Damage over Time", statOrder = { 1122 }, level = 1, group = "DegenerationDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitDegenerationDamageJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Damage over Time", statOrder = { 1122 }, level = 1, group = "DegenerationDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitWeaponElementalDamage1_"] = { type = "Synthesis", affix = "", "(12-13)% increased Elemental Damage with Attack Skills", statOrder = { 6215 }, level = 15, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["SynthesisImplicitWeaponElementalDamage2"] = { type = "Synthesis", affix = "", "(14-15)% increased Elemental Damage with Attack Skills", statOrder = { 6215 }, level = 24, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["SynthesisImplicitWeaponElementalDamage3"] = { type = "Synthesis", affix = "", "(16-18)% increased Elemental Damage with Attack Skills", statOrder = { 6215 }, level = 36, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["SynthesisImplicitWeaponElementalDamage4"] = { type = "Synthesis", affix = "", "(19-21)% increased Elemental Damage with Attack Skills", statOrder = { 6215 }, level = 48, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["SynthesisImplicitWeaponElementalDamage5"] = { type = "Synthesis", affix = "", "(22-24)% increased Elemental Damage with Attack Skills", statOrder = { 6215 }, level = 56, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["SynthesisImplicitPhysicalDamageAddedAsRandomElement1"] = { type = "Synthesis", affix = "", "Gain (8-10)% of Physical Damage as Extra Damage of a random Element", statOrder = { 2845 }, level = 65, group = "PhysicalDamageAddedAsRandomElement", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental" }, }, + ["SynthesisImplicitLocalElementalPen1_"] = { type = "Synthesis", affix = "", "Attacks with this Weapon Penetrate 2% Elemental Resistances", statOrder = { 3669 }, level = 1, group = "LocalAttackReduceEnemyElementalResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["SynthesisImplicitLocalElementalPen2"] = { type = "Synthesis", affix = "", "Attacks with this Weapon Penetrate 3% Elemental Resistances", statOrder = { 3669 }, level = 15, group = "LocalAttackReduceEnemyElementalResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["SynthesisImplicitLocalElementalPen3"] = { type = "Synthesis", affix = "", "Attacks with this Weapon Penetrate (4-5)% Elemental Resistances", statOrder = { 3669 }, level = 24, group = "LocalAttackReduceEnemyElementalResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["SynthesisImplicitElementalDamage1"] = { type = "Synthesis", affix = "", "8% increased Elemental Damage", statOrder = { 1889 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["SynthesisImplicitElementalDamage2"] = { type = "Synthesis", affix = "", "(9-10)% increased Elemental Damage", statOrder = { 1889 }, level = 15, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["SynthesisImplicitElementalDamage3"] = { type = "Synthesis", affix = "", "(11-12)% increased Elemental Damage", statOrder = { 1889 }, level = 24, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["SynthesisImplicitElementalDamage4"] = { type = "Synthesis", affix = "", "(13-14)% increased Elemental Damage", statOrder = { 1889 }, level = 36, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["SynthesisImplicitElementalDamage5"] = { type = "Synthesis", affix = "", "(15-16)% increased Elemental Damage", statOrder = { 1889 }, level = 48, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["SynthesisImplicitElementalDamageHigh1__"] = { type = "Synthesis", affix = "", "(17-19)% increased Elemental Damage", statOrder = { 1889 }, level = 15, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["SynthesisImplicitElementalDamageHigh2"] = { type = "Synthesis", affix = "", "(20-22)% increased Elemental Damage", statOrder = { 1889 }, level = 24, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["SynthesisImplicitElementalDamageHigh3__"] = { type = "Synthesis", affix = "", "(23-26)% increased Elemental Damage", statOrder = { 1889 }, level = 36, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["SynthesisImplicitElementalDamageHighTwoHand1"] = { type = "Synthesis", affix = "", "(21-26)% increased Elemental Damage", statOrder = { 1889 }, level = 15, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["SynthesisImplicitElementalDamageHighTwoHand2_"] = { type = "Synthesis", affix = "", "(27-32)% increased Elemental Damage", statOrder = { 1889 }, level = 24, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["SynthesisImplicitElementalDamageHighTwoHand3"] = { type = "Synthesis", affix = "", "(33-38)% increased Elemental Damage", statOrder = { 1889 }, level = 36, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["SynthesisImplicitElementalDamageJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Elemental Damage", statOrder = { 1889 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["SynthesisImplicitElementalDamageJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Elemental Damage", statOrder = { 1889 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["SynthesisImplicitElementalLeechMinor1"] = { type = "Synthesis", affix = "", "0.2% of Elemental Damage Leeched as Life", statOrder = { 1597 }, level = 45, group = "ElementalDamageLeechedAsLifePermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["SynthesisImplicitFirePenetration1"] = { type = "Synthesis", affix = "", "Damage Penetrates (3-5)% Fire Resistance", statOrder = { 2890 }, level = 60, group = "FireResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["SynthesisImplicitColdPenetration1"] = { type = "Synthesis", affix = "", "Damage Penetrates (3-5)% Cold Resistance", statOrder = { 2892 }, level = 60, group = "ColdResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["SynthesisImplicitLightningPenetration1"] = { type = "Synthesis", affix = "", "Damage Penetrates (3-5)% Lightning Resistance", statOrder = { 2893 }, level = 60, group = "LightningResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["SynthesisImplicitFirePenetrationWeapon1"] = { type = "Synthesis", affix = "", "Damage with Weapons Penetrates (4-6)% Fire Resistance", statOrder = { 3498 }, level = 60, group = "FirePenetrationWeapon", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["SynthesisImplicitColdPenetrationWeapon1_"] = { type = "Synthesis", affix = "", "Damage with Weapons Penetrates (4-6)% Cold Resistance", statOrder = { 3497 }, level = 60, group = "ColdPenetrationWeapon", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["SynthesisImplicitLightningPenetrationWeapon1__"] = { type = "Synthesis", affix = "", "Damage with Weapons Penetrates (4-6)% Lightning Resistance", statOrder = { 3499 }, level = 60, group = "LightningPenetrationWeapon", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["SynthesisImplicitElementalPenetration1"] = { type = "Synthesis", affix = "", "Damage Penetrates (3-5)% Elemental Resistances", statOrder = { 2889 }, level = 60, group = "ElementalPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["SynthesisImplicitMeleeDamageJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Melee Damage", statOrder = { 1146 }, level = 1, group = "MeleeDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, + ["SynthesisImplicitMeleeDamageJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Melee Damage", statOrder = { 1146 }, level = 1, group = "MeleeDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, + ["SynthesisImplicitMaceIncreasedPhysicalDamageJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Physical Damage with Maces or Sceptres", statOrder = { 1238 }, level = 1, group = "MaceIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["SynthesisImplicitAxeIncreasedPhysicalDamageJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Physical Damage with Axes", statOrder = { 1214 }, level = 1, group = "AxeIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["SynthesisImplicitSwordIncreasedPhysicalDamageJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Physical Damage with Swords", statOrder = { 1249 }, level = 1, group = "SwordIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["SynthesisImplicitBowIncreasedPhysicalDamageJewel1_"] = { type = "Synthesis", affix = "", "(3-4)% increased Physical Damage with Bows", statOrder = { 1244 }, level = 1, group = "BowIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["SynthesisImplicitClawIncreasedPhysicalDamageJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Physical Damage with Claws", statOrder = { 1226 }, level = 1, group = "ClawIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["SynthesisImplicitDaggerIncreasedPhysicalDamageJewel1_"] = { type = "Synthesis", affix = "", "(3-4)% increased Physical Damage with Daggers", statOrder = { 1232 }, level = 1, group = "DaggerIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["SynthesisImplicitWandIncreasedPhysicalDamageJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Physical Damage with Wands", statOrder = { 1256 }, level = 1, group = "WandIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["SynthesisImplicitStaffIncreasedPhysicalDamageJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Physical Damage with Staves", statOrder = { 1218 }, level = 1, group = "StaffIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["SynthesisImplicitMaceIncreasedPhysicalDamageJewel2_"] = { type = "Synthesis", affix = "", "(5-6)% increased Physical Damage with Maces or Sceptres", statOrder = { 1238 }, level = 1, group = "MaceIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["SynthesisImplicitAxeIncreasedPhysicalDamageJewel2_"] = { type = "Synthesis", affix = "", "(5-6)% increased Physical Damage with Axes", statOrder = { 1214 }, level = 1, group = "AxeIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["SynthesisImplicitSwordIncreasedPhysicalDamageJewel2"] = { type = "Synthesis", affix = "", "(5-6)% increased Physical Damage with Swords", statOrder = { 1249 }, level = 1, group = "SwordIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["SynthesisImplicitBowIncreasedPhysicalDamageJewel2_"] = { type = "Synthesis", affix = "", "(5-6)% increased Physical Damage with Bows", statOrder = { 1244 }, level = 1, group = "BowIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["SynthesisImplicitClawIncreasedPhysicalDamageJewel2"] = { type = "Synthesis", affix = "", "(5-6)% increased Physical Damage with Claws", statOrder = { 1226 }, level = 1, group = "ClawIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["SynthesisImplicitDaggerIncreasedPhysicalDamageJewel2"] = { type = "Synthesis", affix = "", "(5-6)% increased Physical Damage with Daggers", statOrder = { 1232 }, level = 1, group = "DaggerIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["SynthesisImplicitWandIncreasedPhysicalDamageJewel2"] = { type = "Synthesis", affix = "", "(5-6)% increased Physical Damage with Wands", statOrder = { 1256 }, level = 1, group = "WandIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["SynthesisImplicitStaffIncreasedPhysicalDamageJewel2"] = { type = "Synthesis", affix = "", "(5-6)% increased Physical Damage with Staves", statOrder = { 1218 }, level = 1, group = "StaffIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["SynthesisImplicitSpellDamageWithStaffJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Spell Damage while wielding a Staff", statOrder = { 1139 }, level = 1, group = "SpellDamageWithStaff", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SynthesisImplicitSpellDamageWithDualWieldJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Spell Damage while Dual Wielding", statOrder = { 1142 }, level = 1, group = "SpellDamageWithDualWield", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SynthesisImplicitSpellDamageWithShieldJewel1__"] = { type = "Synthesis", affix = "", "(3-4)% increased Spell Damage while holding a Shield", statOrder = { 1141 }, level = 1, group = "SpellDamageWithShield", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SynthesisImplicitSpellDamageWithStaffJewel2_"] = { type = "Synthesis", affix = "", "(5-6)% increased Spell Damage while wielding a Staff", statOrder = { 1139 }, level = 1, group = "SpellDamageWithStaff", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SynthesisImplicitSpellDamageWithDualWieldJewel2"] = { type = "Synthesis", affix = "", "(5-6)% increased Spell Damage while Dual Wielding", statOrder = { 1142 }, level = 1, group = "SpellDamageWithDualWield", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SynthesisImplicitSpellDamageWithShieldJewel2"] = { type = "Synthesis", affix = "", "(5-6)% increased Spell Damage while holding a Shield", statOrder = { 1141 }, level = 1, group = "SpellDamageWithShield", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SynthesisImplicitAttackDamage1"] = { type = "Synthesis", affix = "", "(12-13)% increased Attack Damage", statOrder = { 1110 }, level = 1, group = "AttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, + ["SynthesisImplicitAttackDamage2"] = { type = "Synthesis", affix = "", "(14-16)% increased Attack Damage", statOrder = { 1110 }, level = 15, group = "AttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, + ["SynthesisImplicitAttackDamage3"] = { type = "Synthesis", affix = "", "(17-20)% increased Attack Damage", statOrder = { 1110 }, level = 24, group = "AttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, + ["SynthesisImplicitWeaponAttackDamage1"] = { type = "Synthesis", affix = "", "(23-26)% increased Attack Damage", statOrder = { 1110 }, level = 1, group = "AttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, + ["SynthesisImplicitWeaponAttackDamage2"] = { type = "Synthesis", affix = "", "(27-30)% increased Attack Damage", statOrder = { 1110 }, level = 15, group = "AttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, + ["SynthesisImplicitWeaponAttackDamage3"] = { type = "Synthesis", affix = "", "(31-35)% increased Attack Damage", statOrder = { 1110 }, level = 24, group = "AttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, + ["SynthesisImplicitWeaponAttackDamageTwoHand1"] = { type = "Synthesis", affix = "", "(29-35)% increased Attack Damage", statOrder = { 1110 }, level = 1, group = "AttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, + ["SynthesisImplicitWeaponAttackDamageTwoHand2"] = { type = "Synthesis", affix = "", "(36-44)% increased Attack Damage", statOrder = { 1110 }, level = 15, group = "AttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, + ["SynthesisImplicitWeaponAttackDamageTwoHand3"] = { type = "Synthesis", affix = "", "(45-51)% increased Attack Damage", statOrder = { 1110 }, level = 24, group = "AttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, + ["SynthesisImplicitSpellDamage1"] = { type = "Synthesis", affix = "", "(12-13)% increased Spell Damage", statOrder = { 1135 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SynthesisImplicitSpellDamage2_"] = { type = "Synthesis", affix = "", "(14-16)% increased Spell Damage", statOrder = { 1135 }, level = 15, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SynthesisImplicitSpellDamage3_"] = { type = "Synthesis", affix = "", "(17-20)% increased Spell Damage", statOrder = { 1135 }, level = 24, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SynthesisImplicitWeaponSpellDamage1"] = { type = "Synthesis", affix = "", "(16-18)% increased Spell Damage", statOrder = { 1135 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SynthesisImplicitWeaponSpellDamage2"] = { type = "Synthesis", affix = "", "(19-22)% increased Spell Damage", statOrder = { 1135 }, level = 15, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SynthesisImplicitWeaponSpellDamage3"] = { type = "Synthesis", affix = "", "(23-26)% increased Spell Damage", statOrder = { 1135 }, level = 24, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SynthesisImplicitWeaponSpellDamage4"] = { type = "Synthesis", affix = "", "(27-30)% increased Spell Damage", statOrder = { 1135 }, level = 36, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SynthesisImplicitWeaponSpellDamage5"] = { type = "Synthesis", affix = "", "(31-35)% increased Spell Damage", statOrder = { 1135 }, level = 48, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SynthesisImplicitWeaponSpellDamageTwoHand1"] = { type = "Synthesis", affix = "", "(22-24)% increased Spell Damage", statOrder = { 1135 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SynthesisImplicitWeaponSpellDamageTwoHand2"] = { type = "Synthesis", affix = "", "(25-28)% increased Spell Damage", statOrder = { 1135 }, level = 15, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SynthesisImplicitWeaponSpellDamageTwoHand3"] = { type = "Synthesis", affix = "", "(29-35)% increased Spell Damage", statOrder = { 1135 }, level = 24, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SynthesisImplicitWeaponSpellDamageTwoHand4_"] = { type = "Synthesis", affix = "", "(36-44)% increased Spell Damage", statOrder = { 1135 }, level = 36, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SynthesisImplicitWeaponSpellDamageTwoHand5"] = { type = "Synthesis", affix = "", "(45-51)% increased Spell Damage", statOrder = { 1135 }, level = 48, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SynthesisImplicitSpellsDoubleDamageChance1__"] = { type = "Synthesis", affix = "", "Spells have a (8-10)% chance to deal Double Damage", statOrder = { 9920 }, level = 60, group = "SpellsDoubleDamageChance", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SynthesisImplicitSpellsDoubleDamageChance2_"] = { type = "Synthesis", affix = "", "Spells have a (16-18)% chance to deal Double Damage", statOrder = { 9920 }, level = 65, group = "SpellsDoubleDamageChance", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SynthesisImplicitSpellDamageJewel1__"] = { type = "Synthesis", affix = "", "(2-3)% increased Spell Damage", statOrder = { 1135 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SynthesisImplicitSpellDamageJewel2_"] = { type = "Synthesis", affix = "", "(4-5)% increased Spell Damage", statOrder = { 1135 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SynthesisImplicitStrength1"] = { type = "Synthesis", affix = "", "+(6-8) to Strength", statOrder = { 1089 }, level = 1, group = "StrengthImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["SynthesisImplicitStrength2__"] = { type = "Synthesis", affix = "", "+(9-11) to Strength", statOrder = { 1089 }, level = 1, group = "StrengthImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["SynthesisImplicitStrength3"] = { type = "Synthesis", affix = "", "+(12-14) to Strength", statOrder = { 1089 }, level = 1, group = "StrengthImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["SynthesisImplicitStrength4"] = { type = "Synthesis", affix = "", "+(15-17) to Strength", statOrder = { 1089 }, level = 15, group = "StrengthImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["SynthesisImplicitStrength5"] = { type = "Synthesis", affix = "", "+(18-20) to Strength", statOrder = { 1089 }, level = 24, group = "StrengthImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["SynthesisImplicitStrengthJewel1__"] = { type = "Synthesis", affix = "", "+(2-3) to Strength", statOrder = { 1089 }, level = 1, group = "StrengthImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["SynthesisImplicitStrengthJewel2"] = { type = "Synthesis", affix = "", "+(4-5) to Strength", statOrder = { 1089 }, level = 1, group = "StrengthImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["SynthesisImplicitPercentStrength1_"] = { type = "Synthesis", affix = "", "4% increased Strength", statOrder = { 1096 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["SynthesisImplicitPercentStrength2_"] = { type = "Synthesis", affix = "", "5% increased Strength", statOrder = { 1096 }, level = 16, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["SynthesisImplicitPercentStrength3_"] = { type = "Synthesis", affix = "", "6% increased Strength", statOrder = { 1096 }, level = 24, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["SynthesisImplicitPercentStrengthTrinket1"] = { type = "Synthesis", affix = "", "(7-9)% increased Strength", statOrder = { 1096 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["SynthesisImplicitPercentStrengthTrinket2"] = { type = "Synthesis", affix = "", "(10-12)% increased Strength", statOrder = { 1096 }, level = 16, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["SynthesisImplicitPercentStrengthTrinket3"] = { type = "Synthesis", affix = "", "(13-15)% increased Strength", statOrder = { 1096 }, level = 24, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["SynthesisImplicitDamagePerStrength1_"] = { type = "Synthesis", affix = "", "1% increased Damage per 15 Strength", statOrder = { 5953 }, level = 60, group = "DamagePer15Strength", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitAddedFireDamagePerStrength1"] = { type = "Synthesis", affix = "", "Adds (1-2) to (3-4) Fire Damage to Attacks with this Weapon per 10 Strength", statOrder = { 4766 }, level = 55, group = "AddedFireDamagePerStrength", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["SynthesisImplicitAddedFireDamagePerStrength2"] = { type = "Synthesis", affix = "", "Adds (2-3) to (4-5) Fire Damage to Attacks with this Weapon per 10 Strength", statOrder = { 4766 }, level = 55, group = "AddedFireDamagePerStrength", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["SynthesisImplicitSpellDamagePerStrength1_"] = { type = "Synthesis", affix = "", "1% increased Spell Damage per 16 Strength", statOrder = { 9940 }, level = 55, group = "SpellDamagePer16Strength", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SynthesisImplicitSpellDamagePerStrength2_"] = { type = "Synthesis", affix = "", "1% increased Spell Damage per 10 Strength", statOrder = { 9937 }, level = 55, group = "SpellDamagePer10Strength", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SynthesisImplicitDamageTakenPer250Strength1"] = { type = "Synthesis", affix = "", "1% reduced Damage taken per 250 Strength", statOrder = { 6005 }, level = 60, group = "DamageTakenPer250Strength", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitDexterity1"] = { type = "Synthesis", affix = "", "+(6-8) to Dexterity", statOrder = { 1090 }, level = 1, group = "DexterityImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["SynthesisImplicitDexterity2"] = { type = "Synthesis", affix = "", "+(9-11) to Dexterity", statOrder = { 1090 }, level = 1, group = "DexterityImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["SynthesisImplicitDexterity3"] = { type = "Synthesis", affix = "", "+(12-14) to Dexterity", statOrder = { 1090 }, level = 1, group = "DexterityImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["SynthesisImplicitDexterity4"] = { type = "Synthesis", affix = "", "+(15-17) to Dexterity", statOrder = { 1090 }, level = 15, group = "DexterityImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["SynthesisImplicitDexterity5"] = { type = "Synthesis", affix = "", "+(18-20) to Dexterity", statOrder = { 1090 }, level = 24, group = "DexterityImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["SynthesisImplicitDexterityJewel1"] = { type = "Synthesis", affix = "", "+(2-3) to Dexterity", statOrder = { 1090 }, level = 1, group = "DexterityImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["SynthesisImplicitDexterityJewel2_"] = { type = "Synthesis", affix = "", "+(4-5) to Dexterity", statOrder = { 1090 }, level = 1, group = "DexterityImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["SynthesisImplicitPercentDexterity1"] = { type = "Synthesis", affix = "", "4% increased Dexterity", statOrder = { 1097 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["SynthesisImplicitPercentDexterity2"] = { type = "Synthesis", affix = "", "5% increased Dexterity", statOrder = { 1097 }, level = 16, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["SynthesisImplicitPercentDexterity3_"] = { type = "Synthesis", affix = "", "6% increased Dexterity", statOrder = { 1097 }, level = 24, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["SynthesisImplicitPercentDexterityTrinket1"] = { type = "Synthesis", affix = "", "(7-9)% increased Dexterity", statOrder = { 1097 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["SynthesisImplicitPercentDexterityTrinket2"] = { type = "Synthesis", affix = "", "(10-12)% increased Dexterity", statOrder = { 1097 }, level = 16, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["SynthesisImplicitPercentDexterityTrinket3"] = { type = "Synthesis", affix = "", "(13-15)% increased Dexterity", statOrder = { 1097 }, level = 24, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["SynthesisImplicitDamagePerDexterity1"] = { type = "Synthesis", affix = "", "1% increased Damage per 15 Dexterity", statOrder = { 5951 }, level = 60, group = "DamagePer15Dexterity", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitAddedColdDamagePerDexterity1_"] = { type = "Synthesis", affix = "", "Adds (1-2) to (3-4) Cold Damage to Attacks with this Weapon per 10 Dexterity", statOrder = { 4821 }, level = 55, group = "AddedColdDamagePerDexterity", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["SynthesisImplicitAddedColdDamagePerDexterity2"] = { type = "Synthesis", affix = "", "Adds (2-3) to (4-5) Cold Damage to Attacks with this Weapon per 10 Dexterity", statOrder = { 4821 }, level = 55, group = "AddedColdDamagePerDexterity", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["SynthesisImplicitSpellDamagePerDexterity1"] = { type = "Synthesis", affix = "", "1% increased Spell Damage per 16 Dexterity", statOrder = { 9938 }, level = 55, group = "SpellDamagePer16Dexterity", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SynthesisImplicitDamageTakenPer250Dexterity1"] = { type = "Synthesis", affix = "", "1% reduced Damage taken per 250 Dexterity", statOrder = { 6003 }, level = 60, group = "DamageTakenPer250Dexterity", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitIntelligence1"] = { type = "Synthesis", affix = "", "+(6-8) to Intelligence", statOrder = { 1091 }, level = 1, group = "IntelligenceImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["SynthesisImplicitIntelligence2_"] = { type = "Synthesis", affix = "", "+(9-11) to Intelligence", statOrder = { 1091 }, level = 1, group = "IntelligenceImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["SynthesisImplicitIntelligence3_"] = { type = "Synthesis", affix = "", "+(12-14) to Intelligence", statOrder = { 1091 }, level = 1, group = "IntelligenceImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["SynthesisImplicitIntelligence4"] = { type = "Synthesis", affix = "", "+(15-17) to Intelligence", statOrder = { 1091 }, level = 15, group = "IntelligenceImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["SynthesisImplicitIntelligence5"] = { type = "Synthesis", affix = "", "+(18-20) to Intelligence", statOrder = { 1091 }, level = 24, group = "IntelligenceImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["SynthesisImplicitIntelligenceJewel1"] = { type = "Synthesis", affix = "", "+(2-3) to Intelligence", statOrder = { 1091 }, level = 1, group = "IntelligenceImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["SynthesisImplicitIntelligenceJewel2"] = { type = "Synthesis", affix = "", "+(4-5) to Intelligence", statOrder = { 1091 }, level = 1, group = "IntelligenceImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["SynthesisImplicitPercentIntelligence1"] = { type = "Synthesis", affix = "", "4% increased Intelligence", statOrder = { 1098 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["SynthesisImplicitPercentIntelligence2_"] = { type = "Synthesis", affix = "", "5% increased Intelligence", statOrder = { 1098 }, level = 16, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["SynthesisImplicitPercentIntelligence3_"] = { type = "Synthesis", affix = "", "6% increased Intelligence", statOrder = { 1098 }, level = 24, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["SynthesisImplicitPercentIntelligenceTrinket1"] = { type = "Synthesis", affix = "", "(7-9)% increased Intelligence", statOrder = { 1098 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["SynthesisImplicitPercentIntelligenceTrinket2_"] = { type = "Synthesis", affix = "", "(10-12)% increased Intelligence", statOrder = { 1098 }, level = 16, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["SynthesisImplicitPercentIntelligenceTrinket3_"] = { type = "Synthesis", affix = "", "(13-15)% increased Intelligence", statOrder = { 1098 }, level = 24, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["SynthesisImplicitDamagePerIntelligence1"] = { type = "Synthesis", affix = "", "1% increased Damage per 15 Intelligence", statOrder = { 5952 }, level = 60, group = "DamagePer15Intelligence", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitAddedLightningDamagePerIntelligence1"] = { type = "Synthesis", affix = "", "Adds 1 to (5-6) Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrder = { 4769 }, level = 55, group = "AddedLightningDamagePerIntelligence", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["SynthesisImplicitAddedLightningDamagePerIntelligence2"] = { type = "Synthesis", affix = "", "Adds 1 to (7-8) Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrder = { 4769 }, level = 55, group = "AddedLightningDamagePerIntelligence", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["SynthesisImplicitSpellDamagePerIntelligence1"] = { type = "Synthesis", affix = "", "1% increased Spell Damage per 16 Intelligence", statOrder = { 9939 }, level = 55, group = "SpellDamagePer16Intelligence", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SynthesisImplicitSpellDamagePerIntelligence2"] = { type = "Synthesis", affix = "", "1% increased Spell Damage per 10 Intelligence", statOrder = { 2648 }, level = 55, group = "SpellDamagePer10Intelligence", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SynthesisImplicitDamageTakenPer250Intelligence1"] = { type = "Synthesis", affix = "", "1% reduced Damage taken per 250 Intelligence", statOrder = { 6004 }, level = 60, group = "DamageTakenPer250Intelligence", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitAllAttributes1"] = { type = "Synthesis", affix = "", "+(6-7) to all Attributes", statOrder = { 1088 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["SynthesisImplicitAllAttributes2"] = { type = "Synthesis", affix = "", "+(8-9) to all Attributes", statOrder = { 1088 }, level = 15, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["SynthesisImplicitAllAttributes3"] = { type = "Synthesis", affix = "", "+(10-12) to all Attributes", statOrder = { 1088 }, level = 24, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["SynthesisImplicitPercentAllAttributes1"] = { type = "Synthesis", affix = "", "2% increased Attributes", statOrder = { 1095 }, level = 48, group = "PercentageAllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["SynthesisImplicitPercentAllAttributes2"] = { type = "Synthesis", affix = "", "3% increased Attributes", statOrder = { 1095 }, level = 56, group = "PercentageAllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["SynthesisImplicitAccuracy1"] = { type = "Synthesis", affix = "", "(10-11)% increased Global Accuracy Rating", statOrder = { 1345 }, level = 1, group = "IncreasedAccuracyPercent", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["SynthesisImplicitAccuracy2"] = { type = "Synthesis", affix = "", "(12-13)% increased Global Accuracy Rating", statOrder = { 1345 }, level = 15, group = "IncreasedAccuracyPercent", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["SynthesisImplicitAccuracy3"] = { type = "Synthesis", affix = "", "(14-15)% increased Global Accuracy Rating", statOrder = { 1345 }, level = 24, group = "IncreasedAccuracyPercent", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["SynthesisImplicitAccuracy4"] = { type = "Synthesis", affix = "", "(16-17)% increased Global Accuracy Rating", statOrder = { 1345 }, level = 36, group = "IncreasedAccuracyPercent", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["SynthesisImplicitAccuracy5_"] = { type = "Synthesis", affix = "", "(18-20)% increased Global Accuracy Rating", statOrder = { 1345 }, level = 48, group = "IncreasedAccuracyPercent", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["SynthesisImplicitAccuracyJewel1"] = { type = "Synthesis", affix = "", "+(21-35) to Accuracy Rating", statOrder = { 1344 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["SynthesisImplicitAccuracyJewel2"] = { type = "Synthesis", affix = "", "+(36-50) to Accuracy Rating", statOrder = { 1344 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["SynthesisImplicitFlatAccuracy1_"] = { type = "Synthesis", affix = "", "+(150-250) to Accuracy Rating", statOrder = { 1344 }, level = 48, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["SynthesisImplicitFlatAccuracy2"] = { type = "Synthesis", affix = "", "+(251-350) to Accuracy Rating", statOrder = { 1344 }, level = 56, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["SynthesisImplicitWeaponAccuracy1"] = { type = "Synthesis", affix = "", "(10-15)% increased Global Accuracy Rating", statOrder = { 1345 }, level = 1, group = "LocalAccuracyRatingIncrease", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["SynthesisImplicitWeaponAccuracy2"] = { type = "Synthesis", affix = "", "(20-25)% increased Global Accuracy Rating", statOrder = { 1345 }, level = 15, group = "LocalAccuracyRatingIncrease", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["SynthesisImplicitWeaponAccuracy3"] = { type = "Synthesis", affix = "", "(30-35)% increased Global Accuracy Rating", statOrder = { 1345 }, level = 24, group = "LocalAccuracyRatingIncrease", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["SynthesisImplicitWeaponAccuracyHigh1"] = { type = "Synthesis", affix = "", "100% increased Global Accuracy Rating", statOrder = { 1345 }, level = 65, group = "LocalAccuracyRatingIncrease", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["SynthesisImplicitMaceAccuracyRatingJewel1__"] = { type = "Synthesis", affix = "", "(2-3)% increased Accuracy Rating with Maces or Sceptres", statOrder = { 1353 }, level = 1, group = "MaceIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["SynthesisImplicitAxeAccuracyRatingJewel1__"] = { type = "Synthesis", affix = "", "(2-3)% increased Accuracy Rating with Axes", statOrder = { 1349 }, level = 1, group = "AxeIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["SynthesisImplicitSwordAccuracyRatingJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Accuracy Rating with Swords", statOrder = { 1355 }, level = 1, group = "SwordIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["SynthesisImplicitBowAccuracyRatingJewel1_"] = { type = "Synthesis", affix = "", "(2-3)% increased Accuracy Rating with Bows", statOrder = { 1354 }, level = 1, group = "BowIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["SynthesisImplicitClawAccuracyRatingJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Accuracy Rating with Claws", statOrder = { 1351 }, level = 1, group = "ClawIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["SynthesisImplicitDaggerAccuracyRatingJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Accuracy Rating with Daggers", statOrder = { 1352 }, level = 1, group = "DaggerIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["SynthesisImplicitWandAccuracyRatingJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Accuracy Rating with Wands", statOrder = { 1356 }, level = 1, group = "WandIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["SynthesisImplicitStaffAccuracyRatingJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Accuracy Rating with Staves", statOrder = { 1350 }, level = 1, group = "StaffIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["SynthesisImplicitMaceAccuracyRatingJewel2_"] = { type = "Synthesis", affix = "", "(4-5)% increased Accuracy Rating with Maces or Sceptres", statOrder = { 1353 }, level = 1, group = "MaceIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["SynthesisImplicitAxeAccuracyRatingJewel2_"] = { type = "Synthesis", affix = "", "(4-5)% increased Accuracy Rating with Axes", statOrder = { 1349 }, level = 1, group = "AxeIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["SynthesisImplicitSwordAccuracyRatingJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Accuracy Rating with Swords", statOrder = { 1355 }, level = 1, group = "SwordIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["SynthesisImplicitBowAccuracyRatingJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Accuracy Rating with Bows", statOrder = { 1354 }, level = 1, group = "BowIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["SynthesisImplicitClawAccuracyRatingJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Accuracy Rating with Claws", statOrder = { 1351 }, level = 1, group = "ClawIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["SynthesisImplicitDaggerAccuracyRatingJewel2_"] = { type = "Synthesis", affix = "", "(4-5)% increased Accuracy Rating with Daggers", statOrder = { 1352 }, level = 1, group = "DaggerIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["SynthesisImplicitWandAccuracyRatingJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Accuracy Rating with Wands", statOrder = { 1356 }, level = 1, group = "WandIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["SynthesisImplicitStaffAccuracyRatingJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Accuracy Rating with Staves", statOrder = { 1350 }, level = 1, group = "StaffIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["SynthesisImplicitIncreasedArmour1_"] = { type = "Synthesis", affix = "", "(15-18)% increased Armour", statOrder = { 1453 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["SynthesisImplicitIncreasedArmour2_"] = { type = "Synthesis", affix = "", "(19-22)% increased Armour", statOrder = { 1453 }, level = 15, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["SynthesisImplicitIncreasedArmour3"] = { type = "Synthesis", affix = "", "(23-26)% increased Armour", statOrder = { 1453 }, level = 24, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["SynthesisImplicitIncreasedArmour4"] = { type = "Synthesis", affix = "", "(27-30)% increased Armour", statOrder = { 1453 }, level = 36, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["SynthesisImplicitIncreasedArmour5_"] = { type = "Synthesis", affix = "", "(30-35)% increased Armour", statOrder = { 1453 }, level = 48, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["SynthesisImplicitFlatArmour1"] = { type = "Synthesis", affix = "", "+(15-20) to Armour", statOrder = { 1451 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["SynthesisImplicitFlatArmour2"] = { type = "Synthesis", affix = "", "+(21-30) to Armour", statOrder = { 1451 }, level = 15, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["SynthesisImplicitFlatArmour3"] = { type = "Synthesis", affix = "", "+(31-40) to Armour", statOrder = { 1451 }, level = 24, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["SynthesisImplicitFlatArmour4"] = { type = "Synthesis", affix = "", "+(41-55) to Armour", statOrder = { 1451 }, level = 36, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["SynthesisImplicitFlatArmour5"] = { type = "Synthesis", affix = "", "+(56-70) to Armour", statOrder = { 1451 }, level = 48, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["SynthesisImplicitAdditionalPhysReduction1"] = { type = "Synthesis", affix = "", "2% additional Physical Damage Reduction", statOrder = { 2182 }, level = 36, group = "ReducedPhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, }, + ["SynthesisImplicitAdditionalPhysReduction2"] = { type = "Synthesis", affix = "", "3% additional Physical Damage Reduction", statOrder = { 2182 }, level = 48, group = "ReducedPhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, }, + ["SynthesisImplicitAdditionalPhysReduction3"] = { type = "Synthesis", affix = "", "4% additional Physical Damage Reduction", statOrder = { 2182 }, level = 56, group = "ReducedPhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, }, + ["SynthesisImplicitGlobalArmour1"] = { type = "Synthesis", affix = "", "(7-9)% increased Armour", statOrder = { 1452 }, level = 1, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["SynthesisImplicitGlobalArmour2"] = { type = "Synthesis", affix = "", "(10-12)% increased Armour", statOrder = { 1452 }, level = 15, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["SynthesisImplicitGlobalArmour3"] = { type = "Synthesis", affix = "", "(13-15)% increased Armour", statOrder = { 1452 }, level = 24, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["SynthesisImplicitGlobalArmourTwoHand1__"] = { type = "Synthesis", affix = "", "(14-16)% increased Armour", statOrder = { 1452 }, level = 36, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["SynthesisImplicitGlobalArmourTwoHand2"] = { type = "Synthesis", affix = "", "(17-19)% increased Armour", statOrder = { 1452 }, level = 48, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["SynthesisImplicitGlobalArmourTwoHand3"] = { type = "Synthesis", affix = "", "(20-22)% increased Armour", statOrder = { 1452 }, level = 56, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["SynthesisImplicitGlobalArmourJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Armour", statOrder = { 1452 }, level = 1, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["SynthesisImplicitGlobalArmourJewel2_"] = { type = "Synthesis", affix = "", "(5-6)% increased Armour", statOrder = { 1452 }, level = 1, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["SynthesisImplicitReducedDamageFromCrits1"] = { type = "Synthesis", affix = "", "You take (15-25)% reduced Extra Damage from Critical Strikes", statOrder = { 1423 }, level = 55, group = "ReducedExtraDamageFromCrits", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, + ["SynthesisImplicitChanceForDoubleArmour1"] = { type = "Synthesis", affix = "", "(15-20)% chance to Defend with 200% of Armour", statOrder = { 5569 }, level = 65, group = "ChanceWhenHitForArmourToBeDoubled", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["SynthesisImplicitIncreasedEvasion1"] = { type = "Synthesis", affix = "", "(15-18)% increased Evasion Rating", statOrder = { 1461 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["SynthesisImplicitIncreasedEvasion2"] = { type = "Synthesis", affix = "", "(19-22)% increased Evasion Rating", statOrder = { 1461 }, level = 15, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["SynthesisImplicitIncreasedEvasion3"] = { type = "Synthesis", affix = "", "(23-26)% increased Evasion Rating", statOrder = { 1461 }, level = 24, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["SynthesisImplicitIncreasedEvasion4"] = { type = "Synthesis", affix = "", "(27-30)% increased Evasion Rating", statOrder = { 1461 }, level = 36, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["SynthesisImplicitIncreasedEvasion5"] = { type = "Synthesis", affix = "", "(30-35)% increased Evasion Rating", statOrder = { 1461 }, level = 48, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["SynthesisImplicitFlatEvasion1"] = { type = "Synthesis", affix = "", "+(15-20) to Evasion Rating", statOrder = { 1459 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["SynthesisImplicitFlatEvasion2"] = { type = "Synthesis", affix = "", "+(21-30) to Evasion Rating", statOrder = { 1459 }, level = 15, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["SynthesisImplicitFlatEvasion3"] = { type = "Synthesis", affix = "", "+(31-40) to Evasion Rating", statOrder = { 1459 }, level = 24, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["SynthesisImplicitFlatEvasion4"] = { type = "Synthesis", affix = "", "+(41-55) to Evasion Rating", statOrder = { 1459 }, level = 36, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["SynthesisImplicitFlatEvasion5"] = { type = "Synthesis", affix = "", "+(56-70) to Evasion Rating", statOrder = { 1459 }, level = 48, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["SynthesisImplicitAdditionalEvadeChance1"] = { type = "Synthesis", affix = "", "+2% chance to Evade Attack Hits", statOrder = { 5571 }, level = 36, group = "AdditionalChanceToEvade", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["SynthesisImplicitAdditionalEvadeChance2"] = { type = "Synthesis", affix = "", "+3% chance to Evade Attack Hits", statOrder = { 5571 }, level = 48, group = "AdditionalChanceToEvade", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["SynthesisImplicitAdditionalEvadeChance3"] = { type = "Synthesis", affix = "", "+4% chance to Evade Attack Hits", statOrder = { 5571 }, level = 56, group = "AdditionalChanceToEvade", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["SynthesisImplicitGlobalEvasion1"] = { type = "Synthesis", affix = "", "(7-9)% increased Evasion Rating", statOrder = { 1460 }, level = 1, group = "GlobalEvasionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["SynthesisImplicitGlobalEvasion2"] = { type = "Synthesis", affix = "", "(10-12)% increased Evasion Rating", statOrder = { 1460 }, level = 15, group = "GlobalEvasionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["SynthesisImplicitGlobalEvasion3"] = { type = "Synthesis", affix = "", "(13-15)% increased Evasion Rating", statOrder = { 1460 }, level = 24, group = "GlobalEvasionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["SynthesisImplicitGlobalEvasionTwoHand1_"] = { type = "Synthesis", affix = "", "(14-16)% increased Evasion Rating", statOrder = { 1460 }, level = 15, group = "GlobalEvasionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["SynthesisImplicitGlobalEvasionTwoHand2_"] = { type = "Synthesis", affix = "", "(17-19)% increased Evasion Rating", statOrder = { 1460 }, level = 24, group = "GlobalEvasionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["SynthesisImplicitGlobalEvasionTwoHand3"] = { type = "Synthesis", affix = "", "(20-22)% increased Evasion Rating", statOrder = { 1460 }, level = 36, group = "GlobalEvasionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["SynthesisImplicitGlobalEvasionJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Evasion Rating", statOrder = { 1460 }, level = 1, group = "GlobalEvasionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["SynthesisImplicitGlobalEvasionJewel2__"] = { type = "Synthesis", affix = "", "(5-6)% increased Evasion Rating", statOrder = { 1460 }, level = 1, group = "GlobalEvasionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["SynthesisImplicitAvoidStatusAilments1"] = { type = "Synthesis", affix = "", "(10-15)% chance to Avoid Elemental Ailments", statOrder = { 1754 }, level = 45, group = "AvoidElementalStatusAilments", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["SynthesisImplicitAvoidStatusAilments2"] = { type = "Synthesis", affix = "", "(16-25)% chance to Avoid Elemental Ailments", statOrder = { 1754 }, level = 55, group = "AvoidElementalStatusAilments", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["SynthesisImplicitAvoidStatusAilmentsMinor1"] = { type = "Synthesis", affix = "", "(10-12)% chance to Avoid Elemental Ailments", statOrder = { 1754 }, level = 45, group = "AvoidElementalStatusAilments", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["SynthesisImplicitAvoidStatusAilmentsMinor2"] = { type = "Synthesis", affix = "", "(13-15)% chance to Avoid Elemental Ailments", statOrder = { 1754 }, level = 55, group = "AvoidElementalStatusAilments", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["SynthesisImplicitAvoidStatusAilmentsJewel1"] = { type = "Synthesis", affix = "", "(5-7)% chance to Avoid Elemental Ailments", statOrder = { 1754 }, level = 1, group = "AvoidElementalStatusAilments", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["SynthesisImplicitBlindOnHit1"] = { type = "Synthesis", affix = "", "(10-15)% Global chance to Blind Enemies on hit", statOrder = { 2867 }, level = 65, group = "GlobalChanceToBlindOnHit", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitIncreasedEnergyShield1"] = { type = "Synthesis", affix = "", "(15-16)% increased Energy Shield", statOrder = { 1471 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["SynthesisImplicitIncreasedEnergyShield2"] = { type = "Synthesis", affix = "", "(17-18)% increased Energy Shield", statOrder = { 1471 }, level = 15, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["SynthesisImplicitIncreasedEnergyShield3__"] = { type = "Synthesis", affix = "", "(19-20)% increased Energy Shield", statOrder = { 1471 }, level = 24, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["SynthesisImplicitIncreasedEnergyShield4"] = { type = "Synthesis", affix = "", "(21-22)% increased Energy Shield", statOrder = { 1471 }, level = 36, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["SynthesisImplicitIncreasedEnergyShield5"] = { type = "Synthesis", affix = "", "(23-25)% increased Energy Shield", statOrder = { 1471 }, level = 48, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["SynthesisImplicitFlatEnergyShield1"] = { type = "Synthesis", affix = "", "+(10-12) to maximum Energy Shield", statOrder = { 1470 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["SynthesisImplicitFlatEnergyShield2"] = { type = "Synthesis", affix = "", "+(13-15) to maximum Energy Shield", statOrder = { 1470 }, level = 15, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["SynthesisImplicitFlatEnergyShield3"] = { type = "Synthesis", affix = "", "+(16-18) to maximum Energy Shield", statOrder = { 1470 }, level = 24, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["SynthesisImplicitFlatEnergyShield4"] = { type = "Synthesis", affix = "", "+(19-21) to maximum Energy Shield", statOrder = { 1470 }, level = 36, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["SynthesisImplicitFlatEnergyShield5_"] = { type = "Synthesis", affix = "", "+(22-25) to maximum Energy Shield", statOrder = { 1470 }, level = 48, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["SynthesisImplicitFlatEnergyShieldMinor1"] = { type = "Synthesis", affix = "", "+(6-7) to maximum Energy Shield", statOrder = { 1470 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["SynthesisImplicitFlatEnergyShieldMinor2_"] = { type = "Synthesis", affix = "", "+(8-9) to maximum Energy Shield", statOrder = { 1470 }, level = 15, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["SynthesisImplicitFlatEnergyShieldMinor3_"] = { type = "Synthesis", affix = "", "+(10-11) to maximum Energy Shield", statOrder = { 1470 }, level = 24, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["SynthesisImplicitFlatEnergyShieldMinor4"] = { type = "Synthesis", affix = "", "+(12-13) to maximum Energy Shield", statOrder = { 1470 }, level = 36, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["SynthesisImplicitFlatEnergyShieldMinor5_"] = { type = "Synthesis", affix = "", "+(14-15) to maximum Energy Shield", statOrder = { 1470 }, level = 48, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["SynthesisImplicitEnergyShieldRegen1"] = { type = "Synthesis", affix = "", "Regenerate (0.6-0.7)% of Energy Shield per second", statOrder = { 2554 }, level = 1, group = "EnergyShieldRegenerationPerMinute", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["SynthesisImplicitEnergyShieldRegen2"] = { type = "Synthesis", affix = "", "Regenerate (0.8-0.9)% of Energy Shield per second", statOrder = { 2554 }, level = 15, group = "EnergyShieldRegenerationPerMinute", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["SynthesisImplicitEnergyShieldRegen3"] = { type = "Synthesis", affix = "", "Regenerate 1% of Energy Shield per second", statOrder = { 2554 }, level = 24, group = "EnergyShieldRegenerationPerMinute", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["SynthesisImplicitEnergyShieldRegenJewel1_"] = { type = "Synthesis", affix = "", "Regenerate 0.2% of Energy Shield per second", statOrder = { 2554 }, level = 1, group = "EnergyShieldRegenerationPerMinute", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["SynthesisImplicitEnergyShieldJewel1"] = { type = "Synthesis", affix = "", "+(3-4) to maximum Energy Shield", statOrder = { 1469 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["SynthesisImplicitEnergyShieldJewel2_"] = { type = "Synthesis", affix = "", "+(5-6) to maximum Energy Shield", statOrder = { 1469 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["SynthesisImplicitEnergyShieldRechargeRate1"] = { type = "Synthesis", affix = "", "(8-9)% increased Energy Shield Recharge Rate", statOrder = { 1476 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["SynthesisImplicitEnergyShieldRechargeRate2_"] = { type = "Synthesis", affix = "", "(10-11)% increased Energy Shield Recharge Rate", statOrder = { 1476 }, level = 15, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["SynthesisImplicitEnergyShieldRechargeRate3_"] = { type = "Synthesis", affix = "", "(12-15)% increased Energy Shield Recharge Rate", statOrder = { 1476 }, level = 24, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["SynthesisImplicitEnergyShieldRechargeRateJewel1_"] = { type = "Synthesis", affix = "", "(3-5)% increased Energy Shield Recharge Rate", statOrder = { 1476 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["SynthesisImplicitGlobalEnergyShield1"] = { type = "Synthesis", affix = "", "(4-5)% increased maximum Energy Shield", statOrder = { 1472 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["SynthesisImplicitGlobalEnergyShield2"] = { type = "Synthesis", affix = "", "(6-7)% increased maximum Energy Shield", statOrder = { 1472 }, level = 15, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["SynthesisImplicitGlobalEnergyShield3__"] = { type = "Synthesis", affix = "", "(8-10)% increased maximum Energy Shield", statOrder = { 1472 }, level = 24, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["SynthesisImplicitGlobalEnergyShieldTwoHand1"] = { type = "Synthesis", affix = "", "(7-9)% increased maximum Energy Shield", statOrder = { 1472 }, level = 15, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["SynthesisImplicitGlobalEnergyShieldTwoHand2"] = { type = "Synthesis", affix = "", "(10-13)% increased maximum Energy Shield", statOrder = { 1472 }, level = 24, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["SynthesisImplicitGlobalEnergyShieldTwoHand3___"] = { type = "Synthesis", affix = "", "(14-16)% increased maximum Energy Shield", statOrder = { 1472 }, level = 36, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["SynthesisImplicitEnergyShieldRecoveryRate1"] = { type = "Synthesis", affix = "", "(10-15)% increased Energy Shield Recovery rate", statOrder = { 1479 }, level = 60, group = "EnergyShieldRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["SynthesisImplicitEnergyShieldLeech1"] = { type = "Synthesis", affix = "", "0.3% of Spell Damage Leeched as Energy Shield", statOrder = { 1633 }, level = 55, group = "EnergyShieldLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["SynthesisImplicitEnergyShieldLeechJewel1"] = { type = "Synthesis", affix = "", "0.2% of Spell Damage Leeched as Energy Shield", statOrder = { 1633 }, level = 1, group = "EnergyShieldLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["SynthesisImplicitMaximumEnergyShieldLeechRate1"] = { type = "Synthesis", affix = "", "10% increased Maximum total Energy Shield Recovery per second from Leech", statOrder = { 1645 }, level = 56, group = "MaximumEnergyShieldLeechRate", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["SynthesisImplicitEnergyShieldOnHitJewel1"] = { type = "Synthesis", affix = "", "Gain (1-2) Energy Shield per Enemy Hit with Attacks", statOrder = { 1658 }, level = 1, group = "EnergyShieldGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield", "attack" }, }, + ["SynthesisImplicitEnergyShieldDelay1"] = { type = "Synthesis", affix = "", "(4-6)% faster start of Energy Shield Recharge", statOrder = { 1473 }, level = 36, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["SynthesisImplicitEnergyShieldDelay2"] = { type = "Synthesis", affix = "", "(7-10)% faster start of Energy Shield Recharge", statOrder = { 1473 }, level = 48, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["SynthesisImplicitLifeAddedAsEnergyShield1_"] = { type = "Synthesis", affix = "", "Gain 3% of Maximum Life as Extra Maximum Energy Shield", statOrder = { 8974 }, level = 65, group = "LifeAddedAsEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["SynthesisImplicitShieldAttackBlock1_"] = { type = "Synthesis", affix = "", "+(2-3)% Chance to Block Attack Damage", statOrder = { 2367 }, level = 1, group = "AdditionalBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["SynthesisImplicitShieldAttackBlock2"] = { type = "Synthesis", affix = "", "+(4-5)% Chance to Block Attack Damage", statOrder = { 2367 }, level = 15, group = "AdditionalBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["SynthesisImplicitShieldSpellBlock1"] = { type = "Synthesis", affix = "", "(2-3)% Chance to Block Spell Damage", statOrder = { 1072 }, level = 1, group = "SpellBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["SynthesisImplicitShieldSpellBlock2_"] = { type = "Synthesis", affix = "", "(4-5)% Chance to Block Spell Damage", statOrder = { 1072 }, level = 15, group = "SpellBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["SynthesisImplicitAttackBlock1"] = { type = "Synthesis", affix = "", "2% Chance to Block Attack Damage", statOrder = { 1051 }, level = 48, group = "BlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["SynthesisImplicitAttackBlock2"] = { type = "Synthesis", affix = "", "(4-5)% Chance to Block Attack Damage", statOrder = { 1051 }, level = 56, group = "BlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["SynthesisImplicitSpellBlock1"] = { type = "Synthesis", affix = "", "2% Chance to Block Spell Damage", statOrder = { 1072 }, level = 48, group = "SpellBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["SynthesisImplicitSpellBlock2_"] = { type = "Synthesis", affix = "", "(4-5)% Chance to Block Spell Damage", statOrder = { 1072 }, level = 56, group = "SpellBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["SynthesisImplicitLifeOnBlock1_"] = { type = "Synthesis", affix = "", "Recover (3-5)% of Life when you Block", statOrder = { 2968 }, level = 60, group = "RecoverLifePercentOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life" }, }, + ["SynthesisImplicitManaOnBlock1"] = { type = "Synthesis", affix = "", "Recover (3-5)% of your maximum Mana when you Block", statOrder = { 8019 }, level = 60, group = "RecoverManaPercentOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "mana" }, }, + ["SynthesisImplicitEnergyShieldOnBlock1"] = { type = "Synthesis", affix = "", "Recover (3-5)% of Energy Shield when you Block", statOrder = { 2376 }, level = 60, group = "RecoverEnergyShieldPercentOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "defences", "energy_shield" }, }, + ["SynthesisImplicitMaximumAttackBlock1"] = { type = "Synthesis", affix = "", "+(1-2)% to maximum Chance to Block Attack Damage", statOrder = { 1897 }, level = 65, group = "MaximumBlockChance", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["SynthesisImplicitMaximumSpellBlock1_"] = { type = "Synthesis", affix = "", "+(1-2)% to maximum Chance to Block Spell Damage", statOrder = { 1898 }, level = 65, group = "MaximumSpellBlockChance", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["SynthesisImplicitFlatLifeOnBlock1"] = { type = "Synthesis", affix = "", "(15-25) Life gained when you Block", statOrder = { 1668 }, level = 15, group = "GainLifeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life" }, }, + ["SynthesisImplicitFlatLifeOnBlock2"] = { type = "Synthesis", affix = "", "(26-35) Life gained when you Block", statOrder = { 1668 }, level = 24, group = "GainLifeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life" }, }, + ["SynthesisImplicitFlatLifeOnBlockJewel1"] = { type = "Synthesis", affix = "", "(4-6) Life gained when you Block", statOrder = { 1668 }, level = 1, group = "GainLifeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life" }, }, + ["SynthesisImplicitFlatManaOnBlock1"] = { type = "Synthesis", affix = "", "(5-10) Mana gained when you Block", statOrder = { 1669 }, level = 15, group = "GainManaOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "mana" }, }, + ["SynthesisImplicitFlatManaOnBlock2"] = { type = "Synthesis", affix = "", "(11-15) Mana gained when you Block", statOrder = { 1669 }, level = 24, group = "GainManaOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "mana" }, }, + ["SynthesisImplicitFlatManaOnBlockJewel1"] = { type = "Synthesis", affix = "", "(3-5) Mana gained when you Block", statOrder = { 1669 }, level = 1, group = "GainManaOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "mana" }, }, + ["SynthesisImplicitAttackDodge1"] = { type = "Synthesis", affix = "", "+3% chance to Suppress Spell Damage", statOrder = { 1055 }, level = 48, group = "ChanceToSuppressSpellsOld", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitAttackDodge2"] = { type = "Synthesis", affix = "", "+(6-7)% chance to Suppress Spell Damage", statOrder = { 1055 }, level = 56, group = "ChanceToSuppressSpellsOld", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitSpellDodge1"] = { type = "Synthesis", affix = "", "+3% chance to Suppress Spell Damage", statOrder = { 1055 }, level = 48, group = "ChanceToSuppressSpellsOld", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitSpellDodge2"] = { type = "Synthesis", affix = "", "+(6-7)% chance to Suppress Spell Damage", statOrder = { 1055 }, level = 56, group = "ChanceToSuppressSpellsOld", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitAttackDodgeMinor1"] = { type = "Synthesis", affix = "", "+1% chance to Suppress Spell Damage", statOrder = { 1055 }, level = 48, group = "ChanceToSuppressSpellsOld", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitAttackDodgeMinor2"] = { type = "Synthesis", affix = "", "+3% chance to Suppress Spell Damage", statOrder = { 1055 }, level = 56, group = "ChanceToSuppressSpellsOld", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitAvoidFire1"] = { type = "Synthesis", affix = "", "(3-5)% chance to Avoid Fire Damage from Hits", statOrder = { 3281 }, level = 60, group = "FireDamageAvoidance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, }, + ["SynthesisImplicitAvoidCold1"] = { type = "Synthesis", affix = "", "(3-5)% chance to Avoid Cold Damage from Hits", statOrder = { 3282 }, level = 60, group = "ColdDamageAvoidance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, }, + ["SynthesisImplicitAvoidLightning1"] = { type = "Synthesis", affix = "", "(3-5)% chance to Avoid Lightning Damage from Hits", statOrder = { 3283 }, level = 60, group = "LightningDamageAvoidance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, }, + ["SynthesisImplicitMaximumAttackDodge1_"] = { type = "Synthesis", affix = "", "Prevent +(1-2)% of Suppressed Spell Damage", statOrder = { 1054 }, level = 65, group = "SpellDamageSuppressed", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitMaximumSpellDodge1"] = { type = "Synthesis", affix = "", "Prevent +(1-2)% of Suppressed Spell Damage", statOrder = { 1054 }, level = 65, group = "SpellDamageSuppressed", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitSpellDamageSuppressed1_"] = { type = "Synthesis", affix = "", "Prevent +(2-3)% of Suppressed Spell Damage", statOrder = { 1054 }, level = 65, group = "SpellDamageSuppressed", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitVitalityReservation1"] = { type = "Synthesis", affix = "", "Vitality has 20% increased Mana Reservation Efficiency", statOrder = { 10318 }, level = 48, group = "VitalityReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, }, + ["SynthesisImplicitVitalityReservationEfficiency1"] = { type = "Synthesis", affix = "", "Vitality has 20% increased Mana Reservation Efficiency", statOrder = { 10319 }, level = 48, group = "VitalityReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, }, + ["SynthesisImplicitDeterminationReservation1"] = { type = "Synthesis", affix = "", "Determination has 20% increased Mana Reservation Efficiency", statOrder = { 6066 }, level = 48, group = "DeterminationReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, }, + ["SynthesisImplicitDeterminationReservationEfficiency1_"] = { type = "Synthesis", affix = "", "Determination has 20% increased Mana Reservation Efficiency", statOrder = { 6067 }, level = 48, group = "DeterminationReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, }, + ["SynthesisImplicitGraceReservation1"] = { type = "Synthesis", affix = "", "Grace has 20% increased Mana Reservation Efficiency", statOrder = { 6778 }, level = 48, group = "GraceReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, }, + ["SynthesisImplicitGraceReservationEfficiency1"] = { type = "Synthesis", affix = "", "Grace has 20% increased Mana Reservation Efficiency", statOrder = { 6779 }, level = 48, group = "GraceReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, }, + ["SynthesisImplicitDisciplineReservation1_"] = { type = "Synthesis", affix = "", "Discipline has 20% increased Mana Reservation Efficiency", statOrder = { 6082 }, level = 48, group = "DisciplineReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, }, + ["SynthesisImplicitDisciplineReservationEfficiency1___"] = { type = "Synthesis", affix = "", "Discipline has 20% increased Mana Reservation Efficiency", statOrder = { 6083 }, level = 48, group = "DisciplineReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, }, + ["SynthesisImplicitPurityOfFireReservation1_"] = { type = "Synthesis", affix = "", "Purity of Fire has 20% increased Mana Reservation Efficiency", statOrder = { 9555 }, level = 48, group = "PurityOfFireReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, }, + ["SynthesisImplicitPurityOfFireReservationEfficiency1"] = { type = "Synthesis", affix = "", "Purity of Fire has 20% increased Mana Reservation Efficiency", statOrder = { 9556 }, level = 48, group = "PurityOfFireReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, }, + ["SynthesisImplicitPurityOfFireReservation2_"] = { type = "Synthesis", affix = "", "Purity of Fire has (60-80)% increased Mana Reservation Efficiency", statOrder = { 9555 }, level = 65, group = "PurityOfFireReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, }, + ["SynthesisImplicitPurityOfFireReservationEfficiency2"] = { type = "Synthesis", affix = "", "Purity of Fire has (60-80)% increased Mana Reservation Efficiency", statOrder = { 9556 }, level = 65, group = "PurityOfFireReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, }, + ["SynthesisImplicitPurityOfIceReservation1_"] = { type = "Synthesis", affix = "", "Purity of Ice has 20% increased Mana Reservation Efficiency", statOrder = { 9558 }, level = 48, group = "PurityOfIceReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, }, + ["SynthesisImplicitPurityOfIceReservationEfficiency1"] = { type = "Synthesis", affix = "", "Purity of Ice has 20% increased Mana Reservation Efficiency", statOrder = { 9559 }, level = 48, group = "PurityOfIceReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, }, + ["SynthesisImplicitPurityOfIceReservation2"] = { type = "Synthesis", affix = "", "Purity of Ice has (60-80)% increased Mana Reservation Efficiency", statOrder = { 9558 }, level = 65, group = "PurityOfIceReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, }, + ["SynthesisImplicitPurityOfIceReservationEfficiency2"] = { type = "Synthesis", affix = "", "Purity of Ice has (60-80)% increased Mana Reservation Efficiency", statOrder = { 9559 }, level = 65, group = "PurityOfIceReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, }, + ["SynthesisImplicitPurityOfLightningReservation1"] = { type = "Synthesis", affix = "", "Purity of Lightning has 20% increased Mana Reservation Efficiency", statOrder = { 9561 }, level = 48, group = "PurityOfLightningReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, }, + ["SynthesisImplicitPurityOfLightningReservationEfficiency1"] = { type = "Synthesis", affix = "", "Purity of Lightning has 20% increased Mana Reservation Efficiency", statOrder = { 9562 }, level = 48, group = "PurityOfLightningReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, }, + ["SynthesisImplicitPurityOfLightningReservation2"] = { type = "Synthesis", affix = "", "Purity of Lightning has (60-80)% increased Mana Reservation Efficiency", statOrder = { 9561 }, level = 65, group = "PurityOfLightningReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, }, + ["SynthesisImplicitPurityOfLightningReservationEfficiency2"] = { type = "Synthesis", affix = "", "Purity of Lightning has (60-80)% increased Mana Reservation Efficiency", statOrder = { 9562 }, level = 65, group = "PurityOfLightningReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, }, + ["SynthesisImplicitSocketedGemReducedReservation1_"] = { type = "Synthesis", affix = "", "Socketed Gems have 20% increased Reservation Efficiency", statOrder = { 455 }, level = 60, group = "DisplaySocketedGemsGetReducedReservation", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, }, + ["SynthesisImplicitSelfAuraEffect1_"] = { type = "Synthesis", affix = "", "(10-15)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3474 }, level = 56, group = "AuraEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, }, + ["SynthesisImplicitDeterminationEffect1"] = { type = "Synthesis", affix = "", "Determination has (15-20)% increased Aura Effect", statOrder = { 3275 }, level = 55, group = "IncreasedAuraEffectDeterminationCorrupted", weightKey = { }, weightVal = { }, modTags = { "aura" }, }, + ["SynthesisImplicitGraceEffect1"] = { type = "Synthesis", affix = "", "Grace has (15-20)% increased Aura Effect", statOrder = { 3271 }, level = 55, group = "IncreasedAuraEffectGraceCorrupted", weightKey = { }, weightVal = { }, modTags = { "aura" }, }, + ["SynthesisImplicitDisciplineEffect1"] = { type = "Synthesis", affix = "", "Discipline has (15-20)% increased Aura Effect", statOrder = { 3276 }, level = 55, group = "IncreasedAuraEffectDisciplineCorrupted", weightKey = { }, weightVal = { }, modTags = { "aura" }, }, + ["SynthesisImplicitDeterminationPhysicalDamageReduction1"] = { type = "Synthesis", affix = "", "(4-6)% additional Physical Damage Reduction while affected by Determination", statOrder = { 4484 }, level = 65, group = "DeterminationPhysicalDamageReduction", weightKey = { }, weightVal = { }, modTags = { "physical" }, }, + ["SynthesisImplicitGraceAdditionalChanceToEvade1"] = { type = "Synthesis", affix = "", "+(4-6)% chance to Evade Attack Hits while affected by Grace", statOrder = { 5573 }, level = 65, group = "GraceAdditionalChanceToEvade", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["SynthesisImplicitDisciplineEnergyShieldRegen1___"] = { type = "Synthesis", affix = "", "Regenerate (1.2-2.2)% of Energy Shield per Second while affected by Discipline", statOrder = { 6346 }, level = 65, group = "DisciplineEnergyShieldRegen", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["SynthesisImplicitReducedManaReservation1"] = { type = "Synthesis", affix = "", "(6-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 2141 }, level = 60, group = "ReducedReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SynthesisImplicitManaReservationEfficiency1"] = { type = "Synthesis", affix = "", "(6-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 2137 }, level = 60, group = "ManaReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SynthesisImplicitSocketedSkillsManaMultiplier1"] = { type = "Synthesis", affix = "", "Socketed Skill Gems get a 96% Cost & Reservation Multiplier", statOrder = { 457 }, level = 24, group = "SocketedSkillsManaMultiplier", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "gem" }, }, + ["SynthesisImplicitSocketedSkillsManaMultiplier2"] = { type = "Synthesis", affix = "", "Socketed Skill Gems get a 94% Cost & Reservation Multiplier", statOrder = { 457 }, level = 36, group = "SocketedSkillsManaMultiplier", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "gem" }, }, + ["SynthesisImplicitSocketedSkillsManaMultiplier3"] = { type = "Synthesis", affix = "", "Socketed Skill Gems get a 92% Cost & Reservation Multiplier", statOrder = { 457 }, level = 48, group = "SocketedSkillsManaMultiplier", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "gem" }, }, + ["SynthesisImplicitGrantsPurityOfFire1"] = { type = "Synthesis", affix = "", "Grants Level 25 Purity of Fire Skill", statOrder = { 537 }, level = 75, group = "PurityOfFireSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["SynthesisImplicitGrantsPurityOfIce1__"] = { type = "Synthesis", affix = "", "Grants Level 25 Purity of Ice Skill", statOrder = { 543 }, level = 75, group = "PurityOfColdSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["SynthesisImplicitGrantsPurityOfLightning1"] = { type = "Synthesis", affix = "", "Grants Level 25 Purity of Lightning Skill", statOrder = { 545 }, level = 75, group = "PurityOfLightningSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["SynthesisImplicitGrantsAnger1"] = { type = "Synthesis", affix = "", "Grants Level 10 Anger Skill", statOrder = { 564 }, level = 45, group = "AngerSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["SynthesisImplicitGrantsAnger2"] = { type = "Synthesis", affix = "", "Grants Level 15 Anger Skill", statOrder = { 564 }, level = 62, group = "AngerSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["SynthesisImplicitGrantsHatred1"] = { type = "Synthesis", affix = "", "Grants Level 10 Hatred Skill", statOrder = { 563 }, level = 45, group = "HatredSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["SynthesisImplicitGrantsHatred2"] = { type = "Synthesis", affix = "", "Grants Level 15 Hatred Skill", statOrder = { 563 }, level = 62, group = "HatredSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["SynthesisImplicitGrantsWrath1"] = { type = "Synthesis", affix = "", "Grants Level 10 Wrath Skill", statOrder = { 562 }, level = 45, group = "WrathSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["SynthesisImplicitGrantsWrath2_"] = { type = "Synthesis", affix = "", "Grants Level 15 Wrath Skill", statOrder = { 562 }, level = 62, group = "WrathSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, ["SynthesisImplicitHasSocket1_"] = { type = "Synthesis", affix = "", "Has 1 Socket", statOrder = { 50 }, level = 75, group = "HasXSockets", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitCurseDuration1"] = { type = "Synthesis", affix = "", "Curse Skills have (10-15)% increased Skill Effect Duration", statOrder = { 5703 }, level = 36, group = "CurseDuration", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, - ["SynthesisImplicitCurseDuration2"] = { type = "Synthesis", affix = "", "Curse Skills have (16-20)% increased Skill Effect Duration", statOrder = { 5703 }, level = 48, group = "CurseDuration", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, - ["SynthesisImplicitCurseEffect1"] = { type = "Synthesis", affix = "", "(6-10)% increased Effect of your Curses", statOrder = { 2472 }, level = 60, group = "CurseEffectiveness", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, - ["SynthesisImplicitCurseOnHitFlammability1"] = { type = "Synthesis", affix = "", "Curse Enemies with Flammability on Hit", statOrder = { 2406 }, level = 45, group = "FlammabilityOnHitLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, - ["SynthesisImplicitCurseOnHitFlammability2"] = { type = "Synthesis", affix = "", "Curse Enemies with Flammability on Hit", statOrder = { 2406 }, level = 56, group = "FlammabilityOnHitLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, - ["SynthesisImplicitCurseOnHitFrostbite1_"] = { type = "Synthesis", affix = "", "Curse Enemies with Frostbite on Hit", statOrder = { 2407 }, level = 45, group = "FrostbiteOnHitLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, - ["SynthesisImplicitCurseOnHitFrostbite2_"] = { type = "Synthesis", affix = "", "Curse Enemies with Frostbite on Hit", statOrder = { 2407 }, level = 56, group = "FrostbiteOnHitLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, - ["SynthesisImplicitCurseOnHitConductivity1"] = { type = "Synthesis", affix = "", "Curse Enemies with Conductivity on Hit", statOrder = { 2403 }, level = 45, group = "ConductivityOnHitLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, - ["SynthesisImplicitCurseOnHitConductivity2"] = { type = "Synthesis", affix = "", "Curse Enemies with Conductivity on Hit", statOrder = { 2403 }, level = 56, group = "ConductivityOnHitLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, - ["SynthesisImplicitCurseOnHitVulnerability1"] = { type = "Synthesis", affix = "", "Curse Enemies with Vulnerability on Hit", statOrder = { 2399 }, level = 45, group = "CurseOnHitLevelVulnerability", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, - ["SynthesisImplicitCurseOnHitVulnerability2"] = { type = "Synthesis", affix = "", "Curse Enemies with Vulnerability on Hit", statOrder = { 2399 }, level = 56, group = "CurseOnHitLevelVulnerability", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, - ["SynthesisImplicitCurseOnHitDespair1"] = { type = "Synthesis", affix = "", "Curse Enemies with Despair on Hit", statOrder = { 2404 }, level = 45, group = "CurseOnHitDespair", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, - ["SynthesisImplicitCurseOnHitElementalWeakness1__"] = { type = "Synthesis", affix = "", "Curse Enemies with Elemental Weakness on Hit", statOrder = { 2401 }, level = 45, group = "CurseOnHitLevelElementalWeakness", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, - ["SynthesisImplicitCurseEffectFlammability1"] = { type = "Synthesis", affix = "", "(20-30)% increased Flammability Curse Effect", statOrder = { 3875 }, level = 55, group = "CurseEffectFlammability", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, - ["SynthesisImplicitCurseEffectFlammabilityOneHand1"] = { type = "Synthesis", affix = "", "(10-15)% increased Flammability Curse Effect", statOrder = { 3875 }, level = 55, group = "CurseEffectFlammability", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, - ["SynthesisImplicitCurseEffectFrostbite1"] = { type = "Synthesis", affix = "", "(20-30)% increased Frostbite Curse Effect", statOrder = { 3876 }, level = 55, group = "CurseEffectFrostbite", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, - ["SynthesisImplicitCurseEffectFrostbiteOneHand1"] = { type = "Synthesis", affix = "", "(10-15)% increased Frostbite Curse Effect", statOrder = { 3876 }, level = 55, group = "CurseEffectFrostbite", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, - ["SynthesisImplicitCurseEffectConductivity1"] = { type = "Synthesis", affix = "", "(20-30)% increased Conductivity Curse Effect", statOrder = { 3872 }, level = 55, group = "CurseEffectConductivity", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, - ["SynthesisImplicitCurseEffectConductivityOneHand1"] = { type = "Synthesis", affix = "", "(10-15)% increased Conductivity Curse Effect", statOrder = { 3872 }, level = 55, group = "CurseEffectConductivity", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, - ["SynthesisImplicitCurseEffectVulnerability1_"] = { type = "Synthesis", affix = "", "(20-30)% increased Vulnerability Curse Effect", statOrder = { 3878 }, level = 55, group = "CurseEffectVulnerability", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, - ["SynthesisImplicitCurseEffectElementalWeakness1"] = { type = "Synthesis", affix = "", "(20-30)% increased Elemental Weakness Curse Effect", statOrder = { 3873 }, level = 55, group = "CurseEffectElementalWeakness", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, - ["SynthesisImplicitDamageAffectedByAuras1"] = { type = "Synthesis", affix = "", "You and nearby Allies deal (7-9)% increased Damage", statOrder = { 3931 }, level = 24, group = "DamageAffectedByAuras", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitDamageAffectedByAuras2"] = { type = "Synthesis", affix = "", "You and nearby Allies deal (10-12)% increased Damage", statOrder = { 3931 }, level = 36, group = "DamageAffectedByAuras", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitDamageAffectedByAuras3_"] = { type = "Synthesis", affix = "", "You and nearby Allies deal (13-15)% increased Damage", statOrder = { 3931 }, level = 48, group = "DamageAffectedByAuras", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitDamageAffectedByAurasTwoHand1"] = { type = "Synthesis", affix = "", "You and nearby Allies deal (13-16)% increased Damage", statOrder = { 3931 }, level = 24, group = "DamageAffectedByAuras", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitDamageAffectedByAurasTwoHand2_"] = { type = "Synthesis", affix = "", "You and nearby Allies deal (17-21)% increased Damage", statOrder = { 3931 }, level = 36, group = "DamageAffectedByAuras", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitDamageAffectedByAurasTwoHand3"] = { type = "Synthesis", affix = "", "You and nearby Allies deal (22-25)% increased Damage", statOrder = { 3931 }, level = 48, group = "DamageAffectedByAuras", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitDamageWhileLeeching1"] = { type = "Synthesis", affix = "", "(10-12)% increased Damage while Leeching", statOrder = { 2932 }, level = 36, group = "DamageWhileLeeching", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitDamageWhileLeeching2"] = { type = "Synthesis", affix = "", "(13-15)% increased Damage while Leeching", statOrder = { 2932 }, level = 48, group = "DamageWhileLeeching", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitDamageWhileLeechingLife1"] = { type = "Synthesis", affix = "", "(13-16)% increased Damage while Leeching Life", statOrder = { 1102 }, level = 1, group = "DamageWhileLeechingLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitDamageWhileLeechingLife2__"] = { type = "Synthesis", affix = "", "(17-21)% increased Damage while Leeching Life", statOrder = { 1102 }, level = 15, group = "DamageWhileLeechingLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitDamageWhileLeechingLife3"] = { type = "Synthesis", affix = "", "(22-25)% increased Damage while Leeching Life", statOrder = { 1102 }, level = 24, group = "DamageWhileLeechingLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitDamageWhileLeechingMana1"] = { type = "Synthesis", affix = "", "(13-16)% increased Damage while Leeching Mana", statOrder = { 1104 }, level = 1, group = "DamageWhileLeechingMana", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitDamageWhileLeechingMana2_"] = { type = "Synthesis", affix = "", "(17-21)% increased Damage while Leeching Mana", statOrder = { 1104 }, level = 15, group = "DamageWhileLeechingMana", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitDamageWhileLeechingMana3_"] = { type = "Synthesis", affix = "", "(22-25)% increased Damage while Leeching Mana", statOrder = { 1104 }, level = 24, group = "DamageWhileLeechingMana", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitDamageDuringFlaskEffect1"] = { type = "Synthesis", affix = "", "(10-12)% increased Damage during any Flask Effect", statOrder = { 3944 }, level = 36, group = "DamageDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "damage" }, }, - ["SynthesisImplicitDamageDuringFlaskEffect2"] = { type = "Synthesis", affix = "", "(13-15)% increased Damage during any Flask Effect", statOrder = { 3944 }, level = 48, group = "DamageDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "damage" }, }, - ["SynthesisImplicitDamageWithTriggeredSpells1"] = { type = "Synthesis", affix = "", "Triggered Spells deal (10-12)% increased Spell Damage", statOrder = { 9908 }, level = 36, group = "DamageWithTriggeredSpells", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SynthesisImplicitDamageWithTriggeredSpells2"] = { type = "Synthesis", affix = "", "Triggered Spells deal (13-15)% increased Spell Damage", statOrder = { 9908 }, level = 48, group = "DamageWithTriggeredSpells", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SynthesisImplicitVaalSkillDamage1"] = { type = "Synthesis", affix = "", "(13-16)% increased Damage with Vaal Skills", statOrder = { 2961 }, level = 24, group = "VaalSkillDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "vaal" }, }, - ["SynthesisImplicitVaalSkillDamage2"] = { type = "Synthesis", affix = "", "(17-21)% increased Damage with Vaal Skills", statOrder = { 2961 }, level = 36, group = "VaalSkillDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "vaal" }, }, - ["SynthesisImplicitVaalSkillDamage3"] = { type = "Synthesis", affix = "", "(22-25)% increased Damage with Vaal Skills", statOrder = { 2961 }, level = 48, group = "VaalSkillDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "vaal" }, }, - ["SynthesisImplicitVaalSkillDamageWeapon1"] = { type = "Synthesis", affix = "", "(25-30)% increased Damage with Vaal Skills", statOrder = { 2961 }, level = 36, group = "VaalSkillDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "vaal" }, }, - ["SynthesisImplicitVaalSkillDamageWeapon2"] = { type = "Synthesis", affix = "", "(31-35)% increased Damage with Vaal Skills", statOrder = { 2961 }, level = 48, group = "VaalSkillDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "vaal" }, }, - ["SynthesisImplicitVaalSkillDamageWeaponTwoHand1"] = { type = "Synthesis", affix = "", "(36-44)% increased Damage with Vaal Skills", statOrder = { 2961 }, level = 36, group = "VaalSkillDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "vaal" }, }, - ["SynthesisImplicitVaalSkillDamageWeaponTwoHand2"] = { type = "Synthesis", affix = "", "(45-51)% increased Damage with Vaal Skills", statOrder = { 2961 }, level = 48, group = "VaalSkillDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "vaal" }, }, - ["SynthesisImplicitDamageWithTriggeredSpellsWeapon1_"] = { type = "Synthesis", affix = "", "Triggered Spells deal (19-22)% increased Spell Damage", statOrder = { 9908 }, level = 36, group = "DamageWithTriggeredSpells", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SynthesisImplicitDamageWithTriggeredSpellsWeapon2"] = { type = "Synthesis", affix = "", "Triggered Spells deal (23-26)% increased Spell Damage", statOrder = { 9908 }, level = 48, group = "DamageWithTriggeredSpells", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SynthesisImplicitDamageWithTriggeredSpellsWeaponTwoHand1"] = { type = "Synthesis", affix = "", "Triggered Spells deal (27-32)% increased Spell Damage", statOrder = { 9908 }, level = 36, group = "DamageWithTriggeredSpells", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SynthesisImplicitDamageWithTriggeredSpellsWeaponTwoHand2_"] = { type = "Synthesis", affix = "", "Triggered Spells deal (33-38)% increased Spell Damage", statOrder = { 9908 }, level = 48, group = "DamageWithTriggeredSpells", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SynthesisImplicitDoubleDamageChanceOneHand1"] = { type = "Synthesis", affix = "", "2% chance to deal Double Damage", statOrder = { 5369 }, level = 36, group = "DoubleDamageChance", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitDoubleDamageChanceOneHand2"] = { type = "Synthesis", affix = "", "3% chance to deal Double Damage", statOrder = { 5369 }, level = 48, group = "DoubleDamageChance", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitDoubleDamageChanceTwoHand1"] = { type = "Synthesis", affix = "", "4% chance to deal Double Damage", statOrder = { 5369 }, level = 36, group = "DoubleDamageChance", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitDoubleDamageChanceTwoHand2_"] = { type = "Synthesis", affix = "", "5% chance to deal Double Damage", statOrder = { 5369 }, level = 48, group = "DoubleDamageChance", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitAreaDamage1"] = { type = "Synthesis", affix = "", "(10-12)% increased Area Damage", statOrder = { 1912 }, level = 36, group = "AreaDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitAreaDamage2"] = { type = "Synthesis", affix = "", "(13-15)% increased Area Damage", statOrder = { 1912 }, level = 48, group = "AreaDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitProjectileDamage1"] = { type = "Synthesis", affix = "", "(10-12)% increased Projectile Damage", statOrder = { 1873 }, level = 36, group = "ProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitProjectileDamage2_"] = { type = "Synthesis", affix = "", "(13-15)% increased Projectile Damage", statOrder = { 1873 }, level = 48, group = "ProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitMeleeDamage1"] = { type = "Synthesis", affix = "", "(10-12)% increased Melee Damage", statOrder = { 1119 }, level = 36, group = "MeleeDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, - ["SynthesisImplicitMeleeDamage2"] = { type = "Synthesis", affix = "", "(13-15)% increased Melee Damage", statOrder = { 1119 }, level = 48, group = "MeleeDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, - ["SynthesisImplicitMinionDamage1"] = { type = "Synthesis", affix = "", "Minions deal 8% increased Damage", statOrder = { 1852 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, - ["SynthesisImplicitMinionDamage2_"] = { type = "Synthesis", affix = "", "Minions deal (9-10)% increased Damage", statOrder = { 1852 }, level = 15, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, - ["SynthesisImplicitMinionDamage3"] = { type = "Synthesis", affix = "", "Minions deal (11-12)% increased Damage", statOrder = { 1852 }, level = 24, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, - ["SynthesisImplicitMinionDamage4"] = { type = "Synthesis", affix = "", "Minions deal (13-14)% increased Damage", statOrder = { 1852 }, level = 36, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, - ["SynthesisImplicitMinionDamage5"] = { type = "Synthesis", affix = "", "Minions deal (15-16)% increased Damage", statOrder = { 1852 }, level = 48, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, - ["SynthesisImplicitWeaponMinionDamage1_"] = { type = "Synthesis", affix = "", "Minions deal (19-22)% increased Damage", statOrder = { 1852 }, level = 15, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, - ["SynthesisImplicitWeaponMinionDamage2"] = { type = "Synthesis", affix = "", "Minions deal (23-26)% increased Damage", statOrder = { 1852 }, level = 24, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, - ["SynthesisImplicitWeaponMinionDamage3"] = { type = "Synthesis", affix = "", "Minions deal (27-30)% increased Damage", statOrder = { 1852 }, level = 36, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, - ["SynthesisImplicitWeaponMinionDamageTwoHand1"] = { type = "Synthesis", affix = "", "Minions deal (27-32)% increased Damage", statOrder = { 1852 }, level = 15, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, - ["SynthesisImplicitWeaponMinionDamageTwoHand2"] = { type = "Synthesis", affix = "", "Minions deal (33-38)% increased Damage", statOrder = { 1852 }, level = 24, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, - ["SynthesisImplicitWeaponMinionDamageTwoHand3"] = { type = "Synthesis", affix = "", "Minions deal (39-44)% increased Damage", statOrder = { 1852 }, level = 36, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, - ["SynthesisImplicitMinionDamageJewel1_"] = { type = "Synthesis", affix = "", "Minions deal (2-3)% increased Damage", statOrder = { 1852 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, - ["SynthesisImplicitMinionDamageJewel2_"] = { type = "Synthesis", affix = "", "Minions deal (4-5)% increased Damage", statOrder = { 1852 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, - ["SynthesisImplicitZombieDamage1"] = { type = "Synthesis", affix = "", "Raised Zombies deal (30-35)% increased Damage", statOrder = { 3506 }, level = 55, group = "ZombieIncreasedDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, - ["SynthesisImplicitSkeletonDamage1_"] = { type = "Synthesis", affix = "", "Skeletons deal (30-35)% increased Damage", statOrder = { 3522 }, level = 55, group = "SkeletonDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, - ["SynthesisImplicitSpectreDamage1"] = { type = "Synthesis", affix = "", "Raised Spectres have (30-35)% increased Damage", statOrder = { 3320 }, level = 55, group = "SpectreDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, - ["SynthesisImplicitAnimateGuardianResistances1"] = { type = "Synthesis", affix = "", "+15% to Animated Guardian Elemental Resistances", statOrder = { 3851 }, level = 55, group = "AnimateGuardianResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance", "minion" }, }, - ["SynthesisImplicitItemDropsOnDeathAnimateGuardian1_"] = { type = "Synthesis", affix = "", "Item drops on Death if Equipped by an Animated Guardian", statOrder = { 2435 }, level = 60, group = "ItemDropsOnGuardianDeath", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitMinionLife1_"] = { type = "Synthesis", affix = "", "Minions have (7-9)% increased maximum Life", statOrder = { 1647 }, level = 15, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, }, - ["SynthesisImplicitMinionLife2__"] = { type = "Synthesis", affix = "", "Minions have (10-12)% increased maximum Life", statOrder = { 1647 }, level = 24, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, }, - ["SynthesisImplicitMinionLife3"] = { type = "Synthesis", affix = "", "Minions have (13-15)% increased maximum Life", statOrder = { 1647 }, level = 36, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, }, - ["SynthesisImplicitMinionLifeRegen1"] = { type = "Synthesis", affix = "", "Minions Regenerate 0.3% of Life per second", statOrder = { 2785 }, level = 36, group = "MinionLifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, }, - ["SynthesisImplicitMinionLifeRegen2"] = { type = "Synthesis", affix = "", "Minions Regenerate 0.5% of Life per second", statOrder = { 2785 }, level = 48, group = "MinionLifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, }, - ["SynthesisImplicitMinionLifeJewel1"] = { type = "Synthesis", affix = "", "Minions have (2-3)% increased maximum Life", statOrder = { 1647 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, }, - ["SynthesisImplicitMinionLifeJewel2"] = { type = "Synthesis", affix = "", "Minions have (4-5)% increased maximum Life", statOrder = { 1647 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, }, - ["SynthesisImplicitMinionResistanceJewel1"] = { type = "Synthesis", affix = "", "Minions have +3% to all Elemental Resistances", statOrder = { 2786 }, level = 1, group = "MinionElementalResistancesForJewel", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance", "minion" }, }, - ["SynthesisImplicitMinionResistanceJewel2"] = { type = "Synthesis", affix = "", "Minions have +(4-5)% to all Elemental Resistances", statOrder = { 2786 }, level = 1, group = "MinionElementalResistancesForJewel", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance", "minion" }, }, - ["SynthesisImplicitMinionMovementSpeed1"] = { type = "Synthesis", affix = "", "Minions have (4-5)% increased Movement Speed", statOrder = { 1650 }, level = 24, group = "MinionMovementSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, }, - ["SynthesisImplicitMinionMovementSpeed2"] = { type = "Synthesis", affix = "", "Minions have (6-7)% increased Movement Speed", statOrder = { 1650 }, level = 36, group = "MinionMovementSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, }, - ["SynthesisImplicitMinionMovementSpeed3"] = { type = "Synthesis", affix = "", "Minions have (8-10)% increased Movement Speed", statOrder = { 1650 }, level = 48, group = "MinionMovementSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, }, - ["SynthesisImplicitMinionMovementSpeedJewel1"] = { type = "Synthesis", affix = "", "Minions have (1-2)% increased Movement Speed", statOrder = { 1650 }, level = 1, group = "MinionMovementSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, }, - ["SynthesisImplicitMinionMovementSpeedJewel2_"] = { type = "Synthesis", affix = "", "Minions have 3% increased Movement Speed", statOrder = { 1650 }, level = 1, group = "MinionMovementSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, }, - ["SynthesisImplicitMinionAttackSpeedJewel1_"] = { type = "Synthesis", affix = "", "Minions have (1-2)% increased Attack Speed", statOrder = { 2781 }, level = 1, group = "MinionAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed", "minion" }, }, - ["SynthesisImplicitMinionAttackSpeedJewel2"] = { type = "Synthesis", affix = "", "Minions have 3% increased Attack Speed", statOrder = { 2781 }, level = 1, group = "MinionAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed", "minion" }, }, - ["SynthesisImplicitMinionCastSpeedJewel1"] = { type = "Synthesis", affix = "", "Minions have (1-2)% increased Cast Speed", statOrder = { 2782 }, level = 1, group = "MinionCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed", "minion" }, }, - ["SynthesisImplicitMinionCastSpeedJewel2"] = { type = "Synthesis", affix = "", "Minions have 3% increased Cast Speed", statOrder = { 2782 }, level = 1, group = "MinionCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed", "minion" }, }, - ["SynthesisImplicitMinionAccuracyJewel1"] = { type = "Synthesis", affix = "", "2% increased Minion Accuracy Rating", statOrder = { 8806 }, level = 1, group = "MinionAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack", "minion" }, }, - ["SynthesisImplicitMinionAccuracyJewel2"] = { type = "Synthesis", affix = "", "(3-4)% increased Minion Accuracy Rating", statOrder = { 8806 }, level = 1, group = "MinionAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack", "minion" }, }, - ["SynthesisImplicitEnduranceChargeDuration1"] = { type = "Synthesis", affix = "", "(8-11)% increased Endurance Charge Duration", statOrder = { 2002 }, level = 45, group = "EnduranceChargeDuration", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, }, - ["SynthesisImplicitEnduranceChargeDuration2__"] = { type = "Synthesis", affix = "", "(12-15)% increased Endurance Charge Duration", statOrder = { 2002 }, level = 50, group = "EnduranceChargeDuration", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, }, - ["SynthesisImplicitEnduranceChargeOnKill1"] = { type = "Synthesis", affix = "", "(5-10)% chance to gain an Endurance Charge on Kill", statOrder = { 2504 }, level = 55, group = "EnduranceChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, }, - ["SynthesisImplicitEnduranceChargeGeneration1"] = { type = "Synthesis", affix = "", "Gain 1 Endurance Charge every second if you've been Hit Recently", statOrder = { 6411 }, level = 60, group = "EnduranceChargeIfHitRecently", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, }, - ["SynthesisImplicitMinimumEnduranceCharge1"] = { type = "Synthesis", affix = "", "+(1-2) to Minimum Endurance Charges", statOrder = { 1684 }, level = 55, group = "MinimumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, }, - ["SynthesisImplicitMaximumEnduranceCharge1"] = { type = "Synthesis", affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1685 }, level = 60, group = "MaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, }, - ["SynthesisImplicitDamagePerEnduranceChargeMinor1"] = { type = "Synthesis", affix = "", "2% increased Damage per Endurance Charge", statOrder = { 3065 }, level = 40, group = "DamagePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitDamagePerEnduranceCharge1"] = { type = "Synthesis", affix = "", "(3-4)% increased Damage per Endurance Charge", statOrder = { 3065 }, level = 55, group = "DamagePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitDamagePerEnduranceCharge2"] = { type = "Synthesis", affix = "", "(4-5)% increased Damage per Endurance Charge", statOrder = { 3065 }, level = 55, group = "DamagePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitLifeRegenPerEnduranceCharge1____"] = { type = "Synthesis", affix = "", "Regenerate 0.3% of Life per second per Endurance Charge", statOrder = { 1458 }, level = 50, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, - ["SynthesisImplicitFrenzyChargeDuration1_"] = { type = "Synthesis", affix = "", "(8-11)% increased Frenzy Charge Duration", statOrder = { 2004 }, level = 45, group = "FrenzyChargeDuration", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, }, - ["SynthesisImplicitFrenzyChargeDuration2_"] = { type = "Synthesis", affix = "", "(12-15)% increased Frenzy Charge Duration", statOrder = { 2004 }, level = 50, group = "FrenzyChargeDuration", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, }, - ["SynthesisImplicitFrenzyChargeOnKill1"] = { type = "Synthesis", affix = "", "(5-10)% chance to gain a Frenzy Charge on Kill", statOrder = { 2506 }, level = 55, group = "FrenzyChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, }, - ["SynthesisImplicitFrenzyChargeGeneration1"] = { type = "Synthesis", affix = "", "10% chance to gain a Frenzy Charge on Hit", statOrder = { 1714 }, level = 60, group = "FrenzyChargeOnHitChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, }, - ["SynthesisImplicitMinimumFrenzyCharge1_"] = { type = "Synthesis", affix = "", "+(1-2) to Minimum Frenzy Charges", statOrder = { 1689 }, level = 55, group = "MinimumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, }, - ["SynthesisImplicitMaximumFrenzyCharge1"] = { type = "Synthesis", affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1690 }, level = 60, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, }, - ["SynthesisImplicitDamagePerFrenzyChargeMinor1_"] = { type = "Synthesis", affix = "", "2% increased Damage per Frenzy Charge", statOrder = { 3152 }, level = 40, group = "DamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitDamagePerFrenzyCharge1_"] = { type = "Synthesis", affix = "", "(3-4)% increased Damage per Frenzy Charge", statOrder = { 3152 }, level = 55, group = "DamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitDamagePerFrenzyCharge2_"] = { type = "Synthesis", affix = "", "(4-5)% increased Damage per Frenzy Charge", statOrder = { 3152 }, level = 55, group = "DamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitEvasionPerFrenzyCharge1_"] = { type = "Synthesis", affix = "", "6% increased Evasion Rating per Frenzy Charge", statOrder = { 1439 }, level = 50, group = "IncreasedEvasionRatingPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, - ["SynthesisImplicitPowerChargeDuration1"] = { type = "Synthesis", affix = "", "(8-11)% increased Power Charge Duration", statOrder = { 2019 }, level = 45, group = "IncreasedPowerChargeDuration", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, }, - ["SynthesisImplicitPowerChargeDuration2"] = { type = "Synthesis", affix = "", "(12-15)% increased Power Charge Duration", statOrder = { 2019 }, level = 50, group = "IncreasedPowerChargeDuration", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, }, - ["SynthesisImplicitPowerChargeOnKill1"] = { type = "Synthesis", affix = "", "(5-10)% chance to gain a Power Charge on Kill", statOrder = { 2508 }, level = 55, group = "PowerChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, }, - ["SynthesisImplicitPowerChargeGeneration1_"] = { type = "Synthesis", affix = "", "15% chance to gain a Power Charge on Critical Strike", statOrder = { 1711 }, level = 60, group = "PowerChargeOnCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "power_charge", "critical" }, }, - ["SynthesisImplicitMinimumPowerCharge1"] = { type = "Synthesis", affix = "", "+(1-2) to Minimum Power Charges", statOrder = { 1694 }, level = 55, group = "MinimumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, }, - ["SynthesisImplicitMaximumPowerCharge1"] = { type = "Synthesis", affix = "", "+1 to Maximum Power Charges", statOrder = { 1695 }, level = 60, group = "IncreasedMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, }, - ["SynthesisImplicitDamagePerPowerChargeMinor1___"] = { type = "Synthesis", affix = "", "2% increased Damage per Power Charge", statOrder = { 5766 }, level = 40, group = "IncreasedDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitDamagePerPowerCharge1_"] = { type = "Synthesis", affix = "", "(3-4)% increased Damage per Power Charge", statOrder = { 5766 }, level = 55, group = "IncreasedDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitDamagePerPowerCharge2"] = { type = "Synthesis", affix = "", "(4-5)% increased Damage per Power Charge", statOrder = { 5766 }, level = 55, group = "IncreasedDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitSpellDamagePerPowerCharge1"] = { type = "Synthesis", affix = "", "6% increased Spell Damage per Power Charge", statOrder = { 2017 }, level = 50, group = "IncreasedSpellDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SynthesisImplicitMovementVelocity1"] = { type = "Synthesis", affix = "", "4% increased Movement Speed", statOrder = { 1679 }, level = 24, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, - ["SynthesisImplicitMovementVelocity2"] = { type = "Synthesis", affix = "", "(5-6)% increased Movement Speed", statOrder = { 1679 }, level = 36, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, - ["SynthesisImplicitMovementVelocity3___"] = { type = "Synthesis", affix = "", "(7-8)% increased Movement Speed", statOrder = { 1679 }, level = 48, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, - ["SynthesisImplicitTrinketMovementVelocity1"] = { type = "Synthesis", affix = "", "(4-5)% increased Movement Speed", statOrder = { 1679 }, level = 45, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, - ["SynthesisImplicitMovementVelocityJewel1___"] = { type = "Synthesis", affix = "", "1% increased Movement Speed", statOrder = { 1679 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, - ["SynthesisImplicitMovementVelocityJewel2"] = { type = "Synthesis", affix = "", "2% increased Movement Speed", statOrder = { 1679 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, - ["SynthesisImplicitOnslaught1"] = { type = "Synthesis", affix = "", "Onslaught", statOrder = { 3460 }, level = 60, group = "HasOnslaught", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitProjectileSpeed1"] = { type = "Synthesis", affix = "", "(9-10)% increased Projectile Speed", statOrder = { 1677 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, - ["SynthesisImplicitProjectileSpeed2"] = { type = "Synthesis", affix = "", "(11-12)% increased Projectile Speed", statOrder = { 1677 }, level = 15, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, - ["SynthesisImplicitProjectileSpeed3"] = { type = "Synthesis", affix = "", "(13-14)% increased Projectile Speed", statOrder = { 1677 }, level = 24, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, - ["SynthesisImplicitProjectileSpeed4"] = { type = "Synthesis", affix = "", "(15-17)% increased Projectile Speed", statOrder = { 1677 }, level = 36, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, - ["SynthesisImplicitProjectileSpeed5_"] = { type = "Synthesis", affix = "", "(18-20)% increased Projectile Speed", statOrder = { 1677 }, level = 48, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, - ["SynthesisImplicitProjectileSpeedJewel1"] = { type = "Synthesis", affix = "", "(1-2)% increased Projectile Speed", statOrder = { 1677 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, - ["SynthesisImplicitProjectileSpeedJewel2__"] = { type = "Synthesis", affix = "", "(3-5)% increased Projectile Speed", statOrder = { 1677 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, - ["SynthesisImplicitAreaOfEffectJewel1_"] = { type = "Synthesis", affix = "", "(1-2)% increased Area of Effect", statOrder = { 1761 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitAreaOfEffectJewel2"] = { type = "Synthesis", affix = "", "(3-5)% increased Area of Effect", statOrder = { 1761 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitAttackSpeed1"] = { type = "Synthesis", affix = "", "3% increased Attack Speed", statOrder = { 1294 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, - ["SynthesisImplicitAttackSpeed2_"] = { type = "Synthesis", affix = "", "4% increased Attack Speed", statOrder = { 1294 }, level = 15, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, - ["SynthesisImplicitAttackSpeed3"] = { type = "Synthesis", affix = "", "5% increased Attack Speed", statOrder = { 1294 }, level = 24, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, - ["SynthesisImplicitAttackSpeedJewel1"] = { type = "Synthesis", affix = "", "1% increased Attack Speed", statOrder = { 1294 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, - ["SynthesisImplicitAttackSpeedJewel2"] = { type = "Synthesis", affix = "", "2% increased Attack Speed", statOrder = { 1294 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, - ["SynthesisImplicitLocalAttackSpeed1_"] = { type = "Synthesis", affix = "", "(3-4)% increased Attack Speed", statOrder = { 1297 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, - ["SynthesisImplicitLocalAttackSpeed2"] = { type = "Synthesis", affix = "", "(5-6)% increased Attack Speed", statOrder = { 1297 }, level = 15, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, - ["SynthesisImplicitLocalAttackSpeed3"] = { type = "Synthesis", affix = "", "(7-8)% increased Attack Speed", statOrder = { 1297 }, level = 24, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, - ["SynthesisImplicitMaceIncreasedAttackSpeedJewel1"] = { type = "Synthesis", affix = "", "(1-2)% increased Attack Speed with Maces or Sceptres", statOrder = { 1308 }, level = 1, group = "MaceIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, - ["SynthesisImplicitAxeIncreasedAttackSpeedJewel1"] = { type = "Synthesis", affix = "", "(1-2)% increased Attack Speed with Axes", statOrder = { 1304 }, level = 1, group = "AxeIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, - ["SynthesisImplicitSwordIncreasedAttackSpeedJewel1"] = { type = "Synthesis", affix = "", "(1-2)% increased Attack Speed with Swords", statOrder = { 1310 }, level = 1, group = "SwordIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, - ["SynthesisImplicitBowIncreasedAttackSpeedJewel1_"] = { type = "Synthesis", affix = "", "(1-2)% increased Attack Speed with Bows", statOrder = { 1309 }, level = 1, group = "BowIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, - ["SynthesisImplicitClawIncreasedAttackSpeedJewel1"] = { type = "Synthesis", affix = "", "(1-2)% increased Attack Speed with Claws", statOrder = { 1306 }, level = 1, group = "ClawIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, - ["SynthesisImplicitDaggerIncreasedAttackSpeedJewel1"] = { type = "Synthesis", affix = "", "(1-2)% increased Attack Speed with Daggers", statOrder = { 1307 }, level = 1, group = "DaggerIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, - ["SynthesisImplicitWandIncreasedAttackSpeedJewel1"] = { type = "Synthesis", affix = "", "(1-2)% increased Attack Speed with Wands", statOrder = { 1311 }, level = 1, group = "WandIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, - ["SynthesisImplicitStaffIncreasedAttackSpeedJewel1"] = { type = "Synthesis", affix = "", "(1-2)% increased Attack Speed with Staves", statOrder = { 1305 }, level = 1, group = "StaffIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, - ["SynthesisImplicitMaceIncreasedAttackSpeedJewel2"] = { type = "Synthesis", affix = "", "3% increased Attack Speed with Maces or Sceptres", statOrder = { 1308 }, level = 1, group = "MaceIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, - ["SynthesisImplicitAxeIncreasedAttackSpeedJewel2"] = { type = "Synthesis", affix = "", "3% increased Attack Speed with Axes", statOrder = { 1304 }, level = 1, group = "AxeIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, - ["SynthesisImplicitSwordIncreasedAttackSpeedJewel2_"] = { type = "Synthesis", affix = "", "3% increased Attack Speed with Swords", statOrder = { 1310 }, level = 1, group = "SwordIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, - ["SynthesisImplicitBowIncreasedAttackSpeedJewel2"] = { type = "Synthesis", affix = "", "3% increased Attack Speed with Bows", statOrder = { 1309 }, level = 1, group = "BowIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, - ["SynthesisImplicitClawIncreasedAttackSpeedJewel2"] = { type = "Synthesis", affix = "", "3% increased Attack Speed with Claws", statOrder = { 1306 }, level = 1, group = "ClawIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, - ["SynthesisImplicitDaggerIncreasedAttackSpeedJewel2"] = { type = "Synthesis", affix = "", "3% increased Attack Speed with Daggers", statOrder = { 1307 }, level = 1, group = "DaggerIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, - ["SynthesisImplicitWandIncreasedAttackSpeedJewel2"] = { type = "Synthesis", affix = "", "3% increased Attack Speed with Wands", statOrder = { 1311 }, level = 1, group = "WandIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, - ["SynthesisImplicitStaffIncreasedAttackSpeedJewel2"] = { type = "Synthesis", affix = "", "3% increased Attack Speed with Staves", statOrder = { 1305 }, level = 1, group = "StaffIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, - ["SynthesisImplicitCastSpeed1"] = { type = "Synthesis", affix = "", "3% increased Cast Speed", statOrder = { 1330 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, - ["SynthesisImplicitCastSpeed2"] = { type = "Synthesis", affix = "", "4% increased Cast Speed", statOrder = { 1330 }, level = 15, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, - ["SynthesisImplicitCastSpeed3"] = { type = "Synthesis", affix = "", "5% increased Cast Speed", statOrder = { 1330 }, level = 24, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, - ["SynthesisImplicitCastSpeedJewel1"] = { type = "Synthesis", affix = "", "1% increased Cast Speed", statOrder = { 1330 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, - ["SynthesisImplicitCastSpeedJewel2_"] = { type = "Synthesis", affix = "", "2% increased Cast Speed", statOrder = { 1330 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, - ["SynthesisImplicitWeaponCastSpeed1_"] = { type = "Synthesis", affix = "", "(5-6)% increased Cast Speed", statOrder = { 1330 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, - ["SynthesisImplicitWeaponCastSpeed2"] = { type = "Synthesis", affix = "", "(7-9)% increased Cast Speed", statOrder = { 1330 }, level = 15, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, - ["SynthesisImplicitWeaponCastSpeed3"] = { type = "Synthesis", affix = "", "(10-12)% increased Cast Speed", statOrder = { 1330 }, level = 24, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, - ["SynthesisImplicitTwoHandWeaponCastSpeed1"] = { type = "Synthesis", affix = "", "(11-12)% increased Cast Speed", statOrder = { 1330 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, - ["SynthesisImplicitTwoHandWeaponCastSpeed2"] = { type = "Synthesis", affix = "", "(13-15)% increased Cast Speed", statOrder = { 1330 }, level = 15, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, - ["SynthesisImplicitTwoHandWeaponCastSpeed3"] = { type = "Synthesis", affix = "", "(16-18)% increased Cast Speed", statOrder = { 1330 }, level = 24, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, - ["SynthesisImplicitCastSpeedWithStaffJewel1_"] = { type = "Synthesis", affix = "", "(1-2)% increased Cast Speed while wielding a Staff", statOrder = { 1333 }, level = 1, group = "CastSpeedWithStaff", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, - ["SynthesisImplicitCastSpeedWithDualWieldJewel1"] = { type = "Synthesis", affix = "", "(1-2)% increased Cast Speed while Dual Wielding", statOrder = { 1331 }, level = 1, group = "CastSpeedWithDualWield", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, - ["SynthesisImplicitCastSpeedWithShieldJewel1_"] = { type = "Synthesis", affix = "", "(1-2)% increased Cast Speed while holding a Shield", statOrder = { 1332 }, level = 1, group = "CastSpeedWithShield", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, - ["SynthesisImplicitCastSpeedWithStaffJewel2"] = { type = "Synthesis", affix = "", "3% increased Cast Speed while wielding a Staff", statOrder = { 1333 }, level = 1, group = "CastSpeedWithStaff", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, - ["SynthesisImplicitCastSpeedWithDualWieldJewel2"] = { type = "Synthesis", affix = "", "3% increased Cast Speed while Dual Wielding", statOrder = { 1331 }, level = 1, group = "CastSpeedWithDualWield", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, - ["SynthesisImplicitCastSpeedWithShieldJewel2_"] = { type = "Synthesis", affix = "", "3% increased Cast Speed while holding a Shield", statOrder = { 1332 }, level = 1, group = "CastSpeedWithShield", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, - ["SynthesisImplicitAttackAndCastSpeed1"] = { type = "Synthesis", affix = "", "3% increased Attack and Cast Speed", statOrder = { 1923 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, }, - ["SynthesisImplicitAttackAndCastSpeed2"] = { type = "Synthesis", affix = "", "4% increased Attack and Cast Speed", statOrder = { 1923 }, level = 15, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, }, - ["SynthesisImplicitAttackAndCastSpeed3"] = { type = "Synthesis", affix = "", "5% increased Attack and Cast Speed", statOrder = { 1923 }, level = 24, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, }, - ["SynthesisImplicitAttackAndCastSpeedJewel1"] = { type = "Synthesis", affix = "", "1% increased Attack and Cast Speed", statOrder = { 1923 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, }, - ["SynthesisImplicitTrapThrowingSpeed1"] = { type = "Synthesis", affix = "", "(2-3)% increased Trap Throwing Speed", statOrder = { 1806 }, level = 48, group = "TrapThrowSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, - ["SynthesisImplicitTrapThrowingSpeed2"] = { type = "Synthesis", affix = "", "(4-5)% increased Trap Throwing Speed", statOrder = { 1806 }, level = 56, group = "TrapThrowSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, - ["SynthesisImplicitTrapThrowingSpeedJewel1"] = { type = "Synthesis", affix = "", "(1-2)% increased Trap Throwing Speed", statOrder = { 1806 }, level = 1, group = "TrapThrowSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, - ["SynthesisImplicitTrapThrowingSpeedJewel2"] = { type = "Synthesis", affix = "", "3% increased Trap Throwing Speed", statOrder = { 1806 }, level = 1, group = "TrapThrowSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, - ["SynthesisImplicitMineLayingSpeed1"] = { type = "Synthesis", affix = "", "(2-3)% increased Mine Throwing Speed", statOrder = { 1807 }, level = 48, group = "MineLayingSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, - ["SynthesisImplicitMineLayingSpeed2"] = { type = "Synthesis", affix = "", "(4-5)% increased Mine Throwing Speed", statOrder = { 1807 }, level = 56, group = "MineLayingSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, - ["SynthesisImplicitMineLayingSpeedJewel1_"] = { type = "Synthesis", affix = "", "(1-2)% increased Mine Throwing Speed", statOrder = { 1807 }, level = 1, group = "MineLayingSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, - ["SynthesisImplicitMineLayingSpeedJewel2"] = { type = "Synthesis", affix = "", "3% increased Mine Throwing Speed", statOrder = { 1807 }, level = 1, group = "MineLayingSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, - ["SynthesisImplicitTotemPlacementSpeed1"] = { type = "Synthesis", affix = "", "(2-3)% increased Totem Placement speed", statOrder = { 2454 }, level = 48, group = "SummonTotemCastSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, - ["SynthesisImplicitTotemPlacementSpeed2"] = { type = "Synthesis", affix = "", "(4-5)% increased Totem Placement speed", statOrder = { 2454 }, level = 56, group = "SummonTotemCastSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, - ["SynthesisImplicitTotemPlacementSpeedJewel1___"] = { type = "Synthesis", affix = "", "(1-2)% increased Totem Placement speed", statOrder = { 2454 }, level = 1, group = "SummonTotemCastSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, - ["SynthesisImplicitTotemPlacementSpeedJewel2_"] = { type = "Synthesis", affix = "", "3% increased Totem Placement speed", statOrder = { 2454 }, level = 1, group = "SummonTotemCastSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, - ["SynthesisImplicitBrandAttachmentRange1_"] = { type = "Synthesis", affix = "", "(2-3)% increased Brand Attachment range", statOrder = { 9531 }, level = 48, group = "BrandAttachmentRange", weightKey = { }, weightVal = { }, modTags = { "caster" }, }, - ["SynthesisImplicitBrandAttachmentRange2"] = { type = "Synthesis", affix = "", "(4-5)% increased Brand Attachment range", statOrder = { 9531 }, level = 56, group = "BrandAttachmentRange", weightKey = { }, weightVal = { }, modTags = { "caster" }, }, - ["SynthesisImplicitTauntOnHitJewel1"] = { type = "Synthesis", affix = "", "(1-2)% chance to Taunt Enemies on Hit with Attacks", statOrder = { 4737 }, level = 1, group = "AttacksTauntOnHitChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, - ["SynthesisImplicitTauntOnHitJewel2_"] = { type = "Synthesis", affix = "", "(3-4)% chance to Taunt Enemies on Hit with Attacks", statOrder = { 4737 }, level = 1, group = "AttacksTauntOnHitChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, - ["SynthesisImplicitBlindOnHitJewel1"] = { type = "Synthesis", affix = "", "(1-2)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4736 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, - ["SynthesisImplicitBlindOnHitJewel2"] = { type = "Synthesis", affix = "", "(3-4)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4736 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, - ["SynthesisImplicitHinderOnHitJewel1__"] = { type = "Synthesis", affix = "", "(1-2)% chance to Hinder Enemies on Hit with Spells", statOrder = { 9670 }, level = 1, group = "SpellsHinderOnHitChance", weightKey = { }, weightVal = { }, modTags = { "caster" }, }, - ["SynthesisImplicitHinderOnHitJewel2"] = { type = "Synthesis", affix = "", "(3-4)% chance to Hinder Enemies on Hit with Spells", statOrder = { 9670 }, level = 1, group = "SpellsHinderOnHitChance", weightKey = { }, weightVal = { }, modTags = { "caster" }, }, - ["SynthesisImplicitRarity1"] = { type = "Synthesis", affix = "", "(10-11)% increased Rarity of Items found", statOrder = { 1478 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, - ["SynthesisImplicitRarity2"] = { type = "Synthesis", affix = "", "(12-13)% increased Rarity of Items found", statOrder = { 1478 }, level = 15, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, - ["SynthesisImplicitRarity3"] = { type = "Synthesis", affix = "", "(14-15)% increased Rarity of Items found", statOrder = { 1478 }, level = 24, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, - ["SynthesisImplicitRarity4"] = { type = "Synthesis", affix = "", "(16-17)% increased Rarity of Items found", statOrder = { 1478 }, level = 36, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, - ["SynthesisImplicitRarity5"] = { type = "Synthesis", affix = "", "(18-20)% increased Rarity of Items found", statOrder = { 1478 }, level = 48, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, - ["SynthesisImplicitRarityRing1"] = { type = "Synthesis", affix = "", "(19-20)% increased Rarity of Items found", statOrder = { 1478 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, - ["SynthesisImplicitRarityRing2"] = { type = "Synthesis", affix = "", "(21-22)% increased Rarity of Items found", statOrder = { 1478 }, level = 15, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, - ["SynthesisImplicitRarityRing3"] = { type = "Synthesis", affix = "", "(23-25)% increased Rarity of Items found", statOrder = { 1478 }, level = 24, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, - ["SynthesisImplicitRarityJewel1"] = { type = "Synthesis", affix = "", "(1-2)% increased Rarity of Items found", statOrder = { 1478 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, - ["SynthesisImplicitRarityJewel2"] = { type = "Synthesis", affix = "", "(3-4)% increased Rarity of Items found", statOrder = { 1478 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, - ["SynthesisImplicitQuantity1"] = { type = "Synthesis", affix = "", "(1-3)% increased Quantity of Items found", statOrder = { 1474 }, level = 65, group = "ItemFoundQuantityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, - ["SynthesisImplicitExperience1"] = { type = "Synthesis", affix = "", "2% increased Experience gain", statOrder = { 1485 }, level = 75, group = "ExperienceIncrease", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitExplosion1_"] = { type = "Synthesis", affix = "", "Enemies you Kill Explode, dealing 3% of their Life as Physical Damage", statOrder = { 6056 }, level = 75, group = "EnemiesExplodeOnDeathPhysical", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, - ["SynthesisImplicitExplosion2"] = { type = "Synthesis", affix = "", "Enemies you Kill Explode, dealing 5% of their Life as Physical Damage", statOrder = { 6056 }, level = 75, group = "EnemiesExplodeOnDeathPhysical", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, - ["SynthesisImplicitExplosionChance1_"] = { type = "Synthesis", affix = "", "Enemies you Kill have a 15% chance to Explode, dealing a tenth of their maximum Life as Physical Damage", statOrder = { 3170 }, level = 75, group = "EnemiesExplodeOnDeathPhysicalChance", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, - ["SynthesisImplicitExplosionChance2__"] = { type = "Synthesis", affix = "", "Enemies you Kill have a 25% chance to Explode, dealing a tenth of their maximum Life as Physical Damage", statOrder = { 3170 }, level = 75, group = "EnemiesExplodeOnDeathPhysicalChance", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, - ["SynthesisImplicitLocalWeaponRange1_"] = { type = "Synthesis", affix = "", "+0.1 metres to Weapon Range", statOrder = { 2620 }, level = 36, group = "LocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, - ["SynthesisImplicitLocalWeaponRange2"] = { type = "Synthesis", affix = "", "+0.2 metres to Weapon Range", statOrder = { 2620 }, level = 48, group = "LocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, - ["SynthesisImplicitWeaponRange1"] = { type = "Synthesis", affix = "", "+0.1 metres to Melee Strike Range", statOrder = { 2410 }, level = 56, group = "MeleeWeaponAndUnarmedRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, - ["SynthesisImplicitOnslaughtOnKill1"] = { type = "Synthesis", affix = "", "(5-8)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2865 }, level = 55, group = "ChanceToGainOnslaughtOnKill", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitPhasingOnKill1__"] = { type = "Synthesis", affix = "", "(5-8)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3328 }, level = 55, group = "ChancetoGainPhasingOnKill", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitUnholyMightOnKill1"] = { type = "Synthesis", affix = "", "(5-8)% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3243 }, level = 55, group = "UnholyMightOnKillPercentChance", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitIntimidateOnHit1"] = { type = "Synthesis", affix = "", "Intimidate Enemies for 4 seconds on Hit with Attacks", statOrder = { 4741 }, level = 65, group = "IntimidateOnHit", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, - ["SynthesisImplicitOnslaughtOnHit1"] = { type = "Synthesis", affix = "", "You gain Onslaught for 4 seconds on Hit", statOrder = { 6451 }, level = 65, group = "OnslaughtOnHit", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitArcaneSurgeOnHit1"] = { type = "Synthesis", affix = "", "Gain Arcane Surge on Hit with Spells", statOrder = { 6393 }, level = 65, group = "ArcaneSurgeOnHit", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitAreaOfEffect1"] = { type = "Synthesis", affix = "", "(5-6)% increased Area of Effect", statOrder = { 1761 }, level = 36, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitAreaOfEffect2"] = { type = "Synthesis", affix = "", "(7-8)% increased Area of Effect", statOrder = { 1761 }, level = 48, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitAreaOfEffect3_"] = { type = "Synthesis", affix = "", "(9-10)% increased Area of Effect", statOrder = { 1761 }, level = 56, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitUnaffectedByBurningGround1"] = { type = "Synthesis", affix = "", "Unaffected by Burning Ground", statOrder = { 9931 }, level = 65, group = "BurningGroundEffectEffectiveness", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, }, - ["SynthesisImplicitUnaffectedByChilledGround1"] = { type = "Synthesis", affix = "", "Unaffected by Chilled Ground", statOrder = { 9936 }, level = 65, group = "ChilledGroundEffectEffectiveness", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, - ["SynthesisImplicitUnaffectedByShockedGround1"] = { type = "Synthesis", affix = "", "Unaffected by Shocked Ground", statOrder = { 9956 }, level = 65, group = "ShockedGroundEffectEffectiveness", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, - ["SynthesisImplicitFlaskChargesGained1"] = { type = "Synthesis", affix = "", "(10-11)% increased Flask Charges gained", statOrder = { 2060 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, - ["SynthesisImplicitFlaskChargesGained2"] = { type = "Synthesis", affix = "", "(12-13)% increased Flask Charges gained", statOrder = { 2060 }, level = 15, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, - ["SynthesisImplicitFlaskChargesGained3"] = { type = "Synthesis", affix = "", "(14-15)% increased Flask Charges gained", statOrder = { 2060 }, level = 24, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, - ["SynthesisImplicitReducedFlaskChargesUsed1_"] = { type = "Synthesis", affix = "", "(10-11)% reduced Flask Charges used", statOrder = { 2061 }, level = 1, group = "BeltReducedFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, - ["SynthesisImplicitReducedFlaskChargesUsed2"] = { type = "Synthesis", affix = "", "(12-13)% reduced Flask Charges used", statOrder = { 2061 }, level = 15, group = "BeltReducedFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, - ["SynthesisImplicitReducedFlaskChargesUsed3"] = { type = "Synthesis", affix = "", "(14-15)% reduced Flask Charges used", statOrder = { 2061 }, level = 24, group = "BeltReducedFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, - ["SynthesisImplicitFlaskDuration1_"] = { type = "Synthesis", affix = "", "(10-11)% increased Flask Effect Duration", statOrder = { 2064 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, - ["SynthesisImplicitFlaskDuration2"] = { type = "Synthesis", affix = "", "(12-13)% increased Flask Effect Duration", statOrder = { 2064 }, level = 15, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, - ["SynthesisImplicitFlaskDuration3"] = { type = "Synthesis", affix = "", "(14-15)% increased Flask Effect Duration", statOrder = { 2064 }, level = 24, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, - ["SynthesisImplicitRemoveIgniteOnFlaskUse1"] = { type = "Synthesis", affix = "", "Remove Ignite and Burning when you use a Flask", statOrder = { 9401 }, level = 65, group = "RemoveIgniteOnFlaskUse", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental", "fire", "ailment" }, }, - ["SynthesisImplicitRemoveFreezeOnFlaskUse1"] = { type = "Synthesis", affix = "", "Remove Chill and Freeze when you use a Flask", statOrder = { 9397 }, level = 65, group = "RemoveFreezeOnFlaskUse", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental", "cold", "ailment" }, }, - ["SynthesisImplicitRemoveShockOnFlaskUse1"] = { type = "Synthesis", affix = "", "Remove Shock when you use a Flask", statOrder = { 9409 }, level = 65, group = "RemoveShockOnFlaskUse", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental", "lightning", "ailment" }, }, - ["SynthesisImplicitGemQuality1"] = { type = "Synthesis", affix = "", "+(2-3)% to Quality of Socketed Gems", statOrder = { 182 }, level = 40, group = "SocketedGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, - ["SynthesisImplicitGemQuality2_"] = { type = "Synthesis", affix = "", "+(4-6)% to Quality of Socketed Gems", statOrder = { 182 }, level = 50, group = "SocketedGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, - ["SynthesisImplicitGemLevel1_"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed Gems", statOrder = { 141 }, level = 65, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, - ["SynthesisImplicitSupportGemQuality1_"] = { type = "Synthesis", affix = "", "+(2-3)% to Quality of Socketed Support Gems", statOrder = { 183 }, level = 40, group = "IncreaseSocketedSupportGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, - ["SynthesisImplicitSupportGemQuality2"] = { type = "Synthesis", affix = "", "+(4-6)% to Quality of Socketed Support Gems", statOrder = { 183 }, level = 50, group = "IncreaseSocketedSupportGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, - ["SynthesisImplicitSupportGemLevel1"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed Support Gems", statOrder = { 168 }, level = 65, group = "LocalIncreaseSocketedSupportGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, - ["SynthesisImplicitMinionGemQuality1"] = { type = "Synthesis", affix = "", "+(2-3)% to Quality of Socketed Minion Gems", statOrder = { 196 }, level = 40, group = "SocketedMinionGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, - ["SynthesisImplicitMinionGemQuality2"] = { type = "Synthesis", affix = "", "+(4-6)% to Quality of Socketed Minion Gems", statOrder = { 196 }, level = 50, group = "SocketedMinionGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, - ["SynthesisImplicitMinionGemLevel1_"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed Minion Gems", statOrder = { 159 }, level = 65, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { }, weightVal = { }, modTags = { "minion", "gem" }, }, - ["SynthesisImplicitFireGemQuality1"] = { type = "Synthesis", affix = "", "+(2-3)% to Quality of Socketed Fire Gems", statOrder = { 192 }, level = 40, group = "SocketedFireGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, - ["SynthesisImplicitFireGemQuality2"] = { type = "Synthesis", affix = "", "+(4-6)% to Quality of Socketed Fire Gems", statOrder = { 192 }, level = 50, group = "SocketedFireGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, - ["SynthesisImplicitFireGemLevel1"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed Fire Gems", statOrder = { 146 }, level = 65, group = "LocalIncreaseSocketedFireGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "gem" }, }, - ["SynthesisImplicitColdGemQuality1"] = { type = "Synthesis", affix = "", "+(2-3)% to Quality of Socketed Cold Gems", statOrder = { 189 }, level = 40, group = "SocketedColdGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, - ["SynthesisImplicitColdGemQuality2"] = { type = "Synthesis", affix = "", "+(4-6)% to Quality of Socketed Cold Gems", statOrder = { 189 }, level = 50, group = "SocketedColdGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, - ["SynthesisImplicitColdGemLevel1"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed Cold Gems", statOrder = { 147 }, level = 65, group = "LocalIncreaseSocketedColdGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "gem" }, }, - ["SynthesisImplicitLightningGemQuality1"] = { type = "Synthesis", affix = "", "+(2-3)% to Quality of Socketed Lightning Gems", statOrder = { 194 }, level = 40, group = "SocketedLightningGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, - ["SynthesisImplicitLightningGemQuality2"] = { type = "Synthesis", affix = "", "+(4-6)% to Quality of Socketed Lightning Gems", statOrder = { 194 }, level = 50, group = "SocketedLightningGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, - ["SynthesisImplicitLightningGemLevel1"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed Lightning Gems", statOrder = { 148 }, level = 65, group = "LocalIncreaseSocketedLightningGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "gem" }, }, - ["SynthesisImplicitChaosGemQuality1"] = { type = "Synthesis", affix = "", "+(2-3)% to Quality of Socketed Chaos Gems", statOrder = { 188 }, level = 40, group = "SocketedChaosGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, - ["SynthesisImplicitChaosGemQuality2_"] = { type = "Synthesis", affix = "", "+(4-6)% to Quality of Socketed Chaos Gems", statOrder = { 188 }, level = 50, group = "SocketedChaosGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, - ["SynthesisImplicitChaosGemLevel1"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed Chaos Gems", statOrder = { 149 }, level = 65, group = "LocalIncreaseSocketedChaosGemLevel", weightKey = { }, weightVal = { }, modTags = { "chaos", "gem" }, }, - ["SynthesisImplicitMeleeGemQuality1"] = { type = "Synthesis", affix = "", "+(2-3)% to Quality of Socketed Melee Gems", statOrder = { 195 }, level = 40, group = "SocketedMeleeGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, - ["SynthesisImplicitMeleeGemQuality2"] = { type = "Synthesis", affix = "", "+(4-6)% to Quality of Socketed Melee Gems", statOrder = { 195 }, level = 50, group = "SocketedMeleeGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, - ["SynthesisImplicitMeleeGemLevel1"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed Melee Gems", statOrder = { 158 }, level = 65, group = "LocalIncreaseSocketedMeleeGemLevel", weightKey = { }, weightVal = { }, modTags = { "attack", "gem" }, }, - ["SynthesisImplicitBowGemQuality1_"] = { type = "Synthesis", affix = "", "+(2-3)% to Quality of Socketed Bow Gems", statOrder = { 187 }, level = 40, group = "SocketedBowGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, - ["SynthesisImplicitBowGemQuality2"] = { type = "Synthesis", affix = "", "+(4-6)% to Quality of Socketed Bow Gems", statOrder = { 187 }, level = 50, group = "SocketedBowGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, - ["SynthesisImplicitBowGemLevel1"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed Bow Gems", statOrder = { 157 }, level = 65, group = "LocalIncreaseSocketedBowGemLevel", weightKey = { }, weightVal = { }, modTags = { "attack", "gem" }, }, - ["SynthesisImplicitAuraGemQuality1_"] = { type = "Synthesis", affix = "", "+(2-3)% to Quality of Socketed Aura Gems", statOrder = { 186 }, level = 40, group = "SocketedAuraGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, - ["SynthesisImplicitAuraGemQuality2"] = { type = "Synthesis", affix = "", "+(4-6)% to Quality of Socketed Aura Gems", statOrder = { 186 }, level = 50, group = "SocketedAuraGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, - ["SynthesisImplicitAuraGemLevel1"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed Aura Gems", statOrder = { 160 }, level = 65, group = "LocalIncreaseSocketedAuraLevel", weightKey = { }, weightVal = { }, modTags = { "aura", "gem" }, }, - ["SynthesisImplicitStrengthGemQuality1"] = { type = "Synthesis", affix = "", "+(2-3)% to Quality of Socketed Strength Gems", statOrder = { 198 }, level = 40, group = "SocketedStrengthGemQuality", weightKey = { }, weightVal = { }, modTags = { "attribute", "gem" }, }, - ["SynthesisImplicitStrengthGemQuality2__"] = { type = "Synthesis", affix = "", "+(4-6)% to Quality of Socketed Strength Gems", statOrder = { 198 }, level = 50, group = "SocketedStrengthGemQuality", weightKey = { }, weightVal = { }, modTags = { "attribute", "gem" }, }, + ["SynthesisImplicitCurseDuration1"] = { type = "Synthesis", affix = "", "Curse Skills have (10-15)% increased Skill Effect Duration", statOrder = { 5897 }, level = 36, group = "CurseDuration", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["SynthesisImplicitCurseDuration2"] = { type = "Synthesis", affix = "", "Curse Skills have (16-20)% increased Skill Effect Duration", statOrder = { 5897 }, level = 48, group = "CurseDuration", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["SynthesisImplicitCurseEffect1"] = { type = "Synthesis", affix = "", "(6-10)% increased Effect of your Curses", statOrder = { 2505 }, level = 60, group = "CurseEffectiveness", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["SynthesisImplicitCurseOnHitFlammability1"] = { type = "Synthesis", affix = "", "Curse Enemies with Flammability on Hit", statOrder = { 2439 }, level = 45, group = "FlammabilityOnHitLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["SynthesisImplicitCurseOnHitFlammability2"] = { type = "Synthesis", affix = "", "Curse Enemies with Flammability on Hit", statOrder = { 2439 }, level = 56, group = "FlammabilityOnHitLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["SynthesisImplicitCurseOnHitFrostbite1_"] = { type = "Synthesis", affix = "", "Curse Enemies with Frostbite on Hit", statOrder = { 2440 }, level = 45, group = "FrostbiteOnHitLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["SynthesisImplicitCurseOnHitFrostbite2_"] = { type = "Synthesis", affix = "", "Curse Enemies with Frostbite on Hit", statOrder = { 2440 }, level = 56, group = "FrostbiteOnHitLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["SynthesisImplicitCurseOnHitConductivity1"] = { type = "Synthesis", affix = "", "Curse Enemies with Conductivity on Hit", statOrder = { 2436 }, level = 45, group = "ConductivityOnHitLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["SynthesisImplicitCurseOnHitConductivity2"] = { type = "Synthesis", affix = "", "Curse Enemies with Conductivity on Hit", statOrder = { 2436 }, level = 56, group = "ConductivityOnHitLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["SynthesisImplicitCurseOnHitVulnerability1"] = { type = "Synthesis", affix = "", "Curse Enemies with Vulnerability on Hit", statOrder = { 2432 }, level = 45, group = "CurseOnHitLevelVulnerability", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["SynthesisImplicitCurseOnHitVulnerability2"] = { type = "Synthesis", affix = "", "Curse Enemies with Vulnerability on Hit", statOrder = { 2432 }, level = 56, group = "CurseOnHitLevelVulnerability", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["SynthesisImplicitCurseOnHitDespair1"] = { type = "Synthesis", affix = "", "Curse Enemies with Despair on Hit", statOrder = { 2437 }, level = 45, group = "CurseOnHitDespair", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["SynthesisImplicitCurseOnHitElementalWeakness1__"] = { type = "Synthesis", affix = "", "Curse Enemies with Elemental Weakness on Hit", statOrder = { 2434 }, level = 45, group = "CurseOnHitLevelElementalWeakness", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["SynthesisImplicitCurseEffectFlammability1"] = { type = "Synthesis", affix = "", "(20-30)% increased Flammability Curse Effect", statOrder = { 3921 }, level = 55, group = "CurseEffectFlammability", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["SynthesisImplicitCurseEffectFlammabilityOneHand1"] = { type = "Synthesis", affix = "", "(10-15)% increased Flammability Curse Effect", statOrder = { 3921 }, level = 55, group = "CurseEffectFlammability", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["SynthesisImplicitCurseEffectFrostbite1"] = { type = "Synthesis", affix = "", "(20-30)% increased Frostbite Curse Effect", statOrder = { 3922 }, level = 55, group = "CurseEffectFrostbite", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["SynthesisImplicitCurseEffectFrostbiteOneHand1"] = { type = "Synthesis", affix = "", "(10-15)% increased Frostbite Curse Effect", statOrder = { 3922 }, level = 55, group = "CurseEffectFrostbite", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["SynthesisImplicitCurseEffectConductivity1"] = { type = "Synthesis", affix = "", "(20-30)% increased Conductivity Curse Effect", statOrder = { 3918 }, level = 55, group = "CurseEffectConductivity", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["SynthesisImplicitCurseEffectConductivityOneHand1"] = { type = "Synthesis", affix = "", "(10-15)% increased Conductivity Curse Effect", statOrder = { 3918 }, level = 55, group = "CurseEffectConductivity", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["SynthesisImplicitCurseEffectVulnerability1_"] = { type = "Synthesis", affix = "", "(20-30)% increased Vulnerability Curse Effect", statOrder = { 3924 }, level = 55, group = "CurseEffectVulnerability", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["SynthesisImplicitCurseEffectElementalWeakness1"] = { type = "Synthesis", affix = "", "(20-30)% increased Elemental Weakness Curse Effect", statOrder = { 3919 }, level = 55, group = "CurseEffectElementalWeakness", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["SynthesisImplicitDamageAffectedByAuras1"] = { type = "Synthesis", affix = "", "You and nearby Allies deal (7-9)% increased Damage", statOrder = { 3977 }, level = 24, group = "DamageAffectedByAuras", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitDamageAffectedByAuras2"] = { type = "Synthesis", affix = "", "You and nearby Allies deal (10-12)% increased Damage", statOrder = { 3977 }, level = 36, group = "DamageAffectedByAuras", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitDamageAffectedByAuras3_"] = { type = "Synthesis", affix = "", "You and nearby Allies deal (13-15)% increased Damage", statOrder = { 3977 }, level = 48, group = "DamageAffectedByAuras", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitDamageAffectedByAurasTwoHand1"] = { type = "Synthesis", affix = "", "You and nearby Allies deal (13-16)% increased Damage", statOrder = { 3977 }, level = 24, group = "DamageAffectedByAuras", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitDamageAffectedByAurasTwoHand2_"] = { type = "Synthesis", affix = "", "You and nearby Allies deal (17-21)% increased Damage", statOrder = { 3977 }, level = 36, group = "DamageAffectedByAuras", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitDamageAffectedByAurasTwoHand3"] = { type = "Synthesis", affix = "", "You and nearby Allies deal (22-25)% increased Damage", statOrder = { 3977 }, level = 48, group = "DamageAffectedByAuras", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitDamageWhileLeeching1"] = { type = "Synthesis", affix = "", "(10-12)% increased Damage while Leeching", statOrder = { 2971 }, level = 36, group = "DamageWhileLeeching", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitDamageWhileLeeching2"] = { type = "Synthesis", affix = "", "(13-15)% increased Damage while Leeching", statOrder = { 2971 }, level = 48, group = "DamageWhileLeeching", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitDamageWhileLeechingLife1"] = { type = "Synthesis", affix = "", "(13-16)% increased Damage while Leeching Life", statOrder = { 1129 }, level = 1, group = "DamageWhileLeechingLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitDamageWhileLeechingLife2__"] = { type = "Synthesis", affix = "", "(17-21)% increased Damage while Leeching Life", statOrder = { 1129 }, level = 15, group = "DamageWhileLeechingLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitDamageWhileLeechingLife3"] = { type = "Synthesis", affix = "", "(22-25)% increased Damage while Leeching Life", statOrder = { 1129 }, level = 24, group = "DamageWhileLeechingLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitDamageWhileLeechingMana1"] = { type = "Synthesis", affix = "", "(13-16)% increased Damage while Leeching Mana", statOrder = { 1131 }, level = 1, group = "DamageWhileLeechingMana", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitDamageWhileLeechingMana2_"] = { type = "Synthesis", affix = "", "(17-21)% increased Damage while Leeching Mana", statOrder = { 1131 }, level = 15, group = "DamageWhileLeechingMana", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitDamageWhileLeechingMana3_"] = { type = "Synthesis", affix = "", "(22-25)% increased Damage while Leeching Mana", statOrder = { 1131 }, level = 24, group = "DamageWhileLeechingMana", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitDamageDuringFlaskEffect1"] = { type = "Synthesis", affix = "", "(10-12)% increased Damage during any Flask Effect", statOrder = { 3990 }, level = 36, group = "DamageDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "damage" }, }, + ["SynthesisImplicitDamageDuringFlaskEffect2"] = { type = "Synthesis", affix = "", "(13-15)% increased Damage during any Flask Effect", statOrder = { 3990 }, level = 48, group = "DamageDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "damage" }, }, + ["SynthesisImplicitDamageWithTriggeredSpells1"] = { type = "Synthesis", affix = "", "Triggered Spells deal (10-12)% increased Spell Damage", statOrder = { 10214 }, level = 36, group = "DamageWithTriggeredSpells", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SynthesisImplicitDamageWithTriggeredSpells2"] = { type = "Synthesis", affix = "", "Triggered Spells deal (13-15)% increased Spell Damage", statOrder = { 10214 }, level = 48, group = "DamageWithTriggeredSpells", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SynthesisImplicitVaalSkillDamage1"] = { type = "Synthesis", affix = "", "(13-16)% increased Damage with Vaal Skills", statOrder = { 3003 }, level = 24, group = "VaalSkillDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "vaal" }, }, + ["SynthesisImplicitVaalSkillDamage2"] = { type = "Synthesis", affix = "", "(17-21)% increased Damage with Vaal Skills", statOrder = { 3003 }, level = 36, group = "VaalSkillDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "vaal" }, }, + ["SynthesisImplicitVaalSkillDamage3"] = { type = "Synthesis", affix = "", "(22-25)% increased Damage with Vaal Skills", statOrder = { 3003 }, level = 48, group = "VaalSkillDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "vaal" }, }, + ["SynthesisImplicitVaalSkillDamageWeapon1"] = { type = "Synthesis", affix = "", "(25-30)% increased Damage with Vaal Skills", statOrder = { 3003 }, level = 36, group = "VaalSkillDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "vaal" }, }, + ["SynthesisImplicitVaalSkillDamageWeapon2"] = { type = "Synthesis", affix = "", "(31-35)% increased Damage with Vaal Skills", statOrder = { 3003 }, level = 48, group = "VaalSkillDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "vaal" }, }, + ["SynthesisImplicitVaalSkillDamageWeaponTwoHand1"] = { type = "Synthesis", affix = "", "(36-44)% increased Damage with Vaal Skills", statOrder = { 3003 }, level = 36, group = "VaalSkillDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "vaal" }, }, + ["SynthesisImplicitVaalSkillDamageWeaponTwoHand2"] = { type = "Synthesis", affix = "", "(45-51)% increased Damage with Vaal Skills", statOrder = { 3003 }, level = 48, group = "VaalSkillDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "vaal" }, }, + ["SynthesisImplicitDamageWithTriggeredSpellsWeapon1_"] = { type = "Synthesis", affix = "", "Triggered Spells deal (19-22)% increased Spell Damage", statOrder = { 10214 }, level = 36, group = "DamageWithTriggeredSpells", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SynthesisImplicitDamageWithTriggeredSpellsWeapon2"] = { type = "Synthesis", affix = "", "Triggered Spells deal (23-26)% increased Spell Damage", statOrder = { 10214 }, level = 48, group = "DamageWithTriggeredSpells", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SynthesisImplicitDamageWithTriggeredSpellsWeaponTwoHand1"] = { type = "Synthesis", affix = "", "Triggered Spells deal (27-32)% increased Spell Damage", statOrder = { 10214 }, level = 36, group = "DamageWithTriggeredSpells", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SynthesisImplicitDamageWithTriggeredSpellsWeaponTwoHand2_"] = { type = "Synthesis", affix = "", "Triggered Spells deal (33-38)% increased Spell Damage", statOrder = { 10214 }, level = 48, group = "DamageWithTriggeredSpells", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SynthesisImplicitDoubleDamageChanceOneHand1"] = { type = "Synthesis", affix = "", "2% chance to deal Double Damage", statOrder = { 5557 }, level = 36, group = "DoubleDamageChance", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitDoubleDamageChanceOneHand2"] = { type = "Synthesis", affix = "", "3% chance to deal Double Damage", statOrder = { 5557 }, level = 48, group = "DoubleDamageChance", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitDoubleDamageChanceTwoHand1"] = { type = "Synthesis", affix = "", "4% chance to deal Double Damage", statOrder = { 5557 }, level = 36, group = "DoubleDamageChance", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitDoubleDamageChanceTwoHand2_"] = { type = "Synthesis", affix = "", "5% chance to deal Double Damage", statOrder = { 5557 }, level = 48, group = "DoubleDamageChance", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitAreaDamage1"] = { type = "Synthesis", affix = "", "(10-12)% increased Area Damage", statOrder = { 1944 }, level = 36, group = "AreaDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitAreaDamage2"] = { type = "Synthesis", affix = "", "(13-15)% increased Area Damage", statOrder = { 1944 }, level = 48, group = "AreaDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitProjectileDamage1"] = { type = "Synthesis", affix = "", "(10-12)% increased Projectile Damage", statOrder = { 1905 }, level = 36, group = "ProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitProjectileDamage2_"] = { type = "Synthesis", affix = "", "(13-15)% increased Projectile Damage", statOrder = { 1905 }, level = 48, group = "ProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitMeleeDamage1"] = { type = "Synthesis", affix = "", "(10-12)% increased Melee Damage", statOrder = { 1146 }, level = 36, group = "MeleeDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, + ["SynthesisImplicitMeleeDamage2"] = { type = "Synthesis", affix = "", "(13-15)% increased Melee Damage", statOrder = { 1146 }, level = 48, group = "MeleeDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, + ["SynthesisImplicitMinionDamage1"] = { type = "Synthesis", affix = "", "Minions deal 8% increased Damage", statOrder = { 1882 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, + ["SynthesisImplicitMinionDamage2_"] = { type = "Synthesis", affix = "", "Minions deal (9-10)% increased Damage", statOrder = { 1882 }, level = 15, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, + ["SynthesisImplicitMinionDamage3"] = { type = "Synthesis", affix = "", "Minions deal (11-12)% increased Damage", statOrder = { 1882 }, level = 24, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, + ["SynthesisImplicitMinionDamage4"] = { type = "Synthesis", affix = "", "Minions deal (13-14)% increased Damage", statOrder = { 1882 }, level = 36, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, + ["SynthesisImplicitMinionDamage5"] = { type = "Synthesis", affix = "", "Minions deal (15-16)% increased Damage", statOrder = { 1882 }, level = 48, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, + ["SynthesisImplicitWeaponMinionDamage1_"] = { type = "Synthesis", affix = "", "Minions deal (19-22)% increased Damage", statOrder = { 1882 }, level = 15, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, + ["SynthesisImplicitWeaponMinionDamage2"] = { type = "Synthesis", affix = "", "Minions deal (23-26)% increased Damage", statOrder = { 1882 }, level = 24, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, + ["SynthesisImplicitWeaponMinionDamage3"] = { type = "Synthesis", affix = "", "Minions deal (27-30)% increased Damage", statOrder = { 1882 }, level = 36, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, + ["SynthesisImplicitWeaponMinionDamageTwoHand1"] = { type = "Synthesis", affix = "", "Minions deal (27-32)% increased Damage", statOrder = { 1882 }, level = 15, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, + ["SynthesisImplicitWeaponMinionDamageTwoHand2"] = { type = "Synthesis", affix = "", "Minions deal (33-38)% increased Damage", statOrder = { 1882 }, level = 24, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, + ["SynthesisImplicitWeaponMinionDamageTwoHand3"] = { type = "Synthesis", affix = "", "Minions deal (39-44)% increased Damage", statOrder = { 1882 }, level = 36, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, + ["SynthesisImplicitMinionDamageJewel1_"] = { type = "Synthesis", affix = "", "Minions deal (2-3)% increased Damage", statOrder = { 1882 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, + ["SynthesisImplicitMinionDamageJewel2_"] = { type = "Synthesis", affix = "", "Minions deal (4-5)% increased Damage", statOrder = { 1882 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, + ["SynthesisImplicitZombieDamage1"] = { type = "Synthesis", affix = "", "Raised Zombies deal (30-35)% increased Damage", statOrder = { 3551 }, level = 55, group = "ZombieIncreasedDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, + ["SynthesisImplicitSkeletonDamage1_"] = { type = "Synthesis", affix = "", "Skeletons deal (30-35)% increased Damage", statOrder = { 3567 }, level = 55, group = "SkeletonDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, + ["SynthesisImplicitSpectreDamage1"] = { type = "Synthesis", affix = "", "Raised Spectres have (30-35)% increased Damage", statOrder = { 3365 }, level = 55, group = "SpectreDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, + ["SynthesisImplicitAnimateGuardianResistances1"] = { type = "Synthesis", affix = "", "+15% to Animated Guardian Elemental Resistances", statOrder = { 3897 }, level = 55, group = "AnimateGuardianResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance", "minion" }, }, + ["SynthesisImplicitItemDropsOnDeathAnimateGuardian1_"] = { type = "Synthesis", affix = "", "Item drops on Death if Equipped by an Animated Guardian", statOrder = { 2468 }, level = 60, group = "ItemDropsOnGuardianDeath", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitMinionLife1_"] = { type = "Synthesis", affix = "", "Minions have (7-9)% increased maximum Life", statOrder = { 1677 }, level = 15, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, }, + ["SynthesisImplicitMinionLife2__"] = { type = "Synthesis", affix = "", "Minions have (10-12)% increased maximum Life", statOrder = { 1677 }, level = 24, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, }, + ["SynthesisImplicitMinionLife3"] = { type = "Synthesis", affix = "", "Minions have (13-15)% increased maximum Life", statOrder = { 1677 }, level = 36, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, }, + ["SynthesisImplicitMinionLifeRegen1"] = { type = "Synthesis", affix = "", "Minions Regenerate 0.3% of Life per second", statOrder = { 2821 }, level = 36, group = "MinionLifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, }, + ["SynthesisImplicitMinionLifeRegen2"] = { type = "Synthesis", affix = "", "Minions Regenerate 0.5% of Life per second", statOrder = { 2821 }, level = 48, group = "MinionLifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, }, + ["SynthesisImplicitMinionLifeJewel1"] = { type = "Synthesis", affix = "", "Minions have (2-3)% increased maximum Life", statOrder = { 1677 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, }, + ["SynthesisImplicitMinionLifeJewel2"] = { type = "Synthesis", affix = "", "Minions have (4-5)% increased maximum Life", statOrder = { 1677 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, }, + ["SynthesisImplicitMinionResistanceJewel1"] = { type = "Synthesis", affix = "", "Minions have +3% to all Elemental Resistances", statOrder = { 2822 }, level = 1, group = "MinionElementalResistancesForJewel", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance", "minion" }, }, + ["SynthesisImplicitMinionResistanceJewel2"] = { type = "Synthesis", affix = "", "Minions have +(4-5)% to all Elemental Resistances", statOrder = { 2822 }, level = 1, group = "MinionElementalResistancesForJewel", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance", "minion" }, }, + ["SynthesisImplicitMinionMovementSpeed1"] = { type = "Synthesis", affix = "", "Minions have (4-5)% increased Movement Speed", statOrder = { 1680 }, level = 24, group = "MinionMovementSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, }, + ["SynthesisImplicitMinionMovementSpeed2"] = { type = "Synthesis", affix = "", "Minions have (6-7)% increased Movement Speed", statOrder = { 1680 }, level = 36, group = "MinionMovementSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, }, + ["SynthesisImplicitMinionMovementSpeed3"] = { type = "Synthesis", affix = "", "Minions have (8-10)% increased Movement Speed", statOrder = { 1680 }, level = 48, group = "MinionMovementSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, }, + ["SynthesisImplicitMinionMovementSpeedJewel1"] = { type = "Synthesis", affix = "", "Minions have (1-2)% increased Movement Speed", statOrder = { 1680 }, level = 1, group = "MinionMovementSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, }, + ["SynthesisImplicitMinionMovementSpeedJewel2_"] = { type = "Synthesis", affix = "", "Minions have 3% increased Movement Speed", statOrder = { 1680 }, level = 1, group = "MinionMovementSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, }, + ["SynthesisImplicitMinionAttackSpeedJewel1_"] = { type = "Synthesis", affix = "", "Minions have (1-2)% increased Attack Speed", statOrder = { 2817 }, level = 1, group = "MinionAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed", "minion" }, }, + ["SynthesisImplicitMinionAttackSpeedJewel2"] = { type = "Synthesis", affix = "", "Minions have 3% increased Attack Speed", statOrder = { 2817 }, level = 1, group = "MinionAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed", "minion" }, }, + ["SynthesisImplicitMinionCastSpeedJewel1"] = { type = "Synthesis", affix = "", "Minions have (1-2)% increased Cast Speed", statOrder = { 2818 }, level = 1, group = "MinionCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed", "minion" }, }, + ["SynthesisImplicitMinionCastSpeedJewel2"] = { type = "Synthesis", affix = "", "Minions have 3% increased Cast Speed", statOrder = { 2818 }, level = 1, group = "MinionCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed", "minion" }, }, + ["SynthesisImplicitMinionAccuracyJewel1"] = { type = "Synthesis", affix = "", "2% increased Minion Accuracy Rating", statOrder = { 9076 }, level = 1, group = "MinionAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack", "minion" }, }, + ["SynthesisImplicitMinionAccuracyJewel2"] = { type = "Synthesis", affix = "", "(3-4)% increased Minion Accuracy Rating", statOrder = { 9076 }, level = 1, group = "MinionAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack", "minion" }, }, + ["SynthesisImplicitEnduranceChargeDuration1"] = { type = "Synthesis", affix = "", "(8-11)% increased Endurance Charge Duration", statOrder = { 2034 }, level = 45, group = "EnduranceChargeDuration", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, }, + ["SynthesisImplicitEnduranceChargeDuration2__"] = { type = "Synthesis", affix = "", "(12-15)% increased Endurance Charge Duration", statOrder = { 2034 }, level = 50, group = "EnduranceChargeDuration", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, }, + ["SynthesisImplicitEnduranceChargeOnKill1"] = { type = "Synthesis", affix = "", "(5-10)% chance to gain an Endurance Charge on Kill", statOrder = { 2537 }, level = 55, group = "EnduranceChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, }, + ["SynthesisImplicitEnduranceChargeGeneration1"] = { type = "Synthesis", affix = "", "Gain 1 Endurance Charge every second if you've been Hit Recently", statOrder = { 6631 }, level = 60, group = "EnduranceChargeIfHitRecently", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, }, + ["SynthesisImplicitMinimumEnduranceCharge1"] = { type = "Synthesis", affix = "", "+(1-2) to Minimum Endurance Charges", statOrder = { 1714 }, level = 55, group = "MinimumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, }, + ["SynthesisImplicitMaximumEnduranceCharge1"] = { type = "Synthesis", affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1715 }, level = 60, group = "MaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, }, + ["SynthesisImplicitDamagePerEnduranceChargeMinor1"] = { type = "Synthesis", affix = "", "2% increased Damage per Endurance Charge", statOrder = { 3107 }, level = 40, group = "DamagePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitDamagePerEnduranceCharge1"] = { type = "Synthesis", affix = "", "(3-4)% increased Damage per Endurance Charge", statOrder = { 3107 }, level = 55, group = "DamagePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitDamagePerEnduranceCharge2"] = { type = "Synthesis", affix = "", "(4-5)% increased Damage per Endurance Charge", statOrder = { 3107 }, level = 55, group = "DamagePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitLifeRegenPerEnduranceCharge1____"] = { type = "Synthesis", affix = "", "Regenerate 0.3% of Life per second per Endurance Charge", statOrder = { 1487 }, level = 50, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["SynthesisImplicitFrenzyChargeDuration1_"] = { type = "Synthesis", affix = "", "(8-11)% increased Frenzy Charge Duration", statOrder = { 2036 }, level = 45, group = "FrenzyChargeDuration", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, }, + ["SynthesisImplicitFrenzyChargeDuration2_"] = { type = "Synthesis", affix = "", "(12-15)% increased Frenzy Charge Duration", statOrder = { 2036 }, level = 50, group = "FrenzyChargeDuration", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, }, + ["SynthesisImplicitFrenzyChargeOnKill1"] = { type = "Synthesis", affix = "", "(5-10)% chance to gain a Frenzy Charge on Kill", statOrder = { 2539 }, level = 55, group = "FrenzyChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, }, + ["SynthesisImplicitFrenzyChargeGeneration1"] = { type = "Synthesis", affix = "", "10% chance to gain a Frenzy Charge on Hit", statOrder = { 1744 }, level = 60, group = "FrenzyChargeOnHitChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, }, + ["SynthesisImplicitMinimumFrenzyCharge1_"] = { type = "Synthesis", affix = "", "+(1-2) to Minimum Frenzy Charges", statOrder = { 1719 }, level = 55, group = "MinimumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, }, + ["SynthesisImplicitMaximumFrenzyCharge1"] = { type = "Synthesis", affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1720 }, level = 60, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, }, + ["SynthesisImplicitDamagePerFrenzyChargeMinor1_"] = { type = "Synthesis", affix = "", "2% increased Damage per Frenzy Charge", statOrder = { 3194 }, level = 40, group = "DamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitDamagePerFrenzyCharge1_"] = { type = "Synthesis", affix = "", "(3-4)% increased Damage per Frenzy Charge", statOrder = { 3194 }, level = 55, group = "DamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitDamagePerFrenzyCharge2_"] = { type = "Synthesis", affix = "", "(4-5)% increased Damage per Frenzy Charge", statOrder = { 3194 }, level = 55, group = "DamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitEvasionPerFrenzyCharge1_"] = { type = "Synthesis", affix = "", "6% increased Evasion Rating per Frenzy Charge", statOrder = { 1467 }, level = 50, group = "IncreasedEvasionRatingPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["SynthesisImplicitPowerChargeDuration1"] = { type = "Synthesis", affix = "", "(8-11)% increased Power Charge Duration", statOrder = { 2051 }, level = 45, group = "IncreasedPowerChargeDuration", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, }, + ["SynthesisImplicitPowerChargeDuration2"] = { type = "Synthesis", affix = "", "(12-15)% increased Power Charge Duration", statOrder = { 2051 }, level = 50, group = "IncreasedPowerChargeDuration", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, }, + ["SynthesisImplicitPowerChargeOnKill1"] = { type = "Synthesis", affix = "", "(5-10)% chance to gain a Power Charge on Kill", statOrder = { 2541 }, level = 55, group = "PowerChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, }, + ["SynthesisImplicitPowerChargeGeneration1_"] = { type = "Synthesis", affix = "", "15% chance to gain a Power Charge on Critical Strike", statOrder = { 1741 }, level = 60, group = "PowerChargeOnCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "power_charge", "critical" }, }, + ["SynthesisImplicitMinimumPowerCharge1"] = { type = "Synthesis", affix = "", "+(1-2) to Minimum Power Charges", statOrder = { 1724 }, level = 55, group = "MinimumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, }, + ["SynthesisImplicitMaximumPowerCharge1"] = { type = "Synthesis", affix = "", "+1 to Maximum Power Charges", statOrder = { 1725 }, level = 60, group = "IncreasedMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, }, + ["SynthesisImplicitDamagePerPowerChargeMinor1___"] = { type = "Synthesis", affix = "", "2% increased Damage per Power Charge", statOrder = { 5961 }, level = 40, group = "IncreasedDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitDamagePerPowerCharge1_"] = { type = "Synthesis", affix = "", "(3-4)% increased Damage per Power Charge", statOrder = { 5961 }, level = 55, group = "IncreasedDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitDamagePerPowerCharge2"] = { type = "Synthesis", affix = "", "(4-5)% increased Damage per Power Charge", statOrder = { 5961 }, level = 55, group = "IncreasedDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitSpellDamagePerPowerCharge1"] = { type = "Synthesis", affix = "", "6% increased Spell Damage per Power Charge", statOrder = { 2049 }, level = 50, group = "IncreasedSpellDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SynthesisImplicitMovementVelocity1"] = { type = "Synthesis", affix = "", "4% increased Movement Speed", statOrder = { 1709 }, level = 24, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["SynthesisImplicitMovementVelocity2"] = { type = "Synthesis", affix = "", "(5-6)% increased Movement Speed", statOrder = { 1709 }, level = 36, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["SynthesisImplicitMovementVelocity3___"] = { type = "Synthesis", affix = "", "(7-8)% increased Movement Speed", statOrder = { 1709 }, level = 48, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["SynthesisImplicitTrinketMovementVelocity1"] = { type = "Synthesis", affix = "", "(4-5)% increased Movement Speed", statOrder = { 1709 }, level = 45, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["SynthesisImplicitMovementVelocityJewel1___"] = { type = "Synthesis", affix = "", "1% increased Movement Speed", statOrder = { 1709 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["SynthesisImplicitMovementVelocityJewel2"] = { type = "Synthesis", affix = "", "2% increased Movement Speed", statOrder = { 1709 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["SynthesisImplicitOnslaught1"] = { type = "Synthesis", affix = "", "Onslaught", statOrder = { 3505 }, level = 60, group = "HasOnslaught", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitProjectileSpeed1"] = { type = "Synthesis", affix = "", "(9-10)% increased Projectile Speed", statOrder = { 1707 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["SynthesisImplicitProjectileSpeed2"] = { type = "Synthesis", affix = "", "(11-12)% increased Projectile Speed", statOrder = { 1707 }, level = 15, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["SynthesisImplicitProjectileSpeed3"] = { type = "Synthesis", affix = "", "(13-14)% increased Projectile Speed", statOrder = { 1707 }, level = 24, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["SynthesisImplicitProjectileSpeed4"] = { type = "Synthesis", affix = "", "(15-17)% increased Projectile Speed", statOrder = { 1707 }, level = 36, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["SynthesisImplicitProjectileSpeed5_"] = { type = "Synthesis", affix = "", "(18-20)% increased Projectile Speed", statOrder = { 1707 }, level = 48, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["SynthesisImplicitProjectileSpeedJewel1"] = { type = "Synthesis", affix = "", "(1-2)% increased Projectile Speed", statOrder = { 1707 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["SynthesisImplicitProjectileSpeedJewel2__"] = { type = "Synthesis", affix = "", "(3-5)% increased Projectile Speed", statOrder = { 1707 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["SynthesisImplicitAreaOfEffectJewel1_"] = { type = "Synthesis", affix = "", "(1-2)% increased Area of Effect", statOrder = { 1791 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitAreaOfEffectJewel2"] = { type = "Synthesis", affix = "", "(3-5)% increased Area of Effect", statOrder = { 1791 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitAttackSpeed1"] = { type = "Synthesis", affix = "", "3% increased Attack Speed", statOrder = { 1321 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["SynthesisImplicitAttackSpeed2_"] = { type = "Synthesis", affix = "", "4% increased Attack Speed", statOrder = { 1321 }, level = 15, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["SynthesisImplicitAttackSpeed3"] = { type = "Synthesis", affix = "", "5% increased Attack Speed", statOrder = { 1321 }, level = 24, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["SynthesisImplicitAttackSpeedJewel1"] = { type = "Synthesis", affix = "", "1% increased Attack Speed", statOrder = { 1321 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["SynthesisImplicitAttackSpeedJewel2"] = { type = "Synthesis", affix = "", "2% increased Attack Speed", statOrder = { 1321 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["SynthesisImplicitLocalAttackSpeed1_"] = { type = "Synthesis", affix = "", "(3-4)% increased Attack Speed", statOrder = { 1324 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["SynthesisImplicitLocalAttackSpeed2"] = { type = "Synthesis", affix = "", "(5-6)% increased Attack Speed", statOrder = { 1324 }, level = 15, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["SynthesisImplicitLocalAttackSpeed3"] = { type = "Synthesis", affix = "", "(7-8)% increased Attack Speed", statOrder = { 1324 }, level = 24, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["SynthesisImplicitMaceIncreasedAttackSpeedJewel1"] = { type = "Synthesis", affix = "", "(1-2)% increased Attack Speed with Maces or Sceptres", statOrder = { 1335 }, level = 1, group = "MaceIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["SynthesisImplicitAxeIncreasedAttackSpeedJewel1"] = { type = "Synthesis", affix = "", "(1-2)% increased Attack Speed with Axes", statOrder = { 1331 }, level = 1, group = "AxeIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["SynthesisImplicitSwordIncreasedAttackSpeedJewel1"] = { type = "Synthesis", affix = "", "(1-2)% increased Attack Speed with Swords", statOrder = { 1337 }, level = 1, group = "SwordIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["SynthesisImplicitBowIncreasedAttackSpeedJewel1_"] = { type = "Synthesis", affix = "", "(1-2)% increased Attack Speed with Bows", statOrder = { 1336 }, level = 1, group = "BowIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["SynthesisImplicitClawIncreasedAttackSpeedJewel1"] = { type = "Synthesis", affix = "", "(1-2)% increased Attack Speed with Claws", statOrder = { 1333 }, level = 1, group = "ClawIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["SynthesisImplicitDaggerIncreasedAttackSpeedJewel1"] = { type = "Synthesis", affix = "", "(1-2)% increased Attack Speed with Daggers", statOrder = { 1334 }, level = 1, group = "DaggerIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["SynthesisImplicitWandIncreasedAttackSpeedJewel1"] = { type = "Synthesis", affix = "", "(1-2)% increased Attack Speed with Wands", statOrder = { 1338 }, level = 1, group = "WandIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["SynthesisImplicitStaffIncreasedAttackSpeedJewel1"] = { type = "Synthesis", affix = "", "(1-2)% increased Attack Speed with Staves", statOrder = { 1332 }, level = 1, group = "StaffIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["SynthesisImplicitMaceIncreasedAttackSpeedJewel2"] = { type = "Synthesis", affix = "", "3% increased Attack Speed with Maces or Sceptres", statOrder = { 1335 }, level = 1, group = "MaceIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["SynthesisImplicitAxeIncreasedAttackSpeedJewel2"] = { type = "Synthesis", affix = "", "3% increased Attack Speed with Axes", statOrder = { 1331 }, level = 1, group = "AxeIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["SynthesisImplicitSwordIncreasedAttackSpeedJewel2_"] = { type = "Synthesis", affix = "", "3% increased Attack Speed with Swords", statOrder = { 1337 }, level = 1, group = "SwordIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["SynthesisImplicitBowIncreasedAttackSpeedJewel2"] = { type = "Synthesis", affix = "", "3% increased Attack Speed with Bows", statOrder = { 1336 }, level = 1, group = "BowIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["SynthesisImplicitClawIncreasedAttackSpeedJewel2"] = { type = "Synthesis", affix = "", "3% increased Attack Speed with Claws", statOrder = { 1333 }, level = 1, group = "ClawIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["SynthesisImplicitDaggerIncreasedAttackSpeedJewel2"] = { type = "Synthesis", affix = "", "3% increased Attack Speed with Daggers", statOrder = { 1334 }, level = 1, group = "DaggerIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["SynthesisImplicitWandIncreasedAttackSpeedJewel2"] = { type = "Synthesis", affix = "", "3% increased Attack Speed with Wands", statOrder = { 1338 }, level = 1, group = "WandIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["SynthesisImplicitStaffIncreasedAttackSpeedJewel2"] = { type = "Synthesis", affix = "", "3% increased Attack Speed with Staves", statOrder = { 1332 }, level = 1, group = "StaffIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["SynthesisImplicitCastSpeed1"] = { type = "Synthesis", affix = "", "3% increased Cast Speed", statOrder = { 1357 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["SynthesisImplicitCastSpeed2"] = { type = "Synthesis", affix = "", "4% increased Cast Speed", statOrder = { 1357 }, level = 15, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["SynthesisImplicitCastSpeed3"] = { type = "Synthesis", affix = "", "5% increased Cast Speed", statOrder = { 1357 }, level = 24, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["SynthesisImplicitCastSpeedJewel1"] = { type = "Synthesis", affix = "", "1% increased Cast Speed", statOrder = { 1357 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["SynthesisImplicitCastSpeedJewel2_"] = { type = "Synthesis", affix = "", "2% increased Cast Speed", statOrder = { 1357 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["SynthesisImplicitWeaponCastSpeed1_"] = { type = "Synthesis", affix = "", "(5-6)% increased Cast Speed", statOrder = { 1357 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["SynthesisImplicitWeaponCastSpeed2"] = { type = "Synthesis", affix = "", "(7-9)% increased Cast Speed", statOrder = { 1357 }, level = 15, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["SynthesisImplicitWeaponCastSpeed3"] = { type = "Synthesis", affix = "", "(10-12)% increased Cast Speed", statOrder = { 1357 }, level = 24, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["SynthesisImplicitTwoHandWeaponCastSpeed1"] = { type = "Synthesis", affix = "", "(11-12)% increased Cast Speed", statOrder = { 1357 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["SynthesisImplicitTwoHandWeaponCastSpeed2"] = { type = "Synthesis", affix = "", "(13-15)% increased Cast Speed", statOrder = { 1357 }, level = 15, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["SynthesisImplicitTwoHandWeaponCastSpeed3"] = { type = "Synthesis", affix = "", "(16-18)% increased Cast Speed", statOrder = { 1357 }, level = 24, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["SynthesisImplicitCastSpeedWithStaffJewel1_"] = { type = "Synthesis", affix = "", "(1-2)% increased Cast Speed while wielding a Staff", statOrder = { 1360 }, level = 1, group = "CastSpeedWithStaff", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["SynthesisImplicitCastSpeedWithDualWieldJewel1"] = { type = "Synthesis", affix = "", "(1-2)% increased Cast Speed while Dual Wielding", statOrder = { 1358 }, level = 1, group = "CastSpeedWithDualWield", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["SynthesisImplicitCastSpeedWithShieldJewel1_"] = { type = "Synthesis", affix = "", "(1-2)% increased Cast Speed while holding a Shield", statOrder = { 1359 }, level = 1, group = "CastSpeedWithShield", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["SynthesisImplicitCastSpeedWithStaffJewel2"] = { type = "Synthesis", affix = "", "3% increased Cast Speed while wielding a Staff", statOrder = { 1360 }, level = 1, group = "CastSpeedWithStaff", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["SynthesisImplicitCastSpeedWithDualWieldJewel2"] = { type = "Synthesis", affix = "", "3% increased Cast Speed while Dual Wielding", statOrder = { 1358 }, level = 1, group = "CastSpeedWithDualWield", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["SynthesisImplicitCastSpeedWithShieldJewel2_"] = { type = "Synthesis", affix = "", "3% increased Cast Speed while holding a Shield", statOrder = { 1359 }, level = 1, group = "CastSpeedWithShield", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["SynthesisImplicitAttackAndCastSpeed1"] = { type = "Synthesis", affix = "", "3% increased Attack and Cast Speed", statOrder = { 1955 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, }, + ["SynthesisImplicitAttackAndCastSpeed2"] = { type = "Synthesis", affix = "", "4% increased Attack and Cast Speed", statOrder = { 1955 }, level = 15, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, }, + ["SynthesisImplicitAttackAndCastSpeed3"] = { type = "Synthesis", affix = "", "5% increased Attack and Cast Speed", statOrder = { 1955 }, level = 24, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, }, + ["SynthesisImplicitAttackAndCastSpeedJewel1"] = { type = "Synthesis", affix = "", "1% increased Attack and Cast Speed", statOrder = { 1955 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, }, + ["SynthesisImplicitTrapThrowingSpeed1"] = { type = "Synthesis", affix = "", "(2-3)% increased Trap Throwing Speed", statOrder = { 1836 }, level = 48, group = "TrapThrowSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["SynthesisImplicitTrapThrowingSpeed2"] = { type = "Synthesis", affix = "", "(4-5)% increased Trap Throwing Speed", statOrder = { 1836 }, level = 56, group = "TrapThrowSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["SynthesisImplicitTrapThrowingSpeedJewel1"] = { type = "Synthesis", affix = "", "(1-2)% increased Trap Throwing Speed", statOrder = { 1836 }, level = 1, group = "TrapThrowSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["SynthesisImplicitTrapThrowingSpeedJewel2"] = { type = "Synthesis", affix = "", "3% increased Trap Throwing Speed", statOrder = { 1836 }, level = 1, group = "TrapThrowSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["SynthesisImplicitMineLayingSpeed1"] = { type = "Synthesis", affix = "", "(2-3)% increased Mine Throwing Speed", statOrder = { 1837 }, level = 48, group = "MineLayingSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["SynthesisImplicitMineLayingSpeed2"] = { type = "Synthesis", affix = "", "(4-5)% increased Mine Throwing Speed", statOrder = { 1837 }, level = 56, group = "MineLayingSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["SynthesisImplicitMineLayingSpeedJewel1_"] = { type = "Synthesis", affix = "", "(1-2)% increased Mine Throwing Speed", statOrder = { 1837 }, level = 1, group = "MineLayingSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["SynthesisImplicitMineLayingSpeedJewel2"] = { type = "Synthesis", affix = "", "3% increased Mine Throwing Speed", statOrder = { 1837 }, level = 1, group = "MineLayingSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["SynthesisImplicitTotemPlacementSpeed1"] = { type = "Synthesis", affix = "", "(2-3)% increased Totem Placement speed", statOrder = { 2487 }, level = 48, group = "SummonTotemCastSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["SynthesisImplicitTotemPlacementSpeed2"] = { type = "Synthesis", affix = "", "(4-5)% increased Totem Placement speed", statOrder = { 2487 }, level = 56, group = "SummonTotemCastSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["SynthesisImplicitTotemPlacementSpeedJewel1___"] = { type = "Synthesis", affix = "", "(1-2)% increased Totem Placement speed", statOrder = { 2487 }, level = 1, group = "SummonTotemCastSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["SynthesisImplicitTotemPlacementSpeedJewel2_"] = { type = "Synthesis", affix = "", "3% increased Totem Placement speed", statOrder = { 2487 }, level = 1, group = "SummonTotemCastSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["SynthesisImplicitBrandAttachmentRange1_"] = { type = "Synthesis", affix = "", "(2-3)% increased Brand Attachment range", statOrder = { 9827 }, level = 48, group = "BrandAttachmentRange", weightKey = { }, weightVal = { }, modTags = { "caster" }, }, + ["SynthesisImplicitBrandAttachmentRange2"] = { type = "Synthesis", affix = "", "(4-5)% increased Brand Attachment range", statOrder = { 9827 }, level = 56, group = "BrandAttachmentRange", weightKey = { }, weightVal = { }, modTags = { "caster" }, }, + ["SynthesisImplicitTauntOnHitJewel1"] = { type = "Synthesis", affix = "", "(1-2)% chance to Taunt Enemies on Hit with Attacks", statOrder = { 4813 }, level = 1, group = "AttacksTauntOnHitChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["SynthesisImplicitTauntOnHitJewel2_"] = { type = "Synthesis", affix = "", "(3-4)% chance to Taunt Enemies on Hit with Attacks", statOrder = { 4813 }, level = 1, group = "AttacksTauntOnHitChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["SynthesisImplicitBlindOnHitJewel1"] = { type = "Synthesis", affix = "", "(1-2)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4812 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["SynthesisImplicitBlindOnHitJewel2"] = { type = "Synthesis", affix = "", "(3-4)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4812 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["SynthesisImplicitHinderOnHitJewel1__"] = { type = "Synthesis", affix = "", "(1-2)% chance to Hinder Enemies on Hit with Spells", statOrder = { 9972 }, level = 1, group = "SpellsHinderOnHitChance", weightKey = { }, weightVal = { }, modTags = { "caster" }, }, + ["SynthesisImplicitHinderOnHitJewel2"] = { type = "Synthesis", affix = "", "(3-4)% chance to Hinder Enemies on Hit with Spells", statOrder = { 9972 }, level = 1, group = "SpellsHinderOnHitChance", weightKey = { }, weightVal = { }, modTags = { "caster" }, }, + ["SynthesisImplicitRarity1"] = { type = "Synthesis", affix = "", "(10-11)% increased Rarity of Items found", statOrder = { 1507 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, + ["SynthesisImplicitRarity2"] = { type = "Synthesis", affix = "", "(12-13)% increased Rarity of Items found", statOrder = { 1507 }, level = 15, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, + ["SynthesisImplicitRarity3"] = { type = "Synthesis", affix = "", "(14-15)% increased Rarity of Items found", statOrder = { 1507 }, level = 24, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, + ["SynthesisImplicitRarity4"] = { type = "Synthesis", affix = "", "(16-17)% increased Rarity of Items found", statOrder = { 1507 }, level = 36, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, + ["SynthesisImplicitRarity5"] = { type = "Synthesis", affix = "", "(18-20)% increased Rarity of Items found", statOrder = { 1507 }, level = 48, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, + ["SynthesisImplicitRarityRing1"] = { type = "Synthesis", affix = "", "(19-20)% increased Rarity of Items found", statOrder = { 1507 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, + ["SynthesisImplicitRarityRing2"] = { type = "Synthesis", affix = "", "(21-22)% increased Rarity of Items found", statOrder = { 1507 }, level = 15, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, + ["SynthesisImplicitRarityRing3"] = { type = "Synthesis", affix = "", "(23-25)% increased Rarity of Items found", statOrder = { 1507 }, level = 24, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, + ["SynthesisImplicitRarityJewel1"] = { type = "Synthesis", affix = "", "(1-2)% increased Rarity of Items found", statOrder = { 1507 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, + ["SynthesisImplicitRarityJewel2"] = { type = "Synthesis", affix = "", "(3-4)% increased Rarity of Items found", statOrder = { 1507 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, + ["SynthesisImplicitQuantity1"] = { type = "Synthesis", affix = "", "(1-3)% increased Quantity of Items found", statOrder = { 1503 }, level = 65, group = "ItemFoundQuantityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, + ["SynthesisImplicitExperience1"] = { type = "Synthesis", affix = "", "2% increased Experience gain", statOrder = { 1514 }, level = 75, group = "ExperienceIncrease", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitExplosion1_"] = { type = "Synthesis", affix = "", "Enemies you Kill Explode, dealing 3% of their Life as Physical Damage", statOrder = { 6263 }, level = 75, group = "EnemiesExplodeOnDeathPhysical", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["SynthesisImplicitExplosion2"] = { type = "Synthesis", affix = "", "Enemies you Kill Explode, dealing 5% of their Life as Physical Damage", statOrder = { 6263 }, level = 75, group = "EnemiesExplodeOnDeathPhysical", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["SynthesisImplicitExplosionChance1_"] = { type = "Synthesis", affix = "", "Enemies you Kill have a 15% chance to Explode, dealing a tenth of their maximum Life as Physical Damage", statOrder = { 3212 }, level = 75, group = "EnemiesExplodeOnDeathPhysicalChance", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["SynthesisImplicitExplosionChance2__"] = { type = "Synthesis", affix = "", "Enemies you Kill have a 25% chance to Explode, dealing a tenth of their maximum Life as Physical Damage", statOrder = { 3212 }, level = 75, group = "EnemiesExplodeOnDeathPhysicalChance", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["SynthesisImplicitLocalWeaponRange1_"] = { type = "Synthesis", affix = "", "+0.1 metres to Weapon Range", statOrder = { 2655 }, level = 36, group = "LocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["SynthesisImplicitLocalWeaponRange2"] = { type = "Synthesis", affix = "", "+0.2 metres to Weapon Range", statOrder = { 2655 }, level = 48, group = "LocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["SynthesisImplicitWeaponRange1"] = { type = "Synthesis", affix = "", "+0.1 metres to Melee Strike Range", statOrder = { 2443 }, level = 56, group = "MeleeWeaponAndUnarmedRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["SynthesisImplicitOnslaughtOnKill1"] = { type = "Synthesis", affix = "", "(5-8)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2902 }, level = 55, group = "ChanceToGainOnslaughtOnKill", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitPhasingOnKill1__"] = { type = "Synthesis", affix = "", "(5-8)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3373 }, level = 55, group = "ChancetoGainPhasingOnKill", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitUnholyMightOnKill1"] = { type = "Synthesis", affix = "", "(5-8)% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3285 }, level = 55, group = "UnholyMightOnKillPercentChance", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitIntimidateOnHit1"] = { type = "Synthesis", affix = "", "Intimidate Enemies for 4 seconds on Hit with Attacks", statOrder = { 4817 }, level = 65, group = "IntimidateOnHit", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["SynthesisImplicitOnslaughtOnHit1"] = { type = "Synthesis", affix = "", "You gain Onslaught for 4 seconds on Hit", statOrder = { 6671 }, level = 65, group = "OnslaughtOnHit", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitArcaneSurgeOnHit1"] = { type = "Synthesis", affix = "", "Gain Arcane Surge on Hit with Spells", statOrder = { 6613 }, level = 65, group = "ArcaneSurgeOnHit", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitAreaOfEffect1"] = { type = "Synthesis", affix = "", "(5-6)% increased Area of Effect", statOrder = { 1791 }, level = 36, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitAreaOfEffect2"] = { type = "Synthesis", affix = "", "(7-8)% increased Area of Effect", statOrder = { 1791 }, level = 48, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitAreaOfEffect3_"] = { type = "Synthesis", affix = "", "(9-10)% increased Area of Effect", statOrder = { 1791 }, level = 56, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitUnaffectedByBurningGround1"] = { type = "Synthesis", affix = "", "Unaffected by Burning Ground", statOrder = { 10239 }, level = 65, group = "BurningGroundEffectEffectiveness", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, }, + ["SynthesisImplicitUnaffectedByChilledGround1"] = { type = "Synthesis", affix = "", "Unaffected by Chilled Ground", statOrder = { 10244 }, level = 65, group = "ChilledGroundEffectEffectiveness", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["SynthesisImplicitUnaffectedByShockedGround1"] = { type = "Synthesis", affix = "", "Unaffected by Shocked Ground", statOrder = { 10264 }, level = 65, group = "ShockedGroundEffectEffectiveness", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["SynthesisImplicitFlaskChargesGained1"] = { type = "Synthesis", affix = "", "(10-11)% increased Flask Charges gained", statOrder = { 2092 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["SynthesisImplicitFlaskChargesGained2"] = { type = "Synthesis", affix = "", "(12-13)% increased Flask Charges gained", statOrder = { 2092 }, level = 15, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["SynthesisImplicitFlaskChargesGained3"] = { type = "Synthesis", affix = "", "(14-15)% increased Flask Charges gained", statOrder = { 2092 }, level = 24, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["SynthesisImplicitReducedFlaskChargesUsed1_"] = { type = "Synthesis", affix = "", "(10-11)% reduced Flask Charges used", statOrder = { 2093 }, level = 1, group = "BeltReducedFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["SynthesisImplicitReducedFlaskChargesUsed2"] = { type = "Synthesis", affix = "", "(12-13)% reduced Flask Charges used", statOrder = { 2093 }, level = 15, group = "BeltReducedFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["SynthesisImplicitReducedFlaskChargesUsed3"] = { type = "Synthesis", affix = "", "(14-15)% reduced Flask Charges used", statOrder = { 2093 }, level = 24, group = "BeltReducedFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["SynthesisImplicitFlaskDuration1_"] = { type = "Synthesis", affix = "", "(10-11)% increased Flask Effect Duration", statOrder = { 2096 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["SynthesisImplicitFlaskDuration2"] = { type = "Synthesis", affix = "", "(12-13)% increased Flask Effect Duration", statOrder = { 2096 }, level = 15, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["SynthesisImplicitFlaskDuration3"] = { type = "Synthesis", affix = "", "(14-15)% increased Flask Effect Duration", statOrder = { 2096 }, level = 24, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["SynthesisImplicitRemoveIgniteOnFlaskUse1"] = { type = "Synthesis", affix = "", "Remove Ignite and Burning when you use a Flask", statOrder = { 9694 }, level = 65, group = "RemoveIgniteOnFlaskUse", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental", "fire", "ailment" }, }, + ["SynthesisImplicitRemoveFreezeOnFlaskUse1"] = { type = "Synthesis", affix = "", "Remove Chill and Freeze when you use a Flask", statOrder = { 9690 }, level = 65, group = "RemoveFreezeOnFlaskUse", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental", "cold", "ailment" }, }, + ["SynthesisImplicitRemoveShockOnFlaskUse1"] = { type = "Synthesis", affix = "", "Remove Shock when you use a Flask", statOrder = { 9703 }, level = 65, group = "RemoveShockOnFlaskUse", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental", "lightning", "ailment" }, }, + ["SynthesisImplicitGemQuality1"] = { type = "Synthesis", affix = "", "+(2-3)% to Quality of Socketed Gems", statOrder = { 183 }, level = 40, group = "SocketedGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["SynthesisImplicitGemQuality2_"] = { type = "Synthesis", affix = "", "+(4-6)% to Quality of Socketed Gems", statOrder = { 183 }, level = 50, group = "SocketedGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["SynthesisImplicitGemLevel1_"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed Gems", statOrder = { 142 }, level = 65, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["SynthesisImplicitSupportGemQuality1_"] = { type = "Synthesis", affix = "", "+(2-3)% to Quality of Socketed Support Gems", statOrder = { 184 }, level = 40, group = "IncreaseSocketedSupportGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["SynthesisImplicitSupportGemQuality2"] = { type = "Synthesis", affix = "", "+(4-6)% to Quality of Socketed Support Gems", statOrder = { 184 }, level = 50, group = "IncreaseSocketedSupportGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["SynthesisImplicitSupportGemLevel1"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed Support Gems", statOrder = { 169 }, level = 65, group = "LocalIncreaseSocketedSupportGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["SynthesisImplicitMinionGemQuality1"] = { type = "Synthesis", affix = "", "+(2-3)% to Quality of Socketed Minion Gems", statOrder = { 197 }, level = 40, group = "SocketedMinionGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["SynthesisImplicitMinionGemQuality2"] = { type = "Synthesis", affix = "", "+(4-6)% to Quality of Socketed Minion Gems", statOrder = { 197 }, level = 50, group = "SocketedMinionGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["SynthesisImplicitMinionGemLevel1_"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed Minion Gems", statOrder = { 160 }, level = 65, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { }, weightVal = { }, modTags = { "minion", "gem" }, }, + ["SynthesisImplicitFireGemQuality1"] = { type = "Synthesis", affix = "", "+(2-3)% to Quality of Socketed Fire Gems", statOrder = { 193 }, level = 40, group = "SocketedFireGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["SynthesisImplicitFireGemQuality2"] = { type = "Synthesis", affix = "", "+(4-6)% to Quality of Socketed Fire Gems", statOrder = { 193 }, level = 50, group = "SocketedFireGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["SynthesisImplicitFireGemLevel1"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed Fire Gems", statOrder = { 147 }, level = 65, group = "LocalIncreaseSocketedFireGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "gem" }, }, + ["SynthesisImplicitColdGemQuality1"] = { type = "Synthesis", affix = "", "+(2-3)% to Quality of Socketed Cold Gems", statOrder = { 190 }, level = 40, group = "SocketedColdGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["SynthesisImplicitColdGemQuality2"] = { type = "Synthesis", affix = "", "+(4-6)% to Quality of Socketed Cold Gems", statOrder = { 190 }, level = 50, group = "SocketedColdGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["SynthesisImplicitColdGemLevel1"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed Cold Gems", statOrder = { 148 }, level = 65, group = "LocalIncreaseSocketedColdGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "gem" }, }, + ["SynthesisImplicitLightningGemQuality1"] = { type = "Synthesis", affix = "", "+(2-3)% to Quality of Socketed Lightning Gems", statOrder = { 195 }, level = 40, group = "SocketedLightningGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["SynthesisImplicitLightningGemQuality2"] = { type = "Synthesis", affix = "", "+(4-6)% to Quality of Socketed Lightning Gems", statOrder = { 195 }, level = 50, group = "SocketedLightningGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["SynthesisImplicitLightningGemLevel1"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed Lightning Gems", statOrder = { 149 }, level = 65, group = "LocalIncreaseSocketedLightningGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "gem" }, }, + ["SynthesisImplicitChaosGemQuality1"] = { type = "Synthesis", affix = "", "+(2-3)% to Quality of Socketed Chaos Gems", statOrder = { 189 }, level = 40, group = "SocketedChaosGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["SynthesisImplicitChaosGemQuality2_"] = { type = "Synthesis", affix = "", "+(4-6)% to Quality of Socketed Chaos Gems", statOrder = { 189 }, level = 50, group = "SocketedChaosGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["SynthesisImplicitChaosGemLevel1"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed Chaos Gems", statOrder = { 150 }, level = 65, group = "LocalIncreaseSocketedChaosGemLevel", weightKey = { }, weightVal = { }, modTags = { "chaos", "gem" }, }, + ["SynthesisImplicitMeleeGemQuality1"] = { type = "Synthesis", affix = "", "+(2-3)% to Quality of Socketed Melee Gems", statOrder = { 196 }, level = 40, group = "SocketedMeleeGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["SynthesisImplicitMeleeGemQuality2"] = { type = "Synthesis", affix = "", "+(4-6)% to Quality of Socketed Melee Gems", statOrder = { 196 }, level = 50, group = "SocketedMeleeGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["SynthesisImplicitMeleeGemLevel1"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed Melee Gems", statOrder = { 159 }, level = 65, group = "LocalIncreaseSocketedMeleeGemLevel", weightKey = { }, weightVal = { }, modTags = { "attack", "gem" }, }, + ["SynthesisImplicitBowGemQuality1_"] = { type = "Synthesis", affix = "", "+(2-3)% to Quality of Socketed Bow Gems", statOrder = { 188 }, level = 40, group = "SocketedBowGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["SynthesisImplicitBowGemQuality2"] = { type = "Synthesis", affix = "", "+(4-6)% to Quality of Socketed Bow Gems", statOrder = { 188 }, level = 50, group = "SocketedBowGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["SynthesisImplicitBowGemLevel1"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed Bow Gems", statOrder = { 158 }, level = 65, group = "LocalIncreaseSocketedBowGemLevel", weightKey = { }, weightVal = { }, modTags = { "attack", "gem" }, }, + ["SynthesisImplicitAuraGemQuality1_"] = { type = "Synthesis", affix = "", "+(2-3)% to Quality of Socketed Aura Gems", statOrder = { 187 }, level = 40, group = "SocketedAuraGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["SynthesisImplicitAuraGemQuality2"] = { type = "Synthesis", affix = "", "+(4-6)% to Quality of Socketed Aura Gems", statOrder = { 187 }, level = 50, group = "SocketedAuraGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["SynthesisImplicitAuraGemLevel1"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed Aura Gems", statOrder = { 161 }, level = 65, group = "LocalIncreaseSocketedAuraLevel", weightKey = { }, weightVal = { }, modTags = { "aura", "gem" }, }, + ["SynthesisImplicitStrengthGemQuality1"] = { type = "Synthesis", affix = "", "+(2-3)% to Quality of Socketed Strength Gems", statOrder = { 199 }, level = 40, group = "SocketedStrengthGemQuality", weightKey = { }, weightVal = { }, modTags = { "attribute", "gem" }, }, + ["SynthesisImplicitStrengthGemQuality2__"] = { type = "Synthesis", affix = "", "+(4-6)% to Quality of Socketed Strength Gems", statOrder = { 199 }, level = 50, group = "SocketedStrengthGemQuality", weightKey = { }, weightVal = { }, modTags = { "attribute", "gem" }, }, ["SynthesisImplicitStrengthGemLevel1"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed Strength Gems", statOrder = { 138 }, level = 65, group = "LocalIncreaseSocketedStrengthGemLevel", weightKey = { }, weightVal = { }, modTags = { "attribute", "gem" }, }, - ["SynthesisImplicitDexterityGemQuality1"] = { type = "Synthesis", affix = "", "+(2-3)% to Quality of Socketed Dexterity Gems", statOrder = { 190 }, level = 40, group = "SocketedDexterityGemQuality", weightKey = { }, weightVal = { }, modTags = { "attribute", "gem" }, }, - ["SynthesisImplicitDexterityGemQuality2"] = { type = "Synthesis", affix = "", "+(4-6)% to Quality of Socketed Dexterity Gems", statOrder = { 190 }, level = 50, group = "SocketedDexterityGemQuality", weightKey = { }, weightVal = { }, modTags = { "attribute", "gem" }, }, - ["SynthesisImplicitDexterityGemLevel1"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed Dexterity Gems", statOrder = { 139 }, level = 65, group = "LocalIncreaseSocketedDexterityGemLevel", weightKey = { }, weightVal = { }, modTags = { "attribute", "gem" }, }, - ["SynthesisImplicitIntelligenceGemQuality1"] = { type = "Synthesis", affix = "", "+(2-3)% to Quality of Socketed Intelligence Gems", statOrder = { 193 }, level = 40, group = "SocketedIntelligenceGemQuality", weightKey = { }, weightVal = { }, modTags = { "attribute", "gem" }, }, - ["SynthesisImplicitIntelligenceGemQuality2"] = { type = "Synthesis", affix = "", "+(4-6)% to Quality of Socketed Intelligence Gems", statOrder = { 193 }, level = 50, group = "SocketedIntelligenceGemQuality", weightKey = { }, weightVal = { }, modTags = { "attribute", "gem" }, }, - ["SynthesisImplicitIntelligenceGemLevel1"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed Intelligence Gems", statOrder = { 140 }, level = 65, group = "LocalIncreaseSocketedIntelligenceGemLevel", weightKey = { }, weightVal = { }, modTags = { "attribute", "gem" }, }, - ["SynthesisImplicitAoEGemQuality1"] = { type = "Synthesis", affix = "", "+(2-3)% to Quality of Socketed AoE Gems", statOrder = { 185 }, level = 40, group = "SocketedAoEGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, - ["SynthesisImplicitAoEGemQuality2"] = { type = "Synthesis", affix = "", "+(4-6)% to Quality of Socketed AoE Gems", statOrder = { 185 }, level = 50, group = "SocketedAoEGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, - ["SynthesisImplicitAoEGemLevel1"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed AoE Gems", statOrder = { 155 }, level = 65, group = "IncreasedSocketedAoEGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, - ["SynthesisImplicitProjectileGemQuality1"] = { type = "Synthesis", affix = "", "+(2-3)% to Quality of Socketed Projectile Gems", statOrder = { 197 }, level = 40, group = "SocketedProjectileGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, - ["SynthesisImplicitProjectileGemQuality2"] = { type = "Synthesis", affix = "", "+(4-6)% to Quality of Socketed Projectile Gems", statOrder = { 197 }, level = 50, group = "SocketedProjectileGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, - ["SynthesisImplicitProjectileGemLevel1"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed Projectile Gems", statOrder = { 156 }, level = 65, group = "LocalIncreaseSocketedProjectileGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, - ["SynthesisImplicitReducedDamageTaken1_"] = { type = "Synthesis", affix = "", "1% reduced Damage taken", statOrder = { 2115 }, level = 48, group = "DamageTaken", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitReducedDamageTaken2"] = { type = "Synthesis", affix = "", "2% reduced Damage taken", statOrder = { 2115 }, level = 56, group = "DamageTaken", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitPhysicalAttackDamageTaken1_"] = { type = "Synthesis", affix = "", "-(15-11) Physical Damage taken from Attack Hits", statOrder = { 2111 }, level = 24, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, }, - ["SynthesisImplicitPhysicalAttackDamageTaken2"] = { type = "Synthesis", affix = "", "-(20-16) Physical Damage taken from Attack Hits", statOrder = { 2111 }, level = 36, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, }, - ["SynthesisImplicitPhysicalAttackDamageTaken3"] = { type = "Synthesis", affix = "", "-(25-21) Physical Damage taken from Attack Hits", statOrder = { 2111 }, level = 48, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, }, - ["SynthesisImplicitPhysicalAttackDamageTaken4"] = { type = "Synthesis", affix = "", "-(40-35) Physical Damage taken from Attack Hits", statOrder = { 2111 }, level = 56, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, }, - ["SynthesisImplicitPhysicalAttackDamageTakenJewel1_"] = { type = "Synthesis", affix = "", "-(7-5) Physical Damage taken from Attack Hits", statOrder = { 2111 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, }, - ["SynthesisImplicitPhysicalAttackDamageTakenJewel2___"] = { type = "Synthesis", affix = "", "-(10-8) Physical Damage taken from Attack Hits", statOrder = { 2111 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, }, - ["SynthesisImplicitFortifyEffect1"] = { type = "Synthesis", affix = "", "+1 to maximum Fortification", statOrder = { 8672 }, level = 36, group = "FortifyEffect", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitFortifyEffect2"] = { type = "Synthesis", affix = "", "+2 to maximum Fortification", statOrder = { 8672 }, level = 48, group = "FortifyEffect", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitFortifyEffect3"] = { type = "Synthesis", affix = "", "+3 to maximum Fortification", statOrder = { 8672 }, level = 56, group = "FortifyEffect", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitArmourEvasionWithFortify1"] = { type = "Synthesis", affix = "", "+250 to Armour and Evasion Rating while Fortified", statOrder = { 4584 }, level = 36, group = "ArmourEvasionWithFortify", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, }, - ["SynthesisImplicitArmourEvasionWithFortify2"] = { type = "Synthesis", affix = "", "+500 to Armour and Evasion Rating while Fortified", statOrder = { 4584 }, level = 48, group = "ArmourEvasionWithFortify", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, }, - ["SynthesisImplicitArmourEvasionWithFortify3"] = { type = "Synthesis", affix = "", "+800 to Armour and Evasion Rating while Fortified", statOrder = { 4584 }, level = 56, group = "ArmourEvasionWithFortify", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, }, - ["SynthesisImplicitDegenDamageTaken1_"] = { type = "Synthesis", affix = "", "3% reduced Damage taken from Damage Over Time", statOrder = { 2122 }, level = 65, group = "DegenDamageTaken", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitTotemElementalResistanceJewel1"] = { type = "Synthesis", affix = "", "Totems gain +3% to all Elemental Resistances", statOrder = { 2662 }, level = 1, group = "TotemElementalResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, - ["SynthesisImplicitTotemElementalResistanceJewel2"] = { type = "Synthesis", affix = "", "Totems gain +(4-5)% to all Elemental Resistances", statOrder = { 2662 }, level = 1, group = "TotemElementalResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, - ["SynthesisImplicitReflectDamageTaken1"] = { type = "Synthesis", affix = "", "You and your Minions take (5-8)% reduced Reflected Damage", statOrder = { 9375 }, level = 36, group = "ReflectDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitReflectDamageTaken2"] = { type = "Synthesis", affix = "", "You and your Minions take (9-12)% reduced Reflected Damage", statOrder = { 9375 }, level = 48, group = "ReflectDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitReflectDamageTaken3"] = { type = "Synthesis", affix = "", "You and your Minions take (13-15)% reduced Reflected Damage", statOrder = { 9375 }, level = 56, group = "ReflectDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitAttackerTakesDamageNoRange1_"] = { type = "Synthesis", affix = "", "Reflects (10-15) Physical Damage to Melee Attackers", statOrder = { 2079 }, level = 1, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, - ["SynthesisImplicitAttackerTakesDamageNoRange2"] = { type = "Synthesis", affix = "", "Reflects (16-40) Physical Damage to Melee Attackers", statOrder = { 2079 }, level = 15, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, - ["SynthesisImplicitAttackerTakesDamageNoRange3"] = { type = "Synthesis", affix = "", "Reflects (41-80) Physical Damage to Melee Attackers", statOrder = { 2079 }, level = 24, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, - ["SynthesisImplicitLightRadius1"] = { type = "Synthesis", affix = "", "10% increased Light Radius", statOrder = { 2376 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitLightRadius2"] = { type = "Synthesis", affix = "", "12% increased Light Radius", statOrder = { 2376 }, level = 15, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitLightRadius3"] = { type = "Synthesis", affix = "", "15% increased Light Radius", statOrder = { 2376 }, level = 24, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitIntimidateOnHitWeapon1"] = { type = "Synthesis", affix = "", "(4-5)% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 7480 }, level = 36, group = "LocalChanceToIntimidateOnHit", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, - ["SynthesisImplicitIntimidateOnHitWeapon2_"] = { type = "Synthesis", affix = "", "(6-7)% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 7480 }, level = 48, group = "LocalChanceToIntimidateOnHit", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, - ["SynthesisImplicitIntimidateOnHitWeapon3_"] = { type = "Synthesis", affix = "", "(8-10)% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 7480 }, level = 56, group = "LocalChanceToIntimidateOnHit", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, - ["SynthesisImplicitAttackAndCastSpeedWithOnslaught1"] = { type = "Synthesis", affix = "", "(10-12)% increased Attack and Cast Speed during Onslaught", statOrder = { 2900 }, level = 65, group = "AttackAndCastSpeedWithOnslaught", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, }, - ["SynthesisImplicitAttackAndCastSpeedWithOnslaughtJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Attack and Cast Speed during Onslaught", statOrder = { 2900 }, level = 1, group = "AttackAndCastSpeedWithOnslaught", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, }, - ["SynthesisImplicitAttackAndCastSpeedWithOnslaughtJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Attack and Cast Speed during Onslaught", statOrder = { 2900 }, level = 1, group = "AttackAndCastSpeedWithOnslaught", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, }, - ["SynthesisImplicitPhysicalDamageWithUnholyMight1"] = { type = "Synthesis", affix = "", "(40-50)% increased Physical Damage while you have Unholy Might", statOrder = { 9152 }, level = 65, group = "PhysicalDamageWithUnholyMight", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, - ["SynthesisImplicitPhysicalDamageWithUnholyMightJewel1"] = { type = "Synthesis", affix = "", "(6-8)% increased Physical Damage while you have Unholy Might", statOrder = { 9152 }, level = 1, group = "PhysicalDamageWithUnholyMight", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, - ["SynthesisImplicitPhysicalDamageWithUnholyMightJewel2"] = { type = "Synthesis", affix = "", "(9-10)% increased Physical Damage while you have Unholy Might", statOrder = { 9152 }, level = 1, group = "PhysicalDamageWithUnholyMight", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, - ["SynthesisImplicitMovementSpeedWhilePhasedJewel1_"] = { type = "Synthesis", affix = "", "2% increased Movement Speed while Phasing", statOrder = { 2486 }, level = 1, group = "MovementSpeedWhilePhased", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, - ["SynthesisImplicitMovementSpeedWhilePhasedJewel2_"] = { type = "Synthesis", affix = "", "3% increased Movement Speed while Phasing", statOrder = { 2486 }, level = 1, group = "MovementSpeedWhilePhased", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, - ["SynthesisImplicitAdditionalVaalSoulOnKill1"] = { type = "Synthesis", affix = "", "(2-3)% chance to gain an additional Vaal Soul on Kill", statOrder = { 2970 }, level = 36, group = "AdditionalVaalSoulOnKill", weightKey = { }, weightVal = { }, modTags = { "vaal" }, }, - ["SynthesisImplicitAdditionalVaalSoulOnKill2"] = { type = "Synthesis", affix = "", "(4-5)% chance to gain an additional Vaal Soul on Kill", statOrder = { 2970 }, level = 48, group = "AdditionalVaalSoulOnKill", weightKey = { }, weightVal = { }, modTags = { "vaal" }, }, - ["SynthesisImplicitVaalSkillCriticalStrikeChance1"] = { type = "Synthesis", affix = "", "(21-30)% increased Vaal Skill Critical Strike Chance", statOrder = { 2973 }, level = 36, group = "VaalSkillCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical", "vaal" }, }, - ["SynthesisImplicitVaalSkillCriticalStrikeChance2_"] = { type = "Synthesis", affix = "", "(31-40)% increased Vaal Skill Critical Strike Chance", statOrder = { 2973 }, level = 48, group = "VaalSkillCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical", "vaal" }, }, - ["SynthesisImplicitVaalSkillDuration1"] = { type = "Synthesis", affix = "", "(5-8)% increased Vaal Skill Effect Duration", statOrder = { 2971 }, level = 36, group = "VaalSkillDuration", weightKey = { }, weightVal = { }, modTags = { "vaal" }, }, - ["SynthesisImplicitVaalSkillDuration2"] = { type = "Synthesis", affix = "", "(9-12)% increased Vaal Skill Effect Duration", statOrder = { 2971 }, level = 48, group = "VaalSkillDuration", weightKey = { }, weightVal = { }, modTags = { "vaal" }, }, - ["SynthesisImplicitMovementVelocityCorruptedItem1"] = { type = "Synthesis", affix = "", "(5-7)% increased Movement Speed if Corrupted", statOrder = { 7591 }, level = 60, group = "MovementVelocityCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, - ["SynthesisImplicitAttackAndCastSpeedCorruptedItem1___"] = { type = "Synthesis", affix = "", "(5-7)% increased Attack and Cast Speed if Corrupted", statOrder = { 7463 }, level = 60, group = "AttackAndCastSpeedCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, }, - ["SynthesisImplicitAllElementalResistanceCorruptedItem1"] = { type = "Synthesis", affix = "", "+(8-12)% to all Elemental Resistances if Corrupted", statOrder = { 7595 }, level = 60, group = "AllElementalResistanceCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, - ["SynthesisImplicitAllElementalResistanceCorruptedItemJewel1"] = { type = "Synthesis", affix = "", "+2% to all Elemental Resistances if Corrupted", statOrder = { 7595 }, level = 60, group = "AllElementalResistanceCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, - ["SynthesisImplicitDamageTakenCorruptedItem1"] = { type = "Synthesis", affix = "", "5% reduced Damage taken if Corrupted", statOrder = { 7492 }, level = 60, group = "DamageTakenCorruptedItem", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitIncreasedLifeCorruptedItem1"] = { type = "Synthesis", affix = "", "(6-8)% increased maximum Life if Corrupted", statOrder = { 7586 }, level = 60, group = "IncreasedLifeCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, - ["SynthesisImplicitIncreasedEnergyShieldCorruptedItem1"] = { type = "Synthesis", affix = "", "(8-10)% increased maximum Energy Shield if Corrupted", statOrder = { 7584 }, level = 60, group = "IncreasedEnergyShieldCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["SynthesisImplicitAllDamageCorruptedItem1"] = { type = "Synthesis", affix = "", "(15-20)% increased Damage if Corrupted", statOrder = { 7491 }, level = 60, group = "AllDamageCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitGlobalCriticalStrikeChanceCorruptedItem1"] = { type = "Synthesis", affix = "", "(40-50)% increased Global Critical Strike Chance if Corrupted", statOrder = { 7486 }, level = 60, group = "GlobalCriticalStrikeChanceCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, - ["SynthesisImplicitImmuneToCursesCorruptedItem1"] = { type = "Synthesis", affix = "", "Immune to Curses if Corrupted", statOrder = { 7541 }, level = 60, group = "ImmuneToCursesCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, - ["SynthesisImplicitAttackDamageCorruptedItem1"] = { type = "Synthesis", affix = "", "(40-50)% increased Attack Damage if Corrupted", statOrder = { 7464 }, level = 60, group = "AttackDamageCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, - ["SynthesisImplicitAttackDamageCorruptedItem2"] = { type = "Synthesis", affix = "", "(60-70)% increased Attack Damage if Corrupted", statOrder = { 7464 }, level = 60, group = "AttackDamageCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, - ["SynthesisImplicitAttackDamageCorruptedItemJewel1"] = { type = "Synthesis", affix = "", "(5-7)% increased Attack Damage if Corrupted", statOrder = { 7464 }, level = 1, group = "AttackDamageCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, - ["SynthesisImplicitSpellDamageCorruptedItem1"] = { type = "Synthesis", affix = "", "(40-50)% increased Spell Damage if Corrupted", statOrder = { 7606 }, level = 60, group = "SpellDamageCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SynthesisImplicitSpellDamageCorruptedItem2"] = { type = "Synthesis", affix = "", "(60-70)% increased Spell Damage if Corrupted", statOrder = { 7606 }, level = 60, group = "SpellDamageCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SynthesisImplicitSpellDamageCorruptedItemJewel1__"] = { type = "Synthesis", affix = "", "(5-7)% increased Spell Damage if Corrupted", statOrder = { 7606 }, level = 1, group = "SpellDamageCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SynthesisImplicitVaalSkillDamageAffectsSkillDamage1"] = { type = "Synthesis", affix = "", "Increases and Reductions to Damage with Vaal Skills also apply to Non-Vaal Skills", statOrder = { 2563 }, level = 65, group = "VaalSkillDamageAffectsSkillDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitDamageVSAbyssMonsters1"] = { type = "Synthesis", affix = "", "(15-20)% increased Damage with Hits and Ailments against Abyssal Monsters", statOrder = { 5769 }, level = 40, group = "DamageVSAbyssMonsters", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitDamageVSAbyssMonsters2"] = { type = "Synthesis", affix = "", "(21-25)% increased Damage with Hits and Ailments against Abyssal Monsters", statOrder = { 5769 }, level = 50, group = "DamageVSAbyssMonsters", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitReducedPhysicalDamageTakenVsAbyssMonsters1"] = { type = "Synthesis", affix = "", "(2-3)% additional Physical Damage Reduction against Abyssal Monsters", statOrder = { 4432 }, level = 40, group = "ReducedPhysicalDamageTakenVsAbyssMonsters", weightKey = { }, weightVal = { }, modTags = { "physical" }, }, - ["SynthesisImplicitReducedPhysicalDamageTakenVsAbyssMonsters2"] = { type = "Synthesis", affix = "", "(4-5)% additional Physical Damage Reduction against Abyssal Monsters", statOrder = { 4432 }, level = 50, group = "ReducedPhysicalDamageTakenVsAbyssMonsters", weightKey = { }, weightVal = { }, modTags = { "physical" }, }, - ["SynthesisImplicitAbyssJewelEffect1"] = { type = "Synthesis", affix = "", "25% increased Effect of Socketed Abyss Jewels", statOrder = { 199 }, level = 70, group = "AbyssJewelEffect", weightKey = { }, weightVal = { }, modTags = { }, }, - ["WeaponFireAddedAsChaos1h1"] = { type = "Prefix", affix = "Acidic", "Gain (5-7)% of Fire Damage as Extra Chaos Damage", statOrder = { 1820 }, level = 66, group = "FireAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, }, - ["WeaponFireAddedAsChaos1h2"] = { type = "Prefix", affix = "Dissolving", "Gain (8-10)% of Fire Damage as Extra Chaos Damage", statOrder = { 1820 }, level = 72, group = "FireAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, }, - ["WeaponFireAddedAsChaos1h3_"] = { type = "Prefix", affix = "Corrosive", "Gain (11-13)% of Fire Damage as Extra Chaos Damage", statOrder = { 1820 }, level = 80, group = "FireAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, }, - ["WeaponColdAddedAsChaos1h1"] = { type = "Prefix", affix = "Atrophic", "Gain (5-7)% of Cold Damage as Extra Chaos Damage", statOrder = { 1819 }, level = 66, group = "ColdAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "cold", "chaos" }, }, - ["WeaponColdAddedAsChaos1h2"] = { type = "Prefix", affix = "Festering", "Gain (8-10)% of Cold Damage as Extra Chaos Damage", statOrder = { 1819 }, level = 72, group = "ColdAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "cold", "chaos" }, }, - ["WeaponColdAddedAsChaos1h3_"] = { type = "Prefix", affix = "Mortifying", "Gain (11-13)% of Cold Damage as Extra Chaos Damage", statOrder = { 1819 }, level = 80, group = "ColdAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "cold", "chaos" }, }, - ["WeaponLightningAddedAsChaos1h1"] = { type = "Prefix", affix = "Agonizing", "Gain (5-7)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1817 }, level = 66, group = "LightningAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, }, - ["WeaponLightningAddedAsChaos1h2"] = { type = "Prefix", affix = "Harrowing", "Gain (8-10)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1817 }, level = 72, group = "LightningAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, }, - ["WeaponLightningAddedAsChaos1h3_"] = { type = "Prefix", affix = "Excruciating", "Gain (11-13)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1817 }, level = 80, group = "LightningAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, }, - ["WeaponPhysicalAddedAsChaos1h1____"] = { type = "Prefix", affix = "Pernicious", "Gain (5-7)% of Physical Damage as Extra Chaos Damage", statOrder = { 1814 }, level = 66, group = "PhysicalAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, - ["WeaponPhysicalAddedAsChaos1h2"] = { type = "Prefix", affix = "Inimical", "Gain (8-10)% of Physical Damage as Extra Chaos Damage", statOrder = { 1814 }, level = 72, group = "PhysicalAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, - ["WeaponPhysicalAddedAsChaos1h3_"] = { type = "Prefix", affix = "Baleful", "Gain (11-13)% of Physical Damage as Extra Chaos Damage", statOrder = { 1814 }, level = 80, group = "PhysicalAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, - ["WeaponFireAddedAsChaos2h1_"] = { type = "Prefix", affix = "Acidic", "Gain (10-14)% of Fire Damage as Extra Chaos Damage", statOrder = { 1820 }, level = 66, group = "FireAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, }, - ["WeaponFireAddedAsChaos2h2"] = { type = "Prefix", affix = "Dissolving", "Gain (15-20)% of Fire Damage as Extra Chaos Damage", statOrder = { 1820 }, level = 72, group = "FireAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, }, - ["WeaponFireAddedAsChaos2h3_"] = { type = "Prefix", affix = "Corrosive", "Gain (21-26)% of Fire Damage as Extra Chaos Damage", statOrder = { 1820 }, level = 80, group = "FireAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, }, - ["WeaponColdAddedAsChaos2h1"] = { type = "Prefix", affix = "Atrophic", "Gain (10-14)% of Cold Damage as Extra Chaos Damage", statOrder = { 1819 }, level = 66, group = "ColdAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "cold", "chaos" }, }, - ["WeaponColdAddedAsChaos2h2"] = { type = "Prefix", affix = "Festering", "Gain (15-20)% of Cold Damage as Extra Chaos Damage", statOrder = { 1819 }, level = 72, group = "ColdAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "cold", "chaos" }, }, - ["WeaponColdAddedAsChaos2h3"] = { type = "Prefix", affix = "Mortifying", "Gain (21-26)% of Cold Damage as Extra Chaos Damage", statOrder = { 1819 }, level = 80, group = "ColdAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "cold", "chaos" }, }, - ["WeaponLightningAddedAsChaos2h1"] = { type = "Prefix", affix = "Agonizing", "Gain (10-14)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1817 }, level = 66, group = "LightningAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, }, - ["WeaponLightningAddedAsChaos2h2"] = { type = "Prefix", affix = "Harrowing", "Gain (15-20)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1817 }, level = 72, group = "LightningAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, }, - ["WeaponLightningAddedAsChaos2h3"] = { type = "Prefix", affix = "Excruciating", "Gain (21-26)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1817 }, level = 80, group = "LightningAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, }, - ["WeaponPhysicalAddedAsChaos2h1"] = { type = "Prefix", affix = "Pernicious", "Gain (10-14)% of Physical Damage as Extra Chaos Damage", statOrder = { 1814 }, level = 66, group = "PhysicalAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, - ["WeaponPhysicalAddedAsChaos2h2"] = { type = "Prefix", affix = "Inimical", "Gain (15-20)% of Physical Damage as Extra Chaos Damage", statOrder = { 1814 }, level = 72, group = "PhysicalAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, - ["WeaponPhysicalAddedAsChaos2h3"] = { type = "Prefix", affix = "Baleful", "Gain (21-26)% of Physical Damage as Extra Chaos Damage", statOrder = { 1814 }, level = 80, group = "PhysicalAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, - ["MinionDamageOnWeapon1"] = { type = "Prefix", affix = "Baroness's", "Minions deal (10-19)% increased Damage", statOrder = { 1852 }, level = 2, group = "MinionDamageOnWeapon", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 3000, 3000, 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageOnWeapon2"] = { type = "Prefix", affix = "Viscountess's", "Minions deal (20-29)% increased Damage", statOrder = { 1852 }, level = 11, group = "MinionDamageOnWeapon", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 3000, 3000, 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageOnWeapon3"] = { type = "Prefix", affix = "Marchioness's", "Minions deal (30-39)% increased Damage", statOrder = { 1852 }, level = 23, group = "MinionDamageOnWeapon", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 3000, 3000, 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageOnWeapon4_"] = { type = "Prefix", affix = "Countess's", "Minions deal (40-54)% increased Damage", statOrder = { 1852 }, level = 35, group = "MinionDamageOnWeapon", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1200, 1200, 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageOnWeapon5"] = { type = "Prefix", affix = "Duchess's", "Minions deal (55-69)% increased Damage", statOrder = { 1852 }, level = 46, group = "MinionDamageOnWeapon", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageOnWeapon6"] = { type = "Prefix", affix = "Princess's", "Minions deal (70-84)% increased Damage", statOrder = { 1852 }, level = 58, group = "MinionDamageOnWeapon", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageOnWeapon7"] = { type = "Prefix", affix = "Queen's", "Minions deal (85-99)% increased Damage", statOrder = { 1852 }, level = 64, group = "MinionDamageOnWeapon", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 160, 160, 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageOnWeapon8"] = { type = "Prefix", affix = "Empress's", "Minions deal (100-109)% increased Damage", statOrder = { 1852 }, level = 84, group = "MinionDamageOnWeapon", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 80, 80, 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageOnWeaponEssence5"] = { type = "Prefix", affix = "Essences", "Minions deal (50-66)% increased Damage", statOrder = { 1852 }, level = 58, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageOnWeaponEssence6"] = { type = "Prefix", affix = "Essences", "Minions deal (67-82)% increased Damage", statOrder = { 1852 }, level = 74, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageOnWeaponEssence7"] = { type = "Prefix", affix = "Essences", "Minions deal (83-94)% increased Damage", statOrder = { 1852 }, level = 82, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageOnTwoHandWeapon1"] = { type = "Prefix", affix = "Baroness's", "Minions deal (15-29)% increased Damage", statOrder = { 1852 }, level = 2, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageOnTwoHandWeapon2"] = { type = "Prefix", affix = "Marchioness's", "Minions deal (30-44)% increased Damage", statOrder = { 1852 }, level = 11, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageOnTwoHandWeapon3"] = { type = "Prefix", affix = "Duchess's", "Minions deal (45-59)% increased Damage", statOrder = { 1852 }, level = 23, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageOnTwoHandWeapon4"] = { type = "Prefix", affix = "Queen's", "Minions deal (60-84)% increased Damage", statOrder = { 1852 }, level = 35, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageOnTwoHandWeaponEssence5"] = { type = "Prefix", affix = "Essences", "Minions deal (85-106)% increased Damage", statOrder = { 1852 }, level = 58, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageOnTwoHandWeaponEssence6"] = { type = "Prefix", affix = "Essences", "Minions deal (107-122)% increased Damage", statOrder = { 1852 }, level = 74, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageOnTwoHandWeaponEssence7"] = { type = "Prefix", affix = "Essences", "Minions deal (123-144)% increased Damage", statOrder = { 1852 }, level = 82, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageAndManaOnWeapon1"] = { type = "Prefix", affix = "Baron's", "+(17-20) to maximum Mana", "Minions deal (5-9)% increased Damage", statOrder = { 1461, 1852 }, level = 2, group = "MinionDamageOnWeaponAndMana", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "resource", "mana", "minion" }, }, - ["MinionDamageAndManaOnWeapon2_"] = { type = "Prefix", affix = "Viscount's", "+(21-24) to maximum Mana", "Minions deal (10-14)% increased Damage", statOrder = { 1461, 1852 }, level = 11, group = "MinionDamageOnWeaponAndMana", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "resource", "mana", "minion" }, }, - ["MinionDamageAndManaOnWeapon3"] = { type = "Prefix", affix = "Marquess's", "+(25-28) to maximum Mana", "Minions deal (15-19)% increased Damage", statOrder = { 1461, 1852 }, level = 23, group = "MinionDamageOnWeaponAndMana", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "resource", "mana", "minion" }, }, - ["MinionDamageAndManaOnWeapon4_"] = { type = "Prefix", affix = "Count's", "+(29-33) to maximum Mana", "Minions deal (20-24)% increased Damage", statOrder = { 1461, 1852 }, level = 35, group = "MinionDamageOnWeaponAndMana", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1600, 0 }, modTags = { "resource", "mana", "minion" }, }, - ["MinionDamageAndManaOnWeapon5"] = { type = "Prefix", affix = "Duke's", "+(34-37) to maximum Mana", "Minions deal (25-29)% increased Damage", statOrder = { 1461, 1852 }, level = 46, group = "MinionDamageOnWeaponAndMana", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 800, 0 }, modTags = { "resource", "mana", "minion" }, }, - ["MinionDamageAndManaOnWeapon6"] = { type = "Prefix", affix = "Prince's", "+(38-41) to maximum Mana", "Minions deal (30-34)% increased Damage", statOrder = { 1461, 1852 }, level = 58, group = "MinionDamageOnWeaponAndMana", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 400, 0 }, modTags = { "resource", "mana", "minion" }, }, - ["MinionDamageAndManaOnWeapon7_"] = { type = "Prefix", affix = "King's", "+(42-45) to maximum Mana", "Minions deal (35-39)% increased Damage", statOrder = { 1461, 1852 }, level = 80, group = "MinionDamageOnWeaponAndMana", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "mana", "minion" }, }, - ["MinionAttackAndCastSpeed1"] = { type = "Suffix", affix = "of Motivation", "Minions have (5-7)% increased Attack and Cast Speed", statOrder = { 8810 }, level = 2, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, - ["MinionAttackAndCastSpeed2"] = { type = "Suffix", affix = "of Coercion", "Minions have (8-10)% increased Attack and Cast Speed", statOrder = { 8810 }, level = 15, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, - ["MinionAttackAndCastSpeed3_"] = { type = "Suffix", affix = "of Incitation", "Minions have (11-13)% increased Attack and Cast Speed", statOrder = { 8810 }, level = 30, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, - ["MinionAttackAndCastSpeed4"] = { type = "Suffix", affix = "of Agitation", "Minions have (14-16)% increased Attack and Cast Speed", statOrder = { 8810 }, level = 40, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, - ["MinionAttackAndCastSpeed5"] = { type = "Suffix", affix = "of Instigation", "Minions have (17-19)% increased Attack and Cast Speed", statOrder = { 8810 }, level = 55, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, - ["MinionAttackAndCastSpeed6__"] = { type = "Suffix", affix = "of Provocation", "Minions have (20-22)% increased Attack and Cast Speed", statOrder = { 8810 }, level = 72, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, - ["MinionAttackAndCastSpeed7"] = { type = "Suffix", affix = "of Infuriation", "Minions have (23-25)% increased Attack and Cast Speed", statOrder = { 8810 }, level = 83, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, - ["MinionGemLevel1h1"] = { type = "Prefix", affix = "Martinet's", "+1 to Level of all Minion Skill Gems", statOrder = { 1496 }, level = 60, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "minion", "gem" }, }, - ["MinionLifeWeapon1"] = { type = "Suffix", affix = "of the Administrator", "Minions have (13-17)% increased maximum Life", statOrder = { 1647 }, level = 10, group = "MinionLife", weightKey = { "two_hand_weapon", "focus_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "resource", "life", "minion" }, }, - ["MinionLifeWeapon2"] = { type = "Suffix", affix = "of the Rector", "Minions have (18-22)% increased maximum Life", statOrder = { 1647 }, level = 26, group = "MinionLife", weightKey = { "two_hand_weapon", "focus_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "resource", "life", "minion" }, }, - ["MinionLifeWeapon3"] = { type = "Suffix", affix = "of the Overseer", "Minions have (23-27)% increased maximum Life", statOrder = { 1647 }, level = 42, group = "MinionLife", weightKey = { "two_hand_weapon", "focus_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "resource", "life", "minion" }, }, - ["MinionLifeWeapon4__"] = { type = "Suffix", affix = "of the Taskmaster", "Minions have (28-32)% increased maximum Life", statOrder = { 1647 }, level = 58, group = "MinionLife", weightKey = { "two_hand_weapon", "focus_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "resource", "life", "minion" }, }, - ["MinionLifeWeapon5"] = { type = "Suffix", affix = "of the Slavedriver", "Minions have (33-36)% increased maximum Life", statOrder = { 1647 }, level = 74, group = "MinionLife", weightKey = { "two_hand_weapon", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "resource", "life", "minion" }, }, - ["MinionLifeWeapon6_"] = { type = "Suffix", affix = "of the Despot", "Minions have (37-40)% increased maximum Life", statOrder = { 1647 }, level = 82, group = "MinionLife", weightKey = { "two_hand_weapon", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "resource", "life", "minion" }, }, - ["MinionMovementSpeed1"] = { type = "Suffix", affix = "of Coordination", "Minions have (6-10)% increased Movement Speed", statOrder = { 1650 }, level = 1, group = "MinionMovementSpeed", weightKey = { "two_hand_weapon", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "speed", "minion" }, }, - ["MinionMovementSpeed2"] = { type = "Suffix", affix = "of Collaboration", "Minions have (11-15)% increased Movement Speed", statOrder = { 1650 }, level = 15, group = "MinionMovementSpeed", weightKey = { "two_hand_weapon", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "speed", "minion" }, }, - ["MinionMovementSpeed3"] = { type = "Suffix", affix = "of Integration", "Minions have (16-20)% increased Movement Speed", statOrder = { 1650 }, level = 30, group = "MinionMovementSpeed", weightKey = { "two_hand_weapon", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "speed", "minion" }, }, - ["MinionMovementSpeed4"] = { type = "Suffix", affix = "of Orchestration", "Minions have (21-25)% increased Movement Speed", statOrder = { 1650 }, level = 40, group = "MinionMovementSpeed", weightKey = { "two_hand_weapon", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "speed", "minion" }, }, - ["MinionMovementSpeed5"] = { type = "Suffix", affix = "of Harmony", "Minions have (26-30)% increased Movement Speed", statOrder = { 1650 }, level = 55, group = "MinionMovementSpeed", weightKey = { "two_hand_weapon", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "speed", "minion" }, }, - ["MinionDamagePercent1"] = { type = "Prefix", affix = "Baroness's", "Minions deal (5-10)% increased Damage", statOrder = { 1852 }, level = 4, group = "MinionDamage", weightKey = { "ring_can_roll_minion_modifiers", "default", }, weightVal = { 600, 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamagePercent2"] = { type = "Prefix", affix = "Viscountess's", "Minions deal (11-20)% increased Damage", statOrder = { 1852 }, level = 15, group = "MinionDamage", weightKey = { "ring_can_roll_minion_modifiers", "default", }, weightVal = { 600, 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamagePercent3"] = { type = "Prefix", affix = "Marchioness's", "Minions deal (21-30)% increased Damage", statOrder = { 1852 }, level = 30, group = "MinionDamage", weightKey = { "ring_can_roll_minion_modifiers", "default", }, weightVal = { 600, 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamagePercent4"] = { type = "Prefix", affix = "Countess's", "Minions deal (31-36)% increased Damage", statOrder = { 1852 }, level = 60, group = "MinionDamage", weightKey = { "ring_can_roll_minion_modifiers", "default", }, weightVal = { 600, 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamagePercent5"] = { type = "Prefix", affix = "Duchess's", "Minions deal (37-42)% increased Damage", statOrder = { 1852 }, level = 81, group = "MinionDamage", weightKey = { "ring_can_roll_minion_modifiers", "default", }, weightVal = { 600, 0 }, modTags = { "damage", "minion" }, }, - ["MinionResistancesWeapon1_"] = { type = "Suffix", affix = "of Adjustment", "Minions have +(11-15)% to all Elemental Resistances", statOrder = { 2786 }, level = 8, group = "MinionElementalResistance", weightKey = { "focus_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 2000, 2000, 0 }, modTags = { "elemental", "resistance", "minion" }, }, - ["MinionResistancesWeapon2"] = { type = "Suffix", affix = "of Acclimatisation", "Minions have +(16-20)% to all Elemental Resistances", statOrder = { 2786 }, level = 24, group = "MinionElementalResistance", weightKey = { "focus_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 2000, 2000, 0 }, modTags = { "elemental", "resistance", "minion" }, }, - ["MinionResistancesWeapon3"] = { type = "Suffix", affix = "of Adaptation", "Minions have +(21-23)% to all Elemental Resistances", statOrder = { 2786 }, level = 37, group = "MinionElementalResistance", weightKey = { "focus_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 2000, 2000, 0 }, modTags = { "elemental", "resistance", "minion" }, }, - ["MinionResistancesWeapon4"] = { type = "Suffix", affix = "of Evolution", "Minions have +(24-26)% to all Elemental Resistances", statOrder = { 2786 }, level = 50, group = "MinionElementalResistance", weightKey = { "focus_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 2000, 2000, 0 }, modTags = { "elemental", "resistance", "minion" }, }, - ["MinionResistancesWeapon5"] = { type = "Suffix", affix = "of Metamorphosis", "Minions have +(27-30)% to all Elemental Resistances", statOrder = { 2786 }, level = 61, group = "MinionElementalResistance", weightKey = { "focus_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 2000, 2000, 0 }, modTags = { "elemental", "resistance", "minion" }, }, - ["MinionAccuracyRatingWeapon1_"] = { type = "Suffix", affix = "of the Instructor", "Minions have +(80-130) to Accuracy Rating", statOrder = { 8804 }, level = 1, group = "MinionFlatAccuracyRating", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "attack", "minion" }, }, - ["MinionAccuracyRatingWeapon2"] = { type = "Suffix", affix = "of the Tutor", "Minions have +(131-215) to Accuracy Rating", statOrder = { 8804 }, level = 20, group = "MinionFlatAccuracyRating", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "attack", "minion" }, }, - ["MinionAccuracyRatingWeapon3"] = { type = "Suffix", affix = "of the Commander", "Minions have +(216-325) to Accuracy Rating", statOrder = { 8804 }, level = 40, group = "MinionFlatAccuracyRating", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "attack", "minion" }, }, - ["MinionAccuracyRatingWeapon4"] = { type = "Suffix", affix = "of the Magnate", "Minions have +(326-455) to Accuracy Rating", statOrder = { 8804 }, level = 60, group = "MinionFlatAccuracyRating", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "attack", "minion" }, }, - ["MinionAccuracyRatingWeapon5"] = { type = "Suffix", affix = "of the Ruler", "Minions have +(456-545) to Accuracy Rating", statOrder = { 8804 }, level = 75, group = "MinionFlatAccuracyRating", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "attack", "minion" }, }, - ["MinionAccuracyRatingWeapon6"] = { type = "Suffix", affix = "of the Monarch", "Minions have +(546-624) to Accuracy Rating", statOrder = { 8804 }, level = 85, group = "MinionFlatAccuracyRating", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "attack", "minion" }, }, - ["MinionMaxElementalResistance1"] = { type = "Suffix", affix = "of Impermeability", "Minions have +(3-4)% to all maximum Elemental Resistances", statOrder = { 8855 }, level = 68, group = "MinionMaxElementalResistance", weightKey = { "focus_can_roll_minion_modifiers", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "minion" }, }, - ["MinionMaxElementalResistance2"] = { type = "Suffix", affix = "of Countervailing", "Minions have +(5-6)% to all maximum Elemental Resistances", statOrder = { 8855 }, level = 75, group = "MinionMaxElementalResistance", weightKey = { "focus_can_roll_minion_modifiers", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "minion" }, }, - ["MinionMaxElementalResistance3"] = { type = "Suffix", affix = "of Imperviousness", "Minions have +(7-8)% to all maximum Elemental Resistances", statOrder = { 8855 }, level = 81, group = "MinionMaxElementalResistance", weightKey = { "focus_can_roll_minion_modifiers", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "minion" }, }, - ["MinionPhysicalDamageReduction1"] = { type = "Suffix", affix = "of the Guard", "Minions have (7-9)% additional Physical Damage Reduction", statOrder = { 2151 }, level = 68, group = "MinionPhysicalDamageReduction", weightKey = { "focus_can_roll_minion_modifiers", "default", }, weightVal = { 500, 0 }, modTags = { "physical", "minion" }, }, - ["MinionPhysicalDamageReduction2"] = { type = "Suffix", affix = "of the Brigade", "Minions have (10-12)% additional Physical Damage Reduction", statOrder = { 2151 }, level = 75, group = "MinionPhysicalDamageReduction", weightKey = { "focus_can_roll_minion_modifiers", "default", }, weightVal = { 500, 0 }, modTags = { "physical", "minion" }, }, - ["MinionPhysicalDamageReduction3"] = { type = "Suffix", affix = "of the Phalanx", "Minions have (13-15)% additional Physical Damage Reduction", statOrder = { 2151 }, level = 81, group = "MinionPhysicalDamageReduction", weightKey = { "focus_can_roll_minion_modifiers", "default", }, weightVal = { 500, 0 }, modTags = { "physical", "minion" }, }, - ["MinionCriticalStrikeChanceIncrease1"] = { type = "Suffix", affix = "of Luck", "Minions have (10-19)% increased Critical Strike Chance", statOrder = { 8829 }, level = 11, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "minion", "critical" }, }, - ["MinionCriticalStrikeChanceIncrease2"] = { type = "Suffix", affix = "of Fortune", "Minions have (20-39)% increased Critical Strike Chance", statOrder = { 8829 }, level = 21, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "minion", "critical" }, }, - ["MinionCriticalStrikeChanceIncrease3"] = { type = "Suffix", affix = "of Providence", "Minions have (40-59)% increased Critical Strike Chance", statOrder = { 8829 }, level = 28, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "minion", "critical" }, }, - ["MinionCriticalStrikeChanceIncrease4"] = { type = "Suffix", affix = "of Serendipity", "Minions have (60-79)% increased Critical Strike Chance", statOrder = { 8829 }, level = 41, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "minion", "critical" }, }, - ["MinionCriticalStrikeChanceIncrease5"] = { type = "Suffix", affix = "of Determinism", "Minions have (80-99)% increased Critical Strike Chance", statOrder = { 8829 }, level = 59, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "minion", "critical" }, }, - ["MinionCriticalStrikeChanceIncrease6"] = { type = "Suffix", affix = "of Destiny", "Minions have (100-109)% increased Critical Strike Chance", statOrder = { 8829 }, level = 76, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "minion", "critical" }, }, - ["MinionCriticalStrikeMultiplier1"] = { type = "Suffix", affix = "of the Foray", "Minions have +(10-14)% to Critical Strike Multiplier", statOrder = { 8831 }, level = 8, group = "MinionCriticalStrikeMultiplier", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "damage", "minion", "critical" }, }, - ["MinionCriticalStrikeMultiplier2"] = { type = "Suffix", affix = "of the Horde", "Minions have +(15-19)% to Critical Strike Multiplier", statOrder = { 8831 }, level = 21, group = "MinionCriticalStrikeMultiplier", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "damage", "minion", "critical" }, }, - ["MinionCriticalStrikeMultiplier3"] = { type = "Suffix", affix = "of the Throng", "Minions have +(20-24)% to Critical Strike Multiplier", statOrder = { 8831 }, level = 30, group = "MinionCriticalStrikeMultiplier", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "damage", "minion", "critical" }, }, - ["MinionCriticalStrikeMultiplier4"] = { type = "Suffix", affix = "of the Swarm", "Minions have +(25-29)% to Critical Strike Multiplier", statOrder = { 8831 }, level = 44, group = "MinionCriticalStrikeMultiplier", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "damage", "minion", "critical" }, }, - ["MinionCriticalStrikeMultiplier5"] = { type = "Suffix", affix = "of the Invasion", "Minions have +(30-34)% to Critical Strike Multiplier", statOrder = { 8831 }, level = 59, group = "MinionCriticalStrikeMultiplier", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "damage", "minion", "critical" }, }, - ["MinionCriticalStrikeMultiplier6"] = { type = "Suffix", affix = "of the Legion", "Minions have +(35-38)% to Critical Strike Multiplier", statOrder = { 8831 }, level = 73, group = "MinionCriticalStrikeMultiplier", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "damage", "minion", "critical" }, }, - ["MinionGrantsConvocation1"] = { type = "Suffix", affix = "of the Convocation", "Grants Level 1 Convocation Skill", statOrder = { 7499 }, level = 45, group = "MinionGrantsConvocation", weightKey = { "focus_can_roll_minion_modifiers", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { }, }, - ["TrapAndMineThrowSpeedEssence1"] = { type = "Suffix", affix = "of the Essence", "(7-10)% increased Trap and Mine Throwing Speed", statOrder = { 9891 }, level = 42, group = "TrapAndMineThrowSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, - ["TrapAndMineThrowSpeedEssence2_"] = { type = "Suffix", affix = "of the Essence", "(11-13)% increased Trap and Mine Throwing Speed", statOrder = { 9891 }, level = 58, group = "TrapAndMineThrowSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, - ["TrapAndMineThrowSpeedEssence3_"] = { type = "Suffix", affix = "of the Essence", "(14-17)% increased Trap and Mine Throwing Speed", statOrder = { 9891 }, level = 74, group = "TrapAndMineThrowSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, - ["TrapAndMineThrowSpeedEssence4"] = { type = "Suffix", affix = "of the Essence", "(18-21)% increased Trap and Mine Throwing Speed", statOrder = { 9891 }, level = 82, group = "TrapAndMineThrowSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, - ["UnaffectedByShockedGroundInfluence1"] = { type = "Prefix", affix = "Crusader's", "Unaffected by Shocked Ground", statOrder = { 9956 }, level = 68, group = "ShockedGroundEffectEffectiveness", weightKey = { "boots_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, }, - ["SocketedLightningGemLevelInfluence1_"] = { type = "Prefix", affix = "Crusader's", "+2 to Level of Socketed Lightning Gems", statOrder = { 148 }, level = 68, group = "LocalIncreaseSocketedLightningGemLevel", weightKey = { "boots_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "elemental", "lightning", "gem" }, }, - ["MaximumFireResistanceInfluence1"] = { type = "Prefix", affix = "Crusader's", "+1% to maximum Fire Resistance", statOrder = { 1505 }, level = 75, group = "MaximumFireResist", weightKey = { "boots_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "resistance" }, }, - ["MaximumFireResistanceInfluence2"] = { type = "Prefix", affix = "Crusader's", "+2% to maximum Fire Resistance", statOrder = { 1505 }, level = 85, group = "MaximumFireResist", weightKey = { "boots_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "resistance" }, }, - ["MaximumFireResistanceInfluence1New_"] = { type = "Suffix", affix = "of the Crusade", "+1% to maximum Fire Resistance", statOrder = { 1505 }, level = 75, group = "MaximumFireResist", weightKey = { "boots_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "elemental", "fire", "resistance" }, }, - ["MaximumFireResistanceInfluence2New_"] = { type = "Suffix", affix = "of the Crusade", "+2% to maximum Fire Resistance", statOrder = { 1505 }, level = 85, group = "MaximumFireResist", weightKey = { "boots_crusader", "default", }, weightVal = { 125, 0 }, modTags = { "influence_mod", "elemental", "fire", "resistance" }, }, - ["PhysicalAddedAsExtraLightningBootsInfluence1"] = { type = "Prefix", affix = "Crusader's", "Gain (3-5)% of Physical Damage as Extra Lightning Damage", statOrder = { 1813 }, level = 68, group = "PhysicalAddedAsLightning", weightKey = { "boots_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, }, - ["PhysicalAddedAsExtraLightningBootsInfluence2"] = { type = "Prefix", affix = "Crusader's", "Gain (6-8)% of Physical Damage as Extra Lightning Damage", statOrder = { 1813 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "boots_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, }, - ["CooldownRecoveryInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(6-10)% increased Cooldown Recovery Rate", statOrder = { 4822 }, level = 75, group = "GlobalCooldownRecovery", weightKey = { "boots_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, - ["CooldownRecoveryInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(11-15)% increased Cooldown Recovery Rate", statOrder = { 4822 }, level = 80, group = "GlobalCooldownRecovery", weightKey = { "boots_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, - ["AvoidIgniteInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(31-35)% chance to Avoid being Ignited", statOrder = { 1727 }, level = 68, group = "AvoidIgnite", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "ailment" }, }, - ["AvoidIgniteInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "(36-40)% chance to Avoid being Ignited", statOrder = { 1727 }, level = 70, group = "AvoidIgnite", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "ailment" }, }, - ["AvoidIgniteInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(51-60)% chance to Avoid being Ignited", statOrder = { 1727 }, level = 75, group = "AvoidIgnite", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "influence_mod", "elemental", "fire", "ailment" }, }, - ["AvoidFreezeInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(31-35)% chance to Avoid being Frozen", statOrder = { 1726 }, level = 68, group = "AvoidFreeze", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, }, - ["AvoidFreezeInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(36-40)% chance to Avoid being Frozen", statOrder = { 1726 }, level = 70, group = "AvoidFreeze", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, }, - ["AvoidFreezeInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(51-60)% chance to Avoid being Frozen", statOrder = { 1726 }, level = 75, group = "AvoidFreeze", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, }, - ["AvoidShockInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(31-35)% chance to Avoid being Shocked", statOrder = { 1729 }, level = 68, group = "AvoidShock", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, }, - ["AvoidShockInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(36-40)% chance to Avoid being Shocked", statOrder = { 1729 }, level = 70, group = "AvoidShock", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, }, - ["AvoidShockInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(51-60)% chance to Avoid being Shocked", statOrder = { 1729 }, level = 75, group = "AvoidShock", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, }, - ["AvoidProjectilesInfluence1"] = { type = "Suffix", affix = "of Redemption", "(6-9)% chance to avoid Projectiles", statOrder = { 4810 }, level = 68, group = "ChanceToAvoidProjectiles", weightKey = { "boots_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, - ["AvoidProjectilesInfluence2"] = { type = "Suffix", affix = "of Redemption", "(10-12)% chance to avoid Projectiles", statOrder = { 4810 }, level = 73, group = "ChanceToAvoidProjectiles", weightKey = { "boots_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, - ["UnaffectedByBurningGroundInfluence1"] = { type = "Prefix", affix = "Warlord's", "Unaffected by Burning Ground", statOrder = { 9931 }, level = 68, group = "BurningGroundEffectEffectiveness", weightKey = { "boots_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "elemental", "fire" }, }, - ["SocketedFireGemLevelInfluence1"] = { type = "Prefix", affix = "Warlord's", "+2 to Level of Socketed Fire Gems", statOrder = { 146 }, level = 68, group = "LocalIncreaseSocketedFireGemLevel", weightKey = { "boots_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "elemental", "fire", "gem" }, }, - ["MaximumEnduranceChargeInfluence1"] = { type = "Prefix", affix = "Warlord's", "+1 to Maximum Endurance Charges", statOrder = { 1685 }, level = 75, group = "MaximumEnduranceCharges", weightKey = { "boots_adjudicator", "default", }, weightVal = { 125, 0 }, modTags = { "endurance_charge", "influence_mod" }, }, - ["PhysicalAddedAsExtraFireBootsInfluence1"] = { type = "Prefix", affix = "Warlord's", "Gain (3-5)% of Physical Damage as Extra Fire Damage", statOrder = { 1811 }, level = 68, group = "PhysicalAddedAsFire", weightKey = { "boots_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, }, - ["PhysicalAddedAsExtraFireBootsInfluence2"] = { type = "Prefix", affix = "Warlord's", "Gain (6-8)% of Physical Damage as Extra Fire Damage", statOrder = { 1811 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "boots_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, }, - ["AvoidStunInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(16-20)% chance to Avoid being Stunned", statOrder = { 1732 }, level = 68, group = "AvoidStun", weightKey = { "boots_adjudicator", "gloves_adjudicator", "quiver_adjudicator", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "influence_mod" }, }, - ["AvoidStunInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "(21-25)% chance to Avoid being Stunned", statOrder = { 1732 }, level = 70, group = "AvoidStun", weightKey = { "boots_adjudicator", "gloves_adjudicator", "quiver_adjudicator", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "influence_mod" }, }, - ["AvoidStunInfluence3"] = { type = "Suffix", affix = "of the Conquest", "(31-35)% chance to Avoid being Stunned", statOrder = { 1732 }, level = 75, group = "AvoidStun", weightKey = { "boots_adjudicator", "gloves_adjudicator", "quiver_adjudicator", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "influence_mod" }, }, - ["AvoidFireDamageInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(5-7)% chance to Avoid Fire Damage from Hits", statOrder = { 3239 }, level = 68, group = "FireDamageAvoidance", weightKey = { "boots_adjudicator", "shield_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "elemental", "fire" }, }, - ["AvoidFireDamageInfluence2__"] = { type = "Suffix", affix = "of the Conquest", "(8-10)% chance to Avoid Fire Damage from Hits", statOrder = { 3239 }, level = 80, group = "FireDamageAvoidance", weightKey = { "boots_adjudicator", "shield_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "elemental", "fire" }, }, - ["AvoidColdDamageInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "(5-7)% chance to Avoid Cold Damage from Hits", statOrder = { 3240 }, level = 68, group = "ColdDamageAvoidance", weightKey = { "boots_adjudicator", "shield_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "elemental", "cold" }, }, - ["AvoidColdDamageInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(8-10)% chance to Avoid Cold Damage from Hits", statOrder = { 3240 }, level = 80, group = "ColdDamageAvoidance", weightKey = { "boots_adjudicator", "shield_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "elemental", "cold" }, }, - ["AvoidLightningDamageInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(5-7)% chance to Avoid Lightning Damage from Hits", statOrder = { 3241 }, level = 68, group = "LightningDamageAvoidance", weightKey = { "boots_adjudicator", "shield_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "elemental", "lightning" }, }, - ["AvoidLightningDamageInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(8-10)% chance to Avoid Lightning Damage from Hits", statOrder = { 3241 }, level = 80, group = "LightningDamageAvoidance", weightKey = { "boots_adjudicator", "shield_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "elemental", "lightning" }, }, - ["LifeRegenerationPercentInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Regenerate (0.8-1.2)% of Life per second", statOrder = { 1823 }, level = 68, group = "LifeRegenerationRatePercentage", weightKey = { "boots_adjudicator", "helmet_adjudicator", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "influence_mod", "life" }, }, - ["LifeRegenerationPercentInfluence2"] = { type = "Suffix", affix = "of the Conquest", "Regenerate (1.3-1.5)% of Life per second", statOrder = { 1823 }, level = 73, group = "LifeRegenerationRatePercentage", weightKey = { "boots_adjudicator", "helmet_adjudicator", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "influence_mod", "life" }, }, - ["AdditionalPhysicalDamageReductionInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(2-4)% additional Physical Damage Reduction", statOrder = { 2150 }, level = 75, group = "ReducedPhysicalDamageTaken", weightKey = { "boots_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical" }, }, - ["UnaffectedByChilledGroundInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Unaffected by Chilled Ground", statOrder = { 9936 }, level = 68, group = "ChilledGroundEffectEffectiveness", weightKey = { "boots_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, }, - ["SocketedColdGemLevelInfluence1"] = { type = "Prefix", affix = "Redeemer's", "+2 to Level of Socketed Cold Gems", statOrder = { 147 }, level = 68, group = "LocalIncreaseSocketedColdGemLevel", weightKey = { "boots_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "elemental", "cold", "gem" }, }, - ["EnduranceChargeOnKillInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(4-6)% chance to gain an Endurance Charge on Kill", statOrder = { 2504 }, level = 68, group = "EnduranceChargeOnKillChance", weightKey = { "boots_eyrie", "sword_eyrie", "axe_eyrie", "mace_eyrie", "sceptre_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 0 }, modTags = { "endurance_charge", "influence_mod" }, }, - ["EnduranceChargeOnKillInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(7-10)% chance to gain an Endurance Charge on Kill", statOrder = { 2504 }, level = 80, group = "EnduranceChargeOnKillChance", weightKey = { "boots_eyrie", "sword_eyrie", "axe_eyrie", "mace_eyrie", "sceptre_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 0 }, modTags = { "endurance_charge", "influence_mod" }, }, - ["PhysicalAddedAsExtraColdBootsInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Gain (3-5)% of Physical Damage as Extra Cold Damage", statOrder = { 1812 }, level = 68, group = "PhysicalAddedAsCold", weightKey = { "boots_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, }, - ["PhysicalAddedAsExtraColdBootsInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Gain (6-8)% of Physical Damage as Extra Cold Damage", statOrder = { 1812 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "boots_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, }, - ["ElusiveOnCriticalStrikeInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(5-10)% chance to gain Elusive on Critical Strike", statOrder = { 4142 }, level = 75, group = "ElusiveOnCriticalStrike", weightKey = { "boots_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "critical" }, }, - ["ChanceToDodgeAttacksInfluence1"] = { type = "Suffix", affix = "of Redemption", "+(4-7)% chance to Suppress Spell Damage", statOrder = { 1031 }, level = 68, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, - ["ChanceToDodgeAttacksInfluence2"] = { type = "Suffix", affix = "of Redemption", "+(9-12)% chance to Suppress Spell Damage", statOrder = { 1031 }, level = 73, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, - ["ChanceToDodgeAttacksInfluence3"] = { type = "Suffix", affix = "of Redemption", "+(13-15)% chance to Suppress Spell Damage", statOrder = { 1031 }, level = 80, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, - ["ChanceToDodgeSpellsInfluence1"] = { type = "Suffix", affix = "of Redemption", "+(4-7)% chance to Suppress Spell Damage", statOrder = { 1031 }, level = 68, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, - ["ChanceToDodgeSpellsInfluence2___"] = { type = "Suffix", affix = "of Redemption", "+(9-12)% chance to Suppress Spell Damage", statOrder = { 1031 }, level = 73, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, - ["ChanceToDodgeSpellsInfluence3"] = { type = "Suffix", affix = "of Redemption", "+(13-15)% chance to Suppress Spell Damage", statOrder = { 1031 }, level = 80, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, - ["IncreasedAilmentEffectOnEnemiesInfluence1"] = { type = "Suffix", affix = "of Redemption", "(30-34)% increased Effect of Non-Damaging Ailments", statOrder = { 9017 }, level = 68, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "boots_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "ailment" }, }, - ["IncreasedAilmentEffectOnEnemiesInfluence2"] = { type = "Suffix", affix = "of Redemption", "(35-40)% increased Effect of Non-Damaging Ailments", statOrder = { 9017 }, level = 73, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "boots_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "ailment" }, }, - ["OnslaughtOnKillInfluence1"] = { type = "Suffix", affix = "of Redemption", "(5-7)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2865 }, level = 75, group = "ChanceToGainOnslaughtOnKill", weightKey = { "boots_eyrie", "quiver_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod" }, }, - ["OnslaughtOnKillInfluence2_"] = { type = "Suffix", affix = "of Redemption", "(8-10)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2865 }, level = 80, group = "ChanceToGainOnslaughtOnKill", weightKey = { "boots_eyrie", "quiver_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod" }, }, - ["UnaffectedByDesecratedGroundInfluence1_"] = { type = "Prefix", affix = "Hunter's", "Unaffected by Desecrated Ground", statOrder = { 9942 }, level = 68, group = "DesecratedGroundEffectEffectiveness", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos" }, }, - ["SocketedChaosGemLevelInfluence1"] = { type = "Prefix", affix = "Hunter's", "+2 to Level of Socketed Chaos Gems", statOrder = { 149 }, level = 68, group = "LocalIncreaseSocketedChaosGemLevel", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos", "gem" }, }, - ["AdditionalPierceInfluence1"] = { type = "Prefix", affix = "Hunter's", "Projectiles Pierce an additional Target", statOrder = { 1671 }, level = 75, group = "AdditionalPierce", weightKey = { "boots_basilisk", "quiver_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { }, }, - ["AdditionalPierceInfluence2__"] = { type = "Prefix", affix = "Hunter's", "Projectiles Pierce 2 additional Targets", statOrder = { 1671 }, level = 80, group = "AdditionalPierce", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["PercentageStrengthInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(6-8)% increased Strength", statOrder = { 1069 }, level = 68, group = "PercentageStrength", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "attribute" }, }, - ["PercentageStrengthInfluence2_"] = { type = "Suffix", affix = "of the Hunt", "(9-10)% increased Strength", statOrder = { 1069 }, level = 75, group = "PercentageStrength", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "attribute" }, }, - ["AvoidBleedAndPoisonInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(21-25)% chance to Avoid being Poisoned", "(21-25)% chance to Avoid Bleeding", statOrder = { 1730, 4077 }, level = 68, group = "AvoidBleedAndPoison", weightKey = { "boots_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "bleed", "poison", "physical", "chaos", "attack", "ailment" }, }, - ["AvoidBleedAndPoisonInfluence2____"] = { type = "Suffix", affix = "of the Hunt", "(26-30)% chance to Avoid being Poisoned", "(26-30)% chance to Avoid Bleeding", statOrder = { 1730, 4077 }, level = 70, group = "AvoidBleedAndPoison", weightKey = { "boots_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "bleed", "poison", "physical", "chaos", "attack", "ailment" }, }, - ["AvoidBleedAndPoisonInfluence3"] = { type = "Suffix", affix = "of the Hunt", "(41-50)% chance to Avoid being Poisoned", "(41-50)% chance to Avoid Bleeding", statOrder = { 1730, 4077 }, level = 75, group = "AvoidBleedAndPoison", weightKey = { "boots_basilisk", "default", }, weightVal = { 1000, 0 }, modTags = { "bleed", "poison", "physical", "chaos", "attack", "ailment" }, }, - ["TailwindOnCriticalStrikeInfluence1"] = { type = "Suffix", affix = "of the Hunt", "You have Tailwind if you have dealt a Critical Strike Recently", statOrder = { 9828 }, level = 75, group = "TailwindOnCriticalStrike", weightKey = { "boots_basilisk", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["FasterIgniteInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "Ignites you inflict deal Damage (7-9)% faster", statOrder = { 2440 }, level = 68, group = "FasterIgniteDamage", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, - ["FasterIgniteInfluence2_"] = { type = "Suffix", affix = "of the Hunt", "Ignites you inflict deal Damage (10-12)% faster", statOrder = { 2440 }, level = 73, group = "FasterIgniteDamage", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, - ["FasterBleedInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Bleeding you inflict deals Damage (7-9)% faster", statOrder = { 6214 }, level = 68, group = "FasterBleedDamage", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, - ["FasterBleedInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Bleeding you inflict deals Damage (10-12)% faster", statOrder = { 6214 }, level = 73, group = "FasterBleedDamage", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, - ["FasterPoisonInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "Poisons you inflict deal Damage (7-9)% faster", statOrder = { 6215 }, level = 68, group = "FasterPoisonDamage", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["FasterPoisonInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Poisons you inflict deal Damage (10-12)% faster", statOrder = { 6215 }, level = 73, group = "FasterPoisonDamage", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["MaximumColdResistanceInfluence1"] = { type = "Prefix", affix = "Crusader's", "+1% to maximum Cold Resistance", statOrder = { 1511 }, level = 75, group = "MaximumColdResist", weightKey = { "gloves_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "resistance" }, }, - ["MaximumColdResistanceInfluence2"] = { type = "Prefix", affix = "Crusader's", "+2% to maximum Cold Resistance", statOrder = { 1511 }, level = 85, group = "MaximumColdResist", weightKey = { "gloves_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "resistance" }, }, - ["MaximumColdResistanceInfluence1New"] = { type = "Suffix", affix = "of the Crusade", "+1% to maximum Cold Resistance", statOrder = { 1511 }, level = 75, group = "MaximumColdResist", weightKey = { "gloves_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "elemental", "cold", "resistance" }, }, - ["MaximumColdResistanceInfluence2New"] = { type = "Suffix", affix = "of the Crusade", "+2% to maximum Cold Resistance", statOrder = { 1511 }, level = 85, group = "MaximumColdResist", weightKey = { "gloves_crusader", "default", }, weightVal = { 125, 0 }, modTags = { "influence_mod", "elemental", "cold", "resistance" }, }, - ["ConvertPhysicalToFireInfluence1"] = { type = "Prefix", affix = "Crusader's", "(18-21)% of Physical Damage Converted to Fire Damage", statOrder = { 1834 }, level = 68, group = "ConvertPhysicalToFire", weightKey = { "gloves_crusader", "quiver_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, }, - ["ConvertPhysicalToFireInfluence2"] = { type = "Prefix", affix = "Crusader's", "(22-25)% of Physical Damage Converted to Fire Damage", statOrder = { 1834 }, level = 71, group = "ConvertPhysicalToFire", weightKey = { "gloves_crusader", "quiver_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, }, - ["ConvertPhysicalToColdInfluence1_"] = { type = "Prefix", affix = "Crusader's", "(18-21)% of Physical Damage Converted to Cold Damage", statOrder = { 1836 }, level = 68, group = "ConvertPhysicalToCold", weightKey = { "gloves_crusader", "quiver_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, }, - ["ConvertPhysicalToColdInfluence2"] = { type = "Prefix", affix = "Crusader's", "(22-25)% of Physical Damage Converted to Cold Damage", statOrder = { 1836 }, level = 71, group = "ConvertPhysicalToCold", weightKey = { "gloves_crusader", "quiver_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, }, - ["ConvertPhysicalToLightningInfluence1"] = { type = "Prefix", affix = "Crusader's", "(18-21)% of Physical Damage Converted to Lightning Damage", statOrder = { 1838 }, level = 68, group = "ConvertPhysicalToLightning", weightKey = { "gloves_crusader", "quiver_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, }, - ["ConvertPhysicalToLightningInfluence2"] = { type = "Prefix", affix = "Crusader's", "(22-25)% of Physical Damage Converted to Lightning Damage", statOrder = { 1838 }, level = 71, group = "ConvertPhysicalToLightning", weightKey = { "gloves_crusader", "quiver_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, }, - ["MaximumLifeLeechRateInfluence1"] = { type = "Prefix", affix = "Crusader's", "10% increased Maximum total Life Recovery per second from Leech", statOrder = { 1612 }, level = 75, group = "MaximumLifeLeechRate", weightKey = { "gloves_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "influence_mod", "life" }, }, - ["MaximumEnergyShieldLeechRateInfluence1"] = { type = "Prefix", affix = "Crusader's", "15% increased Maximum total Energy Shield Recovery per second from Leech", statOrder = { 1615 }, level = 75, group = "MaximumEnergyShieldLeechRate", weightKey = { "gloves_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, - ["MaximumEnergyShieldLeechRateSuffixInfluence1"] = { type = "Suffix", affix = "of the Crusade", "15% increased Maximum total Energy Shield Recovery per second from Leech", statOrder = { 1615 }, level = 75, group = "MaximumEnergyShieldLeechRate", weightKey = { "gloves_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, - ["AvoidInterruptionWhileCastingInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "(21-25)% chance to Ignore Stuns while Casting", statOrder = { 1779 }, level = 68, group = "AvoidInterruptionWhileCasting", weightKey = { "gloves_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, - ["AvoidInterruptionWhileCastingInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(26-30)% chance to Ignore Stuns while Casting", statOrder = { 1779 }, level = 70, group = "AvoidInterruptionWhileCasting", weightKey = { "gloves_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, - ["AvoidInterruptionWhileCastingInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(31-35)% chance to Ignore Stuns while Casting", statOrder = { 1779 }, level = 75, group = "AvoidInterruptionWhileCasting", weightKey = { "gloves_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, - ["GlobalCriticalStrikeChanceInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(16-20)% increased Global Critical Strike Chance", statOrder = { 1343 }, level = 68, group = "CriticalStrikeChance", weightKey = { "gloves_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "critical" }, }, - ["GlobalCriticalStrikeChanceInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(21-25)% increased Global Critical Strike Chance", statOrder = { 1343 }, level = 70, group = "CriticalStrikeChance", weightKey = { "gloves_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "critical" }, }, - ["GlobalCriticalStrikeChanceInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(26-30)% increased Global Critical Strike Chance", statOrder = { 1343 }, level = 75, group = "CriticalStrikeChance", weightKey = { "gloves_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "critical" }, }, - ["MaximumFrenzyChargeInfluence1"] = { type = "Prefix", affix = "Warlord's", "+1 to Maximum Frenzy Charges", statOrder = { 1690 }, level = 75, group = "MaximumFrenzyCharges", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 125, 0 }, modTags = { "frenzy_charge", "influence_mod" }, }, - ["MeleeDamageInfluence1"] = { type = "Prefix", affix = "Warlord's", "(18-22)% increased Melee Damage", statOrder = { 1119 }, level = 68, group = "MeleeDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, }, - ["MeleeDamageInfluence2_"] = { type = "Prefix", affix = "Warlord's", "(23-26)% increased Melee Damage", statOrder = { 1119 }, level = 70, group = "MeleeDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, }, - ["MeleeDamageInfluence3"] = { type = "Prefix", affix = "Warlord's", "(27-30)% increased Melee Damage", statOrder = { 1119 }, level = 73, group = "MeleeDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, }, - ["ProjectileAttackDamageInfluence1_"] = { type = "Prefix", affix = "Warlord's", "(18-22)% increased Projectile Attack Damage", statOrder = { 1874 }, level = 68, group = "ProjectileAttackDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, }, - ["ProjectileAttackDamageInfluence2"] = { type = "Prefix", affix = "Warlord's", "(23-26)% increased Projectile Attack Damage", statOrder = { 1874 }, level = 70, group = "ProjectileAttackDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, }, - ["ProjectileAttackDamageInfluence3"] = { type = "Prefix", affix = "Warlord's", "(27-30)% increased Projectile Attack Damage", statOrder = { 1874 }, level = 73, group = "ProjectileAttackDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, }, - ["SpellDamageInfluence1"] = { type = "Prefix", affix = "Warlord's", "(18-22)% increased Spell Damage", statOrder = { 1108 }, level = 68, group = "SpellDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, }, - ["SpellDamageInfluence2"] = { type = "Prefix", affix = "Warlord's", "(23-26)% increased Spell Damage", statOrder = { 1108 }, level = 70, group = "SpellDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, }, - ["SpellDamageInfluence3"] = { type = "Prefix", affix = "Warlord's", "(27-30)% increased Spell Damage", statOrder = { 1108 }, level = 73, group = "SpellDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, }, - ["DamageOverTimeInfluence1_"] = { type = "Prefix", affix = "Warlord's", "(18-22)% increased Damage over Time", statOrder = { 1095 }, level = 68, group = "DegenerationDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, - ["DamageOverTimeInfluence2_"] = { type = "Prefix", affix = "Warlord's", "(23-26)% increased Damage over Time", statOrder = { 1095 }, level = 70, group = "DegenerationDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, - ["DamageOverTimeInfluence3"] = { type = "Prefix", affix = "Warlord's", "(27-30)% increased Damage over Time", statOrder = { 1095 }, level = 73, group = "DegenerationDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, - ["MeleeWeaponRangeInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+0.2 metres to Melee Strike Range", statOrder = { 2410 }, level = 82, group = "MeleeWeaponAndUnarmedRange", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack" }, }, - ["BlockPercentInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "(2-3)% Chance to Block Attack Damage", statOrder = { 1027 }, level = 68, group = "BlockPercent", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "block", "influence_mod" }, }, - ["BlockPercentInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(4-5)% Chance to Block Attack Damage", statOrder = { 1027 }, level = 80, group = "BlockPercent", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "block", "influence_mod" }, }, - ["CullingStrikeInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Culling Strike", statOrder = { 1916 }, level = 73, group = "CullingStrike", weightKey = { "gloves_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "bow_adjudicator", "default", }, weightVal = { 250, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, }, - ["FrenzyChargeOnKillInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(4-6)% chance to gain a Frenzy Charge on Kill", statOrder = { 2506 }, level = 68, group = "FrenzyChargeOnKillChance", weightKey = { "gloves_eyrie", "quiver_eyrie", "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "bow_eyrie", "default", }, weightVal = { 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 0 }, modTags = { "frenzy_charge", "influence_mod" }, }, - ["FrenzyChargeOnKillInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(7-10)% chance to gain a Frenzy Charge on Kill", statOrder = { 2506 }, level = 80, group = "FrenzyChargeOnKillChance", weightKey = { "gloves_eyrie", "quiver_eyrie", "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "bow_eyrie", "default", }, weightVal = { 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 0 }, modTags = { "frenzy_charge", "influence_mod" }, }, - ["AddedPhysicalDamageCritRecentlyInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Adds (4-5) to (6-8) Physical Damage if you've dealt a Critical Strike Recently", statOrder = { 8788 }, level = 68, group = "AddedPhysicalDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, }, - ["AddedPhysicalDamageCritRecentlyInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Adds (6-8) to (9-11) Physical Damage if you've dealt a Critical Strike Recently", statOrder = { 8788 }, level = 73, group = "AddedPhysicalDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, }, - ["AddedFireDamageCritRecentlyInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Adds (16-20) to (22-25) Fire Damage if you've dealt a Critical Strike Recently", statOrder = { 8777 }, level = 68, group = "AddedFireDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, - ["AddedFireDamageCritRecentlyInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Adds (20-25) to (26-35) Fire Damage if you've dealt a Critical Strike Recently", statOrder = { 8777 }, level = 73, group = "AddedFireDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, - ["AddedColdDamageCritRecentlyInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Adds (16-20) to (22-25) Cold Damage if you've dealt a Critical Strike Recently", statOrder = { 8772 }, level = 68, group = "AddedColdDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, }, - ["AddedColdDamageCritRecentlyInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Adds (20-25) to (26-35) Cold Damage if you've dealt a Critical Strike Recently", statOrder = { 8772 }, level = 73, group = "AddedColdDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, }, - ["AddedLightningDamageCritRecentlyInfluence1_"] = { type = "Prefix", affix = "Redeemer's", "Adds 1 to (41-47) Lightning Damage if you've dealt a Critical Strike Recently", statOrder = { 8782 }, level = 68, group = "AddedLightningDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, }, - ["AddedLightningDamageCritRecentlyInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Adds 1 to (48-60) Lightning Damage if you've dealt a Critical Strike Recently", statOrder = { 8782 }, level = 73, group = "AddedLightningDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, }, - ["MinionDamageInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Minions deal (18-22)% increased Damage", statOrder = { 1852 }, level = 68, group = "MinionDamage", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "minion" }, }, - ["MinionDamageInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Minions deal (23-26)% increased Damage", statOrder = { 1852 }, level = 70, group = "MinionDamage", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "minion" }, }, - ["MinionDamageInfluence3_"] = { type = "Prefix", affix = "Redeemer's", "Minions deal (27-30)% increased Damage", statOrder = { 1852 }, level = 73, group = "MinionDamage", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "minion" }, }, - ["IncreasedAccuracyPercentInfluence1"] = { type = "Suffix", affix = "of Redemption", "(12-15)% increased Global Accuracy Rating", statOrder = { 1318 }, level = 68, group = "IncreasedAccuracyPercent", weightKey = { "gloves_eyrie", "quiver_eyrie", "ring_eyrie", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "attack" }, }, - ["IncreasedAccuracyPercentInfluence2"] = { type = "Suffix", affix = "of Redemption", "(16-20)% increased Global Accuracy Rating", statOrder = { 1318 }, level = 80, group = "IncreasedAccuracyPercent", weightKey = { "gloves_eyrie", "quiver_eyrie", "ring_eyrie", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "attack" }, }, - ["GlobalChanceToBlindOnHitInfluence1__"] = { type = "Suffix", affix = "of Redemption", "(8-11)% Global chance to Blind Enemies on hit", statOrder = { 2830 }, level = 68, group = "GlobalChanceToBlindOnHit", weightKey = { "gloves_eyrie", "quiver_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod" }, }, - ["GlobalChanceToBlindOnHitInfluence2_"] = { type = "Suffix", affix = "of Redemption", "(12-15)% Global chance to Blind Enemies on hit", statOrder = { 2830 }, level = 80, group = "GlobalChanceToBlindOnHit", weightKey = { "gloves_eyrie", "quiver_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod" }, }, - ["AdditionalChanceToEvadeInfluence1"] = { type = "Suffix", affix = "of Redemption", "+(2-4)% chance to Evade Attack Hits", statOrder = { 5383 }, level = 75, group = "AdditionalChanceToEvade", weightKey = { "gloves_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "evasion" }, }, - ["ChanceToIntimidateOnHitInfluence1"] = { type = "Prefix", affix = "Hunter's", "(7-10)% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5424 }, level = 85, group = "ChanceToIntimidateOnHit", weightKey = { "gloves_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["ChanceToUnnerveOnHitInfluence1___"] = { type = "Prefix", affix = "Hunter's", "(7-10)% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5434 }, level = 85, group = "ChanceToUnnerveOnHit", weightKey = { "gloves_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["StrikeSkillsAdditionalTargetInfluence1"] = { type = "Prefix", affix = "Hunter's", "Non-Vaal Strike Skills target 1 additional nearby Enemy", statOrder = { 8728 }, level = 80, group = "StrikeSkillsAdditionalTarget", weightKey = { "gloves_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "attack" }, }, - ["ChanceToImpaleInfluence1"] = { type = "Prefix", affix = "Hunter's", "(13-16)% chance to Impale Enemies on Hit with Attacks", statOrder = { 4739 }, level = 68, group = "AttackImpaleChance", weightKey = { "gloves_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical", "attack" }, }, - ["ChanceToImpaleInfluence2"] = { type = "Prefix", affix = "Hunter's", "(17-20)% chance to Impale Enemies on Hit with Attacks", statOrder = { 4739 }, level = 80, group = "AttackImpaleChance", weightKey = { "gloves_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical", "attack" }, }, - ["AilmentDurationInfluence1_"] = { type = "Prefix", affix = "Hunter's", "(10-12)% increased Duration of Ailments on Enemies", statOrder = { 1741 }, level = 68, group = "IncreasedAilmentDuration", weightKey = { "gloves_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "ailment" }, }, - ["AilmentDurationInfluence2"] = { type = "Prefix", affix = "Hunter's", "(13-15)% increased Duration of Ailments on Enemies", statOrder = { 1741 }, level = 80, group = "IncreasedAilmentDuration", weightKey = { "gloves_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "ailment" }, }, - ["PercentageDexterityInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "(6-8)% increased Dexterity", statOrder = { 1070 }, level = 68, group = "PercentageDexterity", weightKey = { "gloves_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "attribute" }, }, - ["PercentageDexterityInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(9-10)% increased Dexterity", statOrder = { 1070 }, level = 75, group = "PercentageDexterity", weightKey = { "gloves_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "attribute" }, }, - ["FireDamageOverTimeMultiplierInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "+(11-15)% to Fire Damage over Time Multiplier", statOrder = { 1136 }, level = 68, group = "FireDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamageOverTimeMultiplierInfluence2"] = { type = "Suffix", affix = "of the Hunt", "+(16-20)% to Fire Damage over Time Multiplier", statOrder = { 1136 }, level = 80, group = "FireDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, - ["ColdDamageOverTimeMultiplierInfluence1"] = { type = "Suffix", affix = "of the Hunt", "+(11-15)% to Cold Damage over Time Multiplier", statOrder = { 1141 }, level = 68, group = "ColdDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamageOverTimeMultiplierInfluence2__"] = { type = "Suffix", affix = "of the Hunt", "+(16-20)% to Cold Damage over Time Multiplier", statOrder = { 1141 }, level = 80, group = "ColdDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["ChaosDamageOverTimeMultiplierInfluence1"] = { type = "Suffix", affix = "of the Hunt", "+(11-15)% to Chaos Damage over Time Multiplier", statOrder = { 1144 }, level = 68, group = "ChaosDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["ChaosDamageOverTimeMultiplierInfluence2"] = { type = "Suffix", affix = "of the Hunt", "+(16-20)% to Chaos Damage over Time Multiplier", statOrder = { 1144 }, level = 80, group = "ChaosDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["PhysicalDamageOverTimeMultiplierInfluence1"] = { type = "Suffix", affix = "of the Hunt", "+(11-15)% to Physical Damage over Time Multiplier", statOrder = { 1132 }, level = 68, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, - ["PhysicalDamageOverTimeMultiplierInfluence2"] = { type = "Suffix", affix = "of the Hunt", "+(16-20)% to Physical Damage over Time Multiplier", statOrder = { 1132 }, level = 80, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, - ["MaximumLightningResistanceInfluence1"] = { type = "Prefix", affix = "Crusader's", "+1% to maximum Lightning Resistance", statOrder = { 1516 }, level = 75, group = "MaximumLightningResistance", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "resistance" }, }, - ["MaximumLightningResistanceInfluence2"] = { type = "Prefix", affix = "Crusader's", "+2% to maximum Lightning Resistance", statOrder = { 1516 }, level = 85, group = "MaximumLightningResistance", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "resistance" }, }, - ["MaximumLightningResistanceInfluence1New_"] = { type = "Suffix", affix = "of the Crusade", "+1% to maximum Lightning Resistance", statOrder = { 1516 }, level = 75, group = "MaximumLightningResistance", weightKey = { "helmet_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "elemental", "lightning", "resistance" }, }, - ["MaximumLightningResistanceInfluence2New_"] = { type = "Suffix", affix = "of the Crusade", "+2% to maximum Lightning Resistance", statOrder = { 1516 }, level = 85, group = "MaximumLightningResistance", weightKey = { "helmet_crusader", "default", }, weightVal = { 125, 0 }, modTags = { "influence_mod", "elemental", "lightning", "resistance" }, }, - ["MaximumManaInfluence1"] = { type = "Prefix", affix = "Crusader's", "(9-11)% increased maximum Mana", statOrder = { 1462 }, level = 68, group = "MaximumManaIncreasePercent", weightKey = { "helmet_crusader", "body_armour_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, - ["MaximumManaInfluence2_"] = { type = "Prefix", affix = "Crusader's", "(12-15)% increased maximum Mana", statOrder = { 1462 }, level = 80, group = "MaximumManaIncreasePercent", weightKey = { "helmet_crusader", "body_armour_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, - ["PhysTakenAsLightningHelmInfluence1"] = { type = "Prefix", affix = "Crusader's", "(4-6)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2325 }, level = 68, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "helmet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "lightning" }, }, - ["PhysTakenAsLightningHelmInfluence2"] = { type = "Prefix", affix = "Crusader's", "(7-10)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2325 }, level = 83, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "helmet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "lightning" }, }, - ["EnemyLightningResistanceAuraInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "Nearby Enemies have -9% to Lightning Resistance", statOrder = { 7520 }, level = 85, group = "NearbyEnemyLightningDamageResistance", weightKey = { "helmet_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "resistance" }, }, - ["SpellBlockPercentInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(3-4)% Chance to Block Spell Damage", statOrder = { 1046 }, level = 68, group = "SpellBlockPercentage", weightKey = { "helmet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "block", "influence_mod" }, }, - ["SpellBlockPercentInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(5-6)% Chance to Block Spell Damage", statOrder = { 1046 }, level = 80, group = "SpellBlockPercentage", weightKey = { "helmet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "block", "influence_mod" }, }, - ["FortifyEffectInfluence1"] = { type = "Suffix", affix = "of the Crusade", "+(3-4) to maximum Fortification", statOrder = { 8672 }, level = 75, group = "FortifyEffect", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, - ["FortifyEffectInfluence2"] = { type = "Suffix", affix = "of the Crusade", "+(4.2-5) to maximum Fortification", statOrder = { 8672 }, level = 80, group = "FortifyEffect", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, - ["EnergyShieldRegenInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Regenerate (1-1.5)% of Energy Shield per second", statOrder = { 2521 }, level = 75, group = "EnergyShieldRegenerationPerMinute", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, - ["ReducedIgniteDurationInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(31-35)% reduced Ignite Duration on you", statOrder = { 1756 }, level = 68, group = "ReducedBurnDuration", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "ailment" }, }, - ["ReducedIgniteDurationInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "(36-40)% reduced Ignite Duration on you", statOrder = { 1756 }, level = 70, group = "ReducedBurnDuration", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "ailment" }, }, - ["ReducedIgniteDurationInfluence3__"] = { type = "Suffix", affix = "of the Crusade", "(51-60)% reduced Ignite Duration on you", statOrder = { 1756 }, level = 75, group = "ReducedBurnDuration", weightKey = { "helmet_crusader", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "elemental", "fire", "ailment" }, }, - ["ReducedFreezeDurationInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(31-35)% reduced Freeze Duration on you", statOrder = { 1755 }, level = 68, group = "ReducedFreezeDuration", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, }, - ["ReducedFreezeDurationInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(36-40)% reduced Freeze Duration on you", statOrder = { 1755 }, level = 70, group = "ReducedFreezeDuration", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, }, - ["ReducedFreezeDurationInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(51-60)% reduced Freeze Duration on you", statOrder = { 1755 }, level = 75, group = "ReducedFreezeDuration", weightKey = { "helmet_crusader", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, }, - ["ReducedShockEffectInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "(31-35)% reduced Effect of Shock on you", statOrder = { 9507 }, level = 68, group = "ReducedShockEffectOnSelf", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, }, - ["ReducedShockEffectInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(36-40)% reduced Effect of Shock on you", statOrder = { 9507 }, level = 70, group = "ReducedShockEffectOnSelf", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, }, - ["ReducedShockEffectInfluence3_"] = { type = "Suffix", affix = "of the Crusade", "(51-60)% reduced Effect of Shock on you", statOrder = { 9507 }, level = 75, group = "ReducedShockEffectOnSelf", weightKey = { "helmet_crusader", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, }, - ["MaximumPowerChargeInfluence1"] = { type = "Prefix", affix = "Warlord's", "+1 to Maximum Power Charges", statOrder = { 1695 }, level = 75, group = "IncreasedMaximumPowerCharges", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 125, 0 }, modTags = { "power_charge", "influence_mod" }, }, - ["PhysTakenAsFireHelmetInfluence1"] = { type = "Prefix", affix = "Warlord's", "(4-6)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2323 }, level = 68, group = "PhysicalDamageTakenAsFireUber", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "fire" }, }, - ["PhysTakenAsFireHelmetInfluence2"] = { type = "Prefix", affix = "Warlord's", "(7-10)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2323 }, level = 83, group = "PhysicalDamageTakenAsFireUber", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "fire" }, }, - ["ElementalDamageInfluence1____"] = { type = "Prefix", affix = "Warlord's", "(12-14)% increased Elemental Damage", statOrder = { 1857 }, level = 68, group = "ElementalDamagePercent", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, }, - ["ElementalDamageInfluence2"] = { type = "Prefix", affix = "Warlord's", "(15-18)% increased Elemental Damage", statOrder = { 1857 }, level = 70, group = "ElementalDamagePercent", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, }, - ["ElementalDamageInfluence3"] = { type = "Prefix", affix = "Warlord's", "(19-22)% increased Elemental Damage", statOrder = { 1857 }, level = 75, group = "ElementalDamagePercent", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, }, - ["WarcryAreaOfEffectInfluence1_"] = { type = "Prefix", affix = "Warlord's", "Warcry Skills have (21-25)% increased Area of Effect", statOrder = { 10043 }, level = 68, group = "WarcryAreaOfEffect", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, - ["WarcryAreaOfEffectInfluence2"] = { type = "Prefix", affix = "Warlord's", "Warcry Skills have (26-30)% increased Area of Effect", statOrder = { 10043 }, level = 75, group = "WarcryAreaOfEffect", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, - ["EnemyFireResistanceAuraInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Nearby Enemies have -9% to Fire Resistance", statOrder = { 7518 }, level = 85, group = "NearbyEnemyFireDamageResistance", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "resistance" }, }, - ["CriticalStrikeMultiplierInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+(11-13)% to Global Critical Strike Multiplier", statOrder = { 1372 }, level = 68, group = "CriticalStrikeMultiplier", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "critical" }, }, - ["CriticalStrikeMultiplierInfluence2"] = { type = "Suffix", affix = "of the Conquest", "+(14-16)% to Global Critical Strike Multiplier", statOrder = { 1372 }, level = 70, group = "CriticalStrikeMultiplier", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "critical" }, }, - ["CriticalStrikeMultiplierInfluence3"] = { type = "Suffix", affix = "of the Conquest", "+(17-20)% to Global Critical Strike Multiplier", statOrder = { 1372 }, level = 75, group = "CriticalStrikeMultiplier", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "critical" }, }, - ["ManaRegenerationInfluence1__"] = { type = "Suffix", affix = "of the Conquest", "(41-55)% increased Mana Regeneration Rate", statOrder = { 1466 }, level = 68, group = "ManaRegeneration", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, - ["ManaRegenerationInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(56-70)% increased Mana Regeneration Rate", statOrder = { 1466 }, level = 75, group = "ManaRegeneration", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, - ["GainAccuracyEqualToStrengthInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Gain Accuracy Rating equal to your Strength", statOrder = { 6377 }, level = 75, group = "GainAccuracyEqualToStrength", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack" }, }, - ["MinionLifeInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "Minions have (21-26)% increased maximum Life", statOrder = { 1647 }, level = 68, group = "MinionLife", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life", "minion" }, }, - ["MinionLifeInfluence2"] = { type = "Suffix", affix = "of the Conquest", "Minions have (27-30)% increased maximum Life", statOrder = { 1647 }, level = 70, group = "MinionLife", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life", "minion" }, }, - ["MinionLifeInfluence3"] = { type = "Suffix", affix = "of the Conquest", "Minions have (31-35)% increased maximum Life", statOrder = { 1647 }, level = 75, group = "MinionLife", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life", "minion" }, }, - ["PowerChargeOnKillInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(4-6)% chance to gain a Power Charge on Kill", statOrder = { 2508 }, level = 68, group = "PowerChargeOnKillChance", weightKey = { "helmet_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "sceptre_eyrie", "wand_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 250, 250, 250, 250, 250, 250, 250, 250, 0 }, modTags = { "power_charge", "influence_mod" }, }, - ["PowerChargeOnKillInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(7-10)% chance to gain a Power Charge on Kill", statOrder = { 2508 }, level = 80, group = "PowerChargeOnKillChance", weightKey = { "helmet_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "sceptre_eyrie", "wand_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 250, 250, 250, 250, 250, 250, 250, 250, 0 }, modTags = { "power_charge", "influence_mod" }, }, - ["PhysTakenAsColdHelmetInfluence1__"] = { type = "Prefix", affix = "Redeemer's", "(4-6)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2324 }, level = 68, group = "PhysicalDamageTakenAsColdUber", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "cold" }, }, - ["PhysTakenAsColdHelmetInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(7-10)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2324 }, level = 83, group = "PhysicalDamageTakenAsColdUber", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "cold" }, }, - ["SpellsAdditionalUnleashSealInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Skills supported by Unleash have +1 to maximum number of Seals", statOrder = { 10168 }, level = 80, group = "SpellsAdditionalUnleashSeal", weightKey = { "helmet_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod" }, }, - ["EnemyColdResistanceAuraInfluence1__"] = { type = "Suffix", affix = "of Redemption", "Nearby Enemies have -9% to Cold Resistance", statOrder = { 7516 }, level = 85, group = "NearbyEnemyColdDamageResistance", weightKey = { "helmet_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "resistance" }, }, - ["ReducedManaReservationInfluence1"] = { type = "Suffix", affix = "of Redemption", "(4-6)% increased Mana Reservation Efficiency of Skills", statOrder = { 2109 }, level = 68, group = "ReducedReservation", weightKey = { "helmet_eyrie", "amulet_eyrie", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, - ["ManaReservationEfficiencyInfluence1___"] = { type = "Suffix", affix = "of Redemption", "(4-6)% increased Mana Reservation Efficiency of Skills", statOrder = { 2105 }, level = 68, group = "ManaReservationEfficiency", weightKey = { "helmet_eyrie", "amulet_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, - ["ReducedManaReservationInfluence2"] = { type = "Suffix", affix = "of Redemption", "(8-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 2109 }, level = 75, group = "ReducedReservation", weightKey = { "helmet_eyrie", "amulet_eyrie", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, - ["ManaReservationEfficiencyInfluence2"] = { type = "Suffix", affix = "of Redemption", "(7-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 2105 }, level = 75, group = "ManaReservationEfficiency", weightKey = { "helmet_eyrie", "amulet_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, - ["IgniteChanceAndDamageInfluence1__"] = { type = "Suffix", affix = "of Redemption", "(15-17)% increased Burning Damage", "(6-8)% chance to Ignite", statOrder = { 1758, 1903 }, level = 68, group = "IgniteChanceAndDamage", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, }, - ["IgniteChanceAndDamageInfluence2_"] = { type = "Suffix", affix = "of Redemption", "(18-20)% increased Burning Damage", "(6-8)% chance to Ignite", statOrder = { 1758, 1903 }, level = 75, group = "IgniteChanceAndDamage", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, }, - ["FreezeChanceAndDurationInfluence1____"] = { type = "Suffix", affix = "of Redemption", "(8-12)% increased Freeze Duration on Enemies", "(6-8)% chance to Freeze", statOrder = { 1739, 1906 }, level = 68, group = "FreezeChanceAndDuration", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, }, - ["FreezeChanceAndDurationInfluence2_"] = { type = "Suffix", affix = "of Redemption", "(13-15)% increased Freeze Duration on Enemies", "(6-8)% chance to Freeze", statOrder = { 1739, 1906 }, level = 75, group = "FreezeChanceAndDuration", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, }, - ["ShockChanceAndEffectInfluence1"] = { type = "Suffix", affix = "of Redemption", "(6-8)% chance to Shock", "(8-12)% increased Effect of Lightning Ailments", statOrder = { 1910, 7045 }, level = 68, group = "ShockChanceAndEffect", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, }, - ["ShockChanceAndEffectInfluence2"] = { type = "Suffix", affix = "of Redemption", "(6-8)% chance to Shock", "(13-15)% increased Effect of Lightning Ailments", statOrder = { 1910, 7045 }, level = 75, group = "ShockChanceAndEffect", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, }, - ["AddedManaRegenerationInfluence1"] = { type = "Suffix", affix = "of Redemption", "Regenerate (3-5) Mana per second", statOrder = { 1464 }, level = 68, group = "AddedManaRegeneration", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, - ["AddedManaRegenerationInfluence2__"] = { type = "Suffix", affix = "of Redemption", "Regenerate (6-8) Mana per second", statOrder = { 1464 }, level = 75, group = "AddedManaRegeneration", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, - ["SpellAddedFireDamageInfluence1_"] = { type = "Prefix", affix = "Hunter's", "Adds (17-22) to (33-39) Fire Damage to Spells", statOrder = { 1288 }, level = 68, group = "SpellAddedFireDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamageInfluence2_"] = { type = "Prefix", affix = "Hunter's", "Adds (21-28) to (42-49) Fire Damage to Spells", statOrder = { 1288 }, level = 70, group = "SpellAddedFireDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamageInfluence3_"] = { type = "Prefix", affix = "Hunter's", "Adds (25-34) to (51-59) Fire Damage to Spells", statOrder = { 1288 }, level = 75, group = "SpellAddedFireDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedColdDamageInfluence1_"] = { type = "Prefix", affix = "Hunter's", "Adds (14-18) to (27-32) Cold Damage to Spells", statOrder = { 1289 }, level = 68, group = "SpellAddedColdDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamageInfluence2"] = { type = "Prefix", affix = "Hunter's", "Adds (17-23) to (34-40) Cold Damage to Spells", statOrder = { 1289 }, level = 70, group = "SpellAddedColdDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamageInfluence3_"] = { type = "Prefix", affix = "Hunter's", "Adds (21-28) to (41-48) Cold Damage to Spells", statOrder = { 1289 }, level = 75, group = "SpellAddedColdDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedLightningDamageInfluence1"] = { type = "Prefix", affix = "Hunter's", "Adds (2-5) to (58-61) Lightning Damage to Spells", statOrder = { 1290 }, level = 68, group = "SpellAddedLightningDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamageInfluence2"] = { type = "Prefix", affix = "Hunter's", "Adds (2-6) to (73-77) Lightning Damage to Spells", statOrder = { 1290 }, level = 70, group = "SpellAddedLightningDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamageInfluence3"] = { type = "Prefix", affix = "Hunter's", "Adds (2-7) to (88-93) Lightning Damage to Spells", statOrder = { 1290 }, level = 75, group = "SpellAddedLightningDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedPhysicalDamageInfluence1__"] = { type = "Prefix", affix = "Hunter's", "Adds (17-22) to (33-39) Physical Damage to Spells", statOrder = { 1287 }, level = 68, group = "SpellAddedPhysicalDamage", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["SpellAddedPhysicalDamageInfluence2"] = { type = "Prefix", affix = "Hunter's", "Adds (21-28) to (42-49) Physical Damage to Spells", statOrder = { 1287 }, level = 70, group = "SpellAddedPhysicalDamage", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["SpellAddedPhysicalDamageInfluence3"] = { type = "Prefix", affix = "Hunter's", "Adds (25-34) to (51-59) Physical Damage to Spells", statOrder = { 1287 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["SpellAddedChaosDamageInfluence1"] = { type = "Prefix", affix = "Hunter's", "Adds (14-18) to (27-32) Chaos Damage to Spells", statOrder = { 1291 }, level = 68, group = "SpellAddedChaosDamage", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["SpellAddedChaosDamageInfluence2"] = { type = "Prefix", affix = "Hunter's", "Adds (17-23) to (34-40) Chaos Damage to Spells", statOrder = { 1291 }, level = 70, group = "SpellAddedChaosDamage", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["SpellAddedChaosDamageInfluence3"] = { type = "Prefix", affix = "Hunter's", "Adds (21-28) to (41-48) Chaos Damage to Spells", statOrder = { 1291 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["EnemyChaosResistanceAuraInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "Nearby Enemies have -9% to Chaos Resistance", statOrder = { 7515 }, level = 85, group = "NearbyEnemyChaosDamageResistance", weightKey = { "helmet_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "chaos_damage", "damage", "chaos", "resistance" }, }, - ["PercentageIntelligenceInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "(6-8)% increased Intelligence", statOrder = { 1071 }, level = 68, group = "PercentageIntelligence", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "attribute" }, }, - ["PercentageIntelligenceInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(9-10)% increased Intelligence", statOrder = { 1071 }, level = 75, group = "PercentageIntelligence", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "attribute" }, }, - ["IgnitingConfluxInfluence1"] = { type = "Suffix", affix = "of the Hunt", "You have Igniting Conflux for 3 seconds every 8 seconds", statOrder = { 6484 }, level = 80, group = "SingleConflux", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["ChillingConfluxInfluence1__"] = { type = "Suffix", affix = "of the Hunt", "You have Chilling Conflux for 3 seconds every 8 seconds", statOrder = { 6484 }, level = 80, group = "SingleConflux", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["ShockingConfluxInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "You have Shocking Conflux for 3 seconds every 8 seconds", statOrder = { 6484 }, level = 80, group = "SingleConflux", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["PhysTakenAsLightningInfluence1"] = { type = "Prefix", affix = "Crusader's", "(8-12)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2325 }, level = 68, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "body_armour_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "lightning" }, }, - ["PhysTakenAsLightningInfluence2"] = { type = "Prefix", affix = "Crusader's", "(13-15)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2325 }, level = 83, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "body_armour_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "lightning" }, }, - ["ConsecratedGroundStationaryInfluence1_"] = { type = "Prefix", affix = "Crusader's", "You have Consecrated Ground around you while stationary", statOrder = { 5562 }, level = 75, group = "ConsecratedGroundStationary", weightKey = { "body_armour_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, - ["HolyPhysicalExplosionInfluence1"] = { type = "Prefix", affix = "Crusader's", "Enemies you Kill Explode, dealing 3% of their Life as Physical Damage", statOrder = { 6056 }, level = 85, group = "EnemiesExplodeOnDeathPhysical", weightKey = { "body_armour_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, }, - ["HolyPhysicalExplosionChanceInfluence1"] = { type = "Prefix", affix = "Crusader's", "Enemies you Kill have a (11-20)% chance to Explode, dealing a tenth of their maximum Life as Physical Damage", statOrder = { 3170 }, level = 75, group = "EnemiesExplodeOnDeathPhysicalChance", weightKey = { "body_armour_crusader", "default", }, weightVal = { 100, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, }, - ["HolyPhysicalExplosionChanceInfluence2_"] = { type = "Prefix", affix = "Crusader's", "Enemies you Kill have a (21-30)% chance to Explode, dealing a tenth of their maximum Life as Physical Damage", statOrder = { 3170 }, level = 85, group = "EnemiesExplodeOnDeathPhysicalChance", weightKey = { "body_armour_crusader", "default", }, weightVal = { 25, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, }, - ["PercentageIntelligenceBodyInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(5-8)% increased Intelligence", statOrder = { 1071 }, level = 68, group = "PercentageIntelligence", weightKey = { "body_armour_crusader", "amulet_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "attribute" }, }, - ["PercentageIntelligenceBodyInfluence2___"] = { type = "Suffix", affix = "of the Crusade", "(9-12)% increased Intelligence", statOrder = { 1071 }, level = 75, group = "PercentageIntelligence", weightKey = { "body_armour_crusader", "amulet_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "attribute" }, }, - ["AddPowerChargeOnCritInfluence1"] = { type = "Suffix", affix = "of the Crusade", "15% chance to gain a Power Charge on Critical Strike", statOrder = { 1711 }, level = 80, group = "PowerChargeOnCriticalStrikeChance", weightKey = { "body_armour_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "power_charge", "influence_mod", "critical" }, }, - ["EnergyShieldOnKillPercentInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "Recover (3-4)% of Energy Shield on Kill", statOrder = { 1631 }, level = 68, group = "MaximumEnergyShieldOnKillPercent", weightKey = { "body_armour_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, - ["EnergyShieldOnKillPercentInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "Recover (5-6)% of Energy Shield on Kill", statOrder = { 1631 }, level = 80, group = "MaximumEnergyShieldOnKillPercent", weightKey = { "body_armour_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, - ["EnergyShieldRecoveryRateBodyInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(8-11)% increased Energy Shield Recovery rate", statOrder = { 1450 }, level = 68, group = "EnergyShieldRecoveryRate", weightKey = { "body_armour_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, - ["EnergyShieldRecoveryRateBodyInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(12-15)% increased Energy Shield Recovery rate", statOrder = { 1450 }, level = 80, group = "EnergyShieldRecoveryRate", weightKey = { "body_armour_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, - ["PhysTakenAsFireInfluence1"] = { type = "Prefix", affix = "Warlord's", "(8-12)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2323 }, level = 68, group = "PhysicalDamageTakenAsFireUber", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "fire" }, }, - ["PhysTakenAsFireInfluence2"] = { type = "Prefix", affix = "Warlord's", "(13-15)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2323 }, level = 83, group = "PhysicalDamageTakenAsFireUber", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "fire" }, }, - ["SocketedActiveGemLevelInfluence1"] = { type = "Prefix", affix = "Warlord's", "+1 to Level of Socketed Skill Gems", statOrder = { 169 }, level = 80, group = "LocalIncreaseSocketedActiveSkillGemLevel", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "gem" }, }, - ["ReflectedPhysicalDamageInfluence1__"] = { type = "Prefix", affix = "Warlord's", "You and your Minions take 100% reduced Reflected Physical Damage", statOrder = { 9177 }, level = 75, group = "ReducedPhysicalReflectTaken", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical" }, }, - ["AllResistancesInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+(10-12)% to all Elemental Resistances", statOrder = { 1501 }, level = 68, group = "AllResistances", weightKey = { "body_armour_adjudicator", "belt_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "elemental", "resistance" }, }, - ["AllResistancesInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "+(13-15)% to all Elemental Resistances", statOrder = { 1501 }, level = 70, group = "AllResistances", weightKey = { "body_armour_adjudicator", "belt_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "elemental", "resistance" }, }, - ["AllResistancesInfluence3_"] = { type = "Suffix", affix = "of the Conquest", "+(16-18)% to all Elemental Resistances", statOrder = { 1501 }, level = 75, group = "AllResistances", weightKey = { "body_armour_adjudicator", "belt_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "elemental", "resistance" }, }, - ["PercentageStrengthBodyInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(5-8)% increased Strength", statOrder = { 1069 }, level = 68, group = "PercentageStrength", weightKey = { "body_armour_adjudicator", "amulet_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "attribute" }, }, - ["PercentageStrengthBodyInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "(9-12)% increased Strength", statOrder = { 1069 }, level = 75, group = "PercentageStrength", weightKey = { "body_armour_adjudicator", "amulet_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "attribute" }, }, - ["EnduranceChargeIfHitRecentlyInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Gain 1 Endurance Charge every second if you've been Hit Recently", statOrder = { 6411 }, level = 80, group = "EnduranceChargeIfHitRecently", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 250, 0 }, modTags = { "endurance_charge", "influence_mod" }, }, - ["LifeOnKillPercentInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "Recover (3-4)% of Life on Kill", statOrder = { 1630 }, level = 68, group = "MaximumLifeOnKillPercent", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life" }, }, - ["LifeOnKillPercentInfluence2"] = { type = "Suffix", affix = "of the Conquest", "Recover (5-6)% of Life on Kill", statOrder = { 1630 }, level = 80, group = "MaximumLifeOnKillPercent", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life" }, }, - ["LifeRecoveryRateBodyInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(8-11)% increased Life Recovery rate", statOrder = { 1460 }, level = 68, group = "LifeRecoveryRate", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life" }, }, - ["LifeRecoveryRateBodyInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(12-15)% increased Life Recovery rate", statOrder = { 1460 }, level = 80, group = "LifeRecoveryRate", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life" }, }, - ["SocketedAttacksManaCostInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Socketed Attacks have -15 to Total Mana Cost", statOrder = { 467 }, level = 85, group = "SocketedAttacksManaCost", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "skill", "resource", "influence_mod", "mana", "attack", "gem" }, }, - ["PhysTakenAsColdInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(8-12)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2324 }, level = 68, group = "PhysicalDamageTakenAsColdUber", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "cold" }, }, - ["PhysTakenAsColdInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(13-15)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2324 }, level = 83, group = "PhysicalDamageTakenAsColdUber", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "cold" }, }, - ["SocketedSupportGemLevelInfluence1"] = { type = "Prefix", affix = "Redeemer's", "+1 to Level of Socketed Support Gems", statOrder = { 168 }, level = 80, group = "LocalIncreaseSocketedSupportGemLevel", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "gem" }, }, - ["ReflectedElementalDamageInfluence1"] = { type = "Prefix", affix = "Redeemer's", "You and your Minions take 100% reduced Reflected Elemental Damage", statOrder = { 6023 }, level = 75, group = "ReducedElementalReflectTaken", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "elemental" }, }, - ["NearbyEnemiesAreBlindedInfluence1_"] = { type = "Prefix", affix = "Redeemer's", "Nearby Enemies are Blinded", statOrder = { 3262 }, level = 75, group = "NearbyEnemiesAreBlinded", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, - ["PercentageDexterityBodyInfluence1"] = { type = "Suffix", affix = "of Redemption", "(5-8)% increased Dexterity", statOrder = { 1070 }, level = 68, group = "PercentageDexterity", weightKey = { "body_armour_eyrie", "amulet_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "attribute" }, }, - ["PercentageDexterityBodyInfluence2"] = { type = "Suffix", affix = "of Redemption", "(9-12)% increased Dexterity", statOrder = { 1070 }, level = 75, group = "PercentageDexterity", weightKey = { "body_armour_eyrie", "amulet_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "attribute" }, }, - ["FrenzyChargeOnHitChanceInfluence1"] = { type = "Suffix", affix = "of Redemption", "10% chance to gain a Frenzy Charge on Hit", statOrder = { 1714 }, level = 80, group = "FrenzyChargeOnHitChance", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "frenzy_charge", "influence_mod" }, }, - ["ManaOnKillPercentInfluence1"] = { type = "Suffix", affix = "of Redemption", "Recover (3-4)% of Mana on Kill", statOrder = { 1632 }, level = 68, group = "MaximumManaOnKillPercent", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, - ["ManaOnKillPercentInfluence2"] = { type = "Suffix", affix = "of Redemption", "Recover (5-6)% of Mana on Kill", statOrder = { 1632 }, level = 80, group = "MaximumManaOnKillPercent", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, - ["ManaRecoveryRateBodyInfluence1_"] = { type = "Suffix", affix = "of Redemption", "(8-11)% increased Mana Recovery rate", statOrder = { 1468 }, level = 68, group = "ManaRecoveryRate", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, - ["ManaRecoveryRateBodyInfluence2"] = { type = "Suffix", affix = "of Redemption", "(12-15)% increased Mana Recovery rate", statOrder = { 1468 }, level = 80, group = "ManaRecoveryRate", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, - ["AuraEffectBodyInfluence1"] = { type = "Suffix", affix = "of Redemption", "(15-20)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3429 }, level = 75, group = "AuraEffect", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "aura" }, }, - ["AuraEffectBodyInfluence2"] = { type = "Suffix", affix = "of Redemption", "(21-25)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3429 }, level = 80, group = "AuraEffect", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "aura" }, }, - ["MaximumLifeBodyInfluence1"] = { type = "Prefix", affix = "Hunter's", "(5-8)% increased maximum Life", statOrder = { 1453 }, level = 68, group = "MaximumLifeIncreasePercent", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, }, - ["MaximumLifeBodyInfluence2_"] = { type = "Prefix", affix = "Hunter's", "(9-12)% increased maximum Life", statOrder = { 1453 }, level = 85, group = "MaximumLifeIncreasePercent", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, }, - ["PhysTakenAsChaosInfluence1_"] = { type = "Prefix", affix = "Hunter's", "(8-12)% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2327 }, level = 75, group = "PhysicalDamageTakenAsChaosUber", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysTakenAsChaosInfluence2"] = { type = "Prefix", affix = "Hunter's", "(13-15)% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2327 }, level = 83, group = "PhysicalDamageTakenAsChaosUber", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical", "chaos" }, }, - ["AdditionalCurseOnEnemiesInfluence1"] = { type = "Prefix", affix = "Hunter's", "You can apply an additional Curse", statOrder = { 2045 }, level = 82, group = "AdditionalCurseOnEnemies", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "caster", "curse" }, }, - ["RegenerateLifeOver1SecondInfluence1"] = { type = "Prefix", affix = "Hunter's", "Every 4 seconds, Regenerate 15% of Life over one second", statOrder = { 3649 }, level = 80, group = "RegenerateLifeOver1Second", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life" }, }, - ["OfferingEffectInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "(16-20)% increased effect of Offerings", statOrder = { 3925 }, level = 68, group = "OfferingEffect", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["OfferingEffectInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(21-25)% increased effect of Offerings", statOrder = { 3925 }, level = 80, group = "OfferingEffect", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AdditionalCritWithAttacksInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "Attacks have +(0.5-1)% to Critical Strike Chance", statOrder = { 4617 }, level = 68, group = "AdditionalCriticalStrikeChanceWithAttacks", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "attack", "critical" }, }, - ["AdditionalCritWithAttacksInfluence2_"] = { type = "Suffix", affix = "of the Hunt", "Attacks have +(1.1-1.5)% to Critical Strike Chance", statOrder = { 4617 }, level = 84, group = "AdditionalCriticalStrikeChanceWithAttacks", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "attack", "critical" }, }, - ["AdditionalCritWithSpellsInfluence1"] = { type = "Suffix", affix = "of the Hunt", "+(0.5-1)% to Spell Critical Strike Chance", statOrder = { 9610 }, level = 68, group = "AdditionalCriticalStrikeChanceWithSpells", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "caster", "critical" }, }, - ["AdditionalCritWithSpellsInfluence2"] = { type = "Suffix", affix = "of the Hunt", "+(1.1-1.5)% to Spell Critical Strike Chance", statOrder = { 9610 }, level = 84, group = "AdditionalCriticalStrikeChanceWithSpells", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "caster", "critical" }, }, - ["LifeRegenerationPercentBodyInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Regenerate (1-1.5)% of Life per second", statOrder = { 1823 }, level = 68, group = "LifeRegenerationRatePercentage", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "life" }, }, - ["LifeRegenerationPercentBodyInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Regenerate (1.6-2)% of Life per second", statOrder = { 1823 }, level = 75, group = "LifeRegenerationRatePercentage", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "life" }, }, - ["MaximumLightningResistanceHighInfluence1"] = { type = "Prefix", affix = "Crusader's", "+1% to maximum Lightning Resistance", statOrder = { 1516 }, level = 75, group = "MaximumLightningResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["MaximumLightningResistanceHighInfluence2"] = { type = "Prefix", affix = "Crusader's", "+2% to maximum Lightning Resistance", statOrder = { 1516 }, level = 80, group = "MaximumLightningResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["MaximumLightningResistanceHighInfluence3_"] = { type = "Prefix", affix = "Crusader's", "+3% to maximum Lightning Resistance", statOrder = { 1516 }, level = 86, group = "MaximumLightningResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["DamagePerBlockChanceInfluence1"] = { type = "Prefix", affix = "Crusader's", "1% increased Damage per 1% Chance to Block Attack Damage", statOrder = { 5759 }, level = 68, group = "DamagePerBlockChance", weightKey = { "shield_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, - ["MinimumPowerChargeInfluence1"] = { type = "Suffix", affix = "of the Crusade", "+1 to Minimum Power Charges", statOrder = { 1694 }, level = 68, group = "MinimumPowerCharges", weightKey = { "shield_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "power_charge", "influence_mod" }, }, - ["MinimumPowerChargeInfluence2"] = { type = "Suffix", affix = "of the Crusade", "+2 to Minimum Power Charges", statOrder = { 1694 }, level = 80, group = "MinimumPowerCharges", weightKey = { "shield_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "power_charge", "influence_mod" }, }, - ["RecoverEnergyShieldPercentOnBlockInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Recover (3-5)% of Energy Shield when you Block", statOrder = { 2343 }, level = 68, group = "RecoverEnergyShieldPercentOnBlock", weightKey = { "shield_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "block", "influence_mod", "defences", "energy_shield" }, }, - ["EnergyShieldRegenHighInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Regenerate (1.5-2.5)% of Energy Shield per second", statOrder = { 2521 }, level = 75, group = "EnergyShieldRegenerationPerMinute", weightKey = { "shield_crusader", "amulet_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, - ["ChanceToChillAttackersOnBlockInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(25-40)% chance to Chill Attackers for 4 seconds on Block", statOrder = { 5473 }, level = 68, group = "ChanceToChillAttackersOnBlock", weightKey = { "shield_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "red_herring", "influence_mod", "elemental", "cold", "ailment" }, }, - ["ChanceToChillAttackersOnBlockInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(41-50)% chance to Chill Attackers for 4 seconds on Block", statOrder = { 5473 }, level = 75, group = "ChanceToChillAttackersOnBlock", weightKey = { "shield_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "red_herring", "influence_mod", "elemental", "cold", "ailment" }, }, - ["ChanceToShockAttackersOnBlockInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "(25-40)% chance to Shock Attackers for 4 seconds on Block", statOrder = { 9493 }, level = 68, group = "ChanceToShockAttackersOnBlock", weightKey = { "shield_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "influence_mod", "elemental", "lightning", "ailment" }, }, - ["ChanceToShockAttackersOnBlockInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(41-50)% chance to Shock Attackers for 4 seconds on Block", statOrder = { 9493 }, level = 75, group = "ChanceToShockAttackersOnBlock", weightKey = { "shield_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "influence_mod", "elemental", "lightning", "ailment" }, }, - ["SpellBlockIfBlockedSpellsInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "+(7-9)% Chance to Block Spell Damage if you have Blocked Spell Damage Recently", statOrder = { 9618 }, level = 68, group = "SpellBlockIfBlockedSpellRecently", weightKey = { "shield_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "block", "influence_mod" }, }, - ["SpellBlockIfBlockedSpellsInfluence2"] = { type = "Suffix", affix = "of the Crusade", "+(10-12)% Chance to Block Spell Damage if you have Blocked Spell Damage Recently", statOrder = { 9618 }, level = 75, group = "SpellBlockIfBlockedSpellRecently", weightKey = { "shield_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "block", "influence_mod" }, }, - ["WarcryBuffEffectInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(18-21)% increased Warcry Buff Effect", statOrder = { 10035 }, level = 68, group = "WarcryEffect", weightKey = { "shield_crusader", "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, }, - ["WarcryBuffEffectInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(22-25)% increased Warcry Buff Effect", statOrder = { 10035 }, level = 75, group = "WarcryEffect", weightKey = { "shield_crusader", "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, }, - ["MaximumFireResistanceHighInfluence1__"] = { type = "Prefix", affix = "Warlord's", "+1% to maximum Fire Resistance", statOrder = { 1505 }, level = 75, group = "MaximumFireResist", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["MaximumFireResistanceHighInfluence2__"] = { type = "Prefix", affix = "Warlord's", "+2% to maximum Fire Resistance", statOrder = { 1505 }, level = 80, group = "MaximumFireResist", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["MaximumFireResistanceHighInfluence3"] = { type = "Prefix", affix = "Warlord's", "+3% to maximum Fire Resistance", statOrder = { 1505 }, level = 86, group = "MaximumFireResist", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["AreaOfEffectInfluence1"] = { type = "Prefix", affix = "Warlord's", "(7-9)% increased Area of Effect", statOrder = { 1761 }, level = 68, group = "AreaOfEffect", weightKey = { "shield_adjudicator", "quiver_adjudicator", "ring_adjudicator", "amulet_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, }, - ["AreaOfEffectInfluence2"] = { type = "Prefix", affix = "Warlord's", "(10-12)% increased Area of Effect", statOrder = { 1761 }, level = 75, group = "AreaOfEffect", weightKey = { "shield_adjudicator", "quiver_adjudicator", "ring_adjudicator", "amulet_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, }, - ["AreaOfEffectInfluence3"] = { type = "Prefix", affix = "Warlord's", "(13-15)% increased Area of Effect", statOrder = { 1761 }, level = 80, group = "AreaOfEffect", weightKey = { "shield_adjudicator", "quiver_adjudicator", "ring_adjudicator", "amulet_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, }, - ["MinimumEnduranceChargeInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+1 to Minimum Endurance Charges", statOrder = { 1684 }, level = 68, group = "MinimumEnduranceCharges", weightKey = { "shield_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "endurance_charge", "influence_mod" }, }, - ["MinimumEnduranceChargeInfluence2"] = { type = "Suffix", affix = "of the Conquest", "+2 to Minimum Endurance Charges", statOrder = { 1684 }, level = 80, group = "MinimumEnduranceCharges", weightKey = { "shield_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "endurance_charge", "influence_mod" }, }, - ["RecoverLifePercentOnBlockInfluence1__"] = { type = "Suffix", affix = "of the Conquest", "Recover (3-5)% of Life when you Block", statOrder = { 2929 }, level = 68, group = "RecoverLifePercentOnBlock", weightKey = { "shield_adjudicator", "default", }, weightVal = { 250, 0 }, modTags = { "block", "resource", "influence_mod", "life" }, }, - ["AttackBlockIfBlockedAttacksInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+(5-6)% Chance to Block Attack Damage if you have Blocked Attack Damage Recently", statOrder = { 5042 }, level = 68, group = "AttackBlockIfBlockedAttackRecently", weightKey = { "shield_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "block", "influence_mod" }, }, - ["AttackBlockIfBlockedAttacksInfluence2"] = { type = "Suffix", affix = "of the Conquest", "+(7-8)% Chance to Block Attack Damage if you have Blocked Attack Damage Recently", statOrder = { 5042 }, level = 75, group = "AttackBlockIfBlockedAttackRecently", weightKey = { "shield_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "block", "influence_mod" }, }, - ["AdditionalPhysicalDamageReductionHighInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(3-5)% additional Physical Damage Reduction", statOrder = { 2150 }, level = 75, group = "ReducedPhysicalDamageTaken", weightKey = { "shield_adjudicator", "amulet_adjudicator", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "physical" }, }, - ["MaximumColdResistanceHighInfluence1"] = { type = "Prefix", affix = "Redeemer's", "+1% to maximum Cold Resistance", statOrder = { 1511 }, level = 75, group = "MaximumColdResist", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["MaximumColdResistanceHighInfluence2"] = { type = "Prefix", affix = "Redeemer's", "+2% to maximum Cold Resistance", statOrder = { 1511 }, level = 80, group = "MaximumColdResist", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["MaximumColdResistanceHighInfluence3__"] = { type = "Prefix", affix = "Redeemer's", "+3% to maximum Cold Resistance", statOrder = { 1511 }, level = 86, group = "MaximumColdResist", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["EnergyShieldDelayHighInfluence1__"] = { type = "Prefix", affix = "Redeemer's", "(16-20)% faster start of Energy Shield Recharge", statOrder = { 1444 }, level = 68, group = "EnergyShieldDelay", weightKey = { "shield_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, - ["EnergyShieldDelayHighInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(21-25)% faster start of Energy Shield Recharge", statOrder = { 1444 }, level = 75, group = "EnergyShieldDelay", weightKey = { "shield_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, - ["EnergyShieldDelayHighInfluence3"] = { type = "Prefix", affix = "Redeemer's", "(26-30)% faster start of Energy Shield Recharge", statOrder = { 1444 }, level = 80, group = "EnergyShieldDelay", weightKey = { "shield_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, - ["WeaponElementalDamageInfluence1__"] = { type = "Prefix", affix = "Redeemer's", "(26-30)% increased Elemental Damage with Attack Skills", statOrder = { 6010 }, level = 68, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "shield_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "attack" }, }, - ["WeaponElementalDamageInfluence2_"] = { type = "Prefix", affix = "Redeemer's", "(31-35)% increased Elemental Damage with Attack Skills", statOrder = { 6010 }, level = 75, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "shield_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "attack" }, }, - ["WeaponElementalDamageInfluence3_"] = { type = "Prefix", affix = "Redeemer's", "(36-40)% increased Elemental Damage with Attack Skills", statOrder = { 6010 }, level = 80, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "shield_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "attack" }, }, - ["MinimumFrenzyChargeInfluence1"] = { type = "Suffix", affix = "of Redemption", "+1 to Minimum Frenzy Charges", statOrder = { 1689 }, level = 68, group = "MinimumFrenzyCharges", weightKey = { "shield_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "frenzy_charge", "influence_mod" }, }, - ["MinimumFrenzyChargeInfluence2"] = { type = "Suffix", affix = "of Redemption", "+2 to Minimum Frenzy Charges", statOrder = { 1689 }, level = 80, group = "MinimumFrenzyCharges", weightKey = { "shield_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "frenzy_charge", "influence_mod" }, }, - ["RecoverManaPercentOnBlockInfluence1_"] = { type = "Suffix", affix = "of Redemption", "Recover (3-5)% of your maximum Mana when you Block", statOrder = { 7758 }, level = 68, group = "RecoverManaPercentOnBlock", weightKey = { "shield_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "block", "resource", "influence_mod", "mana" }, }, - ["AdditionalChanceToEvadeHighInfluence1"] = { type = "Suffix", affix = "of Redemption", "+(3-5)% chance to Evade Attack Hits", statOrder = { 5383 }, level = 75, group = "AdditionalChanceToEvade", weightKey = { "shield_eyrie", "amulet_eyrie", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "defences", "evasion" }, }, - ["AvoidPhysicalDamageInfluence1"] = { type = "Suffix", affix = "of Redemption", "(5-7)% chance to Avoid Physical Damage from Hits", statOrder = { 3237 }, level = 68, group = "PhysicalDamageAvoidance", weightKey = { "shield_eyrie", "quiver_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "physical" }, }, - ["AvoidPhysicalDamageInfluence2"] = { type = "Suffix", affix = "of Redemption", "(8-10)% chance to Avoid Physical Damage from Hits", statOrder = { 3237 }, level = 80, group = "PhysicalDamageAvoidance", weightKey = { "shield_eyrie", "quiver_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "physical" }, }, - ["CurseEffectivenessInfluence1_"] = { type = "Suffix", affix = "of Redemption", "(8-11)% increased Effect of your Curses", statOrder = { 2472 }, level = 73, group = "CurseEffectiveness", weightKey = { "shield_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, - ["CurseEffectivenessInfluence2"] = { type = "Suffix", affix = "of Redemption", "(8-12)% increased Effect of your Curses", statOrder = { 2472 }, level = 80, group = "CurseEffectiveness", weightKey = { "shield_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, - ["AuraEffectInfluence1_"] = { type = "Suffix", affix = "of Redemption", "(5-7)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3429 }, level = 73, group = "AuraEffect", weightKey = { "shield_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "aura" }, }, - ["AuraEffectInfluence2"] = { type = "Suffix", affix = "of Redemption", "(8-10)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3429 }, level = 80, group = "AuraEffect", weightKey = { "shield_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "aura" }, }, - ["IncreasedAilmentEffectLowInfluence1"] = { type = "Suffix", affix = "of Redemption", "(15-20)% increased Effect of Non-Damaging Ailments", statOrder = { 9017 }, level = 68, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "shield_eyrie", "quiver_eyrie", "ring_eyrie", "amulet_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod", "ailment" }, }, - ["IncreasedAilmentEffectLowInfluence2_"] = { type = "Suffix", affix = "of Redemption", "(21-25)% increased Effect of Non-Damaging Ailments", statOrder = { 9017 }, level = 75, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "shield_eyrie", "quiver_eyrie", "ring_eyrie", "amulet_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod", "ailment" }, }, - ["MaximumResistancesInfluence1"] = { type = "Prefix", affix = "Hunter's", "+1% to all maximum Resistances", statOrder = { 1523 }, level = 80, group = "MaximumResistances", weightKey = { "shield_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resistance" }, }, - ["MaximumResistancesInfluence2"] = { type = "Prefix", affix = "Hunter's", "+2% to all maximum Resistances", statOrder = { 1523 }, level = 85, group = "MaximumResistances", weightKey = { "shield_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resistance" }, }, - ["MaximumChaosResistanceHighInfluence1"] = { type = "Prefix", affix = "Hunter's", "+1% to maximum Chaos Resistance", statOrder = { 1521 }, level = 75, group = "MaximumChaosResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "resistance" }, }, - ["MaximumChaosResistanceHighInfluence2"] = { type = "Prefix", affix = "Hunter's", "+2% to maximum Chaos Resistance", statOrder = { 1521 }, level = 80, group = "MaximumChaosResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "resistance" }, }, - ["MaximumChaosResistanceHighInfluence3"] = { type = "Prefix", affix = "Hunter's", "+3% to maximum Chaos Resistance", statOrder = { 1521 }, level = 86, group = "MaximumChaosResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "resistance" }, }, - ["MaximumLifeInfluence1"] = { type = "Prefix", affix = "Hunter's", "(3-6)% increased maximum Life", statOrder = { 1453 }, level = 68, group = "MaximumLifeIncreasePercent", weightKey = { "shield_basilisk", "belt_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "life" }, }, - ["MaximumLifeInfluence2"] = { type = "Prefix", affix = "Hunter's", "(7-10)% increased maximum Life", statOrder = { 1453 }, level = 84, group = "MaximumLifeIncreasePercent", weightKey = { "shield_basilisk", "belt_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "life" }, }, - ["NoExtraDamageFromBleedMovingInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Moving while Bleeding doesn't cause you to take extra Damage", statOrder = { 3058 }, level = 75, group = "NoExtraDamageFromBleedMoving", weightKey = { "shield_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["GainRandomChargeOnBlockInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Gain an Endurance, Frenzy or Power charge when you Block", statOrder = { 6476 }, level = 68, group = "GainRandomChargeOnBlock", weightKey = { "shield_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "block", "endurance_charge", "frenzy_charge", "power_charge" }, }, - ["SocketedGemsReducedReservationInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Socketed Gems have 20% increased Reservation Efficiency", statOrder = { 447 }, level = 68, group = "DisplaySocketedGemsGetReducedReservation", weightKey = { "shield_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "skill", "gem" }, }, - ["SocketedGemsReducedReservationInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Socketed Gems have 30% increased Reservation Efficiency", statOrder = { 447 }, level = 80, group = "DisplaySocketedGemsGetReducedReservation", weightKey = { "shield_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "skill", "gem" }, }, - ["DegenDamageTakenInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "(4-6)% reduced Damage taken from Damage Over Time", statOrder = { 2122 }, level = 68, group = "DegenDamageTaken", weightKey = { "shield_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, }, - ["DegenDamageTakenInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(7-10)% reduced Damage taken from Damage Over Time", statOrder = { 2122 }, level = 80, group = "DegenDamageTaken", weightKey = { "shield_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, }, - ["LifeRegenerationPercentHighInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "Regenerate (1.1-1.5)% of Life per second", statOrder = { 1823 }, level = 68, group = "LifeRegenerationRatePercentage", weightKey = { "shield_basilisk", "amulet_basilisk", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, }, - ["LifeRegenerationPercentHighInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Regenerate (1.6-2)% of Life per second", statOrder = { 1823 }, level = 80, group = "LifeRegenerationRatePercentage", weightKey = { "shield_basilisk", "amulet_basilisk", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, }, - ["PhysicalAddedAsExtraLightningInfluence1"] = { type = "Prefix", affix = "Crusader's", "Gain (5-10)% of Physical Damage as Extra Lightning Damage", statOrder = { 1813 }, level = 68, group = "PhysicalAddedAsLightning", weightKey = { "quiver_crusader", "amulet_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, }, - ["PhysicalAddedAsExtraLightningInfluence2"] = { type = "Prefix", affix = "Crusader's", "Gain (11-15)% of Physical Damage as Extra Lightning Damage", statOrder = { 1813 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "quiver_crusader", "amulet_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, }, - ["AdditionalArrowInfluence1"] = { type = "Prefix", affix = "Warlord's", "Bow Attacks fire an additional Arrow", statOrder = { 1675 }, level = 80, group = "AdditionalArrows", weightKey = { "quiver_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack" }, }, - ["PhysicalAddedAsExtraFireInfluence1_"] = { type = "Prefix", affix = "Warlord's", "Gain (5-10)% of Physical Damage as Extra Fire Damage", statOrder = { 1811 }, level = 68, group = "PhysicalAddedAsFire", weightKey = { "quiver_adjudicator", "amulet_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, }, - ["PhysicalAddedAsExtraFireInfluence2_____"] = { type = "Prefix", affix = "Warlord's", "Gain (11-15)% of Physical Damage as Extra Fire Damage", statOrder = { 1811 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "quiver_adjudicator", "amulet_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, }, - ["MaimOnHitInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Attacks have 15% chance to Maim on Hit", statOrder = { 7728 }, level = 68, group = "GlobalMaimOnHit", weightKey = { "quiver_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack" }, }, - ["MaimOnHitInfluence2___"] = { type = "Suffix", affix = "of the Conquest", "Attacks have 20% chance to Maim on Hit", statOrder = { 7728 }, level = 75, group = "GlobalMaimOnHit", weightKey = { "quiver_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack" }, }, - ["ChancetoGainPhasingOnKillInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "(5-6)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3328 }, level = 68, group = "ChancetoGainPhasingOnKill", weightKey = { "quiver_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, - ["ChancetoGainPhasingOnKillInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(7-8)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3328 }, level = 70, group = "ChancetoGainPhasingOnKill", weightKey = { "quiver_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, - ["ChancetoGainPhasingOnKillInfluence3"] = { type = "Suffix", affix = "of the Conquest", "(9-10)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3328 }, level = 73, group = "ChancetoGainPhasingOnKill", weightKey = { "quiver_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, - ["BleedOnHitDamageInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "Attacks have 10% chance to cause Bleeding", "(15-25)% increased Damage with Bleeding", statOrder = { 2365, 3035 }, level = 68, group = "BleedOnHitAndDamage", weightKey = { "quiver_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment" }, }, - ["BleedOnHitDamageInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "Attacks have 15% chance to cause Bleeding", "(26-30)% increased Damage with Bleeding", statOrder = { 2365, 3035 }, level = 75, group = "BleedOnHitAndDamage", weightKey = { "quiver_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment" }, }, - ["PhysicalAddedAsExtraColdInfluence1_"] = { type = "Prefix", affix = "Redeemer's", "Gain (5-10)% of Physical Damage as Extra Cold Damage", statOrder = { 1812 }, level = 68, group = "PhysicalAddedAsCold", weightKey = { "quiver_eyrie", "amulet_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, }, - ["PhysicalAddedAsExtraColdInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Gain (11-15)% of Physical Damage as Extra Cold Damage", statOrder = { 1812 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "quiver_eyrie", "amulet_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, }, - ["MovementVelocityExtraInfluence1"] = { type = "Prefix", affix = "Hunter's", "(3-6)% increased Movement Speed", statOrder = { 1679 }, level = 75, group = "MovementVelocity", weightKey = { "quiver_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "speed" }, }, - ["MovementVelocityExtraInfluence2__"] = { type = "Prefix", affix = "Hunter's", "(7-10)% increased Movement Speed", statOrder = { 1679 }, level = 80, group = "MovementVelocity", weightKey = { "quiver_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "speed" }, }, - ["ManaGainPerTargetInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Gain (3-5) Mana per Enemy Hit with Attacks", statOrder = { 1625 }, level = 68, group = "ManaGainPerTarget", weightKey = { "gloves_basilisk", "quiver_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "mana", "attack" }, }, - ["ChaosDamageOverTimeMultiplierQuiverInfluence1__"] = { type = "Suffix", affix = "of the Hunt", "+(16-20)% to Chaos Damage over Time Multiplier with Attack Skills", statOrder = { 1146 }, level = 68, group = "ChaosDamageOverTimeMultiplierWithAttacks", weightKey = { "quiver_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos", "attack" }, }, - ["ChaosDamageOverTimeMultiplierQuiverInfluence2"] = { type = "Suffix", affix = "of the Hunt", "+(21-25)% to Chaos Damage over Time Multiplier with Attack Skills", statOrder = { 1146 }, level = 80, group = "ChaosDamageOverTimeMultiplierWithAttacks", weightKey = { "quiver_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos", "attack" }, }, - ["PhysicalDamageOverTimeMultiplierQuiverInfluence1__"] = { type = "Suffix", affix = "of the Hunt", "+(16-20)% to Physical Damage over Time Multiplier with Attack Skills", statOrder = { 1135 }, level = 68, group = "PhysicalDamageOverTimeMultiplierWithAttacks", weightKey = { "quiver_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical", "attack" }, }, - ["PhysicalDamageOverTimeMultiplierQuiverInfluence2"] = { type = "Suffix", affix = "of the Hunt", "+(21-25)% to Physical Damage over Time Multiplier with Attack Skills", statOrder = { 1135 }, level = 80, group = "PhysicalDamageOverTimeMultiplierWithAttacks", weightKey = { "quiver_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical", "attack" }, }, - ["FireDamageOverTimeMultiplierQuiverInfluence1"] = { type = "Suffix", affix = "of the Hunt", "+(16-20)% to Fire Damage over Time Multiplier with Attack Skills", statOrder = { 1138 }, level = 68, group = "FireDamageOverTimeMultiplierWithAttacks", weightKey = { "quiver_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["FireDamageOverTimeMultiplierQuiverInfluence2"] = { type = "Suffix", affix = "of the Hunt", "+(21-25)% to Fire Damage over Time Multiplier with Attack Skills", statOrder = { 1138 }, level = 80, group = "FireDamageOverTimeMultiplierWithAttacks", weightKey = { "quiver_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["PoisonOnHitDamageInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "15% chance to Poison on Hit", "(15-25)% increased Damage with Poison", statOrder = { 3039, 3047 }, level = 68, group = "PoisonOnHitAndDamage", weightKey = { "quiver_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["PoisonOnHitDamageInfluence2"] = { type = "Suffix", affix = "of the Hunt", "20% chance to Poison on Hit", "(26-30)% increased Damage with Poison", statOrder = { 3039, 3047 }, level = 75, group = "PoisonOnHitAndDamage", weightKey = { "quiver_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["GlobalEnergyShieldPercentInfluence1"] = { type = "Prefix", affix = "Crusader's", "(7-9)% increased maximum Energy Shield", statOrder = { 1443 }, level = 68, group = "GlobalEnergyShieldPercent", weightKey = { "belt_crusader", "ring_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, - ["GlobalEnergyShieldPercentInfluence2"] = { type = "Prefix", affix = "Crusader's", "(10-12)% increased maximum Energy Shield", statOrder = { 1443 }, level = 78, group = "GlobalEnergyShieldPercent", weightKey = { "belt_crusader", "ring_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, - ["GlobalEnergyShieldPercentInfluence3"] = { type = "Prefix", affix = "Crusader's", "(13-15)% increased maximum Energy Shield", statOrder = { 1443 }, level = 82, group = "GlobalEnergyShieldPercent", weightKey = { "belt_crusader", "ring_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, - ["CriticalStrikeChanceShockedEnemiesInfluence1"] = { type = "Prefix", affix = "Crusader's", "(30-34)% increased Critical Strike Chance against Shocked Enemies", statOrder = { 5617 }, level = 68, group = "CritChanceShockedEnemies", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "critical" }, }, - ["CriticalStrikeChanceShockedEnemiesInfluence2"] = { type = "Prefix", affix = "Crusader's", "(35-39)% increased Critical Strike Chance against Shocked Enemies", statOrder = { 5617 }, level = 75, group = "CritChanceShockedEnemies", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "critical" }, }, - ["CriticalStrikeChanceShockedEnemiesInfluence3__"] = { type = "Prefix", affix = "Crusader's", "(40-45)% increased Critical Strike Chance against Shocked Enemies", statOrder = { 5617 }, level = 80, group = "CritChanceShockedEnemies", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "critical" }, }, - ["LightningDamageInfluence1__"] = { type = "Prefix", affix = "Crusader's", "(16-20)% increased Lightning Damage", statOrder = { 1261 }, level = 68, group = "LightningDamagePercentagePrefix", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, }, - ["LightningDamageInfluence2"] = { type = "Prefix", affix = "Crusader's", "(21-25)% increased Lightning Damage", statOrder = { 1261 }, level = 75, group = "LightningDamagePercentagePrefix", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, }, - ["LightningDamageInfluence3_"] = { type = "Prefix", affix = "Crusader's", "(26-30)% increased Lightning Damage", statOrder = { 1261 }, level = 80, group = "LightningDamagePercentagePrefix", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, }, - ["FortifyOnMeleeStunInfluence1"] = { type = "Prefix", affix = "Crusader's", "Melee Hits which Stun have (8-12)% chance to Fortify", statOrder = { 5388 }, level = 68, group = "FortifyOnMeleeStun", weightKey = { "belt_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod" }, }, - ["CooldownRecoveryHighInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(10-15)% increased Cooldown Recovery Rate", statOrder = { 4822 }, level = 75, group = "GlobalCooldownRecovery", weightKey = { "belt_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod" }, }, - ["CooldownRecoveryHighInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(16-20)% increased Cooldown Recovery Rate", statOrder = { 4822 }, level = 84, group = "GlobalCooldownRecovery", weightKey = { "belt_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod" }, }, - ["SpellDamageDuringFlaskEffectInfluence1__"] = { type = "Suffix", affix = "of the Crusade", "(20-25)% increased Spell Damage during any Flask Effect", statOrder = { 9631 }, level = 68, group = "SpellDamageDuringFlaskEffect", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "caster_damage", "influence_mod", "damage", "caster" }, }, - ["SpellDamageDuringFlaskEffectInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(26-30)% increased Spell Damage during any Flask Effect", statOrder = { 9631 }, level = 75, group = "SpellDamageDuringFlaskEffect", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "caster_damage", "influence_mod", "damage", "caster" }, }, - ["SpellDamageDuringFlaskEffectInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(31-35)% increased Spell Damage during any Flask Effect", statOrder = { 9631 }, level = 80, group = "SpellDamageDuringFlaskEffect", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "caster_damage", "influence_mod", "damage", "caster" }, }, - ["EnergyShieldRecoveryRateInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(7-9)% increased Energy Shield Recovery rate", statOrder = { 1450 }, level = 68, group = "EnergyShieldRecoveryRate", weightKey = { "belt_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, - ["EnergyShieldRecoveryRateInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(10-12)% increased Energy Shield Recovery rate", statOrder = { 1450 }, level = 75, group = "EnergyShieldRecoveryRate", weightKey = { "belt_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, - ["RemoveShockOnFlaskUseInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Remove Shock when you use a Flask", statOrder = { 9409 }, level = 75, group = "RemoveShockOnFlaskUse", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "influence_mod", "elemental", "lightning", "ailment" }, }, - ["GlobalArmourPercentInfluence1"] = { type = "Prefix", affix = "Warlord's", "(7-9)% increased Armour", statOrder = { 1424 }, level = 68, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "belt_adjudicator", "ring_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "defences", "armour" }, }, - ["GlobalArmourPercentInfluence2___"] = { type = "Prefix", affix = "Warlord's", "(10-12)% increased Armour", statOrder = { 1424 }, level = 78, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "belt_adjudicator", "ring_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "defences", "armour" }, }, - ["GlobalArmourPercentInfluence3"] = { type = "Prefix", affix = "Warlord's", "(13-15)% increased Armour", statOrder = { 1424 }, level = 82, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "belt_adjudicator", "ring_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "defences", "armour" }, }, - ["FireDamageBurningEnemiesInfluence1"] = { type = "Prefix", affix = "Warlord's", "(22-27) to (41-46) added Fire Damage against Burning Enemies", statOrder = { 9801 }, level = 68, group = "AddedFireBurningEnemies", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, - ["FireDamageBurningEnemiesInfluence2"] = { type = "Prefix", affix = "Warlord's", "(28-32) to (47-51) added Fire Damage against Burning Enemies", statOrder = { 9801 }, level = 75, group = "AddedFireBurningEnemies", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, - ["FireDamageBurningEnemiesInfluence3"] = { type = "Prefix", affix = "Warlord's", "(33-39) to (52-55) added Fire Damage against Burning Enemies", statOrder = { 9801 }, level = 80, group = "AddedFireBurningEnemies", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, - ["FireDamageInfluence1_"] = { type = "Prefix", affix = "Warlord's", "(16-20)% increased Fire Damage", statOrder = { 1241 }, level = 68, group = "FireDamagePercentagePrefix", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, - ["FireDamageInfluence2"] = { type = "Prefix", affix = "Warlord's", "(21-25)% increased Fire Damage", statOrder = { 1241 }, level = 75, group = "FireDamagePercentagePrefix", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, - ["FireDamageInfluence3"] = { type = "Prefix", affix = "Warlord's", "(26-30)% increased Fire Damage", statOrder = { 1241 }, level = 80, group = "FireDamagePercentagePrefix", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, - ["ReducedCriticalStrikeDamageTakenInfluence1"] = { type = "Prefix", affix = "Warlord's", "You take (15-20)% reduced Extra Damage from Critical Strikes", statOrder = { 1395 }, level = 68, group = "ReducedCriticalStrikeDamageTaken", weightKey = { "belt_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "critical" }, }, - ["ReducedCriticalStrikeDamageTakenInfluence2_"] = { type = "Prefix", affix = "Warlord's", "You take (21-30)% reduced Extra Damage from Critical Strikes", statOrder = { 1395 }, level = 75, group = "ReducedCriticalStrikeDamageTaken", weightKey = { "belt_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "critical" }, }, - ["AllDamageInfluence1"] = { type = "Prefix", affix = "Warlord's", "(11-15)% increased Damage", statOrder = { 1076 }, level = 75, group = "AllDamage", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, - ["AllDamageInfluence2___"] = { type = "Prefix", affix = "Warlord's", "(16-20)% increased Damage", statOrder = { 1076 }, level = 80, group = "AllDamage", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, - ["AllDamageInfluence3"] = { type = "Prefix", affix = "Warlord's", "(21-25)% increased Damage", statOrder = { 1076 }, level = 85, group = "AllDamage", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, - ["MeleeDamageDuringFlaskEffectInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(20-25)% increased Melee Damage during any Flask Effect", statOrder = { 8733 }, level = 68, group = "MeleeDamageDuringFlaskEffect", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, }, - ["MeleeDamageDuringFlaskEffectInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(26-30)% increased Melee Damage during any Flask Effect", statOrder = { 8733 }, level = 75, group = "MeleeDamageDuringFlaskEffect", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, }, - ["MeleeDamageDuringFlaskEffectInfluence3"] = { type = "Suffix", affix = "of the Conquest", "(31-35)% increased Melee Damage during any Flask Effect", statOrder = { 8733 }, level = 80, group = "MeleeDamageDuringFlaskEffect", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, }, - ["LifeRecoveryRateInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(7-9)% increased Life Recovery rate", statOrder = { 1460 }, level = 68, group = "LifeRecoveryRate", weightKey = { "belt_adjudicator", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "influence_mod", "life" }, }, - ["LifeRecoveryRateInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(10-12)% increased Life Recovery rate", statOrder = { 1460 }, level = 75, group = "LifeRecoveryRate", weightKey = { "belt_adjudicator", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "influence_mod", "life" }, }, - ["RemoveIgniteOnFlaskUseInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Remove Ignite and Burning when you use a Flask", statOrder = { 9401 }, level = 75, group = "RemoveIgniteOnFlaskUse", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "influence_mod", "elemental", "fire", "ailment" }, }, - ["GlobalEvasionPercentInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(7-9)% increased Evasion Rating", statOrder = { 1432 }, level = 68, group = "GlobalEvasionRatingPercent", weightKey = { "belt_eyrie", "ring_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "defences", "evasion" }, }, - ["GlobalEvasionPercentInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(10-12)% increased Evasion Rating", statOrder = { 1432 }, level = 78, group = "GlobalEvasionRatingPercent", weightKey = { "belt_eyrie", "ring_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "defences", "evasion" }, }, - ["GlobalEvasionPercentInfluence3_"] = { type = "Prefix", affix = "Redeemer's", "(13-15)% increased Evasion Rating", statOrder = { 1432 }, level = 82, group = "GlobalEvasionRatingPercent", weightKey = { "belt_eyrie", "ring_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "defences", "evasion" }, }, - ["DamageChilledEnemiesInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(26-30)% increased Damage with Hits against Chilled Enemies", statOrder = { 5770 }, level = 68, group = "DamageChilledEnemies", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, - ["DamageChilledEnemiesInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(31-35)% increased Damage with Hits against Chilled Enemies", statOrder = { 5770 }, level = 75, group = "DamageChilledEnemies", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, - ["DamageChilledEnemiesInfluence3"] = { type = "Prefix", affix = "Redeemer's", "(36-40)% increased Damage with Hits against Chilled Enemies", statOrder = { 5770 }, level = 80, group = "DamageChilledEnemies", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, - ["FlaskEffectInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Flasks applied to you have (4-7)% increased Effect", statOrder = { 2617 }, level = 75, group = "FlaskEffect", weightKey = { "belt_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "influence_mod" }, }, - ["FlaskEffectInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Flasks applied to you have (8-10)% increased Effect", statOrder = { 2617 }, level = 81, group = "FlaskEffect", weightKey = { "belt_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "influence_mod" }, }, - ["ColdDamageInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(16-20)% increased Cold Damage", statOrder = { 1250 }, level = 68, group = "ColdDamagePercentagePrefix", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, }, - ["ColdDamageInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(21-25)% increased Cold Damage", statOrder = { 1250 }, level = 75, group = "ColdDamagePercentagePrefix", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, }, - ["ColdDamageInfluence3"] = { type = "Prefix", affix = "Redeemer's", "(26-30)% increased Cold Damage", statOrder = { 1250 }, level = 80, group = "ColdDamagePercentagePrefix", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, }, - ["AttackSpeedDuringFlaskEffectInfluence1"] = { type = "Suffix", affix = "of Redemption", "(8-14)% increased Attack Speed during any Flask Effect", statOrder = { 3166 }, level = 68, group = "AttackSpeedDuringFlaskEffect", weightKey = { "belt_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "flask", "influence_mod", "attack", "speed" }, }, - ["ProjectileAttackDamageDuringFlaskEffectInfluence1__"] = { type = "Suffix", affix = "of Redemption", "(20-25)% increased Projectile Attack Damage during any Flask Effect", statOrder = { 9231 }, level = 68, group = "ProjectileAttackDamageDuringFlaskEffect", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, }, - ["ProjectileAttackDamageDuringFlaskEffectInfluence2_"] = { type = "Suffix", affix = "of Redemption", "(26-30)% increased Projectile Attack Damage during any Flask Effect", statOrder = { 9231 }, level = 75, group = "ProjectileAttackDamageDuringFlaskEffect", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, }, - ["ProjectileAttackDamageDuringFlaskEffectInfluence3"] = { type = "Suffix", affix = "of Redemption", "(31-35)% increased Projectile Attack Damage during any Flask Effect", statOrder = { 9231 }, level = 80, group = "ProjectileAttackDamageDuringFlaskEffect", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, }, - ["ManaRecoveryRateInfluence1"] = { type = "Suffix", affix = "of Redemption", "(7-9)% increased Mana Recovery rate", statOrder = { 1468 }, level = 68, group = "ManaRecoveryRate", weightKey = { "belt_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, - ["ManaRecoveryRateInfluence2__"] = { type = "Suffix", affix = "of Redemption", "(10-12)% increased Mana Recovery rate", statOrder = { 1468 }, level = 75, group = "ManaRecoveryRate", weightKey = { "belt_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, - ["RemoveFreezeOnFlaskUseInfluence1"] = { type = "Suffix", affix = "of Redemption", "Remove Chill and Freeze when you use a Flask", statOrder = { 9397 }, level = 75, group = "RemoveFreezeOnFlaskUse", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "influence_mod", "elemental", "cold", "ailment" }, }, - ["FlaskChanceToNotConsumeChargesInfluence1"] = { type = "Prefix", affix = "Hunter's", "(6-10)% chance for Flasks you use to not consume Charges", statOrder = { 4091 }, level = 80, group = "FlaskChanceToNotConsumeCharges", weightKey = { "belt_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "flask" }, }, - ["FlaskChargeOnCritInfluence1"] = { type = "Prefix", affix = "Hunter's", "Gain a Flask Charge when you deal a Critical Strike", statOrder = { 3257 }, level = 75, group = "FlaskChargeOnCrit", weightKey = { "belt_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "flask", "critical" }, }, - ["ChaosDamageInfluence1"] = { type = "Prefix", affix = "Hunter's", "(16-20)% increased Chaos Damage", statOrder = { 1269 }, level = 68, group = "IncreasedChaosDamagePrefix", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["ChaosDamageInfluence2_"] = { type = "Prefix", affix = "Hunter's", "(21-25)% increased Chaos Damage", statOrder = { 1269 }, level = 75, group = "IncreasedChaosDamagePrefix", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["ChaosDamageInfluence3"] = { type = "Prefix", affix = "Hunter's", "(26-30)% increased Chaos Damage", statOrder = { 1269 }, level = 80, group = "IncreasedChaosDamagePrefix", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["PercentageAllAttributesInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(6-9)% increased Attributes", statOrder = { 1068 }, level = 68, group = "PercentageAllAttributes", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "attribute" }, }, - ["PercentageAllAttributesInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(10-12)% increased Attributes", statOrder = { 1068 }, level = 75, group = "PercentageAllAttributes", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "attribute" }, }, - ["CastSpeedDuringFlaskEffectInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(8-14)% increased Cast Speed during any Flask Effect", statOrder = { 5170 }, level = 68, group = "CastSpeedDuringFlaskEffect", weightKey = { "belt_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "flask", "caster", "speed" }, }, - ["ArmourPenetrationInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Hits have (30-39)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 6801 }, level = 68, group = "ChanceToIgnoreEnemyArmour", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical" }, }, - ["ArmourPenetrationInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Hits have (40-50)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 6801 }, level = 75, group = "ChanceToIgnoreEnemyArmour", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical" }, }, - ["MovementSpeedDuringFlaskEffectInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(6-10)% increased Movement Speed during any Flask Effect", statOrder = { 3052 }, level = 81, group = "MovementSpeedDuringFlaskEffect", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "speed" }, }, - ["PhysicalAttackDamageTakenInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "-(35-25) Physical Damage taken from Attack Hits", statOrder = { 2111 }, level = 68, group = "PhysicalAttackDamageTaken", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical", "attack" }, }, - ["PhysicalAttackDamageTakenInfluence2"] = { type = "Suffix", affix = "of the Hunt", "-(45-36) Physical Damage taken from Attack Hits", statOrder = { 2111 }, level = 75, group = "PhysicalAttackDamageTaken", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical", "attack" }, }, - ["ChanceToShockAddedDamageInfluence1"] = { type = "Prefix", affix = "Crusader's", "Adds (3-7) to (68-73) Lightning Damage against Shocked Enemies", statOrder = { 6534 }, level = 68, group = "ChanceToShockAddedDamage", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "ailment" }, }, - ["ChanceToShockAddedDamageInfluence2"] = { type = "Prefix", affix = "Crusader's", "Adds (4-8) to (82-86) Lightning Damage against Shocked Enemies", statOrder = { 6534 }, level = 75, group = "ChanceToShockAddedDamage", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "ailment" }, }, - ["AddedLightningDamagePerPowerChargeInfluence1__"] = { type = "Prefix", affix = "Crusader's", "1 to (6-8) Lightning Damage per Power Charge", statOrder = { 8783 }, level = 75, group = "GlobalAddedLightningDamagePerPowerCharge", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, }, - ["AddedLightningDamagePerPowerChargeInfluence2"] = { type = "Prefix", affix = "Crusader's", "(1-2) to (9-11) Lightning Damage per Power Charge", statOrder = { 8783 }, level = 80, group = "GlobalAddedLightningDamagePerPowerCharge", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, }, - ["SpellDamageRingInfluence1_"] = { type = "Prefix", affix = "Crusader's", "(15-17)% increased Spell Damage", statOrder = { 1108 }, level = 68, group = "SpellDamage", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, }, - ["SpellDamageRingInfluence2_"] = { type = "Prefix", affix = "Crusader's", "(18-21)% increased Spell Damage", statOrder = { 1108 }, level = 75, group = "SpellDamage", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, }, - ["SpellDamageRingInfluence3__"] = { type = "Prefix", affix = "Crusader's", "(22-25)% increased Spell Damage", statOrder = { 1108 }, level = 80, group = "SpellDamage", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, }, - ["IncreasedLifeLeechRateInfluence1"] = { type = "Prefix", affix = "Crusader's", "(35-40)% increased total Recovery per second from Life Leech", statOrder = { 2034 }, level = 68, group = "IncreasedLifeLeechRate", weightKey = { "ring_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life" }, }, - ["IncreasedLifeLeechRateInfluence2"] = { type = "Prefix", affix = "Crusader's", "(41-45)% increased total Recovery per second from Life Leech", statOrder = { 2034 }, level = 75, group = "IncreasedLifeLeechRate", weightKey = { "ring_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life" }, }, - ["IncreasedLifeLeechRateInfluence3"] = { type = "Prefix", affix = "Crusader's", "(46-50)% increased total Recovery per second from Life Leech", statOrder = { 2034 }, level = 80, group = "IncreasedLifeLeechRate", weightKey = { "ring_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life" }, }, - ["IncreasedLifeLeechRateSuffixInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(35-40)% increased total Recovery per second from Life Leech", statOrder = { 2034 }, level = 68, group = "IncreasedLifeLeechRate", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life" }, }, - ["IncreasedLifeLeechRateSuffixInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(41-45)% increased total Recovery per second from Life Leech", statOrder = { 2034 }, level = 75, group = "IncreasedLifeLeechRate", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life" }, }, - ["IncreasedLifeLeechRateSuffixInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(46-50)% increased total Recovery per second from Life Leech", statOrder = { 2034 }, level = 80, group = "IncreasedLifeLeechRate", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life" }, }, - ["ReducedCurseEffectInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(25-29)% reduced Effect of Curses on you", statOrder = { 2047 }, level = 68, group = "ReducedCurseEffect", weightKey = { "ring_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, - ["ReducedCurseEffectInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "(35-40)% reduced Effect of Curses on you", statOrder = { 2047 }, level = 75, group = "ReducedCurseEffect", weightKey = { "ring_crusader", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, - ["CurseOnHitConductivityInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Curse Enemies with Conductivity on Hit", statOrder = { 2403 }, level = 75, group = "ConductivityOnHitLevel", weightKey = { "ring_crusader", "default", }, weightVal = { 200, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, - ["CurseOnHitConductivityInfluence2___"] = { type = "Suffix", affix = "of the Crusade", "Curse Enemies with Conductivity on Hit", statOrder = { 2403 }, level = 80, group = "ConductivityOnHitLevel", weightKey = { "ring_crusader", "default", }, weightVal = { 200, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, - ["LifeGainedOnSpellHitInfluence1"] = { type = "Prefix", affix = "Crusader's", "Gain (8-12) Life per Enemy Hit with Spells", statOrder = { 1620 }, level = 68, group = "LifeGainedOnSpellHit", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life", "caster" }, }, - ["LifeGainedOnSpellHitInfluence2"] = { type = "Prefix", affix = "Crusader's", "Gain (13-15) Life per Enemy Hit with Spells", statOrder = { 1620 }, level = 75, group = "LifeGainedOnSpellHit", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life", "caster" }, }, - ["GlobalCriticalStrikeChanceRingInfluence1___"] = { type = "Suffix", affix = "of the Crusade", "(15-17)% increased Global Critical Strike Chance", statOrder = { 1343 }, level = 68, group = "CriticalStrikeChance", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "critical" }, }, - ["GlobalCriticalStrikeChanceRingInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(18-21)% increased Global Critical Strike Chance", statOrder = { 1343 }, level = 75, group = "CriticalStrikeChance", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "critical" }, }, - ["GlobalCriticalStrikeChanceRingInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(22-25)% increased Global Critical Strike Chance", statOrder = { 1343 }, level = 80, group = "CriticalStrikeChance", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "critical" }, }, - ["ChanceToIgniteAddedDamageInfluence1"] = { type = "Prefix", affix = "Warlord's", "Adds (19-26) to (38-46) Fire Damage against Ignited Enemies", statOrder = { 6532 }, level = 68, group = "ChanceToIgniteAddedDamage", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, }, - ["ChanceToIgniteAddedDamageInfluence2"] = { type = "Prefix", affix = "Warlord's", "Adds (23-30) to (47-54) Fire Damage against Ignited Enemies", statOrder = { 6532 }, level = 75, group = "ChanceToIgniteAddedDamage", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, }, - ["AddedFireDamagePerEnduranceChargeInfluence1"] = { type = "Prefix", affix = "Warlord's", "(2-3) to (4-5) Fire Damage per Endurance Charge", statOrder = { 8779 }, level = 75, group = "GlobalAddedFireDamagePerEnduranceCharge", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, - ["AddedFireDamagePerEnduranceChargeInfluence2__"] = { type = "Prefix", affix = "Warlord's", "(3-4) to (6-7) Fire Damage per Endurance Charge", statOrder = { 8779 }, level = 80, group = "GlobalAddedFireDamagePerEnduranceCharge", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, - ["MeleeDamageRingInfluence1"] = { type = "Prefix", affix = "Warlord's", "(15-17)% increased Melee Damage", statOrder = { 1119 }, level = 68, group = "MeleeDamage", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, }, - ["MeleeDamageRingInfluence2"] = { type = "Prefix", affix = "Warlord's", "(18-21)% increased Melee Damage", statOrder = { 1119 }, level = 75, group = "MeleeDamage", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, }, - ["MeleeDamageRingInfluence3"] = { type = "Prefix", affix = "Warlord's", "(22-25)% increased Melee Damage", statOrder = { 1119 }, level = 80, group = "MeleeDamage", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, }, - ["CurseOnHitFlammabilityInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Curse Enemies with Flammability on Hit", statOrder = { 2406 }, level = 75, group = "FlammabilityOnHitLevel", weightKey = { "ring_adjudicator", "default", }, weightVal = { 200, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, - ["CurseOnHitFlammabilityInfluence2"] = { type = "Suffix", affix = "of the Conquest", "Curse Enemies with Flammability on Hit", statOrder = { 2406 }, level = 80, group = "FlammabilityOnHitLevel", weightKey = { "ring_adjudicator", "default", }, weightVal = { 200, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, - ["CurseOnHitVulnerabilityInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Curse Enemies with Vulnerability on Hit", statOrder = { 2399 }, level = 75, group = "CurseOnHitLevelVulnerabilityMod", weightKey = { "ring_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, - ["CurseOnHitVulnerabilityInfluence2"] = { type = "Suffix", affix = "of the Conquest", "Curse Enemies with Vulnerability on Hit", statOrder = { 2399 }, level = 80, group = "CurseOnHitLevelVulnerabilityMod", weightKey = { "ring_adjudicator", "default", }, weightVal = { 200, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, - ["CriticalStrikeMultiplierRingInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+(14-16)% to Global Critical Strike Multiplier", statOrder = { 1372 }, level = 68, group = "CriticalStrikeMultiplier", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "critical" }, }, - ["CriticalStrikeMultiplierRingInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "+(17-19)% to Global Critical Strike Multiplier", statOrder = { 1372 }, level = 75, group = "CriticalStrikeMultiplier", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "critical" }, }, - ["CriticalStrikeMultiplierRingInfluence3_"] = { type = "Suffix", affix = "of the Conquest", "+(20-22)% to Global Critical Strike Multiplier", statOrder = { 1372 }, level = 80, group = "CriticalStrikeMultiplier", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "critical" }, }, - ["BleedDamageAndDurationInfluence1__"] = { type = "Suffix", affix = "of the Conquest", "(8-12)% increased Damage with Bleeding", "(5-6)% increased Bleeding Duration", statOrder = { 3035, 4811 }, level = 68, group = "BleedDamageAndDuration", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment" }, }, - ["BleedDamageAndDurationInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "(13-17)% increased Damage with Bleeding", "(7-8)% increased Bleeding Duration", statOrder = { 3035, 4811 }, level = 75, group = "BleedDamageAndDuration", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment" }, }, - ["BleedDamageAndDurationInfluence3"] = { type = "Suffix", affix = "of the Conquest", "(18-22)% increased Damage with Bleeding", "(9-10)% increased Bleeding Duration", statOrder = { 3035, 4811 }, level = 80, group = "BleedDamageAndDuration", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment" }, }, - ["ChanceToFreezeAddedDamageInfluence1_"] = { type = "Prefix", affix = "Redeemer's", "Adds (17-23) to (35-41) Cold Damage against Chilled or Frozen Enemies", statOrder = { 6531 }, level = 68, group = "ChanceToFreezeAddedDamage", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "ailment" }, }, - ["ChanceToFreezeAddedDamageInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Adds (20-26) to (41-48) Cold Damage against Chilled or Frozen Enemies", statOrder = { 6531 }, level = 75, group = "ChanceToFreezeAddedDamage", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "ailment" }, }, - ["AddedColdDamagePerFrenzyChargeInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(2-3) to (4-5) Added Cold Damage per Frenzy Charge", statOrder = { 4134 }, level = 75, group = "AddedColdDamagePerFrenzyCharge", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, }, - ["AddedColdDamagePerFrenzyChargeInfluence2__"] = { type = "Prefix", affix = "Redeemer's", "(3-4) to (6-7) Added Cold Damage per Frenzy Charge", statOrder = { 4134 }, level = 80, group = "AddedColdDamagePerFrenzyCharge", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, }, - ["ProjectileAttackDamageRingInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(15-17)% increased Projectile Attack Damage", statOrder = { 1874 }, level = 68, group = "ProjectileAttackDamage", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, }, - ["ProjectileAttackDamageRingInfluence2___"] = { type = "Prefix", affix = "Redeemer's", "(18-21)% increased Projectile Attack Damage", statOrder = { 1874 }, level = 75, group = "ProjectileAttackDamage", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, }, - ["ProjectileAttackDamageRingInfluence3"] = { type = "Prefix", affix = "Redeemer's", "(22-25)% increased Projectile Attack Damage", statOrder = { 1874 }, level = 80, group = "ProjectileAttackDamage", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, }, - ["MinionDamageRingInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Minions deal (15-17)% increased Damage", statOrder = { 1852 }, level = 68, group = "MinionDamage", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "minion" }, }, - ["MinionDamageRingInfluence2_"] = { type = "Prefix", affix = "Redeemer's", "Minions deal (18-21)% increased Damage", statOrder = { 1852 }, level = 75, group = "MinionDamage", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "minion" }, }, - ["MinionDamageRingInfluence3"] = { type = "Prefix", affix = "Redeemer's", "Minions deal (22-25)% increased Damage", statOrder = { 1852 }, level = 80, group = "MinionDamage", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "minion" }, }, - ["EnergyShieldRechargeDelayInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(15-20)% faster start of Energy Shield Recharge", statOrder = { 1444 }, level = 68, group = "EnergyShieldDelay", weightKey = { "ring_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, - ["EnergyShieldRechargeDelayInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(20-24)% faster start of Energy Shield Recharge", statOrder = { 1444 }, level = 75, group = "EnergyShieldDelay", weightKey = { "ring_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, - ["CurseOnHitFrostbiteInfluence1_"] = { type = "Suffix", affix = "of Redemption", "Curse Enemies with Frostbite on Hit", statOrder = { 2407 }, level = 75, group = "FrostbiteOnHitLevel", weightKey = { "ring_eyrie", "default", }, weightVal = { 200, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, - ["CurseOnHitFrostbiteInfluence2"] = { type = "Suffix", affix = "of Redemption", "Curse Enemies with Frostbite on Hit", statOrder = { 2407 }, level = 80, group = "FrostbiteOnHitLevel", weightKey = { "ring_eyrie", "default", }, weightVal = { 200, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, - ["AttackSpeedHitRecentlyInfluence1_"] = { type = "Suffix", affix = "of Redemption", "(8-12)% increased Attack Speed if you've been Hit Recently", statOrder = { 4716 }, level = 75, group = "AttackSpeedHitRecently", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack", "speed" }, }, - ["IncreasedExperienceGainInfluence1"] = { type = "Prefix", affix = "Hunter's", "(2-3)% increased Experience gain", statOrder = { 1485 }, level = 85, group = "ExperienceIncrease", weightKey = { "ring_basilisk", "default", }, weightVal = { 50, 0 }, modTags = { }, }, - ["ReflectedPhysicalDamageRingInfluence1"] = { type = "Prefix", affix = "Hunter's", "You and your Minions take (31-45)% reduced Reflected Physical Damage", statOrder = { 9177 }, level = 68, group = "ReducedPhysicalReflectTaken", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical" }, }, - ["ReflectedPhysicalDamageRingInfluence2_"] = { type = "Prefix", affix = "Hunter's", "You and your Minions take (46-55)% reduced Reflected Physical Damage", statOrder = { 9177 }, level = 75, group = "ReducedPhysicalReflectTaken", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical" }, }, - ["ReflectedElementalDamageRingInfluence1"] = { type = "Prefix", affix = "Hunter's", "You and your Minions take (31-45)% reduced Reflected Elemental Damage", statOrder = { 6023 }, level = 68, group = "ReducedElementalReflectTaken", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "elemental" }, }, - ["ReflectedElementalDamageRingInfluence2"] = { type = "Prefix", affix = "Hunter's", "You and your Minions take (46-55)% reduced Reflected Elemental Damage", statOrder = { 6023 }, level = 75, group = "ReducedElementalReflectTaken", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "elemental" }, }, - ["EnergyShieldDelayInfluence1"] = { type = "Prefix", affix = "Hunter's", "(15-20)% faster start of Energy Shield Recharge", statOrder = { 1444 }, level = 68, group = "EnergyShieldDelay", weightKey = { "ring_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldDelayInfluence2_"] = { type = "Prefix", affix = "Hunter's", "(20-24)% faster start of Energy Shield Recharge", statOrder = { 1444 }, level = 75, group = "EnergyShieldDelay", weightKey = { "ring_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "defences", "energy_shield" }, }, - ["LifeGainPerTargetInfluence1"] = { type = "Prefix", affix = "Hunter's", "Gain (10-15) Life per Enemy Hit with Attacks", statOrder = { 1621 }, level = 68, group = "LifeGainPerTarget", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life", "attack" }, }, - ["LifeGainPerTargetInfluence2__"] = { type = "Prefix", affix = "Hunter's", "Gain (16-20) Life per Enemy Hit with Attacks", statOrder = { 1621 }, level = 75, group = "LifeGainPerTarget", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life", "attack" }, }, - ["ExertedAttackDamageInfluence1"] = { type = "Prefix", affix = "Hunter's", "Exerted Attacks deal (25-27)% increased Damage", statOrder = { 6042 }, level = 68, group = "ExertedAttackDamage", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "attack" }, }, - ["ExertedAttackDamageInfluence2__"] = { type = "Prefix", affix = "Hunter's", "Exerted Attacks deal (28-31)% increased Damage", statOrder = { 6042 }, level = 75, group = "ExertedAttackDamage", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "attack" }, }, - ["ExertedAttackDamageInfluence3"] = { type = "Prefix", affix = "Hunter's", "Exerted Attacks deal (32-35)% increased Damage", statOrder = { 6042 }, level = 80, group = "ExertedAttackDamage", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "attack" }, }, - ["CurseOnHitElementalWeaknessInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Curse Enemies with Elemental Weakness on Hit", statOrder = { 2401 }, level = 75, group = "CurseOnHitLevelElementalWeaknessMod", weightKey = { "ring_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "caster", "curse" }, }, - ["CurseOnHitElementalWeaknessInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Curse Enemies with Elemental Weakness on Hit", statOrder = { 2401 }, level = 80, group = "CurseOnHitLevelElementalWeaknessMod", weightKey = { "ring_basilisk", "default", }, weightVal = { 200, 0 }, modTags = { "caster", "curse" }, }, - ["CurseOnHitDespairInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Curse Enemies with Despair on Hit", statOrder = { 2404 }, level = 75, group = "CurseOnHitDespairMod", weightKey = { "ring_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "caster", "curse" }, }, - ["CurseOnHitDespairInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Curse Enemies with Despair on Hit", statOrder = { 2404 }, level = 80, group = "CurseOnHitDespairMod", weightKey = { "ring_basilisk", "default", }, weightVal = { 200, 0 }, modTags = { "caster", "curse" }, }, - ["PoisonDamageAndDurationInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "(5-6)% increased Poison Duration", "(8-12)% increased Damage with Poison", statOrder = { 3036, 3047 }, level = 68, group = "PoisonDamageAndDuration", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["PoisonDamageAndDurationInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(7-8)% increased Poison Duration", "(13-17)% increased Damage with Poison", statOrder = { 3036, 3047 }, level = 75, group = "PoisonDamageAndDuration", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["PoisonDamageAndDurationInfluence3__"] = { type = "Suffix", affix = "of the Hunt", "(9-10)% increased Poison Duration", "(18-22)% increased Damage with Poison", statOrder = { 3036, 3047 }, level = 80, group = "PoisonDamageAndDuration", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["LightningDamageLifeLeechInfluence1"] = { type = "Prefix", affix = "Crusader's", "(0.3-0.5)% of Lightning Damage Leeched as Life", statOrder = { 1560 }, level = 68, group = "LightningDamageLifeLeechPermyriad", weightKey = { "amulet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "lightning" }, }, - ["LightningDamageLifeLeechSuffixInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(0.3-0.5)% of Lightning Damage Leeched as Life", statOrder = { 1560 }, level = 68, group = "LightningDamageLifeLeechPermyriad", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "lightning" }, }, - ["LightningDamageESLeechInfluence1_"] = { type = "Prefix", affix = "Crusader's", "(0.2-0.4)% of Lightning Damage Leeched as Energy Shield", statOrder = { 4833 }, level = 68, group = "LightningDamageESLeech", weightKey = { "amulet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield", "elemental", "lightning" }, }, - ["LightningDamageESLeechSufffixInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(0.2-0.4)% of Lightning Damage Leeched as Energy Shield", statOrder = { 4833 }, level = 68, group = "LightningDamageESLeech", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "defences", "energy_shield", "elemental", "lightning" }, }, - ["DamagePer15IntelligenceInfluence1"] = { type = "Prefix", affix = "Crusader's", "1% increased Damage per 15 Intelligence", statOrder = { 5757 }, level = 80, group = "DamagePer15Intelligence", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, - ["DamagePerPowerChargeInfluence1"] = { type = "Prefix", affix = "Crusader's", "(3-4)% increased Damage per Power Charge", statOrder = { 5766 }, level = 68, group = "IncreasedDamagePerPowerCharge", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, - ["DamagePerPowerChargeInfluence2"] = { type = "Prefix", affix = "Crusader's", "(5-6)% increased Damage per Power Charge", statOrder = { 5766 }, level = 80, group = "IncreasedDamagePerPowerCharge", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, - ["GlobalLightningGemLevelInfluence1_"] = { type = "Prefix", affix = "Crusader's", "+1 to Level of all Lightning Skill Gems", statOrder = { 7077 }, level = 82, group = "GlobalLightningGemLevel", weightKey = { "amulet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "gem" }, }, - ["LightningPenetrationInfluence1__"] = { type = "Prefix", affix = "Crusader's", "Damage Penetrates (4-7)% Lightning Resistance", statOrder = { 2856 }, level = 68, group = "LightningResistancePenetration", weightKey = { "amulet_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, }, - ["LightningPenetrationInfluence2__"] = { type = "Prefix", affix = "Crusader's", "Damage Penetrates (8-10)% Lightning Resistance", statOrder = { 2856 }, level = 82, group = "LightningResistancePenetration", weightKey = { "amulet_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, }, - ["MaximumLifeLeechRateHighInfluence1"] = { type = "Prefix", affix = "Crusader's", "(15-25)% increased Maximum total Life Recovery per second from Leech", statOrder = { 1612 }, level = 68, group = "MaximumLifeLeechRate", weightKey = { "amulet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life" }, }, - ["MaximumLifeLeechRateHighSuffixInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(15-25)% increased Maximum total Life Recovery per second from Leech", statOrder = { 1612 }, level = 68, group = "MaximumLifeLeechRate", weightKey = { "amulet_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "influence_mod", "life" }, }, - ["MaximumEnergyShieldLeechRateHighInfluence1"] = { type = "Prefix", affix = "Crusader's", "(15-25)% increased Maximum total Energy Shield Recovery per second from Leech", statOrder = { 1615 }, level = 68, group = "MaximumEnergyShieldLeechRate", weightKey = { "amulet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, - ["MaximumEnergyShieldLeechRateHighSuffixInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(15-25)% increased Maximum total Energy Shield Recovery per second from Leech", statOrder = { 1615 }, level = 68, group = "MaximumEnergyShieldLeechRate", weightKey = { "amulet_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, - ["MaximumSpellBlockChanceInfluence1"] = { type = "Suffix", affix = "of the Crusade", "+2% to maximum Chance to Block Spell Damage", statOrder = { 1866 }, level = 68, group = "MaximumSpellBlockChance", weightKey = { "amulet_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "block", "influence_mod" }, }, - ["WrathReducedReservationInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Wrath has (40-50)% increased Mana Reservation Efficiency", statOrder = { 10092 }, level = 75, group = "WrathReservation", weightKey = { "amulet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, }, - ["WrathReservationEfficiencyInfluence1________"] = { type = "Suffix", affix = "of the Crusade", "Wrath has (40-50)% increased Mana Reservation Efficiency", statOrder = { 10093 }, level = 75, group = "WrathReservationEfficiency", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, }, - ["DisciplineReducedReservationInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Discipline has (50-60)% increased Mana Reservation Efficiency", statOrder = { 5880 }, level = 75, group = "DisciplineReservation", weightKey = { "amulet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, }, - ["DisciplineReservationEfficiencyInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Discipline has (50-60)% increased Mana Reservation Efficiency", statOrder = { 5881 }, level = 75, group = "DisciplineReservationEfficiency", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, }, - ["PurityOfLightningReducedReservationInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Purity of Lightning has (50-60)% increased Mana Reservation Efficiency", statOrder = { 9274 }, level = 75, group = "PurityOfLightningReservation", weightKey = { "amulet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, }, - ["PurityOfLightningReservationEfficiencyInfluence1__"] = { type = "Suffix", affix = "of the Crusade", "Purity of Lightning has (50-60)% increased Mana Reservation Efficiency", statOrder = { 9275 }, level = 75, group = "PurityOfLightningReservationEfficiency", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, }, - ["ZealotryReducedReservationInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Zealotry has (40-50)% increased Mana Reservation Efficiency", statOrder = { 10170 }, level = 75, group = "ZealotryReservation", weightKey = { "amulet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, }, - ["ZealotryReservationEfficiencyInfluence1__"] = { type = "Suffix", affix = "of the Crusade", "Zealotry has (40-50)% increased Mana Reservation Efficiency", statOrder = { 10171 }, level = 75, group = "ZealotryReservationEfficiency", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, }, - ["SpellBlockAmuletInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(4-5)% Chance to Block Spell Damage", statOrder = { 1046 }, level = 68, group = "SpellBlockPercentage", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "block", "influence_mod" }, }, - ["SpellBlockAmuletInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(6-7)% Chance to Block Spell Damage", statOrder = { 1046 }, level = 80, group = "SpellBlockPercentage", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "block", "influence_mod" }, }, - ["FireDamageLifeLeechInfluence1"] = { type = "Prefix", affix = "Warlord's", "(0.3-0.5)% of Fire Damage Leeched as Life", statOrder = { 1551 }, level = 68, group = "FireDamageLifeLeechPermyriad", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "fire" }, }, - ["FireDamageLifeLeechSuffixInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(0.3-0.5)% of Fire Damage Leeched as Life", statOrder = { 1551 }, level = 68, group = "FireDamageLifeLeechPermyriad", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "fire" }, }, - ["FireDamageESLeechInfluence1"] = { type = "Prefix", affix = "Warlord's", "(0.2-0.4)% of Fire Damage Leeched as Energy Shield", statOrder = { 4832 }, level = 68, group = "FireDamageESLeech", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield", "elemental", "fire" }, }, - ["FireDamageESLeechSuffixInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(0.2-0.4)% of Fire Damage Leeched as Energy Shield", statOrder = { 4832 }, level = 68, group = "FireDamageESLeech", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "defences", "energy_shield", "elemental", "fire" }, }, - ["DamagePer15StrengthInfluence1"] = { type = "Prefix", affix = "Warlord's", "1% increased Damage per 15 Strength", statOrder = { 5758 }, level = 80, group = "DamagePer15Strength", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, - ["DamagePerEnduranceChargeInfluence1__"] = { type = "Prefix", affix = "Warlord's", "(3-4)% increased Damage per Endurance Charge", statOrder = { 3065 }, level = 68, group = "DamagePerEnduranceCharge", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, - ["DamagePerEnduranceChargeInfluence2"] = { type = "Prefix", affix = "Warlord's", "(5-6)% increased Damage per Endurance Charge", statOrder = { 3065 }, level = 80, group = "DamagePerEnduranceCharge", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, - ["GlobalFireGemLevelInfluence1"] = { type = "Prefix", affix = "Warlord's", "+1 to Level of all Fire Skill Gems", statOrder = { 6255 }, level = 82, group = "GlobalFireGemLevel", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "gem" }, }, - ["GlobalPhysicalGemLevelInfluence1"] = { type = "Prefix", affix = "Warlord's", "+1 to Level of all Physical Skill Gems", statOrder = { 9178 }, level = 82, group = "GlobalPhysicalGemLevel", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical", "gem" }, }, - ["FirePenetrationInfluence1"] = { type = "Prefix", affix = "Warlord's", "Damage Penetrates (4-7)% Fire Resistance", statOrder = { 2853 }, level = 68, group = "FireResistancePenetration", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, - ["FirePenetrationInfluence2"] = { type = "Prefix", affix = "Warlord's", "Damage Penetrates (8-10)% Fire Resistance", statOrder = { 2853 }, level = 82, group = "FireResistancePenetration", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, - ["MaximumAttackBlockChanceInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+2% to maximum Chance to Block Attack Damage", statOrder = { 1865 }, level = 68, group = "MaximumBlockChance", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 250, 0 }, modTags = { "block", "influence_mod" }, }, - ["AngerReducedReservationInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Anger has (40-50)% increased Mana Reservation Efficiency", statOrder = { 4515 }, level = 75, group = "AngerReservation", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, }, - ["AngerReservationEfficiencyInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Anger has (40-50)% increased Mana Reservation Efficiency", statOrder = { 4516 }, level = 75, group = "AngerReservationEfficiency", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, }, - ["DeterminationReducedReservationInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Determination has (40-50)% increased Mana Reservation Efficiency", statOrder = { 5868 }, level = 75, group = "DeterminationReservation", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, }, - ["DeterminationReservationEfficiencyInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "Determination has (40-50)% increased Mana Reservation Efficiency", statOrder = { 5869 }, level = 75, group = "DeterminationReservationEfficiency", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, }, - ["PurityOfFireReducedReservationInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "Purity of Fire has (50-60)% increased Mana Reservation Efficiency", statOrder = { 9268 }, level = 75, group = "PurityOfFireReservation", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, }, - ["PurityOfFireReservationEfficiencyInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Purity of Fire has (50-60)% increased Mana Reservation Efficiency", statOrder = { 9269 }, level = 75, group = "PurityOfFireReservationEfficiency", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, }, - ["PrideReducedReservationInfluence1__"] = { type = "Suffix", affix = "of the Conquest", "Pride has (40-50)% increased Mana Reservation Efficiency", statOrder = { 9221 }, level = 75, group = "PrideReservation", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, }, - ["PrideReservationEfficiencyInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Pride has (40-50)% increased Mana Reservation Efficiency", statOrder = { 9222 }, level = 75, group = "PrideReservationEfficiency", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, }, - ["ColdDamageLifeLeechInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(0.3-0.5)% of Cold Damage Leeched as Life", statOrder = { 1556 }, level = 68, group = "ColdDamageLifeLeechPermyriad", weightKey = { "amulet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "cold" }, }, - ["ColdDamageLifeLeechSuffixInfluence1"] = { type = "Suffix", affix = "of Redemption", "(0.3-0.5)% of Cold Damage Leeched as Life", statOrder = { 1556 }, level = 68, group = "ColdDamageLifeLeechPermyriad", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "cold" }, }, - ["ColdDamageESLeechInfluence1__"] = { type = "Prefix", affix = "Redeemer's", "(0.2-0.4)% of Cold Damage Leeched as Energy Shield", statOrder = { 4830 }, level = 68, group = "ColdDamageESLeech", weightKey = { "amulet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield", "elemental", "cold" }, }, - ["ColdDamageESLeechSuffixInfluence1"] = { type = "Suffix", affix = "of Redemption", "(0.2-0.4)% of Cold Damage Leeched as Energy Shield", statOrder = { 4830 }, level = 68, group = "ColdDamageESLeech", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "defences", "energy_shield", "elemental", "cold" }, }, - ["DamagePer15DexterityInfluence1"] = { type = "Prefix", affix = "Redeemer's", "1% increased Damage per 15 Dexterity", statOrder = { 5756 }, level = 80, group = "DamagePer15Dexterity", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, - ["DamagePerFrenzyChargeInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(3-4)% increased Damage per Frenzy Charge", statOrder = { 3152 }, level = 68, group = "DamagePerFrenzyCharge", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, - ["DamagePerFrenzyChargeInfluence2_"] = { type = "Prefix", affix = "Redeemer's", "(5-6)% increased Damage per Frenzy Charge", statOrder = { 3152 }, level = 80, group = "DamagePerFrenzyCharge", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, - ["GlobalColdGemLevelInfluence1__"] = { type = "Prefix", affix = "Redeemer's", "+1 to Level of all Cold Skill Gems", statOrder = { 5542 }, level = 82, group = "GlobalColdGemLevel", weightKey = { "amulet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "gem" }, }, - ["ColdPenetrationInfluence1_"] = { type = "Prefix", affix = "Redeemer's", "Damage Penetrates (4-7)% Cold Resistance", statOrder = { 2855 }, level = 68, group = "ColdResistancePenetration", weightKey = { "amulet_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, }, - ["ColdPenetrationInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Damage Penetrates (8-10)% Cold Resistance", statOrder = { 2855 }, level = 82, group = "ColdResistancePenetration", weightKey = { "amulet_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, }, - ["MaximumAttackDodgeChanceInfluence1_"] = { type = "Suffix", affix = "of Redemption", "Prevent +2% of Suppressed Spell Damage", statOrder = { 1030 }, level = 68, group = "SpellDamageSuppressed", weightKey = { "amulet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, - ["MaximumSpellDodgeChanceInfluence1"] = { type = "Suffix", affix = "of Redemption", "Prevent +2% of Suppressed Spell Damage", statOrder = { 1030 }, level = 68, group = "SpellDamageSuppressed", weightKey = { "amulet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, - ["SpellDamageSuppressedInfluence1"] = { type = "Suffix", affix = "of Redemption", "Prevent +2% of Suppressed Spell Damage", statOrder = { 1030 }, level = 68, group = "SpellDamageSuppressed", weightKey = { "amulet_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod" }, }, - ["HatredReducedReservationInfluence1_"] = { type = "Suffix", affix = "of Redemption", "Hatred has (40-50)% increased Mana Reservation Efficiency", statOrder = { 6583 }, level = 75, group = "HatredReservation", weightKey = { "amulet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, }, - ["HatredReservationEfficiencyInfluence1"] = { type = "Suffix", affix = "of Redemption", "Hatred has (40-50)% increased Mana Reservation Efficiency", statOrder = { 6584 }, level = 75, group = "HatredReservationEfficiency", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, }, - ["GraceReducedReservationInfluence1"] = { type = "Suffix", affix = "of Redemption", "Grace has (40-50)% increased Mana Reservation Efficiency", statOrder = { 6548 }, level = 75, group = "GraceReservation", weightKey = { "amulet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, }, - ["GraceReservationEfficiencyInfluence1"] = { type = "Suffix", affix = "of Redemption", "Grace has (40-50)% increased Mana Reservation Efficiency", statOrder = { 6549 }, level = 75, group = "GraceReservationEfficiency", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, }, - ["PurityOfIceReducedReservationInfluence1__"] = { type = "Suffix", affix = "of Redemption", "Purity of Ice has (50-60)% increased Mana Reservation Efficiency", statOrder = { 9271 }, level = 75, group = "PurityOfIceReservation", weightKey = { "amulet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, }, - ["PurityOfIceReservationEfficiencyInfluence1"] = { type = "Suffix", affix = "of Redemption", "Purity of Ice has (50-60)% increased Mana Reservation Efficiency", statOrder = { 9272 }, level = 75, group = "PurityOfIceReservationEfficiency", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, }, - ["WarcrySpeedInfluence1"] = { type = "Suffix", affix = "of Redemption", "(21-25)% increased Warcry Speed", statOrder = { 3143 }, level = 68, group = "WarcrySpeed", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "speed" }, }, - ["WarcrySpeedInfluence2_"] = { type = "Suffix", affix = "of Redemption", "(26-30)% increased Warcry Speed", statOrder = { 3143 }, level = 75, group = "WarcrySpeed", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "speed" }, }, - ["WarcrySpeedInfluence3"] = { type = "Suffix", affix = "of Redemption", "(31-35)% increased Warcry Speed", statOrder = { 3143 }, level = 80, group = "WarcrySpeed", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "speed" }, }, - ["WarcrySpeedEssence1"] = { type = "Suffix", affix = "of the Essence", "(15-20)% increased Warcry Speed", statOrder = { 3143 }, level = 42, group = "WarcrySpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, - ["WarcrySpeedEssence2"] = { type = "Suffix", affix = "of the Essence", "(21-25)% increased Warcry Speed", statOrder = { 3143 }, level = 58, group = "WarcrySpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, - ["WarcrySpeedEssence3"] = { type = "Suffix", affix = "of the Essence", "(26-30)% increased Warcry Speed", statOrder = { 3143 }, level = 74, group = "WarcrySpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, - ["WarcrySpeedEssence4_"] = { type = "Suffix", affix = "of the Essence", "(31-35)% increased Warcry Speed", statOrder = { 3143 }, level = 82, group = "WarcrySpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, - ["DoubleDamageStunnedRecentlyInfluence1"] = { type = "Suffix", affix = "of Redemption", "(5-7)% chance to deal Double Damage if you have Stunned an Enemy Recently", statOrder = { 5371 }, level = 75, group = "DoubleDamageStunnedRecently", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, - ["DoubleDamageStunnedRecentlyInfluence2"] = { type = "Suffix", affix = "of Redemption", "(8-10)% chance to deal Double Damage if you have Stunned an Enemy Recently", statOrder = { 5371 }, level = 83, group = "DoubleDamageStunnedRecently", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, - ["PhysicalDamageLifeLeechInfluence1"] = { type = "Prefix", affix = "Hunter's", "(0.3-0.5)% of Physical Damage Leeched as Life", statOrder = { 1547 }, level = 68, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { "amulet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "life", "physical" }, }, - ["PhysicalDamageLifeLeechSuffixInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(0.3-0.5)% of Physical Damage Leeched as Life", statOrder = { 1547 }, level = 68, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { "amulet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life", "physical" }, }, - ["ChaosDamageLifeLeechInfluence1_"] = { type = "Prefix", affix = "Hunter's", "(0.3-0.5)% of Chaos Damage Leeched as Life", statOrder = { 1563 }, level = 68, group = "ChaosDamageLifeLeechPermyriad", weightKey = { "amulet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "life", "chaos" }, }, - ["ChaosDamageLifeLeechSuffixInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "(0.3-0.5)% of Chaos Damage Leeched as Life", statOrder = { 1563 }, level = 68, group = "ChaosDamageLifeLeechPermyriad", weightKey = { "amulet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life", "chaos" }, }, - ["GlobalChaosGemLevelInfluence1__"] = { type = "Prefix", affix = "Hunter's", "+1 to Level of all Chaos Skill Gems", statOrder = { 5463 }, level = 82, group = "GlobalChaosGemLevel", weightKey = { "amulet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "chaos", "gem" }, }, - ["GlobalStrengthGemLevelInfluence1"] = { type = "Prefix", affix = "Hunter's", "+1 to Level of all Strength Skill Gems", statOrder = { 9738 }, level = 82, group = "GlobalStrengthGemLevel", weightKey = { "amulet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "attribute", "gem" }, }, - ["GlobalDexterityGemLevelInfluence1_"] = { type = "Prefix", affix = "Hunter's", "+1 to Level of all Dexterity Skill Gems", statOrder = { 5873 }, level = 82, group = "GlobalDexterityGemLevel", weightKey = { "amulet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "attribute", "gem" }, }, - ["GlobalIntelligenceGemLevelInfluence1"] = { type = "Prefix", affix = "Hunter's", "+1 to Level of all Intelligence Skill Gems", statOrder = { 6913 }, level = 82, group = "GlobalIntelligenceGemLevel", weightKey = { "amulet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "attribute", "gem" }, }, - ["ElementalPenetrationInfluence1"] = { type = "Prefix", affix = "Hunter's", "Damage Penetrates (3-4)% Elemental Resistances", statOrder = { 2852 }, level = 68, group = "ElementalPenetration", weightKey = { "amulet_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["ElementalPenetrationInfluence2"] = { type = "Prefix", affix = "Hunter's", "Damage Penetrates (5-6)% Elemental Resistances", statOrder = { 2852 }, level = 82, group = "ElementalPenetration", weightKey = { "amulet_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["MalevolenceReducedReservationInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Malevolence has (40-50)% increased Mana Reservation Efficiency", statOrder = { 7735 }, level = 75, group = "MalevolenceReservation", weightKey = { "amulet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana", "aura" }, }, - ["MalevolenceReservationEfficiencyInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Malevolence has (40-50)% increased Mana Reservation Efficiency", statOrder = { 7736 }, level = 75, group = "MalevolenceReservationEfficiency", weightKey = { "amulet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "mana", "aura" }, }, - ["RandomChargeOnKillInfluence1___"] = { type = "Suffix", affix = "of the Hunt", "(3-6)% chance to gain a Power, Frenzy or Endurance Charge on Kill", statOrder = { 3475 }, level = 68, group = "PowerFrenzyOrEnduranceChargeOnKill", weightKey = { "amulet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, }, - ["RandomChargeOnKillInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(7-10)% chance to gain a Power, Frenzy or Endurance Charge on Kill", statOrder = { 3475 }, level = 75, group = "PowerFrenzyOrEnduranceChargeOnKill", weightKey = { "amulet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, }, - ["ReducedAttributeRequirementsInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Items and Gems have (5-10)% reduced Attribute Requirements", statOrder = { 2428 }, level = 68, group = "GlobalItemAttributeRequirements", weightKey = { "amulet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["ReducedAttributeRequirementsInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Items and Gems have (11-15)% reduced Attribute Requirements", statOrder = { 2428 }, level = 75, group = "GlobalItemAttributeRequirements", weightKey = { "amulet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["LocalIncreasedPhysicalDamagePercentAndLeechInfluence1"] = { type = "Prefix", affix = "Crusader's", "(25-34)% increased Physical Damage", "0.6% of Physical Attack Damage Leeched as Life", statOrder = { 1117, 1532 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndLeech", weightKey = { "sword_crusader", "axe_crusader", "2h_sword_crusader", "2h_axe_crusader", "default", }, weightVal = { 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "resource", "influence_mod", "life", "damage", "physical", "attack" }, }, - ["LocalIncreasedPhysicalDamagePercentAndLeechInfluence2"] = { type = "Prefix", affix = "Crusader's", "(35-44)% increased Physical Damage", "0.6% of Physical Attack Damage Leeched as Life", statOrder = { 1117, 1532 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndLeech", weightKey = { "sword_crusader", "axe_crusader", "2h_sword_crusader", "2h_axe_crusader", "default", }, weightVal = { 250, 250, 250, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "resource", "influence_mod", "life", "damage", "physical", "attack" }, }, - ["LocalIncreasedPhysicalDamagePercentAndLeechInfluence3"] = { type = "Prefix", affix = "Crusader's", "(45-54)% increased Physical Damage", "0.6% of Physical Attack Damage Leeched as Life", statOrder = { 1117, 1532 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndLeech", weightKey = { "sword_crusader", "axe_crusader", "2h_sword_crusader", "2h_axe_crusader", "default", }, weightVal = { 150, 150, 150, 150, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "resource", "influence_mod", "life", "damage", "physical", "attack" }, }, - ["LocalIncreasedPhysicalDamagePercentAndLeechInfluence4"] = { type = "Prefix", affix = "Crusader's", "(55-64)% increased Physical Damage", "0.6% of Physical Attack Damage Leeched as Life", statOrder = { 1117, 1532 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndLeech", weightKey = { "sword_crusader", "axe_crusader", "2h_sword_crusader", "2h_axe_crusader", "default", }, weightVal = { 100, 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "resource", "influence_mod", "life", "damage", "physical", "attack" }, }, - ["LocalIncreasedPhysicalDamagePercentAndLeechInfluence5_"] = { type = "Prefix", affix = "Crusader's", "(65-69)% increased Physical Damage", "0.6% of Physical Attack Damage Leeched as Life", statOrder = { 1117, 1532 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndLeech", weightKey = { "sword_crusader", "axe_crusader", "2h_sword_crusader", "2h_axe_crusader", "default", }, weightVal = { 50, 50, 50, 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "resource", "influence_mod", "life", "damage", "physical", "attack" }, }, - ["LocalIncreasedPhysicalDamagePercentAndAttackSpeedInfluence1"] = { type = "Prefix", affix = "Warlord's", "(25-34)% increased Physical Damage", "(3-4)% increased Attack Speed", statOrder = { 1117, 1297 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndAttackSpeed", weightKey = { "sword_adjudicator", "axe_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, }, - ["LocalIncreasedPhysicalDamagePercentAndAttackSpeedInfluence2"] = { type = "Prefix", affix = "Warlord's", "(35-44)% increased Physical Damage", "(3-4)% increased Attack Speed", statOrder = { 1117, 1297 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndAttackSpeed", weightKey = { "sword_adjudicator", "axe_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "default", }, weightVal = { 250, 250, 250, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, }, - ["LocalIncreasedPhysicalDamagePercentAndAttackSpeedInfluence3"] = { type = "Prefix", affix = "Warlord's", "(45-54)% increased Physical Damage", "(3-4)% increased Attack Speed", statOrder = { 1117, 1297 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndAttackSpeed", weightKey = { "sword_adjudicator", "axe_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "default", }, weightVal = { 150, 150, 150, 150, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, }, - ["LocalIncreasedPhysicalDamagePercentAndAttackSpeedInfluence4"] = { type = "Prefix", affix = "Warlord's", "(55-64)% increased Physical Damage", "(3-4)% increased Attack Speed", statOrder = { 1117, 1297 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndAttackSpeed", weightKey = { "sword_adjudicator", "axe_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "default", }, weightVal = { 100, 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, }, - ["LocalIncreasedPhysicalDamagePercentAndAttackSpeedInfluence5"] = { type = "Prefix", affix = "Warlord's", "(65-69)% increased Physical Damage", "(3-4)% increased Attack Speed", statOrder = { 1117, 1297 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndAttackSpeed", weightKey = { "sword_adjudicator", "axe_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "default", }, weightVal = { 50, 50, 50, 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, }, - ["LocalIncreasedPhysicalDamagePercentAndCritChanceInfluence1_"] = { type = "Prefix", affix = "Crusader's", "(25-34)% increased Physical Damage", "(8-10)% increased Critical Strike Chance", statOrder = { 1117, 1348 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndCritChance", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, }, - ["LocalIncreasedPhysicalDamagePercentAndCritChanceInfluence2"] = { type = "Prefix", affix = "Crusader's", "(35-44)% increased Physical Damage", "(8-10)% increased Critical Strike Chance", statOrder = { 1117, 1348 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndCritChance", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "default", }, weightVal = { 250, 250, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, }, - ["LocalIncreasedPhysicalDamagePercentAndCritChanceInfluence3_"] = { type = "Prefix", affix = "Crusader's", "(45-54)% increased Physical Damage", "(8-10)% increased Critical Strike Chance", statOrder = { 1117, 1348 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndCritChance", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "default", }, weightVal = { 150, 150, 150, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, }, - ["LocalIncreasedPhysicalDamagePercentAndCritChanceInfluence4"] = { type = "Prefix", affix = "Crusader's", "(55-64)% increased Physical Damage", "(8-10)% increased Critical Strike Chance", statOrder = { 1117, 1348 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndCritChance", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "default", }, weightVal = { 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, }, - ["LocalIncreasedPhysicalDamagePercentAndCritChanceInfluence5"] = { type = "Prefix", affix = "Crusader's", "(65-69)% increased Physical Damage", "(8-10)% increased Critical Strike Chance", statOrder = { 1117, 1348 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndCritChance", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "default", }, weightVal = { 50, 50, 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, }, - ["LocalIncreasedPhysicalDamagePercentAndCritMultiInfluence1"] = { type = "Prefix", affix = "Warlord's", "(25-34)% increased Physical Damage", "+(10-15)% to Global Critical Strike Multiplier", statOrder = { 1117, 1372 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndCritMulti", weightKey = { "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, }, - ["LocalIncreasedPhysicalDamagePercentAndCritMultiInfluence2"] = { type = "Prefix", affix = "Warlord's", "(35-44)% increased Physical Damage", "+(10-15)% to Global Critical Strike Multiplier", statOrder = { 1117, 1372 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndCritMulti", weightKey = { "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 250, 250, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, }, - ["LocalIncreasedPhysicalDamagePercentAndCritMultiInfluence3_"] = { type = "Prefix", affix = "Warlord's", "(45-54)% increased Physical Damage", "+(10-15)% to Global Critical Strike Multiplier", statOrder = { 1117, 1372 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndCritMulti", weightKey = { "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 150, 150, 150, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, }, - ["LocalIncreasedPhysicalDamagePercentAndCritMultiInfluence4"] = { type = "Prefix", affix = "Warlord's", "(55-64)% increased Physical Damage", "+(10-15)% to Global Critical Strike Multiplier", statOrder = { 1117, 1372 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndCritMulti", weightKey = { "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, }, - ["LocalIncreasedPhysicalDamagePercentAndCritMultiInfluence5"] = { type = "Prefix", affix = "Warlord's", "(65-69)% increased Physical Damage", "+(10-15)% to Global Critical Strike Multiplier", statOrder = { 1117, 1372 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndCritMulti", weightKey = { "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 50, 50, 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, }, - ["LocalIncreasedPhysicalDamagePercentAndStunInfluence1__"] = { type = "Prefix", affix = "Crusader's", "(25-34)% increased Physical Damage", "(6-8)% reduced Enemy Stun Threshold", statOrder = { 1117, 1400 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndStun", weightKey = { "mace_crusader", "sceptre_crusader", "staff_crusader", "warstaff_crusader", "2h_mace_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, }, - ["LocalIncreasedPhysicalDamagePercentAndStunInfluence2"] = { type = "Prefix", affix = "Crusader's", "(35-44)% increased Physical Damage", "(6-8)% reduced Enemy Stun Threshold", statOrder = { 1117, 1400 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndStun", weightKey = { "mace_crusader", "sceptre_crusader", "staff_crusader", "warstaff_crusader", "2h_mace_crusader", "default", }, weightVal = { 250, 250, 250, 250, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, }, - ["LocalIncreasedPhysicalDamagePercentAndStunInfluence3"] = { type = "Prefix", affix = "Crusader's", "(45-54)% increased Physical Damage", "(6-8)% reduced Enemy Stun Threshold", statOrder = { 1117, 1400 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndStun", weightKey = { "mace_crusader", "sceptre_crusader", "staff_crusader", "warstaff_crusader", "2h_mace_crusader", "default", }, weightVal = { 150, 150, 150, 150, 150, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, }, - ["LocalIncreasedPhysicalDamagePercentAndStunInfluence4"] = { type = "Prefix", affix = "Crusader's", "(55-64)% increased Physical Damage", "(6-8)% reduced Enemy Stun Threshold", statOrder = { 1117, 1400 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndStun", weightKey = { "mace_crusader", "sceptre_crusader", "staff_crusader", "warstaff_crusader", "2h_mace_crusader", "default", }, weightVal = { 100, 100, 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, }, - ["LocalIncreasedPhysicalDamagePercentAndStunInfluence5"] = { type = "Prefix", affix = "Crusader's", "(65-69)% increased Physical Damage", "(6-8)% reduced Enemy Stun Threshold", statOrder = { 1117, 1400 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndStun", weightKey = { "mace_crusader", "sceptre_crusader", "staff_crusader", "warstaff_crusader", "2h_mace_crusader", "default", }, weightVal = { 50, 50, 50, 50, 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, }, - ["LocalIncreasedPhysicalDamagePercentAndAreaInfluence1_"] = { type = "Prefix", affix = "Warlord's", "(25-34)% increased Physical Damage", "(10-15)% increased Area of Effect", statOrder = { 1117, 1761 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndArea", weightKey = { "mace_adjudicator", "sceptre_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, }, - ["LocalIncreasedPhysicalDamagePercentAndAreaInfluence2_"] = { type = "Prefix", affix = "Warlord's", "(35-44)% increased Physical Damage", "(10-15)% increased Area of Effect", statOrder = { 1117, 1761 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndArea", weightKey = { "mace_adjudicator", "sceptre_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 250, 250, 250, 250, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, }, - ["LocalIncreasedPhysicalDamagePercentAndAreaInfluence3_"] = { type = "Prefix", affix = "Warlord's", "(45-54)% increased Physical Damage", "(10-15)% increased Area of Effect", statOrder = { 1117, 1761 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndArea", weightKey = { "mace_adjudicator", "sceptre_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 150, 150, 150, 150, 150, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, }, - ["LocalIncreasedPhysicalDamagePercentAndAreaInfluence4"] = { type = "Prefix", affix = "Warlord's", "(55-64)% increased Physical Damage", "(10-15)% increased Area of Effect", statOrder = { 1117, 1761 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndArea", weightKey = { "mace_adjudicator", "sceptre_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 100, 100, 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, }, - ["LocalIncreasedPhysicalDamagePercentAndAreaInfluence5"] = { type = "Prefix", affix = "Warlord's", "(65-69)% increased Physical Damage", "(10-15)% increased Area of Effect", statOrder = { 1117, 1761 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndArea", weightKey = { "mace_adjudicator", "sceptre_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 50, 50, 50, 50, 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, }, - ["LocalIncreasedPhysicalDamagePercentAndProjSpeedInfluence1"] = { type = "Prefix", affix = "Crusader's", "(25-34)% increased Physical Damage", "(20-25)% increased Projectile Speed", statOrder = { 1117, 1677 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndProjSpeed", weightKey = { "wand_crusader", "bow_crusader", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, }, - ["LocalIncreasedPhysicalDamagePercentAndProjSpeedInfluence2_"] = { type = "Prefix", affix = "Crusader's", "(35-44)% increased Physical Damage", "(20-25)% increased Projectile Speed", statOrder = { 1117, 1677 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndProjSpeed", weightKey = { "wand_crusader", "bow_crusader", "default", }, weightVal = { 250, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, }, - ["LocalIncreasedPhysicalDamagePercentAndProjSpeedInfluence3_"] = { type = "Prefix", affix = "Crusader's", "(45-54)% increased Physical Damage", "(20-25)% increased Projectile Speed", statOrder = { 1117, 1677 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndProjSpeed", weightKey = { "wand_crusader", "bow_crusader", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, }, - ["LocalIncreasedPhysicalDamagePercentAndProjSpeedInfluence4"] = { type = "Prefix", affix = "Crusader's", "(55-64)% increased Physical Damage", "(20-25)% increased Projectile Speed", statOrder = { 1117, 1677 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndProjSpeed", weightKey = { "wand_crusader", "bow_crusader", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, }, - ["LocalIncreasedPhysicalDamagePercentAndProjSpeedInfluence5"] = { type = "Prefix", affix = "Crusader's", "(65-69)% increased Physical Damage", "(20-25)% increased Projectile Speed", statOrder = { 1117, 1677 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndProjSpeed", weightKey = { "wand_crusader", "bow_crusader", "default", }, weightVal = { 50, 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, }, - ["LocalIncreasedPhysicalDamagePercentAndPierceInfluence1_"] = { type = "Prefix", affix = "Hunter's", "(25-34)% increased Physical Damage", "Projectiles Pierce an additional Target", statOrder = { 1117, 1671 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndPierce", weightKey = { "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["LocalIncreasedPhysicalDamagePercentAndPierceInfluence2"] = { type = "Prefix", affix = "Hunter's", "(35-44)% increased Physical Damage", "Projectiles Pierce an additional Target", statOrder = { 1117, 1671 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndPierce", weightKey = { "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 250, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["LocalIncreasedPhysicalDamagePercentAndPierceInfluence3"] = { type = "Prefix", affix = "Hunter's", "(45-54)% increased Physical Damage", "Projectiles Pierce an additional Target", statOrder = { 1117, 1671 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndPierce", weightKey = { "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["LocalIncreasedPhysicalDamagePercentAndPierceInfluence4_"] = { type = "Prefix", affix = "Hunter's", "(55-64)% increased Physical Damage", "Projectiles Pierce an additional Target", statOrder = { 1117, 1671 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndPierce", weightKey = { "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["LocalIncreasedPhysicalDamagePercentAndPierceInfluence5_"] = { type = "Prefix", affix = "Hunter's", "(65-69)% increased Physical Damage", "Projectiles Pierce an additional Target", statOrder = { 1117, 1671 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndPierce", weightKey = { "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 50, 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["LocalAddedFireDamageAndPenetrationInfluence1_"] = { type = "Prefix", affix = "Warlord's", "Adds (8-10) to (15-18) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1246, 3625 }, level = 68, group = "LocalFireDamagePenetrationHybrid", weightKey = { "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "bow_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, }, - ["LocalAddedFireDamageAndPenetrationInfluence2"] = { type = "Prefix", affix = "Warlord's", "Adds (12-16) to (24-28) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1246, 3625 }, level = 71, group = "LocalFireDamagePenetrationHybrid", weightKey = { "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "bow_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, }, - ["LocalAddedFireDamageAndPenetrationInfluence3"] = { type = "Prefix", affix = "Warlord's", "Adds (17-22) to (33-39) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1246, 3625 }, level = 74, group = "LocalFireDamagePenetrationHybrid", weightKey = { "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "bow_adjudicator", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, }, - ["LocalAddedFireDamageAndPenetrationInfluence4"] = { type = "Prefix", affix = "Warlord's", "Adds (21-28) to (42-49) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1246, 3625 }, level = 77, group = "LocalFireDamagePenetrationHybrid", weightKey = { "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "bow_adjudicator", "default", }, weightVal = { 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, }, - ["LocalAddedFireDamageAndPenetrationInfluence5"] = { type = "Prefix", affix = "Warlord's", "Adds (26-35) to (53-61) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1246, 3625 }, level = 80, group = "LocalFireDamagePenetrationHybrid", weightKey = { "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "bow_adjudicator", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, }, - ["LocalAddedFireDamageAndPenetrationTwoHandInfluence1"] = { type = "Prefix", affix = "Warlord's", "Adds (15-19) to (28-34) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1246, 3625 }, level = 68, group = "LocalFireDamagePenetrationHybrid", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, }, - ["LocalAddedFireDamageAndPenetrationTwoHandInfluence2"] = { type = "Prefix", affix = "Warlord's", "Adds (22-30) to (44-52) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1246, 3625 }, level = 71, group = "LocalFireDamagePenetrationHybrid", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, }, - ["LocalAddedFireDamageAndPenetrationTwoHandInfluence3"] = { type = "Prefix", affix = "Warlord's", "Adds (31-41) to (61-72) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1246, 3625 }, level = 74, group = "LocalFireDamagePenetrationHybrid", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, }, - ["LocalAddedFireDamageAndPenetrationTwoHandInfluence4"] = { type = "Prefix", affix = "Warlord's", "Adds (39-52) to (78-90) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1246, 3625 }, level = 77, group = "LocalFireDamagePenetrationHybrid", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 300, 300, 300, 300, 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, }, - ["LocalAddedFireDamageAndPenetrationTwoHandInfluence5"] = { type = "Prefix", affix = "Warlord's", "Adds (49-65) to (99-114) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1246, 3625 }, level = 80, group = "LocalFireDamagePenetrationHybrid", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, }, - ["LocalAddedColdDamageAndPenetrationInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Adds (7-9) to (14-16) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1255, 3626 }, level = 68, group = "LocalColdDamagePenetrationHybrid", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "sceptre_eyrie", "wand_eyrie", "bow_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, }, - ["LocalAddedColdDamageAndPenetrationInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Adds (11-14) to (22-25) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1255, 3626 }, level = 71, group = "LocalColdDamagePenetrationHybrid", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "sceptre_eyrie", "wand_eyrie", "bow_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, }, - ["LocalAddedColdDamageAndPenetrationInfluence3"] = { type = "Prefix", affix = "Redeemer's", "Adds (15-20) to (30-35) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1255, 3626 }, level = 74, group = "LocalColdDamagePenetrationHybrid", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "sceptre_eyrie", "wand_eyrie", "bow_eyrie", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, }, - ["LocalAddedColdDamageAndPenetrationInfluence4"] = { type = "Prefix", affix = "Redeemer's", "Adds (19-25) to (38-44) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1255, 3626 }, level = 77, group = "LocalColdDamagePenetrationHybrid", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "sceptre_eyrie", "wand_eyrie", "bow_eyrie", "default", }, weightVal = { 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, }, - ["LocalAddedColdDamageAndPenetrationInfluence5"] = { type = "Prefix", affix = "Redeemer's", "Adds (23-32) to (48-55) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1255, 3626 }, level = 80, group = "LocalColdDamagePenetrationHybrid", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "sceptre_eyrie", "wand_eyrie", "bow_eyrie", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, }, - ["LocalAddedColdDamageAndPenetrationTwoHandInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Adds (13-16) to (26-30) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1255, 3626 }, level = 68, group = "LocalColdDamagePenetrationHybrid", weightKey = { "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, }, - ["LocalAddedColdDamageAndPenetrationTwoHandInfluence2_"] = { type = "Prefix", affix = "Redeemer's", "Adds (21-26) to (41-46) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1255, 3626 }, level = 71, group = "LocalColdDamagePenetrationHybrid", weightKey = { "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, }, - ["LocalAddedColdDamageAndPenetrationTwoHandInfluence3_"] = { type = "Prefix", affix = "Redeemer's", "Adds (28-37) to (56-65) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1255, 3626 }, level = 74, group = "LocalColdDamagePenetrationHybrid", weightKey = { "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, }, - ["LocalAddedColdDamageAndPenetrationTwoHandInfluence4"] = { type = "Prefix", affix = "Redeemer's", "Adds (35-46) to (71-81) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1255, 3626 }, level = 77, group = "LocalColdDamagePenetrationHybrid", weightKey = { "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 300, 300, 300, 300, 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, }, - ["LocalAddedColdDamageAndPenetrationTwoHandInfluence5_"] = { type = "Prefix", affix = "Redeemer's", "Adds (43-59) to (89-102) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1255, 3626 }, level = 80, group = "LocalColdDamagePenetrationHybrid", weightKey = { "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, }, - ["LocalAddedLightningDamageAndPenetrationInfluence1"] = { type = "Prefix", affix = "Crusader's", "Adds 2 to (25-29) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1266, 3627 }, level = 68, group = "LocalLightningDamagePenetrationHybrid", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "sceptre_crusader", "wand_crusader", "bow_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, }, - ["LocalAddedLightningDamageAndPenetrationInfluence2_"] = { type = "Prefix", affix = "Crusader's", "Adds (1-4) to (40-45) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1266, 3627 }, level = 71, group = "LocalLightningDamagePenetrationHybrid", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "sceptre_crusader", "wand_crusader", "bow_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, }, - ["LocalAddedLightningDamageAndPenetrationInfluence3"] = { type = "Prefix", affix = "Crusader's", "Adds (2-5) to (55-63) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1266, 3627 }, level = 74, group = "LocalLightningDamagePenetrationHybrid", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "sceptre_crusader", "wand_crusader", "bow_crusader", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, }, - ["LocalAddedLightningDamageAndPenetrationInfluence4"] = { type = "Prefix", affix = "Crusader's", "Adds (2-6) to (70-79) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1266, 3627 }, level = 77, group = "LocalLightningDamagePenetrationHybrid", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "sceptre_crusader", "wand_crusader", "bow_crusader", "default", }, weightVal = { 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, }, - ["LocalAddedLightningDamageAndPenetrationInfluence5"] = { type = "Prefix", affix = "Crusader's", "Adds (3-8) to (89-99) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1266, 3627 }, level = 80, group = "LocalLightningDamagePenetrationHybrid", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "sceptre_crusader", "wand_crusader", "bow_crusader", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, }, - ["LocalAddedLightningDamageAndPenetrationTwoHandInfluence1_"] = { type = "Prefix", affix = "Crusader's", "Adds 3 to (46-53) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1266, 3627 }, level = 68, group = "LocalLightningDamagePenetrationHybrid", weightKey = { "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, }, - ["LocalAddedLightningDamageAndPenetrationTwoHandInfluence2"] = { type = "Prefix", affix = "Crusader's", "Adds (2-7) to (74-84) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1266, 3627 }, level = 71, group = "LocalLightningDamagePenetrationHybrid", weightKey = { "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, }, - ["LocalAddedLightningDamageAndPenetrationTwoHandInfluence3"] = { type = "Prefix", affix = "Crusader's", "Adds (3-9) to (102-117) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1266, 3627 }, level = 74, group = "LocalLightningDamagePenetrationHybrid", weightKey = { "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, }, - ["LocalAddedLightningDamageAndPenetrationTwoHandInfluence4"] = { type = "Prefix", affix = "Crusader's", "Adds (3-12) to (130-146) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1266, 3627 }, level = 77, group = "LocalLightningDamagePenetrationHybrid", weightKey = { "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 300, 300, 300, 300, 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, }, - ["LocalAddedLightningDamageAndPenetrationTwoHandInfluence5"] = { type = "Prefix", affix = "Crusader's", "Adds (6-15) to (165-183) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1266, 3627 }, level = 80, group = "LocalLightningDamagePenetrationHybrid", weightKey = { "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, }, - ["LocalAddedChaosDamageAndPenetrationInfluence1"] = { type = "Prefix", affix = "Hunter's", "Adds (5-7) to (11-13) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrder = { 1274, 7481 }, level = 68, group = "LocalChaosDamagePenetrationHybrid", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["LocalAddedChaosDamageAndPenetrationInfluence2"] = { type = "Prefix", affix = "Hunter's", "Adds (9-11) to (17-20) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrder = { 1274, 7481 }, level = 71, group = "LocalChaosDamagePenetrationHybrid", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["LocalAddedChaosDamageAndPenetrationInfluence3"] = { type = "Prefix", affix = "Hunter's", "Adds (12-16) to (24-28) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrder = { 1274, 7481 }, level = 74, group = "LocalChaosDamagePenetrationHybrid", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["LocalAddedChaosDamageAndPenetrationInfluence4"] = { type = "Prefix", affix = "Hunter's", "Adds (15-20) to (30-35) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrder = { 1274, 7481 }, level = 77, group = "LocalChaosDamagePenetrationHybrid", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["LocalAddedChaosDamageAndPenetrationInfluence5"] = { type = "Prefix", affix = "Hunter's", "Adds (18-25) to (38-44) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrder = { 1274, 7481 }, level = 80, group = "LocalChaosDamagePenetrationHybrid", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["LocalAddedChaosDamageAndPenetrationTwoHandInfluence1__"] = { type = "Prefix", affix = "Hunter's", "Adds (9-13) to (21-24) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrder = { 1274, 7481 }, level = 68, group = "LocalChaosDamagePenetrationHybrid", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["LocalAddedChaosDamageAndPenetrationTwoHandInfluence2"] = { type = "Prefix", affix = "Hunter's", "Adds (16-21) to (32-37) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrder = { 1274, 7481 }, level = 71, group = "LocalChaosDamagePenetrationHybrid", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["LocalAddedChaosDamageAndPenetrationTwoHandInfluence3"] = { type = "Prefix", affix = "Hunter's", "Adds (22-29) to (44-52) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrder = { 1274, 7481 }, level = 74, group = "LocalChaosDamagePenetrationHybrid", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["LocalAddedChaosDamageAndPenetrationTwoHandInfluence4"] = { type = "Prefix", affix = "Hunter's", "Adds (28-37) to (57-65) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrder = { 1274, 7481 }, level = 77, group = "LocalChaosDamagePenetrationHybrid", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "default", }, weightVal = { 300, 300, 300, 300, 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["LocalAddedChaosDamageAndPenetrationTwoHandInfluence5"] = { type = "Prefix", affix = "Hunter's", "Adds (35-48) to (72-81) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrder = { 1274, 7481 }, level = 80, group = "LocalChaosDamagePenetrationHybrid", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "default", }, weightVal = { 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["SpellAddedFireDamagePenetrationInfluence1_"] = { type = "Prefix", affix = "Warlord's", "Adds (6-8) to (12-14) Fire Damage to Spells", "Damage Penetrates 4% Fire Resistance", statOrder = { 1288, 2853 }, level = 68, group = "SpellAddedFireDamagePenetrationHybrid", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamagePenetrationInfluence2"] = { type = "Prefix", affix = "Warlord's", "Adds (10-13) to (19-22) Fire Damage to Spells", "Damage Penetrates 4% Fire Resistance", statOrder = { 1288, 2853 }, level = 71, group = "SpellAddedFireDamagePenetrationHybrid", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamagePenetrationInfluence3"] = { type = "Prefix", affix = "Warlord's", "Adds (13-18) to (27-31) Fire Damage to Spells", "Damage Penetrates 4% Fire Resistance", statOrder = { 1288, 2853 }, level = 74, group = "SpellAddedFireDamagePenetrationHybrid", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamagePenetrationInfluence4"] = { type = "Prefix", affix = "Warlord's", "Adds (17-22) to (33-39) Fire Damage to Spells", "Damage Penetrates 4% Fire Resistance", statOrder = { 1288, 2853 }, level = 77, group = "SpellAddedFireDamagePenetrationHybrid", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamagePenetrationInfluence5"] = { type = "Prefix", affix = "Warlord's", "Adds (21-28) to (42-49) Fire Damage to Spells", "Damage Penetrates 4% Fire Resistance", statOrder = { 1288, 2853 }, level = 80, group = "SpellAddedFireDamagePenetrationHybrid", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamagePenetrationTwoHandInfluence1_"] = { type = "Prefix", affix = "Warlord's", "Adds (8-11) to (17-19) Fire Damage to Spells", "Damage Penetrates (5-7)% Fire Resistance", statOrder = { 1288, 2853 }, level = 68, group = "SpellAddedFireDamagePenetrationHybrid", weightKey = { "staff_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamagePenetrationTwoHandInfluence2"] = { type = "Prefix", affix = "Warlord's", "Adds (13-17) to (26-30) Fire Damage to Spells", "Damage Penetrates (5-7)% Fire Resistance", statOrder = { 1288, 2853 }, level = 71, group = "SpellAddedFireDamagePenetrationHybrid", weightKey = { "staff_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamagePenetrationTwoHandInfluence3_"] = { type = "Prefix", affix = "Warlord's", "Adds (18-24) to (36-42) Fire Damage to Spells", "Damage Penetrates (5-7)% Fire Resistance", statOrder = { 1288, 2853 }, level = 74, group = "SpellAddedFireDamagePenetrationHybrid", weightKey = { "staff_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamagePenetrationTwoHandInfluence4"] = { type = "Prefix", affix = "Warlord's", "Adds (23-30) to (45-53) Fire Damage to Spells", "Damage Penetrates (5-7)% Fire Resistance", statOrder = { 1288, 2853 }, level = 77, group = "SpellAddedFireDamagePenetrationHybrid", weightKey = { "staff_adjudicator", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamagePenetrationTwoHandInfluence5_"] = { type = "Prefix", affix = "Warlord's", "Adds (28-38) to (57-66) Fire Damage to Spells", "Damage Penetrates (5-7)% Fire Resistance", statOrder = { 1288, 2853 }, level = 80, group = "SpellAddedFireDamagePenetrationHybrid", weightKey = { "staff_adjudicator", "default", }, weightVal = { 300, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedColdDamagePenetrationInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Adds (5-7) to (10-12) Cold Damage to Spells", "Damage Penetrates 4% Cold Resistance", statOrder = { 1289, 2855 }, level = 68, group = "SpellAddedColdDamagePenetrationHybrid", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamagePenetrationInfluence2_"] = { type = "Prefix", affix = "Redeemer's", "Adds (8-10) to (16-18) Cold Damage to Spells", "Damage Penetrates 4% Cold Resistance", statOrder = { 1289, 2855 }, level = 71, group = "SpellAddedColdDamagePenetrationHybrid", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamagePenetrationInfluence3"] = { type = "Prefix", affix = "Redeemer's", "Adds (11-15) to (22-25) Cold Damage to Spells", "Damage Penetrates 4% Cold Resistance", statOrder = { 1289, 2855 }, level = 74, group = "SpellAddedColdDamagePenetrationHybrid", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamagePenetrationInfluence4"] = { type = "Prefix", affix = "Redeemer's", "Adds (14-18) to (27-32) Cold Damage to Spells", "Damage Penetrates 4% Cold Resistance", statOrder = { 1289, 2855 }, level = 77, group = "SpellAddedColdDamagePenetrationHybrid", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamagePenetrationInfluence5"] = { type = "Prefix", affix = "Redeemer's", "Adds (17-23) to (34-40) Cold Damage to Spells", "Damage Penetrates 4% Cold Resistance", statOrder = { 1289, 2855 }, level = 80, group = "SpellAddedColdDamagePenetrationHybrid", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamagePenetrationTwoHandInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Adds (8-10) to (15-18) Cold Damage to Spells", "Damage Penetrates (5-7)% Cold Resistance", statOrder = { 1289, 2855 }, level = 68, group = "SpellAddedColdDamagePenetrationHybrid", weightKey = { "staff_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamagePenetrationTwoHandInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Adds (12-16) to (23-27) Cold Damage to Spells", "Damage Penetrates (5-7)% Cold Resistance", statOrder = { 1289, 2855 }, level = 71, group = "SpellAddedColdDamagePenetrationHybrid", weightKey = { "staff_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamagePenetrationTwoHandInfluence3"] = { type = "Prefix", affix = "Redeemer's", "Adds (16-22) to (33-38) Cold Damage to Spells", "Damage Penetrates (5-7)% Cold Resistance", statOrder = { 1289, 2855 }, level = 74, group = "SpellAddedColdDamagePenetrationHybrid", weightKey = { "staff_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamagePenetrationTwoHandInfluence4_"] = { type = "Prefix", affix = "Redeemer's", "Adds (21-27) to (41-48) Cold Damage to Spells", "Damage Penetrates (5-7)% Cold Resistance", statOrder = { 1289, 2855 }, level = 77, group = "SpellAddedColdDamagePenetrationHybrid", weightKey = { "staff_eyrie", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamagePenetrationTwoHandInfluence5"] = { type = "Prefix", affix = "Redeemer's", "Adds (26-34) to (52-60) Cold Damage to Spells", "Damage Penetrates (5-7)% Cold Resistance", statOrder = { 1289, 2855 }, level = 80, group = "SpellAddedColdDamagePenetrationHybrid", weightKey = { "staff_eyrie", "default", }, weightVal = { 300, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedLightningDamagePenetrationInfluence1___"] = { type = "Prefix", affix = "Crusader's", "Adds (1-2) to (21-22) Lightning Damage to Spells", "Damage Penetrates 4% Lightning Resistance", statOrder = { 1290, 2856 }, level = 68, group = "SpellAddedLightningDamagePenetrationHybrid", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamagePenetrationInfluence2_"] = { type = "Prefix", affix = "Crusader's", "Adds (1-3) to (33-35) Lightning Damage to Spells", "Damage Penetrates 4% Lightning Resistance", statOrder = { 1290, 2856 }, level = 71, group = "SpellAddedLightningDamagePenetrationHybrid", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamagePenetrationInfluence3"] = { type = "Prefix", affix = "Crusader's", "Adds (1-4) to (46-49) Lightning Damage to Spells", "Damage Penetrates 4% Lightning Resistance", statOrder = { 1290, 2856 }, level = 74, group = "SpellAddedLightningDamagePenetrationHybrid", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamagePenetrationInfluence4_"] = { type = "Prefix", affix = "Crusader's", "Adds (2-5) to (58-61) Lightning Damage to Spells", "Damage Penetrates 4% Lightning Resistance", statOrder = { 1290, 2856 }, level = 77, group = "SpellAddedLightningDamagePenetrationHybrid", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamagePenetrationInfluence5"] = { type = "Prefix", affix = "Crusader's", "Adds (2-6) to (73-77) Lightning Damage to Spells", "Damage Penetrates 4% Lightning Resistance", statOrder = { 1290, 2856 }, level = 80, group = "SpellAddedLightningDamagePenetrationHybrid", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamagePenetrationTwoHandInfluence1"] = { type = "Prefix", affix = "Crusader's", "Adds (1-3) to (32-34) Lightning Damage to Spells", "Damage Penetrates (5-7)% Lightning Resistance", statOrder = { 1290, 2856 }, level = 68, group = "SpellAddedLightningDamagePenetrationHybrid", weightKey = { "staff_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamagePenetrationTwoHandInfluence2"] = { type = "Prefix", affix = "Crusader's", "Adds (1-4) to (49-52) Lightning Damage to Spells", "Damage Penetrates (5-7)% Lightning Resistance", statOrder = { 1290, 2856 }, level = 71, group = "SpellAddedLightningDamagePenetrationHybrid", weightKey = { "staff_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamagePenetrationTwoHandInfluence3"] = { type = "Prefix", affix = "Crusader's", "Adds (2-6) to (69-73) Lightning Damage to Spells", "Damage Penetrates (5-7)% Lightning Resistance", statOrder = { 1290, 2856 }, level = 74, group = "SpellAddedLightningDamagePenetrationHybrid", weightKey = { "staff_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamagePenetrationTwoHandInfluence4__"] = { type = "Prefix", affix = "Crusader's", "Adds (2-7) to (87-92) Lightning Damage to Spells", "Damage Penetrates (5-7)% Lightning Resistance", statOrder = { 1290, 2856 }, level = 77, group = "SpellAddedLightningDamagePenetrationHybrid", weightKey = { "staff_crusader", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamagePenetrationTwoHandInfluence5_"] = { type = "Prefix", affix = "Crusader's", "Adds (3-9) to (109-115) Lightning Damage to Spells", "Damage Penetrates (5-7)% Lightning Resistance", statOrder = { 1290, 2856 }, level = 80, group = "SpellAddedLightningDamagePenetrationHybrid", weightKey = { "staff_crusader", "default", }, weightVal = { 300, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, }, - ["LocalWeaponFirePenetrationInfluence1"] = { type = "Prefix", affix = "Warlord's", "Attacks with this Weapon Penetrate (9-10)% Fire Resistance", statOrder = { 3625 }, level = 68, group = "LocalFirePenetration", weightKey = { "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "bow_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, }, - ["LocalWeaponFirePenetrationInfluence2"] = { type = "Prefix", affix = "Warlord's", "Attacks with this Weapon Penetrate (11-12)% Fire Resistance", statOrder = { 3625 }, level = 73, group = "LocalFirePenetration", weightKey = { "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "bow_adjudicator", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, }, - ["LocalWeaponFirePenetrationInfluence3"] = { type = "Prefix", affix = "Warlord's", "Attacks with this Weapon Penetrate (13-15)% Fire Resistance", statOrder = { 3625 }, level = 78, group = "LocalFirePenetration", weightKey = { "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "bow_adjudicator", "default", }, weightVal = { 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, }, - ["LocalWeaponColdPenetrationInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Attacks with this Weapon Penetrate (9-10)% Cold Resistance", statOrder = { 3626 }, level = 68, group = "LocalColdPenetration", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "sceptre_eyrie", "wand_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "bow_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, }, - ["LocalWeaponColdPenetrationInfluence2_"] = { type = "Prefix", affix = "Redeemer's", "Attacks with this Weapon Penetrate (11-12)% Cold Resistance", statOrder = { 3626 }, level = 73, group = "LocalColdPenetration", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "sceptre_eyrie", "wand_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "bow_eyrie", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, }, - ["LocalWeaponColdPenetrationInfluence3"] = { type = "Prefix", affix = "Redeemer's", "Attacks with this Weapon Penetrate (13-15)% Cold Resistance", statOrder = { 3626 }, level = 78, group = "LocalColdPenetration", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "sceptre_eyrie", "wand_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "bow_eyrie", "default", }, weightVal = { 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, }, - ["LocalWeaponLightningPenetrationInfluence1"] = { type = "Prefix", affix = "Crusader's", "Attacks with this Weapon Penetrate (9-10)% Lightning Resistance", statOrder = { 3627 }, level = 68, group = "LocalLightningPenetration", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "sceptre_crusader", "wand_crusader", "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "staff_crusader", "warstaff_crusader", "bow_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, }, - ["LocalWeaponLightningPenetrationInfluence2_"] = { type = "Prefix", affix = "Crusader's", "Attacks with this Weapon Penetrate (11-12)% Lightning Resistance", statOrder = { 3627 }, level = 73, group = "LocalLightningPenetration", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "sceptre_crusader", "wand_crusader", "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "staff_crusader", "warstaff_crusader", "bow_crusader", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, }, - ["LocalWeaponLightningPenetrationInfluence3"] = { type = "Prefix", affix = "Crusader's", "Attacks with this Weapon Penetrate (13-15)% Lightning Resistance", statOrder = { 3627 }, level = 78, group = "LocalLightningPenetration", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "sceptre_crusader", "wand_crusader", "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "staff_crusader", "warstaff_crusader", "bow_crusader", "default", }, weightVal = { 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, }, - ["LocalWeaponChaosPenetrationInfluence1"] = { type = "Prefix", affix = "Hunter's", "Attacks with this Weapon Penetrate (6-7)% Chaos Resistance", statOrder = { 7481 }, level = 68, group = "LocalChaosPenetration", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["LocalWeaponChaosPenetrationInfluence2"] = { type = "Prefix", affix = "Hunter's", "Attacks with this Weapon Penetrate (8-9)% Chaos Resistance", statOrder = { 7481 }, level = 73, group = "LocalChaosPenetration", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["LocalWeaponChaosPenetrationInfluence3"] = { type = "Prefix", affix = "Hunter's", "Attacks with this Weapon Penetrate (10-12)% Chaos Resistance", statOrder = { 7481 }, level = 78, group = "LocalChaosPenetration", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["LocalWeaponElementalPenetrationInfluence1_"] = { type = "Prefix", affix = "Hunter's", "Attacks with this Weapon Penetrate (6-7)% Elemental Resistances", statOrder = { 3624 }, level = 68, group = "LocalElementalPenetration", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["LocalWeaponElementalPenetrationInfluence2"] = { type = "Prefix", affix = "Hunter's", "Attacks with this Weapon Penetrate (8-9)% Elemental Resistances", statOrder = { 3624 }, level = 73, group = "LocalElementalPenetration", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["LocalWeaponElementalPenetrationInfluence3_"] = { type = "Prefix", affix = "Hunter's", "Attacks with this Weapon Penetrate (10-12)% Elemental Resistances", statOrder = { 3624 }, level = 78, group = "LocalElementalPenetration", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["FireResistancePenetrationInfluence1"] = { type = "Prefix", affix = "Warlord's", "Damage Penetrates 6% Fire Resistance", statOrder = { 2853 }, level = 68, group = "FireResistancePenetration", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, - ["FireResistancePenetrationInfluence2"] = { type = "Prefix", affix = "Warlord's", "Damage Penetrates 7% Fire Resistance", statOrder = { 2853 }, level = 73, group = "FireResistancePenetration", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, - ["FireResistancePenetrationInfluence3_"] = { type = "Prefix", affix = "Warlord's", "Damage Penetrates 8% Fire Resistance", statOrder = { 2853 }, level = 78, group = "FireResistancePenetration", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, - ["FireResistancePenetrationTwoHandInfluence1"] = { type = "Prefix", affix = "Warlord's", "Damage Penetrates (10-11)% Fire Resistance", statOrder = { 2853 }, level = 68, group = "FireResistancePenetration", weightKey = { "staff_adjudicator", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, - ["FireResistancePenetrationTwoHandInfluence2"] = { type = "Prefix", affix = "Warlord's", "Damage Penetrates (12-13)% Fire Resistance", statOrder = { 2853 }, level = 73, group = "FireResistancePenetration", weightKey = { "staff_adjudicator", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, - ["FireResistancePenetrationTwoHandInfluence3"] = { type = "Prefix", affix = "Warlord's", "Damage Penetrates (14-15)% Fire Resistance", statOrder = { 2853 }, level = 78, group = "FireResistancePenetration", weightKey = { "staff_adjudicator", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, - ["ColdResistancePenetrationInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Damage Penetrates 6% Cold Resistance", statOrder = { 2855 }, level = 68, group = "ColdResistancePenetration", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, }, - ["ColdResistancePenetrationInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Damage Penetrates 7% Cold Resistance", statOrder = { 2855 }, level = 73, group = "ColdResistancePenetration", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, }, - ["ColdResistancePenetrationInfluence3"] = { type = "Prefix", affix = "Redeemer's", "Damage Penetrates 8% Cold Resistance", statOrder = { 2855 }, level = 78, group = "ColdResistancePenetration", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, }, - ["ColdResistancePenetrationTwoHandInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Damage Penetrates (10-11)% Cold Resistance", statOrder = { 2855 }, level = 68, group = "ColdResistancePenetration", weightKey = { "staff_eyrie", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, }, - ["ColdResistancePenetrationTwoHandInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Damage Penetrates (12-13)% Cold Resistance", statOrder = { 2855 }, level = 73, group = "ColdResistancePenetration", weightKey = { "staff_eyrie", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, }, - ["ColdResistancePenetrationTwoHandInfluence3_"] = { type = "Prefix", affix = "Redeemer's", "Damage Penetrates (14-15)% Cold Resistance", statOrder = { 2855 }, level = 78, group = "ColdResistancePenetration", weightKey = { "staff_eyrie", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, }, - ["LightningResistancePenetrationInfluence1_"] = { type = "Prefix", affix = "Crusader's", "Damage Penetrates 6% Lightning Resistance", statOrder = { 2856 }, level = 68, group = "LightningResistancePenetration", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, }, - ["LightningResistancePenetrationInfluence2"] = { type = "Prefix", affix = "Crusader's", "Damage Penetrates 7% Lightning Resistance", statOrder = { 2856 }, level = 73, group = "LightningResistancePenetration", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, }, - ["LightningResistancePenetrationInfluence3"] = { type = "Prefix", affix = "Crusader's", "Damage Penetrates 8% Lightning Resistance", statOrder = { 2856 }, level = 78, group = "LightningResistancePenetration", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, }, - ["LightningResistancePenetrationTwoHandInfluence1_"] = { type = "Prefix", affix = "Crusader's", "Damage Penetrates (10-11)% Lightning Resistance", statOrder = { 2856 }, level = 68, group = "LightningResistancePenetration", weightKey = { "staff_crusader", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, }, - ["LightningResistancePenetrationTwoHandInfluence2_"] = { type = "Prefix", affix = "Crusader's", "Damage Penetrates (12-13)% Lightning Resistance", statOrder = { 2856 }, level = 73, group = "LightningResistancePenetration", weightKey = { "staff_crusader", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, }, - ["LightningResistancePenetrationTwoHandInfluence3__"] = { type = "Prefix", affix = "Crusader's", "Damage Penetrates (14-15)% Lightning Resistance", statOrder = { 2856 }, level = 78, group = "LightningResistancePenetration", weightKey = { "staff_crusader", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, }, - ["ElementalResistancePenetrationInfluence1"] = { type = "Prefix", affix = "Hunter's", "Damage Penetrates 4% Elemental Resistances", statOrder = { 2852 }, level = 68, group = "ElementalPenetration", weightKey = { "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["ElementalResistancePenetrationInfluence2_"] = { type = "Prefix", affix = "Hunter's", "Damage Penetrates 5% Elemental Resistances", statOrder = { 2852 }, level = 73, group = "ElementalPenetration", weightKey = { "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["ElementalResistancePenetrationInfluence3"] = { type = "Prefix", affix = "Hunter's", "Damage Penetrates 6% Elemental Resistances", statOrder = { 2852 }, level = 78, group = "ElementalPenetration", weightKey = { "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["ElementalResistancePenetrationTwoHandInfluence1"] = { type = "Prefix", affix = "Hunter's", "Damage Penetrates (7-8)% Elemental Resistances", statOrder = { 2852 }, level = 68, group = "ElementalPenetration", weightKey = { "staff_basilisk", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["ElementalResistancePenetrationTwoHandInfluence2"] = { type = "Prefix", affix = "Hunter's", "Damage Penetrates (9-10)% Elemental Resistances", statOrder = { 2852 }, level = 73, group = "ElementalPenetration", weightKey = { "staff_basilisk", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["ElementalResistancePenetrationTwoHandInfluence3"] = { type = "Prefix", affix = "Hunter's", "Damage Penetrates (11-12)% Elemental Resistances", statOrder = { 2852 }, level = 78, group = "ElementalPenetration", weightKey = { "staff_basilisk", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["PhysicalAddedAsExtraFireWeaponInfluence1"] = { type = "Prefix", affix = "Warlord's", "Gain (7-12)% of Physical Damage as Extra Fire Damage", statOrder = { 1811 }, level = 68, group = "PhysicalAddedAsFire", weightKey = { "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, }, - ["PhysicalAddedAsExtraFireWeaponInfluence2"] = { type = "Prefix", affix = "Warlord's", "Gain (13-17)% of Physical Damage as Extra Fire Damage", statOrder = { 1811 }, level = 73, group = "PhysicalAddedAsFire", weightKey = { "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, }, - ["PhysicalAddedAsExtraFireWeaponInfluence3_"] = { type = "Prefix", affix = "Warlord's", "Gain (18-20)% of Physical Damage as Extra Fire Damage", statOrder = { 1811 }, level = 78, group = "PhysicalAddedAsFire", weightKey = { "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, }, - ["PhysicalAddedAsExtraFireTwoHandWeaponInfluence1__"] = { type = "Prefix", affix = "Warlord's", "Gain (16-20)% of Physical Damage as Extra Fire Damage", statOrder = { 1811 }, level = 68, group = "PhysicalAddedAsFire", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, }, - ["PhysicalAddedAsExtraFireTwoHandWeaponInfluence2__"] = { type = "Prefix", affix = "Warlord's", "Gain (21-26)% of Physical Damage as Extra Fire Damage", statOrder = { 1811 }, level = 73, group = "PhysicalAddedAsFire", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, }, - ["PhysicalAddedAsExtraFireTwoHandWeaponInfluence3"] = { type = "Prefix", affix = "Warlord's", "Gain (27-30)% of Physical Damage as Extra Fire Damage", statOrder = { 1811 }, level = 78, group = "PhysicalAddedAsFire", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, }, - ["PhysicalAddedAsExtraColdWeaponInfluence1_"] = { type = "Prefix", affix = "Redeemer's", "Gain (7-12)% of Physical Damage as Extra Cold Damage", statOrder = { 1812 }, level = 68, group = "PhysicalAddedAsCold", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "sceptre_eyrie", "wand_eyrie", "bow_eyrie", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, }, - ["PhysicalAddedAsExtraColdWeaponInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Gain (13-17)% of Physical Damage as Extra Cold Damage", statOrder = { 1812 }, level = 73, group = "PhysicalAddedAsCold", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "sceptre_eyrie", "wand_eyrie", "bow_eyrie", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, }, - ["PhysicalAddedAsExtraColdWeaponInfluence3"] = { type = "Prefix", affix = "Redeemer's", "Gain (18-20)% of Physical Damage as Extra Cold Damage", statOrder = { 1812 }, level = 78, group = "PhysicalAddedAsCold", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "sceptre_eyrie", "wand_eyrie", "bow_eyrie", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, }, - ["PhysicalAddedAsExtraColdTwoHandWeaponInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Gain (16-20)% of Physical Damage as Extra Cold Damage", statOrder = { 1812 }, level = 68, group = "PhysicalAddedAsCold", weightKey = { "2h_sword_eyrie", "2h_axe_eyrie", "default", }, weightVal = { 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, }, - ["PhysicalAddedAsExtraColdTwoHandWeaponInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Gain (21-26)% of Physical Damage as Extra Cold Damage", statOrder = { 1812 }, level = 73, group = "PhysicalAddedAsCold", weightKey = { "2h_sword_eyrie", "2h_axe_eyrie", "default", }, weightVal = { 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, }, - ["PhysicalAddedAsExtraColdTwoHandWeaponInfluence3"] = { type = "Prefix", affix = "Redeemer's", "Gain (27-30)% of Physical Damage as Extra Cold Damage", statOrder = { 1812 }, level = 78, group = "PhysicalAddedAsCold", weightKey = { "2h_sword_eyrie", "2h_axe_eyrie", "default", }, weightVal = { 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, }, - ["PhysicalAddedAsExtraLightningWeaponInfluence1_"] = { type = "Prefix", affix = "Crusader's", "Gain (7-12)% of Physical Damage as Extra Lightning Damage", statOrder = { 1813 }, level = 68, group = "PhysicalAddedAsLightning", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "sceptre_crusader", "wand_crusader", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, }, - ["PhysicalAddedAsExtraLightningWeaponInfluence2"] = { type = "Prefix", affix = "Crusader's", "Gain (13-17)% of Physical Damage as Extra Lightning Damage", statOrder = { 1813 }, level = 73, group = "PhysicalAddedAsLightning", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "sceptre_crusader", "wand_crusader", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, }, - ["PhysicalAddedAsExtraLightningWeaponInfluence3_"] = { type = "Prefix", affix = "Crusader's", "Gain (18-20)% of Physical Damage as Extra Lightning Damage", statOrder = { 1813 }, level = 78, group = "PhysicalAddedAsLightning", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "sceptre_crusader", "wand_crusader", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, }, - ["PhysicalAddedAsExtraLightningTwoHandWeaponInfluence1_"] = { type = "Prefix", affix = "Crusader's", "Gain (16-20)% of Physical Damage as Extra Lightning Damage", statOrder = { 1813 }, level = 68, group = "PhysicalAddedAsLightning", weightKey = { "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, }, - ["PhysicalAddedAsExtraLightningTwoHandWeaponInfluence2"] = { type = "Prefix", affix = "Crusader's", "Gain (21-26)% of Physical Damage as Extra Lightning Damage", statOrder = { 1813 }, level = 73, group = "PhysicalAddedAsLightning", weightKey = { "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, }, - ["PhysicalAddedAsExtraLightningTwoHandWeaponInfluence3"] = { type = "Prefix", affix = "Crusader's", "Gain (27-30)% of Physical Damage as Extra Lightning Damage", statOrder = { 1813 }, level = 78, group = "PhysicalAddedAsLightning", weightKey = { "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, }, - ["AddedFireDamagePerStrengthInfluence1"] = { type = "Prefix", affix = "Hunter's", "Adds (1-2) to (3-4) Fire Damage to Attacks with this Weapon per 10 Strength", statOrder = { 4691 }, level = 68, group = "AddedFireDamagePerStrength", weightKey = { "sword_basilisk", "axe_basilisk", "mace_basilisk", "sceptre_basilisk", "default", }, weightVal = { 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AddedFireDamagePerStrengthTwoHandInfluence1"] = { type = "Prefix", affix = "Hunter's", "Adds (2-3) to (4-5) Fire Damage to Attacks with this Weapon per 10 Strength", statOrder = { 4691 }, level = 68, group = "AddedFireDamagePerStrength", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "default", }, weightVal = { 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AddedColdDamagePerDexterityInfluence1"] = { type = "Prefix", affix = "Hunter's", "Adds (1-2) to (3-4) Cold Damage to Attacks with this Weapon per 10 Dexterity", statOrder = { 4745 }, level = 68, group = "AddedColdDamagePerDexterity", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "bow_basilisk", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AddedColdDamagePerDexterityTwoHandInfluence1"] = { type = "Prefix", affix = "Hunter's", "Adds (2-3) to (4-5) Cold Damage to Attacks with this Weapon per 10 Dexterity", statOrder = { 4745 }, level = 68, group = "AddedColdDamagePerDexterity", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "default", }, weightVal = { 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AddedLightningDamagePerIntelligenceInfluence1"] = { type = "Prefix", affix = "Hunter's", "Adds 1 to (5-6) Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrder = { 4694 }, level = 68, group = "AddedLightningDamagePerIntelligence", weightKey = { "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "sceptre_basilisk", "wand_basilisk", "default", }, weightVal = { 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AddedLightningDamagePerIntelligenceTwoHandInfluence1"] = { type = "Prefix", affix = "Hunter's", "Adds 1 to (7-8) Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrder = { 4694 }, level = 68, group = "AddedLightningDamagePerIntelligence", weightKey = { "staff_basilisk", "warstaff_basilisk", "default", }, weightVal = { 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["SpellDamagePer16StrengthInfluence1"] = { type = "Prefix", affix = "Hunter's", "1% increased Spell Damage per 16 Strength", statOrder = { 9639 }, level = 68, group = "SpellDamagePer16Strength", weightKey = { "sceptre_basilisk", "default", }, weightVal = { 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamagePer16DexterityInfluence1"] = { type = "Prefix", affix = "Hunter's", "1% increased Spell Damage per 16 Dexterity", statOrder = { 9637 }, level = 68, group = "SpellDamagePer16Dexterity", weightKey = { "rune_dagger_basilisk", "default", }, weightVal = { 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamagePer16IntelligenceInfluence1"] = { type = "Prefix", affix = "Hunter's", "1% increased Spell Damage per 16 Intelligence", statOrder = { 9638 }, level = 68, group = "SpellDamagePer16Intelligence", weightKey = { "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "default", }, weightVal = { 200, 200, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamagePer10StrengthInfluence1_"] = { type = "Prefix", affix = "Hunter's", "1% increased Spell Damage per 10 Strength", statOrder = { 9636 }, level = 68, group = "SpellDamagePer10Strength", weightKey = { "staff_basilisk", "default", }, weightVal = { 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamagePer10IntelligenceInfluence1"] = { type = "Prefix", affix = "Hunter's", "1% increased Spell Damage per 10 Intelligence", statOrder = { 2613 }, level = 68, group = "SpellDamagePer10Intelligence", weightKey = { "staff_basilisk", "default", }, weightVal = { 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["BurningDamagePrefixInfluence1___"] = { type = "Prefix", affix = "Warlord's", "(60-69)% increased Burning Damage", statOrder = { 1758 }, level = 68, group = "BurnDamagePrefix", weightKey = { "sceptre_adjudicator", "wand_adjudicator", "default", }, weightVal = { 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, }, - ["BurningDamagePrefixInfluence2"] = { type = "Prefix", affix = "Warlord's", "(70-79)% increased Burning Damage", statOrder = { 1758 }, level = 71, group = "BurnDamagePrefix", weightKey = { "sceptre_adjudicator", "wand_adjudicator", "default", }, weightVal = { 300, 300, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, }, - ["BurningDamagePrefixInfluence3"] = { type = "Prefix", affix = "Warlord's", "(80-89)% increased Burning Damage", statOrder = { 1758 }, level = 75, group = "BurnDamagePrefix", weightKey = { "sceptre_adjudicator", "wand_adjudicator", "default", }, weightVal = { 200, 200, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, }, - ["BurningDamagePrefixInfluence4"] = { type = "Prefix", affix = "Warlord's", "(90-94)% increased Burning Damage", statOrder = { 1758 }, level = 78, group = "BurnDamagePrefix", weightKey = { "sceptre_adjudicator", "wand_adjudicator", "default", }, weightVal = { 100, 100, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, }, - ["BurningDamagePrefixTwoHandInfluence1"] = { type = "Prefix", affix = "Warlord's", "(100-109)% increased Burning Damage", statOrder = { 1758 }, level = 68, group = "BurnDamagePrefix", weightKey = { "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, }, - ["BurningDamagePrefixTwoHandInfluence2_"] = { type = "Prefix", affix = "Warlord's", "(110-119)% increased Burning Damage", statOrder = { 1758 }, level = 71, group = "BurnDamagePrefix", weightKey = { "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 300, 300, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, }, - ["BurningDamagePrefixTwoHandInfluence3"] = { type = "Prefix", affix = "Warlord's", "(120-129)% increased Burning Damage", statOrder = { 1758 }, level = 75, group = "BurnDamagePrefix", weightKey = { "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 200, 200, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, }, - ["BurningDamagePrefixTwoHandInfluence4_"] = { type = "Prefix", affix = "Warlord's", "(130-134)% increased Burning Damage", statOrder = { 1758 }, level = 78, group = "BurnDamagePrefix", weightKey = { "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 100, 100, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, }, - ["BleedingDamagePrefixInfluence1"] = { type = "Prefix", affix = "Warlord's", "(60-69)% increased Physical Damage over Time", statOrder = { 1096 }, level = 68, group = "PhysicalDamageOverTimePrefix", weightKey = { "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "bow_adjudicator", "default", }, weightVal = { 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "ailment" }, }, - ["BleedingDamagePrefixInfluence2"] = { type = "Prefix", affix = "Warlord's", "(70-79)% increased Physical Damage over Time", statOrder = { 1096 }, level = 71, group = "PhysicalDamageOverTimePrefix", weightKey = { "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "bow_adjudicator", "default", }, weightVal = { 300, 300, 300, 300, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "ailment" }, }, - ["BleedingDamagePrefixInfluence3_"] = { type = "Prefix", affix = "Warlord's", "(80-89)% increased Physical Damage over Time", statOrder = { 1096 }, level = 75, group = "PhysicalDamageOverTimePrefix", weightKey = { "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "bow_adjudicator", "default", }, weightVal = { 200, 200, 200, 200, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "ailment" }, }, - ["BleedingDamagePrefixInfluence4"] = { type = "Prefix", affix = "Warlord's", "(90-94)% increased Physical Damage over Time", statOrder = { 1096 }, level = 78, group = "PhysicalDamageOverTimePrefix", weightKey = { "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "bow_adjudicator", "default", }, weightVal = { 100, 100, 100, 100, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "ailment" }, }, - ["BleedingDamagePrefixTwoHandInfluence1"] = { type = "Prefix", affix = "Warlord's", "(100-109)% increased Physical Damage over Time", statOrder = { 1096 }, level = 68, group = "PhysicalDamageOverTimePrefix", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "ailment" }, }, - ["BleedingDamagePrefixTwoHandInfluence2"] = { type = "Prefix", affix = "Warlord's", "(110-119)% increased Physical Damage over Time", statOrder = { 1096 }, level = 71, group = "PhysicalDamageOverTimePrefix", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "ailment" }, }, - ["BleedingDamagePrefixTwoHandInfluence3"] = { type = "Prefix", affix = "Warlord's", "(120-129)% increased Physical Damage over Time", statOrder = { 1096 }, level = 75, group = "PhysicalDamageOverTimePrefix", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 200, 200, 200, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "ailment" }, }, - ["BleedingDamagePrefixTwoHandInfluence4"] = { type = "Prefix", affix = "Warlord's", "(130-134)% increased Physical Damage over Time", statOrder = { 1096 }, level = 78, group = "PhysicalDamageOverTimePrefix", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 100, 100, 100, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "ailment" }, }, - ["PoisonDamagePrefixInfluence1__"] = { type = "Prefix", affix = "Hunter's", "(60-69)% increased Chaos Damage over Time", statOrder = { 1099 }, level = 68, group = "ChaosDamageOverTimePrefix", weightKey = { "sword_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "bow_basilisk", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["PoisonDamagePrefixInfluence2__"] = { type = "Prefix", affix = "Hunter's", "(70-79)% increased Chaos Damage over Time", statOrder = { 1099 }, level = 71, group = "ChaosDamageOverTimePrefix", weightKey = { "sword_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "bow_basilisk", "default", }, weightVal = { 300, 300, 300, 300, 300, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["PoisonDamagePrefixInfluence3"] = { type = "Prefix", affix = "Hunter's", "(80-89)% increased Chaos Damage over Time", statOrder = { 1099 }, level = 75, group = "ChaosDamageOverTimePrefix", weightKey = { "sword_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "bow_basilisk", "default", }, weightVal = { 200, 200, 200, 200, 200, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["PoisonDamagePrefixInfluence4"] = { type = "Prefix", affix = "Hunter's", "(90-94)% increased Chaos Damage over Time", statOrder = { 1099 }, level = 78, group = "ChaosDamageOverTimePrefix", weightKey = { "sword_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "bow_basilisk", "default", }, weightVal = { 100, 100, 100, 100, 100, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["PoisonDamagePrefixTwoHandInfluence1"] = { type = "Prefix", affix = "Hunter's", "(100-109)% increased Chaos Damage over Time", statOrder = { 1099 }, level = 68, group = "ChaosDamageOverTimePrefix", weightKey = { "2h_sword_basilisk", "default", }, weightVal = { 400, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["PoisonDamagePrefixTwoHandInfluence2__"] = { type = "Prefix", affix = "Hunter's", "(110-119)% increased Chaos Damage over Time", statOrder = { 1099 }, level = 71, group = "ChaosDamageOverTimePrefix", weightKey = { "2h_sword_basilisk", "default", }, weightVal = { 300, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["PoisonDamagePrefixTwoHandInfluence3"] = { type = "Prefix", affix = "Hunter's", "(120-129)% increased Chaos Damage over Time", statOrder = { 1099 }, level = 75, group = "ChaosDamageOverTimePrefix", weightKey = { "2h_sword_basilisk", "default", }, weightVal = { 200, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["PoisonDamagePrefixTwoHandInfluence4_"] = { type = "Prefix", affix = "Hunter's", "(130-134)% increased Chaos Damage over Time", statOrder = { 1099 }, level = 78, group = "ChaosDamageOverTimePrefix", weightKey = { "2h_sword_basilisk", "default", }, weightVal = { 100, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["FasterIgniteDamageInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Ignites you inflict deal Damage (8-12)% faster", statOrder = { 2440 }, level = 68, group = "FasterIgniteDamage", weightKey = { "sceptre_basilisk", "wand_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, - ["FasterIgniteDamageInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Ignites you inflict deal Damage (13-15)% faster", statOrder = { 2440 }, level = 73, group = "FasterIgniteDamage", weightKey = { "sceptre_basilisk", "wand_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, - ["FasterIgniteDamageTwoHandInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Ignites you inflict deal Damage (18-21)% faster", statOrder = { 2440 }, level = 68, group = "FasterIgniteDamage", weightKey = { "staff_basilisk", "warstaff_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, - ["FasterIgniteDamageTwoHandInfluence2_"] = { type = "Suffix", affix = "of the Hunt", "Ignites you inflict deal Damage (22-25)% faster", statOrder = { 2440 }, level = 73, group = "FasterIgniteDamage", weightKey = { "staff_basilisk", "warstaff_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, - ["FasterBleedDamageInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "Bleeding you inflict deals Damage (8-12)% faster", statOrder = { 6214 }, level = 68, group = "FasterBleedDamage", weightKey = { "sword_basilisk", "axe_basilisk", "mace_basilisk", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, - ["FasterBleedDamageInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Bleeding you inflict deals Damage (13-15)% faster", statOrder = { 6214 }, level = 73, group = "FasterBleedDamage", weightKey = { "sword_basilisk", "axe_basilisk", "mace_basilisk", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, - ["FasterBleedDamageTwoHandInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Bleeding you inflict deals Damage (18-21)% faster", statOrder = { 6214 }, level = 68, group = "FasterBleedDamage", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, - ["FasterBleedDamageTwoHandInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Bleeding you inflict deals Damage (22-25)% faster", statOrder = { 6214 }, level = 73, group = "FasterBleedDamage", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, - ["FasterPoisonDamageInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Poisons you inflict deal Damage (8-12)% faster", statOrder = { 6215 }, level = 68, group = "FasterPoisonDamage", weightKey = { "sword_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["FasterPoisonDamageInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Poisons you inflict deal Damage (13-15)% faster", statOrder = { 6215 }, level = 73, group = "FasterPoisonDamage", weightKey = { "sword_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["FasterPoisonDamageTwoHandInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Poisons you inflict deal Damage (18-21)% faster", statOrder = { 6215 }, level = 68, group = "FasterPoisonDamage", weightKey = { "2h_sword_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["FasterPoisonDamageTwoHandInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Poisons you inflict deal Damage (22-25)% faster", statOrder = { 6215 }, level = 73, group = "FasterPoisonDamage", weightKey = { "2h_sword_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["ImpaleEffectWeaponInfluence1__"] = { type = "Suffix", affix = "of the Crusade", "(12-16)% increased Impale Effect", statOrder = { 6869 }, level = 68, group = "ImpaleEffect", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "influence_mod", "physical" }, }, - ["ImpaleEffectWeaponInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "(17-21)% increased Impale Effect", statOrder = { 6869 }, level = 71, group = "ImpaleEffect", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "influence_mod", "physical" }, }, - ["ImpaleEffectWeaponInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(22-25)% increased Impale Effect", statOrder = { 6869 }, level = 75, group = "ImpaleEffect", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "influence_mod", "physical" }, }, - ["ImpaleEffectTwoHandWeaponInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(25-29)% increased Impale Effect", statOrder = { 6869 }, level = 68, group = "ImpaleEffect", weightKey = { "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "bow_crusader", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod", "physical" }, }, - ["ImpaleEffectTwoHandWeaponInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(30-34)% increased Impale Effect", statOrder = { 6869 }, level = 71, group = "ImpaleEffect", weightKey = { "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "bow_crusader", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod", "physical" }, }, - ["ImpaleEffectTwoHandWeaponInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(35-38)% increased Impale Effect", statOrder = { 6869 }, level = 75, group = "ImpaleEffect", weightKey = { "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "bow_crusader", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod", "physical" }, }, - ["ConvertPhysicalToFireInfluenceWeapon1"] = { type = "Suffix", affix = "of the Crusade", "(23-26)% of Physical Damage Converted to Fire Damage", statOrder = { 1834 }, level = 68, group = "ConvertPhysicalToFire", weightKey = { "sword_crusader", "axe_crusader", "mace_crusader", "sceptre_crusader", "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, }, - ["ConvertPhysicalToFireInfluenceWeapon2_"] = { type = "Suffix", affix = "of the Crusade", "(27-30)% of Physical Damage Converted to Fire Damage", statOrder = { 1834 }, level = 71, group = "ConvertPhysicalToFire", weightKey = { "sword_crusader", "axe_crusader", "mace_crusader", "sceptre_crusader", "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, }, - ["ConvertPhysicalToColdInfluenceWeapon1"] = { type = "Suffix", affix = "of the Crusade", "(23-26)% of Physical Damage Converted to Cold Damage", statOrder = { 1836 }, level = 68, group = "ConvertPhysicalToCold", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "sceptre_crusader", "2h_sword_crusader", "2h_axe_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, }, - ["ConvertPhysicalToColdInfluenceWeapon2_"] = { type = "Suffix", affix = "of the Crusade", "(27-30)% of Physical Damage Converted to Cold Damage", statOrder = { 1836 }, level = 71, group = "ConvertPhysicalToCold", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "sceptre_crusader", "2h_sword_crusader", "2h_axe_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, }, - ["ConvertPhysicalToLightningInfluenceWeapon1"] = { type = "Suffix", affix = "of the Crusade", "(23-26)% of Physical Damage Converted to Lightning Damage", statOrder = { 1838 }, level = 68, group = "ConvertPhysicalToLightning", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "sceptre_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, }, - ["ConvertPhysicalToLightningInfluenceWeapon2_"] = { type = "Suffix", affix = "of the Crusade", "(27-30)% of Physical Damage Converted to Lightning Damage", statOrder = { 1838 }, level = 71, group = "ConvertPhysicalToLightning", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "sceptre_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, }, - ["ConvertPhysicalToChaosInfluenceWeapon1"] = { type = "Suffix", affix = "of the Hunt", "(16-20)% of Physical Damage Converted to Chaos Damage", statOrder = { 1841 }, level = 68, group = "PhysicalDamageConvertedToChaos", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, - ["ConvertPhysicalToChaosInfluenceWeapon2"] = { type = "Suffix", affix = "of the Hunt", "(21-25)% of Physical Damage Converted to Chaos Damage", statOrder = { 1841 }, level = 71, group = "PhysicalDamageConvertedToChaos", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, - ["ArmourPenetrationWeaponInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Hits with this Weapon have (50-65)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7536 }, level = 68, group = "LocalArmourPenetration", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["ArmourPenetrationWeaponInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Hits with this Weapon have (66-80)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7536 }, level = 71, group = "LocalArmourPenetration", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["ArmourPenetrationTwoHandWeaponInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "Hits with this Weapon have (50-65)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7536 }, level = 68, group = "LocalArmourPenetration", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["ArmourPenetrationTwoHandWeaponInfluence2_"] = { type = "Suffix", affix = "of the Hunt", "Hits with this Weapon have (66-80)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7536 }, level = 71, group = "LocalArmourPenetration", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["ArmourPenetrationSpellWeaponInfluence1__"] = { type = "Suffix", affix = "of the Hunt", "Hits have (25-29)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 6801 }, level = 68, group = "ChanceToIgnoreEnemyArmour", weightKey = { "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "physical" }, }, - ["ArmourPenetrationSpellWeaponInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Hits have (30-35)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 6801 }, level = 71, group = "ChanceToIgnoreEnemyArmour", weightKey = { "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "physical" }, }, - ["ArmourPenetrationSpellTwoHandWeaponInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Hits have (50-59)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 6801 }, level = 68, group = "ChanceToIgnoreEnemyArmour", weightKey = { "staff_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical" }, }, - ["ArmourPenetrationSpellTwoHandWeaponInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Hits have (60-70)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 6801 }, level = 71, group = "ChanceToIgnoreEnemyArmour", weightKey = { "staff_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical" }, }, - ["FireExposureOnHitWeaponInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "(11-15)% chance to inflict Fire Exposure on Hit", statOrder = { 4842 }, level = 75, group = "FireExposureOnHit", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "staff_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, }, - ["FireExposureOnHitWeaponInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(16-20)% chance to inflict Fire Exposure on Hit", statOrder = { 4842 }, level = 80, group = "FireExposureOnHit", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "staff_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, }, - ["ColdExposureOnHitWeaponInfluence1"] = { type = "Suffix", affix = "of Redemption", "(11-15)% chance to inflict Cold Exposure on Hit", statOrder = { 4841 }, level = 75, group = "ColdExposureOnHit", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "staff_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, }, - ["ColdExposureOnHitWeaponInfluence2"] = { type = "Suffix", affix = "of Redemption", "(16-20)% chance to inflict Cold Exposure on Hit", statOrder = { 4841 }, level = 80, group = "ColdExposureOnHit", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "staff_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, }, - ["LightningExposureOnHitWeaponInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(11-15)% chance to inflict Lightning Exposure on Hit", statOrder = { 4843 }, level = 75, group = "LightningExposureOnHit", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "staff_crusader", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, }, - ["LightningExposureOnHitWeaponInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(16-20)% chance to inflict Lightning Exposure on Hit", statOrder = { 4843 }, level = 80, group = "LightningExposureOnHit", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "staff_crusader", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, }, - ["ChanceToUnnerveOnHitWeaponInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(7-11)% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5434 }, level = 78, group = "ChanceToUnnerveOnHit", weightKey = { "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "staff_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { }, }, - ["ChanceToUnnerveOnHitWeaponInfluence2__"] = { type = "Suffix", affix = "of the Hunt", "(12-15)% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5434 }, level = 81, group = "ChanceToUnnerveOnHit", weightKey = { "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "staff_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { }, }, - ["ChanceToIntimidateOnHitWeaponInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(7-11)% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 7480 }, level = 78, group = "LocalChanceToIntimidateOnHit", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attack" }, }, - ["ChanceToIntimidateOnHitWeaponInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(12-15)% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 7480 }, level = 81, group = "LocalChanceToIntimidateOnHit", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attack" }, }, - ["DamageFromAurasWeaponInfluence1"] = { type = "Suffix", affix = "of Redemption", "Auras from your Skills grant 2% increased Damage to you and Allies", statOrder = { 3321 }, level = 82, group = "IncreasedDamageFromAuras", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "sceptre_eyrie", "wand_eyrie", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 0 }, modTags = { "influence_mod", "damage", "aura" }, }, - ["DamageFromAurasTwoHandWeaponInfluence1"] = { type = "Suffix", affix = "of Redemption", "Auras from your Skills grant 4% increased Damage to you and Allies", statOrder = { 3321 }, level = 82, group = "IncreasedDamageFromAuras", weightKey = { "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "bow_eyrie", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 0 }, modTags = { "influence_mod", "damage", "aura" }, }, - ["LocalChanceToMaimPhysicalDamageInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(10-13)% increased Physical Damage", "10% chance to Maim on Hit", statOrder = { 1117, 7581 }, level = 68, group = "LocalChanceToMaimPhysicalDamage", weightKey = { "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "bow_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, }, - ["LocalChanceToMaimPhysicalDamageInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(14-16)% increased Physical Damage", "15% chance to Maim on Hit", statOrder = { 1117, 7581 }, level = 70, group = "LocalChanceToMaimPhysicalDamage", weightKey = { "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "bow_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, }, - ["LocalChanceToMaimPhysicalDamageInfluence3"] = { type = "Suffix", affix = "of the Conquest", "(17-20)% increased Physical Damage", "20% chance to Maim on Hit", statOrder = { 1117, 7581 }, level = 73, group = "LocalChanceToMaimPhysicalDamage", weightKey = { "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "bow_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, }, - ["BlindOnHitWeaponInfluence1"] = { type = "Suffix", affix = "of Redemption", "(15-18)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4736 }, level = 68, group = "AttacksBlindOnHitChance", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "bow_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, }, - ["BlindOnHitWeaponInfluence2"] = { type = "Suffix", affix = "of Redemption", "(19-22)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4736 }, level = 70, group = "AttacksBlindOnHitChance", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "bow_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, }, - ["BlindOnHitWeaponInfluence3"] = { type = "Suffix", affix = "of Redemption", "(23-25)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4736 }, level = 73, group = "AttacksBlindOnHitChance", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "bow_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, }, - ["OnslaugtOnKillWeaponInfluence1"] = { type = "Suffix", affix = "of Redemption", "(15-18)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3246 }, level = 68, group = "OnslaugtOnKillPercentChance", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "wand_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "bow_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, }, - ["OnslaugtOnKillWeaponInfluence2"] = { type = "Suffix", affix = "of Redemption", "(19-22)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3246 }, level = 70, group = "OnslaugtOnKillPercentChance", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "wand_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "bow_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, }, - ["OnslaugtOnKillWeaponInfluence3"] = { type = "Suffix", affix = "of Redemption", "(23-25)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3246 }, level = 73, group = "OnslaugtOnKillPercentChance", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "wand_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "bow_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, }, - ["PhasingOnKillWeaponInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "(15-18)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3328 }, level = 68, group = "ChancetoGainPhasingOnKill", weightKey = { "wand_adjudicator", "bow_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod" }, }, - ["PhasingOnKillWeaponInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(19-22)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3328 }, level = 70, group = "ChancetoGainPhasingOnKill", weightKey = { "wand_adjudicator", "bow_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod" }, }, - ["PhasingOnKillWeaponInfluence3"] = { type = "Suffix", affix = "of the Conquest", "(23-25)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3328 }, level = 73, group = "ChancetoGainPhasingOnKill", weightKey = { "wand_adjudicator", "bow_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod" }, }, - ["UnholyMightOnKillWeaponInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(15-18)% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3243 }, level = 68, group = "UnholyMightOnKillPercentChance", weightKey = { "wand_adjudicator", "claw_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, }, - ["UnholyMightOnKillWeaponInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(19-22)% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3243 }, level = 70, group = "UnholyMightOnKillPercentChance", weightKey = { "wand_adjudicator", "claw_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, }, - ["UnholyMightOnKillWeaponInfluence3"] = { type = "Suffix", affix = "of the Conquest", "(23-25)% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3243 }, level = 73, group = "UnholyMightOnKillPercentChance", weightKey = { "wand_adjudicator", "claw_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, }, - ["BlockWhileDualWieldingInfluence1__"] = { type = "Suffix", affix = "of Redemption", "+(2-4)% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1047 }, level = 68, group = "BlockWhileDualWielding", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "block", "influence_mod" }, }, - ["BlockWhileDualWieldingInfluence2"] = { type = "Suffix", affix = "of Redemption", "+(5-7)% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1047 }, level = 70, group = "BlockWhileDualWielding", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "block", "influence_mod" }, }, - ["BlockWhileDualWieldingInfluence3"] = { type = "Suffix", affix = "of Redemption", "+(8-9)% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1047 }, level = 73, group = "BlockWhileDualWielding", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "block", "influence_mod" }, }, - ["PhysicalDamageWhileDualWieldingInfluence1__"] = { type = "Suffix", affix = "of the Conquest", "(23-27)% increased Physical Attack Damage while Dual Wielding", statOrder = { 1163 }, level = 68, group = "DualWieldingPhysicalDamage", weightKey = { "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, }, - ["PhysicalDamageWhileDualWieldingInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "(28-32)% increased Physical Attack Damage while Dual Wielding", statOrder = { 1163 }, level = 70, group = "DualWieldingPhysicalDamage", weightKey = { "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, }, - ["PhysicalDamageWhileDualWieldingInfluence3"] = { type = "Suffix", affix = "of the Conquest", "(33-37)% increased Physical Attack Damage while Dual Wielding", statOrder = { 1163 }, level = 73, group = "DualWieldingPhysicalDamage", weightKey = { "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, }, - ["LocalMeleeWeaponRangeInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+0.2 metres to Weapon Range", statOrder = { 2620 }, level = 68, group = "LocalWeaponRangeUber", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, }, - ["LocalMeleeWeaponRangeInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "+0.3 metres to Weapon Range", statOrder = { 2620 }, level = 73, group = "LocalWeaponRangeUber", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, }, - ["MovementVelocityWeaponInfluence1"] = { type = "Suffix", affix = "of Redemption", "(3-6)% increased Movement Speed", statOrder = { 1679 }, level = 68, group = "MovementVelocity", weightKey = { "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "bow_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "influence_mod", "speed" }, }, - ["MovementVelocityWeaponInfluence2"] = { type = "Suffix", affix = "of Redemption", "(7-10)% increased Movement Speed", statOrder = { 1679 }, level = 73, group = "MovementVelocity", weightKey = { "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "bow_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "influence_mod", "speed" }, }, - ["SpellsDoubleDamageChanceInfluence1"] = { type = "Suffix", affix = "of Redemption", "Spells have a (4-5)% chance to deal Double Damage", statOrder = { 9621 }, level = 75, group = "SpellsDoubleDamageChance", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, }, - ["SpellsDoubleDamageChanceInfluence2"] = { type = "Suffix", affix = "of Redemption", "Spells have a (6-7)% chance to deal Double Damage", statOrder = { 9621 }, level = 80, group = "SpellsDoubleDamageChance", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, }, - ["SpellsDoubleDamageChanceTwoHandInfluence1_"] = { type = "Suffix", affix = "of Redemption", "Spells have a (10-11)% chance to deal Double Damage", statOrder = { 9621 }, level = 75, group = "SpellsDoubleDamageChance", weightKey = { "staff_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, }, - ["SpellsDoubleDamageChanceTwoHandInfluence2"] = { type = "Suffix", affix = "of Redemption", "Spells have a (12-14)% chance to deal Double Damage", statOrder = { 9621 }, level = 80, group = "SpellsDoubleDamageChance", weightKey = { "staff_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, }, - ["DamagePerEnduranceChargeWeaponInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(5-7)% increased Damage per Endurance Charge", statOrder = { 3065 }, level = 68, group = "DamagePerEnduranceCharge", weightKey = { "sceptre_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, - ["DamagePerEnduranceChargeWeaponInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "(8-10)% increased Damage per Endurance Charge", statOrder = { 3065 }, level = 73, group = "DamagePerEnduranceCharge", weightKey = { "sceptre_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, - ["DamagePerFrenzyChargeWeaponInfluence1__"] = { type = "Suffix", affix = "of Redemption", "(5-7)% increased Damage per Frenzy Charge", statOrder = { 3152 }, level = 68, group = "DamagePerFrenzyCharge", weightKey = { "rune_dagger_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, - ["DamagePerFrenzyChargeWeaponInfluence2"] = { type = "Suffix", affix = "of Redemption", "(8-10)% increased Damage per Frenzy Charge", statOrder = { 3152 }, level = 73, group = "DamagePerFrenzyCharge", weightKey = { "rune_dagger_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, - ["DamagePerPowerChargeWeaponInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "(5-7)% increased Damage per Power Charge", statOrder = { 5766 }, level = 68, group = "IncreasedDamagePerPowerCharge", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "damage" }, }, - ["DamagePerPowerChargeWeaponInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(8-10)% increased Damage per Power Charge", statOrder = { 5766 }, level = 73, group = "IncreasedDamagePerPowerCharge", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "damage" }, }, - ["DamagePerEnduranceChargeTwoHandWeaponInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(10-13)% increased Damage per Endurance Charge", statOrder = { 3065 }, level = 68, group = "DamagePerEnduranceCharge", weightKey = { "staff_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, - ["DamagePerEnduranceChargeTwoHandWeaponInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(14-17)% increased Damage per Endurance Charge", statOrder = { 3065 }, level = 73, group = "DamagePerEnduranceCharge", weightKey = { "staff_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, - ["DamagePerPowerChargeTwoHandWeaponInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(10-13)% increased Damage per Power Charge", statOrder = { 5766 }, level = 68, group = "IncreasedDamagePerPowerCharge", weightKey = { "staff_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, - ["DamagePerPowerChargeTwoHandWeaponInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "(14-17)% increased Damage per Power Charge", statOrder = { 5766 }, level = 73, group = "IncreasedDamagePerPowerCharge", weightKey = { "staff_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, - ["BaseManaRegenerationInfluence1_____"] = { type = "Suffix", affix = "of the Conquest", "Regenerate 0.3% of Mana per second", statOrder = { 1463 }, level = 68, group = "BaseManaRegeneration", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, - ["BaseManaRegenerationInfluence2"] = { type = "Suffix", affix = "of the Conquest", "Regenerate 0.4% of Mana per second", statOrder = { 1463 }, level = 73, group = "BaseManaRegeneration", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, - ["BaseManaRegenerationTwoHandInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "Regenerate 0.7% of Mana per second", statOrder = { 1463 }, level = 68, group = "BaseManaRegeneration", weightKey = { "staff_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, - ["BaseManaRegenerationTwoHandInfluence2"] = { type = "Suffix", affix = "of the Conquest", "Regenerate 0.8% of Mana per second", statOrder = { 1463 }, level = 73, group = "BaseManaRegeneration", weightKey = { "staff_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, - ["AngerAuraEffectInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Anger has (28-33)% increased Aura Effect", statOrder = { 3222 }, level = 75, group = "AngerAuraEffect", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "aura" }, }, - ["AngerAuraEffectInfluence2"] = { type = "Suffix", affix = "of the Conquest", "Anger has (34-40)% increased Aura Effect", statOrder = { 3222 }, level = 80, group = "AngerAuraEffect", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "aura" }, }, - ["AngerAuraEffectTwoHandInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Anger has (48-54)% increased Aura Effect", statOrder = { 3222 }, level = 75, group = "AngerAuraEffect", weightKey = { "staff_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "aura" }, }, - ["AngerAuraEffectTwoHandInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "Anger has (55-60)% increased Aura Effect", statOrder = { 3222 }, level = 80, group = "AngerAuraEffect", weightKey = { "staff_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "aura" }, }, - ["HatredAuraEffectInfluence1"] = { type = "Suffix", affix = "of Redemption", "Hatred has (28-33)% increased Aura Effect", statOrder = { 3232 }, level = 75, group = "HatredAuraEffect", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "aura" }, }, - ["HatredAuraEffectInfluence2__"] = { type = "Suffix", affix = "of Redemption", "Hatred has (34-40)% increased Aura Effect", statOrder = { 3232 }, level = 80, group = "HatredAuraEffect", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "aura" }, }, - ["HatredAuraEffectTwoHandInfluence1"] = { type = "Suffix", affix = "of Redemption", "Hatred has (48-54)% increased Aura Effect", statOrder = { 3232 }, level = 75, group = "HatredAuraEffect", weightKey = { "staff_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "aura" }, }, - ["HatredAuraEffectTwoHandInfluence2__"] = { type = "Suffix", affix = "of Redemption", "Hatred has (55-60)% increased Aura Effect", statOrder = { 3232 }, level = 80, group = "HatredAuraEffect", weightKey = { "staff_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "aura" }, }, - ["WrathAuraEffectInfluence1__"] = { type = "Suffix", affix = "of the Crusade", "Wrath has (28-33)% increased Aura Effect", statOrder = { 3227 }, level = 75, group = "WrathAuraEffect", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "aura" }, }, - ["WrathAuraEffectInfluence2"] = { type = "Suffix", affix = "of the Crusade", "Wrath has (34-40)% increased Aura Effect", statOrder = { 3227 }, level = 80, group = "WrathAuraEffect", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "aura" }, }, - ["WrathAuraEffectTwoHandInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Wrath has (48-54)% increased Aura Effect", statOrder = { 3227 }, level = 75, group = "WrathAuraEffect", weightKey = { "staff_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "aura" }, }, - ["WrathAuraEffectTwoHandInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "Wrath has (55-60)% increased Aura Effect", statOrder = { 3227 }, level = 80, group = "WrathAuraEffect", weightKey = { "staff_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "aura" }, }, - ["MalevolenceAuraEffectInfluence1____"] = { type = "Suffix", affix = "of the Hunt", "Malevolence has (28-33)% increased Aura Effect", statOrder = { 5857 }, level = 75, group = "MalevolenceAuraEffect", weightKey = { "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "aura" }, }, - ["MalevolenceAuraEffectInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Malevolence has (34-40)% increased Aura Effect", statOrder = { 5857 }, level = 80, group = "MalevolenceAuraEffect", weightKey = { "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "aura" }, }, - ["MalevolenceAuraEffectTwoHandInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Malevolence has (48-54)% increased Aura Effect", statOrder = { 5857 }, level = 75, group = "MalevolenceAuraEffect", weightKey = { "staff_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "aura" }, }, - ["MalevolenceAuraEffectTwoHandInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Malevolence has (55-60)% increased Aura Effect", statOrder = { 5857 }, level = 80, group = "MalevolenceAuraEffect", weightKey = { "staff_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "aura" }, }, - ["ZealotryAuraEffectInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Zealotry has (28-33)% increased Aura Effect", statOrder = { 10169 }, level = 75, group = "ZealotryAuraEffect", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "aura" }, }, - ["ZealotryAuraEffectInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "Zealotry has (34-40)% increased Aura Effect", statOrder = { 10169 }, level = 80, group = "ZealotryAuraEffect", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "aura" }, }, - ["ZealotryAuraEffectTwoHandInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "Zealotry has (48-54)% increased Aura Effect", statOrder = { 10169 }, level = 75, group = "ZealotryAuraEffect", weightKey = { "staff_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "aura" }, }, - ["ZealotryAuraEffectTwoHandInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "Zealotry has (55-60)% increased Aura Effect", statOrder = { 10169 }, level = 80, group = "ZealotryAuraEffect", weightKey = { "staff_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "aura" }, }, - ["DamageWhileLeechingWeaponInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "(18-22)% increased Damage while Leeching", statOrder = { 2932 }, level = 68, group = "DamageWhileLeeching", weightKey = { "sword_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, - ["DamageWhileLeechingWeaponInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(23-26)% increased Damage while Leeching", statOrder = { 2932 }, level = 70, group = "DamageWhileLeeching", weightKey = { "sword_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, - ["DamageWhileLeechingWeaponInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(27-30)% increased Damage while Leeching", statOrder = { 2932 }, level = 73, group = "DamageWhileLeeching", weightKey = { "sword_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, - ["DamageWhileLeechingWeaponTwoHandInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "(32-36)% increased Damage while Leeching", statOrder = { 2932 }, level = 68, group = "DamageWhileLeeching", weightKey = { "2h_sword_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, - ["DamageWhileLeechingWeaponTwoHandInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(37-41)% increased Damage while Leeching", statOrder = { 2932 }, level = 70, group = "DamageWhileLeeching", weightKey = { "2h_sword_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, - ["DamageWhileLeechingWeaponTwoHandInfluence3_"] = { type = "Suffix", affix = "of the Crusade", "(42-45)% increased Damage while Leeching", statOrder = { 2932 }, level = 73, group = "DamageWhileLeeching", weightKey = { "2h_sword_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, - ["AttackSpeedWithFortifyInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(10-12)% increased Attack Speed while Fortified", statOrder = { 3081 }, level = 68, group = "AttackSpeedWithFortify", weightKey = { "sword_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack", "speed" }, }, - ["AttackSpeedWithFortifyInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(13-15)% increased Attack Speed while Fortified", statOrder = { 3081 }, level = 73, group = "AttackSpeedWithFortify", weightKey = { "sword_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack", "speed" }, }, - ["AttackSpeedWithFortifyTwoHandInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(20-22)% increased Attack Speed while Fortified", statOrder = { 3081 }, level = 68, group = "AttackSpeedWithFortify", weightKey = { "2h_sword_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack", "speed" }, }, - ["AttackSpeedWithFortifyTwoHandInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(23-25)% increased Attack Speed while Fortified", statOrder = { 3081 }, level = 73, group = "AttackSpeedWithFortify", weightKey = { "2h_sword_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack", "speed" }, }, - ["MeleeWeaponRangeIfKilledRecentlyInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "+0.2 metres to Melee Strike Range if you have Killed Recently", statOrder = { 8755 }, level = 68, group = "MeleeWeaponRangeIfKilledRecently", weightKey = { "sword_adjudicator", "2h_sword_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "attack" }, }, - ["MeleeWeaponRangeIfKilledRecentlyInfluence2"] = { type = "Suffix", affix = "of the Conquest", "+0.3 metres to Melee Strike Range if you have Killed Recently", statOrder = { 8755 }, level = 73, group = "MeleeWeaponRangeIfKilledRecently", weightKey = { "sword_adjudicator", "2h_sword_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "attack" }, }, - ["TauntOnHitWeaponInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(5-6)% chance to Taunt Enemies on Hit with Attacks", statOrder = { 4737 }, level = 68, group = "AttacksTauntOnHitChance", weightKey = { "axe_crusader", "2h_axe_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "attack" }, }, - ["TauntOnHitWeaponInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(7-8)% chance to Taunt Enemies on Hit with Attacks", statOrder = { 4737 }, level = 70, group = "AttacksTauntOnHitChance", weightKey = { "axe_crusader", "2h_axe_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "attack" }, }, - ["TauntOnHitWeaponInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(9-10)% chance to Taunt Enemies on Hit with Attacks", statOrder = { 4737 }, level = 73, group = "AttacksTauntOnHitChance", weightKey = { "axe_crusader", "2h_axe_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "attack" }, }, - ["AttackSpeedIfKilledRecentlyInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(13-16)% increased Attack Speed if you've Killed Recently", statOrder = { 4715 }, level = 68, group = "AttackSpeedIfEnemyKilledRecently", weightKey = { "axe_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack", "speed" }, }, - ["AttackSpeedIfKilledRecentlyInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(17-20)% increased Attack Speed if you've Killed Recently", statOrder = { 4715 }, level = 73, group = "AttackSpeedIfEnemyKilledRecently", weightKey = { "axe_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack", "speed" }, }, - ["AttackSpeedIfKilledRecentlyTwoHandInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(23-26)% increased Attack Speed if you've Killed Recently", statOrder = { 4715 }, level = 68, group = "AttackSpeedIfEnemyKilledRecently", weightKey = { "2h_axe_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack", "speed" }, }, - ["AttackSpeedIfKilledRecentlyTwoHandInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(27-30)% increased Attack Speed if you've Killed Recently", statOrder = { 4715 }, level = 73, group = "AttackSpeedIfEnemyKilledRecently", weightKey = { "2h_axe_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack", "speed" }, }, - ["CastSpeedIfKilledRecentlyInfluence1"] = { type = "Suffix", affix = "of Redemption", "(13-16)% increased Cast Speed if you've Killed Recently", statOrder = { 5171 }, level = 68, group = "CastSpeedIfEnemyKilledRecently", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "caster", "speed" }, }, - ["CastSpeedIfKilledRecentlyInfluence2"] = { type = "Suffix", affix = "of Redemption", "(17-20)% increased Cast Speed if you've Killed Recently", statOrder = { 5171 }, level = 73, group = "CastSpeedIfEnemyKilledRecently", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "caster", "speed" }, }, - ["CastSpeedIfKilledRecentlyTwoHandInfluence1"] = { type = "Suffix", affix = "of Redemption", "(23-26)% increased Cast Speed if you've Killed Recently", statOrder = { 5171 }, level = 68, group = "CastSpeedIfEnemyKilledRecently", weightKey = { "staff_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "caster", "speed" }, }, - ["CastSpeedIfKilledRecentlyTwoHandInfluence2"] = { type = "Suffix", affix = "of Redemption", "(27-30)% increased Cast Speed if you've Killed Recently", statOrder = { 5171 }, level = 73, group = "CastSpeedIfEnemyKilledRecently", weightKey = { "staff_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "caster", "speed" }, }, - ["WarcryCooldownSpeedInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(17-21)% increased Warcry Cooldown Recovery Rate", statOrder = { 3195 }, level = 68, group = "WarcryCooldownSpeed", weightKey = { "axe_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WarcryCooldownSpeedInfluence2_"] = { type = "Suffix", affix = "of the Hunt", "(22-25)% increased Warcry Cooldown Recovery Rate", statOrder = { 3195 }, level = 73, group = "WarcryCooldownSpeed", weightKey = { "axe_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WarcryCooldownSpeedTwoHandInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(35-40)% increased Warcry Cooldown Recovery Rate", statOrder = { 3195 }, level = 68, group = "WarcryCooldownSpeed", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "shield_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { }, }, - ["WarcryCooldownSpeedTwoHandInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(41-45)% increased Warcry Cooldown Recovery Rate", statOrder = { 3195 }, level = 73, group = "WarcryCooldownSpeed", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "shield_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { }, }, - ["CriticalStrikeChanceIfKilledRecentlyInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(31-40)% increased Critical Strike Chance if you have Killed Recently", statOrder = { 5629 }, level = 68, group = "CriticalStrikeChanceIfKilledRecently", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "critical" }, }, - ["CriticalStrikeChanceIfKilledRecentlyInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(41-50)% increased Critical Strike Chance if you have Killed Recently", statOrder = { 5629 }, level = 73, group = "CriticalStrikeChanceIfKilledRecently", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "critical" }, }, - ["CriticalStrikeMultiplierIfKilledRecentlyInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+(26-30)% to Critical Strike Multiplier if you've Killed Recently", statOrder = { 5660 }, level = 68, group = "CriticalStrikeMultiplierIfEnemySlainRecently", weightKey = { "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "damage", "critical" }, }, - ["CriticalStrikeMultiplierIfKilledRecentlyInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "+(31-35)% to Critical Strike Multiplier if you've Killed Recently", statOrder = { 5660 }, level = 73, group = "CriticalStrikeMultiplierIfEnemySlainRecently", weightKey = { "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "damage", "critical" }, }, - ["CriticalStrikeMultiplierAgainstFullLifeInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+(41-50)% to Critical Strike Multiplier against Enemies that are on Full Life", statOrder = { 3299 }, level = 68, group = "CriticalStrikeMultiplierAgainstEnemiesOnFullLife", weightKey = { "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "damage", "critical" }, }, - ["CriticalStrikeMultiplierAgainstFullLifeInfluence2"] = { type = "Suffix", affix = "of the Conquest", "+(51-60)% to Critical Strike Multiplier against Enemies that are on Full Life", statOrder = { 3299 }, level = 73, group = "CriticalStrikeMultiplierAgainstEnemiesOnFullLife", weightKey = { "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "damage", "critical" }, }, - ["GainRareMonsterModsOnKillChanceInfluence1"] = { type = "Suffix", affix = "of the Conquest", "When you Kill a Rare Monster, (21-30)% chance to gain one of its Modifiers for 10 seconds", statOrder = { 6362 }, level = 68, group = "GainRareMonsterModsOnKillChance", weightKey = { "claw_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, - ["GainRareMonsterModsOnKillChanceInfluence2"] = { type = "Suffix", affix = "of the Conquest", "When you Kill a Rare Monster, (31-40)% chance to gain one of its Modifiers for 10 seconds", statOrder = { 6362 }, level = 73, group = "GainRareMonsterModsOnKillChance", weightKey = { "claw_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, - ["StunDurationAndThresholdInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(11-15)% reduced Enemy Stun Threshold", "(11-15)% increased Stun Duration on Enemies", statOrder = { 1400, 1744 }, level = 68, group = "StunDurationAndThresholdUber", weightKey = { "mace_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, - ["StunDurationAndThresholdInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "(16-20)% reduced Enemy Stun Threshold", "(16-20)% increased Stun Duration on Enemies", statOrder = { 1400, 1744 }, level = 73, group = "StunDurationAndThresholdUber", weightKey = { "mace_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, - ["StunDurationAndThresholdTwoHandInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(21-25)% reduced Enemy Stun Threshold", "(21-25)% increased Stun Duration on Enemies", statOrder = { 1400, 1744 }, level = 68, group = "StunDurationAndThresholdUber", weightKey = { "2h_mace_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, - ["StunDurationAndThresholdTwoHandInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(26-30)% reduced Enemy Stun Threshold", "(26-30)% increased Stun Duration on Enemies", statOrder = { 1400, 1744 }, level = 73, group = "StunDurationAndThresholdUber", weightKey = { "2h_mace_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, - ["AreaOfEffectIfStunnedRecentlyInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(26-30)% increased Area of Effect if you have Stunned an Enemy Recently", statOrder = { 4556 }, level = 68, group = "AreaOfEffectIfStunnedEnemyRecently", weightKey = { "mace_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, - ["AreaOfEffectIfStunnedRecentlyInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "(31-35)% increased Area of Effect if you have Stunned an Enemy Recently", statOrder = { 4556 }, level = 73, group = "AreaOfEffectIfStunnedEnemyRecently", weightKey = { "mace_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, - ["AreaOfEffectIfStunnedRecentlyTwoHandInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "(36-40)% increased Area of Effect if you have Stunned an Enemy Recently", statOrder = { 4556 }, level = 68, group = "AreaOfEffectIfStunnedEnemyRecently", weightKey = { "2h_mace_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, - ["AreaOfEffectIfStunnedRecentlyTwoHandInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "(41-45)% increased Area of Effect if you have Stunned an Enemy Recently", statOrder = { 4556 }, level = 73, group = "AreaOfEffectIfStunnedEnemyRecently", weightKey = { "2h_mace_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, - ["EnemiesExplodeOnDeathDealingFireInfluence1_"] = { type = "Suffix", affix = "of Redemption", "Enemies Killed with Attack or Spell Hits Explode, dealing 5% of their Life as Fire Damage", statOrder = { 2579 }, level = 78, group = "EnemiesExplodeOnDeath", weightKey = { "mace_eyrie", "2h_mace_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, - ["ChanceForDoubleStunDurationInfluence1"] = { type = "Suffix", affix = "of Redemption", "(7-11)% chance to double Stun Duration", statOrder = { 3427 }, level = 68, group = "ChanceForDoubleStunDuration", weightKey = { "mace_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, - ["ChanceForDoubleStunDurationInfluence2"] = { type = "Suffix", affix = "of Redemption", "(12-15)% chance to double Stun Duration", statOrder = { 3427 }, level = 73, group = "ChanceForDoubleStunDuration", weightKey = { "mace_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, - ["ChanceForDoubleStunDurationTwoHandInfluence1"] = { type = "Suffix", affix = "of Redemption", "(17-21)% chance to double Stun Duration", statOrder = { 3427 }, level = 68, group = "ChanceForDoubleStunDuration", weightKey = { "2h_mace_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, - ["ChanceForDoubleStunDurationTwoHandInfluence2_"] = { type = "Suffix", affix = "of Redemption", "(22-25)% chance to double Stun Duration", statOrder = { 3427 }, level = 73, group = "ChanceForDoubleStunDuration", weightKey = { "2h_mace_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, - ["MovementSpeedIfHitRecentlyInfluence1"] = { type = "Suffix", affix = "of Redemption", "(5-7)% increased Movement Speed if you've Hit an Enemy Recently", statOrder = { 8941 }, level = 68, group = "MovementSpeedIfHitRecently", weightKey = { "mace_eyrie", "sceptre_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "speed" }, }, - ["MovementSpeedIfHitRecentlyInfluence2"] = { type = "Suffix", affix = "of Redemption", "(8-10)% increased Movement Speed if you've Hit an Enemy Recently", statOrder = { 8941 }, level = 73, group = "MovementSpeedIfHitRecently", weightKey = { "mace_eyrie", "sceptre_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "speed" }, }, - ["MovementSpeedIfHitRecentlyTwoHandInfluence1"] = { type = "Suffix", affix = "of Redemption", "(10-12)% increased Movement Speed if you've Hit an Enemy Recently", statOrder = { 8941 }, level = 68, group = "MovementSpeedIfHitRecently", weightKey = { "2h_mace_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "speed" }, }, - ["MovementSpeedIfHitRecentlyTwoHandInfluence2"] = { type = "Suffix", affix = "of Redemption", "(13-15)% increased Movement Speed if you've Hit an Enemy Recently", statOrder = { 8941 }, level = 73, group = "MovementSpeedIfHitRecently", weightKey = { "2h_mace_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "speed" }, }, - ["AreaOfEffectIfKilledRecentlyInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(17-21)% increased Area of Effect if you've Killed Recently", statOrder = { 4080 }, level = 68, group = "AreaOfEffectIfKilledRecently", weightKey = { "mace_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AreaOfEffectIfKilledRecentlyInfluence2_"] = { type = "Suffix", affix = "of the Hunt", "(22-25)% increased Area of Effect if you've Killed Recently", statOrder = { 4080 }, level = 73, group = "AreaOfEffectIfKilledRecently", weightKey = { "mace_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AreaOfEffectIfKilledRecentlyTwoHandInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(27-31)% increased Area of Effect if you've Killed Recently", statOrder = { 4080 }, level = 68, group = "AreaOfEffectIfKilledRecently", weightKey = { "2h_mace_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AreaOfEffectIfKilledRecentlyTwoHandInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(32-35)% increased Area of Effect if you've Killed Recently", statOrder = { 4080 }, level = 73, group = "AreaOfEffectIfKilledRecently", weightKey = { "2h_mace_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["ChanceToBlockIfDamagedRecentlyInfluence1_"] = { type = "Suffix", affix = "of Redemption", "+(10-12)% Chance to Block Attack Damage if you were Damaged by a Hit Recently", statOrder = { 3082 }, level = 68, group = "ChanceToBlockIfDamagedRecently", weightKey = { "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "block", "influence_mod" }, }, - ["ChanceToBlockIfDamagedRecentlyInfluence2"] = { type = "Suffix", affix = "of Redemption", "+(13-15)% Chance to Block Attack Damage if you were Damaged by a Hit Recently", statOrder = { 3082 }, level = 73, group = "ChanceToBlockIfDamagedRecently", weightKey = { "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "block", "influence_mod" }, }, - ["SpellBlockChanceIfHitRecentlyInfluence1_"] = { type = "Suffix", affix = "of Redemption", "+(10-12)% Chance to Block Spell Damage if you were Damaged by a Hit Recently", statOrder = { 5361 }, level = 68, group = "SpellBlockChanceIfHitRecently", weightKey = { "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "block", "influence_mod" }, }, - ["SpellBlockChanceIfHitRecentlyInfluence2"] = { type = "Suffix", affix = "of Redemption", "+(13-15)% Chance to Block Spell Damage if you were Damaged by a Hit Recently", statOrder = { 5361 }, level = 73, group = "SpellBlockChanceIfHitRecently", weightKey = { "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "block", "influence_mod" }, }, - ["AdditionalProjectileWeaponInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "Skills fire an additional Projectile", statOrder = { 1673 }, level = 82, group = "AdditionalProjectiles", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "bow_adjudicator", "default", }, weightVal = { 200, 200, 200, 200, 200, 0 }, modTags = { "influence_mod" }, }, - ["SocketedSkillsChainInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Socketed Gems Chain 1 additional times", statOrder = { 459 }, level = 85, group = "DisplaySocketedSkillsChain", weightKey = { "bow_crusader", "default", }, weightVal = { 100, 0 }, modTags = { "skill", "influence_mod", "gem" }, }, - ["SocketedSkillsForkInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "Projectiles from Socketed Gems Fork", statOrder = { 482 }, level = 85, group = "DisplaySocketedSkillsFork", weightKey = { "bow_crusader", "default", }, weightVal = { 100, 0 }, modTags = { "skill", "influence_mod", "gem" }, }, - ["ProjectileDamagePerEnemyPiercedInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Projectiles deal (15-20)% increased Damage with Hits and Ailments for each Enemy Pierced", statOrder = { 9237 }, level = 68, group = "ProjectileDamagePerEnemyPierced", weightKey = { "bow_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, - ["ProjectileDamagePerEnemyPiercedInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "Projectiles deal (21-25)% increased Damage with Hits and Ailments for each Enemy Pierced", statOrder = { 9237 }, level = 70, group = "ProjectileDamagePerEnemyPierced", weightKey = { "bow_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, - ["ProjectileDamagePerEnemyPiercedInfluence3"] = { type = "Suffix", affix = "of the Crusade", "Projectiles deal (26-30)% increased Damage with Hits and Ailments for each Enemy Pierced", statOrder = { 9237 }, level = 73, group = "ProjectileDamagePerEnemyPierced", weightKey = { "bow_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, - ["PhysicalDamageAddedAsRandomElementInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Gain (7-8)% of Physical Damage as Extra Damage of a random Element", statOrder = { 2809 }, level = 68, group = "PhysicalDamageAddedAsRandomElement", weightKey = { "bow_crusader", "default", }, weightVal = { 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental" }, }, - ["PhysicalDamageAddedAsRandomElementInfluence2"] = { type = "Suffix", affix = "of the Crusade", "Gain (9-11)% of Physical Damage as Extra Damage of a random Element", statOrder = { 2809 }, level = 73, group = "PhysicalDamageAddedAsRandomElement", weightKey = { "bow_crusader", "default", }, weightVal = { 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental" }, }, - ["PhysicalDamageAddedAsRandomElementInfluence3"] = { type = "Suffix", affix = "of the Crusade", "Gain (12-15)% of Physical Damage as Extra Damage of a random Element", statOrder = { 2809 }, level = 78, group = "PhysicalDamageAddedAsRandomElement", weightKey = { "bow_crusader", "default", }, weightVal = { 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental" }, }, - ["ArcaneSurgeOnCritInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "(11-20)% chance to Gain Arcane Surge when you deal a Critical Strike", statOrder = { 6390 }, level = 75, group = "GainArcaneSurgeOnCrit", weightKey = { "wand_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "critical" }, }, - ["ArcaneSurgeOnCritInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(21-30)% chance to Gain Arcane Surge when you deal a Critical Strike", statOrder = { 6390 }, level = 80, group = "GainArcaneSurgeOnCrit", weightKey = { "wand_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "critical" }, }, - ["CurseOnHitFlammabilityWeaponInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Curse Enemies with Flammability on Hit", statOrder = { 2406 }, level = 78, group = "FlammabilityOnHitLevel", weightKey = { "wand_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, - ["CurseOnHitFrostbiteWeaponInfluence1"] = { type = "Suffix", affix = "of Redemption", "Curse Enemies with Frostbite on Hit", statOrder = { 2407 }, level = 78, group = "FrostbiteOnHitLevel", weightKey = { "wand_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, - ["CurseOnHitConductivityWeaponInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Curse Enemies with Conductivity on Hit", statOrder = { 2403 }, level = 78, group = "ConductivityOnHitLevel", weightKey = { "wand_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, - ["CurseOnHitDespairWeaponInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Curse Enemies with Despair on Hit", statOrder = { 2404 }, level = 78, group = "CurseOnHitDespair", weightKey = { "wand_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "caster", "curse" }, }, - ["ImpaleEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "(12-16)% increased Impale Effect", statOrder = { 6869 }, level = 58, group = "ImpaleEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, }, - ["ImpaleEffectEssence2__"] = { type = "Suffix", affix = "of the Essence", "(17-21)% increased Impale Effect", statOrder = { 6869 }, level = 74, group = "ImpaleEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, }, - ["ImpaleEffectEssence3"] = { type = "Suffix", affix = "of the Essence", "(22-25)% increased Impale Effect", statOrder = { 6869 }, level = 82, group = "ImpaleEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, }, - ["ImpaleEffectTwoHandEssence1"] = { type = "Suffix", affix = "of the Essence", "(25-29)% increased Impale Effect", statOrder = { 6869 }, level = 58, group = "ImpaleEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, }, - ["ImpaleEffectTwoHandEssence2_"] = { type = "Suffix", affix = "of the Essence", "(30-34)% increased Impale Effect", statOrder = { 6869 }, level = 74, group = "ImpaleEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, }, - ["ImpaleEffectTwoHandEssence3_"] = { type = "Suffix", affix = "of the Essence", "(35-38)% increased Impale Effect", statOrder = { 6869 }, level = 82, group = "ImpaleEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, }, - ["BreachBodyChaosDamageAsPortionOfFireDamage1_"] = { type = "Prefix", affix = "Chayula's", "Gain 10% of Fire Damage as Extra Chaos Damage", statOrder = { 1820 }, level = 1, group = "ChaosDamageAsPortionOfFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, }, - ["BreachBodyChaosDamageAsPortionOfColdDamage1"] = { type = "Prefix", affix = "Chayula's", "Gain 10% of Cold Damage as Extra Chaos Damage", statOrder = { 1819 }, level = 1, group = "ChaosDamageAsPortionOfColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "cold", "chaos" }, }, - ["BreachBodyChaosDamageAsPortionOfLightningDamage1"] = { type = "Prefix", affix = "Chayula's", "Gain 10% of Lightning Damage as Extra Chaos Damage", statOrder = { 1817 }, level = 1, group = "ChaosDamageAsPortionOfLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, }, - ["BreachBodyAllDefences1"] = { type = "Prefix", affix = "Chayula's", "50% increased Global Defences", statOrder = { 2707 }, level = 1, group = "AllDefences", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences" }, }, - ["BreachBodyLifeGainedOnHittingIgnitedEnemies1"] = { type = "Suffix", affix = "of Xoph", "Gain (20-30) Life for each Ignited Enemy hit with Attacks", statOrder = { 1624 }, level = 1, group = "LifeGainOnHitVsIgnitedEnemies", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, - ["BreachBodyNoExtraBleedDamageWhileMoving1_"] = { type = "Suffix", affix = "of Uul-Netol", "Moving while Bleeding doesn't cause you to take extra Damage", statOrder = { 3058 }, level = 1, group = "NoExtraBleedDamageWhileMoving", weightKey = { "default", }, weightVal = { 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["BreachBodyAddedColdDamagePerPowerCharge1"] = { type = "Prefix", affix = "Tul's", "Adds 10 to 15 Cold Damage to Spells per Power Charge", statOrder = { 1706 }, level = 1, group = "AddedColdDamagePerPowerCharge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["BreachBodyGainPowerChargeOnKillingFrozenEnemy1"] = { type = "Suffix", affix = "of Tul", "25% chance to gain a Power Charge on Killing a Frozen Enemy", statOrder = { 1705 }, level = 1, group = "GainPowerChargeOnKillingFrozenEnemy", weightKey = { "default", }, weightVal = { 0 }, modTags = { "power_charge" }, }, - ["BreachBodyIncreasedAttackSpeedPerDexterity1"] = { type = "Suffix", affix = "of Esh", "1% increased Attack Speed per 25 Dexterity", statOrder = { 4723 }, level = 1, group = "IncreasedAttackSpeedPerDexterity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, }, - ["BreachBodyPhysicalDamageReductionWhileNotMoving1"] = { type = "Suffix", affix = "of Uul-Netol", "6% additional Physical Damage Reduction while stationary", statOrder = { 4174 }, level = 1, group = "PhysicalDamageReductionWhileNotMoving", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, }, - ["BreachBodyAddedLightningDamagePerShockedEnemyKilled1"] = { type = "Prefix", affix = "Esh's", "Adds 1 to 5 Lightning Damage for each Shocked Enemy you've Killed Recently", statOrder = { 8784 }, level = 1, group = "AddedLightningDamagePerShockedEnemyKilled", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["BreachBodyReflectsShocks1"] = { type = "Suffix", affix = "of Esh", "Shock Reflection", statOrder = { 9377 }, level = 1, group = "ReflectsShocks", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["BreachBodyChaosDamageDoesNotBypassESNotLowLifeOrMana1_"] = { type = "Prefix", affix = "Esh's", "Chaos Damage taken does not bypass Energy Shield while not on Low Life", statOrder = { 5438 }, level = 1, group = "ChaosDamageDoesNotBypassESNotLowLifeOrMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos" }, }, - ["BreachBodyOnHitBlindChilledEnemies1"] = { type = "Suffix", affix = "of Tul", "Blind Chilled Enemies on Hit", statOrder = { 5028 }, level = 1, group = "OnHitBlindChilledEnemies", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["BreachBodyVulnerabilityOnHit1"] = { type = "Suffix", affix = "of Uul-Netol", "25% chance to Curse Enemies with Vulnerability on Hit", statOrder = { 2400 }, level = 1, group = "CurseLevel10VulnerabilityOnHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, }, - ["BreachBodyGrantsEnvy1"] = { type = "Prefix", affix = "Chayula's", "Grants Level 15 Envy Skill", statOrder = { 560 }, level = 1, group = "GrantsEnvy", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, }, - ["BreachBodyEnemiesBlockedAreIntimidated1"] = { type = "Prefix", affix = "Uul-Netol's", "Permanently Intimidate Enemies on Block", statOrder = { 9122 }, level = 1, group = "EnemiesBlockedAreIntimidated", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, - ["BreachBodyMinionsPoisonEnemiesOnHit1_"] = { type = "Suffix", affix = "of Chayula", "Minions have 60% chance to Poison Enemies on Hit", statOrder = { 3040 }, level = 1, group = "MinionsPoisonEnemiesOnHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "poison", "chaos", "minion", "ailment" }, }, - ["BreachBodyArmourIncreasedByUncappedFireResistance1____"] = { type = "Prefix", affix = "Xoph's", "Armour is increased by Overcapped Fire Resistance", statOrder = { 4588 }, level = 1, group = "ArmourIncreasedByUncappedFireResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, }, - ["BreachBodyEvasionIncreasedByUncappedColdResistance1"] = { type = "Prefix", affix = "Tul's", "Evasion Rating is increased by Overcapped Cold Resistance", statOrder = { 6159 }, level = 1, group = "EvasionIncreasedByUncappedColdResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, }, - ["BreachBodyCriticalChanceIncreasedByUncappedLightningResistance1"] = { type = "Suffix", affix = "of Esh", "Critical Strike Chance is increased by Overcapped Lightning Resistance", statOrder = { 5623 }, level = 1, group = "CriticalChanceIncreasedByUncappedLightningResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, }, - ["BreachBodyCoverInAshWhenHit1__"] = { type = "Prefix", affix = "Xoph's", "Cover Enemies in Ash when they Hit you", statOrder = { 4524 }, level = 1, group = "CoverInAshWhenHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["BreachBodyChillEnemiesWhenHit1"] = { type = "Suffix", affix = "of Tul", "Chill Enemy for 1 second when Hit, reducing their Action Speed by 30%", statOrder = { 3006 }, level = 1, group = "ChillEnemiesWhenHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["BreachBodyArcticArmourReservationCost1"] = { type = "Suffix", affix = "of Tul", "Arctic Armour has 100% increased Mana Reservation Efficiency", statOrder = { 4542 }, level = 1, group = "ArcticArmourReservationCost", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, - ["BreachBodyArcticArmourReservationEfficiency1"] = { type = "Suffix", affix = "of Tul", "Arctic Armour has 100% increased Mana Reservation Efficiency", statOrder = { 4543 }, level = 1, group = "ArcticArmourReservationEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, - ["BreachBodyMaximumLifeConvertedToEnergyShield1___"] = { type = "Prefix", affix = "Chayula's", "10% of Maximum Life Converted to Energy Shield", statOrder = { 8709 }, level = 1, group = "MaximumLifeConvertedToEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "energy_shield" }, }, - ["LocalIncreaseSocketedActiveGemLevelUberMaven"] = { type = "Prefix", affix = "Elevated Shaper's", "+1 to Level of Socketed Skill Gems", "+(5-10)% to Quality of Socketed Skill Gems", statOrder = { 169, 184 }, level = 90, group = "LocalIncreaseSocketedActiveSkillGemLevelMaven", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "gem" }, }, - ["LocalIncreaseSocketedSupportGemLevelUberMaven___"] = { type = "Prefix", affix = "Elevated Elder's", "+1 to Level of Socketed Support Gems", "+(5-10)% to Quality of Socketed Support Gems", statOrder = { 168, 183 }, level = 90, group = "LocalIncreaseSocketedSupportGemLevelMaven", weightKey = { "body_armour_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "gem" }, }, - ["PhysicalDamageTakenAsFirePercentUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "(16-18)% of Physical Damage from Hits taken as Fire Damage", "(7-10)% of Fire Damage taken Recouped as Life", statOrder = { 2323, 6241 }, level = 94, group = "PhysicalDamageTakenAsFireUberMaven", weightKey = { "body_armour_elder", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "physical", "elemental", "fire" }, }, - ["PhysicalDamageTakenAsColdPercentUberMaven"] = { type = "Prefix", affix = "Elevated Shaper's", "(16-18)% of Physical Damage from Hits taken as Cold Damage", "(7-10)% of Cold Damage taken Recouped as Life", statOrder = { 2324, 5524 }, level = 93, group = "PhysicalDamageTakenAsColdUberMaven", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "physical", "elemental", "cold" }, }, - ["PhysicalDamageTakenAsLightningPercentUberMaven"] = { type = "Prefix", affix = "Elevated Shaper's", "(16-18)% of Physical Damage from Hits taken as Lightning Damage", "(7-10)% of Lightning Damage taken Recouped as Life", statOrder = { 2325, 7063 }, level = 92, group = "PhysicalDamageTakenAsLightningUberMaven", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "physical", "elemental", "lightning" }, }, - ["ReducedElementalReflectTakenUberMaven_"] = { type = "Prefix", affix = "Elevated Shaper's", "(3-5)% reduced Elemental Damage taken", "You and your Minions take 100% reduced Reflected Elemental Damage", statOrder = { 3159, 6023 }, level = 85, group = "ReducedElementalReflectTakenMaven", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental" }, }, - ["ReducedPhysicalReflectTakenUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "(3-5)% reduced Physical Damage taken", "You and your Minions take 100% reduced Reflected Physical Damage", statOrder = { 2118, 9177 }, level = 85, group = "ReducedPhysicalReflectTakenMaven", weightKey = { "body_armour_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical" }, }, - ["MaximumLifeUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "(13-15)% increased maximum Life", statOrder = { 1453 }, level = 95, group = "MaximumLifeIncreasePercent", weightKey = { "body_armour_elder", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life" }, }, - ["MaximumManaBodyUberMaven__"] = { type = "Prefix", affix = "Elevated Shaper's", "(16-18)% increased maximum Mana", statOrder = { 1462 }, level = 85, group = "MaximumManaIncreaseShaper", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, - ["DamageTakenFromManaBeforeLifeUberMaven__"] = { type = "Prefix", affix = "Elevated Shaper's", "(11-15)% of Damage is taken from Mana before Life", statOrder = { 2572 }, level = 90, group = "DamageRemovedFromManaBeforeLife", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "mana" }, }, - ["MaximumLifeOnKillPercentUberMaven__"] = { type = "Suffix", affix = "of the Elevated Elder", "Recover (5-6)% of Life on Kill", "(5-10)% increased Life Recovery Rate if you haven't Killed Recently", statOrder = { 1630, 7005 }, level = 85, group = "MaximumLifeOnKillPercentMaven", weightKey = { "body_armour_elder", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life" }, }, - ["MaximumManaOnKillPercentUberMaven_"] = { type = "Suffix", affix = "of Elevated Shaping", "Recover (5-6)% of Mana on Kill", "(5-10)% increased Mana Recovery Rate if you haven't Killed Recently", statOrder = { 1632, 7763 }, level = 85, group = "MaximumManaOnKillPercentMaven", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, - ["MaximumEnergyShieldOnKillPercentUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Recover (5-6)% of Energy Shield on Kill", "(5-10)% increased Energy Shield Recovery Rate if you haven't Killed Recently", statOrder = { 1631, 6127 }, level = 85, group = "MaximumEnergyShieldOnKillPercentMaven", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, - ["PercentageStrengthUberMaven__"] = { type = "Suffix", affix = "of the Elevated Elder", "+1 to Level of Socketed Strength Gems", "(9-12)% increased Strength", statOrder = { 138, 1069 }, level = 93, group = "PercentageStrengthMaven", weightKey = { "body_armour_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attribute", "gem" }, }, - ["PercentageDexterityUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "+1 to Level of Socketed Dexterity Gems", "(9-12)% increased Dexterity", statOrder = { 139, 1070 }, level = 93, group = "PercentageDexterityMaven", weightKey = { "body_armour_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attribute", "gem" }, }, - ["PercentageIntelligenceUberMaven__"] = { type = "Suffix", affix = "of Elevated Shaping", "+1 to Level of Socketed Intelligence Gems", "(9-12)% increased Intelligence", statOrder = { 140, 1071 }, level = 93, group = "PercentageIntelligenceMaven", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attribute", "gem" }, }, - ["LifeRegenerationRatePercentUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Regenerate (2.1-3)% of Life per second", statOrder = { 1823 }, level = 85, group = "LifeRegenerationRatePercentage", weightKey = { "body_armour_elder", "amulet_elder", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "influence_mod", "life" }, }, - ["SupportedByItemRarityUberMaven__"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 20 Item Rarity", "(19-25)% increased Rarity of Items found from Slain Unique Enemies", statOrder = { 267, 9977 }, level = 95, group = "SupportedByItemRarityUnique", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem", "drop" }, }, - ["AdditionalCriticalStrikeChanceWithAttacksUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Attacks have +(1.6-2)% to Critical Strike Chance", statOrder = { 4617 }, level = 94, group = "AdditionalCriticalStrikeChanceWithAttacks", weightKey = { "body_armour_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack", "critical" }, }, - ["AdditionalCriticalStrikeChanceWithSpellsUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "+(1.6-2)% to Spell Critical Strike Chance", statOrder = { 9610 }, level = 94, group = "AdditionalCriticalStrikeChanceWithSpells", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "critical" }, }, - ["MaximumManaInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "(16-18)% increased maximum Mana", statOrder = { 1462 }, level = 90, group = "MaximumManaIncreasePercent", weightKey = { "helmet_crusader", "body_armour_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, - ["PhysTakenAsLightningInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "(16-18)% of Physical Damage from Hits taken as Lightning Damage", "(7-10)% of Lightning Damage taken Recouped as Life", statOrder = { 2325, 7063 }, level = 93, group = "PhysicalDamageTakenAsLightningUberMaven", weightKey = { "body_armour_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "physical", "elemental", "lightning" }, }, - ["ConsecratedGroundStationaryInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "You have Consecrated Ground around you while stationary", "Effects of Consecrated Ground you create Linger for 1 second", statOrder = { 5562, 10144 }, level = 85, group = "ConsecratedGroundStationaryMaven", weightKey = { "body_armour_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, - ["HolyPhysicalExplosionInfluenceMaven_"] = { type = "Prefix", affix = "Elevated Crusader's", "(8-12)% increased Area of Effect", "Enemies you Kill Explode, dealing 5% of their Life as Physical Damage", statOrder = { 1761, 6056 }, level = 95, group = "EnemiesExplodeOnDeathPhysicalMaven", weightKey = { "body_armour_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, }, - ["HolyPhysicalExplosionChanceInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "(8-12)% increased Area of Effect", "Enemies you Kill have a (31-35)% chance to Explode, dealing a tenth of their maximum Life as Physical Damage", statOrder = { 1761, 3170 }, level = 95, group = "EnemiesExplodeOnDeathPhysicalChanceMaven", weightKey = { "body_armour_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, }, - ["PercentageIntelligenceBodyInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "+1 to Level of Socketed Intelligence Gems", "(9-12)% increased Intelligence", statOrder = { 140, 1071 }, level = 85, group = "PercentageIntelligenceMaven", weightKey = { "body_armour_crusader", "amulet_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "attribute", "gem" }, }, - ["AddPowerChargeOnCritInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "15% chance to gain a Power Charge on Critical Strike", "3% increased Damage per Power Charge", statOrder = { 1711, 5766 }, level = 90, group = "PowerChargeOnCriticalStrikeChanceMaven", weightKey = { "body_armour_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "power_charge", "influence_mod", "critical" }, }, - ["EnergyShieldOnKillPercentInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "Recover (5-6)% of Energy Shield on Kill", "(5-10)% increased Energy Shield Recovery Rate if you haven't Killed Recently", statOrder = { 1631, 6127 }, level = 90, group = "MaximumEnergyShieldOnKillPercentMaven", weightKey = { "body_armour_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, - ["EnergyShieldRecoveryRateBodyInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "(12-15)% increased Energy Shield Recovery rate", "Regenerate (50-100) Energy Shield per second", statOrder = { 1450, 2520 }, level = 90, group = "EnergyShieldRecoveryRateMaven", weightKey = { "body_armour_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, - ["PhysTakenAsFireInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "(16-18)% of Physical Damage from Hits taken as Fire Damage", "(7-10)% of Fire Damage taken Recouped as Life", statOrder = { 2323, 6241 }, level = 93, group = "PhysicalDamageTakenAsFireUberMaven", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "physical", "elemental", "fire" }, }, - ["SocketedActiveGemLevelInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "+1 to Level of Socketed Skill Gems", "+(5-10)% to Quality of Socketed Skill Gems", statOrder = { 169, 184 }, level = 80, group = "LocalIncreaseSocketedActiveSkillGemLevelMaven", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "gem" }, }, - ["ReflectedPhysicalDamageInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "(3-5)% reduced Physical Damage taken", "You and your Minions take 100% reduced Reflected Physical Damage", statOrder = { 2118, 9177 }, level = 85, group = "ReducedPhysicalReflectTakenMaven", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical" }, }, - ["AllResistancesInfluenceMaven____"] = { type = "Suffix", affix = "of the Elevated Conquest", "+(19-22)% to all Elemental Resistances", "+1% to all maximum Elemental Resistances", statOrder = { 1501, 1524 }, level = 85, group = "AllResistancesMaven", weightKey = { "body_armour_adjudicator", "belt_adjudicator", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "resistance" }, }, - ["PercentageStrengthBodyInfluenceMaven_"] = { type = "Suffix", affix = "of the Elevated Conquest", "+1 to Level of Socketed Strength Gems", "(9-12)% increased Strength", statOrder = { 138, 1069 }, level = 85, group = "PercentageStrengthMaven", weightKey = { "body_armour_adjudicator", "amulet_adjudicator", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "attribute", "gem" }, }, - ["EnduranceChargeIfHitRecentlyInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "3% increased Area of Effect per Endurance Charge", "Gain 1 Endurance Charge every second if you've been Hit Recently", statOrder = { 4561, 6411 }, level = 90, group = "EnduranceChargeIfHitRecentlyMaven", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "endurance_charge", "influence_mod" }, }, - ["LifeOnKillPercentInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "Recover (5-6)% of Life on Kill", "(5-10)% increased Life Recovery Rate if you haven't Killed Recently", statOrder = { 1630, 7005 }, level = 90, group = "MaximumLifeOnKillPercentMaven", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life" }, }, - ["LifeRecoveryRateBodyInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "(12-15)% increased Life Recovery rate", "Life Flasks gain 1 Charge every 3 seconds", statOrder = { 1460, 6961 }, level = 90, group = "LifeRecoveryRateMaven", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "resource", "influence_mod", "life" }, }, - ["SocketedAttacksManaCostInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "Ignore Stuns while using Socketed Attack Skills", "Socketed Attacks have -20 to Total Mana Cost", statOrder = { 463, 467 }, level = 95, group = "SocketedAttacksManaCostMaven", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "skill", "resource", "influence_mod", "mana", "attack", "gem" }, }, - ["PhysTakenAsColdInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "(16-18)% of Physical Damage from Hits taken as Cold Damage", "(7-10)% of Cold Damage taken Recouped as Life", statOrder = { 2324, 5524 }, level = 93, group = "PhysicalDamageTakenAsColdUberMaven", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "physical", "elemental", "cold" }, }, - ["SocketedSupportGemLevelInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "+1 to Level of Socketed Support Gems", "+(5-10)% to Quality of Socketed Support Gems", statOrder = { 168, 183 }, level = 90, group = "LocalIncreaseSocketedSupportGemLevelMaven", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "gem" }, }, - ["ReflectedElementalDamageInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "(3-5)% reduced Elemental Damage taken", "You and your Minions take 100% reduced Reflected Elemental Damage", statOrder = { 3159, 6023 }, level = 85, group = "ReducedElementalReflectTakenMaven", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental" }, }, - ["NearbyEnemiesAreBlindedInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "Cannot be Blinded", "Nearby Enemies are Blinded", statOrder = { 2846, 3262 }, level = 85, group = "NearbyEnemiesAreBlindedMaven", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, - ["PercentageDexterityBodyInfluenceMaven_"] = { type = "Suffix", affix = "of Elevated Redemption", "+1 to Level of Socketed Dexterity Gems", "(9-12)% increased Dexterity", statOrder = { 139, 1070 }, level = 85, group = "PercentageDexterityMaven", weightKey = { "body_armour_eyrie", "amulet_eyrie", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "attribute", "gem" }, }, - ["FrenzyChargeOnHitChanceInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "1% increased Movement Speed per Frenzy Charge", "10% chance to gain a Frenzy Charge on Hit", statOrder = { 1683, 1714 }, level = 90, group = "FrenzyChargeOnHitChanceMaven", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "frenzy_charge", "influence_mod", "speed" }, }, - ["ManaOnKillPercentInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "Recover (5-6)% of Mana on Kill", "(5-10)% increased Mana Recovery Rate if you haven't Killed Recently", statOrder = { 1632, 7763 }, level = 90, group = "MaximumManaOnKillPercentMaven", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, - ["ManaRecoveryRateBodyInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(12-15)% increased Mana Recovery rate", "(20-35)% increased Mana Recovery from Flasks", statOrder = { 1468, 1937 }, level = 90, group = "ManaRecoveryRateMaven", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "resource", "influence_mod", "mana" }, }, - ["AuraEffectBodyInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(26-30)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3429 }, level = 90, group = "AuraEffect", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "aura" }, }, - ["MaximumLifeBodyInfluenceMaven__"] = { type = "Prefix", affix = "Elevated Hunter's", "(13-15)% increased maximum Life", statOrder = { 1453 }, level = 95, group = "MaximumLifeIncreasePercent", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "life" }, }, - ["PhysTakenAsChaosInfluenceMaven__"] = { type = "Prefix", affix = "Elevated Hunter's", "+1% to maximum Chaos Resistance", "(16-18)% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 1521, 2327 }, level = 93, group = "PhysicalDamageTakenAsChaosUberMaven", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "physical", "chaos", "resistance" }, }, - ["AdditionalCurseOnEnemiesInfluenceMaven_"] = { type = "Prefix", affix = "Elevated Hunter's", "You can apply an additional Curse", "20% increased Mana Reservation Efficiency of Curse Aura Skills", statOrder = { 2045, 5697 }, level = 92, group = "OLDAdditionalCurseOnEnemiesMaven", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana", "caster", "aura", "curse" }, }, - ["AdditionalCurseOnEnemiesInfluenceMavenV2___"] = { type = "Prefix", affix = "Elevated Hunter's", "You can apply an additional Curse", "20% increased Mana Reservation Efficiency of Curse Aura Skills", statOrder = { 2045, 5698 }, level = 92, group = "AdditionalCurseOnEnemiesMaven", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana", "caster", "aura", "curse" }, }, - ["RegenerateLifeOverMaven"] = { type = "Prefix", affix = "Elevated Hunter's", "Every 4 seconds, Regenerate 25% of Life over one second", statOrder = { 3649 }, level = 90, group = "RegenerateLifeOver1Second", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "life" }, }, - ["OfferingEffectInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "(26-35)% increased effect of Offerings", statOrder = { 3925 }, level = 90, group = "OfferingEffect", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["AdditionalCritWithAttacksInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "Attacks have +(1.6-2)% to Critical Strike Chance", statOrder = { 4617 }, level = 94, group = "AdditionalCriticalStrikeChanceWithAttacks", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "critical" }, }, - ["AdditionalCritWithSpellsInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "+(1.6-2)% to Spell Critical Strike Chance", statOrder = { 9610 }, level = 94, group = "AdditionalCriticalStrikeChanceWithSpells", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "caster", "critical" }, }, - ["LifeRegenerationPercentBodyInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "Regenerate (2.1-3)% of Life per second", statOrder = { 1823 }, level = 85, group = "LifeRegenerationRatePercentage", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "life" }, }, - ["AreaDamageSupportedUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "Socketed Gems are Supported by Level 25 Concentrated Effect", "(23-25)% increased Area Damage", statOrder = { 373, 1912 }, level = 92, group = "AreaDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, - ["AreaOfEffectSupportedUberMaven"] = { type = "Prefix", affix = "Elevated Shaper's", "Socketed Gems are Supported by Level 25 Increased Area of Effect", "(13-15)% increased Area of Effect", statOrder = { 202, 1761 }, level = 93, group = "AreaOfEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, }, - ["MaximumManaUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "(12-15)% increased maximum Mana", "Transfiguration of Mind", statOrder = { 1462, 4451 }, level = 85, group = "MaximumManaIncreasePercentMaven", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "damage" }, }, - ["MinionDamageSupportedUberMaven___"] = { type = "Prefix", affix = "Elevated Elder's", "Socketed Gems are Supported by Level 25 Minion Damage", "Minions deal (23-25)% increased Damage", statOrder = { 425, 1852 }, level = 93, group = "MinionDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "damage", "minion", "gem" }, }, - ["MinionLifeSupportedUberMaven_"] = { type = "Prefix", affix = "Elevated Elder's", "Socketed Gems are Supported by Level 25 Minion Life", "Minions have (23-25)% increased maximum Life", statOrder = { 423, 1647 }, level = 90, group = "MinionLifeSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "resource", "influence_mod", "life", "minion", "gem" }, }, - ["AdditionalMinesPlacedSupportedUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Blastchain Mine", "Throw an additional Mine", statOrder = { 417, 3412 }, level = 95, group = "AdditionalMinesPlacedSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, }, - ["MineDamageUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Blastchain Mine", "(31-35)% increased Mine Damage", statOrder = { 417, 1081 }, level = 90, group = "MineDamageSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, - ["MineDamageTrapUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Trap And Mine Damage", "(31-35)% increased Mine Damage", statOrder = { 377, 1081 }, level = 90, group = "MineDamageTrapSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, - ["IncreasedChillEffectSupportedUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Hypothermia", "(17-20)% increased Effect of Cold Ailments", statOrder = { 430, 5505 }, level = 90, group = "ChillEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "elemental", "cold", "ailment", "gem" }, }, - ["IncreasedShockEffectSupportedUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Innervate", "(17-20)% increased Effect of Lightning Ailments", statOrder = { 440, 7045 }, level = 90, group = "ShockEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "elemental", "lightning", "ailment", "gem" }, }, - ["IgniteDurationSupportedUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Gems are Supported by Level 25 Immolate", "(17-20)% increased Ignite Duration on Enemies", statOrder = { 257, 1740 }, level = 90, group = "IgniteDurationSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "elemental", "fire", "ailment", "gem" }, }, - ["IncreasedBurningDamageSupportedUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Gems are Supported by Level 25 Burning Damage", "(31-35)% increased Burning Damage", statOrder = { 260, 1758 }, level = 92, group = "BurningDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "fire", "gem" }, }, - ["ChanceToGainPowerChargeOnKillUberMaven"] = { type = "Prefix", affix = "Elevated Shaper's", "50% increased Power Charge Duration", "(11-15)% chance to gain a Power Charge on Kill", statOrder = { 2019, 2508 }, level = 94, group = "PowerChargeOnKillChanceMaven", weightKey = { "helmet_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "power_charge", "influence_mod" }, }, - ["SupportedByLessDurationUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "Socketed Gems are Supported by Level 25 Less Duration", statOrder = { 299 }, level = 78, group = "SupportedByLessDuration", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, }, - ["SpellAddedFireDamageUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "Adds (35-49) to (60-73) Fire Damage to Spells", statOrder = { 1288 }, level = 92, group = "SpellAddedFireDamageUber", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedColdDamageUberMaven"] = { type = "Prefix", affix = "Elevated Shaper's", "Adds (29-39) to (49-61) Cold Damage to Spells", statOrder = { 1289 }, level = 93, group = "SpellAddedColdDamageUber", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedLightningDamageUberMaven"] = { type = "Prefix", affix = "Elevated Shaper's", "Adds (2-8) to (101-121) Lightning Damage to Spells", statOrder = { 1290 }, level = 94, group = "SpellAddedLightningDamageUber", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedPhysicalDamageUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "Adds (35-49) to (60-73) Physical Damage to Spells", statOrder = { 1287 }, level = 95, group = "SpellAddedPhysicalDamage", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "caster_damage", "influence_mod", "damage", "physical", "caster" }, }, - ["SpellAddedChaosDamageUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "Adds (29-39) to (49-61) Chaos Damage to Spells", statOrder = { 1291 }, level = 95, group = "SpellAddedChaosDamage", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "caster_damage", "chaos_damage", "influence_mod", "damage", "chaos", "caster" }, }, - ["ManaRegenerationUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "(56-70)% increased Mana Regeneration Rate", "20% increased Mana Regeneration Rate while stationary", statOrder = { 1466, 4177 }, level = 85, group = "ManaRegenerationMaven", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, - ["AddedManaRegenerationUberMaven_"] = { type = "Suffix", affix = "of Elevated Shaping", "Regenerate (6-8) Mana per second", "Mana Flasks gain 1 Charge every 3 seconds", statOrder = { 1464, 7748 }, level = 90, group = "AddedManaRegenerationMaven", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "resource", "influence_mod", "mana" }, }, - ["AdditionalSpellBlockChanceUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "(5-6)% Chance to Block Spell Damage", "+1% to maximum Chance to Block Spell Damage", statOrder = { 1046, 1866 }, level = 90, group = "SpellBlockPercentageMaven", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "block", "influence_mod" }, }, - ["SocketedSpellCriticalStrikeChanceUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Spells have +4% to Critical Strike Chance", statOrder = { 484 }, level = 94, group = "SocketedSpellCriticalStrikeChance", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "skill", "influence_mod", "caster", "critical", "gem" }, }, - ["SocketedAttackCriticalStrikeChanceUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Attacks have +4% to Critical Strike Chance", statOrder = { 465 }, level = 93, group = "SocketedAttackCriticalStrikeChance", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "skill", "influence_mod", "attack", "critical", "gem" }, }, - ["EnemyPhysicalDamageTakenAuraUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Nearby Enemies take 12% increased Physical Damage", statOrder = { 7522 }, level = 95, group = "NearbyEnemyPhysicalDamageTaken", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, }, - ["EnemyElementalDamageTakenAuraUberMaven_"] = { type = "Suffix", affix = "of Elevated Shaping", "Nearby Enemies take 9% increased Elemental Damage", statOrder = { 7517 }, level = 95, group = "NearbyEnemyElementalDamageTaken", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, }, - ["LifeRegenerationPercentInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "Regenerate (1.6-2)% of Life per second", statOrder = { 1823 }, level = 83, group = "LifeRegenerationRatePercentage", weightKey = { "boots_adjudicator", "helmet_adjudicator", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "influence_mod", "life" }, }, - ["MaximumLightningResistanceInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "+3% to maximum Lightning Resistance", statOrder = { 1516 }, level = 95, group = "MaximumLightningResistance", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "resistance" }, }, - ["MaximumLightningResistanceInfluenceMavenNew"] = { type = "Suffix", affix = "of the Elevated Crusade", "+3% to maximum Lightning Resistance", statOrder = { 1516 }, level = 95, group = "MaximumLightningResistance", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "resistance" }, }, - ["PhysTakenAsLightningHelmInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "(11-13)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2325 }, level = 93, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical", "elemental", "lightning" }, }, - ["EnemyLightningResistanceAuraInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "Nearby Enemies have -12% to Lightning Resistance", statOrder = { 7520 }, level = 95, group = "NearbyEnemyLightningDamageResistance", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "resistance" }, }, - ["SpellBlockPercentInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "(5-6)% Chance to Block Spell Damage", "+1% to maximum Chance to Block Spell Damage", statOrder = { 1046, 1866 }, level = 90, group = "SpellBlockPercentageMaven", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "block", "influence_mod" }, }, - ["FortifyEffectInfluenceMaven_"] = { type = "Suffix", affix = "of the Elevated Crusade", "+500 to Armour while Fortified", "+(4.2-5) to maximum Fortification", statOrder = { 4592, 8672 }, level = 90, group = "FortifyEffectMaven", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "armour" }, }, - ["EnergyShieldRegenInfluenceMaven_"] = { type = "Suffix", affix = "of the Elevated Crusade", "(15-25)% increased Energy Shield Recharge Rate", "Regenerate (1-1.5)% of Energy Shield per second", statOrder = { 1447, 2521 }, level = 85, group = "EnergyShieldRegenerationPerMinuteMaven", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, - ["ReducedIgniteDurationInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "(51-60)% reduced Ignite Duration on you", "(36-50)% increased Damage if you've been Ignited Recently", statOrder = { 1756, 5745 }, level = 85, group = "ReducedBurnDurationMaven", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "ailment" }, }, - ["ReducedFreezeDurationInfluenceMaven__"] = { type = "Suffix", affix = "of the Elevated Crusade", "(51-60)% reduced Freeze Duration on you", "(4-7)% reduced Damage taken if you've been Frozen Recently", statOrder = { 1755, 5815 }, level = 85, group = "ReducedFreezeDurationMaven", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, }, - ["ReducedShockEffectInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "(45-75)% increased Critical Strike Chance if you've been Shocked Recently", "(51-60)% reduced Effect of Shock on you", statOrder = { 5630, 9507 }, level = 85, group = "ReducedShockEffectOnSelfMaven", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "critical", "ailment" }, }, - ["MaximumPowerChargeInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "+1 to Maximum Power Charges", "10% chance that if you would gain Power Charges, you instead gain up to", "your maximum number of Power Charges", statOrder = { 1695, 6440, 6440.1 }, level = 85, group = "IncreasedMaximumPowerChargesMaven", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "power_charge", "influence_mod" }, }, - ["PhysTakenAsFireHelmetInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "(11-13)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2323 }, level = 93, group = "PhysicalDamageTakenAsFireUber", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical", "elemental", "fire" }, }, - ["ElementalDamageInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "(19-22)% increased Elemental Damage", "Damage Penetrates (2-3)% of Enemy Elemental Resistances", statOrder = { 1857, 3422 }, level = 85, group = "ElementalDamagePercentMaven", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, }, - ["WarcryAreaOfEffectInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "15% increased Warcry Buff Effect", "Warcry Skills have (26-30)% increased Area of Effect", statOrder = { 10035, 10043 }, level = 85, group = "WarcryAreaOfEffectMaven", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, - ["EnemyFireResistanceAuraInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "Nearby Enemies have -12% to Fire Resistance", statOrder = { 7518 }, level = 95, group = "NearbyEnemyFireDamageResistance", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "resistance" }, }, - ["CriticalStrikeMultiplierInfluenceMaven__"] = { type = "Suffix", affix = "of the Elevated Conquest", "+(21-24)% to Global Critical Strike Multiplier", statOrder = { 1372 }, level = 85, group = "CriticalStrikeMultiplier", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "critical" }, }, - ["ManaRegenerationInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "(56-70)% increased Mana Regeneration Rate", "20% increased Mana Regeneration Rate while stationary", statOrder = { 1466, 4177 }, level = 85, group = "ManaRegenerationMaven", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, - ["GainAccuracyEqualToStrengthInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "1% increased Critical Strike Chance per 10 Strength", "Gain Accuracy Rating equal to your Strength", statOrder = { 5634, 6377 }, level = 85, group = "GainAccuracyEqualToStrengthMaven", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack", "critical" }, }, - ["MinionLifeInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "Minions have (36-40)% increased maximum Life", "Minions Regenerate (1-1.5)% of Life per second", statOrder = { 1647, 2785 }, level = 85, group = "MinionLifeMaven", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "minion" }, }, - ["PowerChargeOnKillInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "50% increased Power Charge Duration", "(11-15)% chance to gain a Power Charge on Kill", statOrder = { 2019, 2508 }, level = 90, group = "PowerChargeOnKillChanceMaven", weightKey = { "helmet_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "sceptre_eyrie", "wand_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "power_charge", "influence_mod" }, }, - ["PhysTakenAsColdHelmetInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "(11-13)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2324 }, level = 93, group = "PhysicalDamageTakenAsColdUber", weightKey = { "helmet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical", "elemental", "cold" }, }, - ["SpellsAdditionalUnleashSealInfluenceMaven___"] = { type = "Prefix", affix = "Elevated Redeemer's", "(50-75)% increased Critical Strike Chance with Spells which remove the maximum number of Seals", "Skills supported by Unleash have +1 to maximum number of Seals", statOrder = { 9622, 10168 }, level = 90, group = "SpellsAdditionalUnleashSealMaven", weightKey = { "helmet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "critical" }, }, - ["EnemyColdResistanceAuraInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "Nearby Enemies have -12% to Cold Resistance", statOrder = { 7516 }, level = 95, group = "NearbyEnemyColdDamageResistance", weightKey = { "helmet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "resistance" }, }, - ["ReducedManaReservationInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(12-14)% increased Mana Reservation Efficiency of Skills", statOrder = { 2109 }, level = 85, group = "ReducedReservation", weightKey = { "helmet_eyrie", "amulet_eyrie", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, - ["ManaReservationEfficiencyInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(11-14)% increased Mana Reservation Efficiency of Skills", statOrder = { 2105 }, level = 85, group = "ManaReservationEfficiency", weightKey = { "helmet_eyrie", "amulet_eyrie", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, - ["IgniteChanceAndDamageInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(10-15)% chance to Ignite", "Ignites you inflict deal Damage (10-15)% faster", statOrder = { 1903, 2440 }, level = 85, group = "IgniteChanceAndDamageMaven", weightKey = { "helmet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, }, - ["FreezeChanceAndDurationInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(10-15)% chance to Freeze", "Freeze Enemies as though dealing (30-50)% more Damage", statOrder = { 1906, 6736 }, level = 85, group = "FreezeChanceAndDurationMaven", weightKey = { "helmet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, }, - ["ShockChanceAndEffectInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(10-15)% chance to Shock", "Shock Enemies as though dealing (30-50)% more Damage", statOrder = { 1910, 6737 }, level = 85, group = "ShockChanceAndEffectMaven", weightKey = { "helmet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, }, - ["AddedManaRegenerationInfluenceMaven_"] = { type = "Suffix", affix = "of Elevated Redemption", "Regenerate (6-8) Mana per second", "Mana Flasks gain 1 Charge every 3 seconds", statOrder = { 1464, 7748 }, level = 85, group = "AddedManaRegenerationMaven", weightKey = { "helmet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "resource", "influence_mod", "mana" }, }, - ["SpellAddedFireDamageInfluenceMaven"] = { type = "Prefix", affix = "Elevated Hunter's", "Adds (35-49) to (60-73) Fire Damage to Spells", statOrder = { 1288 }, level = 85, group = "SpellAddedFireDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedColdDamageInfluenceMaven"] = { type = "Prefix", affix = "Elevated Hunter's", "Adds (29-39) to (49-61) Cold Damage to Spells", statOrder = { 1289 }, level = 85, group = "SpellAddedColdDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedLightningDamageInfluenceMaven_"] = { type = "Prefix", affix = "Elevated Hunter's", "Adds (2-8) to (101-121) Lightning Damage to Spells", statOrder = { 1290 }, level = 85, group = "SpellAddedLightningDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedPhysicalDamageInfluenceMaven"] = { type = "Prefix", affix = "Elevated Hunter's", "Adds (35-49) to (60-73) Physical Damage to Spells", statOrder = { 1287 }, level = 85, group = "SpellAddedPhysicalDamage", weightKey = { "helmet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["SpellAddedChaosDamageInfluenceMaven_"] = { type = "Prefix", affix = "Elevated Hunter's", "Adds (29-39) to (49-61) Chaos Damage to Spells", statOrder = { 1291 }, level = 85, group = "SpellAddedChaosDamage", weightKey = { "helmet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["EnemyChaosResistanceAuraInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "Nearby Enemies have -12% to Chaos Resistance", statOrder = { 7515 }, level = 95, group = "NearbyEnemyChaosDamageResistance", weightKey = { "helmet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "chaos_damage", "damage", "chaos", "resistance" }, }, - ["PercentageIntelligenceInfluenceMaven_"] = { type = "Suffix", affix = "of the Elevated Hunt", "(11-12)% increased Intelligence", statOrder = { 1071 }, level = 85, group = "PercentageIntelligence", weightKey = { "helmet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "attribute" }, }, - ["IgnitingConfluxInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "(20-30)% increased Ignite Duration on Enemies", "You have Igniting Conflux for 3 seconds every 8 seconds", statOrder = { 1740, 6484 }, level = 90, group = "IgnitingConfluxMaven", weightKey = { "helmet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ChillingConfluxInfluenceMaven_"] = { type = "Suffix", affix = "of the Elevated Hunt", "(20-30)% increased Chill Duration on Enemies", "You have Chilling Conflux for 3 seconds every 8 seconds", statOrder = { 1737, 6484 }, level = 90, group = "ChillingConfluxMaven", weightKey = { "helmet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ShockingConfluxInfluenceMaven_"] = { type = "Suffix", affix = "of the Elevated Hunt", "(20-30)% increased Shock Duration on Enemies", "You have Shocking Conflux for 3 seconds every 8 seconds", statOrder = { 1738, 6484 }, level = 90, group = "ShockingConfluxMaven", weightKey = { "helmet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["IncreasedAttackSpeedUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Gems are Supported by Level 25 Faster Attacks", "(13-14)% increased Attack Speed", statOrder = { 389, 1294 }, level = 92, group = "IncreasedAttackSpeedSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, }, - ["IncreasedCastSpeedUberMaven_"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Faster Casting", "(13-14)% increased Cast Speed", statOrder = { 420, 1330 }, level = 94, group = "IncreasedCastSpeedSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "caster", "speed", "gem" }, }, - ["IncreasedAttackAndCastSpeedUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "(13-14)% increased Attack and Cast Speed", "(5-10)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1923, 2865 }, level = 95, group = "IncreasedAttackAndCastSpeedSupportedMaven", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack", "caster", "speed" }, }, - ["SupportedByManaLeechUberMaven__"] = { type = "Prefix", affix = "Elevated Shaper's", "Socketed Gems are Supported by Level 20 Mana Leech", "(20-30)% increased Maximum total Mana Recovery per second from Leech", statOrder = { 433, 1614 }, level = 78, group = "DisplaySupportedByManaLeechMaven", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "resource", "influence_mod", "mana", "gem" }, }, - ["ProjectileSpeedUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "Socketed Gems are supported by Level 25 Faster Projectiles", "(26-30)% increased Projectile Speed", statOrder = { 402, 1677 }, level = 92, group = "ProjectileSpeedSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, }, - ["ProjectileDamageUberMaven_"] = { type = "Prefix", affix = "Elevated Shaper's", "Socketed Gems are Supported by Level 25 Slower Projectiles", "(23-25)% increased Projectile Damage", statOrder = { 309, 1873 }, level = 93, group = "ProjectileDamageSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, - ["ChanceToAvoidInterruptionWhileCastingUberMaven_"] = { type = "Suffix", affix = "of Elevated Shaping", "(31-60)% chance to Ignore Stuns while Casting", statOrder = { 1779 }, level = 90, group = "AvoidInterruptionWhileCasting", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, - ["IncreasedMeleeWeaponRangeUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "+(0.3-0.4) metres to Melee Strike Range", statOrder = { 2410 }, level = 95, group = "MeleeWeaponAndUnarmedRange", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack" }, }, - ["IncreasedMeleeWeaponRangeAndMeleeDamageUberMaven_"] = { type = "Suffix", affix = "of the Elevated Elder", "(13-16)% increased Melee Damage", "+(0.3-0.4) metres to Melee Strike Range", statOrder = { 1119, 2410 }, level = 95, group = "MeleeDamageAndMeleeRange", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "attack" }, }, - ["AdditionalTrapsThrownSupportedUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Trap", "Skills which Throw Traps throw up to 1 additional Trap", statOrder = { 374, 9043 }, level = 94, group = "AdditionalTrapsThrownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, }, - ["TrapDamageUberMaven_"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Trap", "(31-35)% increased Trap Damage", statOrder = { 374, 1079 }, level = 90, group = "TrapDamageSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, - ["TrapDamageCooldownUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Advanced Traps", "(31-35)% increased Trap Damage", statOrder = { 320, 1079 }, level = 90, group = "TrapDamageCooldownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, - ["TrapSpeedCooldownUberMaven_"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Advanced Traps", "(17-20)% increased Trap Throwing Speed", statOrder = { 320, 1806 }, level = 90, group = "TrapSpeedCooldownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, }, - ["TrapDamageMineUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Trap And Mine Damage", "(31-35)% increased Trap Damage", statOrder = { 377, 1079 }, level = 90, group = "TrapDamageMineSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, - ["PoisonDamageSupportedUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Gems are Supported by Level 25 Chance to Poison", "(31-35)% increased Damage with Poison", statOrder = { 442, 3047 }, level = 90, group = "PoisonDamageSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "chaos_damage", "poison", "influence_mod", "damage", "chaos", "ailment", "gem" }, }, - ["PoisonDurationSupportedUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Gems are Supported by Level 25 Chance to Poison", "(17-20)% increased Poison Duration", statOrder = { 442, 3036 }, level = 90, group = "PoisonDurationSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "poison", "influence_mod", "chaos", "ailment", "gem" }, }, - ["BleedingDamageUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Gems are Supported by Level 25 Chance To Bleed", "(31-35)% increased Damage with Bleeding", statOrder = { 218, 3035 }, level = 90, group = "BleedingDamageSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment", "gem" }, }, - ["ChanceToGainFrenzyChargeOnKillUberElderMaven"] = { type = "Prefix", affix = "Elevated Elder's", "50% increased Frenzy Charge Duration", "(7-10)% chance to gain a Frenzy Charge on Kill", statOrder = { 2004, 2506 }, level = 94, group = "FrenzyChargeOnKillChanceMaven", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "frenzy_charge", "influence_mod" }, }, - ["IncreasedAccuracySupportedUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Gems are supported by Level 25 Additional Accuracy", "(16-20)% increased Global Accuracy Rating", statOrder = { 400, 1318 }, level = 93, group = "IncreasedAccuracyPercentSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "attack", "gem" }, }, - ["AdditionalBlockChanceUberMaven___"] = { type = "Suffix", affix = "of the Elevated Elder", "(4-5)% Chance to Block Attack Damage", "+1% to maximum Chance to Block Attack Damage", statOrder = { 1027, 1865 }, level = 90, group = "BlockPercentMaven", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "block", "influence_mod" }, }, - ["BlindOnHitSupportedUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are supported by Level 25 Blind", "(9-10)% Global chance to Blind Enemies on hit", statOrder = { 390, 2830 }, level = 90, group = "BlindOnHitSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, }, - ["SocketedSpellCriticalMultiplierUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Spells have +90% to Critical Strike Multiplier", statOrder = { 485 }, level = 93, group = "SocketedSpellCriticalMultiplier", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "skill", "caster_damage", "influence_mod", "damage", "caster", "critical", "gem" }, }, - ["SocketedAttackCriticalMultiplierUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Attacks have +90% to Critical Strike Multiplier", statOrder = { 466 }, level = 94, group = "SocketedAttackCriticalMultiplier", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "skill", "influence_mod", "damage", "attack", "critical", "gem" }, }, - ["ChaosNonAilmentDamageOverTimeMultiplierUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "+(17-24)% to Chaos Damage over Time Multiplier", statOrder = { 1144 }, level = 90, group = "ChaosDamageOverTimeMultiplier", weightKey = { "gloves_elder", "amulet_elder", "default", }, weightVal = { 0, 0, 0 }, modTags = { "dot_multi", "chaos_damage", "influence_mod", "damage", "chaos" }, }, - ["ColdDamageOverTimeMultiplierUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "+(17-24)% to Cold Damage over Time Multiplier", statOrder = { 1141 }, level = 90, group = "ColdDamageOverTimeMultiplier", weightKey = { "gloves_shaper", "amulet_shaper", "default", }, weightVal = { 0, 0, 0 }, modTags = { "dot_multi", "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, }, - ["FireDamageOverTimeMultiplierUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "+(17-24)% to Fire Damage over Time Multiplier", statOrder = { 1136 }, level = 90, group = "FireDamageOverTimeMultiplier", weightKey = { "gloves_shaper", "amulet_shaper", "default", }, weightVal = { 0, 0, 0 }, modTags = { "dot_multi", "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, - ["PhysicalDamageOverTimeMultiplierUberMaven_"] = { type = "Suffix", affix = "of the Elevated Elder", "+(17-24)% to Physical Damage over Time Multiplier", statOrder = { 1132 }, level = 90, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "gloves_elder", "amulet_elder", "default", }, weightVal = { 0, 0, 0 }, modTags = { "dot_multi", "physical_damage", "influence_mod", "damage", "physical" }, }, - ["AvoidStunInfluenceMaven__"] = { type = "Suffix", affix = "of the Elevated Conquest", "(36-50)% chance to Avoid being Stunned", statOrder = { 1732 }, level = 85, group = "AvoidStun", weightKey = { "boots_adjudicator", "gloves_adjudicator", "quiver_adjudicator", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "influence_mod" }, }, - ["MaximumColdResistanceInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "+3% to maximum Cold Resistance", statOrder = { 1511 }, level = 95, group = "MaximumColdResist", weightKey = { "gloves_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "resistance" }, }, - ["MaximumColdResistanceInfluenceMavenNew"] = { type = "Suffix", affix = "of the Elevated Crusade", "+3% to maximum Cold Resistance", statOrder = { 1511 }, level = 95, group = "MaximumColdResist", weightKey = { "gloves_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "resistance" }, }, - ["ConvertPhysicalToFireInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "Gain (3-5)% of Physical Damage as Extra Fire Damage", "(22-25)% of Physical Damage Converted to Fire Damage", statOrder = { 1811, 1834 }, level = 81, group = "ConvertPhysicalToFireMaven", weightKey = { "gloves_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, }, - ["ConvertPhysicalToColdInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "Gain (3-5)% of Physical Damage as Extra Cold Damage", "(22-25)% of Physical Damage Converted to Cold Damage", statOrder = { 1812, 1836 }, level = 81, group = "ConvertPhysicalToColdMaven", weightKey = { "gloves_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, }, - ["ConvertPhysicalToLightningInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "Gain (3-5)% of Physical Damage as Extra Lightning Damage", "(22-25)% of Physical Damage Converted to Lightning Damage", statOrder = { 1813, 1838 }, level = 81, group = "ConvertPhysicalToLightningMaven", weightKey = { "gloves_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, }, - ["MaximumLifeLeechRateInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "20% increased Maximum total Life Recovery per second from Leech", statOrder = { 1612 }, level = 85, group = "MaximumLifeLeechRate", weightKey = { "gloves_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life" }, }, - ["MaximumEnergyShieldLeechRateInfluenceMaven_"] = { type = "Prefix", affix = "Elevated Crusader's", "30% increased Maximum total Energy Shield Recovery per second from Leech", statOrder = { 1615 }, level = 85, group = "MaximumEnergyShieldLeechRate", weightKey = { "gloves_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, - ["AvoidInterruptionWhileCastingInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "(31-60)% chance to Ignore Stuns while Casting", statOrder = { 1779 }, level = 85, group = "AvoidInterruptionWhileCasting", weightKey = { "gloves_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, - ["GlobalCriticalStrikeChanceInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "(31-60)% increased Global Critical Strike Chance", statOrder = { 1343 }, level = 85, group = "CriticalStrikeChance", weightKey = { "gloves_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "critical" }, }, - ["MaximumFrenzyChargeInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "+1 to Maximum Frenzy Charges", "10% chance that if you would gain Frenzy Charges, you instead gain up to your maximum number of Frenzy Charges", statOrder = { 1690, 6438 }, level = 85, group = "MaximumFrenzyChargesMaven", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "frenzy_charge", "influence_mod" }, }, - ["MeleeDamageInfluenceMaven__"] = { type = "Prefix", affix = "Elevated Warlord's", "(31-38)% increased Melee Damage", statOrder = { 1119 }, level = 83, group = "MeleeDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "attack" }, }, - ["ProjectileAttackDamageInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "(31-38)% increased Projectile Attack Damage", statOrder = { 1874 }, level = 83, group = "ProjectileAttackDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "attack" }, }, - ["SpellDamageInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "(31-38)% increased Spell Damage", statOrder = { 1108 }, level = 83, group = "SpellDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, }, - ["DamageOverTimeInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "(31-38)% increased Damage over Time", statOrder = { 1095 }, level = 83, group = "DegenerationDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage" }, }, - ["MeleeWeaponRangeInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "+(0.3-0.4) metres to Melee Strike Range", statOrder = { 2410 }, level = 92, group = "MeleeWeaponAndUnarmedRange", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack" }, }, - ["BlockPercentInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "(4-5)% Chance to Block Attack Damage", "+1% to maximum Chance to Block Attack Damage", statOrder = { 1027, 1865 }, level = 90, group = "BlockPercentMaven", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "block", "influence_mod" }, }, - ["CullingStrikeInfluenceMaven__"] = { type = "Suffix", affix = "of the Elevated Conquest", "Culling Strike", "(15-25)% increased Area of Effect if you've dealt a Culling Strike Recently", statOrder = { 1916, 4553 }, level = 83, group = "CullingStrikeMaven", weightKey = { "gloves_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "bow_adjudicator", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "influence_mod" }, }, - ["FrenzyChargeOnKillInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "50% increased Frenzy Charge Duration", "(7-10)% chance to gain a Frenzy Charge on Kill", statOrder = { 2004, 2506 }, level = 90, group = "FrenzyChargeOnKillChanceMaven", weightKey = { "gloves_eyrie", "quiver_eyrie", "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "bow_eyrie", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "frenzy_charge", "influence_mod" }, }, - ["AddedPhysicalDamageCritRecentlyInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "Adds (9-12) to (13-16) Physical Damage if you've dealt a Critical Strike Recently", statOrder = { 8788 }, level = 83, group = "AddedPhysicalDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, }, - ["AddedFireDamageCritRecentlyInfluenceMaven_"] = { type = "Prefix", affix = "Elevated Redeemer's", "Adds (26-30) to (36-45) Fire Damage if you've dealt a Critical Strike Recently", statOrder = { 8777 }, level = 83, group = "AddedFireDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, - ["AddedColdDamageCritRecentlyInfluenceMaven_"] = { type = "Prefix", affix = "Elevated Redeemer's", "Adds (26-30) to (36-45) Cold Damage if you've dealt a Critical Strike Recently", statOrder = { 8772 }, level = 83, group = "AddedColdDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, }, - ["AddedLightningDamageCritRecentlyInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "Adds 1 to (61-90) Lightning Damage if you've dealt a Critical Strike Recently", statOrder = { 8782 }, level = 83, group = "AddedLightningDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, }, - ["MinionDamageInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "Minions deal (31-45)% increased Damage", statOrder = { 1852 }, level = 83, group = "MinionDamage", weightKey = { "gloves_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "minion" }, }, - ["IncreasedAccuracyPercentInfluenceMaven_"] = { type = "Suffix", affix = "of Elevated Redemption", "(21-30)% increased Global Accuracy Rating", statOrder = { 1318 }, level = 90, group = "IncreasedAccuracyPercent", weightKey = { "gloves_eyrie", "quiver_eyrie", "ring_eyrie", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "influence_mod", "attack" }, }, - ["GlobalChanceToBlindOnHitInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(20-30)% increased Damage with Hits and Ailments against Blinded Enemies", "(12-15)% Global chance to Blind Enemies on hit", statOrder = { 2686, 2830 }, level = 90, group = "GlobalChanceToBlindOnHitMaven", weightKey = { "gloves_eyrie", "quiver_eyrie", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "damage" }, }, - ["AdditionalChanceToEvadeInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(7-12)% increased Attack and Cast Speed if you haven't been Hit Recently", "+(2-4)% chance to Evade Attack Hits", statOrder = { 4640, 5383 }, level = 85, group = "AdditionalChanceToEvadeMaven", weightKey = { "gloves_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "evasion", "attack", "caster", "speed" }, }, - ["ChanceToIntimidateOnHitInfluenceMaven"] = { type = "Prefix", affix = "Elevated Hunter's", "Intimidate Enemies for 4 seconds on Hit", statOrder = { 5424 }, level = 95, group = "ChanceToIntimidateOnHit", weightKey = { "gloves_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["ChanceToUnnerveOnHitInfluenceMaven"] = { type = "Prefix", affix = "Elevated Hunter's", "Unnerve Enemies for 4 seconds on Hit", statOrder = { 5434 }, level = 95, group = "ChanceToUnnerveOnHit", weightKey = { "gloves_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["StrikeSkillsAdditionalTargetInfluenceMaven"] = { type = "Prefix", affix = "Elevated Hunter's", "Non-Vaal Strike Skills target 2 additional nearby Enemies", statOrder = { 8728 }, level = 90, group = "StrikeSkillsAdditionalTarget", weightKey = { "gloves_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, }, - ["ChanceToImpaleInfluenceMaven_"] = { type = "Prefix", affix = "Elevated Hunter's", "(21-25)% chance to Impale Enemies on Hit with Attacks", "Adds (1-2) to (3-5) Physical Damage for each Impale on Enemy", statOrder = { 4739, 8790 }, level = 90, group = "AttackImpaleChanceMaven", weightKey = { "gloves_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "physical", "attack" }, }, - ["AilmentDurationInfluenceMaven"] = { type = "Prefix", affix = "Elevated Hunter's", "(13-15)% increased Duration of Ailments on Enemies", "(13-15)% increased Effect of Non-Damaging Ailments", statOrder = { 1741, 9017 }, level = 90, group = "IncreasedAilmentDurationMaven", weightKey = { "gloves_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "ailment" }, }, - ["PercentageDexterityInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "(11-12)% increased Dexterity", statOrder = { 1070 }, level = 85, group = "PercentageDexterity", weightKey = { "gloves_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "attribute" }, }, - ["FireDamageOverTimeMultiplierInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "+(21-25)% to Fire Damage over Time Multiplier", statOrder = { 1136 }, level = 90, group = "FireDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 0, 0, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, - ["ColdDamageOverTimeMultiplierInfluenceMaven_"] = { type = "Suffix", affix = "of the Elevated Hunt", "+(21-25)% to Cold Damage over Time Multiplier", statOrder = { 1141 }, level = 90, group = "ColdDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 0, 0, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["ChaosDamageOverTimeMultiplierInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "+(21-25)% to Chaos Damage over Time Multiplier", statOrder = { 1144 }, level = 90, group = "ChaosDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 0, 0, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["PhysicalDamageOverTimeMultiplierInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "+(21-25)% to Physical Damage over Time Multiplier", statOrder = { 1132 }, level = 90, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 0, 0, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, - ["ManaGainPerTargetInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "Gain (3-5) Mana per Enemy Hit with Attacks", "(10-20)% increased Attack Speed while not on Low Mana", statOrder = { 1625, 4727 }, level = 78, group = "ManaGainPerTargetMaven", weightKey = { "gloves_basilisk", "quiver_basilisk", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana", "attack", "speed" }, }, - ["IncreasedDurationBootsUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Gems are Supported by Level 20 More Duration", "(10-15)% increased Skill Effect Duration", statOrder = { 262, 1776 }, level = 78, group = "SkillEffectDurationSupported", weightKey = { "boots_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, }, - ["IncreasedCooldownRecoveryBootsUberMaven_"] = { type = "Suffix", affix = "of Elevated Shaping", "(16-20)% increased Cooldown Recovery Rate", statOrder = { 4822 }, level = 90, group = "GlobalCooldownRecovery", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, - ["SupportedByFortifyUberMaven_"] = { type = "Prefix", affix = "Elevated Elder's", "Socketed Gems are Supported by Level 25 Fortify", statOrder = { 416 }, level = 78, group = "DisplaySocketedGemsSupportedByFortify", weightKey = { "boots_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, }, - ["ImmuneToChilledGroundUberMaven"] = { type = "Prefix", affix = "Elevated Shaper's", "Unaffected by Chill", statOrder = { 9933 }, level = 78, group = "ChilledGroundEffectEffectivenessMaven", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, }, - ["ImmuneToBurningGroundUberMaven_"] = { type = "Prefix", affix = "Elevated Shaper's", "Unaffected by Ignite", statOrder = { 9948 }, level = 78, group = "BurningGroundEffectEffectivenessMaven", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "ailment" }, }, - ["ImmuneToShockedGroundUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "Unaffected by Shock", statOrder = { 9952 }, level = 78, group = "ShockedGroundEffectEffectivenessMaven", weightKey = { "boots_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, }, - ["ImmuneToDesecratedGroundUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "Unaffected by Poison", statOrder = { 4869 }, level = 78, group = "DesecratedGroundEffectEffectivenessMaven", weightKey = { "boots_elder", "default", }, weightVal = { 0, 0 }, modTags = { "poison", "influence_mod", "chaos", "ailment" }, }, - ["ChanceToDodgeUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "+(16-18)% chance to Suppress Spell Damage", statOrder = { 1031 }, level = 94, group = "ChanceToSuppressSpellsMavenOld", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, - ["ChanceToDodgeSpellsUberMaven_"] = { type = "Suffix", affix = "of the Elevated Elder", "+(16-18)% chance to Suppress Spell Damage", statOrder = { 1031 }, level = 93, group = "ChanceToSuppressSpellsMavenOld", weightKey = { "boots_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, - ["ChanceToAvoidStunUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "(36-50)% chance to Avoid being Stunned", statOrder = { 1732 }, level = 92, group = "AvoidStun", weightKey = { "boots_elder", "quiver_elder", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod" }, }, - ["ChanceToAvoidElementalAilmentsUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "(36-45)% chance to Avoid Elemental Ailments", statOrder = { 1724 }, level = 91, group = "AvoidElementalStatusAilments", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "cold", "lightning", "ailment" }, }, - ["ChanceToAvoidProjectilesUberMaven___"] = { type = "Suffix", affix = "of Elevated Shaping", "(11-15)% chance to avoid Projectiles if you've taken Projectile Damage Recently", "(10-12)% chance to avoid Projectiles", statOrder = { 4769, 4810 }, level = 94, group = "ChanceToAvoidProjectilesMaven", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, - ["ChanceToGainEnduranceChargeOnKillUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "50% increased Endurance Charge Duration", "(7-10)% chance to gain an Endurance Charge on Kill", statOrder = { 2002, 2504 }, level = 93, group = "EnduranceChargeOnKillChanceMaven", weightKey = { "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "staff_elder", "warstaff_elder", "boots_elder", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "endurance_charge", "influence_mod" }, }, - ["TotemDamageSpellUberMaven_"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Gems are Supported by Level 25 Spell Totem", "(31-35)% increased Totem Damage", statOrder = { 384, 1078 }, level = 90, group = "TotemDamageSpellSupported", weightKey = { "boots_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, - ["TotemSpeedSpellUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Gems are Supported by Level 25 Spell Totem", "(17-20)% increased Totem Placement speed", statOrder = { 384, 2454 }, level = 90, group = "TotemSpeedSpellSupported", weightKey = { "boots_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, }, - ["TotemDamageAttackUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Ballista Totem", "(31-35)% increased Totem Damage", statOrder = { 296, 1078 }, level = 90, group = "TotemDamageAttackSupported", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, - ["TotemSpeedAttackUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Ballista Totem", "(17-20)% increased Totem Placement speed", statOrder = { 296, 2454 }, level = 90, group = "TotemSpeedAttackSupported", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, }, - ["SupportedByLifeLeechUberMaven__"] = { type = "Prefix", affix = "Elevated Shaper's", "Socketed Gems are supported by Level 20 Life Leech", statOrder = { 403 }, level = 78, group = "SupportedByLifeLeech", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, }, - ["GrantsDecoyTotemSkillUberMaven_"] = { type = "Suffix", affix = "of Elevated Shaping", "Grants Level 25 Decoy Totem Skill", statOrder = { 602 }, level = 78, group = "DecoyTotemSkill", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "skill", "influence_mod" }, }, - ["GlobalRaiseSpectreGemLevelUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "+2 to Level of all Raise Spectre Gems", statOrder = { 1498 }, level = 85, group = "MinionGlobalSkillLevel", weightKey = { "boots_elder", "default", }, weightVal = { 0, 0 }, modTags = { "skill", "influence_mod", "minion", "gem" }, }, - ["UnaffectedByShockedGroundInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "Unaffected by Shock", statOrder = { 9952 }, level = 78, group = "ShockedGroundEffectEffectivenessMaven", weightKey = { "boots_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, }, - ["SocketedLightningGemLevelInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "+2 to Level of Socketed Lightning Gems", "+(3-7)% to Quality of Socketed Lightning Gems", statOrder = { 148, 194 }, level = 78, group = "LocalIncreaseSocketedLightningGemLevelMaven", weightKey = { "boots_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "gem" }, }, - ["MaximumFireResistanceInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "+3% to maximum Fire Resistance", statOrder = { 1505 }, level = 95, group = "MaximumFireResist", weightKey = { "boots_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "resistance" }, }, - ["MaximumFireResistanceInfluenceMavenNew"] = { type = "Suffix", affix = "of the Elevated Crusade", "+3% to maximum Fire Resistance", statOrder = { 1505 }, level = 95, group = "MaximumFireResist", weightKey = { "boots_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "resistance" }, }, - ["PhysicalAddedAsExtraLightningBootsInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "Gain (9-11)% of Physical Damage as Extra Lightning Damage", statOrder = { 1813 }, level = 85, group = "PhysicalAddedAsLightning", weightKey = { "boots_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, }, - ["CooldownRecoveryInfluenceMaven_"] = { type = "Suffix", affix = "of the Elevated Crusade", "(16-20)% increased Cooldown Recovery Rate", statOrder = { 4822 }, level = 90, group = "GlobalCooldownRecovery", weightKey = { "boots_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, - ["AvoidIgniteInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "(71-80)% chance to Avoid being Ignited", statOrder = { 1727 }, level = 85, group = "AvoidIgnite", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "ailment" }, }, - ["AvoidFreezeInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "(71-80)% chance to Avoid being Frozen", statOrder = { 1726 }, level = 85, group = "AvoidFreeze", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, }, - ["AvoidShockInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "(71-80)% chance to Avoid being Shocked", statOrder = { 1729 }, level = 85, group = "AvoidShock", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, }, - ["AvoidProjectilesInfluenceMaven_"] = { type = "Suffix", affix = "of Elevated Redemption", "(11-15)% chance to avoid Projectiles if you've taken Projectile Damage Recently", "(10-12)% chance to avoid Projectiles", statOrder = { 4769, 4810 }, level = 83, group = "ChanceToAvoidProjectilesMaven", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, - ["UnaffectedByBurningGroundInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "Unaffected by Ignite", statOrder = { 9948 }, level = 78, group = "BurningGroundEffectEffectivenessMaven", weightKey = { "boots_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "ailment" }, }, - ["SocketedFireGemLevelInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "+2 to Level of Socketed Fire Gems", "+(3-7)% to Quality of Socketed Fire Gems", statOrder = { 146, 192 }, level = 78, group = "LocalIncreaseSocketedFireGemLevelMaven", weightKey = { "boots_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "gem" }, }, - ["MaximumEnduranceChargeInfluenceMaven__"] = { type = "Prefix", affix = "Elevated Warlord's", "+1 to Maximum Endurance Charges", "10% chance that if you would gain Endurance Charges, you instead gain up to maximum Endurance Charges", statOrder = { 1685, 4100 }, level = 85, group = "MaximumEnduranceChargesMaven", weightKey = { "boots_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "endurance_charge", "influence_mod" }, }, - ["PhysicalAddedAsExtraFireBootsInfluenceMaven___"] = { type = "Prefix", affix = "Elevated Warlord's", "Gain (9-11)% of Physical Damage as Extra Fire Damage", statOrder = { 1811 }, level = 85, group = "PhysicalAddedAsFire", weightKey = { "boots_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, }, - ["AvoidFireDamageInfluenceMaven_____"] = { type = "Suffix", affix = "of the Elevated Conquest", "+(20-30)% to Fire Resistance", "(8-10)% chance to Avoid Fire Damage from Hits", statOrder = { 1507, 3239 }, level = 90, group = "FireDamageAvoidanceMaven", weightKey = { "boots_adjudicator", "shield_adjudicator", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "resistance" }, }, - ["AvoidColdDamageInfluenceMaven_"] = { type = "Suffix", affix = "of the Elevated Conquest", "+(20-30)% to Cold Resistance", "(8-10)% chance to Avoid Cold Damage from Hits", statOrder = { 1513, 3240 }, level = 90, group = "ColdDamageAvoidanceMaven", weightKey = { "boots_adjudicator", "shield_adjudicator", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "resistance" }, }, - ["AvoidLightningDamageInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "+(20-30)% to Lightning Resistance", "(8-10)% chance to Avoid Lightning Damage from Hits", statOrder = { 1518, 3241 }, level = 90, group = "LightningDamageAvoidanceMaven", weightKey = { "boots_adjudicator", "shield_adjudicator", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "resistance" }, }, - ["AdditionalPhysicalDamageReductionInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "(15-20)% increased Armour", "(2-4)% additional Physical Damage Reduction", statOrder = { 1424, 2150 }, level = 85, group = "ReducedPhysicalDamageTakenMaven", weightKey = { "boots_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "armour", "physical" }, }, - ["UnaffectedByChilledGroundInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "Unaffected by Chill", statOrder = { 9933 }, level = 78, group = "ChilledGroundEffectEffectivenessMaven", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, }, - ["SocketedColdGemLevelInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "+2 to Level of Socketed Cold Gems", "+(3-7)% to Quality of Socketed Cold Gems", statOrder = { 147, 189 }, level = 78, group = "LocalIncreaseSocketedColdGemLevelMaven", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "gem" }, }, - ["EnduranceChargeOnKillInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "50% increased Endurance Charge Duration", "(7-10)% chance to gain an Endurance Charge on Kill", statOrder = { 2002, 2504 }, level = 90, group = "EnduranceChargeOnKillChanceMaven", weightKey = { "boots_eyrie", "sword_eyrie", "axe_eyrie", "mace_eyrie", "sceptre_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "endurance_charge", "influence_mod" }, }, - ["PhysicalAddedAsExtraColdBootsInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "Gain (9-11)% of Physical Damage as Extra Cold Damage", statOrder = { 1812 }, level = 85, group = "PhysicalAddedAsCold", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, }, - ["ElusiveOnCriticalStrikeInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "(11-20)% chance to gain Elusive on Critical Strike", "(5-10)% increased Elusive Effect", statOrder = { 4142, 6038 }, level = 85, group = "ElusiveOnCriticalStrikeMaven", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "critical" }, }, - ["ChanceToDodgeAttacksInfluenceMaven__"] = { type = "Suffix", affix = "of Elevated Redemption", "+(16-18)% chance to Suppress Spell Damage", statOrder = { 1031 }, level = 90, group = "ChanceToSuppressSpellsMavenOld", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, - ["ChanceToDodgeSpellsInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "+(16-18)% chance to Suppress Spell Damage", statOrder = { 1031 }, level = 90, group = "ChanceToSuppressSpellsMavenOld", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, - ["IncreasedAilmentEffectOnEnemiesInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(41-60)% increased Effect of Non-Damaging Ailments", statOrder = { 9017 }, level = 83, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "ailment" }, }, - ["OnslaughtOnKillInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(8-10)% chance to gain Onslaught for 4 seconds on Kill", "(3-10)% increased Attack, Cast and Movement Speed while you have Onslaught", statOrder = { 2865, 4662 }, level = 90, group = "ChanceToGainOnslaughtOnKillMaven", weightKey = { "boots_eyrie", "quiver_eyrie", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "attack", "caster", "speed" }, }, - ["UnaffectedByDesecratedGroundInfluenceMaven"] = { type = "Prefix", affix = "Elevated Hunter's", "Unaffected by Poison", statOrder = { 4869 }, level = 78, group = "DesecratedGroundEffectEffectivenessMaven", weightKey = { "boots_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["SocketedChaosGemLevelInfluenceMaven"] = { type = "Prefix", affix = "Elevated Hunter's", "+2 to Level of Socketed Chaos Gems", "+(3-7)% to Quality of Socketed Chaos Gems", statOrder = { 149, 188 }, level = 78, group = "LocalIncreaseSocketedChaosGemLevelMaven", weightKey = { "boots_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "chaos", "gem" }, }, - ["AdditionalPierceInfluenceMaven__"] = { type = "Prefix", affix = "Elevated Hunter's", "Projectiles Pierce (3-5) additional Targets", statOrder = { 1671 }, level = 90, group = "AdditionalPierce", weightKey = { "boots_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["PercentageStrengthInfluenceMaven_"] = { type = "Suffix", affix = "of the Elevated Hunt", "(11-12)% increased Strength", statOrder = { 1069 }, level = 85, group = "PercentageStrength", weightKey = { "boots_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "attribute" }, }, - ["AvoidBleedAndPoisonInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "(61-70)% chance to Avoid being Poisoned", "(61-70)% chance to Avoid Bleeding", statOrder = { 1730, 4077 }, level = 85, group = "AvoidBleedAndPoison", weightKey = { "boots_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "bleed", "poison", "physical", "chaos", "attack", "ailment" }, }, - ["TailwindOnCriticalStrikeInfluenceMaven_"] = { type = "Suffix", affix = "of the Elevated Hunt", "(10-25)% increased Effect of Tailwind on you", "You have Tailwind if you have dealt a Critical Strike Recently", statOrder = { 9826, 9828 }, level = 85, group = "TailwindOnCriticalStrikeMaven", weightKey = { "boots_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["FasterIgniteInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "(10-20)% increased Ignite Duration on Enemies", "Ignites you inflict deal Damage (11-15)% faster", statOrder = { 1740, 2440 }, level = 83, group = "FasterIgniteDamageMaven", weightKey = { "boots_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, - ["FasterBleedInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "(10-20)% increased Bleeding Duration", "Bleeding you inflict deals Damage (11-15)% faster", statOrder = { 4811, 6214 }, level = 83, group = "FasterBleedDamageMaven", weightKey = { "boots_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, - ["FasterPoisonInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "(10-20)% increased Poison Duration", "Poisons you inflict deal Damage (11-15)% faster", statOrder = { 3036, 6215 }, level = 83, group = "FasterPoisonDamageMaven", weightKey = { "boots_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["LocalIncreasedWard1"] = { type = "Prefix", affix = "Farrier's", "+(5-9) to Ward", statOrder = { 1411 }, level = 3, group = "LocalWard", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, - ["LocalIncreasedWard2"] = { type = "Prefix", affix = "Brownsmith's", "+(10-15) to Ward", statOrder = { 1411 }, level = 11, group = "LocalWard", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, - ["LocalIncreasedWard3_"] = { type = "Prefix", affix = "Coppersmith's", "+(16-23) to Ward", statOrder = { 1411 }, level = 17, group = "LocalWard", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, - ["LocalIncreasedWard4"] = { type = "Prefix", affix = "Blacksmith's", "+(24-35) to Ward", statOrder = { 1411 }, level = 23, group = "LocalWard", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, - ["LocalIncreasedWard5___"] = { type = "Prefix", affix = "Silversmith's", "+(36-52) to Ward", statOrder = { 1411 }, level = 29, group = "LocalWard", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, - ["LocalIncreasedWard6_"] = { type = "Prefix", affix = "Goldsmith's", "+(52-69) to Ward", statOrder = { 1411 }, level = 35, group = "LocalWard", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, - ["LocalIncreasedWard7"] = { type = "Prefix", affix = "Whitesmith's", "+(70-84) to Ward", statOrder = { 1411 }, level = 43, group = "LocalWard", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, - ["LocalIncreasedWard8__"] = { type = "Prefix", affix = "Engraver's", "+(85-99) to Ward", statOrder = { 1411 }, level = 51, group = "LocalWard", weightKey = { "gloves", "boots", "ward_armour", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "defences" }, }, - ["LocalIncreasedWard9"] = { type = "Prefix", affix = "Runesmith's", "+(100-119) to Ward", statOrder = { 1411 }, level = 60, group = "LocalWard", weightKey = { "helmet", "gloves", "boots", "ward_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "defences" }, }, - ["LocalIncreasedWard10____"] = { type = "Prefix", affix = "Runemaster's", "+(120-139) to Ward", statOrder = { 1411 }, level = 69, group = "LocalWard", weightKey = { "helmet", "gloves", "boots", "ward_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "defences" }, }, - ["LocalIncreasedWard11"] = { type = "Prefix", affix = "Artificer's", "+(140-159) to Ward", statOrder = { 1411 }, level = 75, group = "LocalWard", weightKey = { "shield", "helmet", "gloves", "boots", "ward_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, modTags = { "defences" }, }, - ["LocalIncreasedWardPercent1"] = { type = "Prefix", affix = "Chiseled", "(11-28)% increased Ward", statOrder = { 1413 }, level = 3, group = "LocalWardPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, - ["LocalIncreasedWardPercent2"] = { type = "Prefix", affix = "Etched", "(27-42)% increased Ward", statOrder = { 1413 }, level = 18, group = "LocalWardPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, - ["LocalIncreasedWardPercent3"] = { type = "Prefix", affix = "Engraved", "(43-55)% increased Ward", statOrder = { 1413 }, level = 30, group = "LocalWardPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, - ["LocalIncreasedWardPercent4"] = { type = "Prefix", affix = "Embedded", "(56-67)% increased Ward", statOrder = { 1413 }, level = 44, group = "LocalWardPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, - ["LocalIncreasedWardPercent5"] = { type = "Prefix", affix = "Inscribed", "(68-79)% increased Ward", statOrder = { 1413 }, level = 60, group = "LocalWardPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, - ["LocalIncreasedWardPercent6"] = { type = "Prefix", affix = "Lettered", "(80-91)% increased Ward", statOrder = { 1413 }, level = 72, group = "LocalWardPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, - ["LocalIncreasedWardPercent7"] = { type = "Prefix", affix = "Runed", "(92-100)% increased Ward", statOrder = { 1413 }, level = 84, group = "LocalWardPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, - ["LocalIncreasedWardPercent8"] = { type = "Prefix", affix = "Calligraphic", "(101-110)% increased Ward", statOrder = { 1413 }, level = 86, group = "LocalWardPercent", weightKey = { "helmet", "gloves", "boots", "ward_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "defences" }, }, - ["LocalIncreasedWardPercentAndStunRecovery1______"] = { type = "Prefix", affix = "Improved", "(6-13)% increased Ward", "(6-7)% increased Stun and Block Recovery", statOrder = { 1413, 1781 }, level = 3, group = "LocalWardAndStunRecoveryPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, - ["LocalIncreasedWardPercentAndStunRecovery2_"] = { type = "Prefix", affix = "Enhanced", "(14-20)% increased Ward", "(8-9)% increased Stun and Block Recovery", statOrder = { 1413, 1781 }, level = 18, group = "LocalWardAndStunRecoveryPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, - ["LocalIncreasedWardPercentAndStunRecovery3"] = { type = "Prefix", affix = "Bolstered", "(21-26)% increased Ward", "(10-11)% increased Stun and Block Recovery", statOrder = { 1413, 1781 }, level = 30, group = "LocalWardAndStunRecoveryPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, - ["LocalIncreasedWardPercentAndStunRecovery4"] = { type = "Prefix", affix = "Elegant", "(27-32)% increased Ward", "(12-13)% increased Stun and Block Recovery", statOrder = { 1413, 1781 }, level = 44, group = "LocalWardAndStunRecoveryPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, - ["LocalIncreasedWardPercentAndStunRecovery5"] = { type = "Prefix", affix = "Exquisite", "(33-38)% increased Ward", "(14-15)% increased Stun and Block Recovery", statOrder = { 1413, 1781 }, level = 60, group = "LocalWardAndStunRecoveryPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, - ["LocalIncreasedWardPercentAndStunRecovery6_"] = { type = "Prefix", affix = "Masterwork", "(39-42)% increased Ward", "(16-17)% increased Stun and Block Recovery", statOrder = { 1413, 1781 }, level = 78, group = "LocalWardAndStunRecoveryPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, - ["LocalBaseWardAndLife1__"] = { type = "Prefix", affix = "Annest's", "+(15-20) to Ward", "+(18-23) to maximum Life", statOrder = { 1411, 1451 }, level = 30, group = "LocalBaseWardAndLife", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life", "defences" }, }, - ["LocalBaseWardAndLife2"] = { type = "Prefix", affix = "Owen's", "+(21-30) to Ward", "+(24-28) to maximum Life", statOrder = { 1411, 1451 }, level = 46, group = "LocalBaseWardAndLife", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life", "defences" }, }, - ["LocalBaseWardAndLife3_"] = { type = "Prefix", affix = "Gwayne's", "+(31-40) to Ward", "+(29-33) to maximum Life", statOrder = { 1411, 1451 }, level = 62, group = "LocalBaseWardAndLife", weightKey = { "boots", "gloves", "ward_armour", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "resource", "life", "defences" }, }, - ["LocalBaseWardAndLife4_"] = { type = "Prefix", affix = "Cadigan's", "+(41-50) to Ward", "+(34-38) to maximum Life", statOrder = { 1411, 1451 }, level = 78, group = "LocalBaseWardAndLife", weightKey = { "shield", "boots", "gloves", "helmet", "ward_armour", "default", }, weightVal = { 0, 0, 0, 0, 500, 0 }, modTags = { "resource", "life", "defences" }, }, - ["FasterStartOfWardRecharge1"] = { type = "Suffix", affix = "of Artifice", "(33-37)% faster Restoration of Ward", statOrder = { 1414 }, level = 46, group = "WardDelayRecovery", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, - ["FasterStartOfWardRecharge2"] = { type = "Suffix", affix = "of Etching", "(38-42)% faster Restoration of Ward", statOrder = { 1414 }, level = 57, group = "WardDelayRecovery", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, - ["FasterStartOfWardRecharge3"] = { type = "Suffix", affix = "of Engraving", "(43-47)% faster Restoration of Ward", statOrder = { 1414 }, level = 68, group = "WardDelayRecovery", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, - ["FasterStartOfWardRecharge4"] = { type = "Suffix", affix = "of Inscription", "(48-52)% faster Restoration of Ward", statOrder = { 1414 }, level = 76, group = "WardDelayRecovery", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, - ["FasterStartOfWardRecharge5"] = { type = "Suffix", affix = "of Runes", "(53-58)% faster Restoration of Ward", statOrder = { 1414 }, level = 85, group = "WardDelayRecovery", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, - ["HellscapeUpsideIncreasedLife1__"] = { type = "ScourgeUpside", affix = "", "+(23-25) to maximum Life", statOrder = { 1451 }, level = 1, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "flask", "map", "default", }, weightVal = { 0, 0, 0, 0, 1000 }, modTags = { "resource", "life" }, }, - ["HellscapeUpsideIncreasedLife2_"] = { type = "ScourgeUpside", affix = "", "+(28-30) to maximum Life", statOrder = { 1451 }, level = 45, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "flask", "map", "default", }, weightVal = { 0, 0, 0, 0, 1000 }, modTags = { "resource", "life" }, }, - ["HellscapeUpsideIncreasedLife3_"] = { type = "ScourgeUpside", affix = "", "+(33-35) to maximum Life", statOrder = { 1451 }, level = 68, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "flask", "map", "default", }, weightVal = { 0, 0, 0, 0, 1000 }, modTags = { "resource", "life" }, }, - ["HellscapeUpsideIncreasedLife4"] = { type = "ScourgeUpside", affix = "", "+(38-40) to maximum Life", statOrder = { 1451 }, level = 68, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "flask", "map", "default", }, weightVal = { 0, 0, 0, 0, 1000 }, modTags = { "resource", "life" }, }, - ["HellscapeUpsideLocalPhysicalDamageReductionRatingGlovesBoots1__"] = { type = "ScourgeUpside", affix = "", "+(30-33) to Armour", statOrder = { 1423 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { "body_armour", "helmet", "shield", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "armour" }, }, - ["HellscapeUpsideLocalPhysicalDamageReductionRatingGlovesBoots2"] = { type = "ScourgeUpside", affix = "", "+(34-37) to Armour", statOrder = { 1423 }, level = 45, group = "LocalPhysicalDamageReductionRating", weightKey = { "body_armour", "helmet", "shield", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "armour" }, }, - ["HellscapeUpsideLocalPhysicalDamageReductionRatingGlovesBoots3"] = { type = "ScourgeUpside", affix = "", "+(38-41) to Armour", statOrder = { 1423 }, level = 68, group = "LocalPhysicalDamageReductionRating", weightKey = { "body_armour", "helmet", "shield", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "armour" }, }, - ["HellscapeUpsideLocalPhysicalDamageReductionRatingGlovesBoots4_"] = { type = "ScourgeUpside", affix = "", "+(42-45) to Armour", statOrder = { 1423 }, level = 68, group = "LocalPhysicalDamageReductionRating", weightKey = { "body_armour", "helmet", "shield", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "armour" }, }, - ["HellscapeUpsideLocalPhysicalDamageReductionRatingHelmetShield1"] = { type = "ScourgeUpside", affix = "", "+(33-39) to Armour", statOrder = { 1423 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { "body_armour", "gloves", "boots", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "armour" }, }, - ["HellscapeUpsideLocalPhysicalDamageReductionRatingHelmetShield2__"] = { type = "ScourgeUpside", affix = "", "+(40-46) to Armour", statOrder = { 1423 }, level = 45, group = "LocalPhysicalDamageReductionRating", weightKey = { "body_armour", "gloves", "boots", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "armour" }, }, - ["HellscapeUpsideLocalPhysicalDamageReductionRatingHelmetShield3"] = { type = "ScourgeUpside", affix = "", "+(47-53) to Armour", statOrder = { 1423 }, level = 68, group = "LocalPhysicalDamageReductionRating", weightKey = { "body_armour", "gloves", "boots", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "armour" }, }, - ["HellscapeUpsideLocalPhysicalDamageReductionRatingHelmetShield4_"] = { type = "ScourgeUpside", affix = "", "+(54-60) to Armour", statOrder = { 1423 }, level = 68, group = "LocalPhysicalDamageReductionRating", weightKey = { "body_armour", "gloves", "boots", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "armour" }, }, - ["HellscapeUpsideLocalPhysicalDamageReductionRatingBodyArmour1"] = { type = "ScourgeUpside", affix = "", "+(31-60) to Armour", statOrder = { 1423 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { "helmet", "shield", "gloves", "boots", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "armour" }, }, - ["HellscapeUpsideLocalPhysicalDamageReductionRatingBodyArmour2"] = { type = "ScourgeUpside", affix = "", "+(61-90) to Armour", statOrder = { 1423 }, level = 45, group = "LocalPhysicalDamageReductionRating", weightKey = { "helmet", "shield", "gloves", "boots", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "armour" }, }, - ["HellscapeUpsideLocalPhysicalDamageReductionRatingBodyArmour3"] = { type = "ScourgeUpside", affix = "", "+(91-120) to Armour", statOrder = { 1423 }, level = 68, group = "LocalPhysicalDamageReductionRating", weightKey = { "helmet", "shield", "gloves", "boots", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "armour" }, }, - ["HellscapeUpsideLocalPhysicalDamageReductionRatingBodyArmour4_"] = { type = "ScourgeUpside", affix = "", "+(121-150) to Armour", statOrder = { 1423 }, level = 68, group = "LocalPhysicalDamageReductionRating", weightKey = { "helmet", "shield", "gloves", "boots", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "armour" }, }, - ["HellscapeUpsideLocalEvasionRatingGlovesBoots1"] = { type = "ScourgeUpside", affix = "", "+(30-33) to Evasion Rating", statOrder = { 1431 }, level = 1, group = "LocalEvasionRating", weightKey = { "body_armour", "helmet", "shield", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "evasion" }, }, - ["HellscapeUpsideLocalEvasionRatingGlovesBoots2___"] = { type = "ScourgeUpside", affix = "", "+(34-37) to Evasion Rating", statOrder = { 1431 }, level = 45, group = "LocalEvasionRating", weightKey = { "body_armour", "helmet", "shield", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "evasion" }, }, - ["HellscapeUpsideLocalEvasionRatingGlovesBoots3_"] = { type = "ScourgeUpside", affix = "", "+(38-41) to Evasion Rating", statOrder = { 1431 }, level = 68, group = "LocalEvasionRating", weightKey = { "body_armour", "helmet", "shield", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "evasion" }, }, - ["HellscapeUpsideLocalEvasionRatingGlovesBoots4_"] = { type = "ScourgeUpside", affix = "", "+(42-45) to Evasion Rating", statOrder = { 1431 }, level = 68, group = "LocalEvasionRating", weightKey = { "body_armour", "helmet", "shield", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "evasion" }, }, - ["HellscapeUpsideLocalEvasionRatingHelmetShield1"] = { type = "ScourgeUpside", affix = "", "+(33-39) to Evasion Rating", statOrder = { 1431 }, level = 1, group = "LocalEvasionRating", weightKey = { "body_armour", "gloves", "boots", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "evasion" }, }, - ["HellscapeUpsideLocalEvasionRatingHelmetShield2"] = { type = "ScourgeUpside", affix = "", "+(40-46) to Evasion Rating", statOrder = { 1431 }, level = 45, group = "LocalEvasionRating", weightKey = { "body_armour", "gloves", "boots", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "evasion" }, }, - ["HellscapeUpsideLocalEvasionRatingHelmetShield3"] = { type = "ScourgeUpside", affix = "", "+(47-53) to Evasion Rating", statOrder = { 1431 }, level = 68, group = "LocalEvasionRating", weightKey = { "body_armour", "gloves", "boots", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "evasion" }, }, - ["HellscapeUpsideLocalEvasionRatingHelmetShield4"] = { type = "ScourgeUpside", affix = "", "+(54-60) to Evasion Rating", statOrder = { 1431 }, level = 68, group = "LocalEvasionRating", weightKey = { "body_armour", "gloves", "boots", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "evasion" }, }, - ["HellscapeUpsideLocalEvasionRatingBodyArmour1"] = { type = "ScourgeUpside", affix = "", "+(31-60) to Evasion Rating", statOrder = { 1431 }, level = 1, group = "LocalEvasionRating", weightKey = { "helmet", "shield", "gloves", "boots", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "evasion" }, }, - ["HellscapeUpsideLocalEvasionRatingBodyArmour2"] = { type = "ScourgeUpside", affix = "", "+(61-90) to Evasion Rating", statOrder = { 1431 }, level = 45, group = "LocalEvasionRating", weightKey = { "helmet", "shield", "gloves", "boots", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "evasion" }, }, - ["HellscapeUpsideLocalEvasionRatingBodyArmour3"] = { type = "ScourgeUpside", affix = "", "+(91-120) to Evasion Rating", statOrder = { 1431 }, level = 68, group = "LocalEvasionRating", weightKey = { "helmet", "shield", "gloves", "boots", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "evasion" }, }, - ["HellscapeUpsideLocalEvasionRatingBodyArmour4_"] = { type = "ScourgeUpside", affix = "", "+(121-150) to Evasion Rating", statOrder = { 1431 }, level = 68, group = "LocalEvasionRating", weightKey = { "helmet", "shield", "gloves", "boots", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "evasion" }, }, - ["HellscapeUpsideEnergyShieldGlovesBoots1_"] = { type = "ScourgeUpside", affix = "", "+(8-9) to maximum Energy Shield", statOrder = { 1441 }, level = 1, group = "LocalEnergyShield", weightKey = { "body_armour", "helmet", "shield", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, - ["HellscapeUpsideEnergyShieldGlovesBoots2__"] = { type = "ScourgeUpside", affix = "", "+(10-11) to maximum Energy Shield", statOrder = { 1441 }, level = 45, group = "LocalEnergyShield", weightKey = { "body_armour", "helmet", "shield", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, - ["HellscapeUpsideEnergyShieldGlovesBoots3"] = { type = "ScourgeUpside", affix = "", "+(12-13) to maximum Energy Shield", statOrder = { 1441 }, level = 68, group = "LocalEnergyShield", weightKey = { "body_armour", "helmet", "shield", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, - ["HellscapeUpsideEnergyShieldGlovesBoots4"] = { type = "ScourgeUpside", affix = "", "+(14-15) to maximum Energy Shield", statOrder = { 1441 }, level = 68, group = "LocalEnergyShield", weightKey = { "body_armour", "helmet", "shield", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, - ["HellscapeUpsideEnergyShieldHelmetShield1_"] = { type = "ScourgeUpside", affix = "", "+(11-12) to maximum Energy Shield", statOrder = { 1441 }, level = 1, group = "LocalEnergyShield", weightKey = { "body_armour", "gloves", "boots", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, - ["HellscapeUpsideEnergyShieldHelmetShield2"] = { type = "ScourgeUpside", affix = "", "+(13-14) to maximum Energy Shield", statOrder = { 1441 }, level = 45, group = "LocalEnergyShield", weightKey = { "body_armour", "gloves", "boots", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, - ["HellscapeUpsideEnergyShieldHelmetShield3"] = { type = "ScourgeUpside", affix = "", "+(15-16) to maximum Energy Shield", statOrder = { 1441 }, level = 68, group = "LocalEnergyShield", weightKey = { "body_armour", "gloves", "boots", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, - ["HellscapeUpsideEnergyShieldHelmetShield4"] = { type = "ScourgeUpside", affix = "", "+(17-18) to maximum Energy Shield", statOrder = { 1441 }, level = 68, group = "LocalEnergyShield", weightKey = { "body_armour", "gloves", "boots", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, - ["HellscapeUpsideEnergyShieldBodyArmour1"] = { type = "ScourgeUpside", affix = "", "+(15-18) to maximum Energy Shield", statOrder = { 1441 }, level = 1, group = "LocalEnergyShield", weightKey = { "helmet", "shield", "gloves", "boots", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, - ["HellscapeUpsideEnergyShieldBodyArmour2_"] = { type = "ScourgeUpside", affix = "", "+(19-22) to maximum Energy Shield", statOrder = { 1441 }, level = 45, group = "LocalEnergyShield", weightKey = { "helmet", "shield", "gloves", "boots", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, - ["HellscapeUpsideEnergyShieldBodyArmour3_"] = { type = "ScourgeUpside", affix = "", "+(23-26) to maximum Energy Shield", statOrder = { 1441 }, level = 68, group = "LocalEnergyShield", weightKey = { "helmet", "shield", "gloves", "boots", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, - ["HellscapeUpsideEnergyShieldBodyArmour4"] = { type = "ScourgeUpside", affix = "", "+(27-30) to maximum Energy Shield", statOrder = { 1441 }, level = 68, group = "LocalEnergyShield", weightKey = { "helmet", "shield", "gloves", "boots", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, - ["HellscapeUpsidePhysicalDamageTakenAsFirePercent3"] = { type = "ScourgeUpside", affix = "", "4% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2323 }, level = 68, group = "PhysicalDamageTakenAsFirePercent", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["HellscapeUpsidePhysicalDamageTakenAsFirePercent4"] = { type = "ScourgeUpside", affix = "", "5% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2323 }, level = 68, group = "PhysicalDamageTakenAsFirePercent", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["HellscapeUpsidePhysicalDamageTakenAsCold3"] = { type = "ScourgeUpside", affix = "", "4% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2324 }, level = 68, group = "PhysicalDamageTakenAsCold", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["HellscapeUpsidePhysicalDamageTakenAsCold4"] = { type = "ScourgeUpside", affix = "", "5% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2324 }, level = 68, group = "PhysicalDamageTakenAsCold", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["HellscapeUpsidePhysicalDamageTakenAsLightningPercent3_"] = { type = "ScourgeUpside", affix = "", "4% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2325 }, level = 68, group = "PhysicalDamageTakenAsLightningPercent", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["HellscapeUpsidePhysicalDamageTakenAsLightningPercent4"] = { type = "ScourgeUpside", affix = "", "5% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2325 }, level = 68, group = "PhysicalDamageTakenAsLightningPercent", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["HellscapeUpsidePhysicalDamageTakenAsChaos3"] = { type = "ScourgeUpside", affix = "", "4% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2327 }, level = 68, group = "PhysicalDamageTakenAsChaos", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "physical", "chaos" }, }, - ["HellscapeUpsidePhysicalDamageTakenAsChaos4"] = { type = "ScourgeUpside", affix = "", "5% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2327 }, level = 68, group = "PhysicalDamageTakenAsChaos", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "physical", "chaos" }, }, - ["HellscapeUpsideBaseFreezeDurationOnSelf3_"] = { type = "ScourgeUpside", affix = "", "(31-35)% reduced Freeze Duration on you", statOrder = { 1755 }, level = 68, group = "ReducedFreezeDuration", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["HellscapeUpsideBaseFreezeDurationOnSelf4_"] = { type = "ScourgeUpside", affix = "", "(36-40)% reduced Freeze Duration on you", statOrder = { 1755 }, level = 68, group = "ReducedFreezeDuration", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["HellscapeUpsideChillEffectivenessOnSelf3_"] = { type = "ScourgeUpside", affix = "", "(31-35)% reduced Effect of Chill on you", statOrder = { 1526 }, level = 68, group = "ChillEffectivenessOnSelf", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["HellscapeUpsideChillEffectivenessOnSelf4_"] = { type = "ScourgeUpside", affix = "", "(36-40)% reduced Effect of Chill on you", statOrder = { 1526 }, level = 68, group = "ChillEffectivenessOnSelf", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["HellscapeUpsideReducedShockEffectOnSelf3"] = { type = "ScourgeUpside", affix = "", "(31-35)% reduced Effect of Shock on you", statOrder = { 9507 }, level = 68, group = "ReducedShockEffectOnSelf", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["HellscapeUpsideReducedShockEffectOnSelf4"] = { type = "ScourgeUpside", affix = "", "(36-40)% reduced Effect of Shock on you", statOrder = { 9507 }, level = 68, group = "ReducedShockEffectOnSelf", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["HellscapeUpsideReducedCurseEffect3"] = { type = "ScourgeUpside", affix = "", "(16-20)% reduced Effect of Curses on you", statOrder = { 2047 }, level = 68, group = "ReducedCurseEffect", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "caster", "curse" }, }, - ["HellscapeUpsideReducedCurseEffect4"] = { type = "ScourgeUpside", affix = "", "(21-25)% reduced Effect of Curses on you", statOrder = { 2047 }, level = 68, group = "ReducedCurseEffect", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "caster", "curse" }, }, - ["HellscapeUpsideCannotGainCorruptedBloodWhileYouHaveAtLeast5Stacks1"] = { type = "ScourgeUpside", affix = "", "Corrupted Blood cannot be inflicted on you if you have at least 5 Corrupted Blood Debuffs on you", statOrder = { 5140 }, level = 45, group = "CannotGainCorruptedBloodWhileYouHaveAtLeast5Stacks", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "damage" }, }, - ["HellscapeUpsideReducedBurnDuration3__"] = { type = "ScourgeUpside", affix = "", "(31-35)% reduced Ignite Duration on you", statOrder = { 1756 }, level = 68, group = "ReducedBurnDuration", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["HellscapeUpsideReducedBurnDuration4"] = { type = "ScourgeUpside", affix = "", "(36-40)% reduced Ignite Duration on you", statOrder = { 1756 }, level = 68, group = "ReducedBurnDuration", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["HellscapeUpsideChanceToAvoidBleeding2_"] = { type = "ScourgeUpside", affix = "", "(26-30)% chance to Avoid Bleeding", statOrder = { 4077 }, level = 45, group = "ChanceToAvoidBleeding", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["HellscapeUpsideChanceToAvoidBleeding3_"] = { type = "ScourgeUpside", affix = "", "(31-35)% chance to Avoid Bleeding", statOrder = { 4077 }, level = 68, group = "ChanceToAvoidBleeding", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["HellscapeUpsideChanceToAvoidBleeding4"] = { type = "ScourgeUpside", affix = "", "(36-40)% chance to Avoid Bleeding", statOrder = { 4077 }, level = 68, group = "ChanceToAvoidBleeding", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["HellscapeUpsideChillEnemiesWhenHit3"] = { type = "ScourgeUpside", affix = "", "Chill Enemy for 4 seconds when Hit, reducing their Action Speed by 30%", statOrder = { 3006 }, level = 68, group = "ChillEnemiesWhenHit", weightKey = { "amulet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["HellscapeUpsideChillEnemiesWhenHit4"] = { type = "ScourgeUpside", affix = "", "Chill Enemy for 5 seconds when Hit, reducing their Action Speed by 30%", statOrder = { 3006 }, level = 68, group = "ChillEnemiesWhenHit", weightKey = { "amulet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["HellscapeUpsideDamageTakenGainedAsLife2_"] = { type = "ScourgeUpside", affix = "", "(7-8)% of Damage taken Recouped as Life", statOrder = { 5803 }, level = 45, group = "DamageTakenGainedAsLife", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, }, - ["HellscapeUpsideDamageTakenGainedAsLife3___"] = { type = "ScourgeUpside", affix = "", "(9-10)% of Damage taken Recouped as Life", statOrder = { 5803 }, level = 68, group = "DamageTakenGainedAsLife", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, }, - ["HellscapeUpsideDamageTakenGainedAsLife4"] = { type = "ScourgeUpside", affix = "", "(11-12)% of Damage taken Recouped as Life", statOrder = { 5803 }, level = 68, group = "DamageTakenGainedAsLife", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, }, - ["HellscapeUpsideBaseChanceToDealTripleDamage1h2__"] = { type = "ScourgeUpside", affix = "", "3% chance to deal Triple Damage", statOrder = { 4817 }, level = 45, group = "BaseChanceToDealTripleDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, }, - ["HellscapeUpsideBaseChanceToDealTripleDamage1h3__"] = { type = "ScourgeUpside", affix = "", "4% chance to deal Triple Damage", statOrder = { 4817 }, level = 68, group = "BaseChanceToDealTripleDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, }, - ["HellscapeUpsideBaseChanceToDealTripleDamage1h4__"] = { type = "ScourgeUpside", affix = "", "5% chance to deal Triple Damage", statOrder = { 4817 }, level = 68, group = "BaseChanceToDealTripleDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, }, - ["HellscapeUpsideBaseChanceToDealTripleDamage2h2__"] = { type = "ScourgeUpside", affix = "", "5% chance to deal Triple Damage", statOrder = { 4817 }, level = 45, group = "BaseChanceToDealTripleDamage", weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { "damage" }, }, - ["HellscapeUpsideBaseChanceToDealTripleDamage2h3_"] = { type = "ScourgeUpside", affix = "", "6% chance to deal Triple Damage", statOrder = { 4817 }, level = 68, group = "BaseChanceToDealTripleDamage", weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { "damage" }, }, - ["HellscapeUpsideBaseChanceToDealTripleDamage2h4"] = { type = "ScourgeUpside", affix = "", "7% chance to deal Triple Damage", statOrder = { 4817 }, level = 68, group = "BaseChanceToDealTripleDamage", weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { "damage" }, }, - ["HellscapeUpsideOnslaughtWhenHitForDuration2"] = { type = "ScourgeUpside", affix = "", "You gain Onslaught for 2 seconds when Hit", statOrder = { 2701 }, level = 45, group = "OnslaughtWhenHitForDuration", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["HellscapeUpsideOnslaughtWhenHitForDuration3"] = { type = "ScourgeUpside", affix = "", "You gain Onslaught for 3 seconds when Hit", statOrder = { 2701 }, level = 68, group = "OnslaughtWhenHitForDuration", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["HellscapeUpsideOnslaughtWhenHitForDuration4"] = { type = "ScourgeUpside", affix = "", "You gain Onslaught for 4 seconds when Hit", statOrder = { 2701 }, level = 68, group = "OnslaughtWhenHitForDuration", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["HellscapeUpsideBaseMaximumLifeInflictedAsAoeFireDamageWhenHit2"] = { type = "ScourgeUpside", affix = "", "Deal (8-11)% of your maximum Life as Fire Damage to nearby Enemies when Hit", statOrder = { 3650 }, level = 45, group = "BaseMaximumLifeInflictedAsAoeFireDamageWhenHit", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["HellscapeUpsideBaseMaximumLifeInflictedAsAoeFireDamageWhenHit3"] = { type = "ScourgeUpside", affix = "", "Deal (12-15)% of your maximum Life as Fire Damage to nearby Enemies when Hit", statOrder = { 3650 }, level = 68, group = "BaseMaximumLifeInflictedAsAoeFireDamageWhenHit", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["HellscapeUpsideBaseMaximumLifeInflictedAsAoeFireDamageWhenHit4"] = { type = "ScourgeUpside", affix = "", "Deal (16-19)% of your maximum Life as Fire Damage to nearby Enemies when Hit", statOrder = { 3650 }, level = 68, group = "BaseMaximumLifeInflictedAsAoeFireDamageWhenHit", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["HellscapeUpsideConsecrateGroundFor3SecondsWhenHit1"] = { type = "ScourgeUpside", affix = "", "Create Consecrated Ground when Hit, lasting 8 seconds", statOrder = { 3416 }, level = 45, group = "ConsecrateGroundFor3SecondsWhenHit", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["HellscapeUpsideUnholyMightOnKillPercentChance1h2"] = { type = "ScourgeUpside", affix = "", "5% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3243 }, level = 45, group = "UnholyMightOnKillPercentChance", weightKey = { "staff", "warstaff", "wand", "claw", "default", }, weightVal = { 0, 0, 500, 500, 0 }, modTags = { }, }, - ["HellscapeUpsideUnholyMightOnKillPercentChance1h3"] = { type = "ScourgeUpside", affix = "", "6% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3243 }, level = 68, group = "UnholyMightOnKillPercentChance", weightKey = { "staff", "warstaff", "wand", "claw", "default", }, weightVal = { 0, 0, 500, 500, 0 }, modTags = { }, }, - ["HellscapeUpsideUnholyMightOnKillPercentChance1h4___"] = { type = "ScourgeUpside", affix = "", "7% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3243 }, level = 68, group = "UnholyMightOnKillPercentChance", weightKey = { "staff", "warstaff", "wand", "claw", "default", }, weightVal = { 0, 0, 500, 500, 0 }, modTags = { }, }, - ["HellscapeUpsideUnholyMightOnKillPercentChance2h2_"] = { type = "ScourgeUpside", affix = "", "8% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3243 }, level = 45, group = "UnholyMightOnKillPercentChance", weightKey = { "wand", "claw", "staff", "warstaff", "default", }, weightVal = { 0, 0, 500, 500, 0 }, modTags = { }, }, - ["HellscapeUpsideUnholyMightOnKillPercentChance2h3_"] = { type = "ScourgeUpside", affix = "", "9% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3243 }, level = 68, group = "UnholyMightOnKillPercentChance", weightKey = { "wand", "claw", "staff", "warstaff", "default", }, weightVal = { 0, 0, 500, 500, 0 }, modTags = { }, }, - ["HellscapeUpsideUnholyMightOnKillPercentChance2h4"] = { type = "ScourgeUpside", affix = "", "10% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3243 }, level = 68, group = "UnholyMightOnKillPercentChance", weightKey = { "wand", "claw", "staff", "warstaff", "default", }, weightVal = { 0, 0, 500, 500, 0 }, modTags = { }, }, - ["HellscapeUpsideElusiveEffect2"] = { type = "ScourgeUpside", affix = "", "(12-14)% increased Elusive Effect", statOrder = { 6038 }, level = 45, group = "ElusiveEffect", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["HellscapeUpsideElusiveEffect3___"] = { type = "ScourgeUpside", affix = "", "(15-17)% increased Elusive Effect", statOrder = { 6038 }, level = 68, group = "ElusiveEffect", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["HellscapeUpsideElusiveEffect4"] = { type = "ScourgeUpside", affix = "", "(18-20)% increased Elusive Effect", statOrder = { 6038 }, level = 68, group = "ElusiveEffect", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["HellscapeUpsideBasePenetrateElementalResistances2"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 3% of Enemy Elemental Resistances", statOrder = { 3422 }, level = 45, group = "BasePenetrateElementalResistances", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "elemental" }, }, - ["HellscapeUpsideBasePenetrateElementalResistances3"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 4% of Enemy Elemental Resistances", statOrder = { 3422 }, level = 68, group = "BasePenetrateElementalResistances", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "elemental" }, }, - ["HellscapeUpsideBasePenetrateElementalResistances4_"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 5% of Enemy Elemental Resistances", statOrder = { 3422 }, level = 68, group = "BasePenetrateElementalResistances", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "elemental" }, }, - ["HellscapeUpsideMinimumEnduranceCharges1"] = { type = "ScourgeUpside", affix = "", "+1 to Minimum Endurance Charges", statOrder = { 1684 }, level = 68, group = "MinimumEnduranceCharges", weightKey = { "ring", "default", }, weightVal = { 100, 0 }, modTags = { "endurance_charge" }, }, - ["HellscapeUpsideMinimumPowerCharges1"] = { type = "ScourgeUpside", affix = "", "+1 to Minimum Power Charges", statOrder = { 1694 }, level = 68, group = "MinimumPowerCharges", weightKey = { "ring", "default", }, weightVal = { 100, 0 }, modTags = { "power_charge" }, }, - ["HellscapeUpsideMinimumFrenzyCharges1___"] = { type = "ScourgeUpside", affix = "", "+1 to Minimum Frenzy Charges", statOrder = { 1689 }, level = 68, group = "MinimumFrenzyCharges", weightKey = { "ring", "default", }, weightVal = { 100, 0 }, modTags = { "frenzy_charge" }, }, - ["HellscapeUpsideCannotBeSlowedBelowValue3"] = { type = "ScourgeUpside", affix = "", "Action Speed cannot be modified to below (75-79)% of base value", statOrder = { 3061 }, level = 68, group = "CannotBeSlowedBelowValue", weightKey = { "boots", "default", }, weightVal = { 250, 0 }, modTags = { "speed" }, }, - ["HellscapeUpsideCannotBeSlowedBelowValue4_"] = { type = "ScourgeUpside", affix = "", "Action Speed cannot be modified to below (70-74)% of base value", statOrder = { 3061 }, level = 68, group = "CannotBeSlowedBelowValue", weightKey = { "boots", "default", }, weightVal = { 250, 0 }, modTags = { "speed" }, }, - ["HellscapeUpsideMonsterNemesisOndarsGuile1__"] = { type = "ScourgeUpside", affix = "", "Arrow Dancing", statOrder = { 10248 }, level = 68, group = "MonsterNemesisOndarsGuile", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "defences", "evasion" }, }, - ["HellscapeUpsideConduit1"] = { type = "ScourgeUpside", affix = "", "Conduit", statOrder = { 10222 }, level = 68, group = "Conduit", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, }, - ["HellscapeUpsideIronReflexes1__"] = { type = "ScourgeUpside", affix = "", "Iron Reflexes", statOrder = { 10239 }, level = 68, group = "IronReflexes", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "defences", "armour", "evasion" }, }, - ["HellscapeUpsideUnwaveringStance1"] = { type = "ScourgeUpside", affix = "", "Unwavering Stance", statOrder = { 10262 }, level = 68, group = "UnwaveringStance", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "defences", "evasion" }, }, - ["HellscapeUpsideEternalYouth1_"] = { type = "ScourgeUpside", affix = "", "Eternal Youth", statOrder = { 10231 }, level = 68, group = "EternalYouth", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "resource", "life", "defences", "energy_shield" }, }, - ["HellscapeUpsideWindDancer1"] = { type = "ScourgeUpside", affix = "", "Wind Dancer", statOrder = { 10266 }, level = 68, group = "WindDancer", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "defences", "evasion" }, }, - ["HellscapeUpsideGlancingBlows1"] = { type = "ScourgeUpside", affix = "", "Glancing Blows", statOrder = { 10235 }, level = 68, group = "GlancingBlows", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "block" }, }, - ["HellscapeUpsideSacredBastion1_"] = { type = "ScourgeUpside", affix = "", "Imbalanced Guard", statOrder = { 10253 }, level = 68, group = "SacredBastion", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "defences", "armour" }, }, - ["HellscapeUpsideManaShield1_"] = { type = "ScourgeUpside", affix = "", "Mind Over Matter", statOrder = { 10242 }, level = 68, group = "ManaShield", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "resource", "life", "mana" }, }, - ["HellscapeUpsideWickedWard1"] = { type = "ScourgeUpside", affix = "", "Wicked Ward", statOrder = { 10265 }, level = 68, group = "WickedWard", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "defences", "energy_shield" }, }, - ["HellscapeUpsideZealotsOath1"] = { type = "ScourgeUpside", affix = "", "Zealot's Oath", statOrder = { 10250 }, level = 68, group = "ZealotsOath", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "resource", "life", "defences", "energy_shield" }, }, - ["HellscapeUpsideBlindEnemiesWhenHit2"] = { type = "ScourgeUpside", affix = "", "(11-20)% chance to Blind Enemies when they Hit you", statOrder = { 5032 }, level = 45, group = "BlindEnemiesWhenHit", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["HellscapeUpsideBlindEnemiesWhenHit3_"] = { type = "ScourgeUpside", affix = "", "(21-30)% chance to Blind Enemies when they Hit you", statOrder = { 5032 }, level = 68, group = "BlindEnemiesWhenHit", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["HellscapeUpsideBlindEnemiesWhenHit4"] = { type = "ScourgeUpside", affix = "", "(31-40)% chance to Blind Enemies when they Hit you", statOrder = { 5032 }, level = 68, group = "BlindEnemiesWhenHit", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["HellscapeUpsideGuardSkillCooldownRecovery3"] = { type = "ScourgeUpside", affix = "", "Guard Skills have (14-16)% increased Cooldown Recovery Rate", statOrder = { 6564 }, level = 68, group = "GuardSkillCooldownRecovery", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["HellscapeUpsideGuardSkillCooldownRecovery4___"] = { type = "ScourgeUpside", affix = "", "Guard Skills have (17-19)% increased Cooldown Recovery Rate", statOrder = { 6564 }, level = 68, group = "GuardSkillCooldownRecovery", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["HellscapeUpsideMinionChanceToTauntOnHit2___"] = { type = "ScourgeUpside", affix = "", "Minions have (11-13)% chance to Taunt on Hit with Attacks", statOrder = { 3297 }, level = 45, group = "MinionAttacksTauntOnHitChance", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "attack", "minion" }, }, - ["HellscapeUpsideMinionChanceToTauntOnHit3"] = { type = "ScourgeUpside", affix = "", "Minions have (14-16)% chance to Taunt on Hit with Attacks", statOrder = { 3297 }, level = 68, group = "MinionAttacksTauntOnHitChance", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "attack", "minion" }, }, - ["HellscapeUpsideMinionChanceToTauntOnHit4"] = { type = "ScourgeUpside", affix = "", "Minions have (17-19)% chance to Taunt on Hit with Attacks", statOrder = { 3297 }, level = 68, group = "MinionAttacksTauntOnHitChance", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "attack", "minion" }, }, - ["HellscapeUpsideIncreaseSocketedSupportGemQuality3"] = { type = "ScourgeUpside", affix = "", "+(9-10)% to Quality of Socketed Support Gems", statOrder = { 183 }, level = 68, group = "IncreaseSocketedSupportGemQuality", weightKey = { "weapon", "shield", "default", }, weightVal = { 500, 250, 0 }, modTags = { "gem" }, }, - ["HellscapeUpsideIncreaseSocketedSupportGemQuality4_"] = { type = "ScourgeUpside", affix = "", "+(11-12)% to Quality of Socketed Support Gems", statOrder = { 183 }, level = 68, group = "IncreaseSocketedSupportGemQuality", weightKey = { "weapon", "shield", "default", }, weightVal = { 500, 250, 0 }, modTags = { "gem" }, }, - ["HellscapeUpsideGainManaAsExtraEnergyShield3"] = { type = "ScourgeUpside", affix = "", "Gain 5% of Maximum Mana as Extra Maximum Energy Shield", statOrder = { 2052 }, level = 68, group = "GainManaAsExtraEnergyShield", weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { "defences", "energy_shield" }, }, - ["HellscapeUpsideGainManaAsExtraEnergyShield4_"] = { type = "ScourgeUpside", affix = "", "Gain 6% of Maximum Mana as Extra Maximum Energy Shield", statOrder = { 2052 }, level = 68, group = "GainManaAsExtraEnergyShield", weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { "defences", "energy_shield" }, }, - ["HellscapeUpsideAreaOfEffect1_"] = { type = "ScourgeUpside", affix = "", "10% increased Area of Effect", statOrder = { 1761 }, level = 1, group = "AreaOfEffect", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["HellscapeUpsideAreaOfEffect2"] = { type = "ScourgeUpside", affix = "", "11% increased Area of Effect", statOrder = { 1761 }, level = 45, group = "AreaOfEffect", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["HellscapeUpsideAreaOfEffect3____"] = { type = "ScourgeUpside", affix = "", "12% increased Area of Effect", statOrder = { 1761 }, level = 68, group = "AreaOfEffect", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["HellscapeUpsideAreaOfEffect4"] = { type = "ScourgeUpside", affix = "", "13% increased Area of Effect", statOrder = { 1761 }, level = 68, group = "AreaOfEffect", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["HellscapeUpsideProjectileSpeed1"] = { type = "ScourgeUpside", affix = "", "(14-16)% increased Projectile Speed", statOrder = { 1677 }, level = 1, group = "ProjectileSpeed", weightKey = { "ranged", "quiver", "default", }, weightVal = { 500, 500, 0 }, modTags = { "speed" }, }, - ["HellscapeUpsideProjectileSpeed2"] = { type = "ScourgeUpside", affix = "", "(17-19)% increased Projectile Speed", statOrder = { 1677 }, level = 45, group = "ProjectileSpeed", weightKey = { "ranged", "quiver", "default", }, weightVal = { 500, 500, 0 }, modTags = { "speed" }, }, - ["HellscapeUpsideProjectileSpeed3"] = { type = "ScourgeUpside", affix = "", "(20-22)% increased Projectile Speed", statOrder = { 1677 }, level = 68, group = "ProjectileSpeed", weightKey = { "ranged", "quiver", "default", }, weightVal = { 500, 500, 0 }, modTags = { "speed" }, }, - ["HellscapeUpsideProjectileSpeed4"] = { type = "ScourgeUpside", affix = "", "(23-25)% increased Projectile Speed", statOrder = { 1677 }, level = 68, group = "ProjectileSpeed", weightKey = { "ranged", "quiver", "default", }, weightVal = { 500, 500, 0 }, modTags = { "speed" }, }, - ["HellscapeUpsideMinionLife2___"] = { type = "ScourgeUpside", affix = "", "Minions have (10-11)% increased maximum Life", statOrder = { 1647 }, level = 45, group = "MinionLife", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "minion" }, }, - ["HellscapeUpsideMinionLife3"] = { type = "ScourgeUpside", affix = "", "Minions have (12-13)% increased maximum Life", statOrder = { 1647 }, level = 68, group = "MinionLife", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "minion" }, }, - ["HellscapeUpsideMinionLife4_"] = { type = "ScourgeUpside", affix = "", "Minions have (14-15)% increased maximum Life", statOrder = { 1647 }, level = 68, group = "MinionLife", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "minion" }, }, - ["HellscapeUpsideFireResistance1"] = { type = "ScourgeUpside", affix = "", "+(18-20)% to Fire Resistance", statOrder = { 1507 }, level = 1, group = "FireResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 300, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["HellscapeUpsideFireResistance2"] = { type = "ScourgeUpside", affix = "", "+(23-25)% to Fire Resistance", statOrder = { 1507 }, level = 45, group = "FireResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 300, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["HellscapeUpsideFireResistance3_"] = { type = "ScourgeUpside", affix = "", "+(28-30)% to Fire Resistance", statOrder = { 1507 }, level = 68, group = "FireResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 300, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["HellscapeUpsideFireResistance4__"] = { type = "ScourgeUpside", affix = "", "+(33-35)% to Fire Resistance", statOrder = { 1507 }, level = 68, group = "FireResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 300, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["HellscapeUpsideColdResistance1"] = { type = "ScourgeUpside", affix = "", "+(18-20)% to Cold Resistance", statOrder = { 1513 }, level = 1, group = "ColdResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 300, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["HellscapeUpsideColdResistance2"] = { type = "ScourgeUpside", affix = "", "+(23-25)% to Cold Resistance", statOrder = { 1513 }, level = 45, group = "ColdResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 300, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["HellscapeUpsideColdResistance3_"] = { type = "ScourgeUpside", affix = "", "+(28-30)% to Cold Resistance", statOrder = { 1513 }, level = 68, group = "ColdResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 300, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["HellscapeUpsideColdResistance4"] = { type = "ScourgeUpside", affix = "", "+(33-35)% to Cold Resistance", statOrder = { 1513 }, level = 68, group = "ColdResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 300, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["HellscapeUpsideLightningResistance1"] = { type = "ScourgeUpside", affix = "", "+(18-20)% to Lightning Resistance", statOrder = { 1518 }, level = 1, group = "LightningResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 300, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["HellscapeUpsideLightningResistance2__"] = { type = "ScourgeUpside", affix = "", "+(23-25)% to Lightning Resistance", statOrder = { 1518 }, level = 45, group = "LightningResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 300, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["HellscapeUpsideLightningResistance3"] = { type = "ScourgeUpside", affix = "", "+(28-30)% to Lightning Resistance", statOrder = { 1518 }, level = 68, group = "LightningResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 300, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["HellscapeUpsideLightningResistance4"] = { type = "ScourgeUpside", affix = "", "+(33-35)% to Lightning Resistance", statOrder = { 1518 }, level = 68, group = "LightningResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 300, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["HellscapeUpsideElementalResistance1__"] = { type = "ScourgeUpside", affix = "", "+6% to all Elemental Resistances", statOrder = { 1501 }, level = 1, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "elemental", "resistance" }, }, - ["HellscapeUpsideElementalResistance2"] = { type = "ScourgeUpside", affix = "", "+8% to all Elemental Resistances", statOrder = { 1501 }, level = 45, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "elemental", "resistance" }, }, - ["HellscapeUpsideElementalResistance3"] = { type = "ScourgeUpside", affix = "", "+10% to all Elemental Resistances", statOrder = { 1501 }, level = 68, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "elemental", "resistance" }, }, - ["HellscapeUpsideElementalResistance4_"] = { type = "ScourgeUpside", affix = "", "+12% to all Elemental Resistances", statOrder = { 1501 }, level = 68, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "elemental", "resistance" }, }, - ["HellscapeUpsideChaosResistance1_"] = { type = "ScourgeUpside", affix = "", "+(10-13)% to Chaos Resistance", statOrder = { 1522 }, level = 16, group = "ChaosResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 75, 250, 250, 250, 250, 250, 0 }, modTags = { "chaos", "resistance" }, }, - ["HellscapeUpsideChaosResistance2_"] = { type = "ScourgeUpside", affix = "", "+(14-17)% to Chaos Resistance", statOrder = { 1522 }, level = 45, group = "ChaosResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 75, 250, 250, 250, 250, 250, 0 }, modTags = { "chaos", "resistance" }, }, - ["HellscapeUpsideChaosResistance3_"] = { type = "ScourgeUpside", affix = "", "+(18-21)% to Chaos Resistance", statOrder = { 1522 }, level = 68, group = "ChaosResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 75, 250, 250, 250, 250, 250, 0 }, modTags = { "chaos", "resistance" }, }, - ["HellscapeUpsideChaosResistance4_"] = { type = "ScourgeUpside", affix = "", "+(22-25)% to Chaos Resistance", statOrder = { 1522 }, level = 68, group = "ChaosResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 75, 250, 250, 250, 250, 250, 0 }, modTags = { "chaos", "resistance" }, }, - ["HellscapeUpsideMinionElementalResistance2"] = { type = "ScourgeUpside", affix = "", "Minions have +(10-11)% to all Elemental Resistances", statOrder = { 2786 }, level = 45, group = "MinionElementalResistance", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "resistance", "minion" }, }, - ["HellscapeUpsideMinionElementalResistance3"] = { type = "ScourgeUpside", affix = "", "Minions have +(12-13)% to all Elemental Resistances", statOrder = { 2786 }, level = 68, group = "MinionElementalResistance", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "resistance", "minion" }, }, - ["HellscapeUpsideMinionElementalResistance4"] = { type = "ScourgeUpside", affix = "", "Minions have +(14-15)% to all Elemental Resistances", statOrder = { 2786 }, level = 68, group = "MinionElementalResistance", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "resistance", "minion" }, }, - ["HellscapeUpsideMinionChaosResistance2__"] = { type = "ScourgeUpside", affix = "", "Minions have +(14-17)% to Chaos Resistance", statOrder = { 2787 }, level = 45, group = "MinionChaosResistance", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "chaos", "resistance", "minion" }, }, - ["HellscapeUpsideMinionChaosResistance3_"] = { type = "ScourgeUpside", affix = "", "Minions have +(18-21)% to Chaos Resistance", statOrder = { 2787 }, level = 68, group = "MinionChaosResistance", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "chaos", "resistance", "minion" }, }, - ["HellscapeUpsideMinionChaosResistance4"] = { type = "ScourgeUpside", affix = "", "Minions have +(22-25)% to Chaos Resistance", statOrder = { 2787 }, level = 68, group = "MinionChaosResistance", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "chaos", "resistance", "minion" }, }, - ["HellscapeUpsideStunAndBlockRecovery2"] = { type = "ScourgeUpside", affix = "", "(10-11)% increased Stun and Block Recovery", statOrder = { 1781 }, level = 45, group = "StunRecovery", weightKey = { "gloves", "armour", "belt", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, }, - ["HellscapeUpsideStunAndBlockRecovery3"] = { type = "ScourgeUpside", affix = "", "(12-13)% increased Stun and Block Recovery", statOrder = { 1781 }, level = 68, group = "StunRecovery", weightKey = { "gloves", "armour", "belt", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, }, - ["HellscapeUpsideStunAndBlockRecovery4__"] = { type = "ScourgeUpside", affix = "", "(14-15)% increased Stun and Block Recovery", statOrder = { 1781 }, level = 68, group = "StunRecovery", weightKey = { "gloves", "armour", "belt", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, }, - ["HellscapeUpsideChanceToAvoidFreezeAndChill2_"] = { type = "ScourgeUpside", affix = "", "(26-30)% chance to Avoid being Chilled", "(26-30)% chance to Avoid being Frozen", statOrder = { 1725, 1726 }, level = 45, group = "ChanceToAvoidFreezeAndChill", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["HellscapeUpsideChanceToAvoidFreezeAndChill3"] = { type = "ScourgeUpside", affix = "", "(31-35)% chance to Avoid being Chilled", "(31-35)% chance to Avoid being Frozen", statOrder = { 1725, 1726 }, level = 68, group = "ChanceToAvoidFreezeAndChill", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["HellscapeUpsideChanceToAvoidFreezeAndChill4"] = { type = "ScourgeUpside", affix = "", "(36-40)% chance to Avoid being Chilled", "(36-40)% chance to Avoid being Frozen", statOrder = { 1725, 1726 }, level = 68, group = "ChanceToAvoidFreezeAndChill", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["HellscapeUpsideChanceToAvoidShock2"] = { type = "ScourgeUpside", affix = "", "(26-30)% chance to Avoid being Shocked", statOrder = { 1729 }, level = 45, group = "AvoidShock", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["HellscapeUpsideChanceToAvoidShock3"] = { type = "ScourgeUpside", affix = "", "(31-35)% chance to Avoid being Shocked", statOrder = { 1729 }, level = 68, group = "AvoidShock", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["HellscapeUpsideChanceToAvoidShock4_"] = { type = "ScourgeUpside", affix = "", "(36-40)% chance to Avoid being Shocked", statOrder = { 1729 }, level = 68, group = "AvoidShock", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["HellscapeUpsideChanceToAvoidIgniteAndBurning2"] = { type = "ScourgeUpside", affix = "", "(26-30)% chance to Avoid being Ignited", statOrder = { 1727 }, level = 45, group = "AvoidIgnite", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["HellscapeUpsideChanceToAvoidIgniteAndBurning3"] = { type = "ScourgeUpside", affix = "", "(31-35)% chance to Avoid being Ignited", statOrder = { 1727 }, level = 68, group = "AvoidIgnite", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["HellscapeUpsideChanceToAvoidIgniteAndBurning4"] = { type = "ScourgeUpside", affix = "", "(36-40)% chance to Avoid being Ignited", statOrder = { 1727 }, level = 68, group = "AvoidIgnite", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["HellscapeUpsideChanceToAvoidPoison2"] = { type = "ScourgeUpside", affix = "", "(26-30)% chance to Avoid being Poisoned", statOrder = { 1730 }, level = 45, group = "ChanceToAvoidPoison", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["HellscapeUpsideChanceToAvoidPoison3"] = { type = "ScourgeUpside", affix = "", "(31-35)% chance to Avoid being Poisoned", statOrder = { 1730 }, level = 68, group = "ChanceToAvoidPoison", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["HellscapeUpsideChanceToAvoidPoison4"] = { type = "ScourgeUpside", affix = "", "(36-40)% chance to Avoid being Poisoned", statOrder = { 1730 }, level = 68, group = "ChanceToAvoidPoison", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["HellscapeUpsideChanceToAvoidStun2"] = { type = "ScourgeUpside", affix = "", "(17-19)% chance to Avoid being Stunned", statOrder = { 1732 }, level = 45, group = "AvoidStun", weightKey = { "helmet", "gloves", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["HellscapeUpsideChanceToAvoidStun3__"] = { type = "ScourgeUpside", affix = "", "(20-22)% chance to Avoid being Stunned", statOrder = { 1732 }, level = 68, group = "AvoidStun", weightKey = { "helmet", "gloves", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["HellscapeUpsideChanceToAvoidStun4"] = { type = "ScourgeUpside", affix = "", "(23-25)% chance to Avoid being Stunned", statOrder = { 1732 }, level = 68, group = "AvoidStun", weightKey = { "helmet", "gloves", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["HellscapeUpsideAvoidElementalStatusAilments2__"] = { type = "ScourgeUpside", affix = "", "(17-19)% chance to Avoid Elemental Ailments", statOrder = { 1724 }, level = 45, group = "AvoidElementalStatusAilments", weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, - ["HellscapeUpsideAvoidElementalStatusAilments3__"] = { type = "ScourgeUpside", affix = "", "(20-22)% chance to Avoid Elemental Ailments", statOrder = { 1724 }, level = 68, group = "AvoidElementalStatusAilments", weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, - ["HellscapeUpsideAvoidElementalStatusAilments4"] = { type = "ScourgeUpside", affix = "", "(23-25)% chance to Avoid Elemental Ailments", statOrder = { 1724 }, level = 68, group = "AvoidElementalStatusAilments", weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, - ["HellscapeUpsideReducedDurationOfElementalStatusAilments2"] = { type = "ScourgeUpside", affix = "", "(17-19)% reduced Elemental Ailment Duration on you", statOrder = { 1748 }, level = 45, group = "SelfStatusAilmentDuration", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "ailment" }, }, - ["HellscapeUpsideReducedDurationOfElementalStatusAilments3"] = { type = "ScourgeUpside", affix = "", "(20-22)% reduced Elemental Ailment Duration on you", statOrder = { 1748 }, level = 68, group = "SelfStatusAilmentDuration", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "ailment" }, }, - ["HellscapeUpsideReducedDurationOfElementalStatusAilments4"] = { type = "ScourgeUpside", affix = "", "(23-25)% reduced Elemental Ailment Duration on you", statOrder = { 1748 }, level = 68, group = "SelfStatusAilmentDuration", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "ailment" }, }, - ["HellscapeUpsideGainLifeOnBlock2"] = { type = "ScourgeUpside", affix = "", "(31-40) Life gained when you Block", statOrder = { 1638 }, level = 45, group = "GainLifeOnBlock", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "resource", "life" }, }, - ["HellscapeUpsideGainLifeOnBlock3_"] = { type = "ScourgeUpside", affix = "", "(41-50) Life gained when you Block", statOrder = { 1638 }, level = 68, group = "GainLifeOnBlock", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "resource", "life" }, }, - ["HellscapeUpsideGainLifeOnBlock4___"] = { type = "ScourgeUpside", affix = "", "(51-60) Life gained when you Block", statOrder = { 1638 }, level = 68, group = "GainLifeOnBlock", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "resource", "life" }, }, - ["HellscapeUpsideGainManaOnBlock2"] = { type = "ScourgeUpside", affix = "", "(31-40) Mana gained when you Block", statOrder = { 1639 }, level = 45, group = "GainManaOnBlock", weightKey = { "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "resource", "mana" }, }, - ["HellscapeUpsideGainManaOnBlock3"] = { type = "ScourgeUpside", affix = "", "(41-50) Mana gained when you Block", statOrder = { 1639 }, level = 68, group = "GainManaOnBlock", weightKey = { "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "resource", "mana" }, }, - ["HellscapeUpsideGainManaOnBlock4"] = { type = "ScourgeUpside", affix = "", "(51-60) Mana gained when you Block", statOrder = { 1639 }, level = 68, group = "GainManaOnBlock", weightKey = { "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "resource", "mana" }, }, - ["HellscapeUpsideGainEnergyShieldOnBlock2"] = { type = "ScourgeUpside", affix = "", "Gain (31-40) Energy Shield when you Block", statOrder = { 1640 }, level = 45, group = "GainEnergyShieldOnBlock", weightKey = { "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "defences", "energy_shield" }, }, - ["HellscapeUpsideGainEnergyShieldOnBlock3___"] = { type = "ScourgeUpside", affix = "", "Gain (41-50) Energy Shield when you Block", statOrder = { 1640 }, level = 68, group = "GainEnergyShieldOnBlock", weightKey = { "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "defences", "energy_shield" }, }, - ["HellscapeUpsideGainEnergyShieldOnBlock4_"] = { type = "ScourgeUpside", affix = "", "Gain (51-60) Energy Shield when you Block", statOrder = { 1640 }, level = 68, group = "GainEnergyShieldOnBlock", weightKey = { "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "defences", "energy_shield" }, }, - ["HellscapeUpsideBlockAttacks1"] = { type = "ScourgeUpside", affix = "", "+(2-3)% Chance to Block Attack Damage", statOrder = { 2334 }, level = 1, group = "AdditionalBlock", weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { "block" }, }, - ["HellscapeUpsideBlockAttacks2_"] = { type = "ScourgeUpside", affix = "", "+(4-5)% Chance to Block Attack Damage", statOrder = { 2334 }, level = 45, group = "AdditionalBlock", weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { "block" }, }, - ["HellscapeUpsideBlockAttacks3"] = { type = "ScourgeUpside", affix = "", "+(6-7)% Chance to Block Attack Damage", statOrder = { 2334 }, level = 68, group = "AdditionalBlock", weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { "block" }, }, - ["HellscapeUpsideBlockAttacks4__"] = { type = "ScourgeUpside", affix = "", "+(8-9)% Chance to Block Attack Damage", statOrder = { 2334 }, level = 68, group = "AdditionalBlock", weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { "block" }, }, - ["HellscapeUpsideBlockSpells2"] = { type = "ScourgeUpside", affix = "", "+(4-5)% Chance to Block Spell Damage", statOrder = { 1044 }, level = 45, group = "AdditionalSpellBlock", weightKey = { "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block" }, }, - ["HellscapeUpsideBlockSpells3_"] = { type = "ScourgeUpside", affix = "", "+(6-7)% Chance to Block Spell Damage", statOrder = { 1044 }, level = 68, group = "AdditionalSpellBlock", weightKey = { "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block" }, }, - ["HellscapeUpsideBlockSpells4"] = { type = "ScourgeUpside", affix = "", "+(8-9)% Chance to Block Spell Damage", statOrder = { 1044 }, level = 68, group = "AdditionalSpellBlock", weightKey = { "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block" }, }, - ["HellscapeUpsideMinionBlockAttacks2"] = { type = "ScourgeUpside", affix = "", "Minions have +(11-13)% Chance to Block Attack Damage", statOrder = { 2777 }, level = 45, group = "MinionBlockChance", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "block", "minion" }, }, - ["HellscapeUpsideMinionBlockAttacks3"] = { type = "ScourgeUpside", affix = "", "Minions have +(14-16)% Chance to Block Attack Damage", statOrder = { 2777 }, level = 68, group = "MinionBlockChance", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "block", "minion" }, }, - ["HellscapeUpsideMinionBlockAttacks4"] = { type = "ScourgeUpside", affix = "", "Minions have +(17-19)% Chance to Block Attack Damage", statOrder = { 2777 }, level = 68, group = "MinionBlockChance", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "block", "minion" }, }, - ["HellscapeUpsideMinionBlockSpells2__"] = { type = "ScourgeUpside", affix = "", "Minions have +(11-13)% Chance to Block Spell Damage", statOrder = { 2778 }, level = 45, group = "MinionSpellBlockChance", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "block", "minion" }, }, - ["HellscapeUpsideMinionBlockSpells3"] = { type = "ScourgeUpside", affix = "", "Minions have +(14-16)% Chance to Block Spell Damage", statOrder = { 2778 }, level = 68, group = "MinionSpellBlockChance", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "block", "minion" }, }, - ["HellscapeUpsideMinionBlockSpells4"] = { type = "ScourgeUpside", affix = "", "Minions have +(17-19)% Chance to Block Spell Damage", statOrder = { 2778 }, level = 68, group = "MinionSpellBlockChance", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "block", "minion" }, }, - ["HellscapeUpsideChanceToSuppressSpells2"] = { type = "ScourgeUpside", affix = "", "+(5-6)% chance to Suppress Spell Damage", statOrder = { 1032 }, level = 45, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "gloves", "boots", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, }, - ["HellscapeUpsideChanceToSuppressSpells3_"] = { type = "ScourgeUpside", affix = "", "+(7-8)% chance to Suppress Spell Damage", statOrder = { 1032 }, level = 68, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "gloves", "boots", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, }, - ["HellscapeUpsideChanceToSuppressSpells4_"] = { type = "ScourgeUpside", affix = "", "+(9-10)% chance to Suppress Spell Damage", statOrder = { 1032 }, level = 68, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "gloves", "boots", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, }, - ["HellscapeUpsideAttackerTakesDamageNoRange1_"] = { type = "ScourgeUpside", affix = "", "Reflects (20-40) Physical Damage to Melee Attackers", statOrder = { 2079 }, level = 1, group = "AttackerTakesDamageNoRange", weightKey = { "body_armour", "shield", "belt", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["HellscapeUpsideAttackerTakesDamageNoRange2_"] = { type = "ScourgeUpside", affix = "", "Reflects (41-60) Physical Damage to Melee Attackers", statOrder = { 2079 }, level = 45, group = "AttackerTakesDamageNoRange", weightKey = { "body_armour", "shield", "belt", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["HellscapeUpsideAttackerTakesDamageNoRange3"] = { type = "ScourgeUpside", affix = "", "Reflects (61-80) Physical Damage to Melee Attackers", statOrder = { 2079 }, level = 68, group = "AttackerTakesDamageNoRange", weightKey = { "body_armour", "shield", "belt", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["HellscapeUpsideAttackerTakesDamageNoRange4"] = { type = "ScourgeUpside", affix = "", "Reflects (81-100) Physical Damage to Melee Attackers", statOrder = { 2079 }, level = 68, group = "AttackerTakesDamageNoRange", weightKey = { "body_armour", "shield", "belt", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["HellscapeUpsideLocalColdDamage1h1"] = { type = "ScourgeUpside", affix = "", "Adds (10-13) to (18-23) Cold Damage", statOrder = { 1255 }, level = 1, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["HellscapeUpsideLocalColdDamage1h2"] = { type = "ScourgeUpside", affix = "", "Adds (19-24) to (28-33) Cold Damage", statOrder = { 1255 }, level = 45, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["HellscapeUpsideLocalColdDamage1h3__"] = { type = "ScourgeUpside", affix = "", "Adds (27-33) to (38-43) Cold Damage", statOrder = { 1255 }, level = 68, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["HellscapeUpsideLocalColdDamage1h4_"] = { type = "ScourgeUpside", affix = "", "Adds (37-43) to (51-57) Cold Damage", statOrder = { 1255 }, level = 68, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["HellscapeUpsideLocalColdDamageRanged1_"] = { type = "ScourgeUpside", affix = "", "Adds (16-20) to (30-35) Cold Damage", statOrder = { 1255 }, level = 1, group = "LocalColdDamage", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["HellscapeUpsideLocalColdDamageRanged2_____"] = { type = "ScourgeUpside", affix = "", "Adds (24-29) to (41-46) Cold Damage", statOrder = { 1255 }, level = 45, group = "LocalColdDamage", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["HellscapeUpsideLocalColdDamageRanged3___"] = { type = "ScourgeUpside", affix = "", "Adds (31-36) to (50-57) Cold Damage", statOrder = { 1255 }, level = 68, group = "LocalColdDamage", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["HellscapeUpsideLocalColdDamageRanged4"] = { type = "ScourgeUpside", affix = "", "Adds (37-45) to (60-67) Cold Damage", statOrder = { 1255 }, level = 68, group = "LocalColdDamage", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["HellscapeUpsideLocalColdDamage2h1"] = { type = "ScourgeUpside", affix = "", "Adds (19-24) to (35-39) Cold Damage", statOrder = { 1255 }, level = 1, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["HellscapeUpsideLocalColdDamage2h2_____"] = { type = "ScourgeUpside", affix = "", "Adds (30-35) to (53-61) Cold Damage", statOrder = { 1255 }, level = 45, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["HellscapeUpsideLocalColdDamage2h3__"] = { type = "ScourgeUpside", affix = "", "Adds (41-48) to (63-72) Cold Damage", statOrder = { 1255 }, level = 68, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["HellscapeUpsideLocalColdDamage2h4__"] = { type = "ScourgeUpside", affix = "", "Adds (50-61) to (75-87) Cold Damage", statOrder = { 1255 }, level = 68, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["HellscapeUpsideLocalFireDamage1h1"] = { type = "ScourgeUpside", affix = "", "Adds (11-14) to (23-27) Fire Damage", statOrder = { 1246 }, level = 1, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["HellscapeUpsideLocalFireDamage1h2_"] = { type = "ScourgeUpside", affix = "", "Adds (21-26) to (31-38) Fire Damage", statOrder = { 1246 }, level = 45, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["HellscapeUpsideLocalFireDamage1h3___"] = { type = "ScourgeUpside", affix = "", "Adds (29-35) to (43-48) Fire Damage", statOrder = { 1246 }, level = 68, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["HellscapeUpsideLocalFireDamage1h4"] = { type = "ScourgeUpside", affix = "", "Adds (40-45) to (56-62) Fire Damage", statOrder = { 1246 }, level = 68, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["HellscapeUpsideLocalFireDamageRanged1__"] = { type = "ScourgeUpside", affix = "", "Adds (18-22) to (35-39) Fire Damage", statOrder = { 1246 }, level = 1, group = "LocalFireDamage", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["HellscapeUpsideLocalFireDamageRanged2"] = { type = "ScourgeUpside", affix = "", "Adds (27-34) to (46-53) Fire Damage", statOrder = { 1246 }, level = 45, group = "LocalFireDamage", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["HellscapeUpsideLocalFireDamageRanged3_"] = { type = "ScourgeUpside", affix = "", "Adds (36-41) to (56-64) Fire Damage", statOrder = { 1246 }, level = 68, group = "LocalFireDamage", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["HellscapeUpsideLocalFireDamageRanged4______"] = { type = "ScourgeUpside", affix = "", "Adds (43-57) to (66-72) Fire Damage", statOrder = { 1246 }, level = 68, group = "LocalFireDamage", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["HellscapeUpsideLocalFireDamage2h1_"] = { type = "ScourgeUpside", affix = "", "Adds (22-26) to (38-44) Fire Damage", statOrder = { 1246 }, level = 1, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["HellscapeUpsideLocalFireDamage2h2__"] = { type = "ScourgeUpside", affix = "", "Adds (34-43) to (59-67) Fire Damage", statOrder = { 1246 }, level = 45, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["HellscapeUpsideLocalFireDamage2h3______"] = { type = "ScourgeUpside", affix = "", "Adds (48-56) to (69-78) Fire Damage", statOrder = { 1246 }, level = 68, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["HellscapeUpsideLocalFireDamage2h4______"] = { type = "ScourgeUpside", affix = "", "Adds (59-72) to (80-91) Fire Damage", statOrder = { 1246 }, level = 68, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["HellscapeUpsideLocalLightningDamage1h1_"] = { type = "ScourgeUpside", affix = "", "Adds (1-3) to (40-45) Lightning Damage", statOrder = { 1266 }, level = 1, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["HellscapeUpsideLocalLightningDamage1h2"] = { type = "ScourgeUpside", affix = "", "Adds (2-4) to (54-68) Lightning Damage", statOrder = { 1266 }, level = 45, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["HellscapeUpsideLocalLightningDamage1h3"] = { type = "ScourgeUpside", affix = "", "Adds (3-6) to (76-90) Lightning Damage", statOrder = { 1266 }, level = 68, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["HellscapeUpsideLocalLightningDamage1h4"] = { type = "ScourgeUpside", affix = "", "Adds (4-8) to (98-111) Lightning Damage", statOrder = { 1266 }, level = 68, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["HellscapeUpsideLocalLightningDamageRanged1__"] = { type = "ScourgeUpside", affix = "", "Adds (1-5) to (60-66) Lightning Damage", statOrder = { 1266 }, level = 1, group = "LocalLightningDamage", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["HellscapeUpsideLocalLightningDamageRanged2_"] = { type = "ScourgeUpside", affix = "", "Adds (3-6) to (81-102) Lightning Damage", statOrder = { 1266 }, level = 45, group = "LocalLightningDamage", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["HellscapeUpsideLocalLightningDamageRanged3___"] = { type = "ScourgeUpside", affix = "", "Adds (4-9) to (114-134) Lightning Damage", statOrder = { 1266 }, level = 68, group = "LocalLightningDamage", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["HellscapeUpsideLocalLightningDamageRanged4_"] = { type = "ScourgeUpside", affix = "", "Adds (5-12) to (147-166) Lightning Damage", statOrder = { 1266 }, level = 68, group = "LocalLightningDamage", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["HellscapeUpsideLocalLightningDamage2h1__"] = { type = "ScourgeUpside", affix = "", "Adds (2-6) to (74-86) Lightning Damage", statOrder = { 1266 }, level = 1, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["HellscapeUpsideLocalLightningDamage2h2_"] = { type = "ScourgeUpside", affix = "", "Adds (4-8) to (103-129) Lightning Damage", statOrder = { 1266 }, level = 45, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["HellscapeUpsideLocalLightningDamage2h3_"] = { type = "ScourgeUpside", affix = "", "Adds (5-10) to (145-170) Lightning Damage", statOrder = { 1266 }, level = 68, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["HellscapeUpsideLocalLightningDamage2h4_"] = { type = "ScourgeUpside", affix = "", "Adds (6-15) to (186-211) Lightning Damage", statOrder = { 1266 }, level = 68, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["HellscapeUpsideLocalPhysicalDamage1h1"] = { type = "ScourgeUpside", affix = "", "Adds (1-2) to (6-7) Physical Damage", statOrder = { 1160 }, level = 1, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["HellscapeUpsideLocalPhysicalDamage1h2"] = { type = "ScourgeUpside", affix = "", "Adds (3-4) to (8-9) Physical Damage", statOrder = { 1160 }, level = 45, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["HellscapeUpsideLocalPhysicalDamage1h3__"] = { type = "ScourgeUpside", affix = "", "Adds (5-6) to (10-11) Physical Damage", statOrder = { 1160 }, level = 68, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["HellscapeUpsideLocalPhysicalDamage1h4"] = { type = "ScourgeUpside", affix = "", "Adds (7-8) to (12-13) Physical Damage", statOrder = { 1160 }, level = 68, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["HellscapeUpsideLocalPhysicalDamage2h1_"] = { type = "ScourgeUpside", affix = "", "Adds (2-4) to (11-13) Physical Damage", statOrder = { 1160 }, level = 1, group = "LocalPhysicalDamage", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["HellscapeUpsideLocalPhysicalDamage2h2_"] = { type = "ScourgeUpside", affix = "", "Adds (6-8) to (15-17) Physical Damage", statOrder = { 1160 }, level = 45, group = "LocalPhysicalDamage", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["HellscapeUpsideLocalPhysicalDamage2h3__"] = { type = "ScourgeUpside", affix = "", "Adds (10-12) to (19-21) Physical Damage", statOrder = { 1160 }, level = 68, group = "LocalPhysicalDamage", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["HellscapeUpsideLocalPhysicalDamage2h4_"] = { type = "ScourgeUpside", affix = "", "Adds (14-16) to (23-25) Physical Damage", statOrder = { 1160 }, level = 68, group = "LocalPhysicalDamage", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["HellscapeUpsideLocalChaosDamage1h1_"] = { type = "ScourgeUpside", affix = "", "Adds (5-6) to (13-17) Chaos Damage", statOrder = { 1274 }, level = 1, group = "LocalChaosDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["HellscapeUpsideLocalChaosDamage1h2"] = { type = "ScourgeUpside", affix = "", "Adds (7-9) to (19-21) Chaos Damage", statOrder = { 1274 }, level = 45, group = "LocalChaosDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["HellscapeUpsideLocalChaosDamage1h3____"] = { type = "ScourgeUpside", affix = "", "Adds (10-12) to (23-27) Chaos Damage", statOrder = { 1274 }, level = 68, group = "LocalChaosDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["HellscapeUpsideLocalChaosDamage1h4"] = { type = "ScourgeUpside", affix = "", "Adds (13-15) to (29-33) Chaos Damage", statOrder = { 1274 }, level = 68, group = "LocalChaosDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["HellscapeUpsideLocalChaosDamageRanged1_"] = { type = "ScourgeUpside", affix = "", "Adds (7-9) to (19-25) Chaos Damage", statOrder = { 1274 }, level = 1, group = "LocalChaosDamage", weightKey = { "bow", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["HellscapeUpsideLocalChaosDamageRanged2"] = { type = "ScourgeUpside", affix = "", "Adds (10-14) to (28-31) Chaos Damage", statOrder = { 1274 }, level = 45, group = "LocalChaosDamage", weightKey = { "bow", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["HellscapeUpsideLocalChaosDamageRanged3_"] = { type = "ScourgeUpside", affix = "", "Adds (15-19) to (34-40) Chaos Damage", statOrder = { 1274 }, level = 68, group = "LocalChaosDamage", weightKey = { "bow", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["HellscapeUpsideLocalChaosDamageRanged4"] = { type = "ScourgeUpside", affix = "", "Adds (20-22) to (43-49) Chaos Damage", statOrder = { 1274 }, level = 68, group = "LocalChaosDamage", weightKey = { "bow", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["HellscapeUpsideLocalChaosDamage2h1_"] = { type = "ScourgeUpside", affix = "", "Adds (10-11) to (25-32) Chaos Damage", statOrder = { 1274 }, level = 1, group = "LocalChaosDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["HellscapeUpsideLocalChaosDamage2h2"] = { type = "ScourgeUpside", affix = "", "Adds (13-17) to (36-40) Chaos Damage", statOrder = { 1274 }, level = 45, group = "LocalChaosDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["HellscapeUpsideLocalChaosDamage2h3_____"] = { type = "ScourgeUpside", affix = "", "Adds (19-23) to (44-51) Chaos Damage", statOrder = { 1274 }, level = 68, group = "LocalChaosDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["HellscapeUpsideLocalChaosDamage2h4"] = { type = "ScourgeUpside", affix = "", "Adds (25-29) to (55-63) Chaos Damage", statOrder = { 1274 }, level = 68, group = "LocalChaosDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["HellscapeUpsideIncreasedWeaponElementalDamagePercent1"] = { type = "ScourgeUpside", affix = "", "(8-12)% increased Elemental Damage with Attack Skills", statOrder = { 6010 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["HellscapeUpsideIncreasedWeaponElementalDamagePercent2_"] = { type = "ScourgeUpside", affix = "", "(13-16)% increased Elemental Damage with Attack Skills", statOrder = { 6010 }, level = 45, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["HellscapeUpsideIncreasedWeaponElementalDamagePercent3"] = { type = "ScourgeUpside", affix = "", "(17-20)% increased Elemental Damage with Attack Skills", statOrder = { 6010 }, level = 68, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["HellscapeUpsideIncreasedWeaponElementalDamagePercent4"] = { type = "ScourgeUpside", affix = "", "(21-24)% increased Elemental Damage with Attack Skills", statOrder = { 6010 }, level = 68, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["HellscapeUpsideSpellAddedColdDamage1h1"] = { type = "ScourgeUpside", affix = "", "Adds (9-12) to (25-27) Cold Damage to Spells", statOrder = { 1289 }, level = 1, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["HellscapeUpsideSpellAddedColdDamage1h2"] = { type = "ScourgeUpside", affix = "", "Adds (13-15) to (28-32) Cold Damage to Spells", statOrder = { 1289 }, level = 45, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["HellscapeUpsideSpellAddedColdDamage1h3_"] = { type = "ScourgeUpside", affix = "", "Adds (16-18) to (33-36) Cold Damage to Spells", statOrder = { 1289 }, level = 68, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["HellscapeUpsideSpellAddedColdDamage1h4"] = { type = "ScourgeUpside", affix = "", "Adds (19-21) to (37-40) Cold Damage to Spells", statOrder = { 1289 }, level = 68, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["HellscapeUpsideSpellAddedColdDamage2h1"] = { type = "ScourgeUpside", affix = "", "Adds (13-18) to (37-40) Cold Damage to Spells", statOrder = { 1289 }, level = 1, group = "SpellAddedColdDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["HellscapeUpsideSpellAddedColdDamage2h2_"] = { type = "ScourgeUpside", affix = "", "Adds (19-22) to (42-48) Cold Damage to Spells", statOrder = { 1289 }, level = 45, group = "SpellAddedColdDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["HellscapeUpsideSpellAddedColdDamage2h3"] = { type = "ScourgeUpside", affix = "", "Adds (23-27) to (49-54) Cold Damage to Spells", statOrder = { 1289 }, level = 68, group = "SpellAddedColdDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["HellscapeUpsideSpellAddedColdDamage2h4"] = { type = "ScourgeUpside", affix = "", "Adds (28-31) to (55-60) Cold Damage to Spells", statOrder = { 1289 }, level = 68, group = "SpellAddedColdDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["HellscapeUpsideSpellAddedFireDamage1h1_"] = { type = "ScourgeUpside", affix = "", "Adds (9-12) to (25-27) Fire Damage to Spells", statOrder = { 1288 }, level = 1, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["HellscapeUpsideSpellAddedFireDamage1h2_"] = { type = "ScourgeUpside", affix = "", "Adds (13-15) to (28-32) Fire Damage to Spells", statOrder = { 1288 }, level = 45, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["HellscapeUpsideSpellAddedFireDamage1h3"] = { type = "ScourgeUpside", affix = "", "Adds (16-18) to (33-36) Fire Damage to Spells", statOrder = { 1288 }, level = 68, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["HellscapeUpsideSpellAddedFireDamage1h4"] = { type = "ScourgeUpside", affix = "", "Adds (19-21) to (37-40) Fire Damage to Spells", statOrder = { 1288 }, level = 68, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["HellscapeUpsideSpellAddedFireDamage2h1"] = { type = "ScourgeUpside", affix = "", "Adds (13-18) to (37-40) Fire Damage to Spells", statOrder = { 1288 }, level = 1, group = "SpellAddedFireDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["HellscapeUpsideSpellAddedFireDamage2h2"] = { type = "ScourgeUpside", affix = "", "Adds (19-22) to (42-48) Fire Damage to Spells", statOrder = { 1288 }, level = 45, group = "SpellAddedFireDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["HellscapeUpsideSpellAddedFireDamage2h3_"] = { type = "ScourgeUpside", affix = "", "Adds (23-27) to (49-54) Fire Damage to Spells", statOrder = { 1288 }, level = 68, group = "SpellAddedFireDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["HellscapeUpsideSpellAddedFireDamage2h4"] = { type = "ScourgeUpside", affix = "", "Adds (28-31) to (55-60) Fire Damage to Spells", statOrder = { 1288 }, level = 68, group = "SpellAddedFireDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["HellscapeUpsideSpellAddedLightningDamage1h1"] = { type = "ScourgeUpside", affix = "", "Adds (4-6) to (31-34) Lightning Damage to Spells", statOrder = { 1290 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["HellscapeUpsideSpellAddedLightningDamage1h2"] = { type = "ScourgeUpside", affix = "", "Adds (7-9) to (36-39) Lightning Damage to Spells", statOrder = { 1290 }, level = 45, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["HellscapeUpsideSpellAddedLightningDamage1h3_"] = { type = "ScourgeUpside", affix = "", "Adds (10-12) to (42-45) Lightning Damage to Spells", statOrder = { 1290 }, level = 68, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["HellscapeUpsideSpellAddedLightningDamage1h4_"] = { type = "ScourgeUpside", affix = "", "Adds (13-15) to (47-50) Lightning Damage to Spells", statOrder = { 1290 }, level = 68, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["HellscapeUpsideSpellAddedLightningDamage2h1"] = { type = "ScourgeUpside", affix = "", "Adds (6-9) to (46-51) Lightning Damage to Spells", statOrder = { 1290 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["HellscapeUpsideSpellAddedLightningDamage2h2_"] = { type = "ScourgeUpside", affix = "", "Adds (10-13) to (54-59) Lightning Damage to Spells", statOrder = { 1290 }, level = 45, group = "SpellAddedLightningDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["HellscapeUpsideSpellAddedLightningDamage2h3"] = { type = "ScourgeUpside", affix = "", "Adds (15-18) to (63-67) Lightning Damage to Spells", statOrder = { 1290 }, level = 68, group = "SpellAddedLightningDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["HellscapeUpsideSpellAddedLightningDamage2h4_"] = { type = "ScourgeUpside", affix = "", "Adds (19-22) to (70-75) Lightning Damage to Spells", statOrder = { 1290 }, level = 68, group = "SpellAddedLightningDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["HellscapeUpsideSpellAddedPhysicalDamage1h1"] = { type = "ScourgeUpside", affix = "", "Adds (9-12) to (25-27) Physical Damage to Spells", statOrder = { 1287 }, level = 1, group = "SpellAddedPhysicalDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["HellscapeUpsideSpellAddedPhysicalDamage1h2_"] = { type = "ScourgeUpside", affix = "", "Adds (13-15) to (28-32) Physical Damage to Spells", statOrder = { 1287 }, level = 45, group = "SpellAddedPhysicalDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["HellscapeUpsideSpellAddedPhysicalDamage1h3_"] = { type = "ScourgeUpside", affix = "", "Adds (16-18) to (32-36) Physical Damage to Spells", statOrder = { 1287 }, level = 68, group = "SpellAddedPhysicalDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["HellscapeUpsideSpellAddedPhysicalDamage1h4"] = { type = "ScourgeUpside", affix = "", "Adds (19-21) to (36-40) Physical Damage to Spells", statOrder = { 1287 }, level = 68, group = "SpellAddedPhysicalDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["HellscapeUpsideSpellAddedPhysicalDamage2h1_"] = { type = "ScourgeUpside", affix = "", "Adds (13-18) to (37-40) Physical Damage to Spells", statOrder = { 1287 }, level = 1, group = "SpellAddedPhysicalDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["HellscapeUpsideSpellAddedPhysicalDamage2h2_"] = { type = "ScourgeUpside", affix = "", "Adds (19-22) to (42-48) Physical Damage to Spells", statOrder = { 1287 }, level = 45, group = "SpellAddedPhysicalDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["HellscapeUpsideSpellAddedPhysicalDamage2h3"] = { type = "ScourgeUpside", affix = "", "Adds (23-27) to (49-54) Physical Damage to Spells", statOrder = { 1287 }, level = 68, group = "SpellAddedPhysicalDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["HellscapeUpsideSpellAddedPhysicalDamage2h4__"] = { type = "ScourgeUpside", affix = "", "Adds (28-31) to (55-60) Physical Damage to Spells", statOrder = { 1287 }, level = 68, group = "SpellAddedPhysicalDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["HellscapeUpsideSpellDamage1h1"] = { type = "ScourgeUpside", affix = "", "(23-25)% increased Spell Damage", statOrder = { 1108 }, level = 1, group = "SpellDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 200, 200, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["HellscapeUpsideSpellDamage1h1b"] = { type = "ScourgeUpside", affix = "", "(28-30)% increased Spell Damage", statOrder = { 1108 }, level = 25, group = "SpellDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 200, 200, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["HellscapeUpsideSpellDamage1h2"] = { type = "ScourgeUpside", affix = "", "(33-35)% increased Spell Damage", statOrder = { 1108 }, level = 45, group = "SpellDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 200, 200, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["HellscapeUpsideSpellDamage1h2b___"] = { type = "ScourgeUpside", affix = "", "(38-40)% increased Spell Damage", statOrder = { 1108 }, level = 55, group = "SpellDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 200, 200, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["HellscapeUpsideSpellDamage1h3"] = { type = "ScourgeUpside", affix = "", "(43-45)% increased Spell Damage", statOrder = { 1108 }, level = 68, group = "SpellDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 200, 200, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["HellscapeUpsideSpellDamage1h4_"] = { type = "ScourgeUpside", affix = "", "(48-50)% increased Spell Damage", statOrder = { 1108 }, level = 68, group = "SpellDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 200, 200, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["HellscapeUpsideSpellDamage2h1___"] = { type = "ScourgeUpside", affix = "", "(34-40)% increased Spell Damage", statOrder = { 1108 }, level = 1, group = "SpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["HellscapeUpsideSpellDamage2h1b"] = { type = "ScourgeUpside", affix = "", "(41-47)% increased Spell Damage", statOrder = { 1108 }, level = 25, group = "SpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["HellscapeUpsideSpellDamage2h2_"] = { type = "ScourgeUpside", affix = "", "(48-54)% increased Spell Damage", statOrder = { 1108 }, level = 45, group = "SpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["HellscapeUpsideSpellDamage2h2b"] = { type = "ScourgeUpside", affix = "", "(55-61)% increased Spell Damage", statOrder = { 1108 }, level = 55, group = "SpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["HellscapeUpsideSpellDamage2h3___"] = { type = "ScourgeUpside", affix = "", "(62-68)% increased Spell Damage", statOrder = { 1108 }, level = 68, group = "SpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["HellscapeUpsideSpellDamage2h4___"] = { type = "ScourgeUpside", affix = "", "(69-75)% increased Spell Damage", statOrder = { 1108 }, level = 68, group = "SpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["HellscapeUpsideColdDamagePercentage1h1"] = { type = "ScourgeUpside", affix = "", "(23-25)% increased Cold Damage", statOrder = { 1250 }, level = 1, group = "ColdDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["HellscapeUpsideColdDamagePercentage1h1b"] = { type = "ScourgeUpside", affix = "", "(28-30)% increased Cold Damage", statOrder = { 1250 }, level = 25, group = "ColdDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["HellscapeUpsideColdDamagePercentage1h2_"] = { type = "ScourgeUpside", affix = "", "(33-35)% increased Cold Damage", statOrder = { 1250 }, level = 45, group = "ColdDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["HellscapeUpsideColdDamagePercentage1h2b_"] = { type = "ScourgeUpside", affix = "", "(38-40)% increased Cold Damage", statOrder = { 1250 }, level = 55, group = "ColdDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["HellscapeUpsideColdDamagePercentage1h3___"] = { type = "ScourgeUpside", affix = "", "(43-45)% increased Cold Damage", statOrder = { 1250 }, level = 68, group = "ColdDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["HellscapeUpsideColdDamagePercentage1h4"] = { type = "ScourgeUpside", affix = "", "(48-50)% increased Cold Damage", statOrder = { 1250 }, level = 68, group = "ColdDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["HellscapeUpsideColdDamagePercentage2h1_"] = { type = "ScourgeUpside", affix = "", "(34-40)% increased Cold Damage", statOrder = { 1250 }, level = 1, group = "ColdDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["HellscapeUpsideColdDamagePercentage2h1b"] = { type = "ScourgeUpside", affix = "", "(41-47)% increased Cold Damage", statOrder = { 1250 }, level = 25, group = "ColdDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["HellscapeUpsideColdDamagePercentage2h2"] = { type = "ScourgeUpside", affix = "", "(48-54)% increased Cold Damage", statOrder = { 1250 }, level = 45, group = "ColdDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["HellscapeUpsideColdDamagePercentage2h2b"] = { type = "ScourgeUpside", affix = "", "(55-61)% increased Cold Damage", statOrder = { 1250 }, level = 55, group = "ColdDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["HellscapeUpsideColdDamagePercentage2h3___"] = { type = "ScourgeUpside", affix = "", "(62-68)% increased Cold Damage", statOrder = { 1250 }, level = 68, group = "ColdDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["HellscapeUpsideColdDamagePercentage2h4"] = { type = "ScourgeUpside", affix = "", "(69-75)% increased Cold Damage", statOrder = { 1250 }, level = 68, group = "ColdDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["HellscapeUpsideFireDamagePercentage1h1__"] = { type = "ScourgeUpside", affix = "", "(23-25)% increased Fire Damage", statOrder = { 1241 }, level = 1, group = "FireDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["HellscapeUpsideFireDamagePercentage1h1b"] = { type = "ScourgeUpside", affix = "", "(28-30)% increased Fire Damage", statOrder = { 1241 }, level = 25, group = "FireDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["HellscapeUpsideFireDamagePercentage1h2___"] = { type = "ScourgeUpside", affix = "", "(33-35)% increased Fire Damage", statOrder = { 1241 }, level = 45, group = "FireDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["HellscapeUpsideFireDamagePercentage1h2b"] = { type = "ScourgeUpside", affix = "", "(38-40)% increased Fire Damage", statOrder = { 1241 }, level = 55, group = "FireDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["HellscapeUpsideFireDamagePercentage1h3__"] = { type = "ScourgeUpside", affix = "", "(43-45)% increased Fire Damage", statOrder = { 1241 }, level = 68, group = "FireDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["HellscapeUpsideFireDamagePercentage1h4"] = { type = "ScourgeUpside", affix = "", "(48-50)% increased Fire Damage", statOrder = { 1241 }, level = 68, group = "FireDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["HellscapeUpsideFireDamagePercentage2h1"] = { type = "ScourgeUpside", affix = "", "(34-40)% increased Fire Damage", statOrder = { 1241 }, level = 1, group = "FireDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["HellscapeUpsideFireDamagePercentage2h1b____"] = { type = "ScourgeUpside", affix = "", "(41-47)% increased Fire Damage", statOrder = { 1241 }, level = 25, group = "FireDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["HellscapeUpsideFireDamagePercentage2h2__"] = { type = "ScourgeUpside", affix = "", "(48-54)% increased Fire Damage", statOrder = { 1241 }, level = 45, group = "FireDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["HellscapeUpsideFireDamagePercentage2h2b"] = { type = "ScourgeUpside", affix = "", "(55-61)% increased Fire Damage", statOrder = { 1241 }, level = 55, group = "FireDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["HellscapeUpsideFireDamagePercentage2h3___"] = { type = "ScourgeUpside", affix = "", "(62-68)% increased Fire Damage", statOrder = { 1241 }, level = 68, group = "FireDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["HellscapeUpsideFireDamagePercentage2h4"] = { type = "ScourgeUpside", affix = "", "(69-75)% increased Fire Damage", statOrder = { 1241 }, level = 68, group = "FireDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["HellscapeUpsideLightningDamagePercentage1h1"] = { type = "ScourgeUpside", affix = "", "(23-25)% increased Lightning Damage", statOrder = { 1261 }, level = 1, group = "LightningDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["HellscapeUpsideLightningDamagePercentage1h1b__"] = { type = "ScourgeUpside", affix = "", "(28-30)% increased Lightning Damage", statOrder = { 1261 }, level = 25, group = "LightningDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["HellscapeUpsideLightningDamagePercentage1h2"] = { type = "ScourgeUpside", affix = "", "(33-35)% increased Lightning Damage", statOrder = { 1261 }, level = 45, group = "LightningDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["HellscapeUpsideLightningDamagePercentage1h2b__"] = { type = "ScourgeUpside", affix = "", "(38-40)% increased Lightning Damage", statOrder = { 1261 }, level = 55, group = "LightningDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["HellscapeUpsideLightningDamagePercentage1h3"] = { type = "ScourgeUpside", affix = "", "(43-45)% increased Lightning Damage", statOrder = { 1261 }, level = 68, group = "LightningDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["HellscapeUpsideLightningDamagePercentage1h4"] = { type = "ScourgeUpside", affix = "", "(48-50)% increased Lightning Damage", statOrder = { 1261 }, level = 68, group = "LightningDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["HellscapeUpsideLightningDamagePercentage2h1"] = { type = "ScourgeUpside", affix = "", "(34-40)% increased Lightning Damage", statOrder = { 1261 }, level = 1, group = "LightningDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["HellscapeUpsideLightningDamagePercentage2h1b_"] = { type = "ScourgeUpside", affix = "", "(41-47)% increased Lightning Damage", statOrder = { 1261 }, level = 25, group = "LightningDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["HellscapeUpsideLightningDamagePercentage2h2"] = { type = "ScourgeUpside", affix = "", "(48-54)% increased Lightning Damage", statOrder = { 1261 }, level = 45, group = "LightningDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["HellscapeUpsideLightningDamagePercentage2h2b"] = { type = "ScourgeUpside", affix = "", "(55-61)% increased Lightning Damage", statOrder = { 1261 }, level = 55, group = "LightningDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["HellscapeUpsideLightningDamagePercentage2h3"] = { type = "ScourgeUpside", affix = "", "(62-68)% increased Lightning Damage", statOrder = { 1261 }, level = 68, group = "LightningDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["HellscapeUpsideLightningDamagePercentage2h4"] = { type = "ScourgeUpside", affix = "", "(69-75)% increased Lightning Damage", statOrder = { 1261 }, level = 68, group = "LightningDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["HellscapeUpsidePhysicalDamagePercentage1h1"] = { type = "ScourgeUpside", affix = "", "(23-25)% increased Global Physical Damage", statOrder = { 1116 }, level = 1, group = "PhysicalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["HellscapeUpsidePhysicalDamagePercentage1h1b"] = { type = "ScourgeUpside", affix = "", "(28-30)% increased Global Physical Damage", statOrder = { 1116 }, level = 25, group = "PhysicalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["HellscapeUpsidePhysicalDamagePercentage1h2__"] = { type = "ScourgeUpside", affix = "", "(33-35)% increased Global Physical Damage", statOrder = { 1116 }, level = 45, group = "PhysicalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["HellscapeUpsidePhysicalDamagePercentage1h2b"] = { type = "ScourgeUpside", affix = "", "(38-40)% increased Global Physical Damage", statOrder = { 1116 }, level = 55, group = "PhysicalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["HellscapeUpsidePhysicalDamagePercentage1h3"] = { type = "ScourgeUpside", affix = "", "(43-45)% increased Global Physical Damage", statOrder = { 1116 }, level = 68, group = "PhysicalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["HellscapeUpsidePhysicalDamagePercentage1h4"] = { type = "ScourgeUpside", affix = "", "(48-50)% increased Global Physical Damage", statOrder = { 1116 }, level = 68, group = "PhysicalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["HellscapeUpsidePhysicalDamagePercentage2h1"] = { type = "ScourgeUpside", affix = "", "(34-40)% increased Global Physical Damage", statOrder = { 1116 }, level = 1, group = "PhysicalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["HellscapeUpsidePhysicalDamagePercentage2h1b_"] = { type = "ScourgeUpside", affix = "", "(41-47)% increased Global Physical Damage", statOrder = { 1116 }, level = 25, group = "PhysicalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["HellscapeUpsidePhysicalDamagePercentage2h2"] = { type = "ScourgeUpside", affix = "", "(48-54)% increased Global Physical Damage", statOrder = { 1116 }, level = 45, group = "PhysicalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["HellscapeUpsidePhysicalDamagePercentage2h2b__"] = { type = "ScourgeUpside", affix = "", "(55-61)% increased Global Physical Damage", statOrder = { 1116 }, level = 55, group = "PhysicalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["HellscapeUpsidePhysicalDamagePercentage2h3_"] = { type = "ScourgeUpside", affix = "", "(62-68)% increased Global Physical Damage", statOrder = { 1116 }, level = 68, group = "PhysicalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["HellscapeUpsidePhysicalDamagePercentage2h4"] = { type = "ScourgeUpside", affix = "", "(69-75)% increased Global Physical Damage", statOrder = { 1116 }, level = 68, group = "PhysicalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["HellscapeUpsideElementalDamagePercentage1h1"] = { type = "ScourgeUpside", affix = "", "(23-25)% increased Elemental Damage", statOrder = { 1857 }, level = 1, group = "ElementalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["HellscapeUpsideElementalDamagePercentage1h1b"] = { type = "ScourgeUpside", affix = "", "(28-30)% increased Elemental Damage", statOrder = { 1857 }, level = 25, group = "ElementalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["HellscapeUpsideElementalDamagePercentage1h2"] = { type = "ScourgeUpside", affix = "", "(33-35)% increased Elemental Damage", statOrder = { 1857 }, level = 45, group = "ElementalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["HellscapeUpsideElementalDamagePercentage1h2b_"] = { type = "ScourgeUpside", affix = "", "(38-40)% increased Elemental Damage", statOrder = { 1857 }, level = 55, group = "ElementalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["HellscapeUpsideElementalDamagePercentage1h3_"] = { type = "ScourgeUpside", affix = "", "(43-45)% increased Elemental Damage", statOrder = { 1857 }, level = 68, group = "ElementalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["HellscapeUpsideElementalDamagePercentage1h4"] = { type = "ScourgeUpside", affix = "", "(48-50)% increased Elemental Damage", statOrder = { 1857 }, level = 68, group = "ElementalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["HellscapeUpsideElementalDamagePercentage2h1_"] = { type = "ScourgeUpside", affix = "", "(34-40)% increased Elemental Damage", statOrder = { 1857 }, level = 1, group = "ElementalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["HellscapeUpsideElementalDamagePercentage2h1b_"] = { type = "ScourgeUpside", affix = "", "(41-47)% increased Elemental Damage", statOrder = { 1857 }, level = 25, group = "ElementalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["HellscapeUpsideElementalDamagePercentage2h2"] = { type = "ScourgeUpside", affix = "", "(48-54)% increased Elemental Damage", statOrder = { 1857 }, level = 45, group = "ElementalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["HellscapeUpsideElementalDamagePercentage2h2b"] = { type = "ScourgeUpside", affix = "", "(55-61)% increased Elemental Damage", statOrder = { 1857 }, level = 55, group = "ElementalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["HellscapeUpsideElementalDamagePercentage2h3"] = { type = "ScourgeUpside", affix = "", "(62-68)% increased Elemental Damage", statOrder = { 1857 }, level = 68, group = "ElementalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["HellscapeUpsideElementalDamagePercentage2h4__"] = { type = "ScourgeUpside", affix = "", "(69-75)% increased Elemental Damage", statOrder = { 1857 }, level = 68, group = "ElementalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["HellscapeUpsideChaosDamagePercentage1h1"] = { type = "ScourgeUpside", affix = "", "(23-25)% increased Chaos Damage", statOrder = { 1269 }, level = 1, group = "IncreasedChaosDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["HellscapeUpsideChaosDamagePercentage1h1b_"] = { type = "ScourgeUpside", affix = "", "(28-30)% increased Chaos Damage", statOrder = { 1269 }, level = 25, group = "IncreasedChaosDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["HellscapeUpsideChaosDamagePercentage1h2_"] = { type = "ScourgeUpside", affix = "", "(33-35)% increased Chaos Damage", statOrder = { 1269 }, level = 45, group = "IncreasedChaosDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["HellscapeUpsideChaosDamagePercentage1h2b_"] = { type = "ScourgeUpside", affix = "", "(38-40)% increased Chaos Damage", statOrder = { 1269 }, level = 55, group = "IncreasedChaosDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["HellscapeUpsideChaosDamagePercentage1h3"] = { type = "ScourgeUpside", affix = "", "(43-45)% increased Chaos Damage", statOrder = { 1269 }, level = 68, group = "IncreasedChaosDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["HellscapeUpsideChaosDamagePercentage1h4_"] = { type = "ScourgeUpside", affix = "", "(48-50)% increased Chaos Damage", statOrder = { 1269 }, level = 68, group = "IncreasedChaosDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["HellscapeUpsideChaosDamagePercentage2h1"] = { type = "ScourgeUpside", affix = "", "(34-40)% increased Chaos Damage", statOrder = { 1269 }, level = 1, group = "IncreasedChaosDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["HellscapeUpsideChaosDamagePercentage2h1b"] = { type = "ScourgeUpside", affix = "", "(41-47)% increased Chaos Damage", statOrder = { 1269 }, level = 25, group = "IncreasedChaosDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["HellscapeUpsideChaosDamagePercentage2h2"] = { type = "ScourgeUpside", affix = "", "(48-54)% increased Chaos Damage", statOrder = { 1269 }, level = 45, group = "IncreasedChaosDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["HellscapeUpsideChaosDamagePercentage2h2b___"] = { type = "ScourgeUpside", affix = "", "(55-61)% increased Chaos Damage", statOrder = { 1269 }, level = 55, group = "IncreasedChaosDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["HellscapeUpsideChaosDamagePercentage2h3_"] = { type = "ScourgeUpside", affix = "", "(62-68)% increased Chaos Damage", statOrder = { 1269 }, level = 68, group = "IncreasedChaosDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["HellscapeUpsideChaosDamagePercentage2h4"] = { type = "ScourgeUpside", affix = "", "(69-75)% increased Chaos Damage", statOrder = { 1269 }, level = 68, group = "IncreasedChaosDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["HellscapeUpsideMinionDamagePercentage1__"] = { type = "ScourgeUpside", affix = "", "Minions deal (8-9)% increased Damage", statOrder = { 1852 }, level = 1, group = "MinionDamage", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "damage", "minion" }, }, - ["HellscapeUpsideMinionDamagePercentage2"] = { type = "ScourgeUpside", affix = "", "Minions deal (10-11)% increased Damage", statOrder = { 1852 }, level = 45, group = "MinionDamage", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "damage", "minion" }, }, - ["HellscapeUpsideMinionDamagePercentage3__"] = { type = "ScourgeUpside", affix = "", "Minions deal (12-13)% increased Damage", statOrder = { 1852 }, level = 68, group = "MinionDamage", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "damage", "minion" }, }, - ["HellscapeUpsideMinionDamagePercentage4_"] = { type = "ScourgeUpside", affix = "", "Minions deal (14-15)% increased Damage", statOrder = { 1852 }, level = 68, group = "MinionDamage", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "damage", "minion" }, }, - ["HellscapeUpsideProjectileDamagePercentage1"] = { type = "ScourgeUpside", affix = "", "(8-9)% increased Projectile Damage", statOrder = { 1873 }, level = 1, group = "ProjectileDamage", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, }, - ["HellscapeUpsideProjectileDamagePercentage2"] = { type = "ScourgeUpside", affix = "", "(10-11)% increased Projectile Damage", statOrder = { 1873 }, level = 45, group = "ProjectileDamage", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, }, - ["HellscapeUpsideProjectileDamagePercentage3"] = { type = "ScourgeUpside", affix = "", "(12-13)% increased Projectile Damage", statOrder = { 1873 }, level = 68, group = "ProjectileDamage", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, }, - ["HellscapeUpsideProjectileDamagePercentage4"] = { type = "ScourgeUpside", affix = "", "(14-15)% increased Projectile Damage", statOrder = { 1873 }, level = 68, group = "ProjectileDamage", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, }, - ["HellscapeUpsideCriticalStrikeChance2"] = { type = "ScourgeUpside", affix = "", "(17-19)% increased Global Critical Strike Chance", statOrder = { 1343 }, level = 45, group = "CriticalStrikeChance", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "critical" }, }, - ["HellscapeUpsideCriticalStrikeChance3"] = { type = "ScourgeUpside", affix = "", "(20-22)% increased Global Critical Strike Chance", statOrder = { 1343 }, level = 68, group = "CriticalStrikeChance", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "critical" }, }, - ["HellscapeUpsideCriticalStrikeChance4"] = { type = "ScourgeUpside", affix = "", "(23-25)% increased Global Critical Strike Chance", statOrder = { 1343 }, level = 68, group = "CriticalStrikeChance", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "critical" }, }, - ["HellscapeUpsideCriticalStrikeMultiplier2_"] = { type = "ScourgeUpside", affix = "", "+(17-19)% to Global Critical Strike Multiplier", statOrder = { 1372 }, level = 45, group = "CriticalStrikeMultiplier", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "critical" }, }, - ["HellscapeUpsideCriticalStrikeMultiplier3"] = { type = "ScourgeUpside", affix = "", "+(20-22)% to Global Critical Strike Multiplier", statOrder = { 1372 }, level = 68, group = "CriticalStrikeMultiplier", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "critical" }, }, - ["HellscapeUpsideCriticalStrikeMultiplier4"] = { type = "ScourgeUpside", affix = "", "+(23-25)% to Global Critical Strike Multiplier", statOrder = { 1372 }, level = 68, group = "CriticalStrikeMultiplier", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "critical" }, }, - ["HellscapeUpsideCriticalStrikeChanceWithBows2"] = { type = "ScourgeUpside", affix = "", "(17-19)% increased Critical Strike Chance with Bows", statOrder = { 1349 }, level = 45, group = "CriticalStrikeChanceWithBows", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "attack", "critical" }, }, - ["HellscapeUpsideCriticalStrikeChanceWithBows3"] = { type = "ScourgeUpside", affix = "", "(20-22)% increased Critical Strike Chance with Bows", statOrder = { 1349 }, level = 68, group = "CriticalStrikeChanceWithBows", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "attack", "critical" }, }, - ["HellscapeUpsideCriticalStrikeChanceWithBows4_"] = { type = "ScourgeUpside", affix = "", "(23-25)% increased Critical Strike Chance with Bows", statOrder = { 1349 }, level = 68, group = "CriticalStrikeChanceWithBows", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "attack", "critical" }, }, - ["HellscapeUpsideCriticalStrikeMultiplierWithBows2"] = { type = "ScourgeUpside", affix = "", "+(17-19)% to Critical Strike Multiplier with Bows", statOrder = { 1379 }, level = 45, group = "CriticalStrikeMultiplierWithBows", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "damage", "attack", "critical" }, }, - ["HellscapeUpsideCriticalStrikeMultiplierWithBows3__"] = { type = "ScourgeUpside", affix = "", "+(20-22)% to Critical Strike Multiplier with Bows", statOrder = { 1379 }, level = 68, group = "CriticalStrikeMultiplierWithBows", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "damage", "attack", "critical" }, }, - ["HellscapeUpsideCriticalStrikeMultiplierWithBows4"] = { type = "ScourgeUpside", affix = "", "+(23-25)% to Critical Strike Multiplier with Bows", statOrder = { 1379 }, level = 68, group = "CriticalStrikeMultiplierWithBows", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "damage", "attack", "critical" }, }, - ["HellscapeUpsideFireDamageOverTimeMultiplier1h3_"] = { type = "ScourgeUpside", affix = "", "+(11-13)% to Fire Damage over Time Multiplier", statOrder = { 1136 }, level = 68, group = "FireDamageOverTimeMultiplier", weightKey = { "wand", "sceptre", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, - ["HellscapeUpsideFireDamageOverTimeMultiplier1h4__"] = { type = "ScourgeUpside", affix = "", "+(14-16)% to Fire Damage over Time Multiplier", statOrder = { 1136 }, level = 68, group = "FireDamageOverTimeMultiplier", weightKey = { "wand", "sceptre", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, - ["HellscapeUpsideFireDamageOverTimeMultiplier2h3"] = { type = "ScourgeUpside", affix = "", "+(16-19)% to Fire Damage over Time Multiplier", statOrder = { 1136 }, level = 68, group = "FireDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, - ["HellscapeUpsideFireDamageOverTimeMultiplier2h4__"] = { type = "ScourgeUpside", affix = "", "+(21-24)% to Fire Damage over Time Multiplier", statOrder = { 1136 }, level = 68, group = "FireDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, - ["HellscapeUpsideColdDamageOverTimeMultiplier1h3___"] = { type = "ScourgeUpside", affix = "", "+(11-13)% to Cold Damage over Time Multiplier", statOrder = { 1141 }, level = 68, group = "ColdDamageOverTimeMultiplier", weightKey = { "wand", "sceptre", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["HellscapeUpsideColdDamageOverTimeMultiplier1h4"] = { type = "ScourgeUpside", affix = "", "+(14-16)% to Cold Damage over Time Multiplier", statOrder = { 1141 }, level = 68, group = "ColdDamageOverTimeMultiplier", weightKey = { "wand", "sceptre", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["HellscapeUpsideColdDamageOverTimeMultiplier2h3"] = { type = "ScourgeUpside", affix = "", "+(16-19)% to Cold Damage over Time Multiplier", statOrder = { 1141 }, level = 68, group = "ColdDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["HellscapeUpsideColdDamageOverTimeMultiplier2h4__"] = { type = "ScourgeUpside", affix = "", "+(21-24)% to Cold Damage over Time Multiplier", statOrder = { 1141 }, level = 68, group = "ColdDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["HellscapeUpsidePhysicalDamageOverTimeMultiplier1h3____"] = { type = "ScourgeUpside", affix = "", "+(11-13)% to Physical Damage over Time Multiplier", statOrder = { 1132 }, level = 68, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "wand", "sceptre", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, - ["HellscapeUpsidePhysicalDamageOverTimeMultiplier1h4"] = { type = "ScourgeUpside", affix = "", "+(14-16)% to Physical Damage over Time Multiplier", statOrder = { 1132 }, level = 68, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "wand", "sceptre", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, - ["HellscapeUpsidePhysicalDamageOverTimeMultiplier2h3_"] = { type = "ScourgeUpside", affix = "", "+(16-19)% to Physical Damage over Time Multiplier", statOrder = { 1132 }, level = 68, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, - ["HellscapeUpsidePhysicalDamageOverTimeMultiplier2h4_"] = { type = "ScourgeUpside", affix = "", "+(21-24)% to Physical Damage over Time Multiplier", statOrder = { 1132 }, level = 68, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, - ["HellscapeUpsideChaosDamageOverTimeMultiplier1h3__"] = { type = "ScourgeUpside", affix = "", "+(11-13)% to Chaos Damage over Time Multiplier", statOrder = { 1144 }, level = 68, group = "ChaosDamageOverTimeMultiplier", weightKey = { "wand", "sceptre", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["HellscapeUpsideChaosDamageOverTimeMultiplier1h4___"] = { type = "ScourgeUpside", affix = "", "+(14-16)% to Chaos Damage over Time Multiplier", statOrder = { 1144 }, level = 68, group = "ChaosDamageOverTimeMultiplier", weightKey = { "wand", "sceptre", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["HellscapeUpsideChaosDamageOverTimeMultiplier2h3"] = { type = "ScourgeUpside", affix = "", "+(16-19)% to Chaos Damage over Time Multiplier", statOrder = { 1144 }, level = 68, group = "ChaosDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["HellscapeUpsideChaosDamageOverTimeMultiplier2h4__"] = { type = "ScourgeUpside", affix = "", "+(21-24)% to Chaos Damage over Time Multiplier", statOrder = { 1144 }, level = 68, group = "ChaosDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["HellscapeUpsideDamageOverTimeMultiplier2_"] = { type = "ScourgeUpside", affix = "", "+(8-10)% to Damage over Time Multiplier", statOrder = { 1127 }, level = 45, group = "GlobalDamageOverTimeMultiplier", weightKey = { "amulet", "default", }, weightVal = { 100, 0 }, modTags = { "dot_multi", "damage" }, }, - ["HellscapeUpsideDamageOverTimeMultiplier3_"] = { type = "ScourgeUpside", affix = "", "+(11-13)% to Damage over Time Multiplier", statOrder = { 1127 }, level = 68, group = "GlobalDamageOverTimeMultiplier", weightKey = { "amulet", "default", }, weightVal = { 100, 0 }, modTags = { "dot_multi", "damage" }, }, - ["HellscapeUpsideDamageOverTimeMultiplier4"] = { type = "ScourgeUpside", affix = "", "+(14-16)% to Damage over Time Multiplier", statOrder = { 1127 }, level = 68, group = "GlobalDamageOverTimeMultiplier", weightKey = { "amulet", "default", }, weightVal = { 100, 0 }, modTags = { "dot_multi", "damage" }, }, - ["HellscapeUpsideIncreasedAttackSpeed1_"] = { type = "ScourgeUpside", affix = "", "4% increased Attack Speed", statOrder = { 1294 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 500, 1000, 1000, 1000, 0 }, modTags = { "attack", "speed" }, }, - ["HellscapeUpsideIncreasedAttackSpeed2"] = { type = "ScourgeUpside", affix = "", "(5-6)% increased Attack Speed", statOrder = { 1294 }, level = 45, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 500, 1000, 1000, 1000, 0 }, modTags = { "attack", "speed" }, }, - ["HellscapeUpsideIncreasedAttackSpeed3"] = { type = "ScourgeUpside", affix = "", "(7-8)% increased Attack Speed", statOrder = { 1294 }, level = 68, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 500, 1000, 1000, 1000, 0 }, modTags = { "attack", "speed" }, }, - ["HellscapeUpsideIncreasedAttackSpeed4"] = { type = "ScourgeUpside", affix = "", "(9-10)% increased Attack Speed", statOrder = { 1294 }, level = 68, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 500, 1000, 1000, 1000, 0 }, modTags = { "attack", "speed" }, }, - ["HellscapeUpsideIncreasedCastSpeed1"] = { type = "ScourgeUpside", affix = "", "5% increased Cast Speed", statOrder = { 1330 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "speed" }, }, - ["HellscapeUpsideIncreasedCastSpeed2"] = { type = "ScourgeUpside", affix = "", "6% increased Cast Speed", statOrder = { 1330 }, level = 45, group = "IncreasedCastSpeed", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "speed" }, }, - ["HellscapeUpsideIncreasedCastSpeed3_"] = { type = "ScourgeUpside", affix = "", "7% increased Cast Speed", statOrder = { 1330 }, level = 68, group = "IncreasedCastSpeed", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "speed" }, }, - ["HellscapeUpsideIncreasedCastSpeed4_"] = { type = "ScourgeUpside", affix = "", "8% increased Cast Speed", statOrder = { 1330 }, level = 68, group = "IncreasedCastSpeed", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "speed" }, }, - ["HellscapeUpsideMinionAttackAndCastSpeed1"] = { type = "ScourgeUpside", affix = "", "Minions have 5% increased Attack Speed", "Minions have 5% increased Cast Speed", statOrder = { 2781, 2782 }, level = 1, group = "MinionAttackAndCastSpeed", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, - ["HellscapeUpsideMinionAttackAndCastSpeed2"] = { type = "ScourgeUpside", affix = "", "Minions have 6% increased Attack Speed", "Minions have 6% increased Cast Speed", statOrder = { 2781, 2782 }, level = 45, group = "MinionAttackAndCastSpeed", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, - ["HellscapeUpsideMinionAttackAndCastSpeed3____"] = { type = "ScourgeUpside", affix = "", "Minions have (7-8)% increased Attack Speed", "Minions have (7-8)% increased Cast Speed", statOrder = { 2781, 2782 }, level = 68, group = "MinionAttackAndCastSpeed", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, - ["HellscapeUpsideMinionAttackAndCastSpeed4_"] = { type = "ScourgeUpside", affix = "", "Minions have (9-10)% increased Attack Speed", "Minions have (9-10)% increased Cast Speed", statOrder = { 2781, 2782 }, level = 68, group = "MinionAttackAndCastSpeed", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, - ["HellscapeUpsideMaximumLifeOnKillPercent3"] = { type = "ScourgeUpside", affix = "", "Recover 3% of Life on Kill", statOrder = { 1630 }, level = 68, group = "MaximumLifeOnKillPercent", weightKey = { "body_armour", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "life" }, }, - ["HellscapeUpsideMaximumLifeOnKillPercent4___"] = { type = "ScourgeUpside", affix = "", "Recover 4% of Life on Kill", statOrder = { 1630 }, level = 68, group = "MaximumLifeOnKillPercent", weightKey = { "body_armour", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "life" }, }, - ["HellscapeUpsideMaximumManaOnKillPercent3"] = { type = "ScourgeUpside", affix = "", "Recover 3% of Mana on Kill", statOrder = { 1632 }, level = 68, group = "MaximumManaOnKillPercent", weightKey = { "body_armour", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "mana" }, }, - ["HellscapeUpsideMaximumManaOnKillPercent4"] = { type = "ScourgeUpside", affix = "", "Recover 4% of Mana on Kill", statOrder = { 1632 }, level = 68, group = "MaximumManaOnKillPercent", weightKey = { "body_armour", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "mana" }, }, - ["HellscapeUpsideMaximumEnergyShieldOnKillPercent3"] = { type = "ScourgeUpside", affix = "", "Recover 3% of Energy Shield on Kill", statOrder = { 1631 }, level = 68, group = "MaximumEnergyShieldOnKillPercent", weightKey = { "body_armour", "default", }, weightVal = { 100, 0 }, modTags = { "defences", "energy_shield" }, }, - ["HellscapeUpsideMaximumEnergyShieldOnKillPercent4"] = { type = "ScourgeUpside", affix = "", "Recover 4% of Energy Shield on Kill", statOrder = { 1631 }, level = 68, group = "MaximumEnergyShieldOnKillPercent", weightKey = { "body_armour", "default", }, weightVal = { 100, 0 }, modTags = { "defences", "energy_shield" }, }, - ["HellscapeUpsideIncreasedAccuracyPercent2"] = { type = "ScourgeUpside", affix = "", "(11-14)% increased Global Accuracy Rating", statOrder = { 1318 }, level = 45, group = "IncreasedAccuracyPercent", weightKey = { "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "attack" }, }, - ["HellscapeUpsideIncreasedAccuracyPercent3"] = { type = "ScourgeUpside", affix = "", "(15-17)% increased Global Accuracy Rating", statOrder = { 1318 }, level = 68, group = "IncreasedAccuracyPercent", weightKey = { "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "attack" }, }, - ["HellscapeUpsideIncreasedAccuracyPercent4__"] = { type = "ScourgeUpside", affix = "", "(18-20)% increased Global Accuracy Rating", statOrder = { 1318 }, level = 68, group = "IncreasedAccuracyPercent", weightKey = { "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "attack" }, }, - ["HellscapeUpsideLocalIncreaseSocketedAreaOfEffectGemLevel__"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed AoE Gems", statOrder = { 155 }, level = 68, group = "IncreasedSocketedAoEGemLevel", weightKey = { "body_armour", "default", }, weightVal = { 25, 0 }, modTags = { "gem" }, }, - ["HellscapeUpsideLocalIncreaseSocketedAuraGemLevel_"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Aura Gems", statOrder = { 160 }, level = 68, group = "LocalIncreaseSocketedAuraLevel", weightKey = { "body_armour", "default", }, weightVal = { 25, 0 }, modTags = { "aura", "gem" }, }, - ["HellscapeUpsideLocalIncreaseSocketedCurseGemLevel__"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Curse Gems", statOrder = { 163 }, level = 68, group = "IncreaseSocketedCurseGemLevel", weightKey = { "body_armour", "default", }, weightVal = { 25, 0 }, modTags = { "caster", "gem", "curse" }, }, - ["HellscapeUpsideLocalIncreaseSocketedDurationGemLevel__"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Duration Gems", statOrder = { 154 }, level = 68, group = "IncreaseSocketedDurationGemLevel", weightKey = { "body_armour", "default", }, weightVal = { 25, 0 }, modTags = { "gem" }, }, - ["HellscapeUpsideLocalIncreaseSocketedGemLevel"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Gems", statOrder = { 141 }, level = 68, group = "LocalIncreaseSocketedGemLevel", weightKey = { "body_armour", "default", }, weightVal = { 5, 0 }, modTags = { "gem" }, }, - ["HellscapeUpsideLocalIncreaseSocketedProjectileGemLevel_"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Projectile Gems", statOrder = { 156 }, level = 68, group = "LocalIncreaseSocketedProjectileGemLevel", weightKey = { "body_armour", "default", }, weightVal = { 25, 0 }, modTags = { "gem" }, }, - ["HellscapeUpsideLocalIncreaseSocketedTrapAndMineGemLevel_"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Trap or Mine Gems", statOrder = { 166 }, level = 68, group = "IncreasedSocketedTrapOrMineGemLevel", weightKey = { "body_armour", "default", }, weightVal = { 25, 0 }, modTags = { "gem" }, }, - ["HellscapeUpsideLocalIncreaseSocketedWarcryGemLevel_"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Warcry Gems", statOrder = { 171 }, level = 68, group = "LocalSocketedWarcryGemLevel", weightKey = { "body_armour", "default", }, weightVal = { 25, 0 }, modTags = { "gem" }, }, - ["HellscapeUpsideLocalIncreaseSocketedSupportGemLevel"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Support Gems", statOrder = { 168 }, level = 68, group = "LocalIncreaseSocketedSupportGemLevel", weightKey = { "body_armour", "default", }, weightVal = { 25, 0 }, modTags = { "gem" }, }, - ["HellscapeUpsideLocalIncreaseSocketedLightningGemLevel__"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Lightning Gems", statOrder = { 148 }, level = 68, group = "LocalIncreaseSocketedLightningGemLevel", weightKey = { "body_armour", "default", }, weightVal = { 25, 0 }, modTags = { "elemental", "lightning", "gem" }, }, - ["HellscapeUpsideLocalIncreaseSocketedChaosGemLevel"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Chaos Gems", statOrder = { 149 }, level = 68, group = "LocalIncreaseSocketedChaosGemLevel", weightKey = { "body_armour", "default", }, weightVal = { 25, 0 }, modTags = { "chaos", "gem" }, }, - ["HellscapeUpsideLocalIncreaseSocketedFireGemLevel"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Fire Gems", statOrder = { 146 }, level = 68, group = "LocalIncreaseSocketedFireGemLevel", weightKey = { "body_armour", "default", }, weightVal = { 25, 0 }, modTags = { "elemental", "fire", "gem" }, }, - ["HellscapeUpsideLocalIncreaseSocketedColdGemLevel"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Cold Gems", statOrder = { 147 }, level = 68, group = "LocalIncreaseSocketedColdGemLevel", weightKey = { "body_armour", "default", }, weightVal = { 25, 0 }, modTags = { "elemental", "cold", "gem" }, }, - ["HellscapeUpsideLocalIncreaseSocketedMinionGemLevel"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Minion Gems", statOrder = { 159 }, level = 68, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { "body_armour", "default", }, weightVal = { 25, 0 }, modTags = { "minion", "gem" }, }, - ["HellscapeUpsideLocalIncreaseSocketedMeleeGemLevel_"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Melee Gems", statOrder = { 158 }, level = 68, group = "LocalIncreaseSocketedMeleeGemLevel", weightKey = { "body_armour", "default", }, weightVal = { 25, 0 }, modTags = { "attack", "gem" }, }, - ["HellscapeUpsideGlobalIncreaseChaosSpellSkillGemLevel1h"] = { type = "ScourgeUpside", affix = "", "+1 to Level of all Chaos Spell Skill Gems", statOrder = { 1495 }, level = 68, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { "attack_dagger", "sceptre", "wand", "dagger", "default", }, weightVal = { 0, 50, 50, 50, 0 }, modTags = { "chaos", "caster", "gem" }, }, - ["HellscapeUpsideGlobalIncreaseChaosSpellSkillGemLevel2h__"] = { type = "ScourgeUpside", affix = "", "+2 to Level of all Chaos Spell Skill Gems", statOrder = { 1495 }, level = 68, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 50, 0 }, modTags = { "chaos", "caster", "gem" }, }, - ["HellscapeUpsideGlobalIncreaseLightningSpellSkillGemLevel1h_"] = { type = "ScourgeUpside", affix = "", "+1 to Level of all Lightning Spell Skill Gems", statOrder = { 1494 }, level = 68, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { "attack_dagger", "sceptre", "wand", "dagger", "default", }, weightVal = { 0, 50, 50, 50, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, }, - ["HellscapeUpsideGlobalIncreaseLightningSpellSkillGemLevel2h_"] = { type = "ScourgeUpside", affix = "", "+2 to Level of all Lightning Spell Skill Gems", statOrder = { 1494 }, level = 68, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 50, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, }, - ["HellscapeUpsideGlobalIncreaseFireSpellSkillGemLevel1h"] = { type = "ScourgeUpside", affix = "", "+1 to Level of all Fire Spell Skill Gems", statOrder = { 1492 }, level = 68, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { "attack_dagger", "sceptre", "wand", "dagger", "default", }, weightVal = { 0, 50, 50, 50, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, }, - ["HellscapeUpsideGlobalIncreaseFireSpellSkillGemLevel2h_"] = { type = "ScourgeUpside", affix = "", "+2 to Level of all Fire Spell Skill Gems", statOrder = { 1492 }, level = 68, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 50, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, }, - ["HellscapeUpsideGlobalIncreaseColdSpellSkillGemLevel1h_"] = { type = "ScourgeUpside", affix = "", "+1 to Level of all Cold Spell Skill Gems", statOrder = { 1493 }, level = 68, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { "attack_dagger", "sceptre", "wand", "dagger", "default", }, weightVal = { 0, 50, 50, 50, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, }, - ["HellscapeUpsideGlobalIncreaseColdSpellSkillGemLevel2h"] = { type = "ScourgeUpside", affix = "", "+2 to Level of all Cold Spell Skill Gems", statOrder = { 1493 }, level = 68, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 50, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, }, - ["HellscapeUpsideGlobalIncreasePhysicalSpellSkillGemLevel1h__"] = { type = "ScourgeUpside", affix = "", "+1 to Level of all Physical Spell Skill Gems", statOrder = { 1491 }, level = 68, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { "attack_dagger", "sceptre", "wand", "dagger", "default", }, weightVal = { 0, 50, 50, 50, 0 }, modTags = { "physical", "caster", "gem" }, }, - ["HellscapeUpsideGlobalIncreasePhysicalSpellSkillGemLevel2h"] = { type = "ScourgeUpside", affix = "", "+2 to Level of all Physical Spell Skill Gems", statOrder = { 1491 }, level = 68, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 50, 0 }, modTags = { "physical", "caster", "gem" }, }, - ["HellscapeUpsideAdditionalRaisedZombie1_"] = { type = "ScourgeUpside", affix = "", "+1 to maximum number of Raised Zombies", statOrder = { 2037 }, level = 45, group = "MaximumZombieCount", weightKey = { "boots", "default", }, weightVal = { 100, 0 }, modTags = { "minion" }, }, - ["HellscapeUpsideAdditionalSkeleton1__"] = { type = "ScourgeUpside", affix = "", "+1 to maximum number of Skeletons", statOrder = { 2039 }, level = 45, group = "MaximumSkeletonCount", weightKey = { "boots", "default", }, weightVal = { 100, 0 }, modTags = { "minion" }, }, - ["HellscapeUpsideWeaponRange1"] = { type = "ScourgeUpside", affix = "", "+0.1 metres to Weapon Range", statOrder = { 2620 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { "wand", "bow", "weapon", "default", }, weightVal = { 0, 0, 200, 0 }, modTags = { "attack" }, }, - ["HellscapeUpsideWeaponRange2"] = { type = "ScourgeUpside", affix = "", "+0.2 metres to Weapon Range", statOrder = { 2620 }, level = 45, group = "LocalMeleeWeaponRange", weightKey = { "wand", "bow", "weapon", "default", }, weightVal = { 0, 0, 200, 0 }, modTags = { "attack" }, }, - ["HellscapeUpsideWeaponRange3"] = { type = "ScourgeUpside", affix = "", "+0.3 metres to Weapon Range", statOrder = { 2620 }, level = 68, group = "LocalMeleeWeaponRange", weightKey = { "wand", "bow", "weapon", "default", }, weightVal = { 0, 0, 200, 0 }, modTags = { "attack" }, }, - ["HellscapeUpsideWeaponRange4"] = { type = "ScourgeUpside", affix = "", "+0.4 metres to Weapon Range", statOrder = { 2620 }, level = 68, group = "LocalMeleeWeaponRange", weightKey = { "wand", "bow", "weapon", "default", }, weightVal = { 0, 0, 200, 0 }, modTags = { "attack" }, }, - ["HellscapeUpsideAreaDamage1"] = { type = "ScourgeUpside", affix = "", "(11-15)% increased Area Damage", statOrder = { 1912 }, level = 1, group = "AreaDamage", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, }, - ["HellscapeUpsideAreaDamage2_"] = { type = "ScourgeUpside", affix = "", "(16-20)% increased Area Damage", statOrder = { 1912 }, level = 45, group = "AreaDamage", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, }, - ["HellscapeUpsideAreaDamage3"] = { type = "ScourgeUpside", affix = "", "(21-25)% increased Area Damage", statOrder = { 1912 }, level = 68, group = "AreaDamage", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, }, - ["HellscapeUpsideAreaDamage4"] = { type = "ScourgeUpside", affix = "", "(26-30)% increased Area Damage", statOrder = { 1912 }, level = 68, group = "AreaDamage", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, }, - ["HellscapeUpsideReducedAttributeRequirement2"] = { type = "ScourgeUpside", affix = "", "(12-14)% reduced Attribute Requirements", statOrder = { 964 }, level = 45, group = "LocalAttributeRequirements", weightKey = { "weapon", "body_armour", "helmet", "shield", "gloves", "boots", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { }, }, - ["HellscapeUpsideReducedAttributeRequirement3"] = { type = "ScourgeUpside", affix = "", "(15-17)% reduced Attribute Requirements", statOrder = { 964 }, level = 68, group = "LocalAttributeRequirements", weightKey = { "weapon", "body_armour", "helmet", "shield", "gloves", "boots", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { }, }, - ["HellscapeUpsideReducedAttributeRequirement4"] = { type = "ScourgeUpside", affix = "", "(18-20)% reduced Attribute Requirements", statOrder = { 964 }, level = 68, group = "LocalAttributeRequirements", weightKey = { "weapon", "body_armour", "helmet", "shield", "gloves", "boots", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { }, }, - ["HellscapeUpsideRarityOfItemsFound1_"] = { type = "ScourgeUpside", affix = "", "(8-9)% increased Rarity of Items found", statOrder = { 1478 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "default", }, weightVal = { 500, 500, 0 }, modTags = { "drop" }, }, - ["HellscapeUpsideRarityOfItemsFound2_"] = { type = "ScourgeUpside", affix = "", "(10-11)% increased Rarity of Items found", statOrder = { 1478 }, level = 45, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "default", }, weightVal = { 500, 500, 0 }, modTags = { "drop" }, }, - ["HellscapeUpsideRarityOfItemsFound3"] = { type = "ScourgeUpside", affix = "", "(12-13)% increased Rarity of Items found", statOrder = { 1478 }, level = 68, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "default", }, weightVal = { 500, 500, 0 }, modTags = { "drop" }, }, - ["HellscapeUpsideRarityOfItemsFound4"] = { type = "ScourgeUpside", affix = "", "(14-15)% increased Rarity of Items found", statOrder = { 1478 }, level = 68, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "default", }, weightVal = { 500, 500, 0 }, modTags = { "drop" }, }, - ["HellscapeUpsideLifeRegenerationRate2"] = { type = "ScourgeUpside", affix = "", "(7-9)% increased Life Regeneration rate", statOrder = { 1459 }, level = 45, group = "LifeRegenerationRate", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "helmet", "boots", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "resource", "life" }, }, - ["HellscapeUpsideLifeRegenerationRate3"] = { type = "ScourgeUpside", affix = "", "(10-12)% increased Life Regeneration rate", statOrder = { 1459 }, level = 68, group = "LifeRegenerationRate", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "helmet", "boots", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "resource", "life" }, }, - ["HellscapeUpsideLifeRegenerationRate4"] = { type = "ScourgeUpside", affix = "", "(13-15)% increased Life Regeneration rate", statOrder = { 1459 }, level = 68, group = "LifeRegenerationRate", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "helmet", "boots", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "resource", "life" }, }, - ["HellscapeUpsideLifeRegeneration1"] = { type = "ScourgeUpside", affix = "", "Regenerate (10.8-11.7) Life per second", statOrder = { 1456 }, level = 1, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "flask", "map", "default", }, weightVal = { 0, 0, 0, 0, 0, 1000 }, modTags = { "flat_life_regen", "resource", "life" }, }, - ["HellscapeUpsideLifeRegeneration1b_"] = { type = "ScourgeUpside", affix = "", "Regenerate (12.5-13.3) Life per second", statOrder = { 1456 }, level = 25, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "flask", "map", "default", }, weightVal = { 0, 0, 0, 0, 0, 500 }, modTags = { "flat_life_regen", "resource", "life" }, }, - ["HellscapeUpsideLifeRegeneration1c_"] = { type = "ScourgeUpside", affix = "", "Regenerate (14.2-15) Life per second", statOrder = { 1456 }, level = 35, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "flask", "map", "default", }, weightVal = { 0, 0, 0, 0, 0, 333 }, modTags = { "flat_life_regen", "resource", "life" }, }, - ["HellscapeUpsideLifeRegeneration2_"] = { type = "ScourgeUpside", affix = "", "Regenerate (15.8-16.7) Life per second", statOrder = { 1456 }, level = 45, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "flask", "map", "default", }, weightVal = { 0, 0, 0, 0, 0, 1000 }, modTags = { "flat_life_regen", "resource", "life" }, }, - ["HellscapeUpsideLifeRegeneration2b"] = { type = "ScourgeUpside", affix = "", "Regenerate (17.5-18.3) Life per second", statOrder = { 1456 }, level = 52, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "flask", "map", "default", }, weightVal = { 0, 0, 0, 0, 0, 500 }, modTags = { "flat_life_regen", "resource", "life" }, }, - ["HellscapeUpsideLifeRegeneration2c_"] = { type = "ScourgeUpside", affix = "", "Regenerate (19.2-20) Life per second", statOrder = { 1456 }, level = 59, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "flask", "map", "default", }, weightVal = { 0, 0, 0, 0, 0, 333 }, modTags = { "flat_life_regen", "resource", "life" }, }, - ["HellscapeUpsideLifeRegeneration3__"] = { type = "ScourgeUpside", affix = "", "Regenerate (20.8-21.7) Life per second", statOrder = { 1456 }, level = 68, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "flask", "map", "default", }, weightVal = { 0, 0, 0, 0, 0, 333 }, modTags = { "flat_life_regen", "resource", "life" }, }, - ["HellscapeUpsideLifeRegeneration3b"] = { type = "ScourgeUpside", affix = "", "Regenerate (22.5-23.3) Life per second", statOrder = { 1456 }, level = 68, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "flask", "map", "default", }, weightVal = { 0, 0, 0, 0, 0, 200 }, modTags = { "flat_life_regen", "resource", "life" }, }, - ["HellscapeUpsideLifeRegeneration3c_"] = { type = "ScourgeUpside", affix = "", "Regenerate (24.2-25) Life per second", statOrder = { 1456 }, level = 68, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "flask", "map", "default", }, weightVal = { 0, 0, 0, 0, 0, 100 }, modTags = { "flat_life_regen", "resource", "life" }, }, - ["HellscapeUpsideLifeRegeneration4_"] = { type = "ScourgeUpside", affix = "", "Regenerate (25.8-26.7) Life per second", statOrder = { 1456 }, level = 68, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "flask", "map", "default", }, weightVal = { 0, 0, 0, 0, 0, 1000 }, modTags = { "flat_life_regen", "resource", "life" }, }, - ["HellscapeUpsideMinionLifeRegenPercentage2"] = { type = "ScourgeUpside", affix = "", "Minions Regenerate 2% of Life per second", statOrder = { 2785 }, level = 45, group = "MinionLifeRegeneration", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "minion" }, }, - ["HellscapeUpsideMinionLifeRegenPercentage2b_"] = { type = "ScourgeUpside", affix = "", "Minions Regenerate 2.5% of Life per second", statOrder = { 2785 }, level = 55, group = "MinionLifeRegeneration", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "minion" }, }, - ["HellscapeUpsideMinionLifeRegenPercentage3__"] = { type = "ScourgeUpside", affix = "", "Minions Regenerate 3% of Life per second", statOrder = { 2785 }, level = 68, group = "MinionLifeRegeneration", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "minion" }, }, - ["HellscapeUpsideMinionLifeRegenPercentage4_"] = { type = "ScourgeUpside", affix = "", "Minions Regenerate 3.5% of Life per second", statOrder = { 2785 }, level = 68, group = "MinionLifeRegeneration", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "minion" }, }, - ["HellscapeUpsideEnergyShieldRechargeRate2"] = { type = "ScourgeUpside", affix = "", "(11-15)% increased Energy Shield Recharge Rate", statOrder = { 1447 }, level = 45, group = "EnergyShieldRegeneration", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, - ["HellscapeUpsideEnergyShieldRechargeRate3"] = { type = "ScourgeUpside", affix = "", "(16-20)% increased Energy Shield Recharge Rate", statOrder = { 1447 }, level = 68, group = "EnergyShieldRegeneration", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, - ["HellscapeUpsideEnergyShieldRechargeRate4"] = { type = "ScourgeUpside", affix = "", "(21-25)% increased Energy Shield Recharge Rate", statOrder = { 1447 }, level = 68, group = "EnergyShieldRegeneration", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, - ["HellscapeUpsideMovementVelocity1"] = { type = "ScourgeUpside", affix = "", "(8-9)% increased Movement Speed", statOrder = { 1679 }, level = 1, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, }, - ["HellscapeUpsideMovementVelocity2"] = { type = "ScourgeUpside", affix = "", "(10-11)% increased Movement Speed", statOrder = { 1679 }, level = 45, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, }, - ["HellscapeUpsideMovementVelocity3_"] = { type = "ScourgeUpside", affix = "", "(12-13)% increased Movement Speed", statOrder = { 1679 }, level = 68, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, }, - ["HellscapeUpsideMovementVelocity4"] = { type = "ScourgeUpside", affix = "", "(14-15)% increased Movement Speed", statOrder = { 1679 }, level = 68, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, }, - ["HellscapeUpsideMaximumMana1__"] = { type = "ScourgeUpside", affix = "", "+(23-25) to maximum Mana", statOrder = { 1461 }, level = 1, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["HellscapeUpsideMaximumMana2"] = { type = "ScourgeUpside", affix = "", "+(28-30) to maximum Mana", statOrder = { 1461 }, level = 45, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["HellscapeUpsideMaximumMana3"] = { type = "ScourgeUpside", affix = "", "+(33-35) to maximum Mana", statOrder = { 1461 }, level = 68, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["HellscapeUpsideMaximumMana4_"] = { type = "ScourgeUpside", affix = "", "+(38-40) to maximum Mana", statOrder = { 1461 }, level = 68, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["HellscapeUpsideManaRegeneration1"] = { type = "ScourgeUpside", affix = "", "(18-20)% increased Mana Regeneration Rate", statOrder = { 1466 }, level = 1, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "staff", "sceptre", "wand", "claw", "dagger", "shield", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "mana" }, }, - ["HellscapeUpsideManaRegeneration2"] = { type = "ScourgeUpside", affix = "", "(23-25)% increased Mana Regeneration Rate", statOrder = { 1466 }, level = 45, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "staff", "sceptre", "wand", "claw", "dagger", "shield", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "mana" }, }, - ["HellscapeUpsideManaRegeneration2b"] = { type = "ScourgeUpside", affix = "", "(28-30)% increased Mana Regeneration Rate", statOrder = { 1466 }, level = 55, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "staff", "sceptre", "wand", "claw", "dagger", "shield", "default", }, weightVal = { 250, 250, 250, 250, 250, 250, 250, 250, 250, 0 }, modTags = { "resource", "mana" }, }, - ["HellscapeUpsideManaRegeneration3"] = { type = "ScourgeUpside", affix = "", "(33-35)% increased Mana Regeneration Rate", statOrder = { 1466 }, level = 68, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "staff", "sceptre", "wand", "claw", "dagger", "shield", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "mana" }, }, - ["HellscapeUpsideManaRegeneration3b"] = { type = "ScourgeUpside", affix = "", "(38-40)% increased Mana Regeneration Rate", statOrder = { 1466 }, level = 68, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "staff", "sceptre", "wand", "claw", "dagger", "shield", "default", }, weightVal = { 250, 250, 250, 250, 250, 250, 250, 250, 250, 0 }, modTags = { "resource", "mana" }, }, - ["HellscapeUpsideManaRegeneration4"] = { type = "ScourgeUpside", affix = "", "(43-45)% increased Mana Regeneration Rate", statOrder = { 1466 }, level = 68, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "staff", "sceptre", "wand", "claw", "dagger", "shield", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "mana" }, }, - ["HellscapeUpsideManaRegenFlat1"] = { type = "ScourgeUpside", affix = "", "Regenerate 0.8 Mana per second", statOrder = { 1464 }, level = 1, group = "AddedManaRegeneration", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, }, - ["HellscapeUpsideManaRegenFlat1b"] = { type = "ScourgeUpside", affix = "", "Regenerate (1.5-1.7) Mana per second", statOrder = { 1464 }, level = 15, group = "AddedManaRegeneration", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, }, - ["HellscapeUpsideManaRegenFlat1c"] = { type = "ScourgeUpside", affix = "", "Regenerate (2.6-2.8) Mana per second", statOrder = { 1464 }, level = 25, group = "AddedManaRegeneration", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, }, - ["HellscapeUpsideManaRegenFlat1d__"] = { type = "ScourgeUpside", affix = "", "Regenerate (4-4.3) Mana per second", statOrder = { 1464 }, level = 35, group = "AddedManaRegeneration", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, }, - ["HellscapeUpsideManaRegenFlat2_"] = { type = "ScourgeUpside", affix = "", "Regenerate (5.1-5.7) Mana per second", statOrder = { 1464 }, level = 45, group = "AddedManaRegeneration", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, }, - ["HellscapeUpsideManaRegenFlat2b"] = { type = "ScourgeUpside", affix = "", "Regenerate (6.3-6.7) Mana per second", statOrder = { 1464 }, level = 55, group = "AddedManaRegeneration", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, }, - ["HellscapeUpsideManaRegenFlat3"] = { type = "ScourgeUpside", affix = "", "Regenerate (8-8.3) Mana per second", statOrder = { 1464 }, level = 68, group = "AddedManaRegeneration", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, }, - ["HellscapeUpsideManaRegenFlat4"] = { type = "ScourgeUpside", affix = "", "Regenerate (8.8-9.2) Mana per second", statOrder = { 1464 }, level = 68, group = "AddedManaRegeneration", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, }, - ["HellscapeUpsideAttackLifeLeech2"] = { type = "ScourgeUpside", affix = "", "(0.2-0.3)% of Physical Attack Damage Leeched as Life", statOrder = { 1530 }, level = 45, group = "LifeLeechPermyriad", weightKey = { "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "life", "physical", "attack" }, }, - ["HellscapeUpsideAttackLifeLeech3"] = { type = "ScourgeUpside", affix = "", "(0.3-0.4)% of Physical Attack Damage Leeched as Life", statOrder = { 1530 }, level = 68, group = "LifeLeechPermyriad", weightKey = { "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "life", "physical", "attack" }, }, - ["HellscapeUpsideAttackLifeLeech4"] = { type = "ScourgeUpside", affix = "", "(0.4-0.5)% of Physical Attack Damage Leeched as Life", statOrder = { 1530 }, level = 68, group = "LifeLeechPermyriad", weightKey = { "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "life", "physical", "attack" }, }, - ["HellscapeUpsideAttackManaLifeLeech2"] = { type = "ScourgeUpside", affix = "", "(0.2-0.3)% of Physical Attack Damage Leeched as Mana", statOrder = { 1580 }, level = 45, group = "ManaLeechPermyriad", weightKey = { "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana", "physical", "attack" }, }, - ["HellscapeUpsideAttackManaLifeLeech3"] = { type = "ScourgeUpside", affix = "", "(0.3-0.4)% of Physical Attack Damage Leeched as Mana", statOrder = { 1580 }, level = 68, group = "ManaLeechPermyriad", weightKey = { "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana", "physical", "attack" }, }, - ["HellscapeUpsideAttackManaLifeLeech4"] = { type = "ScourgeUpside", affix = "", "(0.4-0.5)% of Physical Attack Damage Leeched as Mana", statOrder = { 1580 }, level = 68, group = "ManaLeechPermyriad", weightKey = { "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana", "physical", "attack" }, }, - ["HellscapeUpsideMinionLifeLeech2"] = { type = "ScourgeUpside", affix = "", "Minions Leech (0.2-0.3)% of Damage as Life", statOrder = { 2784 }, level = 45, group = "MinionLifeLeech", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "minion" }, }, - ["HellscapeUpsideMinionLifeLeech3_"] = { type = "ScourgeUpside", affix = "", "Minions Leech (0.4-0.5)% of Damage as Life", statOrder = { 2784 }, level = 68, group = "MinionLifeLeech", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "minion" }, }, - ["HellscapeUpsideMinionLifeLeech4___"] = { type = "ScourgeUpside", affix = "", "Minions Leech (0.6-0.7)% of Damage as Life", statOrder = { 2784 }, level = 68, group = "MinionLifeLeech", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "minion" }, }, - ["HellscapeUpsideFlaskChargesGained2_"] = { type = "ScourgeUpside", affix = "", "(13-15)% increased Flask Charges gained", statOrder = { 2060 }, level = 45, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, - ["HellscapeUpsideFlaskChargesGained3_"] = { type = "ScourgeUpside", affix = "", "(18-20)% increased Flask Charges gained", statOrder = { 2060 }, level = 68, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, - ["HellscapeUpsideFlaskChargesGained4"] = { type = "ScourgeUpside", affix = "", "(23-25)% increased Flask Charges gained", statOrder = { 2060 }, level = 68, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, - ["HellscapeUpsideStunThreshold2"] = { type = "ScourgeUpside", affix = "", "(5-6)% reduced Enemy Stun Threshold", statOrder = { 1400 }, level = 45, group = "StunThresholdReduction", weightKey = { "mace", "sceptre", "staff", "sword", "axe", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["HellscapeUpsideStunThreshold3____"] = { type = "ScourgeUpside", affix = "", "(7-8)% reduced Enemy Stun Threshold", statOrder = { 1400 }, level = 68, group = "StunThresholdReduction", weightKey = { "mace", "sceptre", "staff", "sword", "axe", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["HellscapeUpsideStunThreshold4"] = { type = "ScourgeUpside", affix = "", "(9-10)% reduced Enemy Stun Threshold", statOrder = { 1400 }, level = 68, group = "StunThresholdReduction", weightKey = { "mace", "sceptre", "staff", "sword", "axe", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["HellscapeUpsideStunDuration2"] = { type = "ScourgeUpside", affix = "", "(17-19)% increased Stun Duration on Enemies", statOrder = { 1744 }, level = 45, group = "StunDurationIncreasePercent", weightKey = { "weapon", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, }, - ["HellscapeUpsideStunDuration3__"] = { type = "ScourgeUpside", affix = "", "(20-22)% increased Stun Duration on Enemies", statOrder = { 1744 }, level = 68, group = "StunDurationIncreasePercent", weightKey = { "weapon", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, }, - ["HellscapeUpsideStunDuration4"] = { type = "ScourgeUpside", affix = "", "(23-25)% increased Stun Duration on Enemies", statOrder = { 1744 }, level = 68, group = "StunDurationIncreasePercent", weightKey = { "weapon", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, }, - ["HellscapeUpsideFlaskLifeRecoveryRate2_"] = { type = "ScourgeUpside", affix = "", "(12-14)% increased Flask Life Recovery rate", statOrder = { 2066 }, level = 45, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "resource", "life" }, }, - ["HellscapeUpsideFlaskLifeRecoveryRate3"] = { type = "ScourgeUpside", affix = "", "(15-17)% increased Flask Life Recovery rate", statOrder = { 2066 }, level = 68, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "resource", "life" }, }, - ["HellscapeUpsideFlaskLifeRecoveryRate4"] = { type = "ScourgeUpside", affix = "", "(18-20)% increased Flask Life Recovery rate", statOrder = { 2066 }, level = 68, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "resource", "life" }, }, - ["HellscapeUpsideFlaskManaRecoveryRate2"] = { type = "ScourgeUpside", affix = "", "(12-14)% increased Flask Mana Recovery rate", statOrder = { 2067 }, level = 45, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "resource", "mana" }, }, - ["HellscapeUpsideFlaskManaRecoveryRate3_"] = { type = "ScourgeUpside", affix = "", "(15-17)% increased Flask Mana Recovery rate", statOrder = { 2067 }, level = 68, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "resource", "mana" }, }, - ["HellscapeUpsideFlaskManaRecoveryRate4_"] = { type = "ScourgeUpside", affix = "", "(18-20)% increased Flask Mana Recovery rate", statOrder = { 2067 }, level = 68, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "resource", "mana" }, }, - ["HellscapeUpsideAdditionalDexterity1__"] = { type = "ScourgeUpside", affix = "", "+(20-23) to Dexterity", statOrder = { 1063 }, level = 1, group = "DexterityImplicit", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, }, - ["HellscapeUpsideAdditionalDexterity2"] = { type = "ScourgeUpside", affix = "", "+(24-27) to Dexterity", statOrder = { 1063 }, level = 45, group = "DexterityImplicit", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, }, - ["HellscapeUpsideAdditionalDexterity3"] = { type = "ScourgeUpside", affix = "", "+(28-31) to Dexterity", statOrder = { 1063 }, level = 68, group = "DexterityImplicit", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, }, - ["HellscapeUpsideAdditionalDexterity4_"] = { type = "ScourgeUpside", affix = "", "+(32-35) to Dexterity", statOrder = { 1063 }, level = 68, group = "DexterityImplicit", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, }, - ["HellscapeUpsideAdditionalIntelligence1"] = { type = "ScourgeUpside", affix = "", "+(20-23) to Intelligence", statOrder = { 1064 }, level = 1, group = "IntelligenceImplicit", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, }, - ["HellscapeUpsideAdditionalIntelligence2__"] = { type = "ScourgeUpside", affix = "", "+(24-27) to Intelligence", statOrder = { 1064 }, level = 45, group = "IntelligenceImplicit", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, }, - ["HellscapeUpsideAdditionalIntelligence3_"] = { type = "ScourgeUpside", affix = "", "+(28-31) to Intelligence", statOrder = { 1064 }, level = 68, group = "IntelligenceImplicit", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, }, - ["HellscapeUpsideAdditionalIntelligence4"] = { type = "ScourgeUpside", affix = "", "+(32-35) to Intelligence", statOrder = { 1064 }, level = 68, group = "IntelligenceImplicit", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, }, - ["HellscapeUpsideAdditionalStrength1"] = { type = "ScourgeUpside", affix = "", "+(20-23) to Strength", statOrder = { 1062 }, level = 1, group = "StrengthImplicit", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, }, - ["HellscapeUpsideAdditionalStrength2"] = { type = "ScourgeUpside", affix = "", "+(24-27) to Strength", statOrder = { 1062 }, level = 45, group = "StrengthImplicit", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, }, - ["HellscapeUpsideAdditionalStrength3"] = { type = "ScourgeUpside", affix = "", "+(28-31) to Strength", statOrder = { 1062 }, level = 68, group = "StrengthImplicit", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, }, - ["HellscapeUpsideAdditionalStrength4"] = { type = "ScourgeUpside", affix = "", "+(32-35) to Strength", statOrder = { 1062 }, level = 68, group = "StrengthImplicit", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, }, - ["HellscapeUpsideChanceToFreeze1h2"] = { type = "ScourgeUpside", affix = "", "(5-6)% chance to Freeze", statOrder = { 1906 }, level = 45, group = "ChanceToFreeze", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["HellscapeUpsideChanceToFreeze1h3"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance to Freeze", statOrder = { 1906 }, level = 68, group = "ChanceToFreeze", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["HellscapeUpsideChanceToFreeze1h4_"] = { type = "ScourgeUpside", affix = "", "(9-10)% chance to Freeze", statOrder = { 1906 }, level = 68, group = "ChanceToFreeze", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["HellscapeUpsideChanceToFreeze2h2"] = { type = "ScourgeUpside", affix = "", "(7-9)% chance to Freeze", statOrder = { 1906 }, level = 45, group = "ChanceToFreeze", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["HellscapeUpsideChanceToFreeze2h3__"] = { type = "ScourgeUpside", affix = "", "(10-12)% chance to Freeze", statOrder = { 1906 }, level = 68, group = "ChanceToFreeze", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["HellscapeUpsideChanceToFreeze2h4"] = { type = "ScourgeUpside", affix = "", "(13-15)% chance to Freeze", statOrder = { 1906 }, level = 68, group = "ChanceToFreeze", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["HellscapeUpsideChanceToIgnite1h2"] = { type = "ScourgeUpside", affix = "", "(5-6)% chance to Ignite", statOrder = { 1903 }, level = 45, group = "ChanceToIgnite", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["HellscapeUpsideChanceToIgnite1h3_"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance to Ignite", statOrder = { 1903 }, level = 68, group = "ChanceToIgnite", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["HellscapeUpsideChanceToIgnite1h4___"] = { type = "ScourgeUpside", affix = "", "(9-10)% chance to Ignite", statOrder = { 1903 }, level = 68, group = "ChanceToIgnite", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["HellscapeUpsideChanceToIgnite2h2"] = { type = "ScourgeUpside", affix = "", "(7-9)% chance to Ignite", statOrder = { 1903 }, level = 45, group = "ChanceToIgnite", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["HellscapeUpsideChanceToIgnite2h3"] = { type = "ScourgeUpside", affix = "", "(10-12)% chance to Ignite", statOrder = { 1903 }, level = 68, group = "ChanceToIgnite", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["HellscapeUpsideChanceToIgnite2h4___"] = { type = "ScourgeUpside", affix = "", "(13-15)% chance to Ignite", statOrder = { 1903 }, level = 68, group = "ChanceToIgnite", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["HellscapeUpsideChanceToShock1h2"] = { type = "ScourgeUpside", affix = "", "(5-6)% chance to Shock", statOrder = { 1910 }, level = 45, group = "ChanceToShock", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["HellscapeUpsideChanceToShock1h3"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance to Shock", statOrder = { 1910 }, level = 68, group = "ChanceToShock", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["HellscapeUpsideChanceToShock1h4"] = { type = "ScourgeUpside", affix = "", "(9-10)% chance to Shock", statOrder = { 1910 }, level = 68, group = "ChanceToShock", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["HellscapeUpsideChanceToShock2h2"] = { type = "ScourgeUpside", affix = "", "(7-9)% chance to Shock", statOrder = { 1910 }, level = 45, group = "ChanceToShock", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["HellscapeUpsideChanceToShock2h3"] = { type = "ScourgeUpside", affix = "", "(10-12)% chance to Shock", statOrder = { 1910 }, level = 68, group = "ChanceToShock", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["HellscapeUpsideChanceToShock2h4"] = { type = "ScourgeUpside", affix = "", "(13-15)% chance to Shock", statOrder = { 1910 }, level = 68, group = "ChanceToShock", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["HellscapeUpsideChanceToBleed2__"] = { type = "ScourgeUpside", affix = "", "Attacks have (12-14)% chance to cause Bleeding", statOrder = { 2365 }, level = 45, group = "ChanceToBleed", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["HellscapeUpsideChanceToBleed3_"] = { type = "ScourgeUpside", affix = "", "Attacks have (15-17)% chance to cause Bleeding", statOrder = { 2365 }, level = 68, group = "ChanceToBleed", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["HellscapeUpsideChanceToBleed4"] = { type = "ScourgeUpside", affix = "", "Attacks have (18-20)% chance to cause Bleeding", statOrder = { 2365 }, level = 68, group = "ChanceToBleed", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["HellscapeUpsideChanceToPoison2"] = { type = "ScourgeUpside", affix = "", "(12-14)% chance to Poison on Hit", statOrder = { 3039 }, level = 45, group = "PoisonOnHit", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["HellscapeUpsideChanceToPoison3"] = { type = "ScourgeUpside", affix = "", "(15-17)% chance to Poison on Hit", statOrder = { 3039 }, level = 68, group = "PoisonOnHit", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["HellscapeUpsideChanceToPoison4"] = { type = "ScourgeUpside", affix = "", "(18-20)% chance to Poison on Hit", statOrder = { 3039 }, level = 68, group = "PoisonOnHit", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["HellscapeUpsideLightRadius1_"] = { type = "ScourgeUpside", affix = "", "(16-20)% increased Light Radius", statOrder = { 2376 }, level = 1, group = "LightRadius", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["HellscapeUpsideLightRadius2_"] = { type = "ScourgeUpside", affix = "", "(21-25)% increased Light Radius", statOrder = { 2376 }, level = 45, group = "LightRadius", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["HellscapeUpsideLightRadius3______"] = { type = "ScourgeUpside", affix = "", "(26-30)% increased Light Radius", statOrder = { 2376 }, level = 68, group = "LightRadius", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["HellscapeUpsideLightRadius4"] = { type = "ScourgeUpside", affix = "", "(31-35)% increased Light Radius", statOrder = { 2376 }, level = 68, group = "LightRadius", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["HellscapeUpsideCooldownRecoveryRate3_"] = { type = "ScourgeUpside", affix = "", "(3-4)% increased Cooldown Recovery Rate", statOrder = { 4822 }, level = 68, group = "GlobalCooldownRecovery", weightKey = { "belt", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["HellscapeUpsideCooldownRecoveryRate4_"] = { type = "ScourgeUpside", affix = "", "(5-6)% increased Cooldown Recovery Rate", statOrder = { 4822 }, level = 68, group = "GlobalCooldownRecovery", weightKey = { "belt", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["HellscapeUpsideChanceToNotConsumeFlaskCharges3"] = { type = "ScourgeUpside", affix = "", "(5-6)% chance for Flasks you use to not consume Charges", statOrder = { 4091 }, level = 68, group = "FlaskChanceToNotConsumeCharges", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, }, - ["HellscapeUpsideChanceToNotConsumeFlaskCharges4_"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance for Flasks you use to not consume Charges", statOrder = { 4091 }, level = 68, group = "FlaskChanceToNotConsumeCharges", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, }, - ["HellscapeUpsideLifePercentage3_"] = { type = "ScourgeUpside", affix = "", "(5-6)% increased maximum Life", statOrder = { 1453 }, level = 68, group = "MaximumLifeIncreasePercent", weightKey = { "body_armour", "belt", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "life" }, }, - ["HellscapeUpsideLifePercentage4"] = { type = "ScourgeUpside", affix = "", "(7-8)% increased maximum Life", statOrder = { 1453 }, level = 68, group = "MaximumLifeIncreasePercent", weightKey = { "body_armour", "belt", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "life" }, }, - ["HellscapeUpsideManaPercentage3"] = { type = "ScourgeUpside", affix = "", "(5-6)% increased maximum Mana", statOrder = { 1462 }, level = 68, group = "MaximumManaIncreasePercent", weightKey = { "helmet", "body_armour", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "mana" }, }, - ["HellscapeUpsideManaPercentage4"] = { type = "ScourgeUpside", affix = "", "(7-8)% increased maximum Mana", statOrder = { 1462 }, level = 68, group = "MaximumManaIncreasePercent", weightKey = { "helmet", "body_armour", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "mana" }, }, - ["HellscapeUpsideReducedReflectedPhysicalDamage3_"] = { type = "ScourgeUpside", affix = "", "You and your Minions take (41-50)% reduced Reflected Physical Damage", statOrder = { 9177 }, level = 68, group = "ReducedPhysicalReflectTaken", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "physical" }, }, - ["HellscapeUpsideReducedReflectedPhysicalDamage4_"] = { type = "ScourgeUpside", affix = "", "You and your Minions take (51-60)% reduced Reflected Physical Damage", statOrder = { 9177 }, level = 68, group = "ReducedPhysicalReflectTaken", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "physical" }, }, - ["HellscapeUpsideReducedReflectedElementalDamage3_____"] = { type = "ScourgeUpside", affix = "", "You and your Minions take (41-50)% reduced Reflected Elemental Damage", statOrder = { 6023 }, level = 68, group = "ReducedElementalReflectTaken", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental" }, }, - ["HellscapeUpsideReducedReflectedElementalDamage4"] = { type = "ScourgeUpside", affix = "", "You and your Minions take (51-60)% reduced Reflected Elemental Damage", statOrder = { 6023 }, level = 68, group = "ReducedElementalReflectTaken", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental" }, }, - ["HellscapeUpsideChanceToGainOnslaughtOnKill2__"] = { type = "ScourgeUpside", affix = "", "(5-6)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2865 }, level = 45, group = "ChanceToGainOnslaughtOnKill", weightKey = { "boots", "quiver", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["HellscapeUpsideChanceToGainOnslaughtOnKill3"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2865 }, level = 68, group = "ChanceToGainOnslaughtOnKill", weightKey = { "boots", "quiver", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["HellscapeUpsideChanceToGainOnslaughtOnKill4_"] = { type = "ScourgeUpside", affix = "", "(9-10)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2865 }, level = 68, group = "ChanceToGainOnslaughtOnKill", weightKey = { "boots", "quiver", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["HellscapeUpsideChanceToGainPhasingOnKill2"] = { type = "ScourgeUpside", affix = "", "(11-15)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3328 }, level = 45, group = "ChancetoGainPhasingOnKill", weightKey = { "quiver", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["HellscapeUpsideChanceToGainPhasingOnKill3"] = { type = "ScourgeUpside", affix = "", "(16-20)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3328 }, level = 68, group = "ChancetoGainPhasingOnKill", weightKey = { "quiver", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["HellscapeUpsideChanceToGainPhasingOnKill4"] = { type = "ScourgeUpside", affix = "", "(21-25)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3328 }, level = 68, group = "ChancetoGainPhasingOnKill", weightKey = { "quiver", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["HellscapeUpsideChanceToTauntOnHit2__"] = { type = "ScourgeUpside", affix = "", "(11-15)% chance to Taunt Enemies on Hit with Attacks", statOrder = { 4737 }, level = 45, group = "AttacksTauntOnHitChance", weightKey = { "axe", "default", }, weightVal = { 200, 0 }, modTags = { "attack" }, }, - ["HellscapeUpsideChanceToTauntOnHit3"] = { type = "ScourgeUpside", affix = "", "(16-20)% chance to Taunt Enemies on Hit with Attacks", statOrder = { 4737 }, level = 68, group = "AttacksTauntOnHitChance", weightKey = { "axe", "default", }, weightVal = { 200, 0 }, modTags = { "attack" }, }, - ["HellscapeUpsideChanceToTauntOnHit4___"] = { type = "ScourgeUpside", affix = "", "(21-25)% chance to Taunt Enemies on Hit with Attacks", statOrder = { 4737 }, level = 68, group = "AttacksTauntOnHitChance", weightKey = { "axe", "default", }, weightVal = { 200, 0 }, modTags = { "attack" }, }, - ["HellscapeUpsideMaximumColdResistance1_"] = { type = "ScourgeUpside", affix = "", "+1% to maximum Cold Resistance", statOrder = { 1511 }, level = 68, group = "MaximumColdResist", weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["HellscapeUpsideMaximumFireResistance1__"] = { type = "ScourgeUpside", affix = "", "+1% to maximum Fire Resistance", statOrder = { 1505 }, level = 68, group = "MaximumFireResist", weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["HellscapeUpsideMaximumLightningResistance1_"] = { type = "ScourgeUpside", affix = "", "+1% to maximum Lightning Resistance", statOrder = { 1516 }, level = 68, group = "MaximumLightningResistance", weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["HellscapeUpsideMaximumChaosResistance1__"] = { type = "ScourgeUpside", affix = "", "+1% to maximum Chaos Resistance", statOrder = { 1521 }, level = 68, group = "MaximumChaosResistance", weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { "chaos", "resistance" }, }, - ["HellscapeUpsideMaximumElementalResistance1"] = { type = "ScourgeUpside", affix = "", "+1% to all maximum Elemental Resistances", statOrder = { 1524 }, level = 68, group = "MaximumElementalResistance", weightKey = { "shield", "default", }, weightVal = { 50, 0 }, modTags = { "elemental", "resistance" }, }, - ["HellscapeUpsideTotemPlacementSpeed2"] = { type = "ScourgeUpside", affix = "", "(16-20)% increased Totem Placement speed", statOrder = { 2454 }, level = 45, group = "SummonTotemCastSpeed", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { "speed" }, }, - ["HellscapeUpsideTotemPlacementSpeed3"] = { type = "ScourgeUpside", affix = "", "(21-25)% increased Totem Placement speed", statOrder = { 2454 }, level = 68, group = "SummonTotemCastSpeed", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { "speed" }, }, - ["HellscapeUpsideTotemPlacementSpeed4"] = { type = "ScourgeUpside", affix = "", "(26-30)% increased Totem Placement speed", statOrder = { 2454 }, level = 68, group = "SummonTotemCastSpeed", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { "speed" }, }, - ["HellscapeUpsideTotemElementalResistances2"] = { type = "ScourgeUpside", affix = "", "Totems gain +(21-25)% to all Elemental Resistances", statOrder = { 2662 }, level = 45, group = "TotemElementalResistances", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { "elemental", "resistance" }, }, - ["HellscapeUpsideTotemElementalResistances3"] = { type = "ScourgeUpside", affix = "", "Totems gain +(26-30)% to all Elemental Resistances", statOrder = { 2662 }, level = 68, group = "TotemElementalResistances", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { "elemental", "resistance" }, }, - ["HellscapeUpsideTotemElementalResistances4"] = { type = "ScourgeUpside", affix = "", "Totems gain +(31-35)% to all Elemental Resistances", statOrder = { 2662 }, level = 68, group = "TotemElementalResistances", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { "elemental", "resistance" }, }, - ["HellscapeUpsideTotemDuration2"] = { type = "ScourgeUpside", affix = "", "(12-14)% increased Totem Duration", statOrder = { 1659 }, level = 45, group = "TotemDuration", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { }, }, - ["HellscapeUpsideTotemDuration3"] = { type = "ScourgeUpside", affix = "", "(15-17)% increased Totem Duration", statOrder = { 1659 }, level = 68, group = "TotemDuration", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { }, }, - ["HellscapeUpsideTotemDuration4"] = { type = "ScourgeUpside", affix = "", "(18-20)% increased Totem Duration", statOrder = { 1659 }, level = 68, group = "TotemDuration", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { }, }, - ["HellscapeUpsideTotemPhysicalDamageReduction2___"] = { type = "ScourgeUpside", affix = "", "Totems have (11-15)% additional Physical Damage Reduction", statOrder = { 2664 }, level = 45, group = "TotemPhysicalDamageReduction", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { }, }, - ["HellscapeUpsideTotemPhysicalDamageReduction3___"] = { type = "ScourgeUpside", affix = "", "Totems have (16-20)% additional Physical Damage Reduction", statOrder = { 2664 }, level = 68, group = "TotemPhysicalDamageReduction", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { }, }, - ["HellscapeUpsideTotemPhysicalDamageReduction4_"] = { type = "ScourgeUpside", affix = "", "Totems have (21-25)% additional Physical Damage Reduction", statOrder = { 2664 }, level = 68, group = "TotemPhysicalDamageReduction", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { }, }, - ["HellscapeUpsideTotemLife2"] = { type = "ScourgeUpside", affix = "", "(7-9)% increased Totem Life", statOrder = { 1655 }, level = 45, group = "IncreasedTotemLife", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { "resource", "life" }, }, - ["HellscapeUpsideTotemLife3__"] = { type = "ScourgeUpside", affix = "", "(10-12)% increased Totem Life", statOrder = { 1655 }, level = 68, group = "IncreasedTotemLife", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { "resource", "life" }, }, - ["HellscapeUpsideTotemLife4"] = { type = "ScourgeUpside", affix = "", "(13-15)% increased Totem Life", statOrder = { 1655 }, level = 68, group = "IncreasedTotemLife", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { "resource", "life" }, }, - ["HellscapeUpsideBrandDuration2"] = { type = "ScourgeUpside", affix = "", "Brand Skills have (12-14)% increased Duration", statOrder = { 9526 }, level = 45, group = "BrandDuration", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { "caster" }, }, - ["HellscapeUpsideBrandDuration3"] = { type = "ScourgeUpside", affix = "", "Brand Skills have (15-17)% increased Duration", statOrder = { 9526 }, level = 68, group = "BrandDuration", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { "caster" }, }, - ["HellscapeUpsideBrandDuration4"] = { type = "ScourgeUpside", affix = "", "Brand Skills have (18-20)% increased Duration", statOrder = { 9526 }, level = 68, group = "BrandDuration", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { "caster" }, }, - ["HellscapeUpsideBrandAttachmentRange2"] = { type = "ScourgeUpside", affix = "", "(12-14)% increased Brand Attachment range", statOrder = { 9531 }, level = 45, group = "BrandAttachmentRange", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { "caster" }, }, - ["HellscapeUpsideBrandAttachmentRange3"] = { type = "ScourgeUpside", affix = "", "(15-17)% increased Brand Attachment range", statOrder = { 9531 }, level = 68, group = "BrandAttachmentRange", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { "caster" }, }, - ["HellscapeUpsideBrandAttachmentRange4_"] = { type = "ScourgeUpside", affix = "", "(18-20)% increased Brand Attachment range", statOrder = { 9531 }, level = 68, group = "BrandAttachmentRange", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { "caster" }, }, - ["HellscapeUpsideLifeRecoveryRate2_"] = { type = "ScourgeUpside", affix = "", "(5-6)% increased Life Recovery rate", statOrder = { 1460 }, level = 45, group = "LifeRecoveryRate", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "life" }, }, - ["HellscapeUpsideLifeRecoveryRate3"] = { type = "ScourgeUpside", affix = "", "(7-8)% increased Life Recovery rate", statOrder = { 1460 }, level = 68, group = "LifeRecoveryRate", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "life" }, }, - ["HellscapeUpsideLifeRecoveryRate4"] = { type = "ScourgeUpside", affix = "", "(9-10)% increased Life Recovery rate", statOrder = { 1460 }, level = 68, group = "LifeRecoveryRate", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "life" }, }, - ["HellscapeUpsideManaRecoveryRate2"] = { type = "ScourgeUpside", affix = "", "(5-6)% increased Mana Recovery rate", statOrder = { 1468 }, level = 45, group = "ManaRecoveryRate", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, }, - ["HellscapeUpsideManaRecoveryRate3"] = { type = "ScourgeUpside", affix = "", "(7-8)% increased Mana Recovery rate", statOrder = { 1468 }, level = 68, group = "ManaRecoveryRate", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, }, - ["HellscapeUpsideManaRecoveryRate4"] = { type = "ScourgeUpside", affix = "", "(9-10)% increased Mana Recovery rate", statOrder = { 1468 }, level = 68, group = "ManaRecoveryRate", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, }, - ["HellscapeUpsideEnergyShieldRecoveryRate2"] = { type = "ScourgeUpside", affix = "", "(5-6)% increased Energy Shield Recovery rate", statOrder = { 1450 }, level = 45, group = "EnergyShieldRecoveryRate", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "defences", "energy_shield" }, }, - ["HellscapeUpsideEnergyShieldRecoveryRate3"] = { type = "ScourgeUpside", affix = "", "(7-8)% increased Energy Shield Recovery rate", statOrder = { 1450 }, level = 68, group = "EnergyShieldRecoveryRate", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "defences", "energy_shield" }, }, - ["HellscapeUpsideEnergyShieldRecoveryRate4"] = { type = "ScourgeUpside", affix = "", "(9-10)% increased Energy Shield Recovery rate", statOrder = { 1450 }, level = 68, group = "EnergyShieldRecoveryRate", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "defences", "energy_shield" }, }, - ["HellscapeUpsideReducedExtraDamageTakenFromCriticalStrikes2"] = { type = "ScourgeUpside", affix = "", "You take (13-15)% reduced Extra Damage from Critical Strikes", statOrder = { 1395 }, level = 45, group = "ReducedExtraDamageFromCrits", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 200, 200, 200, 0 }, modTags = { "damage", "critical" }, }, - ["HellscapeUpsideReducedExtraDamageTakenFromCriticalStrikes3"] = { type = "ScourgeUpside", affix = "", "You take (18-20)% reduced Extra Damage from Critical Strikes", statOrder = { 1395 }, level = 68, group = "ReducedExtraDamageFromCrits", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 200, 200, 200, 0 }, modTags = { "damage", "critical" }, }, - ["HellscapeUpsideReducedExtraDamageTakenFromCriticalStrikes4"] = { type = "ScourgeUpside", affix = "", "You take (23-25)% reduced Extra Damage from Critical Strikes", statOrder = { 1395 }, level = 68, group = "ReducedExtraDamageFromCrits", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 200, 200, 200, 0 }, modTags = { "damage", "critical" }, }, - ["HellscapeUpsideChanceToBlindOnHit2_"] = { type = "ScourgeUpside", affix = "", "(7-8)% Global chance to Blind Enemies on hit", statOrder = { 2830 }, level = 45, group = "GlobalChanceToBlindOnHit", weightKey = { "gloves", "quiver", "default", }, weightVal = { 200, 200, 0 }, modTags = { }, }, - ["HellscapeUpsideChanceToBlindOnHit3___"] = { type = "ScourgeUpside", affix = "", "(9-10)% Global chance to Blind Enemies on hit", statOrder = { 2830 }, level = 68, group = "GlobalChanceToBlindOnHit", weightKey = { "gloves", "quiver", "default", }, weightVal = { 200, 200, 0 }, modTags = { }, }, - ["HellscapeUpsideChanceToBlindOnHit4_"] = { type = "ScourgeUpside", affix = "", "(11-12)% Global chance to Blind Enemies on hit", statOrder = { 2830 }, level = 68, group = "GlobalChanceToBlindOnHit", weightKey = { "gloves", "quiver", "default", }, weightVal = { 200, 200, 0 }, modTags = { }, }, - ["HellscapeUpsideChanceToMaimOnHit2"] = { type = "ScourgeUpside", affix = "", "Attacks have (7-8)% chance to Maim on Hit", statOrder = { 7728 }, level = 45, group = "GlobalMaimOnHit", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "attack" }, }, - ["HellscapeUpsideChanceToMaimOnHit3_"] = { type = "ScourgeUpside", affix = "", "Attacks have (9-10)% chance to Maim on Hit", statOrder = { 7728 }, level = 68, group = "GlobalMaimOnHit", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "attack" }, }, - ["HellscapeUpsideChanceToMaimOnHit4"] = { type = "ScourgeUpside", affix = "", "Attacks have (11-12)% chance to Maim on Hit", statOrder = { 7728 }, level = 68, group = "GlobalMaimOnHit", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "attack" }, }, - ["HellscapeUpsideChanceToHinderOnHit2"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance to Hinder Enemies on Hit with Spells", statOrder = { 9670 }, level = 45, group = "SpellsHinderOnHitChance", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "caster" }, }, - ["HellscapeUpsideChanceToHinderOnHit3"] = { type = "ScourgeUpside", affix = "", "(9-10)% chance to Hinder Enemies on Hit with Spells", statOrder = { 9670 }, level = 68, group = "SpellsHinderOnHitChance", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "caster" }, }, - ["HellscapeUpsideChanceToHinderOnHit4"] = { type = "ScourgeUpside", affix = "", "(11-12)% chance to Hinder Enemies on Hit with Spells", statOrder = { 9670 }, level = 68, group = "SpellsHinderOnHitChance", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "caster" }, }, - ["HellscapeUpsideChanceToIntimidateOnHit2"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5424 }, level = 45, group = "ChanceToIntimidateOnHit", weightKey = { "belt", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["HellscapeUpsideChanceToIntimidateOnHit3_"] = { type = "ScourgeUpside", affix = "", "(9-10)% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5424 }, level = 68, group = "ChanceToIntimidateOnHit", weightKey = { "belt", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["HellscapeUpsideChanceToIntimidateOnHit4"] = { type = "ScourgeUpside", affix = "", "(11-12)% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5424 }, level = 68, group = "ChanceToIntimidateOnHit", weightKey = { "belt", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["HellscapeUpsideChanceToUnnerveOnHit2"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5434 }, level = 45, group = "ChanceToUnnerveOnHit", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["HellscapeUpsideChanceToUnnerveOnHit3"] = { type = "ScourgeUpside", affix = "", "(9-10)% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5434 }, level = 68, group = "ChanceToUnnerveOnHit", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["HellscapeUpsideChanceToUnnerveOnHit4_"] = { type = "ScourgeUpside", affix = "", "(11-12)% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5434 }, level = 68, group = "ChanceToUnnerveOnHit", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["HellscapeUpsideChanceToImpaleOnHit2"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance to Impale Enemies on Hit with Attacks", statOrder = { 4739 }, level = 45, group = "MonsterImpaleOnHit", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "physical", "attack" }, }, - ["HellscapeUpsideChanceToImpaleOnHit3__"] = { type = "ScourgeUpside", affix = "", "(9-10)% chance to Impale Enemies on Hit with Attacks", statOrder = { 4739 }, level = 68, group = "MonsterImpaleOnHit", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "physical", "attack" }, }, - ["HellscapeUpsideChanceToImpaleOnHit4_"] = { type = "ScourgeUpside", affix = "", "(11-12)% chance to Impale Enemies on Hit with Attacks", statOrder = { 4739 }, level = 68, group = "MonsterImpaleOnHit", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "physical", "attack" }, }, - ["HellscapeUpsideEnemiesExplodeOnDeathPhysical4_"] = { type = "ScourgeUpside", affix = "", "Enemies you Kill have a 15% chance to Explode, dealing a tenth of their maximum Life as Physical Damage", statOrder = { 3170 }, level = 68, group = "EnemiesExplodeOnDeathPhysicalChance", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["HellscapeUpsideColdPenetration1h2_"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 3% Cold Resistance", statOrder = { 2855 }, level = 45, group = "ColdResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["HellscapeUpsideColdPenetration1h3"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 4% Cold Resistance", statOrder = { 2855 }, level = 68, group = "ColdResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["HellscapeUpsideColdPenetration1h4__"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 5% Cold Resistance", statOrder = { 2855 }, level = 68, group = "ColdResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["HellscapeUpsideColdPenetration2h2"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 6% Cold Resistance", statOrder = { 2855 }, level = 45, group = "ColdResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["HellscapeUpsideColdPenetration2h3_"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 7% Cold Resistance", statOrder = { 2855 }, level = 68, group = "ColdResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["HellscapeUpsideColdPenetration2h4"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 8% Cold Resistance", statOrder = { 2855 }, level = 68, group = "ColdResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["HellscapeUpsideFirePenetration1h2__"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 3% Fire Resistance", statOrder = { 2853 }, level = 45, group = "FireResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["HellscapeUpsideFirePenetration1h3___"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 4% Fire Resistance", statOrder = { 2853 }, level = 68, group = "FireResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["HellscapeUpsideFirePenetration1h4__"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 5% Fire Resistance", statOrder = { 2853 }, level = 68, group = "FireResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["HellscapeUpsideFirePenetration2h2__"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 6% Fire Resistance", statOrder = { 2853 }, level = 45, group = "FireResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["HellscapeUpsideFirePenetration2h3"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 7% Fire Resistance", statOrder = { 2853 }, level = 68, group = "FireResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["HellscapeUpsideFirePenetration2h4"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 8% Fire Resistance", statOrder = { 2853 }, level = 68, group = "FireResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["HellscapeUpsideLightningPenetration1h2"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 3% Lightning Resistance", statOrder = { 2856 }, level = 45, group = "LightningResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["HellscapeUpsideLightningPenetration1h3"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 4% Lightning Resistance", statOrder = { 2856 }, level = 68, group = "LightningResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["HellscapeUpsideLightningPenetration1h4"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 5% Lightning Resistance", statOrder = { 2856 }, level = 68, group = "LightningResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["HellscapeUpsideLightningPenetration2h2"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 6% Lightning Resistance", statOrder = { 2856 }, level = 45, group = "LightningResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["HellscapeUpsideLightningPenetration2h3_"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 7% Lightning Resistance", statOrder = { 2856 }, level = 68, group = "LightningResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["HellscapeUpsideLightningPenetration2h4"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 8% Lightning Resistance", statOrder = { 2856 }, level = 68, group = "LightningResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["HellscapeUpsideChaosPenetration1h2_"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 3% Chaos Resistance", statOrder = { 9368 }, level = 45, group = "ChaosResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 50, 250, 250, 250, 0 }, modTags = { }, }, - ["HellscapeUpsideChaosPenetration1h3"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 4% Chaos Resistance", statOrder = { 9368 }, level = 68, group = "ChaosResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 50, 250, 250, 250, 0 }, modTags = { }, }, - ["HellscapeUpsideChaosPenetration1h4_"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 5% Chaos Resistance", statOrder = { 9368 }, level = 68, group = "ChaosResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 50, 250, 250, 250, 0 }, modTags = { }, }, - ["HellscapeUpsideChaosPenetration2h2__"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 6% Chaos Resistance", statOrder = { 9368 }, level = 45, group = "ChaosResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["HellscapeUpsideChaosPenetration2h3"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 7% Chaos Resistance", statOrder = { 9368 }, level = 68, group = "ChaosResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["HellscapeUpsideChaosPenetration2h4_"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 8% Chaos Resistance", statOrder = { 9368 }, level = 68, group = "ChaosResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["HellscapeUpsideCullingStrike1"] = { type = "ScourgeUpside", affix = "", "Culling Strike", statOrder = { 1916 }, level = 1, group = "CullingStrike", weightKey = { "weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["HellscapeUpsideCurseOnHitDespair1_"] = { type = "ScourgeUpside", affix = "", "Curse Enemies with Despair on Hit", statOrder = { 2391 }, level = 68, group = "CurseOnHitDespairChance", weightKey = { "gloves", "default", }, weightVal = { 50, 0 }, modTags = { "caster", "curse" }, }, - ["HellscapeUpsideCurseOnHitElementalWeakness1___"] = { type = "ScourgeUpside", affix = "", "Curse Enemies with Elemental Weakness on Hit", statOrder = { 2392 }, level = 68, group = "CurseOnHitLevelElementalWeaknessChance", weightKey = { "gloves", "default", }, weightVal = { 50, 0 }, modTags = { "caster", "curse" }, }, - ["HellscapeUpsideCurseOnHitEnfeeble1_"] = { type = "ScourgeUpside", affix = "", "Curse Enemies with Enfeeble on Hit", statOrder = { 2389 }, level = 68, group = "EnfeebleOnHit", weightKey = { "gloves", "default", }, weightVal = { 50, 0 }, modTags = { "caster", "curse" }, }, - ["HellscapeUpsideCurseOnHitTemporalChains1"] = { type = "ScourgeUpside", affix = "", "Curse Enemies with Temporal Chains on Hit", statOrder = { 2395 }, level = 68, group = "TemporalChainsOnHit", weightKey = { "gloves", "default", }, weightVal = { 50, 0 }, modTags = { "caster", "curse" }, }, - ["HellscapeUpsideCurseOnHitVulnerability1_"] = { type = "ScourgeUpside", affix = "", "Curse Enemies with Vulnerability on Hit", statOrder = { 2396 }, level = 68, group = "VulnerabilityOnHit", weightKey = { "gloves", "default", }, weightVal = { 50, 0 }, modTags = { "caster", "curse" }, }, - ["HellscapeUpsideCurseOnHitConductivity1"] = { type = "ScourgeUpside", affix = "", "Curse Enemies with Conductivity on Hit", statOrder = { 2390 }, level = 68, group = "CurseOnHitConductivityChance", weightKey = { "gloves", "default", }, weightVal = { 50, 0 }, modTags = { "caster", "curse" }, }, - ["HellscapeUpsideCurseOnHitFlammability1______"] = { type = "ScourgeUpside", affix = "", "Curse Enemies with Flammability on Hit", statOrder = { 2393 }, level = 68, group = "FlammabilityOnHit", weightKey = { "gloves", "default", }, weightVal = { 50, 0 }, modTags = { "caster", "curse" }, }, - ["HellscapeUpsideCurseOnHitFrostbite1"] = { type = "ScourgeUpside", affix = "", "Curse Enemies with Frostbite on Hit", statOrder = { 2394 }, level = 68, group = "FrostbiteOnHit", weightKey = { "gloves", "default", }, weightVal = { 50, 0 }, modTags = { "caster", "curse" }, }, - ["HellscapeUpsideChanceToGainEnduranceChargeOnKill1__"] = { type = "ScourgeUpside", affix = "", "(5-6)% chance to gain an Endurance Charge on Kill", statOrder = { 2504 }, level = 1, group = "EnduranceChargeOnKillChance", weightKey = { "ring", "default", }, weightVal = { 200, 0 }, modTags = { "endurance_charge" }, }, - ["HellscapeUpsideChanceToGainEnduranceChargeOnKill2"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance to gain an Endurance Charge on Kill", statOrder = { 2504 }, level = 45, group = "EnduranceChargeOnKillChance", weightKey = { "ring", "default", }, weightVal = { 200, 0 }, modTags = { "endurance_charge" }, }, - ["HellscapeUpsideChanceToGainEnduranceChargeOnKill3"] = { type = "ScourgeUpside", affix = "", "(9-10)% chance to gain an Endurance Charge on Kill", statOrder = { 2504 }, level = 68, group = "EnduranceChargeOnKillChance", weightKey = { "ring", "default", }, weightVal = { 200, 0 }, modTags = { "endurance_charge" }, }, - ["HellscapeUpsideChanceToGainEnduranceChargeOnKill4_"] = { type = "ScourgeUpside", affix = "", "(11-12)% chance to gain an Endurance Charge on Kill", statOrder = { 2504 }, level = 68, group = "EnduranceChargeOnKillChance", weightKey = { "ring", "default", }, weightVal = { 200, 0 }, modTags = { "endurance_charge" }, }, - ["HellscapeUpsideChanceToGainPowerChargeOnKill1"] = { type = "ScourgeUpside", affix = "", "(5-6)% chance to gain a Power Charge on Kill", statOrder = { 2508 }, level = 1, group = "PowerChargeOnKillChance", weightKey = { "ring", "default", }, weightVal = { 200, 0 }, modTags = { "power_charge" }, }, - ["HellscapeUpsideChanceToGainPowerChargeOnKill2"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance to gain a Power Charge on Kill", statOrder = { 2508 }, level = 45, group = "PowerChargeOnKillChance", weightKey = { "ring", "default", }, weightVal = { 200, 0 }, modTags = { "power_charge" }, }, - ["HellscapeUpsideChanceToGainPowerChargeOnKill3"] = { type = "ScourgeUpside", affix = "", "(9-10)% chance to gain a Power Charge on Kill", statOrder = { 2508 }, level = 68, group = "PowerChargeOnKillChance", weightKey = { "ring", "default", }, weightVal = { 200, 0 }, modTags = { "power_charge" }, }, - ["HellscapeUpsideChanceToGainPowerChargeOnKill4___"] = { type = "ScourgeUpside", affix = "", "(11-12)% chance to gain a Power Charge on Kill", statOrder = { 2508 }, level = 68, group = "PowerChargeOnKillChance", weightKey = { "ring", "default", }, weightVal = { 200, 0 }, modTags = { "power_charge" }, }, - ["HellscapeUpsideChanceToGainFrenzyChargeOnKill1"] = { type = "ScourgeUpside", affix = "", "(5-6)% chance to gain a Frenzy Charge on Kill", statOrder = { 2506 }, level = 1, group = "FrenzyChargeOnKillChance", weightKey = { "ring", "default", }, weightVal = { 200, 0 }, modTags = { "frenzy_charge" }, }, - ["HellscapeUpsideChanceToGainFrenzyChargeOnKill2_"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance to gain a Frenzy Charge on Kill", statOrder = { 2506 }, level = 45, group = "FrenzyChargeOnKillChance", weightKey = { "ring", "default", }, weightVal = { 200, 0 }, modTags = { "frenzy_charge" }, }, - ["HellscapeUpsideChanceToGainFrenzyChargeOnKill3"] = { type = "ScourgeUpside", affix = "", "(9-10)% chance to gain a Frenzy Charge on Kill", statOrder = { 2506 }, level = 68, group = "FrenzyChargeOnKillChance", weightKey = { "ring", "default", }, weightVal = { 200, 0 }, modTags = { "frenzy_charge" }, }, - ["HellscapeUpsideChanceToGainFrenzyChargeOnKill4"] = { type = "ScourgeUpside", affix = "", "(11-12)% chance to gain a Frenzy Charge on Kill", statOrder = { 2506 }, level = 68, group = "FrenzyChargeOnKillChance", weightKey = { "ring", "default", }, weightVal = { 200, 0 }, modTags = { "frenzy_charge" }, }, - ["HellscapeUpsideTrapThrowingSpeed2"] = { type = "ScourgeUpside", affix = "", "(7-9)% increased Trap Throwing Speed", statOrder = { 1806 }, level = 45, group = "TrapThrowSpeed", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "speed" }, }, - ["HellscapeUpsideTrapThrowingSpeed3"] = { type = "ScourgeUpside", affix = "", "(10-12)% increased Trap Throwing Speed", statOrder = { 1806 }, level = 68, group = "TrapThrowSpeed", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "speed" }, }, - ["HellscapeUpsideTrapThrowingSpeed4"] = { type = "ScourgeUpside", affix = "", "(13-15)% increased Trap Throwing Speed", statOrder = { 1806 }, level = 68, group = "TrapThrowSpeed", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "speed" }, }, - ["HellscapeUpsideMineThrowingSpeed2___"] = { type = "ScourgeUpside", affix = "", "(7-9)% increased Mine Throwing Speed", statOrder = { 1807 }, level = 45, group = "MineLayingSpeed", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "speed" }, }, - ["HellscapeUpsideMineThrowingSpeed3_"] = { type = "ScourgeUpside", affix = "", "(10-12)% increased Mine Throwing Speed", statOrder = { 1807 }, level = 68, group = "MineLayingSpeed", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "speed" }, }, - ["HellscapeUpsideMineThrowingSpeed4"] = { type = "ScourgeUpside", affix = "", "(13-15)% increased Mine Throwing Speed", statOrder = { 1807 }, level = 68, group = "MineLayingSpeed", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "speed" }, }, - ["HellscapeUpsideAdditionalArrow1"] = { type = "ScourgeUpside", affix = "", "Bow Attacks fire an additional Arrow", statOrder = { 1675 }, level = 68, group = "AdditionalArrows", weightKey = { "bow", "quiver", "default", }, weightVal = { 50, 5, 0 }, modTags = { "attack" }, }, - ["HellscapeUpsideAdditionalChainChance1__"] = { type = "ScourgeUpside", affix = "", "Skills Chain +1 times", statOrder = { 1670 }, level = 68, group = "AdditionalChain", weightKey = { "quiver", "default", }, weightVal = { 5, 0 }, modTags = { }, }, - ["HellscapeUpsideAdditionalPierceChance1__"] = { type = "ScourgeUpside", affix = "", "Projectiles Pierce 2 additional Targets", statOrder = { 1671 }, level = 68, group = "AdditionalPierce", weightKey = { "quiver", "default", }, weightVal = { 5, 0 }, modTags = { }, }, - ["HellscapeUpsideAdditionalSplitChance1_"] = { type = "ScourgeUpside", affix = "", "Projectiles Split towards +1 targets", statOrder = { 9243 }, level = 68, group = "ProjectilesSplitCount", weightKey = { "quiver", "default", }, weightVal = { 5, 0 }, modTags = { }, }, - ["HellscapeUpsideAdditionalReturn1___"] = { type = "ScourgeUpside", affix = "", "Attack Projectiles Return to you", statOrder = { 2698 }, level = 68, group = "ReturningAttackProjectiles", weightKey = { "quiver", "default", }, weightVal = { 5, 0 }, modTags = { "attack" }, }, - ["HellscapeUpsideStrengthPercent3"] = { type = "ScourgeUpside", affix = "", "(4-5)% increased Strength", statOrder = { 1069 }, level = 68, group = "PercentageStrength", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "attribute" }, }, - ["HellscapeUpsideStrengthPercent4_"] = { type = "ScourgeUpside", affix = "", "(6-7)% increased Strength", statOrder = { 1069 }, level = 68, group = "PercentageStrength", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "attribute" }, }, - ["HellscapeUpsideDexterityPercent3_"] = { type = "ScourgeUpside", affix = "", "(4-5)% increased Dexterity", statOrder = { 1070 }, level = 68, group = "PercentageDexterity", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "attribute" }, }, - ["HellscapeUpsideDexterityPercent4_"] = { type = "ScourgeUpside", affix = "", "(6-7)% increased Dexterity", statOrder = { 1070 }, level = 68, group = "PercentageDexterity", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "attribute" }, }, - ["HellscapeUpsideIntelligencePercent3"] = { type = "ScourgeUpside", affix = "", "(4-5)% increased Intelligence", statOrder = { 1071 }, level = 68, group = "PercentageIntelligence", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "attribute" }, }, - ["HellscapeUpsideIntelligencePercent4_"] = { type = "ScourgeUpside", affix = "", "(6-7)% increased Intelligence", statOrder = { 1071 }, level = 68, group = "PercentageIntelligence", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "attribute" }, }, - ["HellscapeUpsidePoisonDamageFaster1h2"] = { type = "ScourgeUpside", affix = "", "Poisons you inflict deal Damage (4-5)% faster", statOrder = { 6215 }, level = 45, group = "FasterPoisonDamage", weightKey = { "two_hand_weapon", "sword", "claw", "dagger", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["HellscapeUpsidePoisonDamageFaster1h3"] = { type = "ScourgeUpside", affix = "", "Poisons you inflict deal Damage (6-7)% faster", statOrder = { 6215 }, level = 68, group = "FasterPoisonDamage", weightKey = { "two_hand_weapon", "sword", "claw", "dagger", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["HellscapeUpsidePoisonDamageFaster1h4"] = { type = "ScourgeUpside", affix = "", "Poisons you inflict deal Damage (8-9)% faster", statOrder = { 6215 }, level = 68, group = "FasterPoisonDamage", weightKey = { "two_hand_weapon", "sword", "claw", "dagger", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["HellscapeUpsidePoisonDamageFaster2h2"] = { type = "ScourgeUpside", affix = "", "Poisons you inflict deal Damage (8-9)% faster", statOrder = { 6215 }, level = 45, group = "FasterPoisonDamage", weightKey = { "one_hand_weapon", "sword", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["HellscapeUpsidePoisonDamageFaster2h3"] = { type = "ScourgeUpside", affix = "", "Poisons you inflict deal Damage (10-11)% faster", statOrder = { 6215 }, level = 68, group = "FasterPoisonDamage", weightKey = { "one_hand_weapon", "sword", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["HellscapeUpsidePoisonDamageFaster2h4_"] = { type = "ScourgeUpside", affix = "", "Poisons you inflict deal Damage (12-13)% faster", statOrder = { 6215 }, level = 68, group = "FasterPoisonDamage", weightKey = { "one_hand_weapon", "sword", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["HellscapeUpsideIgniteDamageFaster1h2"] = { type = "ScourgeUpside", affix = "", "Ignites you inflict deal Damage (4-5)% faster", statOrder = { 2440 }, level = 45, group = "FasterIgniteDamage", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, - ["HellscapeUpsideIgniteDamageFaster1h3"] = { type = "ScourgeUpside", affix = "", "Ignites you inflict deal Damage (6-7)% faster", statOrder = { 2440 }, level = 68, group = "FasterIgniteDamage", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, - ["HellscapeUpsideIgniteDamageFaster1h4__"] = { type = "ScourgeUpside", affix = "", "Ignites you inflict deal Damage (8-9)% faster", statOrder = { 2440 }, level = 68, group = "FasterIgniteDamage", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, - ["HellscapeUpsideIgniteDamageFaster2h2_"] = { type = "ScourgeUpside", affix = "", "Ignites you inflict deal Damage (8-9)% faster", statOrder = { 2440 }, level = 45, group = "FasterIgniteDamage", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, - ["HellscapeUpsideIgniteDamageFaster2h3"] = { type = "ScourgeUpside", affix = "", "Ignites you inflict deal Damage (10-11)% faster", statOrder = { 2440 }, level = 68, group = "FasterIgniteDamage", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, - ["HellscapeUpsideIgniteDamageFaster2h4"] = { type = "ScourgeUpside", affix = "", "Ignites you inflict deal Damage (12-13)% faster", statOrder = { 2440 }, level = 68, group = "FasterIgniteDamage", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, - ["HellscapeUpsideBleedingDamageFaster1h2"] = { type = "ScourgeUpside", affix = "", "Bleeding you inflict deals Damage (4-5)% faster", statOrder = { 6214 }, level = 45, group = "FasterBleedDamage", weightKey = { "two_hand_weapon", "sword", "axe", "mace", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, - ["HellscapeUpsideBleedingDamageFaster1h3"] = { type = "ScourgeUpside", affix = "", "Bleeding you inflict deals Damage (6-7)% faster", statOrder = { 6214 }, level = 68, group = "FasterBleedDamage", weightKey = { "two_hand_weapon", "sword", "axe", "mace", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, - ["HellscapeUpsideBleedingDamageFaster1h4_"] = { type = "ScourgeUpside", affix = "", "Bleeding you inflict deals Damage (8-9)% faster", statOrder = { 6214 }, level = 68, group = "FasterBleedDamage", weightKey = { "two_hand_weapon", "sword", "axe", "mace", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, - ["HellscapeUpsideBleedingDamageFaster2h2"] = { type = "ScourgeUpside", affix = "", "Bleeding you inflict deals Damage (8-9)% faster", statOrder = { 6214 }, level = 45, group = "FasterBleedDamage", weightKey = { "one_hand_weapon", "sword", "axe", "mace", "bow", "default", }, weightVal = { 0, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, - ["HellscapeUpsideBleedingDamageFaster2h3"] = { type = "ScourgeUpside", affix = "", "Bleeding you inflict deals Damage (10-11)% faster", statOrder = { 6214 }, level = 68, group = "FasterBleedDamage", weightKey = { "one_hand_weapon", "sword", "axe", "mace", "bow", "default", }, weightVal = { 0, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, - ["HellscapeUpsideBleedingDamageFaster2h4"] = { type = "ScourgeUpside", affix = "", "Bleeding you inflict deals Damage (12-13)% faster", statOrder = { 6214 }, level = 68, group = "FasterBleedDamage", weightKey = { "one_hand_weapon", "sword", "axe", "mace", "bow", "default", }, weightVal = { 0, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, - ["HellscapeUpsidePhysicalConvertedToCold1"] = { type = "ScourgeUpside", affix = "", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1836 }, level = 68, group = "ConvertPhysicalToCold", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, - ["HellscapeUpsidePhysicalConvertedToFire1"] = { type = "ScourgeUpside", affix = "", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1834 }, level = 68, group = "ConvertPhysicalToFire", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, - ["HellscapeUpsidePhysicalConvertedToLightning1"] = { type = "ScourgeUpside", affix = "", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1838 }, level = 68, group = "ConvertPhysicalToLightning", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, - ["HellscapeUpsidePhysicalConvertedToChaos1"] = { type = "ScourgeUpside", affix = "", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1841 }, level = 68, group = "PhysicalDamageConvertedToChaos", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, - ["HellscapeUpsideAilmentDuration2_"] = { type = "ScourgeUpside", affix = "", "(7-8)% increased Duration of Ailments on Enemies", statOrder = { 1741 }, level = 45, group = "IncreasedAilmentDuration", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "ailment" }, }, - ["HellscapeUpsideAilmentDuration3"] = { type = "ScourgeUpside", affix = "", "(9-10)% increased Duration of Ailments on Enemies", statOrder = { 1741 }, level = 68, group = "IncreasedAilmentDuration", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "ailment" }, }, - ["HellscapeUpsideAilmentDuration4"] = { type = "ScourgeUpside", affix = "", "(11-12)% increased Duration of Ailments on Enemies", statOrder = { 1741 }, level = 68, group = "IncreasedAilmentDuration", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "ailment" }, }, - ["HellscapeUpsideNonDamagingAilmentEffect2_"] = { type = "ScourgeUpside", affix = "", "(10-12)% increased Effect of Non-Damaging Ailments", statOrder = { 9017 }, level = 45, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { "ailment" }, }, - ["HellscapeUpsideNonDamagingAilmentEffect3"] = { type = "ScourgeUpside", affix = "", "(13-15)% increased Effect of Non-Damaging Ailments", statOrder = { 9017 }, level = 68, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { "ailment" }, }, - ["HellscapeUpsideNonDamagingAilmentEffect4_"] = { type = "ScourgeUpside", affix = "", "(16-18)% increased Effect of Non-Damaging Ailments", statOrder = { 9017 }, level = 68, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { "ailment" }, }, - ["HellscapeUpsideNearbyEnemiesTakeIncreasedPhysicalDamage3"] = { type = "ScourgeUpside", affix = "", "Nearby Enemies take 3% increased Physical Damage", statOrder = { 7522 }, level = 68, group = "NearbyEnemyPhysicalDamageTaken", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["HellscapeUpsideNearbyEnemiesTakeIncreasedPhysicalDamage4"] = { type = "ScourgeUpside", affix = "", "Nearby Enemies take 4% increased Physical Damage", statOrder = { 7522 }, level = 68, group = "NearbyEnemyPhysicalDamageTaken", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["HellscapeUpsideNearbyEnemiesTakeIncreasedFireDamage3__"] = { type = "ScourgeUpside", affix = "", "Nearby Enemies have -3% to Fire Resistance", statOrder = { 7518 }, level = 68, group = "NearbyEnemyFireDamageResistance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "resistance" }, }, - ["HellscapeUpsideNearbyEnemiesTakeIncreasedFireDamage4"] = { type = "ScourgeUpside", affix = "", "Nearby Enemies have -4% to Fire Resistance", statOrder = { 7518 }, level = 68, group = "NearbyEnemyFireDamageResistance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "resistance" }, }, - ["HellscapeUpsideNearbyEnemiesTakeIncreasedColdDamage3___"] = { type = "ScourgeUpside", affix = "", "Nearby Enemies have -3% to Cold Resistance", statOrder = { 7516 }, level = 68, group = "NearbyEnemyColdDamageResistance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "resistance" }, }, - ["HellscapeUpsideNearbyEnemiesTakeIncreasedColdDamage4__"] = { type = "ScourgeUpside", affix = "", "Nearby Enemies have -4% to Cold Resistance", statOrder = { 7516 }, level = 68, group = "NearbyEnemyColdDamageResistance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "resistance" }, }, - ["HellscapeUpsideNearbyEnemiesTakeIncreasedLightningDamage3"] = { type = "ScourgeUpside", affix = "", "Nearby Enemies have -3% to Lightning Resistance", statOrder = { 7520 }, level = 68, group = "NearbyEnemyLightningDamageResistance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "resistance" }, }, - ["HellscapeUpsideNearbyEnemiesTakeIncreasedLightningDamage4_"] = { type = "ScourgeUpside", affix = "", "Nearby Enemies have -4% to Lightning Resistance", statOrder = { 7520 }, level = 68, group = "NearbyEnemyLightningDamageResistance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "resistance" }, }, - ["HellscapeUpsideNearbyEnemiesTakeIncreasedChaosDamage3"] = { type = "ScourgeUpside", affix = "", "Nearby Enemies have -3% to Chaos Resistance", statOrder = { 7515 }, level = 68, group = "NearbyEnemyChaosDamageResistance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "chaos_damage", "damage", "chaos", "resistance" }, }, - ["HellscapeUpsideNearbyEnemiesTakeIncreasedChaosDamage4"] = { type = "ScourgeUpside", affix = "", "Nearby Enemies have -4% to Chaos Resistance", statOrder = { 7515 }, level = 68, group = "NearbyEnemyChaosDamageResistance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "chaos_damage", "damage", "chaos", "resistance" }, }, - ["HellscapeUpsideCurseEffect3_"] = { type = "ScourgeUpside", affix = "", "(9-10)% increased Effect of your Curses", statOrder = { 2472 }, level = 68, group = "CurseEffectiveness", weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { "caster", "curse" }, }, - ["HellscapeUpsideCurseEffect4"] = { type = "ScourgeUpside", affix = "", "(11-12)% increased Effect of your Curses", statOrder = { 2472 }, level = 68, group = "CurseEffectiveness", weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { "caster", "curse" }, }, - ["HellscapeUpsideNonCurseAuraEffect2"] = { type = "ScourgeUpside", affix = "", "(7-8)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3429 }, level = 45, group = "AuraEffect", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "aura" }, }, - ["HellscapeUpsideNonCurseAuraEffect3__"] = { type = "ScourgeUpside", affix = "", "(9-10)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3429 }, level = 68, group = "AuraEffect", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "aura" }, }, - ["HellscapeUpsideNonCurseAuraEffect4_"] = { type = "ScourgeUpside", affix = "", "(11-12)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3429 }, level = 68, group = "AuraEffect", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "aura" }, }, - ["HellscapeUpsideImpaleEffect1h2"] = { type = "ScourgeUpside", affix = "", "(7-8)% increased Impale Effect", statOrder = { 6869 }, level = 45, group = "ImpaleEffect", weightKey = { "two_hand_weapon", "sword", "axe", "claw", "dagger", "mace", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical" }, }, - ["HellscapeUpsideImpaleEffect1h3"] = { type = "ScourgeUpside", affix = "", "(9-10)% increased Impale Effect", statOrder = { 6869 }, level = 68, group = "ImpaleEffect", weightKey = { "two_hand_weapon", "sword", "axe", "claw", "dagger", "mace", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical" }, }, - ["HellscapeUpsideImpaleEffect1h4_"] = { type = "ScourgeUpside", affix = "", "(11-12)% increased Impale Effect", statOrder = { 6869 }, level = 68, group = "ImpaleEffect", weightKey = { "two_hand_weapon", "sword", "axe", "claw", "dagger", "mace", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical" }, }, - ["HellscapeUpsideImpaleEffect2h2__"] = { type = "ScourgeUpside", affix = "", "(10-12)% increased Impale Effect", statOrder = { 6869 }, level = 45, group = "ImpaleEffect", weightKey = { "one_hand_weapon", "sword", "axe", "claw", "dagger", "mace", "bow", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical" }, }, - ["HellscapeUpsideImpaleEffect2h3"] = { type = "ScourgeUpside", affix = "", "(13-15)% increased Impale Effect", statOrder = { 6869 }, level = 68, group = "ImpaleEffect", weightKey = { "one_hand_weapon", "sword", "axe", "claw", "dagger", "mace", "bow", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical" }, }, - ["HellscapeUpsideImpaleEffect2h4"] = { type = "ScourgeUpside", affix = "", "(16-18)% increased Impale Effect", statOrder = { 6869 }, level = 68, group = "ImpaleEffect", weightKey = { "one_hand_weapon", "sword", "axe", "claw", "dagger", "mace", "bow", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical" }, }, - ["HellscapeUpsideInflictColdExposureOnHit1h2"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance to inflict Cold Exposure on Hit", statOrder = { 4841 }, level = 45, group = "ColdExposureOnHit", weightKey = { "attack_dagger", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, }, - ["HellscapeUpsideInflictColdExposureOnHit1h3"] = { type = "ScourgeUpside", affix = "", "(9-10)% chance to inflict Cold Exposure on Hit", statOrder = { 4841 }, level = 68, group = "ColdExposureOnHit", weightKey = { "attack_dagger", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, }, - ["HellscapeUpsideInflictColdExposureOnHit1h4"] = { type = "ScourgeUpside", affix = "", "(11-12)% chance to inflict Cold Exposure on Hit", statOrder = { 4841 }, level = 68, group = "ColdExposureOnHit", weightKey = { "attack_dagger", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, }, - ["HellscapeUpsideInflictColdExposureOnHit2h2_"] = { type = "ScourgeUpside", affix = "", "(10-12)% chance to inflict Cold Exposure on Hit", statOrder = { 4841 }, level = 45, group = "ColdExposureOnHit", weightKey = { "warstaff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["HellscapeUpsideInflictColdExposureOnHit2h3"] = { type = "ScourgeUpside", affix = "", "(13-15)% chance to inflict Cold Exposure on Hit", statOrder = { 4841 }, level = 68, group = "ColdExposureOnHit", weightKey = { "warstaff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["HellscapeUpsideInflictColdExposureOnHit2h4"] = { type = "ScourgeUpside", affix = "", "(16-18)% chance to inflict Cold Exposure on Hit", statOrder = { 4841 }, level = 68, group = "ColdExposureOnHit", weightKey = { "warstaff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["HellscapeUpsideInflictFireExposureOnHit1h2"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance to inflict Fire Exposure on Hit", statOrder = { 4842 }, level = 45, group = "FireExposureOnHit", weightKey = { "attack_dagger", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, }, - ["HellscapeUpsideInflictFireExposureOnHit1h3"] = { type = "ScourgeUpside", affix = "", "(9-10)% chance to inflict Fire Exposure on Hit", statOrder = { 4842 }, level = 68, group = "FireExposureOnHit", weightKey = { "attack_dagger", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, }, - ["HellscapeUpsideInflictFireExposureOnHit1h4"] = { type = "ScourgeUpside", affix = "", "(11-12)% chance to inflict Fire Exposure on Hit", statOrder = { 4842 }, level = 68, group = "FireExposureOnHit", weightKey = { "attack_dagger", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, }, - ["HellscapeUpsideInflictFireExposureOnHit2h2__"] = { type = "ScourgeUpside", affix = "", "(10-12)% chance to inflict Fire Exposure on Hit", statOrder = { 4842 }, level = 45, group = "FireExposureOnHit", weightKey = { "warstaff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["HellscapeUpsideInflictFireExposureOnHit2h3_____"] = { type = "ScourgeUpside", affix = "", "(13-15)% chance to inflict Fire Exposure on Hit", statOrder = { 4842 }, level = 68, group = "FireExposureOnHit", weightKey = { "warstaff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["HellscapeUpsideInflictFireExposureOnHit2h4"] = { type = "ScourgeUpside", affix = "", "(16-18)% chance to inflict Fire Exposure on Hit", statOrder = { 4842 }, level = 68, group = "FireExposureOnHit", weightKey = { "warstaff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["HellscapeUpsideInflictLightningExposureOnHit1h2"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance to inflict Lightning Exposure on Hit", statOrder = { 4843 }, level = 45, group = "LightningExposureOnHit", weightKey = { "attack_dagger", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, }, - ["HellscapeUpsideInflictLightningExposureOnHit1h3"] = { type = "ScourgeUpside", affix = "", "(9-10)% chance to inflict Lightning Exposure on Hit", statOrder = { 4843 }, level = 68, group = "LightningExposureOnHit", weightKey = { "attack_dagger", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, }, - ["HellscapeUpsideInflictLightningExposureOnHit1h4"] = { type = "ScourgeUpside", affix = "", "(11-12)% chance to inflict Lightning Exposure on Hit", statOrder = { 4843 }, level = 68, group = "LightningExposureOnHit", weightKey = { "attack_dagger", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, }, - ["HellscapeUpsideInflictLightningExposureOnHit2h2_"] = { type = "ScourgeUpside", affix = "", "(10-12)% chance to inflict Lightning Exposure on Hit", statOrder = { 4843 }, level = 45, group = "LightningExposureOnHit", weightKey = { "warstaff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["HellscapeUpsideInflictLightningExposureOnHit2h3__"] = { type = "ScourgeUpside", affix = "", "(13-15)% chance to inflict Lightning Exposure on Hit", statOrder = { 4843 }, level = 68, group = "LightningExposureOnHit", weightKey = { "warstaff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["HellscapeUpsideInflictLightningExposureOnHit2h4__"] = { type = "ScourgeUpside", affix = "", "(16-18)% chance to inflict Lightning Exposure on Hit", statOrder = { 4843 }, level = 68, group = "LightningExposureOnHit", weightKey = { "warstaff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["HellscapeUpsideKnockbackOnHit2"] = { type = "ScourgeUpside", affix = "", "(16-20)% chance to Knock Enemies Back on hit", statOrder = { 1872 }, level = 45, group = "GlobalKnockbackChance", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["HellscapeUpsideKnockbackOnHit3__"] = { type = "ScourgeUpside", affix = "", "(21-25)% chance to Knock Enemies Back on hit", statOrder = { 1872 }, level = 68, group = "GlobalKnockbackChance", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["HellscapeUpsideKnockbackOnHit4"] = { type = "ScourgeUpside", affix = "", "(26-30)% chance to Knock Enemies Back on hit", statOrder = { 1872 }, level = 68, group = "GlobalKnockbackChance", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["HellscapeUpsideReservationEfficiency3__"] = { type = "ScourgeUpside", affix = "", "(6-8)% increased Mana Reservation Efficiency of Skills", statOrder = { 2109 }, level = 68, group = "ReducedReservation", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, }, - ["HellscapeUpsideReservationEfficiency4_"] = { type = "ScourgeUpside", affix = "", "(10-12)% increased Mana Reservation Efficiency of Skills", statOrder = { 2109 }, level = 68, group = "ReducedReservation", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, }, - ["HellscapeUpsideWarcrySpeed2__"] = { type = "ScourgeUpside", affix = "", "(16-20)% increased Warcry Speed", statOrder = { 3143 }, level = 45, group = "WarcrySpeed", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { "speed" }, }, - ["HellscapeUpsideWarcrySpeed3"] = { type = "ScourgeUpside", affix = "", "(21-25)% increased Warcry Speed", statOrder = { 3143 }, level = 68, group = "WarcrySpeed", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { "speed" }, }, - ["HellscapeUpsideWarcrySpeed4_"] = { type = "ScourgeUpside", affix = "", "(26-30)% increased Warcry Speed", statOrder = { 3143 }, level = 68, group = "WarcrySpeed", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { "speed" }, }, - ["HellscapeUpsideColdDamageLeechedAsLife2_"] = { type = "ScourgeUpside", affix = "", "(0.2-0.3)% of Cold Damage Leeched as Life", statOrder = { 1556 }, level = 45, group = "ColdDamageLifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "elemental", "cold" }, }, - ["HellscapeUpsideColdDamageLeechedAsLife3"] = { type = "ScourgeUpside", affix = "", "(0.3-0.4)% of Cold Damage Leeched as Life", statOrder = { 1556 }, level = 68, group = "ColdDamageLifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "elemental", "cold" }, }, - ["HellscapeUpsideColdDamageLeechedAsLife4"] = { type = "ScourgeUpside", affix = "", "(0.4-0.5)% of Cold Damage Leeched as Life", statOrder = { 1556 }, level = 68, group = "ColdDamageLifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "elemental", "cold" }, }, - ["HellscapeUpsideFireDamageLeechedAsLife2"] = { type = "ScourgeUpside", affix = "", "(0.2-0.3)% of Fire Damage Leeched as Life", statOrder = { 1551 }, level = 45, group = "FireDamageLifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "elemental", "fire" }, }, - ["HellscapeUpsideFireDamageLeechedAsLife3"] = { type = "ScourgeUpside", affix = "", "(0.3-0.4)% of Fire Damage Leeched as Life", statOrder = { 1551 }, level = 68, group = "FireDamageLifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "elemental", "fire" }, }, - ["HellscapeUpsideFireDamageLeechedAsLife4"] = { type = "ScourgeUpside", affix = "", "(0.4-0.5)% of Fire Damage Leeched as Life", statOrder = { 1551 }, level = 68, group = "FireDamageLifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "elemental", "fire" }, }, - ["HellscapeUpsideLightningDamageLeechedAsLife2__"] = { type = "ScourgeUpside", affix = "", "(0.2-0.3)% of Lightning Damage Leeched as Life", statOrder = { 1560 }, level = 45, group = "LightningDamageLifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, }, - ["HellscapeUpsideLightningDamageLeechedAsLife3_"] = { type = "ScourgeUpside", affix = "", "(0.3-0.4)% of Lightning Damage Leeched as Life", statOrder = { 1560 }, level = 68, group = "LightningDamageLifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, }, - ["HellscapeUpsideLightningDamageLeechedAsLife4_"] = { type = "ScourgeUpside", affix = "", "(0.4-0.5)% of Lightning Damage Leeched as Life", statOrder = { 1560 }, level = 68, group = "LightningDamageLifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, }, - ["HellscapeUpsideChaosDamageLeechedAsLife2"] = { type = "ScourgeUpside", affix = "", "(0.2-0.3)% of Chaos Damage Leeched as Life", statOrder = { 1563 }, level = 45, group = "ChaosDamageLifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "chaos" }, }, - ["HellscapeUpsideChaosDamageLeechedAsLife3"] = { type = "ScourgeUpside", affix = "", "(0.3-0.4)% of Chaos Damage Leeched as Life", statOrder = { 1563 }, level = 68, group = "ChaosDamageLifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "chaos" }, }, - ["HellscapeUpsideChaosDamageLeechedAsLife4__"] = { type = "ScourgeUpside", affix = "", "(0.4-0.5)% of Chaos Damage Leeched as Life", statOrder = { 1563 }, level = 68, group = "ChaosDamageLifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "chaos" }, }, - ["HellscapeUpsidePhysicalDamageLeechedAsLife2"] = { type = "ScourgeUpside", affix = "", "(0.2-0.3)% of Physical Damage Leeched as Life", statOrder = { 1547 }, level = 45, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "physical" }, }, - ["HellscapeUpsidePhysicalDamageLeechedAsLife3"] = { type = "ScourgeUpside", affix = "", "(0.3-0.4)% of Physical Damage Leeched as Life", statOrder = { 1547 }, level = 68, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "physical" }, }, - ["HellscapeUpsidePhysicalDamageLeechedAsLife4____"] = { type = "ScourgeUpside", affix = "", "(0.4-0.5)% of Physical Damage Leeched as Life", statOrder = { 1547 }, level = 68, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "physical" }, }, - ["HellscapeUpsideKeystoneMinionInstability"] = { type = "ScourgeUpside", affix = "", "Minion Instability", statOrder = { 10243 }, level = 68, group = "MinionInstability", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "minion" }, }, - ["HellscapeUpsideKeystoneResoluteTechnique"] = { type = "ScourgeUpside", affix = "", "Resolute Technique", statOrder = { 10269 }, level = 68, group = "ResoluteTechnique", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "attack", "critical" }, }, - ["HellscapeUpsideKeystoneBloodMagic"] = { type = "ScourgeUpside", affix = "", "Blood Magic", statOrder = { 10219 }, level = 68, group = "BloodMagic", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "resource", "life", "mana" }, }, - ["HellscapeUpsideKeystonePainAttunement"] = { type = "ScourgeUpside", affix = "", "Pain Attunement", statOrder = { 10245 }, level = 68, group = "PainAttunement", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["HellscapeUpsideKeystoneElementalEquilibrium_"] = { type = "ScourgeUpside", affix = "", "Elemental Equilibrium", statOrder = { 10228 }, level = 68, group = "ElementalEquilibrium", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["HellscapeUpsideKeystoneIronGrip"] = { type = "ScourgeUpside", affix = "", "Iron Grip", statOrder = { 10259 }, level = 68, group = "IronGrip", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "damage", "attack" }, }, - ["HellscapeUpsideKeystonePointBlank"] = { type = "ScourgeUpside", affix = "", "Point Blank", statOrder = { 10246 }, level = 68, group = "PointBlank", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "damage", "attack" }, }, - ["HellscapeUpsideKeystoneAcrobatics___"] = { type = "ScourgeUpside", affix = "", "Acrobatics", statOrder = { 10214 }, level = 68, group = "Acrobatics", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { }, }, - ["HellscapeUpsideKeystoneGhostReaver"] = { type = "ScourgeUpside", affix = "", "Ghost Reaver", statOrder = { 10234 }, level = 68, group = "KeystoneGhostReaver", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "resource", "life", "defences", "energy_shield" }, }, - ["HellscapeUpsideKeystoneVaalPact"] = { type = "ScourgeUpside", affix = "", "Vaal Pact", statOrder = { 10263 }, level = 68, group = "VaalPact", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "resource", "life" }, }, - ["HellscapeUpsideKeystoneElementalOverload"] = { type = "ScourgeUpside", affix = "", "Elemental Overload", statOrder = { 10229 }, level = 68, group = "ElementalOverload", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "elemental_damage", "damage", "elemental", "critical" }, }, - ["HellscapeUpsideKeystoneAvatarOfFire"] = { type = "ScourgeUpside", affix = "", "Avatar of Fire", statOrder = { 10217 }, level = 68, group = "AvatarOfFire", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["HellscapeUpsideKeystoneEldritchBattery_"] = { type = "ScourgeUpside", affix = "", "Eldritch Battery", statOrder = { 10227 }, level = 68, group = "EldritchBattery", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "defences", "energy_shield" }, }, - ["HellscapeUpsideKeystoneAncestralBond"] = { type = "ScourgeUpside", affix = "", "Ancestral Bond", statOrder = { 10216 }, level = 68, group = "AncestralBond", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "damage" }, }, - ["HellscapeUpsideKeystoneCrimsonDance_"] = { type = "ScourgeUpside", affix = "", "Crimson Dance", statOrder = { 10224 }, level = 68, group = "CrimsonDance", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, - ["HellscapeUpsideKeystonePerfectAgony_"] = { type = "ScourgeUpside", affix = "", "Perfect Agony", statOrder = { 10215 }, level = 68, group = "PerfectAgony", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "damage", "critical", "ailment" }, }, - ["HellscapeUpsideKeystoneRunebinder___"] = { type = "ScourgeUpside", affix = "", "Runebinder", statOrder = { 10252 }, level = 68, group = "Runebinder", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "caster" }, }, - ["HellscapeUpsideKeystoneMortalConviction_"] = { type = "ScourgeUpside", affix = "", "Blood Magic", statOrder = { 10219 }, level = 68, group = "BloodMagic", weightKey = { "body_armour", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "life", "mana" }, }, - ["HellscapeUpsideKeystoneCallToArms"] = { type = "ScourgeUpside", affix = "", "Call to Arms", statOrder = { 10220 }, level = 68, group = "CallToArms", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { }, }, - ["HellscapeUpsideKeystoneTheAgnostic_"] = { type = "ScourgeUpside", affix = "", "The Agnostic", statOrder = { 10244 }, level = 68, group = "TheAgnostic", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "resource", "life", "mana", "defences", "energy_shield" }, }, - ["HellscapeUpsideKeystoneSupremeEgo_"] = { type = "ScourgeUpside", affix = "", "Supreme Ego", statOrder = { 10260 }, level = 68, group = "SupremeEgo", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "resource", "mana", "aura" }, }, - ["HellscapeUpsideKeystoneTheImpaler_"] = { type = "ScourgeUpside", affix = "", "The Impaler", statOrder = { 10238 }, level = 68, group = "Impaler", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["HellscapeUpsideKeystoneDoomsday"] = { type = "ScourgeUpside", affix = "", "Hex Master", statOrder = { 10236 }, level = 68, group = "HexMaster", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "curse" }, }, - ["HellscapeUpsideKeystoneLetheShade1_"] = { type = "ScourgeUpside", affix = "", "Lethe Shade", statOrder = { 10240 }, level = 68, group = "LetheShade", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "ailment" }, }, - ["HellscapeUpsideKeystoneGhostDance"] = { type = "ScourgeUpside", affix = "", "Ghost Dance", statOrder = { 10233 }, level = 68, group = "GhostDance", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, - ["HellscapeUpsideKeystoneVersatileCombatant___"] = { type = "ScourgeUpside", affix = "", "Versatile Combatant", statOrder = { 10264 }, level = 68, group = "VersatileCombatant", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "block" }, }, - ["HellscapeUpsideKeystoneMagebane"] = { type = "ScourgeUpside", affix = "", "Magebane", statOrder = { 10241 }, level = 68, group = "Magebane", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { }, }, - ["HellscapeUpsideKeystoneSolipsism"] = { type = "ScourgeUpside", affix = "", "Solipsism", statOrder = { 10257 }, level = 68, group = "Solipsism", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "ailment" }, }, - ["HellscapeUpsideKeystoneDivineShield"] = { type = "ScourgeUpside", affix = "", "Divine Shield", statOrder = { 10226 }, level = 68, group = "DivineShield", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "defences", "energy_shield" }, }, - ["HellscapeUpsideKeystoneIronWill"] = { type = "ScourgeUpside", affix = "", "Iron Will", statOrder = { 10270 }, level = 68, group = "IronWill", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "caster" }, }, - ["HellscapeUpsideLifeGainOnHitWithAttacks1"] = { type = "ScourgeUpside", affix = "", "Gain 2 Life per Enemy Hit with Attacks", statOrder = { 1621 }, level = 1, group = "LifeGainPerTarget", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "life", "attack" }, }, - ["HellscapeUpsideLifeGainOnHitWithAttacks2_"] = { type = "ScourgeUpside", affix = "", "Gain (3-4) Life per Enemy Hit with Attacks", statOrder = { 1621 }, level = 45, group = "LifeGainPerTarget", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "life", "attack" }, }, - ["HellscapeUpsideLifeGainOnHitWithAttacks3"] = { type = "ScourgeUpside", affix = "", "Gain (5-7) Life per Enemy Hit with Attacks", statOrder = { 1621 }, level = 68, group = "LifeGainPerTarget", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "life", "attack" }, }, - ["HellscapeUpsideLifeGainOnHitWithAttacks4_"] = { type = "ScourgeUpside", affix = "", "Gain (8-10) Life per Enemy Hit with Attacks", statOrder = { 1621 }, level = 68, group = "LifeGainPerTarget", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "life", "attack" }, }, - ["HellscapeUpsideManaGainOnHitWithAttacks1"] = { type = "ScourgeUpside", affix = "", "Gain 2 Mana per Enemy Hit with Attacks", statOrder = { 1625 }, level = 1, group = "ManaGainPerTarget", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana", "attack" }, }, - ["HellscapeUpsideManaGainOnHitWithAttacks2__"] = { type = "ScourgeUpside", affix = "", "Gain 3 Mana per Enemy Hit with Attacks", statOrder = { 1625 }, level = 45, group = "ManaGainPerTarget", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana", "attack" }, }, - ["HellscapeUpsideManaGainOnHitWithAttacks3_"] = { type = "ScourgeUpside", affix = "", "Gain 4 Mana per Enemy Hit with Attacks", statOrder = { 1625 }, level = 68, group = "ManaGainPerTarget", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana", "attack" }, }, - ["HellscapeUpsideManaGainOnHitWithAttacks4__"] = { type = "ScourgeUpside", affix = "", "Gain 5 Mana per Enemy Hit with Attacks", statOrder = { 1625 }, level = 68, group = "ManaGainPerTarget", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana", "attack" }, }, - ["HellscapeUpsideSocketedGemsAreSupportedByLevel1AddedLightningDamage__"] = { type = "ScourgeUpside", affix = "", "Socketed Gems are Supported by Level 1 Added Lightning Damage", statOrder = { 387 }, level = 1, group = "DisplaySocketedGemGetsAddedLightningDamageLevel", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "support", "gem" }, }, - ["HellscapeUpsideSocketedGemsAreSupportedByLevel10AddedLightningDamage_"] = { type = "ScourgeUpside", affix = "", "Socketed Gems are Supported by Level 10 Added Lightning Damage", statOrder = { 387 }, level = 45, group = "DisplaySocketedGemGetsAddedLightningDamageLevel", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "support", "gem" }, }, - ["HellscapeUpsideSocketedGemsAreSupportedByLevel20AddedLightningDamage__"] = { type = "ScourgeUpside", affix = "", "Socketed Gems are Supported by Level 20 Added Lightning Damage", statOrder = { 387 }, level = 68, group = "DisplaySocketedGemGetsAddedLightningDamageLevel", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "support", "gem" }, }, - ["HellscapeUpsideSocketedGemsAreSupportedByLevel22AddedLightningDamage__"] = { type = "ScourgeUpside", affix = "", "Socketed Gems are Supported by Level 22 Added Lightning Damage", statOrder = { 387 }, level = 68, group = "DisplaySocketedGemGetsAddedLightningDamageLevel", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "support", "gem" }, }, - ["HellscapeUpsideSocketedGemsAreSupportedByLevel1AddedColdDamage_"] = { type = "ScourgeUpside", affix = "", "Socketed Gems are Supported by Level 1 Added Cold Damage", statOrder = { 437 }, level = 1, group = "DisplaySupportedByAddedColdDamage", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "support", "gem" }, }, - ["HellscapeUpsideSocketedGemsAreSupportedByLevel10AddedColdDamage"] = { type = "ScourgeUpside", affix = "", "Socketed Gems are Supported by Level 10 Added Cold Damage", statOrder = { 437 }, level = 45, group = "DisplaySupportedByAddedColdDamage", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "support", "gem" }, }, - ["HellscapeUpsideSocketedGemsAreSupportedByLevel20AddedColdDamage"] = { type = "ScourgeUpside", affix = "", "Socketed Gems are Supported by Level 20 Added Cold Damage", statOrder = { 437 }, level = 68, group = "DisplaySupportedByAddedColdDamage", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "support", "gem" }, }, - ["HellscapeUpsideSocketedGemsAreSupportedByLevel22AddedColdDamage"] = { type = "ScourgeUpside", affix = "", "Socketed Gems are Supported by Level 22 Added Cold Damage", statOrder = { 437 }, level = 68, group = "DisplaySupportedByAddedColdDamage", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "support", "gem" }, }, - ["HellscapeUpsideSocketedGemsAreSupportedByLevel1AddedChaosDamage"] = { type = "ScourgeUpside", affix = "", "Socketed Gems are Supported by Level 1 Added Chaos Damage", statOrder = { 378 }, level = 1, group = "DisplaySocketedGemsGetAddedChaosDamage", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { "support", "gem" }, }, - ["HellscapeUpsideSocketedGemsAreSupportedByLevel10AddedChaosDamage_____"] = { type = "ScourgeUpside", affix = "", "Socketed Gems are Supported by Level 10 Added Chaos Damage", statOrder = { 378 }, level = 45, group = "DisplaySocketedGemsGetAddedChaosDamage", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { "support", "gem" }, }, - ["HellscapeUpsideSocketedGemsAreSupportedByLevel20AddedChaosDamage"] = { type = "ScourgeUpside", affix = "", "Socketed Gems are Supported by Level 20 Added Chaos Damage", statOrder = { 378 }, level = 68, group = "DisplaySocketedGemsGetAddedChaosDamage", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { "support", "gem" }, }, - ["HellscapeUpsideSocketedGemsAreSupportedByLevel22AddedChaosDamage__"] = { type = "ScourgeUpside", affix = "", "Socketed Gems are Supported by Level 22 Added Chaos Damage", statOrder = { 378 }, level = 68, group = "DisplaySocketedGemsGetAddedChaosDamage", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { "support", "gem" }, }, - ["HellscapeUpsideCannotBeFrozen___"] = { type = "ScourgeUpside", affix = "", "Cannot be Frozen", statOrder = { 1719 }, level = 1, group = "CannotBeFrozen", weightKey = { "boots", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["HellscapeUpsideGainLifeChargeEvery3Seconds"] = { type = "ScourgeUpside", affix = "", "Life Flasks gain 1 Charge every 3 seconds", statOrder = { 6961 }, level = 1, group = "LifeFlaskPassiveChargeGain", weightKey = { "belt", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["HellscapeUpsideGainManaChargeEvery3Seconds"] = { type = "ScourgeUpside", affix = "", "Mana Flasks gain 1 Charge every 3 seconds", statOrder = { 7748 }, level = 1, group = "ManaFlaskPassiveChargeGain", weightKey = { "belt", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["HellscapeUpsideChillOnBlock1"] = { type = "ScourgeUpside", affix = "", "(14-16)% chance to Chill Attackers for 4 seconds on Block", statOrder = { 5473 }, level = 1, group = "ChanceToChillAttackersOnBlock", weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { "block", "red_herring", "elemental", "cold", "ailment" }, }, - ["HellscapeUpsideChillOnBlock2"] = { type = "ScourgeUpside", affix = "", "(17-19)% chance to Chill Attackers for 4 seconds on Block", statOrder = { 5473 }, level = 45, group = "ChanceToChillAttackersOnBlock", weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { "block", "red_herring", "elemental", "cold", "ailment" }, }, - ["HellscapeUpsideChillOnBlock3"] = { type = "ScourgeUpside", affix = "", "(20-22)% chance to Chill Attackers for 4 seconds on Block", statOrder = { 5473 }, level = 68, group = "ChanceToChillAttackersOnBlock", weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { "block", "red_herring", "elemental", "cold", "ailment" }, }, - ["HellscapeUpsideChillOnBlock4"] = { type = "ScourgeUpside", affix = "", "(23-25)% chance to Chill Attackers for 4 seconds on Block", statOrder = { 5473 }, level = 68, group = "ChanceToChillAttackersOnBlock", weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { "block", "red_herring", "elemental", "cold", "ailment" }, }, - ["HellscapeUpsideShockOnBlock1"] = { type = "ScourgeUpside", affix = "", "(14-16)% chance to Shock Attackers for 4 seconds on Block", statOrder = { 9493 }, level = 1, group = "ChanceToShockAttackersOnBlock", weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { "block", "elemental", "lightning", "ailment" }, }, - ["HellscapeUpsideShockOnBlock2___"] = { type = "ScourgeUpside", affix = "", "(17-19)% chance to Shock Attackers for 4 seconds on Block", statOrder = { 9493 }, level = 45, group = "ChanceToShockAttackersOnBlock", weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { "block", "elemental", "lightning", "ailment" }, }, - ["HellscapeUpsideShockOnBlock3__"] = { type = "ScourgeUpside", affix = "", "(20-22)% chance to Shock Attackers for 4 seconds on Block", statOrder = { 9493 }, level = 68, group = "ChanceToShockAttackersOnBlock", weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { "block", "elemental", "lightning", "ailment" }, }, - ["HellscapeUpsideShockOnBlock4__"] = { type = "ScourgeUpside", affix = "", "(23-25)% chance to Shock Attackers for 4 seconds on Block", statOrder = { 9493 }, level = 68, group = "ChanceToShockAttackersOnBlock", weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { "block", "elemental", "lightning", "ailment" }, }, + ["SynthesisImplicitDexterityGemQuality1"] = { type = "Synthesis", affix = "", "+(2-3)% to Quality of Socketed Dexterity Gems", statOrder = { 191 }, level = 40, group = "SocketedDexterityGemQuality", weightKey = { }, weightVal = { }, modTags = { "attribute", "gem" }, }, + ["SynthesisImplicitDexterityGemQuality2"] = { type = "Synthesis", affix = "", "+(4-6)% to Quality of Socketed Dexterity Gems", statOrder = { 191 }, level = 50, group = "SocketedDexterityGemQuality", weightKey = { }, weightVal = { }, modTags = { "attribute", "gem" }, }, + ["SynthesisImplicitDexterityGemLevel1"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed Dexterity Gems", statOrder = { 140 }, level = 65, group = "LocalIncreaseSocketedDexterityGemLevel", weightKey = { }, weightVal = { }, modTags = { "attribute", "gem" }, }, + ["SynthesisImplicitIntelligenceGemQuality1"] = { type = "Synthesis", affix = "", "+(2-3)% to Quality of Socketed Intelligence Gems", statOrder = { 194 }, level = 40, group = "SocketedIntelligenceGemQuality", weightKey = { }, weightVal = { }, modTags = { "attribute", "gem" }, }, + ["SynthesisImplicitIntelligenceGemQuality2"] = { type = "Synthesis", affix = "", "+(4-6)% to Quality of Socketed Intelligence Gems", statOrder = { 194 }, level = 50, group = "SocketedIntelligenceGemQuality", weightKey = { }, weightVal = { }, modTags = { "attribute", "gem" }, }, + ["SynthesisImplicitIntelligenceGemLevel1"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed Intelligence Gems", statOrder = { 141 }, level = 65, group = "LocalIncreaseSocketedIntelligenceGemLevel", weightKey = { }, weightVal = { }, modTags = { "attribute", "gem" }, }, + ["SynthesisImplicitAoEGemQuality1"] = { type = "Synthesis", affix = "", "+(2-3)% to Quality of Socketed AoE Gems", statOrder = { 186 }, level = 40, group = "SocketedAoEGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["SynthesisImplicitAoEGemQuality2"] = { type = "Synthesis", affix = "", "+(4-6)% to Quality of Socketed AoE Gems", statOrder = { 186 }, level = 50, group = "SocketedAoEGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["SynthesisImplicitAoEGemLevel1"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed AoE Gems", statOrder = { 156 }, level = 65, group = "IncreasedSocketedAoEGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["SynthesisImplicitProjectileGemQuality1"] = { type = "Synthesis", affix = "", "+(2-3)% to Quality of Socketed Projectile Gems", statOrder = { 198 }, level = 40, group = "SocketedProjectileGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["SynthesisImplicitProjectileGemQuality2"] = { type = "Synthesis", affix = "", "+(4-6)% to Quality of Socketed Projectile Gems", statOrder = { 198 }, level = 50, group = "SocketedProjectileGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["SynthesisImplicitProjectileGemLevel1"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed Projectile Gems", statOrder = { 157 }, level = 65, group = "LocalIncreaseSocketedProjectileGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["SynthesisImplicitReducedDamageTaken1_"] = { type = "Synthesis", affix = "", "1% reduced Damage taken", statOrder = { 2147 }, level = 48, group = "DamageTaken", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitReducedDamageTaken2"] = { type = "Synthesis", affix = "", "2% reduced Damage taken", statOrder = { 2147 }, level = 56, group = "DamageTaken", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitPhysicalAttackDamageTaken1_"] = { type = "Synthesis", affix = "", "-(15-11) Physical Damage taken from Attack Hits", statOrder = { 2143 }, level = 24, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, }, + ["SynthesisImplicitPhysicalAttackDamageTaken2"] = { type = "Synthesis", affix = "", "-(20-16) Physical Damage taken from Attack Hits", statOrder = { 2143 }, level = 36, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, }, + ["SynthesisImplicitPhysicalAttackDamageTaken3"] = { type = "Synthesis", affix = "", "-(25-21) Physical Damage taken from Attack Hits", statOrder = { 2143 }, level = 48, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, }, + ["SynthesisImplicitPhysicalAttackDamageTaken4"] = { type = "Synthesis", affix = "", "-(40-35) Physical Damage taken from Attack Hits", statOrder = { 2143 }, level = 56, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, }, + ["SynthesisImplicitPhysicalAttackDamageTakenJewel1_"] = { type = "Synthesis", affix = "", "-(7-5) Physical Damage taken from Attack Hits", statOrder = { 2143 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, }, + ["SynthesisImplicitPhysicalAttackDamageTakenJewel2___"] = { type = "Synthesis", affix = "", "-(10-8) Physical Damage taken from Attack Hits", statOrder = { 2143 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, }, + ["SynthesisImplicitFortifyEffect1"] = { type = "Synthesis", affix = "", "+1 to maximum Fortification", statOrder = { 8936 }, level = 36, group = "FortifyEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitFortifyEffect2"] = { type = "Synthesis", affix = "", "+2 to maximum Fortification", statOrder = { 8936 }, level = 48, group = "FortifyEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitFortifyEffect3"] = { type = "Synthesis", affix = "", "+3 to maximum Fortification", statOrder = { 8936 }, level = 56, group = "FortifyEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitArmourEvasionWithFortify1"] = { type = "Synthesis", affix = "", "+250 to Armour and Evasion Rating while Fortified", statOrder = { 4658 }, level = 36, group = "ArmourEvasionWithFortify", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, }, + ["SynthesisImplicitArmourEvasionWithFortify2"] = { type = "Synthesis", affix = "", "+500 to Armour and Evasion Rating while Fortified", statOrder = { 4658 }, level = 48, group = "ArmourEvasionWithFortify", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, }, + ["SynthesisImplicitArmourEvasionWithFortify3"] = { type = "Synthesis", affix = "", "+800 to Armour and Evasion Rating while Fortified", statOrder = { 4658 }, level = 56, group = "ArmourEvasionWithFortify", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, }, + ["SynthesisImplicitDegenDamageTaken1_"] = { type = "Synthesis", affix = "", "3% reduced Damage taken from Damage Over Time", statOrder = { 2154 }, level = 65, group = "DegenDamageTaken", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitTotemElementalResistanceJewel1"] = { type = "Synthesis", affix = "", "Totems gain +3% to all Elemental Resistances", statOrder = { 2697 }, level = 1, group = "TotemElementalResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["SynthesisImplicitTotemElementalResistanceJewel2"] = { type = "Synthesis", affix = "", "Totems gain +(4-5)% to all Elemental Resistances", statOrder = { 2697 }, level = 1, group = "TotemElementalResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["SynthesisImplicitReflectDamageTaken1"] = { type = "Synthesis", affix = "", "You and your Minions take (5-8)% reduced Reflected Damage", statOrder = { 9668 }, level = 36, group = "ReflectDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitReflectDamageTaken2"] = { type = "Synthesis", affix = "", "You and your Minions take (9-12)% reduced Reflected Damage", statOrder = { 9668 }, level = 48, group = "ReflectDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitReflectDamageTaken3"] = { type = "Synthesis", affix = "", "You and your Minions take (13-15)% reduced Reflected Damage", statOrder = { 9668 }, level = 56, group = "ReflectDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitAttackerTakesDamageNoRange1_"] = { type = "Synthesis", affix = "", "Reflects (10-15) Physical Damage to Melee Attackers", statOrder = { 2111 }, level = 1, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["SynthesisImplicitAttackerTakesDamageNoRange2"] = { type = "Synthesis", affix = "", "Reflects (16-40) Physical Damage to Melee Attackers", statOrder = { 2111 }, level = 15, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["SynthesisImplicitAttackerTakesDamageNoRange3"] = { type = "Synthesis", affix = "", "Reflects (41-80) Physical Damage to Melee Attackers", statOrder = { 2111 }, level = 24, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["SynthesisImplicitLightRadius1"] = { type = "Synthesis", affix = "", "10% increased Light Radius", statOrder = { 2409 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitLightRadius2"] = { type = "Synthesis", affix = "", "12% increased Light Radius", statOrder = { 2409 }, level = 15, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitLightRadius3"] = { type = "Synthesis", affix = "", "15% increased Light Radius", statOrder = { 2409 }, level = 24, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitIntimidateOnHitWeapon1"] = { type = "Synthesis", affix = "", "(4-5)% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 7731 }, level = 36, group = "LocalChanceToIntimidateOnHit", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["SynthesisImplicitIntimidateOnHitWeapon2_"] = { type = "Synthesis", affix = "", "(6-7)% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 7731 }, level = 48, group = "LocalChanceToIntimidateOnHit", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["SynthesisImplicitIntimidateOnHitWeapon3_"] = { type = "Synthesis", affix = "", "(8-10)% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 7731 }, level = 56, group = "LocalChanceToIntimidateOnHit", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["SynthesisImplicitAttackAndCastSpeedWithOnslaught1"] = { type = "Synthesis", affix = "", "(10-12)% increased Attack and Cast Speed during Onslaught", statOrder = { 2937 }, level = 65, group = "AttackAndCastSpeedWithOnslaught", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, }, + ["SynthesisImplicitAttackAndCastSpeedWithOnslaughtJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Attack and Cast Speed during Onslaught", statOrder = { 2937 }, level = 1, group = "AttackAndCastSpeedWithOnslaught", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, }, + ["SynthesisImplicitAttackAndCastSpeedWithOnslaughtJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Attack and Cast Speed during Onslaught", statOrder = { 2937 }, level = 1, group = "AttackAndCastSpeedWithOnslaught", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, }, + ["SynthesisImplicitPhysicalDamageWithUnholyMight1"] = { type = "Synthesis", affix = "", "(40-50)% increased Physical Damage while you have Unholy Might", statOrder = { 9433 }, level = 65, group = "PhysicalDamageWithUnholyMight", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["SynthesisImplicitPhysicalDamageWithUnholyMightJewel1"] = { type = "Synthesis", affix = "", "(6-8)% increased Physical Damage while you have Unholy Might", statOrder = { 9433 }, level = 1, group = "PhysicalDamageWithUnholyMight", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["SynthesisImplicitPhysicalDamageWithUnholyMightJewel2"] = { type = "Synthesis", affix = "", "(9-10)% increased Physical Damage while you have Unholy Might", statOrder = { 9433 }, level = 1, group = "PhysicalDamageWithUnholyMight", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["SynthesisImplicitMovementSpeedWhilePhasedJewel1_"] = { type = "Synthesis", affix = "", "2% increased Movement Speed while Phasing", statOrder = { 2519 }, level = 1, group = "MovementSpeedWhilePhased", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["SynthesisImplicitMovementSpeedWhilePhasedJewel2_"] = { type = "Synthesis", affix = "", "3% increased Movement Speed while Phasing", statOrder = { 2519 }, level = 1, group = "MovementSpeedWhilePhased", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["SynthesisImplicitAdditionalVaalSoulOnKill1"] = { type = "Synthesis", affix = "", "(2-3)% chance to gain an additional Vaal Soul on Kill", statOrder = { 3012 }, level = 36, group = "AdditionalVaalSoulOnKill", weightKey = { }, weightVal = { }, modTags = { "vaal" }, }, + ["SynthesisImplicitAdditionalVaalSoulOnKill2"] = { type = "Synthesis", affix = "", "(4-5)% chance to gain an additional Vaal Soul on Kill", statOrder = { 3012 }, level = 48, group = "AdditionalVaalSoulOnKill", weightKey = { }, weightVal = { }, modTags = { "vaal" }, }, + ["SynthesisImplicitVaalSkillCriticalStrikeChance1"] = { type = "Synthesis", affix = "", "(21-30)% increased Vaal Skill Critical Strike Chance", statOrder = { 3015 }, level = 36, group = "VaalSkillCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical", "vaal" }, }, + ["SynthesisImplicitVaalSkillCriticalStrikeChance2_"] = { type = "Synthesis", affix = "", "(31-40)% increased Vaal Skill Critical Strike Chance", statOrder = { 3015 }, level = 48, group = "VaalSkillCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical", "vaal" }, }, + ["SynthesisImplicitVaalSkillDuration1"] = { type = "Synthesis", affix = "", "Vaal Skills have (5-8)% increased Skill Effect Duration", statOrder = { 3013 }, level = 36, group = "VaalSkillDuration", weightKey = { }, weightVal = { }, modTags = { "vaal" }, }, + ["SynthesisImplicitVaalSkillDuration2"] = { type = "Synthesis", affix = "", "Vaal Skills have (9-12)% increased Skill Effect Duration", statOrder = { 3013 }, level = 48, group = "VaalSkillDuration", weightKey = { }, weightVal = { }, modTags = { "vaal" }, }, + ["SynthesisImplicitMovementVelocityCorruptedItem1"] = { type = "Synthesis", affix = "", "(5-7)% increased Movement Speed if Corrupted", statOrder = { 7847 }, level = 60, group = "MovementVelocityCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["SynthesisImplicitAttackAndCastSpeedCorruptedItem1___"] = { type = "Synthesis", affix = "", "(5-7)% increased Attack and Cast Speed if Corrupted", statOrder = { 7714 }, level = 60, group = "AttackAndCastSpeedCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, }, + ["SynthesisImplicitAllElementalResistanceCorruptedItem1"] = { type = "Synthesis", affix = "", "+(8-12)% to all Elemental Resistances if Corrupted", statOrder = { 7851 }, level = 60, group = "AllElementalResistanceCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["SynthesisImplicitAllElementalResistanceCorruptedItemJewel1"] = { type = "Synthesis", affix = "", "+2% to all Elemental Resistances if Corrupted", statOrder = { 7851 }, level = 60, group = "AllElementalResistanceCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["SynthesisImplicitDamageTakenCorruptedItem1"] = { type = "Synthesis", affix = "", "5% reduced Damage taken if Corrupted", statOrder = { 7743 }, level = 60, group = "DamageTakenCorruptedItem", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitIncreasedLifeCorruptedItem1"] = { type = "Synthesis", affix = "", "(6-8)% increased maximum Life if Corrupted", statOrder = { 7841 }, level = 60, group = "IncreasedLifeCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["SynthesisImplicitIncreasedEnergyShieldCorruptedItem1"] = { type = "Synthesis", affix = "", "(8-10)% increased maximum Energy Shield if Corrupted", statOrder = { 7839 }, level = 60, group = "IncreasedEnergyShieldCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["SynthesisImplicitAllDamageCorruptedItem1"] = { type = "Synthesis", affix = "", "(15-20)% increased Damage if Corrupted", statOrder = { 7742 }, level = 60, group = "AllDamageCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitGlobalCriticalStrikeChanceCorruptedItem1"] = { type = "Synthesis", affix = "", "(40-50)% increased Global Critical Strike Chance if Corrupted", statOrder = { 7737 }, level = 60, group = "GlobalCriticalStrikeChanceCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["SynthesisImplicitImmuneToCursesCorruptedItem1"] = { type = "Synthesis", affix = "", "Immune to Curses if Corrupted", statOrder = { 7794 }, level = 60, group = "ImmuneToCursesCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["SynthesisImplicitAttackDamageCorruptedItem1"] = { type = "Synthesis", affix = "", "(40-50)% increased Attack Damage if Corrupted", statOrder = { 7715 }, level = 60, group = "AttackDamageCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, + ["SynthesisImplicitAttackDamageCorruptedItem2"] = { type = "Synthesis", affix = "", "(60-70)% increased Attack Damage if Corrupted", statOrder = { 7715 }, level = 60, group = "AttackDamageCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, + ["SynthesisImplicitAttackDamageCorruptedItemJewel1"] = { type = "Synthesis", affix = "", "(5-7)% increased Attack Damage if Corrupted", statOrder = { 7715 }, level = 1, group = "AttackDamageCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, + ["SynthesisImplicitSpellDamageCorruptedItem1"] = { type = "Synthesis", affix = "", "(40-50)% increased Spell Damage if Corrupted", statOrder = { 7862 }, level = 60, group = "SpellDamageCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SynthesisImplicitSpellDamageCorruptedItem2"] = { type = "Synthesis", affix = "", "(60-70)% increased Spell Damage if Corrupted", statOrder = { 7862 }, level = 60, group = "SpellDamageCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SynthesisImplicitSpellDamageCorruptedItemJewel1__"] = { type = "Synthesis", affix = "", "(5-7)% increased Spell Damage if Corrupted", statOrder = { 7862 }, level = 1, group = "SpellDamageCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SynthesisImplicitVaalSkillDamageAffectsSkillDamage1"] = { type = "Synthesis", affix = "", "Increases and Reductions to Damage with Vaal Skills also apply to Non-Vaal Skills", statOrder = { 2598 }, level = 65, group = "VaalSkillDamageAffectsSkillDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitDamageVSAbyssMonsters1"] = { type = "Synthesis", affix = "", "(15-20)% increased Damage with Hits and Ailments against Abyssal Monsters", statOrder = { 5964 }, level = 40, group = "DamageVSAbyssMonsters", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitDamageVSAbyssMonsters2"] = { type = "Synthesis", affix = "", "(21-25)% increased Damage with Hits and Ailments against Abyssal Monsters", statOrder = { 5964 }, level = 50, group = "DamageVSAbyssMonsters", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitReducedPhysicalDamageTakenVsAbyssMonsters1"] = { type = "Synthesis", affix = "", "(2-3)% additional Physical Damage Reduction against Abyssal Monsters", statOrder = { 4483 }, level = 40, group = "ReducedPhysicalDamageTakenVsAbyssMonsters", weightKey = { }, weightVal = { }, modTags = { "physical" }, }, + ["SynthesisImplicitReducedPhysicalDamageTakenVsAbyssMonsters2"] = { type = "Synthesis", affix = "", "(4-5)% additional Physical Damage Reduction against Abyssal Monsters", statOrder = { 4483 }, level = 50, group = "ReducedPhysicalDamageTakenVsAbyssMonsters", weightKey = { }, weightVal = { }, modTags = { "physical" }, }, + ["SynthesisImplicitAbyssJewelEffect1"] = { type = "Synthesis", affix = "", "25% increased Effect of Socketed Abyss Jewels", statOrder = { 200 }, level = 70, group = "AbyssJewelEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponFireAddedAsChaos1h1"] = { type = "Prefix", affix = "Acidic", "Gain (5-7)% of Fire Damage as Extra Chaos Damage", statOrder = { 1850 }, level = 66, group = "FireAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, }, + ["WeaponFireAddedAsChaos1h2"] = { type = "Prefix", affix = "Dissolving", "Gain (8-10)% of Fire Damage as Extra Chaos Damage", statOrder = { 1850 }, level = 72, group = "FireAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, }, + ["WeaponFireAddedAsChaos1h3_"] = { type = "Prefix", affix = "Corrosive", "Gain (11-13)% of Fire Damage as Extra Chaos Damage", statOrder = { 1850 }, level = 80, group = "FireAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, }, + ["WeaponColdAddedAsChaos1h1"] = { type = "Prefix", affix = "Atrophic", "Gain (5-7)% of Cold Damage as Extra Chaos Damage", statOrder = { 1849 }, level = 66, group = "ColdAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "cold", "chaos" }, }, + ["WeaponColdAddedAsChaos1h2"] = { type = "Prefix", affix = "Festering", "Gain (8-10)% of Cold Damage as Extra Chaos Damage", statOrder = { 1849 }, level = 72, group = "ColdAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "cold", "chaos" }, }, + ["WeaponColdAddedAsChaos1h3_"] = { type = "Prefix", affix = "Mortifying", "Gain (11-13)% of Cold Damage as Extra Chaos Damage", statOrder = { 1849 }, level = 80, group = "ColdAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "cold", "chaos" }, }, + ["WeaponLightningAddedAsChaos1h1"] = { type = "Prefix", affix = "Agonizing", "Gain (5-7)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1847 }, level = 66, group = "LightningAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, }, + ["WeaponLightningAddedAsChaos1h2"] = { type = "Prefix", affix = "Harrowing", "Gain (8-10)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1847 }, level = 72, group = "LightningAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, }, + ["WeaponLightningAddedAsChaos1h3_"] = { type = "Prefix", affix = "Excruciating", "Gain (11-13)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1847 }, level = 80, group = "LightningAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, }, + ["WeaponPhysicalAddedAsChaos1h1____"] = { type = "Prefix", affix = "Pernicious", "Gain (5-7)% of Physical Damage as Extra Chaos Damage", statOrder = { 1844 }, level = 66, group = "PhysicalAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, + ["WeaponPhysicalAddedAsChaos1h2"] = { type = "Prefix", affix = "Inimical", "Gain (8-10)% of Physical Damage as Extra Chaos Damage", statOrder = { 1844 }, level = 72, group = "PhysicalAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, + ["WeaponPhysicalAddedAsChaos1h3_"] = { type = "Prefix", affix = "Baleful", "Gain (11-13)% of Physical Damage as Extra Chaos Damage", statOrder = { 1844 }, level = 80, group = "PhysicalAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, + ["WeaponFireAddedAsChaos2h1_"] = { type = "Prefix", affix = "Acidic", "Gain (10-14)% of Fire Damage as Extra Chaos Damage", statOrder = { 1850 }, level = 66, group = "FireAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, }, + ["WeaponFireAddedAsChaos2h2"] = { type = "Prefix", affix = "Dissolving", "Gain (15-20)% of Fire Damage as Extra Chaos Damage", statOrder = { 1850 }, level = 72, group = "FireAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, }, + ["WeaponFireAddedAsChaos2h3_"] = { type = "Prefix", affix = "Corrosive", "Gain (21-26)% of Fire Damage as Extra Chaos Damage", statOrder = { 1850 }, level = 80, group = "FireAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, }, + ["WeaponColdAddedAsChaos2h1"] = { type = "Prefix", affix = "Atrophic", "Gain (10-14)% of Cold Damage as Extra Chaos Damage", statOrder = { 1849 }, level = 66, group = "ColdAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "cold", "chaos" }, }, + ["WeaponColdAddedAsChaos2h2"] = { type = "Prefix", affix = "Festering", "Gain (15-20)% of Cold Damage as Extra Chaos Damage", statOrder = { 1849 }, level = 72, group = "ColdAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "cold", "chaos" }, }, + ["WeaponColdAddedAsChaos2h3"] = { type = "Prefix", affix = "Mortifying", "Gain (21-26)% of Cold Damage as Extra Chaos Damage", statOrder = { 1849 }, level = 80, group = "ColdAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "cold", "chaos" }, }, + ["WeaponLightningAddedAsChaos2h1"] = { type = "Prefix", affix = "Agonizing", "Gain (10-14)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1847 }, level = 66, group = "LightningAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, }, + ["WeaponLightningAddedAsChaos2h2"] = { type = "Prefix", affix = "Harrowing", "Gain (15-20)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1847 }, level = 72, group = "LightningAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, }, + ["WeaponLightningAddedAsChaos2h3"] = { type = "Prefix", affix = "Excruciating", "Gain (21-26)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1847 }, level = 80, group = "LightningAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, }, + ["WeaponPhysicalAddedAsChaos2h1"] = { type = "Prefix", affix = "Pernicious", "Gain (10-14)% of Physical Damage as Extra Chaos Damage", statOrder = { 1844 }, level = 66, group = "PhysicalAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, + ["WeaponPhysicalAddedAsChaos2h2"] = { type = "Prefix", affix = "Inimical", "Gain (15-20)% of Physical Damage as Extra Chaos Damage", statOrder = { 1844 }, level = 72, group = "PhysicalAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, + ["WeaponPhysicalAddedAsChaos2h3"] = { type = "Prefix", affix = "Baleful", "Gain (21-26)% of Physical Damage as Extra Chaos Damage", statOrder = { 1844 }, level = 80, group = "PhysicalAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, + ["MinionDamageOnWeapon1"] = { type = "Prefix", affix = "Baroness's", "Minions deal (10-19)% increased Damage", statOrder = { 1882 }, level = 2, group = "MinionDamageOnWeapon", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 3000, 3000, 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageOnWeapon2"] = { type = "Prefix", affix = "Viscountess's", "Minions deal (20-29)% increased Damage", statOrder = { 1882 }, level = 11, group = "MinionDamageOnWeapon", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 3000, 3000, 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageOnWeapon3"] = { type = "Prefix", affix = "Marchioness's", "Minions deal (30-39)% increased Damage", statOrder = { 1882 }, level = 23, group = "MinionDamageOnWeapon", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 3000, 3000, 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageOnWeapon4_"] = { type = "Prefix", affix = "Countess's", "Minions deal (40-54)% increased Damage", statOrder = { 1882 }, level = 35, group = "MinionDamageOnWeapon", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1200, 1200, 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageOnWeapon5"] = { type = "Prefix", affix = "Duchess's", "Minions deal (55-69)% increased Damage", statOrder = { 1882 }, level = 46, group = "MinionDamageOnWeapon", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageOnWeapon6"] = { type = "Prefix", affix = "Princess's", "Minions deal (70-84)% increased Damage", statOrder = { 1882 }, level = 58, group = "MinionDamageOnWeapon", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageOnWeapon7"] = { type = "Prefix", affix = "Queen's", "Minions deal (85-99)% increased Damage", statOrder = { 1882 }, level = 64, group = "MinionDamageOnWeapon", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 160, 160, 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageOnWeapon8"] = { type = "Prefix", affix = "Empress's", "Minions deal (100-109)% increased Damage", statOrder = { 1882 }, level = 84, group = "MinionDamageOnWeapon", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 80, 80, 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageOnWeaponEssence5"] = { type = "Prefix", affix = "Essences", "Minions deal (50-66)% increased Damage", statOrder = { 1882 }, level = 58, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageOnWeaponEssence6"] = { type = "Prefix", affix = "Essences", "Minions deal (67-82)% increased Damage", statOrder = { 1882 }, level = 74, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageOnWeaponEssence7"] = { type = "Prefix", affix = "Essences", "Minions deal (83-94)% increased Damage", statOrder = { 1882 }, level = 82, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageOnTwoHandWeapon1"] = { type = "Prefix", affix = "Baroness's", "Minions deal (15-29)% increased Damage", statOrder = { 1882 }, level = 2, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageOnTwoHandWeapon2"] = { type = "Prefix", affix = "Marchioness's", "Minions deal (30-44)% increased Damage", statOrder = { 1882 }, level = 11, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageOnTwoHandWeapon3"] = { type = "Prefix", affix = "Duchess's", "Minions deal (45-59)% increased Damage", statOrder = { 1882 }, level = 23, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageOnTwoHandWeapon4"] = { type = "Prefix", affix = "Queen's", "Minions deal (60-84)% increased Damage", statOrder = { 1882 }, level = 35, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageOnTwoHandWeaponEssence5"] = { type = "Prefix", affix = "Essences", "Minions deal (85-106)% increased Damage", statOrder = { 1882 }, level = 58, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageOnTwoHandWeaponEssence6"] = { type = "Prefix", affix = "Essences", "Minions deal (107-122)% increased Damage", statOrder = { 1882 }, level = 74, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageOnTwoHandWeaponEssence7"] = { type = "Prefix", affix = "Essences", "Minions deal (123-144)% increased Damage", statOrder = { 1882 }, level = 82, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageAndManaOnWeapon1"] = { type = "Prefix", affix = "Baron's", "+(17-20) to maximum Mana", "Minions deal (5-9)% increased Damage", statOrder = { 1490, 1882 }, level = 2, group = "MinionDamageOnWeaponAndMana", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "resource", "mana", "minion" }, }, + ["MinionDamageAndManaOnWeapon2_"] = { type = "Prefix", affix = "Viscount's", "+(21-24) to maximum Mana", "Minions deal (10-14)% increased Damage", statOrder = { 1490, 1882 }, level = 11, group = "MinionDamageOnWeaponAndMana", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "resource", "mana", "minion" }, }, + ["MinionDamageAndManaOnWeapon3"] = { type = "Prefix", affix = "Marquess's", "+(25-28) to maximum Mana", "Minions deal (15-19)% increased Damage", statOrder = { 1490, 1882 }, level = 23, group = "MinionDamageOnWeaponAndMana", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "resource", "mana", "minion" }, }, + ["MinionDamageAndManaOnWeapon4_"] = { type = "Prefix", affix = "Count's", "+(29-33) to maximum Mana", "Minions deal (20-24)% increased Damage", statOrder = { 1490, 1882 }, level = 35, group = "MinionDamageOnWeaponAndMana", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1600, 0 }, modTags = { "resource", "mana", "minion" }, }, + ["MinionDamageAndManaOnWeapon5"] = { type = "Prefix", affix = "Duke's", "+(34-37) to maximum Mana", "Minions deal (25-29)% increased Damage", statOrder = { 1490, 1882 }, level = 46, group = "MinionDamageOnWeaponAndMana", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 800, 0 }, modTags = { "resource", "mana", "minion" }, }, + ["MinionDamageAndManaOnWeapon6"] = { type = "Prefix", affix = "Prince's", "+(38-41) to maximum Mana", "Minions deal (30-34)% increased Damage", statOrder = { 1490, 1882 }, level = 58, group = "MinionDamageOnWeaponAndMana", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 400, 0 }, modTags = { "resource", "mana", "minion" }, }, + ["MinionDamageAndManaOnWeapon7_"] = { type = "Prefix", affix = "King's", "+(42-45) to maximum Mana", "Minions deal (35-39)% increased Damage", statOrder = { 1490, 1882 }, level = 80, group = "MinionDamageOnWeaponAndMana", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "mana", "minion" }, }, + ["MinionAttackAndCastSpeed1"] = { type = "Suffix", affix = "of Motivation", "Minions have (5-7)% increased Attack and Cast Speed", statOrder = { 9080 }, level = 2, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, + ["MinionAttackAndCastSpeed2"] = { type = "Suffix", affix = "of Coercion", "Minions have (8-10)% increased Attack and Cast Speed", statOrder = { 9080 }, level = 15, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, + ["MinionAttackAndCastSpeed3_"] = { type = "Suffix", affix = "of Incitation", "Minions have (11-13)% increased Attack and Cast Speed", statOrder = { 9080 }, level = 30, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, + ["MinionAttackAndCastSpeed4"] = { type = "Suffix", affix = "of Agitation", "Minions have (14-16)% increased Attack and Cast Speed", statOrder = { 9080 }, level = 40, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, + ["MinionAttackAndCastSpeed5"] = { type = "Suffix", affix = "of Instigation", "Minions have (17-19)% increased Attack and Cast Speed", statOrder = { 9080 }, level = 55, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, + ["MinionAttackAndCastSpeed6__"] = { type = "Suffix", affix = "of Provocation", "Minions have (20-22)% increased Attack and Cast Speed", statOrder = { 9080 }, level = 72, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, + ["MinionAttackAndCastSpeed7"] = { type = "Suffix", affix = "of Infuriation", "Minions have (23-25)% increased Attack and Cast Speed", statOrder = { 9080 }, level = 83, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, + ["MinionGemLevel1h1"] = { type = "Prefix", affix = "Martinet's", "+1 to Level of all Minion Skill Gems", statOrder = { 1525 }, level = 60, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "minion", "gem" }, }, + ["MinionLifeWeapon1"] = { type = "Suffix", affix = "of the Administrator", "Minions have (13-17)% increased maximum Life", statOrder = { 1677 }, level = 10, group = "MinionLife", weightKey = { "two_hand_weapon", "focus_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "resource", "life", "minion" }, }, + ["MinionLifeWeapon2"] = { type = "Suffix", affix = "of the Rector", "Minions have (18-22)% increased maximum Life", statOrder = { 1677 }, level = 26, group = "MinionLife", weightKey = { "two_hand_weapon", "focus_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "resource", "life", "minion" }, }, + ["MinionLifeWeapon3"] = { type = "Suffix", affix = "of the Overseer", "Minions have (23-27)% increased maximum Life", statOrder = { 1677 }, level = 42, group = "MinionLife", weightKey = { "two_hand_weapon", "focus_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "resource", "life", "minion" }, }, + ["MinionLifeWeapon4__"] = { type = "Suffix", affix = "of the Taskmaster", "Minions have (28-32)% increased maximum Life", statOrder = { 1677 }, level = 58, group = "MinionLife", weightKey = { "two_hand_weapon", "focus_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "resource", "life", "minion" }, }, + ["MinionLifeWeapon5"] = { type = "Suffix", affix = "of the Slavedriver", "Minions have (33-36)% increased maximum Life", statOrder = { 1677 }, level = 74, group = "MinionLife", weightKey = { "two_hand_weapon", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "resource", "life", "minion" }, }, + ["MinionLifeWeapon6_"] = { type = "Suffix", affix = "of the Despot", "Minions have (37-40)% increased maximum Life", statOrder = { 1677 }, level = 82, group = "MinionLife", weightKey = { "two_hand_weapon", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "resource", "life", "minion" }, }, + ["MinionMovementSpeed1"] = { type = "Suffix", affix = "of Coordination", "Minions have (6-10)% increased Movement Speed", statOrder = { 1680 }, level = 1, group = "MinionMovementSpeed", weightKey = { "two_hand_weapon", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "speed", "minion" }, }, + ["MinionMovementSpeed2"] = { type = "Suffix", affix = "of Collaboration", "Minions have (11-15)% increased Movement Speed", statOrder = { 1680 }, level = 15, group = "MinionMovementSpeed", weightKey = { "two_hand_weapon", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "speed", "minion" }, }, + ["MinionMovementSpeed3"] = { type = "Suffix", affix = "of Integration", "Minions have (16-20)% increased Movement Speed", statOrder = { 1680 }, level = 30, group = "MinionMovementSpeed", weightKey = { "two_hand_weapon", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "speed", "minion" }, }, + ["MinionMovementSpeed4"] = { type = "Suffix", affix = "of Orchestration", "Minions have (21-25)% increased Movement Speed", statOrder = { 1680 }, level = 40, group = "MinionMovementSpeed", weightKey = { "two_hand_weapon", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "speed", "minion" }, }, + ["MinionMovementSpeed5"] = { type = "Suffix", affix = "of Harmony", "Minions have (26-30)% increased Movement Speed", statOrder = { 1680 }, level = 55, group = "MinionMovementSpeed", weightKey = { "two_hand_weapon", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "speed", "minion" }, }, + ["MinionDamagePercent1"] = { type = "Prefix", affix = "Baroness's", "Minions deal (5-10)% increased Damage", statOrder = { 1882 }, level = 4, group = "MinionDamage", weightKey = { "ring_can_roll_minion_modifiers", "default", }, weightVal = { 600, 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamagePercent2"] = { type = "Prefix", affix = "Viscountess's", "Minions deal (11-20)% increased Damage", statOrder = { 1882 }, level = 15, group = "MinionDamage", weightKey = { "ring_can_roll_minion_modifiers", "default", }, weightVal = { 600, 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamagePercent3"] = { type = "Prefix", affix = "Marchioness's", "Minions deal (21-30)% increased Damage", statOrder = { 1882 }, level = 30, group = "MinionDamage", weightKey = { "ring_can_roll_minion_modifiers", "default", }, weightVal = { 600, 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamagePercent4"] = { type = "Prefix", affix = "Countess's", "Minions deal (31-36)% increased Damage", statOrder = { 1882 }, level = 60, group = "MinionDamage", weightKey = { "ring_can_roll_minion_modifiers", "default", }, weightVal = { 600, 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamagePercent5"] = { type = "Prefix", affix = "Duchess's", "Minions deal (37-42)% increased Damage", statOrder = { 1882 }, level = 81, group = "MinionDamage", weightKey = { "ring_can_roll_minion_modifiers", "default", }, weightVal = { 600, 0 }, modTags = { "damage", "minion" }, }, + ["MinionResistancesWeapon1_"] = { type = "Suffix", affix = "of Adjustment", "Minions have +(11-15)% to all Elemental Resistances", statOrder = { 2822 }, level = 8, group = "MinionElementalResistance", weightKey = { "focus_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 2000, 2000, 0 }, modTags = { "elemental", "resistance", "minion" }, }, + ["MinionResistancesWeapon2"] = { type = "Suffix", affix = "of Acclimatisation", "Minions have +(16-20)% to all Elemental Resistances", statOrder = { 2822 }, level = 24, group = "MinionElementalResistance", weightKey = { "focus_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 2000, 2000, 0 }, modTags = { "elemental", "resistance", "minion" }, }, + ["MinionResistancesWeapon3"] = { type = "Suffix", affix = "of Adaptation", "Minions have +(21-23)% to all Elemental Resistances", statOrder = { 2822 }, level = 37, group = "MinionElementalResistance", weightKey = { "focus_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 2000, 2000, 0 }, modTags = { "elemental", "resistance", "minion" }, }, + ["MinionResistancesWeapon4"] = { type = "Suffix", affix = "of Evolution", "Minions have +(24-26)% to all Elemental Resistances", statOrder = { 2822 }, level = 50, group = "MinionElementalResistance", weightKey = { "focus_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 2000, 2000, 0 }, modTags = { "elemental", "resistance", "minion" }, }, + ["MinionResistancesWeapon5"] = { type = "Suffix", affix = "of Metamorphosis", "Minions have +(27-30)% to all Elemental Resistances", statOrder = { 2822 }, level = 61, group = "MinionElementalResistance", weightKey = { "focus_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 2000, 2000, 0 }, modTags = { "elemental", "resistance", "minion" }, }, + ["MinionAccuracyRatingWeapon1_"] = { type = "Suffix", affix = "of the Instructor", "Minions have +(80-130) to Accuracy Rating", statOrder = { 9074 }, level = 1, group = "MinionFlatAccuracyRating", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack", "minion" }, }, + ["MinionAccuracyRatingWeapon2"] = { type = "Suffix", affix = "of the Tutor", "Minions have +(131-215) to Accuracy Rating", statOrder = { 9074 }, level = 20, group = "MinionFlatAccuracyRating", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack", "minion" }, }, + ["MinionAccuracyRatingWeapon3"] = { type = "Suffix", affix = "of the Commander", "Minions have +(216-325) to Accuracy Rating", statOrder = { 9074 }, level = 40, group = "MinionFlatAccuracyRating", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack", "minion" }, }, + ["MinionAccuracyRatingWeapon4"] = { type = "Suffix", affix = "of the Magnate", "Minions have +(326-455) to Accuracy Rating", statOrder = { 9074 }, level = 60, group = "MinionFlatAccuracyRating", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack", "minion" }, }, + ["MinionAccuracyRatingWeapon5"] = { type = "Suffix", affix = "of the Ruler", "Minions have +(456-545) to Accuracy Rating", statOrder = { 9074 }, level = 75, group = "MinionFlatAccuracyRating", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack", "minion" }, }, + ["MinionAccuracyRatingWeapon6"] = { type = "Suffix", affix = "of the Monarch", "Minions have +(546-624) to Accuracy Rating", statOrder = { 9074 }, level = 85, group = "MinionFlatAccuracyRating", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack", "minion" }, }, + ["MinionMaxElementalResistance1"] = { type = "Suffix", affix = "of Impermeability", "Minions have +(3-4)% to all maximum Elemental Resistances", statOrder = { 9126 }, level = 68, group = "MinionMaxElementalResistance", weightKey = { "focus_can_roll_minion_modifiers", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "minion" }, }, + ["MinionMaxElementalResistance2"] = { type = "Suffix", affix = "of Countervailing", "Minions have +(5-6)% to all maximum Elemental Resistances", statOrder = { 9126 }, level = 75, group = "MinionMaxElementalResistance", weightKey = { "focus_can_roll_minion_modifiers", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "minion" }, }, + ["MinionMaxElementalResistance3"] = { type = "Suffix", affix = "of Imperviousness", "Minions have +(7-8)% to all maximum Elemental Resistances", statOrder = { 9126 }, level = 81, group = "MinionMaxElementalResistance", weightKey = { "focus_can_roll_minion_modifiers", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "minion" }, }, + ["MinionPhysicalDamageReduction1"] = { type = "Suffix", affix = "of the Guard", "Minions have (7-9)% additional Physical Damage Reduction", statOrder = { 2183 }, level = 68, group = "MinionPhysicalDamageReduction", weightKey = { "focus_can_roll_minion_modifiers", "default", }, weightVal = { 500, 0 }, modTags = { "physical", "minion" }, }, + ["MinionPhysicalDamageReduction2"] = { type = "Suffix", affix = "of the Brigade", "Minions have (10-12)% additional Physical Damage Reduction", statOrder = { 2183 }, level = 75, group = "MinionPhysicalDamageReduction", weightKey = { "focus_can_roll_minion_modifiers", "default", }, weightVal = { 500, 0 }, modTags = { "physical", "minion" }, }, + ["MinionPhysicalDamageReduction3"] = { type = "Suffix", affix = "of the Phalanx", "Minions have (13-15)% additional Physical Damage Reduction", statOrder = { 2183 }, level = 81, group = "MinionPhysicalDamageReduction", weightKey = { "focus_can_roll_minion_modifiers", "default", }, weightVal = { 500, 0 }, modTags = { "physical", "minion" }, }, + ["MinionCriticalStrikeChanceIncrease1"] = { type = "Suffix", affix = "of Luck", "Minions have (10-19)% increased Critical Strike Chance", statOrder = { 9099 }, level = 11, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "minion", "critical" }, }, + ["MinionCriticalStrikeChanceIncrease2"] = { type = "Suffix", affix = "of Fortune", "Minions have (20-39)% increased Critical Strike Chance", statOrder = { 9099 }, level = 21, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "minion", "critical" }, }, + ["MinionCriticalStrikeChanceIncrease3"] = { type = "Suffix", affix = "of Providence", "Minions have (40-59)% increased Critical Strike Chance", statOrder = { 9099 }, level = 28, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "minion", "critical" }, }, + ["MinionCriticalStrikeChanceIncrease4"] = { type = "Suffix", affix = "of Serendipity", "Minions have (60-79)% increased Critical Strike Chance", statOrder = { 9099 }, level = 41, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "minion", "critical" }, }, + ["MinionCriticalStrikeChanceIncrease5"] = { type = "Suffix", affix = "of Determinism", "Minions have (80-99)% increased Critical Strike Chance", statOrder = { 9099 }, level = 59, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "minion", "critical" }, }, + ["MinionCriticalStrikeChanceIncrease6"] = { type = "Suffix", affix = "of Destiny", "Minions have (100-109)% increased Critical Strike Chance", statOrder = { 9099 }, level = 76, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "minion", "critical" }, }, + ["MinionCriticalStrikeMultiplier1"] = { type = "Suffix", affix = "of the Foray", "Minions have +(10-14)% to Critical Strike Multiplier", statOrder = { 9101 }, level = 8, group = "MinionCriticalStrikeMultiplier", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "damage", "minion", "critical" }, }, + ["MinionCriticalStrikeMultiplier2"] = { type = "Suffix", affix = "of the Horde", "Minions have +(15-19)% to Critical Strike Multiplier", statOrder = { 9101 }, level = 21, group = "MinionCriticalStrikeMultiplier", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "damage", "minion", "critical" }, }, + ["MinionCriticalStrikeMultiplier3"] = { type = "Suffix", affix = "of the Throng", "Minions have +(20-24)% to Critical Strike Multiplier", statOrder = { 9101 }, level = 30, group = "MinionCriticalStrikeMultiplier", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "damage", "minion", "critical" }, }, + ["MinionCriticalStrikeMultiplier4"] = { type = "Suffix", affix = "of the Swarm", "Minions have +(25-29)% to Critical Strike Multiplier", statOrder = { 9101 }, level = 44, group = "MinionCriticalStrikeMultiplier", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "damage", "minion", "critical" }, }, + ["MinionCriticalStrikeMultiplier5"] = { type = "Suffix", affix = "of the Invasion", "Minions have +(30-34)% to Critical Strike Multiplier", statOrder = { 9101 }, level = 59, group = "MinionCriticalStrikeMultiplier", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "damage", "minion", "critical" }, }, + ["MinionCriticalStrikeMultiplier6"] = { type = "Suffix", affix = "of the Legion", "Minions have +(35-38)% to Critical Strike Multiplier", statOrder = { 9101 }, level = 73, group = "MinionCriticalStrikeMultiplier", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "damage", "minion", "critical" }, }, + ["MinionGrantsConvocation1"] = { type = "Suffix", affix = "of the Convocation", "Grants Level 1 Convocation Skill", statOrder = { 598 }, level = 45, group = "MinionGrantsConvocation", weightKey = { "focus_can_roll_minion_modifiers", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { }, }, + ["TrapAndMineThrowSpeedEssence1"] = { type = "Suffix", affix = "of the Essence", "(7-10)% increased Trap and Mine Throwing Speed", statOrder = { 10197 }, level = 42, group = "TrapAndMineThrowSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, + ["TrapAndMineThrowSpeedEssence2_"] = { type = "Suffix", affix = "of the Essence", "(11-13)% increased Trap and Mine Throwing Speed", statOrder = { 10197 }, level = 58, group = "TrapAndMineThrowSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, + ["TrapAndMineThrowSpeedEssence3_"] = { type = "Suffix", affix = "of the Essence", "(14-17)% increased Trap and Mine Throwing Speed", statOrder = { 10197 }, level = 74, group = "TrapAndMineThrowSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, + ["TrapAndMineThrowSpeedEssence4"] = { type = "Suffix", affix = "of the Essence", "(18-21)% increased Trap and Mine Throwing Speed", statOrder = { 10197 }, level = 82, group = "TrapAndMineThrowSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, + ["UnaffectedByShockedGroundInfluence1"] = { type = "Prefix", affix = "Crusader's", "Unaffected by Shocked Ground", statOrder = { 10264 }, level = 68, group = "ShockedGroundEffectEffectiveness", weightKey = { "boots_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, }, + ["SocketedLightningGemLevelInfluence1_"] = { type = "Prefix", affix = "Crusader's", "+2 to Level of Socketed Lightning Gems", statOrder = { 149 }, level = 68, group = "LocalIncreaseSocketedLightningGemLevel", weightKey = { "boots_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "elemental", "lightning", "gem" }, }, + ["MaximumFireResistanceInfluence1"] = { type = "Prefix", affix = "Crusader's", "+1% to maximum Fire Resistance", statOrder = { 1534 }, level = 75, group = "MaximumFireResist", weightKey = { "boots_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "resistance" }, }, + ["MaximumFireResistanceInfluence2"] = { type = "Prefix", affix = "Crusader's", "+2% to maximum Fire Resistance", statOrder = { 1534 }, level = 85, group = "MaximumFireResist", weightKey = { "boots_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "resistance" }, }, + ["MaximumFireResistanceInfluence1New_"] = { type = "Suffix", affix = "of the Crusade", "+1% to maximum Fire Resistance", statOrder = { 1534 }, level = 75, group = "MaximumFireResist", weightKey = { "boots_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "elemental", "fire", "resistance" }, }, + ["MaximumFireResistanceInfluence2New_"] = { type = "Suffix", affix = "of the Crusade", "+2% to maximum Fire Resistance", statOrder = { 1534 }, level = 85, group = "MaximumFireResist", weightKey = { "boots_crusader", "default", }, weightVal = { 125, 0 }, modTags = { "influence_mod", "elemental", "fire", "resistance" }, }, + ["PhysicalAddedAsExtraLightningBootsInfluence1"] = { type = "Prefix", affix = "Crusader's", "Gain (3-5)% of Physical Damage as Extra Lightning Damage", statOrder = { 1843 }, level = 68, group = "PhysicalAddedAsLightning", weightKey = { "boots_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, }, + ["PhysicalAddedAsExtraLightningBootsInfluence2"] = { type = "Prefix", affix = "Crusader's", "Gain (6-8)% of Physical Damage as Extra Lightning Damage", statOrder = { 1843 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "boots_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, }, + ["CooldownRecoveryInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(6-10)% increased Cooldown Recovery Rate", statOrder = { 4899 }, level = 75, group = "GlobalCooldownRecovery", weightKey = { "boots_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, + ["CooldownRecoveryInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(11-15)% increased Cooldown Recovery Rate", statOrder = { 4899 }, level = 80, group = "GlobalCooldownRecovery", weightKey = { "boots_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, + ["AvoidIgniteInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(31-35)% chance to Avoid being Ignited", statOrder = { 1757 }, level = 68, group = "AvoidIgnite", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "ailment" }, }, + ["AvoidIgniteInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "(36-40)% chance to Avoid being Ignited", statOrder = { 1757 }, level = 70, group = "AvoidIgnite", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "ailment" }, }, + ["AvoidIgniteInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(51-60)% chance to Avoid being Ignited", statOrder = { 1757 }, level = 75, group = "AvoidIgnite", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "influence_mod", "elemental", "fire", "ailment" }, }, + ["AvoidFreezeInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(31-35)% chance to Avoid being Frozen", statOrder = { 1756 }, level = 68, group = "AvoidFreeze", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, }, + ["AvoidFreezeInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(36-40)% chance to Avoid being Frozen", statOrder = { 1756 }, level = 70, group = "AvoidFreeze", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, }, + ["AvoidFreezeInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(51-60)% chance to Avoid being Frozen", statOrder = { 1756 }, level = 75, group = "AvoidFreeze", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, }, + ["AvoidShockInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(31-35)% chance to Avoid being Shocked", statOrder = { 1759 }, level = 68, group = "AvoidShock", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, }, + ["AvoidShockInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(36-40)% chance to Avoid being Shocked", statOrder = { 1759 }, level = 70, group = "AvoidShock", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, }, + ["AvoidShockInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(51-60)% chance to Avoid being Shocked", statOrder = { 1759 }, level = 75, group = "AvoidShock", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, }, + ["AvoidProjectilesInfluence1"] = { type = "Suffix", affix = "of Redemption", "(6-9)% chance to avoid Projectiles", statOrder = { 4887 }, level = 68, group = "ChanceToAvoidProjectiles", weightKey = { "boots_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, + ["AvoidProjectilesInfluence2"] = { type = "Suffix", affix = "of Redemption", "(10-12)% chance to avoid Projectiles", statOrder = { 4887 }, level = 73, group = "ChanceToAvoidProjectiles", weightKey = { "boots_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, + ["UnaffectedByBurningGroundInfluence1"] = { type = "Prefix", affix = "Warlord's", "Unaffected by Burning Ground", statOrder = { 10239 }, level = 68, group = "BurningGroundEffectEffectiveness", weightKey = { "boots_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "elemental", "fire" }, }, + ["SocketedFireGemLevelInfluence1"] = { type = "Prefix", affix = "Warlord's", "+2 to Level of Socketed Fire Gems", statOrder = { 147 }, level = 68, group = "LocalIncreaseSocketedFireGemLevel", weightKey = { "boots_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "elemental", "fire", "gem" }, }, + ["MaximumEnduranceChargeInfluence1"] = { type = "Prefix", affix = "Warlord's", "+1 to Maximum Endurance Charges", statOrder = { 1715 }, level = 75, group = "MaximumEnduranceCharges", weightKey = { "boots_adjudicator", "default", }, weightVal = { 125, 0 }, modTags = { "endurance_charge", "influence_mod" }, }, + ["PhysicalAddedAsExtraFireBootsInfluence1"] = { type = "Prefix", affix = "Warlord's", "Gain (3-5)% of Physical Damage as Extra Fire Damage", statOrder = { 1841 }, level = 68, group = "PhysicalAddedAsFire", weightKey = { "boots_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, }, + ["PhysicalAddedAsExtraFireBootsInfluence2"] = { type = "Prefix", affix = "Warlord's", "Gain (6-8)% of Physical Damage as Extra Fire Damage", statOrder = { 1841 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "boots_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, }, + ["AvoidStunInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(16-20)% chance to Avoid being Stunned", statOrder = { 1762 }, level = 68, group = "AvoidStun", weightKey = { "boots_adjudicator", "gloves_adjudicator", "quiver_adjudicator", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "influence_mod" }, }, + ["AvoidStunInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "(21-25)% chance to Avoid being Stunned", statOrder = { 1762 }, level = 70, group = "AvoidStun", weightKey = { "boots_adjudicator", "gloves_adjudicator", "quiver_adjudicator", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "influence_mod" }, }, + ["AvoidStunInfluence3"] = { type = "Suffix", affix = "of the Conquest", "(31-35)% chance to Avoid being Stunned", statOrder = { 1762 }, level = 75, group = "AvoidStun", weightKey = { "boots_adjudicator", "gloves_adjudicator", "quiver_adjudicator", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "influence_mod" }, }, + ["AvoidFireDamageInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(5-7)% chance to Avoid Fire Damage from Hits", statOrder = { 3281 }, level = 68, group = "FireDamageAvoidance", weightKey = { "boots_adjudicator", "shield_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "elemental", "fire" }, }, + ["AvoidFireDamageInfluence2__"] = { type = "Suffix", affix = "of the Conquest", "(8-10)% chance to Avoid Fire Damage from Hits", statOrder = { 3281 }, level = 80, group = "FireDamageAvoidance", weightKey = { "boots_adjudicator", "shield_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "elemental", "fire" }, }, + ["AvoidColdDamageInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "(5-7)% chance to Avoid Cold Damage from Hits", statOrder = { 3282 }, level = 68, group = "ColdDamageAvoidance", weightKey = { "boots_adjudicator", "shield_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "elemental", "cold" }, }, + ["AvoidColdDamageInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(8-10)% chance to Avoid Cold Damage from Hits", statOrder = { 3282 }, level = 80, group = "ColdDamageAvoidance", weightKey = { "boots_adjudicator", "shield_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "elemental", "cold" }, }, + ["AvoidLightningDamageInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(5-7)% chance to Avoid Lightning Damage from Hits", statOrder = { 3283 }, level = 68, group = "LightningDamageAvoidance", weightKey = { "boots_adjudicator", "shield_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "elemental", "lightning" }, }, + ["AvoidLightningDamageInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(8-10)% chance to Avoid Lightning Damage from Hits", statOrder = { 3283 }, level = 80, group = "LightningDamageAvoidance", weightKey = { "boots_adjudicator", "shield_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "elemental", "lightning" }, }, + ["LifeRegenerationPercentInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Regenerate (0.8-1.2)% of Life per second", statOrder = { 1853 }, level = 68, group = "LifeRegenerationRatePercentage", weightKey = { "boots_adjudicator", "helmet_adjudicator", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "influence_mod", "life" }, }, + ["LifeRegenerationPercentInfluence2"] = { type = "Suffix", affix = "of the Conquest", "Regenerate (1.3-1.5)% of Life per second", statOrder = { 1853 }, level = 73, group = "LifeRegenerationRatePercentage", weightKey = { "boots_adjudicator", "helmet_adjudicator", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "influence_mod", "life" }, }, + ["AdditionalPhysicalDamageReductionInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(2-4)% additional Physical Damage Reduction", statOrder = { 2182 }, level = 75, group = "ReducedPhysicalDamageTaken", weightKey = { "boots_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical" }, }, + ["UnaffectedByChilledGroundInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Unaffected by Chilled Ground", statOrder = { 10244 }, level = 68, group = "ChilledGroundEffectEffectiveness", weightKey = { "boots_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, }, + ["SocketedColdGemLevelInfluence1"] = { type = "Prefix", affix = "Redeemer's", "+2 to Level of Socketed Cold Gems", statOrder = { 148 }, level = 68, group = "LocalIncreaseSocketedColdGemLevel", weightKey = { "boots_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "elemental", "cold", "gem" }, }, + ["EnduranceChargeOnKillInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(4-6)% chance to gain an Endurance Charge on Kill", statOrder = { 2537 }, level = 68, group = "EnduranceChargeOnKillChance", weightKey = { "boots_eyrie", "sword_eyrie", "axe_eyrie", "mace_eyrie", "sceptre_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 0 }, modTags = { "endurance_charge", "influence_mod" }, }, + ["EnduranceChargeOnKillInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(7-10)% chance to gain an Endurance Charge on Kill", statOrder = { 2537 }, level = 80, group = "EnduranceChargeOnKillChance", weightKey = { "boots_eyrie", "sword_eyrie", "axe_eyrie", "mace_eyrie", "sceptre_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 0 }, modTags = { "endurance_charge", "influence_mod" }, }, + ["PhysicalAddedAsExtraColdBootsInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Gain (3-5)% of Physical Damage as Extra Cold Damage", statOrder = { 1842 }, level = 68, group = "PhysicalAddedAsCold", weightKey = { "boots_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, }, + ["PhysicalAddedAsExtraColdBootsInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Gain (6-8)% of Physical Damage as Extra Cold Damage", statOrder = { 1842 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "boots_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, }, + ["ElusiveOnCriticalStrikeInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(5-10)% chance to gain Elusive on Critical Strike", statOrder = { 4188 }, level = 75, group = "ElusiveOnCriticalStrike", weightKey = { "boots_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "critical" }, }, + ["ChanceToDodgeAttacksInfluence1"] = { type = "Suffix", affix = "of Redemption", "+(4-7)% chance to Suppress Spell Damage", statOrder = { 1055 }, level = 68, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, + ["ChanceToDodgeAttacksInfluence2"] = { type = "Suffix", affix = "of Redemption", "+(9-12)% chance to Suppress Spell Damage", statOrder = { 1055 }, level = 73, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, + ["ChanceToDodgeAttacksInfluence3"] = { type = "Suffix", affix = "of Redemption", "+(13-15)% chance to Suppress Spell Damage", statOrder = { 1055 }, level = 80, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, + ["ChanceToDodgeSpellsInfluence1"] = { type = "Suffix", affix = "of Redemption", "+(4-7)% chance to Suppress Spell Damage", statOrder = { 1055 }, level = 68, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, + ["ChanceToDodgeSpellsInfluence2___"] = { type = "Suffix", affix = "of Redemption", "+(9-12)% chance to Suppress Spell Damage", statOrder = { 1055 }, level = 73, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, + ["ChanceToDodgeSpellsInfluence3"] = { type = "Suffix", affix = "of Redemption", "+(13-15)% chance to Suppress Spell Damage", statOrder = { 1055 }, level = 80, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, + ["IncreasedAilmentEffectOnEnemiesInfluence1"] = { type = "Suffix", affix = "of Redemption", "(30-34)% increased Effect of Non-Damaging Ailments", statOrder = { 9296 }, level = 68, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "boots_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "ailment" }, }, + ["IncreasedAilmentEffectOnEnemiesInfluence2"] = { type = "Suffix", affix = "of Redemption", "(35-40)% increased Effect of Non-Damaging Ailments", statOrder = { 9296 }, level = 73, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "boots_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "ailment" }, }, + ["OnslaughtOnKillInfluence1"] = { type = "Suffix", affix = "of Redemption", "(5-7)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2902 }, level = 75, group = "ChanceToGainOnslaughtOnKill", weightKey = { "boots_eyrie", "quiver_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod" }, }, + ["OnslaughtOnKillInfluence2_"] = { type = "Suffix", affix = "of Redemption", "(8-10)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2902 }, level = 80, group = "ChanceToGainOnslaughtOnKill", weightKey = { "boots_eyrie", "quiver_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod" }, }, + ["UnaffectedByDesecratedGroundInfluence1_"] = { type = "Prefix", affix = "Hunter's", "Unaffected by Desecrated Ground", statOrder = { 10250 }, level = 68, group = "DesecratedGroundEffectEffectiveness", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos" }, }, + ["SocketedChaosGemLevelInfluence1"] = { type = "Prefix", affix = "Hunter's", "+2 to Level of Socketed Chaos Gems", statOrder = { 150 }, level = 68, group = "LocalIncreaseSocketedChaosGemLevel", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos", "gem" }, }, + ["AdditionalPierceInfluence1"] = { type = "Prefix", affix = "Hunter's", "Projectiles Pierce an additional Target", statOrder = { 1701 }, level = 75, group = "AdditionalPierce", weightKey = { "boots_basilisk", "quiver_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { }, }, + ["AdditionalPierceInfluence2__"] = { type = "Prefix", affix = "Hunter's", "Projectiles Pierce 2 additional Targets", statOrder = { 1701 }, level = 80, group = "AdditionalPierce", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["PercentageStrengthInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(6-8)% increased Strength", statOrder = { 1096 }, level = 68, group = "PercentageStrength", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "attribute" }, }, + ["PercentageStrengthInfluence2_"] = { type = "Suffix", affix = "of the Hunt", "(9-10)% increased Strength", statOrder = { 1096 }, level = 75, group = "PercentageStrength", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "attribute" }, }, + ["AvoidBleedAndPoisonInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(21-25)% chance to Avoid being Poisoned", "(21-25)% chance to Avoid Bleeding", statOrder = { 1760, 4123 }, level = 68, group = "AvoidBleedAndPoison", weightKey = { "boots_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "bleed", "poison", "physical", "chaos", "attack", "ailment" }, }, + ["AvoidBleedAndPoisonInfluence2____"] = { type = "Suffix", affix = "of the Hunt", "(26-30)% chance to Avoid being Poisoned", "(26-30)% chance to Avoid Bleeding", statOrder = { 1760, 4123 }, level = 70, group = "AvoidBleedAndPoison", weightKey = { "boots_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "bleed", "poison", "physical", "chaos", "attack", "ailment" }, }, + ["AvoidBleedAndPoisonInfluence3"] = { type = "Suffix", affix = "of the Hunt", "(41-50)% chance to Avoid being Poisoned", "(41-50)% chance to Avoid Bleeding", statOrder = { 1760, 4123 }, level = 75, group = "AvoidBleedAndPoison", weightKey = { "boots_basilisk", "default", }, weightVal = { 1000, 0 }, modTags = { "bleed", "poison", "physical", "chaos", "attack", "ailment" }, }, + ["TailwindOnCriticalStrikeInfluence1"] = { type = "Suffix", affix = "of the Hunt", "You have Tailwind if you have dealt a Critical Strike Recently", statOrder = { 10132 }, level = 75, group = "TailwindOnCriticalStrike", weightKey = { "boots_basilisk", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["FasterIgniteInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "Ignites you inflict deal Damage (7-9)% faster", statOrder = { 2473 }, level = 68, group = "FasterIgniteDamage", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, + ["FasterIgniteInfluence2_"] = { type = "Suffix", affix = "of the Hunt", "Ignites you inflict deal Damage (10-12)% faster", statOrder = { 2473 }, level = 73, group = "FasterIgniteDamage", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, + ["FasterBleedInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Bleeding you inflict deals Damage (7-9)% faster", statOrder = { 6430 }, level = 68, group = "FasterBleedDamage", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["FasterBleedInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Bleeding you inflict deals Damage (10-12)% faster", statOrder = { 6430 }, level = 73, group = "FasterBleedDamage", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["FasterPoisonInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "Poisons you inflict deal Damage (7-9)% faster", statOrder = { 6431 }, level = 68, group = "FasterPoisonDamage", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["FasterPoisonInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Poisons you inflict deal Damage (10-12)% faster", statOrder = { 6431 }, level = 73, group = "FasterPoisonDamage", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["MaximumColdResistanceInfluence1"] = { type = "Prefix", affix = "Crusader's", "+1% to maximum Cold Resistance", statOrder = { 1540 }, level = 75, group = "MaximumColdResist", weightKey = { "gloves_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "resistance" }, }, + ["MaximumColdResistanceInfluence2"] = { type = "Prefix", affix = "Crusader's", "+2% to maximum Cold Resistance", statOrder = { 1540 }, level = 85, group = "MaximumColdResist", weightKey = { "gloves_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "resistance" }, }, + ["MaximumColdResistanceInfluence1New"] = { type = "Suffix", affix = "of the Crusade", "+1% to maximum Cold Resistance", statOrder = { 1540 }, level = 75, group = "MaximumColdResist", weightKey = { "gloves_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "elemental", "cold", "resistance" }, }, + ["MaximumColdResistanceInfluence2New"] = { type = "Suffix", affix = "of the Crusade", "+2% to maximum Cold Resistance", statOrder = { 1540 }, level = 85, group = "MaximumColdResist", weightKey = { "gloves_crusader", "default", }, weightVal = { 125, 0 }, modTags = { "influence_mod", "elemental", "cold", "resistance" }, }, + ["ConvertPhysicalToFireInfluence1"] = { type = "Prefix", affix = "Crusader's", "(18-21)% of Physical Damage Converted to Fire Damage", statOrder = { 1864 }, level = 68, group = "ConvertPhysicalToFire", weightKey = { "gloves_crusader", "quiver_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, }, + ["ConvertPhysicalToFireInfluence2"] = { type = "Prefix", affix = "Crusader's", "(22-25)% of Physical Damage Converted to Fire Damage", statOrder = { 1864 }, level = 71, group = "ConvertPhysicalToFire", weightKey = { "gloves_crusader", "quiver_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, }, + ["ConvertPhysicalToColdInfluence1_"] = { type = "Prefix", affix = "Crusader's", "(18-21)% of Physical Damage Converted to Cold Damage", statOrder = { 1866 }, level = 68, group = "ConvertPhysicalToCold", weightKey = { "gloves_crusader", "quiver_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, }, + ["ConvertPhysicalToColdInfluence2"] = { type = "Prefix", affix = "Crusader's", "(22-25)% of Physical Damage Converted to Cold Damage", statOrder = { 1866 }, level = 71, group = "ConvertPhysicalToCold", weightKey = { "gloves_crusader", "quiver_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, }, + ["ConvertPhysicalToLightningInfluence1"] = { type = "Prefix", affix = "Crusader's", "(18-21)% of Physical Damage Converted to Lightning Damage", statOrder = { 1868 }, level = 68, group = "ConvertPhysicalToLightning", weightKey = { "gloves_crusader", "quiver_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, }, + ["ConvertPhysicalToLightningInfluence2"] = { type = "Prefix", affix = "Crusader's", "(22-25)% of Physical Damage Converted to Lightning Damage", statOrder = { 1868 }, level = 71, group = "ConvertPhysicalToLightning", weightKey = { "gloves_crusader", "quiver_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, }, + ["MaximumLifeLeechRateInfluence1"] = { type = "Prefix", affix = "Crusader's", "10% increased Maximum total Life Recovery per second from Leech", statOrder = { 1642 }, level = 75, group = "MaximumLifeLeechRate", weightKey = { "gloves_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "influence_mod", "life" }, }, + ["MaximumEnergyShieldLeechRateInfluence1"] = { type = "Prefix", affix = "Crusader's", "15% increased Maximum total Energy Shield Recovery per second from Leech", statOrder = { 1645 }, level = 75, group = "MaximumEnergyShieldLeechRate", weightKey = { "gloves_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, + ["MaximumEnergyShieldLeechRateSuffixInfluence1"] = { type = "Suffix", affix = "of the Crusade", "15% increased Maximum total Energy Shield Recovery per second from Leech", statOrder = { 1645 }, level = 75, group = "MaximumEnergyShieldLeechRate", weightKey = { "gloves_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, + ["AvoidInterruptionWhileCastingInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "(21-25)% chance to Ignore Stuns while Casting", statOrder = { 1809 }, level = 68, group = "AvoidInterruptionWhileCasting", weightKey = { "gloves_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, + ["AvoidInterruptionWhileCastingInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(26-30)% chance to Ignore Stuns while Casting", statOrder = { 1809 }, level = 70, group = "AvoidInterruptionWhileCasting", weightKey = { "gloves_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, + ["AvoidInterruptionWhileCastingInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(31-35)% chance to Ignore Stuns while Casting", statOrder = { 1809 }, level = 75, group = "AvoidInterruptionWhileCasting", weightKey = { "gloves_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, + ["GlobalCriticalStrikeChanceInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(16-20)% increased Global Critical Strike Chance", statOrder = { 1370 }, level = 68, group = "CriticalStrikeChance", weightKey = { "gloves_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "critical" }, }, + ["GlobalCriticalStrikeChanceInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(21-25)% increased Global Critical Strike Chance", statOrder = { 1370 }, level = 70, group = "CriticalStrikeChance", weightKey = { "gloves_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "critical" }, }, + ["GlobalCriticalStrikeChanceInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(26-30)% increased Global Critical Strike Chance", statOrder = { 1370 }, level = 75, group = "CriticalStrikeChance", weightKey = { "gloves_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "critical" }, }, + ["MaximumFrenzyChargeInfluence1"] = { type = "Prefix", affix = "Warlord's", "+1 to Maximum Frenzy Charges", statOrder = { 1720 }, level = 75, group = "MaximumFrenzyCharges", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 125, 0 }, modTags = { "frenzy_charge", "influence_mod" }, }, + ["MeleeDamageInfluence1"] = { type = "Prefix", affix = "Warlord's", "(18-22)% increased Melee Damage", statOrder = { 1146 }, level = 68, group = "MeleeDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, }, + ["MeleeDamageInfluence2_"] = { type = "Prefix", affix = "Warlord's", "(23-26)% increased Melee Damage", statOrder = { 1146 }, level = 70, group = "MeleeDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, }, + ["MeleeDamageInfluence3"] = { type = "Prefix", affix = "Warlord's", "(27-30)% increased Melee Damage", statOrder = { 1146 }, level = 73, group = "MeleeDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, }, + ["ProjectileAttackDamageInfluence1_"] = { type = "Prefix", affix = "Warlord's", "(18-22)% increased Projectile Attack Damage", statOrder = { 1906 }, level = 68, group = "ProjectileAttackDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, }, + ["ProjectileAttackDamageInfluence2"] = { type = "Prefix", affix = "Warlord's", "(23-26)% increased Projectile Attack Damage", statOrder = { 1906 }, level = 70, group = "ProjectileAttackDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, }, + ["ProjectileAttackDamageInfluence3"] = { type = "Prefix", affix = "Warlord's", "(27-30)% increased Projectile Attack Damage", statOrder = { 1906 }, level = 73, group = "ProjectileAttackDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, }, + ["SpellDamageInfluence1"] = { type = "Prefix", affix = "Warlord's", "(18-22)% increased Spell Damage", statOrder = { 1135 }, level = 68, group = "SpellDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, }, + ["SpellDamageInfluence2"] = { type = "Prefix", affix = "Warlord's", "(23-26)% increased Spell Damage", statOrder = { 1135 }, level = 70, group = "SpellDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, }, + ["SpellDamageInfluence3"] = { type = "Prefix", affix = "Warlord's", "(27-30)% increased Spell Damage", statOrder = { 1135 }, level = 73, group = "SpellDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, }, + ["DamageOverTimeInfluence1_"] = { type = "Prefix", affix = "Warlord's", "(18-22)% increased Damage over Time", statOrder = { 1122 }, level = 68, group = "DegenerationDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, + ["DamageOverTimeInfluence2_"] = { type = "Prefix", affix = "Warlord's", "(23-26)% increased Damage over Time", statOrder = { 1122 }, level = 70, group = "DegenerationDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, + ["DamageOverTimeInfluence3"] = { type = "Prefix", affix = "Warlord's", "(27-30)% increased Damage over Time", statOrder = { 1122 }, level = 73, group = "DegenerationDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, + ["MeleeWeaponRangeInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+0.2 metres to Melee Strike Range", statOrder = { 2443 }, level = 82, group = "MeleeWeaponAndUnarmedRange", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack" }, }, + ["BlockPercentInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "(2-3)% Chance to Block Attack Damage", statOrder = { 1051 }, level = 68, group = "BlockPercent", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "block", "influence_mod" }, }, + ["BlockPercentInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(4-5)% Chance to Block Attack Damage", statOrder = { 1051 }, level = 80, group = "BlockPercent", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "block", "influence_mod" }, }, + ["CullingStrikeInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Culling Strike", statOrder = { 1948 }, level = 73, group = "CullingStrike", weightKey = { "gloves_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "bow_adjudicator", "default", }, weightVal = { 250, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, }, + ["FrenzyChargeOnKillInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(4-6)% chance to gain a Frenzy Charge on Kill", statOrder = { 2539 }, level = 68, group = "FrenzyChargeOnKillChance", weightKey = { "gloves_eyrie", "quiver_eyrie", "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "bow_eyrie", "default", }, weightVal = { 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 0 }, modTags = { "frenzy_charge", "influence_mod" }, }, + ["FrenzyChargeOnKillInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(7-10)% chance to gain a Frenzy Charge on Kill", statOrder = { 2539 }, level = 80, group = "FrenzyChargeOnKillChance", weightKey = { "gloves_eyrie", "quiver_eyrie", "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "bow_eyrie", "default", }, weightVal = { 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 0 }, modTags = { "frenzy_charge", "influence_mod" }, }, + ["AddedPhysicalDamageCritRecentlyInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Adds (4-5) to (6-8) Physical Damage if you've dealt a Critical Strike Recently", statOrder = { 9058 }, level = 68, group = "AddedPhysicalDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, }, + ["AddedPhysicalDamageCritRecentlyInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Adds (6-8) to (9-11) Physical Damage if you've dealt a Critical Strike Recently", statOrder = { 9058 }, level = 73, group = "AddedPhysicalDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, }, + ["AddedFireDamageCritRecentlyInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Adds (16-20) to (22-25) Fire Damage if you've dealt a Critical Strike Recently", statOrder = { 9046 }, level = 68, group = "AddedFireDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, + ["AddedFireDamageCritRecentlyInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Adds (20-25) to (26-35) Fire Damage if you've dealt a Critical Strike Recently", statOrder = { 9046 }, level = 73, group = "AddedFireDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, + ["AddedColdDamageCritRecentlyInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Adds (16-20) to (22-25) Cold Damage if you've dealt a Critical Strike Recently", statOrder = { 9041 }, level = 68, group = "AddedColdDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, }, + ["AddedColdDamageCritRecentlyInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Adds (20-25) to (26-35) Cold Damage if you've dealt a Critical Strike Recently", statOrder = { 9041 }, level = 73, group = "AddedColdDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, }, + ["AddedLightningDamageCritRecentlyInfluence1_"] = { type = "Prefix", affix = "Redeemer's", "Adds 1 to (41-47) Lightning Damage if you've dealt a Critical Strike Recently", statOrder = { 9052 }, level = 68, group = "AddedLightningDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, }, + ["AddedLightningDamageCritRecentlyInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Adds 1 to (48-60) Lightning Damage if you've dealt a Critical Strike Recently", statOrder = { 9052 }, level = 73, group = "AddedLightningDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, }, + ["MinionDamageInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Minions deal (18-22)% increased Damage", statOrder = { 1882 }, level = 68, group = "MinionDamage", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "minion" }, }, + ["MinionDamageInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Minions deal (23-26)% increased Damage", statOrder = { 1882 }, level = 70, group = "MinionDamage", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "minion" }, }, + ["MinionDamageInfluence3_"] = { type = "Prefix", affix = "Redeemer's", "Minions deal (27-30)% increased Damage", statOrder = { 1882 }, level = 73, group = "MinionDamage", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "minion" }, }, + ["IncreasedAccuracyPercentInfluence1"] = { type = "Suffix", affix = "of Redemption", "(12-15)% increased Global Accuracy Rating", statOrder = { 1345 }, level = 68, group = "IncreasedAccuracyPercent", weightKey = { "gloves_eyrie", "quiver_eyrie", "ring_eyrie", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "attack" }, }, + ["IncreasedAccuracyPercentInfluence2"] = { type = "Suffix", affix = "of Redemption", "(16-20)% increased Global Accuracy Rating", statOrder = { 1345 }, level = 80, group = "IncreasedAccuracyPercent", weightKey = { "gloves_eyrie", "quiver_eyrie", "ring_eyrie", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "attack" }, }, + ["GlobalChanceToBlindOnHitInfluence1__"] = { type = "Suffix", affix = "of Redemption", "(8-11)% Global chance to Blind Enemies on hit", statOrder = { 2867 }, level = 68, group = "GlobalChanceToBlindOnHit", weightKey = { "gloves_eyrie", "quiver_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod" }, }, + ["GlobalChanceToBlindOnHitInfluence2_"] = { type = "Suffix", affix = "of Redemption", "(12-15)% Global chance to Blind Enemies on hit", statOrder = { 2867 }, level = 80, group = "GlobalChanceToBlindOnHit", weightKey = { "gloves_eyrie", "quiver_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod" }, }, + ["AdditionalChanceToEvadeInfluence1"] = { type = "Suffix", affix = "of Redemption", "+(2-4)% chance to Evade Attack Hits", statOrder = { 5571 }, level = 75, group = "AdditionalChanceToEvade", weightKey = { "gloves_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "evasion" }, }, + ["ChanceToIntimidateOnHitInfluence1"] = { type = "Prefix", affix = "Hunter's", "(7-10)% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5612 }, level = 85, group = "ChanceToIntimidateOnHit", weightKey = { "gloves_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["ChanceToUnnerveOnHitInfluence1___"] = { type = "Prefix", affix = "Hunter's", "(7-10)% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5622 }, level = 85, group = "ChanceToUnnerveOnHit", weightKey = { "gloves_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["StrikeSkillsAdditionalTargetInfluence1"] = { type = "Prefix", affix = "Hunter's", "Non-Vaal Strike Skills target 1 additional nearby Enemy", statOrder = { 8996 }, level = 80, group = "StrikeSkillsAdditionalTarget", weightKey = { "gloves_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "attack" }, }, + ["ChanceToImpaleInfluence1"] = { type = "Prefix", affix = "Hunter's", "(13-16)% chance to Impale Enemies on Hit with Attacks", statOrder = { 4815 }, level = 68, group = "AttackImpaleChance", weightKey = { "gloves_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical", "attack" }, }, + ["ChanceToImpaleInfluence2"] = { type = "Prefix", affix = "Hunter's", "(17-20)% chance to Impale Enemies on Hit with Attacks", statOrder = { 4815 }, level = 80, group = "AttackImpaleChance", weightKey = { "gloves_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical", "attack" }, }, + ["AilmentDurationInfluence1_"] = { type = "Prefix", affix = "Hunter's", "(10-12)% increased Duration of Ailments on Enemies", statOrder = { 1771 }, level = 68, group = "IncreasedAilmentDuration", weightKey = { "gloves_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "ailment" }, }, + ["AilmentDurationInfluence2"] = { type = "Prefix", affix = "Hunter's", "(13-15)% increased Duration of Ailments on Enemies", statOrder = { 1771 }, level = 80, group = "IncreasedAilmentDuration", weightKey = { "gloves_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "ailment" }, }, + ["PercentageDexterityInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "(6-8)% increased Dexterity", statOrder = { 1097 }, level = 68, group = "PercentageDexterity", weightKey = { "gloves_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "attribute" }, }, + ["PercentageDexterityInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(9-10)% increased Dexterity", statOrder = { 1097 }, level = 75, group = "PercentageDexterity", weightKey = { "gloves_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "attribute" }, }, + ["FireDamageOverTimeMultiplierInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "+(11-15)% to Fire Damage over Time Multiplier", statOrder = { 1163 }, level = 68, group = "FireDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamageOverTimeMultiplierInfluence2"] = { type = "Suffix", affix = "of the Hunt", "+(16-20)% to Fire Damage over Time Multiplier", statOrder = { 1163 }, level = 80, group = "FireDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["ColdDamageOverTimeMultiplierInfluence1"] = { type = "Suffix", affix = "of the Hunt", "+(11-15)% to Cold Damage over Time Multiplier", statOrder = { 1168 }, level = 68, group = "ColdDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamageOverTimeMultiplierInfluence2__"] = { type = "Suffix", affix = "of the Hunt", "+(16-20)% to Cold Damage over Time Multiplier", statOrder = { 1168 }, level = 80, group = "ColdDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["ChaosDamageOverTimeMultiplierInfluence1"] = { type = "Suffix", affix = "of the Hunt", "+(11-15)% to Chaos Damage over Time Multiplier", statOrder = { 1171 }, level = 68, group = "ChaosDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["ChaosDamageOverTimeMultiplierInfluence2"] = { type = "Suffix", affix = "of the Hunt", "+(16-20)% to Chaos Damage over Time Multiplier", statOrder = { 1171 }, level = 80, group = "ChaosDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["PhysicalDamageOverTimeMultiplierInfluence1"] = { type = "Suffix", affix = "of the Hunt", "+(11-15)% to Physical Damage over Time Multiplier", statOrder = { 1159 }, level = 68, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, + ["PhysicalDamageOverTimeMultiplierInfluence2"] = { type = "Suffix", affix = "of the Hunt", "+(16-20)% to Physical Damage over Time Multiplier", statOrder = { 1159 }, level = 80, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, + ["MaximumLightningResistanceInfluence1"] = { type = "Prefix", affix = "Crusader's", "+1% to maximum Lightning Resistance", statOrder = { 1545 }, level = 75, group = "MaximumLightningResistance", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "resistance" }, }, + ["MaximumLightningResistanceInfluence2"] = { type = "Prefix", affix = "Crusader's", "+2% to maximum Lightning Resistance", statOrder = { 1545 }, level = 85, group = "MaximumLightningResistance", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "resistance" }, }, + ["MaximumLightningResistanceInfluence1New_"] = { type = "Suffix", affix = "of the Crusade", "+1% to maximum Lightning Resistance", statOrder = { 1545 }, level = 75, group = "MaximumLightningResistance", weightKey = { "helmet_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "elemental", "lightning", "resistance" }, }, + ["MaximumLightningResistanceInfluence2New_"] = { type = "Suffix", affix = "of the Crusade", "+2% to maximum Lightning Resistance", statOrder = { 1545 }, level = 85, group = "MaximumLightningResistance", weightKey = { "helmet_crusader", "default", }, weightVal = { 125, 0 }, modTags = { "influence_mod", "elemental", "lightning", "resistance" }, }, + ["MaximumManaInfluence1"] = { type = "Prefix", affix = "Crusader's", "(9-11)% increased maximum Mana", statOrder = { 1491 }, level = 68, group = "MaximumManaIncreasePercent", weightKey = { "helmet_crusader", "body_armour_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, + ["MaximumManaInfluence2_"] = { type = "Prefix", affix = "Crusader's", "(12-15)% increased maximum Mana", statOrder = { 1491 }, level = 80, group = "MaximumManaIncreasePercent", weightKey = { "helmet_crusader", "body_armour_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, + ["PhysTakenAsLightningHelmInfluence1"] = { type = "Prefix", affix = "Crusader's", "(4-6)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2358 }, level = 68, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "helmet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "lightning" }, }, + ["PhysTakenAsLightningHelmInfluence2"] = { type = "Prefix", affix = "Crusader's", "(7-10)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2358 }, level = 83, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "helmet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "lightning" }, }, + ["EnemyLightningResistanceAuraInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "Nearby Enemies have -9% to Lightning Resistance", statOrder = { 7768 }, level = 85, group = "NearbyEnemyLightningDamageResistance", weightKey = { "helmet_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "resistance" }, }, + ["SpellBlockPercentInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(3-4)% Chance to Block Spell Damage", statOrder = { 1072 }, level = 68, group = "SpellBlockPercentage", weightKey = { "helmet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "block", "influence_mod" }, }, + ["SpellBlockPercentInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(5-6)% Chance to Block Spell Damage", statOrder = { 1072 }, level = 80, group = "SpellBlockPercentage", weightKey = { "helmet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "block", "influence_mod" }, }, + ["FortifyEffectInfluence1"] = { type = "Suffix", affix = "of the Crusade", "+(3-4) to maximum Fortification", statOrder = { 8936 }, level = 75, group = "FortifyEffect", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, + ["FortifyEffectInfluence2"] = { type = "Suffix", affix = "of the Crusade", "+(4.2-5) to maximum Fortification", statOrder = { 8936 }, level = 80, group = "FortifyEffect", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, + ["EnergyShieldRegenInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Regenerate (1-1.5)% of Energy Shield per second", statOrder = { 2554 }, level = 75, group = "EnergyShieldRegenerationPerMinute", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, + ["ReducedIgniteDurationInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(31-35)% reduced Ignite Duration on you", statOrder = { 1786 }, level = 68, group = "ReducedBurnDuration", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "ailment" }, }, + ["ReducedIgniteDurationInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "(36-40)% reduced Ignite Duration on you", statOrder = { 1786 }, level = 70, group = "ReducedBurnDuration", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "ailment" }, }, + ["ReducedIgniteDurationInfluence3__"] = { type = "Suffix", affix = "of the Crusade", "(51-60)% reduced Ignite Duration on you", statOrder = { 1786 }, level = 75, group = "ReducedBurnDuration", weightKey = { "helmet_crusader", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "elemental", "fire", "ailment" }, }, + ["ReducedFreezeDurationInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(31-35)% reduced Freeze Duration on you", statOrder = { 1785 }, level = 68, group = "ReducedFreezeDuration", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, }, + ["ReducedFreezeDurationInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(36-40)% reduced Freeze Duration on you", statOrder = { 1785 }, level = 70, group = "ReducedFreezeDuration", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, }, + ["ReducedFreezeDurationInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(51-60)% reduced Freeze Duration on you", statOrder = { 1785 }, level = 75, group = "ReducedFreezeDuration", weightKey = { "helmet_crusader", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, }, + ["ReducedShockEffectInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "(31-35)% reduced Effect of Shock on you", statOrder = { 9803 }, level = 68, group = "ReducedShockEffectOnSelf", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, }, + ["ReducedShockEffectInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(36-40)% reduced Effect of Shock on you", statOrder = { 9803 }, level = 70, group = "ReducedShockEffectOnSelf", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, }, + ["ReducedShockEffectInfluence3_"] = { type = "Suffix", affix = "of the Crusade", "(51-60)% reduced Effect of Shock on you", statOrder = { 9803 }, level = 75, group = "ReducedShockEffectOnSelf", weightKey = { "helmet_crusader", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, }, + ["MaximumPowerChargeInfluence1"] = { type = "Prefix", affix = "Warlord's", "+1 to Maximum Power Charges", statOrder = { 1725 }, level = 75, group = "IncreasedMaximumPowerCharges", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 125, 0 }, modTags = { "power_charge", "influence_mod" }, }, + ["PhysTakenAsFireHelmetInfluence1"] = { type = "Prefix", affix = "Warlord's", "(4-6)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2356 }, level = 68, group = "PhysicalDamageTakenAsFireUber", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "fire" }, }, + ["PhysTakenAsFireHelmetInfluence2"] = { type = "Prefix", affix = "Warlord's", "(7-10)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2356 }, level = 83, group = "PhysicalDamageTakenAsFireUber", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "fire" }, }, + ["ElementalDamageInfluence1____"] = { type = "Prefix", affix = "Warlord's", "(12-14)% increased Elemental Damage", statOrder = { 1889 }, level = 68, group = "ElementalDamagePercent", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, }, + ["ElementalDamageInfluence2"] = { type = "Prefix", affix = "Warlord's", "(15-18)% increased Elemental Damage", statOrder = { 1889 }, level = 70, group = "ElementalDamagePercent", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, }, + ["ElementalDamageInfluence3"] = { type = "Prefix", affix = "Warlord's", "(19-22)% increased Elemental Damage", statOrder = { 1889 }, level = 75, group = "ElementalDamagePercent", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, }, + ["WarcryAreaOfEffectInfluence1_"] = { type = "Prefix", affix = "Warlord's", "Warcry Skills have (21-25)% increased Area of Effect", statOrder = { 10356 }, level = 68, group = "WarcryAreaOfEffect", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, + ["WarcryAreaOfEffectInfluence2"] = { type = "Prefix", affix = "Warlord's", "Warcry Skills have (26-30)% increased Area of Effect", statOrder = { 10356 }, level = 75, group = "WarcryAreaOfEffect", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, + ["EnemyFireResistanceAuraInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Nearby Enemies have -9% to Fire Resistance", statOrder = { 7766 }, level = 85, group = "NearbyEnemyFireDamageResistance", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "resistance" }, }, + ["CriticalStrikeMultiplierInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+(11-13)% to Global Critical Strike Multiplier", statOrder = { 1399 }, level = 68, group = "CriticalStrikeMultiplier", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "critical" }, }, + ["CriticalStrikeMultiplierInfluence2"] = { type = "Suffix", affix = "of the Conquest", "+(14-16)% to Global Critical Strike Multiplier", statOrder = { 1399 }, level = 70, group = "CriticalStrikeMultiplier", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "critical" }, }, + ["CriticalStrikeMultiplierInfluence3"] = { type = "Suffix", affix = "of the Conquest", "+(17-20)% to Global Critical Strike Multiplier", statOrder = { 1399 }, level = 75, group = "CriticalStrikeMultiplier", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "critical" }, }, + ["ManaRegenerationInfluence1__"] = { type = "Suffix", affix = "of the Conquest", "(41-55)% increased Mana Regeneration Rate", statOrder = { 1495 }, level = 68, group = "ManaRegeneration", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, + ["ManaRegenerationInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(56-70)% increased Mana Regeneration Rate", statOrder = { 1495 }, level = 75, group = "ManaRegeneration", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, + ["GainAccuracyEqualToStrengthInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Gain Accuracy Rating equal to your Strength", statOrder = { 6597 }, level = 75, group = "GainAccuracyEqualToStrength", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack" }, }, + ["MinionLifeInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "Minions have (21-26)% increased maximum Life", statOrder = { 1677 }, level = 68, group = "MinionLife", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life", "minion" }, }, + ["MinionLifeInfluence2"] = { type = "Suffix", affix = "of the Conquest", "Minions have (27-30)% increased maximum Life", statOrder = { 1677 }, level = 70, group = "MinionLife", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life", "minion" }, }, + ["MinionLifeInfluence3"] = { type = "Suffix", affix = "of the Conquest", "Minions have (31-35)% increased maximum Life", statOrder = { 1677 }, level = 75, group = "MinionLife", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life", "minion" }, }, + ["PowerChargeOnKillInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(4-6)% chance to gain a Power Charge on Kill", statOrder = { 2541 }, level = 68, group = "PowerChargeOnKillChance", weightKey = { "helmet_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "sceptre_eyrie", "wand_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 250, 250, 250, 250, 250, 250, 250, 250, 0 }, modTags = { "power_charge", "influence_mod" }, }, + ["PowerChargeOnKillInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(7-10)% chance to gain a Power Charge on Kill", statOrder = { 2541 }, level = 80, group = "PowerChargeOnKillChance", weightKey = { "helmet_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "sceptre_eyrie", "wand_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 250, 250, 250, 250, 250, 250, 250, 250, 0 }, modTags = { "power_charge", "influence_mod" }, }, + ["PhysTakenAsColdHelmetInfluence1__"] = { type = "Prefix", affix = "Redeemer's", "(4-6)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2357 }, level = 68, group = "PhysicalDamageTakenAsColdUber", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "cold" }, }, + ["PhysTakenAsColdHelmetInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(7-10)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2357 }, level = 83, group = "PhysicalDamageTakenAsColdUber", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "cold" }, }, + ["SpellsAdditionalUnleashSealInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Skills supported by Unleash have +1 to maximum number of Seals", statOrder = { 10494 }, level = 80, group = "SpellsAdditionalUnleashSeal", weightKey = { "helmet_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod" }, }, + ["EnemyColdResistanceAuraInfluence1__"] = { type = "Suffix", affix = "of Redemption", "Nearby Enemies have -9% to Cold Resistance", statOrder = { 7764 }, level = 85, group = "NearbyEnemyColdDamageResistance", weightKey = { "helmet_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "resistance" }, }, + ["ReducedManaReservationInfluence1"] = { type = "Suffix", affix = "of Redemption", "(4-6)% increased Mana Reservation Efficiency of Skills", statOrder = { 2141 }, level = 68, group = "ReducedReservation", weightKey = { "helmet_eyrie", "amulet_eyrie", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, + ["ManaReservationEfficiencyInfluence1___"] = { type = "Suffix", affix = "of Redemption", "(4-6)% increased Mana Reservation Efficiency of Skills", statOrder = { 2137 }, level = 68, group = "ManaReservationEfficiency", weightKey = { "helmet_eyrie", "amulet_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, + ["ReducedManaReservationInfluence2"] = { type = "Suffix", affix = "of Redemption", "(8-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 2141 }, level = 75, group = "ReducedReservation", weightKey = { "helmet_eyrie", "amulet_eyrie", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, + ["ManaReservationEfficiencyInfluence2"] = { type = "Suffix", affix = "of Redemption", "(7-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 2137 }, level = 75, group = "ManaReservationEfficiency", weightKey = { "helmet_eyrie", "amulet_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, + ["IgniteChanceAndDamageInfluence1__"] = { type = "Suffix", affix = "of Redemption", "(15-17)% increased Burning Damage", "(6-8)% chance to Ignite", statOrder = { 1788, 1935 }, level = 68, group = "IgniteChanceAndDamage", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, }, + ["IgniteChanceAndDamageInfluence2_"] = { type = "Suffix", affix = "of Redemption", "(18-20)% increased Burning Damage", "(6-8)% chance to Ignite", statOrder = { 1788, 1935 }, level = 75, group = "IgniteChanceAndDamage", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, }, + ["FreezeChanceAndDurationInfluence1____"] = { type = "Suffix", affix = "of Redemption", "(8-12)% increased Freeze Duration on Enemies", "(6-8)% chance to Freeze", statOrder = { 1769, 1938 }, level = 68, group = "FreezeChanceAndDuration", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, }, + ["FreezeChanceAndDurationInfluence2_"] = { type = "Suffix", affix = "of Redemption", "(13-15)% increased Freeze Duration on Enemies", "(6-8)% chance to Freeze", statOrder = { 1769, 1938 }, level = 75, group = "FreezeChanceAndDuration", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, }, + ["ShockChanceAndEffectInfluence1"] = { type = "Suffix", affix = "of Redemption", "(6-8)% chance to Shock", "(8-12)% increased Effect of Lightning Ailments", statOrder = { 1942, 7293 }, level = 68, group = "ShockChanceAndEffect", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, }, + ["ShockChanceAndEffectInfluence2"] = { type = "Suffix", affix = "of Redemption", "(6-8)% chance to Shock", "(13-15)% increased Effect of Lightning Ailments", statOrder = { 1942, 7293 }, level = 75, group = "ShockChanceAndEffect", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, }, + ["AddedManaRegenerationInfluence1"] = { type = "Suffix", affix = "of Redemption", "Regenerate (3-5) Mana per second", statOrder = { 1493 }, level = 68, group = "AddedManaRegeneration", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, + ["AddedManaRegenerationInfluence2__"] = { type = "Suffix", affix = "of Redemption", "Regenerate (6-8) Mana per second", statOrder = { 1493 }, level = 75, group = "AddedManaRegeneration", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, + ["SpellAddedFireDamageInfluence1_"] = { type = "Prefix", affix = "Hunter's", "Adds (17-22) to (33-39) Fire Damage to Spells", statOrder = { 1315 }, level = 68, group = "SpellAddedFireDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamageInfluence2_"] = { type = "Prefix", affix = "Hunter's", "Adds (21-28) to (42-49) Fire Damage to Spells", statOrder = { 1315 }, level = 70, group = "SpellAddedFireDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamageInfluence3_"] = { type = "Prefix", affix = "Hunter's", "Adds (25-34) to (51-59) Fire Damage to Spells", statOrder = { 1315 }, level = 75, group = "SpellAddedFireDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedColdDamageInfluence1_"] = { type = "Prefix", affix = "Hunter's", "Adds (14-18) to (27-32) Cold Damage to Spells", statOrder = { 1316 }, level = 68, group = "SpellAddedColdDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamageInfluence2"] = { type = "Prefix", affix = "Hunter's", "Adds (17-23) to (34-40) Cold Damage to Spells", statOrder = { 1316 }, level = 70, group = "SpellAddedColdDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamageInfluence3_"] = { type = "Prefix", affix = "Hunter's", "Adds (21-28) to (41-48) Cold Damage to Spells", statOrder = { 1316 }, level = 75, group = "SpellAddedColdDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedLightningDamageInfluence1"] = { type = "Prefix", affix = "Hunter's", "Adds (2-5) to (58-61) Lightning Damage to Spells", statOrder = { 1317 }, level = 68, group = "SpellAddedLightningDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamageInfluence2"] = { type = "Prefix", affix = "Hunter's", "Adds (2-6) to (73-77) Lightning Damage to Spells", statOrder = { 1317 }, level = 70, group = "SpellAddedLightningDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamageInfluence3"] = { type = "Prefix", affix = "Hunter's", "Adds (2-7) to (88-93) Lightning Damage to Spells", statOrder = { 1317 }, level = 75, group = "SpellAddedLightningDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedPhysicalDamageInfluence1__"] = { type = "Prefix", affix = "Hunter's", "Adds (17-22) to (33-39) Physical Damage to Spells", statOrder = { 1314 }, level = 68, group = "SpellAddedPhysicalDamage", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["SpellAddedPhysicalDamageInfluence2"] = { type = "Prefix", affix = "Hunter's", "Adds (21-28) to (42-49) Physical Damage to Spells", statOrder = { 1314 }, level = 70, group = "SpellAddedPhysicalDamage", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["SpellAddedPhysicalDamageInfluence3"] = { type = "Prefix", affix = "Hunter's", "Adds (25-34) to (51-59) Physical Damage to Spells", statOrder = { 1314 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["SpellAddedChaosDamageInfluence1"] = { type = "Prefix", affix = "Hunter's", "Adds (14-18) to (27-32) Chaos Damage to Spells", statOrder = { 1318 }, level = 68, group = "SpellAddedChaosDamage", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["SpellAddedChaosDamageInfluence2"] = { type = "Prefix", affix = "Hunter's", "Adds (17-23) to (34-40) Chaos Damage to Spells", statOrder = { 1318 }, level = 70, group = "SpellAddedChaosDamage", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["SpellAddedChaosDamageInfluence3"] = { type = "Prefix", affix = "Hunter's", "Adds (21-28) to (41-48) Chaos Damage to Spells", statOrder = { 1318 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["EnemyChaosResistanceAuraInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "Nearby Enemies have -9% to Chaos Resistance", statOrder = { 7763 }, level = 85, group = "NearbyEnemyChaosDamageResistance", weightKey = { "helmet_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "chaos_damage", "damage", "chaos", "resistance" }, }, + ["PercentageIntelligenceInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "(6-8)% increased Intelligence", statOrder = { 1098 }, level = 68, group = "PercentageIntelligence", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "attribute" }, }, + ["PercentageIntelligenceInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(9-10)% increased Intelligence", statOrder = { 1098 }, level = 75, group = "PercentageIntelligence", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "attribute" }, }, + ["IgnitingConfluxInfluence1"] = { type = "Suffix", affix = "of the Hunt", "You have Igniting Conflux for 3 seconds every 8 seconds", statOrder = { 6706 }, level = 80, group = "SingleConflux", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["ChillingConfluxInfluence1__"] = { type = "Suffix", affix = "of the Hunt", "You have Chilling Conflux for 3 seconds every 8 seconds", statOrder = { 6706 }, level = 80, group = "SingleConflux", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["ShockingConfluxInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "You have Shocking Conflux for 3 seconds every 8 seconds", statOrder = { 6706 }, level = 80, group = "SingleConflux", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["PhysTakenAsLightningInfluence1"] = { type = "Prefix", affix = "Crusader's", "(8-12)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2358 }, level = 68, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "body_armour_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "lightning" }, }, + ["PhysTakenAsLightningInfluence2"] = { type = "Prefix", affix = "Crusader's", "(13-15)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2358 }, level = 83, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "body_armour_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "lightning" }, }, + ["ConsecratedGroundStationaryInfluence1_"] = { type = "Prefix", affix = "Crusader's", "You have Consecrated Ground around you while stationary", statOrder = { 5754 }, level = 75, group = "ConsecratedGroundStationary", weightKey = { "body_armour_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, + ["HolyPhysicalExplosionInfluence1"] = { type = "Prefix", affix = "Crusader's", "Enemies you Kill Explode, dealing 3% of their Life as Physical Damage", statOrder = { 6263 }, level = 85, group = "EnemiesExplodeOnDeathPhysical", weightKey = { "body_armour_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, }, + ["HolyPhysicalExplosionChanceInfluence1"] = { type = "Prefix", affix = "Crusader's", "Enemies you Kill have a (11-20)% chance to Explode, dealing a tenth of their maximum Life as Physical Damage", statOrder = { 3212 }, level = 75, group = "EnemiesExplodeOnDeathPhysicalChance", weightKey = { "body_armour_crusader", "default", }, weightVal = { 100, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, }, + ["HolyPhysicalExplosionChanceInfluence2_"] = { type = "Prefix", affix = "Crusader's", "Enemies you Kill have a (21-30)% chance to Explode, dealing a tenth of their maximum Life as Physical Damage", statOrder = { 3212 }, level = 85, group = "EnemiesExplodeOnDeathPhysicalChance", weightKey = { "body_armour_crusader", "default", }, weightVal = { 25, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, }, + ["PercentageIntelligenceBodyInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(5-8)% increased Intelligence", statOrder = { 1098 }, level = 68, group = "PercentageIntelligence", weightKey = { "body_armour_crusader", "amulet_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "attribute" }, }, + ["PercentageIntelligenceBodyInfluence2___"] = { type = "Suffix", affix = "of the Crusade", "(9-12)% increased Intelligence", statOrder = { 1098 }, level = 75, group = "PercentageIntelligence", weightKey = { "body_armour_crusader", "amulet_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "attribute" }, }, + ["AddPowerChargeOnCritInfluence1"] = { type = "Suffix", affix = "of the Crusade", "15% chance to gain a Power Charge on Critical Strike", statOrder = { 1741 }, level = 80, group = "PowerChargeOnCriticalStrikeChance", weightKey = { "body_armour_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "power_charge", "influence_mod", "critical" }, }, + ["EnergyShieldOnKillPercentInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "Recover (3-4)% of Energy Shield on Kill", statOrder = { 1661 }, level = 68, group = "MaximumEnergyShieldOnKillPercent", weightKey = { "body_armour_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, + ["EnergyShieldOnKillPercentInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "Recover (5-6)% of Energy Shield on Kill", statOrder = { 1661 }, level = 80, group = "MaximumEnergyShieldOnKillPercent", weightKey = { "body_armour_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, + ["EnergyShieldRecoveryRateBodyInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(8-11)% increased Energy Shield Recovery rate", statOrder = { 1479 }, level = 68, group = "EnergyShieldRecoveryRate", weightKey = { "body_armour_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, + ["EnergyShieldRecoveryRateBodyInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(12-15)% increased Energy Shield Recovery rate", statOrder = { 1479 }, level = 80, group = "EnergyShieldRecoveryRate", weightKey = { "body_armour_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, + ["PhysTakenAsFireInfluence1"] = { type = "Prefix", affix = "Warlord's", "(8-12)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2356 }, level = 68, group = "PhysicalDamageTakenAsFireUber", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "fire" }, }, + ["PhysTakenAsFireInfluence2"] = { type = "Prefix", affix = "Warlord's", "(13-15)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2356 }, level = 83, group = "PhysicalDamageTakenAsFireUber", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "fire" }, }, + ["SocketedActiveGemLevelInfluence1"] = { type = "Prefix", affix = "Warlord's", "+1 to Level of Socketed Skill Gems", statOrder = { 170 }, level = 80, group = "LocalIncreaseSocketedActiveSkillGemLevel", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "gem" }, }, + ["ReflectedPhysicalDamageInfluence1__"] = { type = "Prefix", affix = "Warlord's", "You and your Minions take 100% reduced Reflected Physical Damage", statOrder = { 9458 }, level = 75, group = "ReducedPhysicalReflectTaken", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical" }, }, + ["AllResistancesInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+(10-12)% to all Elemental Resistances", statOrder = { 1530 }, level = 68, group = "AllResistances", weightKey = { "body_armour_adjudicator", "belt_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "elemental", "resistance" }, }, + ["AllResistancesInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "+(13-15)% to all Elemental Resistances", statOrder = { 1530 }, level = 70, group = "AllResistances", weightKey = { "body_armour_adjudicator", "belt_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "elemental", "resistance" }, }, + ["AllResistancesInfluence3_"] = { type = "Suffix", affix = "of the Conquest", "+(16-18)% to all Elemental Resistances", statOrder = { 1530 }, level = 75, group = "AllResistances", weightKey = { "body_armour_adjudicator", "belt_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "elemental", "resistance" }, }, + ["PercentageStrengthBodyInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(5-8)% increased Strength", statOrder = { 1096 }, level = 68, group = "PercentageStrength", weightKey = { "body_armour_adjudicator", "amulet_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "attribute" }, }, + ["PercentageStrengthBodyInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "(9-12)% increased Strength", statOrder = { 1096 }, level = 75, group = "PercentageStrength", weightKey = { "body_armour_adjudicator", "amulet_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "attribute" }, }, + ["EnduranceChargeIfHitRecentlyInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Gain 1 Endurance Charge every second if you've been Hit Recently", statOrder = { 6631 }, level = 80, group = "EnduranceChargeIfHitRecently", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 250, 0 }, modTags = { "endurance_charge", "influence_mod" }, }, + ["LifeOnKillPercentInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "Recover (3-4)% of Life on Kill", statOrder = { 1660 }, level = 68, group = "MaximumLifeOnKillPercent", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life" }, }, + ["LifeOnKillPercentInfluence2"] = { type = "Suffix", affix = "of the Conquest", "Recover (5-6)% of Life on Kill", statOrder = { 1660 }, level = 80, group = "MaximumLifeOnKillPercent", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life" }, }, + ["LifeRecoveryRateBodyInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(8-11)% increased Life Recovery rate", statOrder = { 1489 }, level = 68, group = "LifeRecoveryRate", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life" }, }, + ["LifeRecoveryRateBodyInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(12-15)% increased Life Recovery rate", statOrder = { 1489 }, level = 80, group = "LifeRecoveryRate", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life" }, }, + ["SocketedAttacksManaCostInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Socketed Attacks have -15 to Total Mana Cost", statOrder = { 476 }, level = 85, group = "SocketedAttacksManaCost", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "skill", "resource", "influence_mod", "mana", "attack", "gem" }, }, + ["PhysTakenAsColdInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(8-12)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2357 }, level = 68, group = "PhysicalDamageTakenAsColdUber", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "cold" }, }, + ["PhysTakenAsColdInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(13-15)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2357 }, level = 83, group = "PhysicalDamageTakenAsColdUber", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "cold" }, }, + ["SocketedSupportGemLevelInfluence1"] = { type = "Prefix", affix = "Redeemer's", "+1 to Level of Socketed Support Gems", statOrder = { 169 }, level = 80, group = "LocalIncreaseSocketedSupportGemLevel", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "gem" }, }, + ["ReflectedElementalDamageInfluence1"] = { type = "Prefix", affix = "Redeemer's", "You and your Minions take 100% reduced Reflected Elemental Damage", statOrder = { 6228 }, level = 75, group = "ReducedElementalReflectTaken", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "elemental" }, }, + ["NearbyEnemiesAreBlindedInfluence1_"] = { type = "Prefix", affix = "Redeemer's", "Nearby Enemies are Blinded", statOrder = { 3304 }, level = 75, group = "NearbyEnemiesAreBlinded", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, + ["PercentageDexterityBodyInfluence1"] = { type = "Suffix", affix = "of Redemption", "(5-8)% increased Dexterity", statOrder = { 1097 }, level = 68, group = "PercentageDexterity", weightKey = { "body_armour_eyrie", "amulet_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "attribute" }, }, + ["PercentageDexterityBodyInfluence2"] = { type = "Suffix", affix = "of Redemption", "(9-12)% increased Dexterity", statOrder = { 1097 }, level = 75, group = "PercentageDexterity", weightKey = { "body_armour_eyrie", "amulet_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "attribute" }, }, + ["FrenzyChargeOnHitChanceInfluence1"] = { type = "Suffix", affix = "of Redemption", "10% chance to gain a Frenzy Charge on Hit", statOrder = { 1744 }, level = 80, group = "FrenzyChargeOnHitChance", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "frenzy_charge", "influence_mod" }, }, + ["ManaOnKillPercentInfluence1"] = { type = "Suffix", affix = "of Redemption", "Recover (3-4)% of Mana on Kill", statOrder = { 1662 }, level = 68, group = "MaximumManaOnKillPercent", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, + ["ManaOnKillPercentInfluence2"] = { type = "Suffix", affix = "of Redemption", "Recover (5-6)% of Mana on Kill", statOrder = { 1662 }, level = 80, group = "MaximumManaOnKillPercent", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, + ["ManaRecoveryRateBodyInfluence1_"] = { type = "Suffix", affix = "of Redemption", "(8-11)% increased Mana Recovery rate", statOrder = { 1497 }, level = 68, group = "ManaRecoveryRate", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, + ["ManaRecoveryRateBodyInfluence2"] = { type = "Suffix", affix = "of Redemption", "(12-15)% increased Mana Recovery rate", statOrder = { 1497 }, level = 80, group = "ManaRecoveryRate", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, + ["AuraEffectBodyInfluence1"] = { type = "Suffix", affix = "of Redemption", "(15-20)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3474 }, level = 75, group = "AuraEffect", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "aura" }, }, + ["AuraEffectBodyInfluence2"] = { type = "Suffix", affix = "of Redemption", "(21-25)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3474 }, level = 80, group = "AuraEffect", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "aura" }, }, + ["MaximumLifeBodyInfluence1"] = { type = "Prefix", affix = "Hunter's", "(5-8)% increased maximum Life", statOrder = { 1482 }, level = 68, group = "MaximumLifeIncreasePercent", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, }, + ["MaximumLifeBodyInfluence2_"] = { type = "Prefix", affix = "Hunter's", "(9-12)% increased maximum Life", statOrder = { 1482 }, level = 85, group = "MaximumLifeIncreasePercent", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, }, + ["PhysTakenAsChaosInfluence1_"] = { type = "Prefix", affix = "Hunter's", "(8-12)% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2360 }, level = 75, group = "PhysicalDamageTakenAsChaosUber", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysTakenAsChaosInfluence2"] = { type = "Prefix", affix = "Hunter's", "(13-15)% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2360 }, level = 83, group = "PhysicalDamageTakenAsChaosUber", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical", "chaos" }, }, + ["AdditionalCurseOnEnemiesInfluence1"] = { type = "Prefix", affix = "Hunter's", "You can apply an additional Curse", statOrder = { 2077 }, level = 82, group = "AdditionalCurseOnEnemies", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "caster", "curse" }, }, + ["RegenerateLifeOver1SecondInfluence1"] = { type = "Prefix", affix = "Hunter's", "Every 4 seconds, Regenerate 15% of Life over one second", statOrder = { 3694 }, level = 80, group = "RegenerateLifeOver1Second", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life" }, }, + ["OfferingEffectInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "(16-20)% increased effect of Offerings", statOrder = { 3971 }, level = 68, group = "OfferingEffect", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["OfferingEffectInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(21-25)% increased effect of Offerings", statOrder = { 3971 }, level = 80, group = "OfferingEffect", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AdditionalCritWithAttacksInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "Attacks have +(0.5-1)% to Critical Strike Chance", statOrder = { 4691 }, level = 68, group = "AdditionalCriticalStrikeChanceWithAttacks", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "attack", "critical" }, }, + ["AdditionalCritWithAttacksInfluence2_"] = { type = "Suffix", affix = "of the Hunt", "Attacks have +(1.1-1.5)% to Critical Strike Chance", statOrder = { 4691 }, level = 84, group = "AdditionalCriticalStrikeChanceWithAttacks", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "attack", "critical" }, }, + ["AdditionalCritWithSpellsInfluence1"] = { type = "Suffix", affix = "of the Hunt", "+(0.5-1)% to Spell Critical Strike Chance", statOrder = { 9909 }, level = 68, group = "AdditionalCriticalStrikeChanceWithSpells", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "caster", "critical" }, }, + ["AdditionalCritWithSpellsInfluence2"] = { type = "Suffix", affix = "of the Hunt", "+(1.1-1.5)% to Spell Critical Strike Chance", statOrder = { 9909 }, level = 84, group = "AdditionalCriticalStrikeChanceWithSpells", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "caster", "critical" }, }, + ["LifeRegenerationPercentBodyInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Regenerate (1-1.5)% of Life per second", statOrder = { 1853 }, level = 68, group = "LifeRegenerationRatePercentage", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "life" }, }, + ["LifeRegenerationPercentBodyInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Regenerate (1.6-2)% of Life per second", statOrder = { 1853 }, level = 75, group = "LifeRegenerationRatePercentage", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "life" }, }, + ["MaximumLightningResistanceHighInfluence1"] = { type = "Prefix", affix = "Crusader's", "+1% to maximum Lightning Resistance", statOrder = { 1545 }, level = 75, group = "MaximumLightningResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["MaximumLightningResistanceHighInfluence2"] = { type = "Prefix", affix = "Crusader's", "+2% to maximum Lightning Resistance", statOrder = { 1545 }, level = 80, group = "MaximumLightningResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["MaximumLightningResistanceHighInfluence3_"] = { type = "Prefix", affix = "Crusader's", "+3% to maximum Lightning Resistance", statOrder = { 1545 }, level = 86, group = "MaximumLightningResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["DamagePerBlockChanceInfluence1"] = { type = "Prefix", affix = "Crusader's", "1% increased Damage per 1% Chance to Block Attack Damage", statOrder = { 5954 }, level = 68, group = "DamagePerBlockChance", weightKey = { "shield_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, + ["MinimumPowerChargeInfluence1"] = { type = "Suffix", affix = "of the Crusade", "+1 to Minimum Power Charges", statOrder = { 1724 }, level = 68, group = "MinimumPowerCharges", weightKey = { "shield_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "power_charge", "influence_mod" }, }, + ["MinimumPowerChargeInfluence2"] = { type = "Suffix", affix = "of the Crusade", "+2 to Minimum Power Charges", statOrder = { 1724 }, level = 80, group = "MinimumPowerCharges", weightKey = { "shield_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "power_charge", "influence_mod" }, }, + ["RecoverEnergyShieldPercentOnBlockInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Recover (3-5)% of Energy Shield when you Block", statOrder = { 2376 }, level = 68, group = "RecoverEnergyShieldPercentOnBlock", weightKey = { "shield_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "block", "influence_mod", "defences", "energy_shield" }, }, + ["EnergyShieldRegenHighInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Regenerate (1.5-2.5)% of Energy Shield per second", statOrder = { 2554 }, level = 75, group = "EnergyShieldRegenerationPerMinute", weightKey = { "shield_crusader", "amulet_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, + ["ChanceToChillAttackersOnBlockInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(25-40)% chance to Chill Attackers for 4 seconds on Block", statOrder = { 5663 }, level = 68, group = "ChanceToChillAttackersOnBlock", weightKey = { "shield_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "red_herring", "influence_mod", "elemental", "cold", "ailment" }, }, + ["ChanceToChillAttackersOnBlockInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(41-50)% chance to Chill Attackers for 4 seconds on Block", statOrder = { 5663 }, level = 75, group = "ChanceToChillAttackersOnBlock", weightKey = { "shield_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "red_herring", "influence_mod", "elemental", "cold", "ailment" }, }, + ["ChanceToShockAttackersOnBlockInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "(25-40)% chance to Shock Attackers for 4 seconds on Block", statOrder = { 9789 }, level = 68, group = "ChanceToShockAttackersOnBlock", weightKey = { "shield_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "influence_mod", "elemental", "lightning", "ailment" }, }, + ["ChanceToShockAttackersOnBlockInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(41-50)% chance to Shock Attackers for 4 seconds on Block", statOrder = { 9789 }, level = 75, group = "ChanceToShockAttackersOnBlock", weightKey = { "shield_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "influence_mod", "elemental", "lightning", "ailment" }, }, + ["SpellBlockIfBlockedSpellsInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "+(7-9)% Chance to Block Spell Damage if you have Blocked Spell Damage Recently", statOrder = { 9917 }, level = 68, group = "SpellBlockIfBlockedSpellRecently", weightKey = { "shield_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "block", "influence_mod" }, }, + ["SpellBlockIfBlockedSpellsInfluence2"] = { type = "Suffix", affix = "of the Crusade", "+(10-12)% Chance to Block Spell Damage if you have Blocked Spell Damage Recently", statOrder = { 9917 }, level = 75, group = "SpellBlockIfBlockedSpellRecently", weightKey = { "shield_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "block", "influence_mod" }, }, + ["WarcryBuffEffectInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(18-21)% increased Warcry Buff Effect", statOrder = { 10348 }, level = 68, group = "WarcryEffect", weightKey = { "shield_crusader", "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, }, + ["WarcryBuffEffectInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(22-25)% increased Warcry Buff Effect", statOrder = { 10348 }, level = 75, group = "WarcryEffect", weightKey = { "shield_crusader", "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, }, + ["MaximumFireResistanceHighInfluence1__"] = { type = "Prefix", affix = "Warlord's", "+1% to maximum Fire Resistance", statOrder = { 1534 }, level = 75, group = "MaximumFireResist", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["MaximumFireResistanceHighInfluence2__"] = { type = "Prefix", affix = "Warlord's", "+2% to maximum Fire Resistance", statOrder = { 1534 }, level = 80, group = "MaximumFireResist", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["MaximumFireResistanceHighInfluence3"] = { type = "Prefix", affix = "Warlord's", "+3% to maximum Fire Resistance", statOrder = { 1534 }, level = 86, group = "MaximumFireResist", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["AreaOfEffectInfluence1"] = { type = "Prefix", affix = "Warlord's", "(7-9)% increased Area of Effect", statOrder = { 1791 }, level = 68, group = "AreaOfEffect", weightKey = { "shield_adjudicator", "quiver_adjudicator", "ring_adjudicator", "amulet_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, }, + ["AreaOfEffectInfluence2"] = { type = "Prefix", affix = "Warlord's", "(10-12)% increased Area of Effect", statOrder = { 1791 }, level = 75, group = "AreaOfEffect", weightKey = { "shield_adjudicator", "quiver_adjudicator", "ring_adjudicator", "amulet_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, }, + ["AreaOfEffectInfluence3"] = { type = "Prefix", affix = "Warlord's", "(13-15)% increased Area of Effect", statOrder = { 1791 }, level = 80, group = "AreaOfEffect", weightKey = { "shield_adjudicator", "quiver_adjudicator", "ring_adjudicator", "amulet_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, }, + ["MinimumEnduranceChargeInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+1 to Minimum Endurance Charges", statOrder = { 1714 }, level = 68, group = "MinimumEnduranceCharges", weightKey = { "shield_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "endurance_charge", "influence_mod" }, }, + ["MinimumEnduranceChargeInfluence2"] = { type = "Suffix", affix = "of the Conquest", "+2 to Minimum Endurance Charges", statOrder = { 1714 }, level = 80, group = "MinimumEnduranceCharges", weightKey = { "shield_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "endurance_charge", "influence_mod" }, }, + ["RecoverLifePercentOnBlockInfluence1__"] = { type = "Suffix", affix = "of the Conquest", "Recover (3-5)% of Life when you Block", statOrder = { 2968 }, level = 68, group = "RecoverLifePercentOnBlock", weightKey = { "shield_adjudicator", "default", }, weightVal = { 250, 0 }, modTags = { "block", "resource", "influence_mod", "life" }, }, + ["AttackBlockIfBlockedAttacksInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+(5-6)% Chance to Block Attack Damage if you have Blocked Attack Damage Recently", statOrder = { 5124 }, level = 68, group = "AttackBlockIfBlockedAttackRecently", weightKey = { "shield_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "block", "influence_mod" }, }, + ["AttackBlockIfBlockedAttacksInfluence2"] = { type = "Suffix", affix = "of the Conquest", "+(7-8)% Chance to Block Attack Damage if you have Blocked Attack Damage Recently", statOrder = { 5124 }, level = 75, group = "AttackBlockIfBlockedAttackRecently", weightKey = { "shield_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "block", "influence_mod" }, }, + ["AdditionalPhysicalDamageReductionHighInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(3-5)% additional Physical Damage Reduction", statOrder = { 2182 }, level = 75, group = "ReducedPhysicalDamageTaken", weightKey = { "shield_adjudicator", "amulet_adjudicator", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "physical" }, }, + ["MaximumColdResistanceHighInfluence1"] = { type = "Prefix", affix = "Redeemer's", "+1% to maximum Cold Resistance", statOrder = { 1540 }, level = 75, group = "MaximumColdResist", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["MaximumColdResistanceHighInfluence2"] = { type = "Prefix", affix = "Redeemer's", "+2% to maximum Cold Resistance", statOrder = { 1540 }, level = 80, group = "MaximumColdResist", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["MaximumColdResistanceHighInfluence3__"] = { type = "Prefix", affix = "Redeemer's", "+3% to maximum Cold Resistance", statOrder = { 1540 }, level = 86, group = "MaximumColdResist", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["EnergyShieldDelayHighInfluence1__"] = { type = "Prefix", affix = "Redeemer's", "(16-20)% faster start of Energy Shield Recharge", statOrder = { 1473 }, level = 68, group = "EnergyShieldDelay", weightKey = { "shield_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, + ["EnergyShieldDelayHighInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(21-25)% faster start of Energy Shield Recharge", statOrder = { 1473 }, level = 75, group = "EnergyShieldDelay", weightKey = { "shield_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, + ["EnergyShieldDelayHighInfluence3"] = { type = "Prefix", affix = "Redeemer's", "(26-30)% faster start of Energy Shield Recharge", statOrder = { 1473 }, level = 80, group = "EnergyShieldDelay", weightKey = { "shield_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, + ["WeaponElementalDamageInfluence1__"] = { type = "Prefix", affix = "Redeemer's", "(26-30)% increased Elemental Damage with Attack Skills", statOrder = { 6215 }, level = 68, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "shield_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "attack" }, }, + ["WeaponElementalDamageInfluence2_"] = { type = "Prefix", affix = "Redeemer's", "(31-35)% increased Elemental Damage with Attack Skills", statOrder = { 6215 }, level = 75, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "shield_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "attack" }, }, + ["WeaponElementalDamageInfluence3_"] = { type = "Prefix", affix = "Redeemer's", "(36-40)% increased Elemental Damage with Attack Skills", statOrder = { 6215 }, level = 80, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "shield_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "attack" }, }, + ["MinimumFrenzyChargeInfluence1"] = { type = "Suffix", affix = "of Redemption", "+1 to Minimum Frenzy Charges", statOrder = { 1719 }, level = 68, group = "MinimumFrenzyCharges", weightKey = { "shield_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "frenzy_charge", "influence_mod" }, }, + ["MinimumFrenzyChargeInfluence2"] = { type = "Suffix", affix = "of Redemption", "+2 to Minimum Frenzy Charges", statOrder = { 1719 }, level = 80, group = "MinimumFrenzyCharges", weightKey = { "shield_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "frenzy_charge", "influence_mod" }, }, + ["RecoverManaPercentOnBlockInfluence1_"] = { type = "Suffix", affix = "of Redemption", "Recover (3-5)% of your maximum Mana when you Block", statOrder = { 8019 }, level = 68, group = "RecoverManaPercentOnBlock", weightKey = { "shield_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "block", "resource", "influence_mod", "mana" }, }, + ["AdditionalChanceToEvadeHighInfluence1"] = { type = "Suffix", affix = "of Redemption", "+(3-5)% chance to Evade Attack Hits", statOrder = { 5571 }, level = 75, group = "AdditionalChanceToEvade", weightKey = { "shield_eyrie", "amulet_eyrie", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "defences", "evasion" }, }, + ["AvoidPhysicalDamageInfluence1"] = { type = "Suffix", affix = "of Redemption", "(5-7)% chance to Avoid Physical Damage from Hits", statOrder = { 3279 }, level = 68, group = "PhysicalDamageAvoidance", weightKey = { "shield_eyrie", "quiver_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "physical" }, }, + ["AvoidPhysicalDamageInfluence2"] = { type = "Suffix", affix = "of Redemption", "(8-10)% chance to Avoid Physical Damage from Hits", statOrder = { 3279 }, level = 80, group = "PhysicalDamageAvoidance", weightKey = { "shield_eyrie", "quiver_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "physical" }, }, + ["CurseEffectivenessInfluence1_"] = { type = "Suffix", affix = "of Redemption", "(8-11)% increased Effect of your Curses", statOrder = { 2505 }, level = 73, group = "CurseEffectiveness", weightKey = { "shield_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, + ["CurseEffectivenessInfluence2"] = { type = "Suffix", affix = "of Redemption", "(8-12)% increased Effect of your Curses", statOrder = { 2505 }, level = 80, group = "CurseEffectiveness", weightKey = { "shield_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, + ["AuraEffectInfluence1_"] = { type = "Suffix", affix = "of Redemption", "(5-7)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3474 }, level = 73, group = "AuraEffect", weightKey = { "shield_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "aura" }, }, + ["AuraEffectInfluence2"] = { type = "Suffix", affix = "of Redemption", "(8-10)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3474 }, level = 80, group = "AuraEffect", weightKey = { "shield_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "aura" }, }, + ["IncreasedAilmentEffectLowInfluence1"] = { type = "Suffix", affix = "of Redemption", "(15-20)% increased Effect of Non-Damaging Ailments", statOrder = { 9296 }, level = 68, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "shield_eyrie", "quiver_eyrie", "ring_eyrie", "amulet_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod", "ailment" }, }, + ["IncreasedAilmentEffectLowInfluence2_"] = { type = "Suffix", affix = "of Redemption", "(21-25)% increased Effect of Non-Damaging Ailments", statOrder = { 9296 }, level = 75, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "shield_eyrie", "quiver_eyrie", "ring_eyrie", "amulet_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod", "ailment" }, }, + ["MaximumResistancesInfluence1"] = { type = "Prefix", affix = "Hunter's", "+1% to all maximum Resistances", statOrder = { 1553 }, level = 80, group = "MaximumResistances", weightKey = { "shield_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resistance" }, }, + ["MaximumResistancesInfluence2"] = { type = "Prefix", affix = "Hunter's", "+2% to all maximum Resistances", statOrder = { 1553 }, level = 85, group = "MaximumResistances", weightKey = { "shield_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resistance" }, }, + ["MaximumChaosResistanceHighInfluence1"] = { type = "Prefix", affix = "Hunter's", "+1% to maximum Chaos Resistance", statOrder = { 1551 }, level = 75, group = "MaximumChaosResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "resistance" }, }, + ["MaximumChaosResistanceHighInfluence2"] = { type = "Prefix", affix = "Hunter's", "+2% to maximum Chaos Resistance", statOrder = { 1551 }, level = 80, group = "MaximumChaosResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "resistance" }, }, + ["MaximumChaosResistanceHighInfluence3"] = { type = "Prefix", affix = "Hunter's", "+3% to maximum Chaos Resistance", statOrder = { 1551 }, level = 86, group = "MaximumChaosResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "resistance" }, }, + ["MaximumLifeInfluence1"] = { type = "Prefix", affix = "Hunter's", "(3-6)% increased maximum Life", statOrder = { 1482 }, level = 68, group = "MaximumLifeIncreasePercent", weightKey = { "shield_basilisk", "belt_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "life" }, }, + ["MaximumLifeInfluence2"] = { type = "Prefix", affix = "Hunter's", "(7-10)% increased maximum Life", statOrder = { 1482 }, level = 84, group = "MaximumLifeIncreasePercent", weightKey = { "shield_basilisk", "belt_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "life" }, }, + ["NoExtraDamageFromBleedMovingInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Moving while Bleeding doesn't cause you to take extra Damage", statOrder = { 3100 }, level = 75, group = "NoExtraDamageFromBleedMoving", weightKey = { "shield_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["GainRandomChargeOnBlockInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Gain an Endurance, Frenzy or Power charge when you Block", statOrder = { 6697 }, level = 68, group = "GainRandomChargeOnBlock", weightKey = { "shield_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "block", "endurance_charge", "frenzy_charge", "power_charge" }, }, + ["SocketedGemsReducedReservationInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Socketed Gems have 20% increased Reservation Efficiency", statOrder = { 455 }, level = 68, group = "DisplaySocketedGemsGetReducedReservation", weightKey = { "shield_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "skill", "gem" }, }, + ["SocketedGemsReducedReservationInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Socketed Gems have 30% increased Reservation Efficiency", statOrder = { 455 }, level = 80, group = "DisplaySocketedGemsGetReducedReservation", weightKey = { "shield_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "skill", "gem" }, }, + ["DegenDamageTakenInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "(4-6)% reduced Damage taken from Damage Over Time", statOrder = { 2154 }, level = 68, group = "DegenDamageTaken", weightKey = { "shield_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, }, + ["DegenDamageTakenInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(7-10)% reduced Damage taken from Damage Over Time", statOrder = { 2154 }, level = 80, group = "DegenDamageTaken", weightKey = { "shield_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, }, + ["LifeRegenerationPercentHighInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "Regenerate (1.1-1.5)% of Life per second", statOrder = { 1853 }, level = 68, group = "LifeRegenerationRatePercentage", weightKey = { "shield_basilisk", "amulet_basilisk", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, }, + ["LifeRegenerationPercentHighInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Regenerate (1.6-2)% of Life per second", statOrder = { 1853 }, level = 80, group = "LifeRegenerationRatePercentage", weightKey = { "shield_basilisk", "amulet_basilisk", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, }, + ["PhysicalAddedAsExtraLightningInfluence1"] = { type = "Prefix", affix = "Crusader's", "Gain (5-10)% of Physical Damage as Extra Lightning Damage", statOrder = { 1843 }, level = 68, group = "PhysicalAddedAsLightning", weightKey = { "quiver_crusader", "amulet_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, }, + ["PhysicalAddedAsExtraLightningInfluence2"] = { type = "Prefix", affix = "Crusader's", "Gain (11-15)% of Physical Damage as Extra Lightning Damage", statOrder = { 1843 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "quiver_crusader", "amulet_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, }, + ["AdditionalArrowInfluence1"] = { type = "Prefix", affix = "Warlord's", "Bow Attacks fire an additional Arrow", statOrder = { 1705 }, level = 80, group = "AdditionalArrows", weightKey = { "quiver_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack" }, }, + ["PhysicalAddedAsExtraFireInfluence1_"] = { type = "Prefix", affix = "Warlord's", "Gain (5-10)% of Physical Damage as Extra Fire Damage", statOrder = { 1841 }, level = 68, group = "PhysicalAddedAsFire", weightKey = { "quiver_adjudicator", "amulet_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, }, + ["PhysicalAddedAsExtraFireInfluence2_____"] = { type = "Prefix", affix = "Warlord's", "Gain (11-15)% of Physical Damage as Extra Fire Damage", statOrder = { 1841 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "quiver_adjudicator", "amulet_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, }, + ["MaimOnHitInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Attacks have 15% chance to Maim on Hit", statOrder = { 7987 }, level = 68, group = "GlobalMaimOnHit", weightKey = { "quiver_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack" }, }, + ["MaimOnHitInfluence2___"] = { type = "Suffix", affix = "of the Conquest", "Attacks have 20% chance to Maim on Hit", statOrder = { 7987 }, level = 75, group = "GlobalMaimOnHit", weightKey = { "quiver_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack" }, }, + ["ChancetoGainPhasingOnKillInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "(5-6)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3373 }, level = 68, group = "ChancetoGainPhasingOnKill", weightKey = { "quiver_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, + ["ChancetoGainPhasingOnKillInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(7-8)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3373 }, level = 70, group = "ChancetoGainPhasingOnKill", weightKey = { "quiver_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, + ["ChancetoGainPhasingOnKillInfluence3"] = { type = "Suffix", affix = "of the Conquest", "(9-10)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3373 }, level = 73, group = "ChancetoGainPhasingOnKill", weightKey = { "quiver_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, + ["BleedOnHitDamageInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "Attacks have 10% chance to cause Bleeding", "(15-25)% increased Damage with Bleeding", statOrder = { 2398, 3077 }, level = 68, group = "BleedOnHitAndDamage", weightKey = { "quiver_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment" }, }, + ["BleedOnHitDamageInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "Attacks have 15% chance to cause Bleeding", "(26-30)% increased Damage with Bleeding", statOrder = { 2398, 3077 }, level = 75, group = "BleedOnHitAndDamage", weightKey = { "quiver_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment" }, }, + ["PhysicalAddedAsExtraColdInfluence1_"] = { type = "Prefix", affix = "Redeemer's", "Gain (5-10)% of Physical Damage as Extra Cold Damage", statOrder = { 1842 }, level = 68, group = "PhysicalAddedAsCold", weightKey = { "quiver_eyrie", "amulet_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, }, + ["PhysicalAddedAsExtraColdInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Gain (11-15)% of Physical Damage as Extra Cold Damage", statOrder = { 1842 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "quiver_eyrie", "amulet_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, }, + ["MovementVelocityExtraInfluence1"] = { type = "Prefix", affix = "Hunter's", "(3-6)% increased Movement Speed", statOrder = { 1709 }, level = 75, group = "MovementVelocity", weightKey = { "quiver_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "speed" }, }, + ["MovementVelocityExtraInfluence2__"] = { type = "Prefix", affix = "Hunter's", "(7-10)% increased Movement Speed", statOrder = { 1709 }, level = 80, group = "MovementVelocity", weightKey = { "quiver_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "speed" }, }, + ["ManaGainPerTargetInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Gain (3-5) Mana per Enemy Hit with Attacks", statOrder = { 1655 }, level = 68, group = "ManaGainPerTarget", weightKey = { "gloves_basilisk", "quiver_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "mana", "attack" }, }, + ["ChaosDamageOverTimeMultiplierQuiverInfluence1__"] = { type = "Suffix", affix = "of the Hunt", "+(16-20)% to Chaos Damage over Time Multiplier with Attack Skills", statOrder = { 1173 }, level = 68, group = "ChaosDamageOverTimeMultiplierWithAttacks", weightKey = { "quiver_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos", "attack" }, }, + ["ChaosDamageOverTimeMultiplierQuiverInfluence2"] = { type = "Suffix", affix = "of the Hunt", "+(21-25)% to Chaos Damage over Time Multiplier with Attack Skills", statOrder = { 1173 }, level = 80, group = "ChaosDamageOverTimeMultiplierWithAttacks", weightKey = { "quiver_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos", "attack" }, }, + ["PhysicalDamageOverTimeMultiplierQuiverInfluence1__"] = { type = "Suffix", affix = "of the Hunt", "+(16-20)% to Physical Damage over Time Multiplier with Attack Skills", statOrder = { 1162 }, level = 68, group = "PhysicalDamageOverTimeMultiplierWithAttacks", weightKey = { "quiver_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical", "attack" }, }, + ["PhysicalDamageOverTimeMultiplierQuiverInfluence2"] = { type = "Suffix", affix = "of the Hunt", "+(21-25)% to Physical Damage over Time Multiplier with Attack Skills", statOrder = { 1162 }, level = 80, group = "PhysicalDamageOverTimeMultiplierWithAttacks", weightKey = { "quiver_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical", "attack" }, }, + ["FireDamageOverTimeMultiplierQuiverInfluence1"] = { type = "Suffix", affix = "of the Hunt", "+(16-20)% to Fire Damage over Time Multiplier with Attack Skills", statOrder = { 1165 }, level = 68, group = "FireDamageOverTimeMultiplierWithAttacks", weightKey = { "quiver_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["FireDamageOverTimeMultiplierQuiverInfluence2"] = { type = "Suffix", affix = "of the Hunt", "+(21-25)% to Fire Damage over Time Multiplier with Attack Skills", statOrder = { 1165 }, level = 80, group = "FireDamageOverTimeMultiplierWithAttacks", weightKey = { "quiver_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["PoisonOnHitDamageInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "15% chance to Poison on Hit", "(15-25)% increased Damage with Poison", statOrder = { 3081, 3089 }, level = 68, group = "PoisonOnHitAndDamage", weightKey = { "quiver_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["PoisonOnHitDamageInfluence2"] = { type = "Suffix", affix = "of the Hunt", "20% chance to Poison on Hit", "(26-30)% increased Damage with Poison", statOrder = { 3081, 3089 }, level = 75, group = "PoisonOnHitAndDamage", weightKey = { "quiver_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["GlobalEnergyShieldPercentInfluence1"] = { type = "Prefix", affix = "Crusader's", "(7-9)% increased maximum Energy Shield", statOrder = { 1472 }, level = 68, group = "GlobalEnergyShieldPercent", weightKey = { "belt_crusader", "ring_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, + ["GlobalEnergyShieldPercentInfluence2"] = { type = "Prefix", affix = "Crusader's", "(10-12)% increased maximum Energy Shield", statOrder = { 1472 }, level = 78, group = "GlobalEnergyShieldPercent", weightKey = { "belt_crusader", "ring_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, + ["GlobalEnergyShieldPercentInfluence3"] = { type = "Prefix", affix = "Crusader's", "(13-15)% increased maximum Energy Shield", statOrder = { 1472 }, level = 82, group = "GlobalEnergyShieldPercent", weightKey = { "belt_crusader", "ring_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, + ["CriticalStrikeChanceShockedEnemiesInfluence1"] = { type = "Prefix", affix = "Crusader's", "(30-34)% increased Critical Strike Chance against Shocked Enemies", statOrder = { 5810 }, level = 68, group = "CritChanceShockedEnemies", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "critical" }, }, + ["CriticalStrikeChanceShockedEnemiesInfluence2"] = { type = "Prefix", affix = "Crusader's", "(35-39)% increased Critical Strike Chance against Shocked Enemies", statOrder = { 5810 }, level = 75, group = "CritChanceShockedEnemies", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "critical" }, }, + ["CriticalStrikeChanceShockedEnemiesInfluence3__"] = { type = "Prefix", affix = "Crusader's", "(40-45)% increased Critical Strike Chance against Shocked Enemies", statOrder = { 5810 }, level = 80, group = "CritChanceShockedEnemies", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "critical" }, }, + ["LightningDamageInfluence1__"] = { type = "Prefix", affix = "Crusader's", "(16-20)% increased Lightning Damage", statOrder = { 1288 }, level = 68, group = "LightningDamagePercentagePrefix", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, }, + ["LightningDamageInfluence2"] = { type = "Prefix", affix = "Crusader's", "(21-25)% increased Lightning Damage", statOrder = { 1288 }, level = 75, group = "LightningDamagePercentagePrefix", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, }, + ["LightningDamageInfluence3_"] = { type = "Prefix", affix = "Crusader's", "(26-30)% increased Lightning Damage", statOrder = { 1288 }, level = 80, group = "LightningDamagePercentagePrefix", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, }, + ["FortifyOnMeleeStunInfluence1"] = { type = "Prefix", affix = "Crusader's", "Melee Hits which Stun have (8-12)% chance to Fortify", statOrder = { 5576 }, level = 68, group = "FortifyOnMeleeStun", weightKey = { "belt_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod" }, }, + ["CooldownRecoveryHighInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(10-15)% increased Cooldown Recovery Rate", statOrder = { 4899 }, level = 75, group = "GlobalCooldownRecovery", weightKey = { "belt_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod" }, }, + ["CooldownRecoveryHighInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(16-20)% increased Cooldown Recovery Rate", statOrder = { 4899 }, level = 84, group = "GlobalCooldownRecovery", weightKey = { "belt_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod" }, }, + ["SpellDamageDuringFlaskEffectInfluence1__"] = { type = "Suffix", affix = "of the Crusade", "(20-25)% increased Spell Damage during any Flask Effect", statOrder = { 9932 }, level = 68, group = "SpellDamageDuringFlaskEffect", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "caster_damage", "influence_mod", "damage", "caster" }, }, + ["SpellDamageDuringFlaskEffectInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(26-30)% increased Spell Damage during any Flask Effect", statOrder = { 9932 }, level = 75, group = "SpellDamageDuringFlaskEffect", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "caster_damage", "influence_mod", "damage", "caster" }, }, + ["SpellDamageDuringFlaskEffectInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(31-35)% increased Spell Damage during any Flask Effect", statOrder = { 9932 }, level = 80, group = "SpellDamageDuringFlaskEffect", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "caster_damage", "influence_mod", "damage", "caster" }, }, + ["EnergyShieldRecoveryRateInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(7-9)% increased Energy Shield Recovery rate", statOrder = { 1479 }, level = 68, group = "EnergyShieldRecoveryRate", weightKey = { "belt_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, + ["EnergyShieldRecoveryRateInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(10-12)% increased Energy Shield Recovery rate", statOrder = { 1479 }, level = 75, group = "EnergyShieldRecoveryRate", weightKey = { "belt_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, + ["RemoveShockOnFlaskUseInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Remove Shock when you use a Flask", statOrder = { 9703 }, level = 75, group = "RemoveShockOnFlaskUse", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "influence_mod", "elemental", "lightning", "ailment" }, }, + ["GlobalArmourPercentInfluence1"] = { type = "Prefix", affix = "Warlord's", "(7-9)% increased Armour", statOrder = { 1452 }, level = 68, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "belt_adjudicator", "ring_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "defences", "armour" }, }, + ["GlobalArmourPercentInfluence2___"] = { type = "Prefix", affix = "Warlord's", "(10-12)% increased Armour", statOrder = { 1452 }, level = 78, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "belt_adjudicator", "ring_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "defences", "armour" }, }, + ["GlobalArmourPercentInfluence3"] = { type = "Prefix", affix = "Warlord's", "(13-15)% increased Armour", statOrder = { 1452 }, level = 82, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "belt_adjudicator", "ring_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "defences", "armour" }, }, + ["FireDamageBurningEnemiesInfluence1"] = { type = "Prefix", affix = "Warlord's", "(22-27) to (41-46) added Fire Damage against Burning Enemies", statOrder = { 10105 }, level = 68, group = "AddedFireBurningEnemies", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, + ["FireDamageBurningEnemiesInfluence2"] = { type = "Prefix", affix = "Warlord's", "(28-32) to (47-51) added Fire Damage against Burning Enemies", statOrder = { 10105 }, level = 75, group = "AddedFireBurningEnemies", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, + ["FireDamageBurningEnemiesInfluence3"] = { type = "Prefix", affix = "Warlord's", "(33-39) to (52-55) added Fire Damage against Burning Enemies", statOrder = { 10105 }, level = 80, group = "AddedFireBurningEnemies", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, + ["FireDamageInfluence1_"] = { type = "Prefix", affix = "Warlord's", "(16-20)% increased Fire Damage", statOrder = { 1268 }, level = 68, group = "FireDamagePercentagePrefix", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, + ["FireDamageInfluence2"] = { type = "Prefix", affix = "Warlord's", "(21-25)% increased Fire Damage", statOrder = { 1268 }, level = 75, group = "FireDamagePercentagePrefix", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, + ["FireDamageInfluence3"] = { type = "Prefix", affix = "Warlord's", "(26-30)% increased Fire Damage", statOrder = { 1268 }, level = 80, group = "FireDamagePercentagePrefix", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, + ["ReducedCriticalStrikeDamageTakenInfluence1"] = { type = "Prefix", affix = "Warlord's", "You take (15-20)% reduced Extra Damage from Critical Strikes", statOrder = { 1423 }, level = 68, group = "ReducedCriticalStrikeDamageTaken", weightKey = { "belt_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "critical" }, }, + ["ReducedCriticalStrikeDamageTakenInfluence2_"] = { type = "Prefix", affix = "Warlord's", "You take (21-30)% reduced Extra Damage from Critical Strikes", statOrder = { 1423 }, level = 75, group = "ReducedCriticalStrikeDamageTaken", weightKey = { "belt_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "critical" }, }, + ["AllDamageInfluence1"] = { type = "Prefix", affix = "Warlord's", "(11-15)% increased Damage", statOrder = { 1103 }, level = 75, group = "AllDamage", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, + ["AllDamageInfluence2___"] = { type = "Prefix", affix = "Warlord's", "(16-20)% increased Damage", statOrder = { 1103 }, level = 80, group = "AllDamage", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, + ["AllDamageInfluence3"] = { type = "Prefix", affix = "Warlord's", "(21-25)% increased Damage", statOrder = { 1103 }, level = 85, group = "AllDamage", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, + ["MeleeDamageDuringFlaskEffectInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(20-25)% increased Melee Damage during any Flask Effect", statOrder = { 9002 }, level = 68, group = "MeleeDamageDuringFlaskEffect", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, }, + ["MeleeDamageDuringFlaskEffectInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(26-30)% increased Melee Damage during any Flask Effect", statOrder = { 9002 }, level = 75, group = "MeleeDamageDuringFlaskEffect", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, }, + ["MeleeDamageDuringFlaskEffectInfluence3"] = { type = "Suffix", affix = "of the Conquest", "(31-35)% increased Melee Damage during any Flask Effect", statOrder = { 9002 }, level = 80, group = "MeleeDamageDuringFlaskEffect", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, }, + ["LifeRecoveryRateInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(7-9)% increased Life Recovery rate", statOrder = { 1489 }, level = 68, group = "LifeRecoveryRate", weightKey = { "belt_adjudicator", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "influence_mod", "life" }, }, + ["LifeRecoveryRateInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(10-12)% increased Life Recovery rate", statOrder = { 1489 }, level = 75, group = "LifeRecoveryRate", weightKey = { "belt_adjudicator", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "influence_mod", "life" }, }, + ["RemoveIgniteOnFlaskUseInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Remove Ignite and Burning when you use a Flask", statOrder = { 9694 }, level = 75, group = "RemoveIgniteOnFlaskUse", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "influence_mod", "elemental", "fire", "ailment" }, }, + ["GlobalEvasionPercentInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(7-9)% increased Evasion Rating", statOrder = { 1460 }, level = 68, group = "GlobalEvasionRatingPercent", weightKey = { "belt_eyrie", "ring_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "defences", "evasion" }, }, + ["GlobalEvasionPercentInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(10-12)% increased Evasion Rating", statOrder = { 1460 }, level = 78, group = "GlobalEvasionRatingPercent", weightKey = { "belt_eyrie", "ring_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "defences", "evasion" }, }, + ["GlobalEvasionPercentInfluence3_"] = { type = "Prefix", affix = "Redeemer's", "(13-15)% increased Evasion Rating", statOrder = { 1460 }, level = 82, group = "GlobalEvasionRatingPercent", weightKey = { "belt_eyrie", "ring_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "defences", "evasion" }, }, + ["DamageChilledEnemiesInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(26-30)% increased Damage with Hits against Chilled Enemies", statOrder = { 5965 }, level = 68, group = "DamageChilledEnemies", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, + ["DamageChilledEnemiesInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(31-35)% increased Damage with Hits against Chilled Enemies", statOrder = { 5965 }, level = 75, group = "DamageChilledEnemies", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, + ["DamageChilledEnemiesInfluence3"] = { type = "Prefix", affix = "Redeemer's", "(36-40)% increased Damage with Hits against Chilled Enemies", statOrder = { 5965 }, level = 80, group = "DamageChilledEnemies", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, + ["FlaskEffectInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Flasks applied to you have (4-7)% increased Effect", statOrder = { 2652 }, level = 75, group = "FlaskEffect", weightKey = { "belt_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "influence_mod" }, }, + ["FlaskEffectInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Flasks applied to you have (8-10)% increased Effect", statOrder = { 2652 }, level = 81, group = "FlaskEffect", weightKey = { "belt_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "influence_mod" }, }, + ["ColdDamageInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(16-20)% increased Cold Damage", statOrder = { 1277 }, level = 68, group = "ColdDamagePercentagePrefix", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, }, + ["ColdDamageInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(21-25)% increased Cold Damage", statOrder = { 1277 }, level = 75, group = "ColdDamagePercentagePrefix", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, }, + ["ColdDamageInfluence3"] = { type = "Prefix", affix = "Redeemer's", "(26-30)% increased Cold Damage", statOrder = { 1277 }, level = 80, group = "ColdDamagePercentagePrefix", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, }, + ["AttackSpeedDuringFlaskEffectInfluence1"] = { type = "Suffix", affix = "of Redemption", "(8-14)% increased Attack Speed during any Flask Effect", statOrder = { 3208 }, level = 68, group = "AttackSpeedDuringFlaskEffect", weightKey = { "belt_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "flask", "influence_mod", "attack", "speed" }, }, + ["ProjectileAttackDamageDuringFlaskEffectInfluence1__"] = { type = "Suffix", affix = "of Redemption", "(20-25)% increased Projectile Attack Damage during any Flask Effect", statOrder = { 9516 }, level = 68, group = "ProjectileAttackDamageDuringFlaskEffect", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, }, + ["ProjectileAttackDamageDuringFlaskEffectInfluence2_"] = { type = "Suffix", affix = "of Redemption", "(26-30)% increased Projectile Attack Damage during any Flask Effect", statOrder = { 9516 }, level = 75, group = "ProjectileAttackDamageDuringFlaskEffect", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, }, + ["ProjectileAttackDamageDuringFlaskEffectInfluence3"] = { type = "Suffix", affix = "of Redemption", "(31-35)% increased Projectile Attack Damage during any Flask Effect", statOrder = { 9516 }, level = 80, group = "ProjectileAttackDamageDuringFlaskEffect", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, }, + ["ManaRecoveryRateInfluence1"] = { type = "Suffix", affix = "of Redemption", "(7-9)% increased Mana Recovery rate", statOrder = { 1497 }, level = 68, group = "ManaRecoveryRate", weightKey = { "belt_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, + ["ManaRecoveryRateInfluence2__"] = { type = "Suffix", affix = "of Redemption", "(10-12)% increased Mana Recovery rate", statOrder = { 1497 }, level = 75, group = "ManaRecoveryRate", weightKey = { "belt_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, + ["RemoveFreezeOnFlaskUseInfluence1"] = { type = "Suffix", affix = "of Redemption", "Remove Chill and Freeze when you use a Flask", statOrder = { 9690 }, level = 75, group = "RemoveFreezeOnFlaskUse", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "influence_mod", "elemental", "cold", "ailment" }, }, + ["FlaskChanceToNotConsumeChargesInfluence1"] = { type = "Prefix", affix = "Hunter's", "(6-10)% chance for Flasks you use to not consume Charges", statOrder = { 4137 }, level = 80, group = "FlaskChanceToNotConsumeCharges", weightKey = { "belt_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "flask" }, }, + ["FlaskChargeOnCritInfluence1"] = { type = "Prefix", affix = "Hunter's", "Gain a Flask Charge when you deal a Critical Strike", statOrder = { 3299 }, level = 75, group = "FlaskChargeOnCrit", weightKey = { "belt_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "flask", "critical" }, }, + ["ChaosDamageInfluence1"] = { type = "Prefix", affix = "Hunter's", "(16-20)% increased Chaos Damage", statOrder = { 1296 }, level = 68, group = "IncreasedChaosDamagePrefix", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["ChaosDamageInfluence2_"] = { type = "Prefix", affix = "Hunter's", "(21-25)% increased Chaos Damage", statOrder = { 1296 }, level = 75, group = "IncreasedChaosDamagePrefix", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["ChaosDamageInfluence3"] = { type = "Prefix", affix = "Hunter's", "(26-30)% increased Chaos Damage", statOrder = { 1296 }, level = 80, group = "IncreasedChaosDamagePrefix", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["PercentageAllAttributesInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(6-9)% increased Attributes", statOrder = { 1095 }, level = 68, group = "PercentageAllAttributes", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "attribute" }, }, + ["PercentageAllAttributesInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(10-12)% increased Attributes", statOrder = { 1095 }, level = 75, group = "PercentageAllAttributes", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "attribute" }, }, + ["CastSpeedDuringFlaskEffectInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(8-14)% increased Cast Speed during any Flask Effect", statOrder = { 5358 }, level = 68, group = "CastSpeedDuringFlaskEffect", weightKey = { "belt_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "flask", "caster", "speed" }, }, + ["ArmourPenetrationInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Hits have (30-39)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7037 }, level = 68, group = "ChanceToIgnoreEnemyArmour", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical" }, }, + ["ArmourPenetrationInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Hits have (40-50)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7037 }, level = 75, group = "ChanceToIgnoreEnemyArmour", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical" }, }, + ["MovementSpeedDuringFlaskEffectInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(6-10)% increased Movement Speed during any Flask Effect", statOrder = { 3094 }, level = 81, group = "MovementSpeedDuringFlaskEffect", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "speed" }, }, + ["PhysicalAttackDamageTakenInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "-(35-25) Physical Damage taken from Attack Hits", statOrder = { 2143 }, level = 68, group = "PhysicalAttackDamageTaken", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical", "attack" }, }, + ["PhysicalAttackDamageTakenInfluence2"] = { type = "Suffix", affix = "of the Hunt", "-(45-36) Physical Damage taken from Attack Hits", statOrder = { 2143 }, level = 75, group = "PhysicalAttackDamageTaken", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical", "attack" }, }, + ["ChanceToShockAddedDamageInfluence1"] = { type = "Prefix", affix = "Crusader's", "Adds (3-7) to (68-73) Lightning Damage against Shocked Enemies", statOrder = { 6762 }, level = 68, group = "ChanceToShockAddedDamage", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "ailment" }, }, + ["ChanceToShockAddedDamageInfluence2"] = { type = "Prefix", affix = "Crusader's", "Adds (4-8) to (82-86) Lightning Damage against Shocked Enemies", statOrder = { 6762 }, level = 75, group = "ChanceToShockAddedDamage", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "ailment" }, }, + ["AddedLightningDamagePerPowerChargeInfluence1__"] = { type = "Prefix", affix = "Crusader's", "1 to (6-8) Lightning Damage per Power Charge", statOrder = { 9053 }, level = 75, group = "GlobalAddedLightningDamagePerPowerCharge", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, }, + ["AddedLightningDamagePerPowerChargeInfluence2"] = { type = "Prefix", affix = "Crusader's", "(1-2) to (9-11) Lightning Damage per Power Charge", statOrder = { 9053 }, level = 80, group = "GlobalAddedLightningDamagePerPowerCharge", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, }, + ["SpellDamageRingInfluence1_"] = { type = "Prefix", affix = "Crusader's", "(15-17)% increased Spell Damage", statOrder = { 1135 }, level = 68, group = "SpellDamage", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, }, + ["SpellDamageRingInfluence2_"] = { type = "Prefix", affix = "Crusader's", "(18-21)% increased Spell Damage", statOrder = { 1135 }, level = 75, group = "SpellDamage", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, }, + ["SpellDamageRingInfluence3__"] = { type = "Prefix", affix = "Crusader's", "(22-25)% increased Spell Damage", statOrder = { 1135 }, level = 80, group = "SpellDamage", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, }, + ["IncreasedLifeLeechRateInfluence1"] = { type = "Prefix", affix = "Crusader's", "(35-40)% increased total Recovery per second from Life Leech", statOrder = { 2066 }, level = 68, group = "IncreasedLifeLeechRate", weightKey = { "ring_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life" }, }, + ["IncreasedLifeLeechRateInfluence2"] = { type = "Prefix", affix = "Crusader's", "(41-45)% increased total Recovery per second from Life Leech", statOrder = { 2066 }, level = 75, group = "IncreasedLifeLeechRate", weightKey = { "ring_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life" }, }, + ["IncreasedLifeLeechRateInfluence3"] = { type = "Prefix", affix = "Crusader's", "(46-50)% increased total Recovery per second from Life Leech", statOrder = { 2066 }, level = 80, group = "IncreasedLifeLeechRate", weightKey = { "ring_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life" }, }, + ["IncreasedLifeLeechRateSuffixInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(35-40)% increased total Recovery per second from Life Leech", statOrder = { 2066 }, level = 68, group = "IncreasedLifeLeechRate", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life" }, }, + ["IncreasedLifeLeechRateSuffixInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(41-45)% increased total Recovery per second from Life Leech", statOrder = { 2066 }, level = 75, group = "IncreasedLifeLeechRate", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life" }, }, + ["IncreasedLifeLeechRateSuffixInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(46-50)% increased total Recovery per second from Life Leech", statOrder = { 2066 }, level = 80, group = "IncreasedLifeLeechRate", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life" }, }, + ["ReducedCurseEffectInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(25-29)% reduced Effect of Curses on you", statOrder = { 2079 }, level = 68, group = "ReducedCurseEffect", weightKey = { "ring_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, + ["ReducedCurseEffectInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "(35-40)% reduced Effect of Curses on you", statOrder = { 2079 }, level = 75, group = "ReducedCurseEffect", weightKey = { "ring_crusader", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, + ["CurseOnHitConductivityInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Curse Enemies with Conductivity on Hit", statOrder = { 2436 }, level = 75, group = "ConductivityOnHitLevel", weightKey = { "ring_crusader", "default", }, weightVal = { 200, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, + ["CurseOnHitConductivityInfluence2___"] = { type = "Suffix", affix = "of the Crusade", "Curse Enemies with Conductivity on Hit", statOrder = { 2436 }, level = 80, group = "ConductivityOnHitLevel", weightKey = { "ring_crusader", "default", }, weightVal = { 200, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, + ["LifeGainedOnSpellHitInfluence1"] = { type = "Prefix", affix = "Crusader's", "Gain (8-12) Life per Enemy Hit with Spells", statOrder = { 1650 }, level = 68, group = "LifeGainedOnSpellHit", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life", "caster" }, }, + ["LifeGainedOnSpellHitInfluence2"] = { type = "Prefix", affix = "Crusader's", "Gain (13-15) Life per Enemy Hit with Spells", statOrder = { 1650 }, level = 75, group = "LifeGainedOnSpellHit", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life", "caster" }, }, + ["GlobalCriticalStrikeChanceRingInfluence1___"] = { type = "Suffix", affix = "of the Crusade", "(15-17)% increased Global Critical Strike Chance", statOrder = { 1370 }, level = 68, group = "CriticalStrikeChance", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "critical" }, }, + ["GlobalCriticalStrikeChanceRingInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(18-21)% increased Global Critical Strike Chance", statOrder = { 1370 }, level = 75, group = "CriticalStrikeChance", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "critical" }, }, + ["GlobalCriticalStrikeChanceRingInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(22-25)% increased Global Critical Strike Chance", statOrder = { 1370 }, level = 80, group = "CriticalStrikeChance", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "critical" }, }, + ["ChanceToIgniteAddedDamageInfluence1"] = { type = "Prefix", affix = "Warlord's", "Adds (19-26) to (38-46) Fire Damage against Ignited Enemies", statOrder = { 6760 }, level = 68, group = "ChanceToIgniteAddedDamage", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, }, + ["ChanceToIgniteAddedDamageInfluence2"] = { type = "Prefix", affix = "Warlord's", "Adds (23-30) to (47-54) Fire Damage against Ignited Enemies", statOrder = { 6760 }, level = 75, group = "ChanceToIgniteAddedDamage", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, }, + ["AddedFireDamagePerEnduranceChargeInfluence1"] = { type = "Prefix", affix = "Warlord's", "(2-3) to (4-5) Fire Damage per Endurance Charge", statOrder = { 9048 }, level = 75, group = "GlobalAddedFireDamagePerEnduranceCharge", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, + ["AddedFireDamagePerEnduranceChargeInfluence2__"] = { type = "Prefix", affix = "Warlord's", "(3-4) to (6-7) Fire Damage per Endurance Charge", statOrder = { 9048 }, level = 80, group = "GlobalAddedFireDamagePerEnduranceCharge", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, + ["MeleeDamageRingInfluence1"] = { type = "Prefix", affix = "Warlord's", "(15-17)% increased Melee Damage", statOrder = { 1146 }, level = 68, group = "MeleeDamage", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, }, + ["MeleeDamageRingInfluence2"] = { type = "Prefix", affix = "Warlord's", "(18-21)% increased Melee Damage", statOrder = { 1146 }, level = 75, group = "MeleeDamage", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, }, + ["MeleeDamageRingInfluence3"] = { type = "Prefix", affix = "Warlord's", "(22-25)% increased Melee Damage", statOrder = { 1146 }, level = 80, group = "MeleeDamage", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, }, + ["CurseOnHitFlammabilityInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Curse Enemies with Flammability on Hit", statOrder = { 2439 }, level = 75, group = "FlammabilityOnHitLevel", weightKey = { "ring_adjudicator", "default", }, weightVal = { 200, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, + ["CurseOnHitFlammabilityInfluence2"] = { type = "Suffix", affix = "of the Conquest", "Curse Enemies with Flammability on Hit", statOrder = { 2439 }, level = 80, group = "FlammabilityOnHitLevel", weightKey = { "ring_adjudicator", "default", }, weightVal = { 200, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, + ["CurseOnHitVulnerabilityInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Curse Enemies with Vulnerability on Hit", statOrder = { 2432 }, level = 75, group = "CurseOnHitLevelVulnerabilityMod", weightKey = { "ring_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, + ["CurseOnHitVulnerabilityInfluence2"] = { type = "Suffix", affix = "of the Conquest", "Curse Enemies with Vulnerability on Hit", statOrder = { 2432 }, level = 80, group = "CurseOnHitLevelVulnerabilityMod", weightKey = { "ring_adjudicator", "default", }, weightVal = { 200, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, + ["CriticalStrikeMultiplierRingInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+(14-16)% to Global Critical Strike Multiplier", statOrder = { 1399 }, level = 68, group = "CriticalStrikeMultiplier", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "critical" }, }, + ["CriticalStrikeMultiplierRingInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "+(17-19)% to Global Critical Strike Multiplier", statOrder = { 1399 }, level = 75, group = "CriticalStrikeMultiplier", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "critical" }, }, + ["CriticalStrikeMultiplierRingInfluence3_"] = { type = "Suffix", affix = "of the Conquest", "+(20-22)% to Global Critical Strike Multiplier", statOrder = { 1399 }, level = 80, group = "CriticalStrikeMultiplier", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "critical" }, }, + ["BleedDamageAndDurationInfluence1__"] = { type = "Suffix", affix = "of the Conquest", "(8-12)% increased Damage with Bleeding", "(5-6)% increased Bleeding Duration", statOrder = { 3077, 4888 }, level = 68, group = "BleedDamageAndDuration", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment" }, }, + ["BleedDamageAndDurationInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "(13-17)% increased Damage with Bleeding", "(7-8)% increased Bleeding Duration", statOrder = { 3077, 4888 }, level = 75, group = "BleedDamageAndDuration", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment" }, }, + ["BleedDamageAndDurationInfluence3"] = { type = "Suffix", affix = "of the Conquest", "(18-22)% increased Damage with Bleeding", "(9-10)% increased Bleeding Duration", statOrder = { 3077, 4888 }, level = 80, group = "BleedDamageAndDuration", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment" }, }, + ["ChanceToFreezeAddedDamageInfluence1_"] = { type = "Prefix", affix = "Redeemer's", "Adds (17-23) to (35-41) Cold Damage against Chilled or Frozen Enemies", statOrder = { 6759 }, level = 68, group = "ChanceToFreezeAddedDamage", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "ailment" }, }, + ["ChanceToFreezeAddedDamageInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Adds (20-26) to (41-48) Cold Damage against Chilled or Frozen Enemies", statOrder = { 6759 }, level = 75, group = "ChanceToFreezeAddedDamage", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "ailment" }, }, + ["AddedColdDamagePerFrenzyChargeInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(2-3) to (4-5) Added Cold Damage per Frenzy Charge", statOrder = { 4180 }, level = 75, group = "AddedColdDamagePerFrenzyCharge", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, }, + ["AddedColdDamagePerFrenzyChargeInfluence2__"] = { type = "Prefix", affix = "Redeemer's", "(3-4) to (6-7) Added Cold Damage per Frenzy Charge", statOrder = { 4180 }, level = 80, group = "AddedColdDamagePerFrenzyCharge", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, }, + ["ProjectileAttackDamageRingInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(15-17)% increased Projectile Attack Damage", statOrder = { 1906 }, level = 68, group = "ProjectileAttackDamage", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, }, + ["ProjectileAttackDamageRingInfluence2___"] = { type = "Prefix", affix = "Redeemer's", "(18-21)% increased Projectile Attack Damage", statOrder = { 1906 }, level = 75, group = "ProjectileAttackDamage", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, }, + ["ProjectileAttackDamageRingInfluence3"] = { type = "Prefix", affix = "Redeemer's", "(22-25)% increased Projectile Attack Damage", statOrder = { 1906 }, level = 80, group = "ProjectileAttackDamage", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, }, + ["MinionDamageRingInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Minions deal (15-17)% increased Damage", statOrder = { 1882 }, level = 68, group = "MinionDamage", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "minion" }, }, + ["MinionDamageRingInfluence2_"] = { type = "Prefix", affix = "Redeemer's", "Minions deal (18-21)% increased Damage", statOrder = { 1882 }, level = 75, group = "MinionDamage", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "minion" }, }, + ["MinionDamageRingInfluence3"] = { type = "Prefix", affix = "Redeemer's", "Minions deal (22-25)% increased Damage", statOrder = { 1882 }, level = 80, group = "MinionDamage", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "minion" }, }, + ["EnergyShieldRechargeDelayInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(15-20)% faster start of Energy Shield Recharge", statOrder = { 1473 }, level = 68, group = "EnergyShieldDelay", weightKey = { "ring_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, + ["EnergyShieldRechargeDelayInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(20-24)% faster start of Energy Shield Recharge", statOrder = { 1473 }, level = 75, group = "EnergyShieldDelay", weightKey = { "ring_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, + ["CurseOnHitFrostbiteInfluence1_"] = { type = "Suffix", affix = "of Redemption", "Curse Enemies with Frostbite on Hit", statOrder = { 2440 }, level = 75, group = "FrostbiteOnHitLevel", weightKey = { "ring_eyrie", "default", }, weightVal = { 200, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, + ["CurseOnHitFrostbiteInfluence2"] = { type = "Suffix", affix = "of Redemption", "Curse Enemies with Frostbite on Hit", statOrder = { 2440 }, level = 80, group = "FrostbiteOnHitLevel", weightKey = { "ring_eyrie", "default", }, weightVal = { 200, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, + ["AttackSpeedHitRecentlyInfluence1_"] = { type = "Suffix", affix = "of Redemption", "(8-12)% increased Attack Speed if you've been Hit Recently", statOrder = { 4792 }, level = 75, group = "AttackSpeedHitRecently", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack", "speed" }, }, + ["IncreasedExperienceGainInfluence1"] = { type = "Prefix", affix = "Hunter's", "(2-3)% increased Experience gain", statOrder = { 1514 }, level = 85, group = "ExperienceIncrease", weightKey = { "ring_basilisk", "default", }, weightVal = { 50, 0 }, modTags = { }, }, + ["ReflectedPhysicalDamageRingInfluence1"] = { type = "Prefix", affix = "Hunter's", "You and your Minions take (31-45)% reduced Reflected Physical Damage", statOrder = { 9458 }, level = 68, group = "ReducedPhysicalReflectTaken", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical" }, }, + ["ReflectedPhysicalDamageRingInfluence2_"] = { type = "Prefix", affix = "Hunter's", "You and your Minions take (46-55)% reduced Reflected Physical Damage", statOrder = { 9458 }, level = 75, group = "ReducedPhysicalReflectTaken", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical" }, }, + ["ReflectedElementalDamageRingInfluence1"] = { type = "Prefix", affix = "Hunter's", "You and your Minions take (31-45)% reduced Reflected Elemental Damage", statOrder = { 6228 }, level = 68, group = "ReducedElementalReflectTaken", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "elemental" }, }, + ["ReflectedElementalDamageRingInfluence2"] = { type = "Prefix", affix = "Hunter's", "You and your Minions take (46-55)% reduced Reflected Elemental Damage", statOrder = { 6228 }, level = 75, group = "ReducedElementalReflectTaken", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "elemental" }, }, + ["EnergyShieldDelayInfluence1"] = { type = "Prefix", affix = "Hunter's", "(15-20)% faster start of Energy Shield Recharge", statOrder = { 1473 }, level = 68, group = "EnergyShieldDelay", weightKey = { "ring_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldDelayInfluence2_"] = { type = "Prefix", affix = "Hunter's", "(20-24)% faster start of Energy Shield Recharge", statOrder = { 1473 }, level = 75, group = "EnergyShieldDelay", weightKey = { "ring_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "defences", "energy_shield" }, }, + ["LifeGainPerTargetInfluence1"] = { type = "Prefix", affix = "Hunter's", "Gain (10-15) Life per Enemy Hit with Attacks", statOrder = { 1651 }, level = 68, group = "LifeGainPerTarget", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life", "attack" }, }, + ["LifeGainPerTargetInfluence2__"] = { type = "Prefix", affix = "Hunter's", "Gain (16-20) Life per Enemy Hit with Attacks", statOrder = { 1651 }, level = 75, group = "LifeGainPerTarget", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life", "attack" }, }, + ["ExertedAttackDamageInfluence1"] = { type = "Prefix", affix = "Hunter's", "Exerted Attacks deal (25-27)% increased Damage", statOrder = { 6248 }, level = 68, group = "ExertedAttackDamage", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "attack" }, }, + ["ExertedAttackDamageInfluence2__"] = { type = "Prefix", affix = "Hunter's", "Exerted Attacks deal (28-31)% increased Damage", statOrder = { 6248 }, level = 75, group = "ExertedAttackDamage", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "attack" }, }, + ["ExertedAttackDamageInfluence3"] = { type = "Prefix", affix = "Hunter's", "Exerted Attacks deal (32-35)% increased Damage", statOrder = { 6248 }, level = 80, group = "ExertedAttackDamage", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "attack" }, }, + ["CurseOnHitElementalWeaknessInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Curse Enemies with Elemental Weakness on Hit", statOrder = { 2434 }, level = 75, group = "CurseOnHitLevelElementalWeaknessMod", weightKey = { "ring_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "caster", "curse" }, }, + ["CurseOnHitElementalWeaknessInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Curse Enemies with Elemental Weakness on Hit", statOrder = { 2434 }, level = 80, group = "CurseOnHitLevelElementalWeaknessMod", weightKey = { "ring_basilisk", "default", }, weightVal = { 200, 0 }, modTags = { "caster", "curse" }, }, + ["CurseOnHitDespairInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Curse Enemies with Despair on Hit", statOrder = { 2437 }, level = 75, group = "CurseOnHitDespairMod", weightKey = { "ring_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "caster", "curse" }, }, + ["CurseOnHitDespairInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Curse Enemies with Despair on Hit", statOrder = { 2437 }, level = 80, group = "CurseOnHitDespairMod", weightKey = { "ring_basilisk", "default", }, weightVal = { 200, 0 }, modTags = { "caster", "curse" }, }, + ["PoisonDamageAndDurationInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "(5-6)% increased Poison Duration", "(8-12)% increased Damage with Poison", statOrder = { 3078, 3089 }, level = 68, group = "PoisonDamageAndDuration", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["PoisonDamageAndDurationInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(7-8)% increased Poison Duration", "(13-17)% increased Damage with Poison", statOrder = { 3078, 3089 }, level = 75, group = "PoisonDamageAndDuration", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["PoisonDamageAndDurationInfluence3__"] = { type = "Suffix", affix = "of the Hunt", "(9-10)% increased Poison Duration", "(18-22)% increased Damage with Poison", statOrder = { 3078, 3089 }, level = 80, group = "PoisonDamageAndDuration", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["LightningDamageLifeLeechInfluence1"] = { type = "Prefix", affix = "Crusader's", "(0.3-0.5)% of Lightning Damage Leeched as Life", statOrder = { 1590 }, level = 68, group = "LightningDamageLifeLeechPermyriad", weightKey = { "amulet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "lightning" }, }, + ["LightningDamageLifeLeechSuffixInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(0.3-0.5)% of Lightning Damage Leeched as Life", statOrder = { 1590 }, level = 68, group = "LightningDamageLifeLeechPermyriad", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "lightning" }, }, + ["LightningDamageESLeechInfluence1_"] = { type = "Prefix", affix = "Crusader's", "(0.2-0.4)% of Lightning Damage Leeched as Energy Shield", statOrder = { 4911 }, level = 68, group = "LightningDamageESLeech", weightKey = { "amulet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield", "elemental", "lightning" }, }, + ["LightningDamageESLeechSufffixInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(0.2-0.4)% of Lightning Damage Leeched as Energy Shield", statOrder = { 4911 }, level = 68, group = "LightningDamageESLeech", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "defences", "energy_shield", "elemental", "lightning" }, }, + ["DamagePer15IntelligenceInfluence1"] = { type = "Prefix", affix = "Crusader's", "1% increased Damage per 15 Intelligence", statOrder = { 5952 }, level = 80, group = "DamagePer15Intelligence", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, + ["DamagePerPowerChargeInfluence1"] = { type = "Prefix", affix = "Crusader's", "(3-4)% increased Damage per Power Charge", statOrder = { 5961 }, level = 68, group = "IncreasedDamagePerPowerCharge", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, + ["DamagePerPowerChargeInfluence2"] = { type = "Prefix", affix = "Crusader's", "(5-6)% increased Damage per Power Charge", statOrder = { 5961 }, level = 80, group = "IncreasedDamagePerPowerCharge", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, + ["GlobalLightningGemLevelInfluence1_"] = { type = "Prefix", affix = "Crusader's", "+1 to Level of all Lightning Skill Gems", statOrder = { 7326 }, level = 82, group = "GlobalLightningGemLevel", weightKey = { "amulet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "gem" }, }, + ["LightningPenetrationInfluence1__"] = { type = "Prefix", affix = "Crusader's", "Damage Penetrates (4-7)% Lightning Resistance", statOrder = { 2893 }, level = 68, group = "LightningResistancePenetration", weightKey = { "amulet_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, }, + ["LightningPenetrationInfluence2__"] = { type = "Prefix", affix = "Crusader's", "Damage Penetrates (8-10)% Lightning Resistance", statOrder = { 2893 }, level = 82, group = "LightningResistancePenetration", weightKey = { "amulet_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, }, + ["MaximumLifeLeechRateHighInfluence1"] = { type = "Prefix", affix = "Crusader's", "(15-25)% increased Maximum total Life Recovery per second from Leech", statOrder = { 1642 }, level = 68, group = "MaximumLifeLeechRate", weightKey = { "amulet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life" }, }, + ["MaximumLifeLeechRateHighSuffixInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(15-25)% increased Maximum total Life Recovery per second from Leech", statOrder = { 1642 }, level = 68, group = "MaximumLifeLeechRate", weightKey = { "amulet_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "influence_mod", "life" }, }, + ["MaximumEnergyShieldLeechRateHighInfluence1"] = { type = "Prefix", affix = "Crusader's", "(15-25)% increased Maximum total Energy Shield Recovery per second from Leech", statOrder = { 1645 }, level = 68, group = "MaximumEnergyShieldLeechRate", weightKey = { "amulet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, + ["MaximumEnergyShieldLeechRateHighSuffixInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(15-25)% increased Maximum total Energy Shield Recovery per second from Leech", statOrder = { 1645 }, level = 68, group = "MaximumEnergyShieldLeechRate", weightKey = { "amulet_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, + ["MaximumSpellBlockChanceInfluence1"] = { type = "Suffix", affix = "of the Crusade", "+2% to maximum Chance to Block Spell Damage", statOrder = { 1898 }, level = 68, group = "MaximumSpellBlockChance", weightKey = { "amulet_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "block", "influence_mod" }, }, + ["WrathReducedReservationInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Wrath has (40-50)% increased Mana Reservation Efficiency", statOrder = { 10408 }, level = 75, group = "WrathReservation", weightKey = { "amulet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, }, + ["WrathReservationEfficiencyInfluence1________"] = { type = "Suffix", affix = "of the Crusade", "Wrath has (40-50)% increased Mana Reservation Efficiency", statOrder = { 10409 }, level = 75, group = "WrathReservationEfficiency", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, }, + ["DisciplineReducedReservationInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Discipline has (50-60)% increased Mana Reservation Efficiency", statOrder = { 6082 }, level = 75, group = "DisciplineReservation", weightKey = { "amulet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, }, + ["DisciplineReservationEfficiencyInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Discipline has (50-60)% increased Mana Reservation Efficiency", statOrder = { 6083 }, level = 75, group = "DisciplineReservationEfficiency", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, }, + ["PurityOfLightningReducedReservationInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Purity of Lightning has (50-60)% increased Mana Reservation Efficiency", statOrder = { 9561 }, level = 75, group = "PurityOfLightningReservation", weightKey = { "amulet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, }, + ["PurityOfLightningReservationEfficiencyInfluence1__"] = { type = "Suffix", affix = "of the Crusade", "Purity of Lightning has (50-60)% increased Mana Reservation Efficiency", statOrder = { 9562 }, level = 75, group = "PurityOfLightningReservationEfficiency", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, }, + ["ZealotryReducedReservationInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Zealotry has (40-50)% increased Mana Reservation Efficiency", statOrder = { 10496 }, level = 75, group = "ZealotryReservation", weightKey = { "amulet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, }, + ["ZealotryReservationEfficiencyInfluence1__"] = { type = "Suffix", affix = "of the Crusade", "Zealotry has (40-50)% increased Mana Reservation Efficiency", statOrder = { 10497 }, level = 75, group = "ZealotryReservationEfficiency", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, }, + ["SpellBlockAmuletInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(4-5)% Chance to Block Spell Damage", statOrder = { 1072 }, level = 68, group = "SpellBlockPercentage", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "block", "influence_mod" }, }, + ["SpellBlockAmuletInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(6-7)% Chance to Block Spell Damage", statOrder = { 1072 }, level = 80, group = "SpellBlockPercentage", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "block", "influence_mod" }, }, + ["FireDamageLifeLeechInfluence1"] = { type = "Prefix", affix = "Warlord's", "(0.3-0.5)% of Fire Damage Leeched as Life", statOrder = { 1581 }, level = 68, group = "FireDamageLifeLeechPermyriad", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "fire" }, }, + ["FireDamageLifeLeechSuffixInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(0.3-0.5)% of Fire Damage Leeched as Life", statOrder = { 1581 }, level = 68, group = "FireDamageLifeLeechPermyriad", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "fire" }, }, + ["FireDamageESLeechInfluence1"] = { type = "Prefix", affix = "Warlord's", "(0.2-0.4)% of Fire Damage Leeched as Energy Shield", statOrder = { 4910 }, level = 68, group = "FireDamageESLeech", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield", "elemental", "fire" }, }, + ["FireDamageESLeechSuffixInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(0.2-0.4)% of Fire Damage Leeched as Energy Shield", statOrder = { 4910 }, level = 68, group = "FireDamageESLeech", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "defences", "energy_shield", "elemental", "fire" }, }, + ["DamagePer15StrengthInfluence1"] = { type = "Prefix", affix = "Warlord's", "1% increased Damage per 15 Strength", statOrder = { 5953 }, level = 80, group = "DamagePer15Strength", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, + ["DamagePerEnduranceChargeInfluence1__"] = { type = "Prefix", affix = "Warlord's", "(3-4)% increased Damage per Endurance Charge", statOrder = { 3107 }, level = 68, group = "DamagePerEnduranceCharge", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, + ["DamagePerEnduranceChargeInfluence2"] = { type = "Prefix", affix = "Warlord's", "(5-6)% increased Damage per Endurance Charge", statOrder = { 3107 }, level = 80, group = "DamagePerEnduranceCharge", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, + ["GlobalFireGemLevelInfluence1"] = { type = "Prefix", affix = "Warlord's", "+1 to Level of all Fire Skill Gems", statOrder = { 6472 }, level = 82, group = "GlobalFireGemLevel", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "gem" }, }, + ["GlobalPhysicalGemLevelInfluence1"] = { type = "Prefix", affix = "Warlord's", "+1 to Level of all Physical Skill Gems", statOrder = { 9459 }, level = 82, group = "GlobalPhysicalGemLevel", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical", "gem" }, }, + ["FirePenetrationInfluence1"] = { type = "Prefix", affix = "Warlord's", "Damage Penetrates (4-7)% Fire Resistance", statOrder = { 2890 }, level = 68, group = "FireResistancePenetration", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, + ["FirePenetrationInfluence2"] = { type = "Prefix", affix = "Warlord's", "Damage Penetrates (8-10)% Fire Resistance", statOrder = { 2890 }, level = 82, group = "FireResistancePenetration", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, + ["MaximumAttackBlockChanceInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+2% to maximum Chance to Block Attack Damage", statOrder = { 1897 }, level = 68, group = "MaximumBlockChance", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 250, 0 }, modTags = { "block", "influence_mod" }, }, + ["AngerReducedReservationInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Anger has (40-50)% increased Mana Reservation Efficiency", statOrder = { 4587 }, level = 75, group = "AngerReservation", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, }, + ["AngerReservationEfficiencyInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Anger has (40-50)% increased Mana Reservation Efficiency", statOrder = { 4588 }, level = 75, group = "AngerReservationEfficiency", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, }, + ["DeterminationReducedReservationInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Determination has (40-50)% increased Mana Reservation Efficiency", statOrder = { 6066 }, level = 75, group = "DeterminationReservation", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, }, + ["DeterminationReservationEfficiencyInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "Determination has (40-50)% increased Mana Reservation Efficiency", statOrder = { 6067 }, level = 75, group = "DeterminationReservationEfficiency", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, }, + ["PurityOfFireReducedReservationInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "Purity of Fire has (50-60)% increased Mana Reservation Efficiency", statOrder = { 9555 }, level = 75, group = "PurityOfFireReservation", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, }, + ["PurityOfFireReservationEfficiencyInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Purity of Fire has (50-60)% increased Mana Reservation Efficiency", statOrder = { 9556 }, level = 75, group = "PurityOfFireReservationEfficiency", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, }, + ["PrideReducedReservationInfluence1__"] = { type = "Suffix", affix = "of the Conquest", "Pride has (40-50)% increased Mana Reservation Efficiency", statOrder = { 9502 }, level = 75, group = "PrideReservation", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, }, + ["PrideReservationEfficiencyInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Pride has (40-50)% increased Mana Reservation Efficiency", statOrder = { 9503 }, level = 75, group = "PrideReservationEfficiency", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, }, + ["ColdDamageLifeLeechInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(0.3-0.5)% of Cold Damage Leeched as Life", statOrder = { 1586 }, level = 68, group = "ColdDamageLifeLeechPermyriad", weightKey = { "amulet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "cold" }, }, + ["ColdDamageLifeLeechSuffixInfluence1"] = { type = "Suffix", affix = "of Redemption", "(0.3-0.5)% of Cold Damage Leeched as Life", statOrder = { 1586 }, level = 68, group = "ColdDamageLifeLeechPermyriad", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "cold" }, }, + ["ColdDamageESLeechInfluence1__"] = { type = "Prefix", affix = "Redeemer's", "(0.2-0.4)% of Cold Damage Leeched as Energy Shield", statOrder = { 4908 }, level = 68, group = "ColdDamageESLeech", weightKey = { "amulet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield", "elemental", "cold" }, }, + ["ColdDamageESLeechSuffixInfluence1"] = { type = "Suffix", affix = "of Redemption", "(0.2-0.4)% of Cold Damage Leeched as Energy Shield", statOrder = { 4908 }, level = 68, group = "ColdDamageESLeech", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "defences", "energy_shield", "elemental", "cold" }, }, + ["DamagePer15DexterityInfluence1"] = { type = "Prefix", affix = "Redeemer's", "1% increased Damage per 15 Dexterity", statOrder = { 5951 }, level = 80, group = "DamagePer15Dexterity", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, + ["DamagePerFrenzyChargeInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(3-4)% increased Damage per Frenzy Charge", statOrder = { 3194 }, level = 68, group = "DamagePerFrenzyCharge", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, + ["DamagePerFrenzyChargeInfluence2_"] = { type = "Prefix", affix = "Redeemer's", "(5-6)% increased Damage per Frenzy Charge", statOrder = { 3194 }, level = 80, group = "DamagePerFrenzyCharge", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, + ["GlobalColdGemLevelInfluence1__"] = { type = "Prefix", affix = "Redeemer's", "+1 to Level of all Cold Skill Gems", statOrder = { 5734 }, level = 82, group = "GlobalColdGemLevel", weightKey = { "amulet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "gem" }, }, + ["ColdPenetrationInfluence1_"] = { type = "Prefix", affix = "Redeemer's", "Damage Penetrates (4-7)% Cold Resistance", statOrder = { 2892 }, level = 68, group = "ColdResistancePenetration", weightKey = { "amulet_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, }, + ["ColdPenetrationInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Damage Penetrates (8-10)% Cold Resistance", statOrder = { 2892 }, level = 82, group = "ColdResistancePenetration", weightKey = { "amulet_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, }, + ["MaximumAttackDodgeChanceInfluence1_"] = { type = "Suffix", affix = "of Redemption", "Prevent +2% of Suppressed Spell Damage", statOrder = { 1054 }, level = 68, group = "SpellDamageSuppressed", weightKey = { "amulet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, + ["MaximumSpellDodgeChanceInfluence1"] = { type = "Suffix", affix = "of Redemption", "Prevent +2% of Suppressed Spell Damage", statOrder = { 1054 }, level = 68, group = "SpellDamageSuppressed", weightKey = { "amulet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, + ["SpellDamageSuppressedInfluence1"] = { type = "Suffix", affix = "of Redemption", "Prevent +(3-5)% of Suppressed Spell Damage", statOrder = { 1054 }, level = 68, group = "SpellDamageSuppressed", weightKey = { "amulet_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod" }, }, + ["HatredReducedReservationInfluence1_"] = { type = "Suffix", affix = "of Redemption", "Hatred has (40-50)% increased Mana Reservation Efficiency", statOrder = { 6815 }, level = 75, group = "HatredReservation", weightKey = { "amulet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, }, + ["HatredReservationEfficiencyInfluence1"] = { type = "Suffix", affix = "of Redemption", "Hatred has (40-50)% increased Mana Reservation Efficiency", statOrder = { 6816 }, level = 75, group = "HatredReservationEfficiency", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, }, + ["GraceReducedReservationInfluence1"] = { type = "Suffix", affix = "of Redemption", "Grace has (40-50)% increased Mana Reservation Efficiency", statOrder = { 6778 }, level = 75, group = "GraceReservation", weightKey = { "amulet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, }, + ["GraceReservationEfficiencyInfluence1"] = { type = "Suffix", affix = "of Redemption", "Grace has (40-50)% increased Mana Reservation Efficiency", statOrder = { 6779 }, level = 75, group = "GraceReservationEfficiency", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, }, + ["PurityOfIceReducedReservationInfluence1__"] = { type = "Suffix", affix = "of Redemption", "Purity of Ice has (50-60)% increased Mana Reservation Efficiency", statOrder = { 9558 }, level = 75, group = "PurityOfIceReservation", weightKey = { "amulet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, }, + ["PurityOfIceReservationEfficiencyInfluence1"] = { type = "Suffix", affix = "of Redemption", "Purity of Ice has (50-60)% increased Mana Reservation Efficiency", statOrder = { 9559 }, level = 75, group = "PurityOfIceReservationEfficiency", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, }, + ["WarcrySpeedInfluence1"] = { type = "Suffix", affix = "of Redemption", "(21-25)% increased Warcry Speed", statOrder = { 3185 }, level = 68, group = "WarcrySpeed", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "speed" }, }, + ["WarcrySpeedInfluence2_"] = { type = "Suffix", affix = "of Redemption", "(26-30)% increased Warcry Speed", statOrder = { 3185 }, level = 75, group = "WarcrySpeed", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "speed" }, }, + ["WarcrySpeedInfluence3"] = { type = "Suffix", affix = "of Redemption", "(31-35)% increased Warcry Speed", statOrder = { 3185 }, level = 80, group = "WarcrySpeed", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "speed" }, }, + ["WarcrySpeedEssence1"] = { type = "Suffix", affix = "of the Essence", "(15-20)% increased Warcry Speed", statOrder = { 3185 }, level = 42, group = "WarcrySpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, + ["WarcrySpeedEssence2"] = { type = "Suffix", affix = "of the Essence", "(21-25)% increased Warcry Speed", statOrder = { 3185 }, level = 58, group = "WarcrySpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, + ["WarcrySpeedEssence3"] = { type = "Suffix", affix = "of the Essence", "(26-30)% increased Warcry Speed", statOrder = { 3185 }, level = 74, group = "WarcrySpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, + ["WarcrySpeedEssence4_"] = { type = "Suffix", affix = "of the Essence", "(31-35)% increased Warcry Speed", statOrder = { 3185 }, level = 82, group = "WarcrySpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, + ["DoubleDamageStunnedRecentlyInfluence1"] = { type = "Suffix", affix = "of Redemption", "(5-7)% chance to deal Double Damage if you have Stunned an Enemy Recently", statOrder = { 5559 }, level = 75, group = "DoubleDamageStunnedRecently", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, + ["DoubleDamageStunnedRecentlyInfluence2"] = { type = "Suffix", affix = "of Redemption", "(8-10)% chance to deal Double Damage if you have Stunned an Enemy Recently", statOrder = { 5559 }, level = 83, group = "DoubleDamageStunnedRecently", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, + ["PhysicalDamageLifeLeechInfluence1"] = { type = "Prefix", affix = "Hunter's", "(0.3-0.5)% of Physical Damage Leeched as Life", statOrder = { 1577 }, level = 68, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { "amulet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "life", "physical" }, }, + ["PhysicalDamageLifeLeechSuffixInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(0.3-0.5)% of Physical Damage Leeched as Life", statOrder = { 1577 }, level = 68, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { "amulet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life", "physical" }, }, + ["ChaosDamageLifeLeechInfluence1_"] = { type = "Prefix", affix = "Hunter's", "(0.3-0.5)% of Chaos Damage Leeched as Life", statOrder = { 1593 }, level = 68, group = "ChaosDamageLifeLeechPermyriad", weightKey = { "amulet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "life", "chaos" }, }, + ["ChaosDamageLifeLeechSuffixInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "(0.3-0.5)% of Chaos Damage Leeched as Life", statOrder = { 1593 }, level = 68, group = "ChaosDamageLifeLeechPermyriad", weightKey = { "amulet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life", "chaos" }, }, + ["GlobalChaosGemLevelInfluence1__"] = { type = "Prefix", affix = "Hunter's", "+1 to Level of all Chaos Skill Gems", statOrder = { 5653 }, level = 82, group = "GlobalChaosGemLevel", weightKey = { "amulet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "chaos", "gem" }, }, + ["GlobalStrengthGemLevelInfluence1"] = { type = "Prefix", affix = "Hunter's", "+1 to Level of all Strength Skill Gems", statOrder = { 10041 }, level = 82, group = "GlobalStrengthGemLevel", weightKey = { "amulet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "attribute", "gem" }, }, + ["GlobalDexterityGemLevelInfluence1_"] = { type = "Prefix", affix = "Hunter's", "+1 to Level of all Dexterity Skill Gems", statOrder = { 6071 }, level = 82, group = "GlobalDexterityGemLevel", weightKey = { "amulet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "attribute", "gem" }, }, + ["GlobalIntelligenceGemLevelInfluence1"] = { type = "Prefix", affix = "Hunter's", "+1 to Level of all Intelligence Skill Gems", statOrder = { 7155 }, level = 82, group = "GlobalIntelligenceGemLevel", weightKey = { "amulet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "attribute", "gem" }, }, + ["ElementalPenetrationInfluence1"] = { type = "Prefix", affix = "Hunter's", "Damage Penetrates (3-4)% Elemental Resistances", statOrder = { 2889 }, level = 68, group = "ElementalPenetration", weightKey = { "amulet_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["ElementalPenetrationInfluence2"] = { type = "Prefix", affix = "Hunter's", "Damage Penetrates (5-6)% Elemental Resistances", statOrder = { 2889 }, level = 82, group = "ElementalPenetration", weightKey = { "amulet_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["MalevolenceReducedReservationInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Malevolence has (40-50)% increased Mana Reservation Efficiency", statOrder = { 7994 }, level = 75, group = "MalevolenceReservation", weightKey = { "amulet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana", "aura" }, }, + ["MalevolenceReservationEfficiencyInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Malevolence has (40-50)% increased Mana Reservation Efficiency", statOrder = { 7995 }, level = 75, group = "MalevolenceReservationEfficiency", weightKey = { "amulet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "mana", "aura" }, }, + ["RandomChargeOnKillInfluence1___"] = { type = "Suffix", affix = "of the Hunt", "(3-6)% chance to gain a Power, Frenzy or Endurance Charge on Kill", statOrder = { 3520 }, level = 68, group = "PowerFrenzyOrEnduranceChargeOnKill", weightKey = { "amulet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, }, + ["RandomChargeOnKillInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(7-10)% chance to gain a Power, Frenzy or Endurance Charge on Kill", statOrder = { 3520 }, level = 75, group = "PowerFrenzyOrEnduranceChargeOnKill", weightKey = { "amulet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, }, + ["ReducedAttributeRequirementsInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Items and Gems have (5-10)% reduced Attribute Requirements", statOrder = { 2461 }, level = 68, group = "GlobalItemAttributeRequirements", weightKey = { "amulet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["ReducedAttributeRequirementsInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Items and Gems have (11-15)% reduced Attribute Requirements", statOrder = { 2461 }, level = 75, group = "GlobalItemAttributeRequirements", weightKey = { "amulet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["LocalIncreasedPhysicalDamagePercentAndLeechInfluence1"] = { type = "Prefix", affix = "Crusader's", "(25-34)% increased Physical Damage", "0.6% of Physical Attack Damage Leeched as Life", statOrder = { 1144, 1562 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndLeech", weightKey = { "sword_crusader", "axe_crusader", "2h_sword_crusader", "2h_axe_crusader", "default", }, weightVal = { 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "resource", "influence_mod", "life", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentAndLeechInfluence2"] = { type = "Prefix", affix = "Crusader's", "(35-44)% increased Physical Damage", "0.6% of Physical Attack Damage Leeched as Life", statOrder = { 1144, 1562 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndLeech", weightKey = { "sword_crusader", "axe_crusader", "2h_sword_crusader", "2h_axe_crusader", "default", }, weightVal = { 250, 250, 250, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "resource", "influence_mod", "life", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentAndLeechInfluence3"] = { type = "Prefix", affix = "Crusader's", "(45-54)% increased Physical Damage", "0.6% of Physical Attack Damage Leeched as Life", statOrder = { 1144, 1562 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndLeech", weightKey = { "sword_crusader", "axe_crusader", "2h_sword_crusader", "2h_axe_crusader", "default", }, weightVal = { 150, 150, 150, 150, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "resource", "influence_mod", "life", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentAndLeechInfluence4"] = { type = "Prefix", affix = "Crusader's", "(55-64)% increased Physical Damage", "0.6% of Physical Attack Damage Leeched as Life", statOrder = { 1144, 1562 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndLeech", weightKey = { "sword_crusader", "axe_crusader", "2h_sword_crusader", "2h_axe_crusader", "default", }, weightVal = { 100, 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "resource", "influence_mod", "life", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentAndLeechInfluence5_"] = { type = "Prefix", affix = "Crusader's", "(65-69)% increased Physical Damage", "0.6% of Physical Attack Damage Leeched as Life", statOrder = { 1144, 1562 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndLeech", weightKey = { "sword_crusader", "axe_crusader", "2h_sword_crusader", "2h_axe_crusader", "default", }, weightVal = { 50, 50, 50, 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "resource", "influence_mod", "life", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentAndAttackSpeedInfluence1"] = { type = "Prefix", affix = "Warlord's", "(25-34)% increased Physical Damage", "(3-4)% increased Attack Speed", statOrder = { 1144, 1324 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndAttackSpeed", weightKey = { "sword_adjudicator", "axe_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, }, + ["LocalIncreasedPhysicalDamagePercentAndAttackSpeedInfluence2"] = { type = "Prefix", affix = "Warlord's", "(35-44)% increased Physical Damage", "(3-4)% increased Attack Speed", statOrder = { 1144, 1324 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndAttackSpeed", weightKey = { "sword_adjudicator", "axe_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "default", }, weightVal = { 250, 250, 250, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, }, + ["LocalIncreasedPhysicalDamagePercentAndAttackSpeedInfluence3"] = { type = "Prefix", affix = "Warlord's", "(45-54)% increased Physical Damage", "(3-4)% increased Attack Speed", statOrder = { 1144, 1324 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndAttackSpeed", weightKey = { "sword_adjudicator", "axe_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "default", }, weightVal = { 150, 150, 150, 150, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, }, + ["LocalIncreasedPhysicalDamagePercentAndAttackSpeedInfluence4"] = { type = "Prefix", affix = "Warlord's", "(55-64)% increased Physical Damage", "(3-4)% increased Attack Speed", statOrder = { 1144, 1324 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndAttackSpeed", weightKey = { "sword_adjudicator", "axe_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "default", }, weightVal = { 100, 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, }, + ["LocalIncreasedPhysicalDamagePercentAndAttackSpeedInfluence5"] = { type = "Prefix", affix = "Warlord's", "(65-69)% increased Physical Damage", "(3-4)% increased Attack Speed", statOrder = { 1144, 1324 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndAttackSpeed", weightKey = { "sword_adjudicator", "axe_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "default", }, weightVal = { 50, 50, 50, 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, }, + ["LocalIncreasedPhysicalDamagePercentAndCritChanceInfluence1_"] = { type = "Prefix", affix = "Crusader's", "(25-34)% increased Physical Damage", "(8-10)% increased Critical Strike Chance", statOrder = { 1144, 1375 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndCritChance", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, }, + ["LocalIncreasedPhysicalDamagePercentAndCritChanceInfluence2"] = { type = "Prefix", affix = "Crusader's", "(35-44)% increased Physical Damage", "(8-10)% increased Critical Strike Chance", statOrder = { 1144, 1375 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndCritChance", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "default", }, weightVal = { 250, 250, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, }, + ["LocalIncreasedPhysicalDamagePercentAndCritChanceInfluence3_"] = { type = "Prefix", affix = "Crusader's", "(45-54)% increased Physical Damage", "(8-10)% increased Critical Strike Chance", statOrder = { 1144, 1375 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndCritChance", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "default", }, weightVal = { 150, 150, 150, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, }, + ["LocalIncreasedPhysicalDamagePercentAndCritChanceInfluence4"] = { type = "Prefix", affix = "Crusader's", "(55-64)% increased Physical Damage", "(8-10)% increased Critical Strike Chance", statOrder = { 1144, 1375 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndCritChance", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "default", }, weightVal = { 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, }, + ["LocalIncreasedPhysicalDamagePercentAndCritChanceInfluence5"] = { type = "Prefix", affix = "Crusader's", "(65-69)% increased Physical Damage", "(8-10)% increased Critical Strike Chance", statOrder = { 1144, 1375 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndCritChance", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "default", }, weightVal = { 50, 50, 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, }, + ["LocalIncreasedPhysicalDamagePercentAndCritMultiInfluence1"] = { type = "Prefix", affix = "Warlord's", "(25-34)% increased Physical Damage", "+(10-15)% to Global Critical Strike Multiplier", statOrder = { 1144, 1399 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndCritMulti", weightKey = { "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, }, + ["LocalIncreasedPhysicalDamagePercentAndCritMultiInfluence2"] = { type = "Prefix", affix = "Warlord's", "(35-44)% increased Physical Damage", "+(10-15)% to Global Critical Strike Multiplier", statOrder = { 1144, 1399 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndCritMulti", weightKey = { "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 250, 250, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, }, + ["LocalIncreasedPhysicalDamagePercentAndCritMultiInfluence3_"] = { type = "Prefix", affix = "Warlord's", "(45-54)% increased Physical Damage", "+(10-15)% to Global Critical Strike Multiplier", statOrder = { 1144, 1399 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndCritMulti", weightKey = { "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 150, 150, 150, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, }, + ["LocalIncreasedPhysicalDamagePercentAndCritMultiInfluence4"] = { type = "Prefix", affix = "Warlord's", "(55-64)% increased Physical Damage", "+(10-15)% to Global Critical Strike Multiplier", statOrder = { 1144, 1399 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndCritMulti", weightKey = { "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, }, + ["LocalIncreasedPhysicalDamagePercentAndCritMultiInfluence5"] = { type = "Prefix", affix = "Warlord's", "(65-69)% increased Physical Damage", "+(10-15)% to Global Critical Strike Multiplier", statOrder = { 1144, 1399 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndCritMulti", weightKey = { "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 50, 50, 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, }, + ["LocalIncreasedPhysicalDamagePercentAndStunInfluence1__"] = { type = "Prefix", affix = "Crusader's", "(25-34)% increased Physical Damage", "(6-8)% reduced Enemy Stun Threshold", statOrder = { 1144, 1428 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndStun", weightKey = { "mace_crusader", "sceptre_crusader", "staff_crusader", "warstaff_crusader", "2h_mace_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentAndStunInfluence2"] = { type = "Prefix", affix = "Crusader's", "(35-44)% increased Physical Damage", "(6-8)% reduced Enemy Stun Threshold", statOrder = { 1144, 1428 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndStun", weightKey = { "mace_crusader", "sceptre_crusader", "staff_crusader", "warstaff_crusader", "2h_mace_crusader", "default", }, weightVal = { 250, 250, 250, 250, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentAndStunInfluence3"] = { type = "Prefix", affix = "Crusader's", "(45-54)% increased Physical Damage", "(6-8)% reduced Enemy Stun Threshold", statOrder = { 1144, 1428 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndStun", weightKey = { "mace_crusader", "sceptre_crusader", "staff_crusader", "warstaff_crusader", "2h_mace_crusader", "default", }, weightVal = { 150, 150, 150, 150, 150, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentAndStunInfluence4"] = { type = "Prefix", affix = "Crusader's", "(55-64)% increased Physical Damage", "(6-8)% reduced Enemy Stun Threshold", statOrder = { 1144, 1428 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndStun", weightKey = { "mace_crusader", "sceptre_crusader", "staff_crusader", "warstaff_crusader", "2h_mace_crusader", "default", }, weightVal = { 100, 100, 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentAndStunInfluence5"] = { type = "Prefix", affix = "Crusader's", "(65-69)% increased Physical Damage", "(6-8)% reduced Enemy Stun Threshold", statOrder = { 1144, 1428 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndStun", weightKey = { "mace_crusader", "sceptre_crusader", "staff_crusader", "warstaff_crusader", "2h_mace_crusader", "default", }, weightVal = { 50, 50, 50, 50, 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentAndAreaInfluence1_"] = { type = "Prefix", affix = "Warlord's", "(25-34)% increased Physical Damage", "(10-15)% increased Area of Effect", statOrder = { 1144, 1791 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndArea", weightKey = { "mace_adjudicator", "sceptre_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentAndAreaInfluence2_"] = { type = "Prefix", affix = "Warlord's", "(35-44)% increased Physical Damage", "(10-15)% increased Area of Effect", statOrder = { 1144, 1791 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndArea", weightKey = { "mace_adjudicator", "sceptre_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 250, 250, 250, 250, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentAndAreaInfluence3_"] = { type = "Prefix", affix = "Warlord's", "(45-54)% increased Physical Damage", "(10-15)% increased Area of Effect", statOrder = { 1144, 1791 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndArea", weightKey = { "mace_adjudicator", "sceptre_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 150, 150, 150, 150, 150, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentAndAreaInfluence4"] = { type = "Prefix", affix = "Warlord's", "(55-64)% increased Physical Damage", "(10-15)% increased Area of Effect", statOrder = { 1144, 1791 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndArea", weightKey = { "mace_adjudicator", "sceptre_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 100, 100, 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentAndAreaInfluence5"] = { type = "Prefix", affix = "Warlord's", "(65-69)% increased Physical Damage", "(10-15)% increased Area of Effect", statOrder = { 1144, 1791 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndArea", weightKey = { "mace_adjudicator", "sceptre_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 50, 50, 50, 50, 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentAndProjSpeedInfluence1"] = { type = "Prefix", affix = "Crusader's", "(25-34)% increased Physical Damage", "(20-25)% increased Projectile Speed", statOrder = { 1144, 1707 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndProjSpeed", weightKey = { "wand_crusader", "bow_crusader", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, }, + ["LocalIncreasedPhysicalDamagePercentAndProjSpeedInfluence2_"] = { type = "Prefix", affix = "Crusader's", "(35-44)% increased Physical Damage", "(20-25)% increased Projectile Speed", statOrder = { 1144, 1707 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndProjSpeed", weightKey = { "wand_crusader", "bow_crusader", "default", }, weightVal = { 250, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, }, + ["LocalIncreasedPhysicalDamagePercentAndProjSpeedInfluence3_"] = { type = "Prefix", affix = "Crusader's", "(45-54)% increased Physical Damage", "(20-25)% increased Projectile Speed", statOrder = { 1144, 1707 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndProjSpeed", weightKey = { "wand_crusader", "bow_crusader", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, }, + ["LocalIncreasedPhysicalDamagePercentAndProjSpeedInfluence4"] = { type = "Prefix", affix = "Crusader's", "(55-64)% increased Physical Damage", "(20-25)% increased Projectile Speed", statOrder = { 1144, 1707 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndProjSpeed", weightKey = { "wand_crusader", "bow_crusader", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, }, + ["LocalIncreasedPhysicalDamagePercentAndProjSpeedInfluence5"] = { type = "Prefix", affix = "Crusader's", "(65-69)% increased Physical Damage", "(20-25)% increased Projectile Speed", statOrder = { 1144, 1707 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndProjSpeed", weightKey = { "wand_crusader", "bow_crusader", "default", }, weightVal = { 50, 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, }, + ["LocalIncreasedPhysicalDamagePercentAndPierceInfluence1_"] = { type = "Prefix", affix = "Hunter's", "(25-34)% increased Physical Damage", "Projectiles Pierce an additional Target", statOrder = { 1144, 1701 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndPierce", weightKey = { "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentAndPierceInfluence2"] = { type = "Prefix", affix = "Hunter's", "(35-44)% increased Physical Damage", "Projectiles Pierce an additional Target", statOrder = { 1144, 1701 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndPierce", weightKey = { "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 250, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentAndPierceInfluence3"] = { type = "Prefix", affix = "Hunter's", "(45-54)% increased Physical Damage", "Projectiles Pierce an additional Target", statOrder = { 1144, 1701 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndPierce", weightKey = { "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentAndPierceInfluence4_"] = { type = "Prefix", affix = "Hunter's", "(55-64)% increased Physical Damage", "Projectiles Pierce an additional Target", statOrder = { 1144, 1701 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndPierce", weightKey = { "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentAndPierceInfluence5_"] = { type = "Prefix", affix = "Hunter's", "(65-69)% increased Physical Damage", "Projectiles Pierce an additional Target", statOrder = { 1144, 1701 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndPierce", weightKey = { "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 50, 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedFireDamageAndPenetrationInfluence1_"] = { type = "Prefix", affix = "Warlord's", "Adds (8-10) to (15-18) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1273, 3670 }, level = 68, group = "LocalFireDamagePenetrationHybrid", weightKey = { "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "bow_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamageAndPenetrationInfluence2"] = { type = "Prefix", affix = "Warlord's", "Adds (12-16) to (24-28) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1273, 3670 }, level = 71, group = "LocalFireDamagePenetrationHybrid", weightKey = { "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "bow_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamageAndPenetrationInfluence3"] = { type = "Prefix", affix = "Warlord's", "Adds (17-22) to (33-39) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1273, 3670 }, level = 74, group = "LocalFireDamagePenetrationHybrid", weightKey = { "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "bow_adjudicator", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamageAndPenetrationInfluence4"] = { type = "Prefix", affix = "Warlord's", "Adds (21-28) to (42-49) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1273, 3670 }, level = 77, group = "LocalFireDamagePenetrationHybrid", weightKey = { "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "bow_adjudicator", "default", }, weightVal = { 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamageAndPenetrationInfluence5"] = { type = "Prefix", affix = "Warlord's", "Adds (26-35) to (53-61) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1273, 3670 }, level = 80, group = "LocalFireDamagePenetrationHybrid", weightKey = { "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "bow_adjudicator", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamageAndPenetrationTwoHandInfluence1"] = { type = "Prefix", affix = "Warlord's", "Adds (15-19) to (28-34) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1273, 3670 }, level = 68, group = "LocalFireDamagePenetrationHybrid", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamageAndPenetrationTwoHandInfluence2"] = { type = "Prefix", affix = "Warlord's", "Adds (22-30) to (44-52) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1273, 3670 }, level = 71, group = "LocalFireDamagePenetrationHybrid", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamageAndPenetrationTwoHandInfluence3"] = { type = "Prefix", affix = "Warlord's", "Adds (31-41) to (61-72) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1273, 3670 }, level = 74, group = "LocalFireDamagePenetrationHybrid", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamageAndPenetrationTwoHandInfluence4"] = { type = "Prefix", affix = "Warlord's", "Adds (39-52) to (78-90) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1273, 3670 }, level = 77, group = "LocalFireDamagePenetrationHybrid", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 300, 300, 300, 300, 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamageAndPenetrationTwoHandInfluence5"] = { type = "Prefix", affix = "Warlord's", "Adds (49-65) to (99-114) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1273, 3670 }, level = 80, group = "LocalFireDamagePenetrationHybrid", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedColdDamageAndPenetrationInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Adds (7-9) to (14-16) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1282, 3671 }, level = 68, group = "LocalColdDamagePenetrationHybrid", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "sceptre_eyrie", "wand_eyrie", "bow_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamageAndPenetrationInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Adds (11-14) to (22-25) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1282, 3671 }, level = 71, group = "LocalColdDamagePenetrationHybrid", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "sceptre_eyrie", "wand_eyrie", "bow_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamageAndPenetrationInfluence3"] = { type = "Prefix", affix = "Redeemer's", "Adds (15-20) to (30-35) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1282, 3671 }, level = 74, group = "LocalColdDamagePenetrationHybrid", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "sceptre_eyrie", "wand_eyrie", "bow_eyrie", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamageAndPenetrationInfluence4"] = { type = "Prefix", affix = "Redeemer's", "Adds (19-25) to (38-44) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1282, 3671 }, level = 77, group = "LocalColdDamagePenetrationHybrid", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "sceptre_eyrie", "wand_eyrie", "bow_eyrie", "default", }, weightVal = { 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamageAndPenetrationInfluence5"] = { type = "Prefix", affix = "Redeemer's", "Adds (23-32) to (48-55) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1282, 3671 }, level = 80, group = "LocalColdDamagePenetrationHybrid", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "sceptre_eyrie", "wand_eyrie", "bow_eyrie", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamageAndPenetrationTwoHandInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Adds (13-16) to (26-30) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1282, 3671 }, level = 68, group = "LocalColdDamagePenetrationHybrid", weightKey = { "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamageAndPenetrationTwoHandInfluence2_"] = { type = "Prefix", affix = "Redeemer's", "Adds (21-26) to (41-46) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1282, 3671 }, level = 71, group = "LocalColdDamagePenetrationHybrid", weightKey = { "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamageAndPenetrationTwoHandInfluence3_"] = { type = "Prefix", affix = "Redeemer's", "Adds (28-37) to (56-65) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1282, 3671 }, level = 74, group = "LocalColdDamagePenetrationHybrid", weightKey = { "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamageAndPenetrationTwoHandInfluence4"] = { type = "Prefix", affix = "Redeemer's", "Adds (35-46) to (71-81) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1282, 3671 }, level = 77, group = "LocalColdDamagePenetrationHybrid", weightKey = { "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 300, 300, 300, 300, 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamageAndPenetrationTwoHandInfluence5_"] = { type = "Prefix", affix = "Redeemer's", "Adds (43-59) to (89-102) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1282, 3671 }, level = 80, group = "LocalColdDamagePenetrationHybrid", weightKey = { "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedLightningDamageAndPenetrationInfluence1"] = { type = "Prefix", affix = "Crusader's", "Adds 2 to (25-29) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1293, 3672 }, level = 68, group = "LocalLightningDamagePenetrationHybrid", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "sceptre_crusader", "wand_crusader", "bow_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamageAndPenetrationInfluence2_"] = { type = "Prefix", affix = "Crusader's", "Adds (1-4) to (40-45) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1293, 3672 }, level = 71, group = "LocalLightningDamagePenetrationHybrid", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "sceptre_crusader", "wand_crusader", "bow_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamageAndPenetrationInfluence3"] = { type = "Prefix", affix = "Crusader's", "Adds (2-5) to (55-63) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1293, 3672 }, level = 74, group = "LocalLightningDamagePenetrationHybrid", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "sceptre_crusader", "wand_crusader", "bow_crusader", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamageAndPenetrationInfluence4"] = { type = "Prefix", affix = "Crusader's", "Adds (2-6) to (70-79) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1293, 3672 }, level = 77, group = "LocalLightningDamagePenetrationHybrid", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "sceptre_crusader", "wand_crusader", "bow_crusader", "default", }, weightVal = { 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamageAndPenetrationInfluence5"] = { type = "Prefix", affix = "Crusader's", "Adds (3-8) to (89-99) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1293, 3672 }, level = 80, group = "LocalLightningDamagePenetrationHybrid", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "sceptre_crusader", "wand_crusader", "bow_crusader", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamageAndPenetrationTwoHandInfluence1_"] = { type = "Prefix", affix = "Crusader's", "Adds 3 to (46-53) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1293, 3672 }, level = 68, group = "LocalLightningDamagePenetrationHybrid", weightKey = { "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamageAndPenetrationTwoHandInfluence2"] = { type = "Prefix", affix = "Crusader's", "Adds (2-7) to (74-84) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1293, 3672 }, level = 71, group = "LocalLightningDamagePenetrationHybrid", weightKey = { "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamageAndPenetrationTwoHandInfluence3"] = { type = "Prefix", affix = "Crusader's", "Adds (3-9) to (102-117) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1293, 3672 }, level = 74, group = "LocalLightningDamagePenetrationHybrid", weightKey = { "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamageAndPenetrationTwoHandInfluence4"] = { type = "Prefix", affix = "Crusader's", "Adds (3-12) to (130-146) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1293, 3672 }, level = 77, group = "LocalLightningDamagePenetrationHybrid", weightKey = { "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 300, 300, 300, 300, 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamageAndPenetrationTwoHandInfluence5"] = { type = "Prefix", affix = "Crusader's", "Adds (6-15) to (165-183) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1293, 3672 }, level = 80, group = "LocalLightningDamagePenetrationHybrid", weightKey = { "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedChaosDamageAndPenetrationInfluence1"] = { type = "Prefix", affix = "Hunter's", "Adds (5-7) to (11-13) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrder = { 1301, 7732 }, level = 68, group = "LocalChaosDamagePenetrationHybrid", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["LocalAddedChaosDamageAndPenetrationInfluence2"] = { type = "Prefix", affix = "Hunter's", "Adds (9-11) to (17-20) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrder = { 1301, 7732 }, level = 71, group = "LocalChaosDamagePenetrationHybrid", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["LocalAddedChaosDamageAndPenetrationInfluence3"] = { type = "Prefix", affix = "Hunter's", "Adds (12-16) to (24-28) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrder = { 1301, 7732 }, level = 74, group = "LocalChaosDamagePenetrationHybrid", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["LocalAddedChaosDamageAndPenetrationInfluence4"] = { type = "Prefix", affix = "Hunter's", "Adds (15-20) to (30-35) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrder = { 1301, 7732 }, level = 77, group = "LocalChaosDamagePenetrationHybrid", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["LocalAddedChaosDamageAndPenetrationInfluence5"] = { type = "Prefix", affix = "Hunter's", "Adds (18-25) to (38-44) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrder = { 1301, 7732 }, level = 80, group = "LocalChaosDamagePenetrationHybrid", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["LocalAddedChaosDamageAndPenetrationTwoHandInfluence1__"] = { type = "Prefix", affix = "Hunter's", "Adds (9-13) to (21-24) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrder = { 1301, 7732 }, level = 68, group = "LocalChaosDamagePenetrationHybrid", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["LocalAddedChaosDamageAndPenetrationTwoHandInfluence2"] = { type = "Prefix", affix = "Hunter's", "Adds (16-21) to (32-37) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrder = { 1301, 7732 }, level = 71, group = "LocalChaosDamagePenetrationHybrid", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["LocalAddedChaosDamageAndPenetrationTwoHandInfluence3"] = { type = "Prefix", affix = "Hunter's", "Adds (22-29) to (44-52) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrder = { 1301, 7732 }, level = 74, group = "LocalChaosDamagePenetrationHybrid", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["LocalAddedChaosDamageAndPenetrationTwoHandInfluence4"] = { type = "Prefix", affix = "Hunter's", "Adds (28-37) to (57-65) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrder = { 1301, 7732 }, level = 77, group = "LocalChaosDamagePenetrationHybrid", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "default", }, weightVal = { 300, 300, 300, 300, 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["LocalAddedChaosDamageAndPenetrationTwoHandInfluence5"] = { type = "Prefix", affix = "Hunter's", "Adds (35-48) to (72-81) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrder = { 1301, 7732 }, level = 80, group = "LocalChaosDamagePenetrationHybrid", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "default", }, weightVal = { 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["SpellAddedFireDamagePenetrationInfluence1_"] = { type = "Prefix", affix = "Warlord's", "Adds (6-8) to (12-14) Fire Damage to Spells", "Damage Penetrates 4% Fire Resistance", statOrder = { 1315, 2890 }, level = 68, group = "SpellAddedFireDamagePenetrationHybrid", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamagePenetrationInfluence2"] = { type = "Prefix", affix = "Warlord's", "Adds (10-13) to (19-22) Fire Damage to Spells", "Damage Penetrates 4% Fire Resistance", statOrder = { 1315, 2890 }, level = 71, group = "SpellAddedFireDamagePenetrationHybrid", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamagePenetrationInfluence3"] = { type = "Prefix", affix = "Warlord's", "Adds (13-18) to (27-31) Fire Damage to Spells", "Damage Penetrates 4% Fire Resistance", statOrder = { 1315, 2890 }, level = 74, group = "SpellAddedFireDamagePenetrationHybrid", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamagePenetrationInfluence4"] = { type = "Prefix", affix = "Warlord's", "Adds (17-22) to (33-39) Fire Damage to Spells", "Damage Penetrates 4% Fire Resistance", statOrder = { 1315, 2890 }, level = 77, group = "SpellAddedFireDamagePenetrationHybrid", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamagePenetrationInfluence5"] = { type = "Prefix", affix = "Warlord's", "Adds (21-28) to (42-49) Fire Damage to Spells", "Damage Penetrates 4% Fire Resistance", statOrder = { 1315, 2890 }, level = 80, group = "SpellAddedFireDamagePenetrationHybrid", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamagePenetrationTwoHandInfluence1_"] = { type = "Prefix", affix = "Warlord's", "Adds (8-11) to (17-19) Fire Damage to Spells", "Damage Penetrates (5-7)% Fire Resistance", statOrder = { 1315, 2890 }, level = 68, group = "SpellAddedFireDamagePenetrationHybrid", weightKey = { "staff_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamagePenetrationTwoHandInfluence2"] = { type = "Prefix", affix = "Warlord's", "Adds (13-17) to (26-30) Fire Damage to Spells", "Damage Penetrates (5-7)% Fire Resistance", statOrder = { 1315, 2890 }, level = 71, group = "SpellAddedFireDamagePenetrationHybrid", weightKey = { "staff_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamagePenetrationTwoHandInfluence3_"] = { type = "Prefix", affix = "Warlord's", "Adds (18-24) to (36-42) Fire Damage to Spells", "Damage Penetrates (5-7)% Fire Resistance", statOrder = { 1315, 2890 }, level = 74, group = "SpellAddedFireDamagePenetrationHybrid", weightKey = { "staff_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamagePenetrationTwoHandInfluence4"] = { type = "Prefix", affix = "Warlord's", "Adds (23-30) to (45-53) Fire Damage to Spells", "Damage Penetrates (5-7)% Fire Resistance", statOrder = { 1315, 2890 }, level = 77, group = "SpellAddedFireDamagePenetrationHybrid", weightKey = { "staff_adjudicator", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamagePenetrationTwoHandInfluence5_"] = { type = "Prefix", affix = "Warlord's", "Adds (28-38) to (57-66) Fire Damage to Spells", "Damage Penetrates (5-7)% Fire Resistance", statOrder = { 1315, 2890 }, level = 80, group = "SpellAddedFireDamagePenetrationHybrid", weightKey = { "staff_adjudicator", "default", }, weightVal = { 300, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedColdDamagePenetrationInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Adds (5-7) to (10-12) Cold Damage to Spells", "Damage Penetrates 4% Cold Resistance", statOrder = { 1316, 2892 }, level = 68, group = "SpellAddedColdDamagePenetrationHybrid", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamagePenetrationInfluence2_"] = { type = "Prefix", affix = "Redeemer's", "Adds (8-10) to (16-18) Cold Damage to Spells", "Damage Penetrates 4% Cold Resistance", statOrder = { 1316, 2892 }, level = 71, group = "SpellAddedColdDamagePenetrationHybrid", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamagePenetrationInfluence3"] = { type = "Prefix", affix = "Redeemer's", "Adds (11-15) to (22-25) Cold Damage to Spells", "Damage Penetrates 4% Cold Resistance", statOrder = { 1316, 2892 }, level = 74, group = "SpellAddedColdDamagePenetrationHybrid", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamagePenetrationInfluence4"] = { type = "Prefix", affix = "Redeemer's", "Adds (14-18) to (27-32) Cold Damage to Spells", "Damage Penetrates 4% Cold Resistance", statOrder = { 1316, 2892 }, level = 77, group = "SpellAddedColdDamagePenetrationHybrid", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamagePenetrationInfluence5"] = { type = "Prefix", affix = "Redeemer's", "Adds (17-23) to (34-40) Cold Damage to Spells", "Damage Penetrates 4% Cold Resistance", statOrder = { 1316, 2892 }, level = 80, group = "SpellAddedColdDamagePenetrationHybrid", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamagePenetrationTwoHandInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Adds (8-10) to (15-18) Cold Damage to Spells", "Damage Penetrates (5-7)% Cold Resistance", statOrder = { 1316, 2892 }, level = 68, group = "SpellAddedColdDamagePenetrationHybrid", weightKey = { "staff_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamagePenetrationTwoHandInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Adds (12-16) to (23-27) Cold Damage to Spells", "Damage Penetrates (5-7)% Cold Resistance", statOrder = { 1316, 2892 }, level = 71, group = "SpellAddedColdDamagePenetrationHybrid", weightKey = { "staff_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamagePenetrationTwoHandInfluence3"] = { type = "Prefix", affix = "Redeemer's", "Adds (16-22) to (33-38) Cold Damage to Spells", "Damage Penetrates (5-7)% Cold Resistance", statOrder = { 1316, 2892 }, level = 74, group = "SpellAddedColdDamagePenetrationHybrid", weightKey = { "staff_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamagePenetrationTwoHandInfluence4_"] = { type = "Prefix", affix = "Redeemer's", "Adds (21-27) to (41-48) Cold Damage to Spells", "Damage Penetrates (5-7)% Cold Resistance", statOrder = { 1316, 2892 }, level = 77, group = "SpellAddedColdDamagePenetrationHybrid", weightKey = { "staff_eyrie", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamagePenetrationTwoHandInfluence5"] = { type = "Prefix", affix = "Redeemer's", "Adds (26-34) to (52-60) Cold Damage to Spells", "Damage Penetrates (5-7)% Cold Resistance", statOrder = { 1316, 2892 }, level = 80, group = "SpellAddedColdDamagePenetrationHybrid", weightKey = { "staff_eyrie", "default", }, weightVal = { 300, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedLightningDamagePenetrationInfluence1___"] = { type = "Prefix", affix = "Crusader's", "Adds (1-2) to (21-22) Lightning Damage to Spells", "Damage Penetrates 4% Lightning Resistance", statOrder = { 1317, 2893 }, level = 68, group = "SpellAddedLightningDamagePenetrationHybrid", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamagePenetrationInfluence2_"] = { type = "Prefix", affix = "Crusader's", "Adds (1-3) to (33-35) Lightning Damage to Spells", "Damage Penetrates 4% Lightning Resistance", statOrder = { 1317, 2893 }, level = 71, group = "SpellAddedLightningDamagePenetrationHybrid", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamagePenetrationInfluence3"] = { type = "Prefix", affix = "Crusader's", "Adds (1-4) to (46-49) Lightning Damage to Spells", "Damage Penetrates 4% Lightning Resistance", statOrder = { 1317, 2893 }, level = 74, group = "SpellAddedLightningDamagePenetrationHybrid", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamagePenetrationInfluence4_"] = { type = "Prefix", affix = "Crusader's", "Adds (2-5) to (58-61) Lightning Damage to Spells", "Damage Penetrates 4% Lightning Resistance", statOrder = { 1317, 2893 }, level = 77, group = "SpellAddedLightningDamagePenetrationHybrid", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamagePenetrationInfluence5"] = { type = "Prefix", affix = "Crusader's", "Adds (2-6) to (73-77) Lightning Damage to Spells", "Damage Penetrates 4% Lightning Resistance", statOrder = { 1317, 2893 }, level = 80, group = "SpellAddedLightningDamagePenetrationHybrid", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamagePenetrationTwoHandInfluence1"] = { type = "Prefix", affix = "Crusader's", "Adds (1-3) to (32-34) Lightning Damage to Spells", "Damage Penetrates (5-7)% Lightning Resistance", statOrder = { 1317, 2893 }, level = 68, group = "SpellAddedLightningDamagePenetrationHybrid", weightKey = { "staff_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamagePenetrationTwoHandInfluence2"] = { type = "Prefix", affix = "Crusader's", "Adds (1-4) to (49-52) Lightning Damage to Spells", "Damage Penetrates (5-7)% Lightning Resistance", statOrder = { 1317, 2893 }, level = 71, group = "SpellAddedLightningDamagePenetrationHybrid", weightKey = { "staff_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamagePenetrationTwoHandInfluence3"] = { type = "Prefix", affix = "Crusader's", "Adds (2-6) to (69-73) Lightning Damage to Spells", "Damage Penetrates (5-7)% Lightning Resistance", statOrder = { 1317, 2893 }, level = 74, group = "SpellAddedLightningDamagePenetrationHybrid", weightKey = { "staff_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamagePenetrationTwoHandInfluence4__"] = { type = "Prefix", affix = "Crusader's", "Adds (2-7) to (87-92) Lightning Damage to Spells", "Damage Penetrates (5-7)% Lightning Resistance", statOrder = { 1317, 2893 }, level = 77, group = "SpellAddedLightningDamagePenetrationHybrid", weightKey = { "staff_crusader", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamagePenetrationTwoHandInfluence5_"] = { type = "Prefix", affix = "Crusader's", "Adds (3-9) to (109-115) Lightning Damage to Spells", "Damage Penetrates (5-7)% Lightning Resistance", statOrder = { 1317, 2893 }, level = 80, group = "SpellAddedLightningDamagePenetrationHybrid", weightKey = { "staff_crusader", "default", }, weightVal = { 300, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, }, + ["LocalWeaponFirePenetrationInfluence1"] = { type = "Prefix", affix = "Warlord's", "Attacks with this Weapon Penetrate (9-10)% Fire Resistance", statOrder = { 3670 }, level = 68, group = "LocalFirePenetration", weightKey = { "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "bow_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, }, + ["LocalWeaponFirePenetrationInfluence2"] = { type = "Prefix", affix = "Warlord's", "Attacks with this Weapon Penetrate (11-12)% Fire Resistance", statOrder = { 3670 }, level = 73, group = "LocalFirePenetration", weightKey = { "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "bow_adjudicator", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, }, + ["LocalWeaponFirePenetrationInfluence3"] = { type = "Prefix", affix = "Warlord's", "Attacks with this Weapon Penetrate (13-15)% Fire Resistance", statOrder = { 3670 }, level = 78, group = "LocalFirePenetration", weightKey = { "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "bow_adjudicator", "default", }, weightVal = { 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, }, + ["LocalWeaponColdPenetrationInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Attacks with this Weapon Penetrate (9-10)% Cold Resistance", statOrder = { 3671 }, level = 68, group = "LocalColdPenetration", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "sceptre_eyrie", "wand_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "bow_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, }, + ["LocalWeaponColdPenetrationInfluence2_"] = { type = "Prefix", affix = "Redeemer's", "Attacks with this Weapon Penetrate (11-12)% Cold Resistance", statOrder = { 3671 }, level = 73, group = "LocalColdPenetration", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "sceptre_eyrie", "wand_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "bow_eyrie", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, }, + ["LocalWeaponColdPenetrationInfluence3"] = { type = "Prefix", affix = "Redeemer's", "Attacks with this Weapon Penetrate (13-15)% Cold Resistance", statOrder = { 3671 }, level = 78, group = "LocalColdPenetration", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "sceptre_eyrie", "wand_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "bow_eyrie", "default", }, weightVal = { 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, }, + ["LocalWeaponLightningPenetrationInfluence1"] = { type = "Prefix", affix = "Crusader's", "Attacks with this Weapon Penetrate (9-10)% Lightning Resistance", statOrder = { 3672 }, level = 68, group = "LocalLightningPenetration", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "sceptre_crusader", "wand_crusader", "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "staff_crusader", "warstaff_crusader", "bow_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, }, + ["LocalWeaponLightningPenetrationInfluence2_"] = { type = "Prefix", affix = "Crusader's", "Attacks with this Weapon Penetrate (11-12)% Lightning Resistance", statOrder = { 3672 }, level = 73, group = "LocalLightningPenetration", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "sceptre_crusader", "wand_crusader", "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "staff_crusader", "warstaff_crusader", "bow_crusader", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, }, + ["LocalWeaponLightningPenetrationInfluence3"] = { type = "Prefix", affix = "Crusader's", "Attacks with this Weapon Penetrate (13-15)% Lightning Resistance", statOrder = { 3672 }, level = 78, group = "LocalLightningPenetration", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "sceptre_crusader", "wand_crusader", "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "staff_crusader", "warstaff_crusader", "bow_crusader", "default", }, weightVal = { 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, }, + ["LocalWeaponChaosPenetrationInfluence1"] = { type = "Prefix", affix = "Hunter's", "Attacks with this Weapon Penetrate (6-7)% Chaos Resistance", statOrder = { 7732 }, level = 68, group = "LocalChaosPenetration", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["LocalWeaponChaosPenetrationInfluence2"] = { type = "Prefix", affix = "Hunter's", "Attacks with this Weapon Penetrate (8-9)% Chaos Resistance", statOrder = { 7732 }, level = 73, group = "LocalChaosPenetration", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["LocalWeaponChaosPenetrationInfluence3"] = { type = "Prefix", affix = "Hunter's", "Attacks with this Weapon Penetrate (10-12)% Chaos Resistance", statOrder = { 7732 }, level = 78, group = "LocalChaosPenetration", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["LocalWeaponElementalPenetrationInfluence1_"] = { type = "Prefix", affix = "Hunter's", "Attacks with this Weapon Penetrate (6-7)% Elemental Resistances", statOrder = { 3669 }, level = 68, group = "LocalElementalPenetration", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["LocalWeaponElementalPenetrationInfluence2"] = { type = "Prefix", affix = "Hunter's", "Attacks with this Weapon Penetrate (8-9)% Elemental Resistances", statOrder = { 3669 }, level = 73, group = "LocalElementalPenetration", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["LocalWeaponElementalPenetrationInfluence3_"] = { type = "Prefix", affix = "Hunter's", "Attacks with this Weapon Penetrate (10-12)% Elemental Resistances", statOrder = { 3669 }, level = 78, group = "LocalElementalPenetration", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["FireResistancePenetrationInfluence1"] = { type = "Prefix", affix = "Warlord's", "Damage Penetrates 6% Fire Resistance", statOrder = { 2890 }, level = 68, group = "FireResistancePenetration", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, + ["FireResistancePenetrationInfluence2"] = { type = "Prefix", affix = "Warlord's", "Damage Penetrates 7% Fire Resistance", statOrder = { 2890 }, level = 73, group = "FireResistancePenetration", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, + ["FireResistancePenetrationInfluence3_"] = { type = "Prefix", affix = "Warlord's", "Damage Penetrates 8% Fire Resistance", statOrder = { 2890 }, level = 78, group = "FireResistancePenetration", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, + ["FireResistancePenetrationTwoHandInfluence1"] = { type = "Prefix", affix = "Warlord's", "Damage Penetrates (10-11)% Fire Resistance", statOrder = { 2890 }, level = 68, group = "FireResistancePenetration", weightKey = { "staff_adjudicator", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, + ["FireResistancePenetrationTwoHandInfluence2"] = { type = "Prefix", affix = "Warlord's", "Damage Penetrates (12-13)% Fire Resistance", statOrder = { 2890 }, level = 73, group = "FireResistancePenetration", weightKey = { "staff_adjudicator", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, + ["FireResistancePenetrationTwoHandInfluence3"] = { type = "Prefix", affix = "Warlord's", "Damage Penetrates (14-15)% Fire Resistance", statOrder = { 2890 }, level = 78, group = "FireResistancePenetration", weightKey = { "staff_adjudicator", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, + ["ColdResistancePenetrationInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Damage Penetrates 6% Cold Resistance", statOrder = { 2892 }, level = 68, group = "ColdResistancePenetration", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, }, + ["ColdResistancePenetrationInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Damage Penetrates 7% Cold Resistance", statOrder = { 2892 }, level = 73, group = "ColdResistancePenetration", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, }, + ["ColdResistancePenetrationInfluence3"] = { type = "Prefix", affix = "Redeemer's", "Damage Penetrates 8% Cold Resistance", statOrder = { 2892 }, level = 78, group = "ColdResistancePenetration", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, }, + ["ColdResistancePenetrationTwoHandInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Damage Penetrates (10-11)% Cold Resistance", statOrder = { 2892 }, level = 68, group = "ColdResistancePenetration", weightKey = { "staff_eyrie", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, }, + ["ColdResistancePenetrationTwoHandInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Damage Penetrates (12-13)% Cold Resistance", statOrder = { 2892 }, level = 73, group = "ColdResistancePenetration", weightKey = { "staff_eyrie", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, }, + ["ColdResistancePenetrationTwoHandInfluence3_"] = { type = "Prefix", affix = "Redeemer's", "Damage Penetrates (14-15)% Cold Resistance", statOrder = { 2892 }, level = 78, group = "ColdResistancePenetration", weightKey = { "staff_eyrie", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, }, + ["LightningResistancePenetrationInfluence1_"] = { type = "Prefix", affix = "Crusader's", "Damage Penetrates 6% Lightning Resistance", statOrder = { 2893 }, level = 68, group = "LightningResistancePenetration", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, }, + ["LightningResistancePenetrationInfluence2"] = { type = "Prefix", affix = "Crusader's", "Damage Penetrates 7% Lightning Resistance", statOrder = { 2893 }, level = 73, group = "LightningResistancePenetration", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, }, + ["LightningResistancePenetrationInfluence3"] = { type = "Prefix", affix = "Crusader's", "Damage Penetrates 8% Lightning Resistance", statOrder = { 2893 }, level = 78, group = "LightningResistancePenetration", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, }, + ["LightningResistancePenetrationTwoHandInfluence1_"] = { type = "Prefix", affix = "Crusader's", "Damage Penetrates (10-11)% Lightning Resistance", statOrder = { 2893 }, level = 68, group = "LightningResistancePenetration", weightKey = { "staff_crusader", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, }, + ["LightningResistancePenetrationTwoHandInfluence2_"] = { type = "Prefix", affix = "Crusader's", "Damage Penetrates (12-13)% Lightning Resistance", statOrder = { 2893 }, level = 73, group = "LightningResistancePenetration", weightKey = { "staff_crusader", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, }, + ["LightningResistancePenetrationTwoHandInfluence3__"] = { type = "Prefix", affix = "Crusader's", "Damage Penetrates (14-15)% Lightning Resistance", statOrder = { 2893 }, level = 78, group = "LightningResistancePenetration", weightKey = { "staff_crusader", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, }, + ["ElementalResistancePenetrationInfluence1"] = { type = "Prefix", affix = "Hunter's", "Damage Penetrates 4% Elemental Resistances", statOrder = { 2889 }, level = 68, group = "ElementalPenetration", weightKey = { "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["ElementalResistancePenetrationInfluence2_"] = { type = "Prefix", affix = "Hunter's", "Damage Penetrates 5% Elemental Resistances", statOrder = { 2889 }, level = 73, group = "ElementalPenetration", weightKey = { "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["ElementalResistancePenetrationInfluence3"] = { type = "Prefix", affix = "Hunter's", "Damage Penetrates 6% Elemental Resistances", statOrder = { 2889 }, level = 78, group = "ElementalPenetration", weightKey = { "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["ElementalResistancePenetrationTwoHandInfluence1"] = { type = "Prefix", affix = "Hunter's", "Damage Penetrates (7-8)% Elemental Resistances", statOrder = { 2889 }, level = 68, group = "ElementalPenetration", weightKey = { "staff_basilisk", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["ElementalResistancePenetrationTwoHandInfluence2"] = { type = "Prefix", affix = "Hunter's", "Damage Penetrates (9-10)% Elemental Resistances", statOrder = { 2889 }, level = 73, group = "ElementalPenetration", weightKey = { "staff_basilisk", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["ElementalResistancePenetrationTwoHandInfluence3"] = { type = "Prefix", affix = "Hunter's", "Damage Penetrates (11-12)% Elemental Resistances", statOrder = { 2889 }, level = 78, group = "ElementalPenetration", weightKey = { "staff_basilisk", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["PhysicalAddedAsExtraFireWeaponInfluence1"] = { type = "Prefix", affix = "Warlord's", "Gain (7-12)% of Physical Damage as Extra Fire Damage", statOrder = { 1841 }, level = 68, group = "PhysicalAddedAsFire", weightKey = { "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, }, + ["PhysicalAddedAsExtraFireWeaponInfluence2"] = { type = "Prefix", affix = "Warlord's", "Gain (13-17)% of Physical Damage as Extra Fire Damage", statOrder = { 1841 }, level = 73, group = "PhysicalAddedAsFire", weightKey = { "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, }, + ["PhysicalAddedAsExtraFireWeaponInfluence3_"] = { type = "Prefix", affix = "Warlord's", "Gain (18-20)% of Physical Damage as Extra Fire Damage", statOrder = { 1841 }, level = 78, group = "PhysicalAddedAsFire", weightKey = { "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, }, + ["PhysicalAddedAsExtraFireTwoHandWeaponInfluence1__"] = { type = "Prefix", affix = "Warlord's", "Gain (16-20)% of Physical Damage as Extra Fire Damage", statOrder = { 1841 }, level = 68, group = "PhysicalAddedAsFire", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, }, + ["PhysicalAddedAsExtraFireTwoHandWeaponInfluence2__"] = { type = "Prefix", affix = "Warlord's", "Gain (21-26)% of Physical Damage as Extra Fire Damage", statOrder = { 1841 }, level = 73, group = "PhysicalAddedAsFire", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, }, + ["PhysicalAddedAsExtraFireTwoHandWeaponInfluence3"] = { type = "Prefix", affix = "Warlord's", "Gain (27-30)% of Physical Damage as Extra Fire Damage", statOrder = { 1841 }, level = 78, group = "PhysicalAddedAsFire", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, }, + ["PhysicalAddedAsExtraColdWeaponInfluence1_"] = { type = "Prefix", affix = "Redeemer's", "Gain (7-12)% of Physical Damage as Extra Cold Damage", statOrder = { 1842 }, level = 68, group = "PhysicalAddedAsCold", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "sceptre_eyrie", "wand_eyrie", "bow_eyrie", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, }, + ["PhysicalAddedAsExtraColdWeaponInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Gain (13-17)% of Physical Damage as Extra Cold Damage", statOrder = { 1842 }, level = 73, group = "PhysicalAddedAsCold", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "sceptre_eyrie", "wand_eyrie", "bow_eyrie", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, }, + ["PhysicalAddedAsExtraColdWeaponInfluence3"] = { type = "Prefix", affix = "Redeemer's", "Gain (18-20)% of Physical Damage as Extra Cold Damage", statOrder = { 1842 }, level = 78, group = "PhysicalAddedAsCold", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "sceptre_eyrie", "wand_eyrie", "bow_eyrie", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, }, + ["PhysicalAddedAsExtraColdTwoHandWeaponInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Gain (16-20)% of Physical Damage as Extra Cold Damage", statOrder = { 1842 }, level = 68, group = "PhysicalAddedAsCold", weightKey = { "2h_sword_eyrie", "2h_axe_eyrie", "default", }, weightVal = { 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, }, + ["PhysicalAddedAsExtraColdTwoHandWeaponInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Gain (21-26)% of Physical Damage as Extra Cold Damage", statOrder = { 1842 }, level = 73, group = "PhysicalAddedAsCold", weightKey = { "2h_sword_eyrie", "2h_axe_eyrie", "default", }, weightVal = { 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, }, + ["PhysicalAddedAsExtraColdTwoHandWeaponInfluence3"] = { type = "Prefix", affix = "Redeemer's", "Gain (27-30)% of Physical Damage as Extra Cold Damage", statOrder = { 1842 }, level = 78, group = "PhysicalAddedAsCold", weightKey = { "2h_sword_eyrie", "2h_axe_eyrie", "default", }, weightVal = { 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, }, + ["PhysicalAddedAsExtraLightningWeaponInfluence1_"] = { type = "Prefix", affix = "Crusader's", "Gain (7-12)% of Physical Damage as Extra Lightning Damage", statOrder = { 1843 }, level = 68, group = "PhysicalAddedAsLightning", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "sceptre_crusader", "wand_crusader", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, }, + ["PhysicalAddedAsExtraLightningWeaponInfluence2"] = { type = "Prefix", affix = "Crusader's", "Gain (13-17)% of Physical Damage as Extra Lightning Damage", statOrder = { 1843 }, level = 73, group = "PhysicalAddedAsLightning", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "sceptre_crusader", "wand_crusader", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, }, + ["PhysicalAddedAsExtraLightningWeaponInfluence3_"] = { type = "Prefix", affix = "Crusader's", "Gain (18-20)% of Physical Damage as Extra Lightning Damage", statOrder = { 1843 }, level = 78, group = "PhysicalAddedAsLightning", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "sceptre_crusader", "wand_crusader", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, }, + ["PhysicalAddedAsExtraLightningTwoHandWeaponInfluence1_"] = { type = "Prefix", affix = "Crusader's", "Gain (16-20)% of Physical Damage as Extra Lightning Damage", statOrder = { 1843 }, level = 68, group = "PhysicalAddedAsLightning", weightKey = { "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, }, + ["PhysicalAddedAsExtraLightningTwoHandWeaponInfluence2"] = { type = "Prefix", affix = "Crusader's", "Gain (21-26)% of Physical Damage as Extra Lightning Damage", statOrder = { 1843 }, level = 73, group = "PhysicalAddedAsLightning", weightKey = { "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, }, + ["PhysicalAddedAsExtraLightningTwoHandWeaponInfluence3"] = { type = "Prefix", affix = "Crusader's", "Gain (27-30)% of Physical Damage as Extra Lightning Damage", statOrder = { 1843 }, level = 78, group = "PhysicalAddedAsLightning", weightKey = { "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, }, + ["AddedFireDamagePerStrengthInfluence1"] = { type = "Prefix", affix = "Hunter's", "Adds (1-2) to (3-4) Fire Damage to Attacks with this Weapon per 10 Strength", statOrder = { 4766 }, level = 68, group = "AddedFireDamagePerStrength", weightKey = { "sword_basilisk", "axe_basilisk", "mace_basilisk", "sceptre_basilisk", "default", }, weightVal = { 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedFireDamagePerStrengthTwoHandInfluence1"] = { type = "Prefix", affix = "Hunter's", "Adds (2-3) to (4-5) Fire Damage to Attacks with this Weapon per 10 Strength", statOrder = { 4766 }, level = 68, group = "AddedFireDamagePerStrength", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "default", }, weightVal = { 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedColdDamagePerDexterityInfluence1"] = { type = "Prefix", affix = "Hunter's", "Adds (1-2) to (3-4) Cold Damage to Attacks with this Weapon per 10 Dexterity", statOrder = { 4821 }, level = 68, group = "AddedColdDamagePerDexterity", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "bow_basilisk", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedColdDamagePerDexterityTwoHandInfluence1"] = { type = "Prefix", affix = "Hunter's", "Adds (2-3) to (4-5) Cold Damage to Attacks with this Weapon per 10 Dexterity", statOrder = { 4821 }, level = 68, group = "AddedColdDamagePerDexterity", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "default", }, weightVal = { 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedLightningDamagePerIntelligenceInfluence1"] = { type = "Prefix", affix = "Hunter's", "Adds 1 to (5-6) Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrder = { 4769 }, level = 68, group = "AddedLightningDamagePerIntelligence", weightKey = { "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "sceptre_basilisk", "wand_basilisk", "default", }, weightVal = { 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamagePerIntelligenceTwoHandInfluence1"] = { type = "Prefix", affix = "Hunter's", "Adds 1 to (7-8) Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrder = { 4769 }, level = 68, group = "AddedLightningDamagePerIntelligence", weightKey = { "staff_basilisk", "warstaff_basilisk", "default", }, weightVal = { 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["SpellDamagePer16StrengthInfluence1"] = { type = "Prefix", affix = "Hunter's", "1% increased Spell Damage per 16 Strength", statOrder = { 9940 }, level = 68, group = "SpellDamagePer16Strength", weightKey = { "sceptre_basilisk", "default", }, weightVal = { 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamagePer16DexterityInfluence1"] = { type = "Prefix", affix = "Hunter's", "1% increased Spell Damage per 16 Dexterity", statOrder = { 9938 }, level = 68, group = "SpellDamagePer16Dexterity", weightKey = { "rune_dagger_basilisk", "default", }, weightVal = { 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamagePer16IntelligenceInfluence1"] = { type = "Prefix", affix = "Hunter's", "1% increased Spell Damage per 16 Intelligence", statOrder = { 9939 }, level = 68, group = "SpellDamagePer16Intelligence", weightKey = { "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "default", }, weightVal = { 200, 200, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamagePer10StrengthInfluence1_"] = { type = "Prefix", affix = "Hunter's", "1% increased Spell Damage per 10 Strength", statOrder = { 9937 }, level = 68, group = "SpellDamagePer10Strength", weightKey = { "staff_basilisk", "default", }, weightVal = { 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamagePer10IntelligenceInfluence1"] = { type = "Prefix", affix = "Hunter's", "1% increased Spell Damage per 10 Intelligence", statOrder = { 2648 }, level = 68, group = "SpellDamagePer10Intelligence", weightKey = { "staff_basilisk", "default", }, weightVal = { 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["BurningDamagePrefixInfluence1___"] = { type = "Prefix", affix = "Warlord's", "(60-69)% increased Burning Damage", statOrder = { 1788 }, level = 68, group = "BurnDamagePrefix", weightKey = { "sceptre_adjudicator", "wand_adjudicator", "default", }, weightVal = { 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, }, + ["BurningDamagePrefixInfluence2"] = { type = "Prefix", affix = "Warlord's", "(70-79)% increased Burning Damage", statOrder = { 1788 }, level = 71, group = "BurnDamagePrefix", weightKey = { "sceptre_adjudicator", "wand_adjudicator", "default", }, weightVal = { 300, 300, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, }, + ["BurningDamagePrefixInfluence3"] = { type = "Prefix", affix = "Warlord's", "(80-89)% increased Burning Damage", statOrder = { 1788 }, level = 75, group = "BurnDamagePrefix", weightKey = { "sceptre_adjudicator", "wand_adjudicator", "default", }, weightVal = { 200, 200, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, }, + ["BurningDamagePrefixInfluence4"] = { type = "Prefix", affix = "Warlord's", "(90-94)% increased Burning Damage", statOrder = { 1788 }, level = 78, group = "BurnDamagePrefix", weightKey = { "sceptre_adjudicator", "wand_adjudicator", "default", }, weightVal = { 100, 100, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, }, + ["BurningDamagePrefixTwoHandInfluence1"] = { type = "Prefix", affix = "Warlord's", "(100-109)% increased Burning Damage", statOrder = { 1788 }, level = 68, group = "BurnDamagePrefix", weightKey = { "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, }, + ["BurningDamagePrefixTwoHandInfluence2_"] = { type = "Prefix", affix = "Warlord's", "(110-119)% increased Burning Damage", statOrder = { 1788 }, level = 71, group = "BurnDamagePrefix", weightKey = { "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 300, 300, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, }, + ["BurningDamagePrefixTwoHandInfluence3"] = { type = "Prefix", affix = "Warlord's", "(120-129)% increased Burning Damage", statOrder = { 1788 }, level = 75, group = "BurnDamagePrefix", weightKey = { "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 200, 200, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, }, + ["BurningDamagePrefixTwoHandInfluence4_"] = { type = "Prefix", affix = "Warlord's", "(130-134)% increased Burning Damage", statOrder = { 1788 }, level = 78, group = "BurnDamagePrefix", weightKey = { "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 100, 100, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, }, + ["BleedingDamagePrefixInfluence1"] = { type = "Prefix", affix = "Warlord's", "(60-69)% increased Physical Damage over Time", statOrder = { 1123 }, level = 68, group = "PhysicalDamageOverTimePrefix", weightKey = { "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "bow_adjudicator", "default", }, weightVal = { 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "ailment" }, }, + ["BleedingDamagePrefixInfluence2"] = { type = "Prefix", affix = "Warlord's", "(70-79)% increased Physical Damage over Time", statOrder = { 1123 }, level = 71, group = "PhysicalDamageOverTimePrefix", weightKey = { "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "bow_adjudicator", "default", }, weightVal = { 300, 300, 300, 300, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "ailment" }, }, + ["BleedingDamagePrefixInfluence3_"] = { type = "Prefix", affix = "Warlord's", "(80-89)% increased Physical Damage over Time", statOrder = { 1123 }, level = 75, group = "PhysicalDamageOverTimePrefix", weightKey = { "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "bow_adjudicator", "default", }, weightVal = { 200, 200, 200, 200, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "ailment" }, }, + ["BleedingDamagePrefixInfluence4"] = { type = "Prefix", affix = "Warlord's", "(90-94)% increased Physical Damage over Time", statOrder = { 1123 }, level = 78, group = "PhysicalDamageOverTimePrefix", weightKey = { "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "bow_adjudicator", "default", }, weightVal = { 100, 100, 100, 100, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "ailment" }, }, + ["BleedingDamagePrefixTwoHandInfluence1"] = { type = "Prefix", affix = "Warlord's", "(100-109)% increased Physical Damage over Time", statOrder = { 1123 }, level = 68, group = "PhysicalDamageOverTimePrefix", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "ailment" }, }, + ["BleedingDamagePrefixTwoHandInfluence2"] = { type = "Prefix", affix = "Warlord's", "(110-119)% increased Physical Damage over Time", statOrder = { 1123 }, level = 71, group = "PhysicalDamageOverTimePrefix", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "ailment" }, }, + ["BleedingDamagePrefixTwoHandInfluence3"] = { type = "Prefix", affix = "Warlord's", "(120-129)% increased Physical Damage over Time", statOrder = { 1123 }, level = 75, group = "PhysicalDamageOverTimePrefix", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 200, 200, 200, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "ailment" }, }, + ["BleedingDamagePrefixTwoHandInfluence4"] = { type = "Prefix", affix = "Warlord's", "(130-134)% increased Physical Damage over Time", statOrder = { 1123 }, level = 78, group = "PhysicalDamageOverTimePrefix", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 100, 100, 100, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "ailment" }, }, + ["PoisonDamagePrefixInfluence1__"] = { type = "Prefix", affix = "Hunter's", "(60-69)% increased Chaos Damage over Time", statOrder = { 1126 }, level = 68, group = "ChaosDamageOverTimePrefix", weightKey = { "sword_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "bow_basilisk", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["PoisonDamagePrefixInfluence2__"] = { type = "Prefix", affix = "Hunter's", "(70-79)% increased Chaos Damage over Time", statOrder = { 1126 }, level = 71, group = "ChaosDamageOverTimePrefix", weightKey = { "sword_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "bow_basilisk", "default", }, weightVal = { 300, 300, 300, 300, 300, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["PoisonDamagePrefixInfluence3"] = { type = "Prefix", affix = "Hunter's", "(80-89)% increased Chaos Damage over Time", statOrder = { 1126 }, level = 75, group = "ChaosDamageOverTimePrefix", weightKey = { "sword_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "bow_basilisk", "default", }, weightVal = { 200, 200, 200, 200, 200, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["PoisonDamagePrefixInfluence4"] = { type = "Prefix", affix = "Hunter's", "(90-94)% increased Chaos Damage over Time", statOrder = { 1126 }, level = 78, group = "ChaosDamageOverTimePrefix", weightKey = { "sword_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "bow_basilisk", "default", }, weightVal = { 100, 100, 100, 100, 100, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["PoisonDamagePrefixTwoHandInfluence1"] = { type = "Prefix", affix = "Hunter's", "(100-109)% increased Chaos Damage over Time", statOrder = { 1126 }, level = 68, group = "ChaosDamageOverTimePrefix", weightKey = { "2h_sword_basilisk", "default", }, weightVal = { 400, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["PoisonDamagePrefixTwoHandInfluence2__"] = { type = "Prefix", affix = "Hunter's", "(110-119)% increased Chaos Damage over Time", statOrder = { 1126 }, level = 71, group = "ChaosDamageOverTimePrefix", weightKey = { "2h_sword_basilisk", "default", }, weightVal = { 300, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["PoisonDamagePrefixTwoHandInfluence3"] = { type = "Prefix", affix = "Hunter's", "(120-129)% increased Chaos Damage over Time", statOrder = { 1126 }, level = 75, group = "ChaosDamageOverTimePrefix", weightKey = { "2h_sword_basilisk", "default", }, weightVal = { 200, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["PoisonDamagePrefixTwoHandInfluence4_"] = { type = "Prefix", affix = "Hunter's", "(130-134)% increased Chaos Damage over Time", statOrder = { 1126 }, level = 78, group = "ChaosDamageOverTimePrefix", weightKey = { "2h_sword_basilisk", "default", }, weightVal = { 100, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["FasterIgniteDamageInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Ignites you inflict deal Damage (8-12)% faster", statOrder = { 2473 }, level = 68, group = "FasterIgniteDamage", weightKey = { "sceptre_basilisk", "wand_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, + ["FasterIgniteDamageInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Ignites you inflict deal Damage (13-15)% faster", statOrder = { 2473 }, level = 73, group = "FasterIgniteDamage", weightKey = { "sceptre_basilisk", "wand_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, + ["FasterIgniteDamageTwoHandInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Ignites you inflict deal Damage (18-21)% faster", statOrder = { 2473 }, level = 68, group = "FasterIgniteDamage", weightKey = { "staff_basilisk", "warstaff_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, + ["FasterIgniteDamageTwoHandInfluence2_"] = { type = "Suffix", affix = "of the Hunt", "Ignites you inflict deal Damage (22-25)% faster", statOrder = { 2473 }, level = 73, group = "FasterIgniteDamage", weightKey = { "staff_basilisk", "warstaff_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, + ["FasterBleedDamageInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "Bleeding you inflict deals Damage (8-12)% faster", statOrder = { 6430 }, level = 68, group = "FasterBleedDamage", weightKey = { "sword_basilisk", "axe_basilisk", "mace_basilisk", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["FasterBleedDamageInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Bleeding you inflict deals Damage (13-15)% faster", statOrder = { 6430 }, level = 73, group = "FasterBleedDamage", weightKey = { "sword_basilisk", "axe_basilisk", "mace_basilisk", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["FasterBleedDamageTwoHandInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Bleeding you inflict deals Damage (18-21)% faster", statOrder = { 6430 }, level = 68, group = "FasterBleedDamage", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["FasterBleedDamageTwoHandInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Bleeding you inflict deals Damage (22-25)% faster", statOrder = { 6430 }, level = 73, group = "FasterBleedDamage", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["FasterPoisonDamageInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Poisons you inflict deal Damage (8-12)% faster", statOrder = { 6431 }, level = 68, group = "FasterPoisonDamage", weightKey = { "sword_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["FasterPoisonDamageInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Poisons you inflict deal Damage (13-15)% faster", statOrder = { 6431 }, level = 73, group = "FasterPoisonDamage", weightKey = { "sword_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["FasterPoisonDamageTwoHandInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Poisons you inflict deal Damage (18-21)% faster", statOrder = { 6431 }, level = 68, group = "FasterPoisonDamage", weightKey = { "2h_sword_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["FasterPoisonDamageTwoHandInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Poisons you inflict deal Damage (22-25)% faster", statOrder = { 6431 }, level = 73, group = "FasterPoisonDamage", weightKey = { "2h_sword_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["ImpaleEffectWeaponInfluence1__"] = { type = "Suffix", affix = "of the Crusade", "(12-16)% increased Impale Effect", statOrder = { 7107 }, level = 68, group = "ImpaleEffect", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "influence_mod", "physical" }, }, + ["ImpaleEffectWeaponInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "(17-21)% increased Impale Effect", statOrder = { 7107 }, level = 71, group = "ImpaleEffect", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "influence_mod", "physical" }, }, + ["ImpaleEffectWeaponInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(22-25)% increased Impale Effect", statOrder = { 7107 }, level = 75, group = "ImpaleEffect", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "influence_mod", "physical" }, }, + ["ImpaleEffectTwoHandWeaponInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(25-29)% increased Impale Effect", statOrder = { 7107 }, level = 68, group = "ImpaleEffect", weightKey = { "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "bow_crusader", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod", "physical" }, }, + ["ImpaleEffectTwoHandWeaponInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(30-34)% increased Impale Effect", statOrder = { 7107 }, level = 71, group = "ImpaleEffect", weightKey = { "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "bow_crusader", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod", "physical" }, }, + ["ImpaleEffectTwoHandWeaponInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(35-38)% increased Impale Effect", statOrder = { 7107 }, level = 75, group = "ImpaleEffect", weightKey = { "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "bow_crusader", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod", "physical" }, }, + ["ConvertPhysicalToFireInfluenceWeapon1"] = { type = "Suffix", affix = "of the Crusade", "(23-26)% of Physical Damage Converted to Fire Damage", statOrder = { 1864 }, level = 68, group = "ConvertPhysicalToFire", weightKey = { "sword_crusader", "axe_crusader", "mace_crusader", "sceptre_crusader", "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, }, + ["ConvertPhysicalToFireInfluenceWeapon2_"] = { type = "Suffix", affix = "of the Crusade", "(27-30)% of Physical Damage Converted to Fire Damage", statOrder = { 1864 }, level = 71, group = "ConvertPhysicalToFire", weightKey = { "sword_crusader", "axe_crusader", "mace_crusader", "sceptre_crusader", "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, }, + ["ConvertPhysicalToColdInfluenceWeapon1"] = { type = "Suffix", affix = "of the Crusade", "(23-26)% of Physical Damage Converted to Cold Damage", statOrder = { 1866 }, level = 68, group = "ConvertPhysicalToCold", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "sceptre_crusader", "2h_sword_crusader", "2h_axe_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, }, + ["ConvertPhysicalToColdInfluenceWeapon2_"] = { type = "Suffix", affix = "of the Crusade", "(27-30)% of Physical Damage Converted to Cold Damage", statOrder = { 1866 }, level = 71, group = "ConvertPhysicalToCold", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "sceptre_crusader", "2h_sword_crusader", "2h_axe_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, }, + ["ConvertPhysicalToLightningInfluenceWeapon1"] = { type = "Suffix", affix = "of the Crusade", "(23-26)% of Physical Damage Converted to Lightning Damage", statOrder = { 1868 }, level = 68, group = "ConvertPhysicalToLightning", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "sceptre_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, }, + ["ConvertPhysicalToLightningInfluenceWeapon2_"] = { type = "Suffix", affix = "of the Crusade", "(27-30)% of Physical Damage Converted to Lightning Damage", statOrder = { 1868 }, level = 71, group = "ConvertPhysicalToLightning", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "sceptre_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, }, + ["ConvertPhysicalToChaosInfluenceWeapon1"] = { type = "Suffix", affix = "of the Hunt", "(16-20)% of Physical Damage Converted to Chaos Damage", statOrder = { 1871 }, level = 68, group = "PhysicalDamageConvertedToChaos", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, + ["ConvertPhysicalToChaosInfluenceWeapon2"] = { type = "Suffix", affix = "of the Hunt", "(21-25)% of Physical Damage Converted to Chaos Damage", statOrder = { 1871 }, level = 71, group = "PhysicalDamageConvertedToChaos", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, + ["ArmourPenetrationWeaponInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Hits with this Weapon have (50-65)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7789 }, level = 68, group = "LocalArmourPenetration", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["ArmourPenetrationWeaponInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Hits with this Weapon have (66-80)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7789 }, level = 71, group = "LocalArmourPenetration", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["ArmourPenetrationTwoHandWeaponInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "Hits with this Weapon have (50-65)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7789 }, level = 68, group = "LocalArmourPenetration", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["ArmourPenetrationTwoHandWeaponInfluence2_"] = { type = "Suffix", affix = "of the Hunt", "Hits with this Weapon have (66-80)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7789 }, level = 71, group = "LocalArmourPenetration", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["ArmourPenetrationSpellWeaponInfluence1__"] = { type = "Suffix", affix = "of the Hunt", "Hits have (25-29)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7037 }, level = 68, group = "ChanceToIgnoreEnemyArmour", weightKey = { "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "physical" }, }, + ["ArmourPenetrationSpellWeaponInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Hits have (30-35)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7037 }, level = 71, group = "ChanceToIgnoreEnemyArmour", weightKey = { "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "physical" }, }, + ["ArmourPenetrationSpellTwoHandWeaponInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Hits have (50-59)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7037 }, level = 68, group = "ChanceToIgnoreEnemyArmour", weightKey = { "staff_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical" }, }, + ["ArmourPenetrationSpellTwoHandWeaponInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Hits have (60-70)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7037 }, level = 71, group = "ChanceToIgnoreEnemyArmour", weightKey = { "staff_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical" }, }, + ["FireExposureOnHitWeaponInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "(11-15)% chance to inflict Fire Exposure on Hit", statOrder = { 4921 }, level = 75, group = "FireExposureOnHit", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "staff_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, }, + ["FireExposureOnHitWeaponInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(16-20)% chance to inflict Fire Exposure on Hit", statOrder = { 4921 }, level = 80, group = "FireExposureOnHit", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "staff_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, }, + ["ColdExposureOnHitWeaponInfluence1"] = { type = "Suffix", affix = "of Redemption", "(11-15)% chance to inflict Cold Exposure on Hit", statOrder = { 4920 }, level = 75, group = "ColdExposureOnHit", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "staff_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, }, + ["ColdExposureOnHitWeaponInfluence2"] = { type = "Suffix", affix = "of Redemption", "(16-20)% chance to inflict Cold Exposure on Hit", statOrder = { 4920 }, level = 80, group = "ColdExposureOnHit", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "staff_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, }, + ["LightningExposureOnHitWeaponInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(11-15)% chance to inflict Lightning Exposure on Hit", statOrder = { 4922 }, level = 75, group = "LightningExposureOnHit", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "staff_crusader", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, }, + ["LightningExposureOnHitWeaponInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(16-20)% chance to inflict Lightning Exposure on Hit", statOrder = { 4922 }, level = 80, group = "LightningExposureOnHit", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "staff_crusader", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, }, + ["ChanceToUnnerveOnHitWeaponInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(7-11)% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5622 }, level = 78, group = "ChanceToUnnerveOnHit", weightKey = { "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "staff_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { }, }, + ["ChanceToUnnerveOnHitWeaponInfluence2__"] = { type = "Suffix", affix = "of the Hunt", "(12-15)% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5622 }, level = 81, group = "ChanceToUnnerveOnHit", weightKey = { "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "staff_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { }, }, + ["ChanceToIntimidateOnHitWeaponInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(7-11)% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 7731 }, level = 78, group = "LocalChanceToIntimidateOnHit", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attack" }, }, + ["ChanceToIntimidateOnHitWeaponInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(12-15)% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 7731 }, level = 81, group = "LocalChanceToIntimidateOnHit", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attack" }, }, + ["DamageFromAurasWeaponInfluence1"] = { type = "Suffix", affix = "of Redemption", "Auras from your Skills grant 2% increased Damage to you and Allies", statOrder = { 3366 }, level = 82, group = "IncreasedDamageFromAuras", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "sceptre_eyrie", "wand_eyrie", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 0 }, modTags = { "influence_mod", "damage", "aura" }, }, + ["DamageFromAurasTwoHandWeaponInfluence1"] = { type = "Suffix", affix = "of Redemption", "Auras from your Skills grant 4% increased Damage to you and Allies", statOrder = { 3366 }, level = 82, group = "IncreasedDamageFromAuras", weightKey = { "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "bow_eyrie", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 0 }, modTags = { "influence_mod", "damage", "aura" }, }, + ["LocalChanceToMaimPhysicalDamageInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(10-13)% increased Physical Damage", "10% chance to Maim on Hit", statOrder = { 1144, 7836 }, level = 68, group = "LocalChanceToMaimPhysicalDamage", weightKey = { "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "bow_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, }, + ["LocalChanceToMaimPhysicalDamageInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(14-16)% increased Physical Damage", "15% chance to Maim on Hit", statOrder = { 1144, 7836 }, level = 70, group = "LocalChanceToMaimPhysicalDamage", weightKey = { "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "bow_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, }, + ["LocalChanceToMaimPhysicalDamageInfluence3"] = { type = "Suffix", affix = "of the Conquest", "(17-20)% increased Physical Damage", "20% chance to Maim on Hit", statOrder = { 1144, 7836 }, level = 73, group = "LocalChanceToMaimPhysicalDamage", weightKey = { "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "bow_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, }, + ["BlindOnHitWeaponInfluence1"] = { type = "Suffix", affix = "of Redemption", "(15-18)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4812 }, level = 68, group = "AttacksBlindOnHitChance", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "bow_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, }, + ["BlindOnHitWeaponInfluence2"] = { type = "Suffix", affix = "of Redemption", "(19-22)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4812 }, level = 70, group = "AttacksBlindOnHitChance", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "bow_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, }, + ["BlindOnHitWeaponInfluence3"] = { type = "Suffix", affix = "of Redemption", "(23-25)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4812 }, level = 73, group = "AttacksBlindOnHitChance", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "bow_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, }, + ["OnslaugtOnKillWeaponInfluence1"] = { type = "Suffix", affix = "of Redemption", "(15-18)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3288 }, level = 68, group = "OnslaugtOnKillPercentChance", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "wand_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "bow_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, }, + ["OnslaugtOnKillWeaponInfluence2"] = { type = "Suffix", affix = "of Redemption", "(19-22)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3288 }, level = 70, group = "OnslaugtOnKillPercentChance", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "wand_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "bow_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, }, + ["OnslaugtOnKillWeaponInfluence3"] = { type = "Suffix", affix = "of Redemption", "(23-25)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3288 }, level = 73, group = "OnslaugtOnKillPercentChance", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "wand_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "bow_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, }, + ["PhasingOnKillWeaponInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "(15-18)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3373 }, level = 68, group = "ChancetoGainPhasingOnKill", weightKey = { "wand_adjudicator", "bow_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod" }, }, + ["PhasingOnKillWeaponInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(19-22)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3373 }, level = 70, group = "ChancetoGainPhasingOnKill", weightKey = { "wand_adjudicator", "bow_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod" }, }, + ["PhasingOnKillWeaponInfluence3"] = { type = "Suffix", affix = "of the Conquest", "(23-25)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3373 }, level = 73, group = "ChancetoGainPhasingOnKill", weightKey = { "wand_adjudicator", "bow_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod" }, }, + ["UnholyMightOnKillWeaponInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(15-18)% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3285 }, level = 68, group = "UnholyMightOnKillPercentChance", weightKey = { "wand_adjudicator", "claw_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, }, + ["UnholyMightOnKillWeaponInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(19-22)% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3285 }, level = 70, group = "UnholyMightOnKillPercentChance", weightKey = { "wand_adjudicator", "claw_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, }, + ["UnholyMightOnKillWeaponInfluence3"] = { type = "Suffix", affix = "of the Conquest", "(23-25)% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3285 }, level = 73, group = "UnholyMightOnKillPercentChance", weightKey = { "wand_adjudicator", "claw_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, }, + ["BlockWhileDualWieldingInfluence1__"] = { type = "Suffix", affix = "of Redemption", "+(2-4)% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1074 }, level = 68, group = "BlockWhileDualWielding", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "block", "influence_mod" }, }, + ["BlockWhileDualWieldingInfluence2"] = { type = "Suffix", affix = "of Redemption", "+(5-7)% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1074 }, level = 70, group = "BlockWhileDualWielding", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "block", "influence_mod" }, }, + ["BlockWhileDualWieldingInfluence3"] = { type = "Suffix", affix = "of Redemption", "+(8-9)% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1074 }, level = 73, group = "BlockWhileDualWielding", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "block", "influence_mod" }, }, + ["PhysicalDamageWhileDualWieldingInfluence1__"] = { type = "Suffix", affix = "of the Conquest", "(23-27)% increased Physical Attack Damage while Dual Wielding", statOrder = { 1190 }, level = 68, group = "DualWieldingPhysicalDamage", weightKey = { "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, }, + ["PhysicalDamageWhileDualWieldingInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "(28-32)% increased Physical Attack Damage while Dual Wielding", statOrder = { 1190 }, level = 70, group = "DualWieldingPhysicalDamage", weightKey = { "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, }, + ["PhysicalDamageWhileDualWieldingInfluence3"] = { type = "Suffix", affix = "of the Conquest", "(33-37)% increased Physical Attack Damage while Dual Wielding", statOrder = { 1190 }, level = 73, group = "DualWieldingPhysicalDamage", weightKey = { "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, }, + ["LocalMeleeWeaponRangeInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+0.2 metres to Weapon Range", statOrder = { 2655 }, level = 68, group = "LocalWeaponRangeUber", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, }, + ["LocalMeleeWeaponRangeInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "+0.3 metres to Weapon Range", statOrder = { 2655 }, level = 73, group = "LocalWeaponRangeUber", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, }, + ["MovementVelocityWeaponInfluence1"] = { type = "Suffix", affix = "of Redemption", "(3-6)% increased Movement Speed", statOrder = { 1709 }, level = 68, group = "MovementVelocity", weightKey = { "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "bow_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "influence_mod", "speed" }, }, + ["MovementVelocityWeaponInfluence2"] = { type = "Suffix", affix = "of Redemption", "(7-10)% increased Movement Speed", statOrder = { 1709 }, level = 73, group = "MovementVelocity", weightKey = { "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "bow_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "influence_mod", "speed" }, }, + ["SpellsDoubleDamageChanceInfluence1"] = { type = "Suffix", affix = "of Redemption", "Spells have a (4-5)% chance to deal Double Damage", statOrder = { 9920 }, level = 75, group = "SpellsDoubleDamageChance", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, }, + ["SpellsDoubleDamageChanceInfluence2"] = { type = "Suffix", affix = "of Redemption", "Spells have a (6-7)% chance to deal Double Damage", statOrder = { 9920 }, level = 80, group = "SpellsDoubleDamageChance", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, }, + ["SpellsDoubleDamageChanceTwoHandInfluence1_"] = { type = "Suffix", affix = "of Redemption", "Spells have a (10-11)% chance to deal Double Damage", statOrder = { 9920 }, level = 75, group = "SpellsDoubleDamageChance", weightKey = { "staff_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, }, + ["SpellsDoubleDamageChanceTwoHandInfluence2"] = { type = "Suffix", affix = "of Redemption", "Spells have a (12-14)% chance to deal Double Damage", statOrder = { 9920 }, level = 80, group = "SpellsDoubleDamageChance", weightKey = { "staff_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, }, + ["DamagePerEnduranceChargeWeaponInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(5-7)% increased Damage per Endurance Charge", statOrder = { 3107 }, level = 68, group = "DamagePerEnduranceCharge", weightKey = { "sceptre_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, + ["DamagePerEnduranceChargeWeaponInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "(8-10)% increased Damage per Endurance Charge", statOrder = { 3107 }, level = 73, group = "DamagePerEnduranceCharge", weightKey = { "sceptre_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, + ["DamagePerFrenzyChargeWeaponInfluence1__"] = { type = "Suffix", affix = "of Redemption", "(5-7)% increased Damage per Frenzy Charge", statOrder = { 3194 }, level = 68, group = "DamagePerFrenzyCharge", weightKey = { "rune_dagger_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, + ["DamagePerFrenzyChargeWeaponInfluence2"] = { type = "Suffix", affix = "of Redemption", "(8-10)% increased Damage per Frenzy Charge", statOrder = { 3194 }, level = 73, group = "DamagePerFrenzyCharge", weightKey = { "rune_dagger_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, + ["DamagePerPowerChargeWeaponInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "(5-7)% increased Damage per Power Charge", statOrder = { 5961 }, level = 68, group = "IncreasedDamagePerPowerCharge", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "damage" }, }, + ["DamagePerPowerChargeWeaponInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(8-10)% increased Damage per Power Charge", statOrder = { 5961 }, level = 73, group = "IncreasedDamagePerPowerCharge", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "damage" }, }, + ["DamagePerEnduranceChargeTwoHandWeaponInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(10-13)% increased Damage per Endurance Charge", statOrder = { 3107 }, level = 68, group = "DamagePerEnduranceCharge", weightKey = { "staff_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, + ["DamagePerEnduranceChargeTwoHandWeaponInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(14-17)% increased Damage per Endurance Charge", statOrder = { 3107 }, level = 73, group = "DamagePerEnduranceCharge", weightKey = { "staff_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, + ["DamagePerPowerChargeTwoHandWeaponInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(10-13)% increased Damage per Power Charge", statOrder = { 5961 }, level = 68, group = "IncreasedDamagePerPowerCharge", weightKey = { "staff_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, + ["DamagePerPowerChargeTwoHandWeaponInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "(14-17)% increased Damage per Power Charge", statOrder = { 5961 }, level = 73, group = "IncreasedDamagePerPowerCharge", weightKey = { "staff_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, + ["BaseManaRegenerationInfluence1_____"] = { type = "Suffix", affix = "of the Conquest", "Regenerate 0.3% of Mana per second", statOrder = { 1492 }, level = 68, group = "BaseManaRegeneration", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, + ["BaseManaRegenerationInfluence2"] = { type = "Suffix", affix = "of the Conquest", "Regenerate 0.4% of Mana per second", statOrder = { 1492 }, level = 73, group = "BaseManaRegeneration", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, + ["BaseManaRegenerationTwoHandInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "Regenerate 0.7% of Mana per second", statOrder = { 1492 }, level = 68, group = "BaseManaRegeneration", weightKey = { "staff_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, + ["BaseManaRegenerationTwoHandInfluence2"] = { type = "Suffix", affix = "of the Conquest", "Regenerate 0.8% of Mana per second", statOrder = { 1492 }, level = 73, group = "BaseManaRegeneration", weightKey = { "staff_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, + ["AngerAuraEffectInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Anger has (28-33)% increased Aura Effect", statOrder = { 3264 }, level = 75, group = "AngerAuraEffect", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "aura" }, }, + ["AngerAuraEffectInfluence2"] = { type = "Suffix", affix = "of the Conquest", "Anger has (34-40)% increased Aura Effect", statOrder = { 3264 }, level = 80, group = "AngerAuraEffect", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "aura" }, }, + ["AngerAuraEffectTwoHandInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Anger has (48-54)% increased Aura Effect", statOrder = { 3264 }, level = 75, group = "AngerAuraEffect", weightKey = { "staff_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "aura" }, }, + ["AngerAuraEffectTwoHandInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "Anger has (55-60)% increased Aura Effect", statOrder = { 3264 }, level = 80, group = "AngerAuraEffect", weightKey = { "staff_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "aura" }, }, + ["HatredAuraEffectInfluence1"] = { type = "Suffix", affix = "of Redemption", "Hatred has (28-33)% increased Aura Effect", statOrder = { 3274 }, level = 75, group = "HatredAuraEffect", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "aura" }, }, + ["HatredAuraEffectInfluence2__"] = { type = "Suffix", affix = "of Redemption", "Hatred has (34-40)% increased Aura Effect", statOrder = { 3274 }, level = 80, group = "HatredAuraEffect", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "aura" }, }, + ["HatredAuraEffectTwoHandInfluence1"] = { type = "Suffix", affix = "of Redemption", "Hatred has (48-54)% increased Aura Effect", statOrder = { 3274 }, level = 75, group = "HatredAuraEffect", weightKey = { "staff_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "aura" }, }, + ["HatredAuraEffectTwoHandInfluence2__"] = { type = "Suffix", affix = "of Redemption", "Hatred has (55-60)% increased Aura Effect", statOrder = { 3274 }, level = 80, group = "HatredAuraEffect", weightKey = { "staff_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "aura" }, }, + ["WrathAuraEffectInfluence1__"] = { type = "Suffix", affix = "of the Crusade", "Wrath has (28-33)% increased Aura Effect", statOrder = { 3269 }, level = 75, group = "WrathAuraEffect", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "aura" }, }, + ["WrathAuraEffectInfluence2"] = { type = "Suffix", affix = "of the Crusade", "Wrath has (34-40)% increased Aura Effect", statOrder = { 3269 }, level = 80, group = "WrathAuraEffect", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "aura" }, }, + ["WrathAuraEffectTwoHandInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Wrath has (48-54)% increased Aura Effect", statOrder = { 3269 }, level = 75, group = "WrathAuraEffect", weightKey = { "staff_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "aura" }, }, + ["WrathAuraEffectTwoHandInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "Wrath has (55-60)% increased Aura Effect", statOrder = { 3269 }, level = 80, group = "WrathAuraEffect", weightKey = { "staff_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "aura" }, }, + ["MalevolenceAuraEffectInfluence1____"] = { type = "Suffix", affix = "of the Hunt", "Malevolence has (28-33)% increased Aura Effect", statOrder = { 6055 }, level = 75, group = "MalevolenceAuraEffect", weightKey = { "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "aura" }, }, + ["MalevolenceAuraEffectInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Malevolence has (34-40)% increased Aura Effect", statOrder = { 6055 }, level = 80, group = "MalevolenceAuraEffect", weightKey = { "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "aura" }, }, + ["MalevolenceAuraEffectTwoHandInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Malevolence has (48-54)% increased Aura Effect", statOrder = { 6055 }, level = 75, group = "MalevolenceAuraEffect", weightKey = { "staff_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "aura" }, }, + ["MalevolenceAuraEffectTwoHandInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Malevolence has (55-60)% increased Aura Effect", statOrder = { 6055 }, level = 80, group = "MalevolenceAuraEffect", weightKey = { "staff_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "aura" }, }, + ["ZealotryAuraEffectInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Zealotry has (28-33)% increased Aura Effect", statOrder = { 10495 }, level = 75, group = "ZealotryAuraEffect", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "aura" }, }, + ["ZealotryAuraEffectInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "Zealotry has (34-40)% increased Aura Effect", statOrder = { 10495 }, level = 80, group = "ZealotryAuraEffect", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "aura" }, }, + ["ZealotryAuraEffectTwoHandInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "Zealotry has (48-54)% increased Aura Effect", statOrder = { 10495 }, level = 75, group = "ZealotryAuraEffect", weightKey = { "staff_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "aura" }, }, + ["ZealotryAuraEffectTwoHandInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "Zealotry has (55-60)% increased Aura Effect", statOrder = { 10495 }, level = 80, group = "ZealotryAuraEffect", weightKey = { "staff_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "aura" }, }, + ["DamageWhileLeechingWeaponInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "(18-22)% increased Damage while Leeching", statOrder = { 2971 }, level = 68, group = "DamageWhileLeeching", weightKey = { "sword_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, + ["DamageWhileLeechingWeaponInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(23-26)% increased Damage while Leeching", statOrder = { 2971 }, level = 70, group = "DamageWhileLeeching", weightKey = { "sword_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, + ["DamageWhileLeechingWeaponInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(27-30)% increased Damage while Leeching", statOrder = { 2971 }, level = 73, group = "DamageWhileLeeching", weightKey = { "sword_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, + ["DamageWhileLeechingWeaponTwoHandInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "(32-36)% increased Damage while Leeching", statOrder = { 2971 }, level = 68, group = "DamageWhileLeeching", weightKey = { "2h_sword_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, + ["DamageWhileLeechingWeaponTwoHandInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(37-41)% increased Damage while Leeching", statOrder = { 2971 }, level = 70, group = "DamageWhileLeeching", weightKey = { "2h_sword_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, + ["DamageWhileLeechingWeaponTwoHandInfluence3_"] = { type = "Suffix", affix = "of the Crusade", "(42-45)% increased Damage while Leeching", statOrder = { 2971 }, level = 73, group = "DamageWhileLeeching", weightKey = { "2h_sword_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, + ["AttackSpeedWithFortifyInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(10-12)% increased Attack Speed while Fortified", statOrder = { 3123 }, level = 68, group = "AttackSpeedWithFortify", weightKey = { "sword_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack", "speed" }, }, + ["AttackSpeedWithFortifyInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(13-15)% increased Attack Speed while Fortified", statOrder = { 3123 }, level = 73, group = "AttackSpeedWithFortify", weightKey = { "sword_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack", "speed" }, }, + ["AttackSpeedWithFortifyTwoHandInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(20-22)% increased Attack Speed while Fortified", statOrder = { 3123 }, level = 68, group = "AttackSpeedWithFortify", weightKey = { "2h_sword_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack", "speed" }, }, + ["AttackSpeedWithFortifyTwoHandInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(23-25)% increased Attack Speed while Fortified", statOrder = { 3123 }, level = 73, group = "AttackSpeedWithFortify", weightKey = { "2h_sword_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack", "speed" }, }, + ["MeleeWeaponRangeIfKilledRecentlyInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "+0.2 metres to Melee Strike Range if you have Killed Recently", statOrder = { 9024 }, level = 68, group = "MeleeWeaponRangeIfKilledRecently", weightKey = { "sword_adjudicator", "2h_sword_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "attack" }, }, + ["MeleeWeaponRangeIfKilledRecentlyInfluence2"] = { type = "Suffix", affix = "of the Conquest", "+0.3 metres to Melee Strike Range if you have Killed Recently", statOrder = { 9024 }, level = 73, group = "MeleeWeaponRangeIfKilledRecently", weightKey = { "sword_adjudicator", "2h_sword_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "attack" }, }, + ["TauntOnHitWeaponInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(5-6)% chance to Taunt Enemies on Hit with Attacks", statOrder = { 4813 }, level = 68, group = "AttacksTauntOnHitChance", weightKey = { "axe_crusader", "2h_axe_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "attack" }, }, + ["TauntOnHitWeaponInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(7-8)% chance to Taunt Enemies on Hit with Attacks", statOrder = { 4813 }, level = 70, group = "AttacksTauntOnHitChance", weightKey = { "axe_crusader", "2h_axe_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "attack" }, }, + ["TauntOnHitWeaponInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(9-10)% chance to Taunt Enemies on Hit with Attacks", statOrder = { 4813 }, level = 73, group = "AttacksTauntOnHitChance", weightKey = { "axe_crusader", "2h_axe_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "attack" }, }, + ["AttackSpeedIfKilledRecentlyInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(13-16)% increased Attack Speed if you've Killed Recently", statOrder = { 4791 }, level = 68, group = "AttackSpeedIfEnemyKilledRecently", weightKey = { "axe_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack", "speed" }, }, + ["AttackSpeedIfKilledRecentlyInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(17-20)% increased Attack Speed if you've Killed Recently", statOrder = { 4791 }, level = 73, group = "AttackSpeedIfEnemyKilledRecently", weightKey = { "axe_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack", "speed" }, }, + ["AttackSpeedIfKilledRecentlyTwoHandInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(23-26)% increased Attack Speed if you've Killed Recently", statOrder = { 4791 }, level = 68, group = "AttackSpeedIfEnemyKilledRecently", weightKey = { "2h_axe_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack", "speed" }, }, + ["AttackSpeedIfKilledRecentlyTwoHandInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(27-30)% increased Attack Speed if you've Killed Recently", statOrder = { 4791 }, level = 73, group = "AttackSpeedIfEnemyKilledRecently", weightKey = { "2h_axe_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack", "speed" }, }, + ["CastSpeedIfKilledRecentlyInfluence1"] = { type = "Suffix", affix = "of Redemption", "(13-16)% increased Cast Speed if you've Killed Recently", statOrder = { 5359 }, level = 68, group = "CastSpeedIfEnemyKilledRecently", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "caster", "speed" }, }, + ["CastSpeedIfKilledRecentlyInfluence2"] = { type = "Suffix", affix = "of Redemption", "(17-20)% increased Cast Speed if you've Killed Recently", statOrder = { 5359 }, level = 73, group = "CastSpeedIfEnemyKilledRecently", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "caster", "speed" }, }, + ["CastSpeedIfKilledRecentlyTwoHandInfluence1"] = { type = "Suffix", affix = "of Redemption", "(23-26)% increased Cast Speed if you've Killed Recently", statOrder = { 5359 }, level = 68, group = "CastSpeedIfEnemyKilledRecently", weightKey = { "staff_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "caster", "speed" }, }, + ["CastSpeedIfKilledRecentlyTwoHandInfluence2"] = { type = "Suffix", affix = "of Redemption", "(27-30)% increased Cast Speed if you've Killed Recently", statOrder = { 5359 }, level = 73, group = "CastSpeedIfEnemyKilledRecently", weightKey = { "staff_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "caster", "speed" }, }, + ["WarcryCooldownSpeedInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(17-21)% increased Warcry Cooldown Recovery Rate", statOrder = { 3237 }, level = 68, group = "WarcryCooldownSpeed", weightKey = { "axe_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WarcryCooldownSpeedInfluence2_"] = { type = "Suffix", affix = "of the Hunt", "(22-25)% increased Warcry Cooldown Recovery Rate", statOrder = { 3237 }, level = 73, group = "WarcryCooldownSpeed", weightKey = { "axe_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WarcryCooldownSpeedTwoHandInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(35-40)% increased Warcry Cooldown Recovery Rate", statOrder = { 3237 }, level = 68, group = "WarcryCooldownSpeed", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "shield_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { }, }, + ["WarcryCooldownSpeedTwoHandInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(41-45)% increased Warcry Cooldown Recovery Rate", statOrder = { 3237 }, level = 73, group = "WarcryCooldownSpeed", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "shield_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { }, }, + ["CriticalStrikeChanceIfKilledRecentlyInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(31-40)% increased Critical Strike Chance if you have Killed Recently", statOrder = { 5822 }, level = 68, group = "CriticalStrikeChanceIfKilledRecently", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "critical" }, }, + ["CriticalStrikeChanceIfKilledRecentlyInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(41-50)% increased Critical Strike Chance if you have Killed Recently", statOrder = { 5822 }, level = 73, group = "CriticalStrikeChanceIfKilledRecently", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "critical" }, }, + ["CriticalStrikeMultiplierIfKilledRecentlyInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+(26-30)% to Critical Strike Multiplier if you've Killed Recently", statOrder = { 5854 }, level = 68, group = "CriticalStrikeMultiplierIfEnemySlainRecently", weightKey = { "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "damage", "critical" }, }, + ["CriticalStrikeMultiplierIfKilledRecentlyInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "+(31-35)% to Critical Strike Multiplier if you've Killed Recently", statOrder = { 5854 }, level = 73, group = "CriticalStrikeMultiplierIfEnemySlainRecently", weightKey = { "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "damage", "critical" }, }, + ["CriticalStrikeMultiplierAgainstFullLifeInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+(41-50)% to Critical Strike Multiplier against Enemies that are on Full Life", statOrder = { 3341 }, level = 68, group = "CriticalStrikeMultiplierAgainstEnemiesOnFullLife", weightKey = { "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "damage", "critical" }, }, + ["CriticalStrikeMultiplierAgainstFullLifeInfluence2"] = { type = "Suffix", affix = "of the Conquest", "+(51-60)% to Critical Strike Multiplier against Enemies that are on Full Life", statOrder = { 3341 }, level = 73, group = "CriticalStrikeMultiplierAgainstEnemiesOnFullLife", weightKey = { "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "damage", "critical" }, }, + ["GainRareMonsterModsOnKillChanceInfluence1"] = { type = "Suffix", affix = "of the Conquest", "When you Kill a Rare Monster, (21-30)% chance to gain one of its Modifiers for 10 seconds", statOrder = { 6581 }, level = 68, group = "GainRareMonsterModsOnKillChance", weightKey = { "claw_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, + ["GainRareMonsterModsOnKillChanceInfluence2"] = { type = "Suffix", affix = "of the Conquest", "When you Kill a Rare Monster, (31-40)% chance to gain one of its Modifiers for 10 seconds", statOrder = { 6581 }, level = 73, group = "GainRareMonsterModsOnKillChance", weightKey = { "claw_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, + ["StunDurationAndThresholdInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(11-15)% reduced Enemy Stun Threshold", "(11-15)% increased Stun Duration on Enemies", statOrder = { 1428, 1774 }, level = 68, group = "StunDurationAndThresholdUber", weightKey = { "mace_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, + ["StunDurationAndThresholdInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "(16-20)% reduced Enemy Stun Threshold", "(16-20)% increased Stun Duration on Enemies", statOrder = { 1428, 1774 }, level = 73, group = "StunDurationAndThresholdUber", weightKey = { "mace_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, + ["StunDurationAndThresholdTwoHandInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(21-25)% reduced Enemy Stun Threshold", "(21-25)% increased Stun Duration on Enemies", statOrder = { 1428, 1774 }, level = 68, group = "StunDurationAndThresholdUber", weightKey = { "2h_mace_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, + ["StunDurationAndThresholdTwoHandInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(26-30)% reduced Enemy Stun Threshold", "(26-30)% increased Stun Duration on Enemies", statOrder = { 1428, 1774 }, level = 73, group = "StunDurationAndThresholdUber", weightKey = { "2h_mace_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, + ["AreaOfEffectIfStunnedRecentlyInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(26-30)% increased Area of Effect if you have Stunned an Enemy Recently", statOrder = { 4628 }, level = 68, group = "AreaOfEffectIfStunnedEnemyRecently", weightKey = { "mace_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, + ["AreaOfEffectIfStunnedRecentlyInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "(31-35)% increased Area of Effect if you have Stunned an Enemy Recently", statOrder = { 4628 }, level = 73, group = "AreaOfEffectIfStunnedEnemyRecently", weightKey = { "mace_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, + ["AreaOfEffectIfStunnedRecentlyTwoHandInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "(36-40)% increased Area of Effect if you have Stunned an Enemy Recently", statOrder = { 4628 }, level = 68, group = "AreaOfEffectIfStunnedEnemyRecently", weightKey = { "2h_mace_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, + ["AreaOfEffectIfStunnedRecentlyTwoHandInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "(41-45)% increased Area of Effect if you have Stunned an Enemy Recently", statOrder = { 4628 }, level = 73, group = "AreaOfEffectIfStunnedEnemyRecently", weightKey = { "2h_mace_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, + ["EnemiesExplodeOnDeathDealingFireInfluence1_"] = { type = "Suffix", affix = "of Redemption", "Enemies Killed with Attack or Spell Hits Explode, dealing 5% of their Life as Fire Damage", statOrder = { 2614 }, level = 78, group = "EnemiesExplodeOnDeath", weightKey = { "mace_eyrie", "2h_mace_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, + ["ChanceForDoubleStunDurationInfluence1"] = { type = "Suffix", affix = "of Redemption", "(7-11)% chance to double Stun Duration", statOrder = { 3472 }, level = 68, group = "ChanceForDoubleStunDuration", weightKey = { "mace_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, + ["ChanceForDoubleStunDurationInfluence2"] = { type = "Suffix", affix = "of Redemption", "(12-15)% chance to double Stun Duration", statOrder = { 3472 }, level = 73, group = "ChanceForDoubleStunDuration", weightKey = { "mace_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, + ["ChanceForDoubleStunDurationTwoHandInfluence1"] = { type = "Suffix", affix = "of Redemption", "(17-21)% chance to double Stun Duration", statOrder = { 3472 }, level = 68, group = "ChanceForDoubleStunDuration", weightKey = { "2h_mace_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, + ["ChanceForDoubleStunDurationTwoHandInfluence2_"] = { type = "Suffix", affix = "of Redemption", "(22-25)% chance to double Stun Duration", statOrder = { 3472 }, level = 73, group = "ChanceForDoubleStunDuration", weightKey = { "2h_mace_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, + ["MovementSpeedIfHitRecentlyInfluence1"] = { type = "Suffix", affix = "of Redemption", "(5-7)% increased Movement Speed if you've Hit an Enemy Recently", statOrder = { 9216 }, level = 68, group = "MovementSpeedIfHitRecently", weightKey = { "mace_eyrie", "sceptre_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "speed" }, }, + ["MovementSpeedIfHitRecentlyInfluence2"] = { type = "Suffix", affix = "of Redemption", "(8-10)% increased Movement Speed if you've Hit an Enemy Recently", statOrder = { 9216 }, level = 73, group = "MovementSpeedIfHitRecently", weightKey = { "mace_eyrie", "sceptre_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "speed" }, }, + ["MovementSpeedIfHitRecentlyTwoHandInfluence1"] = { type = "Suffix", affix = "of Redemption", "(10-12)% increased Movement Speed if you've Hit an Enemy Recently", statOrder = { 9216 }, level = 68, group = "MovementSpeedIfHitRecently", weightKey = { "2h_mace_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "speed" }, }, + ["MovementSpeedIfHitRecentlyTwoHandInfluence2"] = { type = "Suffix", affix = "of Redemption", "(13-15)% increased Movement Speed if you've Hit an Enemy Recently", statOrder = { 9216 }, level = 73, group = "MovementSpeedIfHitRecently", weightKey = { "2h_mace_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "speed" }, }, + ["AreaOfEffectIfKilledRecentlyInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(17-21)% increased Area of Effect if you've Killed Recently", statOrder = { 4126 }, level = 68, group = "AreaOfEffectIfKilledRecently", weightKey = { "mace_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AreaOfEffectIfKilledRecentlyInfluence2_"] = { type = "Suffix", affix = "of the Hunt", "(22-25)% increased Area of Effect if you've Killed Recently", statOrder = { 4126 }, level = 73, group = "AreaOfEffectIfKilledRecently", weightKey = { "mace_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AreaOfEffectIfKilledRecentlyTwoHandInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(27-31)% increased Area of Effect if you've Killed Recently", statOrder = { 4126 }, level = 68, group = "AreaOfEffectIfKilledRecently", weightKey = { "2h_mace_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AreaOfEffectIfKilledRecentlyTwoHandInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(32-35)% increased Area of Effect if you've Killed Recently", statOrder = { 4126 }, level = 73, group = "AreaOfEffectIfKilledRecently", weightKey = { "2h_mace_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["ChanceToBlockIfDamagedRecentlyInfluence1_"] = { type = "Suffix", affix = "of Redemption", "+(10-12)% Chance to Block Attack Damage if you were Damaged by a Hit Recently", statOrder = { 3124 }, level = 68, group = "ChanceToBlockIfDamagedRecently", weightKey = { "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "block", "influence_mod" }, }, + ["ChanceToBlockIfDamagedRecentlyInfluence2"] = { type = "Suffix", affix = "of Redemption", "+(13-15)% Chance to Block Attack Damage if you were Damaged by a Hit Recently", statOrder = { 3124 }, level = 73, group = "ChanceToBlockIfDamagedRecently", weightKey = { "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "block", "influence_mod" }, }, + ["SpellBlockChanceIfHitRecentlyInfluence1_"] = { type = "Suffix", affix = "of Redemption", "+(10-12)% Chance to Block Spell Damage if you were Damaged by a Hit Recently", statOrder = { 5549 }, level = 68, group = "SpellBlockChanceIfHitRecently", weightKey = { "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "block", "influence_mod" }, }, + ["SpellBlockChanceIfHitRecentlyInfluence2"] = { type = "Suffix", affix = "of Redemption", "+(13-15)% Chance to Block Spell Damage if you were Damaged by a Hit Recently", statOrder = { 5549 }, level = 73, group = "SpellBlockChanceIfHitRecently", weightKey = { "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "block", "influence_mod" }, }, + ["AdditionalProjectileWeaponInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "Skills fire an additional Projectile", statOrder = { 1703 }, level = 82, group = "AdditionalProjectiles", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "bow_adjudicator", "default", }, weightVal = { 200, 200, 200, 200, 200, 0 }, modTags = { "influence_mod" }, }, + ["SocketedSkillsChainInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Socketed Gems Chain 1 additional times", statOrder = { 467 }, level = 85, group = "DisplaySocketedSkillsChain", weightKey = { "bow_crusader", "default", }, weightVal = { 100, 0 }, modTags = { "skill", "influence_mod", "gem" }, }, + ["SocketedSkillsForkInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "Projectiles from Socketed Gems Fork", statOrder = { 491 }, level = 85, group = "DisplaySocketedSkillsFork", weightKey = { "bow_crusader", "default", }, weightVal = { 100, 0 }, modTags = { "skill", "influence_mod", "gem" }, }, + ["ProjectileDamagePerEnemyPiercedInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Projectiles deal (15-20)% increased Damage with Hits and Ailments for each Enemy Pierced", statOrder = { 9522 }, level = 68, group = "ProjectileDamagePerEnemyPierced", weightKey = { "bow_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, + ["ProjectileDamagePerEnemyPiercedInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "Projectiles deal (21-25)% increased Damage with Hits and Ailments for each Enemy Pierced", statOrder = { 9522 }, level = 70, group = "ProjectileDamagePerEnemyPierced", weightKey = { "bow_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, + ["ProjectileDamagePerEnemyPiercedInfluence3"] = { type = "Suffix", affix = "of the Crusade", "Projectiles deal (26-30)% increased Damage with Hits and Ailments for each Enemy Pierced", statOrder = { 9522 }, level = 73, group = "ProjectileDamagePerEnemyPierced", weightKey = { "bow_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, + ["PhysicalDamageAddedAsRandomElementInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Gain (7-8)% of Physical Damage as Extra Damage of a random Element", statOrder = { 2845 }, level = 68, group = "PhysicalDamageAddedAsRandomElement", weightKey = { "bow_crusader", "default", }, weightVal = { 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental" }, }, + ["PhysicalDamageAddedAsRandomElementInfluence2"] = { type = "Suffix", affix = "of the Crusade", "Gain (9-11)% of Physical Damage as Extra Damage of a random Element", statOrder = { 2845 }, level = 73, group = "PhysicalDamageAddedAsRandomElement", weightKey = { "bow_crusader", "default", }, weightVal = { 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental" }, }, + ["PhysicalDamageAddedAsRandomElementInfluence3"] = { type = "Suffix", affix = "of the Crusade", "Gain (12-15)% of Physical Damage as Extra Damage of a random Element", statOrder = { 2845 }, level = 78, group = "PhysicalDamageAddedAsRandomElement", weightKey = { "bow_crusader", "default", }, weightVal = { 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental" }, }, + ["ArcaneSurgeOnCritInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "(11-20)% chance to Gain Arcane Surge when you deal a Critical Strike", statOrder = { 6610 }, level = 75, group = "GainArcaneSurgeOnCrit", weightKey = { "wand_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "critical" }, }, + ["ArcaneSurgeOnCritInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(21-30)% chance to Gain Arcane Surge when you deal a Critical Strike", statOrder = { 6610 }, level = 80, group = "GainArcaneSurgeOnCrit", weightKey = { "wand_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "critical" }, }, + ["CurseOnHitFlammabilityWeaponInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Curse Enemies with Flammability on Hit", statOrder = { 2439 }, level = 78, group = "FlammabilityOnHitLevel", weightKey = { "wand_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, + ["CurseOnHitFrostbiteWeaponInfluence1"] = { type = "Suffix", affix = "of Redemption", "Curse Enemies with Frostbite on Hit", statOrder = { 2440 }, level = 78, group = "FrostbiteOnHitLevel", weightKey = { "wand_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, + ["CurseOnHitConductivityWeaponInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Curse Enemies with Conductivity on Hit", statOrder = { 2436 }, level = 78, group = "ConductivityOnHitLevel", weightKey = { "wand_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, + ["CurseOnHitDespairWeaponInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Curse Enemies with Despair on Hit", statOrder = { 2437 }, level = 78, group = "CurseOnHitDespair", weightKey = { "wand_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "caster", "curse" }, }, + ["ImpaleEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "(12-16)% increased Impale Effect", statOrder = { 7107 }, level = 58, group = "ImpaleEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, }, + ["ImpaleEffectEssence2__"] = { type = "Suffix", affix = "of the Essence", "(17-21)% increased Impale Effect", statOrder = { 7107 }, level = 74, group = "ImpaleEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, }, + ["ImpaleEffectEssence3"] = { type = "Suffix", affix = "of the Essence", "(22-25)% increased Impale Effect", statOrder = { 7107 }, level = 82, group = "ImpaleEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, }, + ["ImpaleEffectTwoHandEssence1"] = { type = "Suffix", affix = "of the Essence", "(25-29)% increased Impale Effect", statOrder = { 7107 }, level = 58, group = "ImpaleEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, }, + ["ImpaleEffectTwoHandEssence2_"] = { type = "Suffix", affix = "of the Essence", "(30-34)% increased Impale Effect", statOrder = { 7107 }, level = 74, group = "ImpaleEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, }, + ["ImpaleEffectTwoHandEssence3_"] = { type = "Suffix", affix = "of the Essence", "(35-38)% increased Impale Effect", statOrder = { 7107 }, level = 82, group = "ImpaleEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, }, + ["BreachBodyChaosDamageAsPortionOfFireDamage1_"] = { type = "Prefix", affix = "Chayula's", "Gain 10% of Fire Damage as Extra Chaos Damage", statOrder = { 1850 }, level = 1, group = "ChaosDamageAsPortionOfFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, }, + ["BreachBodyChaosDamageAsPortionOfColdDamage1"] = { type = "Prefix", affix = "Chayula's", "Gain 10% of Cold Damage as Extra Chaos Damage", statOrder = { 1849 }, level = 1, group = "ChaosDamageAsPortionOfColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "cold", "chaos" }, }, + ["BreachBodyChaosDamageAsPortionOfLightningDamage1"] = { type = "Prefix", affix = "Chayula's", "Gain 10% of Lightning Damage as Extra Chaos Damage", statOrder = { 1847 }, level = 1, group = "ChaosDamageAsPortionOfLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, }, + ["BreachBodyAllDefences1"] = { type = "Prefix", affix = "Chayula's", "50% increased Global Defences", statOrder = { 2742 }, level = 1, group = "AllDefences", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences" }, }, + ["BreachBodyLifeGainedOnHittingIgnitedEnemies1"] = { type = "Suffix", affix = "of Xoph", "Gain (20-30) Life for each Ignited Enemy hit with Attacks", statOrder = { 1654 }, level = 1, group = "LifeGainOnHitVsIgnitedEnemies", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, + ["BreachBodyNoExtraBleedDamageWhileMoving1_"] = { type = "Suffix", affix = "of Uul-Netol", "Moving while Bleeding doesn't cause you to take extra Damage", statOrder = { 3100 }, level = 1, group = "NoExtraBleedDamageWhileMoving", weightKey = { "default", }, weightVal = { 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["BreachBodyAddedColdDamagePerPowerCharge1"] = { type = "Prefix", affix = "Tul's", "Adds 10 to 15 Cold Damage to Spells per Power Charge", statOrder = { 1736 }, level = 1, group = "AddedColdDamagePerPowerCharge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["BreachBodyGainPowerChargeOnKillingFrozenEnemy1"] = { type = "Suffix", affix = "of Tul", "25% chance to gain a Power Charge on Killing a Frozen Enemy", statOrder = { 1735 }, level = 1, group = "GainPowerChargeOnKillingFrozenEnemy", weightKey = { "default", }, weightVal = { 0 }, modTags = { "power_charge" }, }, + ["BreachBodyIncreasedAttackSpeedPerDexterity1"] = { type = "Suffix", affix = "of Esh", "1% increased Attack Speed per 25 Dexterity", statOrder = { 4799 }, level = 1, group = "IncreasedAttackSpeedPerDexterity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, }, + ["BreachBodyPhysicalDamageReductionWhileNotMoving1"] = { type = "Suffix", affix = "of Uul-Netol", "6% additional Physical Damage Reduction while stationary", statOrder = { 4220 }, level = 1, group = "PhysicalDamageReductionWhileNotMoving", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, }, + ["BreachBodyAddedLightningDamagePerShockedEnemyKilled1"] = { type = "Prefix", affix = "Esh's", "Adds 1 to 5 Lightning Damage for each Shocked Enemy you've Killed Recently", statOrder = { 9054 }, level = 1, group = "AddedLightningDamagePerShockedEnemyKilled", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["BreachBodyReflectsShocks1"] = { type = "Suffix", affix = "of Esh", "Shock Reflection", statOrder = { 9670 }, level = 1, group = "ReflectsShocks", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["BreachBodyChaosDamageDoesNotBypassESNotLowLifeOrMana1_"] = { type = "Prefix", affix = "Esh's", "Chaos Damage taken does not bypass Energy Shield while not on Low Life", statOrder = { 5626 }, level = 1, group = "ChaosDamageDoesNotBypassESNotLowLifeOrMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos" }, }, + ["BreachBodyOnHitBlindChilledEnemies1"] = { type = "Suffix", affix = "of Tul", "Blind Chilled Enemies on Hit", statOrder = { 5110 }, level = 1, group = "OnHitBlindChilledEnemies", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["BreachBodyVulnerabilityOnHit1"] = { type = "Suffix", affix = "of Uul-Netol", "25% chance to Curse Enemies with Vulnerability on Hit", statOrder = { 2433 }, level = 1, group = "CurseLevel10VulnerabilityOnHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, }, + ["BreachBodyGrantsEnvy1"] = { type = "Prefix", affix = "Chayula's", "Grants Level 15 Envy Skill", statOrder = { 569 }, level = 1, group = "GrantsEnvy", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, }, + ["BreachBodyEnemiesBlockedAreIntimidated1"] = { type = "Prefix", affix = "Uul-Netol's", "Permanently Intimidate Enemies on Block", statOrder = { 9403 }, level = 1, group = "EnemiesBlockedAreIntimidated", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, + ["BreachBodyMinionsPoisonEnemiesOnHit1_"] = { type = "Suffix", affix = "of Chayula", "Minions have 60% chance to Poison Enemies on Hit", statOrder = { 3082 }, level = 1, group = "MinionsPoisonEnemiesOnHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "poison", "chaos", "minion", "ailment" }, }, + ["BreachBodyArmourIncreasedByUncappedFireResistance1____"] = { type = "Prefix", affix = "Xoph's", "Armour is increased by Overcapped Fire Resistance", statOrder = { 4662 }, level = 1, group = "ArmourIncreasedByUncappedFireResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, }, + ["BreachBodyEvasionIncreasedByUncappedColdResistance1"] = { type = "Prefix", affix = "Tul's", "Evasion Rating is increased by Overcapped Cold Resistance", statOrder = { 6372 }, level = 1, group = "EvasionIncreasedByUncappedColdResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, }, + ["BreachBodyCriticalChanceIncreasedByUncappedLightningResistance1"] = { type = "Suffix", affix = "of Esh", "Critical Strike Chance is increased by Overcapped Lightning Resistance", statOrder = { 5816 }, level = 1, group = "CriticalChanceIncreasedByUncappedLightningResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, }, + ["BreachBodyCoverInAshWhenHit1__"] = { type = "Prefix", affix = "Xoph's", "Cover Enemies in Ash when they Hit you", statOrder = { 4596 }, level = 1, group = "CoverInAshWhenHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["BreachBodyChillEnemiesWhenHit1"] = { type = "Suffix", affix = "of Tul", "Chill Enemy for 1 second when Hit, reducing their Action Speed by 30%", statOrder = { 3048 }, level = 1, group = "ChillEnemiesWhenHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["BreachBodyArcticArmourReservationCost1"] = { type = "Suffix", affix = "of Tul", "Arctic Armour has 100% increased Mana Reservation Efficiency", statOrder = { 4614 }, level = 1, group = "ArcticArmourReservationCost", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, + ["BreachBodyArcticArmourReservationEfficiency1"] = { type = "Suffix", affix = "of Tul", "Arctic Armour has 100% increased Mana Reservation Efficiency", statOrder = { 4615 }, level = 1, group = "ArcticArmourReservationEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, + ["BreachBodyMaximumLifeConvertedToEnergyShield1___"] = { type = "Prefix", affix = "Chayula's", "10% of Maximum Life Converted to Energy Shield", statOrder = { 8975 }, level = 1, group = "MaximumLifeConvertedToEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "energy_shield" }, }, + ["LocalIncreaseSocketedActiveGemLevelUberMaven"] = { type = "Prefix", affix = "Elevated Shaper's", "+1 to Level of Socketed Skill Gems", "+(5-10)% to Quality of Socketed Skill Gems", statOrder = { 170, 185 }, level = 90, group = "LocalIncreaseSocketedActiveSkillGemLevelMaven", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "gem" }, }, + ["LocalIncreaseSocketedSupportGemLevelUberMaven___"] = { type = "Prefix", affix = "Elevated Elder's", "+1 to Level of Socketed Support Gems", "+(5-10)% to Quality of Socketed Support Gems", statOrder = { 169, 184 }, level = 90, group = "LocalIncreaseSocketedSupportGemLevelMaven", weightKey = { "body_armour_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "gem" }, }, + ["PhysicalDamageTakenAsFirePercentUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "(16-18)% of Physical Damage from Hits taken as Fire Damage", "(7-10)% of Fire Damage taken Recouped as Life", statOrder = { 2356, 6457 }, level = 94, group = "PhysicalDamageTakenAsFireUberMaven", weightKey = { "body_armour_elder", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "physical", "elemental", "fire" }, }, + ["PhysicalDamageTakenAsColdPercentUberMaven"] = { type = "Prefix", affix = "Elevated Shaper's", "(16-18)% of Physical Damage from Hits taken as Cold Damage", "(7-10)% of Cold Damage taken Recouped as Life", statOrder = { 2357, 5715 }, level = 93, group = "PhysicalDamageTakenAsColdUberMaven", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "physical", "elemental", "cold" }, }, + ["PhysicalDamageTakenAsLightningPercentUberMaven"] = { type = "Prefix", affix = "Elevated Shaper's", "(16-18)% of Physical Damage from Hits taken as Lightning Damage", "(7-10)% of Lightning Damage taken Recouped as Life", statOrder = { 2358, 7311 }, level = 92, group = "PhysicalDamageTakenAsLightningUberMaven", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "physical", "elemental", "lightning" }, }, + ["ReducedElementalReflectTakenUberMaven_"] = { type = "Prefix", affix = "Elevated Shaper's", "(3-5)% reduced Elemental Damage taken", "You and your Minions take 100% reduced Reflected Elemental Damage", statOrder = { 3201, 6228 }, level = 85, group = "ReducedElementalReflectTakenMaven", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental" }, }, + ["ReducedPhysicalReflectTakenUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "(3-5)% reduced Physical Damage taken", "You and your Minions take 100% reduced Reflected Physical Damage", statOrder = { 2150, 9458 }, level = 85, group = "ReducedPhysicalReflectTakenMaven", weightKey = { "body_armour_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical" }, }, + ["MaximumLifeUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "(13-15)% increased maximum Life", statOrder = { 1482 }, level = 95, group = "MaximumLifeIncreasePercent", weightKey = { "body_armour_elder", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life" }, }, + ["MaximumManaBodyUberMaven__"] = { type = "Prefix", affix = "Elevated Shaper's", "(16-18)% increased maximum Mana", statOrder = { 1491 }, level = 85, group = "MaximumManaIncreaseShaper", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, + ["DamageTakenFromManaBeforeLifeUberMaven__"] = { type = "Prefix", affix = "Elevated Shaper's", "(11-15)% of Damage is taken from Mana before Life", statOrder = { 2607 }, level = 90, group = "DamageRemovedFromManaBeforeLife", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "mana" }, }, + ["MaximumLifeOnKillPercentUberMaven__"] = { type = "Suffix", affix = "of the Elevated Elder", "Recover (5-6)% of Life on Kill", "(5-10)% increased Life Recovery Rate if you haven't Killed Recently", statOrder = { 1660, 7253 }, level = 85, group = "MaximumLifeOnKillPercentMaven", weightKey = { "body_armour_elder", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life" }, }, + ["MaximumManaOnKillPercentUberMaven_"] = { type = "Suffix", affix = "of Elevated Shaping", "Recover (5-6)% of Mana on Kill", "(5-10)% increased Mana Recovery Rate if you haven't Killed Recently", statOrder = { 1662, 8024 }, level = 85, group = "MaximumManaOnKillPercentMaven", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, + ["MaximumEnergyShieldOnKillPercentUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Recover (5-6)% of Energy Shield on Kill", "(5-10)% increased Energy Shield Recovery Rate if you haven't Killed Recently", statOrder = { 1661, 6337 }, level = 85, group = "MaximumEnergyShieldOnKillPercentMaven", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, + ["PercentageStrengthUberMaven__"] = { type = "Suffix", affix = "of the Elevated Elder", "+1 to Level of Socketed Strength Gems", "(9-12)% increased Strength", statOrder = { 138, 1096 }, level = 93, group = "PercentageStrengthMaven", weightKey = { "body_armour_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attribute", "gem" }, }, + ["PercentageDexterityUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "+1 to Level of Socketed Dexterity Gems", "(9-12)% increased Dexterity", statOrder = { 140, 1097 }, level = 93, group = "PercentageDexterityMaven", weightKey = { "body_armour_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attribute", "gem" }, }, + ["PercentageIntelligenceUberMaven__"] = { type = "Suffix", affix = "of Elevated Shaping", "+1 to Level of Socketed Intelligence Gems", "(9-12)% increased Intelligence", statOrder = { 141, 1098 }, level = 93, group = "PercentageIntelligenceMaven", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attribute", "gem" }, }, + ["LifeRegenerationRatePercentUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Regenerate (2.1-3)% of Life per second", statOrder = { 1853 }, level = 85, group = "LifeRegenerationRatePercentage", weightKey = { "body_armour_elder", "amulet_elder", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "influence_mod", "life" }, }, + ["SupportedByItemRarityUberMaven__"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 20 Item Rarity", "(19-25)% increased Rarity of Items found from Slain Unique Enemies", statOrder = { 268, 10287 }, level = 95, group = "SupportedByItemRarityUnique", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem", "drop" }, }, + ["AdditionalCriticalStrikeChanceWithAttacksUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Attacks have +(1.6-2)% to Critical Strike Chance", statOrder = { 4691 }, level = 94, group = "AdditionalCriticalStrikeChanceWithAttacks", weightKey = { "body_armour_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack", "critical" }, }, + ["AdditionalCriticalStrikeChanceWithSpellsUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "+(1.6-2)% to Spell Critical Strike Chance", statOrder = { 9909 }, level = 94, group = "AdditionalCriticalStrikeChanceWithSpells", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "critical" }, }, + ["MaximumManaInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "(16-18)% increased maximum Mana", statOrder = { 1491 }, level = 90, group = "MaximumManaIncreasePercent", weightKey = { "helmet_crusader", "body_armour_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, + ["PhysTakenAsLightningInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "(16-18)% of Physical Damage from Hits taken as Lightning Damage", "(7-10)% of Lightning Damage taken Recouped as Life", statOrder = { 2358, 7311 }, level = 93, group = "PhysicalDamageTakenAsLightningUberMaven", weightKey = { "body_armour_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "physical", "elemental", "lightning" }, }, + ["ConsecratedGroundStationaryInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "You have Consecrated Ground around you while stationary", "Effects of Consecrated Ground you create Linger for 1 second", statOrder = { 5754, 10465 }, level = 85, group = "ConsecratedGroundStationaryMaven", weightKey = { "body_armour_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, + ["HolyPhysicalExplosionInfluenceMaven_"] = { type = "Prefix", affix = "Elevated Crusader's", "(8-12)% increased Area of Effect", "Enemies you Kill Explode, dealing 5% of their Life as Physical Damage", statOrder = { 1791, 6263 }, level = 95, group = "EnemiesExplodeOnDeathPhysicalMaven", weightKey = { "body_armour_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, }, + ["HolyPhysicalExplosionChanceInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "(8-12)% increased Area of Effect", "Enemies you Kill have a (31-35)% chance to Explode, dealing a tenth of their maximum Life as Physical Damage", statOrder = { 1791, 3212 }, level = 95, group = "EnemiesExplodeOnDeathPhysicalChanceMaven", weightKey = { "body_armour_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, }, + ["PercentageIntelligenceBodyInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "+1 to Level of Socketed Intelligence Gems", "(9-12)% increased Intelligence", statOrder = { 141, 1098 }, level = 85, group = "PercentageIntelligenceMaven", weightKey = { "body_armour_crusader", "amulet_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "attribute", "gem" }, }, + ["AddPowerChargeOnCritInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "15% chance to gain a Power Charge on Critical Strike", "3% increased Damage per Power Charge", statOrder = { 1741, 5961 }, level = 90, group = "PowerChargeOnCriticalStrikeChanceMaven", weightKey = { "body_armour_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "power_charge", "influence_mod", "critical" }, }, + ["EnergyShieldOnKillPercentInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "Recover (5-6)% of Energy Shield on Kill", "(5-10)% increased Energy Shield Recovery Rate if you haven't Killed Recently", statOrder = { 1661, 6337 }, level = 90, group = "MaximumEnergyShieldOnKillPercentMaven", weightKey = { "body_armour_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, + ["EnergyShieldRecoveryRateBodyInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "(12-15)% increased Energy Shield Recovery rate", "Regenerate (50-100) Energy Shield per second", statOrder = { 1479, 2553 }, level = 90, group = "EnergyShieldRecoveryRateMaven", weightKey = { "body_armour_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, + ["PhysTakenAsFireInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "(16-18)% of Physical Damage from Hits taken as Fire Damage", "(7-10)% of Fire Damage taken Recouped as Life", statOrder = { 2356, 6457 }, level = 93, group = "PhysicalDamageTakenAsFireUberMaven", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "physical", "elemental", "fire" }, }, + ["SocketedActiveGemLevelInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "+1 to Level of Socketed Skill Gems", "+(5-10)% to Quality of Socketed Skill Gems", statOrder = { 170, 185 }, level = 80, group = "LocalIncreaseSocketedActiveSkillGemLevelMaven", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "gem" }, }, + ["ReflectedPhysicalDamageInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "(3-5)% reduced Physical Damage taken", "You and your Minions take 100% reduced Reflected Physical Damage", statOrder = { 2150, 9458 }, level = 85, group = "ReducedPhysicalReflectTakenMaven", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical" }, }, + ["AllResistancesInfluenceMaven____"] = { type = "Suffix", affix = "of the Elevated Conquest", "+(19-22)% to all Elemental Resistances", "+1% to all maximum Elemental Resistances", statOrder = { 1530, 1554 }, level = 85, group = "AllResistancesMaven", weightKey = { "body_armour_adjudicator", "belt_adjudicator", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "resistance" }, }, + ["PercentageStrengthBodyInfluenceMaven_"] = { type = "Suffix", affix = "of the Elevated Conquest", "+1 to Level of Socketed Strength Gems", "(9-12)% increased Strength", statOrder = { 138, 1096 }, level = 85, group = "PercentageStrengthMaven", weightKey = { "body_armour_adjudicator", "amulet_adjudicator", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "attribute", "gem" }, }, + ["EnduranceChargeIfHitRecentlyInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "3% increased Area of Effect per Endurance Charge", "Gain 1 Endurance Charge every second if you've been Hit Recently", statOrder = { 4633, 6631 }, level = 90, group = "EnduranceChargeIfHitRecentlyMaven", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "endurance_charge", "influence_mod" }, }, + ["LifeOnKillPercentInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "Recover (5-6)% of Life on Kill", "(5-10)% increased Life Recovery Rate if you haven't Killed Recently", statOrder = { 1660, 7253 }, level = 90, group = "MaximumLifeOnKillPercentMaven", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life" }, }, + ["LifeRecoveryRateBodyInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "(12-15)% increased Life Recovery rate", "Life Flasks gain 1 Charge every 3 seconds", statOrder = { 1489, 7208 }, level = 90, group = "LifeRecoveryRateMaven", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "resource", "influence_mod", "life" }, }, + ["SocketedAttacksManaCostInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "Ignore Stuns while using Socketed Attack Skills", "Socketed Attacks have -20 to Total Mana Cost", statOrder = { 472, 476 }, level = 95, group = "SocketedAttacksManaCostMaven", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "skill", "resource", "influence_mod", "mana", "attack", "gem" }, }, + ["PhysTakenAsColdInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "(16-18)% of Physical Damage from Hits taken as Cold Damage", "(7-10)% of Cold Damage taken Recouped as Life", statOrder = { 2357, 5715 }, level = 93, group = "PhysicalDamageTakenAsColdUberMaven", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "physical", "elemental", "cold" }, }, + ["SocketedSupportGemLevelInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "+1 to Level of Socketed Support Gems", "+(5-10)% to Quality of Socketed Support Gems", statOrder = { 169, 184 }, level = 90, group = "LocalIncreaseSocketedSupportGemLevelMaven", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "gem" }, }, + ["ReflectedElementalDamageInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "(3-5)% reduced Elemental Damage taken", "You and your Minions take 100% reduced Reflected Elemental Damage", statOrder = { 3201, 6228 }, level = 85, group = "ReducedElementalReflectTakenMaven", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental" }, }, + ["NearbyEnemiesAreBlindedInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "Cannot be Blinded", "Nearby Enemies are Blinded", statOrder = { 2883, 3304 }, level = 85, group = "NearbyEnemiesAreBlindedMaven", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, + ["PercentageDexterityBodyInfluenceMaven_"] = { type = "Suffix", affix = "of Elevated Redemption", "+1 to Level of Socketed Dexterity Gems", "(9-12)% increased Dexterity", statOrder = { 140, 1097 }, level = 85, group = "PercentageDexterityMaven", weightKey = { "body_armour_eyrie", "amulet_eyrie", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "attribute", "gem" }, }, + ["FrenzyChargeOnHitChanceInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "1% increased Movement Speed per Frenzy Charge", "10% chance to gain a Frenzy Charge on Hit", statOrder = { 1713, 1744 }, level = 90, group = "FrenzyChargeOnHitChanceMaven", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "frenzy_charge", "influence_mod", "speed" }, }, + ["ManaOnKillPercentInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "Recover (5-6)% of Mana on Kill", "(5-10)% increased Mana Recovery Rate if you haven't Killed Recently", statOrder = { 1662, 8024 }, level = 90, group = "MaximumManaOnKillPercentMaven", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, + ["ManaRecoveryRateBodyInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(12-15)% increased Mana Recovery rate", "(20-35)% increased Mana Recovery from Flasks", statOrder = { 1497, 1969 }, level = 90, group = "ManaRecoveryRateMaven", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "resource", "influence_mod", "mana" }, }, + ["AuraEffectBodyInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(26-30)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3474 }, level = 90, group = "AuraEffect", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "aura" }, }, + ["MaximumLifeBodyInfluenceMaven__"] = { type = "Prefix", affix = "Elevated Hunter's", "(13-15)% increased maximum Life", statOrder = { 1482 }, level = 95, group = "MaximumLifeIncreasePercent", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "life" }, }, + ["PhysTakenAsChaosInfluenceMaven__"] = { type = "Prefix", affix = "Elevated Hunter's", "+1% to maximum Chaos Resistance", "(16-18)% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 1551, 2360 }, level = 93, group = "PhysicalDamageTakenAsChaosUberMaven", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "physical", "chaos", "resistance" }, }, + ["AdditionalCurseOnEnemiesInfluenceMaven_"] = { type = "Prefix", affix = "Elevated Hunter's", "You can apply an additional Curse", "20% increased Mana Reservation Efficiency of Curse Aura Skills", statOrder = { 2077, 5891 }, level = 92, group = "OLDAdditionalCurseOnEnemiesMaven", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana", "caster", "aura", "curse" }, }, + ["AdditionalCurseOnEnemiesInfluenceMavenV2___"] = { type = "Prefix", affix = "Elevated Hunter's", "You can apply an additional Curse", "20% increased Mana Reservation Efficiency of Curse Aura Skills", statOrder = { 2077, 5892 }, level = 92, group = "AdditionalCurseOnEnemiesMaven", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana", "caster", "aura", "curse" }, }, + ["RegenerateLifeOverMaven"] = { type = "Prefix", affix = "Elevated Hunter's", "Every 4 seconds, Regenerate 25% of Life over one second", statOrder = { 3694 }, level = 90, group = "RegenerateLifeOver1Second", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "life" }, }, + ["OfferingEffectInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "(26-35)% increased effect of Offerings", statOrder = { 3971 }, level = 90, group = "OfferingEffect", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["AdditionalCritWithAttacksInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "Attacks have +(1.6-2)% to Critical Strike Chance", statOrder = { 4691 }, level = 94, group = "AdditionalCriticalStrikeChanceWithAttacks", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "critical" }, }, + ["AdditionalCritWithSpellsInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "+(1.6-2)% to Spell Critical Strike Chance", statOrder = { 9909 }, level = 94, group = "AdditionalCriticalStrikeChanceWithSpells", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "caster", "critical" }, }, + ["LifeRegenerationPercentBodyInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "Regenerate (2.1-3)% of Life per second", statOrder = { 1853 }, level = 85, group = "LifeRegenerationRatePercentage", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "life" }, }, + ["AreaDamageSupportedUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "Socketed Gems are Supported by Level 25 Concentrated Effect", "(23-25)% increased Area Damage", statOrder = { 380, 1944 }, level = 92, group = "AreaDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, + ["AreaOfEffectSupportedUberMaven"] = { type = "Prefix", affix = "Elevated Shaper's", "Socketed Gems are Supported by Level 25 Increased Area of Effect", "(13-15)% increased Area of Effect", statOrder = { 203, 1791 }, level = 93, group = "AreaOfEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, }, + ["MaximumManaUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "(12-15)% increased maximum Mana", "Transfiguration of Mind", statOrder = { 1491, 4507 }, level = 85, group = "MaximumManaIncreasePercentMaven", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "damage" }, }, + ["MinionDamageSupportedUberMaven___"] = { type = "Prefix", affix = "Elevated Elder's", "Socketed Gems are Supported by Level 25 Minion Damage", "Minions deal (23-25)% increased Damage", statOrder = { 433, 1882 }, level = 93, group = "MinionDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "damage", "minion", "gem" }, }, + ["MinionLifeSupportedUberMaven_"] = { type = "Prefix", affix = "Elevated Elder's", "Socketed Gems are Supported by Level 25 Minion Life", "Minions have (23-25)% increased maximum Life", statOrder = { 431, 1677 }, level = 90, group = "MinionLifeSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "resource", "influence_mod", "life", "minion", "gem" }, }, + ["AdditionalMinesPlacedSupportedUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Blastchain Mine", "Throw an additional Mine", statOrder = { 424, 3457 }, level = 95, group = "AdditionalMinesPlacedSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, }, + ["MineDamageUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Blastchain Mine", "(31-35)% increased Mine Damage", statOrder = { 424, 1108 }, level = 90, group = "MineDamageSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, + ["MineDamageTrapUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Trap And Mine Damage", "(31-35)% increased Mine Damage", statOrder = { 384, 1108 }, level = 90, group = "MineDamageTrapSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, + ["IncreasedChillEffectSupportedUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Hypothermia", "(17-20)% increased Effect of Cold Ailments", statOrder = { 438, 5695 }, level = 90, group = "ChillEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "elemental", "cold", "ailment", "gem" }, }, + ["IncreasedShockEffectSupportedUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Innervate", "(17-20)% increased Effect of Lightning Ailments", statOrder = { 448, 7293 }, level = 90, group = "ShockEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "elemental", "lightning", "ailment", "gem" }, }, + ["IgniteDurationSupportedUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Gems are Supported by Level 25 Immolate", "(17-20)% increased Ignite Duration on Enemies", statOrder = { 258, 1770 }, level = 90, group = "IgniteDurationSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "elemental", "fire", "ailment", "gem" }, }, + ["IncreasedBurningDamageSupportedUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Gems are Supported by Level 25 Burning Damage", "(31-35)% increased Burning Damage", statOrder = { 261, 1788 }, level = 92, group = "BurningDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "fire", "gem" }, }, + ["ChanceToGainPowerChargeOnKillUberMaven"] = { type = "Prefix", affix = "Elevated Shaper's", "50% increased Power Charge Duration", "(11-15)% chance to gain a Power Charge on Kill", statOrder = { 2051, 2541 }, level = 94, group = "PowerChargeOnKillChanceMaven", weightKey = { "helmet_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "power_charge", "influence_mod" }, }, + ["SupportedByLessDurationUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "Socketed Gems are Supported by Level 25 Less Duration", statOrder = { 302 }, level = 78, group = "SupportedByLessDuration", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, }, + ["SpellAddedFireDamageUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "Adds (35-49) to (60-73) Fire Damage to Spells", statOrder = { 1315 }, level = 92, group = "SpellAddedFireDamageUber", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedColdDamageUberMaven"] = { type = "Prefix", affix = "Elevated Shaper's", "Adds (29-39) to (49-61) Cold Damage to Spells", statOrder = { 1316 }, level = 93, group = "SpellAddedColdDamageUber", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedLightningDamageUberMaven"] = { type = "Prefix", affix = "Elevated Shaper's", "Adds (2-8) to (101-121) Lightning Damage to Spells", statOrder = { 1317 }, level = 94, group = "SpellAddedLightningDamageUber", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedPhysicalDamageUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "Adds (35-49) to (60-73) Physical Damage to Spells", statOrder = { 1314 }, level = 95, group = "SpellAddedPhysicalDamage", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "caster_damage", "influence_mod", "damage", "physical", "caster" }, }, + ["SpellAddedChaosDamageUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "Adds (29-39) to (49-61) Chaos Damage to Spells", statOrder = { 1318 }, level = 95, group = "SpellAddedChaosDamage", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "caster_damage", "chaos_damage", "influence_mod", "damage", "chaos", "caster" }, }, + ["ManaRegenerationUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "(56-70)% increased Mana Regeneration Rate", "20% increased Mana Regeneration Rate while stationary", statOrder = { 1495, 4223 }, level = 85, group = "ManaRegenerationMaven", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, + ["AddedManaRegenerationUberMaven_"] = { type = "Suffix", affix = "of Elevated Shaping", "Regenerate (6-8) Mana per second", "Mana Flasks gain 1 Charge every 3 seconds", statOrder = { 1493, 8008 }, level = 90, group = "AddedManaRegenerationMaven", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "resource", "influence_mod", "mana" }, }, + ["AdditionalSpellBlockChanceUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "(5-6)% Chance to Block Spell Damage", "+1% to maximum Chance to Block Spell Damage", statOrder = { 1072, 1898 }, level = 90, group = "SpellBlockPercentageMaven", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "block", "influence_mod" }, }, + ["SocketedSpellCriticalStrikeChanceUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Spells have +4% to Critical Strike Chance", statOrder = { 493 }, level = 94, group = "SocketedSpellCriticalStrikeChance", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "skill", "influence_mod", "caster", "critical", "gem" }, }, + ["SocketedAttackCriticalStrikeChanceUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Attacks have +4% to Critical Strike Chance", statOrder = { 474 }, level = 93, group = "SocketedAttackCriticalStrikeChance", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "skill", "influence_mod", "attack", "critical", "gem" }, }, + ["EnemyPhysicalDamageTakenAuraUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Nearby Enemies take 12% increased Physical Damage", statOrder = { 7770 }, level = 95, group = "NearbyEnemyPhysicalDamageTaken", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, }, + ["EnemyElementalDamageTakenAuraUberMaven_"] = { type = "Suffix", affix = "of Elevated Shaping", "Nearby Enemies take 9% increased Elemental Damage", statOrder = { 7765 }, level = 95, group = "NearbyEnemyElementalDamageTaken", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, }, + ["LifeRegenerationPercentInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "Regenerate (1.6-2)% of Life per second", statOrder = { 1853 }, level = 83, group = "LifeRegenerationRatePercentage", weightKey = { "boots_adjudicator", "helmet_adjudicator", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "influence_mod", "life" }, }, + ["MaximumLightningResistanceInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "+3% to maximum Lightning Resistance", statOrder = { 1545 }, level = 95, group = "MaximumLightningResistance", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "resistance" }, }, + ["MaximumLightningResistanceInfluenceMavenNew"] = { type = "Suffix", affix = "of the Elevated Crusade", "+3% to maximum Lightning Resistance", statOrder = { 1545 }, level = 95, group = "MaximumLightningResistance", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "resistance" }, }, + ["PhysTakenAsLightningHelmInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "(11-13)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2358 }, level = 93, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical", "elemental", "lightning" }, }, + ["EnemyLightningResistanceAuraInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "Nearby Enemies have -12% to Lightning Resistance", statOrder = { 7768 }, level = 95, group = "NearbyEnemyLightningDamageResistance", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "resistance" }, }, + ["SpellBlockPercentInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "(5-6)% Chance to Block Spell Damage", "+1% to maximum Chance to Block Spell Damage", statOrder = { 1072, 1898 }, level = 90, group = "SpellBlockPercentageMaven", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "block", "influence_mod" }, }, + ["FortifyEffectInfluenceMaven_"] = { type = "Suffix", affix = "of the Elevated Crusade", "+500 to Armour while Fortified", "+(4.2-5) to maximum Fortification", statOrder = { 4666, 8936 }, level = 90, group = "FortifyEffectMaven", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "armour" }, }, + ["EnergyShieldRegenInfluenceMaven_"] = { type = "Suffix", affix = "of the Elevated Crusade", "(15-25)% increased Energy Shield Recharge Rate", "Regenerate (1-1.5)% of Energy Shield per second", statOrder = { 1476, 2554 }, level = 85, group = "EnergyShieldRegenerationPerMinuteMaven", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, + ["ReducedIgniteDurationInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "(51-60)% reduced Ignite Duration on you", "(36-50)% increased Damage if you've been Ignited Recently", statOrder = { 1786, 5940 }, level = 85, group = "ReducedBurnDurationMaven", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "ailment" }, }, + ["ReducedFreezeDurationInfluenceMaven__"] = { type = "Suffix", affix = "of the Elevated Crusade", "(51-60)% reduced Freeze Duration on you", "(4-7)% reduced Damage taken if you've been Frozen Recently", statOrder = { 1785, 6012 }, level = 85, group = "ReducedFreezeDurationMaven", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, }, + ["ReducedShockEffectInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "(45-75)% increased Critical Strike Chance if you've been Shocked Recently", "(51-60)% reduced Effect of Shock on you", statOrder = { 5823, 9803 }, level = 85, group = "ReducedShockEffectOnSelfMaven", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "critical", "ailment" }, }, + ["MaximumPowerChargeInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "+1 to Maximum Power Charges", "10% chance that if you would gain Power Charges, you instead gain up to", "your maximum number of Power Charges", statOrder = { 1725, 6660, 6660.1 }, level = 85, group = "IncreasedMaximumPowerChargesMaven", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "power_charge", "influence_mod" }, }, + ["PhysTakenAsFireHelmetInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "(11-13)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2356 }, level = 93, group = "PhysicalDamageTakenAsFireUber", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical", "elemental", "fire" }, }, + ["ElementalDamageInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "(19-22)% increased Elemental Damage", "Damage Penetrates (2-3)% of Enemy Elemental Resistances", statOrder = { 1889, 3467 }, level = 85, group = "ElementalDamagePercentMaven", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, }, + ["WarcryAreaOfEffectInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "15% increased Warcry Buff Effect", "Warcry Skills have (26-30)% increased Area of Effect", statOrder = { 10348, 10356 }, level = 85, group = "WarcryAreaOfEffectMaven", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, + ["EnemyFireResistanceAuraInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "Nearby Enemies have -12% to Fire Resistance", statOrder = { 7766 }, level = 95, group = "NearbyEnemyFireDamageResistance", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "resistance" }, }, + ["CriticalStrikeMultiplierInfluenceMaven__"] = { type = "Suffix", affix = "of the Elevated Conquest", "+(21-24)% to Global Critical Strike Multiplier", statOrder = { 1399 }, level = 85, group = "CriticalStrikeMultiplier", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "critical" }, }, + ["ManaRegenerationInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "(56-70)% increased Mana Regeneration Rate", "20% increased Mana Regeneration Rate while stationary", statOrder = { 1495, 4223 }, level = 85, group = "ManaRegenerationMaven", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, + ["GainAccuracyEqualToStrengthInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "1% increased Critical Strike Chance per 10 Strength", "Gain Accuracy Rating equal to your Strength", statOrder = { 5827, 6597 }, level = 85, group = "GainAccuracyEqualToStrengthMaven", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack", "critical" }, }, + ["MinionLifeInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "Minions have (36-40)% increased maximum Life", "Minions Regenerate (1-1.5)% of Life per second", statOrder = { 1677, 2821 }, level = 85, group = "MinionLifeMaven", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "minion" }, }, + ["PowerChargeOnKillInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "50% increased Power Charge Duration", "(11-15)% chance to gain a Power Charge on Kill", statOrder = { 2051, 2541 }, level = 90, group = "PowerChargeOnKillChanceMaven", weightKey = { "helmet_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "sceptre_eyrie", "wand_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "power_charge", "influence_mod" }, }, + ["PhysTakenAsColdHelmetInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "(11-13)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2357 }, level = 93, group = "PhysicalDamageTakenAsColdUber", weightKey = { "helmet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical", "elemental", "cold" }, }, + ["SpellsAdditionalUnleashSealInfluenceMaven___"] = { type = "Prefix", affix = "Elevated Redeemer's", "(50-75)% increased Critical Strike Chance with Spells which remove the maximum number of Seals", "Skills supported by Unleash have +1 to maximum number of Seals", statOrder = { 9921, 10494 }, level = 90, group = "SpellsAdditionalUnleashSealMaven", weightKey = { "helmet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "critical" }, }, + ["EnemyColdResistanceAuraInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "Nearby Enemies have -12% to Cold Resistance", statOrder = { 7764 }, level = 95, group = "NearbyEnemyColdDamageResistance", weightKey = { "helmet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "resistance" }, }, + ["ReducedManaReservationInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(12-14)% increased Mana Reservation Efficiency of Skills", statOrder = { 2141 }, level = 85, group = "ReducedReservation", weightKey = { "helmet_eyrie", "amulet_eyrie", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, + ["ManaReservationEfficiencyInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(11-14)% increased Mana Reservation Efficiency of Skills", statOrder = { 2137 }, level = 85, group = "ManaReservationEfficiency", weightKey = { "helmet_eyrie", "amulet_eyrie", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, + ["IgniteChanceAndDamageInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(10-15)% chance to Ignite", "Ignites you inflict deal Damage (10-15)% faster", statOrder = { 1935, 2473 }, level = 85, group = "IgniteChanceAndDamageMaven", weightKey = { "helmet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, }, + ["FreezeChanceAndDurationInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(10-15)% chance to Freeze", "Freeze Enemies as though dealing (30-50)% more Damage", statOrder = { 1938, 6969 }, level = 85, group = "FreezeChanceAndDurationMaven", weightKey = { "helmet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, }, + ["ShockChanceAndEffectInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(10-15)% chance to Shock", "Shock Enemies as though dealing (30-50)% more Damage", statOrder = { 1942, 6970 }, level = 85, group = "ShockChanceAndEffectMaven", weightKey = { "helmet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, }, + ["AddedManaRegenerationInfluenceMaven_"] = { type = "Suffix", affix = "of Elevated Redemption", "Regenerate (6-8) Mana per second", "Mana Flasks gain 1 Charge every 3 seconds", statOrder = { 1493, 8008 }, level = 85, group = "AddedManaRegenerationMaven", weightKey = { "helmet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "resource", "influence_mod", "mana" }, }, + ["SpellAddedFireDamageInfluenceMaven"] = { type = "Prefix", affix = "Elevated Hunter's", "Adds (35-49) to (60-73) Fire Damage to Spells", statOrder = { 1315 }, level = 85, group = "SpellAddedFireDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedColdDamageInfluenceMaven"] = { type = "Prefix", affix = "Elevated Hunter's", "Adds (29-39) to (49-61) Cold Damage to Spells", statOrder = { 1316 }, level = 85, group = "SpellAddedColdDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedLightningDamageInfluenceMaven_"] = { type = "Prefix", affix = "Elevated Hunter's", "Adds (2-8) to (101-121) Lightning Damage to Spells", statOrder = { 1317 }, level = 85, group = "SpellAddedLightningDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedPhysicalDamageInfluenceMaven"] = { type = "Prefix", affix = "Elevated Hunter's", "Adds (35-49) to (60-73) Physical Damage to Spells", statOrder = { 1314 }, level = 85, group = "SpellAddedPhysicalDamage", weightKey = { "helmet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["SpellAddedChaosDamageInfluenceMaven_"] = { type = "Prefix", affix = "Elevated Hunter's", "Adds (29-39) to (49-61) Chaos Damage to Spells", statOrder = { 1318 }, level = 85, group = "SpellAddedChaosDamage", weightKey = { "helmet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["EnemyChaosResistanceAuraInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "Nearby Enemies have -12% to Chaos Resistance", statOrder = { 7763 }, level = 95, group = "NearbyEnemyChaosDamageResistance", weightKey = { "helmet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "chaos_damage", "damage", "chaos", "resistance" }, }, + ["PercentageIntelligenceInfluenceMaven_"] = { type = "Suffix", affix = "of the Elevated Hunt", "(11-12)% increased Intelligence", statOrder = { 1098 }, level = 85, group = "PercentageIntelligence", weightKey = { "helmet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "attribute" }, }, + ["IgnitingConfluxInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "(20-30)% increased Ignite Duration on Enemies", "You have Igniting Conflux for 3 seconds every 8 seconds", statOrder = { 1770, 6706 }, level = 90, group = "IgnitingConfluxMaven", weightKey = { "helmet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ChillingConfluxInfluenceMaven_"] = { type = "Suffix", affix = "of the Elevated Hunt", "(20-30)% increased Chill Duration on Enemies", "You have Chilling Conflux for 3 seconds every 8 seconds", statOrder = { 1767, 6706 }, level = 90, group = "ChillingConfluxMaven", weightKey = { "helmet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ShockingConfluxInfluenceMaven_"] = { type = "Suffix", affix = "of the Elevated Hunt", "(20-30)% increased Shock Duration on Enemies", "You have Shocking Conflux for 3 seconds every 8 seconds", statOrder = { 1768, 6706 }, level = 90, group = "ShockingConfluxMaven", weightKey = { "helmet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["IncreasedAttackSpeedUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Gems are Supported by Level 25 Faster Attacks", "(13-14)% increased Attack Speed", statOrder = { 396, 1321 }, level = 92, group = "IncreasedAttackSpeedSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, }, + ["IncreasedCastSpeedUberMaven_"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Faster Casting", "(13-14)% increased Cast Speed", statOrder = { 427, 1357 }, level = 94, group = "IncreasedCastSpeedSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "caster", "speed", "gem" }, }, + ["IncreasedAttackAndCastSpeedUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "(13-14)% increased Attack and Cast Speed", "(5-10)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1955, 2902 }, level = 95, group = "IncreasedAttackAndCastSpeedSupportedMaven", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack", "caster", "speed" }, }, + ["SupportedByManaLeechUberMaven__"] = { type = "Prefix", affix = "Elevated Shaper's", "Socketed Gems are Supported by Level 20 Mana Leech", "(20-30)% increased Maximum total Mana Recovery per second from Leech", statOrder = { 441, 1644 }, level = 78, group = "DisplaySupportedByManaLeechMaven", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "resource", "influence_mod", "mana", "gem" }, }, + ["ProjectileSpeedUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "Socketed Gems are supported by Level 25 Faster Projectiles", "(26-30)% increased Projectile Speed", statOrder = { 409, 1707 }, level = 92, group = "ProjectileSpeedSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, }, + ["ProjectileDamageUberMaven_"] = { type = "Prefix", affix = "Elevated Shaper's", "Socketed Gems are Supported by Level 25 Slower Projectiles", "(23-25)% increased Projectile Damage", statOrder = { 312, 1905 }, level = 93, group = "ProjectileDamageSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, + ["ChanceToAvoidInterruptionWhileCastingUberMaven_"] = { type = "Suffix", affix = "of Elevated Shaping", "(31-60)% chance to Ignore Stuns while Casting", statOrder = { 1809 }, level = 90, group = "AvoidInterruptionWhileCasting", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, + ["IncreasedMeleeWeaponRangeUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "+(0.3-0.4) metres to Melee Strike Range", statOrder = { 2443 }, level = 95, group = "MeleeWeaponAndUnarmedRange", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack" }, }, + ["IncreasedMeleeWeaponRangeAndMeleeDamageUberMaven_"] = { type = "Suffix", affix = "of the Elevated Elder", "(13-16)% increased Melee Damage", "+(0.3-0.4) metres to Melee Strike Range", statOrder = { 1146, 2443 }, level = 95, group = "MeleeDamageAndMeleeRange", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "attack" }, }, + ["AdditionalTrapsThrownSupportedUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Trap", "Skills which Throw Traps throw up to 1 additional Trap", statOrder = { 381, 9322 }, level = 94, group = "AdditionalTrapsThrownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, }, + ["TrapDamageUberMaven_"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Trap", "(31-35)% increased Trap Damage", statOrder = { 381, 1106 }, level = 90, group = "TrapDamageSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, + ["TrapDamageCooldownUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Advanced Traps", "(31-35)% increased Trap Damage", statOrder = { 324, 1106 }, level = 90, group = "TrapDamageCooldownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, + ["TrapSpeedCooldownUberMaven_"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Advanced Traps", "(17-20)% increased Trap Throwing Speed", statOrder = { 324, 1836 }, level = 90, group = "TrapSpeedCooldownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, }, + ["TrapDamageMineUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Trap And Mine Damage", "(31-35)% increased Trap Damage", statOrder = { 384, 1106 }, level = 90, group = "TrapDamageMineSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, + ["PoisonDamageSupportedUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Gems are Supported by Level 25 Chance to Poison", "(31-35)% increased Damage with Poison", statOrder = { 450, 3089 }, level = 90, group = "PoisonDamageSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "chaos_damage", "poison", "influence_mod", "damage", "chaos", "ailment", "gem" }, }, + ["PoisonDurationSupportedUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Gems are Supported by Level 25 Chance to Poison", "(17-20)% increased Poison Duration", statOrder = { 450, 3078 }, level = 90, group = "PoisonDurationSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "poison", "influence_mod", "chaos", "ailment", "gem" }, }, + ["BleedingDamageUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Gems are Supported by Level 25 Chance To Bleed", "(31-35)% increased Damage with Bleeding", statOrder = { 219, 3077 }, level = 90, group = "BleedingDamageSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment", "gem" }, }, + ["ChanceToGainFrenzyChargeOnKillUberElderMaven"] = { type = "Prefix", affix = "Elevated Elder's", "50% increased Frenzy Charge Duration", "(7-10)% chance to gain a Frenzy Charge on Kill", statOrder = { 2036, 2539 }, level = 94, group = "FrenzyChargeOnKillChanceMaven", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "frenzy_charge", "influence_mod" }, }, + ["IncreasedAccuracySupportedUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Gems are supported by Level 25 Additional Accuracy", "(16-20)% increased Global Accuracy Rating", statOrder = { 407, 1345 }, level = 93, group = "IncreasedAccuracyPercentSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "attack", "gem" }, }, + ["AdditionalBlockChanceUberMaven___"] = { type = "Suffix", affix = "of the Elevated Elder", "(4-5)% Chance to Block Attack Damage", "+1% to maximum Chance to Block Attack Damage", statOrder = { 1051, 1897 }, level = 90, group = "BlockPercentMaven", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "block", "influence_mod" }, }, + ["BlindOnHitSupportedUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are supported by Level 25 Blind", "(9-10)% Global chance to Blind Enemies on hit", statOrder = { 397, 2867 }, level = 90, group = "BlindOnHitSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, }, + ["SocketedSpellCriticalMultiplierUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Spells have +90% to Critical Strike Multiplier", statOrder = { 494 }, level = 93, group = "SocketedSpellCriticalMultiplier", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "skill", "caster_damage", "influence_mod", "damage", "caster", "critical", "gem" }, }, + ["SocketedAttackCriticalMultiplierUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Attacks have +90% to Critical Strike Multiplier", statOrder = { 475 }, level = 94, group = "SocketedAttackCriticalMultiplier", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "skill", "influence_mod", "damage", "attack", "critical", "gem" }, }, + ["ChaosNonAilmentDamageOverTimeMultiplierUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "+(17-24)% to Chaos Damage over Time Multiplier", statOrder = { 1171 }, level = 90, group = "ChaosDamageOverTimeMultiplier", weightKey = { "gloves_elder", "amulet_elder", "default", }, weightVal = { 0, 0, 0 }, modTags = { "dot_multi", "chaos_damage", "influence_mod", "damage", "chaos" }, }, + ["ColdDamageOverTimeMultiplierUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "+(17-24)% to Cold Damage over Time Multiplier", statOrder = { 1168 }, level = 90, group = "ColdDamageOverTimeMultiplier", weightKey = { "gloves_shaper", "amulet_shaper", "default", }, weightVal = { 0, 0, 0 }, modTags = { "dot_multi", "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, }, + ["FireDamageOverTimeMultiplierUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "+(17-24)% to Fire Damage over Time Multiplier", statOrder = { 1163 }, level = 90, group = "FireDamageOverTimeMultiplier", weightKey = { "gloves_shaper", "amulet_shaper", "default", }, weightVal = { 0, 0, 0 }, modTags = { "dot_multi", "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, + ["PhysicalDamageOverTimeMultiplierUberMaven_"] = { type = "Suffix", affix = "of the Elevated Elder", "+(17-24)% to Physical Damage over Time Multiplier", statOrder = { 1159 }, level = 90, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "gloves_elder", "amulet_elder", "default", }, weightVal = { 0, 0, 0 }, modTags = { "dot_multi", "physical_damage", "influence_mod", "damage", "physical" }, }, + ["AvoidStunInfluenceMaven__"] = { type = "Suffix", affix = "of the Elevated Conquest", "(36-50)% chance to Avoid being Stunned", statOrder = { 1762 }, level = 85, group = "AvoidStun", weightKey = { "boots_adjudicator", "gloves_adjudicator", "quiver_adjudicator", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "influence_mod" }, }, + ["MaximumColdResistanceInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "+3% to maximum Cold Resistance", statOrder = { 1540 }, level = 95, group = "MaximumColdResist", weightKey = { "gloves_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "resistance" }, }, + ["MaximumColdResistanceInfluenceMavenNew"] = { type = "Suffix", affix = "of the Elevated Crusade", "+3% to maximum Cold Resistance", statOrder = { 1540 }, level = 95, group = "MaximumColdResist", weightKey = { "gloves_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "resistance" }, }, + ["ConvertPhysicalToFireInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "Gain (3-5)% of Physical Damage as Extra Fire Damage", "(22-25)% of Physical Damage Converted to Fire Damage", statOrder = { 1841, 1864 }, level = 81, group = "ConvertPhysicalToFireMaven", weightKey = { "gloves_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, }, + ["ConvertPhysicalToColdInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "Gain (3-5)% of Physical Damage as Extra Cold Damage", "(22-25)% of Physical Damage Converted to Cold Damage", statOrder = { 1842, 1866 }, level = 81, group = "ConvertPhysicalToColdMaven", weightKey = { "gloves_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, }, + ["ConvertPhysicalToLightningInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "Gain (3-5)% of Physical Damage as Extra Lightning Damage", "(22-25)% of Physical Damage Converted to Lightning Damage", statOrder = { 1843, 1868 }, level = 81, group = "ConvertPhysicalToLightningMaven", weightKey = { "gloves_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, }, + ["MaximumLifeLeechRateInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "20% increased Maximum total Life Recovery per second from Leech", statOrder = { 1642 }, level = 85, group = "MaximumLifeLeechRate", weightKey = { "gloves_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life" }, }, + ["MaximumEnergyShieldLeechRateInfluenceMaven_"] = { type = "Prefix", affix = "Elevated Crusader's", "30% increased Maximum total Energy Shield Recovery per second from Leech", statOrder = { 1645 }, level = 85, group = "MaximumEnergyShieldLeechRate", weightKey = { "gloves_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, + ["AvoidInterruptionWhileCastingInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "(31-60)% chance to Ignore Stuns while Casting", statOrder = { 1809 }, level = 85, group = "AvoidInterruptionWhileCasting", weightKey = { "gloves_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, + ["GlobalCriticalStrikeChanceInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "(31-60)% increased Global Critical Strike Chance", statOrder = { 1370 }, level = 85, group = "CriticalStrikeChance", weightKey = { "gloves_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "critical" }, }, + ["MaximumFrenzyChargeInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "+1 to Maximum Frenzy Charges", "10% chance that if you would gain Frenzy Charges, you instead gain up to your maximum number of Frenzy Charges", statOrder = { 1720, 6658 }, level = 85, group = "MaximumFrenzyChargesMaven", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "frenzy_charge", "influence_mod" }, }, + ["MeleeDamageInfluenceMaven__"] = { type = "Prefix", affix = "Elevated Warlord's", "(31-38)% increased Melee Damage", statOrder = { 1146 }, level = 83, group = "MeleeDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "attack" }, }, + ["ProjectileAttackDamageInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "(31-38)% increased Projectile Attack Damage", statOrder = { 1906 }, level = 83, group = "ProjectileAttackDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "attack" }, }, + ["SpellDamageInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "(31-38)% increased Spell Damage", statOrder = { 1135 }, level = 83, group = "SpellDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, }, + ["DamageOverTimeInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "(31-38)% increased Damage over Time", statOrder = { 1122 }, level = 83, group = "DegenerationDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage" }, }, + ["MeleeWeaponRangeInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "+(0.3-0.4) metres to Melee Strike Range", statOrder = { 2443 }, level = 92, group = "MeleeWeaponAndUnarmedRange", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack" }, }, + ["BlockPercentInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "(4-5)% Chance to Block Attack Damage", "+1% to maximum Chance to Block Attack Damage", statOrder = { 1051, 1897 }, level = 90, group = "BlockPercentMaven", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "block", "influence_mod" }, }, + ["CullingStrikeInfluenceMaven__"] = { type = "Suffix", affix = "of the Elevated Conquest", "Culling Strike", "(15-25)% increased Area of Effect if you've dealt a Culling Strike Recently", statOrder = { 1948, 4625 }, level = 83, group = "CullingStrikeMaven", weightKey = { "gloves_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "bow_adjudicator", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "influence_mod" }, }, + ["FrenzyChargeOnKillInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "50% increased Frenzy Charge Duration", "(7-10)% chance to gain a Frenzy Charge on Kill", statOrder = { 2036, 2539 }, level = 90, group = "FrenzyChargeOnKillChanceMaven", weightKey = { "gloves_eyrie", "quiver_eyrie", "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "bow_eyrie", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "frenzy_charge", "influence_mod" }, }, + ["AddedPhysicalDamageCritRecentlyInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "Adds (9-12) to (13-16) Physical Damage if you've dealt a Critical Strike Recently", statOrder = { 9058 }, level = 83, group = "AddedPhysicalDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, }, + ["AddedFireDamageCritRecentlyInfluenceMaven_"] = { type = "Prefix", affix = "Elevated Redeemer's", "Adds (26-30) to (36-45) Fire Damage if you've dealt a Critical Strike Recently", statOrder = { 9046 }, level = 83, group = "AddedFireDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, + ["AddedColdDamageCritRecentlyInfluenceMaven_"] = { type = "Prefix", affix = "Elevated Redeemer's", "Adds (26-30) to (36-45) Cold Damage if you've dealt a Critical Strike Recently", statOrder = { 9041 }, level = 83, group = "AddedColdDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, }, + ["AddedLightningDamageCritRecentlyInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "Adds 1 to (61-90) Lightning Damage if you've dealt a Critical Strike Recently", statOrder = { 9052 }, level = 83, group = "AddedLightningDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, }, + ["MinionDamageInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "Minions deal (31-45)% increased Damage", statOrder = { 1882 }, level = 83, group = "MinionDamage", weightKey = { "gloves_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "minion" }, }, + ["IncreasedAccuracyPercentInfluenceMaven_"] = { type = "Suffix", affix = "of Elevated Redemption", "(21-30)% increased Global Accuracy Rating", statOrder = { 1345 }, level = 90, group = "IncreasedAccuracyPercent", weightKey = { "gloves_eyrie", "quiver_eyrie", "ring_eyrie", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "influence_mod", "attack" }, }, + ["GlobalChanceToBlindOnHitInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(20-30)% increased Damage with Hits and Ailments against Blinded Enemies", "(12-15)% Global chance to Blind Enemies on hit", statOrder = { 2721, 2867 }, level = 90, group = "GlobalChanceToBlindOnHitMaven", weightKey = { "gloves_eyrie", "quiver_eyrie", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "damage" }, }, + ["AdditionalChanceToEvadeInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(7-12)% increased Attack and Cast Speed if you haven't been Hit Recently", "+(2-4)% chance to Evade Attack Hits", statOrder = { 4714, 5571 }, level = 85, group = "AdditionalChanceToEvadeMaven", weightKey = { "gloves_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "evasion", "attack", "caster", "speed" }, }, + ["ChanceToIntimidateOnHitInfluenceMaven"] = { type = "Prefix", affix = "Elevated Hunter's", "Intimidate Enemies for 4 seconds on Hit", statOrder = { 5612 }, level = 95, group = "ChanceToIntimidateOnHit", weightKey = { "gloves_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["ChanceToUnnerveOnHitInfluenceMaven"] = { type = "Prefix", affix = "Elevated Hunter's", "Unnerve Enemies for 4 seconds on Hit", statOrder = { 5622 }, level = 95, group = "ChanceToUnnerveOnHit", weightKey = { "gloves_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["StrikeSkillsAdditionalTargetInfluenceMaven"] = { type = "Prefix", affix = "Elevated Hunter's", "Non-Vaal Strike Skills target 2 additional nearby Enemies", statOrder = { 8996 }, level = 90, group = "StrikeSkillsAdditionalTarget", weightKey = { "gloves_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, }, + ["ChanceToImpaleInfluenceMaven_"] = { type = "Prefix", affix = "Elevated Hunter's", "(21-25)% chance to Impale Enemies on Hit with Attacks", "Adds (1-2) to (3-5) Physical Damage for each Impale on Enemy", statOrder = { 4815, 9060 }, level = 90, group = "AttackImpaleChanceMaven", weightKey = { "gloves_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "physical", "attack" }, }, + ["AilmentDurationInfluenceMaven"] = { type = "Prefix", affix = "Elevated Hunter's", "(13-15)% increased Duration of Ailments on Enemies", "(13-15)% increased Effect of Non-Damaging Ailments", statOrder = { 1771, 9296 }, level = 90, group = "IncreasedAilmentDurationMaven", weightKey = { "gloves_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "ailment" }, }, + ["PercentageDexterityInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "(11-12)% increased Dexterity", statOrder = { 1097 }, level = 85, group = "PercentageDexterity", weightKey = { "gloves_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "attribute" }, }, + ["FireDamageOverTimeMultiplierInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "+(21-25)% to Fire Damage over Time Multiplier", statOrder = { 1163 }, level = 90, group = "FireDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 0, 0, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["ColdDamageOverTimeMultiplierInfluenceMaven_"] = { type = "Suffix", affix = "of the Elevated Hunt", "+(21-25)% to Cold Damage over Time Multiplier", statOrder = { 1168 }, level = 90, group = "ColdDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 0, 0, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["ChaosDamageOverTimeMultiplierInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "+(21-25)% to Chaos Damage over Time Multiplier", statOrder = { 1171 }, level = 90, group = "ChaosDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 0, 0, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["PhysicalDamageOverTimeMultiplierInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "+(21-25)% to Physical Damage over Time Multiplier", statOrder = { 1159 }, level = 90, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 0, 0, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, + ["ManaGainPerTargetInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "Gain (3-5) Mana per Enemy Hit with Attacks", "(10-20)% increased Attack Speed while not on Low Mana", statOrder = { 1655, 4803 }, level = 78, group = "ManaGainPerTargetMaven", weightKey = { "gloves_basilisk", "quiver_basilisk", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana", "attack", "speed" }, }, + ["IncreasedDurationBootsUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Gems are Supported by Level 20 More Duration", "(10-15)% increased Skill Effect Duration", statOrder = { 263, 1806 }, level = 78, group = "SkillEffectDurationSupported", weightKey = { "boots_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, }, + ["IncreasedCooldownRecoveryBootsUberMaven_"] = { type = "Suffix", affix = "of Elevated Shaping", "(16-20)% increased Cooldown Recovery Rate", statOrder = { 4899 }, level = 90, group = "GlobalCooldownRecovery", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, + ["SupportedByFortifyUberMaven_"] = { type = "Prefix", affix = "Elevated Elder's", "Socketed Gems are Supported by Level 25 Fortify", statOrder = { 423 }, level = 78, group = "DisplaySocketedGemsSupportedByFortify", weightKey = { "boots_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, }, + ["ImmuneToChilledGroundUberMaven"] = { type = "Prefix", affix = "Elevated Shaper's", "Unaffected by Chill", statOrder = { 10241 }, level = 78, group = "ChilledGroundEffectEffectivenessMaven", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, }, + ["ImmuneToBurningGroundUberMaven_"] = { type = "Prefix", affix = "Elevated Shaper's", "Unaffected by Ignite", statOrder = { 10256 }, level = 78, group = "BurningGroundEffectEffectivenessMaven", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "ailment" }, }, + ["ImmuneToShockedGroundUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "Unaffected by Shock", statOrder = { 10260 }, level = 78, group = "ShockedGroundEffectEffectivenessMaven", weightKey = { "boots_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, }, + ["ImmuneToDesecratedGroundUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "Unaffected by Poison", statOrder = { 4949 }, level = 78, group = "DesecratedGroundEffectEffectivenessMaven", weightKey = { "boots_elder", "default", }, weightVal = { 0, 0 }, modTags = { "poison", "influence_mod", "chaos", "ailment" }, }, + ["ChanceToDodgeUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "+(16-18)% chance to Suppress Spell Damage", statOrder = { 1055 }, level = 94, group = "ChanceToSuppressSpellsMavenOld", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, + ["ChanceToDodgeSpellsUberMaven_"] = { type = "Suffix", affix = "of the Elevated Elder", "+(16-18)% chance to Suppress Spell Damage", statOrder = { 1055 }, level = 93, group = "ChanceToSuppressSpellsMavenOld", weightKey = { "boots_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, + ["ChanceToAvoidStunUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "(36-50)% chance to Avoid being Stunned", statOrder = { 1762 }, level = 92, group = "AvoidStun", weightKey = { "boots_elder", "quiver_elder", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod" }, }, + ["ChanceToAvoidElementalAilmentsUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "(36-45)% chance to Avoid Elemental Ailments", statOrder = { 1754 }, level = 91, group = "AvoidElementalStatusAilments", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["ChanceToAvoidProjectilesUberMaven___"] = { type = "Suffix", affix = "of Elevated Shaping", "(11-15)% chance to avoid Projectiles if you've taken Projectile Damage Recently", "(10-12)% chance to avoid Projectiles", statOrder = { 4846, 4887 }, level = 94, group = "ChanceToAvoidProjectilesMaven", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, + ["ChanceToGainEnduranceChargeOnKillUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "50% increased Endurance Charge Duration", "(7-10)% chance to gain an Endurance Charge on Kill", statOrder = { 2034, 2537 }, level = 93, group = "EnduranceChargeOnKillChanceMaven", weightKey = { "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "staff_elder", "warstaff_elder", "boots_elder", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "endurance_charge", "influence_mod" }, }, + ["TotemDamageSpellUberMaven_"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Gems are Supported by Level 25 Spell Totem", "(31-35)% increased Totem Damage", statOrder = { 391, 1105 }, level = 90, group = "TotemDamageSpellSupported", weightKey = { "boots_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, + ["TotemSpeedSpellUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Gems are Supported by Level 25 Spell Totem", "(17-20)% increased Totem Placement speed", statOrder = { 391, 2487 }, level = 90, group = "TotemSpeedSpellSupported", weightKey = { "boots_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, }, + ["TotemDamageAttackUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Ballista Totem", "(31-35)% increased Totem Damage", statOrder = { 299, 1105 }, level = 90, group = "TotemDamageAttackSupported", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, + ["TotemSpeedAttackUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Ballista Totem", "(17-20)% increased Totem Placement speed", statOrder = { 299, 2487 }, level = 90, group = "TotemSpeedAttackSupported", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, }, + ["SupportedByLifeLeechUberMaven__"] = { type = "Prefix", affix = "Elevated Shaper's", "Socketed Gems are supported by Level 20 Life Leech", statOrder = { 410 }, level = 78, group = "SupportedByLifeLeech", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, }, + ["GrantsDecoyTotemSkillUberMaven_"] = { type = "Suffix", affix = "of Elevated Shaping", "Grants Level 25 Decoy Totem Skill", statOrder = { 614 }, level = 78, group = "DecoyTotemSkill", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "skill", "influence_mod" }, }, + ["GlobalRaiseSpectreGemLevelUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "+2 to Level of all Raise Spectre Gems", statOrder = { 1527 }, level = 85, group = "MinionGlobalSkillLevel", weightKey = { "boots_elder", "default", }, weightVal = { 0, 0 }, modTags = { "skill", "influence_mod", "minion", "gem" }, }, + ["UnaffectedByShockedGroundInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "Unaffected by Shock", statOrder = { 10260 }, level = 78, group = "ShockedGroundEffectEffectivenessMaven", weightKey = { "boots_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, }, + ["SocketedLightningGemLevelInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "+2 to Level of Socketed Lightning Gems", "+(3-7)% to Quality of Socketed Lightning Gems", statOrder = { 149, 195 }, level = 78, group = "LocalIncreaseSocketedLightningGemLevelMaven", weightKey = { "boots_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "gem" }, }, + ["MaximumFireResistanceInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "+3% to maximum Fire Resistance", statOrder = { 1534 }, level = 95, group = "MaximumFireResist", weightKey = { "boots_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "resistance" }, }, + ["MaximumFireResistanceInfluenceMavenNew"] = { type = "Suffix", affix = "of the Elevated Crusade", "+3% to maximum Fire Resistance", statOrder = { 1534 }, level = 95, group = "MaximumFireResist", weightKey = { "boots_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "resistance" }, }, + ["PhysicalAddedAsExtraLightningBootsInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "Gain (9-11)% of Physical Damage as Extra Lightning Damage", statOrder = { 1843 }, level = 85, group = "PhysicalAddedAsLightning", weightKey = { "boots_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, }, + ["CooldownRecoveryInfluenceMaven_"] = { type = "Suffix", affix = "of the Elevated Crusade", "(16-20)% increased Cooldown Recovery Rate", statOrder = { 4899 }, level = 90, group = "GlobalCooldownRecovery", weightKey = { "boots_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, + ["AvoidIgniteInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "(71-80)% chance to Avoid being Ignited", statOrder = { 1757 }, level = 85, group = "AvoidIgnite", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "ailment" }, }, + ["AvoidFreezeInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "(71-80)% chance to Avoid being Frozen", statOrder = { 1756 }, level = 85, group = "AvoidFreeze", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, }, + ["AvoidShockInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "(71-80)% chance to Avoid being Shocked", statOrder = { 1759 }, level = 85, group = "AvoidShock", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, }, + ["AvoidProjectilesInfluenceMaven_"] = { type = "Suffix", affix = "of Elevated Redemption", "(11-15)% chance to avoid Projectiles if you've taken Projectile Damage Recently", "(10-12)% chance to avoid Projectiles", statOrder = { 4846, 4887 }, level = 83, group = "ChanceToAvoidProjectilesMaven", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, + ["UnaffectedByBurningGroundInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "Unaffected by Ignite", statOrder = { 10256 }, level = 78, group = "BurningGroundEffectEffectivenessMaven", weightKey = { "boots_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "ailment" }, }, + ["SocketedFireGemLevelInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "+2 to Level of Socketed Fire Gems", "+(3-7)% to Quality of Socketed Fire Gems", statOrder = { 147, 193 }, level = 78, group = "LocalIncreaseSocketedFireGemLevelMaven", weightKey = { "boots_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "gem" }, }, + ["MaximumEnduranceChargeInfluenceMaven__"] = { type = "Prefix", affix = "Elevated Warlord's", "+1 to Maximum Endurance Charges", "10% chance that if you would gain Endurance Charges, you instead gain up to maximum Endurance Charges", statOrder = { 1715, 4146 }, level = 85, group = "MaximumEnduranceChargesMaven", weightKey = { "boots_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "endurance_charge", "influence_mod" }, }, + ["PhysicalAddedAsExtraFireBootsInfluenceMaven___"] = { type = "Prefix", affix = "Elevated Warlord's", "Gain (9-11)% of Physical Damage as Extra Fire Damage", statOrder = { 1841 }, level = 85, group = "PhysicalAddedAsFire", weightKey = { "boots_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, }, + ["AvoidFireDamageInfluenceMaven_____"] = { type = "Suffix", affix = "of the Elevated Conquest", "+(20-30)% to Fire Resistance", "(8-10)% chance to Avoid Fire Damage from Hits", statOrder = { 1536, 3281 }, level = 90, group = "FireDamageAvoidanceMaven", weightKey = { "boots_adjudicator", "shield_adjudicator", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "resistance" }, }, + ["AvoidColdDamageInfluenceMaven_"] = { type = "Suffix", affix = "of the Elevated Conquest", "+(20-30)% to Cold Resistance", "(8-10)% chance to Avoid Cold Damage from Hits", statOrder = { 1542, 3282 }, level = 90, group = "ColdDamageAvoidanceMaven", weightKey = { "boots_adjudicator", "shield_adjudicator", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "resistance" }, }, + ["AvoidLightningDamageInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "+(20-30)% to Lightning Resistance", "(8-10)% chance to Avoid Lightning Damage from Hits", statOrder = { 1547, 3283 }, level = 90, group = "LightningDamageAvoidanceMaven", weightKey = { "boots_adjudicator", "shield_adjudicator", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "resistance" }, }, + ["AdditionalPhysicalDamageReductionInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "(15-20)% increased Armour", "(2-4)% additional Physical Damage Reduction", statOrder = { 1452, 2182 }, level = 85, group = "ReducedPhysicalDamageTakenMaven", weightKey = { "boots_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "armour", "physical" }, }, + ["UnaffectedByChilledGroundInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "Unaffected by Chill", statOrder = { 10241 }, level = 78, group = "ChilledGroundEffectEffectivenessMaven", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, }, + ["SocketedColdGemLevelInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "+2 to Level of Socketed Cold Gems", "+(3-7)% to Quality of Socketed Cold Gems", statOrder = { 148, 190 }, level = 78, group = "LocalIncreaseSocketedColdGemLevelMaven", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "gem" }, }, + ["EnduranceChargeOnKillInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "50% increased Endurance Charge Duration", "(7-10)% chance to gain an Endurance Charge on Kill", statOrder = { 2034, 2537 }, level = 90, group = "EnduranceChargeOnKillChanceMaven", weightKey = { "boots_eyrie", "sword_eyrie", "axe_eyrie", "mace_eyrie", "sceptre_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "endurance_charge", "influence_mod" }, }, + ["PhysicalAddedAsExtraColdBootsInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "Gain (9-11)% of Physical Damage as Extra Cold Damage", statOrder = { 1842 }, level = 85, group = "PhysicalAddedAsCold", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, }, + ["ElusiveOnCriticalStrikeInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "(11-20)% chance to gain Elusive on Critical Strike", "(5-10)% increased Elusive Effect", statOrder = { 4188, 6243 }, level = 85, group = "ElusiveOnCriticalStrikeMaven", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "critical" }, }, + ["ChanceToDodgeAttacksInfluenceMaven__"] = { type = "Suffix", affix = "of Elevated Redemption", "+(16-18)% chance to Suppress Spell Damage", statOrder = { 1055 }, level = 90, group = "ChanceToSuppressSpellsMavenOld", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, + ["ChanceToDodgeSpellsInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "+(16-18)% chance to Suppress Spell Damage", statOrder = { 1055 }, level = 90, group = "ChanceToSuppressSpellsMavenOld", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, + ["IncreasedAilmentEffectOnEnemiesInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(41-60)% increased Effect of Non-Damaging Ailments", statOrder = { 9296 }, level = 83, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "ailment" }, }, + ["OnslaughtOnKillInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(8-10)% chance to gain Onslaught for 4 seconds on Kill", "(3-10)% increased Attack, Cast and Movement Speed while you have Onslaught", statOrder = { 2902, 4736 }, level = 90, group = "ChanceToGainOnslaughtOnKillMaven", weightKey = { "boots_eyrie", "quiver_eyrie", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "attack", "caster", "speed" }, }, + ["UnaffectedByDesecratedGroundInfluenceMaven"] = { type = "Prefix", affix = "Elevated Hunter's", "Unaffected by Poison", statOrder = { 4949 }, level = 78, group = "DesecratedGroundEffectEffectivenessMaven", weightKey = { "boots_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["SocketedChaosGemLevelInfluenceMaven"] = { type = "Prefix", affix = "Elevated Hunter's", "+2 to Level of Socketed Chaos Gems", "+(3-7)% to Quality of Socketed Chaos Gems", statOrder = { 150, 189 }, level = 78, group = "LocalIncreaseSocketedChaosGemLevelMaven", weightKey = { "boots_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "chaos", "gem" }, }, + ["AdditionalPierceInfluenceMaven__"] = { type = "Prefix", affix = "Elevated Hunter's", "Projectiles Pierce (3-5) additional Targets", statOrder = { 1701 }, level = 90, group = "AdditionalPierce", weightKey = { "boots_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["PercentageStrengthInfluenceMaven_"] = { type = "Suffix", affix = "of the Elevated Hunt", "(11-12)% increased Strength", statOrder = { 1096 }, level = 85, group = "PercentageStrength", weightKey = { "boots_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "attribute" }, }, + ["AvoidBleedAndPoisonInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "(61-70)% chance to Avoid being Poisoned", "(61-70)% chance to Avoid Bleeding", statOrder = { 1760, 4123 }, level = 85, group = "AvoidBleedAndPoison", weightKey = { "boots_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "bleed", "poison", "physical", "chaos", "attack", "ailment" }, }, + ["TailwindOnCriticalStrikeInfluenceMaven_"] = { type = "Suffix", affix = "of the Elevated Hunt", "(10-25)% increased Effect of Tailwind on you", "You have Tailwind if you have dealt a Critical Strike Recently", statOrder = { 10130, 10132 }, level = 85, group = "TailwindOnCriticalStrikeMaven", weightKey = { "boots_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["FasterIgniteInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "(10-20)% increased Ignite Duration on Enemies", "Ignites you inflict deal Damage (11-15)% faster", statOrder = { 1770, 2473 }, level = 83, group = "FasterIgniteDamageMaven", weightKey = { "boots_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, + ["FasterBleedInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "(10-20)% increased Bleeding Duration", "Bleeding you inflict deals Damage (11-15)% faster", statOrder = { 4888, 6430 }, level = 83, group = "FasterBleedDamageMaven", weightKey = { "boots_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["FasterPoisonInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "(10-20)% increased Poison Duration", "Poisons you inflict deal Damage (11-15)% faster", statOrder = { 3078, 6431 }, level = 83, group = "FasterPoisonDamageMaven", weightKey = { "boots_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["LocalIncreasedWard1"] = { type = "Prefix", affix = "Farrier's", "+(5-9) to Ward", statOrder = { 1439 }, level = 3, group = "LocalWard", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, + ["LocalIncreasedWard2"] = { type = "Prefix", affix = "Brownsmith's", "+(10-15) to Ward", statOrder = { 1439 }, level = 11, group = "LocalWard", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, + ["LocalIncreasedWard3_"] = { type = "Prefix", affix = "Coppersmith's", "+(16-23) to Ward", statOrder = { 1439 }, level = 17, group = "LocalWard", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, + ["LocalIncreasedWard4"] = { type = "Prefix", affix = "Blacksmith's", "+(24-35) to Ward", statOrder = { 1439 }, level = 23, group = "LocalWard", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, + ["LocalIncreasedWard5___"] = { type = "Prefix", affix = "Silversmith's", "+(36-52) to Ward", statOrder = { 1439 }, level = 29, group = "LocalWard", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, + ["LocalIncreasedWard6_"] = { type = "Prefix", affix = "Goldsmith's", "+(52-69) to Ward", statOrder = { 1439 }, level = 35, group = "LocalWard", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, + ["LocalIncreasedWard7"] = { type = "Prefix", affix = "Whitesmith's", "+(70-84) to Ward", statOrder = { 1439 }, level = 43, group = "LocalWard", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, + ["LocalIncreasedWard8__"] = { type = "Prefix", affix = "Engraver's", "+(85-99) to Ward", statOrder = { 1439 }, level = 51, group = "LocalWard", weightKey = { "gloves", "boots", "ward_armour", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "defences" }, }, + ["LocalIncreasedWard9"] = { type = "Prefix", affix = "Runesmith's", "+(100-119) to Ward", statOrder = { 1439 }, level = 60, group = "LocalWard", weightKey = { "helmet", "gloves", "boots", "ward_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "defences" }, }, + ["LocalIncreasedWard10____"] = { type = "Prefix", affix = "Runemaster's", "+(120-139) to Ward", statOrder = { 1439 }, level = 69, group = "LocalWard", weightKey = { "helmet", "gloves", "boots", "ward_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "defences" }, }, + ["LocalIncreasedWard11"] = { type = "Prefix", affix = "Artificer's", "+(140-159) to Ward", statOrder = { 1439 }, level = 75, group = "LocalWard", weightKey = { "shield", "helmet", "gloves", "boots", "ward_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, modTags = { "defences" }, }, + ["LocalIncreasedWardPercent1"] = { type = "Prefix", affix = "Chiseled", "(11-28)% increased Ward", statOrder = { 1441 }, level = 3, group = "LocalWardPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, + ["LocalIncreasedWardPercent2"] = { type = "Prefix", affix = "Etched", "(27-42)% increased Ward", statOrder = { 1441 }, level = 18, group = "LocalWardPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, + ["LocalIncreasedWardPercent3"] = { type = "Prefix", affix = "Engraved", "(43-55)% increased Ward", statOrder = { 1441 }, level = 30, group = "LocalWardPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, + ["LocalIncreasedWardPercent4"] = { type = "Prefix", affix = "Embedded", "(56-67)% increased Ward", statOrder = { 1441 }, level = 44, group = "LocalWardPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, + ["LocalIncreasedWardPercent5"] = { type = "Prefix", affix = "Inscribed", "(68-79)% increased Ward", statOrder = { 1441 }, level = 60, group = "LocalWardPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, + ["LocalIncreasedWardPercent6"] = { type = "Prefix", affix = "Lettered", "(80-91)% increased Ward", statOrder = { 1441 }, level = 72, group = "LocalWardPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, + ["LocalIncreasedWardPercent7"] = { type = "Prefix", affix = "Runed", "(92-100)% increased Ward", statOrder = { 1441 }, level = 84, group = "LocalWardPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, + ["LocalIncreasedWardPercent8"] = { type = "Prefix", affix = "Calligraphic", "(101-110)% increased Ward", statOrder = { 1441 }, level = 86, group = "LocalWardPercent", weightKey = { "helmet", "gloves", "boots", "ward_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "defences" }, }, + ["LocalIncreasedWardPercentAndStunRecovery1______"] = { type = "Prefix", affix = "Improved", "(6-13)% increased Ward", "(6-7)% increased Stun and Block Recovery", statOrder = { 1441, 1811 }, level = 3, group = "LocalWardAndStunRecoveryPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, + ["LocalIncreasedWardPercentAndStunRecovery2_"] = { type = "Prefix", affix = "Enhanced", "(14-20)% increased Ward", "(8-9)% increased Stun and Block Recovery", statOrder = { 1441, 1811 }, level = 18, group = "LocalWardAndStunRecoveryPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, + ["LocalIncreasedWardPercentAndStunRecovery3"] = { type = "Prefix", affix = "Bolstered", "(21-26)% increased Ward", "(10-11)% increased Stun and Block Recovery", statOrder = { 1441, 1811 }, level = 30, group = "LocalWardAndStunRecoveryPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, + ["LocalIncreasedWardPercentAndStunRecovery4"] = { type = "Prefix", affix = "Elegant", "(27-32)% increased Ward", "(12-13)% increased Stun and Block Recovery", statOrder = { 1441, 1811 }, level = 44, group = "LocalWardAndStunRecoveryPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, + ["LocalIncreasedWardPercentAndStunRecovery5"] = { type = "Prefix", affix = "Exquisite", "(33-38)% increased Ward", "(14-15)% increased Stun and Block Recovery", statOrder = { 1441, 1811 }, level = 60, group = "LocalWardAndStunRecoveryPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, + ["LocalIncreasedWardPercentAndStunRecovery6_"] = { type = "Prefix", affix = "Masterwork", "(39-42)% increased Ward", "(16-17)% increased Stun and Block Recovery", statOrder = { 1441, 1811 }, level = 78, group = "LocalWardAndStunRecoveryPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, + ["LocalBaseWardAndLife1__"] = { type = "Prefix", affix = "Annest's", "+(15-20) to Ward", "+(18-23) to maximum Life", statOrder = { 1439, 1480 }, level = 30, group = "LocalBaseWardAndLife", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life", "defences" }, }, + ["LocalBaseWardAndLife2"] = { type = "Prefix", affix = "Owen's", "+(21-30) to Ward", "+(24-28) to maximum Life", statOrder = { 1439, 1480 }, level = 46, group = "LocalBaseWardAndLife", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life", "defences" }, }, + ["LocalBaseWardAndLife3_"] = { type = "Prefix", affix = "Gwayne's", "+(31-40) to Ward", "+(29-33) to maximum Life", statOrder = { 1439, 1480 }, level = 62, group = "LocalBaseWardAndLife", weightKey = { "boots", "gloves", "ward_armour", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "resource", "life", "defences" }, }, + ["LocalBaseWardAndLife4_"] = { type = "Prefix", affix = "Cadigan's", "+(41-50) to Ward", "+(34-38) to maximum Life", statOrder = { 1439, 1480 }, level = 78, group = "LocalBaseWardAndLife", weightKey = { "shield", "boots", "gloves", "helmet", "ward_armour", "default", }, weightVal = { 0, 0, 0, 0, 500, 0 }, modTags = { "resource", "life", "defences" }, }, + ["FasterStartOfWardRecharge1"] = { type = "Suffix", affix = "of Artifice", "(33-37)% faster Restoration of Ward", statOrder = { 1442 }, level = 46, group = "WardDelayRecovery", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, + ["FasterStartOfWardRecharge2"] = { type = "Suffix", affix = "of Etching", "(38-42)% faster Restoration of Ward", statOrder = { 1442 }, level = 57, group = "WardDelayRecovery", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, + ["FasterStartOfWardRecharge3"] = { type = "Suffix", affix = "of Engraving", "(43-47)% faster Restoration of Ward", statOrder = { 1442 }, level = 68, group = "WardDelayRecovery", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, + ["FasterStartOfWardRecharge4"] = { type = "Suffix", affix = "of Inscription", "(48-52)% faster Restoration of Ward", statOrder = { 1442 }, level = 76, group = "WardDelayRecovery", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, + ["FasterStartOfWardRecharge5"] = { type = "Suffix", affix = "of Runes", "(53-58)% faster Restoration of Ward", statOrder = { 1442 }, level = 85, group = "WardDelayRecovery", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, + ["HellscapeUpsideIncreasedLife1__"] = { type = "ScourgeUpside", affix = "", "+(23-25) to maximum Life", statOrder = { 1480 }, level = 1, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "flask", "map", "default", }, weightVal = { 0, 0, 0, 0, 1000 }, modTags = { "resource", "life" }, }, + ["HellscapeUpsideIncreasedLife2_"] = { type = "ScourgeUpside", affix = "", "+(28-30) to maximum Life", statOrder = { 1480 }, level = 45, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "flask", "map", "default", }, weightVal = { 0, 0, 0, 0, 1000 }, modTags = { "resource", "life" }, }, + ["HellscapeUpsideIncreasedLife3_"] = { type = "ScourgeUpside", affix = "", "+(33-35) to maximum Life", statOrder = { 1480 }, level = 68, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "flask", "map", "default", }, weightVal = { 0, 0, 0, 0, 1000 }, modTags = { "resource", "life" }, }, + ["HellscapeUpsideIncreasedLife4"] = { type = "ScourgeUpside", affix = "", "+(38-40) to maximum Life", statOrder = { 1480 }, level = 68, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "flask", "map", "default", }, weightVal = { 0, 0, 0, 0, 1000 }, modTags = { "resource", "life" }, }, + ["HellscapeUpsideLocalPhysicalDamageReductionRatingGlovesBoots1__"] = { type = "ScourgeUpside", affix = "", "+(30-33) to Armour", statOrder = { 1451 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { "body_armour", "helmet", "shield", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "armour" }, }, + ["HellscapeUpsideLocalPhysicalDamageReductionRatingGlovesBoots2"] = { type = "ScourgeUpside", affix = "", "+(34-37) to Armour", statOrder = { 1451 }, level = 45, group = "LocalPhysicalDamageReductionRating", weightKey = { "body_armour", "helmet", "shield", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "armour" }, }, + ["HellscapeUpsideLocalPhysicalDamageReductionRatingGlovesBoots3"] = { type = "ScourgeUpside", affix = "", "+(38-41) to Armour", statOrder = { 1451 }, level = 68, group = "LocalPhysicalDamageReductionRating", weightKey = { "body_armour", "helmet", "shield", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "armour" }, }, + ["HellscapeUpsideLocalPhysicalDamageReductionRatingGlovesBoots4_"] = { type = "ScourgeUpside", affix = "", "+(42-45) to Armour", statOrder = { 1451 }, level = 68, group = "LocalPhysicalDamageReductionRating", weightKey = { "body_armour", "helmet", "shield", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "armour" }, }, + ["HellscapeUpsideLocalPhysicalDamageReductionRatingHelmetShield1"] = { type = "ScourgeUpside", affix = "", "+(33-39) to Armour", statOrder = { 1451 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { "body_armour", "gloves", "boots", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "armour" }, }, + ["HellscapeUpsideLocalPhysicalDamageReductionRatingHelmetShield2__"] = { type = "ScourgeUpside", affix = "", "+(40-46) to Armour", statOrder = { 1451 }, level = 45, group = "LocalPhysicalDamageReductionRating", weightKey = { "body_armour", "gloves", "boots", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "armour" }, }, + ["HellscapeUpsideLocalPhysicalDamageReductionRatingHelmetShield3"] = { type = "ScourgeUpside", affix = "", "+(47-53) to Armour", statOrder = { 1451 }, level = 68, group = "LocalPhysicalDamageReductionRating", weightKey = { "body_armour", "gloves", "boots", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "armour" }, }, + ["HellscapeUpsideLocalPhysicalDamageReductionRatingHelmetShield4_"] = { type = "ScourgeUpside", affix = "", "+(54-60) to Armour", statOrder = { 1451 }, level = 68, group = "LocalPhysicalDamageReductionRating", weightKey = { "body_armour", "gloves", "boots", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "armour" }, }, + ["HellscapeUpsideLocalPhysicalDamageReductionRatingBodyArmour1"] = { type = "ScourgeUpside", affix = "", "+(31-60) to Armour", statOrder = { 1451 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { "helmet", "shield", "gloves", "boots", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "armour" }, }, + ["HellscapeUpsideLocalPhysicalDamageReductionRatingBodyArmour2"] = { type = "ScourgeUpside", affix = "", "+(61-90) to Armour", statOrder = { 1451 }, level = 45, group = "LocalPhysicalDamageReductionRating", weightKey = { "helmet", "shield", "gloves", "boots", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "armour" }, }, + ["HellscapeUpsideLocalPhysicalDamageReductionRatingBodyArmour3"] = { type = "ScourgeUpside", affix = "", "+(91-120) to Armour", statOrder = { 1451 }, level = 68, group = "LocalPhysicalDamageReductionRating", weightKey = { "helmet", "shield", "gloves", "boots", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "armour" }, }, + ["HellscapeUpsideLocalPhysicalDamageReductionRatingBodyArmour4_"] = { type = "ScourgeUpside", affix = "", "+(121-150) to Armour", statOrder = { 1451 }, level = 68, group = "LocalPhysicalDamageReductionRating", weightKey = { "helmet", "shield", "gloves", "boots", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "armour" }, }, + ["HellscapeUpsideLocalEvasionRatingGlovesBoots1"] = { type = "ScourgeUpside", affix = "", "+(30-33) to Evasion Rating", statOrder = { 1459 }, level = 1, group = "LocalEvasionRating", weightKey = { "body_armour", "helmet", "shield", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "evasion" }, }, + ["HellscapeUpsideLocalEvasionRatingGlovesBoots2___"] = { type = "ScourgeUpside", affix = "", "+(34-37) to Evasion Rating", statOrder = { 1459 }, level = 45, group = "LocalEvasionRating", weightKey = { "body_armour", "helmet", "shield", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "evasion" }, }, + ["HellscapeUpsideLocalEvasionRatingGlovesBoots3_"] = { type = "ScourgeUpside", affix = "", "+(38-41) to Evasion Rating", statOrder = { 1459 }, level = 68, group = "LocalEvasionRating", weightKey = { "body_armour", "helmet", "shield", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "evasion" }, }, + ["HellscapeUpsideLocalEvasionRatingGlovesBoots4_"] = { type = "ScourgeUpside", affix = "", "+(42-45) to Evasion Rating", statOrder = { 1459 }, level = 68, group = "LocalEvasionRating", weightKey = { "body_armour", "helmet", "shield", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "evasion" }, }, + ["HellscapeUpsideLocalEvasionRatingHelmetShield1"] = { type = "ScourgeUpside", affix = "", "+(33-39) to Evasion Rating", statOrder = { 1459 }, level = 1, group = "LocalEvasionRating", weightKey = { "body_armour", "gloves", "boots", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "evasion" }, }, + ["HellscapeUpsideLocalEvasionRatingHelmetShield2"] = { type = "ScourgeUpside", affix = "", "+(40-46) to Evasion Rating", statOrder = { 1459 }, level = 45, group = "LocalEvasionRating", weightKey = { "body_armour", "gloves", "boots", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "evasion" }, }, + ["HellscapeUpsideLocalEvasionRatingHelmetShield3"] = { type = "ScourgeUpside", affix = "", "+(47-53) to Evasion Rating", statOrder = { 1459 }, level = 68, group = "LocalEvasionRating", weightKey = { "body_armour", "gloves", "boots", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "evasion" }, }, + ["HellscapeUpsideLocalEvasionRatingHelmetShield4"] = { type = "ScourgeUpside", affix = "", "+(54-60) to Evasion Rating", statOrder = { 1459 }, level = 68, group = "LocalEvasionRating", weightKey = { "body_armour", "gloves", "boots", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "evasion" }, }, + ["HellscapeUpsideLocalEvasionRatingBodyArmour1"] = { type = "ScourgeUpside", affix = "", "+(31-60) to Evasion Rating", statOrder = { 1459 }, level = 1, group = "LocalEvasionRating", weightKey = { "helmet", "shield", "gloves", "boots", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "evasion" }, }, + ["HellscapeUpsideLocalEvasionRatingBodyArmour2"] = { type = "ScourgeUpside", affix = "", "+(61-90) to Evasion Rating", statOrder = { 1459 }, level = 45, group = "LocalEvasionRating", weightKey = { "helmet", "shield", "gloves", "boots", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "evasion" }, }, + ["HellscapeUpsideLocalEvasionRatingBodyArmour3"] = { type = "ScourgeUpside", affix = "", "+(91-120) to Evasion Rating", statOrder = { 1459 }, level = 68, group = "LocalEvasionRating", weightKey = { "helmet", "shield", "gloves", "boots", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "evasion" }, }, + ["HellscapeUpsideLocalEvasionRatingBodyArmour4_"] = { type = "ScourgeUpside", affix = "", "+(121-150) to Evasion Rating", statOrder = { 1459 }, level = 68, group = "LocalEvasionRating", weightKey = { "helmet", "shield", "gloves", "boots", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "evasion" }, }, + ["HellscapeUpsideEnergyShieldGlovesBoots1_"] = { type = "ScourgeUpside", affix = "", "+(8-9) to maximum Energy Shield", statOrder = { 1470 }, level = 1, group = "LocalEnergyShield", weightKey = { "body_armour", "helmet", "shield", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, + ["HellscapeUpsideEnergyShieldGlovesBoots2__"] = { type = "ScourgeUpside", affix = "", "+(10-11) to maximum Energy Shield", statOrder = { 1470 }, level = 45, group = "LocalEnergyShield", weightKey = { "body_armour", "helmet", "shield", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, + ["HellscapeUpsideEnergyShieldGlovesBoots3"] = { type = "ScourgeUpside", affix = "", "+(12-13) to maximum Energy Shield", statOrder = { 1470 }, level = 68, group = "LocalEnergyShield", weightKey = { "body_armour", "helmet", "shield", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, + ["HellscapeUpsideEnergyShieldGlovesBoots4"] = { type = "ScourgeUpside", affix = "", "+(14-15) to maximum Energy Shield", statOrder = { 1470 }, level = 68, group = "LocalEnergyShield", weightKey = { "body_armour", "helmet", "shield", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, + ["HellscapeUpsideEnergyShieldHelmetShield1_"] = { type = "ScourgeUpside", affix = "", "+(11-12) to maximum Energy Shield", statOrder = { 1470 }, level = 1, group = "LocalEnergyShield", weightKey = { "body_armour", "gloves", "boots", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, + ["HellscapeUpsideEnergyShieldHelmetShield2"] = { type = "ScourgeUpside", affix = "", "+(13-14) to maximum Energy Shield", statOrder = { 1470 }, level = 45, group = "LocalEnergyShield", weightKey = { "body_armour", "gloves", "boots", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, + ["HellscapeUpsideEnergyShieldHelmetShield3"] = { type = "ScourgeUpside", affix = "", "+(15-16) to maximum Energy Shield", statOrder = { 1470 }, level = 68, group = "LocalEnergyShield", weightKey = { "body_armour", "gloves", "boots", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, + ["HellscapeUpsideEnergyShieldHelmetShield4"] = { type = "ScourgeUpside", affix = "", "+(17-18) to maximum Energy Shield", statOrder = { 1470 }, level = 68, group = "LocalEnergyShield", weightKey = { "body_armour", "gloves", "boots", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, + ["HellscapeUpsideEnergyShieldBodyArmour1"] = { type = "ScourgeUpside", affix = "", "+(15-18) to maximum Energy Shield", statOrder = { 1470 }, level = 1, group = "LocalEnergyShield", weightKey = { "helmet", "shield", "gloves", "boots", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, + ["HellscapeUpsideEnergyShieldBodyArmour2_"] = { type = "ScourgeUpside", affix = "", "+(19-22) to maximum Energy Shield", statOrder = { 1470 }, level = 45, group = "LocalEnergyShield", weightKey = { "helmet", "shield", "gloves", "boots", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, + ["HellscapeUpsideEnergyShieldBodyArmour3_"] = { type = "ScourgeUpside", affix = "", "+(23-26) to maximum Energy Shield", statOrder = { 1470 }, level = 68, group = "LocalEnergyShield", weightKey = { "helmet", "shield", "gloves", "boots", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, + ["HellscapeUpsideEnergyShieldBodyArmour4"] = { type = "ScourgeUpside", affix = "", "+(27-30) to maximum Energy Shield", statOrder = { 1470 }, level = 68, group = "LocalEnergyShield", weightKey = { "helmet", "shield", "gloves", "boots", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, + ["HellscapeUpsidePhysicalDamageTakenAsFirePercent3"] = { type = "ScourgeUpside", affix = "", "4% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2356 }, level = 68, group = "PhysicalDamageTakenAsFirePercent", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["HellscapeUpsidePhysicalDamageTakenAsFirePercent4"] = { type = "ScourgeUpside", affix = "", "5% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2356 }, level = 68, group = "PhysicalDamageTakenAsFirePercent", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["HellscapeUpsidePhysicalDamageTakenAsCold3"] = { type = "ScourgeUpside", affix = "", "4% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2357 }, level = 68, group = "PhysicalDamageTakenAsCold", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["HellscapeUpsidePhysicalDamageTakenAsCold4"] = { type = "ScourgeUpside", affix = "", "5% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2357 }, level = 68, group = "PhysicalDamageTakenAsCold", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["HellscapeUpsidePhysicalDamageTakenAsLightningPercent3_"] = { type = "ScourgeUpside", affix = "", "4% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2358 }, level = 68, group = "PhysicalDamageTakenAsLightningPercent", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["HellscapeUpsidePhysicalDamageTakenAsLightningPercent4"] = { type = "ScourgeUpside", affix = "", "5% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2358 }, level = 68, group = "PhysicalDamageTakenAsLightningPercent", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["HellscapeUpsidePhysicalDamageTakenAsChaos3"] = { type = "ScourgeUpside", affix = "", "4% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2360 }, level = 68, group = "PhysicalDamageTakenAsChaos", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "physical", "chaos" }, }, + ["HellscapeUpsidePhysicalDamageTakenAsChaos4"] = { type = "ScourgeUpside", affix = "", "5% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2360 }, level = 68, group = "PhysicalDamageTakenAsChaos", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "physical", "chaos" }, }, + ["HellscapeUpsideBaseFreezeDurationOnSelf3_"] = { type = "ScourgeUpside", affix = "", "(31-35)% reduced Freeze Duration on you", statOrder = { 1785 }, level = 68, group = "ReducedFreezeDuration", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["HellscapeUpsideBaseFreezeDurationOnSelf4_"] = { type = "ScourgeUpside", affix = "", "(36-40)% reduced Freeze Duration on you", statOrder = { 1785 }, level = 68, group = "ReducedFreezeDuration", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["HellscapeUpsideChillEffectivenessOnSelf3_"] = { type = "ScourgeUpside", affix = "", "(31-35)% reduced Effect of Chill on you", statOrder = { 1556 }, level = 68, group = "ChillEffectivenessOnSelf", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["HellscapeUpsideChillEffectivenessOnSelf4_"] = { type = "ScourgeUpside", affix = "", "(36-40)% reduced Effect of Chill on you", statOrder = { 1556 }, level = 68, group = "ChillEffectivenessOnSelf", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["HellscapeUpsideReducedShockEffectOnSelf3"] = { type = "ScourgeUpside", affix = "", "(31-35)% reduced Effect of Shock on you", statOrder = { 9803 }, level = 68, group = "ReducedShockEffectOnSelf", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["HellscapeUpsideReducedShockEffectOnSelf4"] = { type = "ScourgeUpside", affix = "", "(36-40)% reduced Effect of Shock on you", statOrder = { 9803 }, level = 68, group = "ReducedShockEffectOnSelf", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["HellscapeUpsideReducedCurseEffect3"] = { type = "ScourgeUpside", affix = "", "(16-20)% reduced Effect of Curses on you", statOrder = { 2079 }, level = 68, group = "ReducedCurseEffect", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "caster", "curse" }, }, + ["HellscapeUpsideReducedCurseEffect4"] = { type = "ScourgeUpside", affix = "", "(21-25)% reduced Effect of Curses on you", statOrder = { 2079 }, level = 68, group = "ReducedCurseEffect", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "caster", "curse" }, }, + ["HellscapeUpsideCannotGainCorruptedBloodWhileYouHaveAtLeast5Stacks1"] = { type = "ScourgeUpside", affix = "", "Corrupted Blood cannot be inflicted on you if you have at least 5 Corrupted Blood Debuffs on you", statOrder = { 5326 }, level = 45, group = "CannotGainCorruptedBloodWhileYouHaveAtLeast5Stacks", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "damage" }, }, + ["HellscapeUpsideReducedBurnDuration3__"] = { type = "ScourgeUpside", affix = "", "(31-35)% reduced Ignite Duration on you", statOrder = { 1786 }, level = 68, group = "ReducedBurnDuration", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["HellscapeUpsideReducedBurnDuration4"] = { type = "ScourgeUpside", affix = "", "(36-40)% reduced Ignite Duration on you", statOrder = { 1786 }, level = 68, group = "ReducedBurnDuration", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["HellscapeUpsideChanceToAvoidBleeding2_"] = { type = "ScourgeUpside", affix = "", "(26-30)% chance to Avoid Bleeding", statOrder = { 4123 }, level = 45, group = "ChanceToAvoidBleeding", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["HellscapeUpsideChanceToAvoidBleeding3_"] = { type = "ScourgeUpside", affix = "", "(31-35)% chance to Avoid Bleeding", statOrder = { 4123 }, level = 68, group = "ChanceToAvoidBleeding", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["HellscapeUpsideChanceToAvoidBleeding4"] = { type = "ScourgeUpside", affix = "", "(36-40)% chance to Avoid Bleeding", statOrder = { 4123 }, level = 68, group = "ChanceToAvoidBleeding", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["HellscapeUpsideChillEnemiesWhenHit3"] = { type = "ScourgeUpside", affix = "", "Chill Enemy for 4 seconds when Hit, reducing their Action Speed by 30%", statOrder = { 3048 }, level = 68, group = "ChillEnemiesWhenHit", weightKey = { "amulet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["HellscapeUpsideChillEnemiesWhenHit4"] = { type = "ScourgeUpside", affix = "", "Chill Enemy for 5 seconds when Hit, reducing their Action Speed by 30%", statOrder = { 3048 }, level = 68, group = "ChillEnemiesWhenHit", weightKey = { "amulet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["HellscapeUpsideDamageTakenGainedAsLife2_"] = { type = "ScourgeUpside", affix = "", "(7-8)% of Damage taken Recouped as Life", statOrder = { 6000 }, level = 45, group = "DamageTakenGainedAsLife", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, }, + ["HellscapeUpsideDamageTakenGainedAsLife3___"] = { type = "ScourgeUpside", affix = "", "(9-10)% of Damage taken Recouped as Life", statOrder = { 6000 }, level = 68, group = "DamageTakenGainedAsLife", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, }, + ["HellscapeUpsideDamageTakenGainedAsLife4"] = { type = "ScourgeUpside", affix = "", "(11-12)% of Damage taken Recouped as Life", statOrder = { 6000 }, level = 68, group = "DamageTakenGainedAsLife", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, }, + ["HellscapeUpsideBaseChanceToDealTripleDamage1h2__"] = { type = "ScourgeUpside", affix = "", "3% chance to deal Triple Damage", statOrder = { 4894 }, level = 45, group = "BaseChanceToDealTripleDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, }, + ["HellscapeUpsideBaseChanceToDealTripleDamage1h3__"] = { type = "ScourgeUpside", affix = "", "4% chance to deal Triple Damage", statOrder = { 4894 }, level = 68, group = "BaseChanceToDealTripleDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, }, + ["HellscapeUpsideBaseChanceToDealTripleDamage1h4__"] = { type = "ScourgeUpside", affix = "", "5% chance to deal Triple Damage", statOrder = { 4894 }, level = 68, group = "BaseChanceToDealTripleDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, }, + ["HellscapeUpsideBaseChanceToDealTripleDamage2h2__"] = { type = "ScourgeUpside", affix = "", "5% chance to deal Triple Damage", statOrder = { 4894 }, level = 45, group = "BaseChanceToDealTripleDamage", weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { "damage" }, }, + ["HellscapeUpsideBaseChanceToDealTripleDamage2h3_"] = { type = "ScourgeUpside", affix = "", "6% chance to deal Triple Damage", statOrder = { 4894 }, level = 68, group = "BaseChanceToDealTripleDamage", weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { "damage" }, }, + ["HellscapeUpsideBaseChanceToDealTripleDamage2h4"] = { type = "ScourgeUpside", affix = "", "7% chance to deal Triple Damage", statOrder = { 4894 }, level = 68, group = "BaseChanceToDealTripleDamage", weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { "damage" }, }, + ["HellscapeUpsideOnslaughtWhenHitForDuration2"] = { type = "ScourgeUpside", affix = "", "You gain Onslaught for 2 seconds when Hit", statOrder = { 2736 }, level = 45, group = "OnslaughtWhenHitForDuration", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["HellscapeUpsideOnslaughtWhenHitForDuration3"] = { type = "ScourgeUpside", affix = "", "You gain Onslaught for 3 seconds when Hit", statOrder = { 2736 }, level = 68, group = "OnslaughtWhenHitForDuration", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["HellscapeUpsideOnslaughtWhenHitForDuration4"] = { type = "ScourgeUpside", affix = "", "You gain Onslaught for 4 seconds when Hit", statOrder = { 2736 }, level = 68, group = "OnslaughtWhenHitForDuration", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["HellscapeUpsideBaseMaximumLifeInflictedAsAoeFireDamageWhenHit2"] = { type = "ScourgeUpside", affix = "", "Deal (8-11)% of your maximum Life as Fire Damage to nearby Enemies when Hit", statOrder = { 3695 }, level = 45, group = "BaseMaximumLifeInflictedAsAoeFireDamageWhenHit", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["HellscapeUpsideBaseMaximumLifeInflictedAsAoeFireDamageWhenHit3"] = { type = "ScourgeUpside", affix = "", "Deal (12-15)% of your maximum Life as Fire Damage to nearby Enemies when Hit", statOrder = { 3695 }, level = 68, group = "BaseMaximumLifeInflictedAsAoeFireDamageWhenHit", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["HellscapeUpsideBaseMaximumLifeInflictedAsAoeFireDamageWhenHit4"] = { type = "ScourgeUpside", affix = "", "Deal (16-19)% of your maximum Life as Fire Damage to nearby Enemies when Hit", statOrder = { 3695 }, level = 68, group = "BaseMaximumLifeInflictedAsAoeFireDamageWhenHit", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["HellscapeUpsideConsecrateGroundFor3SecondsWhenHit1"] = { type = "ScourgeUpside", affix = "", "Create Consecrated Ground when Hit, lasting 8 seconds", statOrder = { 3461 }, level = 45, group = "ConsecrateGroundFor3SecondsWhenHit", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["HellscapeUpsideUnholyMightOnKillPercentChance1h2"] = { type = "ScourgeUpside", affix = "", "5% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3285 }, level = 45, group = "UnholyMightOnKillPercentChance", weightKey = { "staff", "warstaff", "wand", "claw", "default", }, weightVal = { 0, 0, 500, 500, 0 }, modTags = { }, }, + ["HellscapeUpsideUnholyMightOnKillPercentChance1h3"] = { type = "ScourgeUpside", affix = "", "6% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3285 }, level = 68, group = "UnholyMightOnKillPercentChance", weightKey = { "staff", "warstaff", "wand", "claw", "default", }, weightVal = { 0, 0, 500, 500, 0 }, modTags = { }, }, + ["HellscapeUpsideUnholyMightOnKillPercentChance1h4___"] = { type = "ScourgeUpside", affix = "", "7% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3285 }, level = 68, group = "UnholyMightOnKillPercentChance", weightKey = { "staff", "warstaff", "wand", "claw", "default", }, weightVal = { 0, 0, 500, 500, 0 }, modTags = { }, }, + ["HellscapeUpsideUnholyMightOnKillPercentChance2h2_"] = { type = "ScourgeUpside", affix = "", "8% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3285 }, level = 45, group = "UnholyMightOnKillPercentChance", weightKey = { "wand", "claw", "staff", "warstaff", "default", }, weightVal = { 0, 0, 500, 500, 0 }, modTags = { }, }, + ["HellscapeUpsideUnholyMightOnKillPercentChance2h3_"] = { type = "ScourgeUpside", affix = "", "9% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3285 }, level = 68, group = "UnholyMightOnKillPercentChance", weightKey = { "wand", "claw", "staff", "warstaff", "default", }, weightVal = { 0, 0, 500, 500, 0 }, modTags = { }, }, + ["HellscapeUpsideUnholyMightOnKillPercentChance2h4"] = { type = "ScourgeUpside", affix = "", "10% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3285 }, level = 68, group = "UnholyMightOnKillPercentChance", weightKey = { "wand", "claw", "staff", "warstaff", "default", }, weightVal = { 0, 0, 500, 500, 0 }, modTags = { }, }, + ["HellscapeUpsideElusiveEffect2"] = { type = "ScourgeUpside", affix = "", "(12-14)% increased Elusive Effect", statOrder = { 6243 }, level = 45, group = "ElusiveEffect", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["HellscapeUpsideElusiveEffect3___"] = { type = "ScourgeUpside", affix = "", "(15-17)% increased Elusive Effect", statOrder = { 6243 }, level = 68, group = "ElusiveEffect", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["HellscapeUpsideElusiveEffect4"] = { type = "ScourgeUpside", affix = "", "(18-20)% increased Elusive Effect", statOrder = { 6243 }, level = 68, group = "ElusiveEffect", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["HellscapeUpsideBasePenetrateElementalResistances2"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 3% of Enemy Elemental Resistances", statOrder = { 3467 }, level = 45, group = "BasePenetrateElementalResistances", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "elemental" }, }, + ["HellscapeUpsideBasePenetrateElementalResistances3"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 4% of Enemy Elemental Resistances", statOrder = { 3467 }, level = 68, group = "BasePenetrateElementalResistances", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "elemental" }, }, + ["HellscapeUpsideBasePenetrateElementalResistances4_"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 5% of Enemy Elemental Resistances", statOrder = { 3467 }, level = 68, group = "BasePenetrateElementalResistances", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "elemental" }, }, + ["HellscapeUpsideMinimumEnduranceCharges1"] = { type = "ScourgeUpside", affix = "", "+1 to Minimum Endurance Charges", statOrder = { 1714 }, level = 68, group = "MinimumEnduranceCharges", weightKey = { "ring", "default", }, weightVal = { 100, 0 }, modTags = { "endurance_charge" }, }, + ["HellscapeUpsideMinimumPowerCharges1"] = { type = "ScourgeUpside", affix = "", "+1 to Minimum Power Charges", statOrder = { 1724 }, level = 68, group = "MinimumPowerCharges", weightKey = { "ring", "default", }, weightVal = { 100, 0 }, modTags = { "power_charge" }, }, + ["HellscapeUpsideMinimumFrenzyCharges1___"] = { type = "ScourgeUpside", affix = "", "+1 to Minimum Frenzy Charges", statOrder = { 1719 }, level = 68, group = "MinimumFrenzyCharges", weightKey = { "ring", "default", }, weightVal = { 100, 0 }, modTags = { "frenzy_charge" }, }, + ["HellscapeUpsideCannotBeSlowedBelowValue3"] = { type = "ScourgeUpside", affix = "", "Action Speed cannot be modified to below (75-79)% of base value", statOrder = { 3103 }, level = 68, group = "CannotBeSlowedBelowValue", weightKey = { "boots", "default", }, weightVal = { 250, 0 }, modTags = { "speed" }, }, + ["HellscapeUpsideCannotBeSlowedBelowValue4_"] = { type = "ScourgeUpside", affix = "", "Action Speed cannot be modified to below (70-74)% of base value", statOrder = { 3103 }, level = 68, group = "CannotBeSlowedBelowValue", weightKey = { "boots", "default", }, weightVal = { 250, 0 }, modTags = { "speed" }, }, + ["HellscapeUpsideMonsterNemesisOndarsGuile1__"] = { type = "ScourgeUpside", affix = "", "Arrow Dancing", statOrder = { 10576 }, level = 68, group = "MonsterNemesisOndarsGuile", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "defences", "evasion" }, }, + ["HellscapeUpsideConduit1"] = { type = "ScourgeUpside", affix = "", "Conduit", statOrder = { 10548 }, level = 68, group = "Conduit", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, }, + ["HellscapeUpsideIronReflexes1__"] = { type = "ScourgeUpside", affix = "", "Iron Reflexes", statOrder = { 10566 }, level = 68, group = "IronReflexes", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "defences", "armour", "evasion" }, }, + ["HellscapeUpsideUnwaveringStance1"] = { type = "ScourgeUpside", affix = "", "Unwavering Stance", statOrder = { 10591 }, level = 68, group = "UnwaveringStance", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "defences", "evasion" }, }, + ["HellscapeUpsideEternalYouth1_"] = { type = "ScourgeUpside", affix = "", "Eternal Youth", statOrder = { 10557 }, level = 68, group = "EternalYouth", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "resource", "life", "defences", "energy_shield" }, }, + ["HellscapeUpsideWindDancer1"] = { type = "ScourgeUpside", affix = "", "Wind Dancer", statOrder = { 10595 }, level = 68, group = "WindDancer", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "defences", "evasion" }, }, + ["HellscapeUpsideGlancingBlows1"] = { type = "ScourgeUpside", affix = "", "Glancing Blows", statOrder = { 10561 }, level = 68, group = "GlancingBlows", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "block" }, }, + ["HellscapeUpsideSacredBastion1_"] = { type = "ScourgeUpside", affix = "", "Imbalanced Guard", statOrder = { 10581 }, level = 68, group = "SacredBastion", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "defences", "armour" }, }, + ["HellscapeUpsideManaShield1_"] = { type = "ScourgeUpside", affix = "", "Mind Over Matter", statOrder = { 10569 }, level = 68, group = "ManaShield", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "resource", "life", "mana" }, }, + ["HellscapeUpsideWickedWard1"] = { type = "ScourgeUpside", affix = "", "Wicked Ward", statOrder = { 10594 }, level = 68, group = "WickedWard", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "defences", "energy_shield" }, }, + ["HellscapeUpsideZealotsOath1"] = { type = "ScourgeUpside", affix = "", "Zealot's Oath", statOrder = { 10578 }, level = 68, group = "ZealotsOath", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "resource", "life", "defences", "energy_shield" }, }, + ["HellscapeUpsideBlindEnemiesWhenHit2"] = { type = "ScourgeUpside", affix = "", "(11-20)% chance to Blind Enemies when they Hit you", statOrder = { 5114 }, level = 45, group = "BlindEnemiesWhenHit", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["HellscapeUpsideBlindEnemiesWhenHit3_"] = { type = "ScourgeUpside", affix = "", "(21-30)% chance to Blind Enemies when they Hit you", statOrder = { 5114 }, level = 68, group = "BlindEnemiesWhenHit", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["HellscapeUpsideBlindEnemiesWhenHit4"] = { type = "ScourgeUpside", affix = "", "(31-40)% chance to Blind Enemies when they Hit you", statOrder = { 5114 }, level = 68, group = "BlindEnemiesWhenHit", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["HellscapeUpsideGuardSkillCooldownRecovery3"] = { type = "ScourgeUpside", affix = "", "Guard Skills have (14-16)% increased Cooldown Recovery Rate", statOrder = { 6795 }, level = 68, group = "GuardSkillCooldownRecovery", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["HellscapeUpsideGuardSkillCooldownRecovery4___"] = { type = "ScourgeUpside", affix = "", "Guard Skills have (17-19)% increased Cooldown Recovery Rate", statOrder = { 6795 }, level = 68, group = "GuardSkillCooldownRecovery", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["HellscapeUpsideMinionChanceToTauntOnHit2___"] = { type = "ScourgeUpside", affix = "", "Minions have (11-13)% chance to Taunt on Hit with Attacks", statOrder = { 3339 }, level = 45, group = "MinionAttacksTauntOnHitChance", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "attack", "minion" }, }, + ["HellscapeUpsideMinionChanceToTauntOnHit3"] = { type = "ScourgeUpside", affix = "", "Minions have (14-16)% chance to Taunt on Hit with Attacks", statOrder = { 3339 }, level = 68, group = "MinionAttacksTauntOnHitChance", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "attack", "minion" }, }, + ["HellscapeUpsideMinionChanceToTauntOnHit4"] = { type = "ScourgeUpside", affix = "", "Minions have (17-19)% chance to Taunt on Hit with Attacks", statOrder = { 3339 }, level = 68, group = "MinionAttacksTauntOnHitChance", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "attack", "minion" }, }, + ["HellscapeUpsideIncreaseSocketedSupportGemQuality3"] = { type = "ScourgeUpside", affix = "", "+(9-10)% to Quality of Socketed Support Gems", statOrder = { 184 }, level = 68, group = "IncreaseSocketedSupportGemQuality", weightKey = { "weapon", "shield", "default", }, weightVal = { 500, 250, 0 }, modTags = { "gem" }, }, + ["HellscapeUpsideIncreaseSocketedSupportGemQuality4_"] = { type = "ScourgeUpside", affix = "", "+(11-12)% to Quality of Socketed Support Gems", statOrder = { 184 }, level = 68, group = "IncreaseSocketedSupportGemQuality", weightKey = { "weapon", "shield", "default", }, weightVal = { 500, 250, 0 }, modTags = { "gem" }, }, + ["HellscapeUpsideGainManaAsExtraEnergyShield3"] = { type = "ScourgeUpside", affix = "", "Gain 5% of Maximum Mana as Extra Maximum Energy Shield", statOrder = { 2084 }, level = 68, group = "GainManaAsExtraEnergyShield", weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { "defences", "energy_shield" }, }, + ["HellscapeUpsideGainManaAsExtraEnergyShield4_"] = { type = "ScourgeUpside", affix = "", "Gain 6% of Maximum Mana as Extra Maximum Energy Shield", statOrder = { 2084 }, level = 68, group = "GainManaAsExtraEnergyShield", weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { "defences", "energy_shield" }, }, + ["HellscapeUpsideAreaOfEffect1_"] = { type = "ScourgeUpside", affix = "", "10% increased Area of Effect", statOrder = { 1791 }, level = 1, group = "AreaOfEffect", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["HellscapeUpsideAreaOfEffect2"] = { type = "ScourgeUpside", affix = "", "11% increased Area of Effect", statOrder = { 1791 }, level = 45, group = "AreaOfEffect", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["HellscapeUpsideAreaOfEffect3____"] = { type = "ScourgeUpside", affix = "", "12% increased Area of Effect", statOrder = { 1791 }, level = 68, group = "AreaOfEffect", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["HellscapeUpsideAreaOfEffect4"] = { type = "ScourgeUpside", affix = "", "13% increased Area of Effect", statOrder = { 1791 }, level = 68, group = "AreaOfEffect", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["HellscapeUpsideProjectileSpeed1"] = { type = "ScourgeUpside", affix = "", "(14-16)% increased Projectile Speed", statOrder = { 1707 }, level = 1, group = "ProjectileSpeed", weightKey = { "ranged", "quiver", "default", }, weightVal = { 500, 500, 0 }, modTags = { "speed" }, }, + ["HellscapeUpsideProjectileSpeed2"] = { type = "ScourgeUpside", affix = "", "(17-19)% increased Projectile Speed", statOrder = { 1707 }, level = 45, group = "ProjectileSpeed", weightKey = { "ranged", "quiver", "default", }, weightVal = { 500, 500, 0 }, modTags = { "speed" }, }, + ["HellscapeUpsideProjectileSpeed3"] = { type = "ScourgeUpside", affix = "", "(20-22)% increased Projectile Speed", statOrder = { 1707 }, level = 68, group = "ProjectileSpeed", weightKey = { "ranged", "quiver", "default", }, weightVal = { 500, 500, 0 }, modTags = { "speed" }, }, + ["HellscapeUpsideProjectileSpeed4"] = { type = "ScourgeUpside", affix = "", "(23-25)% increased Projectile Speed", statOrder = { 1707 }, level = 68, group = "ProjectileSpeed", weightKey = { "ranged", "quiver", "default", }, weightVal = { 500, 500, 0 }, modTags = { "speed" }, }, + ["HellscapeUpsideMinionLife2___"] = { type = "ScourgeUpside", affix = "", "Minions have (10-11)% increased maximum Life", statOrder = { 1677 }, level = 45, group = "MinionLife", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "minion" }, }, + ["HellscapeUpsideMinionLife3"] = { type = "ScourgeUpside", affix = "", "Minions have (12-13)% increased maximum Life", statOrder = { 1677 }, level = 68, group = "MinionLife", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "minion" }, }, + ["HellscapeUpsideMinionLife4_"] = { type = "ScourgeUpside", affix = "", "Minions have (14-15)% increased maximum Life", statOrder = { 1677 }, level = 68, group = "MinionLife", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "minion" }, }, + ["HellscapeUpsideFireResistance1"] = { type = "ScourgeUpside", affix = "", "+(18-20)% to Fire Resistance", statOrder = { 1536 }, level = 1, group = "FireResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 300, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["HellscapeUpsideFireResistance2"] = { type = "ScourgeUpside", affix = "", "+(23-25)% to Fire Resistance", statOrder = { 1536 }, level = 45, group = "FireResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 300, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["HellscapeUpsideFireResistance3_"] = { type = "ScourgeUpside", affix = "", "+(28-30)% to Fire Resistance", statOrder = { 1536 }, level = 68, group = "FireResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 300, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["HellscapeUpsideFireResistance4__"] = { type = "ScourgeUpside", affix = "", "+(33-35)% to Fire Resistance", statOrder = { 1536 }, level = 68, group = "FireResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 300, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["HellscapeUpsideColdResistance1"] = { type = "ScourgeUpside", affix = "", "+(18-20)% to Cold Resistance", statOrder = { 1542 }, level = 1, group = "ColdResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 300, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["HellscapeUpsideColdResistance2"] = { type = "ScourgeUpside", affix = "", "+(23-25)% to Cold Resistance", statOrder = { 1542 }, level = 45, group = "ColdResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 300, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["HellscapeUpsideColdResistance3_"] = { type = "ScourgeUpside", affix = "", "+(28-30)% to Cold Resistance", statOrder = { 1542 }, level = 68, group = "ColdResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 300, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["HellscapeUpsideColdResistance4"] = { type = "ScourgeUpside", affix = "", "+(33-35)% to Cold Resistance", statOrder = { 1542 }, level = 68, group = "ColdResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 300, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["HellscapeUpsideLightningResistance1"] = { type = "ScourgeUpside", affix = "", "+(18-20)% to Lightning Resistance", statOrder = { 1547 }, level = 1, group = "LightningResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 300, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["HellscapeUpsideLightningResistance2__"] = { type = "ScourgeUpside", affix = "", "+(23-25)% to Lightning Resistance", statOrder = { 1547 }, level = 45, group = "LightningResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 300, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["HellscapeUpsideLightningResistance3"] = { type = "ScourgeUpside", affix = "", "+(28-30)% to Lightning Resistance", statOrder = { 1547 }, level = 68, group = "LightningResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 300, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["HellscapeUpsideLightningResistance4"] = { type = "ScourgeUpside", affix = "", "+(33-35)% to Lightning Resistance", statOrder = { 1547 }, level = 68, group = "LightningResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 300, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["HellscapeUpsideElementalResistance1__"] = { type = "ScourgeUpside", affix = "", "+6% to all Elemental Resistances", statOrder = { 1530 }, level = 1, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "elemental", "resistance" }, }, + ["HellscapeUpsideElementalResistance2"] = { type = "ScourgeUpside", affix = "", "+8% to all Elemental Resistances", statOrder = { 1530 }, level = 45, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "elemental", "resistance" }, }, + ["HellscapeUpsideElementalResistance3"] = { type = "ScourgeUpside", affix = "", "+10% to all Elemental Resistances", statOrder = { 1530 }, level = 68, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "elemental", "resistance" }, }, + ["HellscapeUpsideElementalResistance4_"] = { type = "ScourgeUpside", affix = "", "+12% to all Elemental Resistances", statOrder = { 1530 }, level = 68, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "elemental", "resistance" }, }, + ["HellscapeUpsideChaosResistance1_"] = { type = "ScourgeUpside", affix = "", "+(10-13)% to Chaos Resistance", statOrder = { 1552 }, level = 16, group = "ChaosResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 75, 250, 250, 250, 250, 250, 0 }, modTags = { "chaos", "resistance" }, }, + ["HellscapeUpsideChaosResistance2_"] = { type = "ScourgeUpside", affix = "", "+(14-17)% to Chaos Resistance", statOrder = { 1552 }, level = 45, group = "ChaosResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 75, 250, 250, 250, 250, 250, 0 }, modTags = { "chaos", "resistance" }, }, + ["HellscapeUpsideChaosResistance3_"] = { type = "ScourgeUpside", affix = "", "+(18-21)% to Chaos Resistance", statOrder = { 1552 }, level = 68, group = "ChaosResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 75, 250, 250, 250, 250, 250, 0 }, modTags = { "chaos", "resistance" }, }, + ["HellscapeUpsideChaosResistance4_"] = { type = "ScourgeUpside", affix = "", "+(22-25)% to Chaos Resistance", statOrder = { 1552 }, level = 68, group = "ChaosResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 75, 250, 250, 250, 250, 250, 0 }, modTags = { "chaos", "resistance" }, }, + ["HellscapeUpsideMinionElementalResistance2"] = { type = "ScourgeUpside", affix = "", "Minions have +(10-11)% to all Elemental Resistances", statOrder = { 2822 }, level = 45, group = "MinionElementalResistance", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "resistance", "minion" }, }, + ["HellscapeUpsideMinionElementalResistance3"] = { type = "ScourgeUpside", affix = "", "Minions have +(12-13)% to all Elemental Resistances", statOrder = { 2822 }, level = 68, group = "MinionElementalResistance", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "resistance", "minion" }, }, + ["HellscapeUpsideMinionElementalResistance4"] = { type = "ScourgeUpside", affix = "", "Minions have +(14-15)% to all Elemental Resistances", statOrder = { 2822 }, level = 68, group = "MinionElementalResistance", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "resistance", "minion" }, }, + ["HellscapeUpsideMinionChaosResistance2__"] = { type = "ScourgeUpside", affix = "", "Minions have +(14-17)% to Chaos Resistance", statOrder = { 2823 }, level = 45, group = "MinionChaosResistance", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "chaos", "resistance", "minion" }, }, + ["HellscapeUpsideMinionChaosResistance3_"] = { type = "ScourgeUpside", affix = "", "Minions have +(18-21)% to Chaos Resistance", statOrder = { 2823 }, level = 68, group = "MinionChaosResistance", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "chaos", "resistance", "minion" }, }, + ["HellscapeUpsideMinionChaosResistance4"] = { type = "ScourgeUpside", affix = "", "Minions have +(22-25)% to Chaos Resistance", statOrder = { 2823 }, level = 68, group = "MinionChaosResistance", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "chaos", "resistance", "minion" }, }, + ["HellscapeUpsideStunAndBlockRecovery2"] = { type = "ScourgeUpside", affix = "", "(10-11)% increased Stun and Block Recovery", statOrder = { 1811 }, level = 45, group = "StunRecovery", weightKey = { "gloves", "armour", "belt", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, }, + ["HellscapeUpsideStunAndBlockRecovery3"] = { type = "ScourgeUpside", affix = "", "(12-13)% increased Stun and Block Recovery", statOrder = { 1811 }, level = 68, group = "StunRecovery", weightKey = { "gloves", "armour", "belt", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, }, + ["HellscapeUpsideStunAndBlockRecovery4__"] = { type = "ScourgeUpside", affix = "", "(14-15)% increased Stun and Block Recovery", statOrder = { 1811 }, level = 68, group = "StunRecovery", weightKey = { "gloves", "armour", "belt", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, }, + ["HellscapeUpsideChanceToAvoidFreezeAndChill2_"] = { type = "ScourgeUpside", affix = "", "(26-30)% chance to Avoid being Chilled", "(26-30)% chance to Avoid being Frozen", statOrder = { 1755, 1756 }, level = 45, group = "ChanceToAvoidFreezeAndChill", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["HellscapeUpsideChanceToAvoidFreezeAndChill3"] = { type = "ScourgeUpside", affix = "", "(31-35)% chance to Avoid being Chilled", "(31-35)% chance to Avoid being Frozen", statOrder = { 1755, 1756 }, level = 68, group = "ChanceToAvoidFreezeAndChill", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["HellscapeUpsideChanceToAvoidFreezeAndChill4"] = { type = "ScourgeUpside", affix = "", "(36-40)% chance to Avoid being Chilled", "(36-40)% chance to Avoid being Frozen", statOrder = { 1755, 1756 }, level = 68, group = "ChanceToAvoidFreezeAndChill", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["HellscapeUpsideChanceToAvoidShock2"] = { type = "ScourgeUpside", affix = "", "(26-30)% chance to Avoid being Shocked", statOrder = { 1759 }, level = 45, group = "AvoidShock", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["HellscapeUpsideChanceToAvoidShock3"] = { type = "ScourgeUpside", affix = "", "(31-35)% chance to Avoid being Shocked", statOrder = { 1759 }, level = 68, group = "AvoidShock", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["HellscapeUpsideChanceToAvoidShock4_"] = { type = "ScourgeUpside", affix = "", "(36-40)% chance to Avoid being Shocked", statOrder = { 1759 }, level = 68, group = "AvoidShock", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["HellscapeUpsideChanceToAvoidIgniteAndBurning2"] = { type = "ScourgeUpside", affix = "", "(26-30)% chance to Avoid being Ignited", statOrder = { 1757 }, level = 45, group = "AvoidIgnite", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["HellscapeUpsideChanceToAvoidIgniteAndBurning3"] = { type = "ScourgeUpside", affix = "", "(31-35)% chance to Avoid being Ignited", statOrder = { 1757 }, level = 68, group = "AvoidIgnite", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["HellscapeUpsideChanceToAvoidIgniteAndBurning4"] = { type = "ScourgeUpside", affix = "", "(36-40)% chance to Avoid being Ignited", statOrder = { 1757 }, level = 68, group = "AvoidIgnite", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["HellscapeUpsideChanceToAvoidPoison2"] = { type = "ScourgeUpside", affix = "", "(26-30)% chance to Avoid being Poisoned", statOrder = { 1760 }, level = 45, group = "ChanceToAvoidPoison", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["HellscapeUpsideChanceToAvoidPoison3"] = { type = "ScourgeUpside", affix = "", "(31-35)% chance to Avoid being Poisoned", statOrder = { 1760 }, level = 68, group = "ChanceToAvoidPoison", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["HellscapeUpsideChanceToAvoidPoison4"] = { type = "ScourgeUpside", affix = "", "(36-40)% chance to Avoid being Poisoned", statOrder = { 1760 }, level = 68, group = "ChanceToAvoidPoison", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["HellscapeUpsideChanceToAvoidStun2"] = { type = "ScourgeUpside", affix = "", "(17-19)% chance to Avoid being Stunned", statOrder = { 1762 }, level = 45, group = "AvoidStun", weightKey = { "helmet", "gloves", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["HellscapeUpsideChanceToAvoidStun3__"] = { type = "ScourgeUpside", affix = "", "(20-22)% chance to Avoid being Stunned", statOrder = { 1762 }, level = 68, group = "AvoidStun", weightKey = { "helmet", "gloves", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["HellscapeUpsideChanceToAvoidStun4"] = { type = "ScourgeUpside", affix = "", "(23-25)% chance to Avoid being Stunned", statOrder = { 1762 }, level = 68, group = "AvoidStun", weightKey = { "helmet", "gloves", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["HellscapeUpsideAvoidElementalStatusAilments2__"] = { type = "ScourgeUpside", affix = "", "(17-19)% chance to Avoid Elemental Ailments", statOrder = { 1754 }, level = 45, group = "AvoidElementalStatusAilments", weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["HellscapeUpsideAvoidElementalStatusAilments3__"] = { type = "ScourgeUpside", affix = "", "(20-22)% chance to Avoid Elemental Ailments", statOrder = { 1754 }, level = 68, group = "AvoidElementalStatusAilments", weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["HellscapeUpsideAvoidElementalStatusAilments4"] = { type = "ScourgeUpside", affix = "", "(23-25)% chance to Avoid Elemental Ailments", statOrder = { 1754 }, level = 68, group = "AvoidElementalStatusAilments", weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["HellscapeUpsideReducedDurationOfElementalStatusAilments2"] = { type = "ScourgeUpside", affix = "", "(17-19)% reduced Elemental Ailment Duration on you", statOrder = { 1778 }, level = 45, group = "SelfStatusAilmentDuration", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "ailment" }, }, + ["HellscapeUpsideReducedDurationOfElementalStatusAilments3"] = { type = "ScourgeUpside", affix = "", "(20-22)% reduced Elemental Ailment Duration on you", statOrder = { 1778 }, level = 68, group = "SelfStatusAilmentDuration", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "ailment" }, }, + ["HellscapeUpsideReducedDurationOfElementalStatusAilments4"] = { type = "ScourgeUpside", affix = "", "(23-25)% reduced Elemental Ailment Duration on you", statOrder = { 1778 }, level = 68, group = "SelfStatusAilmentDuration", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "ailment" }, }, + ["HellscapeUpsideGainLifeOnBlock2"] = { type = "ScourgeUpside", affix = "", "(31-40) Life gained when you Block", statOrder = { 1668 }, level = 45, group = "GainLifeOnBlock", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "resource", "life" }, }, + ["HellscapeUpsideGainLifeOnBlock3_"] = { type = "ScourgeUpside", affix = "", "(41-50) Life gained when you Block", statOrder = { 1668 }, level = 68, group = "GainLifeOnBlock", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "resource", "life" }, }, + ["HellscapeUpsideGainLifeOnBlock4___"] = { type = "ScourgeUpside", affix = "", "(51-60) Life gained when you Block", statOrder = { 1668 }, level = 68, group = "GainLifeOnBlock", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "resource", "life" }, }, + ["HellscapeUpsideGainManaOnBlock2"] = { type = "ScourgeUpside", affix = "", "(31-40) Mana gained when you Block", statOrder = { 1669 }, level = 45, group = "GainManaOnBlock", weightKey = { "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "resource", "mana" }, }, + ["HellscapeUpsideGainManaOnBlock3"] = { type = "ScourgeUpside", affix = "", "(41-50) Mana gained when you Block", statOrder = { 1669 }, level = 68, group = "GainManaOnBlock", weightKey = { "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "resource", "mana" }, }, + ["HellscapeUpsideGainManaOnBlock4"] = { type = "ScourgeUpside", affix = "", "(51-60) Mana gained when you Block", statOrder = { 1669 }, level = 68, group = "GainManaOnBlock", weightKey = { "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "resource", "mana" }, }, + ["HellscapeUpsideGainEnergyShieldOnBlock2"] = { type = "ScourgeUpside", affix = "", "Gain (31-40) Energy Shield when you Block", statOrder = { 1670 }, level = 45, group = "GainEnergyShieldOnBlock", weightKey = { "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "defences", "energy_shield" }, }, + ["HellscapeUpsideGainEnergyShieldOnBlock3___"] = { type = "ScourgeUpside", affix = "", "Gain (41-50) Energy Shield when you Block", statOrder = { 1670 }, level = 68, group = "GainEnergyShieldOnBlock", weightKey = { "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "defences", "energy_shield" }, }, + ["HellscapeUpsideGainEnergyShieldOnBlock4_"] = { type = "ScourgeUpside", affix = "", "Gain (51-60) Energy Shield when you Block", statOrder = { 1670 }, level = 68, group = "GainEnergyShieldOnBlock", weightKey = { "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "defences", "energy_shield" }, }, + ["HellscapeUpsideBlockAttacks1"] = { type = "ScourgeUpside", affix = "", "+(2-3)% Chance to Block Attack Damage", statOrder = { 2367 }, level = 1, group = "AdditionalBlock", weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { "block" }, }, + ["HellscapeUpsideBlockAttacks2_"] = { type = "ScourgeUpside", affix = "", "+(4-5)% Chance to Block Attack Damage", statOrder = { 2367 }, level = 45, group = "AdditionalBlock", weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { "block" }, }, + ["HellscapeUpsideBlockAttacks3"] = { type = "ScourgeUpside", affix = "", "+(6-7)% Chance to Block Attack Damage", statOrder = { 2367 }, level = 68, group = "AdditionalBlock", weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { "block" }, }, + ["HellscapeUpsideBlockAttacks4__"] = { type = "ScourgeUpside", affix = "", "+(8-9)% Chance to Block Attack Damage", statOrder = { 2367 }, level = 68, group = "AdditionalBlock", weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { "block" }, }, + ["HellscapeUpsideBlockSpells2"] = { type = "ScourgeUpside", affix = "", "+(4-5)% Chance to Block Spell Damage", statOrder = { 1070 }, level = 45, group = "AdditionalSpellBlock", weightKey = { "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block" }, }, + ["HellscapeUpsideBlockSpells3_"] = { type = "ScourgeUpside", affix = "", "+(6-7)% Chance to Block Spell Damage", statOrder = { 1070 }, level = 68, group = "AdditionalSpellBlock", weightKey = { "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block" }, }, + ["HellscapeUpsideBlockSpells4"] = { type = "ScourgeUpside", affix = "", "+(8-9)% Chance to Block Spell Damage", statOrder = { 1070 }, level = 68, group = "AdditionalSpellBlock", weightKey = { "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block" }, }, + ["HellscapeUpsideMinionBlockAttacks2"] = { type = "ScourgeUpside", affix = "", "Minions have +(11-13)% Chance to Block Attack Damage", statOrder = { 2813 }, level = 45, group = "MinionBlockChance", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "block", "minion" }, }, + ["HellscapeUpsideMinionBlockAttacks3"] = { type = "ScourgeUpside", affix = "", "Minions have +(14-16)% Chance to Block Attack Damage", statOrder = { 2813 }, level = 68, group = "MinionBlockChance", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "block", "minion" }, }, + ["HellscapeUpsideMinionBlockAttacks4"] = { type = "ScourgeUpside", affix = "", "Minions have +(17-19)% Chance to Block Attack Damage", statOrder = { 2813 }, level = 68, group = "MinionBlockChance", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "block", "minion" }, }, + ["HellscapeUpsideMinionBlockSpells2__"] = { type = "ScourgeUpside", affix = "", "Minions have +(11-13)% Chance to Block Spell Damage", statOrder = { 2814 }, level = 45, group = "MinionSpellBlockChance", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "block", "minion" }, }, + ["HellscapeUpsideMinionBlockSpells3"] = { type = "ScourgeUpside", affix = "", "Minions have +(14-16)% Chance to Block Spell Damage", statOrder = { 2814 }, level = 68, group = "MinionSpellBlockChance", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "block", "minion" }, }, + ["HellscapeUpsideMinionBlockSpells4"] = { type = "ScourgeUpside", affix = "", "Minions have +(17-19)% Chance to Block Spell Damage", statOrder = { 2814 }, level = 68, group = "MinionSpellBlockChance", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "block", "minion" }, }, + ["HellscapeUpsideChanceToSuppressSpells2"] = { type = "ScourgeUpside", affix = "", "+(5-6)% chance to Suppress Spell Damage", statOrder = { 1056 }, level = 45, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "gloves", "boots", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, }, + ["HellscapeUpsideChanceToSuppressSpells3_"] = { type = "ScourgeUpside", affix = "", "+(7-8)% chance to Suppress Spell Damage", statOrder = { 1056 }, level = 68, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "gloves", "boots", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, }, + ["HellscapeUpsideChanceToSuppressSpells4_"] = { type = "ScourgeUpside", affix = "", "+(9-10)% chance to Suppress Spell Damage", statOrder = { 1056 }, level = 68, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "gloves", "boots", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, }, + ["HellscapeUpsideAttackerTakesDamageNoRange1_"] = { type = "ScourgeUpside", affix = "", "Reflects (20-40) Physical Damage to Melee Attackers", statOrder = { 2111 }, level = 1, group = "AttackerTakesDamageNoRange", weightKey = { "body_armour", "shield", "belt", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["HellscapeUpsideAttackerTakesDamageNoRange2_"] = { type = "ScourgeUpside", affix = "", "Reflects (41-60) Physical Damage to Melee Attackers", statOrder = { 2111 }, level = 45, group = "AttackerTakesDamageNoRange", weightKey = { "body_armour", "shield", "belt", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["HellscapeUpsideAttackerTakesDamageNoRange3"] = { type = "ScourgeUpside", affix = "", "Reflects (61-80) Physical Damage to Melee Attackers", statOrder = { 2111 }, level = 68, group = "AttackerTakesDamageNoRange", weightKey = { "body_armour", "shield", "belt", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["HellscapeUpsideAttackerTakesDamageNoRange4"] = { type = "ScourgeUpside", affix = "", "Reflects (81-100) Physical Damage to Melee Attackers", statOrder = { 2111 }, level = 68, group = "AttackerTakesDamageNoRange", weightKey = { "body_armour", "shield", "belt", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["HellscapeUpsideLocalColdDamage1h1"] = { type = "ScourgeUpside", affix = "", "Adds (10-13) to (18-23) Cold Damage", statOrder = { 1282 }, level = 1, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["HellscapeUpsideLocalColdDamage1h2"] = { type = "ScourgeUpside", affix = "", "Adds (19-24) to (28-33) Cold Damage", statOrder = { 1282 }, level = 45, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["HellscapeUpsideLocalColdDamage1h3__"] = { type = "ScourgeUpside", affix = "", "Adds (27-33) to (38-43) Cold Damage", statOrder = { 1282 }, level = 68, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["HellscapeUpsideLocalColdDamage1h4_"] = { type = "ScourgeUpside", affix = "", "Adds (37-43) to (51-57) Cold Damage", statOrder = { 1282 }, level = 68, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["HellscapeUpsideLocalColdDamageRanged1_"] = { type = "ScourgeUpside", affix = "", "Adds (16-20) to (30-35) Cold Damage", statOrder = { 1282 }, level = 1, group = "LocalColdDamage", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["HellscapeUpsideLocalColdDamageRanged2_____"] = { type = "ScourgeUpside", affix = "", "Adds (24-29) to (41-46) Cold Damage", statOrder = { 1282 }, level = 45, group = "LocalColdDamage", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["HellscapeUpsideLocalColdDamageRanged3___"] = { type = "ScourgeUpside", affix = "", "Adds (31-36) to (50-57) Cold Damage", statOrder = { 1282 }, level = 68, group = "LocalColdDamage", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["HellscapeUpsideLocalColdDamageRanged4"] = { type = "ScourgeUpside", affix = "", "Adds (37-45) to (60-67) Cold Damage", statOrder = { 1282 }, level = 68, group = "LocalColdDamage", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["HellscapeUpsideLocalColdDamage2h1"] = { type = "ScourgeUpside", affix = "", "Adds (19-24) to (35-39) Cold Damage", statOrder = { 1282 }, level = 1, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["HellscapeUpsideLocalColdDamage2h2_____"] = { type = "ScourgeUpside", affix = "", "Adds (30-35) to (53-61) Cold Damage", statOrder = { 1282 }, level = 45, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["HellscapeUpsideLocalColdDamage2h3__"] = { type = "ScourgeUpside", affix = "", "Adds (41-48) to (63-72) Cold Damage", statOrder = { 1282 }, level = 68, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["HellscapeUpsideLocalColdDamage2h4__"] = { type = "ScourgeUpside", affix = "", "Adds (50-61) to (75-87) Cold Damage", statOrder = { 1282 }, level = 68, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["HellscapeUpsideLocalFireDamage1h1"] = { type = "ScourgeUpside", affix = "", "Adds (11-14) to (23-27) Fire Damage", statOrder = { 1273 }, level = 1, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["HellscapeUpsideLocalFireDamage1h2_"] = { type = "ScourgeUpside", affix = "", "Adds (21-26) to (31-38) Fire Damage", statOrder = { 1273 }, level = 45, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["HellscapeUpsideLocalFireDamage1h3___"] = { type = "ScourgeUpside", affix = "", "Adds (29-35) to (43-48) Fire Damage", statOrder = { 1273 }, level = 68, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["HellscapeUpsideLocalFireDamage1h4"] = { type = "ScourgeUpside", affix = "", "Adds (40-45) to (56-62) Fire Damage", statOrder = { 1273 }, level = 68, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["HellscapeUpsideLocalFireDamageRanged1__"] = { type = "ScourgeUpside", affix = "", "Adds (18-22) to (35-39) Fire Damage", statOrder = { 1273 }, level = 1, group = "LocalFireDamage", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["HellscapeUpsideLocalFireDamageRanged2"] = { type = "ScourgeUpside", affix = "", "Adds (27-34) to (46-53) Fire Damage", statOrder = { 1273 }, level = 45, group = "LocalFireDamage", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["HellscapeUpsideLocalFireDamageRanged3_"] = { type = "ScourgeUpside", affix = "", "Adds (36-41) to (56-64) Fire Damage", statOrder = { 1273 }, level = 68, group = "LocalFireDamage", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["HellscapeUpsideLocalFireDamageRanged4______"] = { type = "ScourgeUpside", affix = "", "Adds (43-57) to (66-72) Fire Damage", statOrder = { 1273 }, level = 68, group = "LocalFireDamage", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["HellscapeUpsideLocalFireDamage2h1_"] = { type = "ScourgeUpside", affix = "", "Adds (22-26) to (38-44) Fire Damage", statOrder = { 1273 }, level = 1, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["HellscapeUpsideLocalFireDamage2h2__"] = { type = "ScourgeUpside", affix = "", "Adds (34-43) to (59-67) Fire Damage", statOrder = { 1273 }, level = 45, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["HellscapeUpsideLocalFireDamage2h3______"] = { type = "ScourgeUpside", affix = "", "Adds (48-56) to (69-78) Fire Damage", statOrder = { 1273 }, level = 68, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["HellscapeUpsideLocalFireDamage2h4______"] = { type = "ScourgeUpside", affix = "", "Adds (59-72) to (80-91) Fire Damage", statOrder = { 1273 }, level = 68, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["HellscapeUpsideLocalLightningDamage1h1_"] = { type = "ScourgeUpside", affix = "", "Adds (1-3) to (40-45) Lightning Damage", statOrder = { 1293 }, level = 1, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["HellscapeUpsideLocalLightningDamage1h2"] = { type = "ScourgeUpside", affix = "", "Adds (2-4) to (54-68) Lightning Damage", statOrder = { 1293 }, level = 45, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["HellscapeUpsideLocalLightningDamage1h3"] = { type = "ScourgeUpside", affix = "", "Adds (3-6) to (76-90) Lightning Damage", statOrder = { 1293 }, level = 68, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["HellscapeUpsideLocalLightningDamage1h4"] = { type = "ScourgeUpside", affix = "", "Adds (4-8) to (98-111) Lightning Damage", statOrder = { 1293 }, level = 68, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["HellscapeUpsideLocalLightningDamageRanged1__"] = { type = "ScourgeUpside", affix = "", "Adds (1-5) to (60-66) Lightning Damage", statOrder = { 1293 }, level = 1, group = "LocalLightningDamage", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["HellscapeUpsideLocalLightningDamageRanged2_"] = { type = "ScourgeUpside", affix = "", "Adds (3-6) to (81-102) Lightning Damage", statOrder = { 1293 }, level = 45, group = "LocalLightningDamage", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["HellscapeUpsideLocalLightningDamageRanged3___"] = { type = "ScourgeUpside", affix = "", "Adds (4-9) to (114-134) Lightning Damage", statOrder = { 1293 }, level = 68, group = "LocalLightningDamage", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["HellscapeUpsideLocalLightningDamageRanged4_"] = { type = "ScourgeUpside", affix = "", "Adds (5-12) to (147-166) Lightning Damage", statOrder = { 1293 }, level = 68, group = "LocalLightningDamage", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["HellscapeUpsideLocalLightningDamage2h1__"] = { type = "ScourgeUpside", affix = "", "Adds (2-6) to (74-86) Lightning Damage", statOrder = { 1293 }, level = 1, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["HellscapeUpsideLocalLightningDamage2h2_"] = { type = "ScourgeUpside", affix = "", "Adds (4-8) to (103-129) Lightning Damage", statOrder = { 1293 }, level = 45, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["HellscapeUpsideLocalLightningDamage2h3_"] = { type = "ScourgeUpside", affix = "", "Adds (5-10) to (145-170) Lightning Damage", statOrder = { 1293 }, level = 68, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["HellscapeUpsideLocalLightningDamage2h4_"] = { type = "ScourgeUpside", affix = "", "Adds (6-15) to (186-211) Lightning Damage", statOrder = { 1293 }, level = 68, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["HellscapeUpsideLocalPhysicalDamage1h1"] = { type = "ScourgeUpside", affix = "", "Adds (1-2) to (6-7) Physical Damage", statOrder = { 1187 }, level = 1, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["HellscapeUpsideLocalPhysicalDamage1h2"] = { type = "ScourgeUpside", affix = "", "Adds (3-4) to (8-9) Physical Damage", statOrder = { 1187 }, level = 45, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["HellscapeUpsideLocalPhysicalDamage1h3__"] = { type = "ScourgeUpside", affix = "", "Adds (5-6) to (10-11) Physical Damage", statOrder = { 1187 }, level = 68, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["HellscapeUpsideLocalPhysicalDamage1h4"] = { type = "ScourgeUpside", affix = "", "Adds (7-8) to (12-13) Physical Damage", statOrder = { 1187 }, level = 68, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["HellscapeUpsideLocalPhysicalDamage2h1_"] = { type = "ScourgeUpside", affix = "", "Adds (2-4) to (11-13) Physical Damage", statOrder = { 1187 }, level = 1, group = "LocalPhysicalDamage", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["HellscapeUpsideLocalPhysicalDamage2h2_"] = { type = "ScourgeUpside", affix = "", "Adds (6-8) to (15-17) Physical Damage", statOrder = { 1187 }, level = 45, group = "LocalPhysicalDamage", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["HellscapeUpsideLocalPhysicalDamage2h3__"] = { type = "ScourgeUpside", affix = "", "Adds (10-12) to (19-21) Physical Damage", statOrder = { 1187 }, level = 68, group = "LocalPhysicalDamage", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["HellscapeUpsideLocalPhysicalDamage2h4_"] = { type = "ScourgeUpside", affix = "", "Adds (14-16) to (23-25) Physical Damage", statOrder = { 1187 }, level = 68, group = "LocalPhysicalDamage", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["HellscapeUpsideLocalChaosDamage1h1_"] = { type = "ScourgeUpside", affix = "", "Adds (5-6) to (13-17) Chaos Damage", statOrder = { 1301 }, level = 1, group = "LocalChaosDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["HellscapeUpsideLocalChaosDamage1h2"] = { type = "ScourgeUpside", affix = "", "Adds (7-9) to (19-21) Chaos Damage", statOrder = { 1301 }, level = 45, group = "LocalChaosDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["HellscapeUpsideLocalChaosDamage1h3____"] = { type = "ScourgeUpside", affix = "", "Adds (10-12) to (23-27) Chaos Damage", statOrder = { 1301 }, level = 68, group = "LocalChaosDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["HellscapeUpsideLocalChaosDamage1h4"] = { type = "ScourgeUpside", affix = "", "Adds (13-15) to (29-33) Chaos Damage", statOrder = { 1301 }, level = 68, group = "LocalChaosDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["HellscapeUpsideLocalChaosDamageRanged1_"] = { type = "ScourgeUpside", affix = "", "Adds (7-9) to (19-25) Chaos Damage", statOrder = { 1301 }, level = 1, group = "LocalChaosDamage", weightKey = { "bow", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["HellscapeUpsideLocalChaosDamageRanged2"] = { type = "ScourgeUpside", affix = "", "Adds (10-14) to (28-31) Chaos Damage", statOrder = { 1301 }, level = 45, group = "LocalChaosDamage", weightKey = { "bow", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["HellscapeUpsideLocalChaosDamageRanged3_"] = { type = "ScourgeUpside", affix = "", "Adds (15-19) to (34-40) Chaos Damage", statOrder = { 1301 }, level = 68, group = "LocalChaosDamage", weightKey = { "bow", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["HellscapeUpsideLocalChaosDamageRanged4"] = { type = "ScourgeUpside", affix = "", "Adds (20-22) to (43-49) Chaos Damage", statOrder = { 1301 }, level = 68, group = "LocalChaosDamage", weightKey = { "bow", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["HellscapeUpsideLocalChaosDamage2h1_"] = { type = "ScourgeUpside", affix = "", "Adds (10-11) to (25-32) Chaos Damage", statOrder = { 1301 }, level = 1, group = "LocalChaosDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["HellscapeUpsideLocalChaosDamage2h2"] = { type = "ScourgeUpside", affix = "", "Adds (13-17) to (36-40) Chaos Damage", statOrder = { 1301 }, level = 45, group = "LocalChaosDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["HellscapeUpsideLocalChaosDamage2h3_____"] = { type = "ScourgeUpside", affix = "", "Adds (19-23) to (44-51) Chaos Damage", statOrder = { 1301 }, level = 68, group = "LocalChaosDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["HellscapeUpsideLocalChaosDamage2h4"] = { type = "ScourgeUpside", affix = "", "Adds (25-29) to (55-63) Chaos Damage", statOrder = { 1301 }, level = 68, group = "LocalChaosDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["HellscapeUpsideIncreasedWeaponElementalDamagePercent1"] = { type = "ScourgeUpside", affix = "", "(8-12)% increased Elemental Damage with Attack Skills", statOrder = { 6215 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["HellscapeUpsideIncreasedWeaponElementalDamagePercent2_"] = { type = "ScourgeUpside", affix = "", "(13-16)% increased Elemental Damage with Attack Skills", statOrder = { 6215 }, level = 45, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["HellscapeUpsideIncreasedWeaponElementalDamagePercent3"] = { type = "ScourgeUpside", affix = "", "(17-20)% increased Elemental Damage with Attack Skills", statOrder = { 6215 }, level = 68, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["HellscapeUpsideIncreasedWeaponElementalDamagePercent4"] = { type = "ScourgeUpside", affix = "", "(21-24)% increased Elemental Damage with Attack Skills", statOrder = { 6215 }, level = 68, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["HellscapeUpsideSpellAddedColdDamage1h1"] = { type = "ScourgeUpside", affix = "", "Adds (9-12) to (25-27) Cold Damage to Spells", statOrder = { 1316 }, level = 1, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["HellscapeUpsideSpellAddedColdDamage1h2"] = { type = "ScourgeUpside", affix = "", "Adds (13-15) to (28-32) Cold Damage to Spells", statOrder = { 1316 }, level = 45, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["HellscapeUpsideSpellAddedColdDamage1h3_"] = { type = "ScourgeUpside", affix = "", "Adds (16-18) to (33-36) Cold Damage to Spells", statOrder = { 1316 }, level = 68, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["HellscapeUpsideSpellAddedColdDamage1h4"] = { type = "ScourgeUpside", affix = "", "Adds (19-21) to (37-40) Cold Damage to Spells", statOrder = { 1316 }, level = 68, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["HellscapeUpsideSpellAddedColdDamage2h1"] = { type = "ScourgeUpside", affix = "", "Adds (13-18) to (37-40) Cold Damage to Spells", statOrder = { 1316 }, level = 1, group = "SpellAddedColdDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["HellscapeUpsideSpellAddedColdDamage2h2_"] = { type = "ScourgeUpside", affix = "", "Adds (19-22) to (42-48) Cold Damage to Spells", statOrder = { 1316 }, level = 45, group = "SpellAddedColdDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["HellscapeUpsideSpellAddedColdDamage2h3"] = { type = "ScourgeUpside", affix = "", "Adds (23-27) to (49-54) Cold Damage to Spells", statOrder = { 1316 }, level = 68, group = "SpellAddedColdDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["HellscapeUpsideSpellAddedColdDamage2h4"] = { type = "ScourgeUpside", affix = "", "Adds (28-31) to (55-60) Cold Damage to Spells", statOrder = { 1316 }, level = 68, group = "SpellAddedColdDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["HellscapeUpsideSpellAddedFireDamage1h1_"] = { type = "ScourgeUpside", affix = "", "Adds (9-12) to (25-27) Fire Damage to Spells", statOrder = { 1315 }, level = 1, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["HellscapeUpsideSpellAddedFireDamage1h2_"] = { type = "ScourgeUpside", affix = "", "Adds (13-15) to (28-32) Fire Damage to Spells", statOrder = { 1315 }, level = 45, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["HellscapeUpsideSpellAddedFireDamage1h3"] = { type = "ScourgeUpside", affix = "", "Adds (16-18) to (33-36) Fire Damage to Spells", statOrder = { 1315 }, level = 68, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["HellscapeUpsideSpellAddedFireDamage1h4"] = { type = "ScourgeUpside", affix = "", "Adds (19-21) to (37-40) Fire Damage to Spells", statOrder = { 1315 }, level = 68, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["HellscapeUpsideSpellAddedFireDamage2h1"] = { type = "ScourgeUpside", affix = "", "Adds (13-18) to (37-40) Fire Damage to Spells", statOrder = { 1315 }, level = 1, group = "SpellAddedFireDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["HellscapeUpsideSpellAddedFireDamage2h2"] = { type = "ScourgeUpside", affix = "", "Adds (19-22) to (42-48) Fire Damage to Spells", statOrder = { 1315 }, level = 45, group = "SpellAddedFireDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["HellscapeUpsideSpellAddedFireDamage2h3_"] = { type = "ScourgeUpside", affix = "", "Adds (23-27) to (49-54) Fire Damage to Spells", statOrder = { 1315 }, level = 68, group = "SpellAddedFireDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["HellscapeUpsideSpellAddedFireDamage2h4"] = { type = "ScourgeUpside", affix = "", "Adds (28-31) to (55-60) Fire Damage to Spells", statOrder = { 1315 }, level = 68, group = "SpellAddedFireDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["HellscapeUpsideSpellAddedLightningDamage1h1"] = { type = "ScourgeUpside", affix = "", "Adds (4-6) to (31-34) Lightning Damage to Spells", statOrder = { 1317 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["HellscapeUpsideSpellAddedLightningDamage1h2"] = { type = "ScourgeUpside", affix = "", "Adds (7-9) to (36-39) Lightning Damage to Spells", statOrder = { 1317 }, level = 45, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["HellscapeUpsideSpellAddedLightningDamage1h3_"] = { type = "ScourgeUpside", affix = "", "Adds (10-12) to (42-45) Lightning Damage to Spells", statOrder = { 1317 }, level = 68, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["HellscapeUpsideSpellAddedLightningDamage1h4_"] = { type = "ScourgeUpside", affix = "", "Adds (13-15) to (47-50) Lightning Damage to Spells", statOrder = { 1317 }, level = 68, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["HellscapeUpsideSpellAddedLightningDamage2h1"] = { type = "ScourgeUpside", affix = "", "Adds (6-9) to (46-51) Lightning Damage to Spells", statOrder = { 1317 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["HellscapeUpsideSpellAddedLightningDamage2h2_"] = { type = "ScourgeUpside", affix = "", "Adds (10-13) to (54-59) Lightning Damage to Spells", statOrder = { 1317 }, level = 45, group = "SpellAddedLightningDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["HellscapeUpsideSpellAddedLightningDamage2h3"] = { type = "ScourgeUpside", affix = "", "Adds (15-18) to (63-67) Lightning Damage to Spells", statOrder = { 1317 }, level = 68, group = "SpellAddedLightningDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["HellscapeUpsideSpellAddedLightningDamage2h4_"] = { type = "ScourgeUpside", affix = "", "Adds (19-22) to (70-75) Lightning Damage to Spells", statOrder = { 1317 }, level = 68, group = "SpellAddedLightningDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["HellscapeUpsideSpellAddedPhysicalDamage1h1"] = { type = "ScourgeUpside", affix = "", "Adds (9-12) to (25-27) Physical Damage to Spells", statOrder = { 1314 }, level = 1, group = "SpellAddedPhysicalDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["HellscapeUpsideSpellAddedPhysicalDamage1h2_"] = { type = "ScourgeUpside", affix = "", "Adds (13-15) to (28-32) Physical Damage to Spells", statOrder = { 1314 }, level = 45, group = "SpellAddedPhysicalDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["HellscapeUpsideSpellAddedPhysicalDamage1h3_"] = { type = "ScourgeUpside", affix = "", "Adds (16-18) to (32-36) Physical Damage to Spells", statOrder = { 1314 }, level = 68, group = "SpellAddedPhysicalDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["HellscapeUpsideSpellAddedPhysicalDamage1h4"] = { type = "ScourgeUpside", affix = "", "Adds (19-21) to (36-40) Physical Damage to Spells", statOrder = { 1314 }, level = 68, group = "SpellAddedPhysicalDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["HellscapeUpsideSpellAddedPhysicalDamage2h1_"] = { type = "ScourgeUpside", affix = "", "Adds (13-18) to (37-40) Physical Damage to Spells", statOrder = { 1314 }, level = 1, group = "SpellAddedPhysicalDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["HellscapeUpsideSpellAddedPhysicalDamage2h2_"] = { type = "ScourgeUpside", affix = "", "Adds (19-22) to (42-48) Physical Damage to Spells", statOrder = { 1314 }, level = 45, group = "SpellAddedPhysicalDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["HellscapeUpsideSpellAddedPhysicalDamage2h3"] = { type = "ScourgeUpside", affix = "", "Adds (23-27) to (49-54) Physical Damage to Spells", statOrder = { 1314 }, level = 68, group = "SpellAddedPhysicalDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["HellscapeUpsideSpellAddedPhysicalDamage2h4__"] = { type = "ScourgeUpside", affix = "", "Adds (28-31) to (55-60) Physical Damage to Spells", statOrder = { 1314 }, level = 68, group = "SpellAddedPhysicalDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["HellscapeUpsideSpellDamage1h1"] = { type = "ScourgeUpside", affix = "", "(23-25)% increased Spell Damage", statOrder = { 1135 }, level = 1, group = "SpellDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 200, 200, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["HellscapeUpsideSpellDamage1h1b"] = { type = "ScourgeUpside", affix = "", "(28-30)% increased Spell Damage", statOrder = { 1135 }, level = 25, group = "SpellDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 200, 200, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["HellscapeUpsideSpellDamage1h2"] = { type = "ScourgeUpside", affix = "", "(33-35)% increased Spell Damage", statOrder = { 1135 }, level = 45, group = "SpellDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 200, 200, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["HellscapeUpsideSpellDamage1h2b___"] = { type = "ScourgeUpside", affix = "", "(38-40)% increased Spell Damage", statOrder = { 1135 }, level = 55, group = "SpellDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 200, 200, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["HellscapeUpsideSpellDamage1h3"] = { type = "ScourgeUpside", affix = "", "(43-45)% increased Spell Damage", statOrder = { 1135 }, level = 68, group = "SpellDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 200, 200, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["HellscapeUpsideSpellDamage1h4_"] = { type = "ScourgeUpside", affix = "", "(48-50)% increased Spell Damage", statOrder = { 1135 }, level = 68, group = "SpellDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 200, 200, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["HellscapeUpsideSpellDamage2h1___"] = { type = "ScourgeUpside", affix = "", "(34-40)% increased Spell Damage", statOrder = { 1135 }, level = 1, group = "SpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["HellscapeUpsideSpellDamage2h1b"] = { type = "ScourgeUpside", affix = "", "(41-47)% increased Spell Damage", statOrder = { 1135 }, level = 25, group = "SpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["HellscapeUpsideSpellDamage2h2_"] = { type = "ScourgeUpside", affix = "", "(48-54)% increased Spell Damage", statOrder = { 1135 }, level = 45, group = "SpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["HellscapeUpsideSpellDamage2h2b"] = { type = "ScourgeUpside", affix = "", "(55-61)% increased Spell Damage", statOrder = { 1135 }, level = 55, group = "SpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["HellscapeUpsideSpellDamage2h3___"] = { type = "ScourgeUpside", affix = "", "(62-68)% increased Spell Damage", statOrder = { 1135 }, level = 68, group = "SpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["HellscapeUpsideSpellDamage2h4___"] = { type = "ScourgeUpside", affix = "", "(69-75)% increased Spell Damage", statOrder = { 1135 }, level = 68, group = "SpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["HellscapeUpsideColdDamagePercentage1h1"] = { type = "ScourgeUpside", affix = "", "(23-25)% increased Cold Damage", statOrder = { 1277 }, level = 1, group = "ColdDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["HellscapeUpsideColdDamagePercentage1h1b"] = { type = "ScourgeUpside", affix = "", "(28-30)% increased Cold Damage", statOrder = { 1277 }, level = 25, group = "ColdDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["HellscapeUpsideColdDamagePercentage1h2_"] = { type = "ScourgeUpside", affix = "", "(33-35)% increased Cold Damage", statOrder = { 1277 }, level = 45, group = "ColdDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["HellscapeUpsideColdDamagePercentage1h2b_"] = { type = "ScourgeUpside", affix = "", "(38-40)% increased Cold Damage", statOrder = { 1277 }, level = 55, group = "ColdDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["HellscapeUpsideColdDamagePercentage1h3___"] = { type = "ScourgeUpside", affix = "", "(43-45)% increased Cold Damage", statOrder = { 1277 }, level = 68, group = "ColdDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["HellscapeUpsideColdDamagePercentage1h4"] = { type = "ScourgeUpside", affix = "", "(48-50)% increased Cold Damage", statOrder = { 1277 }, level = 68, group = "ColdDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["HellscapeUpsideColdDamagePercentage2h1_"] = { type = "ScourgeUpside", affix = "", "(34-40)% increased Cold Damage", statOrder = { 1277 }, level = 1, group = "ColdDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["HellscapeUpsideColdDamagePercentage2h1b"] = { type = "ScourgeUpside", affix = "", "(41-47)% increased Cold Damage", statOrder = { 1277 }, level = 25, group = "ColdDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["HellscapeUpsideColdDamagePercentage2h2"] = { type = "ScourgeUpside", affix = "", "(48-54)% increased Cold Damage", statOrder = { 1277 }, level = 45, group = "ColdDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["HellscapeUpsideColdDamagePercentage2h2b"] = { type = "ScourgeUpside", affix = "", "(55-61)% increased Cold Damage", statOrder = { 1277 }, level = 55, group = "ColdDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["HellscapeUpsideColdDamagePercentage2h3___"] = { type = "ScourgeUpside", affix = "", "(62-68)% increased Cold Damage", statOrder = { 1277 }, level = 68, group = "ColdDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["HellscapeUpsideColdDamagePercentage2h4"] = { type = "ScourgeUpside", affix = "", "(69-75)% increased Cold Damage", statOrder = { 1277 }, level = 68, group = "ColdDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["HellscapeUpsideFireDamagePercentage1h1__"] = { type = "ScourgeUpside", affix = "", "(23-25)% increased Fire Damage", statOrder = { 1268 }, level = 1, group = "FireDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["HellscapeUpsideFireDamagePercentage1h1b"] = { type = "ScourgeUpside", affix = "", "(28-30)% increased Fire Damage", statOrder = { 1268 }, level = 25, group = "FireDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["HellscapeUpsideFireDamagePercentage1h2___"] = { type = "ScourgeUpside", affix = "", "(33-35)% increased Fire Damage", statOrder = { 1268 }, level = 45, group = "FireDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["HellscapeUpsideFireDamagePercentage1h2b"] = { type = "ScourgeUpside", affix = "", "(38-40)% increased Fire Damage", statOrder = { 1268 }, level = 55, group = "FireDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["HellscapeUpsideFireDamagePercentage1h3__"] = { type = "ScourgeUpside", affix = "", "(43-45)% increased Fire Damage", statOrder = { 1268 }, level = 68, group = "FireDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["HellscapeUpsideFireDamagePercentage1h4"] = { type = "ScourgeUpside", affix = "", "(48-50)% increased Fire Damage", statOrder = { 1268 }, level = 68, group = "FireDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["HellscapeUpsideFireDamagePercentage2h1"] = { type = "ScourgeUpside", affix = "", "(34-40)% increased Fire Damage", statOrder = { 1268 }, level = 1, group = "FireDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["HellscapeUpsideFireDamagePercentage2h1b____"] = { type = "ScourgeUpside", affix = "", "(41-47)% increased Fire Damage", statOrder = { 1268 }, level = 25, group = "FireDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["HellscapeUpsideFireDamagePercentage2h2__"] = { type = "ScourgeUpside", affix = "", "(48-54)% increased Fire Damage", statOrder = { 1268 }, level = 45, group = "FireDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["HellscapeUpsideFireDamagePercentage2h2b"] = { type = "ScourgeUpside", affix = "", "(55-61)% increased Fire Damage", statOrder = { 1268 }, level = 55, group = "FireDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["HellscapeUpsideFireDamagePercentage2h3___"] = { type = "ScourgeUpside", affix = "", "(62-68)% increased Fire Damage", statOrder = { 1268 }, level = 68, group = "FireDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["HellscapeUpsideFireDamagePercentage2h4"] = { type = "ScourgeUpside", affix = "", "(69-75)% increased Fire Damage", statOrder = { 1268 }, level = 68, group = "FireDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["HellscapeUpsideLightningDamagePercentage1h1"] = { type = "ScourgeUpside", affix = "", "(23-25)% increased Lightning Damage", statOrder = { 1288 }, level = 1, group = "LightningDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["HellscapeUpsideLightningDamagePercentage1h1b__"] = { type = "ScourgeUpside", affix = "", "(28-30)% increased Lightning Damage", statOrder = { 1288 }, level = 25, group = "LightningDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["HellscapeUpsideLightningDamagePercentage1h2"] = { type = "ScourgeUpside", affix = "", "(33-35)% increased Lightning Damage", statOrder = { 1288 }, level = 45, group = "LightningDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["HellscapeUpsideLightningDamagePercentage1h2b__"] = { type = "ScourgeUpside", affix = "", "(38-40)% increased Lightning Damage", statOrder = { 1288 }, level = 55, group = "LightningDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["HellscapeUpsideLightningDamagePercentage1h3"] = { type = "ScourgeUpside", affix = "", "(43-45)% increased Lightning Damage", statOrder = { 1288 }, level = 68, group = "LightningDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["HellscapeUpsideLightningDamagePercentage1h4"] = { type = "ScourgeUpside", affix = "", "(48-50)% increased Lightning Damage", statOrder = { 1288 }, level = 68, group = "LightningDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["HellscapeUpsideLightningDamagePercentage2h1"] = { type = "ScourgeUpside", affix = "", "(34-40)% increased Lightning Damage", statOrder = { 1288 }, level = 1, group = "LightningDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["HellscapeUpsideLightningDamagePercentage2h1b_"] = { type = "ScourgeUpside", affix = "", "(41-47)% increased Lightning Damage", statOrder = { 1288 }, level = 25, group = "LightningDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["HellscapeUpsideLightningDamagePercentage2h2"] = { type = "ScourgeUpside", affix = "", "(48-54)% increased Lightning Damage", statOrder = { 1288 }, level = 45, group = "LightningDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["HellscapeUpsideLightningDamagePercentage2h2b"] = { type = "ScourgeUpside", affix = "", "(55-61)% increased Lightning Damage", statOrder = { 1288 }, level = 55, group = "LightningDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["HellscapeUpsideLightningDamagePercentage2h3"] = { type = "ScourgeUpside", affix = "", "(62-68)% increased Lightning Damage", statOrder = { 1288 }, level = 68, group = "LightningDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["HellscapeUpsideLightningDamagePercentage2h4"] = { type = "ScourgeUpside", affix = "", "(69-75)% increased Lightning Damage", statOrder = { 1288 }, level = 68, group = "LightningDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["HellscapeUpsidePhysicalDamagePercentage1h1"] = { type = "ScourgeUpside", affix = "", "(23-25)% increased Global Physical Damage", statOrder = { 1143 }, level = 1, group = "PhysicalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["HellscapeUpsidePhysicalDamagePercentage1h1b"] = { type = "ScourgeUpside", affix = "", "(28-30)% increased Global Physical Damage", statOrder = { 1143 }, level = 25, group = "PhysicalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["HellscapeUpsidePhysicalDamagePercentage1h2__"] = { type = "ScourgeUpside", affix = "", "(33-35)% increased Global Physical Damage", statOrder = { 1143 }, level = 45, group = "PhysicalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["HellscapeUpsidePhysicalDamagePercentage1h2b"] = { type = "ScourgeUpside", affix = "", "(38-40)% increased Global Physical Damage", statOrder = { 1143 }, level = 55, group = "PhysicalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["HellscapeUpsidePhysicalDamagePercentage1h3"] = { type = "ScourgeUpside", affix = "", "(43-45)% increased Global Physical Damage", statOrder = { 1143 }, level = 68, group = "PhysicalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["HellscapeUpsidePhysicalDamagePercentage1h4"] = { type = "ScourgeUpside", affix = "", "(48-50)% increased Global Physical Damage", statOrder = { 1143 }, level = 68, group = "PhysicalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["HellscapeUpsidePhysicalDamagePercentage2h1"] = { type = "ScourgeUpside", affix = "", "(34-40)% increased Global Physical Damage", statOrder = { 1143 }, level = 1, group = "PhysicalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["HellscapeUpsidePhysicalDamagePercentage2h1b_"] = { type = "ScourgeUpside", affix = "", "(41-47)% increased Global Physical Damage", statOrder = { 1143 }, level = 25, group = "PhysicalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["HellscapeUpsidePhysicalDamagePercentage2h2"] = { type = "ScourgeUpside", affix = "", "(48-54)% increased Global Physical Damage", statOrder = { 1143 }, level = 45, group = "PhysicalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["HellscapeUpsidePhysicalDamagePercentage2h2b__"] = { type = "ScourgeUpside", affix = "", "(55-61)% increased Global Physical Damage", statOrder = { 1143 }, level = 55, group = "PhysicalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["HellscapeUpsidePhysicalDamagePercentage2h3_"] = { type = "ScourgeUpside", affix = "", "(62-68)% increased Global Physical Damage", statOrder = { 1143 }, level = 68, group = "PhysicalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["HellscapeUpsidePhysicalDamagePercentage2h4"] = { type = "ScourgeUpside", affix = "", "(69-75)% increased Global Physical Damage", statOrder = { 1143 }, level = 68, group = "PhysicalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["HellscapeUpsideElementalDamagePercentage1h1"] = { type = "ScourgeUpside", affix = "", "(23-25)% increased Elemental Damage", statOrder = { 1889 }, level = 1, group = "ElementalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["HellscapeUpsideElementalDamagePercentage1h1b"] = { type = "ScourgeUpside", affix = "", "(28-30)% increased Elemental Damage", statOrder = { 1889 }, level = 25, group = "ElementalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["HellscapeUpsideElementalDamagePercentage1h2"] = { type = "ScourgeUpside", affix = "", "(33-35)% increased Elemental Damage", statOrder = { 1889 }, level = 45, group = "ElementalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["HellscapeUpsideElementalDamagePercentage1h2b_"] = { type = "ScourgeUpside", affix = "", "(38-40)% increased Elemental Damage", statOrder = { 1889 }, level = 55, group = "ElementalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["HellscapeUpsideElementalDamagePercentage1h3_"] = { type = "ScourgeUpside", affix = "", "(43-45)% increased Elemental Damage", statOrder = { 1889 }, level = 68, group = "ElementalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["HellscapeUpsideElementalDamagePercentage1h4"] = { type = "ScourgeUpside", affix = "", "(48-50)% increased Elemental Damage", statOrder = { 1889 }, level = 68, group = "ElementalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["HellscapeUpsideElementalDamagePercentage2h1_"] = { type = "ScourgeUpside", affix = "", "(34-40)% increased Elemental Damage", statOrder = { 1889 }, level = 1, group = "ElementalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["HellscapeUpsideElementalDamagePercentage2h1b_"] = { type = "ScourgeUpside", affix = "", "(41-47)% increased Elemental Damage", statOrder = { 1889 }, level = 25, group = "ElementalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["HellscapeUpsideElementalDamagePercentage2h2"] = { type = "ScourgeUpside", affix = "", "(48-54)% increased Elemental Damage", statOrder = { 1889 }, level = 45, group = "ElementalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["HellscapeUpsideElementalDamagePercentage2h2b"] = { type = "ScourgeUpside", affix = "", "(55-61)% increased Elemental Damage", statOrder = { 1889 }, level = 55, group = "ElementalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["HellscapeUpsideElementalDamagePercentage2h3"] = { type = "ScourgeUpside", affix = "", "(62-68)% increased Elemental Damage", statOrder = { 1889 }, level = 68, group = "ElementalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["HellscapeUpsideElementalDamagePercentage2h4__"] = { type = "ScourgeUpside", affix = "", "(69-75)% increased Elemental Damage", statOrder = { 1889 }, level = 68, group = "ElementalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["HellscapeUpsideChaosDamagePercentage1h1"] = { type = "ScourgeUpside", affix = "", "(23-25)% increased Chaos Damage", statOrder = { 1296 }, level = 1, group = "IncreasedChaosDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["HellscapeUpsideChaosDamagePercentage1h1b_"] = { type = "ScourgeUpside", affix = "", "(28-30)% increased Chaos Damage", statOrder = { 1296 }, level = 25, group = "IncreasedChaosDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["HellscapeUpsideChaosDamagePercentage1h2_"] = { type = "ScourgeUpside", affix = "", "(33-35)% increased Chaos Damage", statOrder = { 1296 }, level = 45, group = "IncreasedChaosDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["HellscapeUpsideChaosDamagePercentage1h2b_"] = { type = "ScourgeUpside", affix = "", "(38-40)% increased Chaos Damage", statOrder = { 1296 }, level = 55, group = "IncreasedChaosDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["HellscapeUpsideChaosDamagePercentage1h3"] = { type = "ScourgeUpside", affix = "", "(43-45)% increased Chaos Damage", statOrder = { 1296 }, level = 68, group = "IncreasedChaosDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["HellscapeUpsideChaosDamagePercentage1h4_"] = { type = "ScourgeUpside", affix = "", "(48-50)% increased Chaos Damage", statOrder = { 1296 }, level = 68, group = "IncreasedChaosDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["HellscapeUpsideChaosDamagePercentage2h1"] = { type = "ScourgeUpside", affix = "", "(34-40)% increased Chaos Damage", statOrder = { 1296 }, level = 1, group = "IncreasedChaosDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["HellscapeUpsideChaosDamagePercentage2h1b"] = { type = "ScourgeUpside", affix = "", "(41-47)% increased Chaos Damage", statOrder = { 1296 }, level = 25, group = "IncreasedChaosDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["HellscapeUpsideChaosDamagePercentage2h2"] = { type = "ScourgeUpside", affix = "", "(48-54)% increased Chaos Damage", statOrder = { 1296 }, level = 45, group = "IncreasedChaosDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["HellscapeUpsideChaosDamagePercentage2h2b___"] = { type = "ScourgeUpside", affix = "", "(55-61)% increased Chaos Damage", statOrder = { 1296 }, level = 55, group = "IncreasedChaosDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["HellscapeUpsideChaosDamagePercentage2h3_"] = { type = "ScourgeUpside", affix = "", "(62-68)% increased Chaos Damage", statOrder = { 1296 }, level = 68, group = "IncreasedChaosDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["HellscapeUpsideChaosDamagePercentage2h4"] = { type = "ScourgeUpside", affix = "", "(69-75)% increased Chaos Damage", statOrder = { 1296 }, level = 68, group = "IncreasedChaosDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["HellscapeUpsideMinionDamagePercentage1__"] = { type = "ScourgeUpside", affix = "", "Minions deal (8-9)% increased Damage", statOrder = { 1882 }, level = 1, group = "MinionDamage", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "damage", "minion" }, }, + ["HellscapeUpsideMinionDamagePercentage2"] = { type = "ScourgeUpside", affix = "", "Minions deal (10-11)% increased Damage", statOrder = { 1882 }, level = 45, group = "MinionDamage", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "damage", "minion" }, }, + ["HellscapeUpsideMinionDamagePercentage3__"] = { type = "ScourgeUpside", affix = "", "Minions deal (12-13)% increased Damage", statOrder = { 1882 }, level = 68, group = "MinionDamage", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "damage", "minion" }, }, + ["HellscapeUpsideMinionDamagePercentage4_"] = { type = "ScourgeUpside", affix = "", "Minions deal (14-15)% increased Damage", statOrder = { 1882 }, level = 68, group = "MinionDamage", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "damage", "minion" }, }, + ["HellscapeUpsideProjectileDamagePercentage1"] = { type = "ScourgeUpside", affix = "", "(8-9)% increased Projectile Damage", statOrder = { 1905 }, level = 1, group = "ProjectileDamage", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, }, + ["HellscapeUpsideProjectileDamagePercentage2"] = { type = "ScourgeUpside", affix = "", "(10-11)% increased Projectile Damage", statOrder = { 1905 }, level = 45, group = "ProjectileDamage", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, }, + ["HellscapeUpsideProjectileDamagePercentage3"] = { type = "ScourgeUpside", affix = "", "(12-13)% increased Projectile Damage", statOrder = { 1905 }, level = 68, group = "ProjectileDamage", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, }, + ["HellscapeUpsideProjectileDamagePercentage4"] = { type = "ScourgeUpside", affix = "", "(14-15)% increased Projectile Damage", statOrder = { 1905 }, level = 68, group = "ProjectileDamage", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, }, + ["HellscapeUpsideCriticalStrikeChance2"] = { type = "ScourgeUpside", affix = "", "(17-19)% increased Global Critical Strike Chance", statOrder = { 1370 }, level = 45, group = "CriticalStrikeChance", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "critical" }, }, + ["HellscapeUpsideCriticalStrikeChance3"] = { type = "ScourgeUpside", affix = "", "(20-22)% increased Global Critical Strike Chance", statOrder = { 1370 }, level = 68, group = "CriticalStrikeChance", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "critical" }, }, + ["HellscapeUpsideCriticalStrikeChance4"] = { type = "ScourgeUpside", affix = "", "(23-25)% increased Global Critical Strike Chance", statOrder = { 1370 }, level = 68, group = "CriticalStrikeChance", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "critical" }, }, + ["HellscapeUpsideCriticalStrikeMultiplier2_"] = { type = "ScourgeUpside", affix = "", "+(17-19)% to Global Critical Strike Multiplier", statOrder = { 1399 }, level = 45, group = "CriticalStrikeMultiplier", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "critical" }, }, + ["HellscapeUpsideCriticalStrikeMultiplier3"] = { type = "ScourgeUpside", affix = "", "+(20-22)% to Global Critical Strike Multiplier", statOrder = { 1399 }, level = 68, group = "CriticalStrikeMultiplier", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "critical" }, }, + ["HellscapeUpsideCriticalStrikeMultiplier4"] = { type = "ScourgeUpside", affix = "", "+(23-25)% to Global Critical Strike Multiplier", statOrder = { 1399 }, level = 68, group = "CriticalStrikeMultiplier", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "critical" }, }, + ["HellscapeUpsideCriticalStrikeChanceWithBows2"] = { type = "ScourgeUpside", affix = "", "(17-19)% increased Critical Strike Chance with Bows", statOrder = { 1376 }, level = 45, group = "CriticalStrikeChanceWithBows", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "attack", "critical" }, }, + ["HellscapeUpsideCriticalStrikeChanceWithBows3"] = { type = "ScourgeUpside", affix = "", "(20-22)% increased Critical Strike Chance with Bows", statOrder = { 1376 }, level = 68, group = "CriticalStrikeChanceWithBows", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "attack", "critical" }, }, + ["HellscapeUpsideCriticalStrikeChanceWithBows4_"] = { type = "ScourgeUpside", affix = "", "(23-25)% increased Critical Strike Chance with Bows", statOrder = { 1376 }, level = 68, group = "CriticalStrikeChanceWithBows", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "attack", "critical" }, }, + ["HellscapeUpsideCriticalStrikeMultiplierWithBows2"] = { type = "ScourgeUpside", affix = "", "+(17-19)% to Critical Strike Multiplier with Bows", statOrder = { 1407 }, level = 45, group = "CriticalStrikeMultiplierWithBows", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "damage", "attack", "critical" }, }, + ["HellscapeUpsideCriticalStrikeMultiplierWithBows3__"] = { type = "ScourgeUpside", affix = "", "+(20-22)% to Critical Strike Multiplier with Bows", statOrder = { 1407 }, level = 68, group = "CriticalStrikeMultiplierWithBows", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "damage", "attack", "critical" }, }, + ["HellscapeUpsideCriticalStrikeMultiplierWithBows4"] = { type = "ScourgeUpside", affix = "", "+(23-25)% to Critical Strike Multiplier with Bows", statOrder = { 1407 }, level = 68, group = "CriticalStrikeMultiplierWithBows", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "damage", "attack", "critical" }, }, + ["HellscapeUpsideFireDamageOverTimeMultiplier1h3_"] = { type = "ScourgeUpside", affix = "", "+(11-13)% to Fire Damage over Time Multiplier", statOrder = { 1163 }, level = 68, group = "FireDamageOverTimeMultiplier", weightKey = { "wand", "sceptre", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["HellscapeUpsideFireDamageOverTimeMultiplier1h4__"] = { type = "ScourgeUpside", affix = "", "+(14-16)% to Fire Damage over Time Multiplier", statOrder = { 1163 }, level = 68, group = "FireDamageOverTimeMultiplier", weightKey = { "wand", "sceptre", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["HellscapeUpsideFireDamageOverTimeMultiplier2h3"] = { type = "ScourgeUpside", affix = "", "+(16-19)% to Fire Damage over Time Multiplier", statOrder = { 1163 }, level = 68, group = "FireDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["HellscapeUpsideFireDamageOverTimeMultiplier2h4__"] = { type = "ScourgeUpside", affix = "", "+(21-24)% to Fire Damage over Time Multiplier", statOrder = { 1163 }, level = 68, group = "FireDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["HellscapeUpsideColdDamageOverTimeMultiplier1h3___"] = { type = "ScourgeUpside", affix = "", "+(11-13)% to Cold Damage over Time Multiplier", statOrder = { 1168 }, level = 68, group = "ColdDamageOverTimeMultiplier", weightKey = { "wand", "sceptre", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["HellscapeUpsideColdDamageOverTimeMultiplier1h4"] = { type = "ScourgeUpside", affix = "", "+(14-16)% to Cold Damage over Time Multiplier", statOrder = { 1168 }, level = 68, group = "ColdDamageOverTimeMultiplier", weightKey = { "wand", "sceptre", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["HellscapeUpsideColdDamageOverTimeMultiplier2h3"] = { type = "ScourgeUpside", affix = "", "+(16-19)% to Cold Damage over Time Multiplier", statOrder = { 1168 }, level = 68, group = "ColdDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["HellscapeUpsideColdDamageOverTimeMultiplier2h4__"] = { type = "ScourgeUpside", affix = "", "+(21-24)% to Cold Damage over Time Multiplier", statOrder = { 1168 }, level = 68, group = "ColdDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["HellscapeUpsidePhysicalDamageOverTimeMultiplier1h3____"] = { type = "ScourgeUpside", affix = "", "+(11-13)% to Physical Damage over Time Multiplier", statOrder = { 1159 }, level = 68, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "wand", "sceptre", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, + ["HellscapeUpsidePhysicalDamageOverTimeMultiplier1h4"] = { type = "ScourgeUpside", affix = "", "+(14-16)% to Physical Damage over Time Multiplier", statOrder = { 1159 }, level = 68, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "wand", "sceptre", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, + ["HellscapeUpsidePhysicalDamageOverTimeMultiplier2h3_"] = { type = "ScourgeUpside", affix = "", "+(16-19)% to Physical Damage over Time Multiplier", statOrder = { 1159 }, level = 68, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, + ["HellscapeUpsidePhysicalDamageOverTimeMultiplier2h4_"] = { type = "ScourgeUpside", affix = "", "+(21-24)% to Physical Damage over Time Multiplier", statOrder = { 1159 }, level = 68, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, + ["HellscapeUpsideChaosDamageOverTimeMultiplier1h3__"] = { type = "ScourgeUpside", affix = "", "+(11-13)% to Chaos Damage over Time Multiplier", statOrder = { 1171 }, level = 68, group = "ChaosDamageOverTimeMultiplier", weightKey = { "wand", "sceptre", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["HellscapeUpsideChaosDamageOverTimeMultiplier1h4___"] = { type = "ScourgeUpside", affix = "", "+(14-16)% to Chaos Damage over Time Multiplier", statOrder = { 1171 }, level = 68, group = "ChaosDamageOverTimeMultiplier", weightKey = { "wand", "sceptre", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["HellscapeUpsideChaosDamageOverTimeMultiplier2h3"] = { type = "ScourgeUpside", affix = "", "+(16-19)% to Chaos Damage over Time Multiplier", statOrder = { 1171 }, level = 68, group = "ChaosDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["HellscapeUpsideChaosDamageOverTimeMultiplier2h4__"] = { type = "ScourgeUpside", affix = "", "+(21-24)% to Chaos Damage over Time Multiplier", statOrder = { 1171 }, level = 68, group = "ChaosDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["HellscapeUpsideDamageOverTimeMultiplier2_"] = { type = "ScourgeUpside", affix = "", "+(8-10)% to Damage over Time Multiplier", statOrder = { 1154 }, level = 45, group = "GlobalDamageOverTimeMultiplier", weightKey = { "amulet", "default", }, weightVal = { 100, 0 }, modTags = { "dot_multi", "damage" }, }, + ["HellscapeUpsideDamageOverTimeMultiplier3_"] = { type = "ScourgeUpside", affix = "", "+(11-13)% to Damage over Time Multiplier", statOrder = { 1154 }, level = 68, group = "GlobalDamageOverTimeMultiplier", weightKey = { "amulet", "default", }, weightVal = { 100, 0 }, modTags = { "dot_multi", "damage" }, }, + ["HellscapeUpsideDamageOverTimeMultiplier4"] = { type = "ScourgeUpside", affix = "", "+(14-16)% to Damage over Time Multiplier", statOrder = { 1154 }, level = 68, group = "GlobalDamageOverTimeMultiplier", weightKey = { "amulet", "default", }, weightVal = { 100, 0 }, modTags = { "dot_multi", "damage" }, }, + ["HellscapeUpsideIncreasedAttackSpeed1_"] = { type = "ScourgeUpside", affix = "", "4% increased Attack Speed", statOrder = { 1321 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 500, 1000, 1000, 1000, 0 }, modTags = { "attack", "speed" }, }, + ["HellscapeUpsideIncreasedAttackSpeed2"] = { type = "ScourgeUpside", affix = "", "(5-6)% increased Attack Speed", statOrder = { 1321 }, level = 45, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 500, 1000, 1000, 1000, 0 }, modTags = { "attack", "speed" }, }, + ["HellscapeUpsideIncreasedAttackSpeed3"] = { type = "ScourgeUpside", affix = "", "(7-8)% increased Attack Speed", statOrder = { 1321 }, level = 68, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 500, 1000, 1000, 1000, 0 }, modTags = { "attack", "speed" }, }, + ["HellscapeUpsideIncreasedAttackSpeed4"] = { type = "ScourgeUpside", affix = "", "(9-10)% increased Attack Speed", statOrder = { 1321 }, level = 68, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 500, 1000, 1000, 1000, 0 }, modTags = { "attack", "speed" }, }, + ["HellscapeUpsideIncreasedCastSpeed1"] = { type = "ScourgeUpside", affix = "", "5% increased Cast Speed", statOrder = { 1357 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "speed" }, }, + ["HellscapeUpsideIncreasedCastSpeed2"] = { type = "ScourgeUpside", affix = "", "6% increased Cast Speed", statOrder = { 1357 }, level = 45, group = "IncreasedCastSpeed", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "speed" }, }, + ["HellscapeUpsideIncreasedCastSpeed3_"] = { type = "ScourgeUpside", affix = "", "7% increased Cast Speed", statOrder = { 1357 }, level = 68, group = "IncreasedCastSpeed", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "speed" }, }, + ["HellscapeUpsideIncreasedCastSpeed4_"] = { type = "ScourgeUpside", affix = "", "8% increased Cast Speed", statOrder = { 1357 }, level = 68, group = "IncreasedCastSpeed", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "speed" }, }, + ["HellscapeUpsideMinionAttackAndCastSpeed1"] = { type = "ScourgeUpside", affix = "", "Minions have 5% increased Attack Speed", "Minions have 5% increased Cast Speed", statOrder = { 2817, 2818 }, level = 1, group = "MinionAttackAndCastSpeed", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, + ["HellscapeUpsideMinionAttackAndCastSpeed2"] = { type = "ScourgeUpside", affix = "", "Minions have 6% increased Attack Speed", "Minions have 6% increased Cast Speed", statOrder = { 2817, 2818 }, level = 45, group = "MinionAttackAndCastSpeed", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, + ["HellscapeUpsideMinionAttackAndCastSpeed3____"] = { type = "ScourgeUpside", affix = "", "Minions have (7-8)% increased Attack Speed", "Minions have (7-8)% increased Cast Speed", statOrder = { 2817, 2818 }, level = 68, group = "MinionAttackAndCastSpeed", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, + ["HellscapeUpsideMinionAttackAndCastSpeed4_"] = { type = "ScourgeUpside", affix = "", "Minions have (9-10)% increased Attack Speed", "Minions have (9-10)% increased Cast Speed", statOrder = { 2817, 2818 }, level = 68, group = "MinionAttackAndCastSpeed", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, + ["HellscapeUpsideMaximumLifeOnKillPercent3"] = { type = "ScourgeUpside", affix = "", "Recover 3% of Life on Kill", statOrder = { 1660 }, level = 68, group = "MaximumLifeOnKillPercent", weightKey = { "body_armour", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "life" }, }, + ["HellscapeUpsideMaximumLifeOnKillPercent4___"] = { type = "ScourgeUpside", affix = "", "Recover 4% of Life on Kill", statOrder = { 1660 }, level = 68, group = "MaximumLifeOnKillPercent", weightKey = { "body_armour", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "life" }, }, + ["HellscapeUpsideMaximumManaOnKillPercent3"] = { type = "ScourgeUpside", affix = "", "Recover 3% of Mana on Kill", statOrder = { 1662 }, level = 68, group = "MaximumManaOnKillPercent", weightKey = { "body_armour", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "mana" }, }, + ["HellscapeUpsideMaximumManaOnKillPercent4"] = { type = "ScourgeUpside", affix = "", "Recover 4% of Mana on Kill", statOrder = { 1662 }, level = 68, group = "MaximumManaOnKillPercent", weightKey = { "body_armour", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "mana" }, }, + ["HellscapeUpsideMaximumEnergyShieldOnKillPercent3"] = { type = "ScourgeUpside", affix = "", "Recover 3% of Energy Shield on Kill", statOrder = { 1661 }, level = 68, group = "MaximumEnergyShieldOnKillPercent", weightKey = { "body_armour", "default", }, weightVal = { 100, 0 }, modTags = { "defences", "energy_shield" }, }, + ["HellscapeUpsideMaximumEnergyShieldOnKillPercent4"] = { type = "ScourgeUpside", affix = "", "Recover 4% of Energy Shield on Kill", statOrder = { 1661 }, level = 68, group = "MaximumEnergyShieldOnKillPercent", weightKey = { "body_armour", "default", }, weightVal = { 100, 0 }, modTags = { "defences", "energy_shield" }, }, + ["HellscapeUpsideIncreasedAccuracyPercent2"] = { type = "ScourgeUpside", affix = "", "(11-14)% increased Global Accuracy Rating", statOrder = { 1345 }, level = 45, group = "IncreasedAccuracyPercent", weightKey = { "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "attack" }, }, + ["HellscapeUpsideIncreasedAccuracyPercent3"] = { type = "ScourgeUpside", affix = "", "(15-17)% increased Global Accuracy Rating", statOrder = { 1345 }, level = 68, group = "IncreasedAccuracyPercent", weightKey = { "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "attack" }, }, + ["HellscapeUpsideIncreasedAccuracyPercent4__"] = { type = "ScourgeUpside", affix = "", "(18-20)% increased Global Accuracy Rating", statOrder = { 1345 }, level = 68, group = "IncreasedAccuracyPercent", weightKey = { "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "attack" }, }, + ["HellscapeUpsideLocalIncreaseSocketedAreaOfEffectGemLevel__"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed AoE Gems", statOrder = { 156 }, level = 68, group = "IncreasedSocketedAoEGemLevel", weightKey = { "body_armour", "default", }, weightVal = { 25, 0 }, modTags = { "gem" }, }, + ["HellscapeUpsideLocalIncreaseSocketedAuraGemLevel_"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Aura Gems", statOrder = { 161 }, level = 68, group = "LocalIncreaseSocketedAuraLevel", weightKey = { "body_armour", "default", }, weightVal = { 25, 0 }, modTags = { "aura", "gem" }, }, + ["HellscapeUpsideLocalIncreaseSocketedCurseGemLevel__"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Curse Gems", statOrder = { 164 }, level = 68, group = "IncreaseSocketedCurseGemLevel", weightKey = { "body_armour", "default", }, weightVal = { 25, 0 }, modTags = { "caster", "gem", "curse" }, }, + ["HellscapeUpsideLocalIncreaseSocketedDurationGemLevel__"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Duration Gems", statOrder = { 155 }, level = 68, group = "IncreaseSocketedDurationGemLevel", weightKey = { "body_armour", "default", }, weightVal = { 25, 0 }, modTags = { "gem" }, }, + ["HellscapeUpsideLocalIncreaseSocketedGemLevel"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Gems", statOrder = { 142 }, level = 68, group = "LocalIncreaseSocketedGemLevel", weightKey = { "body_armour", "default", }, weightVal = { 5, 0 }, modTags = { "gem" }, }, + ["HellscapeUpsideLocalIncreaseSocketedProjectileGemLevel_"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Projectile Gems", statOrder = { 157 }, level = 68, group = "LocalIncreaseSocketedProjectileGemLevel", weightKey = { "body_armour", "default", }, weightVal = { 25, 0 }, modTags = { "gem" }, }, + ["HellscapeUpsideLocalIncreaseSocketedTrapAndMineGemLevel_"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Trap or Mine Gems", statOrder = { 167 }, level = 68, group = "IncreasedSocketedTrapOrMineGemLevel", weightKey = { "body_armour", "default", }, weightVal = { 25, 0 }, modTags = { "gem" }, }, + ["HellscapeUpsideLocalIncreaseSocketedWarcryGemLevel_"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Warcry Gems", statOrder = { 172 }, level = 68, group = "LocalSocketedWarcryGemLevel", weightKey = { "body_armour", "default", }, weightVal = { 25, 0 }, modTags = { "gem" }, }, + ["HellscapeUpsideLocalIncreaseSocketedSupportGemLevel"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Support Gems", statOrder = { 169 }, level = 68, group = "LocalIncreaseSocketedSupportGemLevel", weightKey = { "body_armour", "default", }, weightVal = { 25, 0 }, modTags = { "gem" }, }, + ["HellscapeUpsideLocalIncreaseSocketedLightningGemLevel__"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Lightning Gems", statOrder = { 149 }, level = 68, group = "LocalIncreaseSocketedLightningGemLevel", weightKey = { "body_armour", "default", }, weightVal = { 25, 0 }, modTags = { "elemental", "lightning", "gem" }, }, + ["HellscapeUpsideLocalIncreaseSocketedChaosGemLevel"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Chaos Gems", statOrder = { 150 }, level = 68, group = "LocalIncreaseSocketedChaosGemLevel", weightKey = { "body_armour", "default", }, weightVal = { 25, 0 }, modTags = { "chaos", "gem" }, }, + ["HellscapeUpsideLocalIncreaseSocketedFireGemLevel"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Fire Gems", statOrder = { 147 }, level = 68, group = "LocalIncreaseSocketedFireGemLevel", weightKey = { "body_armour", "default", }, weightVal = { 25, 0 }, modTags = { "elemental", "fire", "gem" }, }, + ["HellscapeUpsideLocalIncreaseSocketedColdGemLevel"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Cold Gems", statOrder = { 148 }, level = 68, group = "LocalIncreaseSocketedColdGemLevel", weightKey = { "body_armour", "default", }, weightVal = { 25, 0 }, modTags = { "elemental", "cold", "gem" }, }, + ["HellscapeUpsideLocalIncreaseSocketedMinionGemLevel"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Minion Gems", statOrder = { 160 }, level = 68, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { "body_armour", "default", }, weightVal = { 25, 0 }, modTags = { "minion", "gem" }, }, + ["HellscapeUpsideLocalIncreaseSocketedMeleeGemLevel_"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Melee Gems", statOrder = { 159 }, level = 68, group = "LocalIncreaseSocketedMeleeGemLevel", weightKey = { "body_armour", "default", }, weightVal = { 25, 0 }, modTags = { "attack", "gem" }, }, + ["HellscapeUpsideGlobalIncreaseChaosSpellSkillGemLevel1h"] = { type = "ScourgeUpside", affix = "", "+1 to Level of all Chaos Spell Skill Gems", statOrder = { 1524 }, level = 68, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { "attack_dagger", "sceptre", "wand", "dagger", "default", }, weightVal = { 0, 50, 50, 50, 0 }, modTags = { "chaos", "caster", "gem" }, }, + ["HellscapeUpsideGlobalIncreaseChaosSpellSkillGemLevel2h__"] = { type = "ScourgeUpside", affix = "", "+2 to Level of all Chaos Spell Skill Gems", statOrder = { 1524 }, level = 68, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 50, 0 }, modTags = { "chaos", "caster", "gem" }, }, + ["HellscapeUpsideGlobalIncreaseLightningSpellSkillGemLevel1h_"] = { type = "ScourgeUpside", affix = "", "+1 to Level of all Lightning Spell Skill Gems", statOrder = { 1523 }, level = 68, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { "attack_dagger", "sceptre", "wand", "dagger", "default", }, weightVal = { 0, 50, 50, 50, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, }, + ["HellscapeUpsideGlobalIncreaseLightningSpellSkillGemLevel2h_"] = { type = "ScourgeUpside", affix = "", "+2 to Level of all Lightning Spell Skill Gems", statOrder = { 1523 }, level = 68, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 50, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, }, + ["HellscapeUpsideGlobalIncreaseFireSpellSkillGemLevel1h"] = { type = "ScourgeUpside", affix = "", "+1 to Level of all Fire Spell Skill Gems", statOrder = { 1521 }, level = 68, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { "attack_dagger", "sceptre", "wand", "dagger", "default", }, weightVal = { 0, 50, 50, 50, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, }, + ["HellscapeUpsideGlobalIncreaseFireSpellSkillGemLevel2h_"] = { type = "ScourgeUpside", affix = "", "+2 to Level of all Fire Spell Skill Gems", statOrder = { 1521 }, level = 68, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 50, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, }, + ["HellscapeUpsideGlobalIncreaseColdSpellSkillGemLevel1h_"] = { type = "ScourgeUpside", affix = "", "+1 to Level of all Cold Spell Skill Gems", statOrder = { 1522 }, level = 68, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { "attack_dagger", "sceptre", "wand", "dagger", "default", }, weightVal = { 0, 50, 50, 50, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, }, + ["HellscapeUpsideGlobalIncreaseColdSpellSkillGemLevel2h"] = { type = "ScourgeUpside", affix = "", "+2 to Level of all Cold Spell Skill Gems", statOrder = { 1522 }, level = 68, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 50, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, }, + ["HellscapeUpsideGlobalIncreasePhysicalSpellSkillGemLevel1h__"] = { type = "ScourgeUpside", affix = "", "+1 to Level of all Physical Spell Skill Gems", statOrder = { 1520 }, level = 68, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { "attack_dagger", "sceptre", "wand", "dagger", "default", }, weightVal = { 0, 50, 50, 50, 0 }, modTags = { "physical", "caster", "gem" }, }, + ["HellscapeUpsideGlobalIncreasePhysicalSpellSkillGemLevel2h"] = { type = "ScourgeUpside", affix = "", "+2 to Level of all Physical Spell Skill Gems", statOrder = { 1520 }, level = 68, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 50, 0 }, modTags = { "physical", "caster", "gem" }, }, + ["HellscapeUpsideAdditionalRaisedZombie1_"] = { type = "ScourgeUpside", affix = "", "+1 to maximum number of Raised Zombies", statOrder = { 2069 }, level = 45, group = "MaximumZombieCount", weightKey = { "boots", "default", }, weightVal = { 100, 0 }, modTags = { "minion" }, }, + ["HellscapeUpsideAdditionalSkeleton1__"] = { type = "ScourgeUpside", affix = "", "+1 to maximum number of Skeletons", statOrder = { 2071 }, level = 45, group = "MaximumSkeletonCount", weightKey = { "boots", "default", }, weightVal = { 100, 0 }, modTags = { "minion" }, }, + ["HellscapeUpsideWeaponRange1"] = { type = "ScourgeUpside", affix = "", "+0.1 metres to Weapon Range", statOrder = { 2655 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { "wand", "bow", "weapon", "default", }, weightVal = { 0, 0, 200, 0 }, modTags = { "attack" }, }, + ["HellscapeUpsideWeaponRange2"] = { type = "ScourgeUpside", affix = "", "+0.2 metres to Weapon Range", statOrder = { 2655 }, level = 45, group = "LocalMeleeWeaponRange", weightKey = { "wand", "bow", "weapon", "default", }, weightVal = { 0, 0, 200, 0 }, modTags = { "attack" }, }, + ["HellscapeUpsideWeaponRange3"] = { type = "ScourgeUpside", affix = "", "+0.3 metres to Weapon Range", statOrder = { 2655 }, level = 68, group = "LocalMeleeWeaponRange", weightKey = { "wand", "bow", "weapon", "default", }, weightVal = { 0, 0, 200, 0 }, modTags = { "attack" }, }, + ["HellscapeUpsideWeaponRange4"] = { type = "ScourgeUpside", affix = "", "+0.4 metres to Weapon Range", statOrder = { 2655 }, level = 68, group = "LocalMeleeWeaponRange", weightKey = { "wand", "bow", "weapon", "default", }, weightVal = { 0, 0, 200, 0 }, modTags = { "attack" }, }, + ["HellscapeUpsideAreaDamage1"] = { type = "ScourgeUpside", affix = "", "(11-15)% increased Area Damage", statOrder = { 1944 }, level = 1, group = "AreaDamage", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, }, + ["HellscapeUpsideAreaDamage2_"] = { type = "ScourgeUpside", affix = "", "(16-20)% increased Area Damage", statOrder = { 1944 }, level = 45, group = "AreaDamage", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, }, + ["HellscapeUpsideAreaDamage3"] = { type = "ScourgeUpside", affix = "", "(21-25)% increased Area Damage", statOrder = { 1944 }, level = 68, group = "AreaDamage", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, }, + ["HellscapeUpsideAreaDamage4"] = { type = "ScourgeUpside", affix = "", "(26-30)% increased Area Damage", statOrder = { 1944 }, level = 68, group = "AreaDamage", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, }, + ["HellscapeUpsideReducedAttributeRequirement2"] = { type = "ScourgeUpside", affix = "", "(12-14)% reduced Attribute Requirements", statOrder = { 988 }, level = 45, group = "LocalAttributeRequirements", weightKey = { "weapon", "body_armour", "helmet", "shield", "gloves", "boots", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { }, }, + ["HellscapeUpsideReducedAttributeRequirement3"] = { type = "ScourgeUpside", affix = "", "(15-17)% reduced Attribute Requirements", statOrder = { 988 }, level = 68, group = "LocalAttributeRequirements", weightKey = { "weapon", "body_armour", "helmet", "shield", "gloves", "boots", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { }, }, + ["HellscapeUpsideReducedAttributeRequirement4"] = { type = "ScourgeUpside", affix = "", "(18-20)% reduced Attribute Requirements", statOrder = { 988 }, level = 68, group = "LocalAttributeRequirements", weightKey = { "weapon", "body_armour", "helmet", "shield", "gloves", "boots", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { }, }, + ["HellscapeUpsideRarityOfItemsFound1_"] = { type = "ScourgeUpside", affix = "", "(8-9)% increased Rarity of Items found", statOrder = { 1507 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "default", }, weightVal = { 500, 500, 0 }, modTags = { "drop" }, }, + ["HellscapeUpsideRarityOfItemsFound2_"] = { type = "ScourgeUpside", affix = "", "(10-11)% increased Rarity of Items found", statOrder = { 1507 }, level = 45, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "default", }, weightVal = { 500, 500, 0 }, modTags = { "drop" }, }, + ["HellscapeUpsideRarityOfItemsFound3"] = { type = "ScourgeUpside", affix = "", "(12-13)% increased Rarity of Items found", statOrder = { 1507 }, level = 68, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "default", }, weightVal = { 500, 500, 0 }, modTags = { "drop" }, }, + ["HellscapeUpsideRarityOfItemsFound4"] = { type = "ScourgeUpside", affix = "", "(14-15)% increased Rarity of Items found", statOrder = { 1507 }, level = 68, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "default", }, weightVal = { 500, 500, 0 }, modTags = { "drop" }, }, + ["HellscapeUpsideLifeRegenerationRate2"] = { type = "ScourgeUpside", affix = "", "(7-9)% increased Life Regeneration rate", statOrder = { 1488 }, level = 45, group = "LifeRegenerationRate", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "helmet", "boots", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "resource", "life" }, }, + ["HellscapeUpsideLifeRegenerationRate3"] = { type = "ScourgeUpside", affix = "", "(10-12)% increased Life Regeneration rate", statOrder = { 1488 }, level = 68, group = "LifeRegenerationRate", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "helmet", "boots", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "resource", "life" }, }, + ["HellscapeUpsideLifeRegenerationRate4"] = { type = "ScourgeUpside", affix = "", "(13-15)% increased Life Regeneration rate", statOrder = { 1488 }, level = 68, group = "LifeRegenerationRate", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "helmet", "boots", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "resource", "life" }, }, + ["HellscapeUpsideLifeRegeneration1"] = { type = "ScourgeUpside", affix = "", "Regenerate (10.8-11.7) Life per second", statOrder = { 1485 }, level = 1, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "flask", "map", "default", }, weightVal = { 0, 0, 0, 0, 0, 1000 }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["HellscapeUpsideLifeRegeneration1b_"] = { type = "ScourgeUpside", affix = "", "Regenerate (12.5-13.3) Life per second", statOrder = { 1485 }, level = 25, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "flask", "map", "default", }, weightVal = { 0, 0, 0, 0, 0, 500 }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["HellscapeUpsideLifeRegeneration1c_"] = { type = "ScourgeUpside", affix = "", "Regenerate (14.2-15) Life per second", statOrder = { 1485 }, level = 35, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "flask", "map", "default", }, weightVal = { 0, 0, 0, 0, 0, 333 }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["HellscapeUpsideLifeRegeneration2_"] = { type = "ScourgeUpside", affix = "", "Regenerate (15.8-16.7) Life per second", statOrder = { 1485 }, level = 45, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "flask", "map", "default", }, weightVal = { 0, 0, 0, 0, 0, 1000 }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["HellscapeUpsideLifeRegeneration2b"] = { type = "ScourgeUpside", affix = "", "Regenerate (17.5-18.3) Life per second", statOrder = { 1485 }, level = 52, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "flask", "map", "default", }, weightVal = { 0, 0, 0, 0, 0, 500 }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["HellscapeUpsideLifeRegeneration2c_"] = { type = "ScourgeUpside", affix = "", "Regenerate (19.2-20) Life per second", statOrder = { 1485 }, level = 59, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "flask", "map", "default", }, weightVal = { 0, 0, 0, 0, 0, 333 }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["HellscapeUpsideLifeRegeneration3__"] = { type = "ScourgeUpside", affix = "", "Regenerate (20.8-21.7) Life per second", statOrder = { 1485 }, level = 68, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "flask", "map", "default", }, weightVal = { 0, 0, 0, 0, 0, 333 }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["HellscapeUpsideLifeRegeneration3b"] = { type = "ScourgeUpside", affix = "", "Regenerate (22.5-23.3) Life per second", statOrder = { 1485 }, level = 68, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "flask", "map", "default", }, weightVal = { 0, 0, 0, 0, 0, 200 }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["HellscapeUpsideLifeRegeneration3c_"] = { type = "ScourgeUpside", affix = "", "Regenerate (24.2-25) Life per second", statOrder = { 1485 }, level = 68, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "flask", "map", "default", }, weightVal = { 0, 0, 0, 0, 0, 100 }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["HellscapeUpsideLifeRegeneration4_"] = { type = "ScourgeUpside", affix = "", "Regenerate (25.8-26.7) Life per second", statOrder = { 1485 }, level = 68, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "flask", "map", "default", }, weightVal = { 0, 0, 0, 0, 0, 1000 }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["HellscapeUpsideMinionLifeRegenPercentage2"] = { type = "ScourgeUpside", affix = "", "Minions Regenerate 2% of Life per second", statOrder = { 2821 }, level = 45, group = "MinionLifeRegeneration", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "minion" }, }, + ["HellscapeUpsideMinionLifeRegenPercentage2b_"] = { type = "ScourgeUpside", affix = "", "Minions Regenerate 2.5% of Life per second", statOrder = { 2821 }, level = 55, group = "MinionLifeRegeneration", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "minion" }, }, + ["HellscapeUpsideMinionLifeRegenPercentage3__"] = { type = "ScourgeUpside", affix = "", "Minions Regenerate 3% of Life per second", statOrder = { 2821 }, level = 68, group = "MinionLifeRegeneration", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "minion" }, }, + ["HellscapeUpsideMinionLifeRegenPercentage4_"] = { type = "ScourgeUpside", affix = "", "Minions Regenerate 3.5% of Life per second", statOrder = { 2821 }, level = 68, group = "MinionLifeRegeneration", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "minion" }, }, + ["HellscapeUpsideEnergyShieldRechargeRate2"] = { type = "ScourgeUpside", affix = "", "(11-15)% increased Energy Shield Recharge Rate", statOrder = { 1476 }, level = 45, group = "EnergyShieldRegeneration", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, + ["HellscapeUpsideEnergyShieldRechargeRate3"] = { type = "ScourgeUpside", affix = "", "(16-20)% increased Energy Shield Recharge Rate", statOrder = { 1476 }, level = 68, group = "EnergyShieldRegeneration", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, + ["HellscapeUpsideEnergyShieldRechargeRate4"] = { type = "ScourgeUpside", affix = "", "(21-25)% increased Energy Shield Recharge Rate", statOrder = { 1476 }, level = 68, group = "EnergyShieldRegeneration", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, + ["HellscapeUpsideMovementVelocity1"] = { type = "ScourgeUpside", affix = "", "(8-9)% increased Movement Speed", statOrder = { 1709 }, level = 1, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, }, + ["HellscapeUpsideMovementVelocity2"] = { type = "ScourgeUpside", affix = "", "(10-11)% increased Movement Speed", statOrder = { 1709 }, level = 45, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, }, + ["HellscapeUpsideMovementVelocity3_"] = { type = "ScourgeUpside", affix = "", "(12-13)% increased Movement Speed", statOrder = { 1709 }, level = 68, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, }, + ["HellscapeUpsideMovementVelocity4"] = { type = "ScourgeUpside", affix = "", "(14-15)% increased Movement Speed", statOrder = { 1709 }, level = 68, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, }, + ["HellscapeUpsideMaximumMana1__"] = { type = "ScourgeUpside", affix = "", "+(23-25) to maximum Mana", statOrder = { 1490 }, level = 1, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["HellscapeUpsideMaximumMana2"] = { type = "ScourgeUpside", affix = "", "+(28-30) to maximum Mana", statOrder = { 1490 }, level = 45, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["HellscapeUpsideMaximumMana3"] = { type = "ScourgeUpside", affix = "", "+(33-35) to maximum Mana", statOrder = { 1490 }, level = 68, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["HellscapeUpsideMaximumMana4_"] = { type = "ScourgeUpside", affix = "", "+(38-40) to maximum Mana", statOrder = { 1490 }, level = 68, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["HellscapeUpsideManaRegeneration1"] = { type = "ScourgeUpside", affix = "", "(18-20)% increased Mana Regeneration Rate", statOrder = { 1495 }, level = 1, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "staff", "sceptre", "wand", "claw", "dagger", "shield", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "mana" }, }, + ["HellscapeUpsideManaRegeneration2"] = { type = "ScourgeUpside", affix = "", "(23-25)% increased Mana Regeneration Rate", statOrder = { 1495 }, level = 45, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "staff", "sceptre", "wand", "claw", "dagger", "shield", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "mana" }, }, + ["HellscapeUpsideManaRegeneration2b"] = { type = "ScourgeUpside", affix = "", "(28-30)% increased Mana Regeneration Rate", statOrder = { 1495 }, level = 55, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "staff", "sceptre", "wand", "claw", "dagger", "shield", "default", }, weightVal = { 250, 250, 250, 250, 250, 250, 250, 250, 250, 0 }, modTags = { "resource", "mana" }, }, + ["HellscapeUpsideManaRegeneration3"] = { type = "ScourgeUpside", affix = "", "(33-35)% increased Mana Regeneration Rate", statOrder = { 1495 }, level = 68, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "staff", "sceptre", "wand", "claw", "dagger", "shield", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "mana" }, }, + ["HellscapeUpsideManaRegeneration3b"] = { type = "ScourgeUpside", affix = "", "(38-40)% increased Mana Regeneration Rate", statOrder = { 1495 }, level = 68, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "staff", "sceptre", "wand", "claw", "dagger", "shield", "default", }, weightVal = { 250, 250, 250, 250, 250, 250, 250, 250, 250, 0 }, modTags = { "resource", "mana" }, }, + ["HellscapeUpsideManaRegeneration4"] = { type = "ScourgeUpside", affix = "", "(43-45)% increased Mana Regeneration Rate", statOrder = { 1495 }, level = 68, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "staff", "sceptre", "wand", "claw", "dagger", "shield", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "mana" }, }, + ["HellscapeUpsideManaRegenFlat1"] = { type = "ScourgeUpside", affix = "", "Regenerate 0.8 Mana per second", statOrder = { 1493 }, level = 1, group = "AddedManaRegeneration", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, }, + ["HellscapeUpsideManaRegenFlat1b"] = { type = "ScourgeUpside", affix = "", "Regenerate (1.5-1.7) Mana per second", statOrder = { 1493 }, level = 15, group = "AddedManaRegeneration", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, }, + ["HellscapeUpsideManaRegenFlat1c"] = { type = "ScourgeUpside", affix = "", "Regenerate (2.6-2.8) Mana per second", statOrder = { 1493 }, level = 25, group = "AddedManaRegeneration", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, }, + ["HellscapeUpsideManaRegenFlat1d__"] = { type = "ScourgeUpside", affix = "", "Regenerate (4-4.3) Mana per second", statOrder = { 1493 }, level = 35, group = "AddedManaRegeneration", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, }, + ["HellscapeUpsideManaRegenFlat2_"] = { type = "ScourgeUpside", affix = "", "Regenerate (5.1-5.7) Mana per second", statOrder = { 1493 }, level = 45, group = "AddedManaRegeneration", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, }, + ["HellscapeUpsideManaRegenFlat2b"] = { type = "ScourgeUpside", affix = "", "Regenerate (6.3-6.7) Mana per second", statOrder = { 1493 }, level = 55, group = "AddedManaRegeneration", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, }, + ["HellscapeUpsideManaRegenFlat3"] = { type = "ScourgeUpside", affix = "", "Regenerate (8-8.3) Mana per second", statOrder = { 1493 }, level = 68, group = "AddedManaRegeneration", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, }, + ["HellscapeUpsideManaRegenFlat4"] = { type = "ScourgeUpside", affix = "", "Regenerate (8.8-9.2) Mana per second", statOrder = { 1493 }, level = 68, group = "AddedManaRegeneration", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, }, + ["HellscapeUpsideAttackLifeLeech2"] = { type = "ScourgeUpside", affix = "", "(0.2-0.3)% of Physical Attack Damage Leeched as Life", statOrder = { 1560 }, level = 45, group = "LifeLeechPermyriad", weightKey = { "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["HellscapeUpsideAttackLifeLeech3"] = { type = "ScourgeUpside", affix = "", "(0.3-0.4)% of Physical Attack Damage Leeched as Life", statOrder = { 1560 }, level = 68, group = "LifeLeechPermyriad", weightKey = { "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["HellscapeUpsideAttackLifeLeech4"] = { type = "ScourgeUpside", affix = "", "(0.4-0.5)% of Physical Attack Damage Leeched as Life", statOrder = { 1560 }, level = 68, group = "LifeLeechPermyriad", weightKey = { "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["HellscapeUpsideAttackManaLifeLeech2"] = { type = "ScourgeUpside", affix = "", "(0.2-0.3)% of Physical Attack Damage Leeched as Mana", statOrder = { 1610 }, level = 45, group = "ManaLeechPermyriad", weightKey = { "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana", "physical", "attack" }, }, + ["HellscapeUpsideAttackManaLifeLeech3"] = { type = "ScourgeUpside", affix = "", "(0.3-0.4)% of Physical Attack Damage Leeched as Mana", statOrder = { 1610 }, level = 68, group = "ManaLeechPermyriad", weightKey = { "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana", "physical", "attack" }, }, + ["HellscapeUpsideAttackManaLifeLeech4"] = { type = "ScourgeUpside", affix = "", "(0.4-0.5)% of Physical Attack Damage Leeched as Mana", statOrder = { 1610 }, level = 68, group = "ManaLeechPermyriad", weightKey = { "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana", "physical", "attack" }, }, + ["HellscapeUpsideMinionLifeLeech2"] = { type = "ScourgeUpside", affix = "", "Minions Leech (0.2-0.3)% of Damage as Life", statOrder = { 2820 }, level = 45, group = "MinionLifeLeech", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "minion" }, }, + ["HellscapeUpsideMinionLifeLeech3_"] = { type = "ScourgeUpside", affix = "", "Minions Leech (0.4-0.5)% of Damage as Life", statOrder = { 2820 }, level = 68, group = "MinionLifeLeech", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "minion" }, }, + ["HellscapeUpsideMinionLifeLeech4___"] = { type = "ScourgeUpside", affix = "", "Minions Leech (0.6-0.7)% of Damage as Life", statOrder = { 2820 }, level = 68, group = "MinionLifeLeech", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "minion" }, }, + ["HellscapeUpsideFlaskChargesGained2_"] = { type = "ScourgeUpside", affix = "", "(13-15)% increased Flask Charges gained", statOrder = { 2092 }, level = 45, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, + ["HellscapeUpsideFlaskChargesGained3_"] = { type = "ScourgeUpside", affix = "", "(18-20)% increased Flask Charges gained", statOrder = { 2092 }, level = 68, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, + ["HellscapeUpsideFlaskChargesGained4"] = { type = "ScourgeUpside", affix = "", "(23-25)% increased Flask Charges gained", statOrder = { 2092 }, level = 68, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, + ["HellscapeUpsideStunThreshold2"] = { type = "ScourgeUpside", affix = "", "(5-6)% reduced Enemy Stun Threshold", statOrder = { 1428 }, level = 45, group = "StunThresholdReduction", weightKey = { "mace", "sceptre", "staff", "sword", "axe", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["HellscapeUpsideStunThreshold3____"] = { type = "ScourgeUpside", affix = "", "(7-8)% reduced Enemy Stun Threshold", statOrder = { 1428 }, level = 68, group = "StunThresholdReduction", weightKey = { "mace", "sceptre", "staff", "sword", "axe", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["HellscapeUpsideStunThreshold4"] = { type = "ScourgeUpside", affix = "", "(9-10)% reduced Enemy Stun Threshold", statOrder = { 1428 }, level = 68, group = "StunThresholdReduction", weightKey = { "mace", "sceptre", "staff", "sword", "axe", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["HellscapeUpsideStunDuration2"] = { type = "ScourgeUpside", affix = "", "(17-19)% increased Stun Duration on Enemies", statOrder = { 1774 }, level = 45, group = "StunDurationIncreasePercent", weightKey = { "weapon", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, }, + ["HellscapeUpsideStunDuration3__"] = { type = "ScourgeUpside", affix = "", "(20-22)% increased Stun Duration on Enemies", statOrder = { 1774 }, level = 68, group = "StunDurationIncreasePercent", weightKey = { "weapon", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, }, + ["HellscapeUpsideStunDuration4"] = { type = "ScourgeUpside", affix = "", "(23-25)% increased Stun Duration on Enemies", statOrder = { 1774 }, level = 68, group = "StunDurationIncreasePercent", weightKey = { "weapon", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, }, + ["HellscapeUpsideFlaskLifeRecoveryRate2_"] = { type = "ScourgeUpside", affix = "", "(12-14)% increased Flask Life Recovery rate", statOrder = { 2098 }, level = 45, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "resource", "life" }, }, + ["HellscapeUpsideFlaskLifeRecoveryRate3"] = { type = "ScourgeUpside", affix = "", "(15-17)% increased Flask Life Recovery rate", statOrder = { 2098 }, level = 68, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "resource", "life" }, }, + ["HellscapeUpsideFlaskLifeRecoveryRate4"] = { type = "ScourgeUpside", affix = "", "(18-20)% increased Flask Life Recovery rate", statOrder = { 2098 }, level = 68, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "resource", "life" }, }, + ["HellscapeUpsideFlaskManaRecoveryRate2"] = { type = "ScourgeUpside", affix = "", "(12-14)% increased Flask Mana Recovery rate", statOrder = { 2099 }, level = 45, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "resource", "mana" }, }, + ["HellscapeUpsideFlaskManaRecoveryRate3_"] = { type = "ScourgeUpside", affix = "", "(15-17)% increased Flask Mana Recovery rate", statOrder = { 2099 }, level = 68, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "resource", "mana" }, }, + ["HellscapeUpsideFlaskManaRecoveryRate4_"] = { type = "ScourgeUpside", affix = "", "(18-20)% increased Flask Mana Recovery rate", statOrder = { 2099 }, level = 68, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "resource", "mana" }, }, + ["HellscapeUpsideAdditionalDexterity1__"] = { type = "ScourgeUpside", affix = "", "+(20-23) to Dexterity", statOrder = { 1090 }, level = 1, group = "DexterityImplicit", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, }, + ["HellscapeUpsideAdditionalDexterity2"] = { type = "ScourgeUpside", affix = "", "+(24-27) to Dexterity", statOrder = { 1090 }, level = 45, group = "DexterityImplicit", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, }, + ["HellscapeUpsideAdditionalDexterity3"] = { type = "ScourgeUpside", affix = "", "+(28-31) to Dexterity", statOrder = { 1090 }, level = 68, group = "DexterityImplicit", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, }, + ["HellscapeUpsideAdditionalDexterity4_"] = { type = "ScourgeUpside", affix = "", "+(32-35) to Dexterity", statOrder = { 1090 }, level = 68, group = "DexterityImplicit", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, }, + ["HellscapeUpsideAdditionalIntelligence1"] = { type = "ScourgeUpside", affix = "", "+(20-23) to Intelligence", statOrder = { 1091 }, level = 1, group = "IntelligenceImplicit", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, }, + ["HellscapeUpsideAdditionalIntelligence2__"] = { type = "ScourgeUpside", affix = "", "+(24-27) to Intelligence", statOrder = { 1091 }, level = 45, group = "IntelligenceImplicit", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, }, + ["HellscapeUpsideAdditionalIntelligence3_"] = { type = "ScourgeUpside", affix = "", "+(28-31) to Intelligence", statOrder = { 1091 }, level = 68, group = "IntelligenceImplicit", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, }, + ["HellscapeUpsideAdditionalIntelligence4"] = { type = "ScourgeUpside", affix = "", "+(32-35) to Intelligence", statOrder = { 1091 }, level = 68, group = "IntelligenceImplicit", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, }, + ["HellscapeUpsideAdditionalStrength1"] = { type = "ScourgeUpside", affix = "", "+(20-23) to Strength", statOrder = { 1089 }, level = 1, group = "StrengthImplicit", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, }, + ["HellscapeUpsideAdditionalStrength2"] = { type = "ScourgeUpside", affix = "", "+(24-27) to Strength", statOrder = { 1089 }, level = 45, group = "StrengthImplicit", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, }, + ["HellscapeUpsideAdditionalStrength3"] = { type = "ScourgeUpside", affix = "", "+(28-31) to Strength", statOrder = { 1089 }, level = 68, group = "StrengthImplicit", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, }, + ["HellscapeUpsideAdditionalStrength4"] = { type = "ScourgeUpside", affix = "", "+(32-35) to Strength", statOrder = { 1089 }, level = 68, group = "StrengthImplicit", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, }, + ["HellscapeUpsideChanceToFreeze1h2"] = { type = "ScourgeUpside", affix = "", "(5-6)% chance to Freeze", statOrder = { 1938 }, level = 45, group = "ChanceToFreeze", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["HellscapeUpsideChanceToFreeze1h3"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance to Freeze", statOrder = { 1938 }, level = 68, group = "ChanceToFreeze", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["HellscapeUpsideChanceToFreeze1h4_"] = { type = "ScourgeUpside", affix = "", "(9-10)% chance to Freeze", statOrder = { 1938 }, level = 68, group = "ChanceToFreeze", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["HellscapeUpsideChanceToFreeze2h2"] = { type = "ScourgeUpside", affix = "", "(7-9)% chance to Freeze", statOrder = { 1938 }, level = 45, group = "ChanceToFreeze", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["HellscapeUpsideChanceToFreeze2h3__"] = { type = "ScourgeUpside", affix = "", "(10-12)% chance to Freeze", statOrder = { 1938 }, level = 68, group = "ChanceToFreeze", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["HellscapeUpsideChanceToFreeze2h4"] = { type = "ScourgeUpside", affix = "", "(13-15)% chance to Freeze", statOrder = { 1938 }, level = 68, group = "ChanceToFreeze", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["HellscapeUpsideChanceToIgnite1h2"] = { type = "ScourgeUpside", affix = "", "(5-6)% chance to Ignite", statOrder = { 1935 }, level = 45, group = "ChanceToIgnite", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["HellscapeUpsideChanceToIgnite1h3_"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance to Ignite", statOrder = { 1935 }, level = 68, group = "ChanceToIgnite", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["HellscapeUpsideChanceToIgnite1h4___"] = { type = "ScourgeUpside", affix = "", "(9-10)% chance to Ignite", statOrder = { 1935 }, level = 68, group = "ChanceToIgnite", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["HellscapeUpsideChanceToIgnite2h2"] = { type = "ScourgeUpside", affix = "", "(7-9)% chance to Ignite", statOrder = { 1935 }, level = 45, group = "ChanceToIgnite", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["HellscapeUpsideChanceToIgnite2h3"] = { type = "ScourgeUpside", affix = "", "(10-12)% chance to Ignite", statOrder = { 1935 }, level = 68, group = "ChanceToIgnite", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["HellscapeUpsideChanceToIgnite2h4___"] = { type = "ScourgeUpside", affix = "", "(13-15)% chance to Ignite", statOrder = { 1935 }, level = 68, group = "ChanceToIgnite", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["HellscapeUpsideChanceToShock1h2"] = { type = "ScourgeUpside", affix = "", "(5-6)% chance to Shock", statOrder = { 1942 }, level = 45, group = "ChanceToShock", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["HellscapeUpsideChanceToShock1h3"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance to Shock", statOrder = { 1942 }, level = 68, group = "ChanceToShock", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["HellscapeUpsideChanceToShock1h4"] = { type = "ScourgeUpside", affix = "", "(9-10)% chance to Shock", statOrder = { 1942 }, level = 68, group = "ChanceToShock", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["HellscapeUpsideChanceToShock2h2"] = { type = "ScourgeUpside", affix = "", "(7-9)% chance to Shock", statOrder = { 1942 }, level = 45, group = "ChanceToShock", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["HellscapeUpsideChanceToShock2h3"] = { type = "ScourgeUpside", affix = "", "(10-12)% chance to Shock", statOrder = { 1942 }, level = 68, group = "ChanceToShock", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["HellscapeUpsideChanceToShock2h4"] = { type = "ScourgeUpside", affix = "", "(13-15)% chance to Shock", statOrder = { 1942 }, level = 68, group = "ChanceToShock", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["HellscapeUpsideChanceToBleed2__"] = { type = "ScourgeUpside", affix = "", "Attacks have (12-14)% chance to cause Bleeding", statOrder = { 2398 }, level = 45, group = "ChanceToBleed", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["HellscapeUpsideChanceToBleed3_"] = { type = "ScourgeUpside", affix = "", "Attacks have (15-17)% chance to cause Bleeding", statOrder = { 2398 }, level = 68, group = "ChanceToBleed", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["HellscapeUpsideChanceToBleed4"] = { type = "ScourgeUpside", affix = "", "Attacks have (18-20)% chance to cause Bleeding", statOrder = { 2398 }, level = 68, group = "ChanceToBleed", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["HellscapeUpsideChanceToPoison2"] = { type = "ScourgeUpside", affix = "", "(12-14)% chance to Poison on Hit", statOrder = { 3081 }, level = 45, group = "PoisonOnHit", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["HellscapeUpsideChanceToPoison3"] = { type = "ScourgeUpside", affix = "", "(15-17)% chance to Poison on Hit", statOrder = { 3081 }, level = 68, group = "PoisonOnHit", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["HellscapeUpsideChanceToPoison4"] = { type = "ScourgeUpside", affix = "", "(18-20)% chance to Poison on Hit", statOrder = { 3081 }, level = 68, group = "PoisonOnHit", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["HellscapeUpsideLightRadius1_"] = { type = "ScourgeUpside", affix = "", "(16-20)% increased Light Radius", statOrder = { 2409 }, level = 1, group = "LightRadius", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["HellscapeUpsideLightRadius2_"] = { type = "ScourgeUpside", affix = "", "(21-25)% increased Light Radius", statOrder = { 2409 }, level = 45, group = "LightRadius", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["HellscapeUpsideLightRadius3______"] = { type = "ScourgeUpside", affix = "", "(26-30)% increased Light Radius", statOrder = { 2409 }, level = 68, group = "LightRadius", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["HellscapeUpsideLightRadius4"] = { type = "ScourgeUpside", affix = "", "(31-35)% increased Light Radius", statOrder = { 2409 }, level = 68, group = "LightRadius", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["HellscapeUpsideCooldownRecoveryRate3_"] = { type = "ScourgeUpside", affix = "", "(3-4)% increased Cooldown Recovery Rate", statOrder = { 4899 }, level = 68, group = "GlobalCooldownRecovery", weightKey = { "belt", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["HellscapeUpsideCooldownRecoveryRate4_"] = { type = "ScourgeUpside", affix = "", "(5-6)% increased Cooldown Recovery Rate", statOrder = { 4899 }, level = 68, group = "GlobalCooldownRecovery", weightKey = { "belt", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["HellscapeUpsideChanceToNotConsumeFlaskCharges3"] = { type = "ScourgeUpside", affix = "", "(5-6)% chance for Flasks you use to not consume Charges", statOrder = { 4137 }, level = 68, group = "FlaskChanceToNotConsumeCharges", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, }, + ["HellscapeUpsideChanceToNotConsumeFlaskCharges4_"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance for Flasks you use to not consume Charges", statOrder = { 4137 }, level = 68, group = "FlaskChanceToNotConsumeCharges", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, }, + ["HellscapeUpsideLifePercentage3_"] = { type = "ScourgeUpside", affix = "", "(5-6)% increased maximum Life", statOrder = { 1482 }, level = 68, group = "MaximumLifeIncreasePercent", weightKey = { "body_armour", "belt", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "life" }, }, + ["HellscapeUpsideLifePercentage4"] = { type = "ScourgeUpside", affix = "", "(7-8)% increased maximum Life", statOrder = { 1482 }, level = 68, group = "MaximumLifeIncreasePercent", weightKey = { "body_armour", "belt", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "life" }, }, + ["HellscapeUpsideManaPercentage3"] = { type = "ScourgeUpside", affix = "", "(5-6)% increased maximum Mana", statOrder = { 1491 }, level = 68, group = "MaximumManaIncreasePercent", weightKey = { "helmet", "body_armour", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "mana" }, }, + ["HellscapeUpsideManaPercentage4"] = { type = "ScourgeUpside", affix = "", "(7-8)% increased maximum Mana", statOrder = { 1491 }, level = 68, group = "MaximumManaIncreasePercent", weightKey = { "helmet", "body_armour", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "mana" }, }, + ["HellscapeUpsideReducedReflectedPhysicalDamage3_"] = { type = "ScourgeUpside", affix = "", "You and your Minions take (41-50)% reduced Reflected Physical Damage", statOrder = { 9458 }, level = 68, group = "ReducedPhysicalReflectTaken", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "physical" }, }, + ["HellscapeUpsideReducedReflectedPhysicalDamage4_"] = { type = "ScourgeUpside", affix = "", "You and your Minions take (51-60)% reduced Reflected Physical Damage", statOrder = { 9458 }, level = 68, group = "ReducedPhysicalReflectTaken", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "physical" }, }, + ["HellscapeUpsideReducedReflectedElementalDamage3_____"] = { type = "ScourgeUpside", affix = "", "You and your Minions take (41-50)% reduced Reflected Elemental Damage", statOrder = { 6228 }, level = 68, group = "ReducedElementalReflectTaken", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental" }, }, + ["HellscapeUpsideReducedReflectedElementalDamage4"] = { type = "ScourgeUpside", affix = "", "You and your Minions take (51-60)% reduced Reflected Elemental Damage", statOrder = { 6228 }, level = 68, group = "ReducedElementalReflectTaken", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental" }, }, + ["HellscapeUpsideChanceToGainOnslaughtOnKill2__"] = { type = "ScourgeUpside", affix = "", "(5-6)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2902 }, level = 45, group = "ChanceToGainOnslaughtOnKill", weightKey = { "boots", "quiver", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, + ["HellscapeUpsideChanceToGainOnslaughtOnKill3"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2902 }, level = 68, group = "ChanceToGainOnslaughtOnKill", weightKey = { "boots", "quiver", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, + ["HellscapeUpsideChanceToGainOnslaughtOnKill4_"] = { type = "ScourgeUpside", affix = "", "(9-10)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2902 }, level = 68, group = "ChanceToGainOnslaughtOnKill", weightKey = { "boots", "quiver", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, + ["HellscapeUpsideChanceToGainPhasingOnKill2"] = { type = "ScourgeUpside", affix = "", "(11-15)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3373 }, level = 45, group = "ChancetoGainPhasingOnKill", weightKey = { "quiver", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["HellscapeUpsideChanceToGainPhasingOnKill3"] = { type = "ScourgeUpside", affix = "", "(16-20)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3373 }, level = 68, group = "ChancetoGainPhasingOnKill", weightKey = { "quiver", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["HellscapeUpsideChanceToGainPhasingOnKill4"] = { type = "ScourgeUpside", affix = "", "(21-25)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3373 }, level = 68, group = "ChancetoGainPhasingOnKill", weightKey = { "quiver", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["HellscapeUpsideChanceToTauntOnHit2__"] = { type = "ScourgeUpside", affix = "", "(11-15)% chance to Taunt Enemies on Hit with Attacks", statOrder = { 4813 }, level = 45, group = "AttacksTauntOnHitChance", weightKey = { "axe", "default", }, weightVal = { 200, 0 }, modTags = { "attack" }, }, + ["HellscapeUpsideChanceToTauntOnHit3"] = { type = "ScourgeUpside", affix = "", "(16-20)% chance to Taunt Enemies on Hit with Attacks", statOrder = { 4813 }, level = 68, group = "AttacksTauntOnHitChance", weightKey = { "axe", "default", }, weightVal = { 200, 0 }, modTags = { "attack" }, }, + ["HellscapeUpsideChanceToTauntOnHit4___"] = { type = "ScourgeUpside", affix = "", "(21-25)% chance to Taunt Enemies on Hit with Attacks", statOrder = { 4813 }, level = 68, group = "AttacksTauntOnHitChance", weightKey = { "axe", "default", }, weightVal = { 200, 0 }, modTags = { "attack" }, }, + ["HellscapeUpsideMaximumColdResistance1_"] = { type = "ScourgeUpside", affix = "", "+1% to maximum Cold Resistance", statOrder = { 1540 }, level = 68, group = "MaximumColdResist", weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["HellscapeUpsideMaximumFireResistance1__"] = { type = "ScourgeUpside", affix = "", "+1% to maximum Fire Resistance", statOrder = { 1534 }, level = 68, group = "MaximumFireResist", weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["HellscapeUpsideMaximumLightningResistance1_"] = { type = "ScourgeUpside", affix = "", "+1% to maximum Lightning Resistance", statOrder = { 1545 }, level = 68, group = "MaximumLightningResistance", weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["HellscapeUpsideMaximumChaosResistance1__"] = { type = "ScourgeUpside", affix = "", "+1% to maximum Chaos Resistance", statOrder = { 1551 }, level = 68, group = "MaximumChaosResistance", weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { "chaos", "resistance" }, }, + ["HellscapeUpsideMaximumElementalResistance1"] = { type = "ScourgeUpside", affix = "", "+1% to all maximum Elemental Resistances", statOrder = { 1554 }, level = 68, group = "MaximumElementalResistance", weightKey = { "shield", "default", }, weightVal = { 50, 0 }, modTags = { "elemental", "resistance" }, }, + ["HellscapeUpsideTotemPlacementSpeed2"] = { type = "ScourgeUpside", affix = "", "(16-20)% increased Totem Placement speed", statOrder = { 2487 }, level = 45, group = "SummonTotemCastSpeed", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { "speed" }, }, + ["HellscapeUpsideTotemPlacementSpeed3"] = { type = "ScourgeUpside", affix = "", "(21-25)% increased Totem Placement speed", statOrder = { 2487 }, level = 68, group = "SummonTotemCastSpeed", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { "speed" }, }, + ["HellscapeUpsideTotemPlacementSpeed4"] = { type = "ScourgeUpside", affix = "", "(26-30)% increased Totem Placement speed", statOrder = { 2487 }, level = 68, group = "SummonTotemCastSpeed", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { "speed" }, }, + ["HellscapeUpsideTotemElementalResistances2"] = { type = "ScourgeUpside", affix = "", "Totems gain +(21-25)% to all Elemental Resistances", statOrder = { 2697 }, level = 45, group = "TotemElementalResistances", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { "elemental", "resistance" }, }, + ["HellscapeUpsideTotemElementalResistances3"] = { type = "ScourgeUpside", affix = "", "Totems gain +(26-30)% to all Elemental Resistances", statOrder = { 2697 }, level = 68, group = "TotemElementalResistances", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { "elemental", "resistance" }, }, + ["HellscapeUpsideTotemElementalResistances4"] = { type = "ScourgeUpside", affix = "", "Totems gain +(31-35)% to all Elemental Resistances", statOrder = { 2697 }, level = 68, group = "TotemElementalResistances", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { "elemental", "resistance" }, }, + ["HellscapeUpsideTotemDuration2"] = { type = "ScourgeUpside", affix = "", "(12-14)% increased Totem Duration", statOrder = { 1689 }, level = 45, group = "TotemDuration", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { }, }, + ["HellscapeUpsideTotemDuration3"] = { type = "ScourgeUpside", affix = "", "(15-17)% increased Totem Duration", statOrder = { 1689 }, level = 68, group = "TotemDuration", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { }, }, + ["HellscapeUpsideTotemDuration4"] = { type = "ScourgeUpside", affix = "", "(18-20)% increased Totem Duration", statOrder = { 1689 }, level = 68, group = "TotemDuration", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { }, }, + ["HellscapeUpsideTotemPhysicalDamageReduction2___"] = { type = "ScourgeUpside", affix = "", "Totems have (11-15)% additional Physical Damage Reduction", statOrder = { 2699 }, level = 45, group = "TotemPhysicalDamageReduction", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { }, }, + ["HellscapeUpsideTotemPhysicalDamageReduction3___"] = { type = "ScourgeUpside", affix = "", "Totems have (16-20)% additional Physical Damage Reduction", statOrder = { 2699 }, level = 68, group = "TotemPhysicalDamageReduction", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { }, }, + ["HellscapeUpsideTotemPhysicalDamageReduction4_"] = { type = "ScourgeUpside", affix = "", "Totems have (21-25)% additional Physical Damage Reduction", statOrder = { 2699 }, level = 68, group = "TotemPhysicalDamageReduction", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { }, }, + ["HellscapeUpsideTotemLife2"] = { type = "ScourgeUpside", affix = "", "(7-9)% increased Totem Life", statOrder = { 1685 }, level = 45, group = "IncreasedTotemLife", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { "resource", "life" }, }, + ["HellscapeUpsideTotemLife3__"] = { type = "ScourgeUpside", affix = "", "(10-12)% increased Totem Life", statOrder = { 1685 }, level = 68, group = "IncreasedTotemLife", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { "resource", "life" }, }, + ["HellscapeUpsideTotemLife4"] = { type = "ScourgeUpside", affix = "", "(13-15)% increased Totem Life", statOrder = { 1685 }, level = 68, group = "IncreasedTotemLife", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { "resource", "life" }, }, + ["HellscapeUpsideBrandDuration2"] = { type = "ScourgeUpside", affix = "", "Brand Skills have (12-14)% increased Duration", statOrder = { 9822 }, level = 45, group = "BrandDuration", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { "caster" }, }, + ["HellscapeUpsideBrandDuration3"] = { type = "ScourgeUpside", affix = "", "Brand Skills have (15-17)% increased Duration", statOrder = { 9822 }, level = 68, group = "BrandDuration", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { "caster" }, }, + ["HellscapeUpsideBrandDuration4"] = { type = "ScourgeUpside", affix = "", "Brand Skills have (18-20)% increased Duration", statOrder = { 9822 }, level = 68, group = "BrandDuration", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { "caster" }, }, + ["HellscapeUpsideBrandAttachmentRange2"] = { type = "ScourgeUpside", affix = "", "(12-14)% increased Brand Attachment range", statOrder = { 9827 }, level = 45, group = "BrandAttachmentRange", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { "caster" }, }, + ["HellscapeUpsideBrandAttachmentRange3"] = { type = "ScourgeUpside", affix = "", "(15-17)% increased Brand Attachment range", statOrder = { 9827 }, level = 68, group = "BrandAttachmentRange", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { "caster" }, }, + ["HellscapeUpsideBrandAttachmentRange4_"] = { type = "ScourgeUpside", affix = "", "(18-20)% increased Brand Attachment range", statOrder = { 9827 }, level = 68, group = "BrandAttachmentRange", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { "caster" }, }, + ["HellscapeUpsideLifeRecoveryRate2_"] = { type = "ScourgeUpside", affix = "", "(5-6)% increased Life Recovery rate", statOrder = { 1489 }, level = 45, group = "LifeRecoveryRate", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "life" }, }, + ["HellscapeUpsideLifeRecoveryRate3"] = { type = "ScourgeUpside", affix = "", "(7-8)% increased Life Recovery rate", statOrder = { 1489 }, level = 68, group = "LifeRecoveryRate", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "life" }, }, + ["HellscapeUpsideLifeRecoveryRate4"] = { type = "ScourgeUpside", affix = "", "(9-10)% increased Life Recovery rate", statOrder = { 1489 }, level = 68, group = "LifeRecoveryRate", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "life" }, }, + ["HellscapeUpsideManaRecoveryRate2"] = { type = "ScourgeUpside", affix = "", "(5-6)% increased Mana Recovery rate", statOrder = { 1497 }, level = 45, group = "ManaRecoveryRate", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, }, + ["HellscapeUpsideManaRecoveryRate3"] = { type = "ScourgeUpside", affix = "", "(7-8)% increased Mana Recovery rate", statOrder = { 1497 }, level = 68, group = "ManaRecoveryRate", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, }, + ["HellscapeUpsideManaRecoveryRate4"] = { type = "ScourgeUpside", affix = "", "(9-10)% increased Mana Recovery rate", statOrder = { 1497 }, level = 68, group = "ManaRecoveryRate", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, }, + ["HellscapeUpsideEnergyShieldRecoveryRate2"] = { type = "ScourgeUpside", affix = "", "(5-6)% increased Energy Shield Recovery rate", statOrder = { 1479 }, level = 45, group = "EnergyShieldRecoveryRate", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "defences", "energy_shield" }, }, + ["HellscapeUpsideEnergyShieldRecoveryRate3"] = { type = "ScourgeUpside", affix = "", "(7-8)% increased Energy Shield Recovery rate", statOrder = { 1479 }, level = 68, group = "EnergyShieldRecoveryRate", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "defences", "energy_shield" }, }, + ["HellscapeUpsideEnergyShieldRecoveryRate4"] = { type = "ScourgeUpside", affix = "", "(9-10)% increased Energy Shield Recovery rate", statOrder = { 1479 }, level = 68, group = "EnergyShieldRecoveryRate", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "defences", "energy_shield" }, }, + ["HellscapeUpsideReducedExtraDamageTakenFromCriticalStrikes2"] = { type = "ScourgeUpside", affix = "", "You take (13-15)% reduced Extra Damage from Critical Strikes", statOrder = { 1423 }, level = 45, group = "ReducedExtraDamageFromCrits", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 200, 200, 200, 0 }, modTags = { "damage", "critical" }, }, + ["HellscapeUpsideReducedExtraDamageTakenFromCriticalStrikes3"] = { type = "ScourgeUpside", affix = "", "You take (18-20)% reduced Extra Damage from Critical Strikes", statOrder = { 1423 }, level = 68, group = "ReducedExtraDamageFromCrits", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 200, 200, 200, 0 }, modTags = { "damage", "critical" }, }, + ["HellscapeUpsideReducedExtraDamageTakenFromCriticalStrikes4"] = { type = "ScourgeUpside", affix = "", "You take (23-25)% reduced Extra Damage from Critical Strikes", statOrder = { 1423 }, level = 68, group = "ReducedExtraDamageFromCrits", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 200, 200, 200, 0 }, modTags = { "damage", "critical" }, }, + ["HellscapeUpsideChanceToBlindOnHit2_"] = { type = "ScourgeUpside", affix = "", "(7-8)% Global chance to Blind Enemies on hit", statOrder = { 2867 }, level = 45, group = "GlobalChanceToBlindOnHit", weightKey = { "gloves", "quiver", "default", }, weightVal = { 200, 200, 0 }, modTags = { }, }, + ["HellscapeUpsideChanceToBlindOnHit3___"] = { type = "ScourgeUpside", affix = "", "(9-10)% Global chance to Blind Enemies on hit", statOrder = { 2867 }, level = 68, group = "GlobalChanceToBlindOnHit", weightKey = { "gloves", "quiver", "default", }, weightVal = { 200, 200, 0 }, modTags = { }, }, + ["HellscapeUpsideChanceToBlindOnHit4_"] = { type = "ScourgeUpside", affix = "", "(11-12)% Global chance to Blind Enemies on hit", statOrder = { 2867 }, level = 68, group = "GlobalChanceToBlindOnHit", weightKey = { "gloves", "quiver", "default", }, weightVal = { 200, 200, 0 }, modTags = { }, }, + ["HellscapeUpsideChanceToMaimOnHit2"] = { type = "ScourgeUpside", affix = "", "Attacks have (7-8)% chance to Maim on Hit", statOrder = { 7987 }, level = 45, group = "GlobalMaimOnHit", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "attack" }, }, + ["HellscapeUpsideChanceToMaimOnHit3_"] = { type = "ScourgeUpside", affix = "", "Attacks have (9-10)% chance to Maim on Hit", statOrder = { 7987 }, level = 68, group = "GlobalMaimOnHit", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "attack" }, }, + ["HellscapeUpsideChanceToMaimOnHit4"] = { type = "ScourgeUpside", affix = "", "Attacks have (11-12)% chance to Maim on Hit", statOrder = { 7987 }, level = 68, group = "GlobalMaimOnHit", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "attack" }, }, + ["HellscapeUpsideChanceToHinderOnHit2"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance to Hinder Enemies on Hit with Spells", statOrder = { 9972 }, level = 45, group = "SpellsHinderOnHitChance", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "caster" }, }, + ["HellscapeUpsideChanceToHinderOnHit3"] = { type = "ScourgeUpside", affix = "", "(9-10)% chance to Hinder Enemies on Hit with Spells", statOrder = { 9972 }, level = 68, group = "SpellsHinderOnHitChance", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "caster" }, }, + ["HellscapeUpsideChanceToHinderOnHit4"] = { type = "ScourgeUpside", affix = "", "(11-12)% chance to Hinder Enemies on Hit with Spells", statOrder = { 9972 }, level = 68, group = "SpellsHinderOnHitChance", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "caster" }, }, + ["HellscapeUpsideChanceToIntimidateOnHit2"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5612 }, level = 45, group = "ChanceToIntimidateOnHit", weightKey = { "belt", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["HellscapeUpsideChanceToIntimidateOnHit3_"] = { type = "ScourgeUpside", affix = "", "(9-10)% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5612 }, level = 68, group = "ChanceToIntimidateOnHit", weightKey = { "belt", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["HellscapeUpsideChanceToIntimidateOnHit4"] = { type = "ScourgeUpside", affix = "", "(11-12)% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5612 }, level = 68, group = "ChanceToIntimidateOnHit", weightKey = { "belt", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["HellscapeUpsideChanceToUnnerveOnHit2"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5622 }, level = 45, group = "ChanceToUnnerveOnHit", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["HellscapeUpsideChanceToUnnerveOnHit3"] = { type = "ScourgeUpside", affix = "", "(9-10)% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5622 }, level = 68, group = "ChanceToUnnerveOnHit", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["HellscapeUpsideChanceToUnnerveOnHit4_"] = { type = "ScourgeUpside", affix = "", "(11-12)% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5622 }, level = 68, group = "ChanceToUnnerveOnHit", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["HellscapeUpsideChanceToImpaleOnHit2"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance to Impale Enemies on Hit with Attacks", statOrder = { 4815 }, level = 45, group = "MonsterImpaleOnHit", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "physical", "attack" }, }, + ["HellscapeUpsideChanceToImpaleOnHit3__"] = { type = "ScourgeUpside", affix = "", "(9-10)% chance to Impale Enemies on Hit with Attacks", statOrder = { 4815 }, level = 68, group = "MonsterImpaleOnHit", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "physical", "attack" }, }, + ["HellscapeUpsideChanceToImpaleOnHit4_"] = { type = "ScourgeUpside", affix = "", "(11-12)% chance to Impale Enemies on Hit with Attacks", statOrder = { 4815 }, level = 68, group = "MonsterImpaleOnHit", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "physical", "attack" }, }, + ["HellscapeUpsideEnemiesExplodeOnDeathPhysical4_"] = { type = "ScourgeUpside", affix = "", "Enemies you Kill have a 15% chance to Explode, dealing a tenth of their maximum Life as Physical Damage", statOrder = { 3212 }, level = 68, group = "EnemiesExplodeOnDeathPhysicalChance", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["HellscapeUpsideColdPenetration1h2_"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 3% Cold Resistance", statOrder = { 2892 }, level = 45, group = "ColdResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["HellscapeUpsideColdPenetration1h3"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 4% Cold Resistance", statOrder = { 2892 }, level = 68, group = "ColdResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["HellscapeUpsideColdPenetration1h4__"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 5% Cold Resistance", statOrder = { 2892 }, level = 68, group = "ColdResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["HellscapeUpsideColdPenetration2h2"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 6% Cold Resistance", statOrder = { 2892 }, level = 45, group = "ColdResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["HellscapeUpsideColdPenetration2h3_"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 7% Cold Resistance", statOrder = { 2892 }, level = 68, group = "ColdResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["HellscapeUpsideColdPenetration2h4"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 8% Cold Resistance", statOrder = { 2892 }, level = 68, group = "ColdResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["HellscapeUpsideFirePenetration1h2__"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 3% Fire Resistance", statOrder = { 2890 }, level = 45, group = "FireResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["HellscapeUpsideFirePenetration1h3___"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 4% Fire Resistance", statOrder = { 2890 }, level = 68, group = "FireResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["HellscapeUpsideFirePenetration1h4__"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 5% Fire Resistance", statOrder = { 2890 }, level = 68, group = "FireResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["HellscapeUpsideFirePenetration2h2__"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 6% Fire Resistance", statOrder = { 2890 }, level = 45, group = "FireResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["HellscapeUpsideFirePenetration2h3"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 7% Fire Resistance", statOrder = { 2890 }, level = 68, group = "FireResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["HellscapeUpsideFirePenetration2h4"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 8% Fire Resistance", statOrder = { 2890 }, level = 68, group = "FireResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["HellscapeUpsideLightningPenetration1h2"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 3% Lightning Resistance", statOrder = { 2893 }, level = 45, group = "LightningResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["HellscapeUpsideLightningPenetration1h3"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 4% Lightning Resistance", statOrder = { 2893 }, level = 68, group = "LightningResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["HellscapeUpsideLightningPenetration1h4"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 5% Lightning Resistance", statOrder = { 2893 }, level = 68, group = "LightningResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["HellscapeUpsideLightningPenetration2h2"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 6% Lightning Resistance", statOrder = { 2893 }, level = 45, group = "LightningResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["HellscapeUpsideLightningPenetration2h3_"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 7% Lightning Resistance", statOrder = { 2893 }, level = 68, group = "LightningResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["HellscapeUpsideLightningPenetration2h4"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 8% Lightning Resistance", statOrder = { 2893 }, level = 68, group = "LightningResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["HellscapeUpsideChaosPenetration1h2_"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 3% Chaos Resistance", statOrder = { 9661 }, level = 45, group = "ChaosResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 50, 250, 250, 250, 0 }, modTags = { }, }, + ["HellscapeUpsideChaosPenetration1h3"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 4% Chaos Resistance", statOrder = { 9661 }, level = 68, group = "ChaosResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 50, 250, 250, 250, 0 }, modTags = { }, }, + ["HellscapeUpsideChaosPenetration1h4_"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 5% Chaos Resistance", statOrder = { 9661 }, level = 68, group = "ChaosResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 50, 250, 250, 250, 0 }, modTags = { }, }, + ["HellscapeUpsideChaosPenetration2h2__"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 6% Chaos Resistance", statOrder = { 9661 }, level = 45, group = "ChaosResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["HellscapeUpsideChaosPenetration2h3"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 7% Chaos Resistance", statOrder = { 9661 }, level = 68, group = "ChaosResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["HellscapeUpsideChaosPenetration2h4_"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 8% Chaos Resistance", statOrder = { 9661 }, level = 68, group = "ChaosResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["HellscapeUpsideCullingStrike1"] = { type = "ScourgeUpside", affix = "", "Culling Strike", statOrder = { 1948 }, level = 1, group = "CullingStrike", weightKey = { "weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["HellscapeUpsideCurseOnHitDespair1_"] = { type = "ScourgeUpside", affix = "", "Curse Enemies with Despair on Hit", statOrder = { 2424 }, level = 68, group = "CurseOnHitDespairChance", weightKey = { "gloves", "default", }, weightVal = { 50, 0 }, modTags = { "caster", "curse" }, }, + ["HellscapeUpsideCurseOnHitElementalWeakness1___"] = { type = "ScourgeUpside", affix = "", "Curse Enemies with Elemental Weakness on Hit", statOrder = { 2425 }, level = 68, group = "CurseOnHitLevelElementalWeaknessChance", weightKey = { "gloves", "default", }, weightVal = { 50, 0 }, modTags = { "caster", "curse" }, }, + ["HellscapeUpsideCurseOnHitEnfeeble1_"] = { type = "ScourgeUpside", affix = "", "Curse Enemies with Enfeeble on Hit", statOrder = { 2422 }, level = 68, group = "EnfeebleOnHit", weightKey = { "gloves", "default", }, weightVal = { 50, 0 }, modTags = { "caster", "curse" }, }, + ["HellscapeUpsideCurseOnHitTemporalChains1"] = { type = "ScourgeUpside", affix = "", "Curse Enemies with Temporal Chains on Hit", statOrder = { 2428 }, level = 68, group = "TemporalChainsOnHit", weightKey = { "gloves", "default", }, weightVal = { 50, 0 }, modTags = { "caster", "curse" }, }, + ["HellscapeUpsideCurseOnHitVulnerability1_"] = { type = "ScourgeUpside", affix = "", "Curse Enemies with Vulnerability on Hit", statOrder = { 2429 }, level = 68, group = "VulnerabilityOnHit", weightKey = { "gloves", "default", }, weightVal = { 50, 0 }, modTags = { "caster", "curse" }, }, + ["HellscapeUpsideCurseOnHitConductivity1"] = { type = "ScourgeUpside", affix = "", "Curse Enemies with Conductivity on Hit", statOrder = { 2423 }, level = 68, group = "CurseOnHitConductivityChance", weightKey = { "gloves", "default", }, weightVal = { 50, 0 }, modTags = { "caster", "curse" }, }, + ["HellscapeUpsideCurseOnHitFlammability1______"] = { type = "ScourgeUpside", affix = "", "Curse Enemies with Flammability on Hit", statOrder = { 2426 }, level = 68, group = "FlammabilityOnHit", weightKey = { "gloves", "default", }, weightVal = { 50, 0 }, modTags = { "caster", "curse" }, }, + ["HellscapeUpsideCurseOnHitFrostbite1"] = { type = "ScourgeUpside", affix = "", "Curse Enemies with Frostbite on Hit", statOrder = { 2427 }, level = 68, group = "FrostbiteOnHit", weightKey = { "gloves", "default", }, weightVal = { 50, 0 }, modTags = { "caster", "curse" }, }, + ["HellscapeUpsideChanceToGainEnduranceChargeOnKill1__"] = { type = "ScourgeUpside", affix = "", "(5-6)% chance to gain an Endurance Charge on Kill", statOrder = { 2537 }, level = 1, group = "EnduranceChargeOnKillChance", weightKey = { "ring", "default", }, weightVal = { 200, 0 }, modTags = { "endurance_charge" }, }, + ["HellscapeUpsideChanceToGainEnduranceChargeOnKill2"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance to gain an Endurance Charge on Kill", statOrder = { 2537 }, level = 45, group = "EnduranceChargeOnKillChance", weightKey = { "ring", "default", }, weightVal = { 200, 0 }, modTags = { "endurance_charge" }, }, + ["HellscapeUpsideChanceToGainEnduranceChargeOnKill3"] = { type = "ScourgeUpside", affix = "", "(9-10)% chance to gain an Endurance Charge on Kill", statOrder = { 2537 }, level = 68, group = "EnduranceChargeOnKillChance", weightKey = { "ring", "default", }, weightVal = { 200, 0 }, modTags = { "endurance_charge" }, }, + ["HellscapeUpsideChanceToGainEnduranceChargeOnKill4_"] = { type = "ScourgeUpside", affix = "", "(11-12)% chance to gain an Endurance Charge on Kill", statOrder = { 2537 }, level = 68, group = "EnduranceChargeOnKillChance", weightKey = { "ring", "default", }, weightVal = { 200, 0 }, modTags = { "endurance_charge" }, }, + ["HellscapeUpsideChanceToGainPowerChargeOnKill1"] = { type = "ScourgeUpside", affix = "", "(5-6)% chance to gain a Power Charge on Kill", statOrder = { 2541 }, level = 1, group = "PowerChargeOnKillChance", weightKey = { "ring", "default", }, weightVal = { 200, 0 }, modTags = { "power_charge" }, }, + ["HellscapeUpsideChanceToGainPowerChargeOnKill2"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance to gain a Power Charge on Kill", statOrder = { 2541 }, level = 45, group = "PowerChargeOnKillChance", weightKey = { "ring", "default", }, weightVal = { 200, 0 }, modTags = { "power_charge" }, }, + ["HellscapeUpsideChanceToGainPowerChargeOnKill3"] = { type = "ScourgeUpside", affix = "", "(9-10)% chance to gain a Power Charge on Kill", statOrder = { 2541 }, level = 68, group = "PowerChargeOnKillChance", weightKey = { "ring", "default", }, weightVal = { 200, 0 }, modTags = { "power_charge" }, }, + ["HellscapeUpsideChanceToGainPowerChargeOnKill4___"] = { type = "ScourgeUpside", affix = "", "(11-12)% chance to gain a Power Charge on Kill", statOrder = { 2541 }, level = 68, group = "PowerChargeOnKillChance", weightKey = { "ring", "default", }, weightVal = { 200, 0 }, modTags = { "power_charge" }, }, + ["HellscapeUpsideChanceToGainFrenzyChargeOnKill1"] = { type = "ScourgeUpside", affix = "", "(5-6)% chance to gain a Frenzy Charge on Kill", statOrder = { 2539 }, level = 1, group = "FrenzyChargeOnKillChance", weightKey = { "ring", "default", }, weightVal = { 200, 0 }, modTags = { "frenzy_charge" }, }, + ["HellscapeUpsideChanceToGainFrenzyChargeOnKill2_"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance to gain a Frenzy Charge on Kill", statOrder = { 2539 }, level = 45, group = "FrenzyChargeOnKillChance", weightKey = { "ring", "default", }, weightVal = { 200, 0 }, modTags = { "frenzy_charge" }, }, + ["HellscapeUpsideChanceToGainFrenzyChargeOnKill3"] = { type = "ScourgeUpside", affix = "", "(9-10)% chance to gain a Frenzy Charge on Kill", statOrder = { 2539 }, level = 68, group = "FrenzyChargeOnKillChance", weightKey = { "ring", "default", }, weightVal = { 200, 0 }, modTags = { "frenzy_charge" }, }, + ["HellscapeUpsideChanceToGainFrenzyChargeOnKill4"] = { type = "ScourgeUpside", affix = "", "(11-12)% chance to gain a Frenzy Charge on Kill", statOrder = { 2539 }, level = 68, group = "FrenzyChargeOnKillChance", weightKey = { "ring", "default", }, weightVal = { 200, 0 }, modTags = { "frenzy_charge" }, }, + ["HellscapeUpsideTrapThrowingSpeed2"] = { type = "ScourgeUpside", affix = "", "(7-9)% increased Trap Throwing Speed", statOrder = { 1836 }, level = 45, group = "TrapThrowSpeed", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "speed" }, }, + ["HellscapeUpsideTrapThrowingSpeed3"] = { type = "ScourgeUpside", affix = "", "(10-12)% increased Trap Throwing Speed", statOrder = { 1836 }, level = 68, group = "TrapThrowSpeed", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "speed" }, }, + ["HellscapeUpsideTrapThrowingSpeed4"] = { type = "ScourgeUpside", affix = "", "(13-15)% increased Trap Throwing Speed", statOrder = { 1836 }, level = 68, group = "TrapThrowSpeed", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "speed" }, }, + ["HellscapeUpsideMineThrowingSpeed2___"] = { type = "ScourgeUpside", affix = "", "(7-9)% increased Mine Throwing Speed", statOrder = { 1837 }, level = 45, group = "MineLayingSpeed", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "speed" }, }, + ["HellscapeUpsideMineThrowingSpeed3_"] = { type = "ScourgeUpside", affix = "", "(10-12)% increased Mine Throwing Speed", statOrder = { 1837 }, level = 68, group = "MineLayingSpeed", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "speed" }, }, + ["HellscapeUpsideMineThrowingSpeed4"] = { type = "ScourgeUpside", affix = "", "(13-15)% increased Mine Throwing Speed", statOrder = { 1837 }, level = 68, group = "MineLayingSpeed", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "speed" }, }, + ["HellscapeUpsideAdditionalArrow1"] = { type = "ScourgeUpside", affix = "", "Bow Attacks fire an additional Arrow", statOrder = { 1705 }, level = 68, group = "AdditionalArrows", weightKey = { "bow", "quiver", "default", }, weightVal = { 50, 5, 0 }, modTags = { "attack" }, }, + ["HellscapeUpsideAdditionalChainChance1__"] = { type = "ScourgeUpside", affix = "", "Skills Chain +1 times", statOrder = { 1700 }, level = 68, group = "AdditionalChain", weightKey = { "quiver", "default", }, weightVal = { 5, 0 }, modTags = { }, }, + ["HellscapeUpsideAdditionalPierceChance1__"] = { type = "ScourgeUpside", affix = "", "Projectiles Pierce 2 additional Targets", statOrder = { 1701 }, level = 68, group = "AdditionalPierce", weightKey = { "quiver", "default", }, weightVal = { 5, 0 }, modTags = { }, }, + ["HellscapeUpsideAdditionalSplitChance1_"] = { type = "ScourgeUpside", affix = "", "Projectiles Split towards +1 targets", statOrder = { 9528 }, level = 68, group = "ProjectilesSplitCount", weightKey = { "quiver", "default", }, weightVal = { 5, 0 }, modTags = { }, }, + ["HellscapeUpsideAdditionalReturn1___"] = { type = "ScourgeUpside", affix = "", "Attack Projectiles Return to you", statOrder = { 2733 }, level = 68, group = "ReturningAttackProjectiles", weightKey = { "quiver", "default", }, weightVal = { 5, 0 }, modTags = { "attack" }, }, + ["HellscapeUpsideStrengthPercent3"] = { type = "ScourgeUpside", affix = "", "(4-5)% increased Strength", statOrder = { 1096 }, level = 68, group = "PercentageStrength", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "attribute" }, }, + ["HellscapeUpsideStrengthPercent4_"] = { type = "ScourgeUpside", affix = "", "(6-7)% increased Strength", statOrder = { 1096 }, level = 68, group = "PercentageStrength", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "attribute" }, }, + ["HellscapeUpsideDexterityPercent3_"] = { type = "ScourgeUpside", affix = "", "(4-5)% increased Dexterity", statOrder = { 1097 }, level = 68, group = "PercentageDexterity", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "attribute" }, }, + ["HellscapeUpsideDexterityPercent4_"] = { type = "ScourgeUpside", affix = "", "(6-7)% increased Dexterity", statOrder = { 1097 }, level = 68, group = "PercentageDexterity", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "attribute" }, }, + ["HellscapeUpsideIntelligencePercent3"] = { type = "ScourgeUpside", affix = "", "(4-5)% increased Intelligence", statOrder = { 1098 }, level = 68, group = "PercentageIntelligence", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "attribute" }, }, + ["HellscapeUpsideIntelligencePercent4_"] = { type = "ScourgeUpside", affix = "", "(6-7)% increased Intelligence", statOrder = { 1098 }, level = 68, group = "PercentageIntelligence", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "attribute" }, }, + ["HellscapeUpsidePoisonDamageFaster1h2"] = { type = "ScourgeUpside", affix = "", "Poisons you inflict deal Damage (4-5)% faster", statOrder = { 6431 }, level = 45, group = "FasterPoisonDamage", weightKey = { "two_hand_weapon", "sword", "claw", "dagger", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["HellscapeUpsidePoisonDamageFaster1h3"] = { type = "ScourgeUpside", affix = "", "Poisons you inflict deal Damage (6-7)% faster", statOrder = { 6431 }, level = 68, group = "FasterPoisonDamage", weightKey = { "two_hand_weapon", "sword", "claw", "dagger", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["HellscapeUpsidePoisonDamageFaster1h4"] = { type = "ScourgeUpside", affix = "", "Poisons you inflict deal Damage (8-9)% faster", statOrder = { 6431 }, level = 68, group = "FasterPoisonDamage", weightKey = { "two_hand_weapon", "sword", "claw", "dagger", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["HellscapeUpsidePoisonDamageFaster2h2"] = { type = "ScourgeUpside", affix = "", "Poisons you inflict deal Damage (8-9)% faster", statOrder = { 6431 }, level = 45, group = "FasterPoisonDamage", weightKey = { "one_hand_weapon", "sword", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["HellscapeUpsidePoisonDamageFaster2h3"] = { type = "ScourgeUpside", affix = "", "Poisons you inflict deal Damage (10-11)% faster", statOrder = { 6431 }, level = 68, group = "FasterPoisonDamage", weightKey = { "one_hand_weapon", "sword", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["HellscapeUpsidePoisonDamageFaster2h4_"] = { type = "ScourgeUpside", affix = "", "Poisons you inflict deal Damage (12-13)% faster", statOrder = { 6431 }, level = 68, group = "FasterPoisonDamage", weightKey = { "one_hand_weapon", "sword", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["HellscapeUpsideIgniteDamageFaster1h2"] = { type = "ScourgeUpside", affix = "", "Ignites you inflict deal Damage (4-5)% faster", statOrder = { 2473 }, level = 45, group = "FasterIgniteDamage", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, + ["HellscapeUpsideIgniteDamageFaster1h3"] = { type = "ScourgeUpside", affix = "", "Ignites you inflict deal Damage (6-7)% faster", statOrder = { 2473 }, level = 68, group = "FasterIgniteDamage", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, + ["HellscapeUpsideIgniteDamageFaster1h4__"] = { type = "ScourgeUpside", affix = "", "Ignites you inflict deal Damage (8-9)% faster", statOrder = { 2473 }, level = 68, group = "FasterIgniteDamage", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, + ["HellscapeUpsideIgniteDamageFaster2h2_"] = { type = "ScourgeUpside", affix = "", "Ignites you inflict deal Damage (8-9)% faster", statOrder = { 2473 }, level = 45, group = "FasterIgniteDamage", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, + ["HellscapeUpsideIgniteDamageFaster2h3"] = { type = "ScourgeUpside", affix = "", "Ignites you inflict deal Damage (10-11)% faster", statOrder = { 2473 }, level = 68, group = "FasterIgniteDamage", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, + ["HellscapeUpsideIgniteDamageFaster2h4"] = { type = "ScourgeUpside", affix = "", "Ignites you inflict deal Damage (12-13)% faster", statOrder = { 2473 }, level = 68, group = "FasterIgniteDamage", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, + ["HellscapeUpsideBleedingDamageFaster1h2"] = { type = "ScourgeUpside", affix = "", "Bleeding you inflict deals Damage (4-5)% faster", statOrder = { 6430 }, level = 45, group = "FasterBleedDamage", weightKey = { "two_hand_weapon", "sword", "axe", "mace", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["HellscapeUpsideBleedingDamageFaster1h3"] = { type = "ScourgeUpside", affix = "", "Bleeding you inflict deals Damage (6-7)% faster", statOrder = { 6430 }, level = 68, group = "FasterBleedDamage", weightKey = { "two_hand_weapon", "sword", "axe", "mace", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["HellscapeUpsideBleedingDamageFaster1h4_"] = { type = "ScourgeUpside", affix = "", "Bleeding you inflict deals Damage (8-9)% faster", statOrder = { 6430 }, level = 68, group = "FasterBleedDamage", weightKey = { "two_hand_weapon", "sword", "axe", "mace", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["HellscapeUpsideBleedingDamageFaster2h2"] = { type = "ScourgeUpside", affix = "", "Bleeding you inflict deals Damage (8-9)% faster", statOrder = { 6430 }, level = 45, group = "FasterBleedDamage", weightKey = { "one_hand_weapon", "sword", "axe", "mace", "bow", "default", }, weightVal = { 0, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["HellscapeUpsideBleedingDamageFaster2h3"] = { type = "ScourgeUpside", affix = "", "Bleeding you inflict deals Damage (10-11)% faster", statOrder = { 6430 }, level = 68, group = "FasterBleedDamage", weightKey = { "one_hand_weapon", "sword", "axe", "mace", "bow", "default", }, weightVal = { 0, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["HellscapeUpsideBleedingDamageFaster2h4"] = { type = "ScourgeUpside", affix = "", "Bleeding you inflict deals Damage (12-13)% faster", statOrder = { 6430 }, level = 68, group = "FasterBleedDamage", weightKey = { "one_hand_weapon", "sword", "axe", "mace", "bow", "default", }, weightVal = { 0, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["HellscapeUpsidePhysicalConvertedToCold1"] = { type = "ScourgeUpside", affix = "", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1866 }, level = 68, group = "ConvertPhysicalToCold", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, + ["HellscapeUpsidePhysicalConvertedToFire1"] = { type = "ScourgeUpside", affix = "", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1864 }, level = 68, group = "ConvertPhysicalToFire", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["HellscapeUpsidePhysicalConvertedToLightning1"] = { type = "ScourgeUpside", affix = "", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1868 }, level = 68, group = "ConvertPhysicalToLightning", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, + ["HellscapeUpsidePhysicalConvertedToChaos1"] = { type = "ScourgeUpside", affix = "", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1871 }, level = 68, group = "PhysicalDamageConvertedToChaos", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, + ["HellscapeUpsideAilmentDuration2_"] = { type = "ScourgeUpside", affix = "", "(7-8)% increased Duration of Ailments on Enemies", statOrder = { 1771 }, level = 45, group = "IncreasedAilmentDuration", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "ailment" }, }, + ["HellscapeUpsideAilmentDuration3"] = { type = "ScourgeUpside", affix = "", "(9-10)% increased Duration of Ailments on Enemies", statOrder = { 1771 }, level = 68, group = "IncreasedAilmentDuration", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "ailment" }, }, + ["HellscapeUpsideAilmentDuration4"] = { type = "ScourgeUpside", affix = "", "(11-12)% increased Duration of Ailments on Enemies", statOrder = { 1771 }, level = 68, group = "IncreasedAilmentDuration", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "ailment" }, }, + ["HellscapeUpsideNonDamagingAilmentEffect2_"] = { type = "ScourgeUpside", affix = "", "(10-12)% increased Effect of Non-Damaging Ailments", statOrder = { 9296 }, level = 45, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { "ailment" }, }, + ["HellscapeUpsideNonDamagingAilmentEffect3"] = { type = "ScourgeUpside", affix = "", "(13-15)% increased Effect of Non-Damaging Ailments", statOrder = { 9296 }, level = 68, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { "ailment" }, }, + ["HellscapeUpsideNonDamagingAilmentEffect4_"] = { type = "ScourgeUpside", affix = "", "(16-18)% increased Effect of Non-Damaging Ailments", statOrder = { 9296 }, level = 68, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { "ailment" }, }, + ["HellscapeUpsideNearbyEnemiesTakeIncreasedPhysicalDamage3"] = { type = "ScourgeUpside", affix = "", "Nearby Enemies take 3% increased Physical Damage", statOrder = { 7770 }, level = 68, group = "NearbyEnemyPhysicalDamageTaken", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["HellscapeUpsideNearbyEnemiesTakeIncreasedPhysicalDamage4"] = { type = "ScourgeUpside", affix = "", "Nearby Enemies take 4% increased Physical Damage", statOrder = { 7770 }, level = 68, group = "NearbyEnemyPhysicalDamageTaken", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["HellscapeUpsideNearbyEnemiesTakeIncreasedFireDamage3__"] = { type = "ScourgeUpside", affix = "", "Nearby Enemies have -3% to Fire Resistance", statOrder = { 7766 }, level = 68, group = "NearbyEnemyFireDamageResistance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "resistance" }, }, + ["HellscapeUpsideNearbyEnemiesTakeIncreasedFireDamage4"] = { type = "ScourgeUpside", affix = "", "Nearby Enemies have -4% to Fire Resistance", statOrder = { 7766 }, level = 68, group = "NearbyEnemyFireDamageResistance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "resistance" }, }, + ["HellscapeUpsideNearbyEnemiesTakeIncreasedColdDamage3___"] = { type = "ScourgeUpside", affix = "", "Nearby Enemies have -3% to Cold Resistance", statOrder = { 7764 }, level = 68, group = "NearbyEnemyColdDamageResistance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "resistance" }, }, + ["HellscapeUpsideNearbyEnemiesTakeIncreasedColdDamage4__"] = { type = "ScourgeUpside", affix = "", "Nearby Enemies have -4% to Cold Resistance", statOrder = { 7764 }, level = 68, group = "NearbyEnemyColdDamageResistance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "resistance" }, }, + ["HellscapeUpsideNearbyEnemiesTakeIncreasedLightningDamage3"] = { type = "ScourgeUpside", affix = "", "Nearby Enemies have -3% to Lightning Resistance", statOrder = { 7768 }, level = 68, group = "NearbyEnemyLightningDamageResistance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "resistance" }, }, + ["HellscapeUpsideNearbyEnemiesTakeIncreasedLightningDamage4_"] = { type = "ScourgeUpside", affix = "", "Nearby Enemies have -4% to Lightning Resistance", statOrder = { 7768 }, level = 68, group = "NearbyEnemyLightningDamageResistance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "resistance" }, }, + ["HellscapeUpsideNearbyEnemiesTakeIncreasedChaosDamage3"] = { type = "ScourgeUpside", affix = "", "Nearby Enemies have -3% to Chaos Resistance", statOrder = { 7763 }, level = 68, group = "NearbyEnemyChaosDamageResistance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "chaos_damage", "damage", "chaos", "resistance" }, }, + ["HellscapeUpsideNearbyEnemiesTakeIncreasedChaosDamage4"] = { type = "ScourgeUpside", affix = "", "Nearby Enemies have -4% to Chaos Resistance", statOrder = { 7763 }, level = 68, group = "NearbyEnemyChaosDamageResistance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "chaos_damage", "damage", "chaos", "resistance" }, }, + ["HellscapeUpsideCurseEffect3_"] = { type = "ScourgeUpside", affix = "", "(9-10)% increased Effect of your Curses", statOrder = { 2505 }, level = 68, group = "CurseEffectiveness", weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { "caster", "curse" }, }, + ["HellscapeUpsideCurseEffect4"] = { type = "ScourgeUpside", affix = "", "(11-12)% increased Effect of your Curses", statOrder = { 2505 }, level = 68, group = "CurseEffectiveness", weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { "caster", "curse" }, }, + ["HellscapeUpsideNonCurseAuraEffect2"] = { type = "ScourgeUpside", affix = "", "(7-8)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3474 }, level = 45, group = "AuraEffect", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "aura" }, }, + ["HellscapeUpsideNonCurseAuraEffect3__"] = { type = "ScourgeUpside", affix = "", "(9-10)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3474 }, level = 68, group = "AuraEffect", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "aura" }, }, + ["HellscapeUpsideNonCurseAuraEffect4_"] = { type = "ScourgeUpside", affix = "", "(11-12)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3474 }, level = 68, group = "AuraEffect", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "aura" }, }, + ["HellscapeUpsideImpaleEffect1h2"] = { type = "ScourgeUpside", affix = "", "(7-8)% increased Impale Effect", statOrder = { 7107 }, level = 45, group = "ImpaleEffect", weightKey = { "two_hand_weapon", "sword", "axe", "claw", "dagger", "mace", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical" }, }, + ["HellscapeUpsideImpaleEffect1h3"] = { type = "ScourgeUpside", affix = "", "(9-10)% increased Impale Effect", statOrder = { 7107 }, level = 68, group = "ImpaleEffect", weightKey = { "two_hand_weapon", "sword", "axe", "claw", "dagger", "mace", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical" }, }, + ["HellscapeUpsideImpaleEffect1h4_"] = { type = "ScourgeUpside", affix = "", "(11-12)% increased Impale Effect", statOrder = { 7107 }, level = 68, group = "ImpaleEffect", weightKey = { "two_hand_weapon", "sword", "axe", "claw", "dagger", "mace", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical" }, }, + ["HellscapeUpsideImpaleEffect2h2__"] = { type = "ScourgeUpside", affix = "", "(10-12)% increased Impale Effect", statOrder = { 7107 }, level = 45, group = "ImpaleEffect", weightKey = { "one_hand_weapon", "sword", "axe", "claw", "dagger", "mace", "bow", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical" }, }, + ["HellscapeUpsideImpaleEffect2h3"] = { type = "ScourgeUpside", affix = "", "(13-15)% increased Impale Effect", statOrder = { 7107 }, level = 68, group = "ImpaleEffect", weightKey = { "one_hand_weapon", "sword", "axe", "claw", "dagger", "mace", "bow", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical" }, }, + ["HellscapeUpsideImpaleEffect2h4"] = { type = "ScourgeUpside", affix = "", "(16-18)% increased Impale Effect", statOrder = { 7107 }, level = 68, group = "ImpaleEffect", weightKey = { "one_hand_weapon", "sword", "axe", "claw", "dagger", "mace", "bow", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical" }, }, + ["HellscapeUpsideInflictColdExposureOnHit1h2"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance to inflict Cold Exposure on Hit", statOrder = { 4920 }, level = 45, group = "ColdExposureOnHit", weightKey = { "attack_dagger", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, }, + ["HellscapeUpsideInflictColdExposureOnHit1h3"] = { type = "ScourgeUpside", affix = "", "(9-10)% chance to inflict Cold Exposure on Hit", statOrder = { 4920 }, level = 68, group = "ColdExposureOnHit", weightKey = { "attack_dagger", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, }, + ["HellscapeUpsideInflictColdExposureOnHit1h4"] = { type = "ScourgeUpside", affix = "", "(11-12)% chance to inflict Cold Exposure on Hit", statOrder = { 4920 }, level = 68, group = "ColdExposureOnHit", weightKey = { "attack_dagger", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, }, + ["HellscapeUpsideInflictColdExposureOnHit2h2_"] = { type = "ScourgeUpside", affix = "", "(10-12)% chance to inflict Cold Exposure on Hit", statOrder = { 4920 }, level = 45, group = "ColdExposureOnHit", weightKey = { "warstaff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["HellscapeUpsideInflictColdExposureOnHit2h3"] = { type = "ScourgeUpside", affix = "", "(13-15)% chance to inflict Cold Exposure on Hit", statOrder = { 4920 }, level = 68, group = "ColdExposureOnHit", weightKey = { "warstaff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["HellscapeUpsideInflictColdExposureOnHit2h4"] = { type = "ScourgeUpside", affix = "", "(16-18)% chance to inflict Cold Exposure on Hit", statOrder = { 4920 }, level = 68, group = "ColdExposureOnHit", weightKey = { "warstaff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["HellscapeUpsideInflictFireExposureOnHit1h2"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance to inflict Fire Exposure on Hit", statOrder = { 4921 }, level = 45, group = "FireExposureOnHit", weightKey = { "attack_dagger", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, }, + ["HellscapeUpsideInflictFireExposureOnHit1h3"] = { type = "ScourgeUpside", affix = "", "(9-10)% chance to inflict Fire Exposure on Hit", statOrder = { 4921 }, level = 68, group = "FireExposureOnHit", weightKey = { "attack_dagger", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, }, + ["HellscapeUpsideInflictFireExposureOnHit1h4"] = { type = "ScourgeUpside", affix = "", "(11-12)% chance to inflict Fire Exposure on Hit", statOrder = { 4921 }, level = 68, group = "FireExposureOnHit", weightKey = { "attack_dagger", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, }, + ["HellscapeUpsideInflictFireExposureOnHit2h2__"] = { type = "ScourgeUpside", affix = "", "(10-12)% chance to inflict Fire Exposure on Hit", statOrder = { 4921 }, level = 45, group = "FireExposureOnHit", weightKey = { "warstaff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["HellscapeUpsideInflictFireExposureOnHit2h3_____"] = { type = "ScourgeUpside", affix = "", "(13-15)% chance to inflict Fire Exposure on Hit", statOrder = { 4921 }, level = 68, group = "FireExposureOnHit", weightKey = { "warstaff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["HellscapeUpsideInflictFireExposureOnHit2h4"] = { type = "ScourgeUpside", affix = "", "(16-18)% chance to inflict Fire Exposure on Hit", statOrder = { 4921 }, level = 68, group = "FireExposureOnHit", weightKey = { "warstaff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["HellscapeUpsideInflictLightningExposureOnHit1h2"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance to inflict Lightning Exposure on Hit", statOrder = { 4922 }, level = 45, group = "LightningExposureOnHit", weightKey = { "attack_dagger", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, }, + ["HellscapeUpsideInflictLightningExposureOnHit1h3"] = { type = "ScourgeUpside", affix = "", "(9-10)% chance to inflict Lightning Exposure on Hit", statOrder = { 4922 }, level = 68, group = "LightningExposureOnHit", weightKey = { "attack_dagger", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, }, + ["HellscapeUpsideInflictLightningExposureOnHit1h4"] = { type = "ScourgeUpside", affix = "", "(11-12)% chance to inflict Lightning Exposure on Hit", statOrder = { 4922 }, level = 68, group = "LightningExposureOnHit", weightKey = { "attack_dagger", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, }, + ["HellscapeUpsideInflictLightningExposureOnHit2h2_"] = { type = "ScourgeUpside", affix = "", "(10-12)% chance to inflict Lightning Exposure on Hit", statOrder = { 4922 }, level = 45, group = "LightningExposureOnHit", weightKey = { "warstaff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["HellscapeUpsideInflictLightningExposureOnHit2h3__"] = { type = "ScourgeUpside", affix = "", "(13-15)% chance to inflict Lightning Exposure on Hit", statOrder = { 4922 }, level = 68, group = "LightningExposureOnHit", weightKey = { "warstaff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["HellscapeUpsideInflictLightningExposureOnHit2h4__"] = { type = "ScourgeUpside", affix = "", "(16-18)% chance to inflict Lightning Exposure on Hit", statOrder = { 4922 }, level = 68, group = "LightningExposureOnHit", weightKey = { "warstaff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["HellscapeUpsideKnockbackOnHit2"] = { type = "ScourgeUpside", affix = "", "(16-20)% chance to Knock Enemies Back on hit", statOrder = { 1904 }, level = 45, group = "GlobalKnockbackChance", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["HellscapeUpsideKnockbackOnHit3__"] = { type = "ScourgeUpside", affix = "", "(21-25)% chance to Knock Enemies Back on hit", statOrder = { 1904 }, level = 68, group = "GlobalKnockbackChance", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["HellscapeUpsideKnockbackOnHit4"] = { type = "ScourgeUpside", affix = "", "(26-30)% chance to Knock Enemies Back on hit", statOrder = { 1904 }, level = 68, group = "GlobalKnockbackChance", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["HellscapeUpsideReservationEfficiency3__"] = { type = "ScourgeUpside", affix = "", "(6-8)% increased Mana Reservation Efficiency of Skills", statOrder = { 2141 }, level = 68, group = "ReducedReservation", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, }, + ["HellscapeUpsideReservationEfficiency4_"] = { type = "ScourgeUpside", affix = "", "(10-12)% increased Mana Reservation Efficiency of Skills", statOrder = { 2141 }, level = 68, group = "ReducedReservation", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, }, + ["HellscapeUpsideWarcrySpeed2__"] = { type = "ScourgeUpside", affix = "", "(16-20)% increased Warcry Speed", statOrder = { 3185 }, level = 45, group = "WarcrySpeed", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { "speed" }, }, + ["HellscapeUpsideWarcrySpeed3"] = { type = "ScourgeUpside", affix = "", "(21-25)% increased Warcry Speed", statOrder = { 3185 }, level = 68, group = "WarcrySpeed", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { "speed" }, }, + ["HellscapeUpsideWarcrySpeed4_"] = { type = "ScourgeUpside", affix = "", "(26-30)% increased Warcry Speed", statOrder = { 3185 }, level = 68, group = "WarcrySpeed", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { "speed" }, }, + ["HellscapeUpsideColdDamageLeechedAsLife2_"] = { type = "ScourgeUpside", affix = "", "(0.2-0.3)% of Cold Damage Leeched as Life", statOrder = { 1586 }, level = 45, group = "ColdDamageLifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "elemental", "cold" }, }, + ["HellscapeUpsideColdDamageLeechedAsLife3"] = { type = "ScourgeUpside", affix = "", "(0.3-0.4)% of Cold Damage Leeched as Life", statOrder = { 1586 }, level = 68, group = "ColdDamageLifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "elemental", "cold" }, }, + ["HellscapeUpsideColdDamageLeechedAsLife4"] = { type = "ScourgeUpside", affix = "", "(0.4-0.5)% of Cold Damage Leeched as Life", statOrder = { 1586 }, level = 68, group = "ColdDamageLifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "elemental", "cold" }, }, + ["HellscapeUpsideFireDamageLeechedAsLife2"] = { type = "ScourgeUpside", affix = "", "(0.2-0.3)% of Fire Damage Leeched as Life", statOrder = { 1581 }, level = 45, group = "FireDamageLifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "elemental", "fire" }, }, + ["HellscapeUpsideFireDamageLeechedAsLife3"] = { type = "ScourgeUpside", affix = "", "(0.3-0.4)% of Fire Damage Leeched as Life", statOrder = { 1581 }, level = 68, group = "FireDamageLifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "elemental", "fire" }, }, + ["HellscapeUpsideFireDamageLeechedAsLife4"] = { type = "ScourgeUpside", affix = "", "(0.4-0.5)% of Fire Damage Leeched as Life", statOrder = { 1581 }, level = 68, group = "FireDamageLifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "elemental", "fire" }, }, + ["HellscapeUpsideLightningDamageLeechedAsLife2__"] = { type = "ScourgeUpside", affix = "", "(0.2-0.3)% of Lightning Damage Leeched as Life", statOrder = { 1590 }, level = 45, group = "LightningDamageLifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, }, + ["HellscapeUpsideLightningDamageLeechedAsLife3_"] = { type = "ScourgeUpside", affix = "", "(0.3-0.4)% of Lightning Damage Leeched as Life", statOrder = { 1590 }, level = 68, group = "LightningDamageLifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, }, + ["HellscapeUpsideLightningDamageLeechedAsLife4_"] = { type = "ScourgeUpside", affix = "", "(0.4-0.5)% of Lightning Damage Leeched as Life", statOrder = { 1590 }, level = 68, group = "LightningDamageLifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, }, + ["HellscapeUpsideChaosDamageLeechedAsLife2"] = { type = "ScourgeUpside", affix = "", "(0.2-0.3)% of Chaos Damage Leeched as Life", statOrder = { 1593 }, level = 45, group = "ChaosDamageLifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "chaos" }, }, + ["HellscapeUpsideChaosDamageLeechedAsLife3"] = { type = "ScourgeUpside", affix = "", "(0.3-0.4)% of Chaos Damage Leeched as Life", statOrder = { 1593 }, level = 68, group = "ChaosDamageLifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "chaos" }, }, + ["HellscapeUpsideChaosDamageLeechedAsLife4__"] = { type = "ScourgeUpside", affix = "", "(0.4-0.5)% of Chaos Damage Leeched as Life", statOrder = { 1593 }, level = 68, group = "ChaosDamageLifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "chaos" }, }, + ["HellscapeUpsidePhysicalDamageLeechedAsLife2"] = { type = "ScourgeUpside", affix = "", "(0.2-0.3)% of Physical Damage Leeched as Life", statOrder = { 1577 }, level = 45, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "physical" }, }, + ["HellscapeUpsidePhysicalDamageLeechedAsLife3"] = { type = "ScourgeUpside", affix = "", "(0.3-0.4)% of Physical Damage Leeched as Life", statOrder = { 1577 }, level = 68, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "physical" }, }, + ["HellscapeUpsidePhysicalDamageLeechedAsLife4____"] = { type = "ScourgeUpside", affix = "", "(0.4-0.5)% of Physical Damage Leeched as Life", statOrder = { 1577 }, level = 68, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "physical" }, }, + ["HellscapeUpsideKeystoneMinionInstability"] = { type = "ScourgeUpside", affix = "", "Minion Instability", statOrder = { 10570 }, level = 68, group = "MinionInstability", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "minion" }, }, + ["HellscapeUpsideKeystoneResoluteTechnique"] = { type = "ScourgeUpside", affix = "", "Resolute Technique", statOrder = { 10598 }, level = 68, group = "ResoluteTechnique", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "attack", "critical" }, }, + ["HellscapeUpsideKeystoneBloodMagic"] = { type = "ScourgeUpside", affix = "", "Blood Magic", statOrder = { 10545 }, level = 68, group = "BloodMagic", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "resource", "life", "mana" }, }, + ["HellscapeUpsideKeystonePainAttunement"] = { type = "ScourgeUpside", affix = "", "Pain Attunement", statOrder = { 10572 }, level = 68, group = "PainAttunement", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["HellscapeUpsideKeystoneElementalEquilibrium_"] = { type = "ScourgeUpside", affix = "", "Elemental Equilibrium", statOrder = { 10554 }, level = 68, group = "ElementalEquilibrium", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["HellscapeUpsideKeystoneIronGrip"] = { type = "ScourgeUpside", affix = "", "Iron Grip", statOrder = { 10588 }, level = 68, group = "IronGrip", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "damage", "attack" }, }, + ["HellscapeUpsideKeystonePointBlank"] = { type = "ScourgeUpside", affix = "", "Point Blank", statOrder = { 10573 }, level = 68, group = "PointBlank", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "damage", "attack" }, }, + ["HellscapeUpsideKeystoneAcrobatics___"] = { type = "ScourgeUpside", affix = "", "Acrobatics", statOrder = { 10540 }, level = 68, group = "Acrobatics", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { }, }, + ["HellscapeUpsideKeystoneGhostReaver"] = { type = "ScourgeUpside", affix = "", "Ghost Reaver", statOrder = { 10560 }, level = 68, group = "KeystoneGhostReaver", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "resource", "life", "defences", "energy_shield" }, }, + ["HellscapeUpsideKeystoneVaalPact"] = { type = "ScourgeUpside", affix = "", "Vaal Pact", statOrder = { 10592 }, level = 68, group = "VaalPact", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "resource", "life" }, }, + ["HellscapeUpsideKeystoneElementalOverload"] = { type = "ScourgeUpside", affix = "", "Elemental Overload", statOrder = { 10555 }, level = 68, group = "ElementalOverload", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "elemental_damage", "damage", "elemental", "critical" }, }, + ["HellscapeUpsideKeystoneAvatarOfFire"] = { type = "ScourgeUpside", affix = "", "Avatar of Fire", statOrder = { 10543 }, level = 68, group = "AvatarOfFire", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["HellscapeUpsideKeystoneEldritchBattery_"] = { type = "ScourgeUpside", affix = "", "Eldritch Battery", statOrder = { 10553 }, level = 68, group = "EldritchBattery", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "defences", "energy_shield" }, }, + ["HellscapeUpsideKeystoneAncestralBond"] = { type = "ScourgeUpside", affix = "", "Ancestral Bond", statOrder = { 10542 }, level = 68, group = "AncestralBond", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "damage" }, }, + ["HellscapeUpsideKeystoneCrimsonDance_"] = { type = "ScourgeUpside", affix = "", "Crimson Dance", statOrder = { 10550 }, level = 68, group = "CrimsonDance", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["HellscapeUpsideKeystonePerfectAgony_"] = { type = "ScourgeUpside", affix = "", "Perfect Agony", statOrder = { 10541 }, level = 68, group = "PerfectAgony", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "damage", "critical", "ailment" }, }, + ["HellscapeUpsideKeystoneRunebinder___"] = { type = "ScourgeUpside", affix = "", "Runebinder", statOrder = { 10580 }, level = 68, group = "Runebinder", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "caster" }, }, + ["HellscapeUpsideKeystoneMortalConviction_"] = { type = "ScourgeUpside", affix = "", "Blood Magic", statOrder = { 10545 }, level = 68, group = "BloodMagic", weightKey = { "body_armour", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "life", "mana" }, }, + ["HellscapeUpsideKeystoneCallToArms"] = { type = "ScourgeUpside", affix = "", "Call to Arms", statOrder = { 10546 }, level = 68, group = "CallToArms", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { }, }, + ["HellscapeUpsideKeystoneTheAgnostic_"] = { type = "ScourgeUpside", affix = "", "The Agnostic", statOrder = { 10571 }, level = 68, group = "TheAgnostic", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "resource", "life", "mana", "defences", "energy_shield" }, }, + ["HellscapeUpsideKeystoneSupremeEgo_"] = { type = "ScourgeUpside", affix = "", "Supreme Ego", statOrder = { 10589 }, level = 68, group = "SupremeEgo", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "resource", "mana", "aura" }, }, + ["HellscapeUpsideKeystoneTheImpaler_"] = { type = "ScourgeUpside", affix = "", "The Impaler", statOrder = { 10565 }, level = 68, group = "Impaler", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["HellscapeUpsideKeystoneDoomsday"] = { type = "ScourgeUpside", affix = "", "Hex Master", statOrder = { 10563 }, level = 68, group = "HexMaster", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "curse" }, }, + ["HellscapeUpsideKeystoneLetheShade1_"] = { type = "ScourgeUpside", affix = "", "Lethe Shade", statOrder = { 10567 }, level = 68, group = "LetheShade", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "ailment" }, }, + ["HellscapeUpsideKeystoneGhostDance"] = { type = "ScourgeUpside", affix = "", "Ghost Dance", statOrder = { 10559 }, level = 68, group = "GhostDance", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["HellscapeUpsideKeystoneVersatileCombatant___"] = { type = "ScourgeUpside", affix = "", "Versatile Combatant", statOrder = { 10593 }, level = 68, group = "VersatileCombatant", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "block" }, }, + ["HellscapeUpsideKeystoneMagebane"] = { type = "ScourgeUpside", affix = "", "Magebane", statOrder = { 10568 }, level = 68, group = "Magebane", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { }, }, + ["HellscapeUpsideKeystoneSolipsism"] = { type = "ScourgeUpside", affix = "", "Solipsism", statOrder = { 10586 }, level = 68, group = "Solipsism", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "ailment" }, }, + ["HellscapeUpsideKeystoneDivineShield"] = { type = "ScourgeUpside", affix = "", "Divine Shield", statOrder = { 10552 }, level = 68, group = "DivineShield", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "defences", "energy_shield" }, }, + ["HellscapeUpsideKeystoneIronWill"] = { type = "ScourgeUpside", affix = "", "Iron Will", statOrder = { 10599 }, level = 68, group = "IronWill", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "caster" }, }, + ["HellscapeUpsideLifeGainOnHitWithAttacks1"] = { type = "ScourgeUpside", affix = "", "Gain 2 Life per Enemy Hit with Attacks", statOrder = { 1651 }, level = 1, group = "LifeGainPerTarget", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "life", "attack" }, }, + ["HellscapeUpsideLifeGainOnHitWithAttacks2_"] = { type = "ScourgeUpside", affix = "", "Gain (3-4) Life per Enemy Hit with Attacks", statOrder = { 1651 }, level = 45, group = "LifeGainPerTarget", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "life", "attack" }, }, + ["HellscapeUpsideLifeGainOnHitWithAttacks3"] = { type = "ScourgeUpside", affix = "", "Gain (5-7) Life per Enemy Hit with Attacks", statOrder = { 1651 }, level = 68, group = "LifeGainPerTarget", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "life", "attack" }, }, + ["HellscapeUpsideLifeGainOnHitWithAttacks4_"] = { type = "ScourgeUpside", affix = "", "Gain (8-10) Life per Enemy Hit with Attacks", statOrder = { 1651 }, level = 68, group = "LifeGainPerTarget", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "life", "attack" }, }, + ["HellscapeUpsideManaGainOnHitWithAttacks1"] = { type = "ScourgeUpside", affix = "", "Gain 2 Mana per Enemy Hit with Attacks", statOrder = { 1655 }, level = 1, group = "ManaGainPerTarget", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana", "attack" }, }, + ["HellscapeUpsideManaGainOnHitWithAttacks2__"] = { type = "ScourgeUpside", affix = "", "Gain 3 Mana per Enemy Hit with Attacks", statOrder = { 1655 }, level = 45, group = "ManaGainPerTarget", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana", "attack" }, }, + ["HellscapeUpsideManaGainOnHitWithAttacks3_"] = { type = "ScourgeUpside", affix = "", "Gain 4 Mana per Enemy Hit with Attacks", statOrder = { 1655 }, level = 68, group = "ManaGainPerTarget", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana", "attack" }, }, + ["HellscapeUpsideManaGainOnHitWithAttacks4__"] = { type = "ScourgeUpside", affix = "", "Gain 5 Mana per Enemy Hit with Attacks", statOrder = { 1655 }, level = 68, group = "ManaGainPerTarget", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana", "attack" }, }, + ["HellscapeUpsideSocketedGemsAreSupportedByLevel1AddedLightningDamage__"] = { type = "ScourgeUpside", affix = "", "Socketed Gems are Supported by Level 1 Added Lightning Damage", statOrder = { 394 }, level = 1, group = "DisplaySocketedGemGetsAddedLightningDamageLevel", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "support", "gem" }, }, + ["HellscapeUpsideSocketedGemsAreSupportedByLevel10AddedLightningDamage_"] = { type = "ScourgeUpside", affix = "", "Socketed Gems are Supported by Level 10 Added Lightning Damage", statOrder = { 394 }, level = 45, group = "DisplaySocketedGemGetsAddedLightningDamageLevel", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "support", "gem" }, }, + ["HellscapeUpsideSocketedGemsAreSupportedByLevel20AddedLightningDamage__"] = { type = "ScourgeUpside", affix = "", "Socketed Gems are Supported by Level 20 Added Lightning Damage", statOrder = { 394 }, level = 68, group = "DisplaySocketedGemGetsAddedLightningDamageLevel", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "support", "gem" }, }, + ["HellscapeUpsideSocketedGemsAreSupportedByLevel22AddedLightningDamage__"] = { type = "ScourgeUpside", affix = "", "Socketed Gems are Supported by Level 22 Added Lightning Damage", statOrder = { 394 }, level = 68, group = "DisplaySocketedGemGetsAddedLightningDamageLevel", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "support", "gem" }, }, + ["HellscapeUpsideSocketedGemsAreSupportedByLevel1AddedColdDamage_"] = { type = "ScourgeUpside", affix = "", "Socketed Gems are Supported by Level 1 Added Cold Damage", statOrder = { 445 }, level = 1, group = "DisplaySupportedByAddedColdDamage", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "support", "gem" }, }, + ["HellscapeUpsideSocketedGemsAreSupportedByLevel10AddedColdDamage"] = { type = "ScourgeUpside", affix = "", "Socketed Gems are Supported by Level 10 Added Cold Damage", statOrder = { 445 }, level = 45, group = "DisplaySupportedByAddedColdDamage", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "support", "gem" }, }, + ["HellscapeUpsideSocketedGemsAreSupportedByLevel20AddedColdDamage"] = { type = "ScourgeUpside", affix = "", "Socketed Gems are Supported by Level 20 Added Cold Damage", statOrder = { 445 }, level = 68, group = "DisplaySupportedByAddedColdDamage", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "support", "gem" }, }, + ["HellscapeUpsideSocketedGemsAreSupportedByLevel22AddedColdDamage"] = { type = "ScourgeUpside", affix = "", "Socketed Gems are Supported by Level 22 Added Cold Damage", statOrder = { 445 }, level = 68, group = "DisplaySupportedByAddedColdDamage", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "support", "gem" }, }, + ["HellscapeUpsideSocketedGemsAreSupportedByLevel1AddedChaosDamage"] = { type = "ScourgeUpside", affix = "", "Socketed Gems are Supported by Level 1 Added Chaos Damage", statOrder = { 385 }, level = 1, group = "DisplaySocketedGemsGetAddedChaosDamage", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { "support", "gem" }, }, + ["HellscapeUpsideSocketedGemsAreSupportedByLevel10AddedChaosDamage_____"] = { type = "ScourgeUpside", affix = "", "Socketed Gems are Supported by Level 10 Added Chaos Damage", statOrder = { 385 }, level = 45, group = "DisplaySocketedGemsGetAddedChaosDamage", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { "support", "gem" }, }, + ["HellscapeUpsideSocketedGemsAreSupportedByLevel20AddedChaosDamage"] = { type = "ScourgeUpside", affix = "", "Socketed Gems are Supported by Level 20 Added Chaos Damage", statOrder = { 385 }, level = 68, group = "DisplaySocketedGemsGetAddedChaosDamage", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { "support", "gem" }, }, + ["HellscapeUpsideSocketedGemsAreSupportedByLevel22AddedChaosDamage__"] = { type = "ScourgeUpside", affix = "", "Socketed Gems are Supported by Level 22 Added Chaos Damage", statOrder = { 385 }, level = 68, group = "DisplaySocketedGemsGetAddedChaosDamage", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { "support", "gem" }, }, + ["HellscapeUpsideCannotBeFrozen___"] = { type = "ScourgeUpside", affix = "", "Cannot be Frozen", statOrder = { 1749 }, level = 1, group = "CannotBeFrozen", weightKey = { "boots", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["HellscapeUpsideGainLifeChargeEvery3Seconds"] = { type = "ScourgeUpside", affix = "", "Life Flasks gain 1 Charge every 3 seconds", statOrder = { 7208 }, level = 1, group = "LifeFlaskPassiveChargeGain", weightKey = { "belt", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["HellscapeUpsideGainManaChargeEvery3Seconds"] = { type = "ScourgeUpside", affix = "", "Mana Flasks gain 1 Charge every 3 seconds", statOrder = { 8008 }, level = 1, group = "ManaFlaskPassiveChargeGain", weightKey = { "belt", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["HellscapeUpsideChillOnBlock1"] = { type = "ScourgeUpside", affix = "", "(14-16)% chance to Chill Attackers for 4 seconds on Block", statOrder = { 5663 }, level = 1, group = "ChanceToChillAttackersOnBlock", weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { "block", "red_herring", "elemental", "cold", "ailment" }, }, + ["HellscapeUpsideChillOnBlock2"] = { type = "ScourgeUpside", affix = "", "(17-19)% chance to Chill Attackers for 4 seconds on Block", statOrder = { 5663 }, level = 45, group = "ChanceToChillAttackersOnBlock", weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { "block", "red_herring", "elemental", "cold", "ailment" }, }, + ["HellscapeUpsideChillOnBlock3"] = { type = "ScourgeUpside", affix = "", "(20-22)% chance to Chill Attackers for 4 seconds on Block", statOrder = { 5663 }, level = 68, group = "ChanceToChillAttackersOnBlock", weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { "block", "red_herring", "elemental", "cold", "ailment" }, }, + ["HellscapeUpsideChillOnBlock4"] = { type = "ScourgeUpside", affix = "", "(23-25)% chance to Chill Attackers for 4 seconds on Block", statOrder = { 5663 }, level = 68, group = "ChanceToChillAttackersOnBlock", weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { "block", "red_herring", "elemental", "cold", "ailment" }, }, + ["HellscapeUpsideShockOnBlock1"] = { type = "ScourgeUpside", affix = "", "(14-16)% chance to Shock Attackers for 4 seconds on Block", statOrder = { 9789 }, level = 1, group = "ChanceToShockAttackersOnBlock", weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { "block", "elemental", "lightning", "ailment" }, }, + ["HellscapeUpsideShockOnBlock2___"] = { type = "ScourgeUpside", affix = "", "(17-19)% chance to Shock Attackers for 4 seconds on Block", statOrder = { 9789 }, level = 45, group = "ChanceToShockAttackersOnBlock", weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { "block", "elemental", "lightning", "ailment" }, }, + ["HellscapeUpsideShockOnBlock3__"] = { type = "ScourgeUpside", affix = "", "(20-22)% chance to Shock Attackers for 4 seconds on Block", statOrder = { 9789 }, level = 68, group = "ChanceToShockAttackersOnBlock", weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { "block", "elemental", "lightning", "ailment" }, }, + ["HellscapeUpsideShockOnBlock4__"] = { type = "ScourgeUpside", affix = "", "(23-25)% chance to Shock Attackers for 4 seconds on Block", statOrder = { 9789 }, level = 68, group = "ChanceToShockAttackersOnBlock", weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { "block", "elemental", "lightning", "ailment" }, }, ["HellscapeUpsideSocketedStrengthGems___"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Strength Gems", statOrder = { 138 }, level = 1, group = "LocalIncreaseSocketedStrengthGemLevel", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "attribute", "gem" }, }, - ["HellscapeUpsideSocketedDexterityGems"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Dexterity Gems", statOrder = { 139 }, level = 1, group = "LocalIncreaseSocketedDexterityGemLevel", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "attribute", "gem" }, }, - ["HellscapeUpsideSocketedIntelligenceGems__"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Intelligence Gems", statOrder = { 140 }, level = 1, group = "LocalIncreaseSocketedIntelligenceGemLevel", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "attribute", "gem" }, }, - ["HellscapeUpsideGrantsLevel1HeraldOfIce__"] = { type = "ScourgeUpside", affix = "", "Grants Level 1 Herald of Ice Skill", statOrder = { 608 }, level = 1, group = "HeraldOfIceSkill", weightKey = { "body_armour", "default", }, weightVal = { 100, 0 }, modTags = { "skill" }, }, - ["HellscapeUpsideGrantsLevel10HeraldOfIce"] = { type = "ScourgeUpside", affix = "", "Grants Level 10 Herald of Ice Skill", statOrder = { 608 }, level = 45, group = "HeraldOfIceSkill", weightKey = { "body_armour", "default", }, weightVal = { 150, 0 }, modTags = { "skill" }, }, - ["HellscapeUpsideGrantsLevel20HeraldOfIce"] = { type = "ScourgeUpside", affix = "", "Grants Level 20 Herald of Ice Skill", statOrder = { 608 }, level = 68, group = "HeraldOfIceSkill", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "skill" }, }, - ["HellscapeUpsideGrantsLevel22HeraldOfIce"] = { type = "ScourgeUpside", affix = "", "Grants Level 22 Herald of Ice Skill", statOrder = { 608 }, level = 68, group = "HeraldOfIceSkill", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "skill" }, }, - ["HellscapeUpsideGrantsLevel1HeraldOfAsh"] = { type = "ScourgeUpside", affix = "", "Grants Level 1 Herald of Ash Skill", statOrder = { 607 }, level = 1, group = "HeraldOfAshSkill", weightKey = { "body_armour", "default", }, weightVal = { 100, 0 }, modTags = { "skill" }, }, - ["HellscapeUpsideGrantsLevel10HeraldOfAsh_"] = { type = "ScourgeUpside", affix = "", "Grants Level 10 Herald of Ash Skill", statOrder = { 607 }, level = 45, group = "HeraldOfAshSkill", weightKey = { "body_armour", "default", }, weightVal = { 150, 0 }, modTags = { "skill" }, }, - ["HellscapeUpsideGrantsLevel20HeraldOfAsh"] = { type = "ScourgeUpside", affix = "", "Grants Level 20 Herald of Ash Skill", statOrder = { 607 }, level = 68, group = "HeraldOfAshSkill", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "skill" }, }, - ["HellscapeUpsideGrantsLevel22HeraldOfAsh_"] = { type = "ScourgeUpside", affix = "", "Grants Level 22 Herald of Ash Skill", statOrder = { 607 }, level = 68, group = "HeraldOfAshSkill", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "skill" }, }, - ["HellscapeUpsideGrantsLevel1HeraldOfThunder"] = { type = "ScourgeUpside", affix = "", "Grants Level 1 Herald of Thunder Skill", statOrder = { 610 }, level = 1, group = "HeraldOfThunderSkill", weightKey = { "body_armour", "default", }, weightVal = { 100, 0 }, modTags = { "skill" }, }, - ["HellscapeUpsideGrantsLevel10HeraldOfThunder"] = { type = "ScourgeUpside", affix = "", "Grants Level 10 Herald of Thunder Skill", statOrder = { 610 }, level = 45, group = "HeraldOfThunderSkill", weightKey = { "body_armour", "default", }, weightVal = { 150, 0 }, modTags = { "skill" }, }, - ["HellscapeUpsideGrantsLevel20HeraldOfThunder_"] = { type = "ScourgeUpside", affix = "", "Grants Level 20 Herald of Thunder Skill", statOrder = { 610 }, level = 68, group = "HeraldOfThunderSkill", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "skill" }, }, - ["HellscapeUpsideGrantsLevel22HeraldOfThunder"] = { type = "ScourgeUpside", affix = "", "Grants Level 22 Herald of Thunder Skill", statOrder = { 610 }, level = 68, group = "HeraldOfThunderSkill", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "skill" }, }, - ["HellscapeUpsideGrantsLevel1HeraldOfPurity"] = { type = "ScourgeUpside", affix = "", "Grants Level 1 Herald of Purity Skill", statOrder = { 609 }, level = 1, group = "HeraldOfPuritySkill", weightKey = { "body_armour", "default", }, weightVal = { 100, 0 }, modTags = { "skill" }, }, - ["HellscapeUpsideGrantsLevel10HeraldOfPurity"] = { type = "ScourgeUpside", affix = "", "Grants Level 10 Herald of Purity Skill", statOrder = { 609 }, level = 45, group = "HeraldOfPuritySkill", weightKey = { "body_armour", "default", }, weightVal = { 150, 0 }, modTags = { "skill" }, }, - ["HellscapeUpsideGrantsLevel20HeraldOfPurity_____"] = { type = "ScourgeUpside", affix = "", "Grants Level 20 Herald of Purity Skill", statOrder = { 609 }, level = 68, group = "HeraldOfPuritySkill", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "skill" }, }, - ["HellscapeUpsideGrantsLevel22HeraldOfPurity_"] = { type = "ScourgeUpside", affix = "", "Grants Level 22 Herald of Purity Skill", statOrder = { 609 }, level = 68, group = "HeraldOfPuritySkill", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "skill" }, }, - ["HellscapeUpsideGrantsLevel1HeraldOfAgony"] = { type = "ScourgeUpside", affix = "", "Grants Level 1 Herald of Agony Skill", statOrder = { 606 }, level = 1, group = "HeraldOfAgonySkill", weightKey = { "body_armour", "default", }, weightVal = { 100, 0 }, modTags = { "skill" }, }, - ["HellscapeUpsideGrantsLevel10HeraldOfAgony"] = { type = "ScourgeUpside", affix = "", "Grants Level 10 Herald of Agony Skill", statOrder = { 606 }, level = 45, group = "HeraldOfAgonySkill", weightKey = { "body_armour", "default", }, weightVal = { 150, 0 }, modTags = { "skill" }, }, - ["HellscapeUpsideGrantsLevel20HeraldOfAgony__"] = { type = "ScourgeUpside", affix = "", "Grants Level 20 Herald of Agony Skill", statOrder = { 606 }, level = 68, group = "HeraldOfAgonySkill", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "skill" }, }, - ["HellscapeUpsideGrantsLevel22HeraldOfAgony__"] = { type = "ScourgeUpside", affix = "", "Grants Level 22 Herald of Agony Skill", statOrder = { 606 }, level = 68, group = "HeraldOfAgonySkill", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "skill" }, }, - ["HellscapeUpsideGrantsLevel1SnipersMark"] = { type = "ScourgeUpside", affix = "", "Grants Level 1 Sniper's Mark Skill", statOrder = { 563 }, level = 1, group = "ProjectileWeaknessSkill", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "skill" }, }, - ["HellscapeUpsideGrantsLevel10SnipersMark"] = { type = "ScourgeUpside", affix = "", "Grants Level 10 Sniper's Mark Skill", statOrder = { 563 }, level = 45, group = "ProjectileWeaknessSkill", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "skill" }, }, - ["HellscapeUpsideGrantsLevel20SnipersMark"] = { type = "ScourgeUpside", affix = "", "Grants Level 20 Sniper's Mark Skill", statOrder = { 563 }, level = 68, group = "ProjectileWeaknessSkill", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "skill" }, }, - ["HellscapeUpsideGrantsLevel22SnipersMark"] = { type = "ScourgeUpside", affix = "", "Grants Level 22 Sniper's Mark Skill", statOrder = { 563 }, level = 68, group = "ProjectileWeaknessSkill", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "skill" }, }, - ["HellscapeUpsideDaytimeFishSize___"] = { type = "ScourgeUpside", affix = "", "(10-30)% increased Size of Fish caught during Daytime", statOrder = { 5828 }, level = 1, group = "DaytimeFishSize", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["HellscapeUpsideFishingCastDistance"] = { type = "ScourgeUpside", affix = "", "(13-16)% increased Fishing Range", statOrder = { 2721 }, level = 45, group = "FishingCastDistance", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["HellscapeUpsideFishingRarity"] = { type = "ScourgeUpside", affix = "", "(20-25)% increased Rarity of Fish Caught", statOrder = { 2723 }, level = 1, group = "FishingRarity", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { "drop" }, }, - ["HellscapeUpsideStrengthAppliesToFishingReelSpeed_"] = { type = "ScourgeUpside", affix = "", "Strength's Damage bonus also applies to Reeling Speed at 20% of its value", statOrder = { 9736 }, level = 1, group = "StrengthAppliesToFishingReelSpeed", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["HellscapeUpsideCanCatchScourgedFish"] = { type = "ScourgeUpside", affix = "", "You can catch Scourged Fish", statOrder = { 5094 }, level = 68, group = "CanCatchScourgedFish", weightKey = { "fishing_rod", "default", }, weightVal = { 1, 0 }, modTags = { }, }, - ["HellscapeDownsideStrengthRequirement0_"] = { type = "ScourgeDownside", affix = "", "+(21-30) Strength Requirement", statOrder = { 974 }, level = 1, group = "HellscapeDownsideStrengthRequirement", weightKey = { "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["HellscapeDownsideStrengthRequirement1"] = { type = "ScourgeDownside", affix = "", "+(36-50) Strength Requirement", statOrder = { 974 }, level = 1, group = "HellscapeDownsideStrengthRequirement", weightKey = { "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["HellscapeDownsideStrengthRequirement2"] = { type = "ScourgeDownside", affix = "", "+(75-125) Strength Requirement", statOrder = { 974 }, level = 45, group = "HellscapeDownsideStrengthRequirement", weightKey = { "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["HellscapeDownsideStrengthRequirement3"] = { type = "ScourgeDownside", affix = "", "+(150-200) Strength Requirement", statOrder = { 974 }, level = 68, group = "HellscapeDownsideStrengthRequirement", weightKey = { "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["HellscapeDownsideDexterityRequirement0__"] = { type = "ScourgeDownside", affix = "", "+(21-30) Dexterity Requirement", statOrder = { 966 }, level = 1, group = "HellscapeDownsideDexterityRequirement", weightKey = { "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["HellscapeDownsideDexterityRequirement1_"] = { type = "ScourgeDownside", affix = "", "+(36-50) Dexterity Requirement", statOrder = { 966 }, level = 1, group = "HellscapeDownsideDexterityRequirement", weightKey = { "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["HellscapeDownsideDexterityRequirement2_"] = { type = "ScourgeDownside", affix = "", "+(75-125) Dexterity Requirement", statOrder = { 966 }, level = 45, group = "HellscapeDownsideDexterityRequirement", weightKey = { "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["HellscapeDownsideDexterityRequirement3__"] = { type = "ScourgeDownside", affix = "", "+(150-200) Dexterity Requirement", statOrder = { 966 }, level = 68, group = "HellscapeDownsideDexterityRequirement", weightKey = { "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["HellscapeDownsideIntelligenceRequirement0_"] = { type = "ScourgeDownside", affix = "", "+(21-30) Intelligence Requirement", statOrder = { 968 }, level = 1, group = "HellscapeDownsideIntelligenceRequirement", weightKey = { "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["HellscapeDownsideIntelligenceRequirement1_"] = { type = "ScourgeDownside", affix = "", "+(36-50) Intelligence Requirement", statOrder = { 968 }, level = 1, group = "HellscapeDownsideIntelligenceRequirement", weightKey = { "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["HellscapeDownsideIntelligenceRequirement2"] = { type = "ScourgeDownside", affix = "", "+(75-125) Intelligence Requirement", statOrder = { 968 }, level = 45, group = "HellscapeDownsideIntelligenceRequirement", weightKey = { "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["HellscapeDownsideIntelligenceRequirement3"] = { type = "ScourgeDownside", affix = "", "+(150-200) Intelligence Requirement", statOrder = { 968 }, level = 68, group = "HellscapeDownsideIntelligenceRequirement", weightKey = { "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["HellscapeDownsideCannotCrit_"] = { type = "ScourgeDownside", affix = "", "Never deal Critical Strikes", statOrder = { 2055 }, level = 45, group = "HellscapeDownsideCannotCrit", weightKey = { "body_armour", "quiver", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["HellscapeDownsideCannotBlock"] = { type = "ScourgeDownside", affix = "", "Cannot Block Attack Damage", "Cannot Block Spell Damage", statOrder = { 2135, 5135 }, level = 45, group = "HellscapeDownsideCannotBlock", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["HellscapeDownsideCannotEvade_"] = { type = "ScourgeDownside", affix = "", "Cannot Evade Enemy Attacks", statOrder = { 1797 }, level = 45, group = "HellscapeDownsideCannotEvade", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["HellscapeDownsideReducedFireResistance0"] = { type = "ScourgeDownside", affix = "", "-(15-11)% to Fire Resistance", statOrder = { 1507 }, level = 1, group = "FireResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["HellscapeDownsideReducedFireResistance1"] = { type = "ScourgeDownside", affix = "", "-(20-16)% to Fire Resistance", statOrder = { 1507 }, level = 1, group = "FireResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["HellscapeDownsideReducedFireResistance2"] = { type = "ScourgeDownside", affix = "", "-(25-21)% to Fire Resistance", statOrder = { 1507 }, level = 45, group = "FireResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 750, 750, 750, 750, 750, 750, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["HellscapeDownsideReducedFireResistance3_"] = { type = "ScourgeDownside", affix = "", "-(30-26)% to Fire Resistance", statOrder = { 1507 }, level = 68, group = "FireResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["HellscapeDownsideReducedColdResistance0"] = { type = "ScourgeDownside", affix = "", "-(15-11)% to Cold Resistance", statOrder = { 1513 }, level = 1, group = "ColdResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["HellscapeDownsideReducedColdResistance1"] = { type = "ScourgeDownside", affix = "", "-(20-16)% to Cold Resistance", statOrder = { 1513 }, level = 1, group = "ColdResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["HellscapeDownsideReducedColdResistance2"] = { type = "ScourgeDownside", affix = "", "-(25-21)% to Cold Resistance", statOrder = { 1513 }, level = 45, group = "ColdResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 750, 750, 750, 750, 750, 750, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["HellscapeDownsideReducedColdResistance3"] = { type = "ScourgeDownside", affix = "", "-(30-26)% to Cold Resistance", statOrder = { 1513 }, level = 68, group = "ColdResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["HellscapeDownsideReducedLightningResistance0_"] = { type = "ScourgeDownside", affix = "", "-(15-11)% to Lightning Resistance", statOrder = { 1518 }, level = 1, group = "LightningResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["HellscapeDownsideReducedLightningResistance1"] = { type = "ScourgeDownside", affix = "", "-(20-16)% to Lightning Resistance", statOrder = { 1518 }, level = 1, group = "LightningResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["HellscapeDownsideReducedLightningResistance2"] = { type = "ScourgeDownside", affix = "", "-(25-21)% to Lightning Resistance", statOrder = { 1518 }, level = 45, group = "LightningResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 750, 750, 750, 750, 750, 750, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["HellscapeDownsideReducedLightningResistance3"] = { type = "ScourgeDownside", affix = "", "-(30-26)% to Lightning Resistance", statOrder = { 1518 }, level = 68, group = "LightningResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["HellscapeDownsideReducedChaosResistance0_"] = { type = "ScourgeDownside", affix = "", "-(13-10)% to Chaos Resistance", statOrder = { 1522 }, level = 16, group = "ChaosResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "chaos", "resistance" }, }, - ["HellscapeDownsideReducedChaosResistance1"] = { type = "ScourgeDownside", affix = "", "-(17-14)% to Chaos Resistance", statOrder = { 1522 }, level = 16, group = "ChaosResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "chaos", "resistance" }, }, - ["HellscapeDownsideReducedChaosResistance2_"] = { type = "ScourgeDownside", affix = "", "-(21-18)% to Chaos Resistance", statOrder = { 1522 }, level = 45, group = "ChaosResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 750, 750, 750, 750, 750, 750, 0 }, modTags = { "chaos", "resistance" }, }, - ["HellscapeDownsideReducedChaosResistance3___"] = { type = "ScourgeDownside", affix = "", "-(25-22)% to Chaos Resistance", statOrder = { 1522 }, level = 68, group = "ChaosResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "chaos", "resistance" }, }, - ["HellscapeDownsideReducedElementalResistances0_"] = { type = "ScourgeDownside", affix = "", "-5% to all Elemental Resistances", statOrder = { 1501 }, level = 1, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental", "resistance" }, }, - ["HellscapeDownsideReducedElementalResistances1_"] = { type = "ScourgeDownside", affix = "", "-(7-6)% to all Elemental Resistances", statOrder = { 1501 }, level = 1, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental", "resistance" }, }, - ["HellscapeDownsideReducedElementalResistances2_"] = { type = "ScourgeDownside", affix = "", "-(9-8)% to all Elemental Resistances", statOrder = { 1501 }, level = 45, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 750, 750, 750, 0 }, modTags = { "elemental", "resistance" }, }, - ["HellscapeDownsideReducedElementalResistances3_"] = { type = "ScourgeDownside", affix = "", "-(11-10)% to all Elemental Resistances", statOrder = { 1501 }, level = 68, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "elemental", "resistance" }, }, - ["HellscapeDownsideMinusMaximumLife0"] = { type = "ScourgeDownside", affix = "", "-(20-16) to maximum Life", statOrder = { 1451 }, level = 1, group = "IncreasedLife", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "life" }, }, - ["HellscapeDownsideMinusMaximumLife1_"] = { type = "ScourgeDownside", affix = "", "-(25-21) to maximum Life", statOrder = { 1451 }, level = 1, group = "IncreasedLife", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "life" }, }, - ["HellscapeDownsideMinusMaximumLife2"] = { type = "ScourgeDownside", affix = "", "-(30-26) to maximum Life", statOrder = { 1451 }, level = 45, group = "IncreasedLife", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "life" }, }, - ["HellscapeDownsideMinusMaximumLife3_"] = { type = "ScourgeDownside", affix = "", "-(35-31) to maximum Life", statOrder = { 1451 }, level = 68, group = "IncreasedLife", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "life" }, }, - ["HellscapeDownsideMinusMaximumMana0_"] = { type = "ScourgeDownside", affix = "", "-(25-21) to maximum Mana", statOrder = { 1461 }, level = 1, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["HellscapeDownsideMinusMaximumMana1"] = { type = "ScourgeDownside", affix = "", "-(30-26) to maximum Mana", statOrder = { 1461 }, level = 1, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["HellscapeDownsideMinusMaximumMana2__"] = { type = "ScourgeDownside", affix = "", "-(35-31) to maximum Mana", statOrder = { 1461 }, level = 45, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["HellscapeDownsideMinusMaximumMana3_"] = { type = "ScourgeDownside", affix = "", "-(40-36) to maximum Mana", statOrder = { 1461 }, level = 68, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["HellscapeDownsideReducedGlobalDefences0"] = { type = "ScourgeDownside", affix = "", "(6-10)% reduced Global Defences", statOrder = { 2707 }, level = 1, group = "HellscapeDownsideReducedGlobalDefences", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["HellscapeDownsideReducedGlobalDefences1"] = { type = "ScourgeDownside", affix = "", "(11-15)% reduced Global Defences", statOrder = { 2707 }, level = 1, group = "HellscapeDownsideReducedGlobalDefences", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["HellscapeDownsideReducedGlobalDefences2"] = { type = "ScourgeDownside", affix = "", "(16-20)% reduced Global Defences", statOrder = { 2707 }, level = 45, group = "HellscapeDownsideReducedGlobalDefences", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["HellscapeDownsideReducedGlobalDefences3__"] = { type = "ScourgeDownside", affix = "", "(21-25)% reduced Global Defences", statOrder = { 2707 }, level = 68, group = "HellscapeDownsideReducedGlobalDefences", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["HellscapeDownsideDealNoDamageYourself_"] = { type = "ScourgeDownside", affix = "", "You can't deal Damage with your Skills yourself", statOrder = { 2127 }, level = 68, group = "HellscapeDownsideDealNoDamageYourself", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["HellscapeDownsideReducedMinionLife2_"] = { type = "ScourgeDownside", affix = "", "Minions have (30-33)% reduced maximum Life", statOrder = { 1647 }, level = 45, group = "MinionLife", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "minion" }, }, - ["HellscapeDownsideReducedMinionLife3_"] = { type = "ScourgeDownside", affix = "", "Minions have (36-39)% reduced maximum Life", statOrder = { 1647 }, level = 68, group = "MinionLife", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "minion" }, }, - ["HellscapeDownsideReservationEfficiency3"] = { type = "ScourgeDownside", affix = "", "(18-24)% reduced Mana Reservation Efficiency of Skills", statOrder = { 2105 }, level = 68, group = "ManaReservationEfficiency", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "mana" }, }, - ["HellscapeDownsideIncreasedChanceToBeCrit3__"] = { type = "ScourgeDownside", affix = "", "Hits have +10% additional Critical Strike Chance against you", statOrder = { 2997 }, level = 68, group = "HellscapeDownsideIncreasedChanceToBeCrit", weightKey = { "body_armour", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["HellscapeDownsideHinderedOnHitBySpells3__"] = { type = "ScourgeDownside", affix = "", "Spell Hits Hinder you", statOrder = { 5350 }, level = 68, group = "HellscapeDownsideHinderedOnHitBySpells", weightKey = { "body_armour", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["HellscapeDownsideChanceToBeSilencedWhenHit3__"] = { type = "ScourgeDownside", affix = "", "(21-30)% chance to Curse you with Silence when Hit", statOrder = { 5710 }, level = 68, group = "HellscapeDownsideChanceToBeSilencedWhenHit", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["HellscapeDownsideMinusLocalEvasionArmourEnergyShieldPercent0__"] = { type = "ScourgeDownside", affix = "", "(21-30)% reduced Armour, Evasion and Energy Shield", statOrder = { 1438 }, level = 1, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, }, - ["HellscapeDownsideMinusLocalEvasionArmourEnergyShieldPercent1_"] = { type = "ScourgeDownside", affix = "", "(31-40)% reduced Armour, Evasion and Energy Shield", statOrder = { 1438 }, level = 1, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, }, - ["HellscapeDownsideMinusLocalEvasionArmourEnergyShieldPercent2_"] = { type = "ScourgeDownside", affix = "", "(41-50)% reduced Armour, Evasion and Energy Shield", statOrder = { 1438 }, level = 45, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, }, - ["HellscapeDownsideMinusLocalEvasionArmourEnergyShieldPercent3"] = { type = "ScourgeDownside", affix = "", "(51-60)% reduced Armour, Evasion and Energy Shield", statOrder = { 1438 }, level = 68, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, }, - ["HellscapeDownsideMaximumElementalResistance1"] = { type = "ScourgeDownside", affix = "", "-1% to all maximum Elemental Resistances", statOrder = { 1524 }, level = 68, group = "MaximumElementalResistance", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "resistance" }, }, - ["HellscapeDownsideMaximumChaosResistance1"] = { type = "ScourgeDownside", affix = "", "-1% to maximum Chaos Resistance", statOrder = { 1521 }, level = 68, group = "MaximumChaosResistance", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { "chaos", "resistance" }, }, - ["HellscapeDownsideElementalResistanceMinion2__"] = { type = "ScourgeDownside", affix = "", "Minions have -(33-30)% to all Elemental Resistances", statOrder = { 2786 }, level = 45, group = "MinionElementalResistance", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "resistance", "minion" }, }, - ["HellscapeDownsideElementalResistanceMinion3"] = { type = "ScourgeDownside", affix = "", "Minions have -(39-36)% to all Elemental Resistances", statOrder = { 2786 }, level = 68, group = "MinionElementalResistance", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "resistance", "minion" }, }, - ["HellscapeDownsideChaosResistanceMinion2"] = { type = "ScourgeDownside", affix = "", "Minions have -(51-42)% to Chaos Resistance", statOrder = { 2787 }, level = 45, group = "MinionChaosResistance", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "chaos", "resistance", "minion" }, }, - ["HellscapeDownsideChaosResistanceMinion3"] = { type = "ScourgeDownside", affix = "", "Minions have -(63-54)% to Chaos Resistance", statOrder = { 2787 }, level = 68, group = "MinionChaosResistance", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "chaos", "resistance", "minion" }, }, - ["HellscapeDownsideAllAilmentDuration2"] = { type = "ScourgeDownside", affix = "", "(21-25)% reduced Duration of Ailments on Enemies", statOrder = { 1741 }, level = 45, group = "IncreasedAilmentDuration", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "ailment" }, }, - ["HellscapeDownsideAllAilmentDuration3__"] = { type = "ScourgeDownside", affix = "", "(26-30)% reduced Duration of Ailments on Enemies", statOrder = { 1741 }, level = 68, group = "IncreasedAilmentDuration", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "ailment" }, }, - ["HellscapeDownsideElementalDurationOnSelf2"] = { type = "ScourgeDownside", affix = "", "(17-19)% increased Elemental Ailment Duration on you", statOrder = { 1748 }, level = 45, group = "SelfStatusAilmentDuration", weightKey = { "boots", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "ailment" }, }, - ["HellscapeDownsideElementalDurationOnSelf3__"] = { type = "ScourgeDownside", affix = "", "(20-22)% increased Elemental Ailment Duration on you", statOrder = { 1748 }, level = 68, group = "SelfStatusAilmentDuration", weightKey = { "boots", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "ailment" }, }, - ["HellscapeDownsideLifeOnBlock2__"] = { type = "ScourgeDownside", affix = "", "Lose (31-40) Life when you Block", statOrder = { 1638 }, level = 45, group = "GainLifeOnBlock", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "resource", "life" }, }, - ["HellscapeDownsideLifeOnBlock3"] = { type = "ScourgeDownside", affix = "", "Lose (41-50) Life when you Block", statOrder = { 1638 }, level = 68, group = "GainLifeOnBlock", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "resource", "life" }, }, - ["HellscapeDownsideManaOnBlock2_"] = { type = "ScourgeDownside", affix = "", "Lose (31-40) Mana when you Block", statOrder = { 1639 }, level = 45, group = "GainManaOnBlock", weightKey = { "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "resource", "mana" }, }, - ["HellscapeDownsideManaOnBlock3_____"] = { type = "ScourgeDownside", affix = "", "Lose (41-50) Mana when you Block", statOrder = { 1639 }, level = 68, group = "GainManaOnBlock", weightKey = { "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "resource", "mana" }, }, - ["HellscapeDownsideEnergyShieldOnBlock2___"] = { type = "ScourgeDownside", affix = "", "Lose (31-40) Energy Shield when you Block", statOrder = { 1640 }, level = 45, group = "GainEnergyShieldOnBlock", weightKey = { "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "defences", "energy_shield" }, }, - ["HellscapeDownsideEnergyShieldOnBlock3"] = { type = "ScourgeDownside", affix = "", "Lose (41-50) Energy Shield when you Block", statOrder = { 1640 }, level = 68, group = "GainEnergyShieldOnBlock", weightKey = { "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "defences", "energy_shield" }, }, - ["HellscapeDownsideChanceToBlockAttacks2"] = { type = "ScourgeDownside", affix = "", "-(10-8)% Chance to Block Attack Damage", statOrder = { 2334 }, level = 45, group = "AdditionalBlock", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { "block" }, }, - ["HellscapeDownsideChanceToBlockAttacks3"] = { type = "ScourgeDownside", affix = "", "-(14-12)% Chance to Block Attack Damage", statOrder = { 2334 }, level = 68, group = "AdditionalBlock", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { "block" }, }, - ["HellscapeDownsideChanceToBlockSpells2"] = { type = "ScourgeDownside", affix = "", "-(10-8)% Chance to Block Spell Damage", statOrder = { 1044 }, level = 45, group = "AdditionalSpellBlock", weightKey = { "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "block" }, }, - ["HellscapeDownsideChanceToBlockSpells3"] = { type = "ScourgeDownside", affix = "", "-(14-12)% Chance to Block Spell Damage", statOrder = { 1044 }, level = 68, group = "AdditionalSpellBlock", weightKey = { "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "block" }, }, - ["HellscapeDownsideChanceToSuppressSpells2"] = { type = "ScourgeDownside", affix = "", "-(18-15)% chance to Suppress Spell Damage", statOrder = { 1032 }, level = 45, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "gloves", "boots", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 500, 250, 250, 150, 0 }, modTags = { }, }, - ["HellscapeDownsideChanceToSuppressSpells3"] = { type = "ScourgeDownside", affix = "", "-(24-21)% chance to Suppress Spell Damage", statOrder = { 1032 }, level = 68, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "gloves", "boots", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 500, 250, 250, 150, 0 }, modTags = { }, }, - ["HellscapeDownsideSpellDamage1h0"] = { type = "ScourgeDownside", affix = "", "(32-40)% reduced Spell Damage", statOrder = { 1108 }, level = 1, group = "SpellDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["HellscapeDownsideSpellDamage1h1_"] = { type = "ScourgeDownside", affix = "", "(42-50)% reduced Spell Damage", statOrder = { 1108 }, level = 1, group = "SpellDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["HellscapeDownsideSpellDamage1h1b_"] = { type = "ScourgeDownside", affix = "", "(52-60)% reduced Spell Damage", statOrder = { 1108 }, level = 25, group = "SpellDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["HellscapeDownsideSpellDamage1h2"] = { type = "ScourgeDownside", affix = "", "(62-70)% reduced Spell Damage", statOrder = { 1108 }, level = 45, group = "SpellDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["HellscapeDownsideSpellDamage1h2b"] = { type = "ScourgeDownside", affix = "", "(72-80)% reduced Spell Damage", statOrder = { 1108 }, level = 55, group = "SpellDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["HellscapeDownsideSpellDamage1h3_"] = { type = "ScourgeDownside", affix = "", "(82-90)% reduced Spell Damage", statOrder = { 1108 }, level = 68, group = "SpellDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["HellscapeDownsideSpellDamage2h0"] = { type = "ScourgeDownside", affix = "", "(54-66)% reduced Spell Damage", statOrder = { 1108 }, level = 1, group = "SpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["HellscapeDownsideSpellDamage2h1_"] = { type = "ScourgeDownside", affix = "", "(68-80)% reduced Spell Damage", statOrder = { 1108 }, level = 1, group = "SpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["HellscapeDownsideSpellDamage2h1b_"] = { type = "ScourgeDownside", affix = "", "(82-94)% reduced Spell Damage", statOrder = { 1108 }, level = 25, group = "SpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["HellscapeDownsideSpellDamage2h2____"] = { type = "ScourgeDownside", affix = "", "(96-108)% reduced Spell Damage", statOrder = { 1108 }, level = 45, group = "SpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["HellscapeDownsideSpellDamage2h2b"] = { type = "ScourgeDownside", affix = "", "(110-122)% reduced Spell Damage", statOrder = { 1108 }, level = 55, group = "SpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["HellscapeDownsideSpellDamage2h3"] = { type = "ScourgeDownside", affix = "", "(124-136)% reduced Spell Damage", statOrder = { 1108 }, level = 68, group = "SpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["HellscapeDownsideColdDamage1h0_"] = { type = "ScourgeDownside", affix = "", "(32-40)% reduced Cold Damage", statOrder = { 1250 }, level = 1, group = "ColdDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["HellscapeDownsideColdDamage1h1"] = { type = "ScourgeDownside", affix = "", "(42-50)% reduced Cold Damage", statOrder = { 1250 }, level = 1, group = "ColdDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["HellscapeDownsideColdDamage1h1b"] = { type = "ScourgeDownside", affix = "", "(52-60)% reduced Cold Damage", statOrder = { 1250 }, level = 25, group = "ColdDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["HellscapeDownsideColdDamage1h2"] = { type = "ScourgeDownside", affix = "", "(62-70)% reduced Cold Damage", statOrder = { 1250 }, level = 45, group = "ColdDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["HellscapeDownsideColdDamage1h2b_______"] = { type = "ScourgeDownside", affix = "", "(72-80)% reduced Cold Damage", statOrder = { 1250 }, level = 55, group = "ColdDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["HellscapeDownsideColdDamage1h3"] = { type = "ScourgeDownside", affix = "", "(82-90)% reduced Cold Damage", statOrder = { 1250 }, level = 68, group = "ColdDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["HellscapeDownsideColdDamage2h0__"] = { type = "ScourgeDownside", affix = "", "(54-66)% reduced Cold Damage", statOrder = { 1250 }, level = 1, group = "ColdDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["HellscapeDownsideColdDamage2h1"] = { type = "ScourgeDownside", affix = "", "(68-80)% reduced Cold Damage", statOrder = { 1250 }, level = 1, group = "ColdDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["HellscapeDownsideColdDamage2h1b"] = { type = "ScourgeDownside", affix = "", "(82-94)% reduced Cold Damage", statOrder = { 1250 }, level = 25, group = "ColdDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["HellscapeDownsideColdDamage2h2_"] = { type = "ScourgeDownside", affix = "", "(96-108)% reduced Cold Damage", statOrder = { 1250 }, level = 45, group = "ColdDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["HellscapeDownsideColdDamage2h2b_"] = { type = "ScourgeDownside", affix = "", "(110-122)% reduced Cold Damage", statOrder = { 1250 }, level = 55, group = "ColdDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["HellscapeDownsideColdDamage2h3__"] = { type = "ScourgeDownside", affix = "", "(124-136)% reduced Cold Damage", statOrder = { 1250 }, level = 68, group = "ColdDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["HellscapeDownsideFireDamage1h0_"] = { type = "ScourgeDownside", affix = "", "(32-40)% reduced Fire Damage", statOrder = { 1241 }, level = 1, group = "FireDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["HellscapeDownsideFireDamage1h1_"] = { type = "ScourgeDownside", affix = "", "(42-50)% reduced Fire Damage", statOrder = { 1241 }, level = 1, group = "FireDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["HellscapeDownsideFireDamage1h1b"] = { type = "ScourgeDownside", affix = "", "(52-60)% reduced Fire Damage", statOrder = { 1241 }, level = 25, group = "FireDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["HellscapeDownsideFireDamage1h2"] = { type = "ScourgeDownside", affix = "", "(62-70)% reduced Fire Damage", statOrder = { 1241 }, level = 45, group = "FireDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["HellscapeDownsideFireDamage1h2b"] = { type = "ScourgeDownside", affix = "", "(72-80)% reduced Fire Damage", statOrder = { 1241 }, level = 55, group = "FireDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["HellscapeDownsideFireDamage1h3_"] = { type = "ScourgeDownside", affix = "", "(82-90)% reduced Fire Damage", statOrder = { 1241 }, level = 68, group = "FireDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["HellscapeDownsideFireDamage2h0"] = { type = "ScourgeDownside", affix = "", "(54-66)% reduced Fire Damage", statOrder = { 1241 }, level = 1, group = "FireDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["HellscapeDownsideFireDamage2h1__"] = { type = "ScourgeDownside", affix = "", "(68-80)% reduced Fire Damage", statOrder = { 1241 }, level = 1, group = "FireDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["HellscapeDownsideFireDamage2h1b"] = { type = "ScourgeDownside", affix = "", "(82-94)% reduced Fire Damage", statOrder = { 1241 }, level = 25, group = "FireDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["HellscapeDownsideFireDamage2h2_"] = { type = "ScourgeDownside", affix = "", "(96-108)% reduced Fire Damage", statOrder = { 1241 }, level = 45, group = "FireDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["HellscapeDownsideFireDamage2h2b"] = { type = "ScourgeDownside", affix = "", "(110-122)% reduced Fire Damage", statOrder = { 1241 }, level = 55, group = "FireDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["HellscapeDownsideFireDamage2h3____"] = { type = "ScourgeDownside", affix = "", "(124-136)% reduced Fire Damage", statOrder = { 1241 }, level = 68, group = "FireDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["HellscapeDownsideLightningDamage1h0"] = { type = "ScourgeDownside", affix = "", "(32-40)% reduced Lightning Damage", statOrder = { 1261 }, level = 1, group = "LightningDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["HellscapeDownsideLightningDamage1h1"] = { type = "ScourgeDownside", affix = "", "(42-50)% reduced Lightning Damage", statOrder = { 1261 }, level = 1, group = "LightningDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["HellscapeDownsideLightningDamage1h1b___"] = { type = "ScourgeDownside", affix = "", "(52-60)% reduced Lightning Damage", statOrder = { 1261 }, level = 25, group = "LightningDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["HellscapeDownsideLightningDamage1h2"] = { type = "ScourgeDownside", affix = "", "(62-70)% reduced Lightning Damage", statOrder = { 1261 }, level = 45, group = "LightningDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["HellscapeDownsideLightningDamage1h2b_"] = { type = "ScourgeDownside", affix = "", "(72-80)% reduced Lightning Damage", statOrder = { 1261 }, level = 55, group = "LightningDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["HellscapeDownsideLightningDamage1h3"] = { type = "ScourgeDownside", affix = "", "(82-90)% reduced Lightning Damage", statOrder = { 1261 }, level = 68, group = "LightningDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["HellscapeDownsideLightningDamage2h0"] = { type = "ScourgeDownside", affix = "", "(54-66)% reduced Lightning Damage", statOrder = { 1261 }, level = 1, group = "LightningDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["HellscapeDownsideLightningDamage2h1"] = { type = "ScourgeDownside", affix = "", "(68-80)% reduced Lightning Damage", statOrder = { 1261 }, level = 1, group = "LightningDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["HellscapeDownsideLightningDamage2h1b"] = { type = "ScourgeDownside", affix = "", "(82-94)% reduced Lightning Damage", statOrder = { 1261 }, level = 25, group = "LightningDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["HellscapeDownsideLightningDamage2h2___"] = { type = "ScourgeDownside", affix = "", "(96-108)% reduced Lightning Damage", statOrder = { 1261 }, level = 45, group = "LightningDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["HellscapeDownsideLightningDamage2h2b"] = { type = "ScourgeDownside", affix = "", "(110-122)% reduced Lightning Damage", statOrder = { 1261 }, level = 55, group = "LightningDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["HellscapeDownsideLightningDamage2h3__"] = { type = "ScourgeDownside", affix = "", "(124-136)% reduced Lightning Damage", statOrder = { 1261 }, level = 68, group = "LightningDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["HellscapeDownsidePhysicalDamage1h0"] = { type = "ScourgeDownside", affix = "", "(32-40)% reduced Global Physical Damage", statOrder = { 1116 }, level = 1, group = "PhysicalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["HellscapeDownsidePhysicalDamage1h1"] = { type = "ScourgeDownside", affix = "", "(42-50)% reduced Global Physical Damage", statOrder = { 1116 }, level = 1, group = "PhysicalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["HellscapeDownsidePhysicalDamage1h1b___"] = { type = "ScourgeDownside", affix = "", "(52-60)% reduced Global Physical Damage", statOrder = { 1116 }, level = 25, group = "PhysicalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["HellscapeDownsidePhysicalDamage1h2_"] = { type = "ScourgeDownside", affix = "", "(62-70)% reduced Global Physical Damage", statOrder = { 1116 }, level = 45, group = "PhysicalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["HellscapeDownsidePhysicalDamage1h2b"] = { type = "ScourgeDownside", affix = "", "(72-80)% reduced Global Physical Damage", statOrder = { 1116 }, level = 55, group = "PhysicalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["HellscapeDownsidePhysicalDamage1h3"] = { type = "ScourgeDownside", affix = "", "(82-90)% reduced Global Physical Damage", statOrder = { 1116 }, level = 68, group = "PhysicalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["HellscapeDownsidePhysicalDamage2h0"] = { type = "ScourgeDownside", affix = "", "(54-66)% reduced Global Physical Damage", statOrder = { 1116 }, level = 1, group = "PhysicalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["HellscapeDownsidePhysicalDamage2h1_"] = { type = "ScourgeDownside", affix = "", "(68-80)% reduced Global Physical Damage", statOrder = { 1116 }, level = 1, group = "PhysicalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["HellscapeDownsidePhysicalDamage2h1b"] = { type = "ScourgeDownside", affix = "", "(82-94)% reduced Global Physical Damage", statOrder = { 1116 }, level = 25, group = "PhysicalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["HellscapeDownsidePhysicalDamage2h2"] = { type = "ScourgeDownside", affix = "", "(96-108)% reduced Global Physical Damage", statOrder = { 1116 }, level = 45, group = "PhysicalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["HellscapeDownsidePhysicalDamage2h2b__"] = { type = "ScourgeDownside", affix = "", "(110-122)% reduced Global Physical Damage", statOrder = { 1116 }, level = 55, group = "PhysicalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["HellscapeDownsidePhysicalDamage2h3______"] = { type = "ScourgeDownside", affix = "", "(124-136)% reduced Global Physical Damage", statOrder = { 1116 }, level = 68, group = "PhysicalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["HellscapeDownsideElementalDamage1h0"] = { type = "ScourgeDownside", affix = "", "(32-40)% reduced Elemental Damage", statOrder = { 1857 }, level = 1, group = "ElementalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["HellscapeDownsideElementalDamage1h1"] = { type = "ScourgeDownside", affix = "", "(42-50)% reduced Elemental Damage", statOrder = { 1857 }, level = 1, group = "ElementalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["HellscapeDownsideElementalDamage1h1b__"] = { type = "ScourgeDownside", affix = "", "(52-60)% reduced Elemental Damage", statOrder = { 1857 }, level = 25, group = "ElementalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["HellscapeDownsideElementalDamage1h2"] = { type = "ScourgeDownside", affix = "", "(62-70)% reduced Elemental Damage", statOrder = { 1857 }, level = 45, group = "ElementalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["HellscapeDownsideElementalDamage1h2b"] = { type = "ScourgeDownside", affix = "", "(72-80)% reduced Elemental Damage", statOrder = { 1857 }, level = 55, group = "ElementalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["HellscapeDownsideElementalDamage1h3__"] = { type = "ScourgeDownside", affix = "", "(82-90)% reduced Elemental Damage", statOrder = { 1857 }, level = 68, group = "ElementalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["HellscapeDownsideElementalDamage2h0"] = { type = "ScourgeDownside", affix = "", "(54-66)% reduced Elemental Damage", statOrder = { 1857 }, level = 1, group = "ElementalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["HellscapeDownsideElementalDamage2h1"] = { type = "ScourgeDownside", affix = "", "(68-80)% reduced Elemental Damage", statOrder = { 1857 }, level = 1, group = "ElementalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["HellscapeDownsideElementalDamage2h1b"] = { type = "ScourgeDownside", affix = "", "(82-94)% reduced Elemental Damage", statOrder = { 1857 }, level = 25, group = "ElementalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["HellscapeDownsideElementalDamage2h2"] = { type = "ScourgeDownside", affix = "", "(96-108)% reduced Elemental Damage", statOrder = { 1857 }, level = 45, group = "ElementalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["HellscapeDownsideElementalDamage2h2b"] = { type = "ScourgeDownside", affix = "", "(110-122)% reduced Elemental Damage", statOrder = { 1857 }, level = 55, group = "ElementalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["HellscapeDownsideElementalDamage2h3"] = { type = "ScourgeDownside", affix = "", "(124-136)% reduced Elemental Damage", statOrder = { 1857 }, level = 68, group = "ElementalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["HellscapeDownsideChaosDamage1h0"] = { type = "ScourgeDownside", affix = "", "(32-40)% reduced Chaos Damage", statOrder = { 1269 }, level = 1, group = "IncreasedChaosDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 250, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["HellscapeDownsideChaosDamage1h1"] = { type = "ScourgeDownside", affix = "", "(42-50)% reduced Chaos Damage", statOrder = { 1269 }, level = 1, group = "IncreasedChaosDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 250, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["HellscapeDownsideChaosDamage1h1b"] = { type = "ScourgeDownside", affix = "", "(52-60)% reduced Chaos Damage", statOrder = { 1269 }, level = 25, group = "IncreasedChaosDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 250, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["HellscapeDownsideChaosDamage1h2_"] = { type = "ScourgeDownside", affix = "", "(62-70)% reduced Chaos Damage", statOrder = { 1269 }, level = 45, group = "IncreasedChaosDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 250, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["HellscapeDownsideChaosDamage1h2b"] = { type = "ScourgeDownside", affix = "", "(72-80)% reduced Chaos Damage", statOrder = { 1269 }, level = 55, group = "IncreasedChaosDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 250, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["HellscapeDownsideChaosDamage1h3"] = { type = "ScourgeDownside", affix = "", "(82-90)% reduced Chaos Damage", statOrder = { 1269 }, level = 68, group = "IncreasedChaosDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 250, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["HellscapeDownsideChaosDamage2h0"] = { type = "ScourgeDownside", affix = "", "(54-66)% reduced Chaos Damage", statOrder = { 1269 }, level = 1, group = "IncreasedChaosDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["HellscapeDownsideChaosDamage2h1"] = { type = "ScourgeDownside", affix = "", "(68-80)% reduced Chaos Damage", statOrder = { 1269 }, level = 1, group = "IncreasedChaosDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["HellscapeDownsideChaosDamage2h1b"] = { type = "ScourgeDownside", affix = "", "(82-94)% reduced Chaos Damage", statOrder = { 1269 }, level = 25, group = "IncreasedChaosDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["HellscapeDownsideChaosDamage2h2_"] = { type = "ScourgeDownside", affix = "", "(96-108)% reduced Chaos Damage", statOrder = { 1269 }, level = 45, group = "IncreasedChaosDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["HellscapeDownsideChaosDamage2h2b"] = { type = "ScourgeDownside", affix = "", "(110-122)% reduced Chaos Damage", statOrder = { 1269 }, level = 55, group = "IncreasedChaosDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["HellscapeDownsideChaosDamage2h3"] = { type = "ScourgeDownside", affix = "", "(124-136)% reduced Chaos Damage", statOrder = { 1269 }, level = 68, group = "IncreasedChaosDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["HellscapeDownsideMinionDamage0"] = { type = "ScourgeDownside", affix = "", "Minions deal (18-21)% reduced Damage", statOrder = { 1852 }, level = 1, group = "MinionDamage", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "damage", "minion" }, }, - ["HellscapeDownsideMinionDamage1"] = { type = "ScourgeDownside", affix = "", "Minions deal (24-27)% reduced Damage", statOrder = { 1852 }, level = 1, group = "MinionDamage", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "damage", "minion" }, }, - ["HellscapeDownsideMinionDamage2"] = { type = "ScourgeDownside", affix = "", "Minions deal (30-33)% reduced Damage", statOrder = { 1852 }, level = 45, group = "MinionDamage", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "damage", "minion" }, }, - ["HellscapeDownsideMinionDamage3"] = { type = "ScourgeDownside", affix = "", "Minions deal (36-39)% reduced Damage", statOrder = { 1852 }, level = 68, group = "MinionDamage", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "damage", "minion" }, }, - ["HellscapeDownsideProjectileDamagePercentage0"] = { type = "ScourgeDownside", affix = "", "(18-21)% reduced Projectile Damage", statOrder = { 1873 }, level = 1, group = "ProjectileDamage", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "damage" }, }, - ["HellscapeDownsideProjectileDamagePercentage1__"] = { type = "ScourgeDownside", affix = "", "(24-27)% reduced Projectile Damage", statOrder = { 1873 }, level = 45, group = "ProjectileDamage", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "damage" }, }, - ["HellscapeDownsideProjectileDamagePercentage2_"] = { type = "ScourgeDownside", affix = "", "(30-33)% reduced Projectile Damage", statOrder = { 1873 }, level = 68, group = "ProjectileDamage", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "damage" }, }, - ["HellscapeDownsideProjectileDamagePercentage3_"] = { type = "ScourgeDownside", affix = "", "(36-39)% reduced Projectile Damage", statOrder = { 1873 }, level = 68, group = "ProjectileDamage", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "damage" }, }, - ["HellscapeDownsideCriticalStrikeChance2"] = { type = "ScourgeDownside", affix = "", "(51-57)% reduced Global Critical Strike Chance", statOrder = { 1343 }, level = 45, group = "CriticalStrikeChance", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "critical" }, }, - ["HellscapeDownsideCriticalStrikeChance3_"] = { type = "ScourgeDownside", affix = "", "(60-66)% reduced Global Critical Strike Chance", statOrder = { 1343 }, level = 68, group = "CriticalStrikeChance", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "critical" }, }, - ["HellscapeDownsideCriticalStrikeMultiplier2"] = { type = "ScourgeDownside", affix = "", "-(57-51)% to Global Critical Strike Multiplier", statOrder = { 1372 }, level = 45, group = "CriticalStrikeMultiplier", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "damage", "critical" }, }, - ["HellscapeDownsideCriticalStrikeMultiplier3__"] = { type = "ScourgeDownside", affix = "", "-(66-60)% to Global Critical Strike Multiplier", statOrder = { 1372 }, level = 68, group = "CriticalStrikeMultiplier", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "damage", "critical" }, }, - ["HellscapeDownsideCriticalStrikeChanceWithBows2"] = { type = "ScourgeDownside", affix = "", "(51-57)% reduced Critical Strike Chance with Bows", statOrder = { 1349 }, level = 45, group = "CriticalStrikeChanceWithBows", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "attack", "critical" }, }, - ["HellscapeDownsideCriticalStrikeChanceWithBows3"] = { type = "ScourgeDownside", affix = "", "(60-66)% reduced Critical Strike Chance with Bows", statOrder = { 1349 }, level = 68, group = "CriticalStrikeChanceWithBows", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "attack", "critical" }, }, - ["HellscapeDownsideCriticalStrikeMultiplierWithBows2"] = { type = "ScourgeDownside", affix = "", "-(57-51)% to Critical Strike Multiplier with Bows", statOrder = { 1379 }, level = 45, group = "CriticalStrikeMultiplierWithBows", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "damage", "attack", "critical" }, }, - ["HellscapeDownsideCriticalStrikeMultiplierWithBows3"] = { type = "ScourgeDownside", affix = "", "-(66-60)% to Critical Strike Multiplier with Bows", statOrder = { 1379 }, level = 68, group = "CriticalStrikeMultiplierWithBows", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "damage", "attack", "critical" }, }, - ["HellscapeDownsideDamageOverTimeMultiplier2"] = { type = "ScourgeDownside", affix = "", "-(30-24)% to Damage over Time Multiplier", statOrder = { 1127 }, level = 45, group = "GlobalDamageOverTimeMultiplier", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "dot_multi", "damage" }, }, - ["HellscapeDownsideDamageOverTimeMultiplier3"] = { type = "ScourgeDownside", affix = "", "-(39-33)% to Damage over Time Multiplier", statOrder = { 1127 }, level = 68, group = "GlobalDamageOverTimeMultiplier", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "dot_multi", "damage" }, }, - ["HellscapeDownsideAttackSpeed0"] = { type = "ScourgeDownside", affix = "", "(9-12)% reduced Attack Speed", statOrder = { 1294 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 500, 1000, 1000, 1000, 0 }, modTags = { "attack", "speed" }, }, - ["HellscapeDownsideAttackSpeed1__"] = { type = "ScourgeDownside", affix = "", "(15-18)% reduced Attack Speed", statOrder = { 1294 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 500, 1000, 1000, 1000, 0 }, modTags = { "attack", "speed" }, }, - ["HellscapeDownsideAttackSpeed2_"] = { type = "ScourgeDownside", affix = "", "(21-24)% reduced Attack Speed", statOrder = { 1294 }, level = 45, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 500, 1000, 1000, 1000, 0 }, modTags = { "attack", "speed" }, }, - ["HellscapeDownsideAttackSpeed3"] = { type = "ScourgeDownside", affix = "", "(27-30)% reduced Attack Speed", statOrder = { 1294 }, level = 68, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 500, 1000, 1000, 1000, 0 }, modTags = { "attack", "speed" }, }, - ["HellscapeDownsideCastSpeed0"] = { type = "ScourgeDownside", affix = "", "12% reduced Cast Speed", statOrder = { 1330 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "speed" }, }, - ["HellscapeDownsideCastSpeed1_"] = { type = "ScourgeDownside", affix = "", "15% reduced Cast Speed", statOrder = { 1330 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "speed" }, }, - ["HellscapeDownsideCastSpeed2"] = { type = "ScourgeDownside", affix = "", "18% reduced Cast Speed", statOrder = { 1330 }, level = 45, group = "IncreasedCastSpeed", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "speed" }, }, - ["HellscapeDownsideCastSpeed3"] = { type = "ScourgeDownside", affix = "", "21% reduced Cast Speed", statOrder = { 1330 }, level = 68, group = "IncreasedCastSpeed", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "speed" }, }, - ["HellscapeDownsideAttackAndCastSpeedMinion2_"] = { type = "ScourgeDownside", affix = "", "Minions have (21-24)% reduced Attack Speed", "Minions have (21-24)% reduced Cast Speed", statOrder = { 2781, 2782 }, level = 45, group = "MinionAttackAndCastSpeed", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, - ["HellscapeDownsideAttackAndCastSpeedMinion3"] = { type = "ScourgeDownside", affix = "", "Minions have (27-30)% reduced Attack Speed", "Minions have (27-30)% reduced Cast Speed", statOrder = { 2781, 2782 }, level = 68, group = "MinionAttackAndCastSpeed", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, - ["HellscapeDownsideLifeOnKill3__"] = { type = "ScourgeDownside", affix = "", "Lose 3% of Life on Kill", statOrder = { 1630 }, level = 68, group = "MaximumLifeOnKillPercent", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "life" }, }, - ["HellscapeDownsideManaOnKill3"] = { type = "ScourgeDownside", affix = "", "Lose 3% of Mana on Kill", statOrder = { 1632 }, level = 68, group = "MaximumManaOnKillPercent", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, }, - ["HellscapeDownsideEnergyShieldOnKill3"] = { type = "ScourgeDownside", affix = "", "Lose 3% of Energy Shield on Kill", statOrder = { 1631 }, level = 68, group = "MaximumEnergyShieldOnKillPercent", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "defences", "energy_shield" }, }, - ["HellscapeDownsideAccuracyPercent2"] = { type = "ScourgeDownside", affix = "", "(33-42)% reduced Global Accuracy Rating", statOrder = { 1318 }, level = 45, group = "IncreasedAccuracyPercent", weightKey = { "gloves", "quiver", "default", }, weightVal = { 250, 250, 0 }, modTags = { "attack" }, }, - ["HellscapeDownsideAccuracyPercent3__"] = { type = "ScourgeDownside", affix = "", "(45-51)% reduced Global Accuracy Rating", statOrder = { 1318 }, level = 68, group = "IncreasedAccuracyPercent", weightKey = { "gloves", "quiver", "default", }, weightVal = { 250, 250, 0 }, modTags = { "attack" }, }, - ["HellscapeDownsideLocalIncreaseSocketedGemLevel"] = { type = "ScourgeDownside", affix = "", "-2 to Level of Socketed Gems", statOrder = { 141 }, level = 68, group = "LocalIncreaseSocketedGemLevel", weightKey = { "body_armour", "default", }, weightVal = { 500, 0 }, modTags = { "gem" }, }, - ["HellscapeDownsideGlobalIncreaseSpellSpellSkillGemLevel1h"] = { type = "ScourgeDownside", affix = "", "-2 to Level of all Spell Skill Gems", statOrder = { 1490 }, level = 68, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { "attack_dagger", "wand", "dagger", "focus", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { "caster", "gem" }, }, - ["HellscapeDownsideGlobalIncreaseSpellSpellSkillGemLevel2h"] = { type = "ScourgeDownside", affix = "", "-4 to Level of all Spell Skill Gems", statOrder = { 1490 }, level = 68, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster", "gem" }, }, - ["HellscapeDownsideAdditionalRaisedZombie1"] = { type = "ScourgeDownside", affix = "", "-2 to maximum number of Raised Zombies", statOrder = { 2037 }, level = 45, group = "MaximumZombieCount", weightKey = { "boots", "default", }, weightVal = { 200, 0 }, modTags = { "minion" }, }, - ["HellscapeDownsideAdditionalSkeleton1"] = { type = "ScourgeDownside", affix = "", "-2 to maximum number of Skeletons", statOrder = { 2039 }, level = 45, group = "MaximumSkeletonCount", weightKey = { "boots", "default", }, weightVal = { 200, 0 }, modTags = { "minion" }, }, - ["HellscapeDownsideAreaDamage0___"] = { type = "ScourgeDownside", affix = "", "(24-30)% reduced Area Damage", statOrder = { 1912 }, level = 1, group = "AreaDamage", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, }, - ["HellscapeDownsideAreaDamage1"] = { type = "ScourgeDownside", affix = "", "(33-45)% reduced Area Damage", statOrder = { 1912 }, level = 1, group = "AreaDamage", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, }, - ["HellscapeDownsideAreaDamage2_"] = { type = "ScourgeDownside", affix = "", "(48-60)% reduced Area Damage", statOrder = { 1912 }, level = 45, group = "AreaDamage", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, }, - ["HellscapeDownsideAreaDamage3"] = { type = "ScourgeDownside", affix = "", "(63-75)% reduced Area Damage", statOrder = { 1912 }, level = 68, group = "AreaDamage", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, }, - ["HellscapeDownsideRarityOfItemsFound0"] = { type = "ScourgeDownside", affix = "", "(18-21)% reduced Rarity of Items found", statOrder = { 1478 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "drop" }, }, - ["HellscapeDownsideRarityOfItemsFound1_"] = { type = "ScourgeDownside", affix = "", "(24-27)% reduced Rarity of Items found", statOrder = { 1478 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "drop" }, }, - ["HellscapeDownsideRarityOfItemsFound2"] = { type = "ScourgeDownside", affix = "", "(30-33)% reduced Rarity of Items found", statOrder = { 1478 }, level = 45, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "drop" }, }, - ["HellscapeDownsideRarityOfItemsFound3"] = { type = "ScourgeDownside", affix = "", "(36-39)% reduced Rarity of Items found", statOrder = { 1478 }, level = 68, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "drop" }, }, - ["HellscapeDownsideLifeRegeneration2"] = { type = "ScourgeDownside", affix = "", "(21-27)% reduced Life Regeneration rate", statOrder = { 1459 }, level = 45, group = "LifeRegenerationRate", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "helmet", "boots", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "resource", "life" }, }, - ["HellscapeDownsideLifeRegeneration3"] = { type = "ScourgeDownside", affix = "", "(30-36)% reduced Life Regeneration rate", statOrder = { 1459 }, level = 68, group = "LifeRegenerationRate", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "helmet", "boots", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "resource", "life" }, }, - ["HellscapeDownsideMovementVelocity0"] = { type = "ScourgeDownside", affix = "", "(6-7)% reduced Movement Speed", statOrder = { 1679 }, level = 1, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, }, - ["HellscapeDownsideMovementVelocity1_"] = { type = "ScourgeDownside", affix = "", "(8-9)% reduced Movement Speed", statOrder = { 1679 }, level = 1, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, }, - ["HellscapeDownsideMovementVelocity2"] = { type = "ScourgeDownside", affix = "", "(10-11)% reduced Movement Speed", statOrder = { 1679 }, level = 45, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, }, - ["HellscapeDownsideMovementVelocity3"] = { type = "ScourgeDownside", affix = "", "(12-13)% reduced Movement Speed", statOrder = { 1679 }, level = 68, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, }, - ["HellscapeDownsideMovementSkillsAreDisabled1_"] = { type = "ScourgeDownside", affix = "", "Your Movement Skills are Disabled", statOrder = { 10147 }, level = 68, group = "MovementSkillsAreDisabled", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["HellscapeDownsideManaRegeneration0"] = { type = "ScourgeDownside", affix = "", "(16-20)% reduced Mana Regeneration Rate", statOrder = { 1466 }, level = 1, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "staff", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["HellscapeDownsideManaRegeneration1"] = { type = "ScourgeDownside", affix = "", "(21-25)% reduced Mana Regeneration Rate", statOrder = { 1466 }, level = 1, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "staff", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["HellscapeDownsideManaRegeneration2__"] = { type = "ScourgeDownside", affix = "", "(26-30)% reduced Mana Regeneration Rate", statOrder = { 1466 }, level = 45, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "staff", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["HellscapeDownsideManaRegeneration2b"] = { type = "ScourgeDownside", affix = "", "(31-35)% reduced Mana Regeneration Rate", statOrder = { 1466 }, level = 55, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "staff", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "mana" }, }, - ["HellscapeDownsideManaRegeneration3"] = { type = "ScourgeDownside", affix = "", "(36-40)% reduced Mana Regeneration Rate", statOrder = { 1466 }, level = 68, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "staff", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["HellscapeDownsideManaRegeneration3b"] = { type = "ScourgeDownside", affix = "", "(46-50)% reduced Mana Regeneration Rate", statOrder = { 1466 }, level = 68, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "staff", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "mana" }, }, - ["HellscapeDownsideManaRegenFlat0________"] = { type = "ScourgeDownside", affix = "", "Lose (3.3-4.2) Mana per Second", statOrder = { 7744 }, level = 1, group = "HellscapeLoseManaPerSecond", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["HellscapeDownsideManaRegenFlat1"] = { type = "ScourgeDownside", affix = "", "Lose (4.6-5.7) Mana per Second", statOrder = { 7744 }, level = 1, group = "HellscapeLoseManaPerSecond", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["HellscapeDownsideManaRegenFlat1b_"] = { type = "ScourgeDownside", affix = "", "Lose (5.8-6.7) Mana per Second", statOrder = { 7744 }, level = 15, group = "HellscapeLoseManaPerSecond", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["HellscapeDownsideManaRegenFlat1c"] = { type = "ScourgeDownside", affix = "", "Lose (7.7-8.3) Mana per Second", statOrder = { 7744 }, level = 25, group = "HellscapeLoseManaPerSecond", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["HellscapeDownsideManaRegenFlat1d"] = { type = "ScourgeDownside", affix = "", "Lose (9.3-10) Mana per Second", statOrder = { 7744 }, level = 35, group = "HellscapeLoseManaPerSecond", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["HellscapeDownsideManaRegenFlat2"] = { type = "ScourgeDownside", affix = "", "Lose (11-11.7) Mana per Second", statOrder = { 7744 }, level = 45, group = "HellscapeLoseManaPerSecond", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["HellscapeDownsideManaRegenFlat2b"] = { type = "ScourgeDownside", affix = "", "Lose (12.7-13.3) Mana per Second", statOrder = { 7744 }, level = 55, group = "HellscapeLoseManaPerSecond", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["HellscapeDownsideManaRegenFlat3"] = { type = "ScourgeDownside", affix = "", "Lose (14.3-15) Mana per Second", statOrder = { 7744 }, level = 68, group = "HellscapeLoseManaPerSecond", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["HellscapeDownsideCannotLeechLife1"] = { type = "ScourgeDownside", affix = "", "Cannot Leech Life", statOrder = { 2443 }, level = 68, group = "CannotLeechLife", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, }, - ["HellscapeDownsideCannotLeechMana1_"] = { type = "ScourgeDownside", affix = "", "Cannot Leech Mana", statOrder = { 2444 }, level = 68, group = "CannotLeechMana", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["HellscapeDownsideCannotLeechEnergyShield1"] = { type = "ScourgeDownside", affix = "", "Cannot Leech Energy Shield", statOrder = { 4816 }, level = 68, group = "CannotLeechEnergyShield", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["HellscapeDownsideFlaskChargesGained2_"] = { type = "ScourgeDownside", affix = "", "(22-30)% reduced Flask Charges gained", statOrder = { 2060 }, level = 45, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, - ["HellscapeDownsideFlaskChargesGained3__"] = { type = "ScourgeDownside", affix = "", "(32-40)% reduced Flask Charges gained", statOrder = { 2060 }, level = 68, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, - ["HellscapeDownsideFlaskChargesUsed2"] = { type = "ScourgeDownside", affix = "", "(32-40)% increased Flask Charges used", statOrder = { 2061 }, level = 45, group = "BeltReducedFlaskChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, - ["HellscapeDownsideFlaskChargesUsed3"] = { type = "ScourgeDownside", affix = "", "(42-50)% increased Flask Charges used", statOrder = { 2061 }, level = 68, group = "BeltReducedFlaskChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, - ["HellscapeDownsideFlaskLifeRecoveryRate2"] = { type = "ScourgeDownside", affix = "", "(24-28)% reduced Life Recovery from Flasks", statOrder = { 1936 }, level = 45, group = "BeltFlaskLifeRecovery", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "life" }, }, - ["HellscapeDownsideFlaskLifeRecoveryRate3_"] = { type = "ScourgeDownside", affix = "", "(30-34)% reduced Life Recovery from Flasks", statOrder = { 1936 }, level = 68, group = "BeltFlaskLifeRecovery", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "life" }, }, - ["HellscapeDownsideFlaskManaRecoveryRate2_"] = { type = "ScourgeDownside", affix = "", "(24-28)% reduced Mana Recovery from Flasks", statOrder = { 1937 }, level = 45, group = "BeltFlaskManaRecovery", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "mana" }, }, - ["HellscapeDownsideFlaskManaRecoveryRate3___"] = { type = "ScourgeDownside", affix = "", "(30-34)% reduced Mana Recovery from Flasks", statOrder = { 1937 }, level = 68, group = "BeltFlaskManaRecovery", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "mana" }, }, - ["HellscapeDownsideCannotApplyBleed1"] = { type = "ScourgeDownside", affix = "", "Attacks cannot cause Bleeding", statOrder = { 2365 }, level = 68, group = "CannotCauseBleeding", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["HellscapeDownsideCannotApplyPoison1_"] = { type = "ScourgeDownside", affix = "", "Your Chaos Damage cannot Poison", "Your Physical Damage cannot Poison", statOrder = { 2762, 2764 }, level = 68, group = "CannotCausePoison", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["HellscapeDownsideCannotApplyStun1"] = { type = "ScourgeDownside", affix = "", "Your Hits cannot Stun Enemies", statOrder = { 1736 }, level = 68, group = "CannotStun", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["HellscapeDownsideCooldownRecoveryRate3"] = { type = "ScourgeDownside", affix = "", "(12-16)% reduced Cooldown Recovery Rate", statOrder = { 4822 }, level = 68, group = "GlobalCooldownRecovery", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["HellscapeDownsideLifePercentage3"] = { type = "ScourgeDownside", affix = "", "(15-18)% reduced maximum Life", statOrder = { 1453 }, level = 68, group = "MaximumLifeIncreasePercent", weightKey = { "body_armour", "belt", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resource", "life" }, }, - ["HellscapeDownsideManaPercentage3"] = { type = "ScourgeDownside", affix = "", "(15-18)% reduced maximum Mana", statOrder = { 1462 }, level = 68, group = "MaximumManaIncreasePercent", weightKey = { "helmet", "body_armour", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["HellscapeDownsideCursedWithDespair1"] = { type = "ScourgeDownside", affix = "", "You are Cursed with Despair", statOrder = { 10108 }, level = 68, group = "SelfCurseDespair", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["HellscapeDownsideCursedWithElementalWeakness1"] = { type = "ScourgeDownside", affix = "", "You are Cursed with Elemental Weakness", statOrder = { 10109 }, level = 68, group = "SelfCurseElementalWeakness", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["HellscapeDownsideCursedWithEnfeeble1"] = { type = "ScourgeDownside", affix = "", "You are Cursed with Enfeeble", statOrder = { 10110 }, level = 68, group = "SelfCurseEnfeeble", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["HellscapeDownsideCursedWithTemporalChains1"] = { type = "ScourgeDownside", affix = "", "You are Cursed with Temporal Chains", statOrder = { 10113 }, level = 68, group = "SelfCurseTemporalChains", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["HellscapeDownsideCursedWithVulnerability1____"] = { type = "ScourgeDownside", affix = "", "You are Cursed with Vulnerability", statOrder = { 10114 }, level = 68, group = "SelfCurseVulnerability", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["HellscapeDownsideCursedWithConductivity1"] = { type = "ScourgeDownside", affix = "", "You are Cursed with Conductivity", statOrder = { 10107 }, level = 68, group = "SelfCurseConductivity", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["HellscapeDownsideCursedWithFlammability1"] = { type = "ScourgeDownside", affix = "", "You are Cursed with Flammability", statOrder = { 10111 }, level = 68, group = "SelfCurseFlammability", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["HellscapeDownsideCursedWithFrostbite1"] = { type = "ScourgeDownside", affix = "", "You are Cursed with Frostbite", statOrder = { 10112 }, level = 68, group = "SelfCurseFrostbite", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["HellscapeDownsidePhysicalDamageTaken2"] = { type = "ScourgeDownside", affix = "", "(7-8)% increased Physical Damage taken", statOrder = { 2118 }, level = 45, group = "PhysicalDamageTaken", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "physical" }, }, - ["HellscapeDownsidePhysicalDamageTaken3____"] = { type = "ScourgeDownside", affix = "", "(9-10)% increased Physical Damage taken", statOrder = { 2118 }, level = 68, group = "PhysicalDamageTaken", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "physical" }, }, - ["HellscapeDownsideFireDamageTaken2_"] = { type = "ScourgeDownside", affix = "", "(7-8)% increased Fire Damage taken", statOrder = { 2119 }, level = 45, group = "FireDamageTaken", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "fire" }, }, - ["HellscapeDownsideFireDamageTaken3_"] = { type = "ScourgeDownside", affix = "", "(9-10)% increased Fire Damage taken", statOrder = { 2119 }, level = 68, group = "FireDamageTaken", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "fire" }, }, - ["HellscapeDownsideColdDamageTaken2"] = { type = "ScourgeDownside", affix = "", "(7-8)% increased Cold Damage taken", statOrder = { 3255 }, level = 45, group = "ColdDamageTakenPercentage", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "cold" }, }, - ["HellscapeDownsideColdDamageTaken3"] = { type = "ScourgeDownside", affix = "", "(9-10)% increased Cold Damage taken", statOrder = { 3255 }, level = 68, group = "ColdDamageTakenPercentage", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "cold" }, }, - ["HellscapeDownsideLightningDamageTaken2"] = { type = "ScourgeDownside", affix = "", "(7-8)% increased Lightning Damage taken", statOrder = { 3254 }, level = 45, group = "LightningDamageTaken", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "lightning" }, }, - ["HellscapeDownsideLightningDamageTaken3"] = { type = "ScourgeDownside", affix = "", "(9-10)% increased Lightning Damage taken", statOrder = { 3254 }, level = 68, group = "LightningDamageTaken", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "lightning" }, }, - ["HellscapeDownsideChaosDamageTaken2"] = { type = "ScourgeDownside", affix = "", "(7-8)% increased Chaos Damage taken", statOrder = { 2120 }, level = 45, group = "ChaosDamageTakenPercentage", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "chaos" }, }, - ["HellscapeDownsideChaosDamageTaken3"] = { type = "ScourgeDownside", affix = "", "(9-10)% increased Chaos Damage taken", statOrder = { 2120 }, level = 68, group = "ChaosDamageTakenPercentage", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "chaos" }, }, - ["HellscapeDownsideTotemDuration2"] = { type = "ScourgeDownside", affix = "", "(21-27)% reduced Totem Duration", statOrder = { 1659 }, level = 45, group = "TotemDuration", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["HellscapeDownsideTotemDuration3_"] = { type = "ScourgeDownside", affix = "", "(30-36)% reduced Totem Duration", statOrder = { 1659 }, level = 68, group = "TotemDuration", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["HellscapeDownsideTotemLife2"] = { type = "ScourgeDownside", affix = "", "(21-27)% reduced Totem Life", statOrder = { 1655 }, level = 45, group = "IncreasedTotemLife", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 250, 0 }, modTags = { "resource", "life" }, }, - ["HellscapeDownsideTotemLife3"] = { type = "ScourgeDownside", affix = "", "(30-36)% reduced Totem Life", statOrder = { 1655 }, level = 68, group = "IncreasedTotemLife", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 250, 0 }, modTags = { "resource", "life" }, }, - ["HellscapeDownsideBrandDuration2"] = { type = "ScourgeDownside", affix = "", "Brand Skills have (36-42)% reduced Duration", statOrder = { 9526 }, level = 45, group = "BrandDuration", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 250, 0 }, modTags = { "caster" }, }, - ["HellscapeDownsideBrandDuration3_"] = { type = "ScourgeDownside", affix = "", "Brand Skills have (45-51)% reduced Duration", statOrder = { 9526 }, level = 68, group = "BrandDuration", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 250, 0 }, modTags = { "caster" }, }, - ["HellscapeDownsideNoLifeRegeneration1__"] = { type = "ScourgeDownside", affix = "", "You have no Life Regeneration", statOrder = { 2148 }, level = 45, group = "NoLifeRegeneration", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "helmet", "boots", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 500, 250, 250, 150, 0 }, modTags = { "resource", "life" }, }, - ["HellscapeDownsideNoManaRegeneration1"] = { type = "ScourgeDownside", affix = "", "You have no Mana Regeneration", statOrder = { 2149 }, level = 45, group = "NoManaRegeneration", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["HellscapeDownsideNoEnergyShieldRegeneration1"] = { type = "ScourgeDownside", affix = "", "You cannot Regenerate Energy Shield", statOrder = { 5150 }, level = 45, group = "NoEnergyShieldRegen", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { "defences", "energy_shield" }, }, - ["HellscapeDownsideNoEnergyShieldRecharge1"] = { type = "ScourgeDownside", affix = "", "You cannot Recharge Energy Shield", statOrder = { 5149 }, level = 45, group = "NoEnergyShieldRecharge", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { "defences", "energy_shield" }, }, - ["HellscapeDownsideLifeRecoveryRate2"] = { type = "ScourgeDownside", affix = "", "(10-12)% reduced Life Recovery rate", statOrder = { 1460 }, level = 45, group = "LifeRecoveryRate", weightKey = { "body_armour", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, }, - ["HellscapeDownsideLifeRecoveryRate3_"] = { type = "ScourgeDownside", affix = "", "(14-16)% reduced Life Recovery rate", statOrder = { 1460 }, level = 68, group = "LifeRecoveryRate", weightKey = { "body_armour", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, }, - ["HellscapeDownsideManaRecoveryRate2"] = { type = "ScourgeDownside", affix = "", "(10-12)% reduced Mana Recovery rate", statOrder = { 1468 }, level = 45, group = "ManaRecoveryRate", weightKey = { "body_armour", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "mana" }, }, - ["HellscapeDownsideManaRecoveryRate3"] = { type = "ScourgeDownside", affix = "", "(14-16)% reduced Mana Recovery rate", statOrder = { 1468 }, level = 68, group = "ManaRecoveryRate", weightKey = { "body_armour", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "mana" }, }, - ["HellscapeDownsideEnergyShieldRecoveryRate2"] = { type = "ScourgeDownside", affix = "", "(10-12)% reduced Energy Shield Recovery rate", statOrder = { 1450 }, level = 45, group = "EnergyShieldRecoveryRate", weightKey = { "body_armour", "default", }, weightVal = { 500, 0 }, modTags = { "defences", "energy_shield" }, }, - ["HellscapeDownsideEnergyShieldRecoveryRate3"] = { type = "ScourgeDownside", affix = "", "(14-16)% reduced Energy Shield Recovery rate", statOrder = { 1450 }, level = 68, group = "EnergyShieldRecoveryRate", weightKey = { "body_armour", "default", }, weightVal = { 500, 0 }, modTags = { "defences", "energy_shield" }, }, - ["HellscapeDownsideExtraDamageTakenFromCriticalStrikes2_"] = { type = "ScourgeDownside", affix = "", "You take (22-30)% increased Extra Damage from Critical Strikes", statOrder = { 1395 }, level = 45, group = "ReducedExtraDamageFromCrits", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "damage", "critical" }, }, - ["HellscapeDownsideExtraDamageTakenFromCriticalStrikes3"] = { type = "ScourgeDownside", affix = "", "You take (32-40)% increased Extra Damage from Critical Strikes", statOrder = { 1395 }, level = 68, group = "ReducedExtraDamageFromCrits", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "damage", "critical" }, }, - ["HellscapeDownsideDamageIsUnlucky1___"] = { type = "ScourgeDownside", affix = "", "Damage with Hits is Unlucky", statOrder = { 4835 }, level = 45, group = "DamageIsUnlucky", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["HellscapeDownsideColdPenetration1h2"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Cold Resistance as 10% higher than actual value", statOrder = { 2855 }, level = 45, group = "ColdResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 200, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["HellscapeDownsideColdPenetration1h3"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Cold Resistance as 14% higher than actual value", statOrder = { 2855 }, level = 68, group = "ColdResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 200, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["HellscapeDownsideColdPenetration2h2"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Cold Resistance as 16% higher than actual value", statOrder = { 2855 }, level = 45, group = "ColdResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["HellscapeDownsideColdPenetration2h3"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Cold Resistance as 20% higher than actual value", statOrder = { 2855 }, level = 68, group = "ColdResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["HellscapeDownsideFirePenetration1h2_"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Fire Resistance as 10% higher than actual value", statOrder = { 2853 }, level = 45, group = "FireResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 200, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["HellscapeDownsideFirePenetration1h3"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Fire Resistance as 14% higher than actual value", statOrder = { 2853 }, level = 68, group = "FireResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 200, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["HellscapeDownsideFirePenetration2h2_"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Fire Resistance as 16% higher than actual value", statOrder = { 2853 }, level = 45, group = "FireResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["HellscapeDownsideFirePenetration2h3"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Fire Resistance as 20% higher than actual value", statOrder = { 2853 }, level = 68, group = "FireResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["HellscapeDownsideLightningPenetration1h2__"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Lightning Resistance as 10% higher than actual value", statOrder = { 2856 }, level = 45, group = "LightningResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 200, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["HellscapeDownsideLightningPenetration1h3"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Lightning Resistance as 14% higher than actual value", statOrder = { 2856 }, level = 68, group = "LightningResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 200, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["HellscapeDownsideLightningPenetration2h2"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Lightning Resistance as 16% higher than actual value", statOrder = { 2856 }, level = 45, group = "LightningResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["HellscapeDownsideLightningPenetration2h3"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Lightning Resistance as 20% higher than actual value", statOrder = { 2856 }, level = 68, group = "LightningResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["HellscapeDownsideChaosPenetration1h2___"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Chaos Resistance as 10% higher than actual value", statOrder = { 9368 }, level = 45, group = "ChaosResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 200, 200, 200, 0 }, modTags = { }, }, - ["HellscapeDownsideChaosPenetration1h3__"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Chaos Resistance as 14% higher than actual value", statOrder = { 9368 }, level = 68, group = "ChaosResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 200, 200, 200, 0 }, modTags = { }, }, - ["HellscapeDownsideChaosPenetration2h2"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Chaos Resistance as 16% higher than actual value", statOrder = { 9368 }, level = 45, group = "ChaosResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["HellscapeDownsideChaosPenetration2h3_____"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Chaos Resistance as 20% higher than actual value", statOrder = { 9368 }, level = 68, group = "ChaosResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["HellscapeDownsideCannotCurse"] = { type = "ScourgeDownside", affix = "", "Cannot inflict Curses", statOrder = { 10118 }, level = 45, group = "CannotCurse", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["HellscapeDownsideCannotApplyAilments1___"] = { type = "ScourgeDownside", affix = "", "Cannot inflict Elemental Ailments", statOrder = { 1743 }, level = 45, group = "CannotApplyFireAilments", weightKey = { "sceptre", "wand", "staff", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { }, }, - ["HellscapeDownsideAdditionalTraps1"] = { type = "ScourgeDownside", affix = "", "Can have 5 fewer Traps placed at a time", statOrder = { 2132 }, level = 45, group = "TrapsAllowed", weightKey = { "boots", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["HellscapeDownsideAdditionalMines1_"] = { type = "ScourgeDownside", affix = "", "Can have 5 fewer Remote Mines placed at a time", statOrder = { 2133 }, level = 45, group = "AdditionalRemoteMinesAllowed", weightKey = { "boots", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["HellscapeDownsideEffectOfNonDamagingAilments2"] = { type = "ScourgeDownside", affix = "", "(30-40)% reduced Effect of Non-Damaging Ailments", statOrder = { 9017 }, level = 45, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { "ailment" }, }, - ["HellscapeDownsideEffectOfNonDamagingAilments3"] = { type = "ScourgeDownside", affix = "", "(50-60)% reduced Effect of Non-Damaging Ailments", statOrder = { 9017 }, level = 68, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { "ailment" }, }, - ["HellscapeDownsideNearbyEnemiesTakeReducedPhysicalDamage3"] = { type = "ScourgeDownside", affix = "", "Nearby Enemies take 9% reduced Physical Damage", statOrder = { 7522 }, level = 68, group = "NearbyEnemyPhysicalDamageTaken", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["HellscapeDownsideNearbyEnemiesTakeReducedFireDamage3_"] = { type = "ScourgeDownside", affix = "", "Nearby Enemies have +9% to Fire Resistance", statOrder = { 7518 }, level = 68, group = "NearbyEnemyFireDamageResistance", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "resistance" }, }, - ["HellscapeDownsideNearbyEnemiesTakeReducedColdDamage3_"] = { type = "ScourgeDownside", affix = "", "Nearby Enemies have +9% to Cold Resistance", statOrder = { 7516 }, level = 68, group = "NearbyEnemyColdDamageResistance", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "resistance" }, }, - ["HellscapeDownsideNearbyEnemiesTakeReducedLightningDamage3"] = { type = "ScourgeDownside", affix = "", "Nearby Enemies have +9% to Lightning Resistance", statOrder = { 7520 }, level = 68, group = "NearbyEnemyLightningDamageResistance", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "resistance" }, }, - ["HellscapeDownsideNearbyEnemiesTakeReducedChaosDamage3_"] = { type = "ScourgeDownside", affix = "", "Nearby Enemies have +9% to Chaos Resistance", statOrder = { 7515 }, level = 68, group = "NearbyEnemyChaosDamageResistance", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "damage", "chaos", "resistance" }, }, - ["HellscapeDownsideCurseEffect2_"] = { type = "ScourgeDownside", affix = "", "(21-24)% reduced Effect of your Curses", statOrder = { 2472 }, level = 45, group = "CurseEffectiveness", weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { "caster", "curse" }, }, - ["HellscapeDownsideCurseEffect3__"] = { type = "ScourgeDownside", affix = "", "(27-30)% reduced Effect of your Curses", statOrder = { 2472 }, level = 68, group = "CurseEffectiveness", weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { "caster", "curse" }, }, - ["HellscapeDownsideAuraEffectOfNonCurseSkills2"] = { type = "ScourgeDownside", affix = "", "(21-24)% reduced effect of Non-Curse Auras from your Skills", statOrder = { 3429 }, level = 45, group = "AuraEffect", weightKey = { "body_armour", "default", }, weightVal = { 500, 0 }, modTags = { "aura" }, }, - ["HellscapeDownsideAuraEffectOfNonCurseSkills3"] = { type = "ScourgeDownside", affix = "", "(27-30)% reduced effect of Non-Curse Auras from your Skills", statOrder = { 3429 }, level = 68, group = "AuraEffect", weightKey = { "body_armour", "default", }, weightVal = { 500, 0 }, modTags = { "aura" }, }, - ["HellscapeDownsideAdditionalCurse1__"] = { type = "ScourgeDownside", affix = "", "You can apply one fewer Curse", statOrder = { 2045 }, level = 68, group = "AdditionalCurseOnEnemies", weightKey = { "body_armour", "default", }, weightVal = { 500, 0 }, modTags = { "caster", "curse" }, }, - ["HellscapeDownsideMaximumEnduranceCharges1"] = { type = "ScourgeDownside", affix = "", "-1 to Maximum Endurance Charges", statOrder = { 1685 }, level = 68, group = "MaximumEnduranceCharges", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "endurance_charge" }, }, - ["HellscapeDownsideMaximumFrenzyCharges1"] = { type = "ScourgeDownside", affix = "", "-1 to Maximum Frenzy Charges", statOrder = { 1690 }, level = 68, group = "MaximumFrenzyCharges", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "frenzy_charge" }, }, - ["HellscapeDownsideMaximumPowerCharges1"] = { type = "ScourgeDownside", affix = "", "-1 to Maximum Power Charges", statOrder = { 1695 }, level = 68, group = "IncreasedMaximumPowerCharges", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "power_charge" }, }, - ["HellscapeDownsideDealNoPhysicalDamage___"] = { type = "ScourgeDownside", affix = "", "Deal no Physical Damage", statOrder = { 2665 }, level = 1, group = "DealNoPhysicalDamage", weightKey = { "weapon", "quiver", "default", }, weightVal = { 500, 200, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["HellscapeDownsideDealNoFireDamage"] = { type = "ScourgeDownside", affix = "", "Deal no Fire Damage", statOrder = { 4825 }, level = 1, group = "DealNoFireDamage", weightKey = { "weapon", "quiver", "default", }, weightVal = { 500, 200, 0 }, modTags = { }, }, - ["HellscapeDownsideDealNoColdDamage_"] = { type = "ScourgeDownside", affix = "", "Deal no Cold Damage", statOrder = { 2667 }, level = 1, group = "DealNoColdDamage", weightKey = { "weapon", "quiver", "default", }, weightVal = { 500, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["HellscapeDownsideDealNoLightningDamage"] = { type = "ScourgeDownside", affix = "", "Deal no Lightning Damage", statOrder = { 4826 }, level = 1, group = "DealNoLightningDamage", weightKey = { "weapon", "quiver", "default", }, weightVal = { 500, 200, 0 }, modTags = { }, }, - ["HellscapeDownsideDealNoChaosDamage_"] = { type = "ScourgeDownside", affix = "", "Deal no Chaos Damage", statOrder = { 4824 }, level = 1, group = "DealNoChaosDamage", weightKey = { "weapon", "quiver", "default", }, weightVal = { 500, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["HellscapeDownsideCannotGainCharges"] = { type = "ScourgeDownside", affix = "", "Cannot gain Charges", statOrder = { 5139 }, level = 68, group = "CannotGainCharges", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, }, - ["HellscapeDownsideCriticalStrikesDealNoExtraDamage"] = { type = "ScourgeDownside", affix = "", "Your Critical Strikes do not deal extra Damage", statOrder = { 2551 }, level = 45, group = "CriticalStrikesDealNoExtraDamage", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["HellscapeDownsideDamageTakenOnFullLife2"] = { type = "ScourgeDownside", affix = "", "12% increased Damage taken while on Full Life", statOrder = { 5817 }, level = 45, group = "DamageTakenOnFullLife", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["HellscapeDownsideDamageTakenOnFullLife3_"] = { type = "ScourgeDownside", affix = "", "20% increased Damage taken while on Full Life", statOrder = { 5817 }, level = 68, group = "DamageTakenOnFullLife", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["HellscapeDownsideFishingLineStrength"] = { type = "ScourgeDownside", affix = "", "(30-40)% reduced Fishing Line Strength", statOrder = { 2717 }, level = 1, group = "FishingLineStrength", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["HellscapeDownsideFishingPoolConsumption"] = { type = "ScourgeDownside", affix = "", "(50-100)% increased Fishing Pool Consumption", statOrder = { 2718 }, level = 45, group = "FishingPoolConsumption", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["HellscapeDownsideFishRotWhenCaught"] = { type = "ScourgeDownside", affix = "", "Fish Rot upon being Caught", statOrder = { 6267 }, level = 1, group = "FishRotWhenCaught", weightKey = { "fishing_rod", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["HellscapeDownsideFishingReelStability"] = { type = "ScourgeDownside", affix = "", "(30-60)% reduced Reeling Stability", statOrder = { 6280 }, level = 1, group = "FishingReelStability", weightKey = { "fishing_rod", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["HellscapeDownsideCannotFishFromWater_______"] = { type = "ScourgeDownside", affix = "", "Cannot Fish while standing in Water", statOrder = { 5138 }, level = 68, group = "CannotFishFromWater", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["IncreasedAttackSpeedEldritchImplicit1"] = { type = "Exarch", affix = "", "8% increased Attack Speed", statOrder = { 1294 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack", "speed" }, }, - ["IncreasedAttackSpeedEldritchImplicit2"] = { type = "Exarch", affix = "", "9% increased Attack Speed", statOrder = { 1294 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack", "speed" }, }, - ["IncreasedAttackSpeedEldritchImplicit3"] = { type = "Exarch", affix = "", "10% increased Attack Speed", statOrder = { 1294 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack", "speed" }, }, - ["IncreasedAttackSpeedEldritchImplicit4"] = { type = "Exarch", affix = "", "11% increased Attack Speed", statOrder = { 1294 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack", "speed" }, }, - ["IncreasedAttackSpeedEldritchImplicit5"] = { type = "Exarch", affix = "", "12% increased Attack Speed", statOrder = { 1294 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack", "speed" }, }, - ["IncreasedAttackSpeedEldritchImplicit6"] = { type = "Exarch", affix = "", "13% increased Attack Speed", statOrder = { 1294 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack", "speed" }, }, - ["IncreasedAttackSpeedEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 12% increased Attack Speed", statOrder = { 1294 }, level = 75, group = "IncreasedAttackSpeedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack", "speed" }, }, - ["IncreasedAttackSpeedEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 13% increased Attack Speed", statOrder = { 1294 }, level = 75, group = "IncreasedAttackSpeedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack", "speed" }, }, - ["IncreasedAttackSpeedEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Attack Speed", statOrder = { 1294 }, level = 75, group = "IncreasedAttackSpeedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack", "speed" }, }, - ["IncreasedAttackSpeedEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Attack Speed", statOrder = { 1294 }, level = 75, group = "IncreasedAttackSpeedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack", "speed" }, }, - ["IncreasedAttackSpeedEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Attack Speed", statOrder = { 1294 }, level = 75, group = "IncreasedAttackSpeedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack", "speed" }, }, - ["IncreasedAttackSpeedEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Attack Speed", statOrder = { 1294 }, level = 75, group = "IncreasedAttackSpeedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack", "speed" }, }, - ["IncreasedAttackSpeedEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Attack Speed", statOrder = { 1294 }, level = 75, group = "IncreasedAttackSpeedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack", "speed" }, }, - ["IncreasedAttackSpeedEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 17% increased Attack Speed", statOrder = { 1294 }, level = 75, group = "IncreasedAttackSpeedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack", "speed" }, }, - ["IncreasedAttackSpeedEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Attack Speed", statOrder = { 1294 }, level = 75, group = "IncreasedAttackSpeedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack", "speed" }, }, - ["IncreasedAttackSpeedEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Attack Speed", statOrder = { 1294 }, level = 75, group = "IncreasedAttackSpeedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack", "speed" }, }, - ["IncreasedAttackSpeedEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Attack Speed", statOrder = { 1294 }, level = 75, group = "IncreasedAttackSpeedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack", "speed" }, }, - ["IncreasedAttackSpeedEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Attack Speed", statOrder = { 1294 }, level = 75, group = "IncreasedAttackSpeedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack", "speed" }, }, - ["AttackCriticalStrikeChanceEldritchImplicit1"] = { type = "Exarch", affix = "", "(19-21)% increased Critical Strike Chance for Attacks", statOrder = { 4667 }, level = 75, group = "AttackCriticalStrikeChance", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "attack", "critical" }, }, - ["AttackCriticalStrikeChanceEldritchImplicit2"] = { type = "Exarch", affix = "", "(22-24)% increased Critical Strike Chance for Attacks", statOrder = { 4667 }, level = 75, group = "AttackCriticalStrikeChance", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "attack", "critical" }, }, - ["AttackCriticalStrikeChanceEldritchImplicit3"] = { type = "Exarch", affix = "", "(25-27)% increased Critical Strike Chance for Attacks", statOrder = { 4667 }, level = 75, group = "AttackCriticalStrikeChance", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "attack", "critical" }, }, - ["AttackCriticalStrikeChanceEldritchImplicit4"] = { type = "Exarch", affix = "", "(28-30)% increased Critical Strike Chance for Attacks", statOrder = { 4667 }, level = 75, group = "AttackCriticalStrikeChance", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "attack", "critical" }, }, - ["AttackCriticalStrikeChanceEldritchImplicit5"] = { type = "Exarch", affix = "", "(31-33)% increased Critical Strike Chance for Attacks", statOrder = { 4667 }, level = 75, group = "AttackCriticalStrikeChance", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "attack", "critical" }, }, - ["AttackCriticalStrikeChanceEldritchImplicit6"] = { type = "Exarch", affix = "", "(34-36)% increased Critical Strike Chance for Attacks", statOrder = { 4667 }, level = 75, group = "AttackCriticalStrikeChance", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "attack", "critical" }, }, - ["AttackCriticalStrikeChanceEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (31-33)% increased Critical Strike Chance for Attacks", statOrder = { 4667 }, level = 75, group = "AttackCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, }, - ["AttackCriticalStrikeChanceEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (34-36)% increased Critical Strike Chance for Attacks", statOrder = { 4667 }, level = 75, group = "AttackCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "attack", "critical" }, }, - ["AttackCriticalStrikeChanceEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (37-39)% increased Critical Strike Chance for Attacks", statOrder = { 4667 }, level = 75, group = "AttackCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "attack", "critical" }, }, - ["AttackCriticalStrikeChanceEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (40-42)% increased Critical Strike Chance for Attacks", statOrder = { 4667 }, level = 75, group = "AttackCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "attack", "critical" }, }, - ["AttackCriticalStrikeChanceEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Critical Strike Chance for Attacks", statOrder = { 4667 }, level = 75, group = "AttackCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "attack", "critical" }, }, - ["AttackCriticalStrikeChanceEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Critical Strike Chance for Attacks", statOrder = { 4667 }, level = 75, group = "AttackCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "attack", "critical" }, }, - ["AttackCriticalStrikeChanceEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (43-45)% increased Critical Strike Chance for Attacks", statOrder = { 4667 }, level = 75, group = "AttackCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, }, - ["AttackCriticalStrikeChanceEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (46-48)% increased Critical Strike Chance for Attacks", statOrder = { 4667 }, level = 75, group = "AttackCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, }, - ["AttackCriticalStrikeChanceEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (49-51)% increased Critical Strike Chance for Attacks", statOrder = { 4667 }, level = 75, group = "AttackCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "attack", "critical" }, }, - ["AttackCriticalStrikeChanceEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (52-54)% increased Critical Strike Chance for Attacks", statOrder = { 4667 }, level = 75, group = "AttackCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "attack", "critical" }, }, - ["AttackCriticalStrikeChanceEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Critical Strike Chance for Attacks", statOrder = { 4667 }, level = 75, group = "AttackCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "attack", "critical" }, }, - ["AttackCriticalStrikeChanceEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Critical Strike Chance for Attacks", statOrder = { 4667 }, level = 75, group = "AttackCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "attack", "critical" }, }, - ["AddedPhysicalDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Adds (3-5) to (7-9) Physical Damage to Attacks", statOrder = { 1151 }, level = 75, group = "PhysicalDamage", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AddedPhysicalDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Adds (4-5) to (8-9) Physical Damage to Attacks", statOrder = { 1151 }, level = 75, group = "PhysicalDamage", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AddedPhysicalDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Adds (4-6) to (9-10) Physical Damage to Attacks", statOrder = { 1151 }, level = 75, group = "PhysicalDamage", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AddedPhysicalDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Adds (5-6) to (10-11) Physical Damage to Attacks", statOrder = { 1151 }, level = 75, group = "PhysicalDamage", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AddedPhysicalDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Adds (5-7) to (11-12) Physical Damage to Attacks", statOrder = { 1151 }, level = 75, group = "PhysicalDamage", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AddedPhysicalDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Adds (6-7) to (12-14) Physical Damage to Attacks", statOrder = { 1151 }, level = 75, group = "PhysicalDamage", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AddedPhysicalDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (5-6) to (10-11) Physical Damage to Attacks", statOrder = { 1151 }, level = 75, group = "PhysicalDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["AddedPhysicalDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (5-7) to (11-12) Physical Damage to Attacks", statOrder = { 1151 }, level = 75, group = "PhysicalDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["AddedPhysicalDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (6-7) to (12-14) Physical Damage to Attacks", statOrder = { 1151 }, level = 75, group = "PhysicalDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["AddedPhysicalDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (6-9) to (13-15) Physical Damage to Attacks", statOrder = { 1151 }, level = 75, group = "PhysicalDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["AddedPhysicalDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (7-9) to (14-17) Physical Damage to Attacks", statOrder = { 1151 }, level = 75, group = "PhysicalDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["AddedPhysicalDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (8-10) to (16-18) Physical Damage to Attacks", statOrder = { 1151 }, level = 75, group = "PhysicalDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["AddedPhysicalDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (6-9) to (13-15) Physical Damage to Attacks", statOrder = { 1151 }, level = 75, group = "PhysicalDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["AddedPhysicalDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (7-9) to (14-17) Physical Damage to Attacks", statOrder = { 1151 }, level = 75, group = "PhysicalDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["AddedPhysicalDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (8-10) to (16-18) Physical Damage to Attacks", statOrder = { 1151 }, level = 75, group = "PhysicalDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["AddedPhysicalDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (9-12) to (18-21) Physical Damage to Attacks", statOrder = { 1151 }, level = 75, group = "PhysicalDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["AddedPhysicalDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (10-14) to (21-24) Physical Damage to Attacks", statOrder = { 1151 }, level = 75, group = "PhysicalDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["AddedPhysicalDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (12-15) to (24-28) Physical Damage to Attacks", statOrder = { 1151 }, level = 75, group = "PhysicalDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["AddedFireDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Adds (6-8) to (13-15) Fire Damage to Attacks", statOrder = { 1244 }, level = 75, group = "FireDamage", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AddedFireDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Adds (7-9) to (14-16) Fire Damage to Attacks", statOrder = { 1244 }, level = 75, group = "FireDamage", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AddedFireDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Adds (8-10) to (15-18) Fire Damage to Attacks", statOrder = { 1244 }, level = 75, group = "FireDamage", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AddedFireDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Adds (8-11) to (17-20) Fire Damage to Attacks", statOrder = { 1244 }, level = 75, group = "FireDamage", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AddedFireDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Adds (9-12) to (19-22) Fire Damage to Attacks", statOrder = { 1244 }, level = 75, group = "FireDamage", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AddedFireDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Adds (10-13) to (21-24) Fire Damage to Attacks", statOrder = { 1244 }, level = 75, group = "FireDamage", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AddedFireDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (8-11) to (17-20) Fire Damage to Attacks", statOrder = { 1244 }, level = 75, group = "FireDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["AddedFireDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (9-12) to (19-22) Fire Damage to Attacks", statOrder = { 1244 }, level = 75, group = "FireDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["AddedFireDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (10-13) to (21-24) Fire Damage to Attacks", statOrder = { 1244 }, level = 75, group = "FireDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["AddedFireDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (11-15) to (23-26) Fire Damage to Attacks", statOrder = { 1244 }, level = 75, group = "FireDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["AddedFireDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (13-16) to (25-29) Fire Damage to Attacks", statOrder = { 1244 }, level = 75, group = "FireDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["AddedFireDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (13-18) to (28-32) Fire Damage to Attacks", statOrder = { 1244 }, level = 75, group = "FireDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["AddedFireDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (11-15) to (23-26) Fire Damage to Attacks", statOrder = { 1244 }, level = 75, group = "FireDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["AddedFireDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (13-16) to (25-29) Fire Damage to Attacks", statOrder = { 1244 }, level = 75, group = "FireDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["AddedFireDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (13-18) to (28-32) Fire Damage to Attacks", statOrder = { 1244 }, level = 75, group = "FireDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["AddedFireDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (16-20) to (32-37) Fire Damage to Attacks", statOrder = { 1244 }, level = 75, group = "FireDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["AddedFireDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (18-24) to (37-42) Fire Damage to Attacks", statOrder = { 1244 }, level = 75, group = "FireDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["AddedFireDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (21-27) to (42-49) Fire Damage to Attacks", statOrder = { 1244 }, level = 75, group = "FireDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["AddedColdDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Adds (6-7) to (11-13) Cold Damage to Attacks", statOrder = { 1253 }, level = 75, group = "ColdDamage", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AddedColdDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Adds (6-8) to (12-15) Cold Damage to Attacks", statOrder = { 1253 }, level = 75, group = "ColdDamage", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AddedColdDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Adds (7-9) to (13-16) Cold Damage to Attacks", statOrder = { 1253 }, level = 75, group = "ColdDamage", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AddedColdDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Adds (7-10) to (15-18) Cold Damage to Attacks", statOrder = { 1253 }, level = 75, group = "ColdDamage", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AddedColdDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Adds (8-11) to (17-19) Cold Damage to Attacks", statOrder = { 1253 }, level = 75, group = "ColdDamage", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AddedColdDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Adds (9-12) to (18-22) Cold Damage to Attacks", statOrder = { 1253 }, level = 75, group = "ColdDamage", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AddedColdDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (7-10) to (15-18) Cold Damage to Attacks", statOrder = { 1253 }, level = 75, group = "ColdDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["AddedColdDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (8-11) to (17-19) Cold Damage to Attacks", statOrder = { 1253 }, level = 75, group = "ColdDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["AddedColdDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (9-12) to (18-22) Cold Damage to Attacks", statOrder = { 1253 }, level = 75, group = "ColdDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["AddedColdDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (10-13) to (20-24) Cold Damage to Attacks", statOrder = { 1253 }, level = 75, group = "ColdDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["AddedColdDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (11-15) to (22-26) Cold Damage to Attacks", statOrder = { 1253 }, level = 75, group = "ColdDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["AddedColdDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (12-16) to (24-29) Cold Damage to Attacks", statOrder = { 1253 }, level = 75, group = "ColdDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["AddedColdDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (10-13) to (20-24) Cold Damage to Attacks", statOrder = { 1253 }, level = 75, group = "ColdDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["AddedColdDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (11-15) to (22-26) Cold Damage to Attacks", statOrder = { 1253 }, level = 75, group = "ColdDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["AddedColdDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (12-16) to (24-29) Cold Damage to Attacks", statOrder = { 1253 }, level = 75, group = "ColdDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["AddedColdDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (14-18) to (28-33) Cold Damage to Attacks", statOrder = { 1253 }, level = 75, group = "ColdDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["AddedColdDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (16-21) to (32-38) Cold Damage to Attacks", statOrder = { 1253 }, level = 75, group = "ColdDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["AddedColdDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (18-24) to (37-44) Cold Damage to Attacks", statOrder = { 1253 }, level = 75, group = "ColdDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["AddedLightningDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Adds (1-2) to (22-24) Lightning Damage to Attacks", statOrder = { 1264 }, level = 75, group = "LightningDamage", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AddedLightningDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Adds (1-3) to (24-26) Lightning Damage to Attacks", statOrder = { 1264 }, level = 75, group = "LightningDamage", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AddedLightningDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Adds (1-3) to (27-28) Lightning Damage to Attacks", statOrder = { 1264 }, level = 75, group = "LightningDamage", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AddedLightningDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Adds (1-3) to (29-32) Lightning Damage to Attacks", statOrder = { 1264 }, level = 75, group = "LightningDamage", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AddedLightningDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Adds (2-4) to (32-35) Lightning Damage to Attacks", statOrder = { 1264 }, level = 75, group = "LightningDamage", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AddedLightningDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Adds (2-4) to (36-38) Lightning Damage to Attacks", statOrder = { 1264 }, level = 75, group = "LightningDamage", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AddedLightningDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (1-3) to (29-32) Lightning Damage to Attacks", statOrder = { 1264 }, level = 75, group = "LightningDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["AddedLightningDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (2-4) to (32-35) Lightning Damage to Attacks", statOrder = { 1264 }, level = 75, group = "LightningDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["AddedLightningDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (2-4) to (36-38) Lightning Damage to Attacks", statOrder = { 1264 }, level = 75, group = "LightningDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["AddedLightningDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (2-4) to (39-42) Lightning Damage to Attacks", statOrder = { 1264 }, level = 75, group = "LightningDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["AddedLightningDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (2-4) to (43-47) Lightning Damage to Attacks", statOrder = { 1264 }, level = 75, group = "LightningDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["AddedLightningDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (2-5) to (48-51) Lightning Damage to Attacks", statOrder = { 1264 }, level = 75, group = "LightningDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["AddedLightningDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (2-4) to (39-42) Lightning Damage to Attacks", statOrder = { 1264 }, level = 75, group = "LightningDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["AddedLightningDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (2-4) to (43-47) Lightning Damage to Attacks", statOrder = { 1264 }, level = 75, group = "LightningDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["AddedLightningDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (2-5) to (48-51) Lightning Damage to Attacks", statOrder = { 1264 }, level = 75, group = "LightningDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["AddedLightningDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (2-6) to (55-59) Lightning Damage to Attacks", statOrder = { 1264 }, level = 75, group = "LightningDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["AddedLightningDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (3-6) to (63-68) Lightning Damage to Attacks", statOrder = { 1264 }, level = 75, group = "LightningDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["AddedLightningDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (3-8) to (72-78) Lightning Damage to Attacks", statOrder = { 1264 }, level = 75, group = "LightningDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["AddedChaosDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Adds (5-6) to (10-11) Chaos Damage to Attacks", statOrder = { 1271 }, level = 75, group = "ChaosDamage", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["AddedChaosDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Adds (5-7) to (11-12) Chaos Damage to Attacks", statOrder = { 1271 }, level = 75, group = "ChaosDamage", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["AddedChaosDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Adds (6-7) to (12-14) Chaos Damage to Attacks", statOrder = { 1271 }, level = 75, group = "ChaosDamage", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["AddedChaosDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Adds (6-9) to (13-15) Chaos Damage to Attacks", statOrder = { 1271 }, level = 75, group = "ChaosDamage", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["AddedChaosDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Adds (7-9) to (14-17) Chaos Damage to Attacks", statOrder = { 1271 }, level = 75, group = "ChaosDamage", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["AddedChaosDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Adds (8-10) to (16-18) Chaos Damage to Attacks", statOrder = { 1271 }, level = 75, group = "ChaosDamage", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["AddedChaosDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (6-9) to (13-15) Chaos Damage to Attacks", statOrder = { 1271 }, level = 75, group = "ChaosDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["AddedChaosDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (7-9) to (14-17) Chaos Damage to Attacks", statOrder = { 1271 }, level = 75, group = "ChaosDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["AddedChaosDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (8-10) to (16-18) Chaos Damage to Attacks", statOrder = { 1271 }, level = 75, group = "ChaosDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["AddedChaosDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (9-11) to (17-20) Chaos Damage to Attacks", statOrder = { 1271 }, level = 75, group = "ChaosDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["AddedChaosDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (10-13) to (19-22) Chaos Damage to Attacks", statOrder = { 1271 }, level = 75, group = "ChaosDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["AddedChaosDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (10-14) to (21-24) Chaos Damage to Attacks", statOrder = { 1271 }, level = 75, group = "ChaosDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["AddedChaosDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (9-11) to (17-20) Chaos Damage to Attacks", statOrder = { 1271 }, level = 75, group = "ChaosDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["AddedChaosDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (10-13) to (19-22) Chaos Damage to Attacks", statOrder = { 1271 }, level = 75, group = "ChaosDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["AddedChaosDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (10-14) to (21-24) Chaos Damage to Attacks", statOrder = { 1271 }, level = 75, group = "ChaosDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["AddedChaosDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (12-15) to (24-28) Chaos Damage to Attacks", statOrder = { 1271 }, level = 75, group = "ChaosDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["AddedChaosDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (13-18) to (28-32) Chaos Damage to Attacks", statOrder = { 1271 }, level = 75, group = "ChaosDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["AddedChaosDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (16-20) to (32-37) Chaos Damage to Attacks", statOrder = { 1271 }, level = 75, group = "ChaosDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["FireDamageOverTimeMultiplierEldritchImplicit1"] = { type = "Exarch", affix = "", "+(5-7)% to Fire Damage over Time Multiplier", statOrder = { 1136 }, level = 75, group = "FireDamageOverTimeMultiplier", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamageOverTimeMultiplierEldritchImplicit2"] = { type = "Exarch", affix = "", "+(8-10)% to Fire Damage over Time Multiplier", statOrder = { 1136 }, level = 75, group = "FireDamageOverTimeMultiplier", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamageOverTimeMultiplierEldritchImplicit3"] = { type = "Exarch", affix = "", "+(11-13)% to Fire Damage over Time Multiplier", statOrder = { 1136 }, level = 75, group = "FireDamageOverTimeMultiplier", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamageOverTimeMultiplierEldritchImplicit4"] = { type = "Exarch", affix = "", "+(14-16)% to Fire Damage over Time Multiplier", statOrder = { 1136 }, level = 75, group = "FireDamageOverTimeMultiplier", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamageOverTimeMultiplierEldritchImplicit5"] = { type = "Exarch", affix = "", "+(17-18)% to Fire Damage over Time Multiplier", statOrder = { 1136 }, level = 75, group = "FireDamageOverTimeMultiplier", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamageOverTimeMultiplierEldritchImplicit6"] = { type = "Exarch", affix = "", "+(19-20)% to Fire Damage over Time Multiplier", statOrder = { 1136 }, level = 75, group = "FireDamageOverTimeMultiplier", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamageOverTimeMultiplierEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(14-16)% to Fire Damage over Time Multiplier", statOrder = { 1136 }, level = 75, group = "FireDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamageOverTimeMultiplierEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(17-19)% to Fire Damage over Time Multiplier", statOrder = { 1136 }, level = 75, group = "FireDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamageOverTimeMultiplierEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(20-22)% to Fire Damage over Time Multiplier", statOrder = { 1136 }, level = 75, group = "FireDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamageOverTimeMultiplierEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(23-25)% to Fire Damage over Time Multiplier", statOrder = { 1136 }, level = 75, group = "FireDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamageOverTimeMultiplierEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(26-27)% to Fire Damage over Time Multiplier", statOrder = { 1136 }, level = 75, group = "FireDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamageOverTimeMultiplierEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(28-29)% to Fire Damage over Time Multiplier", statOrder = { 1136 }, level = 75, group = "FireDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamageOverTimeMultiplierEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(23-25)% to Fire Damage over Time Multiplier", statOrder = { 1136 }, level = 75, group = "FireDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamageOverTimeMultiplierEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(26-28)% to Fire Damage over Time Multiplier", statOrder = { 1136 }, level = 75, group = "FireDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamageOverTimeMultiplierEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(29-31)% to Fire Damage over Time Multiplier", statOrder = { 1136 }, level = 75, group = "FireDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamageOverTimeMultiplierEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(32-34)% to Fire Damage over Time Multiplier", statOrder = { 1136 }, level = 75, group = "FireDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamageOverTimeMultiplierEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(35-36)% to Fire Damage over Time Multiplier", statOrder = { 1136 }, level = 75, group = "FireDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamageOverTimeMultiplierEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(37-38)% to Fire Damage over Time Multiplier", statOrder = { 1136 }, level = 75, group = "FireDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, - ["ColdDamageOverTimeMultiplierEldritchImplicit1"] = { type = "Exarch", affix = "", "+(5-7)% to Cold Damage over Time Multiplier", statOrder = { 1141 }, level = 75, group = "ColdDamageOverTimeMultiplier", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamageOverTimeMultiplierEldritchImplicit2"] = { type = "Exarch", affix = "", "+(8-10)% to Cold Damage over Time Multiplier", statOrder = { 1141 }, level = 75, group = "ColdDamageOverTimeMultiplier", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamageOverTimeMultiplierEldritchImplicit3"] = { type = "Exarch", affix = "", "+(11-13)% to Cold Damage over Time Multiplier", statOrder = { 1141 }, level = 75, group = "ColdDamageOverTimeMultiplier", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamageOverTimeMultiplierEldritchImplicit4"] = { type = "Exarch", affix = "", "+(14-16)% to Cold Damage over Time Multiplier", statOrder = { 1141 }, level = 75, group = "ColdDamageOverTimeMultiplier", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamageOverTimeMultiplierEldritchImplicit5"] = { type = "Exarch", affix = "", "+(17-18)% to Cold Damage over Time Multiplier", statOrder = { 1141 }, level = 75, group = "ColdDamageOverTimeMultiplier", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamageOverTimeMultiplierEldritchImplicit6"] = { type = "Exarch", affix = "", "+(19-20)% to Cold Damage over Time Multiplier", statOrder = { 1141 }, level = 75, group = "ColdDamageOverTimeMultiplier", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamageOverTimeMultiplierEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(14-16)% to Cold Damage over Time Multiplier", statOrder = { 1141 }, level = 75, group = "ColdDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamageOverTimeMultiplierEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(17-19)% to Cold Damage over Time Multiplier", statOrder = { 1141 }, level = 75, group = "ColdDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamageOverTimeMultiplierEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(20-22)% to Cold Damage over Time Multiplier", statOrder = { 1141 }, level = 75, group = "ColdDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamageOverTimeMultiplierEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(23-25)% to Cold Damage over Time Multiplier", statOrder = { 1141 }, level = 75, group = "ColdDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamageOverTimeMultiplierEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(26-27)% to Cold Damage over Time Multiplier", statOrder = { 1141 }, level = 75, group = "ColdDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamageOverTimeMultiplierEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(28-29)% to Cold Damage over Time Multiplier", statOrder = { 1141 }, level = 75, group = "ColdDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamageOverTimeMultiplierEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(23-25)% to Cold Damage over Time Multiplier", statOrder = { 1141 }, level = 75, group = "ColdDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamageOverTimeMultiplierEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(26-28)% to Cold Damage over Time Multiplier", statOrder = { 1141 }, level = 75, group = "ColdDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamageOverTimeMultiplierEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(29-31)% to Cold Damage over Time Multiplier", statOrder = { 1141 }, level = 75, group = "ColdDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamageOverTimeMultiplierEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(32-34)% to Cold Damage over Time Multiplier", statOrder = { 1141 }, level = 75, group = "ColdDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamageOverTimeMultiplierEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(35-36)% to Cold Damage over Time Multiplier", statOrder = { 1141 }, level = 75, group = "ColdDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamageOverTimeMultiplierEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(37-38)% to Cold Damage over Time Multiplier", statOrder = { 1141 }, level = 75, group = "ColdDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["PhysicalDamageOverTimeMultiplierEldritchImplicit1"] = { type = "Exarch", affix = "", "+(5-7)% to Physical Damage over Time Multiplier", statOrder = { 1132 }, level = 75, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, - ["PhysicalDamageOverTimeMultiplierEldritchImplicit2"] = { type = "Exarch", affix = "", "+(8-10)% to Physical Damage over Time Multiplier", statOrder = { 1132 }, level = 75, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, - ["PhysicalDamageOverTimeMultiplierEldritchImplicit3"] = { type = "Exarch", affix = "", "+(11-13)% to Physical Damage over Time Multiplier", statOrder = { 1132 }, level = 75, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, - ["PhysicalDamageOverTimeMultiplierEldritchImplicit4"] = { type = "Exarch", affix = "", "+(14-16)% to Physical Damage over Time Multiplier", statOrder = { 1132 }, level = 75, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, - ["PhysicalDamageOverTimeMultiplierEldritchImplicit5"] = { type = "Exarch", affix = "", "+(17-18)% to Physical Damage over Time Multiplier", statOrder = { 1132 }, level = 75, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, - ["PhysicalDamageOverTimeMultiplierEldritchImplicit6"] = { type = "Exarch", affix = "", "+(19-20)% to Physical Damage over Time Multiplier", statOrder = { 1132 }, level = 75, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, - ["PhysicalDamageOverTimeMultiplierEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(14-16)% to Physical Damage over Time Multiplier", statOrder = { 1132 }, level = 75, group = "PhysicalDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, - ["PhysicalDamageOverTimeMultiplierEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(17-19)% to Physical Damage over Time Multiplier", statOrder = { 1132 }, level = 75, group = "PhysicalDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, - ["PhysicalDamageOverTimeMultiplierEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(20-22)% to Physical Damage over Time Multiplier", statOrder = { 1132 }, level = 75, group = "PhysicalDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, - ["PhysicalDamageOverTimeMultiplierEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(23-25)% to Physical Damage over Time Multiplier", statOrder = { 1132 }, level = 75, group = "PhysicalDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, - ["PhysicalDamageOverTimeMultiplierEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(26-27)% to Physical Damage over Time Multiplier", statOrder = { 1132 }, level = 75, group = "PhysicalDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, - ["PhysicalDamageOverTimeMultiplierEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(28-29)% to Physical Damage over Time Multiplier", statOrder = { 1132 }, level = 75, group = "PhysicalDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, - ["PhysicalDamageOverTimeMultiplierEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(23-25)% to Physical Damage over Time Multiplier", statOrder = { 1132 }, level = 75, group = "PhysicalDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, - ["PhysicalDamageOverTimeMultiplierEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(26-28)% to Physical Damage over Time Multiplier", statOrder = { 1132 }, level = 75, group = "PhysicalDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, - ["PhysicalDamageOverTimeMultiplierEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(29-31)% to Physical Damage over Time Multiplier", statOrder = { 1132 }, level = 75, group = "PhysicalDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, - ["PhysicalDamageOverTimeMultiplierEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(32-34)% to Physical Damage over Time Multiplier", statOrder = { 1132 }, level = 75, group = "PhysicalDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, - ["PhysicalDamageOverTimeMultiplierEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(35-36)% to Physical Damage over Time Multiplier", statOrder = { 1132 }, level = 75, group = "PhysicalDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, - ["PhysicalDamageOverTimeMultiplierEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(37-38)% to Physical Damage over Time Multiplier", statOrder = { 1132 }, level = 75, group = "PhysicalDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, - ["ChaosDamageOverTimeMultiplierEldritchImplicit1"] = { type = "Exarch", affix = "", "+(5-7)% to Chaos Damage over Time Multiplier", statOrder = { 1144 }, level = 75, group = "ChaosDamageOverTimeMultiplier", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["ChaosDamageOverTimeMultiplierEldritchImplicit2"] = { type = "Exarch", affix = "", "+(8-10)% to Chaos Damage over Time Multiplier", statOrder = { 1144 }, level = 75, group = "ChaosDamageOverTimeMultiplier", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["ChaosDamageOverTimeMultiplierEldritchImplicit3"] = { type = "Exarch", affix = "", "+(11-13)% to Chaos Damage over Time Multiplier", statOrder = { 1144 }, level = 75, group = "ChaosDamageOverTimeMultiplier", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["ChaosDamageOverTimeMultiplierEldritchImplicit4"] = { type = "Exarch", affix = "", "+(14-16)% to Chaos Damage over Time Multiplier", statOrder = { 1144 }, level = 75, group = "ChaosDamageOverTimeMultiplier", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["ChaosDamageOverTimeMultiplierEldritchImplicit5"] = { type = "Exarch", affix = "", "+(17-18)% to Chaos Damage over Time Multiplier", statOrder = { 1144 }, level = 75, group = "ChaosDamageOverTimeMultiplier", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["ChaosDamageOverTimeMultiplierEldritchImplicit6"] = { type = "Exarch", affix = "", "+(19-20)% to Chaos Damage over Time Multiplier", statOrder = { 1144 }, level = 75, group = "ChaosDamageOverTimeMultiplier", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["ChaosDamageOverTimeMultiplierEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(14-16)% to Chaos Damage over Time Multiplier", statOrder = { 1144 }, level = 75, group = "ChaosDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["ChaosDamageOverTimeMultiplierEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(17-19)% to Chaos Damage over Time Multiplier", statOrder = { 1144 }, level = 75, group = "ChaosDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["ChaosDamageOverTimeMultiplierEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(20-22)% to Chaos Damage over Time Multiplier", statOrder = { 1144 }, level = 75, group = "ChaosDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["ChaosDamageOverTimeMultiplierEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(23-25)% to Chaos Damage over Time Multiplier", statOrder = { 1144 }, level = 75, group = "ChaosDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["ChaosDamageOverTimeMultiplierEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(26-27)% to Chaos Damage over Time Multiplier", statOrder = { 1144 }, level = 75, group = "ChaosDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["ChaosDamageOverTimeMultiplierEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(28-29)% to Chaos Damage over Time Multiplier", statOrder = { 1144 }, level = 75, group = "ChaosDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["ChaosDamageOverTimeMultiplierEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(23-25)% to Chaos Damage over Time Multiplier", statOrder = { 1144 }, level = 75, group = "ChaosDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["ChaosDamageOverTimeMultiplierEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(26-28)% to Chaos Damage over Time Multiplier", statOrder = { 1144 }, level = 75, group = "ChaosDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["ChaosDamageOverTimeMultiplierEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(29-31)% to Chaos Damage over Time Multiplier", statOrder = { 1144 }, level = 75, group = "ChaosDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["ChaosDamageOverTimeMultiplierEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(32-34)% to Chaos Damage over Time Multiplier", statOrder = { 1144 }, level = 75, group = "ChaosDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["ChaosDamageOverTimeMultiplierEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(35-36)% to Chaos Damage over Time Multiplier", statOrder = { 1144 }, level = 75, group = "ChaosDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["ChaosDamageOverTimeMultiplierEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(37-38)% to Chaos Damage over Time Multiplier", statOrder = { 1144 }, level = 75, group = "ChaosDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["HeraldBonusAshEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Herald of Ash has (15-17)% increased Buff Effect", statOrder = { 6745 }, level = 75, group = "HeraldBonusAshEffect", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["HeraldBonusAshEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Herald of Ash has (18-20)% increased Buff Effect", statOrder = { 6745 }, level = 75, group = "HeraldBonusAshEffect", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["HeraldBonusAshEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Herald of Ash has (21-23)% increased Buff Effect", statOrder = { 6745 }, level = 75, group = "HeraldBonusAshEffect", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["HeraldBonusAshEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Herald of Ash has (24-26)% increased Buff Effect", statOrder = { 6745 }, level = 75, group = "HeraldBonusAshEffect", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["HeraldBonusAshEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Herald of Ash has (27-28)% increased Buff Effect", statOrder = { 6745 }, level = 75, group = "HeraldBonusAshEffect", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["HeraldBonusAshEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Herald of Ash has (29-30)% increased Buff Effect", statOrder = { 6745 }, level = 75, group = "HeraldBonusAshEffect", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["HeraldBonusAshEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ash has (24-26)% increased Buff Effect", statOrder = { 6745 }, level = 75, group = "HeraldBonusAshEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["HeraldBonusAshEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ash has (27-29)% increased Buff Effect", statOrder = { 6745 }, level = 75, group = "HeraldBonusAshEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["HeraldBonusAshEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ash has (30-32)% increased Buff Effect", statOrder = { 6745 }, level = 75, group = "HeraldBonusAshEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["HeraldBonusAshEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ash has (33-35)% increased Buff Effect", statOrder = { 6745 }, level = 75, group = "HeraldBonusAshEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["HeraldBonusAshEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ash has (36-37)% increased Buff Effect", statOrder = { 6745 }, level = 75, group = "HeraldBonusAshEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["HeraldBonusAshEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ash has (38-39)% increased Buff Effect", statOrder = { 6745 }, level = 75, group = "HeraldBonusAshEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["HeraldBonusAshEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ash has (33-35)% increased Buff Effect", statOrder = { 6745 }, level = 75, group = "HeraldBonusAshEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["HeraldBonusAshEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ash has (36-38)% increased Buff Effect", statOrder = { 6745 }, level = 75, group = "HeraldBonusAshEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["HeraldBonusAshEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ash has (39-41)% increased Buff Effect", statOrder = { 6745 }, level = 75, group = "HeraldBonusAshEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["HeraldBonusAshEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ash has (42-44)% increased Buff Effect", statOrder = { 6745 }, level = 75, group = "HeraldBonusAshEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["HeraldBonusAshEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ash has (45-46)% increased Buff Effect", statOrder = { 6745 }, level = 75, group = "HeraldBonusAshEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["HeraldBonusAshEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ash has (47-48)% increased Buff Effect", statOrder = { 6745 }, level = 75, group = "HeraldBonusAshEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["HeraldBonusIceEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Herald of Ice has (15-17)% increased Buff Effect", statOrder = { 6749 }, level = 75, group = "HeraldBonusIceEffect", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["HeraldBonusIceEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Herald of Ice has (18-20)% increased Buff Effect", statOrder = { 6749 }, level = 75, group = "HeraldBonusIceEffect", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["HeraldBonusIceEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Herald of Ice has (21-23)% increased Buff Effect", statOrder = { 6749 }, level = 75, group = "HeraldBonusIceEffect", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["HeraldBonusIceEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Herald of Ice has (24-26)% increased Buff Effect", statOrder = { 6749 }, level = 75, group = "HeraldBonusIceEffect", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["HeraldBonusIceEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Herald of Ice has (27-28)% increased Buff Effect", statOrder = { 6749 }, level = 75, group = "HeraldBonusIceEffect", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["HeraldBonusIceEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Herald of Ice has (29-30)% increased Buff Effect", statOrder = { 6749 }, level = 75, group = "HeraldBonusIceEffect", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["HeraldBonusIceEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ice has (24-26)% increased Buff Effect", statOrder = { 6749 }, level = 75, group = "HeraldBonusIceEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["HeraldBonusIceEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ice has (27-29)% increased Buff Effect", statOrder = { 6749 }, level = 75, group = "HeraldBonusIceEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["HeraldBonusIceEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ice has (30-32)% increased Buff Effect", statOrder = { 6749 }, level = 75, group = "HeraldBonusIceEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["HeraldBonusIceEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ice has (33-35)% increased Buff Effect", statOrder = { 6749 }, level = 75, group = "HeraldBonusIceEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["HeraldBonusIceEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ice has (36-37)% increased Buff Effect", statOrder = { 6749 }, level = 75, group = "HeraldBonusIceEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["HeraldBonusIceEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ice has (38-39)% increased Buff Effect", statOrder = { 6749 }, level = 75, group = "HeraldBonusIceEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["HeraldBonusIceEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ice has (33-35)% increased Buff Effect", statOrder = { 6749 }, level = 75, group = "HeraldBonusIceEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["HeraldBonusIceEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ice has (36-38)% increased Buff Effect", statOrder = { 6749 }, level = 75, group = "HeraldBonusIceEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["HeraldBonusIceEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ice has (39-41)% increased Buff Effect", statOrder = { 6749 }, level = 75, group = "HeraldBonusIceEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["HeraldBonusIceEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ice has (42-44)% increased Buff Effect", statOrder = { 6749 }, level = 75, group = "HeraldBonusIceEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["HeraldBonusIceEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ice has (45-46)% increased Buff Effect", statOrder = { 6749 }, level = 75, group = "HeraldBonusIceEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["HeraldBonusIceEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ice has (47-48)% increased Buff Effect", statOrder = { 6749 }, level = 75, group = "HeraldBonusIceEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["HeraldBonusThunderEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Herald of Thunder has (15-17)% increased Buff Effect", statOrder = { 6759 }, level = 75, group = "HeraldBonusThunderEffect", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["HeraldBonusThunderEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Herald of Thunder has (18-20)% increased Buff Effect", statOrder = { 6759 }, level = 75, group = "HeraldBonusThunderEffect", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["HeraldBonusThunderEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Herald of Thunder has (21-23)% increased Buff Effect", statOrder = { 6759 }, level = 75, group = "HeraldBonusThunderEffect", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["HeraldBonusThunderEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Herald of Thunder has (24-26)% increased Buff Effect", statOrder = { 6759 }, level = 75, group = "HeraldBonusThunderEffect", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["HeraldBonusThunderEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Herald of Thunder has (27-28)% increased Buff Effect", statOrder = { 6759 }, level = 75, group = "HeraldBonusThunderEffect", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["HeraldBonusThunderEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Herald of Thunder has (29-30)% increased Buff Effect", statOrder = { 6759 }, level = 75, group = "HeraldBonusThunderEffect", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["HeraldBonusThunderEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Thunder has (24-26)% increased Buff Effect", statOrder = { 6759 }, level = 75, group = "HeraldBonusThunderEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["HeraldBonusThunderEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Thunder has (27-29)% increased Buff Effect", statOrder = { 6759 }, level = 75, group = "HeraldBonusThunderEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["HeraldBonusThunderEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Thunder has (30-32)% increased Buff Effect", statOrder = { 6759 }, level = 75, group = "HeraldBonusThunderEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["HeraldBonusThunderEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Thunder has (33-35)% increased Buff Effect", statOrder = { 6759 }, level = 75, group = "HeraldBonusThunderEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["HeraldBonusThunderEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Thunder has (36-37)% increased Buff Effect", statOrder = { 6759 }, level = 75, group = "HeraldBonusThunderEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["HeraldBonusThunderEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Thunder has (38-39)% increased Buff Effect", statOrder = { 6759 }, level = 75, group = "HeraldBonusThunderEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["HeraldBonusThunderEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Thunder has (33-35)% increased Buff Effect", statOrder = { 6759 }, level = 75, group = "HeraldBonusThunderEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["HeraldBonusThunderEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Thunder has (36-38)% increased Buff Effect", statOrder = { 6759 }, level = 75, group = "HeraldBonusThunderEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["HeraldBonusThunderEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Thunder has (39-41)% increased Buff Effect", statOrder = { 6759 }, level = 75, group = "HeraldBonusThunderEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["HeraldBonusThunderEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Thunder has (42-44)% increased Buff Effect", statOrder = { 6759 }, level = 75, group = "HeraldBonusThunderEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["HeraldBonusThunderEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Thunder has (45-46)% increased Buff Effect", statOrder = { 6759 }, level = 75, group = "HeraldBonusThunderEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["HeraldBonusThunderEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Thunder has (47-48)% increased Buff Effect", statOrder = { 6759 }, level = 75, group = "HeraldBonusThunderEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["HeraldBonusPurityEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Herald of Purity has (15-17)% increased Buff Effect", statOrder = { 6753 }, level = 75, group = "HeraldBonusPurityEffect", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["HeraldBonusPurityEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Herald of Purity has (18-20)% increased Buff Effect", statOrder = { 6753 }, level = 75, group = "HeraldBonusPurityEffect", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["HeraldBonusPurityEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Herald of Purity has (21-23)% increased Buff Effect", statOrder = { 6753 }, level = 75, group = "HeraldBonusPurityEffect", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["HeraldBonusPurityEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Herald of Purity has (24-26)% increased Buff Effect", statOrder = { 6753 }, level = 75, group = "HeraldBonusPurityEffect", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["HeraldBonusPurityEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Herald of Purity has (27-28)% increased Buff Effect", statOrder = { 6753 }, level = 75, group = "HeraldBonusPurityEffect", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["HeraldBonusPurityEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Herald of Purity has (29-30)% increased Buff Effect", statOrder = { 6753 }, level = 75, group = "HeraldBonusPurityEffect", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["HeraldBonusPurityEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Purity has (24-26)% increased Buff Effect", statOrder = { 6753 }, level = 75, group = "HeraldBonusPurityEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["HeraldBonusPurityEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Purity has (27-29)% increased Buff Effect", statOrder = { 6753 }, level = 75, group = "HeraldBonusPurityEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["HeraldBonusPurityEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Purity has (30-32)% increased Buff Effect", statOrder = { 6753 }, level = 75, group = "HeraldBonusPurityEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["HeraldBonusPurityEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Purity has (33-35)% increased Buff Effect", statOrder = { 6753 }, level = 75, group = "HeraldBonusPurityEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["HeraldBonusPurityEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Purity has (36-37)% increased Buff Effect", statOrder = { 6753 }, level = 75, group = "HeraldBonusPurityEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["HeraldBonusPurityEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Purity has (38-39)% increased Buff Effect", statOrder = { 6753 }, level = 75, group = "HeraldBonusPurityEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["HeraldBonusPurityEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Purity has (33-35)% increased Buff Effect", statOrder = { 6753 }, level = 75, group = "HeraldBonusPurityEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["HeraldBonusPurityEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Purity has (36-38)% increased Buff Effect", statOrder = { 6753 }, level = 75, group = "HeraldBonusPurityEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["HeraldBonusPurityEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Purity has (39-41)% increased Buff Effect", statOrder = { 6753 }, level = 75, group = "HeraldBonusPurityEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["HeraldBonusPurityEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Purity has (42-44)% increased Buff Effect", statOrder = { 6753 }, level = 75, group = "HeraldBonusPurityEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["HeraldBonusPurityEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Purity has (45-46)% increased Buff Effect", statOrder = { 6753 }, level = 75, group = "HeraldBonusPurityEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["HeraldBonusPurityEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Purity has (47-48)% increased Buff Effect", statOrder = { 6753 }, level = 75, group = "HeraldBonusPurityEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["HeraldBonusAgonyEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Herald of Agony has (15-17)% increased Buff Effect", statOrder = { 6741 }, level = 75, group = "HeraldBonusAgonyEffect", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["HeraldBonusAgonyEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Herald of Agony has (18-20)% increased Buff Effect", statOrder = { 6741 }, level = 75, group = "HeraldBonusAgonyEffect", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["HeraldBonusAgonyEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Herald of Agony has (21-23)% increased Buff Effect", statOrder = { 6741 }, level = 75, group = "HeraldBonusAgonyEffect", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["HeraldBonusAgonyEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Herald of Agony has (24-26)% increased Buff Effect", statOrder = { 6741 }, level = 75, group = "HeraldBonusAgonyEffect", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["HeraldBonusAgonyEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Herald of Agony has (27-28)% increased Buff Effect", statOrder = { 6741 }, level = 75, group = "HeraldBonusAgonyEffect", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["HeraldBonusAgonyEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Herald of Agony has (29-30)% increased Buff Effect", statOrder = { 6741 }, level = 75, group = "HeraldBonusAgonyEffect", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["HeraldBonusAgonyEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Agony has (24-26)% increased Buff Effect", statOrder = { 6741 }, level = 75, group = "HeraldBonusAgonyEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["HeraldBonusAgonyEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Agony has (27-29)% increased Buff Effect", statOrder = { 6741 }, level = 75, group = "HeraldBonusAgonyEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["HeraldBonusAgonyEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Agony has (30-32)% increased Buff Effect", statOrder = { 6741 }, level = 75, group = "HeraldBonusAgonyEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["HeraldBonusAgonyEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Agony has (33-35)% increased Buff Effect", statOrder = { 6741 }, level = 75, group = "HeraldBonusAgonyEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["HeraldBonusAgonyEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Agony has (36-37)% increased Buff Effect", statOrder = { 6741 }, level = 75, group = "HeraldBonusAgonyEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["HeraldBonusAgonyEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Agony has (38-39)% increased Buff Effect", statOrder = { 6741 }, level = 75, group = "HeraldBonusAgonyEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["HeraldBonusAgonyEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Agony has (33-35)% increased Buff Effect", statOrder = { 6741 }, level = 75, group = "HeraldBonusAgonyEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["HeraldBonusAgonyEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Agony has (36-38)% increased Buff Effect", statOrder = { 6741 }, level = 75, group = "HeraldBonusAgonyEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["HeraldBonusAgonyEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Agony has (39-41)% increased Buff Effect", statOrder = { 6741 }, level = 75, group = "HeraldBonusAgonyEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["HeraldBonusAgonyEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Agony has (42-44)% increased Buff Effect", statOrder = { 6741 }, level = 75, group = "HeraldBonusAgonyEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["HeraldBonusAgonyEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Agony has (45-46)% increased Buff Effect", statOrder = { 6741 }, level = 75, group = "HeraldBonusAgonyEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["HeraldBonusAgonyEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Agony has (47-48)% increased Buff Effect", statOrder = { 6741 }, level = 75, group = "HeraldBonusAgonyEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["IgniteProliferationEldritchImplicit1"] = { type = "Exarch", affix = "", "Ignites you inflict spread to other Enemies within 1.2 metres", statOrder = { 2095 }, level = 75, group = "GlobalIgniteProlif", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["IgniteProliferationEldritchImplicit2"] = { type = "Exarch", affix = "", "Ignites you inflict spread to other Enemies within 1.3 metres", statOrder = { 2095 }, level = 75, group = "GlobalIgniteProlif", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["IgniteProliferationEldritchImplicit3"] = { type = "Exarch", affix = "", "Ignites you inflict spread to other Enemies within 1.4 metres", statOrder = { 2095 }, level = 75, group = "GlobalIgniteProlif", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["IgniteProliferationEldritchImplicit4"] = { type = "Exarch", affix = "", "Ignites you inflict spread to other Enemies within 1.5 metres", statOrder = { 2095 }, level = 75, group = "GlobalIgniteProlif", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["IgniteProliferationEldritchImplicit5"] = { type = "Exarch", affix = "", "Ignites you inflict spread to other Enemies within 1.6 metres", statOrder = { 2095 }, level = 75, group = "GlobalIgniteProlif", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["IgniteProliferationEldritchImplicit6"] = { type = "Exarch", affix = "", "Ignites you inflict spread to other Enemies within 1.7 metres", statOrder = { 2095 }, level = 75, group = "GlobalIgniteProlif", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["IgniteProliferationEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict spread to other Enemies within 1.5 metres", statOrder = { 2095 }, level = 75, group = "GlobalIgniteProlifUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["IgniteProliferationEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict spread to other Enemies within 1.6 metres", statOrder = { 2095 }, level = 75, group = "GlobalIgniteProlifUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["IgniteProliferationEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict spread to other Enemies within 1.7 metres", statOrder = { 2095 }, level = 75, group = "GlobalIgniteProlifUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["IgniteProliferationEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict spread to other Enemies within 1.8 metres", statOrder = { 2095 }, level = 75, group = "GlobalIgniteProlifUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["IgniteProliferationEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict spread to other Enemies within 1.9 metres", statOrder = { 2095 }, level = 75, group = "GlobalIgniteProlifUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["IgniteProliferationEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict spread to other Enemies within 2 metres", statOrder = { 2095 }, level = 75, group = "GlobalIgniteProlifUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["IgniteProliferationEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict spread to other Enemies within 1.8 metres", statOrder = { 2095 }, level = 75, group = "GlobalIgniteProlifPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["IgniteProliferationEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict spread to other Enemies within 1.9 metres", statOrder = { 2095 }, level = 75, group = "GlobalIgniteProlifPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["IgniteProliferationEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict spread to other Enemies within 2 metres", statOrder = { 2095 }, level = 75, group = "GlobalIgniteProlifPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["IgniteProliferationEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict spread to other Enemies within 2.1 metres", statOrder = { 2095 }, level = 75, group = "GlobalIgniteProlifPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["IgniteProliferationEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict spread to other Enemies within 2.2 metres", statOrder = { 2095 }, level = 75, group = "GlobalIgniteProlifPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["IgniteProliferationEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict spread to other Enemies within 2.3 metres", statOrder = { 2095 }, level = 75, group = "GlobalIgniteProlifPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["FreezeProliferationEldritchImplicit1"] = { type = "Exarch", affix = "", "Freezes you inflict spread to other Enemies within 1.2 metres", statOrder = { 2098 }, level = 75, group = "FreezeProliferation", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["FreezeProliferationEldritchImplicit2"] = { type = "Exarch", affix = "", "Freezes you inflict spread to other Enemies within 1.3 metres", statOrder = { 2098 }, level = 75, group = "FreezeProliferation", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["FreezeProliferationEldritchImplicit3"] = { type = "Exarch", affix = "", "Freezes you inflict spread to other Enemies within 1.4 metres", statOrder = { 2098 }, level = 75, group = "FreezeProliferation", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["FreezeProliferationEldritchImplicit4"] = { type = "Exarch", affix = "", "Freezes you inflict spread to other Enemies within 1.5 metres", statOrder = { 2098 }, level = 75, group = "FreezeProliferation", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["FreezeProliferationEldritchImplicit5"] = { type = "Exarch", affix = "", "Freezes you inflict spread to other Enemies within 1.6 metres", statOrder = { 2098 }, level = 75, group = "FreezeProliferation", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["FreezeProliferationEldritchImplicit6"] = { type = "Exarch", affix = "", "Freezes you inflict spread to other Enemies within 1.7 metres", statOrder = { 2098 }, level = 75, group = "FreezeProliferation", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["FreezeProliferationEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Freezes you inflict spread to other Enemies within 1.5 metres", statOrder = { 2098 }, level = 75, group = "FreezeProliferationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["FreezeProliferationEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Freezes you inflict spread to other Enemies within 1.6 metres", statOrder = { 2098 }, level = 75, group = "FreezeProliferationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["FreezeProliferationEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Freezes you inflict spread to other Enemies within 1.7 metres", statOrder = { 2098 }, level = 75, group = "FreezeProliferationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["FreezeProliferationEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Freezes you inflict spread to other Enemies within 1.8 metres", statOrder = { 2098 }, level = 75, group = "FreezeProliferationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["FreezeProliferationEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Freezes you inflict spread to other Enemies within 1.9 metres", statOrder = { 2098 }, level = 75, group = "FreezeProliferationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["FreezeProliferationEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Freezes you inflict spread to other Enemies within 2 metres", statOrder = { 2098 }, level = 75, group = "FreezeProliferationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["FreezeProliferationEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Freezes you inflict spread to other Enemies within 1.8 metres", statOrder = { 2098 }, level = 75, group = "FreezeProliferationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["FreezeProliferationEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Freezes you inflict spread to other Enemies within 1.9 metres", statOrder = { 2098 }, level = 75, group = "FreezeProliferationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["FreezeProliferationEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Freezes you inflict spread to other Enemies within 2 metres", statOrder = { 2098 }, level = 75, group = "FreezeProliferationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["FreezeProliferationEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Freezes you inflict spread to other Enemies within 2.1 metres", statOrder = { 2098 }, level = 75, group = "FreezeProliferationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["FreezeProliferationEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Freezes you inflict spread to other Enemies within 2.2 metres", statOrder = { 2098 }, level = 75, group = "FreezeProliferationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["FreezeProliferationEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Freezes you inflict spread to other Enemies within 2.3 metres", statOrder = { 2098 }, level = 75, group = "FreezeProliferationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ShockProliferationEldritchImplicit1"] = { type = "Exarch", affix = "", "Shocks you inflict spread to other Enemies within 1.2 metres", statOrder = { 2099 }, level = 75, group = "ShockProliferation", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ShockProliferationEldritchImplicit2"] = { type = "Exarch", affix = "", "Shocks you inflict spread to other Enemies within 1.3 metres", statOrder = { 2099 }, level = 75, group = "ShockProliferation", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ShockProliferationEldritchImplicit3"] = { type = "Exarch", affix = "", "Shocks you inflict spread to other Enemies within 1.4 metres", statOrder = { 2099 }, level = 75, group = "ShockProliferation", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ShockProliferationEldritchImplicit4"] = { type = "Exarch", affix = "", "Shocks you inflict spread to other Enemies within 1.5 metres", statOrder = { 2099 }, level = 75, group = "ShockProliferation", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ShockProliferationEldritchImplicit5"] = { type = "Exarch", affix = "", "Shocks you inflict spread to other Enemies within 1.6 metres", statOrder = { 2099 }, level = 75, group = "ShockProliferation", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ShockProliferationEldritchImplicit6"] = { type = "Exarch", affix = "", "Shocks you inflict spread to other Enemies within 1.7 metres", statOrder = { 2099 }, level = 75, group = "ShockProliferation", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ShockProliferationEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Shocks you inflict spread to other Enemies within 1.5 metres", statOrder = { 2099 }, level = 75, group = "ShockProliferationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ShockProliferationEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Shocks you inflict spread to other Enemies within 1.6 metres", statOrder = { 2099 }, level = 75, group = "ShockProliferationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ShockProliferationEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Shocks you inflict spread to other Enemies within 1.7 metres", statOrder = { 2099 }, level = 75, group = "ShockProliferationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ShockProliferationEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Shocks you inflict spread to other Enemies within 1.8 metres", statOrder = { 2099 }, level = 75, group = "ShockProliferationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ShockProliferationEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Shocks you inflict spread to other Enemies within 1.9 metres", statOrder = { 2099 }, level = 75, group = "ShockProliferationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ShockProliferationEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Shocks you inflict spread to other Enemies within 2 metres", statOrder = { 2099 }, level = 75, group = "ShockProliferationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ShockProliferationEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Shocks you inflict spread to other Enemies within 1.8 metres", statOrder = { 2099 }, level = 75, group = "ShockProliferationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ShockProliferationEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Shocks you inflict spread to other Enemies within 1.9 metres", statOrder = { 2099 }, level = 75, group = "ShockProliferationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ShockProliferationEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Shocks you inflict spread to other Enemies within 2 metres", statOrder = { 2099 }, level = 75, group = "ShockProliferationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ShockProliferationEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Shocks you inflict spread to other Enemies within 2.1 metres", statOrder = { 2099 }, level = 75, group = "ShockProliferationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ShockProliferationEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Shocks you inflict spread to other Enemies within 2.2 metres", statOrder = { 2099 }, level = 75, group = "ShockProliferationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ShockProliferationEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Shocks you inflict spread to other Enemies within 2.3 metres", statOrder = { 2099 }, level = 75, group = "ShockProliferationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["StunThresholdReductionEldritchImplicit1"] = { type = "Exarch", affix = "", "(6-7)% reduced Enemy Stun Threshold", statOrder = { 1400 }, level = 75, group = "StunThresholdReduction", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["StunThresholdReductionEldritchImplicit2"] = { type = "Exarch", affix = "", "(8-9)% reduced Enemy Stun Threshold", statOrder = { 1400 }, level = 75, group = "StunThresholdReduction", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["StunThresholdReductionEldritchImplicit3"] = { type = "Exarch", affix = "", "(10-11)% reduced Enemy Stun Threshold", statOrder = { 1400 }, level = 75, group = "StunThresholdReduction", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["StunThresholdReductionEldritchImplicit4"] = { type = "Exarch", affix = "", "(12-13)% reduced Enemy Stun Threshold", statOrder = { 1400 }, level = 75, group = "StunThresholdReduction", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["StunThresholdReductionEldritchImplicit5"] = { type = "Exarch", affix = "", "(14-15)% reduced Enemy Stun Threshold", statOrder = { 1400 }, level = 75, group = "StunThresholdReduction", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["StunThresholdReductionEldritchImplicit6"] = { type = "Exarch", affix = "", "(16-17)% reduced Enemy Stun Threshold", statOrder = { 1400 }, level = 75, group = "StunThresholdReduction", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["StunThresholdReductionEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (12-13)% reduced Enemy Stun Threshold", statOrder = { 1400 }, level = 75, group = "StunThresholdReductionUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["StunThresholdReductionEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (14-15)% reduced Enemy Stun Threshold", statOrder = { 1400 }, level = 75, group = "StunThresholdReductionUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["StunThresholdReductionEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (16-17)% reduced Enemy Stun Threshold", statOrder = { 1400 }, level = 75, group = "StunThresholdReductionUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["StunThresholdReductionEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (18-19)% reduced Enemy Stun Threshold", statOrder = { 1400 }, level = 75, group = "StunThresholdReductionUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["StunThresholdReductionEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (20-21)% reduced Enemy Stun Threshold", statOrder = { 1400 }, level = 75, group = "StunThresholdReductionUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["StunThresholdReductionEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (22-23)% reduced Enemy Stun Threshold", statOrder = { 1400 }, level = 75, group = "StunThresholdReductionUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["StunThresholdReductionEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (18-19)% reduced Enemy Stun Threshold", statOrder = { 1400 }, level = 75, group = "StunThresholdReductionPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["StunThresholdReductionEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% reduced Enemy Stun Threshold", statOrder = { 1400 }, level = 75, group = "StunThresholdReductionPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["StunThresholdReductionEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% reduced Enemy Stun Threshold", statOrder = { 1400 }, level = 75, group = "StunThresholdReductionPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, - ["StunThresholdReductionEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% reduced Enemy Stun Threshold", statOrder = { 1400 }, level = 75, group = "StunThresholdReductionPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, - ["StunThresholdReductionEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% reduced Enemy Stun Threshold", statOrder = { 1400 }, level = 75, group = "StunThresholdReductionPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, - ["StunThresholdReductionEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% reduced Enemy Stun Threshold", statOrder = { 1400 }, level = 75, group = "StunThresholdReductionPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, - ["MinionDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Minions deal (14-16)% increased Damage", statOrder = { 1852 }, level = 75, group = "MinionDamage", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Minions deal (17-19)% increased Damage", statOrder = { 1852 }, level = 75, group = "MinionDamage", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Minions deal (20-22)% increased Damage", statOrder = { 1852 }, level = 75, group = "MinionDamage", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Minions deal (23-25)% increased Damage", statOrder = { 1852 }, level = 75, group = "MinionDamage", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Minions deal (26-27)% increased Damage", statOrder = { 1852 }, level = 75, group = "MinionDamage", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Minions deal (28-29)% increased Damage", statOrder = { 1852 }, level = 75, group = "MinionDamage", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions deal (26-28)% increased Damage", statOrder = { 1852 }, level = 75, group = "MinionDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions deal (29-31)% increased Damage", statOrder = { 1852 }, level = 75, group = "MinionDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions deal (32-34)% increased Damage", statOrder = { 1852 }, level = 75, group = "MinionDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions deal (35-37)% increased Damage", statOrder = { 1852 }, level = 75, group = "MinionDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions deal (38-39)% increased Damage", statOrder = { 1852 }, level = 75, group = "MinionDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions deal (40-41)% increased Damage", statOrder = { 1852 }, level = 75, group = "MinionDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions deal (38-40)% increased Damage", statOrder = { 1852 }, level = 75, group = "MinionDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions deal (41-43)% increased Damage", statOrder = { 1852 }, level = 75, group = "MinionDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions deal (44-46)% increased Damage", statOrder = { 1852 }, level = 75, group = "MinionDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions deal (47-49)% increased Damage", statOrder = { 1852 }, level = 75, group = "MinionDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions deal (50-51)% increased Damage", statOrder = { 1852 }, level = 75, group = "MinionDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions deal (52-53)% increased Damage", statOrder = { 1852 }, level = 75, group = "MinionDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "damage", "minion" }, }, - ["TrapThrowSpeedEldritchImplicit1"] = { type = "Exarch", affix = "", "8% increased Trap Throwing Speed", statOrder = { 1806 }, level = 75, group = "TrapThrowSpeed", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, - ["TrapThrowSpeedEldritchImplicit2"] = { type = "Exarch", affix = "", "9% increased Trap Throwing Speed", statOrder = { 1806 }, level = 75, group = "TrapThrowSpeed", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, - ["TrapThrowSpeedEldritchImplicit3"] = { type = "Exarch", affix = "", "10% increased Trap Throwing Speed", statOrder = { 1806 }, level = 75, group = "TrapThrowSpeed", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, - ["TrapThrowSpeedEldritchImplicit4"] = { type = "Exarch", affix = "", "11% increased Trap Throwing Speed", statOrder = { 1806 }, level = 75, group = "TrapThrowSpeed", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, - ["TrapThrowSpeedEldritchImplicit5"] = { type = "Exarch", affix = "", "12% increased Trap Throwing Speed", statOrder = { 1806 }, level = 75, group = "TrapThrowSpeed", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, - ["TrapThrowSpeedEldritchImplicit6"] = { type = "Exarch", affix = "", "13% increased Trap Throwing Speed", statOrder = { 1806 }, level = 75, group = "TrapThrowSpeed", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, - ["TrapThrowSpeedEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 12% increased Trap Throwing Speed", statOrder = { 1806 }, level = 75, group = "TrapThrowSpeedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, }, - ["TrapThrowSpeedEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 13% increased Trap Throwing Speed", statOrder = { 1806 }, level = 75, group = "TrapThrowSpeedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, }, - ["TrapThrowSpeedEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Trap Throwing Speed", statOrder = { 1806 }, level = 75, group = "TrapThrowSpeedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, }, - ["TrapThrowSpeedEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Trap Throwing Speed", statOrder = { 1806 }, level = 75, group = "TrapThrowSpeedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, }, - ["TrapThrowSpeedEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Trap Throwing Speed", statOrder = { 1806 }, level = 75, group = "TrapThrowSpeedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, }, - ["TrapThrowSpeedEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Trap Throwing Speed", statOrder = { 1806 }, level = 75, group = "TrapThrowSpeedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, }, - ["TrapThrowSpeedEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Trap Throwing Speed", statOrder = { 1806 }, level = 75, group = "TrapThrowSpeedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, }, - ["TrapThrowSpeedEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 17% increased Trap Throwing Speed", statOrder = { 1806 }, level = 75, group = "TrapThrowSpeedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, }, - ["TrapThrowSpeedEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Trap Throwing Speed", statOrder = { 1806 }, level = 75, group = "TrapThrowSpeedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, }, - ["TrapThrowSpeedEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Trap Throwing Speed", statOrder = { 1806 }, level = 75, group = "TrapThrowSpeedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, }, - ["TrapThrowSpeedEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Trap Throwing Speed", statOrder = { 1806 }, level = 75, group = "TrapThrowSpeedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, }, - ["TrapThrowSpeedEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Trap Throwing Speed", statOrder = { 1806 }, level = 75, group = "TrapThrowSpeedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, }, - ["MineLayingSpeedEldritchImplicit1"] = { type = "Exarch", affix = "", "8% increased Mine Throwing Speed", statOrder = { 1807 }, level = 75, group = "MineLayingSpeed", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, - ["MineLayingSpeedEldritchImplicit2"] = { type = "Exarch", affix = "", "9% increased Mine Throwing Speed", statOrder = { 1807 }, level = 75, group = "MineLayingSpeed", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, - ["MineLayingSpeedEldritchImplicit3"] = { type = "Exarch", affix = "", "10% increased Mine Throwing Speed", statOrder = { 1807 }, level = 75, group = "MineLayingSpeed", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, - ["MineLayingSpeedEldritchImplicit4"] = { type = "Exarch", affix = "", "11% increased Mine Throwing Speed", statOrder = { 1807 }, level = 75, group = "MineLayingSpeed", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, - ["MineLayingSpeedEldritchImplicit5"] = { type = "Exarch", affix = "", "12% increased Mine Throwing Speed", statOrder = { 1807 }, level = 75, group = "MineLayingSpeed", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, - ["MineLayingSpeedEldritchImplicit6"] = { type = "Exarch", affix = "", "13% increased Mine Throwing Speed", statOrder = { 1807 }, level = 75, group = "MineLayingSpeed", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, - ["MineLayingSpeedEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 12% increased Mine Throwing Speed", statOrder = { 1807 }, level = 75, group = "MineLayingSpeedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, }, - ["MineLayingSpeedEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 13% increased Mine Throwing Speed", statOrder = { 1807 }, level = 75, group = "MineLayingSpeedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, }, - ["MineLayingSpeedEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Mine Throwing Speed", statOrder = { 1807 }, level = 75, group = "MineLayingSpeedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, }, - ["MineLayingSpeedEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Mine Throwing Speed", statOrder = { 1807 }, level = 75, group = "MineLayingSpeedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, }, - ["MineLayingSpeedEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Mine Throwing Speed", statOrder = { 1807 }, level = 75, group = "MineLayingSpeedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, }, - ["MineLayingSpeedEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Mine Throwing Speed", statOrder = { 1807 }, level = 75, group = "MineLayingSpeedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, }, - ["MineLayingSpeedEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Mine Throwing Speed", statOrder = { 1807 }, level = 75, group = "MineLayingSpeedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, }, - ["MineLayingSpeedEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 17% increased Mine Throwing Speed", statOrder = { 1807 }, level = 75, group = "MineLayingSpeedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, }, - ["MineLayingSpeedEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Mine Throwing Speed", statOrder = { 1807 }, level = 75, group = "MineLayingSpeedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, }, - ["MineLayingSpeedEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Mine Throwing Speed", statOrder = { 1807 }, level = 75, group = "MineLayingSpeedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, }, - ["MineLayingSpeedEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Mine Throwing Speed", statOrder = { 1807 }, level = 75, group = "MineLayingSpeedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, }, - ["MineLayingSpeedEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Mine Throwing Speed", statOrder = { 1807 }, level = 75, group = "MineLayingSpeedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, }, - ["ExtinguishOnHitEldritchImplicit1"] = { type = "Exarch", affix = "", "15% chance to Extinguish Enemies on Hit", statOrder = { 6202 }, level = 75, group = "ExtinguishOnHitChance", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["ExtinguishOnHitEldritchImplicit2"] = { type = "Exarch", affix = "", "20% chance to Extinguish Enemies on Hit", statOrder = { 6202 }, level = 75, group = "ExtinguishOnHitChance", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["ExtinguishOnHitEldritchImplicit3"] = { type = "Exarch", affix = "", "25% chance to Extinguish Enemies on Hit", statOrder = { 6202 }, level = 75, group = "ExtinguishOnHitChance", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["ExtinguishOnHitEldritchImplicit4"] = { type = "Exarch", affix = "", "30% chance to Extinguish Enemies on Hit", statOrder = { 6202 }, level = 75, group = "ExtinguishOnHitChance", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["ExtinguishOnHitEldritchImplicit5"] = { type = "Exarch", affix = "", "35% chance to Extinguish Enemies on Hit", statOrder = { 6202 }, level = 75, group = "ExtinguishOnHitChance", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["ExtinguishOnHitEldritchImplicit6"] = { type = "Exarch", affix = "", "40% chance to Extinguish Enemies on Hit", statOrder = { 6202 }, level = 75, group = "ExtinguishOnHitChance", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["ExtinguishOnHitEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 45% chance to Extinguish Enemies on Hit", statOrder = { 6202 }, level = 75, group = "ExtinguishOnHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["ExtinguishOnHitEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 50% chance to Extinguish Enemies on Hit", statOrder = { 6202 }, level = 75, group = "ExtinguishOnHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, - ["ExtinguishOnHitEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 55% chance to Extinguish Enemies on Hit", statOrder = { 6202 }, level = 75, group = "ExtinguishOnHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, - ["ExtinguishOnHitEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 60% chance to Extinguish Enemies on Hit", statOrder = { 6202 }, level = 75, group = "ExtinguishOnHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, - ["ExtinguishOnHitEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 65% chance to Extinguish Enemies on Hit", statOrder = { 6202 }, level = 75, group = "ExtinguishOnHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, - ["ExtinguishOnHitEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 70% chance to Extinguish Enemies on Hit", statOrder = { 6202 }, level = 75, group = "ExtinguishOnHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, - ["ExtinguishOnHitEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 75% chance to Extinguish Enemies on Hit", statOrder = { 6202 }, level = 75, group = "ExtinguishOnHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["ExtinguishOnHitEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 80% chance to Extinguish Enemies on Hit", statOrder = { 6202 }, level = 75, group = "ExtinguishOnHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["ExtinguishOnHitEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 85% chance to Extinguish Enemies on Hit", statOrder = { 6202 }, level = 75, group = "ExtinguishOnHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, - ["ExtinguishOnHitEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 90% chance to Extinguish Enemies on Hit", statOrder = { 6202 }, level = 75, group = "ExtinguishOnHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, - ["ExtinguishOnHitEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 95% chance to Extinguish Enemies on Hit", statOrder = { 6202 }, level = 75, group = "ExtinguishOnHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, - ["ExtinguishOnHitEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 100% chance to Extinguish Enemies on Hit", statOrder = { 6202 }, level = 75, group = "ExtinguishOnHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, - ["MaximumColdResistanceEldritchImplicit1"] = { type = "Exarch", affix = "", "+1% to maximum Cold Resistance", statOrder = { 1511 }, level = 75, group = "MaximumColdResistanceImplicit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["MaximumColdResistanceEldritchImplicit2"] = { type = "Exarch", affix = "", "+1% to maximum Cold Resistance", statOrder = { 1511 }, level = 75, group = "MaximumColdResistanceImplicit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["MaximumColdResistanceEldritchImplicit3"] = { type = "Exarch", affix = "", "+1% to maximum Cold Resistance", statOrder = { 1511 }, level = 75, group = "MaximumColdResistanceImplicit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["MaximumColdResistanceEldritchImplicit4"] = { type = "Exarch", affix = "", "+1% to maximum Cold Resistance", statOrder = { 1511 }, level = 75, group = "MaximumColdResistanceImplicit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["MaximumColdResistanceEldritchImplicit5"] = { type = "Exarch", affix = "", "+2% to maximum Cold Resistance", statOrder = { 1511 }, level = 75, group = "MaximumColdResistanceImplicit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["MaximumColdResistanceEldritchImplicit6"] = { type = "Exarch", affix = "", "+2% to maximum Cold Resistance", statOrder = { 1511 }, level = 75, group = "MaximumColdResistanceImplicit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["MaximumColdResistanceEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Cold Resistance", statOrder = { 1511 }, level = 75, group = "MaximumColdResistanceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["MaximumColdResistanceEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Cold Resistance", statOrder = { 1511 }, level = 75, group = "MaximumColdResistanceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["MaximumColdResistanceEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Cold Resistance", statOrder = { 1511 }, level = 75, group = "MaximumColdResistanceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["MaximumColdResistanceEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Cold Resistance", statOrder = { 1511 }, level = 75, group = "MaximumColdResistanceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["MaximumColdResistanceEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1511 }, level = 75, group = "MaximumColdResistanceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["MaximumColdResistanceEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1511 }, level = 75, group = "MaximumColdResistanceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["MaximumColdResistanceEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1511 }, level = 75, group = "MaximumColdResistancePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["MaximumColdResistanceEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1511 }, level = 75, group = "MaximumColdResistancePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["MaximumColdResistanceEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1511 }, level = 75, group = "MaximumColdResistancePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["MaximumColdResistanceEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1511 }, level = 75, group = "MaximumColdResistancePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["MaximumColdResistanceEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Cold Resistance", statOrder = { 1511 }, level = 75, group = "MaximumColdResistancePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["MaximumColdResistanceEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Cold Resistance", statOrder = { 1511 }, level = 75, group = "MaximumColdResistancePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["DamagePerFrenzyChargeEldritchImplicit1"] = { type = "Exarch", affix = "", "4% increased Damage per Frenzy Charge", statOrder = { 3152 }, level = 75, group = "DamagePerFrenzyCharge", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, }, - ["DamagePerFrenzyChargeEldritchImplicit2"] = { type = "Exarch", affix = "", "4% increased Damage per Frenzy Charge", statOrder = { 3152 }, level = 75, group = "DamagePerFrenzyCharge", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, }, - ["DamagePerFrenzyChargeEldritchImplicit3"] = { type = "Exarch", affix = "", "5% increased Damage per Frenzy Charge", statOrder = { 3152 }, level = 75, group = "DamagePerFrenzyCharge", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, }, - ["DamagePerFrenzyChargeEldritchImplicit4"] = { type = "Exarch", affix = "", "5% increased Damage per Frenzy Charge", statOrder = { 3152 }, level = 75, group = "DamagePerFrenzyCharge", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, }, - ["DamagePerFrenzyChargeEldritchImplicit5"] = { type = "Exarch", affix = "", "6% increased Damage per Frenzy Charge", statOrder = { 3152 }, level = 75, group = "DamagePerFrenzyCharge", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, }, - ["DamagePerFrenzyChargeEldritchImplicit6"] = { type = "Exarch", affix = "", "6% increased Damage per Frenzy Charge", statOrder = { 3152 }, level = 75, group = "DamagePerFrenzyCharge", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, }, - ["DamagePerFrenzyChargeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per Frenzy Charge", statOrder = { 3152 }, level = 75, group = "DamagePerFrenzyChargeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, }, - ["DamagePerFrenzyChargeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per Frenzy Charge", statOrder = { 3152 }, level = 75, group = "DamagePerFrenzyChargeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, }, - ["DamagePerFrenzyChargeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 6% increased Damage per Frenzy Charge", statOrder = { 3152 }, level = 75, group = "DamagePerFrenzyChargeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, }, - ["DamagePerFrenzyChargeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 6% increased Damage per Frenzy Charge", statOrder = { 3152 }, level = 75, group = "DamagePerFrenzyChargeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, }, - ["DamagePerFrenzyChargeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 7% increased Damage per Frenzy Charge", statOrder = { 3152 }, level = 75, group = "DamagePerFrenzyChargeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, }, - ["DamagePerFrenzyChargeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 7% increased Damage per Frenzy Charge", statOrder = { 3152 }, level = 75, group = "DamagePerFrenzyChargeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, }, - ["DamagePerFrenzyChargeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per Frenzy Charge", statOrder = { 3152 }, level = 75, group = "DamagePerFrenzyChargePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, }, - ["DamagePerFrenzyChargeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per Frenzy Charge", statOrder = { 3152 }, level = 75, group = "DamagePerFrenzyChargePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, }, - ["DamagePerFrenzyChargeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Damage per Frenzy Charge", statOrder = { 3152 }, level = 75, group = "DamagePerFrenzyChargePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, - ["DamagePerFrenzyChargeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Damage per Frenzy Charge", statOrder = { 3152 }, level = 75, group = "DamagePerFrenzyChargePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, - ["DamagePerFrenzyChargeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Damage per Frenzy Charge", statOrder = { 3152 }, level = 75, group = "DamagePerFrenzyChargePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, - ["DamagePerFrenzyChargeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Damage per Frenzy Charge", statOrder = { 3152 }, level = 75, group = "DamagePerFrenzyChargePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, - ["StrikeSkillsAdditionalTargetEldritchImplicit1"] = { type = "Exarch", affix = "", "Non-Vaal Strike Skills target 1 additional nearby Enemy", statOrder = { 8728 }, level = 75, group = "StrikeSkillsAdditionalTarget", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "attack" }, }, - ["StrikeSkillsAdditionalTargetEldritchImplicit2"] = { type = "Exarch", affix = "", "Non-Vaal Strike Skills target 1 additional nearby Enemy", statOrder = { 8728 }, level = 75, group = "StrikeSkillsAdditionalTarget", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "attack" }, }, - ["StrikeSkillsAdditionalTargetEldritchImplicit3"] = { type = "Exarch", affix = "", "Non-Vaal Strike Skills target 1 additional nearby Enemy", statOrder = { 8728 }, level = 75, group = "StrikeSkillsAdditionalTarget", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "attack" }, }, - ["StrikeSkillsAdditionalTargetEldritchImplicit4"] = { type = "Exarch", affix = "", "Non-Vaal Strike Skills target 1 additional nearby Enemy", statOrder = { 8728 }, level = 75, group = "StrikeSkillsAdditionalTarget", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "attack" }, }, - ["StrikeSkillsAdditionalTargetEldritchImplicit5"] = { type = "Exarch", affix = "", "Non-Vaal Strike Skills target 2 additional nearby Enemies", statOrder = { 8728 }, level = 75, group = "StrikeSkillsAdditionalTarget", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "attack" }, }, - ["StrikeSkillsAdditionalTargetEldritchImplicit6"] = { type = "Exarch", affix = "", "Non-Vaal Strike Skills target 2 additional nearby Enemies", statOrder = { 8728 }, level = 75, group = "StrikeSkillsAdditionalTarget", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "attack" }, }, - ["StrikeSkillsAdditionalTargetEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Non-Vaal Strike Skills target 2 additional nearby Enemies", statOrder = { 8728 }, level = 75, group = "StrikeSkillsAdditionalTargetUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, - ["StrikeSkillsAdditionalTargetEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Non-Vaal Strike Skills target 2 additional nearby Enemies", statOrder = { 8728 }, level = 75, group = "StrikeSkillsAdditionalTargetUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, }, - ["StrikeSkillsAdditionalTargetEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Non-Vaal Strike Skills target 2 additional nearby Enemies", statOrder = { 8728 }, level = 75, group = "StrikeSkillsAdditionalTargetUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, }, - ["StrikeSkillsAdditionalTargetEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Non-Vaal Strike Skills target 2 additional nearby Enemies", statOrder = { 8728 }, level = 75, group = "StrikeSkillsAdditionalTargetUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, }, - ["StrikeSkillsAdditionalTargetEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Non-Vaal Strike Skills target 3 additional nearby Enemies", statOrder = { 8728 }, level = 75, group = "StrikeSkillsAdditionalTargetUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, }, - ["StrikeSkillsAdditionalTargetEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Non-Vaal Strike Skills target 3 additional nearby Enemies", statOrder = { 8728 }, level = 75, group = "StrikeSkillsAdditionalTargetUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, }, - ["StrikeSkillsAdditionalTargetEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Non-Vaal Strike Skills target 3 additional nearby Enemies", statOrder = { 8728 }, level = 75, group = "StrikeSkillsAdditionalTargetPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, - ["StrikeSkillsAdditionalTargetEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Non-Vaal Strike Skills target 3 additional nearby Enemies", statOrder = { 8728 }, level = 75, group = "StrikeSkillsAdditionalTargetPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, - ["StrikeSkillsAdditionalTargetEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Non-Vaal Strike Skills target 3 additional nearby Enemies", statOrder = { 8728 }, level = 75, group = "StrikeSkillsAdditionalTargetPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "attack" }, }, - ["StrikeSkillsAdditionalTargetEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Non-Vaal Strike Skills target 3 additional nearby Enemies", statOrder = { 8728 }, level = 75, group = "StrikeSkillsAdditionalTargetPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "attack" }, }, - ["StrikeSkillsAdditionalTargetEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Non-Vaal Strike Skills target 4 additional nearby Enemies", statOrder = { 8728 }, level = 75, group = "StrikeSkillsAdditionalTargetPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "attack" }, }, - ["StrikeSkillsAdditionalTargetEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Non-Vaal Strike Skills target 4 additional nearby Enemies", statOrder = { 8728 }, level = 75, group = "StrikeSkillsAdditionalTargetPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "attack" }, }, - ["RageOnHitImplicitEldritchImplicit1"] = { type = "Exarch", affix = "", "Gain 1 Rage on Hit with Attacks", statOrder = { 6537 }, level = 75, group = "RageOnHitImplicit", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["RageOnHitImplicitEldritchImplicit2"] = { type = "Exarch", affix = "", "Gain 1 Rage on Hit with Attacks", statOrder = { 6537 }, level = 75, group = "RageOnHitImplicit", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["RageOnHitImplicitEldritchImplicit3"] = { type = "Exarch", affix = "", "Gain 1 Rage on Hit with Attacks", statOrder = { 6537 }, level = 75, group = "RageOnHitImplicit", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["RageOnHitImplicitEldritchImplicit4"] = { type = "Exarch", affix = "", "Gain 1 Rage on Hit with Attacks", statOrder = { 6537 }, level = 75, group = "RageOnHitImplicit", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["RageOnHitImplicitEldritchImplicit5"] = { type = "Exarch", affix = "", "Gain 1 Rage on Hit with Attacks", statOrder = { 6537 }, level = 75, group = "RageOnHitImplicit", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["RageOnHitImplicitEldritchImplicit6"] = { type = "Exarch", affix = "", "Gain 1 Rage on Hit with Attacks", statOrder = { 6537 }, level = 75, group = "RageOnHitImplicit", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["RageOnHitImplicitEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6537 }, level = 75, group = "RageOnHitImplicitUniquePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, }, - ["RageOnHitImplicitEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6537 }, level = 75, group = "RageOnHitImplicitUniquePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, }, - ["RageOnHitImplicitEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6537 }, level = 75, group = "RageOnHitImplicitUniquePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, }, - ["RageOnHitImplicitEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6537 }, level = 75, group = "RageOnHitImplicitUniquePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, }, - ["RageOnHitImplicitEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6537 }, level = 75, group = "RageOnHitImplicitUniquePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, }, - ["RageOnHitImplicitEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6537 }, level = 75, group = "RageOnHitImplicitUniquePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, }, - ["RageOnHitImplicitEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6537 }, level = 75, group = "RageOnHitImplicitPinnaclePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, }, - ["RageOnHitImplicitEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6537 }, level = 75, group = "RageOnHitImplicitPinnaclePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, }, - ["RageOnHitImplicitEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6537 }, level = 75, group = "RageOnHitImplicitPinnaclePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, }, - ["RageOnHitImplicitEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6537 }, level = 75, group = "RageOnHitImplicitPinnaclePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, }, - ["RageOnHitImplicitEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6537 }, level = 75, group = "RageOnHitImplicitPinnaclePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, }, - ["RageOnHitImplicitEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6537 }, level = 75, group = "RageOnHitImplicitPinnaclePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, }, - ["RageOnAttackHitEldritchImplicit1"] = { type = "Exarch", affix = "", "Gain 1 Rage on Attack Hit", statOrder = { 6497 }, level = 75, group = "RageOnAttackHit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["RageOnAttackHitEldritchImplicit2"] = { type = "Exarch", affix = "", "Gain 1 Rage on Attack Hit", statOrder = { 6497 }, level = 75, group = "RageOnAttackHit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["RageOnAttackHitEldritchImplicit3"] = { type = "Exarch", affix = "", "Gain 1 Rage on Attack Hit", statOrder = { 6497 }, level = 75, group = "RageOnAttackHit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["RageOnAttackHitEldritchImplicit4"] = { type = "Exarch", affix = "", "Gain 1 Rage on Attack Hit", statOrder = { 6497 }, level = 75, group = "RageOnAttackHit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["RageOnAttackHitEldritchImplicit5"] = { type = "Exarch", affix = "", "Gain 2 Rage on Attack Hit", statOrder = { 6497 }, level = 75, group = "RageOnAttackHit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["RageOnAttackHitEldritchImplicit6"] = { type = "Exarch", affix = "", "Gain 2 Rage on Attack Hit", statOrder = { 6497 }, level = 75, group = "RageOnAttackHit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["RageOnAttackHitEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 2 Rage on Attack Hit", statOrder = { 6497 }, level = 75, group = "RageOnAttackHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["RageOnAttackHitEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 2 Rage on Attack Hit", statOrder = { 6497 }, level = 75, group = "RageOnAttackHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["RageOnAttackHitEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 2 Rage on Attack Hit", statOrder = { 6497 }, level = 75, group = "RageOnAttackHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["RageOnAttackHitEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 2 Rage on Attack Hit", statOrder = { 6497 }, level = 75, group = "RageOnAttackHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["RageOnAttackHitEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 3 Rage on Attack Hit", statOrder = { 6497 }, level = 75, group = "RageOnAttackHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["RageOnAttackHitEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 3 Rage on Attack Hit", statOrder = { 6497 }, level = 75, group = "RageOnAttackHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["RageOnAttackHitEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 3 Rage on Attack Hit", statOrder = { 6497 }, level = 75, group = "RageOnAttackHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, - ["RageOnAttackHitEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 3 Rage on Attack Hit", statOrder = { 6497 }, level = 75, group = "RageOnAttackHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, - ["RageOnAttackHitEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 3 Rage on Attack Hit", statOrder = { 6497 }, level = 75, group = "RageOnAttackHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { "attack" }, }, - ["RageOnAttackHitEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 3 Rage on Attack Hit", statOrder = { 6497 }, level = 75, group = "RageOnAttackHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { "attack" }, }, - ["RageOnAttackHitEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 4 Rage on Attack Hit", statOrder = { 6497 }, level = 75, group = "RageOnAttackHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { "attack" }, }, - ["RageOnAttackHitEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 4 Rage on Attack Hit", statOrder = { 6497 }, level = 75, group = "RageOnAttackHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { "attack" }, }, - ["ChanceToIntimidateOnHitEldritchImplicit1"] = { type = "Exarch", affix = "", "15% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5424 }, level = 75, group = "ChanceToIntimidateOnHit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["ChanceToIntimidateOnHitEldritchImplicit2"] = { type = "Exarch", affix = "", "20% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5424 }, level = 75, group = "ChanceToIntimidateOnHit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["ChanceToIntimidateOnHitEldritchImplicit3"] = { type = "Exarch", affix = "", "25% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5424 }, level = 75, group = "ChanceToIntimidateOnHit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["ChanceToIntimidateOnHitEldritchImplicit4"] = { type = "Exarch", affix = "", "30% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5424 }, level = 75, group = "ChanceToIntimidateOnHit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["ChanceToIntimidateOnHitEldritchImplicit5"] = { type = "Exarch", affix = "", "35% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5424 }, level = 75, group = "ChanceToIntimidateOnHit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["ChanceToIntimidateOnHitEldritchImplicit6"] = { type = "Exarch", affix = "", "40% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5424 }, level = 75, group = "ChanceToIntimidateOnHit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["ChanceToIntimidateOnHitEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 45% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5424 }, level = 75, group = "ChanceToIntimidateOnHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["ChanceToIntimidateOnHitEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 50% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5424 }, level = 75, group = "ChanceToIntimidateOnHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["ChanceToIntimidateOnHitEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 55% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5424 }, level = 75, group = "ChanceToIntimidateOnHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["ChanceToIntimidateOnHitEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 60% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5424 }, level = 75, group = "ChanceToIntimidateOnHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["ChanceToIntimidateOnHitEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 65% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5424 }, level = 75, group = "ChanceToIntimidateOnHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["ChanceToIntimidateOnHitEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 70% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5424 }, level = 75, group = "ChanceToIntimidateOnHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["ChanceToIntimidateOnHitEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 75% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5424 }, level = 75, group = "ChanceToIntimidateOnHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["ChanceToIntimidateOnHitEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 80% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5424 }, level = 75, group = "ChanceToIntimidateOnHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["ChanceToIntimidateOnHitEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 85% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5424 }, level = 75, group = "ChanceToIntimidateOnHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, - ["ChanceToIntimidateOnHitEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 90% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5424 }, level = 75, group = "ChanceToIntimidateOnHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, - ["ChanceToIntimidateOnHitEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 95% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5424 }, level = 75, group = "ChanceToIntimidateOnHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, - ["ChanceToIntimidateOnHitEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Intimidate Enemies for 4 seconds on Hit", statOrder = { 5424 }, level = 75, group = "ChanceToIntimidateOnHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, - ["ChanceToUnnerveOnHitEldritchImplicit1"] = { type = "Exarch", affix = "", "15% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5434 }, level = 75, group = "ChanceToUnnerveOnHit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["ChanceToUnnerveOnHitEldritchImplicit2"] = { type = "Exarch", affix = "", "20% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5434 }, level = 75, group = "ChanceToUnnerveOnHit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["ChanceToUnnerveOnHitEldritchImplicit3"] = { type = "Exarch", affix = "", "25% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5434 }, level = 75, group = "ChanceToUnnerveOnHit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["ChanceToUnnerveOnHitEldritchImplicit4"] = { type = "Exarch", affix = "", "30% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5434 }, level = 75, group = "ChanceToUnnerveOnHit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["ChanceToUnnerveOnHitEldritchImplicit5"] = { type = "Exarch", affix = "", "35% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5434 }, level = 75, group = "ChanceToUnnerveOnHit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["ChanceToUnnerveOnHitEldritchImplicit6"] = { type = "Exarch", affix = "", "40% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5434 }, level = 75, group = "ChanceToUnnerveOnHit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["ChanceToUnnerveOnHitEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 45% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5434 }, level = 75, group = "ChanceToUnnerveOnHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["ChanceToUnnerveOnHitEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 50% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5434 }, level = 75, group = "ChanceToUnnerveOnHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["ChanceToUnnerveOnHitEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 55% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5434 }, level = 75, group = "ChanceToUnnerveOnHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["ChanceToUnnerveOnHitEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 60% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5434 }, level = 75, group = "ChanceToUnnerveOnHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["ChanceToUnnerveOnHitEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 65% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5434 }, level = 75, group = "ChanceToUnnerveOnHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["ChanceToUnnerveOnHitEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 70% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5434 }, level = 75, group = "ChanceToUnnerveOnHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["ChanceToUnnerveOnHitEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 75% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5434 }, level = 75, group = "ChanceToUnnerveOnHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["ChanceToUnnerveOnHitEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 80% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5434 }, level = 75, group = "ChanceToUnnerveOnHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["ChanceToUnnerveOnHitEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 85% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5434 }, level = 75, group = "ChanceToUnnerveOnHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, - ["ChanceToUnnerveOnHitEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 90% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5434 }, level = 75, group = "ChanceToUnnerveOnHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, - ["ChanceToUnnerveOnHitEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 95% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5434 }, level = 75, group = "ChanceToUnnerveOnHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, - ["ChanceToUnnerveOnHitEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Unnerve Enemies for 4 seconds on Hit", statOrder = { 5434 }, level = 75, group = "ChanceToUnnerveOnHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, - ["ChanceToSuppressSpellsEldritchImplicit1"] = { type = "Eater", affix = "", "+5% chance to Suppress Spell Damage", statOrder = { 1032 }, level = 75, group = "ChanceToSuppressSpells", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, - ["ChanceToSuppressSpellsEldritchImplicit2"] = { type = "Eater", affix = "", "+6% chance to Suppress Spell Damage", statOrder = { 1032 }, level = 75, group = "ChanceToSuppressSpells", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, - ["ChanceToSuppressSpellsEldritchImplicit3"] = { type = "Eater", affix = "", "+7% chance to Suppress Spell Damage", statOrder = { 1032 }, level = 75, group = "ChanceToSuppressSpells", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, - ["ChanceToSuppressSpellsEldritchImplicit4"] = { type = "Eater", affix = "", "+8% chance to Suppress Spell Damage", statOrder = { 1032 }, level = 75, group = "ChanceToSuppressSpells", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, - ["ChanceToSuppressSpellsEldritchImplicit5"] = { type = "Eater", affix = "", "+9% chance to Suppress Spell Damage", statOrder = { 1032 }, level = 75, group = "ChanceToSuppressSpells", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, - ["ChanceToSuppressSpellsEldritchImplicit6"] = { type = "Eater", affix = "", "+10% chance to Suppress Spell Damage", statOrder = { 1032 }, level = 75, group = "ChanceToSuppressSpells", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, - ["ChanceToSuppressSpellsEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +7% chance to Suppress Spell Damage", statOrder = { 1032 }, level = 75, group = "ChanceToSuppressSpellsUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["ChanceToSuppressSpellsEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +8% chance to Suppress Spell Damage", statOrder = { 1032 }, level = 75, group = "ChanceToSuppressSpellsUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, }, - ["ChanceToSuppressSpellsEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +9% chance to Suppress Spell Damage", statOrder = { 1032 }, level = 75, group = "ChanceToSuppressSpellsUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, }, - ["ChanceToSuppressSpellsEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +10% chance to Suppress Spell Damage", statOrder = { 1032 }, level = 75, group = "ChanceToSuppressSpellsUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, }, - ["ChanceToSuppressSpellsEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +11% chance to Suppress Spell Damage", statOrder = { 1032 }, level = 75, group = "ChanceToSuppressSpellsUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, }, - ["ChanceToSuppressSpellsEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +12% chance to Suppress Spell Damage", statOrder = { 1032 }, level = 75, group = "ChanceToSuppressSpellsUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, }, - ["ChanceToSuppressSpellsEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +10% chance to Suppress Spell Damage", statOrder = { 1032 }, level = 75, group = "ChanceToSuppressSpellsPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["ChanceToSuppressSpellsEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +11% chance to Suppress Spell Damage", statOrder = { 1032 }, level = 75, group = "ChanceToSuppressSpellsPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["ChanceToSuppressSpellsEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +12% chance to Suppress Spell Damage", statOrder = { 1032 }, level = 75, group = "ChanceToSuppressSpellsPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { }, }, - ["ChanceToSuppressSpellsEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +13% chance to Suppress Spell Damage", statOrder = { 1032 }, level = 75, group = "ChanceToSuppressSpellsPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { }, }, - ["ChanceToSuppressSpellsEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +14% chance to Suppress Spell Damage", statOrder = { 1032 }, level = 75, group = "ChanceToSuppressSpellsPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { }, }, - ["ChanceToSuppressSpellsEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +15% chance to Suppress Spell Damage", statOrder = { 1032 }, level = 75, group = "ChanceToSuppressSpellsPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { }, }, - ["EvasionRatingHelmetBootsEldritchImplicit1"] = { type = "Eater", affix = "", "(33-35)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6158 }, level = 75, group = "EvasionRatingFromHelmetBoots", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["EvasionRatingHelmetBootsEldritchImplicit2"] = { type = "Eater", affix = "", "(36-38)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6158 }, level = 75, group = "EvasionRatingFromHelmetBoots", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["EvasionRatingHelmetBootsEldritchImplicit3"] = { type = "Eater", affix = "", "(39-41)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6158 }, level = 75, group = "EvasionRatingFromHelmetBoots", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["EvasionRatingHelmetBootsEldritchImplicit4"] = { type = "Eater", affix = "", "(42-44)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6158 }, level = 75, group = "EvasionRatingFromHelmetBoots", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["EvasionRatingHelmetBootsEldritchImplicit5"] = { type = "Eater", affix = "", "(45-47)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6158 }, level = 75, group = "EvasionRatingFromHelmetBoots", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["EvasionRatingHelmetBootsEldritchImplicit6"] = { type = "Eater", affix = "", "(48-50)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6158 }, level = 75, group = "EvasionRatingFromHelmetBoots", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["EvasionRatingHelmetBootsEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (42-44)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6158 }, level = 75, group = "EvasionRatingHelmetBootsUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "evasion" }, }, - ["EvasionRatingHelmetBootsEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (45-47)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6158 }, level = 75, group = "EvasionRatingHelmetBootsUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "evasion" }, }, - ["EvasionRatingHelmetBootsEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (48-50)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6158 }, level = 75, group = "EvasionRatingHelmetBootsUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "evasion" }, }, - ["EvasionRatingHelmetBootsEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (51-53)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6158 }, level = 75, group = "EvasionRatingHelmetBootsUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "evasion" }, }, - ["EvasionRatingHelmetBootsEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (54-57)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6158 }, level = 75, group = "EvasionRatingHelmetBootsUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "evasion" }, }, - ["EvasionRatingHelmetBootsEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (58-61)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6158 }, level = 75, group = "EvasionRatingHelmetBootsUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "evasion" }, }, - ["EvasionRatingHelmetBootsEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6158 }, level = 75, group = "EvasionRatingHelmetBootsPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "evasion" }, }, - ["EvasionRatingHelmetBootsEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6158 }, level = 75, group = "EvasionRatingHelmetBootsPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "evasion" }, }, - ["EvasionRatingHelmetBootsEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6158 }, level = 75, group = "EvasionRatingHelmetBootsPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "evasion" }, }, - ["EvasionRatingHelmetBootsEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6158 }, level = 75, group = "EvasionRatingHelmetBootsPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "evasion" }, }, - ["EvasionRatingHelmetBootsEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6158 }, level = 75, group = "EvasionRatingHelmetBootsPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "evasion" }, }, - ["EvasionRatingHelmetBootsEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6158 }, level = 75, group = "EvasionRatingHelmetBootsPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "evasion" }, }, - ["FireExposureEffectOnHitEldritchImplicit1"] = { type = "Eater", affix = "", "Inflict Fire Exposure on Hit, applying -11% to Fire Resistance", statOrder = { 6248 }, level = 75, group = "FireExposureEffectOnHit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["FireExposureEffectOnHitEldritchImplicit2"] = { type = "Eater", affix = "", "Inflict Fire Exposure on Hit, applying -12% to Fire Resistance", statOrder = { 6248 }, level = 75, group = "FireExposureEffectOnHit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["FireExposureEffectOnHitEldritchImplicit3"] = { type = "Eater", affix = "", "Inflict Fire Exposure on Hit, applying -13% to Fire Resistance", statOrder = { 6248 }, level = 75, group = "FireExposureEffectOnHit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["FireExposureEffectOnHitEldritchImplicit4"] = { type = "Eater", affix = "", "Inflict Fire Exposure on Hit, applying -14% to Fire Resistance", statOrder = { 6248 }, level = 75, group = "FireExposureEffectOnHit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["FireExposureEffectOnHitEldritchImplicit5"] = { type = "Eater", affix = "", "Inflict Fire Exposure on Hit, applying -15% to Fire Resistance", statOrder = { 6248 }, level = 75, group = "FireExposureEffectOnHit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["FireExposureEffectOnHitEldritchImplicit6"] = { type = "Eater", affix = "", "Inflict Fire Exposure on Hit, applying -16% to Fire Resistance", statOrder = { 6248 }, level = 75, group = "FireExposureEffectOnHit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["FireExposureEffectOnHitEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Fire Exposure on Hit, applying -14% to Fire Resistance", statOrder = { 6248 }, level = 75, group = "FireExposureEffectOnHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire" }, }, - ["FireExposureEffectOnHitEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Fire Exposure on Hit, applying -15% to Fire Resistance", statOrder = { 6248 }, level = 75, group = "FireExposureEffectOnHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire" }, }, - ["FireExposureEffectOnHitEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Fire Exposure on Hit, applying -16% to Fire Resistance", statOrder = { 6248 }, level = 75, group = "FireExposureEffectOnHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire" }, }, - ["FireExposureEffectOnHitEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Fire Exposure on Hit, applying -17% to Fire Resistance", statOrder = { 6248 }, level = 75, group = "FireExposureEffectOnHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire" }, }, - ["FireExposureEffectOnHitEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Fire Exposure on Hit, applying -18% to Fire Resistance", statOrder = { 6248 }, level = 75, group = "FireExposureEffectOnHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire" }, }, - ["FireExposureEffectOnHitEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Fire Exposure on Hit, applying -19% to Fire Resistance", statOrder = { 6248 }, level = 75, group = "FireExposureEffectOnHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire" }, }, - ["FireExposureEffectOnHitEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Fire Exposure on Hit, applying -17% to Fire Resistance", statOrder = { 6248 }, level = 75, group = "FireExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire" }, }, - ["FireExposureEffectOnHitEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Fire Exposure on Hit, applying -18% to Fire Resistance", statOrder = { 6248 }, level = 75, group = "FireExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire" }, }, - ["FireExposureEffectOnHitEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Fire Exposure on Hit, applying -19% to Fire Resistance", statOrder = { 6248 }, level = 75, group = "FireExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire" }, }, - ["FireExposureEffectOnHitEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Fire Exposure on Hit, applying -20% to Fire Resistance", statOrder = { 6248 }, level = 75, group = "FireExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire" }, }, - ["FireExposureEffectOnHitEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Fire Exposure on Hit, applying -21% to Fire Resistance", statOrder = { 6248 }, level = 75, group = "FireExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire" }, }, - ["FireExposureEffectOnHitEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Fire Exposure on Hit, applying -22% to Fire Resistance", statOrder = { 6248 }, level = 75, group = "FireExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire" }, }, - ["ColdExposureEffectOnHitEldritchImplicit1"] = { type = "Eater", affix = "", "Inflict Cold Exposure on Hit, applying -11% to Cold Resistance", statOrder = { 5529 }, level = 75, group = "ColdExposureEffectOnHit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["ColdExposureEffectOnHitEldritchImplicit2"] = { type = "Eater", affix = "", "Inflict Cold Exposure on Hit, applying -12% to Cold Resistance", statOrder = { 5529 }, level = 75, group = "ColdExposureEffectOnHit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["ColdExposureEffectOnHitEldritchImplicit3"] = { type = "Eater", affix = "", "Inflict Cold Exposure on Hit, applying -13% to Cold Resistance", statOrder = { 5529 }, level = 75, group = "ColdExposureEffectOnHit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["ColdExposureEffectOnHitEldritchImplicit4"] = { type = "Eater", affix = "", "Inflict Cold Exposure on Hit, applying -14% to Cold Resistance", statOrder = { 5529 }, level = 75, group = "ColdExposureEffectOnHit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["ColdExposureEffectOnHitEldritchImplicit5"] = { type = "Eater", affix = "", "Inflict Cold Exposure on Hit, applying -15% to Cold Resistance", statOrder = { 5529 }, level = 75, group = "ColdExposureEffectOnHit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["ColdExposureEffectOnHitEldritchImplicit6"] = { type = "Eater", affix = "", "Inflict Cold Exposure on Hit, applying -16% to Cold Resistance", statOrder = { 5529 }, level = 75, group = "ColdExposureEffectOnHit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["ColdExposureEffectOnHitEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Cold Exposure on Hit, applying -14% to Cold Resistance", statOrder = { 5529 }, level = 75, group = "ColdExposureEffectOnHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold" }, }, - ["ColdExposureEffectOnHitEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Cold Exposure on Hit, applying -15% to Cold Resistance", statOrder = { 5529 }, level = 75, group = "ColdExposureEffectOnHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold" }, }, - ["ColdExposureEffectOnHitEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Cold Exposure on Hit, applying -16% to Cold Resistance", statOrder = { 5529 }, level = 75, group = "ColdExposureEffectOnHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold" }, }, - ["ColdExposureEffectOnHitEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Cold Exposure on Hit, applying -17% to Cold Resistance", statOrder = { 5529 }, level = 75, group = "ColdExposureEffectOnHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold" }, }, - ["ColdExposureEffectOnHitEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Cold Exposure on Hit, applying -18% to Cold Resistance", statOrder = { 5529 }, level = 75, group = "ColdExposureEffectOnHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold" }, }, - ["ColdExposureEffectOnHitEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Cold Exposure on Hit, applying -19% to Cold Resistance", statOrder = { 5529 }, level = 75, group = "ColdExposureEffectOnHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold" }, }, - ["ColdExposureEffectOnHitEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Cold Exposure on Hit, applying -17% to Cold Resistance", statOrder = { 5529 }, level = 75, group = "ColdExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold" }, }, - ["ColdExposureEffectOnHitEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Cold Exposure on Hit, applying -18% to Cold Resistance", statOrder = { 5529 }, level = 75, group = "ColdExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold" }, }, - ["ColdExposureEffectOnHitEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Cold Exposure on Hit, applying -19% to Cold Resistance", statOrder = { 5529 }, level = 75, group = "ColdExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold" }, }, - ["ColdExposureEffectOnHitEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Cold Exposure on Hit, applying -20% to Cold Resistance", statOrder = { 5529 }, level = 75, group = "ColdExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold" }, }, - ["ColdExposureEffectOnHitEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Cold Exposure on Hit, applying -21% to Cold Resistance", statOrder = { 5529 }, level = 75, group = "ColdExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold" }, }, - ["ColdExposureEffectOnHitEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Cold Exposure on Hit, applying -22% to Cold Resistance", statOrder = { 5529 }, level = 75, group = "ColdExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold" }, }, - ["LightningExposureEffectOnHitEldritchImplicit1"] = { type = "Eater", affix = "", "Inflict Lightning Exposure on Hit, applying -11% to Lightning Resistance", statOrder = { 7070 }, level = 75, group = "LightningExposureEffectOnHit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["LightningExposureEffectOnHitEldritchImplicit2"] = { type = "Eater", affix = "", "Inflict Lightning Exposure on Hit, applying -12% to Lightning Resistance", statOrder = { 7070 }, level = 75, group = "LightningExposureEffectOnHit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["LightningExposureEffectOnHitEldritchImplicit3"] = { type = "Eater", affix = "", "Inflict Lightning Exposure on Hit, applying -13% to Lightning Resistance", statOrder = { 7070 }, level = 75, group = "LightningExposureEffectOnHit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["LightningExposureEffectOnHitEldritchImplicit4"] = { type = "Eater", affix = "", "Inflict Lightning Exposure on Hit, applying -14% to Lightning Resistance", statOrder = { 7070 }, level = 75, group = "LightningExposureEffectOnHit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["LightningExposureEffectOnHitEldritchImplicit5"] = { type = "Eater", affix = "", "Inflict Lightning Exposure on Hit, applying -15% to Lightning Resistance", statOrder = { 7070 }, level = 75, group = "LightningExposureEffectOnHit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["LightningExposureEffectOnHitEldritchImplicit6"] = { type = "Eater", affix = "", "Inflict Lightning Exposure on Hit, applying -16% to Lightning Resistance", statOrder = { 7070 }, level = 75, group = "LightningExposureEffectOnHit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["LightningExposureEffectOnHitEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Lightning Exposure on Hit, applying -14% to Lightning Resistance", statOrder = { 7070 }, level = 75, group = "LightningExposureEffectOnHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning" }, }, - ["LightningExposureEffectOnHitEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Lightning Exposure on Hit, applying -15% to Lightning Resistance", statOrder = { 7070 }, level = 75, group = "LightningExposureEffectOnHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning" }, }, - ["LightningExposureEffectOnHitEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Lightning Exposure on Hit, applying -16% to Lightning Resistance", statOrder = { 7070 }, level = 75, group = "LightningExposureEffectOnHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning" }, }, - ["LightningExposureEffectOnHitEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Lightning Exposure on Hit, applying -17% to Lightning Resistance", statOrder = { 7070 }, level = 75, group = "LightningExposureEffectOnHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning" }, }, - ["LightningExposureEffectOnHitEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Lightning Exposure on Hit, applying -18% to Lightning Resistance", statOrder = { 7070 }, level = 75, group = "LightningExposureEffectOnHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning" }, }, - ["LightningExposureEffectOnHitEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Lightning Exposure on Hit, applying -19% to Lightning Resistance", statOrder = { 7070 }, level = 75, group = "LightningExposureEffectOnHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning" }, }, - ["LightningExposureEffectOnHitEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Lightning Exposure on Hit, applying -17% to Lightning Resistance", statOrder = { 7070 }, level = 75, group = "LightningExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning" }, }, - ["LightningExposureEffectOnHitEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Lightning Exposure on Hit, applying -18% to Lightning Resistance", statOrder = { 7070 }, level = 75, group = "LightningExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning" }, }, - ["LightningExposureEffectOnHitEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Lightning Exposure on Hit, applying -19% to Lightning Resistance", statOrder = { 7070 }, level = 75, group = "LightningExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning" }, }, - ["LightningExposureEffectOnHitEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Lightning Exposure on Hit, applying -20% to Lightning Resistance", statOrder = { 7070 }, level = 75, group = "LightningExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning" }, }, - ["LightningExposureEffectOnHitEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Lightning Exposure on Hit, applying -21% to Lightning Resistance", statOrder = { 7070 }, level = 75, group = "LightningExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning" }, }, - ["LightningExposureEffectOnHitEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Lightning Exposure on Hit, applying -22% to Lightning Resistance", statOrder = { 7070 }, level = 75, group = "LightningExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning" }, }, - ["ArmourPenetrationEldritchImplicit1"] = { type = "Eater", affix = "", "Hits have (30-34)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 6801 }, level = 75, group = "ChanceToIgnoreEnemyArmour", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical" }, }, - ["ArmourPenetrationEldritchImplicit2"] = { type = "Eater", affix = "", "Hits have (35-38)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 6801 }, level = 75, group = "ChanceToIgnoreEnemyArmour", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical" }, }, - ["ArmourPenetrationEldritchImplicit3"] = { type = "Eater", affix = "", "Hits have (39-42)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 6801 }, level = 75, group = "ChanceToIgnoreEnemyArmour", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical" }, }, - ["ArmourPenetrationEldritchImplicit4"] = { type = "Eater", affix = "", "Hits have (43-45)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 6801 }, level = 75, group = "ChanceToIgnoreEnemyArmour", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical" }, }, - ["ArmourPenetrationEldritchImplicit5"] = { type = "Eater", affix = "", "Hits have (46-48)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 6801 }, level = 75, group = "ChanceToIgnoreEnemyArmour", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical" }, }, - ["ArmourPenetrationEldritchImplicit6"] = { type = "Eater", affix = "", "Hits have (49-50)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 6801 }, level = 75, group = "ChanceToIgnoreEnemyArmour", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical" }, }, - ["ArmourPenetrationEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hits have (43-45)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 6801 }, level = 75, group = "ChanceToIgnoreEnemyArmourUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical" }, }, - ["ArmourPenetrationEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hits have (46-48)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 6801 }, level = 75, group = "ChanceToIgnoreEnemyArmourUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "physical" }, }, - ["ArmourPenetrationEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hits have (49-52)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 6801 }, level = 75, group = "ChanceToIgnoreEnemyArmourUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "physical" }, }, - ["ArmourPenetrationEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hits have (53-56)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 6801 }, level = 75, group = "ChanceToIgnoreEnemyArmourUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "physical" }, }, - ["ArmourPenetrationEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hits have (57-60)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 6801 }, level = 75, group = "ChanceToIgnoreEnemyArmourUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "physical" }, }, - ["ArmourPenetrationEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hits have (61-63)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 6801 }, level = 75, group = "ChanceToIgnoreEnemyArmourUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "physical" }, }, - ["ArmourPenetrationEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hits have (53-56)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 6801 }, level = 75, group = "ChanceToIgnoreEnemyArmourPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical" }, }, - ["ArmourPenetrationEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hits have (57-60)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 6801 }, level = 75, group = "ChanceToIgnoreEnemyArmourPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical" }, }, - ["ArmourPenetrationEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hits have (61-63)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 6801 }, level = 75, group = "ChanceToIgnoreEnemyArmourPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "physical" }, }, - ["ArmourPenetrationEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hits have (64-68)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 6801 }, level = 75, group = "ChanceToIgnoreEnemyArmourPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "physical" }, }, - ["ArmourPenetrationEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hits have (69-73)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 6801 }, level = 75, group = "ChanceToIgnoreEnemyArmourPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "physical" }, }, - ["ArmourPenetrationEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hits have (74-78)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 6801 }, level = 75, group = "ChanceToIgnoreEnemyArmourPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "physical" }, }, - ["WitherExpireSpeedEldritchImplicit1"] = { type = "Eater", affix = "", "Withered you Inflict expires (10-12)% slower", statOrder = { 10088 }, level = 75, group = "WitherExpireSpeed", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["WitherExpireSpeedEldritchImplicit2"] = { type = "Eater", affix = "", "Withered you Inflict expires (13-15)% slower", statOrder = { 10088 }, level = 75, group = "WitherExpireSpeed", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["WitherExpireSpeedEldritchImplicit3"] = { type = "Eater", affix = "", "Withered you Inflict expires (16-18)% slower", statOrder = { 10088 }, level = 75, group = "WitherExpireSpeed", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["WitherExpireSpeedEldritchImplicit4"] = { type = "Eater", affix = "", "Withered you Inflict expires (19-20)% slower", statOrder = { 10088 }, level = 75, group = "WitherExpireSpeed", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["WitherExpireSpeedEldritchImplicit5"] = { type = "Eater", affix = "", "Withered you Inflict expires (21-22)% slower", statOrder = { 10088 }, level = 75, group = "WitherExpireSpeed", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["WitherExpireSpeedEldritchImplicit6"] = { type = "Eater", affix = "", "Withered you Inflict expires (23-24)% slower", statOrder = { 10088 }, level = 75, group = "WitherExpireSpeed", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["WitherExpireSpeedEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Withered you Inflict expires (19-21)% slower", statOrder = { 10088 }, level = 75, group = "WitherExpireSpeedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos" }, }, - ["WitherExpireSpeedEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Withered you Inflict expires (22-24)% slower", statOrder = { 10088 }, level = 75, group = "WitherExpireSpeedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos" }, }, - ["WitherExpireSpeedEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Withered you Inflict expires (25-27)% slower", statOrder = { 10088 }, level = 75, group = "WitherExpireSpeedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos" }, }, - ["WitherExpireSpeedEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Withered you Inflict expires (28-29)% slower", statOrder = { 10088 }, level = 75, group = "WitherExpireSpeedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos" }, }, - ["WitherExpireSpeedEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Withered you Inflict expires (30-31)% slower", statOrder = { 10088 }, level = 75, group = "WitherExpireSpeedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos" }, }, - ["WitherExpireSpeedEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Withered you Inflict expires (32-33)% slower", statOrder = { 10088 }, level = 75, group = "WitherExpireSpeedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos" }, }, - ["WitherExpireSpeedEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Withered you Inflict expires (28-30)% slower", statOrder = { 10088 }, level = 75, group = "WitherExpireSpeedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos" }, }, - ["WitherExpireSpeedEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Withered you Inflict expires (31-33)% slower", statOrder = { 10088 }, level = 75, group = "WitherExpireSpeedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos" }, }, - ["WitherExpireSpeedEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Withered you Inflict expires (34-36)% slower", statOrder = { 10088 }, level = 75, group = "WitherExpireSpeedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "chaos" }, }, - ["WitherExpireSpeedEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Withered you Inflict expires (37-39)% slower", statOrder = { 10088 }, level = 75, group = "WitherExpireSpeedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "chaos" }, }, - ["WitherExpireSpeedEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Withered you Inflict expires (40-42)% slower", statOrder = { 10088 }, level = 75, group = "WitherExpireSpeedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "chaos" }, }, - ["WitherExpireSpeedEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Withered you Inflict expires (43-45)% slower", statOrder = { 10088 }, level = 75, group = "WitherExpireSpeedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "chaos" }, }, - ["ConvertPhysicalToFireEldritchImplicit1"] = { type = "Eater", affix = "", "10% of Physical Damage Converted to Fire Damage", statOrder = { 1834 }, level = 75, group = "ConvertPhysicalToFireImplicit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, - ["ConvertPhysicalToFireEldritchImplicit2"] = { type = "Eater", affix = "", "15% of Physical Damage Converted to Fire Damage", statOrder = { 1834 }, level = 75, group = "ConvertPhysicalToFireImplicit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, - ["ConvertPhysicalToFireEldritchImplicit3"] = { type = "Eater", affix = "", "20% of Physical Damage Converted to Fire Damage", statOrder = { 1834 }, level = 75, group = "ConvertPhysicalToFireImplicit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, - ["ConvertPhysicalToFireEldritchImplicit4"] = { type = "Eater", affix = "", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1834 }, level = 75, group = "ConvertPhysicalToFireImplicit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, - ["ConvertPhysicalToFireEldritchImplicit5"] = { type = "Eater", affix = "", "30% of Physical Damage Converted to Fire Damage", statOrder = { 1834 }, level = 75, group = "ConvertPhysicalToFireImplicit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, - ["ConvertPhysicalToFireEldritchImplicit6"] = { type = "Eater", affix = "", "35% of Physical Damage Converted to Fire Damage", statOrder = { 1834 }, level = 75, group = "ConvertPhysicalToFireImplicit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, - ["ConvertPhysicalToFireEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% of Physical Damage Converted to Fire Damage", statOrder = { 1834 }, level = 75, group = "ConvertPhysicalToFireUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["ConvertPhysicalToFireEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% of Physical Damage Converted to Fire Damage", statOrder = { 1834 }, level = 75, group = "ConvertPhysicalToFireUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["ConvertPhysicalToFireEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% of Physical Damage Converted to Fire Damage", statOrder = { 1834 }, level = 75, group = "ConvertPhysicalToFireUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["ConvertPhysicalToFireEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% of Physical Damage Converted to Fire Damage", statOrder = { 1834 }, level = 75, group = "ConvertPhysicalToFireUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["ConvertPhysicalToFireEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 45% of Physical Damage Converted to Fire Damage", statOrder = { 1834 }, level = 75, group = "ConvertPhysicalToFireUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["ConvertPhysicalToFireEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 50% of Physical Damage Converted to Fire Damage", statOrder = { 1834 }, level = 75, group = "ConvertPhysicalToFireUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["ConvertPhysicalToFireEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% of Physical Damage Converted to Fire Damage", statOrder = { 1834 }, level = 75, group = "ConvertPhysicalToFirePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["ConvertPhysicalToFireEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% of Physical Damage Converted to Fire Damage", statOrder = { 1834 }, level = 75, group = "ConvertPhysicalToFirePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["ConvertPhysicalToFireEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% of Physical Damage Converted to Fire Damage", statOrder = { 1834 }, level = 75, group = "ConvertPhysicalToFirePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, }, - ["ConvertPhysicalToFireEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 55% of Physical Damage Converted to Fire Damage", statOrder = { 1834 }, level = 75, group = "ConvertPhysicalToFirePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, }, - ["ConvertPhysicalToFireEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 60% of Physical Damage Converted to Fire Damage", statOrder = { 1834 }, level = 75, group = "ConvertPhysicalToFirePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, }, - ["ConvertPhysicalToFireEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 65% of Physical Damage Converted to Fire Damage", statOrder = { 1834 }, level = 75, group = "ConvertPhysicalToFirePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, }, - ["ConvertPhysicalToColdEldritchImplicit1"] = { type = "Eater", affix = "", "10% of Physical Damage Converted to Cold Damage", statOrder = { 1836 }, level = 75, group = "ConvertPhysicalToColdImplicit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, - ["ConvertPhysicalToColdEldritchImplicit2"] = { type = "Eater", affix = "", "15% of Physical Damage Converted to Cold Damage", statOrder = { 1836 }, level = 75, group = "ConvertPhysicalToColdImplicit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, - ["ConvertPhysicalToColdEldritchImplicit3"] = { type = "Eater", affix = "", "20% of Physical Damage Converted to Cold Damage", statOrder = { 1836 }, level = 75, group = "ConvertPhysicalToColdImplicit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, - ["ConvertPhysicalToColdEldritchImplicit4"] = { type = "Eater", affix = "", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1836 }, level = 75, group = "ConvertPhysicalToColdImplicit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, - ["ConvertPhysicalToColdEldritchImplicit5"] = { type = "Eater", affix = "", "30% of Physical Damage Converted to Cold Damage", statOrder = { 1836 }, level = 75, group = "ConvertPhysicalToColdImplicit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, - ["ConvertPhysicalToColdEldritchImplicit6"] = { type = "Eater", affix = "", "35% of Physical Damage Converted to Cold Damage", statOrder = { 1836 }, level = 75, group = "ConvertPhysicalToColdImplicit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, - ["ConvertPhysicalToColdEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% of Physical Damage Converted to Cold Damage", statOrder = { 1836 }, level = 75, group = "ConvertPhysicalToColdUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, - ["ConvertPhysicalToColdEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% of Physical Damage Converted to Cold Damage", statOrder = { 1836 }, level = 75, group = "ConvertPhysicalToColdUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, - ["ConvertPhysicalToColdEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% of Physical Damage Converted to Cold Damage", statOrder = { 1836 }, level = 75, group = "ConvertPhysicalToColdUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, - ["ConvertPhysicalToColdEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% of Physical Damage Converted to Cold Damage", statOrder = { 1836 }, level = 75, group = "ConvertPhysicalToColdUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, - ["ConvertPhysicalToColdEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 45% of Physical Damage Converted to Cold Damage", statOrder = { 1836 }, level = 75, group = "ConvertPhysicalToColdUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, - ["ConvertPhysicalToColdEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 50% of Physical Damage Converted to Cold Damage", statOrder = { 1836 }, level = 75, group = "ConvertPhysicalToColdUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, - ["ConvertPhysicalToColdEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% of Physical Damage Converted to Cold Damage", statOrder = { 1836 }, level = 75, group = "ConvertPhysicalToColdPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, - ["ConvertPhysicalToColdEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% of Physical Damage Converted to Cold Damage", statOrder = { 1836 }, level = 75, group = "ConvertPhysicalToColdPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, - ["ConvertPhysicalToColdEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% of Physical Damage Converted to Cold Damage", statOrder = { 1836 }, level = 75, group = "ConvertPhysicalToColdPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, - ["ConvertPhysicalToColdEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 55% of Physical Damage Converted to Cold Damage", statOrder = { 1836 }, level = 75, group = "ConvertPhysicalToColdPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, - ["ConvertPhysicalToColdEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 60% of Physical Damage Converted to Cold Damage", statOrder = { 1836 }, level = 75, group = "ConvertPhysicalToColdPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, - ["ConvertPhysicalToColdEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 65% of Physical Damage Converted to Cold Damage", statOrder = { 1836 }, level = 75, group = "ConvertPhysicalToColdPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, - ["ConvertPhysicalToLightningEldritchImplicit1"] = { type = "Eater", affix = "", "10% of Physical Damage Converted to Lightning Damage", statOrder = { 1838 }, level = 75, group = "ConvertPhysicalToLightningImplicit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, - ["ConvertPhysicalToLightningEldritchImplicit2"] = { type = "Eater", affix = "", "15% of Physical Damage Converted to Lightning Damage", statOrder = { 1838 }, level = 75, group = "ConvertPhysicalToLightningImplicit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, - ["ConvertPhysicalToLightningEldritchImplicit3"] = { type = "Eater", affix = "", "20% of Physical Damage Converted to Lightning Damage", statOrder = { 1838 }, level = 75, group = "ConvertPhysicalToLightningImplicit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, - ["ConvertPhysicalToLightningEldritchImplicit4"] = { type = "Eater", affix = "", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1838 }, level = 75, group = "ConvertPhysicalToLightningImplicit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, - ["ConvertPhysicalToLightningEldritchImplicit5"] = { type = "Eater", affix = "", "30% of Physical Damage Converted to Lightning Damage", statOrder = { 1838 }, level = 75, group = "ConvertPhysicalToLightningImplicit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, - ["ConvertPhysicalToLightningEldritchImplicit6"] = { type = "Eater", affix = "", "35% of Physical Damage Converted to Lightning Damage", statOrder = { 1838 }, level = 75, group = "ConvertPhysicalToLightningImplicit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, - ["ConvertPhysicalToLightningEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% of Physical Damage Converted to Lightning Damage", statOrder = { 1838 }, level = 75, group = "ConvertPhysicalToLightningUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, - ["ConvertPhysicalToLightningEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% of Physical Damage Converted to Lightning Damage", statOrder = { 1838 }, level = 75, group = "ConvertPhysicalToLightningUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, - ["ConvertPhysicalToLightningEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% of Physical Damage Converted to Lightning Damage", statOrder = { 1838 }, level = 75, group = "ConvertPhysicalToLightningUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, - ["ConvertPhysicalToLightningEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% of Physical Damage Converted to Lightning Damage", statOrder = { 1838 }, level = 75, group = "ConvertPhysicalToLightningUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, - ["ConvertPhysicalToLightningEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 45% of Physical Damage Converted to Lightning Damage", statOrder = { 1838 }, level = 75, group = "ConvertPhysicalToLightningUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, - ["ConvertPhysicalToLightningEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 50% of Physical Damage Converted to Lightning Damage", statOrder = { 1838 }, level = 75, group = "ConvertPhysicalToLightningUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, - ["ConvertPhysicalToLightningEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% of Physical Damage Converted to Lightning Damage", statOrder = { 1838 }, level = 75, group = "ConvertPhysicalToLightningPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, - ["ConvertPhysicalToLightningEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% of Physical Damage Converted to Lightning Damage", statOrder = { 1838 }, level = 75, group = "ConvertPhysicalToLightningPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, - ["ConvertPhysicalToLightningEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% of Physical Damage Converted to Lightning Damage", statOrder = { 1838 }, level = 75, group = "ConvertPhysicalToLightningPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, - ["ConvertPhysicalToLightningEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 55% of Physical Damage Converted to Lightning Damage", statOrder = { 1838 }, level = 75, group = "ConvertPhysicalToLightningPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, - ["ConvertPhysicalToLightningEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 60% of Physical Damage Converted to Lightning Damage", statOrder = { 1838 }, level = 75, group = "ConvertPhysicalToLightningPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, - ["ConvertPhysicalToLightningEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 65% of Physical Damage Converted to Lightning Damage", statOrder = { 1838 }, level = 75, group = "ConvertPhysicalToLightningPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, - ["ConvertPhysicalToChaosEldritchImplicit1"] = { type = "Eater", affix = "", "10% of Physical Damage Converted to Chaos Damage", statOrder = { 1841 }, level = 75, group = "PhysicalDamageConvertToChaosImplicit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, - ["ConvertPhysicalToChaosEldritchImplicit2"] = { type = "Eater", affix = "", "15% of Physical Damage Converted to Chaos Damage", statOrder = { 1841 }, level = 75, group = "PhysicalDamageConvertToChaosImplicit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, - ["ConvertPhysicalToChaosEldritchImplicit3"] = { type = "Eater", affix = "", "20% of Physical Damage Converted to Chaos Damage", statOrder = { 1841 }, level = 75, group = "PhysicalDamageConvertToChaosImplicit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, - ["ConvertPhysicalToChaosEldritchImplicit4"] = { type = "Eater", affix = "", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1841 }, level = 75, group = "PhysicalDamageConvertToChaosImplicit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, - ["ConvertPhysicalToChaosEldritchImplicit5"] = { type = "Eater", affix = "", "30% of Physical Damage Converted to Chaos Damage", statOrder = { 1841 }, level = 75, group = "PhysicalDamageConvertToChaosImplicit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, - ["ConvertPhysicalToChaosEldritchImplicit6"] = { type = "Eater", affix = "", "35% of Physical Damage Converted to Chaos Damage", statOrder = { 1841 }, level = 75, group = "PhysicalDamageConvertToChaosImplicit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, - ["ConvertPhysicalToChaosEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% of Physical Damage Converted to Chaos Damage", statOrder = { 1841 }, level = 75, group = "ConvertPhysicalToChaosUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, - ["ConvertPhysicalToChaosEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% of Physical Damage Converted to Chaos Damage", statOrder = { 1841 }, level = 75, group = "ConvertPhysicalToChaosUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, - ["ConvertPhysicalToChaosEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% of Physical Damage Converted to Chaos Damage", statOrder = { 1841 }, level = 75, group = "ConvertPhysicalToChaosUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, - ["ConvertPhysicalToChaosEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% of Physical Damage Converted to Chaos Damage", statOrder = { 1841 }, level = 75, group = "ConvertPhysicalToChaosUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, - ["ConvertPhysicalToChaosEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 45% of Physical Damage Converted to Chaos Damage", statOrder = { 1841 }, level = 75, group = "ConvertPhysicalToChaosUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, - ["ConvertPhysicalToChaosEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 50% of Physical Damage Converted to Chaos Damage", statOrder = { 1841 }, level = 75, group = "ConvertPhysicalToChaosUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, - ["ConvertPhysicalToChaosEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% of Physical Damage Converted to Chaos Damage", statOrder = { 1841 }, level = 75, group = "ConvertPhysicalToChaosPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, - ["ConvertPhysicalToChaosEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% of Physical Damage Converted to Chaos Damage", statOrder = { 1841 }, level = 75, group = "ConvertPhysicalToChaosPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, - ["ConvertPhysicalToChaosEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% of Physical Damage Converted to Chaos Damage", statOrder = { 1841 }, level = 75, group = "ConvertPhysicalToChaosPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, - ["ConvertPhysicalToChaosEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 55% of Physical Damage Converted to Chaos Damage", statOrder = { 1841 }, level = 75, group = "ConvertPhysicalToChaosPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, - ["ConvertPhysicalToChaosEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 60% of Physical Damage Converted to Chaos Damage", statOrder = { 1841 }, level = 75, group = "ConvertPhysicalToChaosPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, - ["ConvertPhysicalToChaosEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 65% of Physical Damage Converted to Chaos Damage", statOrder = { 1841 }, level = 75, group = "ConvertPhysicalToChaosPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, - ["FireDamageLifeLeechEldritchImplicit1"] = { type = "Eater", affix = "", "0.2% of Fire Damage Leeched as Life", statOrder = { 1553 }, level = 75, group = "FireDamageLifeLeechHundredThousand", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["FireDamageLifeLeechEldritchImplicit2"] = { type = "Eater", affix = "", "0.3% of Fire Damage Leeched as Life", statOrder = { 1553 }, level = 75, group = "FireDamageLifeLeechHundredThousand", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["FireDamageLifeLeechEldritchImplicit3"] = { type = "Eater", affix = "", "0.4% of Fire Damage Leeched as Life", statOrder = { 1553 }, level = 75, group = "FireDamageLifeLeechHundredThousand", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["FireDamageLifeLeechEldritchImplicit4"] = { type = "Eater", affix = "", "0.5% of Fire Damage Leeched as Life", statOrder = { 1553 }, level = 75, group = "FireDamageLifeLeechHundredThousand", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["FireDamageLifeLeechEldritchImplicit5"] = { type = "Eater", affix = "", "0.6% of Fire Damage Leeched as Life", statOrder = { 1553 }, level = 75, group = "FireDamageLifeLeechHundredThousand", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["FireDamageLifeLeechEldritchImplicit6"] = { type = "Eater", affix = "", "0.7% of Fire Damage Leeched as Life", statOrder = { 1553 }, level = 75, group = "FireDamageLifeLeechHundredThousand", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["FireDamageLifeLeechEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.4% of Fire Damage Leeched as Life", statOrder = { 1553 }, level = 75, group = "FireDamageLifeLeechUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["FireDamageLifeLeechEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.5% of Fire Damage Leeched as Life", statOrder = { 1553 }, level = 75, group = "FireDamageLifeLeechUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["FireDamageLifeLeechEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.6% of Fire Damage Leeched as Life", statOrder = { 1553 }, level = 75, group = "FireDamageLifeLeechUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["FireDamageLifeLeechEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.7% of Fire Damage Leeched as Life", statOrder = { 1553 }, level = 75, group = "FireDamageLifeLeechUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["FireDamageLifeLeechEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.8% of Fire Damage Leeched as Life", statOrder = { 1553 }, level = 75, group = "FireDamageLifeLeechUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["FireDamageLifeLeechEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.9% of Fire Damage Leeched as Life", statOrder = { 1553 }, level = 75, group = "FireDamageLifeLeechUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["FireDamageLifeLeechEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.6% of Fire Damage Leeched as Life", statOrder = { 1553 }, level = 75, group = "FireDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["FireDamageLifeLeechEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.7% of Fire Damage Leeched as Life", statOrder = { 1553 }, level = 75, group = "FireDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["FireDamageLifeLeechEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.8% of Fire Damage Leeched as Life", statOrder = { 1553 }, level = 75, group = "FireDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, - ["FireDamageLifeLeechEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.9% of Fire Damage Leeched as Life", statOrder = { 1553 }, level = 75, group = "FireDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, - ["FireDamageLifeLeechEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% of Fire Damage Leeched as Life", statOrder = { 1553 }, level = 75, group = "FireDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, - ["FireDamageLifeLeechEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1.1% of Fire Damage Leeched as Life", statOrder = { 1553 }, level = 75, group = "FireDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, - ["ColdDamageLifeLeechEldritchImplicit1"] = { type = "Eater", affix = "", "0.2% of Cold Damage Leeched as Life", statOrder = { 1558 }, level = 75, group = "ColdDamageLifeLeechHundredThousand", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["ColdDamageLifeLeechEldritchImplicit2"] = { type = "Eater", affix = "", "0.3% of Cold Damage Leeched as Life", statOrder = { 1558 }, level = 75, group = "ColdDamageLifeLeechHundredThousand", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["ColdDamageLifeLeechEldritchImplicit3"] = { type = "Eater", affix = "", "0.4% of Cold Damage Leeched as Life", statOrder = { 1558 }, level = 75, group = "ColdDamageLifeLeechHundredThousand", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["ColdDamageLifeLeechEldritchImplicit4"] = { type = "Eater", affix = "", "0.5% of Cold Damage Leeched as Life", statOrder = { 1558 }, level = 75, group = "ColdDamageLifeLeechHundredThousand", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["ColdDamageLifeLeechEldritchImplicit5"] = { type = "Eater", affix = "", "0.6% of Cold Damage Leeched as Life", statOrder = { 1558 }, level = 75, group = "ColdDamageLifeLeechHundredThousand", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["ColdDamageLifeLeechEldritchImplicit6"] = { type = "Eater", affix = "", "0.7% of Cold Damage Leeched as Life", statOrder = { 1558 }, level = 75, group = "ColdDamageLifeLeechHundredThousand", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["ColdDamageLifeLeechEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.4% of Cold Damage Leeched as Life", statOrder = { 1558 }, level = 75, group = "ColdDamageLifeLeechUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["ColdDamageLifeLeechEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.5% of Cold Damage Leeched as Life", statOrder = { 1558 }, level = 75, group = "ColdDamageLifeLeechUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["ColdDamageLifeLeechEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.6% of Cold Damage Leeched as Life", statOrder = { 1558 }, level = 75, group = "ColdDamageLifeLeechUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["ColdDamageLifeLeechEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.7% of Cold Damage Leeched as Life", statOrder = { 1558 }, level = 75, group = "ColdDamageLifeLeechUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["ColdDamageLifeLeechEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.8% of Cold Damage Leeched as Life", statOrder = { 1558 }, level = 75, group = "ColdDamageLifeLeechUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["ColdDamageLifeLeechEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.9% of Cold Damage Leeched as Life", statOrder = { 1558 }, level = 75, group = "ColdDamageLifeLeechUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["ColdDamageLifeLeechEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.6% of Cold Damage Leeched as Life", statOrder = { 1558 }, level = 75, group = "ColdDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["ColdDamageLifeLeechEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.7% of Cold Damage Leeched as Life", statOrder = { 1558 }, level = 75, group = "ColdDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["ColdDamageLifeLeechEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.8% of Cold Damage Leeched as Life", statOrder = { 1558 }, level = 75, group = "ColdDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, - ["ColdDamageLifeLeechEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.9% of Cold Damage Leeched as Life", statOrder = { 1558 }, level = 75, group = "ColdDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, - ["ColdDamageLifeLeechEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% of Cold Damage Leeched as Life", statOrder = { 1558 }, level = 75, group = "ColdDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, - ["ColdDamageLifeLeechEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1.1% of Cold Damage Leeched as Life", statOrder = { 1558 }, level = 75, group = "ColdDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, - ["LightningDamageLifeLeechEldritchImplicit1"] = { type = "Eater", affix = "", "0.2% of Lightning Damage Leeched as Life", statOrder = { 1562 }, level = 75, group = "LightningDamageLifeLeechHundredThousand", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["LightningDamageLifeLeechEldritchImplicit2"] = { type = "Eater", affix = "", "0.3% of Lightning Damage Leeched as Life", statOrder = { 1562 }, level = 75, group = "LightningDamageLifeLeechHundredThousand", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["LightningDamageLifeLeechEldritchImplicit3"] = { type = "Eater", affix = "", "0.4% of Lightning Damage Leeched as Life", statOrder = { 1562 }, level = 75, group = "LightningDamageLifeLeechHundredThousand", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["LightningDamageLifeLeechEldritchImplicit4"] = { type = "Eater", affix = "", "0.5% of Lightning Damage Leeched as Life", statOrder = { 1562 }, level = 75, group = "LightningDamageLifeLeechHundredThousand", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["LightningDamageLifeLeechEldritchImplicit5"] = { type = "Eater", affix = "", "0.6% of Lightning Damage Leeched as Life", statOrder = { 1562 }, level = 75, group = "LightningDamageLifeLeechHundredThousand", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["LightningDamageLifeLeechEldritchImplicit6"] = { type = "Eater", affix = "", "0.7% of Lightning Damage Leeched as Life", statOrder = { 1562 }, level = 75, group = "LightningDamageLifeLeechHundredThousand", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["LightningDamageLifeLeechEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.4% of Lightning Damage Leeched as Life", statOrder = { 1562 }, level = 75, group = "LightningDamageLifeLeechUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["LightningDamageLifeLeechEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.5% of Lightning Damage Leeched as Life", statOrder = { 1562 }, level = 75, group = "LightningDamageLifeLeechUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["LightningDamageLifeLeechEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.6% of Lightning Damage Leeched as Life", statOrder = { 1562 }, level = 75, group = "LightningDamageLifeLeechUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["LightningDamageLifeLeechEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.7% of Lightning Damage Leeched as Life", statOrder = { 1562 }, level = 75, group = "LightningDamageLifeLeechUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["LightningDamageLifeLeechEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.8% of Lightning Damage Leeched as Life", statOrder = { 1562 }, level = 75, group = "LightningDamageLifeLeechUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["LightningDamageLifeLeechEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.9% of Lightning Damage Leeched as Life", statOrder = { 1562 }, level = 75, group = "LightningDamageLifeLeechUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["LightningDamageLifeLeechEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.6% of Lightning Damage Leeched as Life", statOrder = { 1562 }, level = 75, group = "LightningDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["LightningDamageLifeLeechEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.7% of Lightning Damage Leeched as Life", statOrder = { 1562 }, level = 75, group = "LightningDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["LightningDamageLifeLeechEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.8% of Lightning Damage Leeched as Life", statOrder = { 1562 }, level = 75, group = "LightningDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, - ["LightningDamageLifeLeechEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.9% of Lightning Damage Leeched as Life", statOrder = { 1562 }, level = 75, group = "LightningDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, - ["LightningDamageLifeLeechEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% of Lightning Damage Leeched as Life", statOrder = { 1562 }, level = 75, group = "LightningDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, - ["LightningDamageLifeLeechEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1.1% of Lightning Damage Leeched as Life", statOrder = { 1562 }, level = 75, group = "LightningDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, - ["PhysicalDamageLifeLeechEldritchImplicit1"] = { type = "Eater", affix = "", "0.2% of Physical Damage Leeched as Life", statOrder = { 1549 }, level = 75, group = "PhysicalDamageLifeLeechHundredThousand", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["PhysicalDamageLifeLeechEldritchImplicit2"] = { type = "Eater", affix = "", "0.3% of Physical Damage Leeched as Life", statOrder = { 1549 }, level = 75, group = "PhysicalDamageLifeLeechHundredThousand", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["PhysicalDamageLifeLeechEldritchImplicit3"] = { type = "Eater", affix = "", "0.4% of Physical Damage Leeched as Life", statOrder = { 1549 }, level = 75, group = "PhysicalDamageLifeLeechHundredThousand", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["PhysicalDamageLifeLeechEldritchImplicit4"] = { type = "Eater", affix = "", "0.5% of Physical Damage Leeched as Life", statOrder = { 1549 }, level = 75, group = "PhysicalDamageLifeLeechHundredThousand", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["PhysicalDamageLifeLeechEldritchImplicit5"] = { type = "Eater", affix = "", "0.6% of Physical Damage Leeched as Life", statOrder = { 1549 }, level = 75, group = "PhysicalDamageLifeLeechHundredThousand", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["PhysicalDamageLifeLeechEldritchImplicit6"] = { type = "Eater", affix = "", "0.7% of Physical Damage Leeched as Life", statOrder = { 1549 }, level = 75, group = "PhysicalDamageLifeLeechHundredThousand", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["PhysicalDamageLifeLeechEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.4% of Physical Damage Leeched as Life", statOrder = { 1549 }, level = 75, group = "PhysicalDamageLifeLeechUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["PhysicalDamageLifeLeechEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.5% of Physical Damage Leeched as Life", statOrder = { 1549 }, level = 75, group = "PhysicalDamageLifeLeechUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["PhysicalDamageLifeLeechEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.6% of Physical Damage Leeched as Life", statOrder = { 1549 }, level = 75, group = "PhysicalDamageLifeLeechUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["PhysicalDamageLifeLeechEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.7% of Physical Damage Leeched as Life", statOrder = { 1549 }, level = 75, group = "PhysicalDamageLifeLeechUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["PhysicalDamageLifeLeechEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.8% of Physical Damage Leeched as Life", statOrder = { 1549 }, level = 75, group = "PhysicalDamageLifeLeechUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["PhysicalDamageLifeLeechEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.9% of Physical Damage Leeched as Life", statOrder = { 1549 }, level = 75, group = "PhysicalDamageLifeLeechUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["PhysicalDamageLifeLeechEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.6% of Physical Damage Leeched as Life", statOrder = { 1549 }, level = 75, group = "PhysicalDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["PhysicalDamageLifeLeechEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.7% of Physical Damage Leeched as Life", statOrder = { 1549 }, level = 75, group = "PhysicalDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["PhysicalDamageLifeLeechEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.8% of Physical Damage Leeched as Life", statOrder = { 1549 }, level = 75, group = "PhysicalDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, - ["PhysicalDamageLifeLeechEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.9% of Physical Damage Leeched as Life", statOrder = { 1549 }, level = 75, group = "PhysicalDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, - ["PhysicalDamageLifeLeechEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% of Physical Damage Leeched as Life", statOrder = { 1549 }, level = 75, group = "PhysicalDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, - ["PhysicalDamageLifeLeechEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1.1% of Physical Damage Leeched as Life", statOrder = { 1549 }, level = 75, group = "PhysicalDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, - ["ChaosDamageLifeLeechEldritchImplicit1"] = { type = "Eater", affix = "", "0.2% of Chaos Damage Leeched as Life", statOrder = { 1565 }, level = 75, group = "ChaosDamageLifeLeechHundredThousand", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["ChaosDamageLifeLeechEldritchImplicit2"] = { type = "Eater", affix = "", "0.3% of Chaos Damage Leeched as Life", statOrder = { 1565 }, level = 75, group = "ChaosDamageLifeLeechHundredThousand", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["ChaosDamageLifeLeechEldritchImplicit3"] = { type = "Eater", affix = "", "0.4% of Chaos Damage Leeched as Life", statOrder = { 1565 }, level = 75, group = "ChaosDamageLifeLeechHundredThousand", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["ChaosDamageLifeLeechEldritchImplicit4"] = { type = "Eater", affix = "", "0.5% of Chaos Damage Leeched as Life", statOrder = { 1565 }, level = 75, group = "ChaosDamageLifeLeechHundredThousand", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["ChaosDamageLifeLeechEldritchImplicit5"] = { type = "Eater", affix = "", "0.6% of Chaos Damage Leeched as Life", statOrder = { 1565 }, level = 75, group = "ChaosDamageLifeLeechHundredThousand", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["ChaosDamageLifeLeechEldritchImplicit6"] = { type = "Eater", affix = "", "0.7% of Chaos Damage Leeched as Life", statOrder = { 1565 }, level = 75, group = "ChaosDamageLifeLeechHundredThousand", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["ChaosDamageLifeLeechEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.4% of Chaos Damage Leeched as Life", statOrder = { 1565 }, level = 75, group = "ChaosDamageLifeLeechUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["ChaosDamageLifeLeechEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.5% of Chaos Damage Leeched as Life", statOrder = { 1565 }, level = 75, group = "ChaosDamageLifeLeechUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["ChaosDamageLifeLeechEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.6% of Chaos Damage Leeched as Life", statOrder = { 1565 }, level = 75, group = "ChaosDamageLifeLeechUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["ChaosDamageLifeLeechEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.7% of Chaos Damage Leeched as Life", statOrder = { 1565 }, level = 75, group = "ChaosDamageLifeLeechUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["ChaosDamageLifeLeechEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.8% of Chaos Damage Leeched as Life", statOrder = { 1565 }, level = 75, group = "ChaosDamageLifeLeechUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["ChaosDamageLifeLeechEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.9% of Chaos Damage Leeched as Life", statOrder = { 1565 }, level = 75, group = "ChaosDamageLifeLeechUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["ChaosDamageLifeLeechEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.6% of Chaos Damage Leeched as Life", statOrder = { 1565 }, level = 75, group = "ChaosDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["ChaosDamageLifeLeechEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.7% of Chaos Damage Leeched as Life", statOrder = { 1565 }, level = 75, group = "ChaosDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["ChaosDamageLifeLeechEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.8% of Chaos Damage Leeched as Life", statOrder = { 1565 }, level = 75, group = "ChaosDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, - ["ChaosDamageLifeLeechEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.9% of Chaos Damage Leeched as Life", statOrder = { 1565 }, level = 75, group = "ChaosDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, - ["ChaosDamageLifeLeechEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% of Chaos Damage Leeched as Life", statOrder = { 1565 }, level = 75, group = "ChaosDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, - ["ChaosDamageLifeLeechEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1.1% of Chaos Damage Leeched as Life", statOrder = { 1565 }, level = 75, group = "ChaosDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, - ["DamagePer100STREldritchImplicit1"] = { type = "Eater", affix = "", "3% increased Damage per 100 Strength", statOrder = { 5754 }, level = 75, group = "DamagePer100STR", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["DamagePer100STREldritchImplicit2"] = { type = "Eater", affix = "", "3% increased Damage per 100 Strength", statOrder = { 5754 }, level = 75, group = "DamagePer100STR", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["DamagePer100STREldritchImplicit3"] = { type = "Eater", affix = "", "3% increased Damage per 100 Strength", statOrder = { 5754 }, level = 75, group = "DamagePer100STR", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["DamagePer100STREldritchImplicit4"] = { type = "Eater", affix = "", "3% increased Damage per 100 Strength", statOrder = { 5754 }, level = 75, group = "DamagePer100STR", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["DamagePer100STREldritchImplicit5"] = { type = "Eater", affix = "", "4% increased Damage per 100 Strength", statOrder = { 5754 }, level = 75, group = "DamagePer100STR", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["DamagePer100STREldritchImplicit6"] = { type = "Eater", affix = "", "4% increased Damage per 100 Strength", statOrder = { 5754 }, level = 75, group = "DamagePer100STR", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["DamagePer100STREldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Strength", statOrder = { 5754 }, level = 75, group = "DamagePer100STRUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, }, - ["DamagePer100STREldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Strength", statOrder = { 5754 }, level = 75, group = "DamagePer100STRUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, - ["DamagePer100STREldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Strength", statOrder = { 5754 }, level = 75, group = "DamagePer100STRUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, - ["DamagePer100STREldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Strength", statOrder = { 5754 }, level = 75, group = "DamagePer100STRUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, - ["DamagePer100STREldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per 100 Strength", statOrder = { 5754 }, level = 75, group = "DamagePer100STRUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, - ["DamagePer100STREldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per 100 Strength", statOrder = { 5754 }, level = 75, group = "DamagePer100STRUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, - ["DamagePer100STREldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Strength", statOrder = { 5754 }, level = 75, group = "DamagePer100STRPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, }, - ["DamagePer100STREldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Strength", statOrder = { 5754 }, level = 75, group = "DamagePer100STRPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, }, - ["DamagePer100STREldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Strength", statOrder = { 5754 }, level = 75, group = "DamagePer100STRPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, }, - ["DamagePer100STREldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Strength", statOrder = { 5754 }, level = 75, group = "DamagePer100STRPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, }, - ["DamagePer100STREldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per 100 Strength", statOrder = { 5754 }, level = 75, group = "DamagePer100STRPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, }, - ["DamagePer100STREldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per 100 Strength", statOrder = { 5754 }, level = 75, group = "DamagePer100STRPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, }, - ["DamagePer100DEXEldritchImplicit1"] = { type = "Eater", affix = "", "3% increased Damage per 100 Dexterity", statOrder = { 5752 }, level = 75, group = "DamagePer100DEX", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["DamagePer100DEXEldritchImplicit2"] = { type = "Eater", affix = "", "3% increased Damage per 100 Dexterity", statOrder = { 5752 }, level = 75, group = "DamagePer100DEX", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["DamagePer100DEXEldritchImplicit3"] = { type = "Eater", affix = "", "3% increased Damage per 100 Dexterity", statOrder = { 5752 }, level = 75, group = "DamagePer100DEX", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["DamagePer100DEXEldritchImplicit4"] = { type = "Eater", affix = "", "3% increased Damage per 100 Dexterity", statOrder = { 5752 }, level = 75, group = "DamagePer100DEX", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["DamagePer100DEXEldritchImplicit5"] = { type = "Eater", affix = "", "4% increased Damage per 100 Dexterity", statOrder = { 5752 }, level = 75, group = "DamagePer100DEX", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["DamagePer100DEXEldritchImplicit6"] = { type = "Eater", affix = "", "4% increased Damage per 100 Dexterity", statOrder = { 5752 }, level = 75, group = "DamagePer100DEX", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["DamagePer100DEXEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Dexterity", statOrder = { 5752 }, level = 75, group = "DamagePer100DEXUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, }, - ["DamagePer100DEXEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Dexterity", statOrder = { 5752 }, level = 75, group = "DamagePer100DEXUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, - ["DamagePer100DEXEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Dexterity", statOrder = { 5752 }, level = 75, group = "DamagePer100DEXUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, - ["DamagePer100DEXEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Dexterity", statOrder = { 5752 }, level = 75, group = "DamagePer100DEXUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, - ["DamagePer100DEXEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per 100 Dexterity", statOrder = { 5752 }, level = 75, group = "DamagePer100DEXUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, - ["DamagePer100DEXEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per 100 Dexterity", statOrder = { 5752 }, level = 75, group = "DamagePer100DEXUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, - ["DamagePer100DEXEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Dexterity", statOrder = { 5752 }, level = 75, group = "DamagePer100DEXPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, }, - ["DamagePer100DEXEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Dexterity", statOrder = { 5752 }, level = 75, group = "DamagePer100DEXPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, }, - ["DamagePer100DEXEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Dexterity", statOrder = { 5752 }, level = 75, group = "DamagePer100DEXPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, }, - ["DamagePer100DEXEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Dexterity", statOrder = { 5752 }, level = 75, group = "DamagePer100DEXPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, }, - ["DamagePer100DEXEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per 100 Dexterity", statOrder = { 5752 }, level = 75, group = "DamagePer100DEXPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, }, - ["DamagePer100DEXEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per 100 Dexterity", statOrder = { 5752 }, level = 75, group = "DamagePer100DEXPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, }, - ["DamagePer100INTEldritchImplicit1"] = { type = "Eater", affix = "", "3% increased Damage per 100 Intelligence", statOrder = { 5753 }, level = 75, group = "DamagePer100INT", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["DamagePer100INTEldritchImplicit2"] = { type = "Eater", affix = "", "3% increased Damage per 100 Intelligence", statOrder = { 5753 }, level = 75, group = "DamagePer100INT", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["DamagePer100INTEldritchImplicit3"] = { type = "Eater", affix = "", "3% increased Damage per 100 Intelligence", statOrder = { 5753 }, level = 75, group = "DamagePer100INT", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["DamagePer100INTEldritchImplicit4"] = { type = "Eater", affix = "", "3% increased Damage per 100 Intelligence", statOrder = { 5753 }, level = 75, group = "DamagePer100INT", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["DamagePer100INTEldritchImplicit5"] = { type = "Eater", affix = "", "4% increased Damage per 100 Intelligence", statOrder = { 5753 }, level = 75, group = "DamagePer100INT", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["DamagePer100INTEldritchImplicit6"] = { type = "Eater", affix = "", "4% increased Damage per 100 Intelligence", statOrder = { 5753 }, level = 75, group = "DamagePer100INT", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["DamagePer100INTEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Intelligence", statOrder = { 5753 }, level = 75, group = "DamagePer100INTUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, }, - ["DamagePer100INTEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Intelligence", statOrder = { 5753 }, level = 75, group = "DamagePer100INTUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, - ["DamagePer100INTEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Intelligence", statOrder = { 5753 }, level = 75, group = "DamagePer100INTUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, - ["DamagePer100INTEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Intelligence", statOrder = { 5753 }, level = 75, group = "DamagePer100INTUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, - ["DamagePer100INTEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per 100 Intelligence", statOrder = { 5753 }, level = 75, group = "DamagePer100INTUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, - ["DamagePer100INTEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per 100 Intelligence", statOrder = { 5753 }, level = 75, group = "DamagePer100INTUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, - ["DamagePer100INTEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Intelligence", statOrder = { 5753 }, level = 75, group = "DamagePer100INTPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, }, - ["DamagePer100INTEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Intelligence", statOrder = { 5753 }, level = 75, group = "DamagePer100INTPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, }, - ["DamagePer100INTEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Intelligence", statOrder = { 5753 }, level = 75, group = "DamagePer100INTPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, }, - ["DamagePer100INTEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Intelligence", statOrder = { 5753 }, level = 75, group = "DamagePer100INTPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, }, - ["DamagePer100INTEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per 100 Intelligence", statOrder = { 5753 }, level = 75, group = "DamagePer100INTPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, }, - ["DamagePer100INTEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per 100 Intelligence", statOrder = { 5753 }, level = 75, group = "DamagePer100INTPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, }, - ["BlindEffectEldritchImplicit1"] = { type = "Eater", affix = "", "(6-7)% increased Blind Effect", statOrder = { 5031 }, level = 75, group = "BlindEffect", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["BlindEffectEldritchImplicit2"] = { type = "Eater", affix = "", "(8-9)% increased Blind Effect", statOrder = { 5031 }, level = 75, group = "BlindEffect", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["BlindEffectEldritchImplicit3"] = { type = "Eater", affix = "", "(10-11)% increased Blind Effect", statOrder = { 5031 }, level = 75, group = "BlindEffect", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["BlindEffectEldritchImplicit4"] = { type = "Eater", affix = "", "(12-13)% increased Blind Effect", statOrder = { 5031 }, level = 75, group = "BlindEffect", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["BlindEffectEldritchImplicit5"] = { type = "Eater", affix = "", "(14-15)% increased Blind Effect", statOrder = { 5031 }, level = 75, group = "BlindEffect", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["BlindEffectEldritchImplicit6"] = { type = "Eater", affix = "", "(16-17)% increased Blind Effect", statOrder = { 5031 }, level = 75, group = "BlindEffect", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["BlindEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (12-13)% increased Blind Effect", statOrder = { 5031 }, level = 75, group = "BlindEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["BlindEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (14-15)% increased Blind Effect", statOrder = { 5031 }, level = 75, group = "BlindEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["BlindEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (16-17)% increased Blind Effect", statOrder = { 5031 }, level = 75, group = "BlindEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["BlindEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (18-19)% increased Blind Effect", statOrder = { 5031 }, level = 75, group = "BlindEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["BlindEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (20-21)% increased Blind Effect", statOrder = { 5031 }, level = 75, group = "BlindEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["BlindEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (22-23)% increased Blind Effect", statOrder = { 5031 }, level = 75, group = "BlindEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["BlindEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (18-19)% increased Blind Effect", statOrder = { 5031 }, level = 75, group = "BlindEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["BlindEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% increased Blind Effect", statOrder = { 5031 }, level = 75, group = "BlindEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["BlindEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% increased Blind Effect", statOrder = { 5031 }, level = 75, group = "BlindEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["BlindEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% increased Blind Effect", statOrder = { 5031 }, level = 75, group = "BlindEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["BlindEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% increased Blind Effect", statOrder = { 5031 }, level = 75, group = "BlindEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["BlindEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% increased Blind Effect", statOrder = { 5031 }, level = 75, group = "BlindEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["ExertedAttackDamageEldritchImplicit1"] = { type = "Eater", affix = "", "Exerted Attacks deal (20-22)% increased Damage", statOrder = { 6042 }, level = 75, group = "ExertedAttackDamage", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "damage", "attack" }, }, - ["ExertedAttackDamageEldritchImplicit2"] = { type = "Eater", affix = "", "Exerted Attacks deal (23-25)% increased Damage", statOrder = { 6042 }, level = 75, group = "ExertedAttackDamage", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "damage", "attack" }, }, - ["ExertedAttackDamageEldritchImplicit3"] = { type = "Eater", affix = "", "Exerted Attacks deal (26-28)% increased Damage", statOrder = { 6042 }, level = 75, group = "ExertedAttackDamage", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "damage", "attack" }, }, - ["ExertedAttackDamageEldritchImplicit4"] = { type = "Eater", affix = "", "Exerted Attacks deal (29-31)% increased Damage", statOrder = { 6042 }, level = 75, group = "ExertedAttackDamage", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "damage", "attack" }, }, - ["ExertedAttackDamageEldritchImplicit5"] = { type = "Eater", affix = "", "Exerted Attacks deal (32-33)% increased Damage", statOrder = { 6042 }, level = 75, group = "ExertedAttackDamage", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "damage", "attack" }, }, - ["ExertedAttackDamageEldritchImplicit6"] = { type = "Eater", affix = "", "Exerted Attacks deal (34-35)% increased Damage", statOrder = { 6042 }, level = 75, group = "ExertedAttackDamage", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "damage", "attack" }, }, - ["ExertedAttackDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Exerted Attacks deal (26-28)% increased Damage", statOrder = { 6042 }, level = 75, group = "ExertedAttackDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage", "attack" }, }, - ["ExertedAttackDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Exerted Attacks deal (29-31)% increased Damage", statOrder = { 6042 }, level = 75, group = "ExertedAttackDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "damage", "attack" }, }, - ["ExertedAttackDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Exerted Attacks deal (32-34)% increased Damage", statOrder = { 6042 }, level = 75, group = "ExertedAttackDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "damage", "attack" }, }, - ["ExertedAttackDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Exerted Attacks deal (35-37)% increased Damage", statOrder = { 6042 }, level = 75, group = "ExertedAttackDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "damage", "attack" }, }, - ["ExertedAttackDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Exerted Attacks deal (38-39)% increased Damage", statOrder = { 6042 }, level = 75, group = "ExertedAttackDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "damage", "attack" }, }, - ["ExertedAttackDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Exerted Attacks deal (40-41)% increased Damage", statOrder = { 6042 }, level = 75, group = "ExertedAttackDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "damage", "attack" }, }, - ["ExertedAttackDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Exerted Attacks deal (32-34)% increased Damage", statOrder = { 6042 }, level = 75, group = "ExertedAttackDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage", "attack" }, }, - ["ExertedAttackDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Exerted Attacks deal (35-37)% increased Damage", statOrder = { 6042 }, level = 75, group = "ExertedAttackDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage", "attack" }, }, - ["ExertedAttackDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Exerted Attacks deal (38-40)% increased Damage", statOrder = { 6042 }, level = 75, group = "ExertedAttackDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "damage", "attack" }, }, - ["ExertedAttackDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Exerted Attacks deal (41-43)% increased Damage", statOrder = { 6042 }, level = 75, group = "ExertedAttackDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "damage", "attack" }, }, - ["ExertedAttackDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Exerted Attacks deal (44-45)% increased Damage", statOrder = { 6042 }, level = 75, group = "ExertedAttackDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "damage", "attack" }, }, - ["ExertedAttackDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Exerted Attacks deal (46-47)% increased Damage", statOrder = { 6042 }, level = 75, group = "ExertedAttackDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "damage", "attack" }, }, - ["GlobalMaimOnHitEldritchImplicit1"] = { type = "Eater", affix = "", "Attacks have 15% chance to Maim on Hit", statOrder = { 7728 }, level = 75, group = "GlobalMaimOnHit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "attack" }, }, - ["GlobalMaimOnHitEldritchImplicit2"] = { type = "Eater", affix = "", "Attacks have 20% chance to Maim on Hit", statOrder = { 7728 }, level = 75, group = "GlobalMaimOnHit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "attack" }, }, - ["GlobalMaimOnHitEldritchImplicit3"] = { type = "Eater", affix = "", "Attacks have 25% chance to Maim on Hit", statOrder = { 7728 }, level = 75, group = "GlobalMaimOnHit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "attack" }, }, - ["GlobalMaimOnHitEldritchImplicit4"] = { type = "Eater", affix = "", "Attacks have 30% chance to Maim on Hit", statOrder = { 7728 }, level = 75, group = "GlobalMaimOnHit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "attack" }, }, - ["GlobalMaimOnHitEldritchImplicit5"] = { type = "Eater", affix = "", "Attacks have 35% chance to Maim on Hit", statOrder = { 7728 }, level = 75, group = "GlobalMaimOnHit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "attack" }, }, - ["GlobalMaimOnHitEldritchImplicit6"] = { type = "Eater", affix = "", "Attacks have 40% chance to Maim on Hit", statOrder = { 7728 }, level = 75, group = "GlobalMaimOnHit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "attack" }, }, - ["GlobalMaimOnHitEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 45% chance to Maim on Hit", statOrder = { 7728 }, level = 75, group = "GlobalMaimOnHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, - ["GlobalMaimOnHitEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 50% chance to Maim on Hit", statOrder = { 7728 }, level = 75, group = "GlobalMaimOnHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "attack" }, }, - ["GlobalMaimOnHitEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 55% chance to Maim on Hit", statOrder = { 7728 }, level = 75, group = "GlobalMaimOnHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "attack" }, }, - ["GlobalMaimOnHitEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 60% chance to Maim on Hit", statOrder = { 7728 }, level = 75, group = "GlobalMaimOnHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "attack" }, }, - ["GlobalMaimOnHitEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 65% chance to Maim on Hit", statOrder = { 7728 }, level = 75, group = "GlobalMaimOnHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "attack" }, }, - ["GlobalMaimOnHitEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 70% chance to Maim on Hit", statOrder = { 7728 }, level = 75, group = "GlobalMaimOnHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "attack" }, }, - ["GlobalMaimOnHitEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 75% chance to Maim on Hit", statOrder = { 7728 }, level = 75, group = "GlobalMaimOnHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, - ["GlobalMaimOnHitEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 80% chance to Maim on Hit", statOrder = { 7728 }, level = 75, group = "GlobalMaimOnHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, - ["GlobalMaimOnHitEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 85% chance to Maim on Hit", statOrder = { 7728 }, level = 75, group = "GlobalMaimOnHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "attack" }, }, - ["GlobalMaimOnHitEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 90% chance to Maim on Hit", statOrder = { 7728 }, level = 75, group = "GlobalMaimOnHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "attack" }, }, - ["GlobalMaimOnHitEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 95% chance to Maim on Hit", statOrder = { 7728 }, level = 75, group = "GlobalMaimOnHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "attack" }, }, - ["GlobalMaimOnHitEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks always Maim on Hit", statOrder = { 7728 }, level = 75, group = "GlobalMaimOnHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "attack" }, }, - ["SpellsHinderOnHitChanceEldritchImplicit1"] = { type = "Eater", affix = "", "15% chance to Hinder Enemies on Hit with Spells", statOrder = { 9670 }, level = 75, group = "SpellsHinderOnHitChance", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "caster" }, }, - ["SpellsHinderOnHitChanceEldritchImplicit2"] = { type = "Eater", affix = "", "20% chance to Hinder Enemies on Hit with Spells", statOrder = { 9670 }, level = 75, group = "SpellsHinderOnHitChance", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "caster" }, }, - ["SpellsHinderOnHitChanceEldritchImplicit3"] = { type = "Eater", affix = "", "25% chance to Hinder Enemies on Hit with Spells", statOrder = { 9670 }, level = 75, group = "SpellsHinderOnHitChance", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "caster" }, }, - ["SpellsHinderOnHitChanceEldritchImplicit4"] = { type = "Eater", affix = "", "30% chance to Hinder Enemies on Hit with Spells", statOrder = { 9670 }, level = 75, group = "SpellsHinderOnHitChance", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "caster" }, }, - ["SpellsHinderOnHitChanceEldritchImplicit5"] = { type = "Eater", affix = "", "35% chance to Hinder Enemies on Hit with Spells", statOrder = { 9670 }, level = 75, group = "SpellsHinderOnHitChance", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "caster" }, }, - ["SpellsHinderOnHitChanceEldritchImplicit6"] = { type = "Eater", affix = "", "40% chance to Hinder Enemies on Hit with Spells", statOrder = { 9670 }, level = 75, group = "SpellsHinderOnHitChance", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "caster" }, }, - ["SpellsHinderOnHitChanceEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 45% chance to Hinder Enemies on Hit with Spells", statOrder = { 9670 }, level = 75, group = "SpellsHinderOnHitChanceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "caster" }, }, - ["SpellsHinderOnHitChanceEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 50% chance to Hinder Enemies on Hit with Spells", statOrder = { 9670 }, level = 75, group = "SpellsHinderOnHitChanceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster" }, }, - ["SpellsHinderOnHitChanceEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 55% chance to Hinder Enemies on Hit with Spells", statOrder = { 9670 }, level = 75, group = "SpellsHinderOnHitChanceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster" }, }, - ["SpellsHinderOnHitChanceEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 60% chance to Hinder Enemies on Hit with Spells", statOrder = { 9670 }, level = 75, group = "SpellsHinderOnHitChanceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster" }, }, - ["SpellsHinderOnHitChanceEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 65% chance to Hinder Enemies on Hit with Spells", statOrder = { 9670 }, level = 75, group = "SpellsHinderOnHitChanceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster" }, }, - ["SpellsHinderOnHitChanceEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 70% chance to Hinder Enemies on Hit with Spells", statOrder = { 9670 }, level = 75, group = "SpellsHinderOnHitChanceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster" }, }, - ["SpellsHinderOnHitChanceEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 75% chance to Hinder Enemies on Hit with Spells", statOrder = { 9670 }, level = 75, group = "SpellsHinderOnHitChancePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "caster" }, }, - ["SpellsHinderOnHitChanceEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 80% chance to Hinder Enemies on Hit with Spells", statOrder = { 9670 }, level = 75, group = "SpellsHinderOnHitChancePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "caster" }, }, - ["SpellsHinderOnHitChanceEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 85% chance to Hinder Enemies on Hit with Spells", statOrder = { 9670 }, level = 75, group = "SpellsHinderOnHitChancePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "caster" }, }, - ["SpellsHinderOnHitChanceEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 90% chance to Hinder Enemies on Hit with Spells", statOrder = { 9670 }, level = 75, group = "SpellsHinderOnHitChancePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "caster" }, }, - ["SpellsHinderOnHitChanceEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 95% chance to Hinder Enemies on Hit with Spells", statOrder = { 9670 }, level = 75, group = "SpellsHinderOnHitChancePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "caster" }, }, - ["SpellsHinderOnHitChanceEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hinder Enemies on Hit with Spells", statOrder = { 9670 }, level = 75, group = "SpellsHinderOnHitChancePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "caster" }, }, - ["IncreasedAccuracyPercentEldritchImplicit1"] = { type = "Eater", affix = "", "(9-10)% increased Global Accuracy Rating", statOrder = { 1318 }, level = 75, group = "IncreasedAccuracyPercent", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack" }, }, - ["IncreasedAccuracyPercentEldritchImplicit2"] = { type = "Eater", affix = "", "(11-12)% increased Global Accuracy Rating", statOrder = { 1318 }, level = 75, group = "IncreasedAccuracyPercent", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack" }, }, - ["IncreasedAccuracyPercentEldritchImplicit3"] = { type = "Eater", affix = "", "(13-14)% increased Global Accuracy Rating", statOrder = { 1318 }, level = 75, group = "IncreasedAccuracyPercent", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack" }, }, - ["IncreasedAccuracyPercentEldritchImplicit4"] = { type = "Eater", affix = "", "(15-16)% increased Global Accuracy Rating", statOrder = { 1318 }, level = 75, group = "IncreasedAccuracyPercent", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack" }, }, - ["IncreasedAccuracyPercentEldritchImplicit5"] = { type = "Eater", affix = "", "(17-18)% increased Global Accuracy Rating", statOrder = { 1318 }, level = 75, group = "IncreasedAccuracyPercent", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack" }, }, - ["IncreasedAccuracyPercentEldritchImplicit6"] = { type = "Eater", affix = "", "(19-20)% increased Global Accuracy Rating", statOrder = { 1318 }, level = 75, group = "IncreasedAccuracyPercent", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack" }, }, - ["IncreasedAccuracyPercentEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (13-14)% increased Global Accuracy Rating", statOrder = { 1318 }, level = 75, group = "IncreasedAccuracyPercentUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, - ["IncreasedAccuracyPercentEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (15-16)% increased Global Accuracy Rating", statOrder = { 1318 }, level = 75, group = "IncreasedAccuracyPercentUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, }, - ["IncreasedAccuracyPercentEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (17-18)% increased Global Accuracy Rating", statOrder = { 1318 }, level = 75, group = "IncreasedAccuracyPercentUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, }, - ["IncreasedAccuracyPercentEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (19-20)% increased Global Accuracy Rating", statOrder = { 1318 }, level = 75, group = "IncreasedAccuracyPercentUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, }, - ["IncreasedAccuracyPercentEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (21-22)% increased Global Accuracy Rating", statOrder = { 1318 }, level = 75, group = "IncreasedAccuracyPercentUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, }, - ["IncreasedAccuracyPercentEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (23-24)% increased Global Accuracy Rating", statOrder = { 1318 }, level = 75, group = "IncreasedAccuracyPercentUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, }, - ["IncreasedAccuracyPercentEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (17-18)% increased Global Accuracy Rating", statOrder = { 1318 }, level = 75, group = "IncreasedAccuracyPercentPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, - ["IncreasedAccuracyPercentEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (19-20)% increased Global Accuracy Rating", statOrder = { 1318 }, level = 75, group = "IncreasedAccuracyPercentPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, - ["IncreasedAccuracyPercentEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (21-22)% increased Global Accuracy Rating", statOrder = { 1318 }, level = 75, group = "IncreasedAccuracyPercentPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, }, - ["IncreasedAccuracyPercentEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (23-24)% increased Global Accuracy Rating", statOrder = { 1318 }, level = 75, group = "IncreasedAccuracyPercentPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, }, - ["IncreasedAccuracyPercentEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% increased Global Accuracy Rating", statOrder = { 1318 }, level = 75, group = "IncreasedAccuracyPercentPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, }, - ["IncreasedAccuracyPercentEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% increased Global Accuracy Rating", statOrder = { 1318 }, level = 75, group = "IncreasedAccuracyPercentPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, }, - ["MarkEffectEldritchImplicit1"] = { type = "Eater", affix = "", "(6-7)% increased Effect of your Marks", statOrder = { 2474 }, level = 75, group = "MarkEffect", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "caster", "curse" }, }, - ["MarkEffectEldritchImplicit2"] = { type = "Eater", affix = "", "(8-9)% increased Effect of your Marks", statOrder = { 2474 }, level = 75, group = "MarkEffect", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "caster", "curse" }, }, - ["MarkEffectEldritchImplicit3"] = { type = "Eater", affix = "", "(10-11)% increased Effect of your Marks", statOrder = { 2474 }, level = 75, group = "MarkEffect", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "caster", "curse" }, }, - ["MarkEffectEldritchImplicit4"] = { type = "Eater", affix = "", "(12-13)% increased Effect of your Marks", statOrder = { 2474 }, level = 75, group = "MarkEffect", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "caster", "curse" }, }, - ["MarkEffectEldritchImplicit5"] = { type = "Eater", affix = "", "(14-15)% increased Effect of your Marks", statOrder = { 2474 }, level = 75, group = "MarkEffect", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "caster", "curse" }, }, - ["MarkEffectEldritchImplicit6"] = { type = "Eater", affix = "", "(16-17)% increased Effect of your Marks", statOrder = { 2474 }, level = 75, group = "MarkEffect", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "caster", "curse" }, }, - ["MarkEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (12-13)% increased Effect of your Marks", statOrder = { 2474 }, level = 75, group = "MarkEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, - ["MarkEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (14-15)% increased Effect of your Marks", statOrder = { 2474 }, level = 75, group = "MarkEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "curse" }, }, - ["MarkEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (16-17)% increased Effect of your Marks", statOrder = { 2474 }, level = 75, group = "MarkEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "curse" }, }, - ["MarkEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (18-19)% increased Effect of your Marks", statOrder = { 2474 }, level = 75, group = "MarkEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "curse" }, }, - ["MarkEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (20-21)% increased Effect of your Marks", statOrder = { 2474 }, level = 75, group = "MarkEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "curse" }, }, - ["MarkEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (22-23)% increased Effect of your Marks", statOrder = { 2474 }, level = 75, group = "MarkEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "curse" }, }, - ["MarkEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (18-19)% increased Effect of your Marks", statOrder = { 2474 }, level = 75, group = "MarkEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, - ["MarkEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% increased Effect of your Marks", statOrder = { 2474 }, level = 75, group = "MarkEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, - ["MarkEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% increased Effect of your Marks", statOrder = { 2474 }, level = 75, group = "MarkEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "curse" }, }, - ["MarkEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% increased Effect of your Marks", statOrder = { 2474 }, level = 75, group = "MarkEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "curse" }, }, - ["MarkEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% increased Effect of your Marks", statOrder = { 2474 }, level = 75, group = "MarkEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "curse" }, }, - ["MarkEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% increased Effect of your Marks", statOrder = { 2474 }, level = 75, group = "MarkEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "curse" }, }, - ["FlatAccuracyPerFrenzyChargeEldritchImplicit1"] = { type = "Eater", affix = "", "+(43-45) to Accuracy Rating per Frenzy Charge", statOrder = { 4375 }, level = 75, group = "IncreasedAccuracyPerFrenzy", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["FlatAccuracyPerFrenzyChargeEldritchImplicit2"] = { type = "Eater", affix = "", "+(46-48) to Accuracy Rating per Frenzy Charge", statOrder = { 4375 }, level = 75, group = "IncreasedAccuracyPerFrenzy", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["FlatAccuracyPerFrenzyChargeEldritchImplicit3"] = { type = "Eater", affix = "", "+(49-51) to Accuracy Rating per Frenzy Charge", statOrder = { 4375 }, level = 75, group = "IncreasedAccuracyPerFrenzy", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["FlatAccuracyPerFrenzyChargeEldritchImplicit4"] = { type = "Eater", affix = "", "+(52-54) to Accuracy Rating per Frenzy Charge", statOrder = { 4375 }, level = 75, group = "IncreasedAccuracyPerFrenzy", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["FlatAccuracyPerFrenzyChargeEldritchImplicit5"] = { type = "Eater", affix = "", "+(55-57) to Accuracy Rating per Frenzy Charge", statOrder = { 4375 }, level = 75, group = "IncreasedAccuracyPerFrenzy", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["FlatAccuracyPerFrenzyChargeEldritchImplicit6"] = { type = "Eater", affix = "", "+(58-60) to Accuracy Rating per Frenzy Charge", statOrder = { 4375 }, level = 75, group = "IncreasedAccuracyPerFrenzy", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["FlatAccuracyPerFrenzyChargeEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(49-51) to Accuracy Rating per Frenzy Charge", statOrder = { 4375 }, level = 75, group = "FlatAccuracyPerFrenzyChargeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, - ["FlatAccuracyPerFrenzyChargeEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(52-54) to Accuracy Rating per Frenzy Charge", statOrder = { 4375 }, level = 75, group = "FlatAccuracyPerFrenzyChargeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, }, - ["FlatAccuracyPerFrenzyChargeEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(55-57) to Accuracy Rating per Frenzy Charge", statOrder = { 4375 }, level = 75, group = "FlatAccuracyPerFrenzyChargeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, }, - ["FlatAccuracyPerFrenzyChargeEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(58-60) to Accuracy Rating per Frenzy Charge", statOrder = { 4375 }, level = 75, group = "FlatAccuracyPerFrenzyChargeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, }, - ["FlatAccuracyPerFrenzyChargeEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(61-63) to Accuracy Rating per Frenzy Charge", statOrder = { 4375 }, level = 75, group = "FlatAccuracyPerFrenzyChargeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, }, - ["FlatAccuracyPerFrenzyChargeEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(64-66) to Accuracy Rating per Frenzy Charge", statOrder = { 4375 }, level = 75, group = "FlatAccuracyPerFrenzyChargeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, }, - ["FlatAccuracyPerFrenzyChargeEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(55-57) to Accuracy Rating per Frenzy Charge", statOrder = { 4375 }, level = 75, group = "FlatAccuracyPerFrenzyChargePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, - ["FlatAccuracyPerFrenzyChargeEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(58-60) to Accuracy Rating per Frenzy Charge", statOrder = { 4375 }, level = 75, group = "FlatAccuracyPerFrenzyChargePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, - ["FlatAccuracyPerFrenzyChargeEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(61-63) to Accuracy Rating per Frenzy Charge", statOrder = { 4375 }, level = 75, group = "FlatAccuracyPerFrenzyChargePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, }, - ["FlatAccuracyPerFrenzyChargeEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(64-66) to Accuracy Rating per Frenzy Charge", statOrder = { 4375 }, level = 75, group = "FlatAccuracyPerFrenzyChargePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, }, - ["FlatAccuracyPerFrenzyChargeEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(67-69) to Accuracy Rating per Frenzy Charge", statOrder = { 4375 }, level = 75, group = "FlatAccuracyPerFrenzyChargePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, }, - ["FlatAccuracyPerFrenzyChargeEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(70-72) to Accuracy Rating per Frenzy Charge", statOrder = { 4375 }, level = 75, group = "FlatAccuracyPerFrenzyChargePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, }, - ["AdditionalPierceEldritchImplicit1"] = { type = "Eater", affix = "", "Projectiles Pierce an additional Target", statOrder = { 1671 }, level = 75, group = "AdditionalPierce", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["AdditionalPierceEldritchImplicit2"] = { type = "Eater", affix = "", "Projectiles Pierce an additional Target", statOrder = { 1671 }, level = 75, group = "AdditionalPierce", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["AdditionalPierceEldritchImplicit3"] = { type = "Eater", affix = "", "Projectiles Pierce an additional Target", statOrder = { 1671 }, level = 75, group = "AdditionalPierce", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["AdditionalPierceEldritchImplicit4"] = { type = "Eater", affix = "", "Projectiles Pierce an additional Target", statOrder = { 1671 }, level = 75, group = "AdditionalPierce", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["AdditionalPierceEldritchImplicit5"] = { type = "Eater", affix = "", "Projectiles Pierce 2 additional Targets", statOrder = { 1671 }, level = 75, group = "AdditionalPierce", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["AdditionalPierceEldritchImplicit6"] = { type = "Eater", affix = "", "Projectiles Pierce 2 additional Targets", statOrder = { 1671 }, level = 75, group = "AdditionalPierce", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["AdditionalPierceEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Projectiles Pierce 2 additional Targets", statOrder = { 1671 }, level = 75, group = "AdditionalPierceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["AdditionalPierceEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Projectiles Pierce 2 additional Targets", statOrder = { 1671 }, level = 75, group = "AdditionalPierceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["AdditionalPierceEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Projectiles Pierce 2 additional Targets", statOrder = { 1671 }, level = 75, group = "AdditionalPierceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["AdditionalPierceEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Projectiles Pierce 2 additional Targets", statOrder = { 1671 }, level = 75, group = "AdditionalPierceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["AdditionalPierceEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Projectiles Pierce 3 additional Targets", statOrder = { 1671 }, level = 75, group = "AdditionalPierceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["AdditionalPierceEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Projectiles Pierce 3 additional Targets", statOrder = { 1671 }, level = 75, group = "AdditionalPierceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["AdditionalPierceEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Projectiles Pierce 3 additional Targets", statOrder = { 1671 }, level = 75, group = "AdditionalPiercePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["AdditionalPierceEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Projectiles Pierce 3 additional Targets", statOrder = { 1671 }, level = 75, group = "AdditionalPiercePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["AdditionalPierceEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Projectiles Pierce 3 additional Targets", statOrder = { 1671 }, level = 75, group = "AdditionalPiercePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["AdditionalPierceEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Projectiles Pierce 3 additional Targets", statOrder = { 1671 }, level = 75, group = "AdditionalPiercePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["AdditionalPierceEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Projectiles Pierce 4 additional Targets", statOrder = { 1671 }, level = 75, group = "AdditionalPiercePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["AdditionalPierceEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Projectiles Pierce 4 additional Targets", statOrder = { 1671 }, level = 75, group = "AdditionalPiercePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["PoisonOnHitEldritchImplicit1"] = { type = "Eater", affix = "", "5% chance to Poison on Hit", statOrder = { 3039 }, level = 75, group = "PoisonOnHit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["PoisonOnHitEldritchImplicit2"] = { type = "Eater", affix = "", "10% chance to Poison on Hit", statOrder = { 3039 }, level = 75, group = "PoisonOnHit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["PoisonOnHitEldritchImplicit3"] = { type = "Eater", affix = "", "15% chance to Poison on Hit", statOrder = { 3039 }, level = 75, group = "PoisonOnHit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["PoisonOnHitEldritchImplicit4"] = { type = "Eater", affix = "", "20% chance to Poison on Hit", statOrder = { 3039 }, level = 75, group = "PoisonOnHit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["PoisonOnHitEldritchImplicit5"] = { type = "Eater", affix = "", "25% chance to Poison on Hit", statOrder = { 3039 }, level = 75, group = "PoisonOnHit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["PoisonOnHitEldritchImplicit6"] = { type = "Eater", affix = "", "30% chance to Poison on Hit", statOrder = { 3039 }, level = 75, group = "PoisonOnHit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["PoisonOnHitEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% chance to Poison on Hit", statOrder = { 3039 }, level = 75, group = "PoisonOnHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["PoisonOnHitEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 20% chance to Poison on Hit", statOrder = { 3039 }, level = 75, group = "PoisonOnHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["PoisonOnHitEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% chance to Poison on Hit", statOrder = { 3039 }, level = 75, group = "PoisonOnHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["PoisonOnHitEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% chance to Poison on Hit", statOrder = { 3039 }, level = 75, group = "PoisonOnHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["PoisonOnHitEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% chance to Poison on Hit", statOrder = { 3039 }, level = 75, group = "PoisonOnHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["PoisonOnHitEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% chance to Poison on Hit", statOrder = { 3039 }, level = 75, group = "PoisonOnHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["PoisonOnHitEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 25% chance to Poison on Hit", statOrder = { 3039 }, level = 75, group = "PoisonOnHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["PoisonOnHitEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 30% chance to Poison on Hit", statOrder = { 3039 }, level = 75, group = "PoisonOnHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["PoisonOnHitEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 35% chance to Poison on Hit", statOrder = { 3039 }, level = 75, group = "PoisonOnHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["PoisonOnHitEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% chance to Poison on Hit", statOrder = { 3039 }, level = 75, group = "PoisonOnHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["PoisonOnHitEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% chance to Poison on Hit", statOrder = { 3039 }, level = 75, group = "PoisonOnHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["PoisonOnHitEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% chance to Poison on Hit", statOrder = { 3039 }, level = 75, group = "PoisonOnHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["ChanceToBleedEldritchImplicit1"] = { type = "Eater", affix = "", "Attacks have 5% chance to cause Bleeding", statOrder = { 2365 }, level = 75, group = "ChanceToBleed", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["ChanceToBleedEldritchImplicit2"] = { type = "Eater", affix = "", "Attacks have 10% chance to cause Bleeding", statOrder = { 2365 }, level = 75, group = "ChanceToBleed", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["ChanceToBleedEldritchImplicit3"] = { type = "Eater", affix = "", "Attacks have 15% chance to cause Bleeding", statOrder = { 2365 }, level = 75, group = "ChanceToBleed", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["ChanceToBleedEldritchImplicit4"] = { type = "Eater", affix = "", "Attacks have 20% chance to cause Bleeding", statOrder = { 2365 }, level = 75, group = "ChanceToBleed", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["ChanceToBleedEldritchImplicit5"] = { type = "Eater", affix = "", "Attacks have 25% chance to cause Bleeding", statOrder = { 2365 }, level = 75, group = "ChanceToBleed", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["ChanceToBleedEldritchImplicit6"] = { type = "Eater", affix = "", "Attacks have 30% chance to cause Bleeding", statOrder = { 2365 }, level = 75, group = "ChanceToBleed", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["ChanceToBleedEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 15% chance to cause Bleeding", statOrder = { 2365 }, level = 75, group = "ChanceToBleedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["ChanceToBleedEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 20% chance to cause Bleeding", statOrder = { 2365 }, level = 75, group = "ChanceToBleedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["ChanceToBleedEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 25% chance to cause Bleeding", statOrder = { 2365 }, level = 75, group = "ChanceToBleedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["ChanceToBleedEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 30% chance to cause Bleeding", statOrder = { 2365 }, level = 75, group = "ChanceToBleedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["ChanceToBleedEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 35% chance to cause Bleeding", statOrder = { 2365 }, level = 75, group = "ChanceToBleedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["ChanceToBleedEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 40% chance to cause Bleeding", statOrder = { 2365 }, level = 75, group = "ChanceToBleedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["ChanceToBleedEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 25% chance to cause Bleeding", statOrder = { 2365 }, level = 75, group = "ChanceToBleedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["ChanceToBleedEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 30% chance to cause Bleeding", statOrder = { 2365 }, level = 75, group = "ChanceToBleedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["ChanceToBleedEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 35% chance to cause Bleeding", statOrder = { 2365 }, level = 75, group = "ChanceToBleedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["ChanceToBleedEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 40% chance to cause Bleeding", statOrder = { 2365 }, level = 75, group = "ChanceToBleedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["ChanceToBleedEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 45% chance to cause Bleeding", statOrder = { 2365 }, level = 75, group = "ChanceToBleedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["ChanceToBleedEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 50% chance to cause Bleeding", statOrder = { 2365 }, level = 75, group = "ChanceToBleedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["ChanceToAggravateBleedEldritchImplicit1"] = { type = "Eater", affix = "", "5% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4455 }, level = 75, group = "ChanceToAggravateBleed", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["ChanceToAggravateBleedEldritchImplicit2"] = { type = "Eater", affix = "", "10% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4455 }, level = 75, group = "ChanceToAggravateBleed", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["ChanceToAggravateBleedEldritchImplicit3"] = { type = "Eater", affix = "", "15% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4455 }, level = 75, group = "ChanceToAggravateBleed", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["ChanceToAggravateBleedEldritchImplicit4"] = { type = "Eater", affix = "", "20% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4455 }, level = 75, group = "ChanceToAggravateBleed", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["ChanceToAggravateBleedEldritchImplicit5"] = { type = "Eater", affix = "", "25% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4455 }, level = 75, group = "ChanceToAggravateBleed", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["ChanceToAggravateBleedEldritchImplicit6"] = { type = "Eater", affix = "", "30% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4455 }, level = 75, group = "ChanceToAggravateBleed", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["ChanceToAggravateBleedEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4455 }, level = 75, group = "ChanceToAggravateBleedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["ChanceToAggravateBleedEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 20% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4455 }, level = 75, group = "ChanceToAggravateBleedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["ChanceToAggravateBleedEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4455 }, level = 75, group = "ChanceToAggravateBleedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["ChanceToAggravateBleedEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4455 }, level = 75, group = "ChanceToAggravateBleedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["ChanceToAggravateBleedEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4455 }, level = 75, group = "ChanceToAggravateBleedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["ChanceToAggravateBleedEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4455 }, level = 75, group = "ChanceToAggravateBleedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["ChanceToAggravateBleedEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 25% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4455 }, level = 75, group = "ChanceToAggravateBleedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["ChanceToAggravateBleedEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 30% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4455 }, level = 75, group = "ChanceToAggravateBleedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["ChanceToAggravateBleedEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 35% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4455 }, level = 75, group = "ChanceToAggravateBleedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 100, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["ChanceToAggravateBleedEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4455 }, level = 75, group = "ChanceToAggravateBleedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 100, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["ChanceToAggravateBleedEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4455 }, level = 75, group = "ChanceToAggravateBleedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 100, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["ChanceToAggravateBleedEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4455 }, level = 75, group = "ChanceToAggravateBleedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 100, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["AttackImpaleChanceEldritchImplicit1"] = { type = "Eater", affix = "", "5% chance to Impale Enemies on Hit with Attacks", statOrder = { 4739 }, level = 75, group = "AttackImpaleChance", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical", "attack" }, }, - ["AttackImpaleChanceEldritchImplicit2"] = { type = "Eater", affix = "", "10% chance to Impale Enemies on Hit with Attacks", statOrder = { 4739 }, level = 75, group = "AttackImpaleChance", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical", "attack" }, }, - ["AttackImpaleChanceEldritchImplicit3"] = { type = "Eater", affix = "", "15% chance to Impale Enemies on Hit with Attacks", statOrder = { 4739 }, level = 75, group = "AttackImpaleChance", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical", "attack" }, }, - ["AttackImpaleChanceEldritchImplicit4"] = { type = "Eater", affix = "", "20% chance to Impale Enemies on Hit with Attacks", statOrder = { 4739 }, level = 75, group = "AttackImpaleChance", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical", "attack" }, }, - ["AttackImpaleChanceEldritchImplicit5"] = { type = "Eater", affix = "", "25% chance to Impale Enemies on Hit with Attacks", statOrder = { 4739 }, level = 75, group = "AttackImpaleChance", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical", "attack" }, }, - ["AttackImpaleChanceEldritchImplicit6"] = { type = "Eater", affix = "", "30% chance to Impale Enemies on Hit with Attacks", statOrder = { 4739 }, level = 75, group = "AttackImpaleChance", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical", "attack" }, }, - ["AttackImpaleChanceEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% chance to Impale Enemies on Hit with Attacks", statOrder = { 4739 }, level = 75, group = "AttackImpaleChanceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, - ["AttackImpaleChanceEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 20% chance to Impale Enemies on Hit with Attacks", statOrder = { 4739 }, level = 75, group = "AttackImpaleChanceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "attack" }, }, - ["AttackImpaleChanceEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% chance to Impale Enemies on Hit with Attacks", statOrder = { 4739 }, level = 75, group = "AttackImpaleChanceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "attack" }, }, - ["AttackImpaleChanceEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% chance to Impale Enemies on Hit with Attacks", statOrder = { 4739 }, level = 75, group = "AttackImpaleChanceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "attack" }, }, - ["AttackImpaleChanceEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% chance to Impale Enemies on Hit with Attacks", statOrder = { 4739 }, level = 75, group = "AttackImpaleChanceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "attack" }, }, - ["AttackImpaleChanceEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% chance to Impale Enemies on Hit with Attacks", statOrder = { 4739 }, level = 75, group = "AttackImpaleChanceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "attack" }, }, - ["AttackImpaleChanceEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 25% chance to Impale Enemies on Hit with Attacks", statOrder = { 4739 }, level = 75, group = "AttackImpaleChancePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, - ["AttackImpaleChanceEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 30% chance to Impale Enemies on Hit with Attacks", statOrder = { 4739 }, level = 75, group = "AttackImpaleChancePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, - ["AttackImpaleChanceEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 35% chance to Impale Enemies on Hit with Attacks", statOrder = { 4739 }, level = 75, group = "AttackImpaleChancePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "attack" }, }, - ["AttackImpaleChanceEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% chance to Impale Enemies on Hit with Attacks", statOrder = { 4739 }, level = 75, group = "AttackImpaleChancePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "attack" }, }, - ["AttackImpaleChanceEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% chance to Impale Enemies on Hit with Attacks", statOrder = { 4739 }, level = 75, group = "AttackImpaleChancePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "attack" }, }, - ["AttackImpaleChanceEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% chance to Impale Enemies on Hit with Attacks", statOrder = { 4739 }, level = 75, group = "AttackImpaleChancePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "attack" }, }, - ["IncreasedCastSpeedEldritchImplicit1"] = { type = "Exarch", affix = "", "8% increased Cast Speed", statOrder = { 1330 }, level = 75, group = "IncreasedCastSpeed", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, }, - ["IncreasedCastSpeedEldritchImplicit2"] = { type = "Exarch", affix = "", "9% increased Cast Speed", statOrder = { 1330 }, level = 75, group = "IncreasedCastSpeed", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, }, - ["IncreasedCastSpeedEldritchImplicit3"] = { type = "Exarch", affix = "", "10% increased Cast Speed", statOrder = { 1330 }, level = 75, group = "IncreasedCastSpeed", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, }, - ["IncreasedCastSpeedEldritchImplicit4"] = { type = "Exarch", affix = "", "11% increased Cast Speed", statOrder = { 1330 }, level = 75, group = "IncreasedCastSpeed", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, }, - ["IncreasedCastSpeedEldritchImplicit5"] = { type = "Exarch", affix = "", "12% increased Cast Speed", statOrder = { 1330 }, level = 75, group = "IncreasedCastSpeed", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, }, - ["IncreasedCastSpeedEldritchImplicit6"] = { type = "Exarch", affix = "", "13% increased Cast Speed", statOrder = { 1330 }, level = 75, group = "IncreasedCastSpeed", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, }, - ["IncreasedCastSpeedEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 12% increased Cast Speed", statOrder = { 1330 }, level = 75, group = "IncreasedCastSpeedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "caster", "speed" }, }, - ["IncreasedCastSpeedEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 13% increased Cast Speed", statOrder = { 1330 }, level = 75, group = "IncreasedCastSpeedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster", "speed" }, }, - ["IncreasedCastSpeedEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Cast Speed", statOrder = { 1330 }, level = 75, group = "IncreasedCastSpeedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster", "speed" }, }, - ["IncreasedCastSpeedEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Cast Speed", statOrder = { 1330 }, level = 75, group = "IncreasedCastSpeedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster", "speed" }, }, - ["IncreasedCastSpeedEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Cast Speed", statOrder = { 1330 }, level = 75, group = "IncreasedCastSpeedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster", "speed" }, }, - ["IncreasedCastSpeedEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Cast Speed", statOrder = { 1330 }, level = 75, group = "IncreasedCastSpeedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster", "speed" }, }, - ["IncreasedCastSpeedEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Cast Speed", statOrder = { 1330 }, level = 75, group = "IncreasedCastSpeedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "caster", "speed" }, }, - ["IncreasedCastSpeedEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 17% increased Cast Speed", statOrder = { 1330 }, level = 75, group = "IncreasedCastSpeedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "caster", "speed" }, }, - ["IncreasedCastSpeedEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Cast Speed", statOrder = { 1330 }, level = 75, group = "IncreasedCastSpeedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster", "speed" }, }, - ["IncreasedCastSpeedEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Cast Speed", statOrder = { 1330 }, level = 75, group = "IncreasedCastSpeedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster", "speed" }, }, - ["IncreasedCastSpeedEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Cast Speed", statOrder = { 1330 }, level = 75, group = "IncreasedCastSpeedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster", "speed" }, }, - ["IncreasedCastSpeedEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Cast Speed", statOrder = { 1330 }, level = 75, group = "IncreasedCastSpeedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster", "speed" }, }, - ["SpellCriticalStrikeChanceEldritchImplicit1"] = { type = "Exarch", affix = "", "(28-30)% increased Spell Critical Strike Chance", statOrder = { 1342 }, level = 75, group = "SpellCriticalStrikeChance", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster", "critical" }, }, - ["SpellCriticalStrikeChanceEldritchImplicit2"] = { type = "Exarch", affix = "", "(31-33)% increased Spell Critical Strike Chance", statOrder = { 1342 }, level = 75, group = "SpellCriticalStrikeChance", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster", "critical" }, }, - ["SpellCriticalStrikeChanceEldritchImplicit3"] = { type = "Exarch", affix = "", "(34-36)% increased Spell Critical Strike Chance", statOrder = { 1342 }, level = 75, group = "SpellCriticalStrikeChance", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster", "critical" }, }, - ["SpellCriticalStrikeChanceEldritchImplicit4"] = { type = "Exarch", affix = "", "(37-39)% increased Spell Critical Strike Chance", statOrder = { 1342 }, level = 75, group = "SpellCriticalStrikeChance", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster", "critical" }, }, - ["SpellCriticalStrikeChanceEldritchImplicit5"] = { type = "Exarch", affix = "", "(40-42)% increased Spell Critical Strike Chance", statOrder = { 1342 }, level = 75, group = "SpellCriticalStrikeChance", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster", "critical" }, }, - ["SpellCriticalStrikeChanceEldritchImplicit6"] = { type = "Exarch", affix = "", "(43-45)% increased Spell Critical Strike Chance", statOrder = { 1342 }, level = 75, group = "SpellCriticalStrikeChance", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster", "critical" }, }, - ["SpellCriticalStrikeChanceEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (40-42)% increased Spell Critical Strike Chance", statOrder = { 1342 }, level = 75, group = "SpellCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "caster", "critical" }, }, - ["SpellCriticalStrikeChanceEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Spell Critical Strike Chance", statOrder = { 1342 }, level = 75, group = "SpellCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "critical" }, }, - ["SpellCriticalStrikeChanceEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Spell Critical Strike Chance", statOrder = { 1342 }, level = 75, group = "SpellCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "critical" }, }, - ["SpellCriticalStrikeChanceEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (49-51)% increased Spell Critical Strike Chance", statOrder = { 1342 }, level = 75, group = "SpellCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "critical" }, }, - ["SpellCriticalStrikeChanceEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (52-54)% increased Spell Critical Strike Chance", statOrder = { 1342 }, level = 75, group = "SpellCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "critical" }, }, - ["SpellCriticalStrikeChanceEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (55-57)% increased Spell Critical Strike Chance", statOrder = { 1342 }, level = 75, group = "SpellCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "critical" }, }, - ["SpellCriticalStrikeChanceEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (52-54)% increased Spell Critical Strike Chance", statOrder = { 1342 }, level = 75, group = "SpellCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "caster", "critical" }, }, - ["SpellCriticalStrikeChanceEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Spell Critical Strike Chance", statOrder = { 1342 }, level = 75, group = "SpellCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "caster", "critical" }, }, - ["SpellCriticalStrikeChanceEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Spell Critical Strike Chance", statOrder = { 1342 }, level = 75, group = "SpellCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "caster", "critical" }, }, - ["SpellCriticalStrikeChanceEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (61-63)% increased Spell Critical Strike Chance", statOrder = { 1342 }, level = 75, group = "SpellCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "caster", "critical" }, }, - ["SpellCriticalStrikeChanceEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (64-66)% increased Spell Critical Strike Chance", statOrder = { 1342 }, level = 75, group = "SpellCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "caster", "critical" }, }, - ["SpellCriticalStrikeChanceEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-69)% increased Spell Critical Strike Chance", statOrder = { 1342 }, level = 75, group = "SpellCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "caster", "critical" }, }, - ["SpellAddedFireDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Adds (10-13) to (20-23) Fire Damage to Spells", statOrder = { 1288 }, level = 75, group = "SpellAddedFireDamage", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Adds (10-14) to (21-25) Fire Damage to Spells", statOrder = { 1288 }, level = 75, group = "SpellAddedFireDamage", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Adds (11-15) to (24-27) Fire Damage to Spells", statOrder = { 1288 }, level = 75, group = "SpellAddedFireDamage", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Adds (13-16) to (26-30) Fire Damage to Spells", statOrder = { 1288 }, level = 75, group = "SpellAddedFireDamage", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Adds (14-18) to (29-33) Fire Damage to Spells", statOrder = { 1288 }, level = 75, group = "SpellAddedFireDamage", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Adds (15-20) to (32-36) Fire Damage to Spells", statOrder = { 1288 }, level = 75, group = "SpellAddedFireDamage", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (13-16) to (26-30) Fire Damage to Spells", statOrder = { 1288 }, level = 75, group = "SpellAddedFireDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (14-18) to (29-33) Fire Damage to Spells", statOrder = { 1288 }, level = 75, group = "SpellAddedFireDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (15-20) to (32-36) Fire Damage to Spells", statOrder = { 1288 }, level = 75, group = "SpellAddedFireDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (17-22) to (34-40) Fire Damage to Spells", statOrder = { 1288 }, level = 75, group = "SpellAddedFireDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (19-24) to (38-43) Fire Damage to Spells", statOrder = { 1288 }, level = 75, group = "SpellAddedFireDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (20-27) to (41-48) Fire Damage to Spells", statOrder = { 1288 }, level = 75, group = "SpellAddedFireDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (17-22) to (34-40) Fire Damage to Spells", statOrder = { 1288 }, level = 75, group = "SpellAddedFireDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (19-24) to (38-43) Fire Damage to Spells", statOrder = { 1288 }, level = 75, group = "SpellAddedFireDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (20-27) to (41-48) Fire Damage to Spells", statOrder = { 1288 }, level = 75, group = "SpellAddedFireDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (23-31) to (47-55) Fire Damage to Spells", statOrder = { 1288 }, level = 75, group = "SpellAddedFireDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (27-35) to (54-63) Fire Damage to Spells", statOrder = { 1288 }, level = 75, group = "SpellAddedFireDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (31-40) to (63-72) Fire Damage to Spells", statOrder = { 1288 }, level = 75, group = "SpellAddedFireDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedColdDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Adds (9-11) to (17-20) Cold Damage to Spells", statOrder = { 1289 }, level = 75, group = "SpellAddedColdDamage", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Adds (10-12) to (19-22) Cold Damage to Spells", statOrder = { 1289 }, level = 75, group = "SpellAddedColdDamage", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Adds (10-14) to (21-24) Cold Damage to Spells", statOrder = { 1289 }, level = 75, group = "SpellAddedColdDamage", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Adds (11-15) to (23-27) Cold Damage to Spells", statOrder = { 1289 }, level = 75, group = "SpellAddedColdDamage", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Adds (13-16) to (25-30) Cold Damage to Spells", statOrder = { 1289 }, level = 75, group = "SpellAddedColdDamage", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Adds (14-18) to (28-32) Cold Damage to Spells", statOrder = { 1289 }, level = 75, group = "SpellAddedColdDamage", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (11-15) to (23-27) Cold Damage to Spells", statOrder = { 1289 }, level = 75, group = "SpellAddedColdDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (13-16) to (25-30) Cold Damage to Spells", statOrder = { 1289 }, level = 75, group = "SpellAddedColdDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (14-18) to (28-32) Cold Damage to Spells", statOrder = { 1289 }, level = 75, group = "SpellAddedColdDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (15-20) to (30-36) Cold Damage to Spells", statOrder = { 1289 }, level = 75, group = "SpellAddedColdDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (17-21) to (34-39) Cold Damage to Spells", statOrder = { 1289 }, level = 75, group = "SpellAddedColdDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (18-24) to (37-43) Cold Damage to Spells", statOrder = { 1289 }, level = 75, group = "SpellAddedColdDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (15-20) to (30-36) Cold Damage to Spells", statOrder = { 1289 }, level = 75, group = "SpellAddedColdDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (17-21) to (34-39) Cold Damage to Spells", statOrder = { 1289 }, level = 75, group = "SpellAddedColdDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (18-24) to (37-43) Cold Damage to Spells", statOrder = { 1289 }, level = 75, group = "SpellAddedColdDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (21-27) to (42-50) Cold Damage to Spells", statOrder = { 1289 }, level = 75, group = "SpellAddedColdDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (24-32) to (48-57) Cold Damage to Spells", statOrder = { 1289 }, level = 75, group = "SpellAddedColdDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (28-36) to (56-65) Cold Damage to Spells", statOrder = { 1289 }, level = 75, group = "SpellAddedColdDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedLightningDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Adds (2-4) to (34-36) Lightning Damage to Spells", statOrder = { 1290 }, level = 75, group = "SpellAddedLightningDamage", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Adds (2-4) to (37-40) Lightning Damage to Spells", statOrder = { 1290 }, level = 75, group = "SpellAddedLightningDamage", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Adds (2-4) to (41-44) Lightning Damage to Spells", statOrder = { 1290 }, level = 75, group = "SpellAddedLightningDamage", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Adds (2-5) to (45-48) Lightning Damage to Spells", statOrder = { 1290 }, level = 75, group = "SpellAddedLightningDamage", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Adds (2-5) to (50-53) Lightning Damage to Spells", statOrder = { 1290 }, level = 75, group = "SpellAddedLightningDamage", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Adds (2-6) to (54-59) Lightning Damage to Spells", statOrder = { 1290 }, level = 75, group = "SpellAddedLightningDamage", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (2-5) to (45-48) Lightning Damage to Spells", statOrder = { 1290 }, level = 75, group = "SpellAddedLightningDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (2-5) to (50-53) Lightning Damage to Spells", statOrder = { 1290 }, level = 75, group = "SpellAddedLightningDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (2-6) to (54-59) Lightning Damage to Spells", statOrder = { 1290 }, level = 75, group = "SpellAddedLightningDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (3-6) to (60-64) Lightning Damage to Spells", statOrder = { 1290 }, level = 75, group = "SpellAddedLightningDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (3-7) to (66-70) Lightning Damage to Spells", statOrder = { 1290 }, level = 75, group = "SpellAddedLightningDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (3-8) to (72-78) Lightning Damage to Spells", statOrder = { 1290 }, level = 75, group = "SpellAddedLightningDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (3-6) to (60-64) Lightning Damage to Spells", statOrder = { 1290 }, level = 75, group = "SpellAddedLightningDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (3-7) to (66-70) Lightning Damage to Spells", statOrder = { 1290 }, level = 75, group = "SpellAddedLightningDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (3-8) to (72-78) Lightning Damage to Spells", statOrder = { 1290 }, level = 75, group = "SpellAddedLightningDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (4-8) to (83-90) Lightning Damage to Spells", statOrder = { 1290 }, level = 75, group = "SpellAddedLightningDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (4-10) to (96-103) Lightning Damage to Spells", statOrder = { 1290 }, level = 75, group = "SpellAddedLightningDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (5-11) to (110-119) Lightning Damage to Spells", statOrder = { 1290 }, level = 75, group = "SpellAddedLightningDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedPhysicalDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Adds (8-10) to (15-18) Physical Damage to Spells", statOrder = { 1287 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["SpellAddedPhysicalDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Adds (8-11) to (17-20) Physical Damage to Spells", statOrder = { 1287 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["SpellAddedPhysicalDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Adds (9-12) to (19-22) Physical Damage to Spells", statOrder = { 1287 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["SpellAddedPhysicalDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Adds (10-13) to (21-24) Physical Damage to Spells", statOrder = { 1287 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["SpellAddedPhysicalDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Adds (11-15) to (23-26) Physical Damage to Spells", statOrder = { 1287 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["SpellAddedPhysicalDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Adds (13-16) to (25-29) Physical Damage to Spells", statOrder = { 1287 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["SpellAddedPhysicalDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (10-13) to (21-24) Physical Damage to Spells", statOrder = { 1287 }, level = 75, group = "SpellAddedPhysicalDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["SpellAddedPhysicalDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (11-15) to (23-26) Physical Damage to Spells", statOrder = { 1287 }, level = 75, group = "SpellAddedPhysicalDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["SpellAddedPhysicalDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (13-16) to (25-29) Physical Damage to Spells", statOrder = { 1287 }, level = 75, group = "SpellAddedPhysicalDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["SpellAddedPhysicalDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (13-18) to (28-32) Physical Damage to Spells", statOrder = { 1287 }, level = 75, group = "SpellAddedPhysicalDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["SpellAddedPhysicalDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (15-19) to (31-35) Physical Damage to Spells", statOrder = { 1287 }, level = 75, group = "SpellAddedPhysicalDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["SpellAddedPhysicalDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (16-22) to (33-39) Physical Damage to Spells", statOrder = { 1287 }, level = 75, group = "SpellAddedPhysicalDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["SpellAddedPhysicalDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (13-18) to (28-32) Physical Damage to Spells", statOrder = { 1287 }, level = 75, group = "SpellAddedPhysicalDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["SpellAddedPhysicalDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (15-19) to (31-35) Physical Damage to Spells", statOrder = { 1287 }, level = 75, group = "SpellAddedPhysicalDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["SpellAddedPhysicalDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (16-22) to (33-39) Physical Damage to Spells", statOrder = { 1287 }, level = 75, group = "SpellAddedPhysicalDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["SpellAddedPhysicalDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (19-25) to (39-44) Physical Damage to Spells", statOrder = { 1287 }, level = 75, group = "SpellAddedPhysicalDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["SpellAddedPhysicalDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (22-28) to (45-51) Physical Damage to Spells", statOrder = { 1287 }, level = 75, group = "SpellAddedPhysicalDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["SpellAddedPhysicalDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (25-33) to (51-59) Physical Damage to Spells", statOrder = { 1287 }, level = 75, group = "SpellAddedPhysicalDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["SpellAddedChaosDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Adds (7-10) to (15-17) Chaos Damage to Spells", statOrder = { 1291 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["SpellAddedChaosDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Adds (8-10) to (16-19) Chaos Damage to Spells", statOrder = { 1291 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["SpellAddedChaosDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Adds (9-11) to (18-20) Chaos Damage to Spells", statOrder = { 1291 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["SpellAddedChaosDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Adds (10-13) to (20-23) Chaos Damage to Spells", statOrder = { 1291 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["SpellAddedChaosDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Adds (10-14) to (21-25) Chaos Damage to Spells", statOrder = { 1291 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["SpellAddedChaosDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Adds (11-15) to (24-27) Chaos Damage to Spells", statOrder = { 1291 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["SpellAddedChaosDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (10-13) to (20-23) Chaos Damage to Spells", statOrder = { 1291 }, level = 75, group = "SpellAddedChaosDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["SpellAddedChaosDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (10-14) to (21-25) Chaos Damage to Spells", statOrder = { 1291 }, level = 75, group = "SpellAddedChaosDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["SpellAddedChaosDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (11-15) to (24-27) Chaos Damage to Spells", statOrder = { 1291 }, level = 75, group = "SpellAddedChaosDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["SpellAddedChaosDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (13-16) to (26-30) Chaos Damage to Spells", statOrder = { 1291 }, level = 75, group = "SpellAddedChaosDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["SpellAddedChaosDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (14-18) to (29-33) Chaos Damage to Spells", statOrder = { 1291 }, level = 75, group = "SpellAddedChaosDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["SpellAddedChaosDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (15-20) to (32-36) Chaos Damage to Spells", statOrder = { 1291 }, level = 75, group = "SpellAddedChaosDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["SpellAddedChaosDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (13-16) to (26-30) Chaos Damage to Spells", statOrder = { 1291 }, level = 75, group = "SpellAddedChaosDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["SpellAddedChaosDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (14-18) to (29-33) Chaos Damage to Spells", statOrder = { 1291 }, level = 75, group = "SpellAddedChaosDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["SpellAddedChaosDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (15-20) to (32-36) Chaos Damage to Spells", statOrder = { 1291 }, level = 75, group = "SpellAddedChaosDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["SpellAddedChaosDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (18-23) to (36-41) Chaos Damage to Spells", statOrder = { 1291 }, level = 75, group = "SpellAddedChaosDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["SpellAddedChaosDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (20-27) to (41-48) Chaos Damage to Spells", statOrder = { 1291 }, level = 75, group = "SpellAddedChaosDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["SpellAddedChaosDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (23-31) to (47-55) Chaos Damage to Spells", statOrder = { 1291 }, level = 75, group = "SpellAddedChaosDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["FireDamageTakenGainedAsLifeEldritchImplicit1"] = { type = "Exarch", affix = "", "(7-8)% of Fire Damage taken Recouped as Life", statOrder = { 6241 }, level = 75, group = "FireDamageTakenGainedAsLife", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["FireDamageTakenGainedAsLifeEldritchImplicit2"] = { type = "Exarch", affix = "", "(9-10)% of Fire Damage taken Recouped as Life", statOrder = { 6241 }, level = 75, group = "FireDamageTakenGainedAsLife", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["FireDamageTakenGainedAsLifeEldritchImplicit3"] = { type = "Exarch", affix = "", "(11-12)% of Fire Damage taken Recouped as Life", statOrder = { 6241 }, level = 75, group = "FireDamageTakenGainedAsLife", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["FireDamageTakenGainedAsLifeEldritchImplicit4"] = { type = "Exarch", affix = "", "(13-14)% of Fire Damage taken Recouped as Life", statOrder = { 6241 }, level = 75, group = "FireDamageTakenGainedAsLife", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["FireDamageTakenGainedAsLifeEldritchImplicit5"] = { type = "Exarch", affix = "", "(15-16)% of Fire Damage taken Recouped as Life", statOrder = { 6241 }, level = 75, group = "FireDamageTakenGainedAsLife", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["FireDamageTakenGainedAsLifeEldritchImplicit6"] = { type = "Exarch", affix = "", "(17-18)% of Fire Damage taken Recouped as Life", statOrder = { 6241 }, level = 75, group = "FireDamageTakenGainedAsLife", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["FireDamageTakenGainedAsLifeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (13-14)% of Fire Damage taken Recouped as Life", statOrder = { 6241 }, level = 75, group = "FireDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "elemental", "fire" }, }, - ["FireDamageTakenGainedAsLifeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (15-16)% of Fire Damage taken Recouped as Life", statOrder = { 6241 }, level = 75, group = "FireDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "fire" }, }, - ["FireDamageTakenGainedAsLifeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (17-18)% of Fire Damage taken Recouped as Life", statOrder = { 6241 }, level = 75, group = "FireDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "fire" }, }, - ["FireDamageTakenGainedAsLifeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (19-20)% of Fire Damage taken Recouped as Life", statOrder = { 6241 }, level = 75, group = "FireDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "fire" }, }, - ["FireDamageTakenGainedAsLifeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-22)% of Fire Damage taken Recouped as Life", statOrder = { 6241 }, level = 75, group = "FireDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "fire" }, }, - ["FireDamageTakenGainedAsLifeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (23-24)% of Fire Damage taken Recouped as Life", statOrder = { 6241 }, level = 75, group = "FireDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "fire" }, }, - ["FireDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (19-20)% of Fire Damage taken Recouped as Life", statOrder = { 6241 }, level = 75, group = "FireDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "elemental", "fire" }, }, - ["FireDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (21-22)% of Fire Damage taken Recouped as Life", statOrder = { 6241 }, level = 75, group = "FireDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "elemental", "fire" }, }, - ["FireDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (23-24)% of Fire Damage taken Recouped as Life", statOrder = { 6241 }, level = 75, group = "FireDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "fire" }, }, - ["FireDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% of Fire Damage taken Recouped as Life", statOrder = { 6241 }, level = 75, group = "FireDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "fire" }, }, - ["FireDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% of Fire Damage taken Recouped as Life", statOrder = { 6241 }, level = 75, group = "FireDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "fire" }, }, - ["FireDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% of Fire Damage taken Recouped as Life", statOrder = { 6241 }, level = 75, group = "FireDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "fire" }, }, - ["ColdDamageTakenGainedAsLifeEldritchImplicit1"] = { type = "Exarch", affix = "", "(7-8)% of Cold Damage taken Recouped as Life", statOrder = { 5524 }, level = 75, group = "ColdDamageTakenGainedAsLife", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["ColdDamageTakenGainedAsLifeEldritchImplicit2"] = { type = "Exarch", affix = "", "(9-10)% of Cold Damage taken Recouped as Life", statOrder = { 5524 }, level = 75, group = "ColdDamageTakenGainedAsLife", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["ColdDamageTakenGainedAsLifeEldritchImplicit3"] = { type = "Exarch", affix = "", "(11-12)% of Cold Damage taken Recouped as Life", statOrder = { 5524 }, level = 75, group = "ColdDamageTakenGainedAsLife", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["ColdDamageTakenGainedAsLifeEldritchImplicit4"] = { type = "Exarch", affix = "", "(13-14)% of Cold Damage taken Recouped as Life", statOrder = { 5524 }, level = 75, group = "ColdDamageTakenGainedAsLife", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["ColdDamageTakenGainedAsLifeEldritchImplicit5"] = { type = "Exarch", affix = "", "(15-16)% of Cold Damage taken Recouped as Life", statOrder = { 5524 }, level = 75, group = "ColdDamageTakenGainedAsLife", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["ColdDamageTakenGainedAsLifeEldritchImplicit6"] = { type = "Exarch", affix = "", "(17-18)% of Cold Damage taken Recouped as Life", statOrder = { 5524 }, level = 75, group = "ColdDamageTakenGainedAsLife", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["ColdDamageTakenGainedAsLifeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (13-14)% of Cold Damage taken Recouped as Life", statOrder = { 5524 }, level = 75, group = "ColdDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "elemental", "cold" }, }, - ["ColdDamageTakenGainedAsLifeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (15-16)% of Cold Damage taken Recouped as Life", statOrder = { 5524 }, level = 75, group = "ColdDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "cold" }, }, - ["ColdDamageTakenGainedAsLifeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (17-18)% of Cold Damage taken Recouped as Life", statOrder = { 5524 }, level = 75, group = "ColdDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "cold" }, }, - ["ColdDamageTakenGainedAsLifeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (19-20)% of Cold Damage taken Recouped as Life", statOrder = { 5524 }, level = 75, group = "ColdDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "cold" }, }, - ["ColdDamageTakenGainedAsLifeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-22)% of Cold Damage taken Recouped as Life", statOrder = { 5524 }, level = 75, group = "ColdDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "cold" }, }, - ["ColdDamageTakenGainedAsLifeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (23-24)% of Cold Damage taken Recouped as Life", statOrder = { 5524 }, level = 75, group = "ColdDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "cold" }, }, - ["ColdDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (19-20)% of Cold Damage taken Recouped as Life", statOrder = { 5524 }, level = 75, group = "ColdDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "elemental", "cold" }, }, - ["ColdDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (21-22)% of Cold Damage taken Recouped as Life", statOrder = { 5524 }, level = 75, group = "ColdDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "elemental", "cold" }, }, - ["ColdDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (23-24)% of Cold Damage taken Recouped as Life", statOrder = { 5524 }, level = 75, group = "ColdDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "cold" }, }, - ["ColdDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% of Cold Damage taken Recouped as Life", statOrder = { 5524 }, level = 75, group = "ColdDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "cold" }, }, - ["ColdDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% of Cold Damage taken Recouped as Life", statOrder = { 5524 }, level = 75, group = "ColdDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "cold" }, }, - ["ColdDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% of Cold Damage taken Recouped as Life", statOrder = { 5524 }, level = 75, group = "ColdDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "cold" }, }, - ["LightningDamageTakenGainedAsLifeEldritchImplicit1"] = { type = "Exarch", affix = "", "(7-8)% of Lightning Damage taken Recouped as Life", statOrder = { 7063 }, level = 75, group = "LightningDamageTakenGainedAsLife", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["LightningDamageTakenGainedAsLifeEldritchImplicit2"] = { type = "Exarch", affix = "", "(9-10)% of Lightning Damage taken Recouped as Life", statOrder = { 7063 }, level = 75, group = "LightningDamageTakenGainedAsLife", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["LightningDamageTakenGainedAsLifeEldritchImplicit3"] = { type = "Exarch", affix = "", "(11-12)% of Lightning Damage taken Recouped as Life", statOrder = { 7063 }, level = 75, group = "LightningDamageTakenGainedAsLife", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["LightningDamageTakenGainedAsLifeEldritchImplicit4"] = { type = "Exarch", affix = "", "(13-14)% of Lightning Damage taken Recouped as Life", statOrder = { 7063 }, level = 75, group = "LightningDamageTakenGainedAsLife", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["LightningDamageTakenGainedAsLifeEldritchImplicit5"] = { type = "Exarch", affix = "", "(15-16)% of Lightning Damage taken Recouped as Life", statOrder = { 7063 }, level = 75, group = "LightningDamageTakenGainedAsLife", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["LightningDamageTakenGainedAsLifeEldritchImplicit6"] = { type = "Exarch", affix = "", "(17-18)% of Lightning Damage taken Recouped as Life", statOrder = { 7063 }, level = 75, group = "LightningDamageTakenGainedAsLife", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["LightningDamageTakenGainedAsLifeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (13-14)% of Lightning Damage taken Recouped as Life", statOrder = { 7063 }, level = 75, group = "LightningDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, }, - ["LightningDamageTakenGainedAsLifeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (15-16)% of Lightning Damage taken Recouped as Life", statOrder = { 7063 }, level = 75, group = "LightningDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, }, - ["LightningDamageTakenGainedAsLifeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (17-18)% of Lightning Damage taken Recouped as Life", statOrder = { 7063 }, level = 75, group = "LightningDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, }, - ["LightningDamageTakenGainedAsLifeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (19-20)% of Lightning Damage taken Recouped as Life", statOrder = { 7063 }, level = 75, group = "LightningDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, }, - ["LightningDamageTakenGainedAsLifeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-22)% of Lightning Damage taken Recouped as Life", statOrder = { 7063 }, level = 75, group = "LightningDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, }, - ["LightningDamageTakenGainedAsLifeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (23-24)% of Lightning Damage taken Recouped as Life", statOrder = { 7063 }, level = 75, group = "LightningDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, }, - ["LightningDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (19-20)% of Lightning Damage taken Recouped as Life", statOrder = { 7063 }, level = 75, group = "LightningDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, }, - ["LightningDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (21-22)% of Lightning Damage taken Recouped as Life", statOrder = { 7063 }, level = 75, group = "LightningDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, }, - ["LightningDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (23-24)% of Lightning Damage taken Recouped as Life", statOrder = { 7063 }, level = 75, group = "LightningDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, }, - ["LightningDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% of Lightning Damage taken Recouped as Life", statOrder = { 7063 }, level = 75, group = "LightningDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, }, - ["LightningDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% of Lightning Damage taken Recouped as Life", statOrder = { 7063 }, level = 75, group = "LightningDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, }, - ["LightningDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% of Lightning Damage taken Recouped as Life", statOrder = { 7063 }, level = 75, group = "LightningDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, }, - ["PhysicalDamageTakenGainedAsLifeEldritchImplicit1"] = { type = "Exarch", affix = "", "(7-8)% of Physical Damage taken Recouped as Life", statOrder = { 9170 }, level = 75, group = "PhysicalDamageTakenGainedAsLife", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["PhysicalDamageTakenGainedAsLifeEldritchImplicit2"] = { type = "Exarch", affix = "", "(9-10)% of Physical Damage taken Recouped as Life", statOrder = { 9170 }, level = 75, group = "PhysicalDamageTakenGainedAsLife", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["PhysicalDamageTakenGainedAsLifeEldritchImplicit3"] = { type = "Exarch", affix = "", "(11-12)% of Physical Damage taken Recouped as Life", statOrder = { 9170 }, level = 75, group = "PhysicalDamageTakenGainedAsLife", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["PhysicalDamageTakenGainedAsLifeEldritchImplicit4"] = { type = "Exarch", affix = "", "(13-14)% of Physical Damage taken Recouped as Life", statOrder = { 9170 }, level = 75, group = "PhysicalDamageTakenGainedAsLife", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["PhysicalDamageTakenGainedAsLifeEldritchImplicit5"] = { type = "Exarch", affix = "", "(15-16)% of Physical Damage taken Recouped as Life", statOrder = { 9170 }, level = 75, group = "PhysicalDamageTakenGainedAsLife", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["PhysicalDamageTakenGainedAsLifeEldritchImplicit6"] = { type = "Exarch", affix = "", "(17-18)% of Physical Damage taken Recouped as Life", statOrder = { 9170 }, level = 75, group = "PhysicalDamageTakenGainedAsLife", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["PhysicalDamageTakenGainedAsLifeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (13-14)% of Physical Damage taken Recouped as Life", statOrder = { 9170 }, level = 75, group = "PhysicalDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "physical" }, }, - ["PhysicalDamageTakenGainedAsLifeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (15-16)% of Physical Damage taken Recouped as Life", statOrder = { 9170 }, level = 75, group = "PhysicalDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "physical" }, }, - ["PhysicalDamageTakenGainedAsLifeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (17-18)% of Physical Damage taken Recouped as Life", statOrder = { 9170 }, level = 75, group = "PhysicalDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "physical" }, }, - ["PhysicalDamageTakenGainedAsLifeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (19-20)% of Physical Damage taken Recouped as Life", statOrder = { 9170 }, level = 75, group = "PhysicalDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "physical" }, }, - ["PhysicalDamageTakenGainedAsLifeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-22)% of Physical Damage taken Recouped as Life", statOrder = { 9170 }, level = 75, group = "PhysicalDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "physical" }, }, - ["PhysicalDamageTakenGainedAsLifeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (23-24)% of Physical Damage taken Recouped as Life", statOrder = { 9170 }, level = 75, group = "PhysicalDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "physical" }, }, - ["PhysicalDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (19-20)% of Physical Damage taken Recouped as Life", statOrder = { 9170 }, level = 75, group = "PhysicalDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "physical" }, }, - ["PhysicalDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (21-22)% of Physical Damage taken Recouped as Life", statOrder = { 9170 }, level = 75, group = "PhysicalDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "physical" }, }, - ["PhysicalDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (23-24)% of Physical Damage taken Recouped as Life", statOrder = { 9170 }, level = 75, group = "PhysicalDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "physical" }, }, - ["PhysicalDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% of Physical Damage taken Recouped as Life", statOrder = { 9170 }, level = 75, group = "PhysicalDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "physical" }, }, - ["PhysicalDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% of Physical Damage taken Recouped as Life", statOrder = { 9170 }, level = 75, group = "PhysicalDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "physical" }, }, - ["PhysicalDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% of Physical Damage taken Recouped as Life", statOrder = { 9170 }, level = 75, group = "PhysicalDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "physical" }, }, - ["CurseEffectFlammabilityEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Flammability Curse Effect", statOrder = { 3875 }, level = 75, group = "CurseEffectFlammability", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, - ["CurseEffectFlammabilityEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Flammability Curse Effect", statOrder = { 3875 }, level = 75, group = "CurseEffectFlammability", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, - ["CurseEffectFlammabilityEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Flammability Curse Effect", statOrder = { 3875 }, level = 75, group = "CurseEffectFlammability", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, - ["CurseEffectFlammabilityEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Flammability Curse Effect", statOrder = { 3875 }, level = 75, group = "CurseEffectFlammability", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, - ["CurseEffectFlammabilityEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Flammability Curse Effect", statOrder = { 3875 }, level = 75, group = "CurseEffectFlammability", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, - ["CurseEffectFlammabilityEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Flammability Curse Effect", statOrder = { 3875 }, level = 75, group = "CurseEffectFlammability", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, - ["CurseEffectFlammabilityEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Flammability Curse Effect", statOrder = { 3875 }, level = 75, group = "CurseEffectFlammabilityUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, - ["CurseEffectFlammabilityEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Flammability Curse Effect", statOrder = { 3875 }, level = 75, group = "CurseEffectFlammabilityUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, - ["CurseEffectFlammabilityEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Flammability Curse Effect", statOrder = { 3875 }, level = 75, group = "CurseEffectFlammabilityUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, - ["CurseEffectFlammabilityEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Flammability Curse Effect", statOrder = { 3875 }, level = 75, group = "CurseEffectFlammabilityUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, - ["CurseEffectFlammabilityEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Flammability Curse Effect", statOrder = { 3875 }, level = 75, group = "CurseEffectFlammabilityUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, - ["CurseEffectFlammabilityEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Flammability Curse Effect", statOrder = { 3875 }, level = 75, group = "CurseEffectFlammabilityUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, - ["CurseEffectFlammabilityEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Flammability Curse Effect", statOrder = { 3875 }, level = 75, group = "CurseEffectFlammabilityPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, - ["CurseEffectFlammabilityEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Flammability Curse Effect", statOrder = { 3875 }, level = 75, group = "CurseEffectFlammabilityPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, - ["CurseEffectFlammabilityEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Flammability Curse Effect", statOrder = { 3875 }, level = 75, group = "CurseEffectFlammabilityPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, - ["CurseEffectFlammabilityEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Flammability Curse Effect", statOrder = { 3875 }, level = 75, group = "CurseEffectFlammabilityPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, - ["CurseEffectFlammabilityEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Flammability Curse Effect", statOrder = { 3875 }, level = 75, group = "CurseEffectFlammabilityPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, - ["CurseEffectFlammabilityEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Flammability Curse Effect", statOrder = { 3875 }, level = 75, group = "CurseEffectFlammabilityPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, - ["CurseEffectFrostbiteEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Frostbite Curse Effect", statOrder = { 3876 }, level = 75, group = "CurseEffectFrostbite", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, - ["CurseEffectFrostbiteEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Frostbite Curse Effect", statOrder = { 3876 }, level = 75, group = "CurseEffectFrostbite", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, - ["CurseEffectFrostbiteEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Frostbite Curse Effect", statOrder = { 3876 }, level = 75, group = "CurseEffectFrostbite", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, - ["CurseEffectFrostbiteEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Frostbite Curse Effect", statOrder = { 3876 }, level = 75, group = "CurseEffectFrostbite", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, - ["CurseEffectFrostbiteEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Frostbite Curse Effect", statOrder = { 3876 }, level = 75, group = "CurseEffectFrostbite", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, - ["CurseEffectFrostbiteEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Frostbite Curse Effect", statOrder = { 3876 }, level = 75, group = "CurseEffectFrostbite", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, - ["CurseEffectFrostbiteEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Frostbite Curse Effect", statOrder = { 3876 }, level = 75, group = "CurseEffectFrostbiteUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, - ["CurseEffectFrostbiteEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Frostbite Curse Effect", statOrder = { 3876 }, level = 75, group = "CurseEffectFrostbiteUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, - ["CurseEffectFrostbiteEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Frostbite Curse Effect", statOrder = { 3876 }, level = 75, group = "CurseEffectFrostbiteUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, - ["CurseEffectFrostbiteEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Frostbite Curse Effect", statOrder = { 3876 }, level = 75, group = "CurseEffectFrostbiteUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, - ["CurseEffectFrostbiteEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Frostbite Curse Effect", statOrder = { 3876 }, level = 75, group = "CurseEffectFrostbiteUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, - ["CurseEffectFrostbiteEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Frostbite Curse Effect", statOrder = { 3876 }, level = 75, group = "CurseEffectFrostbiteUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, - ["CurseEffectFrostbiteEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Frostbite Curse Effect", statOrder = { 3876 }, level = 75, group = "CurseEffectFrostbitePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, - ["CurseEffectFrostbiteEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Frostbite Curse Effect", statOrder = { 3876 }, level = 75, group = "CurseEffectFrostbitePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, - ["CurseEffectFrostbiteEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Frostbite Curse Effect", statOrder = { 3876 }, level = 75, group = "CurseEffectFrostbitePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, - ["CurseEffectFrostbiteEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Frostbite Curse Effect", statOrder = { 3876 }, level = 75, group = "CurseEffectFrostbitePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, - ["CurseEffectFrostbiteEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Frostbite Curse Effect", statOrder = { 3876 }, level = 75, group = "CurseEffectFrostbitePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, - ["CurseEffectFrostbiteEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Frostbite Curse Effect", statOrder = { 3876 }, level = 75, group = "CurseEffectFrostbitePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, - ["CurseEffectConductivityEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Conductivity Curse Effect", statOrder = { 3872 }, level = 75, group = "CurseEffectConductivity", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, - ["CurseEffectConductivityEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Conductivity Curse Effect", statOrder = { 3872 }, level = 75, group = "CurseEffectConductivity", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, - ["CurseEffectConductivityEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Conductivity Curse Effect", statOrder = { 3872 }, level = 75, group = "CurseEffectConductivity", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, - ["CurseEffectConductivityEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Conductivity Curse Effect", statOrder = { 3872 }, level = 75, group = "CurseEffectConductivity", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, - ["CurseEffectConductivityEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Conductivity Curse Effect", statOrder = { 3872 }, level = 75, group = "CurseEffectConductivity", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, - ["CurseEffectConductivityEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Conductivity Curse Effect", statOrder = { 3872 }, level = 75, group = "CurseEffectConductivity", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, - ["CurseEffectConductivityEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Conductivity Curse Effect", statOrder = { 3872 }, level = 75, group = "CurseEffectConductivityUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, - ["CurseEffectConductivityEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Conductivity Curse Effect", statOrder = { 3872 }, level = 75, group = "CurseEffectConductivityUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, - ["CurseEffectConductivityEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Conductivity Curse Effect", statOrder = { 3872 }, level = 75, group = "CurseEffectConductivityUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, - ["CurseEffectConductivityEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Conductivity Curse Effect", statOrder = { 3872 }, level = 75, group = "CurseEffectConductivityUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, - ["CurseEffectConductivityEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Conductivity Curse Effect", statOrder = { 3872 }, level = 75, group = "CurseEffectConductivityUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, - ["CurseEffectConductivityEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Conductivity Curse Effect", statOrder = { 3872 }, level = 75, group = "CurseEffectConductivityUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, - ["CurseEffectConductivityEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Conductivity Curse Effect", statOrder = { 3872 }, level = 75, group = "CurseEffectConductivityPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, - ["CurseEffectConductivityEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Conductivity Curse Effect", statOrder = { 3872 }, level = 75, group = "CurseEffectConductivityPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, - ["CurseEffectConductivityEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Conductivity Curse Effect", statOrder = { 3872 }, level = 75, group = "CurseEffectConductivityPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, - ["CurseEffectConductivityEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Conductivity Curse Effect", statOrder = { 3872 }, level = 75, group = "CurseEffectConductivityPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, - ["CurseEffectConductivityEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Conductivity Curse Effect", statOrder = { 3872 }, level = 75, group = "CurseEffectConductivityPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, - ["CurseEffectConductivityEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Conductivity Curse Effect", statOrder = { 3872 }, level = 75, group = "CurseEffectConductivityPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, - ["CurseEffectVulnerabilityEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Vulnerability Curse Effect", statOrder = { 3878 }, level = 75, group = "CurseEffectVulnerability", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, - ["CurseEffectVulnerabilityEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Vulnerability Curse Effect", statOrder = { 3878 }, level = 75, group = "CurseEffectVulnerability", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, - ["CurseEffectVulnerabilityEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Vulnerability Curse Effect", statOrder = { 3878 }, level = 75, group = "CurseEffectVulnerability", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, - ["CurseEffectVulnerabilityEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Vulnerability Curse Effect", statOrder = { 3878 }, level = 75, group = "CurseEffectVulnerability", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, - ["CurseEffectVulnerabilityEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Vulnerability Curse Effect", statOrder = { 3878 }, level = 75, group = "CurseEffectVulnerability", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, - ["CurseEffectVulnerabilityEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Vulnerability Curse Effect", statOrder = { 3878 }, level = 75, group = "CurseEffectVulnerability", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, - ["CurseEffectVulnerabilityEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Vulnerability Curse Effect", statOrder = { 3878 }, level = 75, group = "CurseEffectVulnerabilityUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, - ["CurseEffectVulnerabilityEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Vulnerability Curse Effect", statOrder = { 3878 }, level = 75, group = "CurseEffectVulnerabilityUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, - ["CurseEffectVulnerabilityEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Vulnerability Curse Effect", statOrder = { 3878 }, level = 75, group = "CurseEffectVulnerabilityUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, - ["CurseEffectVulnerabilityEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Vulnerability Curse Effect", statOrder = { 3878 }, level = 75, group = "CurseEffectVulnerabilityUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, - ["CurseEffectVulnerabilityEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Vulnerability Curse Effect", statOrder = { 3878 }, level = 75, group = "CurseEffectVulnerabilityUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, - ["CurseEffectVulnerabilityEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Vulnerability Curse Effect", statOrder = { 3878 }, level = 75, group = "CurseEffectVulnerabilityUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, - ["CurseEffectVulnerabilityEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Vulnerability Curse Effect", statOrder = { 3878 }, level = 75, group = "CurseEffectVulnerabilityPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, - ["CurseEffectVulnerabilityEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Vulnerability Curse Effect", statOrder = { 3878 }, level = 75, group = "CurseEffectVulnerabilityPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, - ["CurseEffectVulnerabilityEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Vulnerability Curse Effect", statOrder = { 3878 }, level = 75, group = "CurseEffectVulnerabilityPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, - ["CurseEffectVulnerabilityEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Vulnerability Curse Effect", statOrder = { 3878 }, level = 75, group = "CurseEffectVulnerabilityPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, - ["CurseEffectVulnerabilityEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Vulnerability Curse Effect", statOrder = { 3878 }, level = 75, group = "CurseEffectVulnerabilityPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, - ["CurseEffectVulnerabilityEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Vulnerability Curse Effect", statOrder = { 3878 }, level = 75, group = "CurseEffectVulnerabilityPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, - ["CurseEffectElementalWeaknessEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Elemental Weakness Curse Effect", statOrder = { 3873 }, level = 75, group = "CurseEffectElementalWeakness", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, - ["CurseEffectElementalWeaknessEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Elemental Weakness Curse Effect", statOrder = { 3873 }, level = 75, group = "CurseEffectElementalWeakness", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, - ["CurseEffectElementalWeaknessEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Elemental Weakness Curse Effect", statOrder = { 3873 }, level = 75, group = "CurseEffectElementalWeakness", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, - ["CurseEffectElementalWeaknessEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Elemental Weakness Curse Effect", statOrder = { 3873 }, level = 75, group = "CurseEffectElementalWeakness", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, - ["CurseEffectElementalWeaknessEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Elemental Weakness Curse Effect", statOrder = { 3873 }, level = 75, group = "CurseEffectElementalWeakness", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, - ["CurseEffectElementalWeaknessEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Elemental Weakness Curse Effect", statOrder = { 3873 }, level = 75, group = "CurseEffectElementalWeakness", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, - ["CurseEffectElementalWeaknessEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Elemental Weakness Curse Effect", statOrder = { 3873 }, level = 75, group = "CurseEffectElementalWeaknessUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, - ["CurseEffectElementalWeaknessEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Elemental Weakness Curse Effect", statOrder = { 3873 }, level = 75, group = "CurseEffectElementalWeaknessUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, - ["CurseEffectElementalWeaknessEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Elemental Weakness Curse Effect", statOrder = { 3873 }, level = 75, group = "CurseEffectElementalWeaknessUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, - ["CurseEffectElementalWeaknessEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Elemental Weakness Curse Effect", statOrder = { 3873 }, level = 75, group = "CurseEffectElementalWeaknessUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, - ["CurseEffectElementalWeaknessEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Elemental Weakness Curse Effect", statOrder = { 3873 }, level = 75, group = "CurseEffectElementalWeaknessUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, - ["CurseEffectElementalWeaknessEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Elemental Weakness Curse Effect", statOrder = { 3873 }, level = 75, group = "CurseEffectElementalWeaknessUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, - ["CurseEffectElementalWeaknessEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Elemental Weakness Curse Effect", statOrder = { 3873 }, level = 75, group = "CurseEffectElementalWeaknessPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, - ["CurseEffectElementalWeaknessEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Elemental Weakness Curse Effect", statOrder = { 3873 }, level = 75, group = "CurseEffectElementalWeaknessPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, - ["CurseEffectElementalWeaknessEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Elemental Weakness Curse Effect", statOrder = { 3873 }, level = 75, group = "CurseEffectElementalWeaknessPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, - ["CurseEffectElementalWeaknessEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Elemental Weakness Curse Effect", statOrder = { 3873 }, level = 75, group = "CurseEffectElementalWeaknessPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, - ["CurseEffectElementalWeaknessEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Elemental Weakness Curse Effect", statOrder = { 3873 }, level = 75, group = "CurseEffectElementalWeaknessPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, - ["CurseEffectElementalWeaknessEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Elemental Weakness Curse Effect", statOrder = { 3873 }, level = 75, group = "CurseEffectElementalWeaknessPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, - ["CurseEffectDespairEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Despair Curse Effect", statOrder = { 5864 }, level = 75, group = "CurseEffectDespair", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["CurseEffectDespairEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Despair Curse Effect", statOrder = { 5864 }, level = 75, group = "CurseEffectDespair", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["CurseEffectDespairEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Despair Curse Effect", statOrder = { 5864 }, level = 75, group = "CurseEffectDespair", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["CurseEffectDespairEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Despair Curse Effect", statOrder = { 5864 }, level = 75, group = "CurseEffectDespair", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["CurseEffectDespairEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Despair Curse Effect", statOrder = { 5864 }, level = 75, group = "CurseEffectDespair", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["CurseEffectDespairEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Despair Curse Effect", statOrder = { 5864 }, level = 75, group = "CurseEffectDespair", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["CurseEffectDespairEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Despair Curse Effect", statOrder = { 5864 }, level = 75, group = "CurseEffectDespairUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, - ["CurseEffectDespairEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Despair Curse Effect", statOrder = { 5864 }, level = 75, group = "CurseEffectDespairUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, - ["CurseEffectDespairEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Despair Curse Effect", statOrder = { 5864 }, level = 75, group = "CurseEffectDespairUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, - ["CurseEffectDespairEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Despair Curse Effect", statOrder = { 5864 }, level = 75, group = "CurseEffectDespairUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, - ["CurseEffectDespairEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Despair Curse Effect", statOrder = { 5864 }, level = 75, group = "CurseEffectDespairUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, - ["CurseEffectDespairEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Despair Curse Effect", statOrder = { 5864 }, level = 75, group = "CurseEffectDespairUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, - ["CurseEffectDespairEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Despair Curse Effect", statOrder = { 5864 }, level = 75, group = "CurseEffectDespairPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, - ["CurseEffectDespairEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Despair Curse Effect", statOrder = { 5864 }, level = 75, group = "CurseEffectDespairPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, - ["CurseEffectDespairEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Despair Curse Effect", statOrder = { 5864 }, level = 75, group = "CurseEffectDespairPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, - ["CurseEffectDespairEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Despair Curse Effect", statOrder = { 5864 }, level = 75, group = "CurseEffectDespairPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, - ["CurseEffectDespairEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Despair Curse Effect", statOrder = { 5864 }, level = 75, group = "CurseEffectDespairPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, - ["CurseEffectDespairEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Despair Curse Effect", statOrder = { 5864 }, level = 75, group = "CurseEffectDespairPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, - ["CurseEffectTemporalChainsEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Temporal Chains Curse Effect", statOrder = { 3870 }, level = 75, group = "CurseEffectTemporalChains", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["CurseEffectTemporalChainsEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Temporal Chains Curse Effect", statOrder = { 3870 }, level = 75, group = "CurseEffectTemporalChains", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["CurseEffectTemporalChainsEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Temporal Chains Curse Effect", statOrder = { 3870 }, level = 75, group = "CurseEffectTemporalChains", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["CurseEffectTemporalChainsEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Temporal Chains Curse Effect", statOrder = { 3870 }, level = 75, group = "CurseEffectTemporalChains", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["CurseEffectTemporalChainsEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Temporal Chains Curse Effect", statOrder = { 3870 }, level = 75, group = "CurseEffectTemporalChains", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["CurseEffectTemporalChainsEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Temporal Chains Curse Effect", statOrder = { 3870 }, level = 75, group = "CurseEffectTemporalChains", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["CurseEffectTemporalChainsEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Temporal Chains Curse Effect", statOrder = { 3870 }, level = 75, group = "CurseEffectTemporalChainsUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, - ["CurseEffectTemporalChainsEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Temporal Chains Curse Effect", statOrder = { 3870 }, level = 75, group = "CurseEffectTemporalChainsUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, - ["CurseEffectTemporalChainsEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Temporal Chains Curse Effect", statOrder = { 3870 }, level = 75, group = "CurseEffectTemporalChainsUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, - ["CurseEffectTemporalChainsEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Temporal Chains Curse Effect", statOrder = { 3870 }, level = 75, group = "CurseEffectTemporalChainsUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, - ["CurseEffectTemporalChainsEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Temporal Chains Curse Effect", statOrder = { 3870 }, level = 75, group = "CurseEffectTemporalChainsUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, - ["CurseEffectTemporalChainsEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Temporal Chains Curse Effect", statOrder = { 3870 }, level = 75, group = "CurseEffectTemporalChainsUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, - ["CurseEffectTemporalChainsEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Temporal Chains Curse Effect", statOrder = { 3870 }, level = 75, group = "CurseEffectTemporalChainsPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, - ["CurseEffectTemporalChainsEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Temporal Chains Curse Effect", statOrder = { 3870 }, level = 75, group = "CurseEffectTemporalChainsPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, - ["CurseEffectTemporalChainsEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Temporal Chains Curse Effect", statOrder = { 3870 }, level = 75, group = "CurseEffectTemporalChainsPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, - ["CurseEffectTemporalChainsEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Temporal Chains Curse Effect", statOrder = { 3870 }, level = 75, group = "CurseEffectTemporalChainsPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, - ["CurseEffectTemporalChainsEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Temporal Chains Curse Effect", statOrder = { 3870 }, level = 75, group = "CurseEffectTemporalChainsPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, - ["CurseEffectTemporalChainsEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Temporal Chains Curse Effect", statOrder = { 3870 }, level = 75, group = "CurseEffectTemporalChainsPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, - ["CurseEffectEnfeebleEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Enfeeble Curse Effect", statOrder = { 3874 }, level = 75, group = "CurseEffectEnfeeble", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["CurseEffectEnfeebleEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Enfeeble Curse Effect", statOrder = { 3874 }, level = 75, group = "CurseEffectEnfeeble", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["CurseEffectEnfeebleEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Enfeeble Curse Effect", statOrder = { 3874 }, level = 75, group = "CurseEffectEnfeeble", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["CurseEffectEnfeebleEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Enfeeble Curse Effect", statOrder = { 3874 }, level = 75, group = "CurseEffectEnfeeble", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["CurseEffectEnfeebleEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Enfeeble Curse Effect", statOrder = { 3874 }, level = 75, group = "CurseEffectEnfeeble", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["CurseEffectEnfeebleEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Enfeeble Curse Effect", statOrder = { 3874 }, level = 75, group = "CurseEffectEnfeeble", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["CurseEffectEnfeebleEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Enfeeble Curse Effect", statOrder = { 3874 }, level = 75, group = "CurseEffectEnfeebleUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, - ["CurseEffectEnfeebleEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Enfeeble Curse Effect", statOrder = { 3874 }, level = 75, group = "CurseEffectEnfeebleUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, - ["CurseEffectEnfeebleEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Enfeeble Curse Effect", statOrder = { 3874 }, level = 75, group = "CurseEffectEnfeebleUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, - ["CurseEffectEnfeebleEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Enfeeble Curse Effect", statOrder = { 3874 }, level = 75, group = "CurseEffectEnfeebleUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, - ["CurseEffectEnfeebleEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Enfeeble Curse Effect", statOrder = { 3874 }, level = 75, group = "CurseEffectEnfeebleUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, - ["CurseEffectEnfeebleEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Enfeeble Curse Effect", statOrder = { 3874 }, level = 75, group = "CurseEffectEnfeebleUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, - ["CurseEffectEnfeebleEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Enfeeble Curse Effect", statOrder = { 3874 }, level = 75, group = "CurseEffectEnfeeblePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, - ["CurseEffectEnfeebleEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Enfeeble Curse Effect", statOrder = { 3874 }, level = 75, group = "CurseEffectEnfeeblePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, - ["CurseEffectEnfeebleEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Enfeeble Curse Effect", statOrder = { 3874 }, level = 75, group = "CurseEffectEnfeeblePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, - ["CurseEffectEnfeebleEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Enfeeble Curse Effect", statOrder = { 3874 }, level = 75, group = "CurseEffectEnfeeblePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, - ["CurseEffectEnfeebleEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Enfeeble Curse Effect", statOrder = { 3874 }, level = 75, group = "CurseEffectEnfeeblePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, - ["CurseEffectEnfeebleEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Enfeeble Curse Effect", statOrder = { 3874 }, level = 75, group = "CurseEffectEnfeeblePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, - ["CurseEffectPunishmentEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Punishment Curse Effect", statOrder = { 3877 }, level = 75, group = "CurseEffectPunishment", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["CurseEffectPunishmentEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Punishment Curse Effect", statOrder = { 3877 }, level = 75, group = "CurseEffectPunishment", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["CurseEffectPunishmentEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Punishment Curse Effect", statOrder = { 3877 }, level = 75, group = "CurseEffectPunishment", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["CurseEffectPunishmentEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Punishment Curse Effect", statOrder = { 3877 }, level = 75, group = "CurseEffectPunishment", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["CurseEffectPunishmentEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Punishment Curse Effect", statOrder = { 3877 }, level = 75, group = "CurseEffectPunishment", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["CurseEffectPunishmentEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Punishment Curse Effect", statOrder = { 3877 }, level = 75, group = "CurseEffectPunishment", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["CurseEffectPunishmentEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Punishment Curse Effect", statOrder = { 3877 }, level = 75, group = "CurseEffectPunishmentUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, - ["CurseEffectPunishmentEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Punishment Curse Effect", statOrder = { 3877 }, level = 75, group = "CurseEffectPunishmentUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, - ["CurseEffectPunishmentEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Punishment Curse Effect", statOrder = { 3877 }, level = 75, group = "CurseEffectPunishmentUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, - ["CurseEffectPunishmentEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Punishment Curse Effect", statOrder = { 3877 }, level = 75, group = "CurseEffectPunishmentUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, - ["CurseEffectPunishmentEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Punishment Curse Effect", statOrder = { 3877 }, level = 75, group = "CurseEffectPunishmentUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, - ["CurseEffectPunishmentEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Punishment Curse Effect", statOrder = { 3877 }, level = 75, group = "CurseEffectPunishmentUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, - ["CurseEffectPunishmentEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Punishment Curse Effect", statOrder = { 3877 }, level = 75, group = "CurseEffectPunishmentPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, - ["CurseEffectPunishmentEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Punishment Curse Effect", statOrder = { 3877 }, level = 75, group = "CurseEffectPunishmentPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, - ["CurseEffectPunishmentEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Punishment Curse Effect", statOrder = { 3877 }, level = 75, group = "CurseEffectPunishmentPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, - ["CurseEffectPunishmentEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Punishment Curse Effect", statOrder = { 3877 }, level = 75, group = "CurseEffectPunishmentPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, - ["CurseEffectPunishmentEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Punishment Curse Effect", statOrder = { 3877 }, level = 75, group = "CurseEffectPunishmentPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, - ["CurseEffectPunishmentEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Punishment Curse Effect", statOrder = { 3877 }, level = 75, group = "CurseEffectPunishmentPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, - ["ReducedAttackManaCostEldritchImplicit1"] = { type = "Exarch", affix = "", "(19-20)% reduced Mana Cost of Attacks", statOrder = { 4690 }, level = 75, group = "ReducedAttackManaCost", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["ReducedAttackManaCostEldritchImplicit2"] = { type = "Exarch", affix = "", "(21-22)% reduced Mana Cost of Attacks", statOrder = { 4690 }, level = 75, group = "ReducedAttackManaCost", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["ReducedAttackManaCostEldritchImplicit3"] = { type = "Exarch", affix = "", "(23-24)% reduced Mana Cost of Attacks", statOrder = { 4690 }, level = 75, group = "ReducedAttackManaCost", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["ReducedAttackManaCostEldritchImplicit4"] = { type = "Exarch", affix = "", "(25-26)% reduced Mana Cost of Attacks", statOrder = { 4690 }, level = 75, group = "ReducedAttackManaCost", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["ReducedAttackManaCostEldritchImplicit5"] = { type = "Exarch", affix = "", "(27-28)% reduced Mana Cost of Attacks", statOrder = { 4690 }, level = 75, group = "ReducedAttackManaCost", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["ReducedAttackManaCostEldritchImplicit6"] = { type = "Exarch", affix = "", "(29-30)% reduced Mana Cost of Attacks", statOrder = { 4690 }, level = 75, group = "ReducedAttackManaCost", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["ReducedAttackManaCostEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (25-26)% reduced Mana Cost of Attacks", statOrder = { 4690 }, level = 75, group = "ReducedAttackManaCostUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana", "attack" }, }, - ["ReducedAttackManaCostEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-28)% reduced Mana Cost of Attacks", statOrder = { 4690 }, level = 75, group = "ReducedAttackManaCostUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana", "attack" }, }, - ["ReducedAttackManaCostEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (29-30)% reduced Mana Cost of Attacks", statOrder = { 4690 }, level = 75, group = "ReducedAttackManaCostUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana", "attack" }, }, - ["ReducedAttackManaCostEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (31-32)% reduced Mana Cost of Attacks", statOrder = { 4690 }, level = 75, group = "ReducedAttackManaCostUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana", "attack" }, }, - ["ReducedAttackManaCostEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (33-34)% reduced Mana Cost of Attacks", statOrder = { 4690 }, level = 75, group = "ReducedAttackManaCostUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana", "attack" }, }, - ["ReducedAttackManaCostEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (35-36)% reduced Mana Cost of Attacks", statOrder = { 4690 }, level = 75, group = "ReducedAttackManaCostUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana", "attack" }, }, - ["ReducedAttackManaCostEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (31-32)% reduced Mana Cost of Attacks", statOrder = { 4690 }, level = 75, group = "ReducedAttackManaCostPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana", "attack" }, }, - ["ReducedAttackManaCostEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-34)% reduced Mana Cost of Attacks", statOrder = { 4690 }, level = 75, group = "ReducedAttackManaCostPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana", "attack" }, }, - ["ReducedAttackManaCostEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (35-36)% reduced Mana Cost of Attacks", statOrder = { 4690 }, level = 75, group = "ReducedAttackManaCostPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "mana", "attack" }, }, - ["ReducedAttackManaCostEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (37-38)% reduced Mana Cost of Attacks", statOrder = { 4690 }, level = 75, group = "ReducedAttackManaCostPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "mana", "attack" }, }, - ["ReducedAttackManaCostEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-40)% reduced Mana Cost of Attacks", statOrder = { 4690 }, level = 75, group = "ReducedAttackManaCostPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "mana", "attack" }, }, - ["ReducedAttackManaCostEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (41-42)% reduced Mana Cost of Attacks", statOrder = { 4690 }, level = 75, group = "ReducedAttackManaCostPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "mana", "attack" }, }, - ["MaximumLightningResistanceImplicitEldritchImplicit1"] = { type = "Exarch", affix = "", "+1% to maximum Lightning Resistance", statOrder = { 1516 }, level = 75, group = "MaximumLightningResistanceImplicit", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["MaximumLightningResistanceImplicitEldritchImplicit2"] = { type = "Exarch", affix = "", "+1% to maximum Lightning Resistance", statOrder = { 1516 }, level = 75, group = "MaximumLightningResistanceImplicit", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["MaximumLightningResistanceImplicitEldritchImplicit3"] = { type = "Exarch", affix = "", "+1% to maximum Lightning Resistance", statOrder = { 1516 }, level = 75, group = "MaximumLightningResistanceImplicit", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["MaximumLightningResistanceImplicitEldritchImplicit4"] = { type = "Exarch", affix = "", "+1% to maximum Lightning Resistance", statOrder = { 1516 }, level = 75, group = "MaximumLightningResistanceImplicit", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["MaximumLightningResistanceImplicitEldritchImplicit5"] = { type = "Exarch", affix = "", "+2% to maximum Lightning Resistance", statOrder = { 1516 }, level = 75, group = "MaximumLightningResistanceImplicit", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["MaximumLightningResistanceImplicitEldritchImplicit6"] = { type = "Exarch", affix = "", "+2% to maximum Lightning Resistance", statOrder = { 1516 }, level = 75, group = "MaximumLightningResistanceImplicit", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["MaximumLightningResistanceImplicitEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Lightning Resistance", statOrder = { 1516 }, level = 75, group = "MaximumLightningResistanceImplicitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["MaximumLightningResistanceImplicitEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Lightning Resistance", statOrder = { 1516 }, level = 75, group = "MaximumLightningResistanceImplicitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["MaximumLightningResistanceImplicitEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Lightning Resistance", statOrder = { 1516 }, level = 75, group = "MaximumLightningResistanceImplicitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["MaximumLightningResistanceImplicitEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Lightning Resistance", statOrder = { 1516 }, level = 75, group = "MaximumLightningResistanceImplicitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["MaximumLightningResistanceImplicitEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1516 }, level = 75, group = "MaximumLightningResistanceImplicitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["MaximumLightningResistanceImplicitEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1516 }, level = 75, group = "MaximumLightningResistanceImplicitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["MaximumLightningResistanceImplicitEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1516 }, level = 75, group = "MaximumLightningResistanceImplicitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["MaximumLightningResistanceImplicitEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1516 }, level = 75, group = "MaximumLightningResistanceImplicitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["MaximumLightningResistanceImplicitEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1516 }, level = 75, group = "MaximumLightningResistanceImplicitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["MaximumLightningResistanceImplicitEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1516 }, level = 75, group = "MaximumLightningResistanceImplicitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["MaximumLightningResistanceImplicitEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Lightning Resistance", statOrder = { 1516 }, level = 75, group = "MaximumLightningResistanceImplicitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["MaximumLightningResistanceImplicitEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Lightning Resistance", statOrder = { 1516 }, level = 75, group = "MaximumLightningResistanceImplicitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["IncreasedDamagePerPowerChargeEldritchImplicit1"] = { type = "Exarch", affix = "", "4% increased Damage per Power Charge", statOrder = { 5766 }, level = 75, group = "IncreasedDamagePerPowerCharge", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, }, - ["IncreasedDamagePerPowerChargeEldritchImplicit2"] = { type = "Exarch", affix = "", "4% increased Damage per Power Charge", statOrder = { 5766 }, level = 75, group = "IncreasedDamagePerPowerCharge", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, }, - ["IncreasedDamagePerPowerChargeEldritchImplicit3"] = { type = "Exarch", affix = "", "5% increased Damage per Power Charge", statOrder = { 5766 }, level = 75, group = "IncreasedDamagePerPowerCharge", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, }, - ["IncreasedDamagePerPowerChargeEldritchImplicit4"] = { type = "Exarch", affix = "", "5% increased Damage per Power Charge", statOrder = { 5766 }, level = 75, group = "IncreasedDamagePerPowerCharge", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, }, - ["IncreasedDamagePerPowerChargeEldritchImplicit5"] = { type = "Exarch", affix = "", "6% increased Damage per Power Charge", statOrder = { 5766 }, level = 75, group = "IncreasedDamagePerPowerCharge", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, }, - ["IncreasedDamagePerPowerChargeEldritchImplicit6"] = { type = "Exarch", affix = "", "6% increased Damage per Power Charge", statOrder = { 5766 }, level = 75, group = "IncreasedDamagePerPowerCharge", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, }, - ["IncreasedDamagePerPowerChargeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per Power Charge", statOrder = { 5766 }, level = 75, group = "IncreasedDamagePerPowerChargeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, }, - ["IncreasedDamagePerPowerChargeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per Power Charge", statOrder = { 5766 }, level = 75, group = "IncreasedDamagePerPowerChargeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, }, - ["IncreasedDamagePerPowerChargeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 6% increased Damage per Power Charge", statOrder = { 5766 }, level = 75, group = "IncreasedDamagePerPowerChargeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, }, - ["IncreasedDamagePerPowerChargeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 6% increased Damage per Power Charge", statOrder = { 5766 }, level = 75, group = "IncreasedDamagePerPowerChargeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, }, - ["IncreasedDamagePerPowerChargeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 7% increased Damage per Power Charge", statOrder = { 5766 }, level = 75, group = "IncreasedDamagePerPowerChargeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, }, - ["IncreasedDamagePerPowerChargeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 7% increased Damage per Power Charge", statOrder = { 5766 }, level = 75, group = "IncreasedDamagePerPowerChargeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, }, - ["IncreasedDamagePerPowerChargeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per Power Charge", statOrder = { 5766 }, level = 75, group = "IncreasedDamagePerPowerChargePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, }, - ["IncreasedDamagePerPowerChargeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per Power Charge", statOrder = { 5766 }, level = 75, group = "IncreasedDamagePerPowerChargePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, }, - ["IncreasedDamagePerPowerChargeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Damage per Power Charge", statOrder = { 5766 }, level = 75, group = "IncreasedDamagePerPowerChargePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, - ["IncreasedDamagePerPowerChargeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Damage per Power Charge", statOrder = { 5766 }, level = 75, group = "IncreasedDamagePerPowerChargePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, - ["IncreasedDamagePerPowerChargeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Damage per Power Charge", statOrder = { 5766 }, level = 75, group = "IncreasedDamagePerPowerChargePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, - ["IncreasedDamagePerPowerChargeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Damage per Power Charge", statOrder = { 5766 }, level = 75, group = "IncreasedDamagePerPowerChargePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, - ["MinionLifeEldritchImplicit1"] = { type = "Exarch", affix = "", "Minions have (14-16)% increased maximum Life", statOrder = { 1647 }, level = 75, group = "MinionLife", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life", "minion" }, }, - ["MinionLifeEldritchImplicit2"] = { type = "Exarch", affix = "", "Minions have (17-19)% increased maximum Life", statOrder = { 1647 }, level = 75, group = "MinionLife", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life", "minion" }, }, - ["MinionLifeEldritchImplicit3"] = { type = "Exarch", affix = "", "Minions have (20-22)% increased maximum Life", statOrder = { 1647 }, level = 75, group = "MinionLife", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life", "minion" }, }, - ["MinionLifeEldritchImplicit4"] = { type = "Exarch", affix = "", "Minions have (23-25)% increased maximum Life", statOrder = { 1647 }, level = 75, group = "MinionLife", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life", "minion" }, }, - ["MinionLifeEldritchImplicit5"] = { type = "Exarch", affix = "", "Minions have (26-27)% increased maximum Life", statOrder = { 1647 }, level = 75, group = "MinionLife", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life", "minion" }, }, - ["MinionLifeEldritchImplicit6"] = { type = "Exarch", affix = "", "Minions have (28-29)% increased maximum Life", statOrder = { 1647 }, level = 75, group = "MinionLife", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life", "minion" }, }, - ["MinionLifeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (20-22)% increased maximum Life", statOrder = { 1647 }, level = 75, group = "MinionLifeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "minion" }, }, - ["MinionLifeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (23-25)% increased maximum Life", statOrder = { 1647 }, level = 75, group = "MinionLifeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life", "minion" }, }, - ["MinionLifeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (26-28)% increased maximum Life", statOrder = { 1647 }, level = 75, group = "MinionLifeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life", "minion" }, }, - ["MinionLifeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (29-31)% increased maximum Life", statOrder = { 1647 }, level = 75, group = "MinionLifeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life", "minion" }, }, - ["MinionLifeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (32-33)% increased maximum Life", statOrder = { 1647 }, level = 75, group = "MinionLifeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life", "minion" }, }, - ["MinionLifeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (34-35)% increased maximum Life", statOrder = { 1647 }, level = 75, group = "MinionLifeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life", "minion" }, }, - ["MinionLifeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (26-28)% increased maximum Life", statOrder = { 1647 }, level = 75, group = "MinionLifePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "minion" }, }, - ["MinionLifeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (29-31)% increased maximum Life", statOrder = { 1647 }, level = 75, group = "MinionLifePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "minion" }, }, - ["MinionLifeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (32-34)% increased maximum Life", statOrder = { 1647 }, level = 75, group = "MinionLifePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "life", "minion" }, }, - ["MinionLifeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (35-37)% increased maximum Life", statOrder = { 1647 }, level = 75, group = "MinionLifePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "life", "minion" }, }, - ["MinionLifeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (38-39)% increased maximum Life", statOrder = { 1647 }, level = 75, group = "MinionLifePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "life", "minion" }, }, - ["MinionLifeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (40-41)% increased maximum Life", statOrder = { 1647 }, level = 75, group = "MinionLifePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "life", "minion" }, }, - ["MinionRunSpeedEldritchImplicit1"] = { type = "Exarch", affix = "", "Minions have (11-12)% increased Movement Speed", statOrder = { 1650 }, level = 75, group = "MinionRunSpeed", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "speed", "minion" }, }, - ["MinionRunSpeedEldritchImplicit2"] = { type = "Exarch", affix = "", "Minions have (13-14)% increased Movement Speed", statOrder = { 1650 }, level = 75, group = "MinionRunSpeed", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "speed", "minion" }, }, - ["MinionRunSpeedEldritchImplicit3"] = { type = "Exarch", affix = "", "Minions have (15-16)% increased Movement Speed", statOrder = { 1650 }, level = 75, group = "MinionRunSpeed", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "speed", "minion" }, }, - ["MinionRunSpeedEldritchImplicit4"] = { type = "Exarch", affix = "", "Minions have (17-18)% increased Movement Speed", statOrder = { 1650 }, level = 75, group = "MinionRunSpeed", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "speed", "minion" }, }, - ["MinionRunSpeedEldritchImplicit5"] = { type = "Exarch", affix = "", "Minions have (19-20)% increased Movement Speed", statOrder = { 1650 }, level = 75, group = "MinionRunSpeed", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "speed", "minion" }, }, - ["MinionRunSpeedEldritchImplicit6"] = { type = "Exarch", affix = "", "Minions have (21-22)% increased Movement Speed", statOrder = { 1650 }, level = 75, group = "MinionRunSpeed", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "speed", "minion" }, }, - ["MinionRunSpeedEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (13-15)% increased Movement Speed", statOrder = { 1650 }, level = 75, group = "MinionRunSpeedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed", "minion" }, }, - ["MinionRunSpeedEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (16-18)% increased Movement Speed", statOrder = { 1650 }, level = 75, group = "MinionRunSpeedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "speed", "minion" }, }, - ["MinionRunSpeedEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (19-21)% increased Movement Speed", statOrder = { 1650 }, level = 75, group = "MinionRunSpeedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "speed", "minion" }, }, - ["MinionRunSpeedEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (22-24)% increased Movement Speed", statOrder = { 1650 }, level = 75, group = "MinionRunSpeedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "speed", "minion" }, }, - ["MinionRunSpeedEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (25-26)% increased Movement Speed", statOrder = { 1650 }, level = 75, group = "MinionRunSpeedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "speed", "minion" }, }, - ["MinionRunSpeedEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (27-28)% increased Movement Speed", statOrder = { 1650 }, level = 75, group = "MinionRunSpeedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "speed", "minion" }, }, - ["MinionRunSpeedEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (19-21)% increased Movement Speed", statOrder = { 1650 }, level = 75, group = "MinionRunSpeedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed", "minion" }, }, - ["MinionRunSpeedEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (22-24)% increased Movement Speed", statOrder = { 1650 }, level = 75, group = "MinionRunSpeedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed", "minion" }, }, - ["MinionRunSpeedEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (25-27)% increased Movement Speed", statOrder = { 1650 }, level = 75, group = "MinionRunSpeedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "speed", "minion" }, }, - ["MinionRunSpeedEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (28-30)% increased Movement Speed", statOrder = { 1650 }, level = 75, group = "MinionRunSpeedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "speed", "minion" }, }, - ["MinionRunSpeedEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (31-32)% increased Movement Speed", statOrder = { 1650 }, level = 75, group = "MinionRunSpeedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "speed", "minion" }, }, - ["MinionRunSpeedEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (33-34)% increased Movement Speed", statOrder = { 1650 }, level = 75, group = "MinionRunSpeedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "speed", "minion" }, }, - ["AreaOfEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(7-8)% increased Area of Effect", statOrder = { 1761 }, level = 75, group = "AreaOfEffect", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, }, - ["AreaOfEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(9-10)% increased Area of Effect", statOrder = { 1761 }, level = 75, group = "AreaOfEffect", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, }, - ["AreaOfEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(11-12)% increased Area of Effect", statOrder = { 1761 }, level = 75, group = "AreaOfEffect", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, }, - ["AreaOfEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(13-14)% increased Area of Effect", statOrder = { 1761 }, level = 75, group = "AreaOfEffect", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, }, - ["AreaOfEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(15-16)% increased Area of Effect", statOrder = { 1761 }, level = 75, group = "AreaOfEffect", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, }, - ["AreaOfEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(17-18)% increased Area of Effect", statOrder = { 1761 }, level = 75, group = "AreaOfEffect", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, }, - ["AreaOfEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (13-14)% increased Area of Effect", statOrder = { 1761 }, level = 75, group = "AreaOfEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["AreaOfEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (15-16)% increased Area of Effect", statOrder = { 1761 }, level = 75, group = "AreaOfEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, }, - ["AreaOfEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (17-18)% increased Area of Effect", statOrder = { 1761 }, level = 75, group = "AreaOfEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, }, - ["AreaOfEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (19-20)% increased Area of Effect", statOrder = { 1761 }, level = 75, group = "AreaOfEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, }, - ["AreaOfEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-22)% increased Area of Effect", statOrder = { 1761 }, level = 75, group = "AreaOfEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, }, - ["AreaOfEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (23-24)% increased Area of Effect", statOrder = { 1761 }, level = 75, group = "AreaOfEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, }, - ["AreaOfEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (19-20)% increased Area of Effect", statOrder = { 1761 }, level = 75, group = "AreaOfEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["AreaOfEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (21-22)% increased Area of Effect", statOrder = { 1761 }, level = 75, group = "AreaOfEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["AreaOfEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (23-24)% increased Area of Effect", statOrder = { 1761 }, level = 75, group = "AreaOfEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, - ["AreaOfEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% increased Area of Effect", statOrder = { 1761 }, level = 75, group = "AreaOfEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, - ["AreaOfEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% increased Area of Effect", statOrder = { 1761 }, level = 75, group = "AreaOfEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, - ["AreaOfEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% increased Area of Effect", statOrder = { 1761 }, level = 75, group = "AreaOfEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, - ["EnergyShieldRegenerationEldritchImplicit1"] = { type = "Eater", affix = "", "21% increased Energy Shield Recharge Rate", statOrder = { 1447 }, level = 75, group = "EnergyShieldRegeneration", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldRegenerationEldritchImplicit2"] = { type = "Eater", affix = "", "22% increased Energy Shield Recharge Rate", statOrder = { 1447 }, level = 75, group = "EnergyShieldRegeneration", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldRegenerationEldritchImplicit3"] = { type = "Eater", affix = "", "23% increased Energy Shield Recharge Rate", statOrder = { 1447 }, level = 75, group = "EnergyShieldRegeneration", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldRegenerationEldritchImplicit4"] = { type = "Eater", affix = "", "24% increased Energy Shield Recharge Rate", statOrder = { 1447 }, level = 75, group = "EnergyShieldRegeneration", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldRegenerationEldritchImplicit5"] = { type = "Eater", affix = "", "25% increased Energy Shield Recharge Rate", statOrder = { 1447 }, level = 75, group = "EnergyShieldRegeneration", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldRegenerationEldritchImplicit6"] = { type = "Eater", affix = "", "26% increased Energy Shield Recharge Rate", statOrder = { 1447 }, level = 75, group = "EnergyShieldRegeneration", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldRegenerationEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 24% increased Energy Shield Recharge Rate", statOrder = { 1447 }, level = 75, group = "EnergyShieldRegenerationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldRegenerationEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% increased Energy Shield Recharge Rate", statOrder = { 1447 }, level = 75, group = "EnergyShieldRegenerationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldRegenerationEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 26% increased Energy Shield Recharge Rate", statOrder = { 1447 }, level = 75, group = "EnergyShieldRegenerationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldRegenerationEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 27% increased Energy Shield Recharge Rate", statOrder = { 1447 }, level = 75, group = "EnergyShieldRegenerationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldRegenerationEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 28% increased Energy Shield Recharge Rate", statOrder = { 1447 }, level = 75, group = "EnergyShieldRegenerationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldRegenerationEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 29% increased Energy Shield Recharge Rate", statOrder = { 1447 }, level = 75, group = "EnergyShieldRegenerationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldRegenerationEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 27% increased Energy Shield Recharge Rate", statOrder = { 1447 }, level = 75, group = "EnergyShieldRegenerationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldRegenerationEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 28% increased Energy Shield Recharge Rate", statOrder = { 1447 }, level = 75, group = "EnergyShieldRegenerationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldRegenerationEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 29% increased Energy Shield Recharge Rate", statOrder = { 1447 }, level = 75, group = "EnergyShieldRegenerationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldRegenerationEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 30% increased Energy Shield Recharge Rate", statOrder = { 1447 }, level = 75, group = "EnergyShieldRegenerationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldRegenerationEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 31% increased Energy Shield Recharge Rate", statOrder = { 1447 }, level = 75, group = "EnergyShieldRegenerationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldRegenerationEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 32% increased Energy Shield Recharge Rate", statOrder = { 1447 }, level = 75, group = "EnergyShieldRegenerationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldFromGlovesBootsEldritchImplicit1"] = { type = "Eater", affix = "", "(33-35)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6108 }, level = 75, group = "EnergyShieldFromGlovesBoots", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["EnergyShieldFromGlovesBootsEldritchImplicit2"] = { type = "Eater", affix = "", "(36-38)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6108 }, level = 75, group = "EnergyShieldFromGlovesBoots", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["EnergyShieldFromGlovesBootsEldritchImplicit3"] = { type = "Eater", affix = "", "(39-41)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6108 }, level = 75, group = "EnergyShieldFromGlovesBoots", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["EnergyShieldFromGlovesBootsEldritchImplicit4"] = { type = "Eater", affix = "", "(42-44)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6108 }, level = 75, group = "EnergyShieldFromGlovesBoots", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["EnergyShieldFromGlovesBootsEldritchImplicit5"] = { type = "Eater", affix = "", "(45-47)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6108 }, level = 75, group = "EnergyShieldFromGlovesBoots", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["EnergyShieldFromGlovesBootsEldritchImplicit6"] = { type = "Eater", affix = "", "(48-50)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6108 }, level = 75, group = "EnergyShieldFromGlovesBoots", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["EnergyShieldFromGlovesBootsEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (42-44)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6108 }, level = 75, group = "EnergyShieldFromGlovesBootsUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldFromGlovesBootsEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (45-47)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6108 }, level = 75, group = "EnergyShieldFromGlovesBootsUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldFromGlovesBootsEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (48-50)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6108 }, level = 75, group = "EnergyShieldFromGlovesBootsUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldFromGlovesBootsEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (51-53)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6108 }, level = 75, group = "EnergyShieldFromGlovesBootsUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldFromGlovesBootsEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (54-57)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6108 }, level = 75, group = "EnergyShieldFromGlovesBootsUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldFromGlovesBootsEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (58-61)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6108 }, level = 75, group = "EnergyShieldFromGlovesBootsUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldFromGlovesBootsEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6108 }, level = 75, group = "EnergyShieldFromGlovesBootsPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldFromGlovesBootsEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6108 }, level = 75, group = "EnergyShieldFromGlovesBootsPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldFromGlovesBootsEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6108 }, level = 75, group = "EnergyShieldFromGlovesBootsPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldFromGlovesBootsEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6108 }, level = 75, group = "EnergyShieldFromGlovesBootsPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldFromGlovesBootsEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6108 }, level = 75, group = "EnergyShieldFromGlovesBootsPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldFromGlovesBootsEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6108 }, level = 75, group = "EnergyShieldFromGlovesBootsPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "energy_shield" }, }, - ["FireResistancePenetrationEldritchImplicit1"] = { type = "Eater", affix = "", "Damage Penetrates 4% Fire Resistance", statOrder = { 2853 }, level = 75, group = "FireResistancePenetration", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireResistancePenetrationEldritchImplicit2"] = { type = "Eater", affix = "", "Damage Penetrates 4% Fire Resistance", statOrder = { 2853 }, level = 75, group = "FireResistancePenetration", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireResistancePenetrationEldritchImplicit3"] = { type = "Eater", affix = "", "Damage Penetrates 5% Fire Resistance", statOrder = { 2853 }, level = 75, group = "FireResistancePenetration", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireResistancePenetrationEldritchImplicit4"] = { type = "Eater", affix = "", "Damage Penetrates 5% Fire Resistance", statOrder = { 2853 }, level = 75, group = "FireResistancePenetration", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireResistancePenetrationEldritchImplicit5"] = { type = "Eater", affix = "", "Damage Penetrates 6% Fire Resistance", statOrder = { 2853 }, level = 75, group = "FireResistancePenetration", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireResistancePenetrationEldritchImplicit6"] = { type = "Eater", affix = "", "Damage Penetrates 6% Fire Resistance", statOrder = { 2853 }, level = 75, group = "FireResistancePenetration", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireResistancePenetrationEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 6% Fire Resistance", statOrder = { 2853 }, level = 75, group = "FireResistancePenetrationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireResistancePenetrationEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 6% Fire Resistance", statOrder = { 2853 }, level = 75, group = "FireResistancePenetrationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireResistancePenetrationEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 7% Fire Resistance", statOrder = { 2853 }, level = 75, group = "FireResistancePenetrationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireResistancePenetrationEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 7% Fire Resistance", statOrder = { 2853 }, level = 75, group = "FireResistancePenetrationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireResistancePenetrationEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 8% Fire Resistance", statOrder = { 2853 }, level = 75, group = "FireResistancePenetrationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireResistancePenetrationEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 8% Fire Resistance", statOrder = { 2853 }, level = 75, group = "FireResistancePenetrationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireResistancePenetrationEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 8% Fire Resistance", statOrder = { 2853 }, level = 75, group = "FireResistancePenetrationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireResistancePenetrationEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 8% Fire Resistance", statOrder = { 2853 }, level = 75, group = "FireResistancePenetrationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireResistancePenetrationEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 9% Fire Resistance", statOrder = { 2853 }, level = 75, group = "FireResistancePenetrationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireResistancePenetrationEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 9% Fire Resistance", statOrder = { 2853 }, level = 75, group = "FireResistancePenetrationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireResistancePenetrationEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 10% Fire Resistance", statOrder = { 2853 }, level = 75, group = "FireResistancePenetrationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireResistancePenetrationEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 10% Fire Resistance", statOrder = { 2853 }, level = 75, group = "FireResistancePenetrationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["ColdResistancePenetrationEldritchImplicit1"] = { type = "Eater", affix = "", "Damage Penetrates 4% Cold Resistance", statOrder = { 2855 }, level = 75, group = "ColdResistancePenetration", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdResistancePenetrationEldritchImplicit2"] = { type = "Eater", affix = "", "Damage Penetrates 4% Cold Resistance", statOrder = { 2855 }, level = 75, group = "ColdResistancePenetration", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdResistancePenetrationEldritchImplicit3"] = { type = "Eater", affix = "", "Damage Penetrates 5% Cold Resistance", statOrder = { 2855 }, level = 75, group = "ColdResistancePenetration", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdResistancePenetrationEldritchImplicit4"] = { type = "Eater", affix = "", "Damage Penetrates 5% Cold Resistance", statOrder = { 2855 }, level = 75, group = "ColdResistancePenetration", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdResistancePenetrationEldritchImplicit5"] = { type = "Eater", affix = "", "Damage Penetrates 6% Cold Resistance", statOrder = { 2855 }, level = 75, group = "ColdResistancePenetration", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdResistancePenetrationEldritchImplicit6"] = { type = "Eater", affix = "", "Damage Penetrates 6% Cold Resistance", statOrder = { 2855 }, level = 75, group = "ColdResistancePenetration", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdResistancePenetrationEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 6% Cold Resistance", statOrder = { 2855 }, level = 75, group = "ColdResistancePenetrationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdResistancePenetrationEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 6% Cold Resistance", statOrder = { 2855 }, level = 75, group = "ColdResistancePenetrationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdResistancePenetrationEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 7% Cold Resistance", statOrder = { 2855 }, level = 75, group = "ColdResistancePenetrationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdResistancePenetrationEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 7% Cold Resistance", statOrder = { 2855 }, level = 75, group = "ColdResistancePenetrationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdResistancePenetrationEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 8% Cold Resistance", statOrder = { 2855 }, level = 75, group = "ColdResistancePenetrationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdResistancePenetrationEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 8% Cold Resistance", statOrder = { 2855 }, level = 75, group = "ColdResistancePenetrationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdResistancePenetrationEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 8% Cold Resistance", statOrder = { 2855 }, level = 75, group = "ColdResistancePenetrationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdResistancePenetrationEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 8% Cold Resistance", statOrder = { 2855 }, level = 75, group = "ColdResistancePenetrationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdResistancePenetrationEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 9% Cold Resistance", statOrder = { 2855 }, level = 75, group = "ColdResistancePenetrationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdResistancePenetrationEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 9% Cold Resistance", statOrder = { 2855 }, level = 75, group = "ColdResistancePenetrationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdResistancePenetrationEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 10% Cold Resistance", statOrder = { 2855 }, level = 75, group = "ColdResistancePenetrationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdResistancePenetrationEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 10% Cold Resistance", statOrder = { 2855 }, level = 75, group = "ColdResistancePenetrationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["LightningResistancePenetrationEldritchImplicit1"] = { type = "Eater", affix = "", "Damage Penetrates 4% Lightning Resistance", statOrder = { 2856 }, level = 75, group = "LightningResistancePenetration", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningResistancePenetrationEldritchImplicit2"] = { type = "Eater", affix = "", "Damage Penetrates 4% Lightning Resistance", statOrder = { 2856 }, level = 75, group = "LightningResistancePenetration", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningResistancePenetrationEldritchImplicit3"] = { type = "Eater", affix = "", "Damage Penetrates 5% Lightning Resistance", statOrder = { 2856 }, level = 75, group = "LightningResistancePenetration", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningResistancePenetrationEldritchImplicit4"] = { type = "Eater", affix = "", "Damage Penetrates 5% Lightning Resistance", statOrder = { 2856 }, level = 75, group = "LightningResistancePenetration", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningResistancePenetrationEldritchImplicit5"] = { type = "Eater", affix = "", "Damage Penetrates 6% Lightning Resistance", statOrder = { 2856 }, level = 75, group = "LightningResistancePenetration", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningResistancePenetrationEldritchImplicit6"] = { type = "Eater", affix = "", "Damage Penetrates 6% Lightning Resistance", statOrder = { 2856 }, level = 75, group = "LightningResistancePenetration", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningResistancePenetrationEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 6% Lightning Resistance", statOrder = { 2856 }, level = 75, group = "LightningResistancePenetrationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningResistancePenetrationEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 6% Lightning Resistance", statOrder = { 2856 }, level = 75, group = "LightningResistancePenetrationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningResistancePenetrationEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 7% Lightning Resistance", statOrder = { 2856 }, level = 75, group = "LightningResistancePenetrationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningResistancePenetrationEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 7% Lightning Resistance", statOrder = { 2856 }, level = 75, group = "LightningResistancePenetrationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningResistancePenetrationEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 8% Lightning Resistance", statOrder = { 2856 }, level = 75, group = "LightningResistancePenetrationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningResistancePenetrationEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 8% Lightning Resistance", statOrder = { 2856 }, level = 75, group = "LightningResistancePenetrationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningResistancePenetrationEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 8% Lightning Resistance", statOrder = { 2856 }, level = 75, group = "LightningResistancePenetrationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningResistancePenetrationEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 8% Lightning Resistance", statOrder = { 2856 }, level = 75, group = "LightningResistancePenetrationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningResistancePenetrationEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 9% Lightning Resistance", statOrder = { 2856 }, level = 75, group = "LightningResistancePenetrationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningResistancePenetrationEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 9% Lightning Resistance", statOrder = { 2856 }, level = 75, group = "LightningResistancePenetrationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningResistancePenetrationEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 10% Lightning Resistance", statOrder = { 2856 }, level = 75, group = "LightningResistancePenetrationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningResistancePenetrationEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 10% Lightning Resistance", statOrder = { 2856 }, level = 75, group = "LightningResistancePenetrationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["IncreasedAilmentDurationEldritchImplicit1"] = { type = "Eater", affix = "", "(13-14)% increased Duration of Ailments on Enemies", statOrder = { 1741 }, level = 75, group = "IncreasedAilmentDuration", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, }, - ["IncreasedAilmentDurationEldritchImplicit2"] = { type = "Eater", affix = "", "(15-16)% increased Duration of Ailments on Enemies", statOrder = { 1741 }, level = 75, group = "IncreasedAilmentDuration", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, }, - ["IncreasedAilmentDurationEldritchImplicit3"] = { type = "Eater", affix = "", "(17-18)% increased Duration of Ailments on Enemies", statOrder = { 1741 }, level = 75, group = "IncreasedAilmentDuration", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, }, - ["IncreasedAilmentDurationEldritchImplicit4"] = { type = "Eater", affix = "", "(19-20)% increased Duration of Ailments on Enemies", statOrder = { 1741 }, level = 75, group = "IncreasedAilmentDuration", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, }, - ["IncreasedAilmentDurationEldritchImplicit5"] = { type = "Eater", affix = "", "(21-22)% increased Duration of Ailments on Enemies", statOrder = { 1741 }, level = 75, group = "IncreasedAilmentDuration", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, }, - ["IncreasedAilmentDurationEldritchImplicit6"] = { type = "Eater", affix = "", "(23-24)% increased Duration of Ailments on Enemies", statOrder = { 1741 }, level = 75, group = "IncreasedAilmentDuration", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, }, - ["IncreasedAilmentDurationEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (19-20)% increased Duration of Ailments on Enemies", statOrder = { 1741 }, level = 75, group = "IncreasedAilmentDurationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "ailment" }, }, - ["IncreasedAilmentDurationEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (21-22)% increased Duration of Ailments on Enemies", statOrder = { 1741 }, level = 75, group = "IncreasedAilmentDurationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, }, - ["IncreasedAilmentDurationEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (23-24)% increased Duration of Ailments on Enemies", statOrder = { 1741 }, level = 75, group = "IncreasedAilmentDurationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, }, - ["IncreasedAilmentDurationEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (25-26)% increased Duration of Ailments on Enemies", statOrder = { 1741 }, level = 75, group = "IncreasedAilmentDurationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, }, - ["IncreasedAilmentDurationEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (27-28)% increased Duration of Ailments on Enemies", statOrder = { 1741 }, level = 75, group = "IncreasedAilmentDurationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, }, - ["IncreasedAilmentDurationEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (29-30)% increased Duration of Ailments on Enemies", statOrder = { 1741 }, level = 75, group = "IncreasedAilmentDurationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, }, - ["IncreasedAilmentDurationEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% increased Duration of Ailments on Enemies", statOrder = { 1741 }, level = 75, group = "IncreasedAilmentDurationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "ailment" }, }, - ["IncreasedAilmentDurationEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% increased Duration of Ailments on Enemies", statOrder = { 1741 }, level = 75, group = "IncreasedAilmentDurationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "ailment" }, }, - ["IncreasedAilmentDurationEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% increased Duration of Ailments on Enemies", statOrder = { 1741 }, level = 75, group = "IncreasedAilmentDurationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "ailment" }, }, - ["IncreasedAilmentDurationEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (31-32)% increased Duration of Ailments on Enemies", statOrder = { 1741 }, level = 75, group = "IncreasedAilmentDurationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "ailment" }, }, - ["IncreasedAilmentDurationEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-34)% increased Duration of Ailments on Enemies", statOrder = { 1741 }, level = 75, group = "IncreasedAilmentDurationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "ailment" }, }, - ["IncreasedAilmentDurationEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (35-36)% increased Duration of Ailments on Enemies", statOrder = { 1741 }, level = 75, group = "IncreasedAilmentDurationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "ailment" }, }, - ["IncreasedAilmentEffectOnEnemiesEldritchImplicit1"] = { type = "Eater", affix = "", "(14-16)% increased Effect of Non-Damaging Ailments", statOrder = { 9017 }, level = 75, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, }, - ["IncreasedAilmentEffectOnEnemiesEldritchImplicit2"] = { type = "Eater", affix = "", "(17-19)% increased Effect of Non-Damaging Ailments", statOrder = { 9017 }, level = 75, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, }, - ["IncreasedAilmentEffectOnEnemiesEldritchImplicit3"] = { type = "Eater", affix = "", "(20-22)% increased Effect of Non-Damaging Ailments", statOrder = { 9017 }, level = 75, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, }, - ["IncreasedAilmentEffectOnEnemiesEldritchImplicit4"] = { type = "Eater", affix = "", "(23-25)% increased Effect of Non-Damaging Ailments", statOrder = { 9017 }, level = 75, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, }, - ["IncreasedAilmentEffectOnEnemiesEldritchImplicit5"] = { type = "Eater", affix = "", "(26-27)% increased Effect of Non-Damaging Ailments", statOrder = { 9017 }, level = 75, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, }, - ["IncreasedAilmentEffectOnEnemiesEldritchImplicit6"] = { type = "Eater", affix = "", "(28-29)% increased Effect of Non-Damaging Ailments", statOrder = { 9017 }, level = 75, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, }, - ["IncreasedAilmentEffectOnEnemiesEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (20-22)% increased Effect of Non-Damaging Ailments", statOrder = { 9017 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "ailment" }, }, - ["IncreasedAilmentEffectOnEnemiesEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (23-25)% increased Effect of Non-Damaging Ailments", statOrder = { 9017 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, }, - ["IncreasedAilmentEffectOnEnemiesEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (26-28)% increased Effect of Non-Damaging Ailments", statOrder = { 9017 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, }, - ["IncreasedAilmentEffectOnEnemiesEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (29-31)% increased Effect of Non-Damaging Ailments", statOrder = { 9017 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, }, - ["IncreasedAilmentEffectOnEnemiesEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (32-33)% increased Effect of Non-Damaging Ailments", statOrder = { 9017 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, }, - ["IncreasedAilmentEffectOnEnemiesEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (34-35)% increased Effect of Non-Damaging Ailments", statOrder = { 9017 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, }, - ["IncreasedAilmentEffectOnEnemiesEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-28)% increased Effect of Non-Damaging Ailments", statOrder = { 9017 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "ailment" }, }, - ["IncreasedAilmentEffectOnEnemiesEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-31)% increased Effect of Non-Damaging Ailments", statOrder = { 9017 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "ailment" }, }, - ["IncreasedAilmentEffectOnEnemiesEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (32-34)% increased Effect of Non-Damaging Ailments", statOrder = { 9017 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "ailment" }, }, - ["IncreasedAilmentEffectOnEnemiesEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (35-37)% increased Effect of Non-Damaging Ailments", statOrder = { 9017 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "ailment" }, }, - ["IncreasedAilmentEffectOnEnemiesEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (38-39)% increased Effect of Non-Damaging Ailments", statOrder = { 9017 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "ailment" }, }, - ["IncreasedAilmentEffectOnEnemiesEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (40-41)% increased Effect of Non-Damaging Ailments", statOrder = { 9017 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "ailment" }, }, - ["PhysicalDamageTakenAsFireUberEldritchImplicit1"] = { type = "Eater", affix = "", "6% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2323 }, level = 75, group = "PhysicalDamageTakenAsFireUber", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalDamageTakenAsFireUberEldritchImplicit2"] = { type = "Eater", affix = "", "6% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2323 }, level = 75, group = "PhysicalDamageTakenAsFireUber", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalDamageTakenAsFireUberEldritchImplicit3"] = { type = "Eater", affix = "", "7% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2323 }, level = 75, group = "PhysicalDamageTakenAsFireUber", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalDamageTakenAsFireUberEldritchImplicit4"] = { type = "Eater", affix = "", "7% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2323 }, level = 75, group = "PhysicalDamageTakenAsFireUber", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalDamageTakenAsFireUberEldritchImplicit5"] = { type = "Eater", affix = "", "8% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2323 }, level = 75, group = "PhysicalDamageTakenAsFireUber", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalDamageTakenAsFireUberEldritchImplicit6"] = { type = "Eater", affix = "", "8% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2323 }, level = 75, group = "PhysicalDamageTakenAsFireUber", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalDamageTakenAsFireUberEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2323 }, level = 75, group = "PhysicalDamageTakenAsFireUberUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalDamageTakenAsFireUberEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2323 }, level = 75, group = "PhysicalDamageTakenAsFireUberUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalDamageTakenAsFireUberEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2323 }, level = 75, group = "PhysicalDamageTakenAsFireUberUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalDamageTakenAsFireUberEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2323 }, level = 75, group = "PhysicalDamageTakenAsFireUberUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalDamageTakenAsFireUberEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2323 }, level = 75, group = "PhysicalDamageTakenAsFireUberUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalDamageTakenAsFireUberEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2323 }, level = 75, group = "PhysicalDamageTakenAsFireUberUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalDamageTakenAsFireUberEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2323 }, level = 75, group = "PhysicalDamageTakenAsFireUberPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalDamageTakenAsFireUberEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2323 }, level = 75, group = "PhysicalDamageTakenAsFireUberPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalDamageTakenAsFireUberEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2323 }, level = 75, group = "PhysicalDamageTakenAsFireUberPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalDamageTakenAsFireUberEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2323 }, level = 75, group = "PhysicalDamageTakenAsFireUberPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalDamageTakenAsFireUberEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2323 }, level = 75, group = "PhysicalDamageTakenAsFireUberPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalDamageTakenAsFireUberEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2323 }, level = 75, group = "PhysicalDamageTakenAsFireUberPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalDamageTakenAsColdUberEldritchImplicit1"] = { type = "Eater", affix = "", "6% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2324 }, level = 75, group = "PhysicalDamageTakenAsColdUber", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalDamageTakenAsColdUberEldritchImplicit2"] = { type = "Eater", affix = "", "6% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2324 }, level = 75, group = "PhysicalDamageTakenAsColdUber", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalDamageTakenAsColdUberEldritchImplicit3"] = { type = "Eater", affix = "", "7% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2324 }, level = 75, group = "PhysicalDamageTakenAsColdUber", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalDamageTakenAsColdUberEldritchImplicit4"] = { type = "Eater", affix = "", "7% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2324 }, level = 75, group = "PhysicalDamageTakenAsColdUber", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalDamageTakenAsColdUberEldritchImplicit5"] = { type = "Eater", affix = "", "8% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2324 }, level = 75, group = "PhysicalDamageTakenAsColdUber", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalDamageTakenAsColdUberEldritchImplicit6"] = { type = "Eater", affix = "", "8% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2324 }, level = 75, group = "PhysicalDamageTakenAsColdUber", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalDamageTakenAsColdUberEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2324 }, level = 75, group = "PhysicalDamageTakenAsColdUberUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalDamageTakenAsColdUberEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2324 }, level = 75, group = "PhysicalDamageTakenAsColdUberUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalDamageTakenAsColdUberEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2324 }, level = 75, group = "PhysicalDamageTakenAsColdUberUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalDamageTakenAsColdUberEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2324 }, level = 75, group = "PhysicalDamageTakenAsColdUberUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalDamageTakenAsColdUberEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2324 }, level = 75, group = "PhysicalDamageTakenAsColdUberUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalDamageTakenAsColdUberEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2324 }, level = 75, group = "PhysicalDamageTakenAsColdUberUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalDamageTakenAsColdUberEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2324 }, level = 75, group = "PhysicalDamageTakenAsColdUberPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalDamageTakenAsColdUberEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2324 }, level = 75, group = "PhysicalDamageTakenAsColdUberPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalDamageTakenAsColdUberEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2324 }, level = 75, group = "PhysicalDamageTakenAsColdUberPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalDamageTakenAsColdUberEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2324 }, level = 75, group = "PhysicalDamageTakenAsColdUberPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalDamageTakenAsColdUberEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2324 }, level = 75, group = "PhysicalDamageTakenAsColdUberPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalDamageTakenAsColdUberEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2324 }, level = 75, group = "PhysicalDamageTakenAsColdUberPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalDamageTakenAsLightningUberEldritchImplicit1"] = { type = "Eater", affix = "", "6% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2325 }, level = 75, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalDamageTakenAsLightningUberEldritchImplicit2"] = { type = "Eater", affix = "", "6% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2325 }, level = 75, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalDamageTakenAsLightningUberEldritchImplicit3"] = { type = "Eater", affix = "", "7% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2325 }, level = 75, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalDamageTakenAsLightningUberEldritchImplicit4"] = { type = "Eater", affix = "", "7% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2325 }, level = 75, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalDamageTakenAsLightningUberEldritchImplicit5"] = { type = "Eater", affix = "", "8% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2325 }, level = 75, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalDamageTakenAsLightningUberEldritchImplicit6"] = { type = "Eater", affix = "", "8% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2325 }, level = 75, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalDamageTakenAsLightningUberEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2325 }, level = 75, group = "PhysicalDamageTakenAsLightningUberUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalDamageTakenAsLightningUberEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2325 }, level = 75, group = "PhysicalDamageTakenAsLightningUberUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalDamageTakenAsLightningUberEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2325 }, level = 75, group = "PhysicalDamageTakenAsLightningUberUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalDamageTakenAsLightningUberEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2325 }, level = 75, group = "PhysicalDamageTakenAsLightningUberUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalDamageTakenAsLightningUberEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2325 }, level = 75, group = "PhysicalDamageTakenAsLightningUberUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalDamageTakenAsLightningUberEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2325 }, level = 75, group = "PhysicalDamageTakenAsLightningUberUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalDamageTakenAsLightningUberEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2325 }, level = 75, group = "PhysicalDamageTakenAsLightningUberPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalDamageTakenAsLightningUberEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2325 }, level = 75, group = "PhysicalDamageTakenAsLightningUberPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalDamageTakenAsLightningUberEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2325 }, level = 75, group = "PhysicalDamageTakenAsLightningUberPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalDamageTakenAsLightningUberEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2325 }, level = 75, group = "PhysicalDamageTakenAsLightningUberPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalDamageTakenAsLightningUberEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2325 }, level = 75, group = "PhysicalDamageTakenAsLightningUberPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalDamageTakenAsLightningUberEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2325 }, level = 75, group = "PhysicalDamageTakenAsLightningUberPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalDamageTakenAsChaosUberEldritchImplicit1"] = { type = "Eater", affix = "", "6% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2327 }, level = 75, group = "PhysicalDamageTakenAsChaosUber", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysicalDamageTakenAsChaosUberEldritchImplicit2"] = { type = "Eater", affix = "", "6% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2327 }, level = 75, group = "PhysicalDamageTakenAsChaosUber", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysicalDamageTakenAsChaosUberEldritchImplicit3"] = { type = "Eater", affix = "", "7% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2327 }, level = 75, group = "PhysicalDamageTakenAsChaosUber", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysicalDamageTakenAsChaosUberEldritchImplicit4"] = { type = "Eater", affix = "", "7% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2327 }, level = 75, group = "PhysicalDamageTakenAsChaosUber", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysicalDamageTakenAsChaosUberEldritchImplicit5"] = { type = "Eater", affix = "", "8% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2327 }, level = 75, group = "PhysicalDamageTakenAsChaosUber", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysicalDamageTakenAsChaosUberEldritchImplicit6"] = { type = "Eater", affix = "", "8% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2327 }, level = 75, group = "PhysicalDamageTakenAsChaosUber", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysicalDamageTakenAsChaosUberEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2327 }, level = 75, group = "PhysicalDamageTakenAsChaosUberUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysicalDamageTakenAsChaosUberEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2327 }, level = 75, group = "PhysicalDamageTakenAsChaosUberUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysicalDamageTakenAsChaosUberEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2327 }, level = 75, group = "PhysicalDamageTakenAsChaosUberUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysicalDamageTakenAsChaosUberEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2327 }, level = 75, group = "PhysicalDamageTakenAsChaosUberUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysicalDamageTakenAsChaosUberEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2327 }, level = 75, group = "PhysicalDamageTakenAsChaosUberUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysicalDamageTakenAsChaosUberEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2327 }, level = 75, group = "PhysicalDamageTakenAsChaosUberUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysicalDamageTakenAsChaosUberEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2327 }, level = 75, group = "PhysicalDamageTakenAsChaosUberPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysicalDamageTakenAsChaosUberEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2327 }, level = 75, group = "PhysicalDamageTakenAsChaosUberPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysicalDamageTakenAsChaosUberEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2327 }, level = 75, group = "PhysicalDamageTakenAsChaosUberPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysicalDamageTakenAsChaosUberEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2327 }, level = 75, group = "PhysicalDamageTakenAsChaosUberPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysicalDamageTakenAsChaosUberEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2327 }, level = 75, group = "PhysicalDamageTakenAsChaosUberPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysicalDamageTakenAsChaosUberEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2327 }, level = 75, group = "PhysicalDamageTakenAsChaosUberPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysicalDamageTakenAsFireBodyUberEldritchImplicit1"] = { type = "Eater", affix = "", "10% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2323 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUber", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalDamageTakenAsFireBodyUberEldritchImplicit2"] = { type = "Eater", affix = "", "10% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2323 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUber", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalDamageTakenAsFireBodyUberEldritchImplicit3"] = { type = "Eater", affix = "", "11% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2323 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUber", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalDamageTakenAsFireBodyUberEldritchImplicit4"] = { type = "Eater", affix = "", "11% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2323 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUber", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalDamageTakenAsFireBodyUberEldritchImplicit5"] = { type = "Eater", affix = "", "12% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2323 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUber", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalDamageTakenAsFireBodyUberEldritchImplicit6"] = { type = "Eater", affix = "", "12% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2323 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUber", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2323 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2323 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2323 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2323 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 16% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2323 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 16% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2323 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2323 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2323 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2323 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2323 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2323 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2323 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalDamageTakenAsColdBodyUberEldritchImplicit1"] = { type = "Eater", affix = "", "10% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2324 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUber", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalDamageTakenAsColdBodyUberEldritchImplicit2"] = { type = "Eater", affix = "", "10% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2324 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUber", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalDamageTakenAsColdBodyUberEldritchImplicit3"] = { type = "Eater", affix = "", "11% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2324 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUber", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalDamageTakenAsColdBodyUberEldritchImplicit4"] = { type = "Eater", affix = "", "11% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2324 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUber", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalDamageTakenAsColdBodyUberEldritchImplicit5"] = { type = "Eater", affix = "", "12% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2324 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUber", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalDamageTakenAsColdBodyUberEldritchImplicit6"] = { type = "Eater", affix = "", "12% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2324 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUber", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2324 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2324 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2324 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2324 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 16% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2324 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 16% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2324 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2324 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2324 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2324 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2324 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2324 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2324 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicit1"] = { type = "Eater", affix = "", "10% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2325 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUber", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicit2"] = { type = "Eater", affix = "", "10% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2325 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUber", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicit3"] = { type = "Eater", affix = "", "11% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2325 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUber", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicit4"] = { type = "Eater", affix = "", "11% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2325 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUber", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicit5"] = { type = "Eater", affix = "", "12% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2325 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUber", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicit6"] = { type = "Eater", affix = "", "12% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2325 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUber", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2325 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2325 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2325 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2325 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 16% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2325 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 16% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2325 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2325 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2325 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2325 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2325 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2325 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2325 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicit1"] = { type = "Eater", affix = "", "10% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2327 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUber", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicit2"] = { type = "Eater", affix = "", "10% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2327 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUber", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicit3"] = { type = "Eater", affix = "", "11% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2327 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUber", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicit4"] = { type = "Eater", affix = "", "11% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2327 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUber", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicit5"] = { type = "Eater", affix = "", "12% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2327 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUber", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicit6"] = { type = "Eater", affix = "", "12% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2327 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUber", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2327 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2327 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2327 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2327 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 16% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2327 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 16% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2327 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2327 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2327 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2327 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2327 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2327 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2327 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "chaos" }, }, - ["ManaReservationEfficiencyEldritchImplicit1"] = { type = "Eater", affix = "", "7% increased Mana Reservation Efficiency of Skills", statOrder = { 2105 }, level = 75, group = "ManaReservationEfficiency", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resource", "mana" }, }, - ["ManaReservationEfficiencyEldritchImplicit2"] = { type = "Eater", affix = "", "8% increased Mana Reservation Efficiency of Skills", statOrder = { 2105 }, level = 75, group = "ManaReservationEfficiency", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resource", "mana" }, }, - ["ManaReservationEfficiencyEldritchImplicit3"] = { type = "Eater", affix = "", "9% increased Mana Reservation Efficiency of Skills", statOrder = { 2105 }, level = 75, group = "ManaReservationEfficiency", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resource", "mana" }, }, - ["ManaReservationEfficiencyEldritchImplicit4"] = { type = "Eater", affix = "", "10% increased Mana Reservation Efficiency of Skills", statOrder = { 2105 }, level = 75, group = "ManaReservationEfficiency", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resource", "mana" }, }, - ["ManaReservationEfficiencyEldritchImplicit5"] = { type = "Eater", affix = "", "11% increased Mana Reservation Efficiency of Skills", statOrder = { 2105 }, level = 75, group = "ManaReservationEfficiency", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resource", "mana" }, }, - ["ManaReservationEfficiencyEldritchImplicit6"] = { type = "Eater", affix = "", "12% increased Mana Reservation Efficiency of Skills", statOrder = { 2105 }, level = 75, group = "ManaReservationEfficiency", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resource", "mana" }, }, - ["ManaReservationEfficiencyEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% increased Mana Reservation Efficiency of Skills", statOrder = { 2105 }, level = 75, group = "ManaReservationEfficiencyUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "mana" }, }, - ["ManaReservationEfficiencyEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 11% increased Mana Reservation Efficiency of Skills", statOrder = { 2105 }, level = 75, group = "ManaReservationEfficiencyUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resource", "mana" }, }, - ["ManaReservationEfficiencyEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 12% increased Mana Reservation Efficiency of Skills", statOrder = { 2105 }, level = 75, group = "ManaReservationEfficiencyUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resource", "mana" }, }, - ["ManaReservationEfficiencyEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 13% increased Mana Reservation Efficiency of Skills", statOrder = { 2105 }, level = 75, group = "ManaReservationEfficiencyUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resource", "mana" }, }, - ["ManaReservationEfficiencyEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% increased Mana Reservation Efficiency of Skills", statOrder = { 2105 }, level = 75, group = "ManaReservationEfficiencyUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resource", "mana" }, }, - ["ManaReservationEfficiencyEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% increased Mana Reservation Efficiency of Skills", statOrder = { 2105 }, level = 75, group = "ManaReservationEfficiencyUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resource", "mana" }, }, - ["ManaReservationEfficiencyEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% increased Mana Reservation Efficiency of Skills", statOrder = { 2105 }, level = 75, group = "ManaReservationEfficiencyPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "mana" }, }, - ["ManaReservationEfficiencyEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% increased Mana Reservation Efficiency of Skills", statOrder = { 2105 }, level = 75, group = "ManaReservationEfficiencyPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "mana" }, }, - ["ManaReservationEfficiencyEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 15% increased Mana Reservation Efficiency of Skills", statOrder = { 2105 }, level = 75, group = "ManaReservationEfficiencyPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 80, 80, 0 }, modTags = { "resource", "mana" }, }, - ["ManaReservationEfficiencyEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Mana Reservation Efficiency of Skills", statOrder = { 2105 }, level = 75, group = "ManaReservationEfficiencyPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 80, 80, 0 }, modTags = { "resource", "mana" }, }, - ["ManaReservationEfficiencyEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 17% increased Mana Reservation Efficiency of Skills", statOrder = { 2105 }, level = 75, group = "ManaReservationEfficiencyPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 80, 80, 0 }, modTags = { "resource", "mana" }, }, - ["ManaReservationEfficiencyEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Mana Reservation Efficiency of Skills", statOrder = { 2105 }, level = 75, group = "ManaReservationEfficiencyPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 80, 80, 0 }, modTags = { "resource", "mana" }, }, - ["ChanceToIgniteEldritchImplicit1"] = { type = "Eater", affix = "", "5% chance to Ignite", statOrder = { 1903 }, level = 75, group = "ChanceToIgnite", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ChanceToIgniteEldritchImplicit2"] = { type = "Eater", affix = "", "10% chance to Ignite", statOrder = { 1903 }, level = 75, group = "ChanceToIgnite", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ChanceToIgniteEldritchImplicit3"] = { type = "Eater", affix = "", "15% chance to Ignite", statOrder = { 1903 }, level = 75, group = "ChanceToIgnite", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ChanceToIgniteEldritchImplicit4"] = { type = "Eater", affix = "", "20% chance to Ignite", statOrder = { 1903 }, level = 75, group = "ChanceToIgnite", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ChanceToIgniteEldritchImplicit5"] = { type = "Eater", affix = "", "25% chance to Ignite", statOrder = { 1903 }, level = 75, group = "ChanceToIgnite", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ChanceToIgniteEldritchImplicit6"] = { type = "Eater", affix = "", "30% chance to Ignite", statOrder = { 1903 }, level = 75, group = "ChanceToIgnite", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ChanceToIgniteEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% chance to Ignite", statOrder = { 1903 }, level = 75, group = "ChanceToIgniteUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ChanceToIgniteEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 20% chance to Ignite", statOrder = { 1903 }, level = 75, group = "ChanceToIgniteUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ChanceToIgniteEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% chance to Ignite", statOrder = { 1903 }, level = 75, group = "ChanceToIgniteUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ChanceToIgniteEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% chance to Ignite", statOrder = { 1903 }, level = 75, group = "ChanceToIgniteUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ChanceToIgniteEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% chance to Ignite", statOrder = { 1903 }, level = 75, group = "ChanceToIgniteUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ChanceToIgniteEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% chance to Ignite", statOrder = { 1903 }, level = 75, group = "ChanceToIgniteUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ChanceToIgniteEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 25% chance to Ignite", statOrder = { 1903 }, level = 75, group = "ChanceToIgnitePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ChanceToIgniteEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 30% chance to Ignite", statOrder = { 1903 }, level = 75, group = "ChanceToIgnitePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ChanceToIgniteEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 35% chance to Ignite", statOrder = { 1903 }, level = 75, group = "ChanceToIgnitePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ChanceToIgniteEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% chance to Ignite", statOrder = { 1903 }, level = 75, group = "ChanceToIgnitePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ChanceToIgniteEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% chance to Ignite", statOrder = { 1903 }, level = 75, group = "ChanceToIgnitePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ChanceToIgniteEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% chance to Ignite", statOrder = { 1903 }, level = 75, group = "ChanceToIgnitePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ChanceToFreezeEldritchImplicit1"] = { type = "Eater", affix = "", "5% chance to Freeze", statOrder = { 1906 }, level = 75, group = "ChanceToFreeze", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ChanceToFreezeEldritchImplicit2"] = { type = "Eater", affix = "", "10% chance to Freeze", statOrder = { 1906 }, level = 75, group = "ChanceToFreeze", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ChanceToFreezeEldritchImplicit3"] = { type = "Eater", affix = "", "15% chance to Freeze", statOrder = { 1906 }, level = 75, group = "ChanceToFreeze", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ChanceToFreezeEldritchImplicit4"] = { type = "Eater", affix = "", "20% chance to Freeze", statOrder = { 1906 }, level = 75, group = "ChanceToFreeze", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ChanceToFreezeEldritchImplicit5"] = { type = "Eater", affix = "", "25% chance to Freeze", statOrder = { 1906 }, level = 75, group = "ChanceToFreeze", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ChanceToFreezeEldritchImplicit6"] = { type = "Eater", affix = "", "30% chance to Freeze", statOrder = { 1906 }, level = 75, group = "ChanceToFreeze", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ChanceToFreezeEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% chance to Freeze", statOrder = { 1906 }, level = 75, group = "ChanceToFreezeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ChanceToFreezeEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 20% chance to Freeze", statOrder = { 1906 }, level = 75, group = "ChanceToFreezeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ChanceToFreezeEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% chance to Freeze", statOrder = { 1906 }, level = 75, group = "ChanceToFreezeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ChanceToFreezeEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% chance to Freeze", statOrder = { 1906 }, level = 75, group = "ChanceToFreezeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ChanceToFreezeEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% chance to Freeze", statOrder = { 1906 }, level = 75, group = "ChanceToFreezeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ChanceToFreezeEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% chance to Freeze", statOrder = { 1906 }, level = 75, group = "ChanceToFreezeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ChanceToFreezeEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 25% chance to Freeze", statOrder = { 1906 }, level = 75, group = "ChanceToFreezePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ChanceToFreezeEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 30% chance to Freeze", statOrder = { 1906 }, level = 75, group = "ChanceToFreezePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ChanceToFreezeEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 35% chance to Freeze", statOrder = { 1906 }, level = 75, group = "ChanceToFreezePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ChanceToFreezeEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% chance to Freeze", statOrder = { 1906 }, level = 75, group = "ChanceToFreezePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ChanceToFreezeEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% chance to Freeze", statOrder = { 1906 }, level = 75, group = "ChanceToFreezePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ChanceToFreezeEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% chance to Freeze", statOrder = { 1906 }, level = 75, group = "ChanceToFreezePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ChanceToShockEldritchImplicit1"] = { type = "Eater", affix = "", "5% chance to Shock", statOrder = { 1910 }, level = 75, group = "ChanceToShock", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ChanceToShockEldritchImplicit2"] = { type = "Eater", affix = "", "10% chance to Shock", statOrder = { 1910 }, level = 75, group = "ChanceToShock", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ChanceToShockEldritchImplicit3"] = { type = "Eater", affix = "", "15% chance to Shock", statOrder = { 1910 }, level = 75, group = "ChanceToShock", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ChanceToShockEldritchImplicit4"] = { type = "Eater", affix = "", "20% chance to Shock", statOrder = { 1910 }, level = 75, group = "ChanceToShock", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ChanceToShockEldritchImplicit5"] = { type = "Eater", affix = "", "25% chance to Shock", statOrder = { 1910 }, level = 75, group = "ChanceToShock", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ChanceToShockEldritchImplicit6"] = { type = "Eater", affix = "", "30% chance to Shock", statOrder = { 1910 }, level = 75, group = "ChanceToShock", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ChanceToShockEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% chance to Shock", statOrder = { 1910 }, level = 75, group = "ChanceToShockUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ChanceToShockEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 20% chance to Shock", statOrder = { 1910 }, level = 75, group = "ChanceToShockUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ChanceToShockEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% chance to Shock", statOrder = { 1910 }, level = 75, group = "ChanceToShockUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ChanceToShockEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% chance to Shock", statOrder = { 1910 }, level = 75, group = "ChanceToShockUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ChanceToShockEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% chance to Shock", statOrder = { 1910 }, level = 75, group = "ChanceToShockUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ChanceToShockEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% chance to Shock", statOrder = { 1910 }, level = 75, group = "ChanceToShockUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ChanceToShockEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 25% chance to Shock", statOrder = { 1910 }, level = 75, group = "ChanceToShockPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ChanceToShockEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 30% chance to Shock", statOrder = { 1910 }, level = 75, group = "ChanceToShockPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ChanceToShockEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 35% chance to Shock", statOrder = { 1910 }, level = 75, group = "ChanceToShockPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ChanceToShockEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% chance to Shock", statOrder = { 1910 }, level = 75, group = "ChanceToShockPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ChanceToShockEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% chance to Shock", statOrder = { 1910 }, level = 75, group = "ChanceToShockPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ChanceToShockEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% chance to Shock", statOrder = { 1910 }, level = 75, group = "ChanceToShockPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ReducedIgniteDurationOnSelfEldritchImplicit1"] = { type = "Eater", affix = "", "(33-35)% reduced Ignite Duration on you", statOrder = { 1756 }, level = 75, group = "ReducedIgniteDurationOnSelf", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ReducedIgniteDurationOnSelfEldritchImplicit2"] = { type = "Eater", affix = "", "(36-38)% reduced Ignite Duration on you", statOrder = { 1756 }, level = 75, group = "ReducedIgniteDurationOnSelf", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ReducedIgniteDurationOnSelfEldritchImplicit3"] = { type = "Eater", affix = "", "(39-41)% reduced Ignite Duration on you", statOrder = { 1756 }, level = 75, group = "ReducedIgniteDurationOnSelf", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ReducedIgniteDurationOnSelfEldritchImplicit4"] = { type = "Eater", affix = "", "(42-44)% reduced Ignite Duration on you", statOrder = { 1756 }, level = 75, group = "ReducedIgniteDurationOnSelf", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ReducedIgniteDurationOnSelfEldritchImplicit5"] = { type = "Eater", affix = "", "(45-47)% reduced Ignite Duration on you", statOrder = { 1756 }, level = 75, group = "ReducedIgniteDurationOnSelf", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ReducedIgniteDurationOnSelfEldritchImplicit6"] = { type = "Eater", affix = "", "(48-50)% reduced Ignite Duration on you", statOrder = { 1756 }, level = 75, group = "ReducedIgniteDurationOnSelf", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ReducedIgniteDurationOnSelfEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (42-44)% reduced Ignite Duration on you", statOrder = { 1756 }, level = 75, group = "ReducedIgniteDurationOnSelfUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ReducedIgniteDurationOnSelfEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (45-47)% reduced Ignite Duration on you", statOrder = { 1756 }, level = 75, group = "ReducedIgniteDurationOnSelfUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ReducedIgniteDurationOnSelfEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (48-50)% reduced Ignite Duration on you", statOrder = { 1756 }, level = 75, group = "ReducedIgniteDurationOnSelfUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ReducedIgniteDurationOnSelfEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (51-53)% reduced Ignite Duration on you", statOrder = { 1756 }, level = 75, group = "ReducedIgniteDurationOnSelfUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ReducedIgniteDurationOnSelfEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (54-57)% reduced Ignite Duration on you", statOrder = { 1756 }, level = 75, group = "ReducedIgniteDurationOnSelfUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ReducedIgniteDurationOnSelfEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (58-61)% reduced Ignite Duration on you", statOrder = { 1756 }, level = 75, group = "ReducedIgniteDurationOnSelfUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ReducedIgniteDurationOnSelfEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% reduced Ignite Duration on you", statOrder = { 1756 }, level = 75, group = "ReducedIgniteDurationOnSelfPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ReducedIgniteDurationOnSelfEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% reduced Ignite Duration on you", statOrder = { 1756 }, level = 75, group = "ReducedIgniteDurationOnSelfPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ReducedIgniteDurationOnSelfEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% reduced Ignite Duration on you", statOrder = { 1756 }, level = 75, group = "ReducedIgniteDurationOnSelfPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ReducedIgniteDurationOnSelfEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% reduced Ignite Duration on you", statOrder = { 1756 }, level = 75, group = "ReducedIgniteDurationOnSelfPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ReducedIgniteDurationOnSelfEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% reduced Ignite Duration on you", statOrder = { 1756 }, level = 75, group = "ReducedIgniteDurationOnSelfPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ReducedIgniteDurationOnSelfEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% reduced Ignite Duration on you", statOrder = { 1756 }, level = 75, group = "ReducedIgniteDurationOnSelfPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ReducedFreezeDurationEldritchImplicit1"] = { type = "Eater", affix = "", "(33-35)% reduced Freeze Duration on you", statOrder = { 1755 }, level = 75, group = "ReducedFreezeDuration", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ReducedFreezeDurationEldritchImplicit2"] = { type = "Eater", affix = "", "(36-38)% reduced Freeze Duration on you", statOrder = { 1755 }, level = 75, group = "ReducedFreezeDuration", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ReducedFreezeDurationEldritchImplicit3"] = { type = "Eater", affix = "", "(39-41)% reduced Freeze Duration on you", statOrder = { 1755 }, level = 75, group = "ReducedFreezeDuration", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ReducedFreezeDurationEldritchImplicit4"] = { type = "Eater", affix = "", "(42-44)% reduced Freeze Duration on you", statOrder = { 1755 }, level = 75, group = "ReducedFreezeDuration", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ReducedFreezeDurationEldritchImplicit5"] = { type = "Eater", affix = "", "(45-47)% reduced Freeze Duration on you", statOrder = { 1755 }, level = 75, group = "ReducedFreezeDuration", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ReducedFreezeDurationEldritchImplicit6"] = { type = "Eater", affix = "", "(48-50)% reduced Freeze Duration on you", statOrder = { 1755 }, level = 75, group = "ReducedFreezeDuration", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ReducedFreezeDurationEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (42-44)% reduced Freeze Duration on you", statOrder = { 1755 }, level = 75, group = "ReducedFreezeDurationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ReducedFreezeDurationEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (45-47)% reduced Freeze Duration on you", statOrder = { 1755 }, level = 75, group = "ReducedFreezeDurationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ReducedFreezeDurationEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (48-50)% reduced Freeze Duration on you", statOrder = { 1755 }, level = 75, group = "ReducedFreezeDurationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ReducedFreezeDurationEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (51-53)% reduced Freeze Duration on you", statOrder = { 1755 }, level = 75, group = "ReducedFreezeDurationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ReducedFreezeDurationEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (54-57)% reduced Freeze Duration on you", statOrder = { 1755 }, level = 75, group = "ReducedFreezeDurationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ReducedFreezeDurationEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (58-61)% reduced Freeze Duration on you", statOrder = { 1755 }, level = 75, group = "ReducedFreezeDurationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ReducedFreezeDurationEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% reduced Freeze Duration on you", statOrder = { 1755 }, level = 75, group = "ReducedFreezeDurationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ReducedFreezeDurationEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% reduced Freeze Duration on you", statOrder = { 1755 }, level = 75, group = "ReducedFreezeDurationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ReducedFreezeDurationEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% reduced Freeze Duration on you", statOrder = { 1755 }, level = 75, group = "ReducedFreezeDurationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ReducedFreezeDurationEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% reduced Freeze Duration on you", statOrder = { 1755 }, level = 75, group = "ReducedFreezeDurationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ReducedFreezeDurationEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% reduced Freeze Duration on you", statOrder = { 1755 }, level = 75, group = "ReducedFreezeDurationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ReducedFreezeDurationEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% reduced Freeze Duration on you", statOrder = { 1755 }, level = 75, group = "ReducedFreezeDurationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ReducedShockEffectOnSelfEldritchImplicit1"] = { type = "Eater", affix = "", "(33-35)% reduced Effect of Shock on you", statOrder = { 9507 }, level = 75, group = "ReducedShockEffectOnSelf", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ReducedShockEffectOnSelfEldritchImplicit2"] = { type = "Eater", affix = "", "(36-38)% reduced Effect of Shock on you", statOrder = { 9507 }, level = 75, group = "ReducedShockEffectOnSelf", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ReducedShockEffectOnSelfEldritchImplicit3"] = { type = "Eater", affix = "", "(39-41)% reduced Effect of Shock on you", statOrder = { 9507 }, level = 75, group = "ReducedShockEffectOnSelf", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ReducedShockEffectOnSelfEldritchImplicit4"] = { type = "Eater", affix = "", "(42-44)% reduced Effect of Shock on you", statOrder = { 9507 }, level = 75, group = "ReducedShockEffectOnSelf", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ReducedShockEffectOnSelfEldritchImplicit5"] = { type = "Eater", affix = "", "(45-47)% reduced Effect of Shock on you", statOrder = { 9507 }, level = 75, group = "ReducedShockEffectOnSelf", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ReducedShockEffectOnSelfEldritchImplicit6"] = { type = "Eater", affix = "", "(48-50)% reduced Effect of Shock on you", statOrder = { 9507 }, level = 75, group = "ReducedShockEffectOnSelf", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ReducedShockEffectOnSelfEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (42-44)% reduced Effect of Shock on you", statOrder = { 9507 }, level = 75, group = "ReducedShockEffectOnSelfUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ReducedShockEffectOnSelfEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (45-47)% reduced Effect of Shock on you", statOrder = { 9507 }, level = 75, group = "ReducedShockEffectOnSelfUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ReducedShockEffectOnSelfEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (48-50)% reduced Effect of Shock on you", statOrder = { 9507 }, level = 75, group = "ReducedShockEffectOnSelfUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ReducedShockEffectOnSelfEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (51-53)% reduced Effect of Shock on you", statOrder = { 9507 }, level = 75, group = "ReducedShockEffectOnSelfUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ReducedShockEffectOnSelfEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (54-57)% reduced Effect of Shock on you", statOrder = { 9507 }, level = 75, group = "ReducedShockEffectOnSelfUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ReducedShockEffectOnSelfEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (58-61)% reduced Effect of Shock on you", statOrder = { 9507 }, level = 75, group = "ReducedShockEffectOnSelfUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ReducedShockEffectOnSelfEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% reduced Effect of Shock on you", statOrder = { 9507 }, level = 75, group = "ReducedShockEffectOnSelfPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ReducedShockEffectOnSelfEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% reduced Effect of Shock on you", statOrder = { 9507 }, level = 75, group = "ReducedShockEffectOnSelfPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ReducedShockEffectOnSelfEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% reduced Effect of Shock on you", statOrder = { 9507 }, level = 75, group = "ReducedShockEffectOnSelfPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ReducedShockEffectOnSelfEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% reduced Effect of Shock on you", statOrder = { 9507 }, level = 75, group = "ReducedShockEffectOnSelfPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ReducedShockEffectOnSelfEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% reduced Effect of Shock on you", statOrder = { 9507 }, level = 75, group = "ReducedShockEffectOnSelfPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ReducedShockEffectOnSelfEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% reduced Effect of Shock on you", statOrder = { 9507 }, level = 75, group = "ReducedShockEffectOnSelfPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ManaRegenerationEldritchImplicit1"] = { type = "Eater", affix = "", "(19-21)% increased Mana Regeneration Rate", statOrder = { 1466 }, level = 75, group = "ManaRegeneration", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["ManaRegenerationEldritchImplicit2"] = { type = "Eater", affix = "", "(22-24)% increased Mana Regeneration Rate", statOrder = { 1466 }, level = 75, group = "ManaRegeneration", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["ManaRegenerationEldritchImplicit3"] = { type = "Eater", affix = "", "(25-27)% increased Mana Regeneration Rate", statOrder = { 1466 }, level = 75, group = "ManaRegeneration", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["ManaRegenerationEldritchImplicit4"] = { type = "Eater", affix = "", "(28-30)% increased Mana Regeneration Rate", statOrder = { 1466 }, level = 75, group = "ManaRegeneration", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["ManaRegenerationEldritchImplicit5"] = { type = "Eater", affix = "", "(31-33)% increased Mana Regeneration Rate", statOrder = { 1466 }, level = 75, group = "ManaRegeneration", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["ManaRegenerationEldritchImplicit6"] = { type = "Eater", affix = "", "(34-36)% increased Mana Regeneration Rate", statOrder = { 1466 }, level = 75, group = "ManaRegeneration", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["ManaRegenerationEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (31-33)% increased Mana Regeneration Rate", statOrder = { 1466 }, level = 75, group = "ManaRegenerationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana" }, }, - ["ManaRegenerationEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (34-36)% increased Mana Regeneration Rate", statOrder = { 1466 }, level = 75, group = "ManaRegenerationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, }, - ["ManaRegenerationEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (37-39)% increased Mana Regeneration Rate", statOrder = { 1466 }, level = 75, group = "ManaRegenerationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, }, - ["ManaRegenerationEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (40-42)% increased Mana Regeneration Rate", statOrder = { 1466 }, level = 75, group = "ManaRegenerationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, }, - ["ManaRegenerationEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Mana Regeneration Rate", statOrder = { 1466 }, level = 75, group = "ManaRegenerationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, }, - ["ManaRegenerationEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Mana Regeneration Rate", statOrder = { 1466 }, level = 75, group = "ManaRegenerationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, }, - ["ManaRegenerationEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (43-45)% increased Mana Regeneration Rate", statOrder = { 1466 }, level = 75, group = "ManaRegenerationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana" }, }, - ["ManaRegenerationEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (46-48)% increased Mana Regeneration Rate", statOrder = { 1466 }, level = 75, group = "ManaRegenerationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana" }, }, - ["ManaRegenerationEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (49-51)% increased Mana Regeneration Rate", statOrder = { 1466 }, level = 75, group = "ManaRegenerationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "mana" }, }, - ["ManaRegenerationEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (52-54)% increased Mana Regeneration Rate", statOrder = { 1466 }, level = 75, group = "ManaRegenerationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "mana" }, }, - ["ManaRegenerationEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Mana Regeneration Rate", statOrder = { 1466 }, level = 75, group = "ManaRegenerationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "mana" }, }, - ["ManaRegenerationEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Mana Regeneration Rate", statOrder = { 1466 }, level = 75, group = "ManaRegenerationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "mana" }, }, - ["EnemyLifeRegenerationRateEldritchImplicit1"] = { type = "Eater", affix = "", "Enemies you've Hit Recently have (65-67)% reduced Life Regeneration rate", statOrder = { 6102 }, level = 75, group = "EnemyLifeRegenerationRate", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["EnemyLifeRegenerationRateEldritchImplicit2"] = { type = "Eater", affix = "", "Enemies you've Hit Recently have (68-70)% reduced Life Regeneration rate", statOrder = { 6102 }, level = 75, group = "EnemyLifeRegenerationRate", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["EnemyLifeRegenerationRateEldritchImplicit3"] = { type = "Eater", affix = "", "Enemies you've Hit Recently have (71-73)% reduced Life Regeneration rate", statOrder = { 6102 }, level = 75, group = "EnemyLifeRegenerationRate", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["EnemyLifeRegenerationRateEldritchImplicit4"] = { type = "Eater", affix = "", "Enemies you've Hit Recently have (74-76)% reduced Life Regeneration rate", statOrder = { 6102 }, level = 75, group = "EnemyLifeRegenerationRate", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["EnemyLifeRegenerationRateEldritchImplicit5"] = { type = "Eater", affix = "", "Enemies you've Hit Recently have (77-79)% reduced Life Regeneration rate", statOrder = { 6102 }, level = 75, group = "EnemyLifeRegenerationRate", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["EnemyLifeRegenerationRateEldritchImplicit6"] = { type = "Eater", affix = "", "Enemies you've Hit Recently have (80-82)% reduced Life Regeneration rate", statOrder = { 6102 }, level = 75, group = "EnemyLifeRegenerationRate", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["EnemyLifeRegenerationRateEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enemies you've Hit Recently have (74-76)% reduced Life Regeneration rate", statOrder = { 6102 }, level = 75, group = "EnemyLifeRegenerationRateUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, }, - ["EnemyLifeRegenerationRateEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enemies you've Hit Recently have (77-79)% reduced Life Regeneration rate", statOrder = { 6102 }, level = 75, group = "EnemyLifeRegenerationRateUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, }, - ["EnemyLifeRegenerationRateEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enemies you've Hit Recently have (80-82)% reduced Life Regeneration rate", statOrder = { 6102 }, level = 75, group = "EnemyLifeRegenerationRateUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, }, - ["EnemyLifeRegenerationRateEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enemies you've Hit Recently have (83-85)% reduced Life Regeneration rate", statOrder = { 6102 }, level = 75, group = "EnemyLifeRegenerationRateUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, }, - ["EnemyLifeRegenerationRateEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enemies you've Hit Recently have (86-88)% reduced Life Regeneration rate", statOrder = { 6102 }, level = 75, group = "EnemyLifeRegenerationRateUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, }, - ["EnemyLifeRegenerationRateEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enemies you've Hit Recently have (89-91)% reduced Life Regeneration rate", statOrder = { 6102 }, level = 75, group = "EnemyLifeRegenerationRateUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, }, - ["EnemyLifeRegenerationRateEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enemies you've Hit Recently have (83-85)% reduced Life Regeneration rate", statOrder = { 6102 }, level = 75, group = "EnemyLifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, }, - ["EnemyLifeRegenerationRateEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enemies you've Hit Recently have (86-88)% reduced Life Regeneration rate", statOrder = { 6102 }, level = 75, group = "EnemyLifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, }, - ["EnemyLifeRegenerationRateEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enemies you've Hit Recently have (89-91)% reduced Life Regeneration rate", statOrder = { 6102 }, level = 75, group = "EnemyLifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, }, - ["EnemyLifeRegenerationRateEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enemies you've Hit Recently have (92-94)% reduced Life Regeneration rate", statOrder = { 6102 }, level = 75, group = "EnemyLifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, }, - ["EnemyLifeRegenerationRateEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enemies you've Hit Recently have (95-97)% reduced Life Regeneration rate", statOrder = { 6102 }, level = 75, group = "EnemyLifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, }, - ["EnemyLifeRegenerationRateEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enemies you've Hit Recently have (98-100)% reduced Life Regeneration rate", statOrder = { 6102 }, level = 75, group = "EnemyLifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, }, - ["IncreasedManaRegenerationPerPowerChargeEldritchImplicit1"] = { type = "Eater", affix = "", "5% increased Mana Regeneration Rate per Power Charge", statOrder = { 1856 }, level = 75, group = "IncreasedManaRegenerationPerPowerCharge", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaRegenerationPerPowerChargeEldritchImplicit2"] = { type = "Eater", affix = "", "5% increased Mana Regeneration Rate per Power Charge", statOrder = { 1856 }, level = 75, group = "IncreasedManaRegenerationPerPowerCharge", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaRegenerationPerPowerChargeEldritchImplicit3"] = { type = "Eater", affix = "", "5% increased Mana Regeneration Rate per Power Charge", statOrder = { 1856 }, level = 75, group = "IncreasedManaRegenerationPerPowerCharge", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaRegenerationPerPowerChargeEldritchImplicit4"] = { type = "Eater", affix = "", "5% increased Mana Regeneration Rate per Power Charge", statOrder = { 1856 }, level = 75, group = "IncreasedManaRegenerationPerPowerCharge", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaRegenerationPerPowerChargeEldritchImplicit5"] = { type = "Eater", affix = "", "6% increased Mana Regeneration Rate per Power Charge", statOrder = { 1856 }, level = 75, group = "IncreasedManaRegenerationPerPowerCharge", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaRegenerationPerPowerChargeEldritchImplicit6"] = { type = "Eater", affix = "", "6% increased Mana Regeneration Rate per Power Charge", statOrder = { 1856 }, level = 75, group = "IncreasedManaRegenerationPerPowerCharge", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 6% increased Mana Regeneration Rate per Power Charge", statOrder = { 1856 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 6% increased Mana Regeneration Rate per Power Charge", statOrder = { 1856 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 6% increased Mana Regeneration Rate per Power Charge", statOrder = { 1856 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 6% increased Mana Regeneration Rate per Power Charge", statOrder = { 1856 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 7% increased Mana Regeneration Rate per Power Charge", statOrder = { 1856 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 7% increased Mana Regeneration Rate per Power Charge", statOrder = { 1856 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Mana Regeneration Rate per Power Charge", statOrder = { 1856 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Mana Regeneration Rate per Power Charge", statOrder = { 1856 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Mana Regeneration Rate per Power Charge", statOrder = { 1856 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Mana Regeneration Rate per Power Charge", statOrder = { 1856 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Mana Regeneration Rate per Power Charge", statOrder = { 1856 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Mana Regeneration Rate per Power Charge", statOrder = { 1856 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "mana" }, }, - ["AttackDamageEldritchImplicit1"] = { type = "Eater", affix = "", "(14-16)% increased Attack Damage", statOrder = { 1083 }, level = 75, group = "AttackDamage", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "attack" }, }, - ["AttackDamageEldritchImplicit2"] = { type = "Eater", affix = "", "(17-19)% increased Attack Damage", statOrder = { 1083 }, level = 75, group = "AttackDamage", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "attack" }, }, - ["AttackDamageEldritchImplicit3"] = { type = "Eater", affix = "", "(20-22)% increased Attack Damage", statOrder = { 1083 }, level = 75, group = "AttackDamage", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "attack" }, }, - ["AttackDamageEldritchImplicit4"] = { type = "Eater", affix = "", "(23-25)% increased Attack Damage", statOrder = { 1083 }, level = 75, group = "AttackDamage", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "attack" }, }, - ["AttackDamageEldritchImplicit5"] = { type = "Eater", affix = "", "(26-27)% increased Attack Damage", statOrder = { 1083 }, level = 75, group = "AttackDamage", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "attack" }, }, - ["AttackDamageEldritchImplicit6"] = { type = "Eater", affix = "", "(28-29)% increased Attack Damage", statOrder = { 1083 }, level = 75, group = "AttackDamage", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "attack" }, }, - ["AttackDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (26-28)% increased Attack Damage", statOrder = { 1083 }, level = 75, group = "AttackDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack" }, }, - ["AttackDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (29-31)% increased Attack Damage", statOrder = { 1083 }, level = 75, group = "AttackDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "attack" }, }, - ["AttackDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (32-34)% increased Attack Damage", statOrder = { 1083 }, level = 75, group = "AttackDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "attack" }, }, - ["AttackDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (35-37)% increased Attack Damage", statOrder = { 1083 }, level = 75, group = "AttackDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "attack" }, }, - ["AttackDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (38-39)% increased Attack Damage", statOrder = { 1083 }, level = 75, group = "AttackDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "attack" }, }, - ["AttackDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (40-41)% increased Attack Damage", statOrder = { 1083 }, level = 75, group = "AttackDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "attack" }, }, - ["AttackDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (38-40)% increased Attack Damage", statOrder = { 1083 }, level = 75, group = "AttackDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack" }, }, - ["AttackDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (41-43)% increased Attack Damage", statOrder = { 1083 }, level = 75, group = "AttackDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack" }, }, - ["AttackDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (44-46)% increased Attack Damage", statOrder = { 1083 }, level = 75, group = "AttackDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "damage", "attack" }, }, - ["AttackDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (47-49)% increased Attack Damage", statOrder = { 1083 }, level = 75, group = "AttackDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "damage", "attack" }, }, - ["AttackDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (50-51)% increased Attack Damage", statOrder = { 1083 }, level = 75, group = "AttackDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "damage", "attack" }, }, - ["AttackDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (52-53)% increased Attack Damage", statOrder = { 1083 }, level = 75, group = "AttackDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "damage", "attack" }, }, - ["SpellDamageEldritchImplicit1"] = { type = "Eater", affix = "", "(14-16)% increased Spell Damage", statOrder = { 1108 }, level = 75, group = "SpellDamage", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamageEldritchImplicit2"] = { type = "Eater", affix = "", "(17-19)% increased Spell Damage", statOrder = { 1108 }, level = 75, group = "SpellDamage", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamageEldritchImplicit3"] = { type = "Eater", affix = "", "(20-22)% increased Spell Damage", statOrder = { 1108 }, level = 75, group = "SpellDamage", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamageEldritchImplicit4"] = { type = "Eater", affix = "", "(23-25)% increased Spell Damage", statOrder = { 1108 }, level = 75, group = "SpellDamage", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamageEldritchImplicit5"] = { type = "Eater", affix = "", "(26-27)% increased Spell Damage", statOrder = { 1108 }, level = 75, group = "SpellDamage", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamageEldritchImplicit6"] = { type = "Eater", affix = "", "(28-29)% increased Spell Damage", statOrder = { 1108 }, level = 75, group = "SpellDamage", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (26-28)% increased Spell Damage", statOrder = { 1108 }, level = 75, group = "SpellDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (29-31)% increased Spell Damage", statOrder = { 1108 }, level = 75, group = "SpellDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (32-34)% increased Spell Damage", statOrder = { 1108 }, level = 75, group = "SpellDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (35-37)% increased Spell Damage", statOrder = { 1108 }, level = 75, group = "SpellDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (38-39)% increased Spell Damage", statOrder = { 1108 }, level = 75, group = "SpellDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (40-41)% increased Spell Damage", statOrder = { 1108 }, level = 75, group = "SpellDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (38-40)% increased Spell Damage", statOrder = { 1108 }, level = 75, group = "SpellDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (41-43)% increased Spell Damage", statOrder = { 1108 }, level = 75, group = "SpellDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (44-46)% increased Spell Damage", statOrder = { 1108 }, level = 75, group = "SpellDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (47-49)% increased Spell Damage", statOrder = { 1108 }, level = 75, group = "SpellDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (50-51)% increased Spell Damage", statOrder = { 1108 }, level = 75, group = "SpellDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (52-53)% increased Spell Damage", statOrder = { 1108 }, level = 75, group = "SpellDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["ArcaneSurgeEffectEldritchImplicit1"] = { type = "Eater", affix = "", "(6-7)% increased Effect of Arcane Surge on you", statOrder = { 3154 }, level = 75, group = "ArcaneSurgeEffect", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["ArcaneSurgeEffectEldritchImplicit2"] = { type = "Eater", affix = "", "(8-9)% increased Effect of Arcane Surge on you", statOrder = { 3154 }, level = 75, group = "ArcaneSurgeEffect", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["ArcaneSurgeEffectEldritchImplicit3"] = { type = "Eater", affix = "", "(10-11)% increased Effect of Arcane Surge on you", statOrder = { 3154 }, level = 75, group = "ArcaneSurgeEffect", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["ArcaneSurgeEffectEldritchImplicit4"] = { type = "Eater", affix = "", "(12-13)% increased Effect of Arcane Surge on you", statOrder = { 3154 }, level = 75, group = "ArcaneSurgeEffect", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["ArcaneSurgeEffectEldritchImplicit5"] = { type = "Eater", affix = "", "(14-15)% increased Effect of Arcane Surge on you", statOrder = { 3154 }, level = 75, group = "ArcaneSurgeEffect", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["ArcaneSurgeEffectEldritchImplicit6"] = { type = "Eater", affix = "", "(16-17)% increased Effect of Arcane Surge on you", statOrder = { 3154 }, level = 75, group = "ArcaneSurgeEffect", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["ArcaneSurgeEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (12-13)% increased Effect of Arcane Surge on you", statOrder = { 3154 }, level = 75, group = "ArcaneSurgeEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["ArcaneSurgeEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (14-15)% increased Effect of Arcane Surge on you", statOrder = { 3154 }, level = 75, group = "ArcaneSurgeEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["ArcaneSurgeEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (16-17)% increased Effect of Arcane Surge on you", statOrder = { 3154 }, level = 75, group = "ArcaneSurgeEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["ArcaneSurgeEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (18-19)% increased Effect of Arcane Surge on you", statOrder = { 3154 }, level = 75, group = "ArcaneSurgeEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["ArcaneSurgeEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (20-21)% increased Effect of Arcane Surge on you", statOrder = { 3154 }, level = 75, group = "ArcaneSurgeEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["ArcaneSurgeEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (22-23)% increased Effect of Arcane Surge on you", statOrder = { 3154 }, level = 75, group = "ArcaneSurgeEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["ArcaneSurgeEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (18-19)% increased Effect of Arcane Surge on you", statOrder = { 3154 }, level = 75, group = "ArcaneSurgeEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["ArcaneSurgeEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% increased Effect of Arcane Surge on you", statOrder = { 3154 }, level = 75, group = "ArcaneSurgeEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["ArcaneSurgeEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% increased Effect of Arcane Surge on you", statOrder = { 3154 }, level = 75, group = "ArcaneSurgeEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["ArcaneSurgeEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% increased Effect of Arcane Surge on you", statOrder = { 3154 }, level = 75, group = "ArcaneSurgeEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["ArcaneSurgeEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% increased Effect of Arcane Surge on you", statOrder = { 3154 }, level = 75, group = "ArcaneSurgeEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["ArcaneSurgeEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% increased Effect of Arcane Surge on you", statOrder = { 3154 }, level = 75, group = "ArcaneSurgeEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["MovementVelocityEldritchImplicit1"] = { type = "Exarch", affix = "", "5% increased Movement Speed", statOrder = { 1679 }, level = 75, group = "MovementVelocity", weightKey = { "no_tier_6_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "speed" }, }, - ["MovementVelocityEldritchImplicit2"] = { type = "Exarch", affix = "", "6% increased Movement Speed", statOrder = { 1679 }, level = 75, group = "MovementVelocity", weightKey = { "no_tier_5_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "speed" }, }, - ["MovementVelocityEldritchImplicit3"] = { type = "Exarch", affix = "", "7% increased Movement Speed", statOrder = { 1679 }, level = 75, group = "MovementVelocity", weightKey = { "no_tier_4_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "speed" }, }, - ["MovementVelocityEldritchImplicit4"] = { type = "Exarch", affix = "", "8% increased Movement Speed", statOrder = { 1679 }, level = 75, group = "MovementVelocity", weightKey = { "no_tier_3_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "speed" }, }, - ["MovementVelocityEldritchImplicit5"] = { type = "Exarch", affix = "", "9% increased Movement Speed", statOrder = { 1679 }, level = 75, group = "MovementVelocity", weightKey = { "no_tier_2_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "speed" }, }, - ["MovementVelocityEldritchImplicit6"] = { type = "Exarch", affix = "", "10% increased Movement Speed", statOrder = { 1679 }, level = 75, group = "MovementVelocity", weightKey = { "no_tier_1_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "speed" }, }, - ["MovementVelocityEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 8% increased Movement Speed", statOrder = { 1679 }, level = 75, group = "MovementVelocityUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "speed" }, }, - ["MovementVelocityEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 9% increased Movement Speed", statOrder = { 1679 }, level = 75, group = "MovementVelocityUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "speed" }, }, - ["MovementVelocityEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 10% increased Movement Speed", statOrder = { 1679 }, level = 75, group = "MovementVelocityUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "speed" }, }, - ["MovementVelocityEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 11% increased Movement Speed", statOrder = { 1679 }, level = 75, group = "MovementVelocityUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "speed" }, }, - ["MovementVelocityEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 12% increased Movement Speed", statOrder = { 1679 }, level = 75, group = "MovementVelocityUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "speed" }, }, - ["MovementVelocityEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 13% increased Movement Speed", statOrder = { 1679 }, level = 75, group = "MovementVelocityUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "speed" }, }, - ["MovementVelocityEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% increased Movement Speed", statOrder = { 1679 }, level = 75, group = "MovementVelocityPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "speed" }, }, - ["MovementVelocityEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% increased Movement Speed", statOrder = { 1679 }, level = 75, group = "MovementVelocityPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "speed" }, }, - ["MovementVelocityEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% increased Movement Speed", statOrder = { 1679 }, level = 75, group = "MovementVelocityPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "speed" }, }, - ["MovementVelocityEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% increased Movement Speed", statOrder = { 1679 }, level = 75, group = "MovementVelocityPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "speed" }, }, - ["MovementVelocityEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 15% increased Movement Speed", statOrder = { 1679 }, level = 75, group = "MovementVelocityPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "speed" }, }, - ["MovementVelocityEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Movement Speed", statOrder = { 1679 }, level = 75, group = "MovementVelocityPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "speed" }, }, - ["ActionSpeedImplicitEldritchImplicit1"] = { type = "Exarch", affix = "", "4% increased Action Speed", statOrder = { 4383 }, level = 75, group = "ActionSpeedImplicit", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["ActionSpeedImplicitEldritchImplicit2"] = { type = "Exarch", affix = "", "4% increased Action Speed", statOrder = { 4383 }, level = 75, group = "ActionSpeedImplicit", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["ActionSpeedImplicitEldritchImplicit3"] = { type = "Exarch", affix = "", "5% increased Action Speed", statOrder = { 4383 }, level = 75, group = "ActionSpeedImplicit", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["ActionSpeedImplicitEldritchImplicit4"] = { type = "Exarch", affix = "", "5% increased Action Speed", statOrder = { 4383 }, level = 75, group = "ActionSpeedImplicit", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["ActionSpeedImplicitEldritchImplicit5"] = { type = "Exarch", affix = "", "6% increased Action Speed", statOrder = { 4383 }, level = 75, group = "ActionSpeedImplicit", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["ActionSpeedImplicitEldritchImplicit6"] = { type = "Exarch", affix = "", "6% increased Action Speed", statOrder = { 4383 }, level = 75, group = "ActionSpeedImplicit", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["ActionSpeedImplicitEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 5% increased Action Speed", statOrder = { 4383 }, level = 75, group = "ActionSpeedImplicitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, }, - ["ActionSpeedImplicitEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 5% increased Action Speed", statOrder = { 4383 }, level = 75, group = "ActionSpeedImplicitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { "speed" }, }, - ["ActionSpeedImplicitEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 6% increased Action Speed", statOrder = { 4383 }, level = 75, group = "ActionSpeedImplicitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { "speed" }, }, - ["ActionSpeedImplicitEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 6% increased Action Speed", statOrder = { 4383 }, level = 75, group = "ActionSpeedImplicitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { "speed" }, }, - ["ActionSpeedImplicitEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 7% increased Action Speed", statOrder = { 4383 }, level = 75, group = "ActionSpeedImplicitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { "speed" }, }, - ["ActionSpeedImplicitEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 7% increased Action Speed", statOrder = { 4383 }, level = 75, group = "ActionSpeedImplicitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { "speed" }, }, - ["ActionSpeedImplicitEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Action Speed", statOrder = { 4383 }, level = 75, group = "ActionSpeedImplicitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, }, - ["ActionSpeedImplicitEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Action Speed", statOrder = { 4383 }, level = 75, group = "ActionSpeedImplicitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, }, - ["ActionSpeedImplicitEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Action Speed", statOrder = { 4383 }, level = 75, group = "ActionSpeedImplicitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { "speed" }, }, - ["ActionSpeedImplicitEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Action Speed", statOrder = { 4383 }, level = 75, group = "ActionSpeedImplicitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { "speed" }, }, - ["ActionSpeedImplicitEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Action Speed", statOrder = { 4383 }, level = 75, group = "ActionSpeedImplicitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { "speed" }, }, - ["ActionSpeedImplicitEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Action Speed", statOrder = { 4383 }, level = 75, group = "ActionSpeedImplicitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { "speed" }, }, - ["ScorchedGroundWhileMovingEldritchImplicit1"] = { type = "Exarch", affix = "", "Drops Scorched Ground while moving, lasting 2 seconds", statOrder = { 5072 }, level = 75, group = "ScorchedGroundMovingImplicit", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["ScorchedGroundWhileMovingEldritchImplicit2"] = { type = "Exarch", affix = "", "Drops Scorched Ground while moving, lasting 3 seconds", statOrder = { 5072 }, level = 75, group = "ScorchedGroundMovingImplicit", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["ScorchedGroundWhileMovingEldritchImplicit3"] = { type = "Exarch", affix = "", "Drops Scorched Ground while moving, lasting 4 seconds", statOrder = { 5072 }, level = 75, group = "ScorchedGroundMovingImplicit", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["ScorchedGroundWhileMovingEldritchImplicit4"] = { type = "Exarch", affix = "", "Drops Scorched Ground while moving, lasting 5 seconds", statOrder = { 5072 }, level = 75, group = "ScorchedGroundMovingImplicit", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["ScorchedGroundWhileMovingEldritchImplicit5"] = { type = "Exarch", affix = "", "Drops Scorched Ground while moving, lasting 6 seconds", statOrder = { 5072 }, level = 75, group = "ScorchedGroundMovingImplicit", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["ScorchedGroundWhileMovingEldritchImplicit6"] = { type = "Exarch", affix = "", "Drops Scorched Ground while moving, lasting 7 seconds", statOrder = { 5072 }, level = 75, group = "ScorchedGroundMovingImplicit", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["ScorchedGroundWhileMovingEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Scorched Ground while moving, lasting 4 seconds", statOrder = { 5072 }, level = 75, group = "ScorchedGroundWhileMovingUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["ScorchedGroundWhileMovingEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Scorched Ground while moving, lasting 5 seconds", statOrder = { 5072 }, level = 75, group = "ScorchedGroundWhileMovingUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["ScorchedGroundWhileMovingEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Scorched Ground while moving, lasting 6 seconds", statOrder = { 5072 }, level = 75, group = "ScorchedGroundWhileMovingUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["ScorchedGroundWhileMovingEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Scorched Ground while moving, lasting 7 seconds", statOrder = { 5072 }, level = 75, group = "ScorchedGroundWhileMovingUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["ScorchedGroundWhileMovingEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Scorched Ground while moving, lasting 8 seconds", statOrder = { 5072 }, level = 75, group = "ScorchedGroundWhileMovingUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["ScorchedGroundWhileMovingEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Scorched Ground while moving, lasting 9 seconds", statOrder = { 5072 }, level = 75, group = "ScorchedGroundWhileMovingUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["ScorchedGroundWhileMovingEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Scorched Ground while moving, lasting 6 seconds", statOrder = { 5072 }, level = 75, group = "ScorchedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["ScorchedGroundWhileMovingEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Scorched Ground while moving, lasting 7 seconds", statOrder = { 5072 }, level = 75, group = "ScorchedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["ScorchedGroundWhileMovingEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Scorched Ground while moving, lasting 8 seconds", statOrder = { 5072 }, level = 75, group = "ScorchedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, }, - ["ScorchedGroundWhileMovingEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Scorched Ground while moving, lasting 9 seconds", statOrder = { 5072 }, level = 75, group = "ScorchedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, }, - ["ScorchedGroundWhileMovingEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Scorched Ground while moving, lasting 10 seconds", statOrder = { 5072 }, level = 75, group = "ScorchedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, }, - ["ScorchedGroundWhileMovingEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Scorched Ground while moving, lasting 11 seconds", statOrder = { 5072 }, level = 75, group = "ScorchedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, }, - ["BrittleGroundWhileMovingEldritchImplicit1"] = { type = "Exarch", affix = "", "Drops Brittle Ground while moving, lasting 2 seconds", statOrder = { 5070 }, level = 75, group = "BrittleGroundMovingImplicit", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["BrittleGroundWhileMovingEldritchImplicit2"] = { type = "Exarch", affix = "", "Drops Brittle Ground while moving, lasting 3 seconds", statOrder = { 5070 }, level = 75, group = "BrittleGroundMovingImplicit", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["BrittleGroundWhileMovingEldritchImplicit3"] = { type = "Exarch", affix = "", "Drops Brittle Ground while moving, lasting 4 seconds", statOrder = { 5070 }, level = 75, group = "BrittleGroundMovingImplicit", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["BrittleGroundWhileMovingEldritchImplicit4"] = { type = "Exarch", affix = "", "Drops Brittle Ground while moving, lasting 5 seconds", statOrder = { 5070 }, level = 75, group = "BrittleGroundMovingImplicit", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["BrittleGroundWhileMovingEldritchImplicit5"] = { type = "Exarch", affix = "", "Drops Brittle Ground while moving, lasting 6 seconds", statOrder = { 5070 }, level = 75, group = "BrittleGroundMovingImplicit", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["BrittleGroundWhileMovingEldritchImplicit6"] = { type = "Exarch", affix = "", "Drops Brittle Ground while moving, lasting 7 seconds", statOrder = { 5070 }, level = 75, group = "BrittleGroundMovingImplicit", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["BrittleGroundWhileMovingEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Brittle Ground while moving, lasting 4 seconds", statOrder = { 5070 }, level = 75, group = "BrittleGroundWhileMovingUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["BrittleGroundWhileMovingEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Brittle Ground while moving, lasting 5 seconds", statOrder = { 5070 }, level = 75, group = "BrittleGroundWhileMovingUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["BrittleGroundWhileMovingEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Brittle Ground while moving, lasting 6 seconds", statOrder = { 5070 }, level = 75, group = "BrittleGroundWhileMovingUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["BrittleGroundWhileMovingEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Brittle Ground while moving, lasting 7 seconds", statOrder = { 5070 }, level = 75, group = "BrittleGroundWhileMovingUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["BrittleGroundWhileMovingEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Brittle Ground while moving, lasting 8 seconds", statOrder = { 5070 }, level = 75, group = "BrittleGroundWhileMovingUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["BrittleGroundWhileMovingEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Brittle Ground while moving, lasting 9 seconds", statOrder = { 5070 }, level = 75, group = "BrittleGroundWhileMovingUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["BrittleGroundWhileMovingEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Brittle Ground while moving, lasting 6 seconds", statOrder = { 5070 }, level = 75, group = "BrittleGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["BrittleGroundWhileMovingEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Brittle Ground while moving, lasting 7 seconds", statOrder = { 5070 }, level = 75, group = "BrittleGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["BrittleGroundWhileMovingEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Brittle Ground while moving, lasting 8 seconds", statOrder = { 5070 }, level = 75, group = "BrittleGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, }, - ["BrittleGroundWhileMovingEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Brittle Ground while moving, lasting 9 seconds", statOrder = { 5070 }, level = 75, group = "BrittleGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, }, - ["BrittleGroundWhileMovingEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Brittle Ground while moving, lasting 10 seconds", statOrder = { 5070 }, level = 75, group = "BrittleGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, }, - ["BrittleGroundWhileMovingEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Brittle Ground while moving, lasting 11 seconds", statOrder = { 5070 }, level = 75, group = "BrittleGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, }, - ["SappedGroundWhileMovingEldritchImplicit1"] = { type = "Exarch", affix = "", "Drops Sapped Ground while moving, lasting 2 seconds", statOrder = { 5071 }, level = 75, group = "SappedGroundMovingImplicit", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["SappedGroundWhileMovingEldritchImplicit2"] = { type = "Exarch", affix = "", "Drops Sapped Ground while moving, lasting 3 seconds", statOrder = { 5071 }, level = 75, group = "SappedGroundMovingImplicit", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["SappedGroundWhileMovingEldritchImplicit3"] = { type = "Exarch", affix = "", "Drops Sapped Ground while moving, lasting 4 seconds", statOrder = { 5071 }, level = 75, group = "SappedGroundMovingImplicit", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["SappedGroundWhileMovingEldritchImplicit4"] = { type = "Exarch", affix = "", "Drops Sapped Ground while moving, lasting 5 seconds", statOrder = { 5071 }, level = 75, group = "SappedGroundMovingImplicit", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["SappedGroundWhileMovingEldritchImplicit5"] = { type = "Exarch", affix = "", "Drops Sapped Ground while moving, lasting 6 seconds", statOrder = { 5071 }, level = 75, group = "SappedGroundMovingImplicit", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["SappedGroundWhileMovingEldritchImplicit6"] = { type = "Exarch", affix = "", "Drops Sapped Ground while moving, lasting 7 seconds", statOrder = { 5071 }, level = 75, group = "SappedGroundMovingImplicit", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["SappedGroundWhileMovingEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Sapped Ground while moving, lasting 4 seconds", statOrder = { 5071 }, level = 75, group = "SappedGroundWhileMovingUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["SappedGroundWhileMovingEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Sapped Ground while moving, lasting 5 seconds", statOrder = { 5071 }, level = 75, group = "SappedGroundWhileMovingUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["SappedGroundWhileMovingEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Sapped Ground while moving, lasting 6 seconds", statOrder = { 5071 }, level = 75, group = "SappedGroundWhileMovingUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["SappedGroundWhileMovingEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Sapped Ground while moving, lasting 7 seconds", statOrder = { 5071 }, level = 75, group = "SappedGroundWhileMovingUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["SappedGroundWhileMovingEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Sapped Ground while moving, lasting 8 seconds", statOrder = { 5071 }, level = 75, group = "SappedGroundWhileMovingUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["SappedGroundWhileMovingEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Sapped Ground while moving, lasting 9 seconds", statOrder = { 5071 }, level = 75, group = "SappedGroundWhileMovingUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["SappedGroundWhileMovingEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Sapped Ground while moving, lasting 6 seconds", statOrder = { 5071 }, level = 75, group = "SappedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["SappedGroundWhileMovingEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Sapped Ground while moving, lasting 7 seconds", statOrder = { 5071 }, level = 75, group = "SappedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["SappedGroundWhileMovingEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Sapped Ground while moving, lasting 8 seconds", statOrder = { 5071 }, level = 75, group = "SappedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, }, - ["SappedGroundWhileMovingEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Sapped Ground while moving, lasting 9 seconds", statOrder = { 5071 }, level = 75, group = "SappedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, }, - ["SappedGroundWhileMovingEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Sapped Ground while moving, lasting 10 seconds", statOrder = { 5071 }, level = 75, group = "SappedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, }, - ["SappedGroundWhileMovingEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Sapped Ground while moving, lasting 11 seconds", statOrder = { 5071 }, level = 75, group = "SappedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, }, - ["FireResistanceEldritchImplicit1"] = { type = "Exarch", affix = "", "+(13-14)% to Fire Resistance", statOrder = { 1507 }, level = 75, group = "FireResistance", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["FireResistanceEldritchImplicit2"] = { type = "Exarch", affix = "", "+(15-16)% to Fire Resistance", statOrder = { 1507 }, level = 75, group = "FireResistance", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["FireResistanceEldritchImplicit3"] = { type = "Exarch", affix = "", "+(17-18)% to Fire Resistance", statOrder = { 1507 }, level = 75, group = "FireResistance", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["FireResistanceEldritchImplicit4"] = { type = "Exarch", affix = "", "+(19-20)% to Fire Resistance", statOrder = { 1507 }, level = 75, group = "FireResistance", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["FireResistanceEldritchImplicit5"] = { type = "Exarch", affix = "", "+(21-22)% to Fire Resistance", statOrder = { 1507 }, level = 75, group = "FireResistance", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["FireResistanceEldritchImplicit6"] = { type = "Exarch", affix = "", "+(23-24)% to Fire Resistance", statOrder = { 1507 }, level = 75, group = "FireResistance", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["FireResistanceEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(19-20)% to Fire Resistance", statOrder = { 1507 }, level = 75, group = "FireResistanceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["FireResistanceEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(21-22)% to Fire Resistance", statOrder = { 1507 }, level = 75, group = "FireResistanceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["FireResistanceEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(23-24)% to Fire Resistance", statOrder = { 1507 }, level = 75, group = "FireResistanceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["FireResistanceEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(25-26)% to Fire Resistance", statOrder = { 1507 }, level = 75, group = "FireResistanceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["FireResistanceEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(27-28)% to Fire Resistance", statOrder = { 1507 }, level = 75, group = "FireResistanceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["FireResistanceEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(29-30)% to Fire Resistance", statOrder = { 1507 }, level = 75, group = "FireResistanceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["FireResistanceEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(25-26)% to Fire Resistance", statOrder = { 1507 }, level = 75, group = "FireResistancePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["FireResistanceEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(27-28)% to Fire Resistance", statOrder = { 1507 }, level = 75, group = "FireResistancePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["FireResistanceEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(29-30)% to Fire Resistance", statOrder = { 1507 }, level = 75, group = "FireResistancePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["FireResistanceEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(31-32)% to Fire Resistance", statOrder = { 1507 }, level = 75, group = "FireResistancePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["FireResistanceEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(33-34)% to Fire Resistance", statOrder = { 1507 }, level = 75, group = "FireResistancePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["FireResistanceEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(35-36)% to Fire Resistance", statOrder = { 1507 }, level = 75, group = "FireResistancePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["ColdResistanceEldritchImplicit1"] = { type = "Exarch", affix = "", "+(13-14)% to Cold Resistance", statOrder = { 1513 }, level = 75, group = "ColdResistance", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["ColdResistanceEldritchImplicit2"] = { type = "Exarch", affix = "", "+(15-16)% to Cold Resistance", statOrder = { 1513 }, level = 75, group = "ColdResistance", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["ColdResistanceEldritchImplicit3"] = { type = "Exarch", affix = "", "+(17-18)% to Cold Resistance", statOrder = { 1513 }, level = 75, group = "ColdResistance", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["ColdResistanceEldritchImplicit4"] = { type = "Exarch", affix = "", "+(19-20)% to Cold Resistance", statOrder = { 1513 }, level = 75, group = "ColdResistance", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["ColdResistanceEldritchImplicit5"] = { type = "Exarch", affix = "", "+(21-22)% to Cold Resistance", statOrder = { 1513 }, level = 75, group = "ColdResistance", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["ColdResistanceEldritchImplicit6"] = { type = "Exarch", affix = "", "+(23-24)% to Cold Resistance", statOrder = { 1513 }, level = 75, group = "ColdResistance", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["ColdResistanceEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(19-20)% to Cold Resistance", statOrder = { 1513 }, level = 75, group = "ColdResistanceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["ColdResistanceEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(21-22)% to Cold Resistance", statOrder = { 1513 }, level = 75, group = "ColdResistanceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["ColdResistanceEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(23-24)% to Cold Resistance", statOrder = { 1513 }, level = 75, group = "ColdResistanceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["ColdResistanceEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(25-26)% to Cold Resistance", statOrder = { 1513 }, level = 75, group = "ColdResistanceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["ColdResistanceEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(27-28)% to Cold Resistance", statOrder = { 1513 }, level = 75, group = "ColdResistanceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["ColdResistanceEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(29-30)% to Cold Resistance", statOrder = { 1513 }, level = 75, group = "ColdResistanceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["ColdResistanceEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(25-26)% to Cold Resistance", statOrder = { 1513 }, level = 75, group = "ColdResistancePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["ColdResistanceEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(27-28)% to Cold Resistance", statOrder = { 1513 }, level = 75, group = "ColdResistancePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["ColdResistanceEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(29-30)% to Cold Resistance", statOrder = { 1513 }, level = 75, group = "ColdResistancePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["ColdResistanceEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(31-32)% to Cold Resistance", statOrder = { 1513 }, level = 75, group = "ColdResistancePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["ColdResistanceEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(33-34)% to Cold Resistance", statOrder = { 1513 }, level = 75, group = "ColdResistancePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["ColdResistanceEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(35-36)% to Cold Resistance", statOrder = { 1513 }, level = 75, group = "ColdResistancePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["LightningResistanceEldritchImplicit1"] = { type = "Exarch", affix = "", "+(13-14)% to Lightning Resistance", statOrder = { 1518 }, level = 75, group = "LightningResistance", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["LightningResistanceEldritchImplicit2"] = { type = "Exarch", affix = "", "+(15-16)% to Lightning Resistance", statOrder = { 1518 }, level = 75, group = "LightningResistance", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["LightningResistanceEldritchImplicit3"] = { type = "Exarch", affix = "", "+(17-18)% to Lightning Resistance", statOrder = { 1518 }, level = 75, group = "LightningResistance", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["LightningResistanceEldritchImplicit4"] = { type = "Exarch", affix = "", "+(19-20)% to Lightning Resistance", statOrder = { 1518 }, level = 75, group = "LightningResistance", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["LightningResistanceEldritchImplicit5"] = { type = "Exarch", affix = "", "+(21-22)% to Lightning Resistance", statOrder = { 1518 }, level = 75, group = "LightningResistance", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["LightningResistanceEldritchImplicit6"] = { type = "Exarch", affix = "", "+(23-24)% to Lightning Resistance", statOrder = { 1518 }, level = 75, group = "LightningResistance", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["LightningResistanceEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(19-20)% to Lightning Resistance", statOrder = { 1518 }, level = 75, group = "LightningResistanceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["LightningResistanceEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(21-22)% to Lightning Resistance", statOrder = { 1518 }, level = 75, group = "LightningResistanceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["LightningResistanceEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(23-24)% to Lightning Resistance", statOrder = { 1518 }, level = 75, group = "LightningResistanceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["LightningResistanceEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(25-26)% to Lightning Resistance", statOrder = { 1518 }, level = 75, group = "LightningResistanceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["LightningResistanceEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(27-28)% to Lightning Resistance", statOrder = { 1518 }, level = 75, group = "LightningResistanceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["LightningResistanceEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(29-30)% to Lightning Resistance", statOrder = { 1518 }, level = 75, group = "LightningResistanceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["LightningResistanceEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(25-26)% to Lightning Resistance", statOrder = { 1518 }, level = 75, group = "LightningResistancePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["LightningResistanceEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(27-28)% to Lightning Resistance", statOrder = { 1518 }, level = 75, group = "LightningResistancePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["LightningResistanceEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(29-30)% to Lightning Resistance", statOrder = { 1518 }, level = 75, group = "LightningResistancePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["LightningResistanceEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(31-32)% to Lightning Resistance", statOrder = { 1518 }, level = 75, group = "LightningResistancePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["LightningResistanceEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(33-34)% to Lightning Resistance", statOrder = { 1518 }, level = 75, group = "LightningResistancePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["LightningResistanceEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(35-36)% to Lightning Resistance", statOrder = { 1518 }, level = 75, group = "LightningResistancePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["ChaosResistanceEldritchImplicit1"] = { type = "Exarch", affix = "", "+(6-7)% to Chaos Resistance", statOrder = { 1522 }, level = 75, group = "ChaosResistance", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "chaos", "resistance" }, }, - ["ChaosResistanceEldritchImplicit2"] = { type = "Exarch", affix = "", "+(8-9)% to Chaos Resistance", statOrder = { 1522 }, level = 75, group = "ChaosResistance", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "chaos", "resistance" }, }, - ["ChaosResistanceEldritchImplicit3"] = { type = "Exarch", affix = "", "+(10-11)% to Chaos Resistance", statOrder = { 1522 }, level = 75, group = "ChaosResistance", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "chaos", "resistance" }, }, - ["ChaosResistanceEldritchImplicit4"] = { type = "Exarch", affix = "", "+(12-13)% to Chaos Resistance", statOrder = { 1522 }, level = 75, group = "ChaosResistance", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "chaos", "resistance" }, }, - ["ChaosResistanceEldritchImplicit5"] = { type = "Exarch", affix = "", "+(14-15)% to Chaos Resistance", statOrder = { 1522 }, level = 75, group = "ChaosResistance", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "chaos", "resistance" }, }, - ["ChaosResistanceEldritchImplicit6"] = { type = "Exarch", affix = "", "+(16-17)% to Chaos Resistance", statOrder = { 1522 }, level = 75, group = "ChaosResistance", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "chaos", "resistance" }, }, - ["ChaosResistanceEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(12-13)% to Chaos Resistance", statOrder = { 1522 }, level = 75, group = "ChaosResistanceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos", "resistance" }, }, - ["ChaosResistanceEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(14-15)% to Chaos Resistance", statOrder = { 1522 }, level = 75, group = "ChaosResistanceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos", "resistance" }, }, - ["ChaosResistanceEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(16-17)% to Chaos Resistance", statOrder = { 1522 }, level = 75, group = "ChaosResistanceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos", "resistance" }, }, - ["ChaosResistanceEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(18-19)% to Chaos Resistance", statOrder = { 1522 }, level = 75, group = "ChaosResistanceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos", "resistance" }, }, - ["ChaosResistanceEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(20-21)% to Chaos Resistance", statOrder = { 1522 }, level = 75, group = "ChaosResistanceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos", "resistance" }, }, - ["ChaosResistanceEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(22-23)% to Chaos Resistance", statOrder = { 1522 }, level = 75, group = "ChaosResistanceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos", "resistance" }, }, - ["ChaosResistanceEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(18-19)% to Chaos Resistance", statOrder = { 1522 }, level = 75, group = "ChaosResistancePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos", "resistance" }, }, - ["ChaosResistanceEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(20-21)% to Chaos Resistance", statOrder = { 1522 }, level = 75, group = "ChaosResistancePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos", "resistance" }, }, - ["ChaosResistanceEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(22-23)% to Chaos Resistance", statOrder = { 1522 }, level = 75, group = "ChaosResistancePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "chaos", "resistance" }, }, - ["ChaosResistanceEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(24-25)% to Chaos Resistance", statOrder = { 1522 }, level = 75, group = "ChaosResistancePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "chaos", "resistance" }, }, - ["ChaosResistanceEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(26-27)% to Chaos Resistance", statOrder = { 1522 }, level = 75, group = "ChaosResistancePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "chaos", "resistance" }, }, - ["ChaosResistanceEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(28-29)% to Chaos Resistance", statOrder = { 1522 }, level = 75, group = "ChaosResistancePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "chaos", "resistance" }, }, - ["DamagePerEnduranceChargeEldritchImplicit1"] = { type = "Exarch", affix = "", "4% increased Damage per Endurance Charge", statOrder = { 3065 }, level = 75, group = "DamagePerEnduranceCharge", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, }, - ["DamagePerEnduranceChargeEldritchImplicit2"] = { type = "Exarch", affix = "", "4% increased Damage per Endurance Charge", statOrder = { 3065 }, level = 75, group = "DamagePerEnduranceCharge", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, }, - ["DamagePerEnduranceChargeEldritchImplicit3"] = { type = "Exarch", affix = "", "5% increased Damage per Endurance Charge", statOrder = { 3065 }, level = 75, group = "DamagePerEnduranceCharge", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, }, - ["DamagePerEnduranceChargeEldritchImplicit4"] = { type = "Exarch", affix = "", "5% increased Damage per Endurance Charge", statOrder = { 3065 }, level = 75, group = "DamagePerEnduranceCharge", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, }, - ["DamagePerEnduranceChargeEldritchImplicit5"] = { type = "Exarch", affix = "", "6% increased Damage per Endurance Charge", statOrder = { 3065 }, level = 75, group = "DamagePerEnduranceCharge", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, }, - ["DamagePerEnduranceChargeEldritchImplicit6"] = { type = "Exarch", affix = "", "6% increased Damage per Endurance Charge", statOrder = { 3065 }, level = 75, group = "DamagePerEnduranceCharge", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, }, - ["DamagePerEnduranceChargeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per Endurance Charge", statOrder = { 3065 }, level = 75, group = "DamagePerEnduranceChargeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, }, - ["DamagePerEnduranceChargeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per Endurance Charge", statOrder = { 3065 }, level = 75, group = "DamagePerEnduranceChargeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, }, - ["DamagePerEnduranceChargeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 6% increased Damage per Endurance Charge", statOrder = { 3065 }, level = 75, group = "DamagePerEnduranceChargeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, }, - ["DamagePerEnduranceChargeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 6% increased Damage per Endurance Charge", statOrder = { 3065 }, level = 75, group = "DamagePerEnduranceChargeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, }, - ["DamagePerEnduranceChargeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 7% increased Damage per Endurance Charge", statOrder = { 3065 }, level = 75, group = "DamagePerEnduranceChargeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, }, - ["DamagePerEnduranceChargeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 7% increased Damage per Endurance Charge", statOrder = { 3065 }, level = 75, group = "DamagePerEnduranceChargeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, }, - ["DamagePerEnduranceChargeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per Endurance Charge", statOrder = { 3065 }, level = 75, group = "DamagePerEnduranceChargePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, }, - ["DamagePerEnduranceChargeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per Endurance Charge", statOrder = { 3065 }, level = 75, group = "DamagePerEnduranceChargePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, }, - ["DamagePerEnduranceChargeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Damage per Endurance Charge", statOrder = { 3065 }, level = 75, group = "DamagePerEnduranceChargePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, - ["DamagePerEnduranceChargeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Damage per Endurance Charge", statOrder = { 3065 }, level = 75, group = "DamagePerEnduranceChargePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, - ["DamagePerEnduranceChargeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Damage per Endurance Charge", statOrder = { 3065 }, level = 75, group = "DamagePerEnduranceChargePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, - ["DamagePerEnduranceChargeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Damage per Endurance Charge", statOrder = { 3065 }, level = 75, group = "DamagePerEnduranceChargePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, - ["MaximumFireResistanceImplicitEldritchImplicit1"] = { type = "Exarch", affix = "", "+1% to maximum Fire Resistance", statOrder = { 1505 }, level = 75, group = "MaximumFireResistanceImplicit", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["MaximumFireResistanceImplicitEldritchImplicit2"] = { type = "Exarch", affix = "", "+1% to maximum Fire Resistance", statOrder = { 1505 }, level = 75, group = "MaximumFireResistanceImplicit", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["MaximumFireResistanceImplicitEldritchImplicit3"] = { type = "Exarch", affix = "", "+1% to maximum Fire Resistance", statOrder = { 1505 }, level = 75, group = "MaximumFireResistanceImplicit", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["MaximumFireResistanceImplicitEldritchImplicit4"] = { type = "Exarch", affix = "", "+1% to maximum Fire Resistance", statOrder = { 1505 }, level = 75, group = "MaximumFireResistanceImplicit", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["MaximumFireResistanceImplicitEldritchImplicit5"] = { type = "Exarch", affix = "", "+2% to maximum Fire Resistance", statOrder = { 1505 }, level = 75, group = "MaximumFireResistanceImplicit", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["MaximumFireResistanceImplicitEldritchImplicit6"] = { type = "Exarch", affix = "", "+2% to maximum Fire Resistance", statOrder = { 1505 }, level = 75, group = "MaximumFireResistanceImplicit", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["MaximumFireResistanceImplicitEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Fire Resistance", statOrder = { 1505 }, level = 75, group = "MaximumFireResistanceImplicitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["MaximumFireResistanceImplicitEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Fire Resistance", statOrder = { 1505 }, level = 75, group = "MaximumFireResistanceImplicitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["MaximumFireResistanceImplicitEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Fire Resistance", statOrder = { 1505 }, level = 75, group = "MaximumFireResistanceImplicitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["MaximumFireResistanceImplicitEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Fire Resistance", statOrder = { 1505 }, level = 75, group = "MaximumFireResistanceImplicitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["MaximumFireResistanceImplicitEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1505 }, level = 75, group = "MaximumFireResistanceImplicitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["MaximumFireResistanceImplicitEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1505 }, level = 75, group = "MaximumFireResistanceImplicitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["MaximumFireResistanceImplicitEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1505 }, level = 75, group = "MaximumFireResistanceImplicitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["MaximumFireResistanceImplicitEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1505 }, level = 75, group = "MaximumFireResistanceImplicitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["MaximumFireResistanceImplicitEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1505 }, level = 75, group = "MaximumFireResistanceImplicitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["MaximumFireResistanceImplicitEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1505 }, level = 75, group = "MaximumFireResistanceImplicitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["MaximumFireResistanceImplicitEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Fire Resistance", statOrder = { 1505 }, level = 75, group = "MaximumFireResistanceImplicitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["MaximumFireResistanceImplicitEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Fire Resistance", statOrder = { 1505 }, level = 75, group = "MaximumFireResistanceImplicitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["SummonTotemCastSpeedEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Totem Placement speed", statOrder = { 2454 }, level = 75, group = "SummonTotemCastSpeed", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, - ["SummonTotemCastSpeedEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Totem Placement speed", statOrder = { 2454 }, level = 75, group = "SummonTotemCastSpeed", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, - ["SummonTotemCastSpeedEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Totem Placement speed", statOrder = { 2454 }, level = 75, group = "SummonTotemCastSpeed", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, - ["SummonTotemCastSpeedEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Totem Placement speed", statOrder = { 2454 }, level = 75, group = "SummonTotemCastSpeed", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, - ["SummonTotemCastSpeedEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Totem Placement speed", statOrder = { 2454 }, level = 75, group = "SummonTotemCastSpeed", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, - ["SummonTotemCastSpeedEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Totem Placement speed", statOrder = { 2454 }, level = 75, group = "SummonTotemCastSpeed", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, - ["SummonTotemCastSpeedEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Totem Placement speed", statOrder = { 2454 }, level = 75, group = "SummonTotemCastSpeedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, }, - ["SummonTotemCastSpeedEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Totem Placement speed", statOrder = { 2454 }, level = 75, group = "SummonTotemCastSpeedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, }, - ["SummonTotemCastSpeedEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Totem Placement speed", statOrder = { 2454 }, level = 75, group = "SummonTotemCastSpeedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, }, - ["SummonTotemCastSpeedEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Totem Placement speed", statOrder = { 2454 }, level = 75, group = "SummonTotemCastSpeedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, }, - ["SummonTotemCastSpeedEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Totem Placement speed", statOrder = { 2454 }, level = 75, group = "SummonTotemCastSpeedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, }, - ["SummonTotemCastSpeedEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Totem Placement speed", statOrder = { 2454 }, level = 75, group = "SummonTotemCastSpeedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, }, - ["SummonTotemCastSpeedEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Totem Placement speed", statOrder = { 2454 }, level = 75, group = "SummonTotemCastSpeedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, }, - ["SummonTotemCastSpeedEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Totem Placement speed", statOrder = { 2454 }, level = 75, group = "SummonTotemCastSpeedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, }, - ["SummonTotemCastSpeedEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Totem Placement speed", statOrder = { 2454 }, level = 75, group = "SummonTotemCastSpeedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, }, - ["SummonTotemCastSpeedEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Totem Placement speed", statOrder = { 2454 }, level = 75, group = "SummonTotemCastSpeedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, }, - ["SummonTotemCastSpeedEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Totem Placement speed", statOrder = { 2454 }, level = 75, group = "SummonTotemCastSpeedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, }, - ["SummonTotemCastSpeedEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Totem Placement speed", statOrder = { 2454 }, level = 75, group = "SummonTotemCastSpeedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, }, - ["BrandAttachmentRangeEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Brand Attachment range", statOrder = { 9531 }, level = 75, group = "BrandAttachmentRange", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "caster" }, }, - ["BrandAttachmentRangeEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Brand Attachment range", statOrder = { 9531 }, level = 75, group = "BrandAttachmentRange", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "caster" }, }, - ["BrandAttachmentRangeEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Brand Attachment range", statOrder = { 9531 }, level = 75, group = "BrandAttachmentRange", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "caster" }, }, - ["BrandAttachmentRangeEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Brand Attachment range", statOrder = { 9531 }, level = 75, group = "BrandAttachmentRange", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "caster" }, }, - ["BrandAttachmentRangeEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Brand Attachment range", statOrder = { 9531 }, level = 75, group = "BrandAttachmentRange", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "caster" }, }, - ["BrandAttachmentRangeEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Brand Attachment range", statOrder = { 9531 }, level = 75, group = "BrandAttachmentRange", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "caster" }, }, - ["BrandAttachmentRangeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Brand Attachment range", statOrder = { 9531 }, level = 75, group = "BrandAttachmentRangeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["BrandAttachmentRangeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Brand Attachment range", statOrder = { 9531 }, level = 75, group = "BrandAttachmentRangeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, - ["BrandAttachmentRangeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Brand Attachment range", statOrder = { 9531 }, level = 75, group = "BrandAttachmentRangeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, - ["BrandAttachmentRangeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Brand Attachment range", statOrder = { 9531 }, level = 75, group = "BrandAttachmentRangeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, - ["BrandAttachmentRangeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Brand Attachment range", statOrder = { 9531 }, level = 75, group = "BrandAttachmentRangeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, - ["BrandAttachmentRangeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Brand Attachment range", statOrder = { 9531 }, level = 75, group = "BrandAttachmentRangeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, - ["BrandAttachmentRangeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Brand Attachment range", statOrder = { 9531 }, level = 75, group = "BrandAttachmentRangePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["BrandAttachmentRangeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Brand Attachment range", statOrder = { 9531 }, level = 75, group = "BrandAttachmentRangePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["BrandAttachmentRangeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Brand Attachment range", statOrder = { 9531 }, level = 75, group = "BrandAttachmentRangePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, - ["BrandAttachmentRangeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Brand Attachment range", statOrder = { 9531 }, level = 75, group = "BrandAttachmentRangePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, - ["BrandAttachmentRangeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Brand Attachment range", statOrder = { 9531 }, level = 75, group = "BrandAttachmentRangePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, - ["BrandAttachmentRangeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Brand Attachment range", statOrder = { 9531 }, level = 75, group = "BrandAttachmentRangePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, - ["FireGolemBuffEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(31-33)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 3959 }, level = 75, group = "FireGolemBuffEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["FireGolemBuffEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(34-36)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 3959 }, level = 75, group = "FireGolemBuffEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["FireGolemBuffEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(37-39)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 3959 }, level = 75, group = "FireGolemBuffEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["FireGolemBuffEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(40-42)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 3959 }, level = 75, group = "FireGolemBuffEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["FireGolemBuffEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(43-45)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 3959 }, level = 75, group = "FireGolemBuffEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["FireGolemBuffEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(46-48)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 3959 }, level = 75, group = "FireGolemBuffEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["FireGolemBuffEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 3959 }, level = 75, group = "FireGolemBuffEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["FireGolemBuffEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 3959 }, level = 75, group = "FireGolemBuffEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["FireGolemBuffEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (49-51)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 3959 }, level = 75, group = "FireGolemBuffEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["FireGolemBuffEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (52-54)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 3959 }, level = 75, group = "FireGolemBuffEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["FireGolemBuffEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (55-57)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 3959 }, level = 75, group = "FireGolemBuffEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["FireGolemBuffEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (58-60)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 3959 }, level = 75, group = "FireGolemBuffEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["FireGolemBuffEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 3959 }, level = 75, group = "FireGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["FireGolemBuffEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 3959 }, level = 75, group = "FireGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["FireGolemBuffEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (61-63)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 3959 }, level = 75, group = "FireGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["FireGolemBuffEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (64-66)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 3959 }, level = 75, group = "FireGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["FireGolemBuffEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-69)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 3959 }, level = 75, group = "FireGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["FireGolemBuffEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (70-72)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 3959 }, level = 75, group = "FireGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["IceGolemBuffEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(31-33)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 3960 }, level = 75, group = "IceGolemBuffEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["IceGolemBuffEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(34-36)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 3960 }, level = 75, group = "IceGolemBuffEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["IceGolemBuffEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(37-39)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 3960 }, level = 75, group = "IceGolemBuffEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["IceGolemBuffEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(40-42)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 3960 }, level = 75, group = "IceGolemBuffEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["IceGolemBuffEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(43-45)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 3960 }, level = 75, group = "IceGolemBuffEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["IceGolemBuffEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(46-48)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 3960 }, level = 75, group = "IceGolemBuffEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["IceGolemBuffEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 3960 }, level = 75, group = "IceGolemBuffEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["IceGolemBuffEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 3960 }, level = 75, group = "IceGolemBuffEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["IceGolemBuffEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (49-51)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 3960 }, level = 75, group = "IceGolemBuffEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["IceGolemBuffEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (52-54)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 3960 }, level = 75, group = "IceGolemBuffEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["IceGolemBuffEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (55-57)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 3960 }, level = 75, group = "IceGolemBuffEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["IceGolemBuffEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (58-60)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 3960 }, level = 75, group = "IceGolemBuffEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["IceGolemBuffEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 3960 }, level = 75, group = "IceGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["IceGolemBuffEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 3960 }, level = 75, group = "IceGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["IceGolemBuffEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (61-63)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 3960 }, level = 75, group = "IceGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["IceGolemBuffEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (64-66)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 3960 }, level = 75, group = "IceGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["IceGolemBuffEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-69)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 3960 }, level = 75, group = "IceGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["IceGolemBuffEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (70-72)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 3960 }, level = 75, group = "IceGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["LightningGolemBuffEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(31-33)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 3961 }, level = 75, group = "LightningGolemBuffEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["LightningGolemBuffEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(34-36)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 3961 }, level = 75, group = "LightningGolemBuffEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["LightningGolemBuffEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(37-39)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 3961 }, level = 75, group = "LightningGolemBuffEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["LightningGolemBuffEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(40-42)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 3961 }, level = 75, group = "LightningGolemBuffEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["LightningGolemBuffEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(43-45)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 3961 }, level = 75, group = "LightningGolemBuffEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["LightningGolemBuffEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(46-48)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 3961 }, level = 75, group = "LightningGolemBuffEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["LightningGolemBuffEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 3961 }, level = 75, group = "LightningGolemBuffEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["LightningGolemBuffEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 3961 }, level = 75, group = "LightningGolemBuffEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["LightningGolemBuffEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (49-51)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 3961 }, level = 75, group = "LightningGolemBuffEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["LightningGolemBuffEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (52-54)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 3961 }, level = 75, group = "LightningGolemBuffEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["LightningGolemBuffEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (55-57)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 3961 }, level = 75, group = "LightningGolemBuffEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["LightningGolemBuffEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (58-60)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 3961 }, level = 75, group = "LightningGolemBuffEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["LightningGolemBuffEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 3961 }, level = 75, group = "LightningGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["LightningGolemBuffEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 3961 }, level = 75, group = "LightningGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["LightningGolemBuffEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (61-63)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 3961 }, level = 75, group = "LightningGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["LightningGolemBuffEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (64-66)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 3961 }, level = 75, group = "LightningGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["LightningGolemBuffEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-69)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 3961 }, level = 75, group = "LightningGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["LightningGolemBuffEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (70-72)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 3961 }, level = 75, group = "LightningGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["RockGolemBuffEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(31-33)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 3958 }, level = 75, group = "RockGolemBuffEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["RockGolemBuffEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(34-36)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 3958 }, level = 75, group = "RockGolemBuffEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["RockGolemBuffEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(37-39)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 3958 }, level = 75, group = "RockGolemBuffEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["RockGolemBuffEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(40-42)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 3958 }, level = 75, group = "RockGolemBuffEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["RockGolemBuffEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(43-45)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 3958 }, level = 75, group = "RockGolemBuffEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["RockGolemBuffEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(46-48)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 3958 }, level = 75, group = "RockGolemBuffEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["RockGolemBuffEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 3958 }, level = 75, group = "RockGolemBuffEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["RockGolemBuffEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 3958 }, level = 75, group = "RockGolemBuffEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["RockGolemBuffEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (49-51)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 3958 }, level = 75, group = "RockGolemBuffEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["RockGolemBuffEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (52-54)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 3958 }, level = 75, group = "RockGolemBuffEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["RockGolemBuffEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (55-57)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 3958 }, level = 75, group = "RockGolemBuffEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["RockGolemBuffEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (58-60)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 3958 }, level = 75, group = "RockGolemBuffEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["RockGolemBuffEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 3958 }, level = 75, group = "RockGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["RockGolemBuffEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 3958 }, level = 75, group = "RockGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["RockGolemBuffEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (61-63)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 3958 }, level = 75, group = "RockGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["RockGolemBuffEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (64-66)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 3958 }, level = 75, group = "RockGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["RockGolemBuffEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-69)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 3958 }, level = 75, group = "RockGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["RockGolemBuffEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (70-72)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 3958 }, level = 75, group = "RockGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["ChaosGolemBuffEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(31-33)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 3962 }, level = 75, group = "ChaosGolemBuffEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["ChaosGolemBuffEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(34-36)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 3962 }, level = 75, group = "ChaosGolemBuffEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["ChaosGolemBuffEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(37-39)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 3962 }, level = 75, group = "ChaosGolemBuffEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["ChaosGolemBuffEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(40-42)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 3962 }, level = 75, group = "ChaosGolemBuffEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["ChaosGolemBuffEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(43-45)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 3962 }, level = 75, group = "ChaosGolemBuffEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["ChaosGolemBuffEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(46-48)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 3962 }, level = 75, group = "ChaosGolemBuffEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["ChaosGolemBuffEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 3962 }, level = 75, group = "ChaosGolemBuffEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["ChaosGolemBuffEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 3962 }, level = 75, group = "ChaosGolemBuffEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["ChaosGolemBuffEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (49-51)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 3962 }, level = 75, group = "ChaosGolemBuffEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["ChaosGolemBuffEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (52-54)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 3962 }, level = 75, group = "ChaosGolemBuffEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["ChaosGolemBuffEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (55-57)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 3962 }, level = 75, group = "ChaosGolemBuffEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["ChaosGolemBuffEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (58-60)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 3962 }, level = 75, group = "ChaosGolemBuffEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["ChaosGolemBuffEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 3962 }, level = 75, group = "ChaosGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["ChaosGolemBuffEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 3962 }, level = 75, group = "ChaosGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["ChaosGolemBuffEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (61-63)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 3962 }, level = 75, group = "ChaosGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["ChaosGolemBuffEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (64-66)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 3962 }, level = 75, group = "ChaosGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["ChaosGolemBuffEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-69)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 3962 }, level = 75, group = "ChaosGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["ChaosGolemBuffEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (70-72)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 3962 }, level = 75, group = "ChaosGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["CarrionGolemBuffEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(31-33)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4814 }, level = 75, group = "CarrionGolemBuffEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["CarrionGolemBuffEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(34-36)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4814 }, level = 75, group = "CarrionGolemBuffEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["CarrionGolemBuffEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(37-39)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4814 }, level = 75, group = "CarrionGolemBuffEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["CarrionGolemBuffEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(40-42)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4814 }, level = 75, group = "CarrionGolemBuffEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["CarrionGolemBuffEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(43-45)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4814 }, level = 75, group = "CarrionGolemBuffEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["CarrionGolemBuffEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(46-48)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4814 }, level = 75, group = "CarrionGolemBuffEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["CarrionGolemBuffEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4814 }, level = 75, group = "CarrionGolemBuffEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["CarrionGolemBuffEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4814 }, level = 75, group = "CarrionGolemBuffEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["CarrionGolemBuffEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (49-51)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4814 }, level = 75, group = "CarrionGolemBuffEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["CarrionGolemBuffEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (52-54)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4814 }, level = 75, group = "CarrionGolemBuffEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["CarrionGolemBuffEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (55-57)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4814 }, level = 75, group = "CarrionGolemBuffEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["CarrionGolemBuffEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (58-60)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4814 }, level = 75, group = "CarrionGolemBuffEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["CarrionGolemBuffEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4814 }, level = 75, group = "CarrionGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["CarrionGolemBuffEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4814 }, level = 75, group = "CarrionGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["CarrionGolemBuffEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (61-63)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4814 }, level = 75, group = "CarrionGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["CarrionGolemBuffEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (64-66)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4814 }, level = 75, group = "CarrionGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["CarrionGolemBuffEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-69)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4814 }, level = 75, group = "CarrionGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["CarrionGolemBuffEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (70-72)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4814 }, level = 75, group = "CarrionGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["FleshOfferingEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Flesh Offering has (6-7)% increased Effect", statOrder = { 1058 }, level = 75, group = "FleshOfferingEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["FleshOfferingEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Flesh Offering has (8-9)% increased Effect", statOrder = { 1058 }, level = 75, group = "FleshOfferingEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["FleshOfferingEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Flesh Offering has (10-11)% increased Effect", statOrder = { 1058 }, level = 75, group = "FleshOfferingEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["FleshOfferingEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Flesh Offering has (12-13)% increased Effect", statOrder = { 1058 }, level = 75, group = "FleshOfferingEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["FleshOfferingEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Flesh Offering has (14-15)% increased Effect", statOrder = { 1058 }, level = 75, group = "FleshOfferingEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["FleshOfferingEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Flesh Offering has (16-17)% increased Effect", statOrder = { 1058 }, level = 75, group = "FleshOfferingEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["FleshOfferingEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh Offering has (12-13)% increased Effect", statOrder = { 1058 }, level = 75, group = "FleshOfferingEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["FleshOfferingEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh Offering has (14-15)% increased Effect", statOrder = { 1058 }, level = 75, group = "FleshOfferingEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["FleshOfferingEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh Offering has (16-17)% increased Effect", statOrder = { 1058 }, level = 75, group = "FleshOfferingEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["FleshOfferingEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh Offering has (18-19)% increased Effect", statOrder = { 1058 }, level = 75, group = "FleshOfferingEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["FleshOfferingEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh Offering has (20-21)% increased Effect", statOrder = { 1058 }, level = 75, group = "FleshOfferingEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["FleshOfferingEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh Offering has (22-23)% increased Effect", statOrder = { 1058 }, level = 75, group = "FleshOfferingEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["FleshOfferingEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh Offering has (18-19)% increased Effect", statOrder = { 1058 }, level = 75, group = "FleshOfferingEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["FleshOfferingEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh Offering has (20-21)% increased Effect", statOrder = { 1058 }, level = 75, group = "FleshOfferingEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["FleshOfferingEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh Offering has (22-23)% increased Effect", statOrder = { 1058 }, level = 75, group = "FleshOfferingEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["FleshOfferingEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh Offering has (24-25)% increased Effect", statOrder = { 1058 }, level = 75, group = "FleshOfferingEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["FleshOfferingEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh Offering has (26-27)% increased Effect", statOrder = { 1058 }, level = 75, group = "FleshOfferingEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["FleshOfferingEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh Offering has (28-29)% increased Effect", statOrder = { 1058 }, level = 75, group = "FleshOfferingEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["BoneOfferingEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Bone Offering has (6-7)% increased Effect", statOrder = { 1057 }, level = 75, group = "BoneOfferingEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["BoneOfferingEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Bone Offering has (8-9)% increased Effect", statOrder = { 1057 }, level = 75, group = "BoneOfferingEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["BoneOfferingEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Bone Offering has (10-11)% increased Effect", statOrder = { 1057 }, level = 75, group = "BoneOfferingEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["BoneOfferingEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Bone Offering has (12-13)% increased Effect", statOrder = { 1057 }, level = 75, group = "BoneOfferingEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["BoneOfferingEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Bone Offering has (14-15)% increased Effect", statOrder = { 1057 }, level = 75, group = "BoneOfferingEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["BoneOfferingEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Bone Offering has (16-17)% increased Effect", statOrder = { 1057 }, level = 75, group = "BoneOfferingEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["BoneOfferingEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Bone Offering has (12-13)% increased Effect", statOrder = { 1057 }, level = 75, group = "BoneOfferingEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["BoneOfferingEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Bone Offering has (14-15)% increased Effect", statOrder = { 1057 }, level = 75, group = "BoneOfferingEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["BoneOfferingEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Bone Offering has (16-17)% increased Effect", statOrder = { 1057 }, level = 75, group = "BoneOfferingEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["BoneOfferingEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Bone Offering has (18-19)% increased Effect", statOrder = { 1057 }, level = 75, group = "BoneOfferingEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["BoneOfferingEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Bone Offering has (20-21)% increased Effect", statOrder = { 1057 }, level = 75, group = "BoneOfferingEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["BoneOfferingEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Bone Offering has (22-23)% increased Effect", statOrder = { 1057 }, level = 75, group = "BoneOfferingEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["BoneOfferingEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bone Offering has (18-19)% increased Effect", statOrder = { 1057 }, level = 75, group = "BoneOfferingEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["BoneOfferingEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bone Offering has (20-21)% increased Effect", statOrder = { 1057 }, level = 75, group = "BoneOfferingEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["BoneOfferingEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bone Offering has (22-23)% increased Effect", statOrder = { 1057 }, level = 75, group = "BoneOfferingEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["BoneOfferingEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bone Offering has (24-25)% increased Effect", statOrder = { 1057 }, level = 75, group = "BoneOfferingEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["BoneOfferingEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bone Offering has (26-27)% increased Effect", statOrder = { 1057 }, level = 75, group = "BoneOfferingEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["BoneOfferingEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bone Offering has (28-29)% increased Effect", statOrder = { 1057 }, level = 75, group = "BoneOfferingEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["SpiritOfferingEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Spirit Offering has (6-7)% increased Effect", statOrder = { 1059 }, level = 75, group = "SpiritOfferingEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["SpiritOfferingEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Spirit Offering has (8-9)% increased Effect", statOrder = { 1059 }, level = 75, group = "SpiritOfferingEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["SpiritOfferingEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Spirit Offering has (10-11)% increased Effect", statOrder = { 1059 }, level = 75, group = "SpiritOfferingEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["SpiritOfferingEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Spirit Offering has (12-13)% increased Effect", statOrder = { 1059 }, level = 75, group = "SpiritOfferingEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["SpiritOfferingEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Spirit Offering has (14-15)% increased Effect", statOrder = { 1059 }, level = 75, group = "SpiritOfferingEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["SpiritOfferingEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Spirit Offering has (16-17)% increased Effect", statOrder = { 1059 }, level = 75, group = "SpiritOfferingEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["SpiritOfferingEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Spirit Offering has (12-13)% increased Effect", statOrder = { 1059 }, level = 75, group = "SpiritOfferingEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["SpiritOfferingEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Spirit Offering has (14-15)% increased Effect", statOrder = { 1059 }, level = 75, group = "SpiritOfferingEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["SpiritOfferingEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Spirit Offering has (16-17)% increased Effect", statOrder = { 1059 }, level = 75, group = "SpiritOfferingEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["SpiritOfferingEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Spirit Offering has (18-19)% increased Effect", statOrder = { 1059 }, level = 75, group = "SpiritOfferingEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["SpiritOfferingEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Spirit Offering has (20-21)% increased Effect", statOrder = { 1059 }, level = 75, group = "SpiritOfferingEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["SpiritOfferingEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Spirit Offering has (22-23)% increased Effect", statOrder = { 1059 }, level = 75, group = "SpiritOfferingEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["SpiritOfferingEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Spirit Offering has (18-19)% increased Effect", statOrder = { 1059 }, level = 75, group = "SpiritOfferingEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["SpiritOfferingEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Spirit Offering has (20-21)% increased Effect", statOrder = { 1059 }, level = 75, group = "SpiritOfferingEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["SpiritOfferingEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Spirit Offering has (22-23)% increased Effect", statOrder = { 1059 }, level = 75, group = "SpiritOfferingEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["SpiritOfferingEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Spirit Offering has (24-25)% increased Effect", statOrder = { 1059 }, level = 75, group = "SpiritOfferingEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["SpiritOfferingEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Spirit Offering has (26-27)% increased Effect", statOrder = { 1059 }, level = 75, group = "SpiritOfferingEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["SpiritOfferingEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Spirit Offering has (28-29)% increased Effect", statOrder = { 1059 }, level = 75, group = "SpiritOfferingEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["AvoidIgniteEldritchImplicit1"] = { type = "Exarch", affix = "", "(33-35)% chance to Avoid being Ignited", statOrder = { 1727 }, level = 75, group = "AvoidIgnite", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["AvoidIgniteEldritchImplicit2"] = { type = "Exarch", affix = "", "(36-38)% chance to Avoid being Ignited", statOrder = { 1727 }, level = 75, group = "AvoidIgnite", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["AvoidIgniteEldritchImplicit3"] = { type = "Exarch", affix = "", "(39-41)% chance to Avoid being Ignited", statOrder = { 1727 }, level = 75, group = "AvoidIgnite", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["AvoidIgniteEldritchImplicit4"] = { type = "Exarch", affix = "", "(42-44)% chance to Avoid being Ignited", statOrder = { 1727 }, level = 75, group = "AvoidIgnite", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["AvoidIgniteEldritchImplicit5"] = { type = "Exarch", affix = "", "(45-47)% chance to Avoid being Ignited", statOrder = { 1727 }, level = 75, group = "AvoidIgnite", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["AvoidIgniteEldritchImplicit6"] = { type = "Exarch", affix = "", "(48-50)% chance to Avoid being Ignited", statOrder = { 1727 }, level = 75, group = "AvoidIgnite", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["AvoidIgniteEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (42-44)% chance to Avoid being Ignited", statOrder = { 1727 }, level = 75, group = "AvoidIgniteUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["AvoidIgniteEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (45-47)% chance to Avoid being Ignited", statOrder = { 1727 }, level = 75, group = "AvoidIgniteUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["AvoidIgniteEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (48-50)% chance to Avoid being Ignited", statOrder = { 1727 }, level = 75, group = "AvoidIgniteUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["AvoidIgniteEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (51-53)% chance to Avoid being Ignited", statOrder = { 1727 }, level = 75, group = "AvoidIgniteUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["AvoidIgniteEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (54-57)% chance to Avoid being Ignited", statOrder = { 1727 }, level = 75, group = "AvoidIgniteUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["AvoidIgniteEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (58-61)% chance to Avoid being Ignited", statOrder = { 1727 }, level = 75, group = "AvoidIgniteUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["AvoidIgniteEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% chance to Avoid being Ignited", statOrder = { 1727 }, level = 75, group = "AvoidIgnitePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["AvoidIgniteEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% chance to Avoid being Ignited", statOrder = { 1727 }, level = 75, group = "AvoidIgnitePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["AvoidIgniteEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% chance to Avoid being Ignited", statOrder = { 1727 }, level = 75, group = "AvoidIgnitePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["AvoidIgniteEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% chance to Avoid being Ignited", statOrder = { 1727 }, level = 75, group = "AvoidIgnitePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["AvoidIgniteEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% chance to Avoid being Ignited", statOrder = { 1727 }, level = 75, group = "AvoidIgnitePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["AvoidIgniteEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% chance to Avoid being Ignited", statOrder = { 1727 }, level = 75, group = "AvoidIgnitePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["AvoidFreezeEldritchImplicit1"] = { type = "Exarch", affix = "", "(33-35)% chance to Avoid being Frozen", statOrder = { 1726 }, level = 75, group = "AvoidFreeze", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["AvoidFreezeEldritchImplicit2"] = { type = "Exarch", affix = "", "(36-38)% chance to Avoid being Frozen", statOrder = { 1726 }, level = 75, group = "AvoidFreeze", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["AvoidFreezeEldritchImplicit3"] = { type = "Exarch", affix = "", "(39-41)% chance to Avoid being Frozen", statOrder = { 1726 }, level = 75, group = "AvoidFreeze", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["AvoidFreezeEldritchImplicit4"] = { type = "Exarch", affix = "", "(42-44)% chance to Avoid being Frozen", statOrder = { 1726 }, level = 75, group = "AvoidFreeze", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["AvoidFreezeEldritchImplicit5"] = { type = "Exarch", affix = "", "(45-47)% chance to Avoid being Frozen", statOrder = { 1726 }, level = 75, group = "AvoidFreeze", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["AvoidFreezeEldritchImplicit6"] = { type = "Exarch", affix = "", "(48-50)% chance to Avoid being Frozen", statOrder = { 1726 }, level = 75, group = "AvoidFreeze", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["AvoidFreezeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (42-44)% chance to Avoid being Frozen", statOrder = { 1726 }, level = 75, group = "AvoidFreezeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["AvoidFreezeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (45-47)% chance to Avoid being Frozen", statOrder = { 1726 }, level = 75, group = "AvoidFreezeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["AvoidFreezeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (48-50)% chance to Avoid being Frozen", statOrder = { 1726 }, level = 75, group = "AvoidFreezeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["AvoidFreezeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (51-53)% chance to Avoid being Frozen", statOrder = { 1726 }, level = 75, group = "AvoidFreezeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["AvoidFreezeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (54-57)% chance to Avoid being Frozen", statOrder = { 1726 }, level = 75, group = "AvoidFreezeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["AvoidFreezeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (58-61)% chance to Avoid being Frozen", statOrder = { 1726 }, level = 75, group = "AvoidFreezeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["AvoidFreezeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% chance to Avoid being Frozen", statOrder = { 1726 }, level = 75, group = "AvoidFreezePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["AvoidFreezeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% chance to Avoid being Frozen", statOrder = { 1726 }, level = 75, group = "AvoidFreezePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["AvoidFreezeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% chance to Avoid being Frozen", statOrder = { 1726 }, level = 75, group = "AvoidFreezePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["AvoidFreezeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% chance to Avoid being Frozen", statOrder = { 1726 }, level = 75, group = "AvoidFreezePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["AvoidFreezeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% chance to Avoid being Frozen", statOrder = { 1726 }, level = 75, group = "AvoidFreezePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["AvoidFreezeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% chance to Avoid being Frozen", statOrder = { 1726 }, level = 75, group = "AvoidFreezePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["AvoidShockEldritchImplicit1"] = { type = "Exarch", affix = "", "(33-35)% chance to Avoid being Shocked", statOrder = { 1729 }, level = 75, group = "AvoidShock", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["AvoidShockEldritchImplicit2"] = { type = "Exarch", affix = "", "(36-38)% chance to Avoid being Shocked", statOrder = { 1729 }, level = 75, group = "AvoidShock", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["AvoidShockEldritchImplicit3"] = { type = "Exarch", affix = "", "(39-41)% chance to Avoid being Shocked", statOrder = { 1729 }, level = 75, group = "AvoidShock", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["AvoidShockEldritchImplicit4"] = { type = "Exarch", affix = "", "(42-44)% chance to Avoid being Shocked", statOrder = { 1729 }, level = 75, group = "AvoidShock", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["AvoidShockEldritchImplicit5"] = { type = "Exarch", affix = "", "(45-47)% chance to Avoid being Shocked", statOrder = { 1729 }, level = 75, group = "AvoidShock", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["AvoidShockEldritchImplicit6"] = { type = "Exarch", affix = "", "(48-50)% chance to Avoid being Shocked", statOrder = { 1729 }, level = 75, group = "AvoidShock", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["AvoidShockEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (42-44)% chance to Avoid being Shocked", statOrder = { 1729 }, level = 75, group = "AvoidShockUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["AvoidShockEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (45-47)% chance to Avoid being Shocked", statOrder = { 1729 }, level = 75, group = "AvoidShockUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["AvoidShockEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (48-50)% chance to Avoid being Shocked", statOrder = { 1729 }, level = 75, group = "AvoidShockUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["AvoidShockEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (51-53)% chance to Avoid being Shocked", statOrder = { 1729 }, level = 75, group = "AvoidShockUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["AvoidShockEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (54-57)% chance to Avoid being Shocked", statOrder = { 1729 }, level = 75, group = "AvoidShockUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["AvoidShockEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (58-61)% chance to Avoid being Shocked", statOrder = { 1729 }, level = 75, group = "AvoidShockUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["AvoidShockEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% chance to Avoid being Shocked", statOrder = { 1729 }, level = 75, group = "AvoidShockPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["AvoidShockEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% chance to Avoid being Shocked", statOrder = { 1729 }, level = 75, group = "AvoidShockPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["AvoidShockEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% chance to Avoid being Shocked", statOrder = { 1729 }, level = 75, group = "AvoidShockPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["AvoidShockEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% chance to Avoid being Shocked", statOrder = { 1729 }, level = 75, group = "AvoidShockPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["AvoidShockEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% chance to Avoid being Shocked", statOrder = { 1729 }, level = 75, group = "AvoidShockPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["AvoidShockEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% chance to Avoid being Shocked", statOrder = { 1729 }, level = 75, group = "AvoidShockPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["AvoidStunEldritchImplicit1"] = { type = "Exarch", affix = "", "(15-17)% chance to Avoid being Stunned", statOrder = { 1732 }, level = 75, group = "AvoidStun", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["AvoidStunEldritchImplicit2"] = { type = "Exarch", affix = "", "(18-20)% chance to Avoid being Stunned", statOrder = { 1732 }, level = 75, group = "AvoidStun", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["AvoidStunEldritchImplicit3"] = { type = "Exarch", affix = "", "(21-23)% chance to Avoid being Stunned", statOrder = { 1732 }, level = 75, group = "AvoidStun", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["AvoidStunEldritchImplicit4"] = { type = "Exarch", affix = "", "(24-26)% chance to Avoid being Stunned", statOrder = { 1732 }, level = 75, group = "AvoidStun", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["AvoidStunEldritchImplicit5"] = { type = "Exarch", affix = "", "(27-29)% chance to Avoid being Stunned", statOrder = { 1732 }, level = 75, group = "AvoidStun", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["AvoidStunEldritchImplicit6"] = { type = "Exarch", affix = "", "(30-32)% chance to Avoid being Stunned", statOrder = { 1732 }, level = 75, group = "AvoidStun", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["AvoidStunEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (24-26)% chance to Avoid being Stunned", statOrder = { 1732 }, level = 75, group = "AvoidStunUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["AvoidStunEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-29)% chance to Avoid being Stunned", statOrder = { 1732 }, level = 75, group = "AvoidStunUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["AvoidStunEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (30-32)% chance to Avoid being Stunned", statOrder = { 1732 }, level = 75, group = "AvoidStunUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["AvoidStunEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (33-35)% chance to Avoid being Stunned", statOrder = { 1732 }, level = 75, group = "AvoidStunUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["AvoidStunEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (36-38)% chance to Avoid being Stunned", statOrder = { 1732 }, level = 75, group = "AvoidStunUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["AvoidStunEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (39-41)% chance to Avoid being Stunned", statOrder = { 1732 }, level = 75, group = "AvoidStunUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["AvoidStunEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% chance to Avoid being Stunned", statOrder = { 1732 }, level = 75, group = "AvoidStunPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["AvoidStunEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% chance to Avoid being Stunned", statOrder = { 1732 }, level = 75, group = "AvoidStunPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["AvoidStunEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-41)% chance to Avoid being Stunned", statOrder = { 1732 }, level = 75, group = "AvoidStunPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["AvoidStunEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (42-44)% chance to Avoid being Stunned", statOrder = { 1732 }, level = 75, group = "AvoidStunPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["AvoidStunEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (45-47)% chance to Avoid being Stunned", statOrder = { 1732 }, level = 75, group = "AvoidStunPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["AvoidStunEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (48-50)% chance to Avoid being Stunned", statOrder = { 1732 }, level = 75, group = "AvoidStunPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["OnslaughtEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(6-7)% increased Effect of Onslaught on you", statOrder = { 3156 }, level = 75, group = "OnslaughtEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["OnslaughtEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(8-9)% increased Effect of Onslaught on you", statOrder = { 3156 }, level = 75, group = "OnslaughtEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["OnslaughtEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(10-11)% increased Effect of Onslaught on you", statOrder = { 3156 }, level = 75, group = "OnslaughtEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["OnslaughtEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(12-13)% increased Effect of Onslaught on you", statOrder = { 3156 }, level = 75, group = "OnslaughtEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["OnslaughtEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(14-15)% increased Effect of Onslaught on you", statOrder = { 3156 }, level = 75, group = "OnslaughtEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["OnslaughtEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(16-17)% increased Effect of Onslaught on you", statOrder = { 3156 }, level = 75, group = "OnslaughtEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["OnslaughtEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (12-13)% increased Effect of Onslaught on you", statOrder = { 3156 }, level = 75, group = "OnslaughtEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["OnslaughtEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (14-15)% increased Effect of Onslaught on you", statOrder = { 3156 }, level = 75, group = "OnslaughtEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["OnslaughtEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (16-17)% increased Effect of Onslaught on you", statOrder = { 3156 }, level = 75, group = "OnslaughtEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["OnslaughtEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (18-19)% increased Effect of Onslaught on you", statOrder = { 3156 }, level = 75, group = "OnslaughtEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["OnslaughtEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (20-21)% increased Effect of Onslaught on you", statOrder = { 3156 }, level = 75, group = "OnslaughtEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["OnslaughtEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (22-23)% increased Effect of Onslaught on you", statOrder = { 3156 }, level = 75, group = "OnslaughtEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["OnslaughtEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (18-19)% increased Effect of Onslaught on you", statOrder = { 3156 }, level = 75, group = "OnslaughtEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["OnslaughtEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% increased Effect of Onslaught on you", statOrder = { 3156 }, level = 75, group = "OnslaughtEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["OnslaughtEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% increased Effect of Onslaught on you", statOrder = { 3156 }, level = 75, group = "OnslaughtEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["OnslaughtEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% increased Effect of Onslaught on you", statOrder = { 3156 }, level = 75, group = "OnslaughtEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["OnslaughtEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% increased Effect of Onslaught on you", statOrder = { 3156 }, level = 75, group = "OnslaughtEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["OnslaughtEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% increased Effect of Onslaught on you", statOrder = { 3156 }, level = 75, group = "OnslaughtEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["LifeRegenerationRateEldritchImplicit1"] = { type = "Eater", affix = "", "7% increased Life Regeneration rate", statOrder = { 1459 }, level = 75, group = "LifeRegenerationRate", weightKey = { "no_tier_6_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "resource", "life" }, }, - ["LifeRegenerationRateEldritchImplicit2"] = { type = "Eater", affix = "", "8% increased Life Regeneration rate", statOrder = { 1459 }, level = 75, group = "LifeRegenerationRate", weightKey = { "no_tier_5_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "resource", "life" }, }, - ["LifeRegenerationRateEldritchImplicit3"] = { type = "Eater", affix = "", "9% increased Life Regeneration rate", statOrder = { 1459 }, level = 75, group = "LifeRegenerationRate", weightKey = { "no_tier_4_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "resource", "life" }, }, - ["LifeRegenerationRateEldritchImplicit4"] = { type = "Eater", affix = "", "10% increased Life Regeneration rate", statOrder = { 1459 }, level = 75, group = "LifeRegenerationRate", weightKey = { "no_tier_3_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "resource", "life" }, }, - ["LifeRegenerationRateEldritchImplicit5"] = { type = "Eater", affix = "", "11% increased Life Regeneration rate", statOrder = { 1459 }, level = 75, group = "LifeRegenerationRate", weightKey = { "no_tier_2_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "resource", "life" }, }, - ["LifeRegenerationRateEldritchImplicit6"] = { type = "Eater", affix = "", "12% increased Life Regeneration rate", statOrder = { 1459 }, level = 75, group = "LifeRegenerationRate", weightKey = { "no_tier_1_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "resource", "life" }, }, - ["LifeRegenerationRateEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% increased Life Regeneration rate", statOrder = { 1459 }, level = 75, group = "LifeRegenerationRateUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "life" }, }, - ["LifeRegenerationRateEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 11% increased Life Regeneration rate", statOrder = { 1459 }, level = 75, group = "LifeRegenerationRateUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "resource", "life" }, }, - ["LifeRegenerationRateEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 12% increased Life Regeneration rate", statOrder = { 1459 }, level = 75, group = "LifeRegenerationRateUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "resource", "life" }, }, - ["LifeRegenerationRateEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 13% increased Life Regeneration rate", statOrder = { 1459 }, level = 75, group = "LifeRegenerationRateUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "resource", "life" }, }, - ["LifeRegenerationRateEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% increased Life Regeneration rate", statOrder = { 1459 }, level = 75, group = "LifeRegenerationRateUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "resource", "life" }, }, - ["LifeRegenerationRateEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% increased Life Regeneration rate", statOrder = { 1459 }, level = 75, group = "LifeRegenerationRateUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "resource", "life" }, }, - ["LifeRegenerationRateEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% increased Life Regeneration rate", statOrder = { 1459 }, level = 75, group = "LifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "life" }, }, - ["LifeRegenerationRateEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% increased Life Regeneration rate", statOrder = { 1459 }, level = 75, group = "LifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "life" }, }, - ["LifeRegenerationRateEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 15% increased Life Regeneration rate", statOrder = { 1459 }, level = 75, group = "LifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resource", "life" }, }, - ["LifeRegenerationRateEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Life Regeneration rate", statOrder = { 1459 }, level = 75, group = "LifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resource", "life" }, }, - ["LifeRegenerationRateEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 17% increased Life Regeneration rate", statOrder = { 1459 }, level = 75, group = "LifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resource", "life" }, }, - ["LifeRegenerationRateEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Life Regeneration rate", statOrder = { 1459 }, level = 75, group = "LifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resource", "life" }, }, - ["ArmourFromHelmetGlovesEldritchImplicit1"] = { type = "Eater", affix = "", "(33-35)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4587 }, level = 75, group = "ArmourFromHelmetGloves", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["ArmourFromHelmetGlovesEldritchImplicit2"] = { type = "Eater", affix = "", "(36-38)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4587 }, level = 75, group = "ArmourFromHelmetGloves", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["ArmourFromHelmetGlovesEldritchImplicit3"] = { type = "Eater", affix = "", "(39-41)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4587 }, level = 75, group = "ArmourFromHelmetGloves", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["ArmourFromHelmetGlovesEldritchImplicit4"] = { type = "Eater", affix = "", "(42-44)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4587 }, level = 75, group = "ArmourFromHelmetGloves", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["ArmourFromHelmetGlovesEldritchImplicit5"] = { type = "Eater", affix = "", "(45-47)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4587 }, level = 75, group = "ArmourFromHelmetGloves", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["ArmourFromHelmetGlovesEldritchImplicit6"] = { type = "Eater", affix = "", "(48-50)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4587 }, level = 75, group = "ArmourFromHelmetGloves", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["ArmourFromHelmetGlovesEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (42-44)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4587 }, level = 75, group = "ArmourFromHelmetGlovesUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "armour" }, }, - ["ArmourFromHelmetGlovesEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (45-47)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4587 }, level = 75, group = "ArmourFromHelmetGlovesUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "armour" }, }, - ["ArmourFromHelmetGlovesEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (48-50)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4587 }, level = 75, group = "ArmourFromHelmetGlovesUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "armour" }, }, - ["ArmourFromHelmetGlovesEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (51-53)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4587 }, level = 75, group = "ArmourFromHelmetGlovesUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "armour" }, }, - ["ArmourFromHelmetGlovesEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (54-57)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4587 }, level = 75, group = "ArmourFromHelmetGlovesUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "armour" }, }, - ["ArmourFromHelmetGlovesEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (58-61)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4587 }, level = 75, group = "ArmourFromHelmetGlovesUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "armour" }, }, - ["ArmourFromHelmetGlovesEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4587 }, level = 75, group = "ArmourFromHelmetGlovesPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "armour" }, }, - ["ArmourFromHelmetGlovesEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4587 }, level = 75, group = "ArmourFromHelmetGlovesPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "armour" }, }, - ["ArmourFromHelmetGlovesEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4587 }, level = 75, group = "ArmourFromHelmetGlovesPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "armour" }, }, - ["ArmourFromHelmetGlovesEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4587 }, level = 75, group = "ArmourFromHelmetGlovesPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "armour" }, }, - ["ArmourFromHelmetGlovesEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4587 }, level = 75, group = "ArmourFromHelmetGlovesPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "armour" }, }, - ["ArmourFromHelmetGlovesEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4587 }, level = 75, group = "ArmourFromHelmetGlovesPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "armour" }, }, - ["FasterIgniteDamageEldritchImplicit1"] = { type = "Eater", affix = "", "Ignites you inflict deal Damage 5% faster", statOrder = { 2440 }, level = 75, group = "FasterIgniteDamage", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, - ["FasterIgniteDamageEldritchImplicit2"] = { type = "Eater", affix = "", "Ignites you inflict deal Damage 6% faster", statOrder = { 2440 }, level = 75, group = "FasterIgniteDamage", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, - ["FasterIgniteDamageEldritchImplicit3"] = { type = "Eater", affix = "", "Ignites you inflict deal Damage 7% faster", statOrder = { 2440 }, level = 75, group = "FasterIgniteDamage", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, - ["FasterIgniteDamageEldritchImplicit4"] = { type = "Eater", affix = "", "Ignites you inflict deal Damage 8% faster", statOrder = { 2440 }, level = 75, group = "FasterIgniteDamage", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, - ["FasterIgniteDamageEldritchImplicit5"] = { type = "Eater", affix = "", "Ignites you inflict deal Damage 9% faster", statOrder = { 2440 }, level = 75, group = "FasterIgniteDamage", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, - ["FasterIgniteDamageEldritchImplicit6"] = { type = "Eater", affix = "", "Ignites you inflict deal Damage 10% faster", statOrder = { 2440 }, level = 75, group = "FasterIgniteDamage", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, - ["FasterIgniteDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict deal Damage 8% faster", statOrder = { 2440 }, level = 75, group = "FasterIgniteDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["FasterIgniteDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict deal Damage 9% faster", statOrder = { 2440 }, level = 75, group = "FasterIgniteDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["FasterIgniteDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict deal Damage 10% faster", statOrder = { 2440 }, level = 75, group = "FasterIgniteDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["FasterIgniteDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict deal Damage 11% faster", statOrder = { 2440 }, level = 75, group = "FasterIgniteDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["FasterIgniteDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict deal Damage 12% faster", statOrder = { 2440 }, level = 75, group = "FasterIgniteDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["FasterIgniteDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict deal Damage 13% faster", statOrder = { 2440 }, level = 75, group = "FasterIgniteDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["FasterIgniteDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict deal Damage 11% faster", statOrder = { 2440 }, level = 75, group = "FasterIgniteDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["FasterIgniteDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict deal Damage 12% faster", statOrder = { 2440 }, level = 75, group = "FasterIgniteDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["FasterIgniteDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict deal Damage 13% faster", statOrder = { 2440 }, level = 75, group = "FasterIgniteDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["FasterIgniteDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict deal Damage 14% faster", statOrder = { 2440 }, level = 75, group = "FasterIgniteDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["FasterIgniteDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict deal Damage 15% faster", statOrder = { 2440 }, level = 75, group = "FasterIgniteDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["FasterIgniteDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict deal Damage 16% faster", statOrder = { 2440 }, level = 75, group = "FasterIgniteDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["FasterPoisonDamageEldritchImplicit1"] = { type = "Eater", affix = "", "Poisons you inflict deal Damage 5% faster", statOrder = { 6215 }, level = 75, group = "FasterPoisonDamage", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["FasterPoisonDamageEldritchImplicit2"] = { type = "Eater", affix = "", "Poisons you inflict deal Damage 6% faster", statOrder = { 6215 }, level = 75, group = "FasterPoisonDamage", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["FasterPoisonDamageEldritchImplicit3"] = { type = "Eater", affix = "", "Poisons you inflict deal Damage 7% faster", statOrder = { 6215 }, level = 75, group = "FasterPoisonDamage", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["FasterPoisonDamageEldritchImplicit4"] = { type = "Eater", affix = "", "Poisons you inflict deal Damage 8% faster", statOrder = { 6215 }, level = 75, group = "FasterPoisonDamage", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["FasterPoisonDamageEldritchImplicit5"] = { type = "Eater", affix = "", "Poisons you inflict deal Damage 9% faster", statOrder = { 6215 }, level = 75, group = "FasterPoisonDamage", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["FasterPoisonDamageEldritchImplicit6"] = { type = "Eater", affix = "", "Poisons you inflict deal Damage 10% faster", statOrder = { 6215 }, level = 75, group = "FasterPoisonDamage", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["FasterPoisonDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Poisons you inflict deal Damage 8% faster", statOrder = { 6215 }, level = 75, group = "FasterPoisonDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["FasterPoisonDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Poisons you inflict deal Damage 9% faster", statOrder = { 6215 }, level = 75, group = "FasterPoisonDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["FasterPoisonDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Poisons you inflict deal Damage 10% faster", statOrder = { 6215 }, level = 75, group = "FasterPoisonDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["FasterPoisonDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Poisons you inflict deal Damage 11% faster", statOrder = { 6215 }, level = 75, group = "FasterPoisonDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["FasterPoisonDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Poisons you inflict deal Damage 12% faster", statOrder = { 6215 }, level = 75, group = "FasterPoisonDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["FasterPoisonDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Poisons you inflict deal Damage 13% faster", statOrder = { 6215 }, level = 75, group = "FasterPoisonDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["FasterPoisonDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Poisons you inflict deal Damage 11% faster", statOrder = { 6215 }, level = 75, group = "FasterPoisonDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["FasterPoisonDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Poisons you inflict deal Damage 12% faster", statOrder = { 6215 }, level = 75, group = "FasterPoisonDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["FasterPoisonDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Poisons you inflict deal Damage 13% faster", statOrder = { 6215 }, level = 75, group = "FasterPoisonDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["FasterPoisonDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Poisons you inflict deal Damage 14% faster", statOrder = { 6215 }, level = 75, group = "FasterPoisonDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["FasterPoisonDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Poisons you inflict deal Damage 15% faster", statOrder = { 6215 }, level = 75, group = "FasterPoisonDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["FasterPoisonDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Poisons you inflict deal Damage 16% faster", statOrder = { 6215 }, level = 75, group = "FasterPoisonDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["FasterBleedDamageEldritchImplicit1"] = { type = "Eater", affix = "", "Bleeding you inflict deals Damage 5% faster", statOrder = { 6214 }, level = 75, group = "FasterBleedDamage", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, - ["FasterBleedDamageEldritchImplicit2"] = { type = "Eater", affix = "", "Bleeding you inflict deals Damage 6% faster", statOrder = { 6214 }, level = 75, group = "FasterBleedDamage", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, - ["FasterBleedDamageEldritchImplicit3"] = { type = "Eater", affix = "", "Bleeding you inflict deals Damage 7% faster", statOrder = { 6214 }, level = 75, group = "FasterBleedDamage", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, - ["FasterBleedDamageEldritchImplicit4"] = { type = "Eater", affix = "", "Bleeding you inflict deals Damage 8% faster", statOrder = { 6214 }, level = 75, group = "FasterBleedDamage", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, - ["FasterBleedDamageEldritchImplicit5"] = { type = "Eater", affix = "", "Bleeding you inflict deals Damage 9% faster", statOrder = { 6214 }, level = 75, group = "FasterBleedDamage", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, - ["FasterBleedDamageEldritchImplicit6"] = { type = "Eater", affix = "", "Bleeding you inflict deals Damage 10% faster", statOrder = { 6214 }, level = 75, group = "FasterBleedDamage", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, - ["FasterBleedDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Bleeding you inflict deals Damage 8% faster", statOrder = { 6214 }, level = 75, group = "FasterBleedDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "ailment" }, }, - ["FasterBleedDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Bleeding you inflict deals Damage 9% faster", statOrder = { 6214 }, level = 75, group = "FasterBleedDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "bleed", "physical", "ailment" }, }, - ["FasterBleedDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Bleeding you inflict deals Damage 10% faster", statOrder = { 6214 }, level = 75, group = "FasterBleedDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "bleed", "physical", "ailment" }, }, - ["FasterBleedDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Bleeding you inflict deals Damage 11% faster", statOrder = { 6214 }, level = 75, group = "FasterBleedDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "bleed", "physical", "ailment" }, }, - ["FasterBleedDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Bleeding you inflict deals Damage 12% faster", statOrder = { 6214 }, level = 75, group = "FasterBleedDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "bleed", "physical", "ailment" }, }, - ["FasterBleedDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Bleeding you inflict deals Damage 13% faster", statOrder = { 6214 }, level = 75, group = "FasterBleedDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "bleed", "physical", "ailment" }, }, - ["FasterBleedDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bleeding you inflict deals Damage 11% faster", statOrder = { 6214 }, level = 75, group = "FasterBleedDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "ailment" }, }, - ["FasterBleedDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bleeding you inflict deals Damage 12% faster", statOrder = { 6214 }, level = 75, group = "FasterBleedDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "ailment" }, }, - ["FasterBleedDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bleeding you inflict deals Damage 13% faster", statOrder = { 6214 }, level = 75, group = "FasterBleedDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "bleed", "physical", "ailment" }, }, - ["FasterBleedDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bleeding you inflict deals Damage 14% faster", statOrder = { 6214 }, level = 75, group = "FasterBleedDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "bleed", "physical", "ailment" }, }, - ["FasterBleedDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bleeding you inflict deals Damage 15% faster", statOrder = { 6214 }, level = 75, group = "FasterBleedDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "bleed", "physical", "ailment" }, }, - ["FasterBleedDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bleeding you inflict deals Damage 16% faster", statOrder = { 6214 }, level = 75, group = "FasterBleedDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "bleed", "physical", "ailment" }, }, - ["PhysicalAddedAsFireEldritchImplicit1"] = { type = "Eater", affix = "", "Gain 4% of Physical Damage as Extra Fire Damage", statOrder = { 1811 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, - ["PhysicalAddedAsFireEldritchImplicit2"] = { type = "Eater", affix = "", "Gain 4% of Physical Damage as Extra Fire Damage", statOrder = { 1811 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, - ["PhysicalAddedAsFireEldritchImplicit3"] = { type = "Eater", affix = "", "Gain 5% of Physical Damage as Extra Fire Damage", statOrder = { 1811 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, - ["PhysicalAddedAsFireEldritchImplicit4"] = { type = "Eater", affix = "", "Gain 5% of Physical Damage as Extra Fire Damage", statOrder = { 1811 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, - ["PhysicalAddedAsFireEldritchImplicit5"] = { type = "Eater", affix = "", "Gain 6% of Physical Damage as Extra Fire Damage", statOrder = { 1811 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, - ["PhysicalAddedAsFireEldritchImplicit6"] = { type = "Eater", affix = "", "Gain 6% of Physical Damage as Extra Fire Damage", statOrder = { 1811 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, - ["PhysicalAddedAsFireEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 6% of Physical Damage as Extra Fire Damage", statOrder = { 1811 }, level = 75, group = "PhysicalAddedAsFireUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalAddedAsFireEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 6% of Physical Damage as Extra Fire Damage", statOrder = { 1811 }, level = 75, group = "PhysicalAddedAsFireUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalAddedAsFireEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 7% of Physical Damage as Extra Fire Damage", statOrder = { 1811 }, level = 75, group = "PhysicalAddedAsFireUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalAddedAsFireEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 7% of Physical Damage as Extra Fire Damage", statOrder = { 1811 }, level = 75, group = "PhysicalAddedAsFireUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalAddedAsFireEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 8% of Physical Damage as Extra Fire Damage", statOrder = { 1811 }, level = 75, group = "PhysicalAddedAsFireUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalAddedAsFireEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 8% of Physical Damage as Extra Fire Damage", statOrder = { 1811 }, level = 75, group = "PhysicalAddedAsFireUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalAddedAsFireEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 8% of Physical Damage as Extra Fire Damage", statOrder = { 1811 }, level = 75, group = "PhysicalAddedAsFirePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalAddedAsFireEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 8% of Physical Damage as Extra Fire Damage", statOrder = { 1811 }, level = 75, group = "PhysicalAddedAsFirePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalAddedAsFireEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 9% of Physical Damage as Extra Fire Damage", statOrder = { 1811 }, level = 75, group = "PhysicalAddedAsFirePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalAddedAsFireEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 9% of Physical Damage as Extra Fire Damage", statOrder = { 1811 }, level = 75, group = "PhysicalAddedAsFirePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalAddedAsFireEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 10% of Physical Damage as Extra Fire Damage", statOrder = { 1811 }, level = 75, group = "PhysicalAddedAsFirePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalAddedAsFireEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 10% of Physical Damage as Extra Fire Damage", statOrder = { 1811 }, level = 75, group = "PhysicalAddedAsFirePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalAddedAsColdEldritchImplicit1"] = { type = "Eater", affix = "", "Gain 4% of Physical Damage as Extra Cold Damage", statOrder = { 1812 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, - ["PhysicalAddedAsColdEldritchImplicit2"] = { type = "Eater", affix = "", "Gain 4% of Physical Damage as Extra Cold Damage", statOrder = { 1812 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, - ["PhysicalAddedAsColdEldritchImplicit3"] = { type = "Eater", affix = "", "Gain 5% of Physical Damage as Extra Cold Damage", statOrder = { 1812 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, - ["PhysicalAddedAsColdEldritchImplicit4"] = { type = "Eater", affix = "", "Gain 5% of Physical Damage as Extra Cold Damage", statOrder = { 1812 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, - ["PhysicalAddedAsColdEldritchImplicit5"] = { type = "Eater", affix = "", "Gain 6% of Physical Damage as Extra Cold Damage", statOrder = { 1812 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, - ["PhysicalAddedAsColdEldritchImplicit6"] = { type = "Eater", affix = "", "Gain 6% of Physical Damage as Extra Cold Damage", statOrder = { 1812 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, - ["PhysicalAddedAsColdEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 6% of Physical Damage as Extra Cold Damage", statOrder = { 1812 }, level = 75, group = "PhysicalAddedAsColdUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalAddedAsColdEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 6% of Physical Damage as Extra Cold Damage", statOrder = { 1812 }, level = 75, group = "PhysicalAddedAsColdUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalAddedAsColdEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 7% of Physical Damage as Extra Cold Damage", statOrder = { 1812 }, level = 75, group = "PhysicalAddedAsColdUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalAddedAsColdEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 7% of Physical Damage as Extra Cold Damage", statOrder = { 1812 }, level = 75, group = "PhysicalAddedAsColdUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalAddedAsColdEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 8% of Physical Damage as Extra Cold Damage", statOrder = { 1812 }, level = 75, group = "PhysicalAddedAsColdUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalAddedAsColdEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 8% of Physical Damage as Extra Cold Damage", statOrder = { 1812 }, level = 75, group = "PhysicalAddedAsColdUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalAddedAsColdEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 8% of Physical Damage as Extra Cold Damage", statOrder = { 1812 }, level = 75, group = "PhysicalAddedAsColdPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalAddedAsColdEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 8% of Physical Damage as Extra Cold Damage", statOrder = { 1812 }, level = 75, group = "PhysicalAddedAsColdPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalAddedAsColdEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 9% of Physical Damage as Extra Cold Damage", statOrder = { 1812 }, level = 75, group = "PhysicalAddedAsColdPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalAddedAsColdEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 9% of Physical Damage as Extra Cold Damage", statOrder = { 1812 }, level = 75, group = "PhysicalAddedAsColdPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalAddedAsColdEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 10% of Physical Damage as Extra Cold Damage", statOrder = { 1812 }, level = 75, group = "PhysicalAddedAsColdPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalAddedAsColdEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 10% of Physical Damage as Extra Cold Damage", statOrder = { 1812 }, level = 75, group = "PhysicalAddedAsColdPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalAddedAsLightningEldritchImplicit1"] = { type = "Eater", affix = "", "Gain 4% of Physical Damage as Extra Lightning Damage", statOrder = { 1813 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, - ["PhysicalAddedAsLightningEldritchImplicit2"] = { type = "Eater", affix = "", "Gain 4% of Physical Damage as Extra Lightning Damage", statOrder = { 1813 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, - ["PhysicalAddedAsLightningEldritchImplicit3"] = { type = "Eater", affix = "", "Gain 5% of Physical Damage as Extra Lightning Damage", statOrder = { 1813 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, - ["PhysicalAddedAsLightningEldritchImplicit4"] = { type = "Eater", affix = "", "Gain 5% of Physical Damage as Extra Lightning Damage", statOrder = { 1813 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, - ["PhysicalAddedAsLightningEldritchImplicit5"] = { type = "Eater", affix = "", "Gain 6% of Physical Damage as Extra Lightning Damage", statOrder = { 1813 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, - ["PhysicalAddedAsLightningEldritchImplicit6"] = { type = "Eater", affix = "", "Gain 6% of Physical Damage as Extra Lightning Damage", statOrder = { 1813 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, - ["PhysicalAddedAsLightningEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 6% of Physical Damage as Extra Lightning Damage", statOrder = { 1813 }, level = 75, group = "PhysicalAddedAsLightningUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalAddedAsLightningEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 6% of Physical Damage as Extra Lightning Damage", statOrder = { 1813 }, level = 75, group = "PhysicalAddedAsLightningUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalAddedAsLightningEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 7% of Physical Damage as Extra Lightning Damage", statOrder = { 1813 }, level = 75, group = "PhysicalAddedAsLightningUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalAddedAsLightningEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 7% of Physical Damage as Extra Lightning Damage", statOrder = { 1813 }, level = 75, group = "PhysicalAddedAsLightningUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalAddedAsLightningEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 8% of Physical Damage as Extra Lightning Damage", statOrder = { 1813 }, level = 75, group = "PhysicalAddedAsLightningUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalAddedAsLightningEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 8% of Physical Damage as Extra Lightning Damage", statOrder = { 1813 }, level = 75, group = "PhysicalAddedAsLightningUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalAddedAsLightningEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 8% of Physical Damage as Extra Lightning Damage", statOrder = { 1813 }, level = 75, group = "PhysicalAddedAsLightningPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalAddedAsLightningEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 8% of Physical Damage as Extra Lightning Damage", statOrder = { 1813 }, level = 75, group = "PhysicalAddedAsLightningPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalAddedAsLightningEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 9% of Physical Damage as Extra Lightning Damage", statOrder = { 1813 }, level = 75, group = "PhysicalAddedAsLightningPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalAddedAsLightningEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 9% of Physical Damage as Extra Lightning Damage", statOrder = { 1813 }, level = 75, group = "PhysicalAddedAsLightningPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalAddedAsLightningEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 10% of Physical Damage as Extra Lightning Damage", statOrder = { 1813 }, level = 75, group = "PhysicalAddedAsLightningPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalAddedAsLightningEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 10% of Physical Damage as Extra Lightning Damage", statOrder = { 1813 }, level = 75, group = "PhysicalAddedAsLightningPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalDamageAddedAsChaosEldritchImplicit1"] = { type = "Eater", affix = "", "Gain 4% of Physical Damage as Extra Chaos Damage", statOrder = { 1814 }, level = 75, group = "PhysicalDamageAddedAsChaos", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, - ["PhysicalDamageAddedAsChaosEldritchImplicit2"] = { type = "Eater", affix = "", "Gain 4% of Physical Damage as Extra Chaos Damage", statOrder = { 1814 }, level = 75, group = "PhysicalDamageAddedAsChaos", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, - ["PhysicalDamageAddedAsChaosEldritchImplicit3"] = { type = "Eater", affix = "", "Gain 5% of Physical Damage as Extra Chaos Damage", statOrder = { 1814 }, level = 75, group = "PhysicalDamageAddedAsChaos", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, - ["PhysicalDamageAddedAsChaosEldritchImplicit4"] = { type = "Eater", affix = "", "Gain 5% of Physical Damage as Extra Chaos Damage", statOrder = { 1814 }, level = 75, group = "PhysicalDamageAddedAsChaos", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, - ["PhysicalDamageAddedAsChaosEldritchImplicit5"] = { type = "Eater", affix = "", "Gain 6% of Physical Damage as Extra Chaos Damage", statOrder = { 1814 }, level = 75, group = "PhysicalDamageAddedAsChaos", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, - ["PhysicalDamageAddedAsChaosEldritchImplicit6"] = { type = "Eater", affix = "", "Gain 6% of Physical Damage as Extra Chaos Damage", statOrder = { 1814 }, level = 75, group = "PhysicalDamageAddedAsChaos", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, - ["PhysicalDamageAddedAsChaosEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 6% of Physical Damage as Extra Chaos Damage", statOrder = { 1814 }, level = 75, group = "PhysicalDamageAddedAsChaosUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysicalDamageAddedAsChaosEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 6% of Physical Damage as Extra Chaos Damage", statOrder = { 1814 }, level = 75, group = "PhysicalDamageAddedAsChaosUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysicalDamageAddedAsChaosEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 7% of Physical Damage as Extra Chaos Damage", statOrder = { 1814 }, level = 75, group = "PhysicalDamageAddedAsChaosUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysicalDamageAddedAsChaosEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 7% of Physical Damage as Extra Chaos Damage", statOrder = { 1814 }, level = 75, group = "PhysicalDamageAddedAsChaosUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysicalDamageAddedAsChaosEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 8% of Physical Damage as Extra Chaos Damage", statOrder = { 1814 }, level = 75, group = "PhysicalDamageAddedAsChaosUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysicalDamageAddedAsChaosEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 8% of Physical Damage as Extra Chaos Damage", statOrder = { 1814 }, level = 75, group = "PhysicalDamageAddedAsChaosUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysicalDamageAddedAsChaosEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 8% of Physical Damage as Extra Chaos Damage", statOrder = { 1814 }, level = 75, group = "PhysicalDamageAddedAsChaosPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysicalDamageAddedAsChaosEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 8% of Physical Damage as Extra Chaos Damage", statOrder = { 1814 }, level = 75, group = "PhysicalDamageAddedAsChaosPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysicalDamageAddedAsChaosEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 9% of Physical Damage as Extra Chaos Damage", statOrder = { 1814 }, level = 75, group = "PhysicalDamageAddedAsChaosPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysicalDamageAddedAsChaosEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 9% of Physical Damage as Extra Chaos Damage", statOrder = { 1814 }, level = 75, group = "PhysicalDamageAddedAsChaosPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysicalDamageAddedAsChaosEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 10% of Physical Damage as Extra Chaos Damage", statOrder = { 1814 }, level = 75, group = "PhysicalDamageAddedAsChaosPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysicalDamageAddedAsChaosEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 10% of Physical Damage as Extra Chaos Damage", statOrder = { 1814 }, level = 75, group = "PhysicalDamageAddedAsChaosPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "chaos" }, }, - ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicit1"] = { type = "Eater", affix = "", "Regenerate 0.2% of Life per second per Endurance Charge", statOrder = { 1458 }, level = 75, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life" }, }, - ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicit2"] = { type = "Eater", affix = "", "Regenerate 0.2% of Life per second per Endurance Charge", statOrder = { 1458 }, level = 75, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life" }, }, - ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicit3"] = { type = "Eater", affix = "", "Regenerate 0.2% of Life per second per Endurance Charge", statOrder = { 1458 }, level = 75, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life" }, }, - ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicit4"] = { type = "Eater", affix = "", "Regenerate 0.2% of Life per second per Endurance Charge", statOrder = { 1458 }, level = 75, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life" }, }, - ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicit5"] = { type = "Eater", affix = "", "Regenerate 0.3% of Life per second per Endurance Charge", statOrder = { 1458 }, level = 75, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life" }, }, - ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicit6"] = { type = "Eater", affix = "", "Regenerate 0.3% of Life per second per Endurance Charge", statOrder = { 1458 }, level = 75, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life" }, }, - ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Regenerate 0.3% of Life per second per Endurance Charge", statOrder = { 1458 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, }, - ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Regenerate 0.3% of Life per second per Endurance Charge", statOrder = { 1458 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life" }, }, - ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Regenerate 0.3% of Life per second per Endurance Charge", statOrder = { 1458 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life" }, }, - ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Regenerate 0.3% of Life per second per Endurance Charge", statOrder = { 1458 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life" }, }, - ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Regenerate 0.4% of Life per second per Endurance Charge", statOrder = { 1458 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life" }, }, - ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Regenerate 0.4% of Life per second per Endurance Charge", statOrder = { 1458 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life" }, }, - ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Regenerate 0.4% of Life per second per Endurance Charge", statOrder = { 1458 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, }, - ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Regenerate 0.4% of Life per second per Endurance Charge", statOrder = { 1458 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, }, - ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Regenerate 0.4% of Life per second per Endurance Charge", statOrder = { 1458 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "life" }, }, - ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Regenerate 0.4% of Life per second per Endurance Charge", statOrder = { 1458 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "life" }, }, - ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Regenerate 0.5% of Life per second per Endurance Charge", statOrder = { 1458 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "life" }, }, - ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Regenerate 0.5% of Life per second per Endurance Charge", statOrder = { 1458 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "life" }, }, - ["IncreasedStunThresholdEldritchImplicit1"] = { type = "Eater", affix = "", "(15-17)% increased Stun Threshold", statOrder = { 3138 }, level = 75, group = "IncreasedStunThreshold", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["IncreasedStunThresholdEldritchImplicit2"] = { type = "Eater", affix = "", "(18-20)% increased Stun Threshold", statOrder = { 3138 }, level = 75, group = "IncreasedStunThreshold", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["IncreasedStunThresholdEldritchImplicit3"] = { type = "Eater", affix = "", "(21-23)% increased Stun Threshold", statOrder = { 3138 }, level = 75, group = "IncreasedStunThreshold", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["IncreasedStunThresholdEldritchImplicit4"] = { type = "Eater", affix = "", "(24-26)% increased Stun Threshold", statOrder = { 3138 }, level = 75, group = "IncreasedStunThreshold", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["IncreasedStunThresholdEldritchImplicit5"] = { type = "Eater", affix = "", "(27-29)% increased Stun Threshold", statOrder = { 3138 }, level = 75, group = "IncreasedStunThreshold", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["IncreasedStunThresholdEldritchImplicit6"] = { type = "Eater", affix = "", "(30-32)% increased Stun Threshold", statOrder = { 3138 }, level = 75, group = "IncreasedStunThreshold", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["IncreasedStunThresholdEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (24-26)% increased Stun Threshold", statOrder = { 3138 }, level = 75, group = "IncreasedStunThresholdUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["IncreasedStunThresholdEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (27-29)% increased Stun Threshold", statOrder = { 3138 }, level = 75, group = "IncreasedStunThresholdUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["IncreasedStunThresholdEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (30-32)% increased Stun Threshold", statOrder = { 3138 }, level = 75, group = "IncreasedStunThresholdUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["IncreasedStunThresholdEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (33-35)% increased Stun Threshold", statOrder = { 3138 }, level = 75, group = "IncreasedStunThresholdUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["IncreasedStunThresholdEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (36-38)% increased Stun Threshold", statOrder = { 3138 }, level = 75, group = "IncreasedStunThresholdUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["IncreasedStunThresholdEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (39-41)% increased Stun Threshold", statOrder = { 3138 }, level = 75, group = "IncreasedStunThresholdUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["IncreasedStunThresholdEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% increased Stun Threshold", statOrder = { 3138 }, level = 75, group = "IncreasedStunThresholdPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["IncreasedStunThresholdEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% increased Stun Threshold", statOrder = { 3138 }, level = 75, group = "IncreasedStunThresholdPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["IncreasedStunThresholdEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-41)% increased Stun Threshold", statOrder = { 3138 }, level = 75, group = "IncreasedStunThresholdPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["IncreasedStunThresholdEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (42-44)% increased Stun Threshold", statOrder = { 3138 }, level = 75, group = "IncreasedStunThresholdPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["IncreasedStunThresholdEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (45-47)% increased Stun Threshold", statOrder = { 3138 }, level = 75, group = "IncreasedStunThresholdPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["IncreasedStunThresholdEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (48-50)% increased Stun Threshold", statOrder = { 3138 }, level = 75, group = "IncreasedStunThresholdPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["TravelSkillCooldownRecoveryEldritchImplicit1"] = { type = "Eater", affix = "", "(15-17)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4242 }, level = 75, group = "TravelSkillCooldownRecovery", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["TravelSkillCooldownRecoveryEldritchImplicit2"] = { type = "Eater", affix = "", "(18-20)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4242 }, level = 75, group = "TravelSkillCooldownRecovery", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["TravelSkillCooldownRecoveryEldritchImplicit3"] = { type = "Eater", affix = "", "(21-23)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4242 }, level = 75, group = "TravelSkillCooldownRecovery", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["TravelSkillCooldownRecoveryEldritchImplicit4"] = { type = "Eater", affix = "", "(24-26)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4242 }, level = 75, group = "TravelSkillCooldownRecovery", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["TravelSkillCooldownRecoveryEldritchImplicit5"] = { type = "Eater", affix = "", "(27-29)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4242 }, level = 75, group = "TravelSkillCooldownRecovery", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["TravelSkillCooldownRecoveryEldritchImplicit6"] = { type = "Eater", affix = "", "(30-32)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4242 }, level = 75, group = "TravelSkillCooldownRecovery", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["TravelSkillCooldownRecoveryEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (24-26)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4242 }, level = 75, group = "TravelSkillCooldownRecoveryUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["TravelSkillCooldownRecoveryEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (27-29)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4242 }, level = 75, group = "TravelSkillCooldownRecoveryUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, - ["TravelSkillCooldownRecoveryEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (30-32)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4242 }, level = 75, group = "TravelSkillCooldownRecoveryUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, - ["TravelSkillCooldownRecoveryEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (33-35)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4242 }, level = 75, group = "TravelSkillCooldownRecoveryUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, - ["TravelSkillCooldownRecoveryEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (36-38)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4242 }, level = 75, group = "TravelSkillCooldownRecoveryUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, - ["TravelSkillCooldownRecoveryEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (39-41)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4242 }, level = 75, group = "TravelSkillCooldownRecoveryUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, - ["TravelSkillCooldownRecoveryEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4242 }, level = 75, group = "TravelSkillCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["TravelSkillCooldownRecoveryEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4242 }, level = 75, group = "TravelSkillCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["TravelSkillCooldownRecoveryEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-41)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4242 }, level = 75, group = "TravelSkillCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, - ["TravelSkillCooldownRecoveryEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (42-44)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4242 }, level = 75, group = "TravelSkillCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, - ["TravelSkillCooldownRecoveryEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (45-47)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4242 }, level = 75, group = "TravelSkillCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, - ["TravelSkillCooldownRecoveryEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (48-50)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4242 }, level = 75, group = "TravelSkillCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, - ["WarcrySpeedEldritchImplicit1"] = { type = "Eater", affix = "", "(15-16)% increased Warcry Speed", statOrder = { 3143 }, level = 75, group = "WarcrySpeed", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, - ["WarcrySpeedEldritchImplicit2"] = { type = "Eater", affix = "", "(17-18)% increased Warcry Speed", statOrder = { 3143 }, level = 75, group = "WarcrySpeed", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, - ["WarcrySpeedEldritchImplicit3"] = { type = "Eater", affix = "", "(19-20)% increased Warcry Speed", statOrder = { 3143 }, level = 75, group = "WarcrySpeed", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, - ["WarcrySpeedEldritchImplicit4"] = { type = "Eater", affix = "", "(21-22)% increased Warcry Speed", statOrder = { 3143 }, level = 75, group = "WarcrySpeed", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, - ["WarcrySpeedEldritchImplicit5"] = { type = "Eater", affix = "", "(23-24)% increased Warcry Speed", statOrder = { 3143 }, level = 75, group = "WarcrySpeed", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, - ["WarcrySpeedEldritchImplicit6"] = { type = "Eater", affix = "", "(25-26)% increased Warcry Speed", statOrder = { 3143 }, level = 75, group = "WarcrySpeed", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, - ["WarcrySpeedEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (19-20)% increased Warcry Speed", statOrder = { 3143 }, level = 75, group = "WarcrySpeedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, }, - ["WarcrySpeedEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (21-22)% increased Warcry Speed", statOrder = { 3143 }, level = 75, group = "WarcrySpeedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, }, - ["WarcrySpeedEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (23-24)% increased Warcry Speed", statOrder = { 3143 }, level = 75, group = "WarcrySpeedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, }, - ["WarcrySpeedEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (25-26)% increased Warcry Speed", statOrder = { 3143 }, level = 75, group = "WarcrySpeedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, }, - ["WarcrySpeedEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (27-28)% increased Warcry Speed", statOrder = { 3143 }, level = 75, group = "WarcrySpeedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, }, - ["WarcrySpeedEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (29-30)% increased Warcry Speed", statOrder = { 3143 }, level = 75, group = "WarcrySpeedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, }, - ["WarcrySpeedEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (23-24)% increased Warcry Speed", statOrder = { 3143 }, level = 75, group = "WarcrySpeedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, }, - ["WarcrySpeedEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% increased Warcry Speed", statOrder = { 3143 }, level = 75, group = "WarcrySpeedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, }, - ["WarcrySpeedEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% increased Warcry Speed", statOrder = { 3143 }, level = 75, group = "WarcrySpeedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, }, - ["WarcrySpeedEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% increased Warcry Speed", statOrder = { 3143 }, level = 75, group = "WarcrySpeedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, }, - ["WarcrySpeedEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (31-32)% increased Warcry Speed", statOrder = { 3143 }, level = 75, group = "WarcrySpeedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, }, - ["WarcrySpeedEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-34)% increased Warcry Speed", statOrder = { 3143 }, level = 75, group = "WarcrySpeedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, }, - ["EnduringCryCooldownRecoveryEldritchImplicit1"] = { type = "Eater", affix = "", "Enduring Cry has (15-17)% increased Cooldown Recovery Rate", statOrder = { 3749 }, level = 75, group = "EnduringCryCooldownRecovery", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["EnduringCryCooldownRecoveryEldritchImplicit2"] = { type = "Eater", affix = "", "Enduring Cry has (18-20)% increased Cooldown Recovery Rate", statOrder = { 3749 }, level = 75, group = "EnduringCryCooldownRecovery", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["EnduringCryCooldownRecoveryEldritchImplicit3"] = { type = "Eater", affix = "", "Enduring Cry has (21-23)% increased Cooldown Recovery Rate", statOrder = { 3749 }, level = 75, group = "EnduringCryCooldownRecovery", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["EnduringCryCooldownRecoveryEldritchImplicit4"] = { type = "Eater", affix = "", "Enduring Cry has (24-26)% increased Cooldown Recovery Rate", statOrder = { 3749 }, level = 75, group = "EnduringCryCooldownRecovery", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["EnduringCryCooldownRecoveryEldritchImplicit5"] = { type = "Eater", affix = "", "Enduring Cry has (27-29)% increased Cooldown Recovery Rate", statOrder = { 3749 }, level = 75, group = "EnduringCryCooldownRecovery", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["EnduringCryCooldownRecoveryEldritchImplicit6"] = { type = "Eater", affix = "", "Enduring Cry has (30-32)% increased Cooldown Recovery Rate", statOrder = { 3749 }, level = 75, group = "EnduringCryCooldownRecovery", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["EnduringCryCooldownRecoveryEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enduring Cry has (24-26)% increased Cooldown Recovery Rate", statOrder = { 3749 }, level = 75, group = "EnduringCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["EnduringCryCooldownRecoveryEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enduring Cry has (27-29)% increased Cooldown Recovery Rate", statOrder = { 3749 }, level = 75, group = "EnduringCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["EnduringCryCooldownRecoveryEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enduring Cry has (30-32)% increased Cooldown Recovery Rate", statOrder = { 3749 }, level = 75, group = "EnduringCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["EnduringCryCooldownRecoveryEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enduring Cry has (33-35)% increased Cooldown Recovery Rate", statOrder = { 3749 }, level = 75, group = "EnduringCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["EnduringCryCooldownRecoveryEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enduring Cry has (36-38)% increased Cooldown Recovery Rate", statOrder = { 3749 }, level = 75, group = "EnduringCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["EnduringCryCooldownRecoveryEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enduring Cry has (39-41)% increased Cooldown Recovery Rate", statOrder = { 3749 }, level = 75, group = "EnduringCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["EnduringCryCooldownRecoveryEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enduring Cry has (33-35)% increased Cooldown Recovery Rate", statOrder = { 3749 }, level = 75, group = "EnduringCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["EnduringCryCooldownRecoveryEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enduring Cry has (36-38)% increased Cooldown Recovery Rate", statOrder = { 3749 }, level = 75, group = "EnduringCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["EnduringCryCooldownRecoveryEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enduring Cry has (39-41)% increased Cooldown Recovery Rate", statOrder = { 3749 }, level = 75, group = "EnduringCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["EnduringCryCooldownRecoveryEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enduring Cry has (42-44)% increased Cooldown Recovery Rate", statOrder = { 3749 }, level = 75, group = "EnduringCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["EnduringCryCooldownRecoveryEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enduring Cry has (45-47)% increased Cooldown Recovery Rate", statOrder = { 3749 }, level = 75, group = "EnduringCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["EnduringCryCooldownRecoveryEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enduring Cry has (48-50)% increased Cooldown Recovery Rate", statOrder = { 3749 }, level = 75, group = "EnduringCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["IntimidatingCryCooldownRecoveryEldritchImplicit1"] = { type = "Eater", affix = "", "Intimidating Cry has (15-17)% increased Cooldown Recovery Rate", statOrder = { 6920 }, level = 75, group = "IntimidatingCryCooldownRecovery", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["IntimidatingCryCooldownRecoveryEldritchImplicit2"] = { type = "Eater", affix = "", "Intimidating Cry has (18-20)% increased Cooldown Recovery Rate", statOrder = { 6920 }, level = 75, group = "IntimidatingCryCooldownRecovery", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["IntimidatingCryCooldownRecoveryEldritchImplicit3"] = { type = "Eater", affix = "", "Intimidating Cry has (21-23)% increased Cooldown Recovery Rate", statOrder = { 6920 }, level = 75, group = "IntimidatingCryCooldownRecovery", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["IntimidatingCryCooldownRecoveryEldritchImplicit4"] = { type = "Eater", affix = "", "Intimidating Cry has (24-26)% increased Cooldown Recovery Rate", statOrder = { 6920 }, level = 75, group = "IntimidatingCryCooldownRecovery", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["IntimidatingCryCooldownRecoveryEldritchImplicit5"] = { type = "Eater", affix = "", "Intimidating Cry has (27-29)% increased Cooldown Recovery Rate", statOrder = { 6920 }, level = 75, group = "IntimidatingCryCooldownRecovery", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["IntimidatingCryCooldownRecoveryEldritchImplicit6"] = { type = "Eater", affix = "", "Intimidating Cry has (30-32)% increased Cooldown Recovery Rate", statOrder = { 6920 }, level = 75, group = "IntimidatingCryCooldownRecovery", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["IntimidatingCryCooldownRecoveryEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Intimidating Cry has (24-26)% increased Cooldown Recovery Rate", statOrder = { 6920 }, level = 75, group = "IntimidatingCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["IntimidatingCryCooldownRecoveryEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Intimidating Cry has (27-29)% increased Cooldown Recovery Rate", statOrder = { 6920 }, level = 75, group = "IntimidatingCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["IntimidatingCryCooldownRecoveryEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Intimidating Cry has (30-32)% increased Cooldown Recovery Rate", statOrder = { 6920 }, level = 75, group = "IntimidatingCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["IntimidatingCryCooldownRecoveryEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Intimidating Cry has (33-35)% increased Cooldown Recovery Rate", statOrder = { 6920 }, level = 75, group = "IntimidatingCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["IntimidatingCryCooldownRecoveryEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Intimidating Cry has (36-38)% increased Cooldown Recovery Rate", statOrder = { 6920 }, level = 75, group = "IntimidatingCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["IntimidatingCryCooldownRecoveryEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Intimidating Cry has (39-41)% increased Cooldown Recovery Rate", statOrder = { 6920 }, level = 75, group = "IntimidatingCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["IntimidatingCryCooldownRecoveryEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Intimidating Cry has (33-35)% increased Cooldown Recovery Rate", statOrder = { 6920 }, level = 75, group = "IntimidatingCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["IntimidatingCryCooldownRecoveryEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Intimidating Cry has (36-38)% increased Cooldown Recovery Rate", statOrder = { 6920 }, level = 75, group = "IntimidatingCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["IntimidatingCryCooldownRecoveryEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Intimidating Cry has (39-41)% increased Cooldown Recovery Rate", statOrder = { 6920 }, level = 75, group = "IntimidatingCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["IntimidatingCryCooldownRecoveryEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Intimidating Cry has (42-44)% increased Cooldown Recovery Rate", statOrder = { 6920 }, level = 75, group = "IntimidatingCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["IntimidatingCryCooldownRecoveryEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Intimidating Cry has (45-47)% increased Cooldown Recovery Rate", statOrder = { 6920 }, level = 75, group = "IntimidatingCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["IntimidatingCryCooldownRecoveryEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Intimidating Cry has (48-50)% increased Cooldown Recovery Rate", statOrder = { 6920 }, level = 75, group = "IntimidatingCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["SeismicCryExertedDamageEldritchImplicit1"] = { type = "Eater", affix = "", "Attacks Exerted by Seismic Cry deal (20-22)% increased Damage", statOrder = { 9456 }, level = 75, group = "SeismicCryExertedDamage", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["SeismicCryExertedDamageEldritchImplicit2"] = { type = "Eater", affix = "", "Attacks Exerted by Seismic Cry deal (23-25)% increased Damage", statOrder = { 9456 }, level = 75, group = "SeismicCryExertedDamage", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["SeismicCryExertedDamageEldritchImplicit3"] = { type = "Eater", affix = "", "Attacks Exerted by Seismic Cry deal (26-28)% increased Damage", statOrder = { 9456 }, level = 75, group = "SeismicCryExertedDamage", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["SeismicCryExertedDamageEldritchImplicit4"] = { type = "Eater", affix = "", "Attacks Exerted by Seismic Cry deal (29-31)% increased Damage", statOrder = { 9456 }, level = 75, group = "SeismicCryExertedDamage", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["SeismicCryExertedDamageEldritchImplicit5"] = { type = "Eater", affix = "", "Attacks Exerted by Seismic Cry deal (32-33)% increased Damage", statOrder = { 9456 }, level = 75, group = "SeismicCryExertedDamage", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["SeismicCryExertedDamageEldritchImplicit6"] = { type = "Eater", affix = "", "Attacks Exerted by Seismic Cry deal (34-35)% increased Damage", statOrder = { 9456 }, level = 75, group = "SeismicCryExertedDamage", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["SeismicCryExertedDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Seismic Cry deal (26-28)% increased Damage", statOrder = { 9456 }, level = 75, group = "SeismicCryExertedDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["SeismicCryExertedDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Seismic Cry deal (29-31)% increased Damage", statOrder = { 9456 }, level = 75, group = "SeismicCryExertedDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["SeismicCryExertedDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Seismic Cry deal (32-34)% increased Damage", statOrder = { 9456 }, level = 75, group = "SeismicCryExertedDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["SeismicCryExertedDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Seismic Cry deal (35-37)% increased Damage", statOrder = { 9456 }, level = 75, group = "SeismicCryExertedDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["SeismicCryExertedDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Seismic Cry deal (38-39)% increased Damage", statOrder = { 9456 }, level = 75, group = "SeismicCryExertedDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["SeismicCryExertedDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Seismic Cry deal (40-41)% increased Damage", statOrder = { 9456 }, level = 75, group = "SeismicCryExertedDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["SeismicCryExertedDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Seismic Cry deal (32-34)% increased Damage", statOrder = { 9456 }, level = 75, group = "SeismicCryExertedDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["SeismicCryExertedDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Seismic Cry deal (35-37)% increased Damage", statOrder = { 9456 }, level = 75, group = "SeismicCryExertedDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["SeismicCryExertedDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Seismic Cry deal (38-40)% increased Damage", statOrder = { 9456 }, level = 75, group = "SeismicCryExertedDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["SeismicCryExertedDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Seismic Cry deal (41-43)% increased Damage", statOrder = { 9456 }, level = 75, group = "SeismicCryExertedDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["SeismicCryExertedDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Seismic Cry deal (44-45)% increased Damage", statOrder = { 9456 }, level = 75, group = "SeismicCryExertedDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["SeismicCryExertedDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Seismic Cry deal (46-47)% increased Damage", statOrder = { 9456 }, level = 75, group = "SeismicCryExertedDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["AncestralCryExertedDamageEldritchImplicit1"] = { type = "Eater", affix = "", "Attacks Exerted by Ancestral Cry deal (20-22)% increased Damage", statOrder = { 4500 }, level = 75, group = "AncestralCryExertedDamage", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["AncestralCryExertedDamageEldritchImplicit2"] = { type = "Eater", affix = "", "Attacks Exerted by Ancestral Cry deal (23-25)% increased Damage", statOrder = { 4500 }, level = 75, group = "AncestralCryExertedDamage", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["AncestralCryExertedDamageEldritchImplicit3"] = { type = "Eater", affix = "", "Attacks Exerted by Ancestral Cry deal (26-28)% increased Damage", statOrder = { 4500 }, level = 75, group = "AncestralCryExertedDamage", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["AncestralCryExertedDamageEldritchImplicit4"] = { type = "Eater", affix = "", "Attacks Exerted by Ancestral Cry deal (29-31)% increased Damage", statOrder = { 4500 }, level = 75, group = "AncestralCryExertedDamage", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["AncestralCryExertedDamageEldritchImplicit5"] = { type = "Eater", affix = "", "Attacks Exerted by Ancestral Cry deal (32-33)% increased Damage", statOrder = { 4500 }, level = 75, group = "AncestralCryExertedDamage", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["AncestralCryExertedDamageEldritchImplicit6"] = { type = "Eater", affix = "", "Attacks Exerted by Ancestral Cry deal (34-35)% increased Damage", statOrder = { 4500 }, level = 75, group = "AncestralCryExertedDamage", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["AncestralCryExertedDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Ancestral Cry deal (26-28)% increased Damage", statOrder = { 4500 }, level = 75, group = "AncestralCryExertedDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["AncestralCryExertedDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Ancestral Cry deal (29-31)% increased Damage", statOrder = { 4500 }, level = 75, group = "AncestralCryExertedDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["AncestralCryExertedDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Ancestral Cry deal (32-34)% increased Damage", statOrder = { 4500 }, level = 75, group = "AncestralCryExertedDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["AncestralCryExertedDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Ancestral Cry deal (35-37)% increased Damage", statOrder = { 4500 }, level = 75, group = "AncestralCryExertedDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["AncestralCryExertedDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Ancestral Cry deal (38-39)% increased Damage", statOrder = { 4500 }, level = 75, group = "AncestralCryExertedDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["AncestralCryExertedDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Ancestral Cry deal (40-41)% increased Damage", statOrder = { 4500 }, level = 75, group = "AncestralCryExertedDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["AncestralCryExertedDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Ancestral Cry deal (32-34)% increased Damage", statOrder = { 4500 }, level = 75, group = "AncestralCryExertedDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["AncestralCryExertedDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Ancestral Cry deal (35-37)% increased Damage", statOrder = { 4500 }, level = 75, group = "AncestralCryExertedDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["AncestralCryExertedDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Ancestral Cry deal (38-40)% increased Damage", statOrder = { 4500 }, level = 75, group = "AncestralCryExertedDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["AncestralCryExertedDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Ancestral Cry deal (41-43)% increased Damage", statOrder = { 4500 }, level = 75, group = "AncestralCryExertedDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["AncestralCryExertedDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Ancestral Cry deal (44-45)% increased Damage", statOrder = { 4500 }, level = 75, group = "AncestralCryExertedDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["AncestralCryExertedDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Ancestral Cry deal (46-47)% increased Damage", statOrder = { 4500 }, level = 75, group = "AncestralCryExertedDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["RallyingCryWarcryEffectEldritchImplicit1"] = { type = "Eater", affix = "", "(6-7)% increased Rallying Cry Buff Effect", statOrder = { 3976 }, level = 75, group = "RallyingCryWarcryEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["RallyingCryWarcryEffectEldritchImplicit2"] = { type = "Eater", affix = "", "(8-9)% increased Rallying Cry Buff Effect", statOrder = { 3976 }, level = 75, group = "RallyingCryWarcryEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["RallyingCryWarcryEffectEldritchImplicit3"] = { type = "Eater", affix = "", "(10-11)% increased Rallying Cry Buff Effect", statOrder = { 3976 }, level = 75, group = "RallyingCryWarcryEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["RallyingCryWarcryEffectEldritchImplicit4"] = { type = "Eater", affix = "", "(12-13)% increased Rallying Cry Buff Effect", statOrder = { 3976 }, level = 75, group = "RallyingCryWarcryEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["RallyingCryWarcryEffectEldritchImplicit5"] = { type = "Eater", affix = "", "(14-15)% increased Rallying Cry Buff Effect", statOrder = { 3976 }, level = 75, group = "RallyingCryWarcryEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["RallyingCryWarcryEffectEldritchImplicit6"] = { type = "Eater", affix = "", "(16-17)% increased Rallying Cry Buff Effect", statOrder = { 3976 }, level = 75, group = "RallyingCryWarcryEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["RallyingCryWarcryEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (12-13)% increased Rallying Cry Buff Effect", statOrder = { 3976 }, level = 75, group = "RallyingCryWarcryEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["RallyingCryWarcryEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (14-15)% increased Rallying Cry Buff Effect", statOrder = { 3976 }, level = 75, group = "RallyingCryWarcryEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["RallyingCryWarcryEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (16-17)% increased Rallying Cry Buff Effect", statOrder = { 3976 }, level = 75, group = "RallyingCryWarcryEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["RallyingCryWarcryEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (18-19)% increased Rallying Cry Buff Effect", statOrder = { 3976 }, level = 75, group = "RallyingCryWarcryEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["RallyingCryWarcryEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (20-21)% increased Rallying Cry Buff Effect", statOrder = { 3976 }, level = 75, group = "RallyingCryWarcryEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["RallyingCryWarcryEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (22-23)% increased Rallying Cry Buff Effect", statOrder = { 3976 }, level = 75, group = "RallyingCryWarcryEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["RallyingCryWarcryEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (18-19)% increased Rallying Cry Buff Effect", statOrder = { 3976 }, level = 75, group = "RallyingCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["RallyingCryWarcryEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% increased Rallying Cry Buff Effect", statOrder = { 3976 }, level = 75, group = "RallyingCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["RallyingCryWarcryEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% increased Rallying Cry Buff Effect", statOrder = { 3976 }, level = 75, group = "RallyingCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["RallyingCryWarcryEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% increased Rallying Cry Buff Effect", statOrder = { 3976 }, level = 75, group = "RallyingCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["RallyingCryWarcryEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% increased Rallying Cry Buff Effect", statOrder = { 3976 }, level = 75, group = "RallyingCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["RallyingCryWarcryEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% increased Rallying Cry Buff Effect", statOrder = { 3976 }, level = 75, group = "RallyingCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["BattlemagesCryWarcryEffectEldritchImplicit1"] = { type = "Eater", affix = "", "(6-7)% increased Battlemage's Cry Buff Effect", statOrder = { 4873 }, level = 75, group = "BattlemagesCryWarcryEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["BattlemagesCryWarcryEffectEldritchImplicit2"] = { type = "Eater", affix = "", "(8-9)% increased Battlemage's Cry Buff Effect", statOrder = { 4873 }, level = 75, group = "BattlemagesCryWarcryEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["BattlemagesCryWarcryEffectEldritchImplicit3"] = { type = "Eater", affix = "", "(10-11)% increased Battlemage's Cry Buff Effect", statOrder = { 4873 }, level = 75, group = "BattlemagesCryWarcryEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["BattlemagesCryWarcryEffectEldritchImplicit4"] = { type = "Eater", affix = "", "(12-13)% increased Battlemage's Cry Buff Effect", statOrder = { 4873 }, level = 75, group = "BattlemagesCryWarcryEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["BattlemagesCryWarcryEffectEldritchImplicit5"] = { type = "Eater", affix = "", "(14-15)% increased Battlemage's Cry Buff Effect", statOrder = { 4873 }, level = 75, group = "BattlemagesCryWarcryEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["BattlemagesCryWarcryEffectEldritchImplicit6"] = { type = "Eater", affix = "", "(16-17)% increased Battlemage's Cry Buff Effect", statOrder = { 4873 }, level = 75, group = "BattlemagesCryWarcryEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["BattlemagesCryWarcryEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (12-13)% increased Battlemage's Cry Buff Effect", statOrder = { 4873 }, level = 75, group = "BattlemagesCryWarcryEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["BattlemagesCryWarcryEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (14-15)% increased Battlemage's Cry Buff Effect", statOrder = { 4873 }, level = 75, group = "BattlemagesCryWarcryEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["BattlemagesCryWarcryEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (16-17)% increased Battlemage's Cry Buff Effect", statOrder = { 4873 }, level = 75, group = "BattlemagesCryWarcryEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["BattlemagesCryWarcryEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (18-19)% increased Battlemage's Cry Buff Effect", statOrder = { 4873 }, level = 75, group = "BattlemagesCryWarcryEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["BattlemagesCryWarcryEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (20-21)% increased Battlemage's Cry Buff Effect", statOrder = { 4873 }, level = 75, group = "BattlemagesCryWarcryEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["BattlemagesCryWarcryEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (22-23)% increased Battlemage's Cry Buff Effect", statOrder = { 4873 }, level = 75, group = "BattlemagesCryWarcryEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["BattlemagesCryWarcryEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (18-19)% increased Battlemage's Cry Buff Effect", statOrder = { 4873 }, level = 75, group = "BattlemagesCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["BattlemagesCryWarcryEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% increased Battlemage's Cry Buff Effect", statOrder = { 4873 }, level = 75, group = "BattlemagesCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["BattlemagesCryWarcryEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% increased Battlemage's Cry Buff Effect", statOrder = { 4873 }, level = 75, group = "BattlemagesCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["BattlemagesCryWarcryEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% increased Battlemage's Cry Buff Effect", statOrder = { 4873 }, level = 75, group = "BattlemagesCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["BattlemagesCryWarcryEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% increased Battlemage's Cry Buff Effect", statOrder = { 4873 }, level = 75, group = "BattlemagesCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["BattlemagesCryWarcryEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% increased Battlemage's Cry Buff Effect", statOrder = { 4873 }, level = 75, group = "BattlemagesCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["InfernalCryWarcryAreaOfEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Infernal Cry has (15-17)% increased Area of Effect", statOrder = { 6892 }, level = 75, group = "InfernalCryWarcryAreaOfEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["InfernalCryWarcryAreaOfEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Infernal Cry has (18-20)% increased Area of Effect", statOrder = { 6892 }, level = 75, group = "InfernalCryWarcryAreaOfEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["InfernalCryWarcryAreaOfEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Infernal Cry has (21-23)% increased Area of Effect", statOrder = { 6892 }, level = 75, group = "InfernalCryWarcryAreaOfEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["InfernalCryWarcryAreaOfEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Infernal Cry has (24-26)% increased Area of Effect", statOrder = { 6892 }, level = 75, group = "InfernalCryWarcryAreaOfEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["InfernalCryWarcryAreaOfEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Infernal Cry has (27-29)% increased Area of Effect", statOrder = { 6892 }, level = 75, group = "InfernalCryWarcryAreaOfEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["InfernalCryWarcryAreaOfEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Infernal Cry has (30-32)% increased Area of Effect", statOrder = { 6892 }, level = 75, group = "InfernalCryWarcryAreaOfEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["InfernalCryWarcryAreaOfEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Infernal Cry has (24-26)% increased Area of Effect", statOrder = { 6892 }, level = 75, group = "InfernalCryWarcryAreaOfEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["InfernalCryWarcryAreaOfEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Infernal Cry has (27-29)% increased Area of Effect", statOrder = { 6892 }, level = 75, group = "InfernalCryWarcryAreaOfEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["InfernalCryWarcryAreaOfEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Infernal Cry has (30-32)% increased Area of Effect", statOrder = { 6892 }, level = 75, group = "InfernalCryWarcryAreaOfEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["InfernalCryWarcryAreaOfEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Infernal Cry has (33-35)% increased Area of Effect", statOrder = { 6892 }, level = 75, group = "InfernalCryWarcryAreaOfEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["InfernalCryWarcryAreaOfEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Infernal Cry has (36-38)% increased Area of Effect", statOrder = { 6892 }, level = 75, group = "InfernalCryWarcryAreaOfEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["InfernalCryWarcryAreaOfEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Infernal Cry has (39-41)% increased Area of Effect", statOrder = { 6892 }, level = 75, group = "InfernalCryWarcryAreaOfEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["InfernalCryWarcryAreaOfEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Infernal Cry has (33-35)% increased Area of Effect", statOrder = { 6892 }, level = 75, group = "InfernalCryWarcryAreaOfEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["InfernalCryWarcryAreaOfEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Infernal Cry has (36-38)% increased Area of Effect", statOrder = { 6892 }, level = 75, group = "InfernalCryWarcryAreaOfEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["InfernalCryWarcryAreaOfEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Infernal Cry has (39-41)% increased Area of Effect", statOrder = { 6892 }, level = 75, group = "InfernalCryWarcryAreaOfEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["InfernalCryWarcryAreaOfEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Infernal Cry has (42-44)% increased Area of Effect", statOrder = { 6892 }, level = 75, group = "InfernalCryWarcryAreaOfEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["InfernalCryWarcryAreaOfEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Infernal Cry has (45-47)% increased Area of Effect", statOrder = { 6892 }, level = 75, group = "InfernalCryWarcryAreaOfEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["InfernalCryWarcryAreaOfEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Infernal Cry has (48-50)% increased Area of Effect", statOrder = { 6892 }, level = 75, group = "InfernalCryWarcryAreaOfEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["GeneralsCryCooldownRecoveryEldritchImplicit1"] = { type = "Eater", affix = "", "General's Cry has (15-17)% increased Cooldown Recovery Rate", statOrder = { 6512 }, level = 75, group = "GeneralsCryCooldownRecovery", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["GeneralsCryCooldownRecoveryEldritchImplicit2"] = { type = "Eater", affix = "", "General's Cry has (18-20)% increased Cooldown Recovery Rate", statOrder = { 6512 }, level = 75, group = "GeneralsCryCooldownRecovery", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["GeneralsCryCooldownRecoveryEldritchImplicit3"] = { type = "Eater", affix = "", "General's Cry has (21-23)% increased Cooldown Recovery Rate", statOrder = { 6512 }, level = 75, group = "GeneralsCryCooldownRecovery", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["GeneralsCryCooldownRecoveryEldritchImplicit4"] = { type = "Eater", affix = "", "General's Cry has (24-26)% increased Cooldown Recovery Rate", statOrder = { 6512 }, level = 75, group = "GeneralsCryCooldownRecovery", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["GeneralsCryCooldownRecoveryEldritchImplicit5"] = { type = "Eater", affix = "", "General's Cry has (27-29)% increased Cooldown Recovery Rate", statOrder = { 6512 }, level = 75, group = "GeneralsCryCooldownRecovery", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["GeneralsCryCooldownRecoveryEldritchImplicit6"] = { type = "Eater", affix = "", "General's Cry has (30-32)% increased Cooldown Recovery Rate", statOrder = { 6512 }, level = 75, group = "GeneralsCryCooldownRecovery", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["GeneralsCryCooldownRecoveryEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, General's Cry has (24-26)% increased Cooldown Recovery Rate", statOrder = { 6512 }, level = 75, group = "GeneralsCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["GeneralsCryCooldownRecoveryEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, General's Cry has (27-29)% increased Cooldown Recovery Rate", statOrder = { 6512 }, level = 75, group = "GeneralsCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["GeneralsCryCooldownRecoveryEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, General's Cry has (30-32)% increased Cooldown Recovery Rate", statOrder = { 6512 }, level = 75, group = "GeneralsCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["GeneralsCryCooldownRecoveryEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, General's Cry has (33-35)% increased Cooldown Recovery Rate", statOrder = { 6512 }, level = 75, group = "GeneralsCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["GeneralsCryCooldownRecoveryEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, General's Cry has (36-38)% increased Cooldown Recovery Rate", statOrder = { 6512 }, level = 75, group = "GeneralsCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["GeneralsCryCooldownRecoveryEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, General's Cry has (39-41)% increased Cooldown Recovery Rate", statOrder = { 6512 }, level = 75, group = "GeneralsCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["GeneralsCryCooldownRecoveryEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, General's Cry has (33-35)% increased Cooldown Recovery Rate", statOrder = { 6512 }, level = 75, group = "GeneralsCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["GeneralsCryCooldownRecoveryEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, General's Cry has (36-38)% increased Cooldown Recovery Rate", statOrder = { 6512 }, level = 75, group = "GeneralsCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["GeneralsCryCooldownRecoveryEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, General's Cry has (39-41)% increased Cooldown Recovery Rate", statOrder = { 6512 }, level = 75, group = "GeneralsCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["GeneralsCryCooldownRecoveryEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, General's Cry has (42-44)% increased Cooldown Recovery Rate", statOrder = { 6512 }, level = 75, group = "GeneralsCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["GeneralsCryCooldownRecoveryEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, General's Cry has (45-47)% increased Cooldown Recovery Rate", statOrder = { 6512 }, level = 75, group = "GeneralsCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["GeneralsCryCooldownRecoveryEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, General's Cry has (48-50)% increased Cooldown Recovery Rate", statOrder = { 6512 }, level = 75, group = "GeneralsCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["AvoidElementalStatusAilmentsEldritchImplicit1"] = { type = "Eater", affix = "", "(15-17)% chance to Avoid Elemental Ailments", statOrder = { 1724 }, level = 75, group = "AvoidElementalStatusAilments", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, - ["AvoidElementalStatusAilmentsEldritchImplicit2"] = { type = "Eater", affix = "", "(18-20)% chance to Avoid Elemental Ailments", statOrder = { 1724 }, level = 75, group = "AvoidElementalStatusAilments", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, - ["AvoidElementalStatusAilmentsEldritchImplicit3"] = { type = "Eater", affix = "", "(21-23)% chance to Avoid Elemental Ailments", statOrder = { 1724 }, level = 75, group = "AvoidElementalStatusAilments", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, - ["AvoidElementalStatusAilmentsEldritchImplicit4"] = { type = "Eater", affix = "", "(24-26)% chance to Avoid Elemental Ailments", statOrder = { 1724 }, level = 75, group = "AvoidElementalStatusAilments", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, - ["AvoidElementalStatusAilmentsEldritchImplicit5"] = { type = "Eater", affix = "", "(27-29)% chance to Avoid Elemental Ailments", statOrder = { 1724 }, level = 75, group = "AvoidElementalStatusAilments", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, - ["AvoidElementalStatusAilmentsEldritchImplicit6"] = { type = "Eater", affix = "", "(30-32)% chance to Avoid Elemental Ailments", statOrder = { 1724 }, level = 75, group = "AvoidElementalStatusAilments", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, - ["AvoidElementalStatusAilmentsEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (24-26)% chance to Avoid Elemental Ailments", statOrder = { 1724 }, level = 75, group = "AvoidElementalStatusAilmentsUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "ailment" }, }, - ["AvoidElementalStatusAilmentsEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (27-29)% chance to Avoid Elemental Ailments", statOrder = { 1724 }, level = 75, group = "AvoidElementalStatusAilmentsUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { "elemental", "ailment" }, }, - ["AvoidElementalStatusAilmentsEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (30-32)% chance to Avoid Elemental Ailments", statOrder = { 1724 }, level = 75, group = "AvoidElementalStatusAilmentsUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { "elemental", "ailment" }, }, - ["AvoidElementalStatusAilmentsEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (33-35)% chance to Avoid Elemental Ailments", statOrder = { 1724 }, level = 75, group = "AvoidElementalStatusAilmentsUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { "elemental", "ailment" }, }, - ["AvoidElementalStatusAilmentsEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (36-38)% chance to Avoid Elemental Ailments", statOrder = { 1724 }, level = 75, group = "AvoidElementalStatusAilmentsUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { "elemental", "ailment" }, }, - ["AvoidElementalStatusAilmentsEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (39-41)% chance to Avoid Elemental Ailments", statOrder = { 1724 }, level = 75, group = "AvoidElementalStatusAilmentsUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { "elemental", "ailment" }, }, - ["AvoidElementalStatusAilmentsEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% chance to Avoid Elemental Ailments", statOrder = { 1724 }, level = 75, group = "AvoidElementalStatusAilmentsPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "ailment" }, }, - ["AvoidElementalStatusAilmentsEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% chance to Avoid Elemental Ailments", statOrder = { 1724 }, level = 75, group = "AvoidElementalStatusAilmentsPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "ailment" }, }, - ["AvoidElementalStatusAilmentsEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-41)% chance to Avoid Elemental Ailments", statOrder = { 1724 }, level = 75, group = "AvoidElementalStatusAilmentsPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 100, 0 }, modTags = { "elemental", "ailment" }, }, - ["AvoidElementalStatusAilmentsEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (42-44)% chance to Avoid Elemental Ailments", statOrder = { 1724 }, level = 75, group = "AvoidElementalStatusAilmentsPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 100, 0 }, modTags = { "elemental", "ailment" }, }, - ["AvoidElementalStatusAilmentsEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (45-47)% chance to Avoid Elemental Ailments", statOrder = { 1724 }, level = 75, group = "AvoidElementalStatusAilmentsPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 100, 0 }, modTags = { "elemental", "ailment" }, }, - ["AvoidElementalStatusAilmentsEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (48-50)% chance to Avoid Elemental Ailments", statOrder = { 1724 }, level = 75, group = "AvoidElementalStatusAilmentsPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 100, 0 }, modTags = { "elemental", "ailment" }, }, - ["ChanceToAvoidBleedingEldritchImplicit1"] = { type = "Eater", affix = "", "(33-35)% chance to Avoid Bleeding", statOrder = { 4077 }, level = 75, group = "ChanceToAvoidBleeding", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["ChanceToAvoidBleedingEldritchImplicit2"] = { type = "Eater", affix = "", "(36-38)% chance to Avoid Bleeding", statOrder = { 4077 }, level = 75, group = "ChanceToAvoidBleeding", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["ChanceToAvoidBleedingEldritchImplicit3"] = { type = "Eater", affix = "", "(39-41)% chance to Avoid Bleeding", statOrder = { 4077 }, level = 75, group = "ChanceToAvoidBleeding", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["ChanceToAvoidBleedingEldritchImplicit4"] = { type = "Eater", affix = "", "(42-44)% chance to Avoid Bleeding", statOrder = { 4077 }, level = 75, group = "ChanceToAvoidBleeding", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["ChanceToAvoidBleedingEldritchImplicit5"] = { type = "Eater", affix = "", "(45-47)% chance to Avoid Bleeding", statOrder = { 4077 }, level = 75, group = "ChanceToAvoidBleeding", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["ChanceToAvoidBleedingEldritchImplicit6"] = { type = "Eater", affix = "", "(48-50)% chance to Avoid Bleeding", statOrder = { 4077 }, level = 75, group = "ChanceToAvoidBleeding", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["ChanceToAvoidBleedingEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (42-44)% chance to Avoid Bleeding", statOrder = { 4077 }, level = 75, group = "ChanceToAvoidBleedingUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "ailment" }, }, - ["ChanceToAvoidBleedingEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (45-47)% chance to Avoid Bleeding", statOrder = { 4077 }, level = 75, group = "ChanceToAvoidBleedingUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "ailment" }, }, - ["ChanceToAvoidBleedingEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (48-50)% chance to Avoid Bleeding", statOrder = { 4077 }, level = 75, group = "ChanceToAvoidBleedingUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "ailment" }, }, - ["ChanceToAvoidBleedingEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (51-53)% chance to Avoid Bleeding", statOrder = { 4077 }, level = 75, group = "ChanceToAvoidBleedingUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "ailment" }, }, - ["ChanceToAvoidBleedingEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (54-57)% chance to Avoid Bleeding", statOrder = { 4077 }, level = 75, group = "ChanceToAvoidBleedingUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "ailment" }, }, - ["ChanceToAvoidBleedingEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (58-61)% chance to Avoid Bleeding", statOrder = { 4077 }, level = 75, group = "ChanceToAvoidBleedingUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "ailment" }, }, - ["ChanceToAvoidBleedingEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% chance to Avoid Bleeding", statOrder = { 4077 }, level = 75, group = "ChanceToAvoidBleedingPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "ailment" }, }, - ["ChanceToAvoidBleedingEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% chance to Avoid Bleeding", statOrder = { 4077 }, level = 75, group = "ChanceToAvoidBleedingPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "ailment" }, }, - ["ChanceToAvoidBleedingEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% chance to Avoid Bleeding", statOrder = { 4077 }, level = 75, group = "ChanceToAvoidBleedingPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "bleed", "physical", "ailment" }, }, - ["ChanceToAvoidBleedingEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% chance to Avoid Bleeding", statOrder = { 4077 }, level = 75, group = "ChanceToAvoidBleedingPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "bleed", "physical", "ailment" }, }, - ["ChanceToAvoidBleedingEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% chance to Avoid Bleeding", statOrder = { 4077 }, level = 75, group = "ChanceToAvoidBleedingPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "bleed", "physical", "ailment" }, }, - ["ChanceToAvoidBleedingEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% chance to Avoid Bleeding", statOrder = { 4077 }, level = 75, group = "ChanceToAvoidBleedingPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "bleed", "physical", "ailment" }, }, - ["ChanceToAvoidPoisonEldritchImplicit1"] = { type = "Eater", affix = "", "(33-35)% chance to Avoid being Poisoned", statOrder = { 1730 }, level = 75, group = "ChanceToAvoidPoison", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["ChanceToAvoidPoisonEldritchImplicit2"] = { type = "Eater", affix = "", "(36-38)% chance to Avoid being Poisoned", statOrder = { 1730 }, level = 75, group = "ChanceToAvoidPoison", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["ChanceToAvoidPoisonEldritchImplicit3"] = { type = "Eater", affix = "", "(39-41)% chance to Avoid being Poisoned", statOrder = { 1730 }, level = 75, group = "ChanceToAvoidPoison", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["ChanceToAvoidPoisonEldritchImplicit4"] = { type = "Eater", affix = "", "(42-44)% chance to Avoid being Poisoned", statOrder = { 1730 }, level = 75, group = "ChanceToAvoidPoison", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["ChanceToAvoidPoisonEldritchImplicit5"] = { type = "Eater", affix = "", "(45-47)% chance to Avoid being Poisoned", statOrder = { 1730 }, level = 75, group = "ChanceToAvoidPoison", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["ChanceToAvoidPoisonEldritchImplicit6"] = { type = "Eater", affix = "", "(48-50)% chance to Avoid being Poisoned", statOrder = { 1730 }, level = 75, group = "ChanceToAvoidPoison", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["ChanceToAvoidPoisonEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (42-44)% chance to Avoid being Poisoned", statOrder = { 1730 }, level = 75, group = "ChanceToAvoidPoisonUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["ChanceToAvoidPoisonEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (45-47)% chance to Avoid being Poisoned", statOrder = { 1730 }, level = 75, group = "ChanceToAvoidPoisonUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["ChanceToAvoidPoisonEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (48-50)% chance to Avoid being Poisoned", statOrder = { 1730 }, level = 75, group = "ChanceToAvoidPoisonUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["ChanceToAvoidPoisonEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (51-53)% chance to Avoid being Poisoned", statOrder = { 1730 }, level = 75, group = "ChanceToAvoidPoisonUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["ChanceToAvoidPoisonEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (54-57)% chance to Avoid being Poisoned", statOrder = { 1730 }, level = 75, group = "ChanceToAvoidPoisonUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["ChanceToAvoidPoisonEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (58-61)% chance to Avoid being Poisoned", statOrder = { 1730 }, level = 75, group = "ChanceToAvoidPoisonUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["ChanceToAvoidPoisonEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% chance to Avoid being Poisoned", statOrder = { 1730 }, level = 75, group = "ChanceToAvoidPoisonPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["ChanceToAvoidPoisonEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% chance to Avoid being Poisoned", statOrder = { 1730 }, level = 75, group = "ChanceToAvoidPoisonPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["ChanceToAvoidPoisonEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% chance to Avoid being Poisoned", statOrder = { 1730 }, level = 75, group = "ChanceToAvoidPoisonPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["ChanceToAvoidPoisonEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% chance to Avoid being Poisoned", statOrder = { 1730 }, level = 75, group = "ChanceToAvoidPoisonPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["ChanceToAvoidPoisonEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% chance to Avoid being Poisoned", statOrder = { 1730 }, level = 75, group = "ChanceToAvoidPoisonPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["ChanceToAvoidPoisonEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% chance to Avoid being Poisoned", statOrder = { 1730 }, level = 75, group = "ChanceToAvoidPoisonPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["GlobalCooldownRecoveryEldritchImplicit1"] = { type = "Eater", affix = "", "5% increased Cooldown Recovery Rate", statOrder = { 4822 }, level = 75, group = "GlobalCooldownRecovery", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["GlobalCooldownRecoveryEldritchImplicit2"] = { type = "Eater", affix = "", "6% increased Cooldown Recovery Rate", statOrder = { 4822 }, level = 75, group = "GlobalCooldownRecovery", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["GlobalCooldownRecoveryEldritchImplicit3"] = { type = "Eater", affix = "", "7% increased Cooldown Recovery Rate", statOrder = { 4822 }, level = 75, group = "GlobalCooldownRecovery", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["GlobalCooldownRecoveryEldritchImplicit4"] = { type = "Eater", affix = "", "8% increased Cooldown Recovery Rate", statOrder = { 4822 }, level = 75, group = "GlobalCooldownRecovery", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["GlobalCooldownRecoveryEldritchImplicit5"] = { type = "Eater", affix = "", "9% increased Cooldown Recovery Rate", statOrder = { 4822 }, level = 75, group = "GlobalCooldownRecovery", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["GlobalCooldownRecoveryEldritchImplicit6"] = { type = "Eater", affix = "", "10% increased Cooldown Recovery Rate", statOrder = { 4822 }, level = 75, group = "GlobalCooldownRecovery", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["GlobalCooldownRecoveryEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% increased Cooldown Recovery Rate", statOrder = { 4822 }, level = 75, group = "GlobalCooldownRecoveryUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["GlobalCooldownRecoveryEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% increased Cooldown Recovery Rate", statOrder = { 4822 }, level = 75, group = "GlobalCooldownRecoveryUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["GlobalCooldownRecoveryEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% increased Cooldown Recovery Rate", statOrder = { 4822 }, level = 75, group = "GlobalCooldownRecoveryUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["GlobalCooldownRecoveryEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 11% increased Cooldown Recovery Rate", statOrder = { 4822 }, level = 75, group = "GlobalCooldownRecoveryUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["GlobalCooldownRecoveryEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 12% increased Cooldown Recovery Rate", statOrder = { 4822 }, level = 75, group = "GlobalCooldownRecoveryUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["GlobalCooldownRecoveryEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 13% increased Cooldown Recovery Rate", statOrder = { 4822 }, level = 75, group = "GlobalCooldownRecoveryUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["GlobalCooldownRecoveryEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% increased Cooldown Recovery Rate", statOrder = { 4822 }, level = 75, group = "GlobalCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["GlobalCooldownRecoveryEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% increased Cooldown Recovery Rate", statOrder = { 4822 }, level = 75, group = "GlobalCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["GlobalCooldownRecoveryEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% increased Cooldown Recovery Rate", statOrder = { 4822 }, level = 75, group = "GlobalCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, - ["GlobalCooldownRecoveryEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% increased Cooldown Recovery Rate", statOrder = { 4822 }, level = 75, group = "GlobalCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, - ["GlobalCooldownRecoveryEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 15% increased Cooldown Recovery Rate", statOrder = { 4822 }, level = 75, group = "GlobalCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, - ["GlobalCooldownRecoveryEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Cooldown Recovery Rate", statOrder = { 4822 }, level = 75, group = "GlobalCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, - ["ElusiveEffectEldritchImplicit1"] = { type = "Eater", affix = "", "(6-7)% increased Elusive Effect", statOrder = { 6038 }, level = 75, group = "ElusiveEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["ElusiveEffectEldritchImplicit2"] = { type = "Eater", affix = "", "(8-9)% increased Elusive Effect", statOrder = { 6038 }, level = 75, group = "ElusiveEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["ElusiveEffectEldritchImplicit3"] = { type = "Eater", affix = "", "(10-11)% increased Elusive Effect", statOrder = { 6038 }, level = 75, group = "ElusiveEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["ElusiveEffectEldritchImplicit4"] = { type = "Eater", affix = "", "(12-13)% increased Elusive Effect", statOrder = { 6038 }, level = 75, group = "ElusiveEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["ElusiveEffectEldritchImplicit5"] = { type = "Eater", affix = "", "(14-15)% increased Elusive Effect", statOrder = { 6038 }, level = 75, group = "ElusiveEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["ElusiveEffectEldritchImplicit6"] = { type = "Eater", affix = "", "(16-17)% increased Elusive Effect", statOrder = { 6038 }, level = 75, group = "ElusiveEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["ElusiveEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (12-13)% increased Elusive Effect", statOrder = { 6038 }, level = 75, group = "ElusiveEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["ElusiveEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (14-15)% increased Elusive Effect", statOrder = { 6038 }, level = 75, group = "ElusiveEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["ElusiveEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (16-17)% increased Elusive Effect", statOrder = { 6038 }, level = 75, group = "ElusiveEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["ElusiveEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (18-19)% increased Elusive Effect", statOrder = { 6038 }, level = 75, group = "ElusiveEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["ElusiveEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (20-21)% increased Elusive Effect", statOrder = { 6038 }, level = 75, group = "ElusiveEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["ElusiveEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (22-23)% increased Elusive Effect", statOrder = { 6038 }, level = 75, group = "ElusiveEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["ElusiveEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (18-19)% increased Elusive Effect", statOrder = { 6038 }, level = 75, group = "ElusiveEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["ElusiveEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% increased Elusive Effect", statOrder = { 6038 }, level = 75, group = "ElusiveEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["ElusiveEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% increased Elusive Effect", statOrder = { 6038 }, level = 75, group = "ElusiveEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["ElusiveEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% increased Elusive Effect", statOrder = { 6038 }, level = 75, group = "ElusiveEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["ElusiveEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% increased Elusive Effect", statOrder = { 6038 }, level = 75, group = "ElusiveEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["ElusiveEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% increased Elusive Effect", statOrder = { 6038 }, level = 75, group = "ElusiveEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["SpellCriticalStrikeMultiplierEldritchImplicit1"] = { type = "Exarch", affix = "", "+(20-21)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1375 }, level = 75, group = "SpellCriticalStrikeMultiplier", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["SpellCriticalStrikeMultiplierEldritchImplicit2"] = { type = "Exarch", affix = "", "+(22-23)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1375 }, level = 75, group = "SpellCriticalStrikeMultiplier", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["SpellCriticalStrikeMultiplierEldritchImplicit3"] = { type = "Exarch", affix = "", "+(24-25)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1375 }, level = 75, group = "SpellCriticalStrikeMultiplier", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["SpellCriticalStrikeMultiplierEldritchImplicit4"] = { type = "Exarch", affix = "", "+(26-27)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1375 }, level = 75, group = "SpellCriticalStrikeMultiplier", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["SpellCriticalStrikeMultiplierEldritchImplicit5"] = { type = "Exarch", affix = "", "+(28-29)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1375 }, level = 75, group = "SpellCriticalStrikeMultiplier", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["SpellCriticalStrikeMultiplierEldritchImplicit6"] = { type = "Exarch", affix = "", "+(30-31)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1375 }, level = 75, group = "SpellCriticalStrikeMultiplier", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["SpellCriticalStrikeMultiplierEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(26-27)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1375 }, level = 75, group = "SpellCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["SpellCriticalStrikeMultiplierEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(28-29)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1375 }, level = 75, group = "SpellCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, - ["SpellCriticalStrikeMultiplierEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(30-31)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1375 }, level = 75, group = "SpellCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, - ["SpellCriticalStrikeMultiplierEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(32-33)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1375 }, level = 75, group = "SpellCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, - ["SpellCriticalStrikeMultiplierEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(34-35)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1375 }, level = 75, group = "SpellCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, - ["SpellCriticalStrikeMultiplierEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(36-37)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1375 }, level = 75, group = "SpellCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, - ["SpellCriticalStrikeMultiplierEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(32-33)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1375 }, level = 75, group = "SpellCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["SpellCriticalStrikeMultiplierEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(34-35)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1375 }, level = 75, group = "SpellCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["SpellCriticalStrikeMultiplierEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(36-37)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1375 }, level = 75, group = "SpellCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, - ["SpellCriticalStrikeMultiplierEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(38-39)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1375 }, level = 75, group = "SpellCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, - ["SpellCriticalStrikeMultiplierEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(40-41)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1375 }, level = 75, group = "SpellCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, - ["SpellCriticalStrikeMultiplierEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(42-43)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1375 }, level = 75, group = "SpellCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, - ["AttackCriticalStrikeMultiplierEldritchImplicit1"] = { type = "Exarch", affix = "", "+(20-21)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1374 }, level = 75, group = "AttackCriticalStrikeMultiplier", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["AttackCriticalStrikeMultiplierEldritchImplicit2"] = { type = "Exarch", affix = "", "+(22-23)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1374 }, level = 75, group = "AttackCriticalStrikeMultiplier", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["AttackCriticalStrikeMultiplierEldritchImplicit3"] = { type = "Exarch", affix = "", "+(24-25)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1374 }, level = 75, group = "AttackCriticalStrikeMultiplier", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["AttackCriticalStrikeMultiplierEldritchImplicit4"] = { type = "Exarch", affix = "", "+(26-27)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1374 }, level = 75, group = "AttackCriticalStrikeMultiplier", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["AttackCriticalStrikeMultiplierEldritchImplicit5"] = { type = "Exarch", affix = "", "+(28-29)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1374 }, level = 75, group = "AttackCriticalStrikeMultiplier", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["AttackCriticalStrikeMultiplierEldritchImplicit6"] = { type = "Exarch", affix = "", "+(30-31)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1374 }, level = 75, group = "AttackCriticalStrikeMultiplier", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["AttackCriticalStrikeMultiplierEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(26-27)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1374 }, level = 75, group = "AttackCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["AttackCriticalStrikeMultiplierEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(28-29)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1374 }, level = 75, group = "AttackCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, - ["AttackCriticalStrikeMultiplierEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(30-31)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1374 }, level = 75, group = "AttackCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, - ["AttackCriticalStrikeMultiplierEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(32-33)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1374 }, level = 75, group = "AttackCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, - ["AttackCriticalStrikeMultiplierEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(34-35)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1374 }, level = 75, group = "AttackCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, - ["AttackCriticalStrikeMultiplierEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(36-37)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1374 }, level = 75, group = "AttackCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, - ["AttackCriticalStrikeMultiplierEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(32-33)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1374 }, level = 75, group = "AttackCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["AttackCriticalStrikeMultiplierEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(34-35)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1374 }, level = 75, group = "AttackCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["AttackCriticalStrikeMultiplierEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(36-37)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1374 }, level = 75, group = "AttackCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, - ["AttackCriticalStrikeMultiplierEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(38-39)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1374 }, level = 75, group = "AttackCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, - ["AttackCriticalStrikeMultiplierEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(40-41)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1374 }, level = 75, group = "AttackCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, - ["AttackCriticalStrikeMultiplierEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(42-43)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1374 }, level = 75, group = "AttackCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, - ["FireDamagePercentageEldritchImplicit1"] = { type = "Exarch", affix = "", "(15-17)% increased Fire Damage", statOrder = { 1241 }, level = 75, group = "FireDamagePercentage", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePercentageEldritchImplicit2"] = { type = "Exarch", affix = "", "(18-20)% increased Fire Damage", statOrder = { 1241 }, level = 75, group = "FireDamagePercentage", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePercentageEldritchImplicit3"] = { type = "Exarch", affix = "", "(21-23)% increased Fire Damage", statOrder = { 1241 }, level = 75, group = "FireDamagePercentage", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePercentageEldritchImplicit4"] = { type = "Exarch", affix = "", "(24-26)% increased Fire Damage", statOrder = { 1241 }, level = 75, group = "FireDamagePercentage", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePercentageEldritchImplicit5"] = { type = "Exarch", affix = "", "(27-28)% increased Fire Damage", statOrder = { 1241 }, level = 75, group = "FireDamagePercentage", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePercentageEldritchImplicit6"] = { type = "Exarch", affix = "", "(29-30)% increased Fire Damage", statOrder = { 1241 }, level = 75, group = "FireDamagePercentage", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePercentageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-23)% increased Fire Damage", statOrder = { 1241 }, level = 75, group = "FireDamagePercentageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePercentageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (24-26)% increased Fire Damage", statOrder = { 1241 }, level = 75, group = "FireDamagePercentageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePercentageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-29)% increased Fire Damage", statOrder = { 1241 }, level = 75, group = "FireDamagePercentageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePercentageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (30-32)% increased Fire Damage", statOrder = { 1241 }, level = 75, group = "FireDamagePercentageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePercentageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (33-34)% increased Fire Damage", statOrder = { 1241 }, level = 75, group = "FireDamagePercentageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePercentageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (35-36)% increased Fire Damage", statOrder = { 1241 }, level = 75, group = "FireDamagePercentageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePercentageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-29)% increased Fire Damage", statOrder = { 1241 }, level = 75, group = "FireDamagePercentagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePercentageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (30-32)% increased Fire Damage", statOrder = { 1241 }, level = 75, group = "FireDamagePercentagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePercentageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% increased Fire Damage", statOrder = { 1241 }, level = 75, group = "FireDamagePercentagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePercentageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% increased Fire Damage", statOrder = { 1241 }, level = 75, group = "FireDamagePercentagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePercentageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-40)% increased Fire Damage", statOrder = { 1241 }, level = 75, group = "FireDamagePercentagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePercentageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (41-42)% increased Fire Damage", statOrder = { 1241 }, level = 75, group = "FireDamagePercentagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["ColdDamagePercentageEldritchImplicit1"] = { type = "Exarch", affix = "", "(15-17)% increased Cold Damage", statOrder = { 1250 }, level = 75, group = "ColdDamagePercentage", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePercentageEldritchImplicit2"] = { type = "Exarch", affix = "", "(18-20)% increased Cold Damage", statOrder = { 1250 }, level = 75, group = "ColdDamagePercentage", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePercentageEldritchImplicit3"] = { type = "Exarch", affix = "", "(21-23)% increased Cold Damage", statOrder = { 1250 }, level = 75, group = "ColdDamagePercentage", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePercentageEldritchImplicit4"] = { type = "Exarch", affix = "", "(24-26)% increased Cold Damage", statOrder = { 1250 }, level = 75, group = "ColdDamagePercentage", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePercentageEldritchImplicit5"] = { type = "Exarch", affix = "", "(27-28)% increased Cold Damage", statOrder = { 1250 }, level = 75, group = "ColdDamagePercentage", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePercentageEldritchImplicit6"] = { type = "Exarch", affix = "", "(29-30)% increased Cold Damage", statOrder = { 1250 }, level = 75, group = "ColdDamagePercentage", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePercentageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-23)% increased Cold Damage", statOrder = { 1250 }, level = 75, group = "ColdDamagePercentageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePercentageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (24-26)% increased Cold Damage", statOrder = { 1250 }, level = 75, group = "ColdDamagePercentageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePercentageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-29)% increased Cold Damage", statOrder = { 1250 }, level = 75, group = "ColdDamagePercentageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePercentageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (30-32)% increased Cold Damage", statOrder = { 1250 }, level = 75, group = "ColdDamagePercentageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePercentageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (33-34)% increased Cold Damage", statOrder = { 1250 }, level = 75, group = "ColdDamagePercentageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePercentageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (35-36)% increased Cold Damage", statOrder = { 1250 }, level = 75, group = "ColdDamagePercentageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePercentageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-29)% increased Cold Damage", statOrder = { 1250 }, level = 75, group = "ColdDamagePercentagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePercentageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (30-32)% increased Cold Damage", statOrder = { 1250 }, level = 75, group = "ColdDamagePercentagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePercentageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% increased Cold Damage", statOrder = { 1250 }, level = 75, group = "ColdDamagePercentagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePercentageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% increased Cold Damage", statOrder = { 1250 }, level = 75, group = "ColdDamagePercentagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePercentageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-40)% increased Cold Damage", statOrder = { 1250 }, level = 75, group = "ColdDamagePercentagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePercentageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (41-42)% increased Cold Damage", statOrder = { 1250 }, level = 75, group = "ColdDamagePercentagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["LightningDamagePercentageEldritchImplicit1"] = { type = "Exarch", affix = "", "(15-17)% increased Lightning Damage", statOrder = { 1261 }, level = 75, group = "LightningDamagePercentage", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningDamagePercentageEldritchImplicit2"] = { type = "Exarch", affix = "", "(18-20)% increased Lightning Damage", statOrder = { 1261 }, level = 75, group = "LightningDamagePercentage", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningDamagePercentageEldritchImplicit3"] = { type = "Exarch", affix = "", "(21-23)% increased Lightning Damage", statOrder = { 1261 }, level = 75, group = "LightningDamagePercentage", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningDamagePercentageEldritchImplicit4"] = { type = "Exarch", affix = "", "(24-26)% increased Lightning Damage", statOrder = { 1261 }, level = 75, group = "LightningDamagePercentage", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningDamagePercentageEldritchImplicit5"] = { type = "Exarch", affix = "", "(27-28)% increased Lightning Damage", statOrder = { 1261 }, level = 75, group = "LightningDamagePercentage", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningDamagePercentageEldritchImplicit6"] = { type = "Exarch", affix = "", "(29-30)% increased Lightning Damage", statOrder = { 1261 }, level = 75, group = "LightningDamagePercentage", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningDamagePercentageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-23)% increased Lightning Damage", statOrder = { 1261 }, level = 75, group = "LightningDamagePercentageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningDamagePercentageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (24-26)% increased Lightning Damage", statOrder = { 1261 }, level = 75, group = "LightningDamagePercentageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningDamagePercentageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-29)% increased Lightning Damage", statOrder = { 1261 }, level = 75, group = "LightningDamagePercentageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningDamagePercentageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (30-32)% increased Lightning Damage", statOrder = { 1261 }, level = 75, group = "LightningDamagePercentageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningDamagePercentageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (33-34)% increased Lightning Damage", statOrder = { 1261 }, level = 75, group = "LightningDamagePercentageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningDamagePercentageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (35-36)% increased Lightning Damage", statOrder = { 1261 }, level = 75, group = "LightningDamagePercentageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningDamagePercentageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-29)% increased Lightning Damage", statOrder = { 1261 }, level = 75, group = "LightningDamagePercentagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningDamagePercentageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (30-32)% increased Lightning Damage", statOrder = { 1261 }, level = 75, group = "LightningDamagePercentagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningDamagePercentageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% increased Lightning Damage", statOrder = { 1261 }, level = 75, group = "LightningDamagePercentagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningDamagePercentageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% increased Lightning Damage", statOrder = { 1261 }, level = 75, group = "LightningDamagePercentagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningDamagePercentageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-40)% increased Lightning Damage", statOrder = { 1261 }, level = 75, group = "LightningDamagePercentagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningDamagePercentageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (41-42)% increased Lightning Damage", statOrder = { 1261 }, level = 75, group = "LightningDamagePercentagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["IncreasedChaosDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "(15-17)% increased Chaos Damage", statOrder = { 1269 }, level = 75, group = "IncreasedChaosDamage", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["IncreasedChaosDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "(18-20)% increased Chaos Damage", statOrder = { 1269 }, level = 75, group = "IncreasedChaosDamage", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["IncreasedChaosDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "(21-23)% increased Chaos Damage", statOrder = { 1269 }, level = 75, group = "IncreasedChaosDamage", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["IncreasedChaosDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "(24-26)% increased Chaos Damage", statOrder = { 1269 }, level = 75, group = "IncreasedChaosDamage", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["IncreasedChaosDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "(27-28)% increased Chaos Damage", statOrder = { 1269 }, level = 75, group = "IncreasedChaosDamage", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["IncreasedChaosDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "(29-30)% increased Chaos Damage", statOrder = { 1269 }, level = 75, group = "IncreasedChaosDamage", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["IncreasedChaosDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-23)% increased Chaos Damage", statOrder = { 1269 }, level = 75, group = "IncreasedChaosDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["IncreasedChaosDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (24-26)% increased Chaos Damage", statOrder = { 1269 }, level = 75, group = "IncreasedChaosDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["IncreasedChaosDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-29)% increased Chaos Damage", statOrder = { 1269 }, level = 75, group = "IncreasedChaosDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["IncreasedChaosDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (30-32)% increased Chaos Damage", statOrder = { 1269 }, level = 75, group = "IncreasedChaosDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["IncreasedChaosDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (33-34)% increased Chaos Damage", statOrder = { 1269 }, level = 75, group = "IncreasedChaosDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["IncreasedChaosDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (35-36)% increased Chaos Damage", statOrder = { 1269 }, level = 75, group = "IncreasedChaosDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["IncreasedChaosDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-29)% increased Chaos Damage", statOrder = { 1269 }, level = 75, group = "IncreasedChaosDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["IncreasedChaosDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (30-32)% increased Chaos Damage", statOrder = { 1269 }, level = 75, group = "IncreasedChaosDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["IncreasedChaosDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% increased Chaos Damage", statOrder = { 1269 }, level = 75, group = "IncreasedChaosDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["IncreasedChaosDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% increased Chaos Damage", statOrder = { 1269 }, level = 75, group = "IncreasedChaosDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["IncreasedChaosDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-40)% increased Chaos Damage", statOrder = { 1269 }, level = 75, group = "IncreasedChaosDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["IncreasedChaosDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (41-42)% increased Chaos Damage", statOrder = { 1269 }, level = 75, group = "IncreasedChaosDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["PhysicalDamagePercentEldritchImplicit1"] = { type = "Exarch", affix = "", "(15-17)% increased Global Physical Damage", statOrder = { 1116 }, level = 75, group = "PhysicalDamagePercent", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["PhysicalDamagePercentEldritchImplicit2"] = { type = "Exarch", affix = "", "(18-20)% increased Global Physical Damage", statOrder = { 1116 }, level = 75, group = "PhysicalDamagePercent", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["PhysicalDamagePercentEldritchImplicit3"] = { type = "Exarch", affix = "", "(21-23)% increased Global Physical Damage", statOrder = { 1116 }, level = 75, group = "PhysicalDamagePercent", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["PhysicalDamagePercentEldritchImplicit4"] = { type = "Exarch", affix = "", "(24-26)% increased Global Physical Damage", statOrder = { 1116 }, level = 75, group = "PhysicalDamagePercent", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["PhysicalDamagePercentEldritchImplicit5"] = { type = "Exarch", affix = "", "(27-28)% increased Global Physical Damage", statOrder = { 1116 }, level = 75, group = "PhysicalDamagePercent", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["PhysicalDamagePercentEldritchImplicit6"] = { type = "Exarch", affix = "", "(29-30)% increased Global Physical Damage", statOrder = { 1116 }, level = 75, group = "PhysicalDamagePercent", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["PhysicalDamagePercentEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-23)% increased Global Physical Damage", statOrder = { 1116 }, level = 75, group = "PhysicalDamagePercentUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["PhysicalDamagePercentEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (24-26)% increased Global Physical Damage", statOrder = { 1116 }, level = 75, group = "PhysicalDamagePercentUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["PhysicalDamagePercentEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-29)% increased Global Physical Damage", statOrder = { 1116 }, level = 75, group = "PhysicalDamagePercentUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["PhysicalDamagePercentEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (30-32)% increased Global Physical Damage", statOrder = { 1116 }, level = 75, group = "PhysicalDamagePercentUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["PhysicalDamagePercentEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (33-34)% increased Global Physical Damage", statOrder = { 1116 }, level = 75, group = "PhysicalDamagePercentUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["PhysicalDamagePercentEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (35-36)% increased Global Physical Damage", statOrder = { 1116 }, level = 75, group = "PhysicalDamagePercentUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["PhysicalDamagePercentEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-29)% increased Global Physical Damage", statOrder = { 1116 }, level = 75, group = "PhysicalDamagePercentPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["PhysicalDamagePercentEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (30-32)% increased Global Physical Damage", statOrder = { 1116 }, level = 75, group = "PhysicalDamagePercentPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["PhysicalDamagePercentEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% increased Global Physical Damage", statOrder = { 1116 }, level = 75, group = "PhysicalDamagePercentPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["PhysicalDamagePercentEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% increased Global Physical Damage", statOrder = { 1116 }, level = 75, group = "PhysicalDamagePercentPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["PhysicalDamagePercentEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-40)% increased Global Physical Damage", statOrder = { 1116 }, level = 75, group = "PhysicalDamagePercentPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["PhysicalDamagePercentEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (41-42)% increased Global Physical Damage", statOrder = { 1116 }, level = 75, group = "PhysicalDamagePercentPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["ArcticArmourBuffEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(15-17)% increased Arctic Armour Buff Effect", statOrder = { 3884 }, level = 75, group = "ArcticArmourBuffEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["ArcticArmourBuffEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(18-20)% increased Arctic Armour Buff Effect", statOrder = { 3884 }, level = 75, group = "ArcticArmourBuffEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["ArcticArmourBuffEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(21-23)% increased Arctic Armour Buff Effect", statOrder = { 3884 }, level = 75, group = "ArcticArmourBuffEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["ArcticArmourBuffEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(24-26)% increased Arctic Armour Buff Effect", statOrder = { 3884 }, level = 75, group = "ArcticArmourBuffEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["ArcticArmourBuffEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(27-29)% increased Arctic Armour Buff Effect", statOrder = { 3884 }, level = 75, group = "ArcticArmourBuffEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["ArcticArmourBuffEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(30-32)% increased Arctic Armour Buff Effect", statOrder = { 3884 }, level = 75, group = "ArcticArmourBuffEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["ArcticArmourBuffEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (24-26)% increased Arctic Armour Buff Effect", statOrder = { 3884 }, level = 75, group = "ArcticArmourBuffEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["ArcticArmourBuffEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-29)% increased Arctic Armour Buff Effect", statOrder = { 3884 }, level = 75, group = "ArcticArmourBuffEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["ArcticArmourBuffEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (30-32)% increased Arctic Armour Buff Effect", statOrder = { 3884 }, level = 75, group = "ArcticArmourBuffEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["ArcticArmourBuffEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (33-35)% increased Arctic Armour Buff Effect", statOrder = { 3884 }, level = 75, group = "ArcticArmourBuffEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["ArcticArmourBuffEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (36-38)% increased Arctic Armour Buff Effect", statOrder = { 3884 }, level = 75, group = "ArcticArmourBuffEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["ArcticArmourBuffEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (39-41)% increased Arctic Armour Buff Effect", statOrder = { 3884 }, level = 75, group = "ArcticArmourBuffEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["ArcticArmourBuffEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% increased Arctic Armour Buff Effect", statOrder = { 3884 }, level = 75, group = "ArcticArmourBuffEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["ArcticArmourBuffEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% increased Arctic Armour Buff Effect", statOrder = { 3884 }, level = 75, group = "ArcticArmourBuffEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["ArcticArmourBuffEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-41)% increased Arctic Armour Buff Effect", statOrder = { 3884 }, level = 75, group = "ArcticArmourBuffEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["ArcticArmourBuffEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (42-44)% increased Arctic Armour Buff Effect", statOrder = { 3884 }, level = 75, group = "ArcticArmourBuffEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["ArcticArmourBuffEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (45-47)% increased Arctic Armour Buff Effect", statOrder = { 3884 }, level = 75, group = "ArcticArmourBuffEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["ArcticArmourBuffEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (48-50)% increased Arctic Armour Buff Effect", statOrder = { 3884 }, level = 75, group = "ArcticArmourBuffEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["FleshAndStoneAreaOfEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Flesh and Stone has (15-17)% increased Area of Effect", statOrder = { 6317 }, level = 75, group = "FleshAndStoneAreaOfEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["FleshAndStoneAreaOfEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Flesh and Stone has (18-20)% increased Area of Effect", statOrder = { 6317 }, level = 75, group = "FleshAndStoneAreaOfEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["FleshAndStoneAreaOfEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Flesh and Stone has (21-23)% increased Area of Effect", statOrder = { 6317 }, level = 75, group = "FleshAndStoneAreaOfEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["FleshAndStoneAreaOfEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Flesh and Stone has (24-26)% increased Area of Effect", statOrder = { 6317 }, level = 75, group = "FleshAndStoneAreaOfEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["FleshAndStoneAreaOfEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Flesh and Stone has (27-29)% increased Area of Effect", statOrder = { 6317 }, level = 75, group = "FleshAndStoneAreaOfEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["FleshAndStoneAreaOfEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Flesh and Stone has (30-32)% increased Area of Effect", statOrder = { 6317 }, level = 75, group = "FleshAndStoneAreaOfEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["FleshAndStoneAreaOfEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh and Stone has (24-26)% increased Area of Effect", statOrder = { 6317 }, level = 75, group = "FleshAndStoneAreaOfEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["FleshAndStoneAreaOfEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh and Stone has (27-29)% increased Area of Effect", statOrder = { 6317 }, level = 75, group = "FleshAndStoneAreaOfEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["FleshAndStoneAreaOfEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh and Stone has (30-32)% increased Area of Effect", statOrder = { 6317 }, level = 75, group = "FleshAndStoneAreaOfEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["FleshAndStoneAreaOfEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh and Stone has (33-35)% increased Area of Effect", statOrder = { 6317 }, level = 75, group = "FleshAndStoneAreaOfEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["FleshAndStoneAreaOfEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh and Stone has (36-38)% increased Area of Effect", statOrder = { 6317 }, level = 75, group = "FleshAndStoneAreaOfEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["FleshAndStoneAreaOfEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh and Stone has (39-41)% increased Area of Effect", statOrder = { 6317 }, level = 75, group = "FleshAndStoneAreaOfEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["FleshAndStoneAreaOfEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh and Stone has (33-35)% increased Area of Effect", statOrder = { 6317 }, level = 75, group = "FleshAndStoneAreaOfEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["FleshAndStoneAreaOfEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh and Stone has (36-38)% increased Area of Effect", statOrder = { 6317 }, level = 75, group = "FleshAndStoneAreaOfEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["FleshAndStoneAreaOfEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh and Stone has (39-41)% increased Area of Effect", statOrder = { 6317 }, level = 75, group = "FleshAndStoneAreaOfEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["FleshAndStoneAreaOfEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh and Stone has (42-44)% increased Area of Effect", statOrder = { 6317 }, level = 75, group = "FleshAndStoneAreaOfEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["FleshAndStoneAreaOfEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh and Stone has (45-47)% increased Area of Effect", statOrder = { 6317 }, level = 75, group = "FleshAndStoneAreaOfEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["FleshAndStoneAreaOfEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh and Stone has (48-50)% increased Area of Effect", statOrder = { 6317 }, level = 75, group = "FleshAndStoneAreaOfEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["TempestShieldBuffEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Tempest Shield has (15-17)% increased Buff Effect", statOrder = { 9844 }, level = 75, group = "TempestShieldBuffEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["TempestShieldBuffEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Tempest Shield has (18-20)% increased Buff Effect", statOrder = { 9844 }, level = 75, group = "TempestShieldBuffEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["TempestShieldBuffEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Tempest Shield has (21-23)% increased Buff Effect", statOrder = { 9844 }, level = 75, group = "TempestShieldBuffEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["TempestShieldBuffEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Tempest Shield has (24-26)% increased Buff Effect", statOrder = { 9844 }, level = 75, group = "TempestShieldBuffEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["TempestShieldBuffEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Tempest Shield has (27-29)% increased Buff Effect", statOrder = { 9844 }, level = 75, group = "TempestShieldBuffEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["TempestShieldBuffEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Tempest Shield has (30-32)% increased Buff Effect", statOrder = { 9844 }, level = 75, group = "TempestShieldBuffEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["TempestShieldBuffEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Tempest Shield has (24-26)% increased Buff Effect", statOrder = { 9844 }, level = 75, group = "TempestShieldBuffEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["TempestShieldBuffEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Tempest Shield has (27-29)% increased Buff Effect", statOrder = { 9844 }, level = 75, group = "TempestShieldBuffEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["TempestShieldBuffEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Tempest Shield has (30-32)% increased Buff Effect", statOrder = { 9844 }, level = 75, group = "TempestShieldBuffEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["TempestShieldBuffEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Tempest Shield has (33-35)% increased Buff Effect", statOrder = { 9844 }, level = 75, group = "TempestShieldBuffEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["TempestShieldBuffEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Tempest Shield has (36-38)% increased Buff Effect", statOrder = { 9844 }, level = 75, group = "TempestShieldBuffEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["TempestShieldBuffEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Tempest Shield has (39-41)% increased Buff Effect", statOrder = { 9844 }, level = 75, group = "TempestShieldBuffEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["TempestShieldBuffEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Tempest Shield has (33-35)% increased Buff Effect", statOrder = { 9844 }, level = 75, group = "TempestShieldBuffEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["TempestShieldBuffEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Tempest Shield has (36-38)% increased Buff Effect", statOrder = { 9844 }, level = 75, group = "TempestShieldBuffEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["TempestShieldBuffEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Tempest Shield has (39-41)% increased Buff Effect", statOrder = { 9844 }, level = 75, group = "TempestShieldBuffEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["TempestShieldBuffEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Tempest Shield has (42-44)% increased Buff Effect", statOrder = { 9844 }, level = 75, group = "TempestShieldBuffEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["TempestShieldBuffEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Tempest Shield has (45-47)% increased Buff Effect", statOrder = { 9844 }, level = 75, group = "TempestShieldBuffEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["TempestShieldBuffEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Tempest Shield has (48-50)% increased Buff Effect", statOrder = { 9844 }, level = 75, group = "TempestShieldBuffEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["DamageRemovedFromManaBeforeLifeEldritchImplicit1"] = { type = "Exarch", affix = "", "5% of Damage is taken from Mana before Life", statOrder = { 2572 }, level = 75, group = "DamageRemovedFromManaBeforeLife", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "mana" }, }, - ["DamageRemovedFromManaBeforeLifeEldritchImplicit2"] = { type = "Exarch", affix = "", "6% of Damage is taken from Mana before Life", statOrder = { 2572 }, level = 75, group = "DamageRemovedFromManaBeforeLife", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "mana" }, }, - ["DamageRemovedFromManaBeforeLifeEldritchImplicit3"] = { type = "Exarch", affix = "", "7% of Damage is taken from Mana before Life", statOrder = { 2572 }, level = 75, group = "DamageRemovedFromManaBeforeLife", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "mana" }, }, - ["DamageRemovedFromManaBeforeLifeEldritchImplicit4"] = { type = "Exarch", affix = "", "8% of Damage is taken from Mana before Life", statOrder = { 2572 }, level = 75, group = "DamageRemovedFromManaBeforeLife", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "mana" }, }, - ["DamageRemovedFromManaBeforeLifeEldritchImplicit5"] = { type = "Exarch", affix = "", "9% of Damage is taken from Mana before Life", statOrder = { 2572 }, level = 75, group = "DamageRemovedFromManaBeforeLife", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "mana" }, }, - ["DamageRemovedFromManaBeforeLifeEldritchImplicit6"] = { type = "Exarch", affix = "", "10% of Damage is taken from Mana before Life", statOrder = { 2572 }, level = 75, group = "DamageRemovedFromManaBeforeLife", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "mana" }, }, - ["DamageRemovedFromManaBeforeLifeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 7% of Damage is taken from Mana before Life", statOrder = { 2572 }, level = 75, group = "DamageRemovedFromManaBeforeLifeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["DamageRemovedFromManaBeforeLifeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 8% of Damage is taken from Mana before Life", statOrder = { 2572 }, level = 75, group = "DamageRemovedFromManaBeforeLifeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["DamageRemovedFromManaBeforeLifeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 9% of Damage is taken from Mana before Life", statOrder = { 2572 }, level = 75, group = "DamageRemovedFromManaBeforeLifeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["DamageRemovedFromManaBeforeLifeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 10% of Damage is taken from Mana before Life", statOrder = { 2572 }, level = 75, group = "DamageRemovedFromManaBeforeLifeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["DamageRemovedFromManaBeforeLifeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 11% of Damage is taken from Mana before Life", statOrder = { 2572 }, level = 75, group = "DamageRemovedFromManaBeforeLifeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["DamageRemovedFromManaBeforeLifeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 12% of Damage is taken from Mana before Life", statOrder = { 2572 }, level = 75, group = "DamageRemovedFromManaBeforeLifeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["DamageRemovedFromManaBeforeLifeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 9% of Damage is taken from Mana before Life", statOrder = { 2572 }, level = 75, group = "DamageRemovedFromManaBeforeLifePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["DamageRemovedFromManaBeforeLifeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% of Damage is taken from Mana before Life", statOrder = { 2572 }, level = 75, group = "DamageRemovedFromManaBeforeLifePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["DamageRemovedFromManaBeforeLifeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% of Damage is taken from Mana before Life", statOrder = { 2572 }, level = 75, group = "DamageRemovedFromManaBeforeLifePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["DamageRemovedFromManaBeforeLifeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% of Damage is taken from Mana before Life", statOrder = { 2572 }, level = 75, group = "DamageRemovedFromManaBeforeLifePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["DamageRemovedFromManaBeforeLifeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% of Damage is taken from Mana before Life", statOrder = { 2572 }, level = 75, group = "DamageRemovedFromManaBeforeLifePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["DamageRemovedFromManaBeforeLifeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% of Damage is taken from Mana before Life", statOrder = { 2572 }, level = 75, group = "DamageRemovedFromManaBeforeLifePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["GolemBuffEffectUniqueEldritchImplicit1"] = { type = "Exarch", affix = "", "(19-21)% increased Effect of Buffs granted by your Golems", statOrder = { 6541 }, level = 75, group = "GolemBuffEffectUnique", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["GolemBuffEffectUniqueEldritchImplicit2"] = { type = "Exarch", affix = "", "(22-24)% increased Effect of Buffs granted by your Golems", statOrder = { 6541 }, level = 75, group = "GolemBuffEffectUnique", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["GolemBuffEffectUniqueEldritchImplicit3"] = { type = "Exarch", affix = "", "(25-27)% increased Effect of Buffs granted by your Golems", statOrder = { 6541 }, level = 75, group = "GolemBuffEffectUnique", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["GolemBuffEffectUniqueEldritchImplicit4"] = { type = "Exarch", affix = "", "(28-30)% increased Effect of Buffs granted by your Golems", statOrder = { 6541 }, level = 75, group = "GolemBuffEffectUnique", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["GolemBuffEffectUniqueEldritchImplicit5"] = { type = "Exarch", affix = "", "(31-33)% increased Effect of Buffs granted by your Golems", statOrder = { 6541 }, level = 75, group = "GolemBuffEffectUnique", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["GolemBuffEffectUniqueEldritchImplicit6"] = { type = "Exarch", affix = "", "(34-36)% increased Effect of Buffs granted by your Golems", statOrder = { 6541 }, level = 75, group = "GolemBuffEffectUnique", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["GolemBuffEffectUniqueEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (31-33)% increased Effect of Buffs granted by your Golems", statOrder = { 6541 }, level = 75, group = "GolemBuffEffectUniqueUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["GolemBuffEffectUniqueEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (34-36)% increased Effect of Buffs granted by your Golems", statOrder = { 6541 }, level = 75, group = "GolemBuffEffectUniqueUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["GolemBuffEffectUniqueEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (37-39)% increased Effect of Buffs granted by your Golems", statOrder = { 6541 }, level = 75, group = "GolemBuffEffectUniqueUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["GolemBuffEffectUniqueEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (40-42)% increased Effect of Buffs granted by your Golems", statOrder = { 6541 }, level = 75, group = "GolemBuffEffectUniqueUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["GolemBuffEffectUniqueEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Effect of Buffs granted by your Golems", statOrder = { 6541 }, level = 75, group = "GolemBuffEffectUniqueUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["GolemBuffEffectUniqueEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Effect of Buffs granted by your Golems", statOrder = { 6541 }, level = 75, group = "GolemBuffEffectUniqueUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["GolemBuffEffectUniqueEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (43-45)% increased Effect of Buffs granted by your Golems", statOrder = { 6541 }, level = 75, group = "GolemBuffEffectUniquePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["GolemBuffEffectUniqueEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (46-48)% increased Effect of Buffs granted by your Golems", statOrder = { 6541 }, level = 75, group = "GolemBuffEffectUniquePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["GolemBuffEffectUniqueEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (49-51)% increased Effect of Buffs granted by your Golems", statOrder = { 6541 }, level = 75, group = "GolemBuffEffectUniquePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["GolemBuffEffectUniqueEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (52-54)% increased Effect of Buffs granted by your Golems", statOrder = { 6541 }, level = 75, group = "GolemBuffEffectUniquePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["GolemBuffEffectUniqueEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Effect of Buffs granted by your Golems", statOrder = { 6541 }, level = 75, group = "GolemBuffEffectUniquePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["GolemBuffEffectUniqueEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Effect of Buffs granted by your Golems", statOrder = { 6541 }, level = 75, group = "GolemBuffEffectUniquePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["AuraEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(9-10)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3429 }, level = 75, group = "AuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "aura" }, }, - ["AuraEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(11-12)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3429 }, level = 75, group = "AuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "aura" }, }, - ["AuraEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(13-14)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3429 }, level = 75, group = "AuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "aura" }, }, - ["AuraEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(15-16)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3429 }, level = 75, group = "AuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "aura" }, }, - ["AuraEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(17-18)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3429 }, level = 75, group = "AuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "aura" }, }, - ["AuraEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(19-20)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3429 }, level = 75, group = "AuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "aura" }, }, - ["AuraEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (17-18)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3429 }, level = 75, group = "AuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["AuraEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (19-20)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3429 }, level = 75, group = "AuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, }, - ["AuraEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-22)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3429 }, level = 75, group = "AuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, }, - ["AuraEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (23-24)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3429 }, level = 75, group = "AuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, }, - ["AuraEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (25-26)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3429 }, level = 75, group = "AuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, }, - ["AuraEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-28)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3429 }, level = 75, group = "AuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, }, - ["AuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3429 }, level = 75, group = "AuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["AuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3429 }, level = 75, group = "AuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["AuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3429 }, level = 75, group = "AuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, - ["AuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (31-32)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3429 }, level = 75, group = "AuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, - ["AuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-34)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3429 }, level = 75, group = "AuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, - ["AuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (35-36)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3429 }, level = 75, group = "AuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, - ["CurseEffectivenessEldritchImplicit1"] = { type = "Exarch", affix = "", "7% increased Effect of your Curses", statOrder = { 2472 }, level = 75, group = "CurseEffectiveness", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "curse" }, }, - ["CurseEffectivenessEldritchImplicit2"] = { type = "Exarch", affix = "", "8% increased Effect of your Curses", statOrder = { 2472 }, level = 75, group = "CurseEffectiveness", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "curse" }, }, - ["CurseEffectivenessEldritchImplicit3"] = { type = "Exarch", affix = "", "9% increased Effect of your Curses", statOrder = { 2472 }, level = 75, group = "CurseEffectiveness", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "curse" }, }, - ["CurseEffectivenessEldritchImplicit4"] = { type = "Exarch", affix = "", "10% increased Effect of your Curses", statOrder = { 2472 }, level = 75, group = "CurseEffectiveness", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "curse" }, }, - ["CurseEffectivenessEldritchImplicit5"] = { type = "Exarch", affix = "", "11% increased Effect of your Curses", statOrder = { 2472 }, level = 75, group = "CurseEffectiveness", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "curse" }, }, - ["CurseEffectivenessEldritchImplicit6"] = { type = "Exarch", affix = "", "12% increased Effect of your Curses", statOrder = { 2472 }, level = 75, group = "CurseEffectiveness", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "curse" }, }, - ["CurseEffectivenessEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 10% increased Effect of your Curses", statOrder = { 2472 }, level = 75, group = "CurseEffectivenessUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "curse" }, }, - ["CurseEffectivenessEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 11% increased Effect of your Curses", statOrder = { 2472 }, level = 75, group = "CurseEffectivenessUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { "curse" }, }, - ["CurseEffectivenessEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 12% increased Effect of your Curses", statOrder = { 2472 }, level = 75, group = "CurseEffectivenessUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { "curse" }, }, - ["CurseEffectivenessEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 13% increased Effect of your Curses", statOrder = { 2472 }, level = 75, group = "CurseEffectivenessUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { "curse" }, }, - ["CurseEffectivenessEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Effect of your Curses", statOrder = { 2472 }, level = 75, group = "CurseEffectivenessUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { "curse" }, }, - ["CurseEffectivenessEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Effect of your Curses", statOrder = { 2472 }, level = 75, group = "CurseEffectivenessUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { "curse" }, }, - ["CurseEffectivenessEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% increased Effect of your Curses", statOrder = { 2472 }, level = 75, group = "CurseEffectivenessPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "curse" }, }, - ["CurseEffectivenessEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% increased Effect of your Curses", statOrder = { 2472 }, level = 75, group = "CurseEffectivenessPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "curse" }, }, - ["CurseEffectivenessEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 15% increased Effect of your Curses", statOrder = { 2472 }, level = 75, group = "CurseEffectivenessPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { "curse" }, }, - ["CurseEffectivenessEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Effect of your Curses", statOrder = { 2472 }, level = 75, group = "CurseEffectivenessPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { "curse" }, }, - ["CurseEffectivenessEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 17% increased Effect of your Curses", statOrder = { 2472 }, level = 75, group = "CurseEffectivenessPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { "curse" }, }, - ["CurseEffectivenessEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Effect of your Curses", statOrder = { 2472 }, level = 75, group = "CurseEffectivenessPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { "curse" }, }, - ["OfferingEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(13-14)% increased effect of Offerings", statOrder = { 3925 }, level = 75, group = "OfferingEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["OfferingEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(15-16)% increased effect of Offerings", statOrder = { 3925 }, level = 75, group = "OfferingEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["OfferingEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(17-18)% increased effect of Offerings", statOrder = { 3925 }, level = 75, group = "OfferingEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["OfferingEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(19-20)% increased effect of Offerings", statOrder = { 3925 }, level = 75, group = "OfferingEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["OfferingEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(21-22)% increased effect of Offerings", statOrder = { 3925 }, level = 75, group = "OfferingEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["OfferingEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(23-24)% increased effect of Offerings", statOrder = { 3925 }, level = 75, group = "OfferingEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["OfferingEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (19-20)% increased effect of Offerings", statOrder = { 3925 }, level = 75, group = "OfferingEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["OfferingEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-22)% increased effect of Offerings", statOrder = { 3925 }, level = 75, group = "OfferingEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["OfferingEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (23-24)% increased effect of Offerings", statOrder = { 3925 }, level = 75, group = "OfferingEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["OfferingEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (25-26)% increased effect of Offerings", statOrder = { 3925 }, level = 75, group = "OfferingEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["OfferingEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-28)% increased effect of Offerings", statOrder = { 3925 }, level = 75, group = "OfferingEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["OfferingEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (29-30)% increased effect of Offerings", statOrder = { 3925 }, level = 75, group = "OfferingEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["OfferingEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% increased effect of Offerings", statOrder = { 3925 }, level = 75, group = "OfferingEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["OfferingEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% increased effect of Offerings", statOrder = { 3925 }, level = 75, group = "OfferingEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["OfferingEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% increased effect of Offerings", statOrder = { 3925 }, level = 75, group = "OfferingEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["OfferingEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (31-32)% increased effect of Offerings", statOrder = { 3925 }, level = 75, group = "OfferingEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["OfferingEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-34)% increased effect of Offerings", statOrder = { 3925 }, level = 75, group = "OfferingEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["OfferingEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (35-36)% increased effect of Offerings", statOrder = { 3925 }, level = 75, group = "OfferingEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WarcryEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(19-20)% increased Warcry Buff Effect", statOrder = { 10035 }, level = 75, group = "WarcryEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["WarcryEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(21-22)% increased Warcry Buff Effect", statOrder = { 10035 }, level = 75, group = "WarcryEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["WarcryEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(23-24)% increased Warcry Buff Effect", statOrder = { 10035 }, level = 75, group = "WarcryEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["WarcryEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(25-26)% increased Warcry Buff Effect", statOrder = { 10035 }, level = 75, group = "WarcryEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["WarcryEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(27-28)% increased Warcry Buff Effect", statOrder = { 10035 }, level = 75, group = "WarcryEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["WarcryEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(29-30)% increased Warcry Buff Effect", statOrder = { 10035 }, level = 75, group = "WarcryEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["WarcryEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (25-26)% increased Warcry Buff Effect", statOrder = { 10035 }, level = 75, group = "WarcryEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["WarcryEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-28)% increased Warcry Buff Effect", statOrder = { 10035 }, level = 75, group = "WarcryEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WarcryEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (29-30)% increased Warcry Buff Effect", statOrder = { 10035 }, level = 75, group = "WarcryEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WarcryEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (31-32)% increased Warcry Buff Effect", statOrder = { 10035 }, level = 75, group = "WarcryEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WarcryEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (33-34)% increased Warcry Buff Effect", statOrder = { 10035 }, level = 75, group = "WarcryEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WarcryEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (35-36)% increased Warcry Buff Effect", statOrder = { 10035 }, level = 75, group = "WarcryEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WarcryEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (31-32)% increased Warcry Buff Effect", statOrder = { 10035 }, level = 75, group = "WarcryEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["WarcryEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-34)% increased Warcry Buff Effect", statOrder = { 10035 }, level = 75, group = "WarcryEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["WarcryEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (35-36)% increased Warcry Buff Effect", statOrder = { 10035 }, level = 75, group = "WarcryEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WarcryEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (37-38)% increased Warcry Buff Effect", statOrder = { 10035 }, level = 75, group = "WarcryEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WarcryEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-40)% increased Warcry Buff Effect", statOrder = { 10035 }, level = 75, group = "WarcryEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WarcryEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (41-42)% increased Warcry Buff Effect", statOrder = { 10035 }, level = 75, group = "WarcryEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["FlaskEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Flasks applied to you have (6-7)% increased Effect", statOrder = { 2617 }, level = 75, group = "FlaskEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "flask" }, }, - ["FlaskEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Flasks applied to you have (8-9)% increased Effect", statOrder = { 2617 }, level = 75, group = "FlaskEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "flask" }, }, - ["FlaskEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Flasks applied to you have (10-11)% increased Effect", statOrder = { 2617 }, level = 75, group = "FlaskEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "flask" }, }, - ["FlaskEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Flasks applied to you have (12-13)% increased Effect", statOrder = { 2617 }, level = 75, group = "FlaskEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "flask" }, }, - ["FlaskEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Flasks applied to you have (14-15)% increased Effect", statOrder = { 2617 }, level = 75, group = "FlaskEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "flask" }, }, - ["FlaskEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Flasks applied to you have (16-17)% increased Effect", statOrder = { 2617 }, level = 75, group = "FlaskEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "flask" }, }, - ["FlaskEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks applied to you have (12-13)% increased Effect", statOrder = { 2617 }, level = 75, group = "FlaskEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "flask" }, }, - ["FlaskEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks applied to you have (14-15)% increased Effect", statOrder = { 2617 }, level = 75, group = "FlaskEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "flask" }, }, - ["FlaskEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks applied to you have (16-17)% increased Effect", statOrder = { 2617 }, level = 75, group = "FlaskEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "flask" }, }, - ["FlaskEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks applied to you have (18-19)% increased Effect", statOrder = { 2617 }, level = 75, group = "FlaskEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "flask" }, }, - ["FlaskEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks applied to you have (20-21)% increased Effect", statOrder = { 2617 }, level = 75, group = "FlaskEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "flask" }, }, - ["FlaskEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks applied to you have (22-23)% increased Effect", statOrder = { 2617 }, level = 75, group = "FlaskEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "flask" }, }, - ["FlaskEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks applied to you have (18-19)% increased Effect", statOrder = { 2617 }, level = 75, group = "FlaskEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "flask" }, }, - ["FlaskEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks applied to you have (20-21)% increased Effect", statOrder = { 2617 }, level = 75, group = "FlaskEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "flask" }, }, - ["FlaskEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks applied to you have (22-23)% increased Effect", statOrder = { 2617 }, level = 75, group = "FlaskEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "flask" }, }, - ["FlaskEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks applied to you have (24-25)% increased Effect", statOrder = { 2617 }, level = 75, group = "FlaskEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "flask" }, }, - ["FlaskEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks applied to you have (26-27)% increased Effect", statOrder = { 2617 }, level = 75, group = "FlaskEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "flask" }, }, - ["FlaskEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks applied to you have (28-29)% increased Effect", statOrder = { 2617 }, level = 75, group = "FlaskEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "flask" }, }, - ["DamageTakenGainedAsLifeEldritchImplicit1"] = { type = "Exarch", affix = "", "(8-9)% of Damage taken Recouped as Life", statOrder = { 5803 }, level = 75, group = "DamageTakenGainedAsLife", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, }, - ["DamageTakenGainedAsLifeEldritchImplicit2"] = { type = "Exarch", affix = "", "(10-11)% of Damage taken Recouped as Life", statOrder = { 5803 }, level = 75, group = "DamageTakenGainedAsLife", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, }, - ["DamageTakenGainedAsLifeEldritchImplicit3"] = { type = "Exarch", affix = "", "(12-13)% of Damage taken Recouped as Life", statOrder = { 5803 }, level = 75, group = "DamageTakenGainedAsLife", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, }, - ["DamageTakenGainedAsLifeEldritchImplicit4"] = { type = "Exarch", affix = "", "(14-15)% of Damage taken Recouped as Life", statOrder = { 5803 }, level = 75, group = "DamageTakenGainedAsLife", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, }, - ["DamageTakenGainedAsLifeEldritchImplicit5"] = { type = "Exarch", affix = "", "(16-17)% of Damage taken Recouped as Life", statOrder = { 5803 }, level = 75, group = "DamageTakenGainedAsLife", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, }, - ["DamageTakenGainedAsLifeEldritchImplicit6"] = { type = "Exarch", affix = "", "(18-19)% of Damage taken Recouped as Life", statOrder = { 5803 }, level = 75, group = "DamageTakenGainedAsLife", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, }, - ["DamageTakenGainedAsLifeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (14-15)% of Damage taken Recouped as Life", statOrder = { 5803 }, level = 75, group = "DamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, }, - ["DamageTakenGainedAsLifeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (16-17)% of Damage taken Recouped as Life", statOrder = { 5803 }, level = 75, group = "DamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, }, - ["DamageTakenGainedAsLifeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (18-19)% of Damage taken Recouped as Life", statOrder = { 5803 }, level = 75, group = "DamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, }, - ["DamageTakenGainedAsLifeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (20-21)% of Damage taken Recouped as Life", statOrder = { 5803 }, level = 75, group = "DamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, }, - ["DamageTakenGainedAsLifeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (22-23)% of Damage taken Recouped as Life", statOrder = { 5803 }, level = 75, group = "DamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, }, - ["DamageTakenGainedAsLifeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (24-25)% of Damage taken Recouped as Life", statOrder = { 5803 }, level = 75, group = "DamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, }, - ["DamageTakenGainedAsLifeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% of Damage taken Recouped as Life", statOrder = { 5803 }, level = 75, group = "DamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, }, - ["DamageTakenGainedAsLifeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% of Damage taken Recouped as Life", statOrder = { 5803 }, level = 75, group = "DamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, }, - ["DamageTakenGainedAsLifeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% of Damage taken Recouped as Life", statOrder = { 5803 }, level = 75, group = "DamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, }, - ["DamageTakenGainedAsLifeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% of Damage taken Recouped as Life", statOrder = { 5803 }, level = 75, group = "DamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, }, - ["DamageTakenGainedAsLifeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% of Damage taken Recouped as Life", statOrder = { 5803 }, level = 75, group = "DamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, }, - ["DamageTakenGainedAsLifeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (30-31)% of Damage taken Recouped as Life", statOrder = { 5803 }, level = 75, group = "DamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, }, - ["FlaskGainPerSecondEldritchImplicit1"] = { type = "Exarch", affix = "", "Flasks gain a Charge every 3 seconds", statOrder = { 3341 }, level = 75, group = "FlaskGainPerSecond", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["FlaskGainPerSecondEldritchImplicit2"] = { type = "Exarch", affix = "", "Flasks gain a Charge every 3 seconds", statOrder = { 3341 }, level = 75, group = "FlaskGainPerSecond", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["FlaskGainPerSecondEldritchImplicit3"] = { type = "Exarch", affix = "", "Flasks gain a Charge every 3 seconds", statOrder = { 3341 }, level = 75, group = "FlaskGainPerSecond", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["FlaskGainPerSecondEldritchImplicit4"] = { type = "Exarch", affix = "", "Flasks gain a Charge every 3 seconds", statOrder = { 3341 }, level = 75, group = "FlaskGainPerSecond", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["FlaskGainPerSecondEldritchImplicit5"] = { type = "Exarch", affix = "", "Flasks gain 2 Charges every 3 seconds", statOrder = { 3341 }, level = 75, group = "FlaskGainPerSecond", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["FlaskGainPerSecondEldritchImplicit6"] = { type = "Exarch", affix = "", "Flasks gain 2 Charges every 3 seconds", statOrder = { 3341 }, level = 75, group = "FlaskGainPerSecond", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["FlaskGainPerSecondEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks gain 2 Charges every 3 seconds", statOrder = { 3341 }, level = 75, group = "FlaskGainPerSecondUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["FlaskGainPerSecondEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks gain 2 Charges every 3 seconds", statOrder = { 3341 }, level = 75, group = "FlaskGainPerSecondUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["FlaskGainPerSecondEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks gain 2 Charges every 3 seconds", statOrder = { 3341 }, level = 75, group = "FlaskGainPerSecondUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["FlaskGainPerSecondEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks gain 2 Charges every 3 seconds", statOrder = { 3341 }, level = 75, group = "FlaskGainPerSecondUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["FlaskGainPerSecondEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks gain 3 Charges every 3 seconds", statOrder = { 3341 }, level = 75, group = "FlaskGainPerSecondUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["FlaskGainPerSecondEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks gain 3 Charges every 3 seconds", statOrder = { 3341 }, level = 75, group = "FlaskGainPerSecondUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["FlaskGainPerSecondEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks gain 3 Charges every 3 seconds", statOrder = { 3341 }, level = 75, group = "FlaskGainPerSecondPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["FlaskGainPerSecondEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks gain 3 Charges every 3 seconds", statOrder = { 3341 }, level = 75, group = "FlaskGainPerSecondPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["FlaskGainPerSecondEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks gain 3 Charges every 3 seconds", statOrder = { 3341 }, level = 75, group = "FlaskGainPerSecondPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["FlaskGainPerSecondEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks gain 3 Charges every 3 seconds", statOrder = { 3341 }, level = 75, group = "FlaskGainPerSecondPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["FlaskGainPerSecondEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks gain 4 Charges every 3 seconds", statOrder = { 3341 }, level = 75, group = "FlaskGainPerSecondPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["FlaskGainPerSecondEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks gain 4 Charges every 3 seconds", statOrder = { 3341 }, level = 75, group = "FlaskGainPerSecondPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["MaximumResistancesEldritchImplicit1"] = { type = "Exarch", affix = "", "+1% to all maximum Resistances", statOrder = { 1523 }, level = 75, group = "MaximumResistances", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resistance" }, }, - ["MaximumResistancesEldritchImplicit2"] = { type = "Exarch", affix = "", "+1% to all maximum Resistances", statOrder = { 1523 }, level = 75, group = "MaximumResistances", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resistance" }, }, - ["MaximumResistancesEldritchImplicit3"] = { type = "Exarch", affix = "", "+1% to all maximum Resistances", statOrder = { 1523 }, level = 75, group = "MaximumResistances", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resistance" }, }, - ["MaximumResistancesEldritchImplicit4"] = { type = "Exarch", affix = "", "+1% to all maximum Resistances", statOrder = { 1523 }, level = 75, group = "MaximumResistances", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resistance" }, }, - ["MaximumResistancesEldritchImplicit5"] = { type = "Exarch", affix = "", "+2% to all maximum Resistances", statOrder = { 1523 }, level = 75, group = "MaximumResistances", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resistance" }, }, - ["MaximumResistancesEldritchImplicit6"] = { type = "Exarch", affix = "", "+2% to all maximum Resistances", statOrder = { 1523 }, level = 75, group = "MaximumResistances", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resistance" }, }, - ["MaximumResistancesEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to all maximum Resistances", statOrder = { 1523 }, level = 75, group = "MaximumResistancesUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resistance" }, }, - ["MaximumResistancesEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to all maximum Resistances", statOrder = { 1523 }, level = 75, group = "MaximumResistancesUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resistance" }, }, - ["MaximumResistancesEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to all maximum Resistances", statOrder = { 1523 }, level = 75, group = "MaximumResistancesUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resistance" }, }, - ["MaximumResistancesEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to all maximum Resistances", statOrder = { 1523 }, level = 75, group = "MaximumResistancesUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resistance" }, }, - ["MaximumResistancesEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to all maximum Resistances", statOrder = { 1523 }, level = 75, group = "MaximumResistancesUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resistance" }, }, - ["MaximumResistancesEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to all maximum Resistances", statOrder = { 1523 }, level = 75, group = "MaximumResistancesUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resistance" }, }, - ["MaximumResistancesEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to all maximum Resistances", statOrder = { 1523 }, level = 75, group = "MaximumResistancesPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resistance" }, }, - ["MaximumResistancesEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to all maximum Resistances", statOrder = { 1523 }, level = 75, group = "MaximumResistancesPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resistance" }, }, - ["MaximumResistancesEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to all maximum Resistances", statOrder = { 1523 }, level = 75, group = "MaximumResistancesPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 80, 80, 0 }, modTags = { "resistance" }, }, - ["MaximumResistancesEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to all maximum Resistances", statOrder = { 1523 }, level = 75, group = "MaximumResistancesPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 80, 80, 0 }, modTags = { "resistance" }, }, - ["MaximumResistancesEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to all maximum Resistances", statOrder = { 1523 }, level = 75, group = "MaximumResistancesPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 80, 80, 0 }, modTags = { "resistance" }, }, - ["MaximumResistancesEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to all maximum Resistances", statOrder = { 1523 }, level = 75, group = "MaximumResistancesPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 80, 80, 0 }, modTags = { "resistance" }, }, - ["MaximumFireResistanceEldritchEldritchImplicit1"] = { type = "Exarch", affix = "", "+1% to maximum Fire Resistance", statOrder = { 1505 }, level = 75, group = "MaximumFireResistanceEldritch", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["MaximumFireResistanceEldritchEldritchImplicit2"] = { type = "Exarch", affix = "", "+1% to maximum Fire Resistance", statOrder = { 1505 }, level = 75, group = "MaximumFireResistanceEldritch", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["MaximumFireResistanceEldritchEldritchImplicit3"] = { type = "Exarch", affix = "", "+2% to maximum Fire Resistance", statOrder = { 1505 }, level = 75, group = "MaximumFireResistanceEldritch", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["MaximumFireResistanceEldritchEldritchImplicit4"] = { type = "Exarch", affix = "", "+2% to maximum Fire Resistance", statOrder = { 1505 }, level = 75, group = "MaximumFireResistanceEldritch", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["MaximumFireResistanceEldritchEldritchImplicit5"] = { type = "Exarch", affix = "", "+3% to maximum Fire Resistance", statOrder = { 1505 }, level = 75, group = "MaximumFireResistanceEldritch", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["MaximumFireResistanceEldritchEldritchImplicit6"] = { type = "Exarch", affix = "", "+3% to maximum Fire Resistance", statOrder = { 1505 }, level = 75, group = "MaximumFireResistanceEldritch", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["MaximumFireResistanceEldritchEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Fire Resistance", statOrder = { 1505 }, level = 75, group = "MaximumFireResistanceEldritchUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["MaximumFireResistanceEldritchEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Fire Resistance", statOrder = { 1505 }, level = 75, group = "MaximumFireResistanceEldritchUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["MaximumFireResistanceEldritchEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1505 }, level = 75, group = "MaximumFireResistanceEldritchUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["MaximumFireResistanceEldritchEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1505 }, level = 75, group = "MaximumFireResistanceEldritchUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["MaximumFireResistanceEldritchEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +4% to maximum Fire Resistance", statOrder = { 1505 }, level = 75, group = "MaximumFireResistanceEldritchUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["MaximumFireResistanceEldritchEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +4% to maximum Fire Resistance", statOrder = { 1505 }, level = 75, group = "MaximumFireResistanceEldritchUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["MaximumFireResistanceEldritchEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1505 }, level = 75, group = "MaximumFireResistanceEldritchPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["MaximumFireResistanceEldritchEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1505 }, level = 75, group = "MaximumFireResistanceEldritchPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["MaximumFireResistanceEldritchEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Fire Resistance", statOrder = { 1505 }, level = 75, group = "MaximumFireResistanceEldritchPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["MaximumFireResistanceEldritchEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Fire Resistance", statOrder = { 1505 }, level = 75, group = "MaximumFireResistanceEldritchPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["MaximumFireResistanceEldritchEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +5% to maximum Fire Resistance", statOrder = { 1505 }, level = 75, group = "MaximumFireResistanceEldritchPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["MaximumFireResistanceEldritchEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +5% to maximum Fire Resistance", statOrder = { 1505 }, level = 75, group = "MaximumFireResistanceEldritchPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["MaximumColdResistanceEldritchEldritchImplicit1"] = { type = "Exarch", affix = "", "+1% to maximum Cold Resistance", statOrder = { 1511 }, level = 75, group = "MaximumColdResistanceEldritch", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["MaximumColdResistanceEldritchEldritchImplicit2"] = { type = "Exarch", affix = "", "+1% to maximum Cold Resistance", statOrder = { 1511 }, level = 75, group = "MaximumColdResistanceEldritch", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["MaximumColdResistanceEldritchEldritchImplicit3"] = { type = "Exarch", affix = "", "+2% to maximum Cold Resistance", statOrder = { 1511 }, level = 75, group = "MaximumColdResistanceEldritch", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["MaximumColdResistanceEldritchEldritchImplicit4"] = { type = "Exarch", affix = "", "+2% to maximum Cold Resistance", statOrder = { 1511 }, level = 75, group = "MaximumColdResistanceEldritch", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["MaximumColdResistanceEldritchEldritchImplicit5"] = { type = "Exarch", affix = "", "+3% to maximum Cold Resistance", statOrder = { 1511 }, level = 75, group = "MaximumColdResistanceEldritch", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["MaximumColdResistanceEldritchEldritchImplicit6"] = { type = "Exarch", affix = "", "+3% to maximum Cold Resistance", statOrder = { 1511 }, level = 75, group = "MaximumColdResistanceEldritch", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["MaximumColdResistanceEldritchEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Cold Resistance", statOrder = { 1511 }, level = 75, group = "MaximumColdResistanceEldritchUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["MaximumColdResistanceEldritchEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Cold Resistance", statOrder = { 1511 }, level = 75, group = "MaximumColdResistanceEldritchUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["MaximumColdResistanceEldritchEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1511 }, level = 75, group = "MaximumColdResistanceEldritchUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["MaximumColdResistanceEldritchEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1511 }, level = 75, group = "MaximumColdResistanceEldritchUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["MaximumColdResistanceEldritchEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +4% to maximum Cold Resistance", statOrder = { 1511 }, level = 75, group = "MaximumColdResistanceEldritchUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["MaximumColdResistanceEldritchEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +4% to maximum Cold Resistance", statOrder = { 1511 }, level = 75, group = "MaximumColdResistanceEldritchUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["MaximumColdResistanceEldritchEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1511 }, level = 75, group = "MaximumColdResistanceEldritchPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["MaximumColdResistanceEldritchEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1511 }, level = 75, group = "MaximumColdResistanceEldritchPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["MaximumColdResistanceEldritchEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Cold Resistance", statOrder = { 1511 }, level = 75, group = "MaximumColdResistanceEldritchPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["MaximumColdResistanceEldritchEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Cold Resistance", statOrder = { 1511 }, level = 75, group = "MaximumColdResistanceEldritchPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["MaximumColdResistanceEldritchEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +5% to maximum Cold Resistance", statOrder = { 1511 }, level = 75, group = "MaximumColdResistanceEldritchPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["MaximumColdResistanceEldritchEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +5% to maximum Cold Resistance", statOrder = { 1511 }, level = 75, group = "MaximumColdResistanceEldritchPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["MaximumLightningResistanceEldritchEldritchImplicit1"] = { type = "Exarch", affix = "", "+1% to maximum Lightning Resistance", statOrder = { 1516 }, level = 75, group = "MaximumLightningResistanceEldritch", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["MaximumLightningResistanceEldritchEldritchImplicit2"] = { type = "Exarch", affix = "", "+1% to maximum Lightning Resistance", statOrder = { 1516 }, level = 75, group = "MaximumLightningResistanceEldritch", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["MaximumLightningResistanceEldritchEldritchImplicit3"] = { type = "Exarch", affix = "", "+2% to maximum Lightning Resistance", statOrder = { 1516 }, level = 75, group = "MaximumLightningResistanceEldritch", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["MaximumLightningResistanceEldritchEldritchImplicit4"] = { type = "Exarch", affix = "", "+2% to maximum Lightning Resistance", statOrder = { 1516 }, level = 75, group = "MaximumLightningResistanceEldritch", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["MaximumLightningResistanceEldritchEldritchImplicit5"] = { type = "Exarch", affix = "", "+3% to maximum Lightning Resistance", statOrder = { 1516 }, level = 75, group = "MaximumLightningResistanceEldritch", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["MaximumLightningResistanceEldritchEldritchImplicit6"] = { type = "Exarch", affix = "", "+3% to maximum Lightning Resistance", statOrder = { 1516 }, level = 75, group = "MaximumLightningResistanceEldritch", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["MaximumLightningResistanceEldritchEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Lightning Resistance", statOrder = { 1516 }, level = 75, group = "MaximumLightningResistanceEldritchUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["MaximumLightningResistanceEldritchEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Lightning Resistance", statOrder = { 1516 }, level = 75, group = "MaximumLightningResistanceEldritchUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["MaximumLightningResistanceEldritchEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1516 }, level = 75, group = "MaximumLightningResistanceEldritchUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["MaximumLightningResistanceEldritchEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1516 }, level = 75, group = "MaximumLightningResistanceEldritchUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["MaximumLightningResistanceEldritchEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +4% to maximum Lightning Resistance", statOrder = { 1516 }, level = 75, group = "MaximumLightningResistanceEldritchUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["MaximumLightningResistanceEldritchEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +4% to maximum Lightning Resistance", statOrder = { 1516 }, level = 75, group = "MaximumLightningResistanceEldritchUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["MaximumLightningResistanceEldritchEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1516 }, level = 75, group = "MaximumLightningResistanceEldritchPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["MaximumLightningResistanceEldritchEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1516 }, level = 75, group = "MaximumLightningResistanceEldritchPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["MaximumLightningResistanceEldritchEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Lightning Resistance", statOrder = { 1516 }, level = 75, group = "MaximumLightningResistanceEldritchPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["MaximumLightningResistanceEldritchEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Lightning Resistance", statOrder = { 1516 }, level = 75, group = "MaximumLightningResistanceEldritchPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["MaximumLightningResistanceEldritchEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +5% to maximum Lightning Resistance", statOrder = { 1516 }, level = 75, group = "MaximumLightningResistanceEldritchPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["MaximumLightningResistanceEldritchEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +5% to maximum Lightning Resistance", statOrder = { 1516 }, level = 75, group = "MaximumLightningResistanceEldritchPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["MaximumChaosResistanceImplicitEldritchImplicit1"] = { type = "Exarch", affix = "", "+1% to maximum Chaos Resistance", statOrder = { 1521 }, level = 75, group = "MaximumChaosResistanceImplicit", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos", "resistance" }, }, - ["MaximumChaosResistanceImplicitEldritchImplicit2"] = { type = "Exarch", affix = "", "+1% to maximum Chaos Resistance", statOrder = { 1521 }, level = 75, group = "MaximumChaosResistanceImplicit", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos", "resistance" }, }, - ["MaximumChaosResistanceImplicitEldritchImplicit3"] = { type = "Exarch", affix = "", "+2% to maximum Chaos Resistance", statOrder = { 1521 }, level = 75, group = "MaximumChaosResistanceImplicit", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos", "resistance" }, }, - ["MaximumChaosResistanceImplicitEldritchImplicit4"] = { type = "Exarch", affix = "", "+2% to maximum Chaos Resistance", statOrder = { 1521 }, level = 75, group = "MaximumChaosResistanceImplicit", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos", "resistance" }, }, - ["MaximumChaosResistanceImplicitEldritchImplicit5"] = { type = "Exarch", affix = "", "+3% to maximum Chaos Resistance", statOrder = { 1521 }, level = 75, group = "MaximumChaosResistanceImplicit", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos", "resistance" }, }, - ["MaximumChaosResistanceImplicitEldritchImplicit6"] = { type = "Exarch", affix = "", "+3% to maximum Chaos Resistance", statOrder = { 1521 }, level = 75, group = "MaximumChaosResistanceImplicit", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos", "resistance" }, }, - ["MaximumChaosResistanceImplicitEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Chaos Resistance", statOrder = { 1521 }, level = 75, group = "MaximumChaosResistanceImplicitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos", "resistance" }, }, - ["MaximumChaosResistanceImplicitEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Chaos Resistance", statOrder = { 1521 }, level = 75, group = "MaximumChaosResistanceImplicitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "chaos", "resistance" }, }, - ["MaximumChaosResistanceImplicitEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Chaos Resistance", statOrder = { 1521 }, level = 75, group = "MaximumChaosResistanceImplicitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "chaos", "resistance" }, }, - ["MaximumChaosResistanceImplicitEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Chaos Resistance", statOrder = { 1521 }, level = 75, group = "MaximumChaosResistanceImplicitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "chaos", "resistance" }, }, - ["MaximumChaosResistanceImplicitEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +4% to maximum Chaos Resistance", statOrder = { 1521 }, level = 75, group = "MaximumChaosResistanceImplicitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "chaos", "resistance" }, }, - ["MaximumChaosResistanceImplicitEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +4% to maximum Chaos Resistance", statOrder = { 1521 }, level = 75, group = "MaximumChaosResistanceImplicitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "chaos", "resistance" }, }, - ["MaximumChaosResistanceImplicitEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Chaos Resistance", statOrder = { 1521 }, level = 75, group = "MaximumChaosResistanceImplicitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos", "resistance" }, }, - ["MaximumChaosResistanceImplicitEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Chaos Resistance", statOrder = { 1521 }, level = 75, group = "MaximumChaosResistanceImplicitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos", "resistance" }, }, - ["MaximumChaosResistanceImplicitEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Chaos Resistance", statOrder = { 1521 }, level = 75, group = "MaximumChaosResistanceImplicitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "chaos", "resistance" }, }, - ["MaximumChaosResistanceImplicitEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Chaos Resistance", statOrder = { 1521 }, level = 75, group = "MaximumChaosResistanceImplicitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "chaos", "resistance" }, }, - ["MaximumChaosResistanceImplicitEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +5% to maximum Chaos Resistance", statOrder = { 1521 }, level = 75, group = "MaximumChaosResistanceImplicitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "chaos", "resistance" }, }, - ["MaximumChaosResistanceImplicitEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +5% to maximum Chaos Resistance", statOrder = { 1521 }, level = 75, group = "MaximumChaosResistanceImplicitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "chaos", "resistance" }, }, - ["EnduranceChargePerSecondEldritchImplicit1"] = { type = "Exarch", affix = "", "Gain an Endurance Charge every 15 seconds", statOrder = { 5059 }, level = 75, group = "EnduranceChargePerSecond", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["EnduranceChargePerSecondEldritchImplicit2"] = { type = "Exarch", affix = "", "Gain an Endurance Charge every 14 seconds", statOrder = { 5059 }, level = 75, group = "EnduranceChargePerSecond", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["EnduranceChargePerSecondEldritchImplicit3"] = { type = "Exarch", affix = "", "Gain an Endurance Charge every 13 seconds", statOrder = { 5059 }, level = 75, group = "EnduranceChargePerSecond", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["EnduranceChargePerSecondEldritchImplicit4"] = { type = "Exarch", affix = "", "Gain an Endurance Charge every 12 seconds", statOrder = { 5059 }, level = 75, group = "EnduranceChargePerSecond", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["EnduranceChargePerSecondEldritchImplicit5"] = { type = "Exarch", affix = "", "Gain an Endurance Charge every 11 seconds", statOrder = { 5059 }, level = 75, group = "EnduranceChargePerSecond", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["EnduranceChargePerSecondEldritchImplicit6"] = { type = "Exarch", affix = "", "Gain an Endurance Charge every 10 seconds", statOrder = { 5059 }, level = 75, group = "EnduranceChargePerSecond", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["EnduranceChargePerSecondEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain an Endurance Charge every 11 seconds", statOrder = { 5059 }, level = 75, group = "EnduranceChargePerSecondUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["EnduranceChargePerSecondEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain an Endurance Charge every 10 seconds", statOrder = { 5059 }, level = 75, group = "EnduranceChargePerSecondUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["EnduranceChargePerSecondEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain an Endurance Charge every 9 seconds", statOrder = { 5059 }, level = 75, group = "EnduranceChargePerSecondUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["EnduranceChargePerSecondEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain an Endurance Charge every 8 seconds", statOrder = { 5059 }, level = 75, group = "EnduranceChargePerSecondUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["EnduranceChargePerSecondEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain an Endurance Charge every 7 seconds", statOrder = { 5059 }, level = 75, group = "EnduranceChargePerSecondUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["EnduranceChargePerSecondEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain an Endurance Charge every 6 seconds", statOrder = { 5059 }, level = 75, group = "EnduranceChargePerSecondUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["EnduranceChargePerSecondEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain an Endurance Charge every 7 seconds", statOrder = { 5059 }, level = 75, group = "EnduranceChargePerSecondPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["EnduranceChargePerSecondEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain an Endurance Charge every 6 seconds", statOrder = { 5059 }, level = 75, group = "EnduranceChargePerSecondPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["EnduranceChargePerSecondEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain an Endurance Charge every 5 seconds", statOrder = { 5059 }, level = 75, group = "EnduranceChargePerSecondPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["EnduranceChargePerSecondEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain an Endurance Charge every 4 seconds", statOrder = { 5059 }, level = 75, group = "EnduranceChargePerSecondPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["EnduranceChargePerSecondEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain an Endurance Charge every 3 seconds", statOrder = { 5059 }, level = 75, group = "EnduranceChargePerSecondPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["EnduranceChargePerSecondEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain an Endurance Charge every 2 seconds", statOrder = { 5059 }, level = 75, group = "EnduranceChargePerSecondPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["FrenzyChargePerSecondEldritchImplicit1"] = { type = "Exarch", affix = "", "Gain a Frenzy Charge every 15 seconds", statOrder = { 5060 }, level = 75, group = "FrenzyChargePerSecond", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["FrenzyChargePerSecondEldritchImplicit2"] = { type = "Exarch", affix = "", "Gain a Frenzy Charge every 14 seconds", statOrder = { 5060 }, level = 75, group = "FrenzyChargePerSecond", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["FrenzyChargePerSecondEldritchImplicit3"] = { type = "Exarch", affix = "", "Gain a Frenzy Charge every 13 seconds", statOrder = { 5060 }, level = 75, group = "FrenzyChargePerSecond", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["FrenzyChargePerSecondEldritchImplicit4"] = { type = "Exarch", affix = "", "Gain a Frenzy Charge every 12 seconds", statOrder = { 5060 }, level = 75, group = "FrenzyChargePerSecond", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["FrenzyChargePerSecondEldritchImplicit5"] = { type = "Exarch", affix = "", "Gain a Frenzy Charge every 11 seconds", statOrder = { 5060 }, level = 75, group = "FrenzyChargePerSecond", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["FrenzyChargePerSecondEldritchImplicit6"] = { type = "Exarch", affix = "", "Gain a Frenzy Charge every 10 seconds", statOrder = { 5060 }, level = 75, group = "FrenzyChargePerSecond", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["FrenzyChargePerSecondEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Frenzy Charge every 11 seconds", statOrder = { 5060 }, level = 75, group = "FrenzyChargePerSecondUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["FrenzyChargePerSecondEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Frenzy Charge every 10 seconds", statOrder = { 5060 }, level = 75, group = "FrenzyChargePerSecondUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["FrenzyChargePerSecondEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Frenzy Charge every 9 seconds", statOrder = { 5060 }, level = 75, group = "FrenzyChargePerSecondUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["FrenzyChargePerSecondEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Frenzy Charge every 8 seconds", statOrder = { 5060 }, level = 75, group = "FrenzyChargePerSecondUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["FrenzyChargePerSecondEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Frenzy Charge every 7 seconds", statOrder = { 5060 }, level = 75, group = "FrenzyChargePerSecondUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["FrenzyChargePerSecondEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Frenzy Charge every 6 seconds", statOrder = { 5060 }, level = 75, group = "FrenzyChargePerSecondUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["FrenzyChargePerSecondEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Frenzy Charge every 7 seconds", statOrder = { 5060 }, level = 75, group = "FrenzyChargePerSecondPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["FrenzyChargePerSecondEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Frenzy Charge every 6 seconds", statOrder = { 5060 }, level = 75, group = "FrenzyChargePerSecondPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["FrenzyChargePerSecondEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Frenzy Charge every 5 seconds", statOrder = { 5060 }, level = 75, group = "FrenzyChargePerSecondPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["FrenzyChargePerSecondEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Frenzy Charge every 4 seconds", statOrder = { 5060 }, level = 75, group = "FrenzyChargePerSecondPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["FrenzyChargePerSecondEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Frenzy Charge every 3 seconds", statOrder = { 5060 }, level = 75, group = "FrenzyChargePerSecondPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["FrenzyChargePerSecondEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Frenzy Charge every 2 seconds", statOrder = { 5060 }, level = 75, group = "FrenzyChargePerSecondPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["PowerChargePerSecondEldritchImplicit1"] = { type = "Exarch", affix = "", "Gain a Power Charge every 15 seconds", statOrder = { 5061 }, level = 75, group = "PowerChargePerSecond", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["PowerChargePerSecondEldritchImplicit2"] = { type = "Exarch", affix = "", "Gain a Power Charge every 14 seconds", statOrder = { 5061 }, level = 75, group = "PowerChargePerSecond", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["PowerChargePerSecondEldritchImplicit3"] = { type = "Exarch", affix = "", "Gain a Power Charge every 13 seconds", statOrder = { 5061 }, level = 75, group = "PowerChargePerSecond", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["PowerChargePerSecondEldritchImplicit4"] = { type = "Exarch", affix = "", "Gain a Power Charge every 12 seconds", statOrder = { 5061 }, level = 75, group = "PowerChargePerSecond", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["PowerChargePerSecondEldritchImplicit5"] = { type = "Exarch", affix = "", "Gain a Power Charge every 11 seconds", statOrder = { 5061 }, level = 75, group = "PowerChargePerSecond", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["PowerChargePerSecondEldritchImplicit6"] = { type = "Exarch", affix = "", "Gain a Power Charge every 10 seconds", statOrder = { 5061 }, level = 75, group = "PowerChargePerSecond", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["PowerChargePerSecondEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Power Charge every 11 seconds", statOrder = { 5061 }, level = 75, group = "PowerChargePerSecondUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["PowerChargePerSecondEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Power Charge every 10 seconds", statOrder = { 5061 }, level = 75, group = "PowerChargePerSecondUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["PowerChargePerSecondEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Power Charge every 9 seconds", statOrder = { 5061 }, level = 75, group = "PowerChargePerSecondUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["PowerChargePerSecondEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Power Charge every 8 seconds", statOrder = { 5061 }, level = 75, group = "PowerChargePerSecondUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["PowerChargePerSecondEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Power Charge every 7 seconds", statOrder = { 5061 }, level = 75, group = "PowerChargePerSecondUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["PowerChargePerSecondEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Power Charge every 6 seconds", statOrder = { 5061 }, level = 75, group = "PowerChargePerSecondUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["PowerChargePerSecondEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Power Charge every 7 seconds", statOrder = { 5061 }, level = 75, group = "PowerChargePerSecondPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["PowerChargePerSecondEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Power Charge every 6 seconds", statOrder = { 5061 }, level = 75, group = "PowerChargePerSecondPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["PowerChargePerSecondEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Power Charge every 5 seconds", statOrder = { 5061 }, level = 75, group = "PowerChargePerSecondPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["PowerChargePerSecondEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Power Charge every 4 seconds", statOrder = { 5061 }, level = 75, group = "PowerChargePerSecondPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["PowerChargePerSecondEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Power Charge every 3 seconds", statOrder = { 5061 }, level = 75, group = "PowerChargePerSecondPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["PowerChargePerSecondEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Power Charge every 2 seconds", statOrder = { 5061 }, level = 75, group = "PowerChargePerSecondPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["BlockPercentEldritchImplicit1"] = { type = "Eater", affix = "", "5% Chance to Block Attack Damage", statOrder = { 1027 }, level = 75, group = "BlockPercent", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, }, - ["BlockPercentEldritchImplicit2"] = { type = "Eater", affix = "", "6% Chance to Block Attack Damage", statOrder = { 1027 }, level = 75, group = "BlockPercent", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, }, - ["BlockPercentEldritchImplicit3"] = { type = "Eater", affix = "", "7% Chance to Block Attack Damage", statOrder = { 1027 }, level = 75, group = "BlockPercent", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, }, - ["BlockPercentEldritchImplicit4"] = { type = "Eater", affix = "", "8% Chance to Block Attack Damage", statOrder = { 1027 }, level = 75, group = "BlockPercent", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, }, - ["BlockPercentEldritchImplicit5"] = { type = "Eater", affix = "", "9% Chance to Block Attack Damage", statOrder = { 1027 }, level = 75, group = "BlockPercent", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, }, - ["BlockPercentEldritchImplicit6"] = { type = "Eater", affix = "", "10% Chance to Block Attack Damage", statOrder = { 1027 }, level = 75, group = "BlockPercent", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, }, - ["BlockPercentEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 7% Chance to Block Attack Damage", statOrder = { 1027 }, level = 75, group = "BlockPercentUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["BlockPercentEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% Chance to Block Attack Damage", statOrder = { 1027 }, level = 75, group = "BlockPercentUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, }, - ["BlockPercentEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% Chance to Block Attack Damage", statOrder = { 1027 }, level = 75, group = "BlockPercentUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, }, - ["BlockPercentEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% Chance to Block Attack Damage", statOrder = { 1027 }, level = 75, group = "BlockPercentUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, }, - ["BlockPercentEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 11% Chance to Block Attack Damage", statOrder = { 1027 }, level = 75, group = "BlockPercentUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, }, - ["BlockPercentEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 12% Chance to Block Attack Damage", statOrder = { 1027 }, level = 75, group = "BlockPercentUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, }, - ["BlockPercentEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 9% Chance to Block Attack Damage", statOrder = { 1027 }, level = 75, group = "BlockPercentPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["BlockPercentEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% Chance to Block Attack Damage", statOrder = { 1027 }, level = 75, group = "BlockPercentPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["BlockPercentEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% Chance to Block Attack Damage", statOrder = { 1027 }, level = 75, group = "BlockPercentPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { }, }, - ["BlockPercentEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% Chance to Block Attack Damage", statOrder = { 1027 }, level = 75, group = "BlockPercentPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { }, }, - ["BlockPercentEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% Chance to Block Attack Damage", statOrder = { 1027 }, level = 75, group = "BlockPercentPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { }, }, - ["BlockPercentEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% Chance to Block Attack Damage", statOrder = { 1027 }, level = 75, group = "BlockPercentPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { }, }, - ["SpellBlockPercentageEldritchImplicit1"] = { type = "Eater", affix = "", "5% Chance to Block Spell Damage", statOrder = { 1046 }, level = 75, group = "SpellBlockPercentage", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, }, - ["SpellBlockPercentageEldritchImplicit2"] = { type = "Eater", affix = "", "6% Chance to Block Spell Damage", statOrder = { 1046 }, level = 75, group = "SpellBlockPercentage", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, }, - ["SpellBlockPercentageEldritchImplicit3"] = { type = "Eater", affix = "", "7% Chance to Block Spell Damage", statOrder = { 1046 }, level = 75, group = "SpellBlockPercentage", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, }, - ["SpellBlockPercentageEldritchImplicit4"] = { type = "Eater", affix = "", "8% Chance to Block Spell Damage", statOrder = { 1046 }, level = 75, group = "SpellBlockPercentage", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, }, - ["SpellBlockPercentageEldritchImplicit5"] = { type = "Eater", affix = "", "9% Chance to Block Spell Damage", statOrder = { 1046 }, level = 75, group = "SpellBlockPercentage", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, }, - ["SpellBlockPercentageEldritchImplicit6"] = { type = "Eater", affix = "", "10% Chance to Block Spell Damage", statOrder = { 1046 }, level = 75, group = "SpellBlockPercentage", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, }, - ["SpellBlockPercentageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 7% Chance to Block Spell Damage", statOrder = { 1046 }, level = 75, group = "SpellBlockPercentageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["SpellBlockPercentageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% Chance to Block Spell Damage", statOrder = { 1046 }, level = 75, group = "SpellBlockPercentageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, }, - ["SpellBlockPercentageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% Chance to Block Spell Damage", statOrder = { 1046 }, level = 75, group = "SpellBlockPercentageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, }, - ["SpellBlockPercentageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% Chance to Block Spell Damage", statOrder = { 1046 }, level = 75, group = "SpellBlockPercentageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, }, - ["SpellBlockPercentageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 11% Chance to Block Spell Damage", statOrder = { 1046 }, level = 75, group = "SpellBlockPercentageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, }, - ["SpellBlockPercentageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 12% Chance to Block Spell Damage", statOrder = { 1046 }, level = 75, group = "SpellBlockPercentageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, }, - ["SpellBlockPercentageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 9% Chance to Block Spell Damage", statOrder = { 1046 }, level = 75, group = "SpellBlockPercentagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["SpellBlockPercentageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% Chance to Block Spell Damage", statOrder = { 1046 }, level = 75, group = "SpellBlockPercentagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["SpellBlockPercentageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% Chance to Block Spell Damage", statOrder = { 1046 }, level = 75, group = "SpellBlockPercentagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { }, }, - ["SpellBlockPercentageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% Chance to Block Spell Damage", statOrder = { 1046 }, level = 75, group = "SpellBlockPercentagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { }, }, - ["SpellBlockPercentageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% Chance to Block Spell Damage", statOrder = { 1046 }, level = 75, group = "SpellBlockPercentagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { }, }, - ["SpellBlockPercentageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% Chance to Block Spell Damage", statOrder = { 1046 }, level = 75, group = "SpellBlockPercentagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { }, }, - ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicit1"] = { type = "Eater", affix = "", "(17-18)% increased Armour", statOrder = { 1424 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "armour" }, }, - ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicit2"] = { type = "Eater", affix = "", "(19-20)% increased Armour", statOrder = { 1424 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "armour" }, }, - ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicit3"] = { type = "Eater", affix = "", "(21-22)% increased Armour", statOrder = { 1424 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "armour" }, }, - ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicit4"] = { type = "Eater", affix = "", "(23-24)% increased Armour", statOrder = { 1424 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "armour" }, }, - ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicit5"] = { type = "Eater", affix = "", "(25-26)% increased Armour", statOrder = { 1424 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "armour" }, }, - ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicit6"] = { type = "Eater", affix = "", "(27-28)% increased Armour", statOrder = { 1424 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "armour" }, }, - ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (23-24)% increased Armour", statOrder = { 1424 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour" }, }, - ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (25-26)% increased Armour", statOrder = { 1424 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "armour" }, }, - ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (27-28)% increased Armour", statOrder = { 1424 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "armour" }, }, - ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (29-30)% increased Armour", statOrder = { 1424 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "armour" }, }, - ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (31-32)% increased Armour", statOrder = { 1424 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "armour" }, }, - ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (33-34)% increased Armour", statOrder = { 1424 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "armour" }, }, - ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% increased Armour", statOrder = { 1424 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour" }, }, - ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (31-32)% increased Armour", statOrder = { 1424 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour" }, }, - ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-34)% increased Armour", statOrder = { 1424 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "armour" }, }, - ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (35-36)% increased Armour", statOrder = { 1424 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "armour" }, }, - ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (37-38)% increased Armour", statOrder = { 1424 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "armour" }, }, - ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-40)% increased Armour", statOrder = { 1424 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "armour" }, }, - ["GlobalEvasionRatingPercentEldritchImplicit1"] = { type = "Eater", affix = "", "(17-18)% increased Evasion Rating", statOrder = { 1432 }, level = 75, group = "GlobalEvasionRatingPercent", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "evasion" }, }, - ["GlobalEvasionRatingPercentEldritchImplicit2"] = { type = "Eater", affix = "", "(19-20)% increased Evasion Rating", statOrder = { 1432 }, level = 75, group = "GlobalEvasionRatingPercent", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "evasion" }, }, - ["GlobalEvasionRatingPercentEldritchImplicit3"] = { type = "Eater", affix = "", "(21-22)% increased Evasion Rating", statOrder = { 1432 }, level = 75, group = "GlobalEvasionRatingPercent", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "evasion" }, }, - ["GlobalEvasionRatingPercentEldritchImplicit4"] = { type = "Eater", affix = "", "(23-24)% increased Evasion Rating", statOrder = { 1432 }, level = 75, group = "GlobalEvasionRatingPercent", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "evasion" }, }, - ["GlobalEvasionRatingPercentEldritchImplicit5"] = { type = "Eater", affix = "", "(25-26)% increased Evasion Rating", statOrder = { 1432 }, level = 75, group = "GlobalEvasionRatingPercent", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "evasion" }, }, - ["GlobalEvasionRatingPercentEldritchImplicit6"] = { type = "Eater", affix = "", "(27-28)% increased Evasion Rating", statOrder = { 1432 }, level = 75, group = "GlobalEvasionRatingPercent", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "evasion" }, }, - ["GlobalEvasionRatingPercentEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (23-24)% increased Evasion Rating", statOrder = { 1432 }, level = 75, group = "GlobalEvasionRatingPercentUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "evasion" }, }, - ["GlobalEvasionRatingPercentEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (25-26)% increased Evasion Rating", statOrder = { 1432 }, level = 75, group = "GlobalEvasionRatingPercentUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "evasion" }, }, - ["GlobalEvasionRatingPercentEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (27-28)% increased Evasion Rating", statOrder = { 1432 }, level = 75, group = "GlobalEvasionRatingPercentUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "evasion" }, }, - ["GlobalEvasionRatingPercentEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (29-30)% increased Evasion Rating", statOrder = { 1432 }, level = 75, group = "GlobalEvasionRatingPercentUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "evasion" }, }, - ["GlobalEvasionRatingPercentEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (31-32)% increased Evasion Rating", statOrder = { 1432 }, level = 75, group = "GlobalEvasionRatingPercentUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "evasion" }, }, - ["GlobalEvasionRatingPercentEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (33-34)% increased Evasion Rating", statOrder = { 1432 }, level = 75, group = "GlobalEvasionRatingPercentUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "evasion" }, }, - ["GlobalEvasionRatingPercentEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% increased Evasion Rating", statOrder = { 1432 }, level = 75, group = "GlobalEvasionRatingPercentPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "evasion" }, }, - ["GlobalEvasionRatingPercentEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (31-32)% increased Evasion Rating", statOrder = { 1432 }, level = 75, group = "GlobalEvasionRatingPercentPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "evasion" }, }, - ["GlobalEvasionRatingPercentEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-34)% increased Evasion Rating", statOrder = { 1432 }, level = 75, group = "GlobalEvasionRatingPercentPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "evasion" }, }, - ["GlobalEvasionRatingPercentEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (35-36)% increased Evasion Rating", statOrder = { 1432 }, level = 75, group = "GlobalEvasionRatingPercentPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "evasion" }, }, - ["GlobalEvasionRatingPercentEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (37-38)% increased Evasion Rating", statOrder = { 1432 }, level = 75, group = "GlobalEvasionRatingPercentPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "evasion" }, }, - ["GlobalEvasionRatingPercentEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-40)% increased Evasion Rating", statOrder = { 1432 }, level = 75, group = "GlobalEvasionRatingPercentPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "evasion" }, }, - ["GlobalEnergyShieldPercentEldritchImplicit1"] = { type = "Eater", affix = "", "(6-7)% increased maximum Energy Shield", statOrder = { 1443 }, level = 75, group = "GlobalEnergyShieldPercent", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["GlobalEnergyShieldPercentEldritchImplicit2"] = { type = "Eater", affix = "", "(8-9)% increased maximum Energy Shield", statOrder = { 1443 }, level = 75, group = "GlobalEnergyShieldPercent", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["GlobalEnergyShieldPercentEldritchImplicit3"] = { type = "Eater", affix = "", "(10-11)% increased maximum Energy Shield", statOrder = { 1443 }, level = 75, group = "GlobalEnergyShieldPercent", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["GlobalEnergyShieldPercentEldritchImplicit4"] = { type = "Eater", affix = "", "(12-13)% increased maximum Energy Shield", statOrder = { 1443 }, level = 75, group = "GlobalEnergyShieldPercent", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["GlobalEnergyShieldPercentEldritchImplicit5"] = { type = "Eater", affix = "", "(14-15)% increased maximum Energy Shield", statOrder = { 1443 }, level = 75, group = "GlobalEnergyShieldPercent", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["GlobalEnergyShieldPercentEldritchImplicit6"] = { type = "Eater", affix = "", "(16-17)% increased maximum Energy Shield", statOrder = { 1443 }, level = 75, group = "GlobalEnergyShieldPercent", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["GlobalEnergyShieldPercentEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (12-13)% increased maximum Energy Shield", statOrder = { 1443 }, level = 75, group = "GlobalEnergyShieldPercentUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, }, - ["GlobalEnergyShieldPercentEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (14-15)% increased maximum Energy Shield", statOrder = { 1443 }, level = 75, group = "GlobalEnergyShieldPercentUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, }, - ["GlobalEnergyShieldPercentEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (16-17)% increased maximum Energy Shield", statOrder = { 1443 }, level = 75, group = "GlobalEnergyShieldPercentUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, }, - ["GlobalEnergyShieldPercentEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (18-19)% increased maximum Energy Shield", statOrder = { 1443 }, level = 75, group = "GlobalEnergyShieldPercentUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, }, - ["GlobalEnergyShieldPercentEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (20-21)% increased maximum Energy Shield", statOrder = { 1443 }, level = 75, group = "GlobalEnergyShieldPercentUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, }, - ["GlobalEnergyShieldPercentEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (22-23)% increased maximum Energy Shield", statOrder = { 1443 }, level = 75, group = "GlobalEnergyShieldPercentUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, }, - ["GlobalEnergyShieldPercentEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (18-19)% increased maximum Energy Shield", statOrder = { 1443 }, level = 75, group = "GlobalEnergyShieldPercentPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, }, - ["GlobalEnergyShieldPercentEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% increased maximum Energy Shield", statOrder = { 1443 }, level = 75, group = "GlobalEnergyShieldPercentPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, }, - ["GlobalEnergyShieldPercentEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% increased maximum Energy Shield", statOrder = { 1443 }, level = 75, group = "GlobalEnergyShieldPercentPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "energy_shield" }, }, - ["GlobalEnergyShieldPercentEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% increased maximum Energy Shield", statOrder = { 1443 }, level = 75, group = "GlobalEnergyShieldPercentPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "energy_shield" }, }, - ["GlobalEnergyShieldPercentEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% increased maximum Energy Shield", statOrder = { 1443 }, level = 75, group = "GlobalEnergyShieldPercentPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "energy_shield" }, }, - ["GlobalEnergyShieldPercentEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% increased maximum Energy Shield", statOrder = { 1443 }, level = 75, group = "GlobalEnergyShieldPercentPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "energy_shield" }, }, - ["PlayerReflectedDamageEldritchImplicit1"] = { type = "Eater", affix = "", "45% reduced Reflected Damage taken", statOrder = { 4130 }, level = 75, group = "PlayerReflectedDamage", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["PlayerReflectedDamageEldritchImplicit2"] = { type = "Eater", affix = "", "50% reduced Reflected Damage taken", statOrder = { 4130 }, level = 75, group = "PlayerReflectedDamage", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["PlayerReflectedDamageEldritchImplicit3"] = { type = "Eater", affix = "", "55% reduced Reflected Damage taken", statOrder = { 4130 }, level = 75, group = "PlayerReflectedDamage", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["PlayerReflectedDamageEldritchImplicit4"] = { type = "Eater", affix = "", "60% reduced Reflected Damage taken", statOrder = { 4130 }, level = 75, group = "PlayerReflectedDamage", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["PlayerReflectedDamageEldritchImplicit5"] = { type = "Eater", affix = "", "65% reduced Reflected Damage taken", statOrder = { 4130 }, level = 75, group = "PlayerReflectedDamage", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["PlayerReflectedDamageEldritchImplicit6"] = { type = "Eater", affix = "", "70% reduced Reflected Damage taken", statOrder = { 4130 }, level = 75, group = "PlayerReflectedDamage", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["PlayerReflectedDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 60% reduced Reflected Damage taken", statOrder = { 4130 }, level = 75, group = "PlayerReflectedDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["PlayerReflectedDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 65% reduced Reflected Damage taken", statOrder = { 4130 }, level = 75, group = "PlayerReflectedDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, - ["PlayerReflectedDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 70% reduced Reflected Damage taken", statOrder = { 4130 }, level = 75, group = "PlayerReflectedDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, - ["PlayerReflectedDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 75% reduced Reflected Damage taken", statOrder = { 4130 }, level = 75, group = "PlayerReflectedDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, - ["PlayerReflectedDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 80% reduced Reflected Damage taken", statOrder = { 4130 }, level = 75, group = "PlayerReflectedDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, - ["PlayerReflectedDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 85% reduced Reflected Damage taken", statOrder = { 4130 }, level = 75, group = "PlayerReflectedDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, - ["PlayerReflectedDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 75% reduced Reflected Damage taken", statOrder = { 4130 }, level = 75, group = "PlayerReflectedDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["PlayerReflectedDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 80% reduced Reflected Damage taken", statOrder = { 4130 }, level = 75, group = "PlayerReflectedDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["PlayerReflectedDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 85% reduced Reflected Damage taken", statOrder = { 4130 }, level = 75, group = "PlayerReflectedDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, - ["PlayerReflectedDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 90% reduced Reflected Damage taken", statOrder = { 4130 }, level = 75, group = "PlayerReflectedDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, - ["PlayerReflectedDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 95% reduced Reflected Damage taken", statOrder = { 4130 }, level = 75, group = "PlayerReflectedDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, - ["PlayerReflectedDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 100% reduced Reflected Damage taken", statOrder = { 4130 }, level = 75, group = "PlayerReflectedDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, - ["MinionReflectedDamageEldritchImplicit1"] = { type = "Eater", affix = "", "Minions take 45% reduced Reflected Damage", statOrder = { 8899 }, level = 75, group = "MinionReflectedDamage", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["MinionReflectedDamageEldritchImplicit2"] = { type = "Eater", affix = "", "Minions take 50% reduced Reflected Damage", statOrder = { 8899 }, level = 75, group = "MinionReflectedDamage", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["MinionReflectedDamageEldritchImplicit3"] = { type = "Eater", affix = "", "Minions take 55% reduced Reflected Damage", statOrder = { 8899 }, level = 75, group = "MinionReflectedDamage", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["MinionReflectedDamageEldritchImplicit4"] = { type = "Eater", affix = "", "Minions take 60% reduced Reflected Damage", statOrder = { 8899 }, level = 75, group = "MinionReflectedDamage", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["MinionReflectedDamageEldritchImplicit5"] = { type = "Eater", affix = "", "Minions take 65% reduced Reflected Damage", statOrder = { 8899 }, level = 75, group = "MinionReflectedDamage", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["MinionReflectedDamageEldritchImplicit6"] = { type = "Eater", affix = "", "Minions take 70% reduced Reflected Damage", statOrder = { 8899 }, level = 75, group = "MinionReflectedDamage", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["MinionReflectedDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Minions take 60% reduced Reflected Damage", statOrder = { 8899 }, level = 75, group = "MinionReflectedDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["MinionReflectedDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Minions take 65% reduced Reflected Damage", statOrder = { 8899 }, level = 75, group = "MinionReflectedDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, - ["MinionReflectedDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Minions take 70% reduced Reflected Damage", statOrder = { 8899 }, level = 75, group = "MinionReflectedDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, - ["MinionReflectedDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Minions take 75% reduced Reflected Damage", statOrder = { 8899 }, level = 75, group = "MinionReflectedDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, - ["MinionReflectedDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Minions take 80% reduced Reflected Damage", statOrder = { 8899 }, level = 75, group = "MinionReflectedDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, - ["MinionReflectedDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Minions take 85% reduced Reflected Damage", statOrder = { 8899 }, level = 75, group = "MinionReflectedDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, - ["MinionReflectedDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions take 75% reduced Reflected Damage", statOrder = { 8899 }, level = 75, group = "MinionReflectedDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["MinionReflectedDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions take 80% reduced Reflected Damage", statOrder = { 8899 }, level = 75, group = "MinionReflectedDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["MinionReflectedDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions take 85% reduced Reflected Damage", statOrder = { 8899 }, level = 75, group = "MinionReflectedDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, - ["MinionReflectedDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions take 90% reduced Reflected Damage", statOrder = { 8899 }, level = 75, group = "MinionReflectedDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, - ["MinionReflectedDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions take 95% reduced Reflected Damage", statOrder = { 8899 }, level = 75, group = "MinionReflectedDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, - ["MinionReflectedDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions take 100% reduced Reflected Damage", statOrder = { 8899 }, level = 75, group = "MinionReflectedDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, - ["AngerAuraEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Anger has (19-21)% increased Aura Effect", statOrder = { 3222 }, level = 75, group = "AngerAuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["AngerAuraEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Anger has (22-24)% increased Aura Effect", statOrder = { 3222 }, level = 75, group = "AngerAuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["AngerAuraEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Anger has (25-27)% increased Aura Effect", statOrder = { 3222 }, level = 75, group = "AngerAuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["AngerAuraEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Anger has (28-30)% increased Aura Effect", statOrder = { 3222 }, level = 75, group = "AngerAuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["AngerAuraEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Anger has (31-33)% increased Aura Effect", statOrder = { 3222 }, level = 75, group = "AngerAuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["AngerAuraEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Anger has (34-36)% increased Aura Effect", statOrder = { 3222 }, level = 75, group = "AngerAuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["AngerAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Anger has (31-33)% increased Aura Effect", statOrder = { 3222 }, level = 75, group = "AngerAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["AngerAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Anger has (34-36)% increased Aura Effect", statOrder = { 3222 }, level = 75, group = "AngerAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["AngerAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Anger has (37-39)% increased Aura Effect", statOrder = { 3222 }, level = 75, group = "AngerAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["AngerAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Anger has (40-42)% increased Aura Effect", statOrder = { 3222 }, level = 75, group = "AngerAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["AngerAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Anger has (43-45)% increased Aura Effect", statOrder = { 3222 }, level = 75, group = "AngerAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["AngerAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Anger has (46-48)% increased Aura Effect", statOrder = { 3222 }, level = 75, group = "AngerAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["AngerAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Anger has (43-45)% increased Aura Effect", statOrder = { 3222 }, level = 75, group = "AngerAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["AngerAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Anger has (46-48)% increased Aura Effect", statOrder = { 3222 }, level = 75, group = "AngerAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["AngerAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Anger has (49-51)% increased Aura Effect", statOrder = { 3222 }, level = 75, group = "AngerAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["AngerAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Anger has (52-54)% increased Aura Effect", statOrder = { 3222 }, level = 75, group = "AngerAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["AngerAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Anger has (55-57)% increased Aura Effect", statOrder = { 3222 }, level = 75, group = "AngerAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["AngerAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Anger has (58-60)% increased Aura Effect", statOrder = { 3222 }, level = 75, group = "AngerAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["HatredAuraEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Hatred has (19-21)% increased Aura Effect", statOrder = { 3232 }, level = 75, group = "HatredAuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["HatredAuraEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Hatred has (22-24)% increased Aura Effect", statOrder = { 3232 }, level = 75, group = "HatredAuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["HatredAuraEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Hatred has (25-27)% increased Aura Effect", statOrder = { 3232 }, level = 75, group = "HatredAuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["HatredAuraEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Hatred has (28-30)% increased Aura Effect", statOrder = { 3232 }, level = 75, group = "HatredAuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["HatredAuraEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Hatred has (31-33)% increased Aura Effect", statOrder = { 3232 }, level = 75, group = "HatredAuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["HatredAuraEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Hatred has (34-36)% increased Aura Effect", statOrder = { 3232 }, level = 75, group = "HatredAuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["HatredAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hatred has (31-33)% increased Aura Effect", statOrder = { 3232 }, level = 75, group = "HatredAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["HatredAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hatred has (34-36)% increased Aura Effect", statOrder = { 3232 }, level = 75, group = "HatredAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["HatredAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hatred has (37-39)% increased Aura Effect", statOrder = { 3232 }, level = 75, group = "HatredAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["HatredAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hatred has (40-42)% increased Aura Effect", statOrder = { 3232 }, level = 75, group = "HatredAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["HatredAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hatred has (43-45)% increased Aura Effect", statOrder = { 3232 }, level = 75, group = "HatredAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["HatredAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hatred has (46-48)% increased Aura Effect", statOrder = { 3232 }, level = 75, group = "HatredAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["HatredAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hatred has (43-45)% increased Aura Effect", statOrder = { 3232 }, level = 75, group = "HatredAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["HatredAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hatred has (46-48)% increased Aura Effect", statOrder = { 3232 }, level = 75, group = "HatredAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["HatredAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hatred has (49-51)% increased Aura Effect", statOrder = { 3232 }, level = 75, group = "HatredAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["HatredAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hatred has (52-54)% increased Aura Effect", statOrder = { 3232 }, level = 75, group = "HatredAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["HatredAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hatred has (55-57)% increased Aura Effect", statOrder = { 3232 }, level = 75, group = "HatredAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["HatredAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hatred has (58-60)% increased Aura Effect", statOrder = { 3232 }, level = 75, group = "HatredAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["WrathAuraEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Wrath has (19-21)% increased Aura Effect", statOrder = { 3227 }, level = 75, group = "WrathAuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["WrathAuraEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Wrath has (22-24)% increased Aura Effect", statOrder = { 3227 }, level = 75, group = "WrathAuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["WrathAuraEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Wrath has (25-27)% increased Aura Effect", statOrder = { 3227 }, level = 75, group = "WrathAuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["WrathAuraEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Wrath has (28-30)% increased Aura Effect", statOrder = { 3227 }, level = 75, group = "WrathAuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["WrathAuraEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Wrath has (31-33)% increased Aura Effect", statOrder = { 3227 }, level = 75, group = "WrathAuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["WrathAuraEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Wrath has (34-36)% increased Aura Effect", statOrder = { 3227 }, level = 75, group = "WrathAuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["WrathAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Wrath has (31-33)% increased Aura Effect", statOrder = { 3227 }, level = 75, group = "WrathAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["WrathAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Wrath has (34-36)% increased Aura Effect", statOrder = { 3227 }, level = 75, group = "WrathAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["WrathAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Wrath has (37-39)% increased Aura Effect", statOrder = { 3227 }, level = 75, group = "WrathAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["WrathAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Wrath has (40-42)% increased Aura Effect", statOrder = { 3227 }, level = 75, group = "WrathAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["WrathAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Wrath has (43-45)% increased Aura Effect", statOrder = { 3227 }, level = 75, group = "WrathAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["WrathAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Wrath has (46-48)% increased Aura Effect", statOrder = { 3227 }, level = 75, group = "WrathAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["WrathAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Wrath has (43-45)% increased Aura Effect", statOrder = { 3227 }, level = 75, group = "WrathAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["WrathAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Wrath has (46-48)% increased Aura Effect", statOrder = { 3227 }, level = 75, group = "WrathAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["WrathAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Wrath has (49-51)% increased Aura Effect", statOrder = { 3227 }, level = 75, group = "WrathAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["WrathAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Wrath has (52-54)% increased Aura Effect", statOrder = { 3227 }, level = 75, group = "WrathAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["WrathAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Wrath has (55-57)% increased Aura Effect", statOrder = { 3227 }, level = 75, group = "WrathAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["WrathAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Wrath has (58-60)% increased Aura Effect", statOrder = { 3227 }, level = 75, group = "WrathAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["MalevolenceAuraEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Malevolence has (19-21)% increased Aura Effect", statOrder = { 5857 }, level = 75, group = "MalevolenceAuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["MalevolenceAuraEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Malevolence has (22-24)% increased Aura Effect", statOrder = { 5857 }, level = 75, group = "MalevolenceAuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["MalevolenceAuraEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Malevolence has (25-27)% increased Aura Effect", statOrder = { 5857 }, level = 75, group = "MalevolenceAuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["MalevolenceAuraEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Malevolence has (28-30)% increased Aura Effect", statOrder = { 5857 }, level = 75, group = "MalevolenceAuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["MalevolenceAuraEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Malevolence has (31-33)% increased Aura Effect", statOrder = { 5857 }, level = 75, group = "MalevolenceAuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["MalevolenceAuraEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Malevolence has (34-36)% increased Aura Effect", statOrder = { 5857 }, level = 75, group = "MalevolenceAuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["MalevolenceAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Malevolence has (31-33)% increased Aura Effect", statOrder = { 5857 }, level = 75, group = "MalevolenceAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["MalevolenceAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Malevolence has (34-36)% increased Aura Effect", statOrder = { 5857 }, level = 75, group = "MalevolenceAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["MalevolenceAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Malevolence has (37-39)% increased Aura Effect", statOrder = { 5857 }, level = 75, group = "MalevolenceAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["MalevolenceAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Malevolence has (40-42)% increased Aura Effect", statOrder = { 5857 }, level = 75, group = "MalevolenceAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["MalevolenceAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Malevolence has (43-45)% increased Aura Effect", statOrder = { 5857 }, level = 75, group = "MalevolenceAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["MalevolenceAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Malevolence has (46-48)% increased Aura Effect", statOrder = { 5857 }, level = 75, group = "MalevolenceAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["MalevolenceAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Malevolence has (43-45)% increased Aura Effect", statOrder = { 5857 }, level = 75, group = "MalevolenceAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["MalevolenceAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Malevolence has (46-48)% increased Aura Effect", statOrder = { 5857 }, level = 75, group = "MalevolenceAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["MalevolenceAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Malevolence has (49-51)% increased Aura Effect", statOrder = { 5857 }, level = 75, group = "MalevolenceAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["MalevolenceAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Malevolence has (52-54)% increased Aura Effect", statOrder = { 5857 }, level = 75, group = "MalevolenceAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["MalevolenceAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Malevolence has (55-57)% increased Aura Effect", statOrder = { 5857 }, level = 75, group = "MalevolenceAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["MalevolenceAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Malevolence has (58-60)% increased Aura Effect", statOrder = { 5857 }, level = 75, group = "MalevolenceAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["ZealotryAuraEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Zealotry has (19-21)% increased Aura Effect", statOrder = { 10169 }, level = 75, group = "ZealotryAuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["ZealotryAuraEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Zealotry has (22-24)% increased Aura Effect", statOrder = { 10169 }, level = 75, group = "ZealotryAuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["ZealotryAuraEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Zealotry has (25-27)% increased Aura Effect", statOrder = { 10169 }, level = 75, group = "ZealotryAuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["ZealotryAuraEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Zealotry has (28-30)% increased Aura Effect", statOrder = { 10169 }, level = 75, group = "ZealotryAuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["ZealotryAuraEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Zealotry has (31-33)% increased Aura Effect", statOrder = { 10169 }, level = 75, group = "ZealotryAuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["ZealotryAuraEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Zealotry has (34-36)% increased Aura Effect", statOrder = { 10169 }, level = 75, group = "ZealotryAuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["ZealotryAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Zealotry has (31-33)% increased Aura Effect", statOrder = { 10169 }, level = 75, group = "ZealotryAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["ZealotryAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Zealotry has (34-36)% increased Aura Effect", statOrder = { 10169 }, level = 75, group = "ZealotryAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["ZealotryAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Zealotry has (37-39)% increased Aura Effect", statOrder = { 10169 }, level = 75, group = "ZealotryAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["ZealotryAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Zealotry has (40-42)% increased Aura Effect", statOrder = { 10169 }, level = 75, group = "ZealotryAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["ZealotryAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Zealotry has (43-45)% increased Aura Effect", statOrder = { 10169 }, level = 75, group = "ZealotryAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["ZealotryAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Zealotry has (46-48)% increased Aura Effect", statOrder = { 10169 }, level = 75, group = "ZealotryAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["ZealotryAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Zealotry has (43-45)% increased Aura Effect", statOrder = { 10169 }, level = 75, group = "ZealotryAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["ZealotryAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Zealotry has (46-48)% increased Aura Effect", statOrder = { 10169 }, level = 75, group = "ZealotryAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["ZealotryAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Zealotry has (49-51)% increased Aura Effect", statOrder = { 10169 }, level = 75, group = "ZealotryAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["ZealotryAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Zealotry has (52-54)% increased Aura Effect", statOrder = { 10169 }, level = 75, group = "ZealotryAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["ZealotryAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Zealotry has (55-57)% increased Aura Effect", statOrder = { 10169 }, level = 75, group = "ZealotryAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["ZealotryAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Zealotry has (58-60)% increased Aura Effect", statOrder = { 10169 }, level = 75, group = "ZealotryAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["PrideAuraEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Pride has (19-21)% increased Aura Effect", statOrder = { 9217 }, level = 75, group = "PrideAuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["PrideAuraEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Pride has (22-24)% increased Aura Effect", statOrder = { 9217 }, level = 75, group = "PrideAuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["PrideAuraEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Pride has (25-27)% increased Aura Effect", statOrder = { 9217 }, level = 75, group = "PrideAuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["PrideAuraEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Pride has (28-30)% increased Aura Effect", statOrder = { 9217 }, level = 75, group = "PrideAuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["PrideAuraEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Pride has (31-33)% increased Aura Effect", statOrder = { 9217 }, level = 75, group = "PrideAuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["PrideAuraEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Pride has (34-36)% increased Aura Effect", statOrder = { 9217 }, level = 75, group = "PrideAuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["PrideAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Pride has (31-33)% increased Aura Effect", statOrder = { 9217 }, level = 75, group = "PrideAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["PrideAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Pride has (34-36)% increased Aura Effect", statOrder = { 9217 }, level = 75, group = "PrideAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["PrideAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Pride has (37-39)% increased Aura Effect", statOrder = { 9217 }, level = 75, group = "PrideAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["PrideAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Pride has (40-42)% increased Aura Effect", statOrder = { 9217 }, level = 75, group = "PrideAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["PrideAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Pride has (43-45)% increased Aura Effect", statOrder = { 9217 }, level = 75, group = "PrideAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["PrideAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Pride has (46-48)% increased Aura Effect", statOrder = { 9217 }, level = 75, group = "PrideAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["PrideAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Pride has (43-45)% increased Aura Effect", statOrder = { 9217 }, level = 75, group = "PrideAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["PrideAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Pride has (46-48)% increased Aura Effect", statOrder = { 9217 }, level = 75, group = "PrideAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["PrideAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Pride has (49-51)% increased Aura Effect", statOrder = { 9217 }, level = 75, group = "PrideAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["PrideAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Pride has (52-54)% increased Aura Effect", statOrder = { 9217 }, level = 75, group = "PrideAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["PrideAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Pride has (55-57)% increased Aura Effect", statOrder = { 9217 }, level = 75, group = "PrideAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["PrideAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Pride has (58-60)% increased Aura Effect", statOrder = { 9217 }, level = 75, group = "PrideAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["DeterminationAuraEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Determination has (19-21)% increased Aura Effect", statOrder = { 3233 }, level = 75, group = "DeterminationAuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["DeterminationAuraEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Determination has (22-24)% increased Aura Effect", statOrder = { 3233 }, level = 75, group = "DeterminationAuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["DeterminationAuraEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Determination has (25-27)% increased Aura Effect", statOrder = { 3233 }, level = 75, group = "DeterminationAuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["DeterminationAuraEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Determination has (28-30)% increased Aura Effect", statOrder = { 3233 }, level = 75, group = "DeterminationAuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["DeterminationAuraEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Determination has (31-33)% increased Aura Effect", statOrder = { 3233 }, level = 75, group = "DeterminationAuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["DeterminationAuraEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Determination has (34-36)% increased Aura Effect", statOrder = { 3233 }, level = 75, group = "DeterminationAuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["DeterminationAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Determination has (31-33)% increased Aura Effect", statOrder = { 3233 }, level = 75, group = "DeterminationAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["DeterminationAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Determination has (34-36)% increased Aura Effect", statOrder = { 3233 }, level = 75, group = "DeterminationAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["DeterminationAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Determination has (37-39)% increased Aura Effect", statOrder = { 3233 }, level = 75, group = "DeterminationAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["DeterminationAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Determination has (40-42)% increased Aura Effect", statOrder = { 3233 }, level = 75, group = "DeterminationAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["DeterminationAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Determination has (43-45)% increased Aura Effect", statOrder = { 3233 }, level = 75, group = "DeterminationAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["DeterminationAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Determination has (46-48)% increased Aura Effect", statOrder = { 3233 }, level = 75, group = "DeterminationAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["DeterminationAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Determination has (43-45)% increased Aura Effect", statOrder = { 3233 }, level = 75, group = "DeterminationAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["DeterminationAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Determination has (46-48)% increased Aura Effect", statOrder = { 3233 }, level = 75, group = "DeterminationAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["DeterminationAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Determination has (49-51)% increased Aura Effect", statOrder = { 3233 }, level = 75, group = "DeterminationAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["DeterminationAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Determination has (52-54)% increased Aura Effect", statOrder = { 3233 }, level = 75, group = "DeterminationAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["DeterminationAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Determination has (55-57)% increased Aura Effect", statOrder = { 3233 }, level = 75, group = "DeterminationAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["DeterminationAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Determination has (58-60)% increased Aura Effect", statOrder = { 3233 }, level = 75, group = "DeterminationAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["GraceAuraEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Grace has (19-21)% increased Aura Effect", statOrder = { 3229 }, level = 75, group = "GraceAuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["GraceAuraEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Grace has (22-24)% increased Aura Effect", statOrder = { 3229 }, level = 75, group = "GraceAuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["GraceAuraEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Grace has (25-27)% increased Aura Effect", statOrder = { 3229 }, level = 75, group = "GraceAuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["GraceAuraEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Grace has (28-30)% increased Aura Effect", statOrder = { 3229 }, level = 75, group = "GraceAuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["GraceAuraEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Grace has (31-33)% increased Aura Effect", statOrder = { 3229 }, level = 75, group = "GraceAuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["GraceAuraEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Grace has (34-36)% increased Aura Effect", statOrder = { 3229 }, level = 75, group = "GraceAuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["GraceAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Grace has (31-33)% increased Aura Effect", statOrder = { 3229 }, level = 75, group = "GraceAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["GraceAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Grace has (34-36)% increased Aura Effect", statOrder = { 3229 }, level = 75, group = "GraceAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["GraceAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Grace has (37-39)% increased Aura Effect", statOrder = { 3229 }, level = 75, group = "GraceAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["GraceAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Grace has (40-42)% increased Aura Effect", statOrder = { 3229 }, level = 75, group = "GraceAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["GraceAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Grace has (43-45)% increased Aura Effect", statOrder = { 3229 }, level = 75, group = "GraceAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["GraceAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Grace has (46-48)% increased Aura Effect", statOrder = { 3229 }, level = 75, group = "GraceAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["GraceAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Grace has (43-45)% increased Aura Effect", statOrder = { 3229 }, level = 75, group = "GraceAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["GraceAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Grace has (46-48)% increased Aura Effect", statOrder = { 3229 }, level = 75, group = "GraceAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["GraceAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Grace has (49-51)% increased Aura Effect", statOrder = { 3229 }, level = 75, group = "GraceAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["GraceAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Grace has (52-54)% increased Aura Effect", statOrder = { 3229 }, level = 75, group = "GraceAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["GraceAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Grace has (55-57)% increased Aura Effect", statOrder = { 3229 }, level = 75, group = "GraceAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["GraceAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Grace has (58-60)% increased Aura Effect", statOrder = { 3229 }, level = 75, group = "GraceAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["DisciplineAuraEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Discipline has (19-21)% increased Aura Effect", statOrder = { 3234 }, level = 75, group = "DisciplineAuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["DisciplineAuraEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Discipline has (22-24)% increased Aura Effect", statOrder = { 3234 }, level = 75, group = "DisciplineAuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["DisciplineAuraEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Discipline has (25-27)% increased Aura Effect", statOrder = { 3234 }, level = 75, group = "DisciplineAuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["DisciplineAuraEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Discipline has (28-30)% increased Aura Effect", statOrder = { 3234 }, level = 75, group = "DisciplineAuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["DisciplineAuraEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Discipline has (31-33)% increased Aura Effect", statOrder = { 3234 }, level = 75, group = "DisciplineAuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["DisciplineAuraEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Discipline has (34-36)% increased Aura Effect", statOrder = { 3234 }, level = 75, group = "DisciplineAuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["DisciplineAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Discipline has (31-33)% increased Aura Effect", statOrder = { 3234 }, level = 75, group = "DisciplineAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["DisciplineAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Discipline has (34-36)% increased Aura Effect", statOrder = { 3234 }, level = 75, group = "DisciplineAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["DisciplineAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Discipline has (37-39)% increased Aura Effect", statOrder = { 3234 }, level = 75, group = "DisciplineAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["DisciplineAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Discipline has (40-42)% increased Aura Effect", statOrder = { 3234 }, level = 75, group = "DisciplineAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["DisciplineAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Discipline has (43-45)% increased Aura Effect", statOrder = { 3234 }, level = 75, group = "DisciplineAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["DisciplineAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Discipline has (46-48)% increased Aura Effect", statOrder = { 3234 }, level = 75, group = "DisciplineAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["DisciplineAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Discipline has (43-45)% increased Aura Effect", statOrder = { 3234 }, level = 75, group = "DisciplineAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["DisciplineAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Discipline has (46-48)% increased Aura Effect", statOrder = { 3234 }, level = 75, group = "DisciplineAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["DisciplineAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Discipline has (49-51)% increased Aura Effect", statOrder = { 3234 }, level = 75, group = "DisciplineAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["DisciplineAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Discipline has (52-54)% increased Aura Effect", statOrder = { 3234 }, level = 75, group = "DisciplineAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["DisciplineAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Discipline has (55-57)% increased Aura Effect", statOrder = { 3234 }, level = 75, group = "DisciplineAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["DisciplineAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Discipline has (58-60)% increased Aura Effect", statOrder = { 3234 }, level = 75, group = "DisciplineAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["HasteAuraEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Haste has (19-21)% increased Aura Effect", statOrder = { 3230 }, level = 75, group = "HasteAuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["HasteAuraEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Haste has (22-24)% increased Aura Effect", statOrder = { 3230 }, level = 75, group = "HasteAuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["HasteAuraEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Haste has (25-27)% increased Aura Effect", statOrder = { 3230 }, level = 75, group = "HasteAuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["HasteAuraEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Haste has (28-30)% increased Aura Effect", statOrder = { 3230 }, level = 75, group = "HasteAuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["HasteAuraEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Haste has (31-33)% increased Aura Effect", statOrder = { 3230 }, level = 75, group = "HasteAuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["HasteAuraEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Haste has (34-36)% increased Aura Effect", statOrder = { 3230 }, level = 75, group = "HasteAuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["HasteAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Haste has (31-33)% increased Aura Effect", statOrder = { 3230 }, level = 75, group = "HasteAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["HasteAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Haste has (34-36)% increased Aura Effect", statOrder = { 3230 }, level = 75, group = "HasteAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["HasteAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Haste has (37-39)% increased Aura Effect", statOrder = { 3230 }, level = 75, group = "HasteAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["HasteAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Haste has (40-42)% increased Aura Effect", statOrder = { 3230 }, level = 75, group = "HasteAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["HasteAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Haste has (43-45)% increased Aura Effect", statOrder = { 3230 }, level = 75, group = "HasteAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["HasteAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Haste has (46-48)% increased Aura Effect", statOrder = { 3230 }, level = 75, group = "HasteAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["HasteAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Haste has (43-45)% increased Aura Effect", statOrder = { 3230 }, level = 75, group = "HasteAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["HasteAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Haste has (46-48)% increased Aura Effect", statOrder = { 3230 }, level = 75, group = "HasteAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["HasteAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Haste has (49-51)% increased Aura Effect", statOrder = { 3230 }, level = 75, group = "HasteAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["HasteAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Haste has (52-54)% increased Aura Effect", statOrder = { 3230 }, level = 75, group = "HasteAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["HasteAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Haste has (55-57)% increased Aura Effect", statOrder = { 3230 }, level = 75, group = "HasteAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["HasteAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Haste has (58-60)% increased Aura Effect", statOrder = { 3230 }, level = 75, group = "HasteAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["PurityOfElementsEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Purity of Elements has (19-21)% increased Aura Effect", statOrder = { 3223 }, level = 75, group = "PurityOfElementsEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["PurityOfElementsEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Purity of Elements has (22-24)% increased Aura Effect", statOrder = { 3223 }, level = 75, group = "PurityOfElementsEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["PurityOfElementsEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Purity of Elements has (25-27)% increased Aura Effect", statOrder = { 3223 }, level = 75, group = "PurityOfElementsEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["PurityOfElementsEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Purity of Elements has (28-30)% increased Aura Effect", statOrder = { 3223 }, level = 75, group = "PurityOfElementsEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["PurityOfElementsEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Purity of Elements has (31-33)% increased Aura Effect", statOrder = { 3223 }, level = 75, group = "PurityOfElementsEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["PurityOfElementsEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Purity of Elements has (34-36)% increased Aura Effect", statOrder = { 3223 }, level = 75, group = "PurityOfElementsEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["PurityOfElementsEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Elements has (31-33)% increased Aura Effect", statOrder = { 3223 }, level = 75, group = "PurityOfElementsEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["PurityOfElementsEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Elements has (34-36)% increased Aura Effect", statOrder = { 3223 }, level = 75, group = "PurityOfElementsEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["PurityOfElementsEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Elements has (37-39)% increased Aura Effect", statOrder = { 3223 }, level = 75, group = "PurityOfElementsEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["PurityOfElementsEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Elements has (40-42)% increased Aura Effect", statOrder = { 3223 }, level = 75, group = "PurityOfElementsEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["PurityOfElementsEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Elements has (43-45)% increased Aura Effect", statOrder = { 3223 }, level = 75, group = "PurityOfElementsEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["PurityOfElementsEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Elements has (46-48)% increased Aura Effect", statOrder = { 3223 }, level = 75, group = "PurityOfElementsEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["PurityOfElementsEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Elements has (43-45)% increased Aura Effect", statOrder = { 3223 }, level = 75, group = "PurityOfElementsEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["PurityOfElementsEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Elements has (46-48)% increased Aura Effect", statOrder = { 3223 }, level = 75, group = "PurityOfElementsEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["PurityOfElementsEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Elements has (49-51)% increased Aura Effect", statOrder = { 3223 }, level = 75, group = "PurityOfElementsEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["PurityOfElementsEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Elements has (52-54)% increased Aura Effect", statOrder = { 3223 }, level = 75, group = "PurityOfElementsEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["PurityOfElementsEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Elements has (55-57)% increased Aura Effect", statOrder = { 3223 }, level = 75, group = "PurityOfElementsEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["PurityOfElementsEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Elements has (58-60)% increased Aura Effect", statOrder = { 3223 }, level = 75, group = "PurityOfElementsEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["PurityOfFireEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Purity of Fire has (19-21)% increased Aura Effect", statOrder = { 3224 }, level = 75, group = "PurityOfFireEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["PurityOfFireEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Purity of Fire has (22-24)% increased Aura Effect", statOrder = { 3224 }, level = 75, group = "PurityOfFireEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["PurityOfFireEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Purity of Fire has (25-27)% increased Aura Effect", statOrder = { 3224 }, level = 75, group = "PurityOfFireEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["PurityOfFireEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Purity of Fire has (28-30)% increased Aura Effect", statOrder = { 3224 }, level = 75, group = "PurityOfFireEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["PurityOfFireEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Purity of Fire has (31-33)% increased Aura Effect", statOrder = { 3224 }, level = 75, group = "PurityOfFireEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["PurityOfFireEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Purity of Fire has (34-36)% increased Aura Effect", statOrder = { 3224 }, level = 75, group = "PurityOfFireEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["PurityOfFireEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Fire has (31-33)% increased Aura Effect", statOrder = { 3224 }, level = 75, group = "PurityOfFireEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["PurityOfFireEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Fire has (34-36)% increased Aura Effect", statOrder = { 3224 }, level = 75, group = "PurityOfFireEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["PurityOfFireEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Fire has (37-39)% increased Aura Effect", statOrder = { 3224 }, level = 75, group = "PurityOfFireEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["PurityOfFireEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Fire has (40-42)% increased Aura Effect", statOrder = { 3224 }, level = 75, group = "PurityOfFireEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["PurityOfFireEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Fire has (43-45)% increased Aura Effect", statOrder = { 3224 }, level = 75, group = "PurityOfFireEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["PurityOfFireEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Fire has (46-48)% increased Aura Effect", statOrder = { 3224 }, level = 75, group = "PurityOfFireEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["PurityOfFireEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Fire has (43-45)% increased Aura Effect", statOrder = { 3224 }, level = 75, group = "PurityOfFireEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["PurityOfFireEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Fire has (46-48)% increased Aura Effect", statOrder = { 3224 }, level = 75, group = "PurityOfFireEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["PurityOfFireEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Fire has (49-51)% increased Aura Effect", statOrder = { 3224 }, level = 75, group = "PurityOfFireEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["PurityOfFireEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Fire has (52-54)% increased Aura Effect", statOrder = { 3224 }, level = 75, group = "PurityOfFireEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["PurityOfFireEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Fire has (55-57)% increased Aura Effect", statOrder = { 3224 }, level = 75, group = "PurityOfFireEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["PurityOfFireEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Fire has (58-60)% increased Aura Effect", statOrder = { 3224 }, level = 75, group = "PurityOfFireEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["PurityOfIceEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Purity of Ice has (19-21)% increased Aura Effect", statOrder = { 3225 }, level = 75, group = "PurityOfIceEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["PurityOfIceEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Purity of Ice has (22-24)% increased Aura Effect", statOrder = { 3225 }, level = 75, group = "PurityOfIceEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["PurityOfIceEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Purity of Ice has (25-27)% increased Aura Effect", statOrder = { 3225 }, level = 75, group = "PurityOfIceEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["PurityOfIceEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Purity of Ice has (28-30)% increased Aura Effect", statOrder = { 3225 }, level = 75, group = "PurityOfIceEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["PurityOfIceEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Purity of Ice has (31-33)% increased Aura Effect", statOrder = { 3225 }, level = 75, group = "PurityOfIceEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["PurityOfIceEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Purity of Ice has (34-36)% increased Aura Effect", statOrder = { 3225 }, level = 75, group = "PurityOfIceEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["PurityOfIceEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Ice has (31-33)% increased Aura Effect", statOrder = { 3225 }, level = 75, group = "PurityOfIceEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["PurityOfIceEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Ice has (34-36)% increased Aura Effect", statOrder = { 3225 }, level = 75, group = "PurityOfIceEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["PurityOfIceEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Ice has (37-39)% increased Aura Effect", statOrder = { 3225 }, level = 75, group = "PurityOfIceEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["PurityOfIceEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Ice has (40-42)% increased Aura Effect", statOrder = { 3225 }, level = 75, group = "PurityOfIceEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["PurityOfIceEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Ice has (43-45)% increased Aura Effect", statOrder = { 3225 }, level = 75, group = "PurityOfIceEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["PurityOfIceEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Ice has (46-48)% increased Aura Effect", statOrder = { 3225 }, level = 75, group = "PurityOfIceEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["PurityOfIceEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Ice has (43-45)% increased Aura Effect", statOrder = { 3225 }, level = 75, group = "PurityOfIceEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["PurityOfIceEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Ice has (46-48)% increased Aura Effect", statOrder = { 3225 }, level = 75, group = "PurityOfIceEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["PurityOfIceEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Ice has (49-51)% increased Aura Effect", statOrder = { 3225 }, level = 75, group = "PurityOfIceEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["PurityOfIceEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Ice has (52-54)% increased Aura Effect", statOrder = { 3225 }, level = 75, group = "PurityOfIceEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["PurityOfIceEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Ice has (55-57)% increased Aura Effect", statOrder = { 3225 }, level = 75, group = "PurityOfIceEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["PurityOfIceEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Ice has (58-60)% increased Aura Effect", statOrder = { 3225 }, level = 75, group = "PurityOfIceEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["PurityOfLightningEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Purity of Lightning has (19-21)% increased Aura Effect", statOrder = { 3226 }, level = 75, group = "PurityOfLightningEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["PurityOfLightningEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Purity of Lightning has (22-24)% increased Aura Effect", statOrder = { 3226 }, level = 75, group = "PurityOfLightningEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["PurityOfLightningEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Purity of Lightning has (25-27)% increased Aura Effect", statOrder = { 3226 }, level = 75, group = "PurityOfLightningEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["PurityOfLightningEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Purity of Lightning has (28-30)% increased Aura Effect", statOrder = { 3226 }, level = 75, group = "PurityOfLightningEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["PurityOfLightningEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Purity of Lightning has (31-33)% increased Aura Effect", statOrder = { 3226 }, level = 75, group = "PurityOfLightningEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["PurityOfLightningEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Purity of Lightning has (34-36)% increased Aura Effect", statOrder = { 3226 }, level = 75, group = "PurityOfLightningEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["PurityOfLightningEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Lightning has (31-33)% increased Aura Effect", statOrder = { 3226 }, level = 75, group = "PurityOfLightningEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["PurityOfLightningEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Lightning has (34-36)% increased Aura Effect", statOrder = { 3226 }, level = 75, group = "PurityOfLightningEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["PurityOfLightningEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Lightning has (37-39)% increased Aura Effect", statOrder = { 3226 }, level = 75, group = "PurityOfLightningEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["PurityOfLightningEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Lightning has (40-42)% increased Aura Effect", statOrder = { 3226 }, level = 75, group = "PurityOfLightningEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["PurityOfLightningEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Lightning has (43-45)% increased Aura Effect", statOrder = { 3226 }, level = 75, group = "PurityOfLightningEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["PurityOfLightningEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Lightning has (46-48)% increased Aura Effect", statOrder = { 3226 }, level = 75, group = "PurityOfLightningEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["PurityOfLightningEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Lightning has (43-45)% increased Aura Effect", statOrder = { 3226 }, level = 75, group = "PurityOfLightningEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["PurityOfLightningEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Lightning has (46-48)% increased Aura Effect", statOrder = { 3226 }, level = 75, group = "PurityOfLightningEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["PurityOfLightningEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Lightning has (49-51)% increased Aura Effect", statOrder = { 3226 }, level = 75, group = "PurityOfLightningEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["PurityOfLightningEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Lightning has (52-54)% increased Aura Effect", statOrder = { 3226 }, level = 75, group = "PurityOfLightningEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["PurityOfLightningEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Lightning has (55-57)% increased Aura Effect", statOrder = { 3226 }, level = 75, group = "PurityOfLightningEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["PurityOfLightningEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Lightning has (58-60)% increased Aura Effect", statOrder = { 3226 }, level = 75, group = "PurityOfLightningEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["FortifyOnMeleeHitEldritchImplicit1"] = { type = "Eater", affix = "", "Melee Hits have (6-7)% chance to Fortify", statOrder = { 2141 }, level = 75, group = "FortifyOnMeleeHit", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, }, - ["FortifyOnMeleeHitEldritchImplicit2"] = { type = "Eater", affix = "", "Melee Hits have (8-9)% chance to Fortify", statOrder = { 2141 }, level = 75, group = "FortifyOnMeleeHit", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, }, - ["FortifyOnMeleeHitEldritchImplicit3"] = { type = "Eater", affix = "", "Melee Hits have (10-11)% chance to Fortify", statOrder = { 2141 }, level = 75, group = "FortifyOnMeleeHit", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, }, - ["FortifyOnMeleeHitEldritchImplicit4"] = { type = "Eater", affix = "", "Melee Hits have (12-13)% chance to Fortify", statOrder = { 2141 }, level = 75, group = "FortifyOnMeleeHit", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, }, - ["FortifyOnMeleeHitEldritchImplicit5"] = { type = "Eater", affix = "", "Melee Hits have (14-15)% chance to Fortify", statOrder = { 2141 }, level = 75, group = "FortifyOnMeleeHit", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, }, - ["FortifyOnMeleeHitEldritchImplicit6"] = { type = "Eater", affix = "", "Melee Hits have (16-17)% chance to Fortify", statOrder = { 2141 }, level = 75, group = "FortifyOnMeleeHit", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, }, - ["FortifyOnMeleeHitEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Melee Hits have (12-13)% chance to Fortify", statOrder = { 2141 }, level = 75, group = "FortifyOnMeleeHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, - ["FortifyOnMeleeHitEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Melee Hits have (14-15)% chance to Fortify", statOrder = { 2141 }, level = 75, group = "FortifyOnMeleeHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "attack" }, }, - ["FortifyOnMeleeHitEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Melee Hits have (16-17)% chance to Fortify", statOrder = { 2141 }, level = 75, group = "FortifyOnMeleeHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "attack" }, }, - ["FortifyOnMeleeHitEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Melee Hits have (18-19)% chance to Fortify", statOrder = { 2141 }, level = 75, group = "FortifyOnMeleeHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "attack" }, }, - ["FortifyOnMeleeHitEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Melee Hits have (20-21)% chance to Fortify", statOrder = { 2141 }, level = 75, group = "FortifyOnMeleeHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "attack" }, }, - ["FortifyOnMeleeHitEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Melee Hits have (22-23)% chance to Fortify", statOrder = { 2141 }, level = 75, group = "FortifyOnMeleeHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "attack" }, }, - ["FortifyOnMeleeHitEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Melee Hits have (18-19)% chance to Fortify", statOrder = { 2141 }, level = 75, group = "FortifyOnMeleeHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, - ["FortifyOnMeleeHitEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Melee Hits have (20-21)% chance to Fortify", statOrder = { 2141 }, level = 75, group = "FortifyOnMeleeHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, - ["FortifyOnMeleeHitEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Melee Hits have (22-23)% chance to Fortify", statOrder = { 2141 }, level = 75, group = "FortifyOnMeleeHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "attack" }, }, - ["FortifyOnMeleeHitEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Melee Hits have (24-25)% chance to Fortify", statOrder = { 2141 }, level = 75, group = "FortifyOnMeleeHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "attack" }, }, - ["FortifyOnMeleeHitEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Melee Hits have (26-27)% chance to Fortify", statOrder = { 2141 }, level = 75, group = "FortifyOnMeleeHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "attack" }, }, - ["FortifyOnMeleeHitEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Melee Hits have (28-29)% chance to Fortify", statOrder = { 2141 }, level = 75, group = "FortifyOnMeleeHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "attack" }, }, - ["AllResistancesEldritchImplicit1"] = { type = "Eater", affix = "", "+(5-6)% to all Elemental Resistances", statOrder = { 1501 }, level = 75, group = "AllResistances", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "resistance" }, }, - ["AllResistancesEldritchImplicit2"] = { type = "Eater", affix = "", "+(7-8)% to all Elemental Resistances", statOrder = { 1501 }, level = 75, group = "AllResistances", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "resistance" }, }, - ["AllResistancesEldritchImplicit3"] = { type = "Eater", affix = "", "+(9-10)% to all Elemental Resistances", statOrder = { 1501 }, level = 75, group = "AllResistances", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "resistance" }, }, - ["AllResistancesEldritchImplicit4"] = { type = "Eater", affix = "", "+(11-12)% to all Elemental Resistances", statOrder = { 1501 }, level = 75, group = "AllResistances", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "resistance" }, }, - ["AllResistancesEldritchImplicit5"] = { type = "Eater", affix = "", "+(13-14)% to all Elemental Resistances", statOrder = { 1501 }, level = 75, group = "AllResistances", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "resistance" }, }, - ["AllResistancesEldritchImplicit6"] = { type = "Eater", affix = "", "+(15-16)% to all Elemental Resistances", statOrder = { 1501 }, level = 75, group = "AllResistances", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "resistance" }, }, - ["AllResistancesEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(11-12)% to all Elemental Resistances", statOrder = { 1501 }, level = 75, group = "AllResistancesUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "resistance" }, }, - ["AllResistancesEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(13-14)% to all Elemental Resistances", statOrder = { 1501 }, level = 75, group = "AllResistancesUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "resistance" }, }, - ["AllResistancesEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(15-16)% to all Elemental Resistances", statOrder = { 1501 }, level = 75, group = "AllResistancesUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "resistance" }, }, - ["AllResistancesEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(17-18)% to all Elemental Resistances", statOrder = { 1501 }, level = 75, group = "AllResistancesUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "resistance" }, }, - ["AllResistancesEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(19-20)% to all Elemental Resistances", statOrder = { 1501 }, level = 75, group = "AllResistancesUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "resistance" }, }, - ["AllResistancesEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(21-22)% to all Elemental Resistances", statOrder = { 1501 }, level = 75, group = "AllResistancesUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "resistance" }, }, - ["AllResistancesEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(17-18)% to all Elemental Resistances", statOrder = { 1501 }, level = 75, group = "AllResistancesPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "resistance" }, }, - ["AllResistancesEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(19-20)% to all Elemental Resistances", statOrder = { 1501 }, level = 75, group = "AllResistancesPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "resistance" }, }, - ["AllResistancesEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(21-22)% to all Elemental Resistances", statOrder = { 1501 }, level = 75, group = "AllResistancesPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "resistance" }, }, - ["AllResistancesEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(23-24)% to all Elemental Resistances", statOrder = { 1501 }, level = 75, group = "AllResistancesPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "resistance" }, }, - ["AllResistancesEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(25-26)% to all Elemental Resistances", statOrder = { 1501 }, level = 75, group = "AllResistancesPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "resistance" }, }, - ["AllResistancesEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(27-28)% to all Elemental Resistances", statOrder = { 1501 }, level = 75, group = "AllResistancesPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "resistance" }, }, - ["LifeRecoveryRateEldritchImplicit1"] = { type = "Eater", affix = "", "7% increased Life Recovery rate", statOrder = { 1460 }, level = 75, group = "LifeRecoveryRate", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, }, - ["LifeRecoveryRateEldritchImplicit2"] = { type = "Eater", affix = "", "8% increased Life Recovery rate", statOrder = { 1460 }, level = 75, group = "LifeRecoveryRate", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, }, - ["LifeRecoveryRateEldritchImplicit3"] = { type = "Eater", affix = "", "9% increased Life Recovery rate", statOrder = { 1460 }, level = 75, group = "LifeRecoveryRate", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, }, - ["LifeRecoveryRateEldritchImplicit4"] = { type = "Eater", affix = "", "10% increased Life Recovery rate", statOrder = { 1460 }, level = 75, group = "LifeRecoveryRate", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, }, - ["LifeRecoveryRateEldritchImplicit5"] = { type = "Eater", affix = "", "11% increased Life Recovery rate", statOrder = { 1460 }, level = 75, group = "LifeRecoveryRate", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, }, - ["LifeRecoveryRateEldritchImplicit6"] = { type = "Eater", affix = "", "12% increased Life Recovery rate", statOrder = { 1460 }, level = 75, group = "LifeRecoveryRate", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, }, - ["LifeRecoveryRateEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% increased Life Recovery rate", statOrder = { 1460 }, level = 75, group = "LifeRecoveryRateUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, }, - ["LifeRecoveryRateEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% increased Life Recovery rate", statOrder = { 1460 }, level = 75, group = "LifeRecoveryRateUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, }, - ["LifeRecoveryRateEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 11% increased Life Recovery rate", statOrder = { 1460 }, level = 75, group = "LifeRecoveryRateUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, }, - ["LifeRecoveryRateEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 12% increased Life Recovery rate", statOrder = { 1460 }, level = 75, group = "LifeRecoveryRateUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, }, - ["LifeRecoveryRateEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 13% increased Life Recovery rate", statOrder = { 1460 }, level = 75, group = "LifeRecoveryRateUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, }, - ["LifeRecoveryRateEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% increased Life Recovery rate", statOrder = { 1460 }, level = 75, group = "LifeRecoveryRateUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, }, - ["LifeRecoveryRateEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% increased Life Recovery rate", statOrder = { 1460 }, level = 75, group = "LifeRecoveryRatePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, }, - ["LifeRecoveryRateEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% increased Life Recovery rate", statOrder = { 1460 }, level = 75, group = "LifeRecoveryRatePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, }, - ["LifeRecoveryRateEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% increased Life Recovery rate", statOrder = { 1460 }, level = 75, group = "LifeRecoveryRatePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, }, - ["LifeRecoveryRateEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% increased Life Recovery rate", statOrder = { 1460 }, level = 75, group = "LifeRecoveryRatePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, }, - ["LifeRecoveryRateEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 15% increased Life Recovery rate", statOrder = { 1460 }, level = 75, group = "LifeRecoveryRatePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, }, - ["LifeRecoveryRateEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Life Recovery rate", statOrder = { 1460 }, level = 75, group = "LifeRecoveryRatePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, }, - ["ManaRecoveryRateEldritchImplicit1"] = { type = "Eater", affix = "", "7% increased Mana Recovery rate", statOrder = { 1468 }, level = 75, group = "ManaRecoveryRate", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "mana" }, }, - ["ManaRecoveryRateEldritchImplicit2"] = { type = "Eater", affix = "", "8% increased Mana Recovery rate", statOrder = { 1468 }, level = 75, group = "ManaRecoveryRate", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "mana" }, }, - ["ManaRecoveryRateEldritchImplicit3"] = { type = "Eater", affix = "", "9% increased Mana Recovery rate", statOrder = { 1468 }, level = 75, group = "ManaRecoveryRate", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "mana" }, }, - ["ManaRecoveryRateEldritchImplicit4"] = { type = "Eater", affix = "", "10% increased Mana Recovery rate", statOrder = { 1468 }, level = 75, group = "ManaRecoveryRate", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "mana" }, }, - ["ManaRecoveryRateEldritchImplicit5"] = { type = "Eater", affix = "", "11% increased Mana Recovery rate", statOrder = { 1468 }, level = 75, group = "ManaRecoveryRate", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "mana" }, }, - ["ManaRecoveryRateEldritchImplicit6"] = { type = "Eater", affix = "", "12% increased Mana Recovery rate", statOrder = { 1468 }, level = 75, group = "ManaRecoveryRate", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "mana" }, }, - ["ManaRecoveryRateEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% increased Mana Recovery rate", statOrder = { 1468 }, level = 75, group = "ManaRecoveryRateUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana" }, }, - ["ManaRecoveryRateEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% increased Mana Recovery rate", statOrder = { 1468 }, level = 75, group = "ManaRecoveryRateUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana" }, }, - ["ManaRecoveryRateEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 11% increased Mana Recovery rate", statOrder = { 1468 }, level = 75, group = "ManaRecoveryRateUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana" }, }, - ["ManaRecoveryRateEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 12% increased Mana Recovery rate", statOrder = { 1468 }, level = 75, group = "ManaRecoveryRateUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana" }, }, - ["ManaRecoveryRateEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 13% increased Mana Recovery rate", statOrder = { 1468 }, level = 75, group = "ManaRecoveryRateUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana" }, }, - ["ManaRecoveryRateEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% increased Mana Recovery rate", statOrder = { 1468 }, level = 75, group = "ManaRecoveryRateUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana" }, }, - ["ManaRecoveryRateEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% increased Mana Recovery rate", statOrder = { 1468 }, level = 75, group = "ManaRecoveryRatePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana" }, }, - ["ManaRecoveryRateEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% increased Mana Recovery rate", statOrder = { 1468 }, level = 75, group = "ManaRecoveryRatePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana" }, }, - ["ManaRecoveryRateEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% increased Mana Recovery rate", statOrder = { 1468 }, level = 75, group = "ManaRecoveryRatePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "mana" }, }, - ["ManaRecoveryRateEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% increased Mana Recovery rate", statOrder = { 1468 }, level = 75, group = "ManaRecoveryRatePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "mana" }, }, - ["ManaRecoveryRateEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 15% increased Mana Recovery rate", statOrder = { 1468 }, level = 75, group = "ManaRecoveryRatePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "mana" }, }, - ["ManaRecoveryRateEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Mana Recovery rate", statOrder = { 1468 }, level = 75, group = "ManaRecoveryRatePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "mana" }, }, - ["EnergyShieldRecoveryRateEldritchImplicit1"] = { type = "Eater", affix = "", "7% increased Energy Shield Recovery rate", statOrder = { 1450 }, level = 75, group = "EnergyShieldRecoveryRate", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldRecoveryRateEldritchImplicit2"] = { type = "Eater", affix = "", "8% increased Energy Shield Recovery rate", statOrder = { 1450 }, level = 75, group = "EnergyShieldRecoveryRate", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldRecoveryRateEldritchImplicit3"] = { type = "Eater", affix = "", "9% increased Energy Shield Recovery rate", statOrder = { 1450 }, level = 75, group = "EnergyShieldRecoveryRate", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldRecoveryRateEldritchImplicit4"] = { type = "Eater", affix = "", "10% increased Energy Shield Recovery rate", statOrder = { 1450 }, level = 75, group = "EnergyShieldRecoveryRate", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldRecoveryRateEldritchImplicit5"] = { type = "Eater", affix = "", "11% increased Energy Shield Recovery rate", statOrder = { 1450 }, level = 75, group = "EnergyShieldRecoveryRate", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldRecoveryRateEldritchImplicit6"] = { type = "Eater", affix = "", "12% increased Energy Shield Recovery rate", statOrder = { 1450 }, level = 75, group = "EnergyShieldRecoveryRate", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldRecoveryRateEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% increased Energy Shield Recovery rate", statOrder = { 1450 }, level = 75, group = "EnergyShieldRecoveryRateUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldRecoveryRateEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% increased Energy Shield Recovery rate", statOrder = { 1450 }, level = 75, group = "EnergyShieldRecoveryRateUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldRecoveryRateEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 11% increased Energy Shield Recovery rate", statOrder = { 1450 }, level = 75, group = "EnergyShieldRecoveryRateUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldRecoveryRateEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 12% increased Energy Shield Recovery rate", statOrder = { 1450 }, level = 75, group = "EnergyShieldRecoveryRateUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldRecoveryRateEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 13% increased Energy Shield Recovery rate", statOrder = { 1450 }, level = 75, group = "EnergyShieldRecoveryRateUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldRecoveryRateEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% increased Energy Shield Recovery rate", statOrder = { 1450 }, level = 75, group = "EnergyShieldRecoveryRateUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldRecoveryRateEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% increased Energy Shield Recovery rate", statOrder = { 1450 }, level = 75, group = "EnergyShieldRecoveryRatePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldRecoveryRateEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% increased Energy Shield Recovery rate", statOrder = { 1450 }, level = 75, group = "EnergyShieldRecoveryRatePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldRecoveryRateEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% increased Energy Shield Recovery rate", statOrder = { 1450 }, level = 75, group = "EnergyShieldRecoveryRatePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldRecoveryRateEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% increased Energy Shield Recovery rate", statOrder = { 1450 }, level = 75, group = "EnergyShieldRecoveryRatePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldRecoveryRateEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 15% increased Energy Shield Recovery rate", statOrder = { 1450 }, level = 75, group = "EnergyShieldRecoveryRatePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldRecoveryRateEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Energy Shield Recovery rate", statOrder = { 1450 }, level = 75, group = "EnergyShieldRecoveryRatePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "defences", "energy_shield" }, }, - ["DamageTakenPerStrengthEldritchImplicit1"] = { type = "Eater", affix = "", "1% less Damage Taken per 230 Strength", statOrder = { 5058 }, level = 75, group = "BodyDamageTakenPerStrength", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["DamageTakenPerStrengthEldritchImplicit2"] = { type = "Eater", affix = "", "1% less Damage Taken per 220 Strength", statOrder = { 5058 }, level = 75, group = "BodyDamageTakenPerStrength", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["DamageTakenPerStrengthEldritchImplicit3"] = { type = "Eater", affix = "", "1% less Damage Taken per 210 Strength", statOrder = { 5058 }, level = 75, group = "BodyDamageTakenPerStrength", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["DamageTakenPerStrengthEldritchImplicit4"] = { type = "Eater", affix = "", "1% less Damage Taken per 200 Strength", statOrder = { 5058 }, level = 75, group = "BodyDamageTakenPerStrength", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["DamageTakenPerStrengthEldritchImplicit5"] = { type = "Eater", affix = "", "1% less Damage Taken per 190 Strength", statOrder = { 5058 }, level = 75, group = "BodyDamageTakenPerStrength", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["DamageTakenPerStrengthEldritchImplicit6"] = { type = "Eater", affix = "", "1% less Damage Taken per 180 Strength", statOrder = { 5058 }, level = 75, group = "BodyDamageTakenPerStrength", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["DamageTakenPerStrengthEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 210 Strength", statOrder = { 5058 }, level = 75, group = "BodyDamageTakenPerStrengthUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["DamageTakenPerStrengthEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 200 Strength", statOrder = { 5058 }, level = 75, group = "BodyDamageTakenPerStrengthUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["DamageTakenPerStrengthEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 190 Strength", statOrder = { 5058 }, level = 75, group = "BodyDamageTakenPerStrengthUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["DamageTakenPerStrengthEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 180 Strength", statOrder = { 5058 }, level = 75, group = "BodyDamageTakenPerStrengthUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["DamageTakenPerStrengthEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 170 Strength", statOrder = { 5058 }, level = 75, group = "BodyDamageTakenPerStrengthUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["DamageTakenPerStrengthEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 160 Strength", statOrder = { 5058 }, level = 75, group = "BodyDamageTakenPerStrengthUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["DamageTakenPerStrengthEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 190 Strength", statOrder = { 5058 }, level = 75, group = "BodyDamageTakenPerStrengthPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["DamageTakenPerStrengthEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 180 Strength", statOrder = { 5058 }, level = 75, group = "BodyDamageTakenPerStrengthPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["DamageTakenPerStrengthEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 170 Strength", statOrder = { 5058 }, level = 75, group = "BodyDamageTakenPerStrengthPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["DamageTakenPerStrengthEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 160 Strength", statOrder = { 5058 }, level = 75, group = "BodyDamageTakenPerStrengthPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["DamageTakenPerStrengthEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 150 Strength", statOrder = { 5058 }, level = 75, group = "BodyDamageTakenPerStrengthPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["DamageTakenPerStrengthEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 140 Strength", statOrder = { 5058 }, level = 75, group = "BodyDamageTakenPerStrengthPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["DamageTakenPerDexterityEldritchImplicit1"] = { type = "Eater", affix = "", "1% less Damage Taken per 230 Dexterity", statOrder = { 5056 }, level = 75, group = "BodyDamageTakenPerDexterity", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["DamageTakenPerDexterityEldritchImplicit2"] = { type = "Eater", affix = "", "1% less Damage Taken per 220 Dexterity", statOrder = { 5056 }, level = 75, group = "BodyDamageTakenPerDexterity", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["DamageTakenPerDexterityEldritchImplicit3"] = { type = "Eater", affix = "", "1% less Damage Taken per 210 Dexterity", statOrder = { 5056 }, level = 75, group = "BodyDamageTakenPerDexterity", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["DamageTakenPerDexterityEldritchImplicit4"] = { type = "Eater", affix = "", "1% less Damage Taken per 200 Dexterity", statOrder = { 5056 }, level = 75, group = "BodyDamageTakenPerDexterity", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["DamageTakenPerDexterityEldritchImplicit5"] = { type = "Eater", affix = "", "1% less Damage Taken per 190 Dexterity", statOrder = { 5056 }, level = 75, group = "BodyDamageTakenPerDexterity", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["DamageTakenPerDexterityEldritchImplicit6"] = { type = "Eater", affix = "", "1% less Damage Taken per 180 Dexterity", statOrder = { 5056 }, level = 75, group = "BodyDamageTakenPerDexterity", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["DamageTakenPerDexterityEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 210 Dexterity", statOrder = { 5056 }, level = 75, group = "BodyDamageTakenPerDexterityUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["DamageTakenPerDexterityEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 200 Dexterity", statOrder = { 5056 }, level = 75, group = "BodyDamageTakenPerDexterityUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["DamageTakenPerDexterityEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 190 Dexterity", statOrder = { 5056 }, level = 75, group = "BodyDamageTakenPerDexterityUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["DamageTakenPerDexterityEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 180 Dexterity", statOrder = { 5056 }, level = 75, group = "BodyDamageTakenPerDexterityUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["DamageTakenPerDexterityEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 170 Dexterity", statOrder = { 5056 }, level = 75, group = "BodyDamageTakenPerDexterityUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["DamageTakenPerDexterityEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 160 Dexterity", statOrder = { 5056 }, level = 75, group = "BodyDamageTakenPerDexterityUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["DamageTakenPerDexterityEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 190 Dexterity", statOrder = { 5056 }, level = 75, group = "BodyDamageTakenPerDexterityPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["DamageTakenPerDexterityEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 180 Dexterity", statOrder = { 5056 }, level = 75, group = "BodyDamageTakenPerDexterityPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["DamageTakenPerDexterityEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 170 Dexterity", statOrder = { 5056 }, level = 75, group = "BodyDamageTakenPerDexterityPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["DamageTakenPerDexterityEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 160 Dexterity", statOrder = { 5056 }, level = 75, group = "BodyDamageTakenPerDexterityPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["DamageTakenPerDexterityEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 150 Dexterity", statOrder = { 5056 }, level = 75, group = "BodyDamageTakenPerDexterityPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["DamageTakenPerDexterityEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 140 Dexterity", statOrder = { 5056 }, level = 75, group = "BodyDamageTakenPerDexterityPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["DamageTakenPerIntelligenceEldritchImplicit1"] = { type = "Eater", affix = "", "1% less Damage Taken per 230 Intelligence", statOrder = { 5057 }, level = 75, group = "BodyDamageTakenPerIntelligence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["DamageTakenPerIntelligenceEldritchImplicit2"] = { type = "Eater", affix = "", "1% less Damage Taken per 220 Intelligence", statOrder = { 5057 }, level = 75, group = "BodyDamageTakenPerIntelligence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["DamageTakenPerIntelligenceEldritchImplicit3"] = { type = "Eater", affix = "", "1% less Damage Taken per 210 Intelligence", statOrder = { 5057 }, level = 75, group = "BodyDamageTakenPerIntelligence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["DamageTakenPerIntelligenceEldritchImplicit4"] = { type = "Eater", affix = "", "1% less Damage Taken per 200 Intelligence", statOrder = { 5057 }, level = 75, group = "BodyDamageTakenPerIntelligence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["DamageTakenPerIntelligenceEldritchImplicit5"] = { type = "Eater", affix = "", "1% less Damage Taken per 190 Intelligence", statOrder = { 5057 }, level = 75, group = "BodyDamageTakenPerIntelligence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["DamageTakenPerIntelligenceEldritchImplicit6"] = { type = "Eater", affix = "", "1% less Damage Taken per 180 Intelligence", statOrder = { 5057 }, level = 75, group = "BodyDamageTakenPerIntelligence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["DamageTakenPerIntelligenceEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 210 Intelligence", statOrder = { 5057 }, level = 75, group = "BodyDamageTakenPerIntelligenceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["DamageTakenPerIntelligenceEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 200 Intelligence", statOrder = { 5057 }, level = 75, group = "BodyDamageTakenPerIntelligenceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["DamageTakenPerIntelligenceEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 190 Intelligence", statOrder = { 5057 }, level = 75, group = "BodyDamageTakenPerIntelligenceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["DamageTakenPerIntelligenceEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 180 Intelligence", statOrder = { 5057 }, level = 75, group = "BodyDamageTakenPerIntelligenceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["DamageTakenPerIntelligenceEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 170 Intelligence", statOrder = { 5057 }, level = 75, group = "BodyDamageTakenPerIntelligenceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["DamageTakenPerIntelligenceEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 160 Intelligence", statOrder = { 5057 }, level = 75, group = "BodyDamageTakenPerIntelligenceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["DamageTakenPerIntelligenceEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 190 Intelligence", statOrder = { 5057 }, level = 75, group = "BodyDamageTakenPerIntelligencePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["DamageTakenPerIntelligenceEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 180 Intelligence", statOrder = { 5057 }, level = 75, group = "BodyDamageTakenPerIntelligencePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["DamageTakenPerIntelligenceEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 170 Intelligence", statOrder = { 5057 }, level = 75, group = "BodyDamageTakenPerIntelligencePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["DamageTakenPerIntelligenceEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 160 Intelligence", statOrder = { 5057 }, level = 75, group = "BodyDamageTakenPerIntelligencePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["DamageTakenPerIntelligenceEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 150 Intelligence", statOrder = { 5057 }, level = 75, group = "BodyDamageTakenPerIntelligencePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["DamageTakenPerIntelligenceEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 140 Intelligence", statOrder = { 5057 }, level = 75, group = "BodyDamageTakenPerIntelligencePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["SkillEffectDurationEldritchImplicit1"] = { type = "Eater", affix = "", "(7-8)% increased Skill Effect Duration", statOrder = { 1776 }, level = 75, group = "SkillEffectDuration", weightKey = { "no_tier_6_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["SkillEffectDurationEldritchImplicit2"] = { type = "Eater", affix = "", "(9-10)% increased Skill Effect Duration", statOrder = { 1776 }, level = 75, group = "SkillEffectDuration", weightKey = { "no_tier_5_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["SkillEffectDurationEldritchImplicit3"] = { type = "Eater", affix = "", "(11-12)% increased Skill Effect Duration", statOrder = { 1776 }, level = 75, group = "SkillEffectDuration", weightKey = { "no_tier_4_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["SkillEffectDurationEldritchImplicit4"] = { type = "Eater", affix = "", "(13-14)% increased Skill Effect Duration", statOrder = { 1776 }, level = 75, group = "SkillEffectDuration", weightKey = { "no_tier_3_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["SkillEffectDurationEldritchImplicit5"] = { type = "Eater", affix = "", "(15-16)% increased Skill Effect Duration", statOrder = { 1776 }, level = 75, group = "SkillEffectDuration", weightKey = { "no_tier_2_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["SkillEffectDurationEldritchImplicit6"] = { type = "Eater", affix = "", "(17-18)% increased Skill Effect Duration", statOrder = { 1776 }, level = 75, group = "SkillEffectDuration", weightKey = { "no_tier_1_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["SkillEffectDurationUniquePresence1"] = { type = "Eater", affix = "", "(13-14)% increased Skill Effect Duration", statOrder = { 1776 }, level = 75, group = "SkillEffectDurationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["SkillEffectDurationUniquePresence2"] = { type = "Eater", affix = "", "(15-16)% increased Skill Effect Duration", statOrder = { 1776 }, level = 75, group = "SkillEffectDurationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["SkillEffectDurationUniquePresence3"] = { type = "Eater", affix = "", "(17-18)% increased Skill Effect Duration", statOrder = { 1776 }, level = 75, group = "SkillEffectDurationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["SkillEffectDurationUniquePresence4"] = { type = "Eater", affix = "", "(19-20)% increased Skill Effect Duration", statOrder = { 1776 }, level = 75, group = "SkillEffectDurationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["SkillEffectDurationUniquePresence5"] = { type = "Eater", affix = "", "(21-22)% increased Skill Effect Duration", statOrder = { 1776 }, level = 75, group = "SkillEffectDurationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["SkillEffectDurationUniquePresence6"] = { type = "Eater", affix = "", "(23-24)% increased Skill Effect Duration", statOrder = { 1776 }, level = 75, group = "SkillEffectDurationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["SkillEffectDurationPinnaclePresence1"] = { type = "Eater", affix = "", "(19-20)% increased Skill Effect Duration", statOrder = { 1776 }, level = 75, group = "SkillEffectDurationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["SkillEffectDurationPinnaclePresence2"] = { type = "Eater", affix = "", "(21-22)% increased Skill Effect Duration", statOrder = { 1776 }, level = 75, group = "SkillEffectDurationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["SkillEffectDurationPinnaclePresence3"] = { type = "Eater", affix = "", "(23-24)% increased Skill Effect Duration", statOrder = { 1776 }, level = 75, group = "SkillEffectDurationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["SkillEffectDurationPinnaclePresence4"] = { type = "Eater", affix = "", "(25-26)% increased Skill Effect Duration", statOrder = { 1776 }, level = 75, group = "SkillEffectDurationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["SkillEffectDurationPinnaclePresence5"] = { type = "Eater", affix = "", "(27-28)% increased Skill Effect Duration", statOrder = { 1776 }, level = 75, group = "SkillEffectDurationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["SkillEffectDurationPinnaclePresence6"] = { type = "Eater", affix = "", "(29-30)% increased Skill Effect Duration", statOrder = { 1776 }, level = 75, group = "SkillEffectDurationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["RecombinatorSpecialMaximumEnduranceCharge"] = { type = "Prefix", affix = "Sentinel's", "+1 to Maximum Endurance Charges", statOrder = { 1685 }, level = 68, group = "MaximumEnduranceCharges", weightKey = { "default", }, weightVal = { 0 }, modTags = { "endurance_charge" }, }, - ["RecombinatorSpecialMaximumFrenzyCharge"] = { type = "Prefix", affix = "Sentinel's", "+1 to Maximum Frenzy Charges", statOrder = { 1690 }, level = 68, group = "MaximumFrenzyCharges", weightKey = { "default", }, weightVal = { 0 }, modTags = { "frenzy_charge" }, }, - ["RecombinatorSpecialMaximumPowerCharge"] = { type = "Prefix", affix = "Sentinel's", "+1 to Maximum Power Charges", statOrder = { 1695 }, level = 68, group = "IncreasedMaximumPowerCharges", weightKey = { "default", }, weightVal = { 0 }, modTags = { "power_charge" }, }, - ["RecombinatorSpecialKeystoneMinionInstability"] = { type = "Suffix", affix = "of the Sentinel", "Minion Instability", statOrder = { 10243 }, level = 68, group = "MinionInstability", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "minion" }, }, - ["RecombinatorSpecialKeystoneResoluteTechnique"] = { type = "Suffix", affix = "of the Sentinel", "Resolute Technique", statOrder = { 10269 }, level = 68, group = "ResoluteTechnique", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "critical" }, }, - ["RecombinatorSpecialKeystoneBloodMagic"] = { type = "Suffix", affix = "of the Sentinel", "Blood Magic", statOrder = { 10219 }, level = 68, group = "BloodMagic", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "mana" }, }, - ["RecombinatorSpecialKeystonePainAttunement"] = { type = "Suffix", affix = "of the Sentinel", "Pain Attunement", statOrder = { 10245 }, level = 68, group = "PainAttunement", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["RecombinatorSpecialKeystoneElementalEquilibrium"] = { type = "Suffix", affix = "of the Sentinel", "Elemental Equilibrium", statOrder = { 10228 }, level = 68, group = "ElementalEquilibrium", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["RecombinatorSpecialKeystoneIronGrip"] = { type = "Suffix", affix = "of the Sentinel", "Iron Grip", statOrder = { 10259 }, level = 68, group = "IronGrip", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack" }, }, - ["RecombinatorSpecialKeystonePointBlank"] = { type = "Suffix", affix = "of the Sentinel", "Point Blank", statOrder = { 10246 }, level = 68, group = "PointBlank", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack" }, }, - ["RecombinatorSpecialKeystoneAcrobatics"] = { type = "Suffix", affix = "of the Sentinel", "Acrobatics", statOrder = { 10214 }, level = 68, group = "Acrobatics", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["RecombinatorSpecialKeystoneGhostReaver"] = { type = "Suffix", affix = "of the Sentinel", "Ghost Reaver", statOrder = { 10234 }, level = 68, group = "KeystoneGhostReaver", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "energy_shield" }, }, - ["RecombinatorSpecialKeystoneVaalPact"] = { type = "Suffix", affix = "of the Sentinel", "Vaal Pact", statOrder = { 10263 }, level = 68, group = "VaalPact", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, - ["RecombinatorSpecialKeystoneElementalOverload"] = { type = "Suffix", affix = "of the Sentinel", "Elemental Overload", statOrder = { 10229 }, level = 68, group = "ElementalOverload", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "critical" }, }, - ["RecombinatorSpecialKeystoneAvatarOfFire"] = { type = "Suffix", affix = "of the Sentinel", "Avatar of Fire", statOrder = { 10217 }, level = 68, group = "AvatarOfFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["RecombinatorSpecialKeystoneEldritchBattery"] = { type = "Suffix", affix = "of the Sentinel", "Eldritch Battery", statOrder = { 10227 }, level = 68, group = "EldritchBattery", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, - ["RecombinatorSpecialKeystoneAncestralBond"] = { type = "Suffix", affix = "of the Sentinel", "Ancestral Bond", statOrder = { 10216 }, level = 68, group = "AncestralBond", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, }, - ["RecombinatorSpecialKeystoneCrimsonDance"] = { type = "Suffix", affix = "of the Sentinel", "Crimson Dance", statOrder = { 10224 }, level = 68, group = "CrimsonDance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, - ["RecombinatorSpecialKeystonePerfectAgony"] = { type = "Suffix", affix = "of the Sentinel", "Perfect Agony", statOrder = { 10215 }, level = 68, group = "PerfectAgony", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "critical", "ailment" }, }, - ["RecombinatorSpecialKeystoneRunebinder"] = { type = "Suffix", affix = "of the Sentinel", "Runebinder", statOrder = { 10252 }, level = 68, group = "Runebinder", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster" }, }, - ["RecombinatorSpecialKeystoneMortalConviction"] = { type = "Suffix", affix = "of the Sentinel", "Blood Magic", statOrder = { 10219 }, level = 68, group = "BloodMagic", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "mana" }, }, - ["RecombinatorSpecialKeystoneCallToArms"] = { type = "Suffix", affix = "of the Sentinel", "Call to Arms", statOrder = { 10220 }, level = 68, group = "CallToArms", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["RecombinatorSpecialKeystoneTheAgnostic"] = { type = "Suffix", affix = "of the Sentinel", "The Agnostic", statOrder = { 10244 }, level = 68, group = "TheAgnostic", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "mana", "defences", "energy_shield" }, }, - ["RecombinatorSpecialKeystoneSupremeEgo"] = { type = "Suffix", affix = "of the Sentinel", "Supreme Ego", statOrder = { 10260 }, level = 68, group = "SupremeEgo", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "aura" }, }, - ["RecombinatorSpecialKeystoneTheImpaler"] = { type = "Suffix", affix = "of the Sentinel", "The Impaler", statOrder = { 10238 }, level = 68, group = "Impaler", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["RecombinatorSpecialKeystoneDoomsday"] = { type = "Suffix", affix = "of the Sentinel", "Hex Master", statOrder = { 10236 }, level = 68, group = "HexMaster", weightKey = { "default", }, weightVal = { 0 }, modTags = { "curse" }, }, - ["RecombinatorSpecialKeystoneLetheShade1"] = { type = "Suffix", affix = "of the Sentinel", "Lethe Shade", statOrder = { 10240 }, level = 68, group = "LetheShade", weightKey = { "default", }, weightVal = { 0 }, modTags = { "ailment" }, }, - ["RecombinatorSpecialKeystoneGhostDance"] = { type = "Suffix", affix = "of the Sentinel", "Ghost Dance", statOrder = { 10233 }, level = 68, group = "GhostDance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, - ["RecombinatorSpecialKeystoneVersatileCombatant"] = { type = "Suffix", affix = "of the Sentinel", "Versatile Combatant", statOrder = { 10264 }, level = 68, group = "VersatileCombatant", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, - ["RecombinatorSpecialKeystoneMagebane"] = { type = "Suffix", affix = "of the Sentinel", "Magebane", statOrder = { 10241 }, level = 68, group = "Magebane", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["RecombinatorSpecialKeystoneSolipsism"] = { type = "Suffix", affix = "of the Sentinel", "Solipsism", statOrder = { 10257 }, level = 68, group = "Solipsism", weightKey = { "default", }, weightVal = { 0 }, modTags = { "ailment" }, }, - ["RecombinatorSpecialKeystoneDivineShield"] = { type = "Suffix", affix = "of the Sentinel", "Divine Shield", statOrder = { 10226 }, level = 68, group = "DivineShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, - ["RecombinatorSpecialKeystoneIronWill"] = { type = "Suffix", affix = "of the Sentinel", "Iron Will", statOrder = { 10270 }, level = 68, group = "IronWill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster" }, }, - ["RecombinatorSpecialMagicUtilityFlaskEffect"] = { type = "Prefix", affix = "Sentinel's", "Magic Utility Flasks applied to you have (20-25)% increased Effect", statOrder = { 2618 }, level = 68, group = "MagicUtilityFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, }, - ["RecombinatorSpecialAuraEffect"] = { type = "Suffix", affix = "of the Sentinel", "(15-20)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3429 }, level = 68, group = "AuraEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "aura" }, }, - ["RecombinatorSpecialFireDamageToAttacksPerStrength"] = { type = "Prefix", affix = "Sentinel's", "Adds 2 to 4 Fire Damage to Attacks per 10 Strength", statOrder = { 8780 }, level = 68, group = "FireDamageToAttacksPerStrength", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "attack" }, }, - ["RecombinatorSpecialColdDamageToAttacksPerDexterity"] = { type = "Prefix", affix = "Sentinel's", "Adds 2 to 4 Cold Damage to Attacks per 10 Dexterity", statOrder = { 8773 }, level = 68, group = "ColdDamageToAttacksPerDexterity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "attack" }, }, - ["RecombinatorSpecialLightningDamageToAttacksPerIntelligence"] = { type = "Prefix", affix = "Sentinel's", "Adds 1 to 5 Lightning Damage to Attacks per 10 Intelligence", statOrder = { 8785 }, level = 68, group = "LightningDamageToAttacksPerIntelligence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "attack" }, }, - ["RecombinatorSpecialAllFireDamageCanShock"] = { type = "Suffix", affix = "of the Sentinel", "Your Fire Damage can Shock", statOrder = { 2750 }, level = 68, group = "AllFireDamageCanShock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "lightning", "ailment" }, }, - ["RecombinatorSpecialAllColdDamageCanIgnite"] = { type = "Suffix", affix = "of the Sentinel", "Your Cold Damage can Ignite", statOrder = { 2745 }, level = 68, group = "AllColdDamageCanIgnite", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "ailment" }, }, - ["RecombinatorSpecialAllLightningDamageCanFreeze"] = { type = "Suffix", affix = "of the Sentinel", "Your Lightning Damage can Freeze", statOrder = { 2757 }, level = 68, group = "AllLightningDamageCanFreeze", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "lightning", "ailment" }, }, - ["RecombinatorSpecialMarkEffect"] = { type = "Suffix", affix = "of the Sentinel", "(30-40)% increased Effect of your Marks", statOrder = { 2474 }, level = 68, group = "MarkEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, }, - ["RecombinatorSpecialArcaneSurgeEffect1H"] = { type = "Suffix", affix = "of the Sentinel", "(30-40)% increased Effect of Arcane Surge on you", statOrder = { 3154 }, level = 68, group = "ArcaneSurgeEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["RecombinatorSpecialArcaneSurgeEffect2H"] = { type = "Suffix", affix = "of the Sentinel", "(50-70)% increased Effect of Arcane Surge on you", statOrder = { 3154 }, level = 68, group = "ArcaneSurgeEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["RecombinatorSpecialOnslaughtEffect1H"] = { type = "Suffix", affix = "of the Sentinel", "(30-40)% increased Effect of Onslaught on you", statOrder = { 3156 }, level = 68, group = "OnslaughtEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["RecombinatorSpecialOnslaughtEffect2H"] = { type = "Suffix", affix = "of the Sentinel", "(50-70)% increased Effect of Onslaught on you", statOrder = { 3156 }, level = 68, group = "OnslaughtEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["RecombinatorSpecialIncreasedDamageVsWarcryTauntedEnemies1H"] = { type = "Suffix", affix = "of the Sentinel", "Enemies Taunted by your Warcries take (10-15)% increased Damage", statOrder = { 9835 }, level = 68, group = "WarcryTauntedEnemiesTakeIncreasedDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, }, - ["RecombinatorSpecialIncreasedDamageVsWarcryTauntedEnemies2H"] = { type = "Suffix", affix = "of the Sentinel", "Enemies Taunted by your Warcries take (20-25)% increased Damage", statOrder = { 9835 }, level = 68, group = "WarcryTauntedEnemiesTakeIncreasedDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, }, - ["RecombinatorSpecialSupportedByLevelFourEnlighten"] = { type = "Prefix", affix = "Sentinel's", "Socketed Gems are Supported by Level 4 Enlighten", statOrder = { 238 }, level = 68, group = "SupportedByEnlighten", weightKey = { "default", }, weightVal = { 0 }, modTags = { "support", "gem" }, }, - ["RecombinatorSpecialSupportedByLevelFourEnhance"] = { type = "Prefix", affix = "Sentinel's", "Socketed Gems are Supported by Level 4 Enhance", statOrder = { 237 }, level = 68, group = "SupportedByEnhance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "support", "gem" }, }, - ["RecombinatorSpecialSupportedByLevelFourEmpower"] = { type = "Prefix", affix = "Sentinel's", "Socketed Gems are Supported by Level 4 Empower", statOrder = { 235 }, level = 68, group = "SupportedByEmpower", weightKey = { "default", }, weightVal = { 0 }, modTags = { "support", "gem" }, }, - ["RecombinatorSpecialTriggerSkillsDoubleDamage"] = { type = "Prefix", affix = "Sentinel's", "Socketed Triggered Skills deal Double Damage", statOrder = { 329 }, level = 68, group = "SocketedTriggeredSkillsDoubleDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "support", "damage", "gem" }, }, - ["LifeRegeneration1Inverted"] = { type = "Suffix", affix = "of the Newt", "Lose (1-2) Life per second", statOrder = { 1457 }, level = 1, group = "LifeDegenerationGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flat_life_regen", "resource", "life" }, }, - ["LifeRegeneration2Inverted"] = { type = "Suffix", affix = "of the Lizard", "Lose (2.1-8) Life per second", statOrder = { 1457 }, level = 7, group = "LifeDegenerationGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flat_life_regen", "resource", "life" }, }, - ["LifeRegeneration3Inverted"] = { type = "Suffix", affix = "of the Flatworm", "Lose (8.1-16) Life per second", statOrder = { 1457 }, level = 19, group = "LifeDegenerationGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flat_life_regen", "resource", "life" }, }, - ["LifeRegeneration4Inverted"] = { type = "Suffix", affix = "of the Starfish", "Lose (16.1-24) Life per second", statOrder = { 1457 }, level = 31, group = "LifeDegenerationGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flat_life_regen", "resource", "life" }, }, - ["LifeRegeneration5Inverted"] = { type = "Suffix", affix = "of the Hydra", "Lose (24.1-32) Life per second", statOrder = { 1457 }, level = 44, group = "LifeDegenerationGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flat_life_regen", "resource", "life" }, }, - ["LifeRegeneration6Inverted"] = { type = "Suffix", affix = "of the Troll", "Lose (32.1-48) Life per second", statOrder = { 1457 }, level = 55, group = "LifeDegenerationGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flat_life_regen", "resource", "life" }, }, - ["LifeRegeneration7Inverted"] = { type = "Suffix", affix = "of Ryslatha", "Lose (48.1-64) Life per second", statOrder = { 1457 }, level = 68, group = "LifeDegenerationGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flat_life_regen", "resource", "life" }, }, - ["LifeRegeneration8Inverted"] = { type = "Suffix", affix = "of the Phoenix", "Lose (64.1-96) Life per second", statOrder = { 1457 }, level = 74, group = "LifeDegenerationGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flat_life_regen", "resource", "life" }, }, - ["AddedPhysicalDamage1Inverted"] = { type = "Prefix", affix = "Glinting", "Adds 1 to 2 Physical Damage to Attacks against you", statOrder = { 1152 }, level = 5, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AddedPhysicalDamage2Inverted"] = { type = "Prefix", affix = "Burnished", "Adds (2-3) to (4-5) Physical Damage to Attacks against you", statOrder = { 1152 }, level = 13, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AddedPhysicalDamage3Inverted"] = { type = "Prefix", affix = "Polished", "Adds (3-4) to (6-7) Physical Damage to Attacks against you", statOrder = { 1152 }, level = 19, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AddedPhysicalDamage4Inverted"] = { type = "Prefix", affix = "Honed", "Adds (4-6) to (9-10) Physical Damage to Attacks against you", statOrder = { 1152 }, level = 28, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AddedPhysicalDamage5Inverted"] = { type = "Prefix", affix = "Gleaming", "Adds (5-7) to (11-12) Physical Damage to Attacks against you", statOrder = { 1152 }, level = 35, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AddedPhysicalDamage6Inverted"] = { type = "Prefix", affix = "Annealed", "Adds (6-9) to (13-15) Physical Damage to Attacks against you", statOrder = { 1152 }, level = 44, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AddedPhysicalDamage7Inverted"] = { type = "Prefix", affix = "Razor-sharp", "Adds (7-10) to (15-18) Physical Damage to Attacks against you", statOrder = { 1152 }, level = 52, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AddedPhysicalDamage8Inverted"] = { type = "Prefix", affix = "Tempered", "Adds (9-12) to (19-22) Physical Damage to Attacks against you", statOrder = { 1152 }, level = 64, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AddedPhysicalDamage9Inverted"] = { type = "Prefix", affix = "Flaring", "Adds (11-15) to (22-26) Physical Damage to Attacks against you", statOrder = { 1152 }, level = 76, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AddedFireDamage1Inverted"] = { type = "Prefix", affix = "Heated", "Adds 1 to 2 Fire Damage to Attacks against you", statOrder = { 1245 }, level = 1, group = "SelfFireDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AddedFireDamage2Inverted"] = { type = "Prefix", affix = "Smouldering", "Adds (3-5) to (7-8) Fire Damage to Attacks against you", statOrder = { 1245 }, level = 12, group = "SelfFireDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AddedFireDamage3Inverted"] = { type = "Prefix", affix = "Smoking", "Adds (5-7) to (11-13) Fire Damage to Attacks against you", statOrder = { 1245 }, level = 20, group = "SelfFireDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AddedFireDamage4Inverted"] = { type = "Prefix", affix = "Burning", "Adds (7-10) to (15-18) Fire Damage to Attacks against you", statOrder = { 1245 }, level = 28, group = "SelfFireDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AddedFireDamage5Inverted"] = { type = "Prefix", affix = "Flaming", "Adds (9-12) to (19-22) Fire Damage to Attacks against you", statOrder = { 1245 }, level = 35, group = "SelfFireDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AddedFireDamage6Inverted"] = { type = "Prefix", affix = "Scorching", "Adds (11-15) to (23-27) Fire Damage to Attacks against you", statOrder = { 1245 }, level = 44, group = "SelfFireDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AddedFireDamage7Inverted"] = { type = "Prefix", affix = "Incinerating", "Adds (13-18) to (27-31) Fire Damage to Attacks against you", statOrder = { 1245 }, level = 52, group = "SelfFireDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AddedFireDamage8Inverted"] = { type = "Prefix", affix = "Blasting", "Adds (16-22) to (32-38) Fire Damage to Attacks against you", statOrder = { 1245 }, level = 64, group = "SelfFireDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AddedFireDamage9Inverted"] = { type = "Prefix", affix = "Cremating", "Adds (19-25) to (39-45) Fire Damage to Attacks against you", statOrder = { 1245 }, level = 76, group = "SelfFireDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AddedColdDamage1Inverted"] = { type = "Prefix", affix = "Frosted", "Adds 1 to 2 Cold Damage to Attacks against you", statOrder = { 1254 }, level = 2, group = "SelfColdDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AddedColdDamage2Inverted"] = { type = "Prefix", affix = "Chilled", "Adds (3-4) to (7-8) Cold Damage to Attacks against you", statOrder = { 1254 }, level = 13, group = "SelfColdDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AddedColdDamage3Inverted"] = { type = "Prefix", affix = "Icy", "Adds (5-7) to (10-12) Cold Damage to Attacks against you", statOrder = { 1254 }, level = 21, group = "SelfColdDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AddedColdDamage4Inverted"] = { type = "Prefix", affix = "Frigid", "Adds (6-9) to (13-16) Cold Damage to Attacks against you", statOrder = { 1254 }, level = 29, group = "SelfColdDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AddedColdDamage5Inverted"] = { type = "Prefix", affix = "Freezing", "Adds (8-11) to (16-19) Cold Damage to Attacks against you", statOrder = { 1254 }, level = 36, group = "SelfColdDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AddedColdDamage6Inverted"] = { type = "Prefix", affix = "Frozen", "Adds (10-13) to (20-24) Cold Damage to Attacks against you", statOrder = { 1254 }, level = 45, group = "SelfColdDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AddedColdDamage7Inverted"] = { type = "Prefix", affix = "Glaciated", "Adds (12-16) to (24-28) Cold Damage to Attacks against you", statOrder = { 1254 }, level = 53, group = "SelfColdDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AddedColdDamage8Inverted"] = { type = "Prefix", affix = "Polar", "Adds (14-19) to (29-34) Cold Damage to Attacks against you", statOrder = { 1254 }, level = 65, group = "SelfColdDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AddedColdDamage9Inverted"] = { type = "Prefix", affix = "Entombing", "Adds (17-22) to (34-40) Cold Damage to Attacks against you", statOrder = { 1254 }, level = 77, group = "SelfColdDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AddedLightningDamage1Inverted"] = { type = "Prefix", affix = "Humming", "Adds 1 to 5 Lightning Damage to Attacks against you", statOrder = { 1265 }, level = 3, group = "SelfLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AddedLightningDamage2Inverted"] = { type = "Prefix", affix = "Buzzing", "Adds 1 to (14-15) Lightning Damage to Attacks against you", statOrder = { 1265 }, level = 13, group = "SelfLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AddedLightningDamage3Inverted"] = { type = "Prefix", affix = "Snapping", "Adds (1-2) to (22-23) Lightning Damage to Attacks against you", statOrder = { 1265 }, level = 22, group = "SelfLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AddedLightningDamage4Inverted"] = { type = "Prefix", affix = "Crackling", "Adds (1-2) to (27-28) Lightning Damage to Attacks against you", statOrder = { 1265 }, level = 28, group = "SelfLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AddedLightningDamage5Inverted"] = { type = "Prefix", affix = "Sparking", "Adds (1-3) to (33-34) Lightning Damage to Attacks against you", statOrder = { 1265 }, level = 35, group = "SelfLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AddedLightningDamage6Inverted"] = { type = "Prefix", affix = "Arcing", "Adds (1-4) to (40-43) Lightning Damage to Attacks against you", statOrder = { 1265 }, level = 44, group = "SelfLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AddedLightningDamage7Inverted"] = { type = "Prefix", affix = "Shocking", "Adds (2-5) to (47-50) Lightning Damage to Attacks against you", statOrder = { 1265 }, level = 52, group = "SelfLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AddedLightningDamage8Inverted"] = { type = "Prefix", affix = "Discharging", "Adds (3-6) to (57-61) Lightning Damage to Attacks against you", statOrder = { 1265 }, level = 64, group = "SelfLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AddedLightningDamage9Inverted"] = { type = "Prefix", affix = "Electrocuting", "Adds (3-7) to (68-72) Lightning Damage to Attacks against you", statOrder = { 1265 }, level = 76, group = "SelfLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["LifeLeechPermyriad1Inverted"] = { type = "Prefix", affix = "Remora's", "(0.2-0.4)% of Physical Attack Damage Leeched by Enemy as Life", statOrder = { 1529 }, level = 50, group = "EnemyLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeechPermyriad2Inverted"] = { type = "Prefix", affix = "Lamprey's", "(0.6-0.8)% of Physical Attack Damage Leeched by Enemy as Life", statOrder = { 1529 }, level = 60, group = "EnemyLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeechPermyriad3Inverted"] = { type = "Prefix", affix = "Vampire's", "(1-1.2)% of Physical Attack Damage Leeched by Enemy as Life", statOrder = { 1529 }, level = 70, group = "EnemyLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeechPermyriadSuffix1Inverted"] = { type = "Suffix", affix = "of the Remora", "(0.2-0.4)% of Physical Attack Damage Leeched by Enemy as Life", statOrder = { 1529 }, level = 50, group = "EnemyLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeechPermyriadSuffix2Inverted"] = { type = "Suffix", affix = "of the Lamprey", "(0.6-0.8)% of Physical Attack Damage Leeched by Enemy as Life", statOrder = { 1529 }, level = 60, group = "EnemyLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeechPermyriadSuffix3Inverted"] = { type = "Suffix", affix = "of the Vampire", "(1-1.2)% of Physical Attack Damage Leeched by Enemy as Life", statOrder = { 1529 }, level = 70, group = "EnemyLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, - ["ManaLeechPermyriad1Inverted"] = { type = "Prefix", affix = "Thirsty", "(0.2-0.4)% of Physical Attack Damage Leeched by Enemy as Mana", statOrder = { 1579 }, level = 50, group = "EnemyManaLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, }, - ["ManaLeechPermyriad2Inverted"] = { type = "Prefix", affix = "Parched", "(0.6-0.8)% of Physical Attack Damage Leeched by Enemy as Mana", statOrder = { 1579 }, level = 70, group = "EnemyManaLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, }, - ["ManaLeechPermyriadSuffix1Inverted"] = { type = "Suffix", affix = "of Thirst", "(0.2-0.4)% of Physical Attack Damage Leeched by Enemy as Mana", statOrder = { 1579 }, level = 50, group = "EnemyManaLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, }, - ["ManaLeechPermyriadSuffix2Inverted"] = { type = "Suffix", affix = "of Parching", "(0.6-0.8)% of Physical Attack Damage Leeched by Enemy as Mana", statOrder = { 1579 }, level = 70, group = "EnemyManaLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, }, - ["LifeRegenerationEnhancedLevel50ModInverted"] = { type = "Suffix", affix = "of Guatelitzi", "Lose (32-40) Life per second", "Lose 0.4% of Life per second", statOrder = { 1457, 1822 }, level = 50, group = "LifeDegenerationAndPercentGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, - ["IncreasedEnergyShieldEnhancedLevel50ModRegenInverted"] = { type = "Prefix", affix = "Guatelitzi's", "+(44-47) to maximum Energy Shield", "Lose 0.4% of Energy Shield per second", statOrder = { 1440, 2522 }, level = 50, group = "EnergyShieldAndDegenGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, - ["FireResistEnhancedLevel50ModLeechInverted"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Fire Resistance", "0.4% of Fire Damage Leeched by Enemy as Life", statOrder = { 1507, 1552 }, level = 50, group = "FireResistanceEnemyLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "fire", "resistance" }, }, - ["ColdResistEnhancedLevel50ModLeechInverted"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Cold Resistance", "0.4% of Cold Damage Leeched by Enemy as Life", statOrder = { 1513, 1557 }, level = 50, group = "ColdResistanceEnemyLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "cold", "resistance" }, }, - ["LightningResistEnhancedLevel50ModLeechInverted"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Lightning Resistance", "0.4% of Lightning Damage Leeched by Enemy as Life", statOrder = { 1518, 1561 }, level = 50, group = "LightningResistanceEnemyLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "lightning", "resistance" }, }, - ["IncreasedManaEnhancedLevel50ModRegenInverted"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "Lose (5-7) Mana per second", statOrder = { 1461, 1465 }, level = 50, group = "IncreasedManaAndDegenGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaEnhancedLevel50ModCostNewInverted"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "Non-Channelling Skills Cost -(8-6) Mana", statOrder = { 1461, 9550 }, level = 50, group = "IncreasedManaAndBaseCost", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, - ["AddedPhysicalDamageEssenceAmulet7Inverted"] = { type = "Prefix", affix = "Essences", "Adds (16-18) to (27-30) Physical Damage to Attacks against you", statOrder = { 1152 }, level = 82, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AddedPhysicalDamageEssenceRing5Inverted"] = { type = "Prefix", affix = "Essences", "Adds (6-8) to (12-13) Physical Damage to Attacks against you", statOrder = { 1152 }, level = 58, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AddedPhysicalDamageEssenceRing6Inverted"] = { type = "Prefix", affix = "Essences", "Adds (7-9) to (13-15) Physical Damage to Attacks against you", statOrder = { 1152 }, level = 74, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AddedPhysicalDamageEssenceRing7Inverted"] = { type = "Prefix", affix = "Essences", "Adds (10-11) to (16-17) Physical Damage to Attacks against you", statOrder = { 1152 }, level = 82, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AddedFireDamageEssence7Inverted"] = { type = "Prefix", affix = "Essences", "Adds (23-27) to (43-48) Fire Damage to Attacks against you", statOrder = { 1245 }, level = 82, group = "SelfFireDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AddedColdDamageEssence7Inverted"] = { type = "Prefix", affix = "Essences", "Adds (20-24) to (38-44) Cold Damage to Attacks against you", statOrder = { 1254 }, level = 82, group = "SelfColdDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AddedLightningDamageEssence7Inverted"] = { type = "Prefix", affix = "Essences", "Adds (4-8) to (71-76) Lightning Damage to Attacks against you", statOrder = { 1265 }, level = 82, group = "SelfLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["FireDamageAsPortionOfPhysicalDamageEssence1Inverted"] = { type = "Prefix", affix = "Essences", "Hits against you gain 10% of Physical Damage as Extra Fire Damage", statOrder = { 1810 }, level = 63, group = "SelfPhysAsExtraFireTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, - ["AddedColdDamagePerFrenzyChargeEssence1Inverted"] = { type = "Prefix", affix = "Essences", "Adds 4 to 7 Cold Damage to Hits against you per Frenzy Charge", statOrder = { 4133 }, level = 63, group = "SelfColdDamageTakenPerFrenzy", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ChanceToRecoverManaOnSkillUseEssence1Inverted"] = { type = "Suffix", affix = "of the Essence", "10% chance to lose 10% of Mana when you use a Skill", statOrder = { 3337 }, level = 63, group = "ChanceToLoseManaOnSkillUse", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, - ["PhysicalDamageLifeLeechDelveInverted"] = { type = "Prefix", affix = "Subterranean", "0.4% of Physical Damage Leeched by Enemy as Life", statOrder = { 1548 }, level = 60, group = "EnemyPhysicalDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["FireDamageLifeLeechDelveInverted"] = { type = "Prefix", affix = "Subterranean", "0.4% of Fire Damage Leeched by Enemy as Life", statOrder = { 1552 }, level = 60, group = "EnemyFireDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["ColdDamageLifeLeechDelveInverted"] = { type = "Prefix", affix = "Subterranean", "0.4% of Cold Damage Leeched by Enemy as Life", statOrder = { 1557 }, level = 60, group = "EnemyColdDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["LightningDamageLifeLeechDelveInverted"] = { type = "Prefix", affix = "Subterranean", "0.4% of Lightning Damage Leeched by Enemy as Life", statOrder = { 1561 }, level = 60, group = "EnemyLightningDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["ChaosDamageLifeLeechDelveInverted"] = { type = "Prefix", affix = "Subterranean", "0.4% of Chaos Damage Leeched by Enemy as Life", statOrder = { 1564 }, level = 60, group = "EnemyChaosDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["AddedManaRegenerationDelveInverted"] = { type = "Suffix", affix = "of the Underground", "Lose (3-5) Mana per second", statOrder = { 1465 }, level = 60, group = "ManaDegenerationGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, - ["NecropolisCraftingAllResistancesWithChaos"] = { type = "Suffix", affix = "of Haunting", "+(12-16)% to All Resistances", statOrder = { 9414 }, level = 12, group = "AllResistancesWithChaos", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "resistance" }, }, - ["NecropolisCraftingFireResistanceCannotBePenetrated"] = { type = "Suffix", affix = "of Haunting", "Fire Resistance cannot be Penetrated", statOrder = { 6253 }, level = 68, group = "FireResistanceCannotBePenetrated", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "fire", "resistance" }, }, - ["NecropolisCraftingColdResistanceCannotBePenetrated"] = { type = "Suffix", affix = "of Haunting", "Cold Resistance cannot be Penetrated", statOrder = { 5540 }, level = 68, group = "ColdResistanceCannotBePenetrated", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "cold", "resistance" }, }, - ["NecropolisCraftingLightningResistanceCannotBePenetrated"] = { type = "Suffix", affix = "of Haunting", "Lightning Resistance cannot be Penetrated", statOrder = { 7074 }, level = 68, group = "LightningResistanceCannotBePenetrated", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "lightning", "resistance" }, }, - ["NecropolisCraftingLocalNoAttributeRequirements"] = { type = "Suffix", affix = "of Haunting", "Has no Attribute Requirements", statOrder = { 971 }, level = 50, group = "LocalNoAttributeRequirements", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod" }, }, - ["NecropolisCraftingDamageTakenGainedAsLife"] = { type = "Suffix", affix = "of Haunting", "(25-35)% of Damage taken Recouped as Life", statOrder = { 5803 }, level = 45, group = "DamageTakenGainedAsLife", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 350, 0 }, modTags = { "resource", "necropolis_exclusive_mod", "life" }, }, - ["NecropolisCraftingPercentDamageGoesToMana"] = { type = "Suffix", affix = "of Haunting", "(25-35)% of Damage taken Recouped as Mana", statOrder = { 2331 }, level = 45, group = "PercentDamageGoesToMana", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 350, 0 }, modTags = { "resource", "necropolis_exclusive_mod", "mana" }, }, + ["HellscapeUpsideSocketedDexterityGems"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Dexterity Gems", statOrder = { 140 }, level = 1, group = "LocalIncreaseSocketedDexterityGemLevel", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "attribute", "gem" }, }, + ["HellscapeUpsideSocketedIntelligenceGems__"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Intelligence Gems", statOrder = { 141 }, level = 1, group = "LocalIncreaseSocketedIntelligenceGemLevel", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "attribute", "gem" }, }, + ["HellscapeUpsideGrantsLevel1HeraldOfIce__"] = { type = "ScourgeUpside", affix = "", "Grants Level 1 Herald of Ice Skill", statOrder = { 620 }, level = 1, group = "HeraldOfIceSkill", weightKey = { "body_armour", "default", }, weightVal = { 100, 0 }, modTags = { "skill" }, }, + ["HellscapeUpsideGrantsLevel10HeraldOfIce"] = { type = "ScourgeUpside", affix = "", "Grants Level 10 Herald of Ice Skill", statOrder = { 620 }, level = 45, group = "HeraldOfIceSkill", weightKey = { "body_armour", "default", }, weightVal = { 150, 0 }, modTags = { "skill" }, }, + ["HellscapeUpsideGrantsLevel20HeraldOfIce"] = { type = "ScourgeUpside", affix = "", "Grants Level 20 Herald of Ice Skill", statOrder = { 620 }, level = 68, group = "HeraldOfIceSkill", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "skill" }, }, + ["HellscapeUpsideGrantsLevel22HeraldOfIce"] = { type = "ScourgeUpside", affix = "", "Grants Level 22 Herald of Ice Skill", statOrder = { 620 }, level = 68, group = "HeraldOfIceSkill", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "skill" }, }, + ["HellscapeUpsideGrantsLevel1HeraldOfAsh"] = { type = "ScourgeUpside", affix = "", "Grants Level 1 Herald of Ash Skill", statOrder = { 619 }, level = 1, group = "HeraldOfAshSkill", weightKey = { "body_armour", "default", }, weightVal = { 100, 0 }, modTags = { "skill" }, }, + ["HellscapeUpsideGrantsLevel10HeraldOfAsh_"] = { type = "ScourgeUpside", affix = "", "Grants Level 10 Herald of Ash Skill", statOrder = { 619 }, level = 45, group = "HeraldOfAshSkill", weightKey = { "body_armour", "default", }, weightVal = { 150, 0 }, modTags = { "skill" }, }, + ["HellscapeUpsideGrantsLevel20HeraldOfAsh"] = { type = "ScourgeUpside", affix = "", "Grants Level 20 Herald of Ash Skill", statOrder = { 619 }, level = 68, group = "HeraldOfAshSkill", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "skill" }, }, + ["HellscapeUpsideGrantsLevel22HeraldOfAsh_"] = { type = "ScourgeUpside", affix = "", "Grants Level 22 Herald of Ash Skill", statOrder = { 619 }, level = 68, group = "HeraldOfAshSkill", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "skill" }, }, + ["HellscapeUpsideGrantsLevel1HeraldOfThunder"] = { type = "ScourgeUpside", affix = "", "Grants Level 1 Herald of Thunder Skill", statOrder = { 623 }, level = 1, group = "HeraldOfThunderSkill", weightKey = { "body_armour", "default", }, weightVal = { 100, 0 }, modTags = { "skill" }, }, + ["HellscapeUpsideGrantsLevel10HeraldOfThunder"] = { type = "ScourgeUpside", affix = "", "Grants Level 10 Herald of Thunder Skill", statOrder = { 623 }, level = 45, group = "HeraldOfThunderSkill", weightKey = { "body_armour", "default", }, weightVal = { 150, 0 }, modTags = { "skill" }, }, + ["HellscapeUpsideGrantsLevel20HeraldOfThunder_"] = { type = "ScourgeUpside", affix = "", "Grants Level 20 Herald of Thunder Skill", statOrder = { 623 }, level = 68, group = "HeraldOfThunderSkill", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "skill" }, }, + ["HellscapeUpsideGrantsLevel22HeraldOfThunder"] = { type = "ScourgeUpside", affix = "", "Grants Level 22 Herald of Thunder Skill", statOrder = { 623 }, level = 68, group = "HeraldOfThunderSkill", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "skill" }, }, + ["HellscapeUpsideGrantsLevel1HeraldOfPurity"] = { type = "ScourgeUpside", affix = "", "Grants Level 1 Herald of Purity Skill", statOrder = { 621 }, level = 1, group = "HeraldOfPuritySkill", weightKey = { "body_armour", "default", }, weightVal = { 100, 0 }, modTags = { "skill" }, }, + ["HellscapeUpsideGrantsLevel10HeraldOfPurity"] = { type = "ScourgeUpside", affix = "", "Grants Level 10 Herald of Purity Skill", statOrder = { 621 }, level = 45, group = "HeraldOfPuritySkill", weightKey = { "body_armour", "default", }, weightVal = { 150, 0 }, modTags = { "skill" }, }, + ["HellscapeUpsideGrantsLevel20HeraldOfPurity_____"] = { type = "ScourgeUpside", affix = "", "Grants Level 20 Herald of Purity Skill", statOrder = { 621 }, level = 68, group = "HeraldOfPuritySkill", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "skill" }, }, + ["HellscapeUpsideGrantsLevel22HeraldOfPurity_"] = { type = "ScourgeUpside", affix = "", "Grants Level 22 Herald of Purity Skill", statOrder = { 621 }, level = 68, group = "HeraldOfPuritySkill", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "skill" }, }, + ["HellscapeUpsideGrantsLevel1HeraldOfAgony"] = { type = "ScourgeUpside", affix = "", "Grants Level 1 Herald of Agony Skill", statOrder = { 618 }, level = 1, group = "HeraldOfAgonySkill", weightKey = { "body_armour", "default", }, weightVal = { 100, 0 }, modTags = { "skill" }, }, + ["HellscapeUpsideGrantsLevel10HeraldOfAgony"] = { type = "ScourgeUpside", affix = "", "Grants Level 10 Herald of Agony Skill", statOrder = { 618 }, level = 45, group = "HeraldOfAgonySkill", weightKey = { "body_armour", "default", }, weightVal = { 150, 0 }, modTags = { "skill" }, }, + ["HellscapeUpsideGrantsLevel20HeraldOfAgony__"] = { type = "ScourgeUpside", affix = "", "Grants Level 20 Herald of Agony Skill", statOrder = { 618 }, level = 68, group = "HeraldOfAgonySkill", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "skill" }, }, + ["HellscapeUpsideGrantsLevel22HeraldOfAgony__"] = { type = "ScourgeUpside", affix = "", "Grants Level 22 Herald of Agony Skill", statOrder = { 618 }, level = 68, group = "HeraldOfAgonySkill", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "skill" }, }, + ["HellscapeUpsideGrantsLevel1SnipersMark"] = { type = "ScourgeUpside", affix = "", "Grants Level 1 Sniper's Mark Skill", statOrder = { 572 }, level = 1, group = "ProjectileWeaknessSkill", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "skill" }, }, + ["HellscapeUpsideGrantsLevel10SnipersMark"] = { type = "ScourgeUpside", affix = "", "Grants Level 10 Sniper's Mark Skill", statOrder = { 572 }, level = 45, group = "ProjectileWeaknessSkill", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "skill" }, }, + ["HellscapeUpsideGrantsLevel20SnipersMark"] = { type = "ScourgeUpside", affix = "", "Grants Level 20 Sniper's Mark Skill", statOrder = { 572 }, level = 68, group = "ProjectileWeaknessSkill", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "skill" }, }, + ["HellscapeUpsideGrantsLevel22SnipersMark"] = { type = "ScourgeUpside", affix = "", "Grants Level 22 Sniper's Mark Skill", statOrder = { 572 }, level = 68, group = "ProjectileWeaknessSkill", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "skill" }, }, + ["HellscapeUpsideDaytimeFishSize___"] = { type = "ScourgeUpside", affix = "", "(10-30)% increased Size of Fish caught during Daytime", statOrder = { 6026 }, level = 1, group = "DaytimeFishSize", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["HellscapeUpsideFishingCastDistance"] = { type = "ScourgeUpside", affix = "", "(13-16)% increased Fishing Range", statOrder = { 2757 }, level = 45, group = "FishingCastDistance", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["HellscapeUpsideFishingRarity"] = { type = "ScourgeUpside", affix = "", "(20-25)% increased Rarity of Fish Caught", statOrder = { 2759 }, level = 1, group = "FishingRarity", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { "drop" }, }, + ["HellscapeUpsideStrengthAppliesToFishingReelSpeed_"] = { type = "ScourgeUpside", affix = "", "Strength's Damage bonus also applies to Reeling Speed at 20% of its value", statOrder = { 10039 }, level = 1, group = "StrengthAppliesToFishingReelSpeed", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["HellscapeUpsideCanCatchScourgedFish"] = { type = "ScourgeUpside", affix = "", "You can catch Scourged Fish", statOrder = { 5279 }, level = 68, group = "CanCatchScourgedFish", weightKey = { "fishing_rod", "default", }, weightVal = { 1, 0 }, modTags = { }, }, + ["HellscapeDownsideStrengthRequirement0_"] = { type = "ScourgeDownside", affix = "", "+(21-30) Strength Requirement", statOrder = { 998 }, level = 1, group = "HellscapeDownsideStrengthRequirement", weightKey = { "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["HellscapeDownsideStrengthRequirement1"] = { type = "ScourgeDownside", affix = "", "+(36-50) Strength Requirement", statOrder = { 998 }, level = 1, group = "HellscapeDownsideStrengthRequirement", weightKey = { "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["HellscapeDownsideStrengthRequirement2"] = { type = "ScourgeDownside", affix = "", "+(75-125) Strength Requirement", statOrder = { 998 }, level = 45, group = "HellscapeDownsideStrengthRequirement", weightKey = { "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["HellscapeDownsideStrengthRequirement3"] = { type = "ScourgeDownside", affix = "", "+(150-200) Strength Requirement", statOrder = { 998 }, level = 68, group = "HellscapeDownsideStrengthRequirement", weightKey = { "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["HellscapeDownsideDexterityRequirement0__"] = { type = "ScourgeDownside", affix = "", "+(21-30) Dexterity Requirement", statOrder = { 990 }, level = 1, group = "HellscapeDownsideDexterityRequirement", weightKey = { "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["HellscapeDownsideDexterityRequirement1_"] = { type = "ScourgeDownside", affix = "", "+(36-50) Dexterity Requirement", statOrder = { 990 }, level = 1, group = "HellscapeDownsideDexterityRequirement", weightKey = { "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["HellscapeDownsideDexterityRequirement2_"] = { type = "ScourgeDownside", affix = "", "+(75-125) Dexterity Requirement", statOrder = { 990 }, level = 45, group = "HellscapeDownsideDexterityRequirement", weightKey = { "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["HellscapeDownsideDexterityRequirement3__"] = { type = "ScourgeDownside", affix = "", "+(150-200) Dexterity Requirement", statOrder = { 990 }, level = 68, group = "HellscapeDownsideDexterityRequirement", weightKey = { "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["HellscapeDownsideIntelligenceRequirement0_"] = { type = "ScourgeDownside", affix = "", "+(21-30) Intelligence Requirement", statOrder = { 992 }, level = 1, group = "HellscapeDownsideIntelligenceRequirement", weightKey = { "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["HellscapeDownsideIntelligenceRequirement1_"] = { type = "ScourgeDownside", affix = "", "+(36-50) Intelligence Requirement", statOrder = { 992 }, level = 1, group = "HellscapeDownsideIntelligenceRequirement", weightKey = { "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["HellscapeDownsideIntelligenceRequirement2"] = { type = "ScourgeDownside", affix = "", "+(75-125) Intelligence Requirement", statOrder = { 992 }, level = 45, group = "HellscapeDownsideIntelligenceRequirement", weightKey = { "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["HellscapeDownsideIntelligenceRequirement3"] = { type = "ScourgeDownside", affix = "", "+(150-200) Intelligence Requirement", statOrder = { 992 }, level = 68, group = "HellscapeDownsideIntelligenceRequirement", weightKey = { "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["HellscapeDownsideCannotCrit_"] = { type = "ScourgeDownside", affix = "", "Never deal Critical Strikes", statOrder = { 2087 }, level = 45, group = "HellscapeDownsideCannotCrit", weightKey = { "body_armour", "quiver", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["HellscapeDownsideCannotBlock"] = { type = "ScourgeDownside", affix = "", "Cannot Block Attack Damage", "Cannot Block Spell Damage", statOrder = { 2167, 5321 }, level = 45, group = "HellscapeDownsideCannotBlock", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["HellscapeDownsideCannotEvade_"] = { type = "ScourgeDownside", affix = "", "Cannot Evade Enemy Attacks", statOrder = { 1827 }, level = 45, group = "HellscapeDownsideCannotEvade", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["HellscapeDownsideReducedFireResistance0"] = { type = "ScourgeDownside", affix = "", "-(15-11)% to Fire Resistance", statOrder = { 1536 }, level = 1, group = "FireResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["HellscapeDownsideReducedFireResistance1"] = { type = "ScourgeDownside", affix = "", "-(20-16)% to Fire Resistance", statOrder = { 1536 }, level = 1, group = "FireResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["HellscapeDownsideReducedFireResistance2"] = { type = "ScourgeDownside", affix = "", "-(25-21)% to Fire Resistance", statOrder = { 1536 }, level = 45, group = "FireResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 750, 750, 750, 750, 750, 750, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["HellscapeDownsideReducedFireResistance3_"] = { type = "ScourgeDownside", affix = "", "-(30-26)% to Fire Resistance", statOrder = { 1536 }, level = 68, group = "FireResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["HellscapeDownsideReducedColdResistance0"] = { type = "ScourgeDownside", affix = "", "-(15-11)% to Cold Resistance", statOrder = { 1542 }, level = 1, group = "ColdResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["HellscapeDownsideReducedColdResistance1"] = { type = "ScourgeDownside", affix = "", "-(20-16)% to Cold Resistance", statOrder = { 1542 }, level = 1, group = "ColdResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["HellscapeDownsideReducedColdResistance2"] = { type = "ScourgeDownside", affix = "", "-(25-21)% to Cold Resistance", statOrder = { 1542 }, level = 45, group = "ColdResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 750, 750, 750, 750, 750, 750, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["HellscapeDownsideReducedColdResistance3"] = { type = "ScourgeDownside", affix = "", "-(30-26)% to Cold Resistance", statOrder = { 1542 }, level = 68, group = "ColdResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["HellscapeDownsideReducedLightningResistance0_"] = { type = "ScourgeDownside", affix = "", "-(15-11)% to Lightning Resistance", statOrder = { 1547 }, level = 1, group = "LightningResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["HellscapeDownsideReducedLightningResistance1"] = { type = "ScourgeDownside", affix = "", "-(20-16)% to Lightning Resistance", statOrder = { 1547 }, level = 1, group = "LightningResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["HellscapeDownsideReducedLightningResistance2"] = { type = "ScourgeDownside", affix = "", "-(25-21)% to Lightning Resistance", statOrder = { 1547 }, level = 45, group = "LightningResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 750, 750, 750, 750, 750, 750, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["HellscapeDownsideReducedLightningResistance3"] = { type = "ScourgeDownside", affix = "", "-(30-26)% to Lightning Resistance", statOrder = { 1547 }, level = 68, group = "LightningResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["HellscapeDownsideReducedChaosResistance0_"] = { type = "ScourgeDownside", affix = "", "-(13-10)% to Chaos Resistance", statOrder = { 1552 }, level = 16, group = "ChaosResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "chaos", "resistance" }, }, + ["HellscapeDownsideReducedChaosResistance1"] = { type = "ScourgeDownside", affix = "", "-(17-14)% to Chaos Resistance", statOrder = { 1552 }, level = 16, group = "ChaosResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "chaos", "resistance" }, }, + ["HellscapeDownsideReducedChaosResistance2_"] = { type = "ScourgeDownside", affix = "", "-(21-18)% to Chaos Resistance", statOrder = { 1552 }, level = 45, group = "ChaosResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 750, 750, 750, 750, 750, 750, 0 }, modTags = { "chaos", "resistance" }, }, + ["HellscapeDownsideReducedChaosResistance3___"] = { type = "ScourgeDownside", affix = "", "-(25-22)% to Chaos Resistance", statOrder = { 1552 }, level = 68, group = "ChaosResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "chaos", "resistance" }, }, + ["HellscapeDownsideReducedElementalResistances0_"] = { type = "ScourgeDownside", affix = "", "-5% to all Elemental Resistances", statOrder = { 1530 }, level = 1, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental", "resistance" }, }, + ["HellscapeDownsideReducedElementalResistances1_"] = { type = "ScourgeDownside", affix = "", "-(7-6)% to all Elemental Resistances", statOrder = { 1530 }, level = 1, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental", "resistance" }, }, + ["HellscapeDownsideReducedElementalResistances2_"] = { type = "ScourgeDownside", affix = "", "-(9-8)% to all Elemental Resistances", statOrder = { 1530 }, level = 45, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 750, 750, 750, 0 }, modTags = { "elemental", "resistance" }, }, + ["HellscapeDownsideReducedElementalResistances3_"] = { type = "ScourgeDownside", affix = "", "-(11-10)% to all Elemental Resistances", statOrder = { 1530 }, level = 68, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "elemental", "resistance" }, }, + ["HellscapeDownsideMinusMaximumLife0"] = { type = "ScourgeDownside", affix = "", "-(20-16) to maximum Life", statOrder = { 1480 }, level = 1, group = "IncreasedLife", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "life" }, }, + ["HellscapeDownsideMinusMaximumLife1_"] = { type = "ScourgeDownside", affix = "", "-(25-21) to maximum Life", statOrder = { 1480 }, level = 1, group = "IncreasedLife", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "life" }, }, + ["HellscapeDownsideMinusMaximumLife2"] = { type = "ScourgeDownside", affix = "", "-(30-26) to maximum Life", statOrder = { 1480 }, level = 45, group = "IncreasedLife", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "life" }, }, + ["HellscapeDownsideMinusMaximumLife3_"] = { type = "ScourgeDownside", affix = "", "-(35-31) to maximum Life", statOrder = { 1480 }, level = 68, group = "IncreasedLife", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "life" }, }, + ["HellscapeDownsideMinusMaximumMana0_"] = { type = "ScourgeDownside", affix = "", "-(25-21) to maximum Mana", statOrder = { 1490 }, level = 1, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["HellscapeDownsideMinusMaximumMana1"] = { type = "ScourgeDownside", affix = "", "-(30-26) to maximum Mana", statOrder = { 1490 }, level = 1, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["HellscapeDownsideMinusMaximumMana2__"] = { type = "ScourgeDownside", affix = "", "-(35-31) to maximum Mana", statOrder = { 1490 }, level = 45, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["HellscapeDownsideMinusMaximumMana3_"] = { type = "ScourgeDownside", affix = "", "-(40-36) to maximum Mana", statOrder = { 1490 }, level = 68, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["HellscapeDownsideReducedGlobalDefences0"] = { type = "ScourgeDownside", affix = "", "(6-10)% reduced Global Defences", statOrder = { 2742 }, level = 1, group = "HellscapeDownsideReducedGlobalDefences", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["HellscapeDownsideReducedGlobalDefences1"] = { type = "ScourgeDownside", affix = "", "(11-15)% reduced Global Defences", statOrder = { 2742 }, level = 1, group = "HellscapeDownsideReducedGlobalDefences", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["HellscapeDownsideReducedGlobalDefences2"] = { type = "ScourgeDownside", affix = "", "(16-20)% reduced Global Defences", statOrder = { 2742 }, level = 45, group = "HellscapeDownsideReducedGlobalDefences", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["HellscapeDownsideReducedGlobalDefences3__"] = { type = "ScourgeDownside", affix = "", "(21-25)% reduced Global Defences", statOrder = { 2742 }, level = 68, group = "HellscapeDownsideReducedGlobalDefences", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["HellscapeDownsideDealNoDamageYourself_"] = { type = "ScourgeDownside", affix = "", "You can't deal Damage with your Skills yourself", statOrder = { 2159 }, level = 68, group = "HellscapeDownsideDealNoDamageYourself", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["HellscapeDownsideReducedMinionLife2_"] = { type = "ScourgeDownside", affix = "", "Minions have (30-33)% reduced maximum Life", statOrder = { 1677 }, level = 45, group = "MinionLife", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "minion" }, }, + ["HellscapeDownsideReducedMinionLife3_"] = { type = "ScourgeDownside", affix = "", "Minions have (36-39)% reduced maximum Life", statOrder = { 1677 }, level = 68, group = "MinionLife", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "minion" }, }, + ["HellscapeDownsideReservationEfficiency3"] = { type = "ScourgeDownside", affix = "", "(18-24)% reduced Mana Reservation Efficiency of Skills", statOrder = { 2137 }, level = 68, group = "ManaReservationEfficiency", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "mana" }, }, + ["HellscapeDownsideIncreasedChanceToBeCrit3__"] = { type = "ScourgeDownside", affix = "", "Hits have +10% additional Critical Strike Chance against you", statOrder = { 3039 }, level = 68, group = "HellscapeDownsideIncreasedChanceToBeCrit", weightKey = { "body_armour", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["HellscapeDownsideHinderedOnHitBySpells3__"] = { type = "ScourgeDownside", affix = "", "Spell Hits Hinder you", statOrder = { 5538 }, level = 68, group = "HellscapeDownsideHinderedOnHitBySpells", weightKey = { "body_armour", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["HellscapeDownsideChanceToBeSilencedWhenHit3__"] = { type = "ScourgeDownside", affix = "", "(21-30)% chance to Curse you with Silence when Hit", statOrder = { 5904 }, level = 68, group = "HellscapeDownsideChanceToBeSilencedWhenHit", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["HellscapeDownsideMinusLocalEvasionArmourEnergyShieldPercent0__"] = { type = "ScourgeDownside", affix = "", "(21-30)% reduced Armour, Evasion and Energy Shield", statOrder = { 1466 }, level = 1, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, }, + ["HellscapeDownsideMinusLocalEvasionArmourEnergyShieldPercent1_"] = { type = "ScourgeDownside", affix = "", "(31-40)% reduced Armour, Evasion and Energy Shield", statOrder = { 1466 }, level = 1, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, }, + ["HellscapeDownsideMinusLocalEvasionArmourEnergyShieldPercent2_"] = { type = "ScourgeDownside", affix = "", "(41-50)% reduced Armour, Evasion and Energy Shield", statOrder = { 1466 }, level = 45, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, }, + ["HellscapeDownsideMinusLocalEvasionArmourEnergyShieldPercent3"] = { type = "ScourgeDownside", affix = "", "(51-60)% reduced Armour, Evasion and Energy Shield", statOrder = { 1466 }, level = 68, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, }, + ["HellscapeDownsideMaximumElementalResistance1"] = { type = "ScourgeDownside", affix = "", "-1% to all maximum Elemental Resistances", statOrder = { 1554 }, level = 68, group = "MaximumElementalResistance", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "resistance" }, }, + ["HellscapeDownsideMaximumChaosResistance1"] = { type = "ScourgeDownside", affix = "", "-1% to maximum Chaos Resistance", statOrder = { 1551 }, level = 68, group = "MaximumChaosResistance", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { "chaos", "resistance" }, }, + ["HellscapeDownsideElementalResistanceMinion2__"] = { type = "ScourgeDownside", affix = "", "Minions have -(33-30)% to all Elemental Resistances", statOrder = { 2822 }, level = 45, group = "MinionElementalResistance", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "resistance", "minion" }, }, + ["HellscapeDownsideElementalResistanceMinion3"] = { type = "ScourgeDownside", affix = "", "Minions have -(39-36)% to all Elemental Resistances", statOrder = { 2822 }, level = 68, group = "MinionElementalResistance", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "resistance", "minion" }, }, + ["HellscapeDownsideChaosResistanceMinion2"] = { type = "ScourgeDownside", affix = "", "Minions have -(51-42)% to Chaos Resistance", statOrder = { 2823 }, level = 45, group = "MinionChaosResistance", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "chaos", "resistance", "minion" }, }, + ["HellscapeDownsideChaosResistanceMinion3"] = { type = "ScourgeDownside", affix = "", "Minions have -(63-54)% to Chaos Resistance", statOrder = { 2823 }, level = 68, group = "MinionChaosResistance", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "chaos", "resistance", "minion" }, }, + ["HellscapeDownsideAllAilmentDuration2"] = { type = "ScourgeDownside", affix = "", "(21-25)% reduced Duration of Ailments on Enemies", statOrder = { 1771 }, level = 45, group = "IncreasedAilmentDuration", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "ailment" }, }, + ["HellscapeDownsideAllAilmentDuration3__"] = { type = "ScourgeDownside", affix = "", "(26-30)% reduced Duration of Ailments on Enemies", statOrder = { 1771 }, level = 68, group = "IncreasedAilmentDuration", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "ailment" }, }, + ["HellscapeDownsideElementalDurationOnSelf2"] = { type = "ScourgeDownside", affix = "", "(17-19)% increased Elemental Ailment Duration on you", statOrder = { 1778 }, level = 45, group = "SelfStatusAilmentDuration", weightKey = { "boots", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "ailment" }, }, + ["HellscapeDownsideElementalDurationOnSelf3__"] = { type = "ScourgeDownside", affix = "", "(20-22)% increased Elemental Ailment Duration on you", statOrder = { 1778 }, level = 68, group = "SelfStatusAilmentDuration", weightKey = { "boots", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "ailment" }, }, + ["HellscapeDownsideLifeOnBlock2__"] = { type = "ScourgeDownside", affix = "", "Lose (31-40) Life when you Block", statOrder = { 1668 }, level = 45, group = "GainLifeOnBlock", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "resource", "life" }, }, + ["HellscapeDownsideLifeOnBlock3"] = { type = "ScourgeDownside", affix = "", "Lose (41-50) Life when you Block", statOrder = { 1668 }, level = 68, group = "GainLifeOnBlock", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "resource", "life" }, }, + ["HellscapeDownsideManaOnBlock2_"] = { type = "ScourgeDownside", affix = "", "Lose (31-40) Mana when you Block", statOrder = { 1669 }, level = 45, group = "GainManaOnBlock", weightKey = { "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "resource", "mana" }, }, + ["HellscapeDownsideManaOnBlock3_____"] = { type = "ScourgeDownside", affix = "", "Lose (41-50) Mana when you Block", statOrder = { 1669 }, level = 68, group = "GainManaOnBlock", weightKey = { "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "resource", "mana" }, }, + ["HellscapeDownsideEnergyShieldOnBlock2___"] = { type = "ScourgeDownside", affix = "", "Lose (31-40) Energy Shield when you Block", statOrder = { 1670 }, level = 45, group = "GainEnergyShieldOnBlock", weightKey = { "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "defences", "energy_shield" }, }, + ["HellscapeDownsideEnergyShieldOnBlock3"] = { type = "ScourgeDownside", affix = "", "Lose (41-50) Energy Shield when you Block", statOrder = { 1670 }, level = 68, group = "GainEnergyShieldOnBlock", weightKey = { "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "defences", "energy_shield" }, }, + ["HellscapeDownsideChanceToBlockAttacks2"] = { type = "ScourgeDownside", affix = "", "-(10-8)% Chance to Block Attack Damage", statOrder = { 2367 }, level = 45, group = "AdditionalBlock", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { "block" }, }, + ["HellscapeDownsideChanceToBlockAttacks3"] = { type = "ScourgeDownside", affix = "", "-(14-12)% Chance to Block Attack Damage", statOrder = { 2367 }, level = 68, group = "AdditionalBlock", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { "block" }, }, + ["HellscapeDownsideChanceToBlockSpells2"] = { type = "ScourgeDownside", affix = "", "-(10-8)% Chance to Block Spell Damage", statOrder = { 1070 }, level = 45, group = "AdditionalSpellBlock", weightKey = { "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "block" }, }, + ["HellscapeDownsideChanceToBlockSpells3"] = { type = "ScourgeDownside", affix = "", "-(14-12)% Chance to Block Spell Damage", statOrder = { 1070 }, level = 68, group = "AdditionalSpellBlock", weightKey = { "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "block" }, }, + ["HellscapeDownsideChanceToSuppressSpells2"] = { type = "ScourgeDownside", affix = "", "-(18-15)% chance to Suppress Spell Damage", statOrder = { 1056 }, level = 45, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "gloves", "boots", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 500, 250, 250, 150, 0 }, modTags = { }, }, + ["HellscapeDownsideChanceToSuppressSpells3"] = { type = "ScourgeDownside", affix = "", "-(24-21)% chance to Suppress Spell Damage", statOrder = { 1056 }, level = 68, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "gloves", "boots", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 500, 250, 250, 150, 0 }, modTags = { }, }, + ["HellscapeDownsideSpellDamage1h0"] = { type = "ScourgeDownside", affix = "", "(32-40)% reduced Spell Damage", statOrder = { 1135 }, level = 1, group = "SpellDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["HellscapeDownsideSpellDamage1h1_"] = { type = "ScourgeDownside", affix = "", "(42-50)% reduced Spell Damage", statOrder = { 1135 }, level = 1, group = "SpellDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["HellscapeDownsideSpellDamage1h1b_"] = { type = "ScourgeDownside", affix = "", "(52-60)% reduced Spell Damage", statOrder = { 1135 }, level = 25, group = "SpellDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["HellscapeDownsideSpellDamage1h2"] = { type = "ScourgeDownside", affix = "", "(62-70)% reduced Spell Damage", statOrder = { 1135 }, level = 45, group = "SpellDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["HellscapeDownsideSpellDamage1h2b"] = { type = "ScourgeDownside", affix = "", "(72-80)% reduced Spell Damage", statOrder = { 1135 }, level = 55, group = "SpellDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["HellscapeDownsideSpellDamage1h3_"] = { type = "ScourgeDownside", affix = "", "(82-90)% reduced Spell Damage", statOrder = { 1135 }, level = 68, group = "SpellDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["HellscapeDownsideSpellDamage2h0"] = { type = "ScourgeDownside", affix = "", "(54-66)% reduced Spell Damage", statOrder = { 1135 }, level = 1, group = "SpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["HellscapeDownsideSpellDamage2h1_"] = { type = "ScourgeDownside", affix = "", "(68-80)% reduced Spell Damage", statOrder = { 1135 }, level = 1, group = "SpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["HellscapeDownsideSpellDamage2h1b_"] = { type = "ScourgeDownside", affix = "", "(82-94)% reduced Spell Damage", statOrder = { 1135 }, level = 25, group = "SpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["HellscapeDownsideSpellDamage2h2____"] = { type = "ScourgeDownside", affix = "", "(96-108)% reduced Spell Damage", statOrder = { 1135 }, level = 45, group = "SpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["HellscapeDownsideSpellDamage2h2b"] = { type = "ScourgeDownside", affix = "", "(110-122)% reduced Spell Damage", statOrder = { 1135 }, level = 55, group = "SpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["HellscapeDownsideSpellDamage2h3"] = { type = "ScourgeDownside", affix = "", "(124-136)% reduced Spell Damage", statOrder = { 1135 }, level = 68, group = "SpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["HellscapeDownsideColdDamage1h0_"] = { type = "ScourgeDownside", affix = "", "(32-40)% reduced Cold Damage", statOrder = { 1277 }, level = 1, group = "ColdDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["HellscapeDownsideColdDamage1h1"] = { type = "ScourgeDownside", affix = "", "(42-50)% reduced Cold Damage", statOrder = { 1277 }, level = 1, group = "ColdDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["HellscapeDownsideColdDamage1h1b"] = { type = "ScourgeDownside", affix = "", "(52-60)% reduced Cold Damage", statOrder = { 1277 }, level = 25, group = "ColdDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["HellscapeDownsideColdDamage1h2"] = { type = "ScourgeDownside", affix = "", "(62-70)% reduced Cold Damage", statOrder = { 1277 }, level = 45, group = "ColdDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["HellscapeDownsideColdDamage1h2b_______"] = { type = "ScourgeDownside", affix = "", "(72-80)% reduced Cold Damage", statOrder = { 1277 }, level = 55, group = "ColdDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["HellscapeDownsideColdDamage1h3"] = { type = "ScourgeDownside", affix = "", "(82-90)% reduced Cold Damage", statOrder = { 1277 }, level = 68, group = "ColdDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["HellscapeDownsideColdDamage2h0__"] = { type = "ScourgeDownside", affix = "", "(54-66)% reduced Cold Damage", statOrder = { 1277 }, level = 1, group = "ColdDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["HellscapeDownsideColdDamage2h1"] = { type = "ScourgeDownside", affix = "", "(68-80)% reduced Cold Damage", statOrder = { 1277 }, level = 1, group = "ColdDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["HellscapeDownsideColdDamage2h1b"] = { type = "ScourgeDownside", affix = "", "(82-94)% reduced Cold Damage", statOrder = { 1277 }, level = 25, group = "ColdDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["HellscapeDownsideColdDamage2h2_"] = { type = "ScourgeDownside", affix = "", "(96-108)% reduced Cold Damage", statOrder = { 1277 }, level = 45, group = "ColdDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["HellscapeDownsideColdDamage2h2b_"] = { type = "ScourgeDownside", affix = "", "(110-122)% reduced Cold Damage", statOrder = { 1277 }, level = 55, group = "ColdDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["HellscapeDownsideColdDamage2h3__"] = { type = "ScourgeDownside", affix = "", "(124-136)% reduced Cold Damage", statOrder = { 1277 }, level = 68, group = "ColdDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["HellscapeDownsideFireDamage1h0_"] = { type = "ScourgeDownside", affix = "", "(32-40)% reduced Fire Damage", statOrder = { 1268 }, level = 1, group = "FireDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["HellscapeDownsideFireDamage1h1_"] = { type = "ScourgeDownside", affix = "", "(42-50)% reduced Fire Damage", statOrder = { 1268 }, level = 1, group = "FireDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["HellscapeDownsideFireDamage1h1b"] = { type = "ScourgeDownside", affix = "", "(52-60)% reduced Fire Damage", statOrder = { 1268 }, level = 25, group = "FireDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["HellscapeDownsideFireDamage1h2"] = { type = "ScourgeDownside", affix = "", "(62-70)% reduced Fire Damage", statOrder = { 1268 }, level = 45, group = "FireDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["HellscapeDownsideFireDamage1h2b"] = { type = "ScourgeDownside", affix = "", "(72-80)% reduced Fire Damage", statOrder = { 1268 }, level = 55, group = "FireDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["HellscapeDownsideFireDamage1h3_"] = { type = "ScourgeDownside", affix = "", "(82-90)% reduced Fire Damage", statOrder = { 1268 }, level = 68, group = "FireDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["HellscapeDownsideFireDamage2h0"] = { type = "ScourgeDownside", affix = "", "(54-66)% reduced Fire Damage", statOrder = { 1268 }, level = 1, group = "FireDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["HellscapeDownsideFireDamage2h1__"] = { type = "ScourgeDownside", affix = "", "(68-80)% reduced Fire Damage", statOrder = { 1268 }, level = 1, group = "FireDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["HellscapeDownsideFireDamage2h1b"] = { type = "ScourgeDownside", affix = "", "(82-94)% reduced Fire Damage", statOrder = { 1268 }, level = 25, group = "FireDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["HellscapeDownsideFireDamage2h2_"] = { type = "ScourgeDownside", affix = "", "(96-108)% reduced Fire Damage", statOrder = { 1268 }, level = 45, group = "FireDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["HellscapeDownsideFireDamage2h2b"] = { type = "ScourgeDownside", affix = "", "(110-122)% reduced Fire Damage", statOrder = { 1268 }, level = 55, group = "FireDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["HellscapeDownsideFireDamage2h3____"] = { type = "ScourgeDownside", affix = "", "(124-136)% reduced Fire Damage", statOrder = { 1268 }, level = 68, group = "FireDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["HellscapeDownsideLightningDamage1h0"] = { type = "ScourgeDownside", affix = "", "(32-40)% reduced Lightning Damage", statOrder = { 1288 }, level = 1, group = "LightningDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["HellscapeDownsideLightningDamage1h1"] = { type = "ScourgeDownside", affix = "", "(42-50)% reduced Lightning Damage", statOrder = { 1288 }, level = 1, group = "LightningDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["HellscapeDownsideLightningDamage1h1b___"] = { type = "ScourgeDownside", affix = "", "(52-60)% reduced Lightning Damage", statOrder = { 1288 }, level = 25, group = "LightningDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["HellscapeDownsideLightningDamage1h2"] = { type = "ScourgeDownside", affix = "", "(62-70)% reduced Lightning Damage", statOrder = { 1288 }, level = 45, group = "LightningDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["HellscapeDownsideLightningDamage1h2b_"] = { type = "ScourgeDownside", affix = "", "(72-80)% reduced Lightning Damage", statOrder = { 1288 }, level = 55, group = "LightningDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["HellscapeDownsideLightningDamage1h3"] = { type = "ScourgeDownside", affix = "", "(82-90)% reduced Lightning Damage", statOrder = { 1288 }, level = 68, group = "LightningDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["HellscapeDownsideLightningDamage2h0"] = { type = "ScourgeDownside", affix = "", "(54-66)% reduced Lightning Damage", statOrder = { 1288 }, level = 1, group = "LightningDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["HellscapeDownsideLightningDamage2h1"] = { type = "ScourgeDownside", affix = "", "(68-80)% reduced Lightning Damage", statOrder = { 1288 }, level = 1, group = "LightningDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["HellscapeDownsideLightningDamage2h1b"] = { type = "ScourgeDownside", affix = "", "(82-94)% reduced Lightning Damage", statOrder = { 1288 }, level = 25, group = "LightningDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["HellscapeDownsideLightningDamage2h2___"] = { type = "ScourgeDownside", affix = "", "(96-108)% reduced Lightning Damage", statOrder = { 1288 }, level = 45, group = "LightningDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["HellscapeDownsideLightningDamage2h2b"] = { type = "ScourgeDownside", affix = "", "(110-122)% reduced Lightning Damage", statOrder = { 1288 }, level = 55, group = "LightningDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["HellscapeDownsideLightningDamage2h3__"] = { type = "ScourgeDownside", affix = "", "(124-136)% reduced Lightning Damage", statOrder = { 1288 }, level = 68, group = "LightningDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["HellscapeDownsidePhysicalDamage1h0"] = { type = "ScourgeDownside", affix = "", "(32-40)% reduced Global Physical Damage", statOrder = { 1143 }, level = 1, group = "PhysicalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["HellscapeDownsidePhysicalDamage1h1"] = { type = "ScourgeDownside", affix = "", "(42-50)% reduced Global Physical Damage", statOrder = { 1143 }, level = 1, group = "PhysicalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["HellscapeDownsidePhysicalDamage1h1b___"] = { type = "ScourgeDownside", affix = "", "(52-60)% reduced Global Physical Damage", statOrder = { 1143 }, level = 25, group = "PhysicalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["HellscapeDownsidePhysicalDamage1h2_"] = { type = "ScourgeDownside", affix = "", "(62-70)% reduced Global Physical Damage", statOrder = { 1143 }, level = 45, group = "PhysicalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["HellscapeDownsidePhysicalDamage1h2b"] = { type = "ScourgeDownside", affix = "", "(72-80)% reduced Global Physical Damage", statOrder = { 1143 }, level = 55, group = "PhysicalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["HellscapeDownsidePhysicalDamage1h3"] = { type = "ScourgeDownside", affix = "", "(82-90)% reduced Global Physical Damage", statOrder = { 1143 }, level = 68, group = "PhysicalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["HellscapeDownsidePhysicalDamage2h0"] = { type = "ScourgeDownside", affix = "", "(54-66)% reduced Global Physical Damage", statOrder = { 1143 }, level = 1, group = "PhysicalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["HellscapeDownsidePhysicalDamage2h1_"] = { type = "ScourgeDownside", affix = "", "(68-80)% reduced Global Physical Damage", statOrder = { 1143 }, level = 1, group = "PhysicalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["HellscapeDownsidePhysicalDamage2h1b"] = { type = "ScourgeDownside", affix = "", "(82-94)% reduced Global Physical Damage", statOrder = { 1143 }, level = 25, group = "PhysicalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["HellscapeDownsidePhysicalDamage2h2"] = { type = "ScourgeDownside", affix = "", "(96-108)% reduced Global Physical Damage", statOrder = { 1143 }, level = 45, group = "PhysicalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["HellscapeDownsidePhysicalDamage2h2b__"] = { type = "ScourgeDownside", affix = "", "(110-122)% reduced Global Physical Damage", statOrder = { 1143 }, level = 55, group = "PhysicalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["HellscapeDownsidePhysicalDamage2h3______"] = { type = "ScourgeDownside", affix = "", "(124-136)% reduced Global Physical Damage", statOrder = { 1143 }, level = 68, group = "PhysicalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["HellscapeDownsideElementalDamage1h0"] = { type = "ScourgeDownside", affix = "", "(32-40)% reduced Elemental Damage", statOrder = { 1889 }, level = 1, group = "ElementalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["HellscapeDownsideElementalDamage1h1"] = { type = "ScourgeDownside", affix = "", "(42-50)% reduced Elemental Damage", statOrder = { 1889 }, level = 1, group = "ElementalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["HellscapeDownsideElementalDamage1h1b__"] = { type = "ScourgeDownside", affix = "", "(52-60)% reduced Elemental Damage", statOrder = { 1889 }, level = 25, group = "ElementalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["HellscapeDownsideElementalDamage1h2"] = { type = "ScourgeDownside", affix = "", "(62-70)% reduced Elemental Damage", statOrder = { 1889 }, level = 45, group = "ElementalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["HellscapeDownsideElementalDamage1h2b"] = { type = "ScourgeDownside", affix = "", "(72-80)% reduced Elemental Damage", statOrder = { 1889 }, level = 55, group = "ElementalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["HellscapeDownsideElementalDamage1h3__"] = { type = "ScourgeDownside", affix = "", "(82-90)% reduced Elemental Damage", statOrder = { 1889 }, level = 68, group = "ElementalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["HellscapeDownsideElementalDamage2h0"] = { type = "ScourgeDownside", affix = "", "(54-66)% reduced Elemental Damage", statOrder = { 1889 }, level = 1, group = "ElementalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["HellscapeDownsideElementalDamage2h1"] = { type = "ScourgeDownside", affix = "", "(68-80)% reduced Elemental Damage", statOrder = { 1889 }, level = 1, group = "ElementalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["HellscapeDownsideElementalDamage2h1b"] = { type = "ScourgeDownside", affix = "", "(82-94)% reduced Elemental Damage", statOrder = { 1889 }, level = 25, group = "ElementalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["HellscapeDownsideElementalDamage2h2"] = { type = "ScourgeDownside", affix = "", "(96-108)% reduced Elemental Damage", statOrder = { 1889 }, level = 45, group = "ElementalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["HellscapeDownsideElementalDamage2h2b"] = { type = "ScourgeDownside", affix = "", "(110-122)% reduced Elemental Damage", statOrder = { 1889 }, level = 55, group = "ElementalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["HellscapeDownsideElementalDamage2h3"] = { type = "ScourgeDownside", affix = "", "(124-136)% reduced Elemental Damage", statOrder = { 1889 }, level = 68, group = "ElementalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["HellscapeDownsideChaosDamage1h0"] = { type = "ScourgeDownside", affix = "", "(32-40)% reduced Chaos Damage", statOrder = { 1296 }, level = 1, group = "IncreasedChaosDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 250, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["HellscapeDownsideChaosDamage1h1"] = { type = "ScourgeDownside", affix = "", "(42-50)% reduced Chaos Damage", statOrder = { 1296 }, level = 1, group = "IncreasedChaosDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 250, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["HellscapeDownsideChaosDamage1h1b"] = { type = "ScourgeDownside", affix = "", "(52-60)% reduced Chaos Damage", statOrder = { 1296 }, level = 25, group = "IncreasedChaosDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 250, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["HellscapeDownsideChaosDamage1h2_"] = { type = "ScourgeDownside", affix = "", "(62-70)% reduced Chaos Damage", statOrder = { 1296 }, level = 45, group = "IncreasedChaosDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 250, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["HellscapeDownsideChaosDamage1h2b"] = { type = "ScourgeDownside", affix = "", "(72-80)% reduced Chaos Damage", statOrder = { 1296 }, level = 55, group = "IncreasedChaosDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 250, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["HellscapeDownsideChaosDamage1h3"] = { type = "ScourgeDownside", affix = "", "(82-90)% reduced Chaos Damage", statOrder = { 1296 }, level = 68, group = "IncreasedChaosDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 250, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["HellscapeDownsideChaosDamage2h0"] = { type = "ScourgeDownside", affix = "", "(54-66)% reduced Chaos Damage", statOrder = { 1296 }, level = 1, group = "IncreasedChaosDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["HellscapeDownsideChaosDamage2h1"] = { type = "ScourgeDownside", affix = "", "(68-80)% reduced Chaos Damage", statOrder = { 1296 }, level = 1, group = "IncreasedChaosDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["HellscapeDownsideChaosDamage2h1b"] = { type = "ScourgeDownside", affix = "", "(82-94)% reduced Chaos Damage", statOrder = { 1296 }, level = 25, group = "IncreasedChaosDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["HellscapeDownsideChaosDamage2h2_"] = { type = "ScourgeDownside", affix = "", "(96-108)% reduced Chaos Damage", statOrder = { 1296 }, level = 45, group = "IncreasedChaosDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["HellscapeDownsideChaosDamage2h2b"] = { type = "ScourgeDownside", affix = "", "(110-122)% reduced Chaos Damage", statOrder = { 1296 }, level = 55, group = "IncreasedChaosDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["HellscapeDownsideChaosDamage2h3"] = { type = "ScourgeDownside", affix = "", "(124-136)% reduced Chaos Damage", statOrder = { 1296 }, level = 68, group = "IncreasedChaosDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["HellscapeDownsideMinionDamage0"] = { type = "ScourgeDownside", affix = "", "Minions deal (18-21)% reduced Damage", statOrder = { 1882 }, level = 1, group = "MinionDamage", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "damage", "minion" }, }, + ["HellscapeDownsideMinionDamage1"] = { type = "ScourgeDownside", affix = "", "Minions deal (24-27)% reduced Damage", statOrder = { 1882 }, level = 1, group = "MinionDamage", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "damage", "minion" }, }, + ["HellscapeDownsideMinionDamage2"] = { type = "ScourgeDownside", affix = "", "Minions deal (30-33)% reduced Damage", statOrder = { 1882 }, level = 45, group = "MinionDamage", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "damage", "minion" }, }, + ["HellscapeDownsideMinionDamage3"] = { type = "ScourgeDownside", affix = "", "Minions deal (36-39)% reduced Damage", statOrder = { 1882 }, level = 68, group = "MinionDamage", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "damage", "minion" }, }, + ["HellscapeDownsideProjectileDamagePercentage0"] = { type = "ScourgeDownside", affix = "", "(18-21)% reduced Projectile Damage", statOrder = { 1905 }, level = 1, group = "ProjectileDamage", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "damage" }, }, + ["HellscapeDownsideProjectileDamagePercentage1__"] = { type = "ScourgeDownside", affix = "", "(24-27)% reduced Projectile Damage", statOrder = { 1905 }, level = 45, group = "ProjectileDamage", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "damage" }, }, + ["HellscapeDownsideProjectileDamagePercentage2_"] = { type = "ScourgeDownside", affix = "", "(30-33)% reduced Projectile Damage", statOrder = { 1905 }, level = 68, group = "ProjectileDamage", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "damage" }, }, + ["HellscapeDownsideProjectileDamagePercentage3_"] = { type = "ScourgeDownside", affix = "", "(36-39)% reduced Projectile Damage", statOrder = { 1905 }, level = 68, group = "ProjectileDamage", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "damage" }, }, + ["HellscapeDownsideCriticalStrikeChance2"] = { type = "ScourgeDownside", affix = "", "(51-57)% reduced Global Critical Strike Chance", statOrder = { 1370 }, level = 45, group = "CriticalStrikeChance", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "critical" }, }, + ["HellscapeDownsideCriticalStrikeChance3_"] = { type = "ScourgeDownside", affix = "", "(60-66)% reduced Global Critical Strike Chance", statOrder = { 1370 }, level = 68, group = "CriticalStrikeChance", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "critical" }, }, + ["HellscapeDownsideCriticalStrikeMultiplier2"] = { type = "ScourgeDownside", affix = "", "-(57-51)% to Global Critical Strike Multiplier", statOrder = { 1399 }, level = 45, group = "CriticalStrikeMultiplier", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "damage", "critical" }, }, + ["HellscapeDownsideCriticalStrikeMultiplier3__"] = { type = "ScourgeDownside", affix = "", "-(66-60)% to Global Critical Strike Multiplier", statOrder = { 1399 }, level = 68, group = "CriticalStrikeMultiplier", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "damage", "critical" }, }, + ["HellscapeDownsideCriticalStrikeChanceWithBows2"] = { type = "ScourgeDownside", affix = "", "(51-57)% reduced Critical Strike Chance with Bows", statOrder = { 1376 }, level = 45, group = "CriticalStrikeChanceWithBows", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "attack", "critical" }, }, + ["HellscapeDownsideCriticalStrikeChanceWithBows3"] = { type = "ScourgeDownside", affix = "", "(60-66)% reduced Critical Strike Chance with Bows", statOrder = { 1376 }, level = 68, group = "CriticalStrikeChanceWithBows", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "attack", "critical" }, }, + ["HellscapeDownsideCriticalStrikeMultiplierWithBows2"] = { type = "ScourgeDownside", affix = "", "-(57-51)% to Critical Strike Multiplier with Bows", statOrder = { 1407 }, level = 45, group = "CriticalStrikeMultiplierWithBows", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "damage", "attack", "critical" }, }, + ["HellscapeDownsideCriticalStrikeMultiplierWithBows3"] = { type = "ScourgeDownside", affix = "", "-(66-60)% to Critical Strike Multiplier with Bows", statOrder = { 1407 }, level = 68, group = "CriticalStrikeMultiplierWithBows", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "damage", "attack", "critical" }, }, + ["HellscapeDownsideDamageOverTimeMultiplier2"] = { type = "ScourgeDownside", affix = "", "-(30-24)% to Damage over Time Multiplier", statOrder = { 1154 }, level = 45, group = "GlobalDamageOverTimeMultiplier", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "dot_multi", "damage" }, }, + ["HellscapeDownsideDamageOverTimeMultiplier3"] = { type = "ScourgeDownside", affix = "", "-(39-33)% to Damage over Time Multiplier", statOrder = { 1154 }, level = 68, group = "GlobalDamageOverTimeMultiplier", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "dot_multi", "damage" }, }, + ["HellscapeDownsideAttackSpeed0"] = { type = "ScourgeDownside", affix = "", "(9-12)% reduced Attack Speed", statOrder = { 1321 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 500, 1000, 1000, 1000, 0 }, modTags = { "attack", "speed" }, }, + ["HellscapeDownsideAttackSpeed1__"] = { type = "ScourgeDownside", affix = "", "(15-18)% reduced Attack Speed", statOrder = { 1321 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 500, 1000, 1000, 1000, 0 }, modTags = { "attack", "speed" }, }, + ["HellscapeDownsideAttackSpeed2_"] = { type = "ScourgeDownside", affix = "", "(21-24)% reduced Attack Speed", statOrder = { 1321 }, level = 45, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 500, 1000, 1000, 1000, 0 }, modTags = { "attack", "speed" }, }, + ["HellscapeDownsideAttackSpeed3"] = { type = "ScourgeDownside", affix = "", "(27-30)% reduced Attack Speed", statOrder = { 1321 }, level = 68, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 500, 1000, 1000, 1000, 0 }, modTags = { "attack", "speed" }, }, + ["HellscapeDownsideCastSpeed0"] = { type = "ScourgeDownside", affix = "", "12% reduced Cast Speed", statOrder = { 1357 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "speed" }, }, + ["HellscapeDownsideCastSpeed1_"] = { type = "ScourgeDownside", affix = "", "15% reduced Cast Speed", statOrder = { 1357 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "speed" }, }, + ["HellscapeDownsideCastSpeed2"] = { type = "ScourgeDownside", affix = "", "18% reduced Cast Speed", statOrder = { 1357 }, level = 45, group = "IncreasedCastSpeed", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "speed" }, }, + ["HellscapeDownsideCastSpeed3"] = { type = "ScourgeDownside", affix = "", "21% reduced Cast Speed", statOrder = { 1357 }, level = 68, group = "IncreasedCastSpeed", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "speed" }, }, + ["HellscapeDownsideAttackAndCastSpeedMinion2_"] = { type = "ScourgeDownside", affix = "", "Minions have (21-24)% reduced Attack Speed", "Minions have (21-24)% reduced Cast Speed", statOrder = { 2817, 2818 }, level = 45, group = "MinionAttackAndCastSpeed", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, + ["HellscapeDownsideAttackAndCastSpeedMinion3"] = { type = "ScourgeDownside", affix = "", "Minions have (27-30)% reduced Attack Speed", "Minions have (27-30)% reduced Cast Speed", statOrder = { 2817, 2818 }, level = 68, group = "MinionAttackAndCastSpeed", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, + ["HellscapeDownsideLifeOnKill3__"] = { type = "ScourgeDownside", affix = "", "Lose 3% of Life on Kill", statOrder = { 1660 }, level = 68, group = "MaximumLifeOnKillPercent", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "life" }, }, + ["HellscapeDownsideManaOnKill3"] = { type = "ScourgeDownside", affix = "", "Lose 3% of Mana on Kill", statOrder = { 1662 }, level = 68, group = "MaximumManaOnKillPercent", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, }, + ["HellscapeDownsideEnergyShieldOnKill3"] = { type = "ScourgeDownside", affix = "", "Lose 3% of Energy Shield on Kill", statOrder = { 1661 }, level = 68, group = "MaximumEnergyShieldOnKillPercent", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "defences", "energy_shield" }, }, + ["HellscapeDownsideAccuracyPercent2"] = { type = "ScourgeDownside", affix = "", "(33-42)% reduced Global Accuracy Rating", statOrder = { 1345 }, level = 45, group = "IncreasedAccuracyPercent", weightKey = { "gloves", "quiver", "default", }, weightVal = { 250, 250, 0 }, modTags = { "attack" }, }, + ["HellscapeDownsideAccuracyPercent3__"] = { type = "ScourgeDownside", affix = "", "(45-51)% reduced Global Accuracy Rating", statOrder = { 1345 }, level = 68, group = "IncreasedAccuracyPercent", weightKey = { "gloves", "quiver", "default", }, weightVal = { 250, 250, 0 }, modTags = { "attack" }, }, + ["HellscapeDownsideLocalIncreaseSocketedGemLevel"] = { type = "ScourgeDownside", affix = "", "-2 to Level of Socketed Gems", statOrder = { 142 }, level = 68, group = "LocalIncreaseSocketedGemLevel", weightKey = { "body_armour", "default", }, weightVal = { 500, 0 }, modTags = { "gem" }, }, + ["HellscapeDownsideGlobalIncreaseSpellSpellSkillGemLevel1h"] = { type = "ScourgeDownside", affix = "", "-2 to Level of all Spell Skill Gems", statOrder = { 1519 }, level = 68, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { "attack_dagger", "wand", "dagger", "focus", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { "caster", "gem" }, }, + ["HellscapeDownsideGlobalIncreaseSpellSpellSkillGemLevel2h"] = { type = "ScourgeDownside", affix = "", "-4 to Level of all Spell Skill Gems", statOrder = { 1519 }, level = 68, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster", "gem" }, }, + ["HellscapeDownsideAdditionalRaisedZombie1"] = { type = "ScourgeDownside", affix = "", "-2 to maximum number of Raised Zombies", statOrder = { 2069 }, level = 45, group = "MaximumZombieCount", weightKey = { "boots", "default", }, weightVal = { 200, 0 }, modTags = { "minion" }, }, + ["HellscapeDownsideAdditionalSkeleton1"] = { type = "ScourgeDownside", affix = "", "-2 to maximum number of Skeletons", statOrder = { 2071 }, level = 45, group = "MaximumSkeletonCount", weightKey = { "boots", "default", }, weightVal = { 200, 0 }, modTags = { "minion" }, }, + ["HellscapeDownsideAreaDamage0___"] = { type = "ScourgeDownside", affix = "", "(24-30)% reduced Area Damage", statOrder = { 1944 }, level = 1, group = "AreaDamage", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, }, + ["HellscapeDownsideAreaDamage1"] = { type = "ScourgeDownside", affix = "", "(33-45)% reduced Area Damage", statOrder = { 1944 }, level = 1, group = "AreaDamage", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, }, + ["HellscapeDownsideAreaDamage2_"] = { type = "ScourgeDownside", affix = "", "(48-60)% reduced Area Damage", statOrder = { 1944 }, level = 45, group = "AreaDamage", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, }, + ["HellscapeDownsideAreaDamage3"] = { type = "ScourgeDownside", affix = "", "(63-75)% reduced Area Damage", statOrder = { 1944 }, level = 68, group = "AreaDamage", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, }, + ["HellscapeDownsideRarityOfItemsFound0"] = { type = "ScourgeDownside", affix = "", "(18-21)% reduced Rarity of Items found", statOrder = { 1507 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "drop" }, }, + ["HellscapeDownsideRarityOfItemsFound1_"] = { type = "ScourgeDownside", affix = "", "(24-27)% reduced Rarity of Items found", statOrder = { 1507 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "drop" }, }, + ["HellscapeDownsideRarityOfItemsFound2"] = { type = "ScourgeDownside", affix = "", "(30-33)% reduced Rarity of Items found", statOrder = { 1507 }, level = 45, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "drop" }, }, + ["HellscapeDownsideRarityOfItemsFound3"] = { type = "ScourgeDownside", affix = "", "(36-39)% reduced Rarity of Items found", statOrder = { 1507 }, level = 68, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "drop" }, }, + ["HellscapeDownsideLifeRegeneration2"] = { type = "ScourgeDownside", affix = "", "(21-27)% reduced Life Regeneration rate", statOrder = { 1488 }, level = 45, group = "LifeRegenerationRate", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "helmet", "boots", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "resource", "life" }, }, + ["HellscapeDownsideLifeRegeneration3"] = { type = "ScourgeDownside", affix = "", "(30-36)% reduced Life Regeneration rate", statOrder = { 1488 }, level = 68, group = "LifeRegenerationRate", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "helmet", "boots", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "resource", "life" }, }, + ["HellscapeDownsideMovementVelocity0"] = { type = "ScourgeDownside", affix = "", "(6-7)% reduced Movement Speed", statOrder = { 1709 }, level = 1, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, }, + ["HellscapeDownsideMovementVelocity1_"] = { type = "ScourgeDownside", affix = "", "(8-9)% reduced Movement Speed", statOrder = { 1709 }, level = 1, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, }, + ["HellscapeDownsideMovementVelocity2"] = { type = "ScourgeDownside", affix = "", "(10-11)% reduced Movement Speed", statOrder = { 1709 }, level = 45, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, }, + ["HellscapeDownsideMovementVelocity3"] = { type = "ScourgeDownside", affix = "", "(12-13)% reduced Movement Speed", statOrder = { 1709 }, level = 68, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, }, + ["HellscapeDownsideMovementSkillsAreDisabled1_"] = { type = "ScourgeDownside", affix = "", "Your Movement Skills are Disabled", statOrder = { 10468 }, level = 68, group = "MovementSkillsAreDisabled", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["HellscapeDownsideManaRegeneration0"] = { type = "ScourgeDownside", affix = "", "(16-20)% reduced Mana Regeneration Rate", statOrder = { 1495 }, level = 1, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "staff", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["HellscapeDownsideManaRegeneration1"] = { type = "ScourgeDownside", affix = "", "(21-25)% reduced Mana Regeneration Rate", statOrder = { 1495 }, level = 1, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "staff", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["HellscapeDownsideManaRegeneration2__"] = { type = "ScourgeDownside", affix = "", "(26-30)% reduced Mana Regeneration Rate", statOrder = { 1495 }, level = 45, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "staff", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["HellscapeDownsideManaRegeneration2b"] = { type = "ScourgeDownside", affix = "", "(31-35)% reduced Mana Regeneration Rate", statOrder = { 1495 }, level = 55, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "staff", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "mana" }, }, + ["HellscapeDownsideManaRegeneration3"] = { type = "ScourgeDownside", affix = "", "(36-40)% reduced Mana Regeneration Rate", statOrder = { 1495 }, level = 68, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "staff", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["HellscapeDownsideManaRegeneration3b"] = { type = "ScourgeDownside", affix = "", "(46-50)% reduced Mana Regeneration Rate", statOrder = { 1495 }, level = 68, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "staff", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "mana" }, }, + ["HellscapeDownsideManaRegenFlat0________"] = { type = "ScourgeDownside", affix = "", "Lose (3.3-4.2) Mana per Second", statOrder = { 8004 }, level = 1, group = "HellscapeLoseManaPerSecond", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["HellscapeDownsideManaRegenFlat1"] = { type = "ScourgeDownside", affix = "", "Lose (4.6-5.7) Mana per Second", statOrder = { 8004 }, level = 1, group = "HellscapeLoseManaPerSecond", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["HellscapeDownsideManaRegenFlat1b_"] = { type = "ScourgeDownside", affix = "", "Lose (5.8-6.7) Mana per Second", statOrder = { 8004 }, level = 15, group = "HellscapeLoseManaPerSecond", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["HellscapeDownsideManaRegenFlat1c"] = { type = "ScourgeDownside", affix = "", "Lose (7.7-8.3) Mana per Second", statOrder = { 8004 }, level = 25, group = "HellscapeLoseManaPerSecond", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["HellscapeDownsideManaRegenFlat1d"] = { type = "ScourgeDownside", affix = "", "Lose (9.3-10) Mana per Second", statOrder = { 8004 }, level = 35, group = "HellscapeLoseManaPerSecond", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["HellscapeDownsideManaRegenFlat2"] = { type = "ScourgeDownside", affix = "", "Lose (11-11.7) Mana per Second", statOrder = { 8004 }, level = 45, group = "HellscapeLoseManaPerSecond", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["HellscapeDownsideManaRegenFlat2b"] = { type = "ScourgeDownside", affix = "", "Lose (12.7-13.3) Mana per Second", statOrder = { 8004 }, level = 55, group = "HellscapeLoseManaPerSecond", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["HellscapeDownsideManaRegenFlat3"] = { type = "ScourgeDownside", affix = "", "Lose (14.3-15) Mana per Second", statOrder = { 8004 }, level = 68, group = "HellscapeLoseManaPerSecond", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["HellscapeDownsideCannotLeechLife1"] = { type = "ScourgeDownside", affix = "", "Cannot Leech Life", statOrder = { 2476 }, level = 68, group = "CannotLeechLife", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, }, + ["HellscapeDownsideCannotLeechMana1_"] = { type = "ScourgeDownside", affix = "", "Cannot Leech Mana", statOrder = { 2477 }, level = 68, group = "CannotLeechMana", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["HellscapeDownsideCannotLeechEnergyShield1"] = { type = "ScourgeDownside", affix = "", "Cannot Leech Energy Shield", statOrder = { 4893 }, level = 68, group = "CannotLeechEnergyShield", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["HellscapeDownsideFlaskChargesGained2_"] = { type = "ScourgeDownside", affix = "", "(22-30)% reduced Flask Charges gained", statOrder = { 2092 }, level = 45, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, + ["HellscapeDownsideFlaskChargesGained3__"] = { type = "ScourgeDownside", affix = "", "(32-40)% reduced Flask Charges gained", statOrder = { 2092 }, level = 68, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, + ["HellscapeDownsideFlaskChargesUsed2"] = { type = "ScourgeDownside", affix = "", "(32-40)% increased Flask Charges used", statOrder = { 2093 }, level = 45, group = "BeltReducedFlaskChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, + ["HellscapeDownsideFlaskChargesUsed3"] = { type = "ScourgeDownside", affix = "", "(42-50)% increased Flask Charges used", statOrder = { 2093 }, level = 68, group = "BeltReducedFlaskChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, + ["HellscapeDownsideFlaskLifeRecoveryRate2"] = { type = "ScourgeDownside", affix = "", "(24-28)% reduced Life Recovery from Flasks", statOrder = { 1968 }, level = 45, group = "BeltFlaskLifeRecovery", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "life" }, }, + ["HellscapeDownsideFlaskLifeRecoveryRate3_"] = { type = "ScourgeDownside", affix = "", "(30-34)% reduced Life Recovery from Flasks", statOrder = { 1968 }, level = 68, group = "BeltFlaskLifeRecovery", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "life" }, }, + ["HellscapeDownsideFlaskManaRecoveryRate2_"] = { type = "ScourgeDownside", affix = "", "(24-28)% reduced Mana Recovery from Flasks", statOrder = { 1969 }, level = 45, group = "BeltFlaskManaRecovery", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "mana" }, }, + ["HellscapeDownsideFlaskManaRecoveryRate3___"] = { type = "ScourgeDownside", affix = "", "(30-34)% reduced Mana Recovery from Flasks", statOrder = { 1969 }, level = 68, group = "BeltFlaskManaRecovery", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "mana" }, }, + ["HellscapeDownsideCannotApplyBleed1"] = { type = "ScourgeDownside", affix = "", "Attacks cannot cause Bleeding", statOrder = { 2398 }, level = 68, group = "CannotCauseBleeding", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["HellscapeDownsideCannotApplyPoison1_"] = { type = "ScourgeDownside", affix = "", "Your Chaos Damage cannot Poison", "Your Physical Damage cannot Poison", statOrder = { 2798, 2800 }, level = 68, group = "CannotCausePoison", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["HellscapeDownsideCannotApplyStun1"] = { type = "ScourgeDownside", affix = "", "Your Hits cannot Stun Enemies", statOrder = { 1766 }, level = 68, group = "CannotStun", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["HellscapeDownsideCooldownRecoveryRate3"] = { type = "ScourgeDownside", affix = "", "(12-16)% reduced Cooldown Recovery Rate", statOrder = { 4899 }, level = 68, group = "GlobalCooldownRecovery", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["HellscapeDownsideLifePercentage3"] = { type = "ScourgeDownside", affix = "", "(15-18)% reduced maximum Life", statOrder = { 1482 }, level = 68, group = "MaximumLifeIncreasePercent", weightKey = { "body_armour", "belt", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resource", "life" }, }, + ["HellscapeDownsideManaPercentage3"] = { type = "ScourgeDownside", affix = "", "(15-18)% reduced maximum Mana", statOrder = { 1491 }, level = 68, group = "MaximumManaIncreasePercent", weightKey = { "helmet", "body_armour", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["HellscapeDownsideCursedWithDespair1"] = { type = "ScourgeDownside", affix = "", "You are Cursed with Despair", statOrder = { 10428 }, level = 68, group = "SelfCurseDespair", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["HellscapeDownsideCursedWithElementalWeakness1"] = { type = "ScourgeDownside", affix = "", "You are Cursed with Elemental Weakness", statOrder = { 10429 }, level = 68, group = "SelfCurseElementalWeakness", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["HellscapeDownsideCursedWithEnfeeble1"] = { type = "ScourgeDownside", affix = "", "You are Cursed with Enfeeble", statOrder = { 10430 }, level = 68, group = "SelfCurseEnfeeble", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["HellscapeDownsideCursedWithTemporalChains1"] = { type = "ScourgeDownside", affix = "", "You are Cursed with Temporal Chains", statOrder = { 10433 }, level = 68, group = "SelfCurseTemporalChains", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["HellscapeDownsideCursedWithVulnerability1____"] = { type = "ScourgeDownside", affix = "", "You are Cursed with Vulnerability", statOrder = { 10434 }, level = 68, group = "SelfCurseVulnerability", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["HellscapeDownsideCursedWithConductivity1"] = { type = "ScourgeDownside", affix = "", "You are Cursed with Conductivity", statOrder = { 10427 }, level = 68, group = "SelfCurseConductivity", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["HellscapeDownsideCursedWithFlammability1"] = { type = "ScourgeDownside", affix = "", "You are Cursed with Flammability", statOrder = { 10431 }, level = 68, group = "SelfCurseFlammability", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["HellscapeDownsideCursedWithFrostbite1"] = { type = "ScourgeDownside", affix = "", "You are Cursed with Frostbite", statOrder = { 10432 }, level = 68, group = "SelfCurseFrostbite", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["HellscapeDownsidePhysicalDamageTaken2"] = { type = "ScourgeDownside", affix = "", "(7-8)% increased Physical Damage taken", statOrder = { 2150 }, level = 45, group = "PhysicalDamageTaken", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "physical" }, }, + ["HellscapeDownsidePhysicalDamageTaken3____"] = { type = "ScourgeDownside", affix = "", "(9-10)% increased Physical Damage taken", statOrder = { 2150 }, level = 68, group = "PhysicalDamageTaken", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "physical" }, }, + ["HellscapeDownsideFireDamageTaken2_"] = { type = "ScourgeDownside", affix = "", "(7-8)% increased Fire Damage taken", statOrder = { 2151 }, level = 45, group = "FireDamageTaken", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "fire" }, }, + ["HellscapeDownsideFireDamageTaken3_"] = { type = "ScourgeDownside", affix = "", "(9-10)% increased Fire Damage taken", statOrder = { 2151 }, level = 68, group = "FireDamageTaken", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "fire" }, }, + ["HellscapeDownsideColdDamageTaken2"] = { type = "ScourgeDownside", affix = "", "(7-8)% increased Cold Damage taken", statOrder = { 3297 }, level = 45, group = "ColdDamageTakenPercentage", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "cold" }, }, + ["HellscapeDownsideColdDamageTaken3"] = { type = "ScourgeDownside", affix = "", "(9-10)% increased Cold Damage taken", statOrder = { 3297 }, level = 68, group = "ColdDamageTakenPercentage", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "cold" }, }, + ["HellscapeDownsideLightningDamageTaken2"] = { type = "ScourgeDownside", affix = "", "(7-8)% increased Lightning Damage taken", statOrder = { 3296 }, level = 45, group = "LightningDamageTaken", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "lightning" }, }, + ["HellscapeDownsideLightningDamageTaken3"] = { type = "ScourgeDownside", affix = "", "(9-10)% increased Lightning Damage taken", statOrder = { 3296 }, level = 68, group = "LightningDamageTaken", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "lightning" }, }, + ["HellscapeDownsideChaosDamageTaken2"] = { type = "ScourgeDownside", affix = "", "(7-8)% increased Chaos Damage taken", statOrder = { 2152 }, level = 45, group = "ChaosDamageTakenPercentage", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "chaos" }, }, + ["HellscapeDownsideChaosDamageTaken3"] = { type = "ScourgeDownside", affix = "", "(9-10)% increased Chaos Damage taken", statOrder = { 2152 }, level = 68, group = "ChaosDamageTakenPercentage", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "chaos" }, }, + ["HellscapeDownsideTotemDuration2"] = { type = "ScourgeDownside", affix = "", "(21-27)% reduced Totem Duration", statOrder = { 1689 }, level = 45, group = "TotemDuration", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["HellscapeDownsideTotemDuration3_"] = { type = "ScourgeDownside", affix = "", "(30-36)% reduced Totem Duration", statOrder = { 1689 }, level = 68, group = "TotemDuration", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["HellscapeDownsideTotemLife2"] = { type = "ScourgeDownside", affix = "", "(21-27)% reduced Totem Life", statOrder = { 1685 }, level = 45, group = "IncreasedTotemLife", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 250, 0 }, modTags = { "resource", "life" }, }, + ["HellscapeDownsideTotemLife3"] = { type = "ScourgeDownside", affix = "", "(30-36)% reduced Totem Life", statOrder = { 1685 }, level = 68, group = "IncreasedTotemLife", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 250, 0 }, modTags = { "resource", "life" }, }, + ["HellscapeDownsideBrandDuration2"] = { type = "ScourgeDownside", affix = "", "Brand Skills have (36-42)% reduced Duration", statOrder = { 9822 }, level = 45, group = "BrandDuration", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 250, 0 }, modTags = { "caster" }, }, + ["HellscapeDownsideBrandDuration3_"] = { type = "ScourgeDownside", affix = "", "Brand Skills have (45-51)% reduced Duration", statOrder = { 9822 }, level = 68, group = "BrandDuration", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 250, 0 }, modTags = { "caster" }, }, + ["HellscapeDownsideNoLifeRegeneration1__"] = { type = "ScourgeDownside", affix = "", "You have no Life Regeneration", statOrder = { 2180 }, level = 45, group = "NoLifeRegeneration", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "helmet", "boots", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 500, 250, 250, 150, 0 }, modTags = { "resource", "life" }, }, + ["HellscapeDownsideNoManaRegeneration1"] = { type = "ScourgeDownside", affix = "", "You have no Mana Regeneration", statOrder = { 2181 }, level = 45, group = "NoManaRegeneration", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["HellscapeDownsideNoEnergyShieldRegeneration1"] = { type = "ScourgeDownside", affix = "", "You cannot Regenerate Energy Shield", statOrder = { 5337 }, level = 45, group = "NoEnergyShieldRegen", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { "defences", "energy_shield" }, }, + ["HellscapeDownsideNoEnergyShieldRecharge1"] = { type = "ScourgeDownside", affix = "", "You cannot Recharge Energy Shield", statOrder = { 5336 }, level = 45, group = "NoEnergyShieldRecharge", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { "defences", "energy_shield" }, }, + ["HellscapeDownsideLifeRecoveryRate2"] = { type = "ScourgeDownside", affix = "", "(10-12)% reduced Life Recovery rate", statOrder = { 1489 }, level = 45, group = "LifeRecoveryRate", weightKey = { "body_armour", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, }, + ["HellscapeDownsideLifeRecoveryRate3_"] = { type = "ScourgeDownside", affix = "", "(14-16)% reduced Life Recovery rate", statOrder = { 1489 }, level = 68, group = "LifeRecoveryRate", weightKey = { "body_armour", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, }, + ["HellscapeDownsideManaRecoveryRate2"] = { type = "ScourgeDownside", affix = "", "(10-12)% reduced Mana Recovery rate", statOrder = { 1497 }, level = 45, group = "ManaRecoveryRate", weightKey = { "body_armour", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "mana" }, }, + ["HellscapeDownsideManaRecoveryRate3"] = { type = "ScourgeDownside", affix = "", "(14-16)% reduced Mana Recovery rate", statOrder = { 1497 }, level = 68, group = "ManaRecoveryRate", weightKey = { "body_armour", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "mana" }, }, + ["HellscapeDownsideEnergyShieldRecoveryRate2"] = { type = "ScourgeDownside", affix = "", "(10-12)% reduced Energy Shield Recovery rate", statOrder = { 1479 }, level = 45, group = "EnergyShieldRecoveryRate", weightKey = { "body_armour", "default", }, weightVal = { 500, 0 }, modTags = { "defences", "energy_shield" }, }, + ["HellscapeDownsideEnergyShieldRecoveryRate3"] = { type = "ScourgeDownside", affix = "", "(14-16)% reduced Energy Shield Recovery rate", statOrder = { 1479 }, level = 68, group = "EnergyShieldRecoveryRate", weightKey = { "body_armour", "default", }, weightVal = { 500, 0 }, modTags = { "defences", "energy_shield" }, }, + ["HellscapeDownsideExtraDamageTakenFromCriticalStrikes2_"] = { type = "ScourgeDownside", affix = "", "You take (22-30)% increased Extra Damage from Critical Strikes", statOrder = { 1423 }, level = 45, group = "ReducedExtraDamageFromCrits", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "damage", "critical" }, }, + ["HellscapeDownsideExtraDamageTakenFromCriticalStrikes3"] = { type = "ScourgeDownside", affix = "", "You take (32-40)% increased Extra Damage from Critical Strikes", statOrder = { 1423 }, level = 68, group = "ReducedExtraDamageFromCrits", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "damage", "critical" }, }, + ["HellscapeDownsideDamageIsUnlucky1___"] = { type = "ScourgeDownside", affix = "", "Damage with Hits is Unlucky", statOrder = { 4913 }, level = 45, group = "DamageIsUnlucky", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["HellscapeDownsideColdPenetration1h2"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Cold Resistance as 10% higher than actual value", statOrder = { 2892 }, level = 45, group = "ColdResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 200, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["HellscapeDownsideColdPenetration1h3"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Cold Resistance as 14% higher than actual value", statOrder = { 2892 }, level = 68, group = "ColdResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 200, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["HellscapeDownsideColdPenetration2h2"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Cold Resistance as 16% higher than actual value", statOrder = { 2892 }, level = 45, group = "ColdResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["HellscapeDownsideColdPenetration2h3"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Cold Resistance as 20% higher than actual value", statOrder = { 2892 }, level = 68, group = "ColdResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["HellscapeDownsideFirePenetration1h2_"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Fire Resistance as 10% higher than actual value", statOrder = { 2890 }, level = 45, group = "FireResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 200, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["HellscapeDownsideFirePenetration1h3"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Fire Resistance as 14% higher than actual value", statOrder = { 2890 }, level = 68, group = "FireResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 200, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["HellscapeDownsideFirePenetration2h2_"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Fire Resistance as 16% higher than actual value", statOrder = { 2890 }, level = 45, group = "FireResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["HellscapeDownsideFirePenetration2h3"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Fire Resistance as 20% higher than actual value", statOrder = { 2890 }, level = 68, group = "FireResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["HellscapeDownsideLightningPenetration1h2__"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Lightning Resistance as 10% higher than actual value", statOrder = { 2893 }, level = 45, group = "LightningResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 200, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["HellscapeDownsideLightningPenetration1h3"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Lightning Resistance as 14% higher than actual value", statOrder = { 2893 }, level = 68, group = "LightningResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 200, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["HellscapeDownsideLightningPenetration2h2"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Lightning Resistance as 16% higher than actual value", statOrder = { 2893 }, level = 45, group = "LightningResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["HellscapeDownsideLightningPenetration2h3"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Lightning Resistance as 20% higher than actual value", statOrder = { 2893 }, level = 68, group = "LightningResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["HellscapeDownsideChaosPenetration1h2___"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Chaos Resistance as 10% higher than actual value", statOrder = { 9661 }, level = 45, group = "ChaosResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 200, 200, 200, 0 }, modTags = { }, }, + ["HellscapeDownsideChaosPenetration1h3__"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Chaos Resistance as 14% higher than actual value", statOrder = { 9661 }, level = 68, group = "ChaosResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 200, 200, 200, 0 }, modTags = { }, }, + ["HellscapeDownsideChaosPenetration2h2"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Chaos Resistance as 16% higher than actual value", statOrder = { 9661 }, level = 45, group = "ChaosResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["HellscapeDownsideChaosPenetration2h3_____"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Chaos Resistance as 20% higher than actual value", statOrder = { 9661 }, level = 68, group = "ChaosResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["HellscapeDownsideCannotCurse"] = { type = "ScourgeDownside", affix = "", "Cannot inflict Curses", statOrder = { 10439 }, level = 45, group = "CannotCurse", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["HellscapeDownsideCannotApplyAilments1___"] = { type = "ScourgeDownside", affix = "", "Cannot inflict Elemental Ailments", statOrder = { 1773 }, level = 45, group = "CannotApplyFireAilments", weightKey = { "sceptre", "wand", "staff", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { }, }, + ["HellscapeDownsideAdditionalTraps1"] = { type = "ScourgeDownside", affix = "", "Can have 5 fewer Traps placed at a time", statOrder = { 2164 }, level = 45, group = "TrapsAllowed", weightKey = { "boots", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["HellscapeDownsideAdditionalMines1_"] = { type = "ScourgeDownside", affix = "", "Can have 5 fewer Remote Mines placed at a time", statOrder = { 2165 }, level = 45, group = "AdditionalRemoteMinesAllowed", weightKey = { "boots", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["HellscapeDownsideEffectOfNonDamagingAilments2"] = { type = "ScourgeDownside", affix = "", "(30-40)% reduced Effect of Non-Damaging Ailments", statOrder = { 9296 }, level = 45, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { "ailment" }, }, + ["HellscapeDownsideEffectOfNonDamagingAilments3"] = { type = "ScourgeDownside", affix = "", "(50-60)% reduced Effect of Non-Damaging Ailments", statOrder = { 9296 }, level = 68, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { "ailment" }, }, + ["HellscapeDownsideNearbyEnemiesTakeReducedPhysicalDamage3"] = { type = "ScourgeDownside", affix = "", "Nearby Enemies take 9% reduced Physical Damage", statOrder = { 7770 }, level = 68, group = "NearbyEnemyPhysicalDamageTaken", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["HellscapeDownsideNearbyEnemiesTakeReducedFireDamage3_"] = { type = "ScourgeDownside", affix = "", "Nearby Enemies have +9% to Fire Resistance", statOrder = { 7766 }, level = 68, group = "NearbyEnemyFireDamageResistance", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "resistance" }, }, + ["HellscapeDownsideNearbyEnemiesTakeReducedColdDamage3_"] = { type = "ScourgeDownside", affix = "", "Nearby Enemies have +9% to Cold Resistance", statOrder = { 7764 }, level = 68, group = "NearbyEnemyColdDamageResistance", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "resistance" }, }, + ["HellscapeDownsideNearbyEnemiesTakeReducedLightningDamage3"] = { type = "ScourgeDownside", affix = "", "Nearby Enemies have +9% to Lightning Resistance", statOrder = { 7768 }, level = 68, group = "NearbyEnemyLightningDamageResistance", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "resistance" }, }, + ["HellscapeDownsideNearbyEnemiesTakeReducedChaosDamage3_"] = { type = "ScourgeDownside", affix = "", "Nearby Enemies have +9% to Chaos Resistance", statOrder = { 7763 }, level = 68, group = "NearbyEnemyChaosDamageResistance", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "damage", "chaos", "resistance" }, }, + ["HellscapeDownsideCurseEffect2_"] = { type = "ScourgeDownside", affix = "", "(21-24)% reduced Effect of your Curses", statOrder = { 2505 }, level = 45, group = "CurseEffectiveness", weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { "caster", "curse" }, }, + ["HellscapeDownsideCurseEffect3__"] = { type = "ScourgeDownside", affix = "", "(27-30)% reduced Effect of your Curses", statOrder = { 2505 }, level = 68, group = "CurseEffectiveness", weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { "caster", "curse" }, }, + ["HellscapeDownsideAuraEffectOfNonCurseSkills2"] = { type = "ScourgeDownside", affix = "", "(21-24)% reduced effect of Non-Curse Auras from your Skills", statOrder = { 3474 }, level = 45, group = "AuraEffect", weightKey = { "body_armour", "default", }, weightVal = { 500, 0 }, modTags = { "aura" }, }, + ["HellscapeDownsideAuraEffectOfNonCurseSkills3"] = { type = "ScourgeDownside", affix = "", "(27-30)% reduced effect of Non-Curse Auras from your Skills", statOrder = { 3474 }, level = 68, group = "AuraEffect", weightKey = { "body_armour", "default", }, weightVal = { 500, 0 }, modTags = { "aura" }, }, + ["HellscapeDownsideAdditionalCurse1__"] = { type = "ScourgeDownside", affix = "", "You can apply one fewer Curse", statOrder = { 2077 }, level = 68, group = "AdditionalCurseOnEnemies", weightKey = { "body_armour", "default", }, weightVal = { 500, 0 }, modTags = { "caster", "curse" }, }, + ["HellscapeDownsideMaximumEnduranceCharges1"] = { type = "ScourgeDownside", affix = "", "-1 to Maximum Endurance Charges", statOrder = { 1715 }, level = 68, group = "MaximumEnduranceCharges", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "endurance_charge" }, }, + ["HellscapeDownsideMaximumFrenzyCharges1"] = { type = "ScourgeDownside", affix = "", "-1 to Maximum Frenzy Charges", statOrder = { 1720 }, level = 68, group = "MaximumFrenzyCharges", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "frenzy_charge" }, }, + ["HellscapeDownsideMaximumPowerCharges1"] = { type = "ScourgeDownside", affix = "", "-1 to Maximum Power Charges", statOrder = { 1725 }, level = 68, group = "IncreasedMaximumPowerCharges", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "power_charge" }, }, + ["HellscapeDownsideDealNoPhysicalDamage___"] = { type = "ScourgeDownside", affix = "", "Deal no Physical Damage", statOrder = { 2700 }, level = 1, group = "DealNoPhysicalDamage", weightKey = { "weapon", "quiver", "default", }, weightVal = { 500, 200, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["HellscapeDownsideDealNoFireDamage"] = { type = "ScourgeDownside", affix = "", "Deal no Fire Damage", statOrder = { 4902 }, level = 1, group = "DealNoFireDamage", weightKey = { "weapon", "quiver", "default", }, weightVal = { 500, 200, 0 }, modTags = { }, }, + ["HellscapeDownsideDealNoColdDamage_"] = { type = "ScourgeDownside", affix = "", "Deal no Cold Damage", statOrder = { 2702 }, level = 1, group = "DealNoColdDamage", weightKey = { "weapon", "quiver", "default", }, weightVal = { 500, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["HellscapeDownsideDealNoLightningDamage"] = { type = "ScourgeDownside", affix = "", "Deal no Lightning Damage", statOrder = { 4903 }, level = 1, group = "DealNoLightningDamage", weightKey = { "weapon", "quiver", "default", }, weightVal = { 500, 200, 0 }, modTags = { }, }, + ["HellscapeDownsideDealNoChaosDamage_"] = { type = "ScourgeDownside", affix = "", "Deal no Chaos Damage", statOrder = { 4901 }, level = 1, group = "DealNoChaosDamage", weightKey = { "weapon", "quiver", "default", }, weightVal = { 500, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["HellscapeDownsideCannotGainCharges"] = { type = "ScourgeDownside", affix = "", "Cannot gain Charges", statOrder = { 5325 }, level = 68, group = "CannotGainCharges", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, }, + ["HellscapeDownsideCriticalStrikesDealNoExtraDamage"] = { type = "ScourgeDownside", affix = "", "Your Critical Strikes do not deal extra Damage", statOrder = { 2586 }, level = 45, group = "CriticalStrikesDealNoExtraDamage", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["HellscapeDownsideDamageTakenOnFullLife2"] = { type = "ScourgeDownside", affix = "", "12% increased Damage taken while on Full Life", statOrder = { 6014 }, level = 45, group = "DamageTakenOnFullLife", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["HellscapeDownsideDamageTakenOnFullLife3_"] = { type = "ScourgeDownside", affix = "", "20% increased Damage taken while on Full Life", statOrder = { 6014 }, level = 68, group = "DamageTakenOnFullLife", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["HellscapeDownsideFishingLineStrength"] = { type = "ScourgeDownside", affix = "", "(30-40)% reduced Fishing Line Strength", statOrder = { 2753 }, level = 1, group = "FishingLineStrength", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["HellscapeDownsideFishingPoolConsumption"] = { type = "ScourgeDownside", affix = "", "(50-100)% increased Fishing Pool Consumption", statOrder = { 2754 }, level = 45, group = "FishingPoolConsumption", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["HellscapeDownsideFishRotWhenCaught"] = { type = "ScourgeDownside", affix = "", "Fish Rot upon being Caught", statOrder = { 6484 }, level = 1, group = "FishRotWhenCaught", weightKey = { "fishing_rod", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["HellscapeDownsideFishingReelStability"] = { type = "ScourgeDownside", affix = "", "(30-60)% reduced Reeling Stability", statOrder = { 6497 }, level = 1, group = "FishingReelStability", weightKey = { "fishing_rod", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["HellscapeDownsideCannotFishFromWater_______"] = { type = "ScourgeDownside", affix = "", "Cannot Fish while standing in Water", statOrder = { 5324 }, level = 68, group = "CannotFishFromWater", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["IncreasedAttackSpeedEldritchImplicit1"] = { type = "Exarch", affix = "", "8% increased Attack Speed", statOrder = { 1321 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedEldritchImplicit2"] = { type = "Exarch", affix = "", "9% increased Attack Speed", statOrder = { 1321 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedEldritchImplicit3"] = { type = "Exarch", affix = "", "10% increased Attack Speed", statOrder = { 1321 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedEldritchImplicit4"] = { type = "Exarch", affix = "", "11% increased Attack Speed", statOrder = { 1321 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedEldritchImplicit5"] = { type = "Exarch", affix = "", "12% increased Attack Speed", statOrder = { 1321 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedEldritchImplicit6"] = { type = "Exarch", affix = "", "13% increased Attack Speed", statOrder = { 1321 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 12% increased Attack Speed", statOrder = { 1321 }, level = 75, group = "IncreasedAttackSpeedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 13% increased Attack Speed", statOrder = { 1321 }, level = 75, group = "IncreasedAttackSpeedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Attack Speed", statOrder = { 1321 }, level = 75, group = "IncreasedAttackSpeedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Attack Speed", statOrder = { 1321 }, level = 75, group = "IncreasedAttackSpeedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Attack Speed", statOrder = { 1321 }, level = 75, group = "IncreasedAttackSpeedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Attack Speed", statOrder = { 1321 }, level = 75, group = "IncreasedAttackSpeedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Attack Speed", statOrder = { 1321 }, level = 75, group = "IncreasedAttackSpeedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 17% increased Attack Speed", statOrder = { 1321 }, level = 75, group = "IncreasedAttackSpeedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Attack Speed", statOrder = { 1321 }, level = 75, group = "IncreasedAttackSpeedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Attack Speed", statOrder = { 1321 }, level = 75, group = "IncreasedAttackSpeedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Attack Speed", statOrder = { 1321 }, level = 75, group = "IncreasedAttackSpeedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Attack Speed", statOrder = { 1321 }, level = 75, group = "IncreasedAttackSpeedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack", "speed" }, }, + ["AttackCriticalStrikeChanceEldritchImplicit1"] = { type = "Exarch", affix = "", "(19-21)% increased Critical Strike Chance for Attacks", statOrder = { 4741 }, level = 75, group = "AttackCriticalStrikeChance", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "attack", "critical" }, }, + ["AttackCriticalStrikeChanceEldritchImplicit2"] = { type = "Exarch", affix = "", "(22-24)% increased Critical Strike Chance for Attacks", statOrder = { 4741 }, level = 75, group = "AttackCriticalStrikeChance", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "attack", "critical" }, }, + ["AttackCriticalStrikeChanceEldritchImplicit3"] = { type = "Exarch", affix = "", "(25-27)% increased Critical Strike Chance for Attacks", statOrder = { 4741 }, level = 75, group = "AttackCriticalStrikeChance", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "attack", "critical" }, }, + ["AttackCriticalStrikeChanceEldritchImplicit4"] = { type = "Exarch", affix = "", "(28-30)% increased Critical Strike Chance for Attacks", statOrder = { 4741 }, level = 75, group = "AttackCriticalStrikeChance", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "attack", "critical" }, }, + ["AttackCriticalStrikeChanceEldritchImplicit5"] = { type = "Exarch", affix = "", "(31-33)% increased Critical Strike Chance for Attacks", statOrder = { 4741 }, level = 75, group = "AttackCriticalStrikeChance", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "attack", "critical" }, }, + ["AttackCriticalStrikeChanceEldritchImplicit6"] = { type = "Exarch", affix = "", "(34-36)% increased Critical Strike Chance for Attacks", statOrder = { 4741 }, level = 75, group = "AttackCriticalStrikeChance", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "attack", "critical" }, }, + ["AttackCriticalStrikeChanceEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (31-33)% increased Critical Strike Chance for Attacks", statOrder = { 4741 }, level = 75, group = "AttackCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, }, + ["AttackCriticalStrikeChanceEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (34-36)% increased Critical Strike Chance for Attacks", statOrder = { 4741 }, level = 75, group = "AttackCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "attack", "critical" }, }, + ["AttackCriticalStrikeChanceEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (37-39)% increased Critical Strike Chance for Attacks", statOrder = { 4741 }, level = 75, group = "AttackCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "attack", "critical" }, }, + ["AttackCriticalStrikeChanceEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (40-42)% increased Critical Strike Chance for Attacks", statOrder = { 4741 }, level = 75, group = "AttackCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "attack", "critical" }, }, + ["AttackCriticalStrikeChanceEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Critical Strike Chance for Attacks", statOrder = { 4741 }, level = 75, group = "AttackCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "attack", "critical" }, }, + ["AttackCriticalStrikeChanceEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Critical Strike Chance for Attacks", statOrder = { 4741 }, level = 75, group = "AttackCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "attack", "critical" }, }, + ["AttackCriticalStrikeChanceEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (43-45)% increased Critical Strike Chance for Attacks", statOrder = { 4741 }, level = 75, group = "AttackCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, }, + ["AttackCriticalStrikeChanceEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (46-48)% increased Critical Strike Chance for Attacks", statOrder = { 4741 }, level = 75, group = "AttackCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, }, + ["AttackCriticalStrikeChanceEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (49-51)% increased Critical Strike Chance for Attacks", statOrder = { 4741 }, level = 75, group = "AttackCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "attack", "critical" }, }, + ["AttackCriticalStrikeChanceEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (52-54)% increased Critical Strike Chance for Attacks", statOrder = { 4741 }, level = 75, group = "AttackCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "attack", "critical" }, }, + ["AttackCriticalStrikeChanceEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Critical Strike Chance for Attacks", statOrder = { 4741 }, level = 75, group = "AttackCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "attack", "critical" }, }, + ["AttackCriticalStrikeChanceEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Critical Strike Chance for Attacks", statOrder = { 4741 }, level = 75, group = "AttackCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "attack", "critical" }, }, + ["AddedPhysicalDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Adds (3-5) to (7-9) Physical Damage to Attacks", statOrder = { 1178 }, level = 75, group = "PhysicalDamage", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Adds (4-5) to (8-9) Physical Damage to Attacks", statOrder = { 1178 }, level = 75, group = "PhysicalDamage", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Adds (4-6) to (9-10) Physical Damage to Attacks", statOrder = { 1178 }, level = 75, group = "PhysicalDamage", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Adds (5-6) to (10-11) Physical Damage to Attacks", statOrder = { 1178 }, level = 75, group = "PhysicalDamage", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Adds (5-7) to (11-12) Physical Damage to Attacks", statOrder = { 1178 }, level = 75, group = "PhysicalDamage", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Adds (6-7) to (12-14) Physical Damage to Attacks", statOrder = { 1178 }, level = 75, group = "PhysicalDamage", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (5-6) to (10-11) Physical Damage to Attacks", statOrder = { 1178 }, level = 75, group = "PhysicalDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["AddedPhysicalDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (5-7) to (11-12) Physical Damage to Attacks", statOrder = { 1178 }, level = 75, group = "PhysicalDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["AddedPhysicalDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (6-7) to (12-14) Physical Damage to Attacks", statOrder = { 1178 }, level = 75, group = "PhysicalDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["AddedPhysicalDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (6-9) to (13-15) Physical Damage to Attacks", statOrder = { 1178 }, level = 75, group = "PhysicalDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["AddedPhysicalDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (7-9) to (14-17) Physical Damage to Attacks", statOrder = { 1178 }, level = 75, group = "PhysicalDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["AddedPhysicalDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (8-10) to (16-18) Physical Damage to Attacks", statOrder = { 1178 }, level = 75, group = "PhysicalDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["AddedPhysicalDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (6-9) to (13-15) Physical Damage to Attacks", statOrder = { 1178 }, level = 75, group = "PhysicalDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["AddedPhysicalDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (7-9) to (14-17) Physical Damage to Attacks", statOrder = { 1178 }, level = 75, group = "PhysicalDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["AddedPhysicalDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (8-10) to (16-18) Physical Damage to Attacks", statOrder = { 1178 }, level = 75, group = "PhysicalDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["AddedPhysicalDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (9-12) to (18-21) Physical Damage to Attacks", statOrder = { 1178 }, level = 75, group = "PhysicalDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["AddedPhysicalDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (10-14) to (21-24) Physical Damage to Attacks", statOrder = { 1178 }, level = 75, group = "PhysicalDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["AddedPhysicalDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (12-15) to (24-28) Physical Damage to Attacks", statOrder = { 1178 }, level = 75, group = "PhysicalDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["AddedFireDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Adds (6-8) to (13-15) Fire Damage to Attacks", statOrder = { 1271 }, level = 75, group = "FireDamage", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedFireDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Adds (7-9) to (14-16) Fire Damage to Attacks", statOrder = { 1271 }, level = 75, group = "FireDamage", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedFireDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Adds (8-10) to (15-18) Fire Damage to Attacks", statOrder = { 1271 }, level = 75, group = "FireDamage", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedFireDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Adds (8-11) to (17-20) Fire Damage to Attacks", statOrder = { 1271 }, level = 75, group = "FireDamage", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedFireDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Adds (9-12) to (19-22) Fire Damage to Attacks", statOrder = { 1271 }, level = 75, group = "FireDamage", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedFireDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Adds (10-13) to (21-24) Fire Damage to Attacks", statOrder = { 1271 }, level = 75, group = "FireDamage", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedFireDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (8-11) to (17-20) Fire Damage to Attacks", statOrder = { 1271 }, level = 75, group = "FireDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["AddedFireDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (9-12) to (19-22) Fire Damage to Attacks", statOrder = { 1271 }, level = 75, group = "FireDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["AddedFireDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (10-13) to (21-24) Fire Damage to Attacks", statOrder = { 1271 }, level = 75, group = "FireDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["AddedFireDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (11-15) to (23-26) Fire Damage to Attacks", statOrder = { 1271 }, level = 75, group = "FireDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["AddedFireDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (13-16) to (25-29) Fire Damage to Attacks", statOrder = { 1271 }, level = 75, group = "FireDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["AddedFireDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (13-18) to (28-32) Fire Damage to Attacks", statOrder = { 1271 }, level = 75, group = "FireDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["AddedFireDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (11-15) to (23-26) Fire Damage to Attacks", statOrder = { 1271 }, level = 75, group = "FireDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["AddedFireDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (13-16) to (25-29) Fire Damage to Attacks", statOrder = { 1271 }, level = 75, group = "FireDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["AddedFireDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (13-18) to (28-32) Fire Damage to Attacks", statOrder = { 1271 }, level = 75, group = "FireDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["AddedFireDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (16-20) to (32-37) Fire Damage to Attacks", statOrder = { 1271 }, level = 75, group = "FireDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["AddedFireDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (18-24) to (37-42) Fire Damage to Attacks", statOrder = { 1271 }, level = 75, group = "FireDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["AddedFireDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (21-27) to (42-49) Fire Damage to Attacks", statOrder = { 1271 }, level = 75, group = "FireDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["AddedColdDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Adds (6-7) to (11-13) Cold Damage to Attacks", statOrder = { 1280 }, level = 75, group = "ColdDamage", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedColdDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Adds (6-8) to (12-15) Cold Damage to Attacks", statOrder = { 1280 }, level = 75, group = "ColdDamage", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedColdDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Adds (7-9) to (13-16) Cold Damage to Attacks", statOrder = { 1280 }, level = 75, group = "ColdDamage", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedColdDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Adds (7-10) to (15-18) Cold Damage to Attacks", statOrder = { 1280 }, level = 75, group = "ColdDamage", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedColdDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Adds (8-11) to (17-19) Cold Damage to Attacks", statOrder = { 1280 }, level = 75, group = "ColdDamage", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedColdDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Adds (9-12) to (18-22) Cold Damage to Attacks", statOrder = { 1280 }, level = 75, group = "ColdDamage", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedColdDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (7-10) to (15-18) Cold Damage to Attacks", statOrder = { 1280 }, level = 75, group = "ColdDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["AddedColdDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (8-11) to (17-19) Cold Damage to Attacks", statOrder = { 1280 }, level = 75, group = "ColdDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["AddedColdDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (9-12) to (18-22) Cold Damage to Attacks", statOrder = { 1280 }, level = 75, group = "ColdDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["AddedColdDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (10-13) to (20-24) Cold Damage to Attacks", statOrder = { 1280 }, level = 75, group = "ColdDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["AddedColdDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (11-15) to (22-26) Cold Damage to Attacks", statOrder = { 1280 }, level = 75, group = "ColdDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["AddedColdDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (12-16) to (24-29) Cold Damage to Attacks", statOrder = { 1280 }, level = 75, group = "ColdDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["AddedColdDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (10-13) to (20-24) Cold Damage to Attacks", statOrder = { 1280 }, level = 75, group = "ColdDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["AddedColdDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (11-15) to (22-26) Cold Damage to Attacks", statOrder = { 1280 }, level = 75, group = "ColdDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["AddedColdDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (12-16) to (24-29) Cold Damage to Attacks", statOrder = { 1280 }, level = 75, group = "ColdDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["AddedColdDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (14-18) to (28-33) Cold Damage to Attacks", statOrder = { 1280 }, level = 75, group = "ColdDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["AddedColdDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (16-21) to (32-38) Cold Damage to Attacks", statOrder = { 1280 }, level = 75, group = "ColdDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["AddedColdDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (18-24) to (37-44) Cold Damage to Attacks", statOrder = { 1280 }, level = 75, group = "ColdDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["AddedLightningDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Adds (1-2) to (22-24) Lightning Damage to Attacks", statOrder = { 1291 }, level = 75, group = "LightningDamage", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Adds (1-3) to (24-26) Lightning Damage to Attacks", statOrder = { 1291 }, level = 75, group = "LightningDamage", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Adds (1-3) to (27-28) Lightning Damage to Attacks", statOrder = { 1291 }, level = 75, group = "LightningDamage", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Adds (1-3) to (29-32) Lightning Damage to Attacks", statOrder = { 1291 }, level = 75, group = "LightningDamage", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Adds (2-4) to (32-35) Lightning Damage to Attacks", statOrder = { 1291 }, level = 75, group = "LightningDamage", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Adds (2-4) to (36-38) Lightning Damage to Attacks", statOrder = { 1291 }, level = 75, group = "LightningDamage", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (1-3) to (29-32) Lightning Damage to Attacks", statOrder = { 1291 }, level = 75, group = "LightningDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["AddedLightningDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (2-4) to (32-35) Lightning Damage to Attacks", statOrder = { 1291 }, level = 75, group = "LightningDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["AddedLightningDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (2-4) to (36-38) Lightning Damage to Attacks", statOrder = { 1291 }, level = 75, group = "LightningDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["AddedLightningDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (2-4) to (39-42) Lightning Damage to Attacks", statOrder = { 1291 }, level = 75, group = "LightningDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["AddedLightningDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (2-4) to (43-47) Lightning Damage to Attacks", statOrder = { 1291 }, level = 75, group = "LightningDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["AddedLightningDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (2-5) to (48-51) Lightning Damage to Attacks", statOrder = { 1291 }, level = 75, group = "LightningDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["AddedLightningDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (2-4) to (39-42) Lightning Damage to Attacks", statOrder = { 1291 }, level = 75, group = "LightningDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["AddedLightningDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (2-4) to (43-47) Lightning Damage to Attacks", statOrder = { 1291 }, level = 75, group = "LightningDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["AddedLightningDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (2-5) to (48-51) Lightning Damage to Attacks", statOrder = { 1291 }, level = 75, group = "LightningDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["AddedLightningDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (2-6) to (55-59) Lightning Damage to Attacks", statOrder = { 1291 }, level = 75, group = "LightningDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["AddedLightningDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (3-6) to (63-68) Lightning Damage to Attacks", statOrder = { 1291 }, level = 75, group = "LightningDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["AddedLightningDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (3-8) to (72-78) Lightning Damage to Attacks", statOrder = { 1291 }, level = 75, group = "LightningDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["AddedChaosDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Adds (5-6) to (10-11) Chaos Damage to Attacks", statOrder = { 1298 }, level = 75, group = "ChaosDamage", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["AddedChaosDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Adds (5-7) to (11-12) Chaos Damage to Attacks", statOrder = { 1298 }, level = 75, group = "ChaosDamage", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["AddedChaosDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Adds (6-7) to (12-14) Chaos Damage to Attacks", statOrder = { 1298 }, level = 75, group = "ChaosDamage", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["AddedChaosDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Adds (6-9) to (13-15) Chaos Damage to Attacks", statOrder = { 1298 }, level = 75, group = "ChaosDamage", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["AddedChaosDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Adds (7-9) to (14-17) Chaos Damage to Attacks", statOrder = { 1298 }, level = 75, group = "ChaosDamage", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["AddedChaosDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Adds (8-10) to (16-18) Chaos Damage to Attacks", statOrder = { 1298 }, level = 75, group = "ChaosDamage", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["AddedChaosDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (6-9) to (13-15) Chaos Damage to Attacks", statOrder = { 1298 }, level = 75, group = "ChaosDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["AddedChaosDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (7-9) to (14-17) Chaos Damage to Attacks", statOrder = { 1298 }, level = 75, group = "ChaosDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["AddedChaosDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (8-10) to (16-18) Chaos Damage to Attacks", statOrder = { 1298 }, level = 75, group = "ChaosDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["AddedChaosDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (9-11) to (17-20) Chaos Damage to Attacks", statOrder = { 1298 }, level = 75, group = "ChaosDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["AddedChaosDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (10-13) to (19-22) Chaos Damage to Attacks", statOrder = { 1298 }, level = 75, group = "ChaosDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["AddedChaosDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (10-14) to (21-24) Chaos Damage to Attacks", statOrder = { 1298 }, level = 75, group = "ChaosDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["AddedChaosDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (9-11) to (17-20) Chaos Damage to Attacks", statOrder = { 1298 }, level = 75, group = "ChaosDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["AddedChaosDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (10-13) to (19-22) Chaos Damage to Attacks", statOrder = { 1298 }, level = 75, group = "ChaosDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["AddedChaosDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (10-14) to (21-24) Chaos Damage to Attacks", statOrder = { 1298 }, level = 75, group = "ChaosDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["AddedChaosDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (12-15) to (24-28) Chaos Damage to Attacks", statOrder = { 1298 }, level = 75, group = "ChaosDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["AddedChaosDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (13-18) to (28-32) Chaos Damage to Attacks", statOrder = { 1298 }, level = 75, group = "ChaosDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["AddedChaosDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (16-20) to (32-37) Chaos Damage to Attacks", statOrder = { 1298 }, level = 75, group = "ChaosDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["FireDamageOverTimeMultiplierEldritchImplicit1"] = { type = "Exarch", affix = "", "+(5-7)% to Fire Damage over Time Multiplier", statOrder = { 1163 }, level = 75, group = "FireDamageOverTimeMultiplier", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamageOverTimeMultiplierEldritchImplicit2"] = { type = "Exarch", affix = "", "+(8-10)% to Fire Damage over Time Multiplier", statOrder = { 1163 }, level = 75, group = "FireDamageOverTimeMultiplier", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamageOverTimeMultiplierEldritchImplicit3"] = { type = "Exarch", affix = "", "+(11-13)% to Fire Damage over Time Multiplier", statOrder = { 1163 }, level = 75, group = "FireDamageOverTimeMultiplier", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamageOverTimeMultiplierEldritchImplicit4"] = { type = "Exarch", affix = "", "+(14-16)% to Fire Damage over Time Multiplier", statOrder = { 1163 }, level = 75, group = "FireDamageOverTimeMultiplier", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamageOverTimeMultiplierEldritchImplicit5"] = { type = "Exarch", affix = "", "+(17-18)% to Fire Damage over Time Multiplier", statOrder = { 1163 }, level = 75, group = "FireDamageOverTimeMultiplier", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamageOverTimeMultiplierEldritchImplicit6"] = { type = "Exarch", affix = "", "+(19-20)% to Fire Damage over Time Multiplier", statOrder = { 1163 }, level = 75, group = "FireDamageOverTimeMultiplier", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamageOverTimeMultiplierEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(14-16)% to Fire Damage over Time Multiplier", statOrder = { 1163 }, level = 75, group = "FireDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamageOverTimeMultiplierEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(17-19)% to Fire Damage over Time Multiplier", statOrder = { 1163 }, level = 75, group = "FireDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamageOverTimeMultiplierEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(20-22)% to Fire Damage over Time Multiplier", statOrder = { 1163 }, level = 75, group = "FireDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamageOverTimeMultiplierEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(23-25)% to Fire Damage over Time Multiplier", statOrder = { 1163 }, level = 75, group = "FireDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamageOverTimeMultiplierEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(26-27)% to Fire Damage over Time Multiplier", statOrder = { 1163 }, level = 75, group = "FireDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamageOverTimeMultiplierEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(28-29)% to Fire Damage over Time Multiplier", statOrder = { 1163 }, level = 75, group = "FireDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamageOverTimeMultiplierEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(23-25)% to Fire Damage over Time Multiplier", statOrder = { 1163 }, level = 75, group = "FireDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamageOverTimeMultiplierEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(26-28)% to Fire Damage over Time Multiplier", statOrder = { 1163 }, level = 75, group = "FireDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamageOverTimeMultiplierEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(29-31)% to Fire Damage over Time Multiplier", statOrder = { 1163 }, level = 75, group = "FireDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamageOverTimeMultiplierEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(32-34)% to Fire Damage over Time Multiplier", statOrder = { 1163 }, level = 75, group = "FireDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamageOverTimeMultiplierEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(35-36)% to Fire Damage over Time Multiplier", statOrder = { 1163 }, level = 75, group = "FireDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamageOverTimeMultiplierEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(37-38)% to Fire Damage over Time Multiplier", statOrder = { 1163 }, level = 75, group = "FireDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["ColdDamageOverTimeMultiplierEldritchImplicit1"] = { type = "Exarch", affix = "", "+(5-7)% to Cold Damage over Time Multiplier", statOrder = { 1168 }, level = 75, group = "ColdDamageOverTimeMultiplier", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamageOverTimeMultiplierEldritchImplicit2"] = { type = "Exarch", affix = "", "+(8-10)% to Cold Damage over Time Multiplier", statOrder = { 1168 }, level = 75, group = "ColdDamageOverTimeMultiplier", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamageOverTimeMultiplierEldritchImplicit3"] = { type = "Exarch", affix = "", "+(11-13)% to Cold Damage over Time Multiplier", statOrder = { 1168 }, level = 75, group = "ColdDamageOverTimeMultiplier", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamageOverTimeMultiplierEldritchImplicit4"] = { type = "Exarch", affix = "", "+(14-16)% to Cold Damage over Time Multiplier", statOrder = { 1168 }, level = 75, group = "ColdDamageOverTimeMultiplier", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamageOverTimeMultiplierEldritchImplicit5"] = { type = "Exarch", affix = "", "+(17-18)% to Cold Damage over Time Multiplier", statOrder = { 1168 }, level = 75, group = "ColdDamageOverTimeMultiplier", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamageOverTimeMultiplierEldritchImplicit6"] = { type = "Exarch", affix = "", "+(19-20)% to Cold Damage over Time Multiplier", statOrder = { 1168 }, level = 75, group = "ColdDamageOverTimeMultiplier", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamageOverTimeMultiplierEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(14-16)% to Cold Damage over Time Multiplier", statOrder = { 1168 }, level = 75, group = "ColdDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamageOverTimeMultiplierEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(17-19)% to Cold Damage over Time Multiplier", statOrder = { 1168 }, level = 75, group = "ColdDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamageOverTimeMultiplierEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(20-22)% to Cold Damage over Time Multiplier", statOrder = { 1168 }, level = 75, group = "ColdDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamageOverTimeMultiplierEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(23-25)% to Cold Damage over Time Multiplier", statOrder = { 1168 }, level = 75, group = "ColdDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamageOverTimeMultiplierEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(26-27)% to Cold Damage over Time Multiplier", statOrder = { 1168 }, level = 75, group = "ColdDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamageOverTimeMultiplierEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(28-29)% to Cold Damage over Time Multiplier", statOrder = { 1168 }, level = 75, group = "ColdDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamageOverTimeMultiplierEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(23-25)% to Cold Damage over Time Multiplier", statOrder = { 1168 }, level = 75, group = "ColdDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamageOverTimeMultiplierEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(26-28)% to Cold Damage over Time Multiplier", statOrder = { 1168 }, level = 75, group = "ColdDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamageOverTimeMultiplierEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(29-31)% to Cold Damage over Time Multiplier", statOrder = { 1168 }, level = 75, group = "ColdDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamageOverTimeMultiplierEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(32-34)% to Cold Damage over Time Multiplier", statOrder = { 1168 }, level = 75, group = "ColdDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamageOverTimeMultiplierEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(35-36)% to Cold Damage over Time Multiplier", statOrder = { 1168 }, level = 75, group = "ColdDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamageOverTimeMultiplierEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(37-38)% to Cold Damage over Time Multiplier", statOrder = { 1168 }, level = 75, group = "ColdDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["PhysicalDamageOverTimeMultiplierEldritchImplicit1"] = { type = "Exarch", affix = "", "+(5-7)% to Physical Damage over Time Multiplier", statOrder = { 1159 }, level = 75, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, + ["PhysicalDamageOverTimeMultiplierEldritchImplicit2"] = { type = "Exarch", affix = "", "+(8-10)% to Physical Damage over Time Multiplier", statOrder = { 1159 }, level = 75, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, + ["PhysicalDamageOverTimeMultiplierEldritchImplicit3"] = { type = "Exarch", affix = "", "+(11-13)% to Physical Damage over Time Multiplier", statOrder = { 1159 }, level = 75, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, + ["PhysicalDamageOverTimeMultiplierEldritchImplicit4"] = { type = "Exarch", affix = "", "+(14-16)% to Physical Damage over Time Multiplier", statOrder = { 1159 }, level = 75, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, + ["PhysicalDamageOverTimeMultiplierEldritchImplicit5"] = { type = "Exarch", affix = "", "+(17-18)% to Physical Damage over Time Multiplier", statOrder = { 1159 }, level = 75, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, + ["PhysicalDamageOverTimeMultiplierEldritchImplicit6"] = { type = "Exarch", affix = "", "+(19-20)% to Physical Damage over Time Multiplier", statOrder = { 1159 }, level = 75, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, + ["PhysicalDamageOverTimeMultiplierEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(14-16)% to Physical Damage over Time Multiplier", statOrder = { 1159 }, level = 75, group = "PhysicalDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, + ["PhysicalDamageOverTimeMultiplierEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(17-19)% to Physical Damage over Time Multiplier", statOrder = { 1159 }, level = 75, group = "PhysicalDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, + ["PhysicalDamageOverTimeMultiplierEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(20-22)% to Physical Damage over Time Multiplier", statOrder = { 1159 }, level = 75, group = "PhysicalDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, + ["PhysicalDamageOverTimeMultiplierEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(23-25)% to Physical Damage over Time Multiplier", statOrder = { 1159 }, level = 75, group = "PhysicalDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, + ["PhysicalDamageOverTimeMultiplierEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(26-27)% to Physical Damage over Time Multiplier", statOrder = { 1159 }, level = 75, group = "PhysicalDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, + ["PhysicalDamageOverTimeMultiplierEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(28-29)% to Physical Damage over Time Multiplier", statOrder = { 1159 }, level = 75, group = "PhysicalDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, + ["PhysicalDamageOverTimeMultiplierEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(23-25)% to Physical Damage over Time Multiplier", statOrder = { 1159 }, level = 75, group = "PhysicalDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, + ["PhysicalDamageOverTimeMultiplierEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(26-28)% to Physical Damage over Time Multiplier", statOrder = { 1159 }, level = 75, group = "PhysicalDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, + ["PhysicalDamageOverTimeMultiplierEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(29-31)% to Physical Damage over Time Multiplier", statOrder = { 1159 }, level = 75, group = "PhysicalDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, + ["PhysicalDamageOverTimeMultiplierEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(32-34)% to Physical Damage over Time Multiplier", statOrder = { 1159 }, level = 75, group = "PhysicalDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, + ["PhysicalDamageOverTimeMultiplierEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(35-36)% to Physical Damage over Time Multiplier", statOrder = { 1159 }, level = 75, group = "PhysicalDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, + ["PhysicalDamageOverTimeMultiplierEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(37-38)% to Physical Damage over Time Multiplier", statOrder = { 1159 }, level = 75, group = "PhysicalDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, + ["ChaosDamageOverTimeMultiplierEldritchImplicit1"] = { type = "Exarch", affix = "", "+(5-7)% to Chaos Damage over Time Multiplier", statOrder = { 1171 }, level = 75, group = "ChaosDamageOverTimeMultiplier", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["ChaosDamageOverTimeMultiplierEldritchImplicit2"] = { type = "Exarch", affix = "", "+(8-10)% to Chaos Damage over Time Multiplier", statOrder = { 1171 }, level = 75, group = "ChaosDamageOverTimeMultiplier", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["ChaosDamageOverTimeMultiplierEldritchImplicit3"] = { type = "Exarch", affix = "", "+(11-13)% to Chaos Damage over Time Multiplier", statOrder = { 1171 }, level = 75, group = "ChaosDamageOverTimeMultiplier", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["ChaosDamageOverTimeMultiplierEldritchImplicit4"] = { type = "Exarch", affix = "", "+(14-16)% to Chaos Damage over Time Multiplier", statOrder = { 1171 }, level = 75, group = "ChaosDamageOverTimeMultiplier", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["ChaosDamageOverTimeMultiplierEldritchImplicit5"] = { type = "Exarch", affix = "", "+(17-18)% to Chaos Damage over Time Multiplier", statOrder = { 1171 }, level = 75, group = "ChaosDamageOverTimeMultiplier", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["ChaosDamageOverTimeMultiplierEldritchImplicit6"] = { type = "Exarch", affix = "", "+(19-20)% to Chaos Damage over Time Multiplier", statOrder = { 1171 }, level = 75, group = "ChaosDamageOverTimeMultiplier", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["ChaosDamageOverTimeMultiplierEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(14-16)% to Chaos Damage over Time Multiplier", statOrder = { 1171 }, level = 75, group = "ChaosDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["ChaosDamageOverTimeMultiplierEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(17-19)% to Chaos Damage over Time Multiplier", statOrder = { 1171 }, level = 75, group = "ChaosDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["ChaosDamageOverTimeMultiplierEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(20-22)% to Chaos Damage over Time Multiplier", statOrder = { 1171 }, level = 75, group = "ChaosDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["ChaosDamageOverTimeMultiplierEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(23-25)% to Chaos Damage over Time Multiplier", statOrder = { 1171 }, level = 75, group = "ChaosDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["ChaosDamageOverTimeMultiplierEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(26-27)% to Chaos Damage over Time Multiplier", statOrder = { 1171 }, level = 75, group = "ChaosDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["ChaosDamageOverTimeMultiplierEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(28-29)% to Chaos Damage over Time Multiplier", statOrder = { 1171 }, level = 75, group = "ChaosDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["ChaosDamageOverTimeMultiplierEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(23-25)% to Chaos Damage over Time Multiplier", statOrder = { 1171 }, level = 75, group = "ChaosDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["ChaosDamageOverTimeMultiplierEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(26-28)% to Chaos Damage over Time Multiplier", statOrder = { 1171 }, level = 75, group = "ChaosDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["ChaosDamageOverTimeMultiplierEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(29-31)% to Chaos Damage over Time Multiplier", statOrder = { 1171 }, level = 75, group = "ChaosDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["ChaosDamageOverTimeMultiplierEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(32-34)% to Chaos Damage over Time Multiplier", statOrder = { 1171 }, level = 75, group = "ChaosDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["ChaosDamageOverTimeMultiplierEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(35-36)% to Chaos Damage over Time Multiplier", statOrder = { 1171 }, level = 75, group = "ChaosDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["ChaosDamageOverTimeMultiplierEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(37-38)% to Chaos Damage over Time Multiplier", statOrder = { 1171 }, level = 75, group = "ChaosDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["HeraldBonusAshEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Herald of Ash has (15-17)% increased Buff Effect", statOrder = { 6978 }, level = 75, group = "HeraldBonusAshEffect", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["HeraldBonusAshEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Herald of Ash has (18-20)% increased Buff Effect", statOrder = { 6978 }, level = 75, group = "HeraldBonusAshEffect", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["HeraldBonusAshEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Herald of Ash has (21-23)% increased Buff Effect", statOrder = { 6978 }, level = 75, group = "HeraldBonusAshEffect", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["HeraldBonusAshEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Herald of Ash has (24-26)% increased Buff Effect", statOrder = { 6978 }, level = 75, group = "HeraldBonusAshEffect", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["HeraldBonusAshEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Herald of Ash has (27-28)% increased Buff Effect", statOrder = { 6978 }, level = 75, group = "HeraldBonusAshEffect", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["HeraldBonusAshEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Herald of Ash has (29-30)% increased Buff Effect", statOrder = { 6978 }, level = 75, group = "HeraldBonusAshEffect", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["HeraldBonusAshEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ash has (24-26)% increased Buff Effect", statOrder = { 6978 }, level = 75, group = "HeraldBonusAshEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["HeraldBonusAshEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ash has (27-29)% increased Buff Effect", statOrder = { 6978 }, level = 75, group = "HeraldBonusAshEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["HeraldBonusAshEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ash has (30-32)% increased Buff Effect", statOrder = { 6978 }, level = 75, group = "HeraldBonusAshEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["HeraldBonusAshEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ash has (33-35)% increased Buff Effect", statOrder = { 6978 }, level = 75, group = "HeraldBonusAshEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["HeraldBonusAshEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ash has (36-37)% increased Buff Effect", statOrder = { 6978 }, level = 75, group = "HeraldBonusAshEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["HeraldBonusAshEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ash has (38-39)% increased Buff Effect", statOrder = { 6978 }, level = 75, group = "HeraldBonusAshEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["HeraldBonusAshEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ash has (33-35)% increased Buff Effect", statOrder = { 6978 }, level = 75, group = "HeraldBonusAshEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["HeraldBonusAshEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ash has (36-38)% increased Buff Effect", statOrder = { 6978 }, level = 75, group = "HeraldBonusAshEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["HeraldBonusAshEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ash has (39-41)% increased Buff Effect", statOrder = { 6978 }, level = 75, group = "HeraldBonusAshEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["HeraldBonusAshEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ash has (42-44)% increased Buff Effect", statOrder = { 6978 }, level = 75, group = "HeraldBonusAshEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["HeraldBonusAshEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ash has (45-46)% increased Buff Effect", statOrder = { 6978 }, level = 75, group = "HeraldBonusAshEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["HeraldBonusAshEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ash has (47-48)% increased Buff Effect", statOrder = { 6978 }, level = 75, group = "HeraldBonusAshEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["HeraldBonusIceEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Herald of Ice has (15-17)% increased Buff Effect", statOrder = { 6982 }, level = 75, group = "HeraldBonusIceEffect", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["HeraldBonusIceEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Herald of Ice has (18-20)% increased Buff Effect", statOrder = { 6982 }, level = 75, group = "HeraldBonusIceEffect", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["HeraldBonusIceEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Herald of Ice has (21-23)% increased Buff Effect", statOrder = { 6982 }, level = 75, group = "HeraldBonusIceEffect", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["HeraldBonusIceEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Herald of Ice has (24-26)% increased Buff Effect", statOrder = { 6982 }, level = 75, group = "HeraldBonusIceEffect", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["HeraldBonusIceEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Herald of Ice has (27-28)% increased Buff Effect", statOrder = { 6982 }, level = 75, group = "HeraldBonusIceEffect", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["HeraldBonusIceEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Herald of Ice has (29-30)% increased Buff Effect", statOrder = { 6982 }, level = 75, group = "HeraldBonusIceEffect", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["HeraldBonusIceEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ice has (24-26)% increased Buff Effect", statOrder = { 6982 }, level = 75, group = "HeraldBonusIceEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["HeraldBonusIceEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ice has (27-29)% increased Buff Effect", statOrder = { 6982 }, level = 75, group = "HeraldBonusIceEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["HeraldBonusIceEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ice has (30-32)% increased Buff Effect", statOrder = { 6982 }, level = 75, group = "HeraldBonusIceEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["HeraldBonusIceEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ice has (33-35)% increased Buff Effect", statOrder = { 6982 }, level = 75, group = "HeraldBonusIceEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["HeraldBonusIceEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ice has (36-37)% increased Buff Effect", statOrder = { 6982 }, level = 75, group = "HeraldBonusIceEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["HeraldBonusIceEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ice has (38-39)% increased Buff Effect", statOrder = { 6982 }, level = 75, group = "HeraldBonusIceEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["HeraldBonusIceEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ice has (33-35)% increased Buff Effect", statOrder = { 6982 }, level = 75, group = "HeraldBonusIceEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["HeraldBonusIceEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ice has (36-38)% increased Buff Effect", statOrder = { 6982 }, level = 75, group = "HeraldBonusIceEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["HeraldBonusIceEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ice has (39-41)% increased Buff Effect", statOrder = { 6982 }, level = 75, group = "HeraldBonusIceEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["HeraldBonusIceEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ice has (42-44)% increased Buff Effect", statOrder = { 6982 }, level = 75, group = "HeraldBonusIceEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["HeraldBonusIceEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ice has (45-46)% increased Buff Effect", statOrder = { 6982 }, level = 75, group = "HeraldBonusIceEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["HeraldBonusIceEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ice has (47-48)% increased Buff Effect", statOrder = { 6982 }, level = 75, group = "HeraldBonusIceEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["HeraldBonusThunderEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Herald of Thunder has (15-17)% increased Buff Effect", statOrder = { 6992 }, level = 75, group = "HeraldBonusThunderEffect", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["HeraldBonusThunderEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Herald of Thunder has (18-20)% increased Buff Effect", statOrder = { 6992 }, level = 75, group = "HeraldBonusThunderEffect", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["HeraldBonusThunderEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Herald of Thunder has (21-23)% increased Buff Effect", statOrder = { 6992 }, level = 75, group = "HeraldBonusThunderEffect", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["HeraldBonusThunderEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Herald of Thunder has (24-26)% increased Buff Effect", statOrder = { 6992 }, level = 75, group = "HeraldBonusThunderEffect", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["HeraldBonusThunderEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Herald of Thunder has (27-28)% increased Buff Effect", statOrder = { 6992 }, level = 75, group = "HeraldBonusThunderEffect", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["HeraldBonusThunderEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Herald of Thunder has (29-30)% increased Buff Effect", statOrder = { 6992 }, level = 75, group = "HeraldBonusThunderEffect", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["HeraldBonusThunderEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Thunder has (24-26)% increased Buff Effect", statOrder = { 6992 }, level = 75, group = "HeraldBonusThunderEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["HeraldBonusThunderEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Thunder has (27-29)% increased Buff Effect", statOrder = { 6992 }, level = 75, group = "HeraldBonusThunderEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["HeraldBonusThunderEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Thunder has (30-32)% increased Buff Effect", statOrder = { 6992 }, level = 75, group = "HeraldBonusThunderEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["HeraldBonusThunderEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Thunder has (33-35)% increased Buff Effect", statOrder = { 6992 }, level = 75, group = "HeraldBonusThunderEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["HeraldBonusThunderEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Thunder has (36-37)% increased Buff Effect", statOrder = { 6992 }, level = 75, group = "HeraldBonusThunderEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["HeraldBonusThunderEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Thunder has (38-39)% increased Buff Effect", statOrder = { 6992 }, level = 75, group = "HeraldBonusThunderEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["HeraldBonusThunderEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Thunder has (33-35)% increased Buff Effect", statOrder = { 6992 }, level = 75, group = "HeraldBonusThunderEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["HeraldBonusThunderEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Thunder has (36-38)% increased Buff Effect", statOrder = { 6992 }, level = 75, group = "HeraldBonusThunderEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["HeraldBonusThunderEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Thunder has (39-41)% increased Buff Effect", statOrder = { 6992 }, level = 75, group = "HeraldBonusThunderEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["HeraldBonusThunderEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Thunder has (42-44)% increased Buff Effect", statOrder = { 6992 }, level = 75, group = "HeraldBonusThunderEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["HeraldBonusThunderEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Thunder has (45-46)% increased Buff Effect", statOrder = { 6992 }, level = 75, group = "HeraldBonusThunderEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["HeraldBonusThunderEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Thunder has (47-48)% increased Buff Effect", statOrder = { 6992 }, level = 75, group = "HeraldBonusThunderEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["HeraldBonusPurityEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Herald of Purity has (15-17)% increased Buff Effect", statOrder = { 6986 }, level = 75, group = "HeraldBonusPurityEffect", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["HeraldBonusPurityEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Herald of Purity has (18-20)% increased Buff Effect", statOrder = { 6986 }, level = 75, group = "HeraldBonusPurityEffect", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["HeraldBonusPurityEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Herald of Purity has (21-23)% increased Buff Effect", statOrder = { 6986 }, level = 75, group = "HeraldBonusPurityEffect", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["HeraldBonusPurityEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Herald of Purity has (24-26)% increased Buff Effect", statOrder = { 6986 }, level = 75, group = "HeraldBonusPurityEffect", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["HeraldBonusPurityEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Herald of Purity has (27-28)% increased Buff Effect", statOrder = { 6986 }, level = 75, group = "HeraldBonusPurityEffect", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["HeraldBonusPurityEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Herald of Purity has (29-30)% increased Buff Effect", statOrder = { 6986 }, level = 75, group = "HeraldBonusPurityEffect", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["HeraldBonusPurityEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Purity has (24-26)% increased Buff Effect", statOrder = { 6986 }, level = 75, group = "HeraldBonusPurityEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["HeraldBonusPurityEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Purity has (27-29)% increased Buff Effect", statOrder = { 6986 }, level = 75, group = "HeraldBonusPurityEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["HeraldBonusPurityEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Purity has (30-32)% increased Buff Effect", statOrder = { 6986 }, level = 75, group = "HeraldBonusPurityEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["HeraldBonusPurityEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Purity has (33-35)% increased Buff Effect", statOrder = { 6986 }, level = 75, group = "HeraldBonusPurityEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["HeraldBonusPurityEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Purity has (36-37)% increased Buff Effect", statOrder = { 6986 }, level = 75, group = "HeraldBonusPurityEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["HeraldBonusPurityEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Purity has (38-39)% increased Buff Effect", statOrder = { 6986 }, level = 75, group = "HeraldBonusPurityEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["HeraldBonusPurityEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Purity has (33-35)% increased Buff Effect", statOrder = { 6986 }, level = 75, group = "HeraldBonusPurityEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["HeraldBonusPurityEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Purity has (36-38)% increased Buff Effect", statOrder = { 6986 }, level = 75, group = "HeraldBonusPurityEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["HeraldBonusPurityEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Purity has (39-41)% increased Buff Effect", statOrder = { 6986 }, level = 75, group = "HeraldBonusPurityEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["HeraldBonusPurityEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Purity has (42-44)% increased Buff Effect", statOrder = { 6986 }, level = 75, group = "HeraldBonusPurityEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["HeraldBonusPurityEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Purity has (45-46)% increased Buff Effect", statOrder = { 6986 }, level = 75, group = "HeraldBonusPurityEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["HeraldBonusPurityEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Purity has (47-48)% increased Buff Effect", statOrder = { 6986 }, level = 75, group = "HeraldBonusPurityEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["HeraldBonusAgonyEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Herald of Agony has (15-17)% increased Buff Effect", statOrder = { 6974 }, level = 75, group = "HeraldBonusAgonyEffect", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["HeraldBonusAgonyEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Herald of Agony has (18-20)% increased Buff Effect", statOrder = { 6974 }, level = 75, group = "HeraldBonusAgonyEffect", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["HeraldBonusAgonyEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Herald of Agony has (21-23)% increased Buff Effect", statOrder = { 6974 }, level = 75, group = "HeraldBonusAgonyEffect", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["HeraldBonusAgonyEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Herald of Agony has (24-26)% increased Buff Effect", statOrder = { 6974 }, level = 75, group = "HeraldBonusAgonyEffect", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["HeraldBonusAgonyEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Herald of Agony has (27-28)% increased Buff Effect", statOrder = { 6974 }, level = 75, group = "HeraldBonusAgonyEffect", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["HeraldBonusAgonyEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Herald of Agony has (29-30)% increased Buff Effect", statOrder = { 6974 }, level = 75, group = "HeraldBonusAgonyEffect", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["HeraldBonusAgonyEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Agony has (24-26)% increased Buff Effect", statOrder = { 6974 }, level = 75, group = "HeraldBonusAgonyEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["HeraldBonusAgonyEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Agony has (27-29)% increased Buff Effect", statOrder = { 6974 }, level = 75, group = "HeraldBonusAgonyEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["HeraldBonusAgonyEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Agony has (30-32)% increased Buff Effect", statOrder = { 6974 }, level = 75, group = "HeraldBonusAgonyEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["HeraldBonusAgonyEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Agony has (33-35)% increased Buff Effect", statOrder = { 6974 }, level = 75, group = "HeraldBonusAgonyEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["HeraldBonusAgonyEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Agony has (36-37)% increased Buff Effect", statOrder = { 6974 }, level = 75, group = "HeraldBonusAgonyEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["HeraldBonusAgonyEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Agony has (38-39)% increased Buff Effect", statOrder = { 6974 }, level = 75, group = "HeraldBonusAgonyEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["HeraldBonusAgonyEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Agony has (33-35)% increased Buff Effect", statOrder = { 6974 }, level = 75, group = "HeraldBonusAgonyEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["HeraldBonusAgonyEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Agony has (36-38)% increased Buff Effect", statOrder = { 6974 }, level = 75, group = "HeraldBonusAgonyEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["HeraldBonusAgonyEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Agony has (39-41)% increased Buff Effect", statOrder = { 6974 }, level = 75, group = "HeraldBonusAgonyEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["HeraldBonusAgonyEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Agony has (42-44)% increased Buff Effect", statOrder = { 6974 }, level = 75, group = "HeraldBonusAgonyEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["HeraldBonusAgonyEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Agony has (45-46)% increased Buff Effect", statOrder = { 6974 }, level = 75, group = "HeraldBonusAgonyEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["HeraldBonusAgonyEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Agony has (47-48)% increased Buff Effect", statOrder = { 6974 }, level = 75, group = "HeraldBonusAgonyEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["IgniteProliferationEldritchImplicit1"] = { type = "Exarch", affix = "", "Ignites you inflict spread to other Enemies within 1.2 metres", statOrder = { 2127 }, level = 75, group = "GlobalIgniteProlif", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["IgniteProliferationEldritchImplicit2"] = { type = "Exarch", affix = "", "Ignites you inflict spread to other Enemies within 1.3 metres", statOrder = { 2127 }, level = 75, group = "GlobalIgniteProlif", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["IgniteProliferationEldritchImplicit3"] = { type = "Exarch", affix = "", "Ignites you inflict spread to other Enemies within 1.4 metres", statOrder = { 2127 }, level = 75, group = "GlobalIgniteProlif", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["IgniteProliferationEldritchImplicit4"] = { type = "Exarch", affix = "", "Ignites you inflict spread to other Enemies within 1.5 metres", statOrder = { 2127 }, level = 75, group = "GlobalIgniteProlif", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["IgniteProliferationEldritchImplicit5"] = { type = "Exarch", affix = "", "Ignites you inflict spread to other Enemies within 1.6 metres", statOrder = { 2127 }, level = 75, group = "GlobalIgniteProlif", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["IgniteProliferationEldritchImplicit6"] = { type = "Exarch", affix = "", "Ignites you inflict spread to other Enemies within 1.7 metres", statOrder = { 2127 }, level = 75, group = "GlobalIgniteProlif", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["IgniteProliferationEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict spread to other Enemies within 1.5 metres", statOrder = { 2127 }, level = 75, group = "GlobalIgniteProlifUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["IgniteProliferationEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict spread to other Enemies within 1.6 metres", statOrder = { 2127 }, level = 75, group = "GlobalIgniteProlifUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["IgniteProliferationEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict spread to other Enemies within 1.7 metres", statOrder = { 2127 }, level = 75, group = "GlobalIgniteProlifUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["IgniteProliferationEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict spread to other Enemies within 1.8 metres", statOrder = { 2127 }, level = 75, group = "GlobalIgniteProlifUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["IgniteProliferationEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict spread to other Enemies within 1.9 metres", statOrder = { 2127 }, level = 75, group = "GlobalIgniteProlifUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["IgniteProliferationEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict spread to other Enemies within 2 metres", statOrder = { 2127 }, level = 75, group = "GlobalIgniteProlifUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["IgniteProliferationEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict spread to other Enemies within 1.8 metres", statOrder = { 2127 }, level = 75, group = "GlobalIgniteProlifPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["IgniteProliferationEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict spread to other Enemies within 1.9 metres", statOrder = { 2127 }, level = 75, group = "GlobalIgniteProlifPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["IgniteProliferationEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict spread to other Enemies within 2 metres", statOrder = { 2127 }, level = 75, group = "GlobalIgniteProlifPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["IgniteProliferationEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict spread to other Enemies within 2.1 metres", statOrder = { 2127 }, level = 75, group = "GlobalIgniteProlifPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["IgniteProliferationEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict spread to other Enemies within 2.2 metres", statOrder = { 2127 }, level = 75, group = "GlobalIgniteProlifPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["IgniteProliferationEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict spread to other Enemies within 2.3 metres", statOrder = { 2127 }, level = 75, group = "GlobalIgniteProlifPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["FreezeProliferationEldritchImplicit1"] = { type = "Exarch", affix = "", "Freezes you inflict spread to other Enemies within 1.2 metres", statOrder = { 2130 }, level = 75, group = "FreezeProliferation", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["FreezeProliferationEldritchImplicit2"] = { type = "Exarch", affix = "", "Freezes you inflict spread to other Enemies within 1.3 metres", statOrder = { 2130 }, level = 75, group = "FreezeProliferation", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["FreezeProliferationEldritchImplicit3"] = { type = "Exarch", affix = "", "Freezes you inflict spread to other Enemies within 1.4 metres", statOrder = { 2130 }, level = 75, group = "FreezeProliferation", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["FreezeProliferationEldritchImplicit4"] = { type = "Exarch", affix = "", "Freezes you inflict spread to other Enemies within 1.5 metres", statOrder = { 2130 }, level = 75, group = "FreezeProliferation", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["FreezeProliferationEldritchImplicit5"] = { type = "Exarch", affix = "", "Freezes you inflict spread to other Enemies within 1.6 metres", statOrder = { 2130 }, level = 75, group = "FreezeProliferation", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["FreezeProliferationEldritchImplicit6"] = { type = "Exarch", affix = "", "Freezes you inflict spread to other Enemies within 1.7 metres", statOrder = { 2130 }, level = 75, group = "FreezeProliferation", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["FreezeProliferationEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Freezes you inflict spread to other Enemies within 1.5 metres", statOrder = { 2130 }, level = 75, group = "FreezeProliferationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["FreezeProliferationEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Freezes you inflict spread to other Enemies within 1.6 metres", statOrder = { 2130 }, level = 75, group = "FreezeProliferationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["FreezeProliferationEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Freezes you inflict spread to other Enemies within 1.7 metres", statOrder = { 2130 }, level = 75, group = "FreezeProliferationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["FreezeProliferationEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Freezes you inflict spread to other Enemies within 1.8 metres", statOrder = { 2130 }, level = 75, group = "FreezeProliferationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["FreezeProliferationEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Freezes you inflict spread to other Enemies within 1.9 metres", statOrder = { 2130 }, level = 75, group = "FreezeProliferationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["FreezeProliferationEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Freezes you inflict spread to other Enemies within 2 metres", statOrder = { 2130 }, level = 75, group = "FreezeProliferationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["FreezeProliferationEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Freezes you inflict spread to other Enemies within 1.8 metres", statOrder = { 2130 }, level = 75, group = "FreezeProliferationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["FreezeProliferationEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Freezes you inflict spread to other Enemies within 1.9 metres", statOrder = { 2130 }, level = 75, group = "FreezeProliferationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["FreezeProliferationEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Freezes you inflict spread to other Enemies within 2 metres", statOrder = { 2130 }, level = 75, group = "FreezeProliferationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["FreezeProliferationEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Freezes you inflict spread to other Enemies within 2.1 metres", statOrder = { 2130 }, level = 75, group = "FreezeProliferationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["FreezeProliferationEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Freezes you inflict spread to other Enemies within 2.2 metres", statOrder = { 2130 }, level = 75, group = "FreezeProliferationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["FreezeProliferationEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Freezes you inflict spread to other Enemies within 2.3 metres", statOrder = { 2130 }, level = 75, group = "FreezeProliferationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ShockProliferationEldritchImplicit1"] = { type = "Exarch", affix = "", "Shocks you inflict spread to other Enemies within 1.2 metres", statOrder = { 2131 }, level = 75, group = "ShockProliferation", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ShockProliferationEldritchImplicit2"] = { type = "Exarch", affix = "", "Shocks you inflict spread to other Enemies within 1.3 metres", statOrder = { 2131 }, level = 75, group = "ShockProliferation", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ShockProliferationEldritchImplicit3"] = { type = "Exarch", affix = "", "Shocks you inflict spread to other Enemies within 1.4 metres", statOrder = { 2131 }, level = 75, group = "ShockProliferation", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ShockProliferationEldritchImplicit4"] = { type = "Exarch", affix = "", "Shocks you inflict spread to other Enemies within 1.5 metres", statOrder = { 2131 }, level = 75, group = "ShockProliferation", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ShockProliferationEldritchImplicit5"] = { type = "Exarch", affix = "", "Shocks you inflict spread to other Enemies within 1.6 metres", statOrder = { 2131 }, level = 75, group = "ShockProliferation", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ShockProliferationEldritchImplicit6"] = { type = "Exarch", affix = "", "Shocks you inflict spread to other Enemies within 1.7 metres", statOrder = { 2131 }, level = 75, group = "ShockProliferation", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ShockProliferationEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Shocks you inflict spread to other Enemies within 1.5 metres", statOrder = { 2131 }, level = 75, group = "ShockProliferationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ShockProliferationEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Shocks you inflict spread to other Enemies within 1.6 metres", statOrder = { 2131 }, level = 75, group = "ShockProliferationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ShockProliferationEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Shocks you inflict spread to other Enemies within 1.7 metres", statOrder = { 2131 }, level = 75, group = "ShockProliferationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ShockProliferationEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Shocks you inflict spread to other Enemies within 1.8 metres", statOrder = { 2131 }, level = 75, group = "ShockProliferationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ShockProliferationEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Shocks you inflict spread to other Enemies within 1.9 metres", statOrder = { 2131 }, level = 75, group = "ShockProliferationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ShockProliferationEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Shocks you inflict spread to other Enemies within 2 metres", statOrder = { 2131 }, level = 75, group = "ShockProliferationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ShockProliferationEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Shocks you inflict spread to other Enemies within 1.8 metres", statOrder = { 2131 }, level = 75, group = "ShockProliferationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ShockProliferationEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Shocks you inflict spread to other Enemies within 1.9 metres", statOrder = { 2131 }, level = 75, group = "ShockProliferationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ShockProliferationEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Shocks you inflict spread to other Enemies within 2 metres", statOrder = { 2131 }, level = 75, group = "ShockProliferationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ShockProliferationEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Shocks you inflict spread to other Enemies within 2.1 metres", statOrder = { 2131 }, level = 75, group = "ShockProliferationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ShockProliferationEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Shocks you inflict spread to other Enemies within 2.2 metres", statOrder = { 2131 }, level = 75, group = "ShockProliferationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ShockProliferationEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Shocks you inflict spread to other Enemies within 2.3 metres", statOrder = { 2131 }, level = 75, group = "ShockProliferationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["StunThresholdReductionEldritchImplicit1"] = { type = "Exarch", affix = "", "(6-7)% reduced Enemy Stun Threshold", statOrder = { 1428 }, level = 75, group = "StunThresholdReduction", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["StunThresholdReductionEldritchImplicit2"] = { type = "Exarch", affix = "", "(8-9)% reduced Enemy Stun Threshold", statOrder = { 1428 }, level = 75, group = "StunThresholdReduction", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["StunThresholdReductionEldritchImplicit3"] = { type = "Exarch", affix = "", "(10-11)% reduced Enemy Stun Threshold", statOrder = { 1428 }, level = 75, group = "StunThresholdReduction", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["StunThresholdReductionEldritchImplicit4"] = { type = "Exarch", affix = "", "(12-13)% reduced Enemy Stun Threshold", statOrder = { 1428 }, level = 75, group = "StunThresholdReduction", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["StunThresholdReductionEldritchImplicit5"] = { type = "Exarch", affix = "", "(14-15)% reduced Enemy Stun Threshold", statOrder = { 1428 }, level = 75, group = "StunThresholdReduction", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["StunThresholdReductionEldritchImplicit6"] = { type = "Exarch", affix = "", "(16-17)% reduced Enemy Stun Threshold", statOrder = { 1428 }, level = 75, group = "StunThresholdReduction", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["StunThresholdReductionEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (12-13)% reduced Enemy Stun Threshold", statOrder = { 1428 }, level = 75, group = "StunThresholdReductionUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["StunThresholdReductionEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (14-15)% reduced Enemy Stun Threshold", statOrder = { 1428 }, level = 75, group = "StunThresholdReductionUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["StunThresholdReductionEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (16-17)% reduced Enemy Stun Threshold", statOrder = { 1428 }, level = 75, group = "StunThresholdReductionUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["StunThresholdReductionEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (18-19)% reduced Enemy Stun Threshold", statOrder = { 1428 }, level = 75, group = "StunThresholdReductionUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["StunThresholdReductionEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (20-21)% reduced Enemy Stun Threshold", statOrder = { 1428 }, level = 75, group = "StunThresholdReductionUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["StunThresholdReductionEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (22-23)% reduced Enemy Stun Threshold", statOrder = { 1428 }, level = 75, group = "StunThresholdReductionUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["StunThresholdReductionEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (18-19)% reduced Enemy Stun Threshold", statOrder = { 1428 }, level = 75, group = "StunThresholdReductionPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["StunThresholdReductionEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% reduced Enemy Stun Threshold", statOrder = { 1428 }, level = 75, group = "StunThresholdReductionPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["StunThresholdReductionEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% reduced Enemy Stun Threshold", statOrder = { 1428 }, level = 75, group = "StunThresholdReductionPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, + ["StunThresholdReductionEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% reduced Enemy Stun Threshold", statOrder = { 1428 }, level = 75, group = "StunThresholdReductionPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, + ["StunThresholdReductionEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% reduced Enemy Stun Threshold", statOrder = { 1428 }, level = 75, group = "StunThresholdReductionPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, + ["StunThresholdReductionEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% reduced Enemy Stun Threshold", statOrder = { 1428 }, level = 75, group = "StunThresholdReductionPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, + ["MinionDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Minions deal (14-16)% increased Damage", statOrder = { 1882 }, level = 75, group = "MinionDamage", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Minions deal (17-19)% increased Damage", statOrder = { 1882 }, level = 75, group = "MinionDamage", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Minions deal (20-22)% increased Damage", statOrder = { 1882 }, level = 75, group = "MinionDamage", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Minions deal (23-25)% increased Damage", statOrder = { 1882 }, level = 75, group = "MinionDamage", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Minions deal (26-27)% increased Damage", statOrder = { 1882 }, level = 75, group = "MinionDamage", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Minions deal (28-29)% increased Damage", statOrder = { 1882 }, level = 75, group = "MinionDamage", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions deal (26-28)% increased Damage", statOrder = { 1882 }, level = 75, group = "MinionDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions deal (29-31)% increased Damage", statOrder = { 1882 }, level = 75, group = "MinionDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions deal (32-34)% increased Damage", statOrder = { 1882 }, level = 75, group = "MinionDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions deal (35-37)% increased Damage", statOrder = { 1882 }, level = 75, group = "MinionDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions deal (38-39)% increased Damage", statOrder = { 1882 }, level = 75, group = "MinionDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions deal (40-41)% increased Damage", statOrder = { 1882 }, level = 75, group = "MinionDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions deal (38-40)% increased Damage", statOrder = { 1882 }, level = 75, group = "MinionDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions deal (41-43)% increased Damage", statOrder = { 1882 }, level = 75, group = "MinionDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions deal (44-46)% increased Damage", statOrder = { 1882 }, level = 75, group = "MinionDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions deal (47-49)% increased Damage", statOrder = { 1882 }, level = 75, group = "MinionDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions deal (50-51)% increased Damage", statOrder = { 1882 }, level = 75, group = "MinionDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions deal (52-53)% increased Damage", statOrder = { 1882 }, level = 75, group = "MinionDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "damage", "minion" }, }, + ["TrapThrowSpeedEldritchImplicit1"] = { type = "Exarch", affix = "", "8% increased Trap Throwing Speed", statOrder = { 1836 }, level = 75, group = "TrapThrowSpeed", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, + ["TrapThrowSpeedEldritchImplicit2"] = { type = "Exarch", affix = "", "9% increased Trap Throwing Speed", statOrder = { 1836 }, level = 75, group = "TrapThrowSpeed", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, + ["TrapThrowSpeedEldritchImplicit3"] = { type = "Exarch", affix = "", "10% increased Trap Throwing Speed", statOrder = { 1836 }, level = 75, group = "TrapThrowSpeed", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, + ["TrapThrowSpeedEldritchImplicit4"] = { type = "Exarch", affix = "", "11% increased Trap Throwing Speed", statOrder = { 1836 }, level = 75, group = "TrapThrowSpeed", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, + ["TrapThrowSpeedEldritchImplicit5"] = { type = "Exarch", affix = "", "12% increased Trap Throwing Speed", statOrder = { 1836 }, level = 75, group = "TrapThrowSpeed", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, + ["TrapThrowSpeedEldritchImplicit6"] = { type = "Exarch", affix = "", "13% increased Trap Throwing Speed", statOrder = { 1836 }, level = 75, group = "TrapThrowSpeed", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, + ["TrapThrowSpeedEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 12% increased Trap Throwing Speed", statOrder = { 1836 }, level = 75, group = "TrapThrowSpeedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, }, + ["TrapThrowSpeedEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 13% increased Trap Throwing Speed", statOrder = { 1836 }, level = 75, group = "TrapThrowSpeedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, }, + ["TrapThrowSpeedEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Trap Throwing Speed", statOrder = { 1836 }, level = 75, group = "TrapThrowSpeedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, }, + ["TrapThrowSpeedEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Trap Throwing Speed", statOrder = { 1836 }, level = 75, group = "TrapThrowSpeedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, }, + ["TrapThrowSpeedEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Trap Throwing Speed", statOrder = { 1836 }, level = 75, group = "TrapThrowSpeedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, }, + ["TrapThrowSpeedEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Trap Throwing Speed", statOrder = { 1836 }, level = 75, group = "TrapThrowSpeedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, }, + ["TrapThrowSpeedEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Trap Throwing Speed", statOrder = { 1836 }, level = 75, group = "TrapThrowSpeedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, }, + ["TrapThrowSpeedEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 17% increased Trap Throwing Speed", statOrder = { 1836 }, level = 75, group = "TrapThrowSpeedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, }, + ["TrapThrowSpeedEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Trap Throwing Speed", statOrder = { 1836 }, level = 75, group = "TrapThrowSpeedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, }, + ["TrapThrowSpeedEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Trap Throwing Speed", statOrder = { 1836 }, level = 75, group = "TrapThrowSpeedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, }, + ["TrapThrowSpeedEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Trap Throwing Speed", statOrder = { 1836 }, level = 75, group = "TrapThrowSpeedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, }, + ["TrapThrowSpeedEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Trap Throwing Speed", statOrder = { 1836 }, level = 75, group = "TrapThrowSpeedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, }, + ["MineLayingSpeedEldritchImplicit1"] = { type = "Exarch", affix = "", "8% increased Mine Throwing Speed", statOrder = { 1837 }, level = 75, group = "MineLayingSpeed", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, + ["MineLayingSpeedEldritchImplicit2"] = { type = "Exarch", affix = "", "9% increased Mine Throwing Speed", statOrder = { 1837 }, level = 75, group = "MineLayingSpeed", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, + ["MineLayingSpeedEldritchImplicit3"] = { type = "Exarch", affix = "", "10% increased Mine Throwing Speed", statOrder = { 1837 }, level = 75, group = "MineLayingSpeed", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, + ["MineLayingSpeedEldritchImplicit4"] = { type = "Exarch", affix = "", "11% increased Mine Throwing Speed", statOrder = { 1837 }, level = 75, group = "MineLayingSpeed", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, + ["MineLayingSpeedEldritchImplicit5"] = { type = "Exarch", affix = "", "12% increased Mine Throwing Speed", statOrder = { 1837 }, level = 75, group = "MineLayingSpeed", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, + ["MineLayingSpeedEldritchImplicit6"] = { type = "Exarch", affix = "", "13% increased Mine Throwing Speed", statOrder = { 1837 }, level = 75, group = "MineLayingSpeed", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, + ["MineLayingSpeedEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 12% increased Mine Throwing Speed", statOrder = { 1837 }, level = 75, group = "MineLayingSpeedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, }, + ["MineLayingSpeedEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 13% increased Mine Throwing Speed", statOrder = { 1837 }, level = 75, group = "MineLayingSpeedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, }, + ["MineLayingSpeedEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Mine Throwing Speed", statOrder = { 1837 }, level = 75, group = "MineLayingSpeedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, }, + ["MineLayingSpeedEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Mine Throwing Speed", statOrder = { 1837 }, level = 75, group = "MineLayingSpeedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, }, + ["MineLayingSpeedEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Mine Throwing Speed", statOrder = { 1837 }, level = 75, group = "MineLayingSpeedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, }, + ["MineLayingSpeedEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Mine Throwing Speed", statOrder = { 1837 }, level = 75, group = "MineLayingSpeedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, }, + ["MineLayingSpeedEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Mine Throwing Speed", statOrder = { 1837 }, level = 75, group = "MineLayingSpeedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, }, + ["MineLayingSpeedEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 17% increased Mine Throwing Speed", statOrder = { 1837 }, level = 75, group = "MineLayingSpeedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, }, + ["MineLayingSpeedEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Mine Throwing Speed", statOrder = { 1837 }, level = 75, group = "MineLayingSpeedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, }, + ["MineLayingSpeedEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Mine Throwing Speed", statOrder = { 1837 }, level = 75, group = "MineLayingSpeedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, }, + ["MineLayingSpeedEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Mine Throwing Speed", statOrder = { 1837 }, level = 75, group = "MineLayingSpeedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, }, + ["MineLayingSpeedEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Mine Throwing Speed", statOrder = { 1837 }, level = 75, group = "MineLayingSpeedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, }, + ["ExtinguishOnHitEldritchImplicit1"] = { type = "Exarch", affix = "", "15% chance to Extinguish Enemies on Hit", statOrder = { 6415 }, level = 75, group = "ExtinguishOnHitChance", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["ExtinguishOnHitEldritchImplicit2"] = { type = "Exarch", affix = "", "20% chance to Extinguish Enemies on Hit", statOrder = { 6415 }, level = 75, group = "ExtinguishOnHitChance", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["ExtinguishOnHitEldritchImplicit3"] = { type = "Exarch", affix = "", "25% chance to Extinguish Enemies on Hit", statOrder = { 6415 }, level = 75, group = "ExtinguishOnHitChance", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["ExtinguishOnHitEldritchImplicit4"] = { type = "Exarch", affix = "", "30% chance to Extinguish Enemies on Hit", statOrder = { 6415 }, level = 75, group = "ExtinguishOnHitChance", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["ExtinguishOnHitEldritchImplicit5"] = { type = "Exarch", affix = "", "35% chance to Extinguish Enemies on Hit", statOrder = { 6415 }, level = 75, group = "ExtinguishOnHitChance", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["ExtinguishOnHitEldritchImplicit6"] = { type = "Exarch", affix = "", "40% chance to Extinguish Enemies on Hit", statOrder = { 6415 }, level = 75, group = "ExtinguishOnHitChance", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["ExtinguishOnHitEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 45% chance to Extinguish Enemies on Hit", statOrder = { 6415 }, level = 75, group = "ExtinguishOnHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["ExtinguishOnHitEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 50% chance to Extinguish Enemies on Hit", statOrder = { 6415 }, level = 75, group = "ExtinguishOnHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, + ["ExtinguishOnHitEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 55% chance to Extinguish Enemies on Hit", statOrder = { 6415 }, level = 75, group = "ExtinguishOnHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, + ["ExtinguishOnHitEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 60% chance to Extinguish Enemies on Hit", statOrder = { 6415 }, level = 75, group = "ExtinguishOnHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, + ["ExtinguishOnHitEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 65% chance to Extinguish Enemies on Hit", statOrder = { 6415 }, level = 75, group = "ExtinguishOnHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, + ["ExtinguishOnHitEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 70% chance to Extinguish Enemies on Hit", statOrder = { 6415 }, level = 75, group = "ExtinguishOnHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, + ["ExtinguishOnHitEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 75% chance to Extinguish Enemies on Hit", statOrder = { 6415 }, level = 75, group = "ExtinguishOnHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["ExtinguishOnHitEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 80% chance to Extinguish Enemies on Hit", statOrder = { 6415 }, level = 75, group = "ExtinguishOnHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["ExtinguishOnHitEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 85% chance to Extinguish Enemies on Hit", statOrder = { 6415 }, level = 75, group = "ExtinguishOnHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, + ["ExtinguishOnHitEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 90% chance to Extinguish Enemies on Hit", statOrder = { 6415 }, level = 75, group = "ExtinguishOnHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, + ["ExtinguishOnHitEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 95% chance to Extinguish Enemies on Hit", statOrder = { 6415 }, level = 75, group = "ExtinguishOnHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, + ["ExtinguishOnHitEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 100% chance to Extinguish Enemies on Hit", statOrder = { 6415 }, level = 75, group = "ExtinguishOnHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, + ["MaximumColdResistanceEldritchImplicit1"] = { type = "Exarch", affix = "", "+1% to maximum Cold Resistance", statOrder = { 1540 }, level = 75, group = "MaximumColdResistanceImplicit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["MaximumColdResistanceEldritchImplicit2"] = { type = "Exarch", affix = "", "+1% to maximum Cold Resistance", statOrder = { 1540 }, level = 75, group = "MaximumColdResistanceImplicit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["MaximumColdResistanceEldritchImplicit3"] = { type = "Exarch", affix = "", "+1% to maximum Cold Resistance", statOrder = { 1540 }, level = 75, group = "MaximumColdResistanceImplicit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["MaximumColdResistanceEldritchImplicit4"] = { type = "Exarch", affix = "", "+1% to maximum Cold Resistance", statOrder = { 1540 }, level = 75, group = "MaximumColdResistanceImplicit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["MaximumColdResistanceEldritchImplicit5"] = { type = "Exarch", affix = "", "+2% to maximum Cold Resistance", statOrder = { 1540 }, level = 75, group = "MaximumColdResistanceImplicit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["MaximumColdResistanceEldritchImplicit6"] = { type = "Exarch", affix = "", "+2% to maximum Cold Resistance", statOrder = { 1540 }, level = 75, group = "MaximumColdResistanceImplicit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["MaximumColdResistanceEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Cold Resistance", statOrder = { 1540 }, level = 75, group = "MaximumColdResistanceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["MaximumColdResistanceEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Cold Resistance", statOrder = { 1540 }, level = 75, group = "MaximumColdResistanceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["MaximumColdResistanceEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Cold Resistance", statOrder = { 1540 }, level = 75, group = "MaximumColdResistanceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["MaximumColdResistanceEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Cold Resistance", statOrder = { 1540 }, level = 75, group = "MaximumColdResistanceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["MaximumColdResistanceEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1540 }, level = 75, group = "MaximumColdResistanceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["MaximumColdResistanceEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1540 }, level = 75, group = "MaximumColdResistanceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["MaximumColdResistanceEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1540 }, level = 75, group = "MaximumColdResistancePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["MaximumColdResistanceEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1540 }, level = 75, group = "MaximumColdResistancePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["MaximumColdResistanceEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1540 }, level = 75, group = "MaximumColdResistancePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["MaximumColdResistanceEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1540 }, level = 75, group = "MaximumColdResistancePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["MaximumColdResistanceEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Cold Resistance", statOrder = { 1540 }, level = 75, group = "MaximumColdResistancePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["MaximumColdResistanceEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Cold Resistance", statOrder = { 1540 }, level = 75, group = "MaximumColdResistancePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["DamagePerFrenzyChargeEldritchImplicit1"] = { type = "Exarch", affix = "", "4% increased Damage per Frenzy Charge", statOrder = { 3194 }, level = 75, group = "DamagePerFrenzyCharge", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, }, + ["DamagePerFrenzyChargeEldritchImplicit2"] = { type = "Exarch", affix = "", "4% increased Damage per Frenzy Charge", statOrder = { 3194 }, level = 75, group = "DamagePerFrenzyCharge", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, }, + ["DamagePerFrenzyChargeEldritchImplicit3"] = { type = "Exarch", affix = "", "5% increased Damage per Frenzy Charge", statOrder = { 3194 }, level = 75, group = "DamagePerFrenzyCharge", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, }, + ["DamagePerFrenzyChargeEldritchImplicit4"] = { type = "Exarch", affix = "", "5% increased Damage per Frenzy Charge", statOrder = { 3194 }, level = 75, group = "DamagePerFrenzyCharge", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, }, + ["DamagePerFrenzyChargeEldritchImplicit5"] = { type = "Exarch", affix = "", "6% increased Damage per Frenzy Charge", statOrder = { 3194 }, level = 75, group = "DamagePerFrenzyCharge", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, }, + ["DamagePerFrenzyChargeEldritchImplicit6"] = { type = "Exarch", affix = "", "6% increased Damage per Frenzy Charge", statOrder = { 3194 }, level = 75, group = "DamagePerFrenzyCharge", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, }, + ["DamagePerFrenzyChargeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per Frenzy Charge", statOrder = { 3194 }, level = 75, group = "DamagePerFrenzyChargeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, }, + ["DamagePerFrenzyChargeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per Frenzy Charge", statOrder = { 3194 }, level = 75, group = "DamagePerFrenzyChargeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, }, + ["DamagePerFrenzyChargeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 6% increased Damage per Frenzy Charge", statOrder = { 3194 }, level = 75, group = "DamagePerFrenzyChargeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, }, + ["DamagePerFrenzyChargeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 6% increased Damage per Frenzy Charge", statOrder = { 3194 }, level = 75, group = "DamagePerFrenzyChargeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, }, + ["DamagePerFrenzyChargeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 7% increased Damage per Frenzy Charge", statOrder = { 3194 }, level = 75, group = "DamagePerFrenzyChargeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, }, + ["DamagePerFrenzyChargeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 7% increased Damage per Frenzy Charge", statOrder = { 3194 }, level = 75, group = "DamagePerFrenzyChargeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, }, + ["DamagePerFrenzyChargeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per Frenzy Charge", statOrder = { 3194 }, level = 75, group = "DamagePerFrenzyChargePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, }, + ["DamagePerFrenzyChargeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per Frenzy Charge", statOrder = { 3194 }, level = 75, group = "DamagePerFrenzyChargePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, }, + ["DamagePerFrenzyChargeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Damage per Frenzy Charge", statOrder = { 3194 }, level = 75, group = "DamagePerFrenzyChargePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, + ["DamagePerFrenzyChargeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Damage per Frenzy Charge", statOrder = { 3194 }, level = 75, group = "DamagePerFrenzyChargePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, + ["DamagePerFrenzyChargeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Damage per Frenzy Charge", statOrder = { 3194 }, level = 75, group = "DamagePerFrenzyChargePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, + ["DamagePerFrenzyChargeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Damage per Frenzy Charge", statOrder = { 3194 }, level = 75, group = "DamagePerFrenzyChargePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, + ["StrikeSkillsAdditionalTargetEldritchImplicit1"] = { type = "Exarch", affix = "", "Non-Vaal Strike Skills target 1 additional nearby Enemy", statOrder = { 8996 }, level = 75, group = "StrikeSkillsAdditionalTarget", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "attack" }, }, + ["StrikeSkillsAdditionalTargetEldritchImplicit2"] = { type = "Exarch", affix = "", "Non-Vaal Strike Skills target 1 additional nearby Enemy", statOrder = { 8996 }, level = 75, group = "StrikeSkillsAdditionalTarget", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "attack" }, }, + ["StrikeSkillsAdditionalTargetEldritchImplicit3"] = { type = "Exarch", affix = "", "Non-Vaal Strike Skills target 1 additional nearby Enemy", statOrder = { 8996 }, level = 75, group = "StrikeSkillsAdditionalTarget", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "attack" }, }, + ["StrikeSkillsAdditionalTargetEldritchImplicit4"] = { type = "Exarch", affix = "", "Non-Vaal Strike Skills target 1 additional nearby Enemy", statOrder = { 8996 }, level = 75, group = "StrikeSkillsAdditionalTarget", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "attack" }, }, + ["StrikeSkillsAdditionalTargetEldritchImplicit5"] = { type = "Exarch", affix = "", "Non-Vaal Strike Skills target 2 additional nearby Enemies", statOrder = { 8996 }, level = 75, group = "StrikeSkillsAdditionalTarget", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "attack" }, }, + ["StrikeSkillsAdditionalTargetEldritchImplicit6"] = { type = "Exarch", affix = "", "Non-Vaal Strike Skills target 2 additional nearby Enemies", statOrder = { 8996 }, level = 75, group = "StrikeSkillsAdditionalTarget", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "attack" }, }, + ["StrikeSkillsAdditionalTargetEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Non-Vaal Strike Skills target 2 additional nearby Enemies", statOrder = { 8996 }, level = 75, group = "StrikeSkillsAdditionalTargetUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, + ["StrikeSkillsAdditionalTargetEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Non-Vaal Strike Skills target 2 additional nearby Enemies", statOrder = { 8996 }, level = 75, group = "StrikeSkillsAdditionalTargetUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, }, + ["StrikeSkillsAdditionalTargetEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Non-Vaal Strike Skills target 2 additional nearby Enemies", statOrder = { 8996 }, level = 75, group = "StrikeSkillsAdditionalTargetUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, }, + ["StrikeSkillsAdditionalTargetEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Non-Vaal Strike Skills target 2 additional nearby Enemies", statOrder = { 8996 }, level = 75, group = "StrikeSkillsAdditionalTargetUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, }, + ["StrikeSkillsAdditionalTargetEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Non-Vaal Strike Skills target 3 additional nearby Enemies", statOrder = { 8996 }, level = 75, group = "StrikeSkillsAdditionalTargetUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, }, + ["StrikeSkillsAdditionalTargetEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Non-Vaal Strike Skills target 3 additional nearby Enemies", statOrder = { 8996 }, level = 75, group = "StrikeSkillsAdditionalTargetUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, }, + ["StrikeSkillsAdditionalTargetEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Non-Vaal Strike Skills target 3 additional nearby Enemies", statOrder = { 8996 }, level = 75, group = "StrikeSkillsAdditionalTargetPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, + ["StrikeSkillsAdditionalTargetEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Non-Vaal Strike Skills target 3 additional nearby Enemies", statOrder = { 8996 }, level = 75, group = "StrikeSkillsAdditionalTargetPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, + ["StrikeSkillsAdditionalTargetEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Non-Vaal Strike Skills target 3 additional nearby Enemies", statOrder = { 8996 }, level = 75, group = "StrikeSkillsAdditionalTargetPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "attack" }, }, + ["StrikeSkillsAdditionalTargetEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Non-Vaal Strike Skills target 3 additional nearby Enemies", statOrder = { 8996 }, level = 75, group = "StrikeSkillsAdditionalTargetPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "attack" }, }, + ["StrikeSkillsAdditionalTargetEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Non-Vaal Strike Skills target 4 additional nearby Enemies", statOrder = { 8996 }, level = 75, group = "StrikeSkillsAdditionalTargetPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "attack" }, }, + ["StrikeSkillsAdditionalTargetEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Non-Vaal Strike Skills target 4 additional nearby Enemies", statOrder = { 8996 }, level = 75, group = "StrikeSkillsAdditionalTargetPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "attack" }, }, + ["RageOnHitImplicitEldritchImplicit1"] = { type = "Exarch", affix = "", "Gain 1 Rage on Hit with Attacks", statOrder = { 6765 }, level = 75, group = "RageOnHitImplicit", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["RageOnHitImplicitEldritchImplicit2"] = { type = "Exarch", affix = "", "Gain 1 Rage on Hit with Attacks", statOrder = { 6765 }, level = 75, group = "RageOnHitImplicit", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["RageOnHitImplicitEldritchImplicit3"] = { type = "Exarch", affix = "", "Gain 1 Rage on Hit with Attacks", statOrder = { 6765 }, level = 75, group = "RageOnHitImplicit", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["RageOnHitImplicitEldritchImplicit4"] = { type = "Exarch", affix = "", "Gain 1 Rage on Hit with Attacks", statOrder = { 6765 }, level = 75, group = "RageOnHitImplicit", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["RageOnHitImplicitEldritchImplicit5"] = { type = "Exarch", affix = "", "Gain 1 Rage on Hit with Attacks", statOrder = { 6765 }, level = 75, group = "RageOnHitImplicit", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["RageOnHitImplicitEldritchImplicit6"] = { type = "Exarch", affix = "", "Gain 1 Rage on Hit with Attacks", statOrder = { 6765 }, level = 75, group = "RageOnHitImplicit", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["RageOnHitImplicitEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6765 }, level = 75, group = "RageOnHitImplicitUniquePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, }, + ["RageOnHitImplicitEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6765 }, level = 75, group = "RageOnHitImplicitUniquePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, }, + ["RageOnHitImplicitEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6765 }, level = 75, group = "RageOnHitImplicitUniquePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, }, + ["RageOnHitImplicitEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6765 }, level = 75, group = "RageOnHitImplicitUniquePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, }, + ["RageOnHitImplicitEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6765 }, level = 75, group = "RageOnHitImplicitUniquePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, }, + ["RageOnHitImplicitEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6765 }, level = 75, group = "RageOnHitImplicitUniquePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, }, + ["RageOnHitImplicitEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6765 }, level = 75, group = "RageOnHitImplicitPinnaclePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, }, + ["RageOnHitImplicitEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6765 }, level = 75, group = "RageOnHitImplicitPinnaclePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, }, + ["RageOnHitImplicitEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6765 }, level = 75, group = "RageOnHitImplicitPinnaclePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, }, + ["RageOnHitImplicitEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6765 }, level = 75, group = "RageOnHitImplicitPinnaclePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, }, + ["RageOnHitImplicitEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6765 }, level = 75, group = "RageOnHitImplicitPinnaclePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, }, + ["RageOnHitImplicitEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6765 }, level = 75, group = "RageOnHitImplicitPinnaclePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, }, + ["RageOnAttackHitEldritchImplicit1"] = { type = "Exarch", affix = "", "Gain 1 Rage on Attack Hit", statOrder = { 6719 }, level = 75, group = "RageOnAttackHit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["RageOnAttackHitEldritchImplicit2"] = { type = "Exarch", affix = "", "Gain 1 Rage on Attack Hit", statOrder = { 6719 }, level = 75, group = "RageOnAttackHit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["RageOnAttackHitEldritchImplicit3"] = { type = "Exarch", affix = "", "Gain 1 Rage on Attack Hit", statOrder = { 6719 }, level = 75, group = "RageOnAttackHit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["RageOnAttackHitEldritchImplicit4"] = { type = "Exarch", affix = "", "Gain 1 Rage on Attack Hit", statOrder = { 6719 }, level = 75, group = "RageOnAttackHit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["RageOnAttackHitEldritchImplicit5"] = { type = "Exarch", affix = "", "Gain 2 Rage on Attack Hit", statOrder = { 6719 }, level = 75, group = "RageOnAttackHit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["RageOnAttackHitEldritchImplicit6"] = { type = "Exarch", affix = "", "Gain 2 Rage on Attack Hit", statOrder = { 6719 }, level = 75, group = "RageOnAttackHit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["RageOnAttackHitEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 2 Rage on Attack Hit", statOrder = { 6719 }, level = 75, group = "RageOnAttackHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["RageOnAttackHitEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 2 Rage on Attack Hit", statOrder = { 6719 }, level = 75, group = "RageOnAttackHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["RageOnAttackHitEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 2 Rage on Attack Hit", statOrder = { 6719 }, level = 75, group = "RageOnAttackHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["RageOnAttackHitEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 2 Rage on Attack Hit", statOrder = { 6719 }, level = 75, group = "RageOnAttackHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["RageOnAttackHitEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 3 Rage on Attack Hit", statOrder = { 6719 }, level = 75, group = "RageOnAttackHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["RageOnAttackHitEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 3 Rage on Attack Hit", statOrder = { 6719 }, level = 75, group = "RageOnAttackHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["RageOnAttackHitEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 3 Rage on Attack Hit", statOrder = { 6719 }, level = 75, group = "RageOnAttackHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, + ["RageOnAttackHitEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 3 Rage on Attack Hit", statOrder = { 6719 }, level = 75, group = "RageOnAttackHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, + ["RageOnAttackHitEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 3 Rage on Attack Hit", statOrder = { 6719 }, level = 75, group = "RageOnAttackHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { "attack" }, }, + ["RageOnAttackHitEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 3 Rage on Attack Hit", statOrder = { 6719 }, level = 75, group = "RageOnAttackHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { "attack" }, }, + ["RageOnAttackHitEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 4 Rage on Attack Hit", statOrder = { 6719 }, level = 75, group = "RageOnAttackHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { "attack" }, }, + ["RageOnAttackHitEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 4 Rage on Attack Hit", statOrder = { 6719 }, level = 75, group = "RageOnAttackHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { "attack" }, }, + ["ChanceToIntimidateOnHitEldritchImplicit1"] = { type = "Exarch", affix = "", "15% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5612 }, level = 75, group = "ChanceToIntimidateOnHit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["ChanceToIntimidateOnHitEldritchImplicit2"] = { type = "Exarch", affix = "", "20% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5612 }, level = 75, group = "ChanceToIntimidateOnHit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["ChanceToIntimidateOnHitEldritchImplicit3"] = { type = "Exarch", affix = "", "25% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5612 }, level = 75, group = "ChanceToIntimidateOnHit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["ChanceToIntimidateOnHitEldritchImplicit4"] = { type = "Exarch", affix = "", "30% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5612 }, level = 75, group = "ChanceToIntimidateOnHit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["ChanceToIntimidateOnHitEldritchImplicit5"] = { type = "Exarch", affix = "", "35% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5612 }, level = 75, group = "ChanceToIntimidateOnHit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["ChanceToIntimidateOnHitEldritchImplicit6"] = { type = "Exarch", affix = "", "40% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5612 }, level = 75, group = "ChanceToIntimidateOnHit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["ChanceToIntimidateOnHitEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 45% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5612 }, level = 75, group = "ChanceToIntimidateOnHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["ChanceToIntimidateOnHitEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 50% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5612 }, level = 75, group = "ChanceToIntimidateOnHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["ChanceToIntimidateOnHitEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 55% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5612 }, level = 75, group = "ChanceToIntimidateOnHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["ChanceToIntimidateOnHitEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 60% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5612 }, level = 75, group = "ChanceToIntimidateOnHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["ChanceToIntimidateOnHitEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 65% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5612 }, level = 75, group = "ChanceToIntimidateOnHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["ChanceToIntimidateOnHitEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 70% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5612 }, level = 75, group = "ChanceToIntimidateOnHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["ChanceToIntimidateOnHitEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 75% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5612 }, level = 75, group = "ChanceToIntimidateOnHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["ChanceToIntimidateOnHitEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 80% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5612 }, level = 75, group = "ChanceToIntimidateOnHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["ChanceToIntimidateOnHitEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 85% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5612 }, level = 75, group = "ChanceToIntimidateOnHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, + ["ChanceToIntimidateOnHitEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 90% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5612 }, level = 75, group = "ChanceToIntimidateOnHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, + ["ChanceToIntimidateOnHitEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 95% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5612 }, level = 75, group = "ChanceToIntimidateOnHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, + ["ChanceToIntimidateOnHitEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Intimidate Enemies for 4 seconds on Hit", statOrder = { 5612 }, level = 75, group = "ChanceToIntimidateOnHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, + ["ChanceToUnnerveOnHitEldritchImplicit1"] = { type = "Exarch", affix = "", "15% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5622 }, level = 75, group = "ChanceToUnnerveOnHit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["ChanceToUnnerveOnHitEldritchImplicit2"] = { type = "Exarch", affix = "", "20% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5622 }, level = 75, group = "ChanceToUnnerveOnHit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["ChanceToUnnerveOnHitEldritchImplicit3"] = { type = "Exarch", affix = "", "25% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5622 }, level = 75, group = "ChanceToUnnerveOnHit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["ChanceToUnnerveOnHitEldritchImplicit4"] = { type = "Exarch", affix = "", "30% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5622 }, level = 75, group = "ChanceToUnnerveOnHit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["ChanceToUnnerveOnHitEldritchImplicit5"] = { type = "Exarch", affix = "", "35% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5622 }, level = 75, group = "ChanceToUnnerveOnHit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["ChanceToUnnerveOnHitEldritchImplicit6"] = { type = "Exarch", affix = "", "40% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5622 }, level = 75, group = "ChanceToUnnerveOnHit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["ChanceToUnnerveOnHitEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 45% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5622 }, level = 75, group = "ChanceToUnnerveOnHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["ChanceToUnnerveOnHitEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 50% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5622 }, level = 75, group = "ChanceToUnnerveOnHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["ChanceToUnnerveOnHitEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 55% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5622 }, level = 75, group = "ChanceToUnnerveOnHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["ChanceToUnnerveOnHitEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 60% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5622 }, level = 75, group = "ChanceToUnnerveOnHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["ChanceToUnnerveOnHitEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 65% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5622 }, level = 75, group = "ChanceToUnnerveOnHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["ChanceToUnnerveOnHitEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 70% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5622 }, level = 75, group = "ChanceToUnnerveOnHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["ChanceToUnnerveOnHitEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 75% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5622 }, level = 75, group = "ChanceToUnnerveOnHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["ChanceToUnnerveOnHitEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 80% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5622 }, level = 75, group = "ChanceToUnnerveOnHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["ChanceToUnnerveOnHitEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 85% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5622 }, level = 75, group = "ChanceToUnnerveOnHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, + ["ChanceToUnnerveOnHitEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 90% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5622 }, level = 75, group = "ChanceToUnnerveOnHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, + ["ChanceToUnnerveOnHitEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 95% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5622 }, level = 75, group = "ChanceToUnnerveOnHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, + ["ChanceToUnnerveOnHitEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Unnerve Enemies for 4 seconds on Hit", statOrder = { 5622 }, level = 75, group = "ChanceToUnnerveOnHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, + ["ChanceToSuppressSpellsEldritchImplicit1"] = { type = "Eater", affix = "", "+5% chance to Suppress Spell Damage", statOrder = { 1056 }, level = 75, group = "ChanceToSuppressSpells", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, + ["ChanceToSuppressSpellsEldritchImplicit2"] = { type = "Eater", affix = "", "+6% chance to Suppress Spell Damage", statOrder = { 1056 }, level = 75, group = "ChanceToSuppressSpells", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, + ["ChanceToSuppressSpellsEldritchImplicit3"] = { type = "Eater", affix = "", "+7% chance to Suppress Spell Damage", statOrder = { 1056 }, level = 75, group = "ChanceToSuppressSpells", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, + ["ChanceToSuppressSpellsEldritchImplicit4"] = { type = "Eater", affix = "", "+8% chance to Suppress Spell Damage", statOrder = { 1056 }, level = 75, group = "ChanceToSuppressSpells", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, + ["ChanceToSuppressSpellsEldritchImplicit5"] = { type = "Eater", affix = "", "+9% chance to Suppress Spell Damage", statOrder = { 1056 }, level = 75, group = "ChanceToSuppressSpells", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, + ["ChanceToSuppressSpellsEldritchImplicit6"] = { type = "Eater", affix = "", "+10% chance to Suppress Spell Damage", statOrder = { 1056 }, level = 75, group = "ChanceToSuppressSpells", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, + ["ChanceToSuppressSpellsEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +7% chance to Suppress Spell Damage", statOrder = { 1056 }, level = 75, group = "ChanceToSuppressSpellsUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["ChanceToSuppressSpellsEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +8% chance to Suppress Spell Damage", statOrder = { 1056 }, level = 75, group = "ChanceToSuppressSpellsUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, }, + ["ChanceToSuppressSpellsEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +9% chance to Suppress Spell Damage", statOrder = { 1056 }, level = 75, group = "ChanceToSuppressSpellsUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, }, + ["ChanceToSuppressSpellsEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +10% chance to Suppress Spell Damage", statOrder = { 1056 }, level = 75, group = "ChanceToSuppressSpellsUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, }, + ["ChanceToSuppressSpellsEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +11% chance to Suppress Spell Damage", statOrder = { 1056 }, level = 75, group = "ChanceToSuppressSpellsUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, }, + ["ChanceToSuppressSpellsEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +12% chance to Suppress Spell Damage", statOrder = { 1056 }, level = 75, group = "ChanceToSuppressSpellsUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, }, + ["ChanceToSuppressSpellsEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +10% chance to Suppress Spell Damage", statOrder = { 1056 }, level = 75, group = "ChanceToSuppressSpellsPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["ChanceToSuppressSpellsEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +11% chance to Suppress Spell Damage", statOrder = { 1056 }, level = 75, group = "ChanceToSuppressSpellsPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["ChanceToSuppressSpellsEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +12% chance to Suppress Spell Damage", statOrder = { 1056 }, level = 75, group = "ChanceToSuppressSpellsPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { }, }, + ["ChanceToSuppressSpellsEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +13% chance to Suppress Spell Damage", statOrder = { 1056 }, level = 75, group = "ChanceToSuppressSpellsPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { }, }, + ["ChanceToSuppressSpellsEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +14% chance to Suppress Spell Damage", statOrder = { 1056 }, level = 75, group = "ChanceToSuppressSpellsPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { }, }, + ["ChanceToSuppressSpellsEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +15% chance to Suppress Spell Damage", statOrder = { 1056 }, level = 75, group = "ChanceToSuppressSpellsPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { }, }, + ["EvasionRatingHelmetBootsEldritchImplicit1"] = { type = "Eater", affix = "", "(33-35)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6371 }, level = 75, group = "EvasionRatingFromHelmetBoots", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, + ["EvasionRatingHelmetBootsEldritchImplicit2"] = { type = "Eater", affix = "", "(36-38)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6371 }, level = 75, group = "EvasionRatingFromHelmetBoots", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, + ["EvasionRatingHelmetBootsEldritchImplicit3"] = { type = "Eater", affix = "", "(39-41)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6371 }, level = 75, group = "EvasionRatingFromHelmetBoots", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, + ["EvasionRatingHelmetBootsEldritchImplicit4"] = { type = "Eater", affix = "", "(42-44)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6371 }, level = 75, group = "EvasionRatingFromHelmetBoots", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, + ["EvasionRatingHelmetBootsEldritchImplicit5"] = { type = "Eater", affix = "", "(45-47)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6371 }, level = 75, group = "EvasionRatingFromHelmetBoots", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, + ["EvasionRatingHelmetBootsEldritchImplicit6"] = { type = "Eater", affix = "", "(48-50)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6371 }, level = 75, group = "EvasionRatingFromHelmetBoots", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, + ["EvasionRatingHelmetBootsEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (42-44)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6371 }, level = 75, group = "EvasionRatingHelmetBootsUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "evasion" }, }, + ["EvasionRatingHelmetBootsEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (45-47)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6371 }, level = 75, group = "EvasionRatingHelmetBootsUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "evasion" }, }, + ["EvasionRatingHelmetBootsEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (48-50)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6371 }, level = 75, group = "EvasionRatingHelmetBootsUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "evasion" }, }, + ["EvasionRatingHelmetBootsEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (51-53)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6371 }, level = 75, group = "EvasionRatingHelmetBootsUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "evasion" }, }, + ["EvasionRatingHelmetBootsEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (54-57)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6371 }, level = 75, group = "EvasionRatingHelmetBootsUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "evasion" }, }, + ["EvasionRatingHelmetBootsEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (58-61)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6371 }, level = 75, group = "EvasionRatingHelmetBootsUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "evasion" }, }, + ["EvasionRatingHelmetBootsEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6371 }, level = 75, group = "EvasionRatingHelmetBootsPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "evasion" }, }, + ["EvasionRatingHelmetBootsEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6371 }, level = 75, group = "EvasionRatingHelmetBootsPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "evasion" }, }, + ["EvasionRatingHelmetBootsEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6371 }, level = 75, group = "EvasionRatingHelmetBootsPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "evasion" }, }, + ["EvasionRatingHelmetBootsEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6371 }, level = 75, group = "EvasionRatingHelmetBootsPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "evasion" }, }, + ["EvasionRatingHelmetBootsEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6371 }, level = 75, group = "EvasionRatingHelmetBootsPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "evasion" }, }, + ["EvasionRatingHelmetBootsEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6371 }, level = 75, group = "EvasionRatingHelmetBootsPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "evasion" }, }, + ["FireExposureEffectOnHitEldritchImplicit1"] = { type = "Eater", affix = "", "Inflict Fire Exposure on Hit, applying -11% to Fire Resistance", statOrder = { 6465 }, level = 75, group = "FireExposureEffectOnHit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["FireExposureEffectOnHitEldritchImplicit2"] = { type = "Eater", affix = "", "Inflict Fire Exposure on Hit, applying -12% to Fire Resistance", statOrder = { 6465 }, level = 75, group = "FireExposureEffectOnHit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["FireExposureEffectOnHitEldritchImplicit3"] = { type = "Eater", affix = "", "Inflict Fire Exposure on Hit, applying -13% to Fire Resistance", statOrder = { 6465 }, level = 75, group = "FireExposureEffectOnHit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["FireExposureEffectOnHitEldritchImplicit4"] = { type = "Eater", affix = "", "Inflict Fire Exposure on Hit, applying -14% to Fire Resistance", statOrder = { 6465 }, level = 75, group = "FireExposureEffectOnHit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["FireExposureEffectOnHitEldritchImplicit5"] = { type = "Eater", affix = "", "Inflict Fire Exposure on Hit, applying -15% to Fire Resistance", statOrder = { 6465 }, level = 75, group = "FireExposureEffectOnHit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["FireExposureEffectOnHitEldritchImplicit6"] = { type = "Eater", affix = "", "Inflict Fire Exposure on Hit, applying -16% to Fire Resistance", statOrder = { 6465 }, level = 75, group = "FireExposureEffectOnHit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["FireExposureEffectOnHitEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Fire Exposure on Hit, applying -14% to Fire Resistance", statOrder = { 6465 }, level = 75, group = "FireExposureEffectOnHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire" }, }, + ["FireExposureEffectOnHitEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Fire Exposure on Hit, applying -15% to Fire Resistance", statOrder = { 6465 }, level = 75, group = "FireExposureEffectOnHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire" }, }, + ["FireExposureEffectOnHitEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Fire Exposure on Hit, applying -16% to Fire Resistance", statOrder = { 6465 }, level = 75, group = "FireExposureEffectOnHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire" }, }, + ["FireExposureEffectOnHitEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Fire Exposure on Hit, applying -17% to Fire Resistance", statOrder = { 6465 }, level = 75, group = "FireExposureEffectOnHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire" }, }, + ["FireExposureEffectOnHitEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Fire Exposure on Hit, applying -18% to Fire Resistance", statOrder = { 6465 }, level = 75, group = "FireExposureEffectOnHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire" }, }, + ["FireExposureEffectOnHitEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Fire Exposure on Hit, applying -19% to Fire Resistance", statOrder = { 6465 }, level = 75, group = "FireExposureEffectOnHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire" }, }, + ["FireExposureEffectOnHitEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Fire Exposure on Hit, applying -17% to Fire Resistance", statOrder = { 6465 }, level = 75, group = "FireExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire" }, }, + ["FireExposureEffectOnHitEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Fire Exposure on Hit, applying -18% to Fire Resistance", statOrder = { 6465 }, level = 75, group = "FireExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire" }, }, + ["FireExposureEffectOnHitEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Fire Exposure on Hit, applying -19% to Fire Resistance", statOrder = { 6465 }, level = 75, group = "FireExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire" }, }, + ["FireExposureEffectOnHitEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Fire Exposure on Hit, applying -20% to Fire Resistance", statOrder = { 6465 }, level = 75, group = "FireExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire" }, }, + ["FireExposureEffectOnHitEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Fire Exposure on Hit, applying -21% to Fire Resistance", statOrder = { 6465 }, level = 75, group = "FireExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire" }, }, + ["FireExposureEffectOnHitEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Fire Exposure on Hit, applying -22% to Fire Resistance", statOrder = { 6465 }, level = 75, group = "FireExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire" }, }, + ["ColdExposureEffectOnHitEldritchImplicit1"] = { type = "Eater", affix = "", "Inflict Cold Exposure on Hit, applying -11% to Cold Resistance", statOrder = { 5720 }, level = 75, group = "ColdExposureEffectOnHit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["ColdExposureEffectOnHitEldritchImplicit2"] = { type = "Eater", affix = "", "Inflict Cold Exposure on Hit, applying -12% to Cold Resistance", statOrder = { 5720 }, level = 75, group = "ColdExposureEffectOnHit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["ColdExposureEffectOnHitEldritchImplicit3"] = { type = "Eater", affix = "", "Inflict Cold Exposure on Hit, applying -13% to Cold Resistance", statOrder = { 5720 }, level = 75, group = "ColdExposureEffectOnHit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["ColdExposureEffectOnHitEldritchImplicit4"] = { type = "Eater", affix = "", "Inflict Cold Exposure on Hit, applying -14% to Cold Resistance", statOrder = { 5720 }, level = 75, group = "ColdExposureEffectOnHit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["ColdExposureEffectOnHitEldritchImplicit5"] = { type = "Eater", affix = "", "Inflict Cold Exposure on Hit, applying -15% to Cold Resistance", statOrder = { 5720 }, level = 75, group = "ColdExposureEffectOnHit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["ColdExposureEffectOnHitEldritchImplicit6"] = { type = "Eater", affix = "", "Inflict Cold Exposure on Hit, applying -16% to Cold Resistance", statOrder = { 5720 }, level = 75, group = "ColdExposureEffectOnHit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["ColdExposureEffectOnHitEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Cold Exposure on Hit, applying -14% to Cold Resistance", statOrder = { 5720 }, level = 75, group = "ColdExposureEffectOnHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold" }, }, + ["ColdExposureEffectOnHitEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Cold Exposure on Hit, applying -15% to Cold Resistance", statOrder = { 5720 }, level = 75, group = "ColdExposureEffectOnHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold" }, }, + ["ColdExposureEffectOnHitEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Cold Exposure on Hit, applying -16% to Cold Resistance", statOrder = { 5720 }, level = 75, group = "ColdExposureEffectOnHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold" }, }, + ["ColdExposureEffectOnHitEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Cold Exposure on Hit, applying -17% to Cold Resistance", statOrder = { 5720 }, level = 75, group = "ColdExposureEffectOnHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold" }, }, + ["ColdExposureEffectOnHitEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Cold Exposure on Hit, applying -18% to Cold Resistance", statOrder = { 5720 }, level = 75, group = "ColdExposureEffectOnHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold" }, }, + ["ColdExposureEffectOnHitEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Cold Exposure on Hit, applying -19% to Cold Resistance", statOrder = { 5720 }, level = 75, group = "ColdExposureEffectOnHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold" }, }, + ["ColdExposureEffectOnHitEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Cold Exposure on Hit, applying -17% to Cold Resistance", statOrder = { 5720 }, level = 75, group = "ColdExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold" }, }, + ["ColdExposureEffectOnHitEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Cold Exposure on Hit, applying -18% to Cold Resistance", statOrder = { 5720 }, level = 75, group = "ColdExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold" }, }, + ["ColdExposureEffectOnHitEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Cold Exposure on Hit, applying -19% to Cold Resistance", statOrder = { 5720 }, level = 75, group = "ColdExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold" }, }, + ["ColdExposureEffectOnHitEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Cold Exposure on Hit, applying -20% to Cold Resistance", statOrder = { 5720 }, level = 75, group = "ColdExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold" }, }, + ["ColdExposureEffectOnHitEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Cold Exposure on Hit, applying -21% to Cold Resistance", statOrder = { 5720 }, level = 75, group = "ColdExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold" }, }, + ["ColdExposureEffectOnHitEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Cold Exposure on Hit, applying -22% to Cold Resistance", statOrder = { 5720 }, level = 75, group = "ColdExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold" }, }, + ["LightningExposureEffectOnHitEldritchImplicit1"] = { type = "Eater", affix = "", "Inflict Lightning Exposure on Hit, applying -11% to Lightning Resistance", statOrder = { 7318 }, level = 75, group = "LightningExposureEffectOnHit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["LightningExposureEffectOnHitEldritchImplicit2"] = { type = "Eater", affix = "", "Inflict Lightning Exposure on Hit, applying -12% to Lightning Resistance", statOrder = { 7318 }, level = 75, group = "LightningExposureEffectOnHit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["LightningExposureEffectOnHitEldritchImplicit3"] = { type = "Eater", affix = "", "Inflict Lightning Exposure on Hit, applying -13% to Lightning Resistance", statOrder = { 7318 }, level = 75, group = "LightningExposureEffectOnHit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["LightningExposureEffectOnHitEldritchImplicit4"] = { type = "Eater", affix = "", "Inflict Lightning Exposure on Hit, applying -14% to Lightning Resistance", statOrder = { 7318 }, level = 75, group = "LightningExposureEffectOnHit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["LightningExposureEffectOnHitEldritchImplicit5"] = { type = "Eater", affix = "", "Inflict Lightning Exposure on Hit, applying -15% to Lightning Resistance", statOrder = { 7318 }, level = 75, group = "LightningExposureEffectOnHit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["LightningExposureEffectOnHitEldritchImplicit6"] = { type = "Eater", affix = "", "Inflict Lightning Exposure on Hit, applying -16% to Lightning Resistance", statOrder = { 7318 }, level = 75, group = "LightningExposureEffectOnHit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["LightningExposureEffectOnHitEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Lightning Exposure on Hit, applying -14% to Lightning Resistance", statOrder = { 7318 }, level = 75, group = "LightningExposureEffectOnHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning" }, }, + ["LightningExposureEffectOnHitEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Lightning Exposure on Hit, applying -15% to Lightning Resistance", statOrder = { 7318 }, level = 75, group = "LightningExposureEffectOnHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning" }, }, + ["LightningExposureEffectOnHitEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Lightning Exposure on Hit, applying -16% to Lightning Resistance", statOrder = { 7318 }, level = 75, group = "LightningExposureEffectOnHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning" }, }, + ["LightningExposureEffectOnHitEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Lightning Exposure on Hit, applying -17% to Lightning Resistance", statOrder = { 7318 }, level = 75, group = "LightningExposureEffectOnHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning" }, }, + ["LightningExposureEffectOnHitEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Lightning Exposure on Hit, applying -18% to Lightning Resistance", statOrder = { 7318 }, level = 75, group = "LightningExposureEffectOnHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning" }, }, + ["LightningExposureEffectOnHitEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Lightning Exposure on Hit, applying -19% to Lightning Resistance", statOrder = { 7318 }, level = 75, group = "LightningExposureEffectOnHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning" }, }, + ["LightningExposureEffectOnHitEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Lightning Exposure on Hit, applying -17% to Lightning Resistance", statOrder = { 7318 }, level = 75, group = "LightningExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning" }, }, + ["LightningExposureEffectOnHitEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Lightning Exposure on Hit, applying -18% to Lightning Resistance", statOrder = { 7318 }, level = 75, group = "LightningExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning" }, }, + ["LightningExposureEffectOnHitEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Lightning Exposure on Hit, applying -19% to Lightning Resistance", statOrder = { 7318 }, level = 75, group = "LightningExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning" }, }, + ["LightningExposureEffectOnHitEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Lightning Exposure on Hit, applying -20% to Lightning Resistance", statOrder = { 7318 }, level = 75, group = "LightningExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning" }, }, + ["LightningExposureEffectOnHitEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Lightning Exposure on Hit, applying -21% to Lightning Resistance", statOrder = { 7318 }, level = 75, group = "LightningExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning" }, }, + ["LightningExposureEffectOnHitEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Lightning Exposure on Hit, applying -22% to Lightning Resistance", statOrder = { 7318 }, level = 75, group = "LightningExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning" }, }, + ["ArmourPenetrationEldritchImplicit1"] = { type = "Eater", affix = "", "Hits have (30-34)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7037 }, level = 75, group = "ChanceToIgnoreEnemyArmour", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical" }, }, + ["ArmourPenetrationEldritchImplicit2"] = { type = "Eater", affix = "", "Hits have (35-38)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7037 }, level = 75, group = "ChanceToIgnoreEnemyArmour", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical" }, }, + ["ArmourPenetrationEldritchImplicit3"] = { type = "Eater", affix = "", "Hits have (39-42)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7037 }, level = 75, group = "ChanceToIgnoreEnemyArmour", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical" }, }, + ["ArmourPenetrationEldritchImplicit4"] = { type = "Eater", affix = "", "Hits have (43-45)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7037 }, level = 75, group = "ChanceToIgnoreEnemyArmour", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical" }, }, + ["ArmourPenetrationEldritchImplicit5"] = { type = "Eater", affix = "", "Hits have (46-48)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7037 }, level = 75, group = "ChanceToIgnoreEnemyArmour", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical" }, }, + ["ArmourPenetrationEldritchImplicit6"] = { type = "Eater", affix = "", "Hits have (49-50)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7037 }, level = 75, group = "ChanceToIgnoreEnemyArmour", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical" }, }, + ["ArmourPenetrationEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hits have (43-45)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7037 }, level = 75, group = "ChanceToIgnoreEnemyArmourUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical" }, }, + ["ArmourPenetrationEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hits have (46-48)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7037 }, level = 75, group = "ChanceToIgnoreEnemyArmourUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "physical" }, }, + ["ArmourPenetrationEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hits have (49-52)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7037 }, level = 75, group = "ChanceToIgnoreEnemyArmourUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "physical" }, }, + ["ArmourPenetrationEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hits have (53-56)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7037 }, level = 75, group = "ChanceToIgnoreEnemyArmourUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "physical" }, }, + ["ArmourPenetrationEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hits have (57-60)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7037 }, level = 75, group = "ChanceToIgnoreEnemyArmourUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "physical" }, }, + ["ArmourPenetrationEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hits have (61-63)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7037 }, level = 75, group = "ChanceToIgnoreEnemyArmourUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "physical" }, }, + ["ArmourPenetrationEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hits have (53-56)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7037 }, level = 75, group = "ChanceToIgnoreEnemyArmourPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical" }, }, + ["ArmourPenetrationEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hits have (57-60)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7037 }, level = 75, group = "ChanceToIgnoreEnemyArmourPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical" }, }, + ["ArmourPenetrationEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hits have (61-63)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7037 }, level = 75, group = "ChanceToIgnoreEnemyArmourPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "physical" }, }, + ["ArmourPenetrationEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hits have (64-68)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7037 }, level = 75, group = "ChanceToIgnoreEnemyArmourPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "physical" }, }, + ["ArmourPenetrationEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hits have (69-73)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7037 }, level = 75, group = "ChanceToIgnoreEnemyArmourPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "physical" }, }, + ["ArmourPenetrationEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hits have (74-78)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7037 }, level = 75, group = "ChanceToIgnoreEnemyArmourPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "physical" }, }, + ["WitherExpireSpeedEldritchImplicit1"] = { type = "Eater", affix = "", "Withered you Inflict expires (10-12)% slower", statOrder = { 10403 }, level = 75, group = "WitherExpireSpeed", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["WitherExpireSpeedEldritchImplicit2"] = { type = "Eater", affix = "", "Withered you Inflict expires (13-15)% slower", statOrder = { 10403 }, level = 75, group = "WitherExpireSpeed", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["WitherExpireSpeedEldritchImplicit3"] = { type = "Eater", affix = "", "Withered you Inflict expires (16-18)% slower", statOrder = { 10403 }, level = 75, group = "WitherExpireSpeed", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["WitherExpireSpeedEldritchImplicit4"] = { type = "Eater", affix = "", "Withered you Inflict expires (19-20)% slower", statOrder = { 10403 }, level = 75, group = "WitherExpireSpeed", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["WitherExpireSpeedEldritchImplicit5"] = { type = "Eater", affix = "", "Withered you Inflict expires (21-22)% slower", statOrder = { 10403 }, level = 75, group = "WitherExpireSpeed", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["WitherExpireSpeedEldritchImplicit6"] = { type = "Eater", affix = "", "Withered you Inflict expires (23-24)% slower", statOrder = { 10403 }, level = 75, group = "WitherExpireSpeed", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["WitherExpireSpeedEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Withered you Inflict expires (19-21)% slower", statOrder = { 10403 }, level = 75, group = "WitherExpireSpeedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos" }, }, + ["WitherExpireSpeedEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Withered you Inflict expires (22-24)% slower", statOrder = { 10403 }, level = 75, group = "WitherExpireSpeedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos" }, }, + ["WitherExpireSpeedEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Withered you Inflict expires (25-27)% slower", statOrder = { 10403 }, level = 75, group = "WitherExpireSpeedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos" }, }, + ["WitherExpireSpeedEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Withered you Inflict expires (28-29)% slower", statOrder = { 10403 }, level = 75, group = "WitherExpireSpeedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos" }, }, + ["WitherExpireSpeedEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Withered you Inflict expires (30-31)% slower", statOrder = { 10403 }, level = 75, group = "WitherExpireSpeedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos" }, }, + ["WitherExpireSpeedEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Withered you Inflict expires (32-33)% slower", statOrder = { 10403 }, level = 75, group = "WitherExpireSpeedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos" }, }, + ["WitherExpireSpeedEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Withered you Inflict expires (28-30)% slower", statOrder = { 10403 }, level = 75, group = "WitherExpireSpeedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos" }, }, + ["WitherExpireSpeedEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Withered you Inflict expires (31-33)% slower", statOrder = { 10403 }, level = 75, group = "WitherExpireSpeedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos" }, }, + ["WitherExpireSpeedEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Withered you Inflict expires (34-36)% slower", statOrder = { 10403 }, level = 75, group = "WitherExpireSpeedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "chaos" }, }, + ["WitherExpireSpeedEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Withered you Inflict expires (37-39)% slower", statOrder = { 10403 }, level = 75, group = "WitherExpireSpeedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "chaos" }, }, + ["WitherExpireSpeedEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Withered you Inflict expires (40-42)% slower", statOrder = { 10403 }, level = 75, group = "WitherExpireSpeedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "chaos" }, }, + ["WitherExpireSpeedEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Withered you Inflict expires (43-45)% slower", statOrder = { 10403 }, level = 75, group = "WitherExpireSpeedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "chaos" }, }, + ["ConvertPhysicalToFireEldritchImplicit1"] = { type = "Eater", affix = "", "10% of Physical Damage Converted to Fire Damage", statOrder = { 1864 }, level = 75, group = "ConvertPhysicalToFireImplicit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["ConvertPhysicalToFireEldritchImplicit2"] = { type = "Eater", affix = "", "15% of Physical Damage Converted to Fire Damage", statOrder = { 1864 }, level = 75, group = "ConvertPhysicalToFireImplicit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["ConvertPhysicalToFireEldritchImplicit3"] = { type = "Eater", affix = "", "20% of Physical Damage Converted to Fire Damage", statOrder = { 1864 }, level = 75, group = "ConvertPhysicalToFireImplicit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["ConvertPhysicalToFireEldritchImplicit4"] = { type = "Eater", affix = "", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1864 }, level = 75, group = "ConvertPhysicalToFireImplicit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["ConvertPhysicalToFireEldritchImplicit5"] = { type = "Eater", affix = "", "30% of Physical Damage Converted to Fire Damage", statOrder = { 1864 }, level = 75, group = "ConvertPhysicalToFireImplicit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["ConvertPhysicalToFireEldritchImplicit6"] = { type = "Eater", affix = "", "35% of Physical Damage Converted to Fire Damage", statOrder = { 1864 }, level = 75, group = "ConvertPhysicalToFireImplicit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["ConvertPhysicalToFireEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% of Physical Damage Converted to Fire Damage", statOrder = { 1864 }, level = 75, group = "ConvertPhysicalToFireUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["ConvertPhysicalToFireEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% of Physical Damage Converted to Fire Damage", statOrder = { 1864 }, level = 75, group = "ConvertPhysicalToFireUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["ConvertPhysicalToFireEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% of Physical Damage Converted to Fire Damage", statOrder = { 1864 }, level = 75, group = "ConvertPhysicalToFireUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["ConvertPhysicalToFireEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% of Physical Damage Converted to Fire Damage", statOrder = { 1864 }, level = 75, group = "ConvertPhysicalToFireUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["ConvertPhysicalToFireEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 45% of Physical Damage Converted to Fire Damage", statOrder = { 1864 }, level = 75, group = "ConvertPhysicalToFireUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["ConvertPhysicalToFireEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 50% of Physical Damage Converted to Fire Damage", statOrder = { 1864 }, level = 75, group = "ConvertPhysicalToFireUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["ConvertPhysicalToFireEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% of Physical Damage Converted to Fire Damage", statOrder = { 1864 }, level = 75, group = "ConvertPhysicalToFirePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["ConvertPhysicalToFireEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% of Physical Damage Converted to Fire Damage", statOrder = { 1864 }, level = 75, group = "ConvertPhysicalToFirePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["ConvertPhysicalToFireEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% of Physical Damage Converted to Fire Damage", statOrder = { 1864 }, level = 75, group = "ConvertPhysicalToFirePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, }, + ["ConvertPhysicalToFireEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 55% of Physical Damage Converted to Fire Damage", statOrder = { 1864 }, level = 75, group = "ConvertPhysicalToFirePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, }, + ["ConvertPhysicalToFireEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 60% of Physical Damage Converted to Fire Damage", statOrder = { 1864 }, level = 75, group = "ConvertPhysicalToFirePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, }, + ["ConvertPhysicalToFireEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 65% of Physical Damage Converted to Fire Damage", statOrder = { 1864 }, level = 75, group = "ConvertPhysicalToFirePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, }, + ["ConvertPhysicalToColdEldritchImplicit1"] = { type = "Eater", affix = "", "10% of Physical Damage Converted to Cold Damage", statOrder = { 1866 }, level = 75, group = "ConvertPhysicalToColdImplicit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, + ["ConvertPhysicalToColdEldritchImplicit2"] = { type = "Eater", affix = "", "15% of Physical Damage Converted to Cold Damage", statOrder = { 1866 }, level = 75, group = "ConvertPhysicalToColdImplicit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, + ["ConvertPhysicalToColdEldritchImplicit3"] = { type = "Eater", affix = "", "20% of Physical Damage Converted to Cold Damage", statOrder = { 1866 }, level = 75, group = "ConvertPhysicalToColdImplicit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, + ["ConvertPhysicalToColdEldritchImplicit4"] = { type = "Eater", affix = "", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1866 }, level = 75, group = "ConvertPhysicalToColdImplicit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, + ["ConvertPhysicalToColdEldritchImplicit5"] = { type = "Eater", affix = "", "30% of Physical Damage Converted to Cold Damage", statOrder = { 1866 }, level = 75, group = "ConvertPhysicalToColdImplicit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, + ["ConvertPhysicalToColdEldritchImplicit6"] = { type = "Eater", affix = "", "35% of Physical Damage Converted to Cold Damage", statOrder = { 1866 }, level = 75, group = "ConvertPhysicalToColdImplicit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, + ["ConvertPhysicalToColdEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% of Physical Damage Converted to Cold Damage", statOrder = { 1866 }, level = 75, group = "ConvertPhysicalToColdUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["ConvertPhysicalToColdEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% of Physical Damage Converted to Cold Damage", statOrder = { 1866 }, level = 75, group = "ConvertPhysicalToColdUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["ConvertPhysicalToColdEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% of Physical Damage Converted to Cold Damage", statOrder = { 1866 }, level = 75, group = "ConvertPhysicalToColdUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["ConvertPhysicalToColdEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% of Physical Damage Converted to Cold Damage", statOrder = { 1866 }, level = 75, group = "ConvertPhysicalToColdUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["ConvertPhysicalToColdEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 45% of Physical Damage Converted to Cold Damage", statOrder = { 1866 }, level = 75, group = "ConvertPhysicalToColdUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["ConvertPhysicalToColdEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 50% of Physical Damage Converted to Cold Damage", statOrder = { 1866 }, level = 75, group = "ConvertPhysicalToColdUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["ConvertPhysicalToColdEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% of Physical Damage Converted to Cold Damage", statOrder = { 1866 }, level = 75, group = "ConvertPhysicalToColdPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["ConvertPhysicalToColdEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% of Physical Damage Converted to Cold Damage", statOrder = { 1866 }, level = 75, group = "ConvertPhysicalToColdPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["ConvertPhysicalToColdEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% of Physical Damage Converted to Cold Damage", statOrder = { 1866 }, level = 75, group = "ConvertPhysicalToColdPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["ConvertPhysicalToColdEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 55% of Physical Damage Converted to Cold Damage", statOrder = { 1866 }, level = 75, group = "ConvertPhysicalToColdPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["ConvertPhysicalToColdEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 60% of Physical Damage Converted to Cold Damage", statOrder = { 1866 }, level = 75, group = "ConvertPhysicalToColdPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["ConvertPhysicalToColdEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 65% of Physical Damage Converted to Cold Damage", statOrder = { 1866 }, level = 75, group = "ConvertPhysicalToColdPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["ConvertPhysicalToLightningEldritchImplicit1"] = { type = "Eater", affix = "", "10% of Physical Damage Converted to Lightning Damage", statOrder = { 1868 }, level = 75, group = "ConvertPhysicalToLightningImplicit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, + ["ConvertPhysicalToLightningEldritchImplicit2"] = { type = "Eater", affix = "", "15% of Physical Damage Converted to Lightning Damage", statOrder = { 1868 }, level = 75, group = "ConvertPhysicalToLightningImplicit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, + ["ConvertPhysicalToLightningEldritchImplicit3"] = { type = "Eater", affix = "", "20% of Physical Damage Converted to Lightning Damage", statOrder = { 1868 }, level = 75, group = "ConvertPhysicalToLightningImplicit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, + ["ConvertPhysicalToLightningEldritchImplicit4"] = { type = "Eater", affix = "", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1868 }, level = 75, group = "ConvertPhysicalToLightningImplicit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, + ["ConvertPhysicalToLightningEldritchImplicit5"] = { type = "Eater", affix = "", "30% of Physical Damage Converted to Lightning Damage", statOrder = { 1868 }, level = 75, group = "ConvertPhysicalToLightningImplicit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, + ["ConvertPhysicalToLightningEldritchImplicit6"] = { type = "Eater", affix = "", "35% of Physical Damage Converted to Lightning Damage", statOrder = { 1868 }, level = 75, group = "ConvertPhysicalToLightningImplicit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, + ["ConvertPhysicalToLightningEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% of Physical Damage Converted to Lightning Damage", statOrder = { 1868 }, level = 75, group = "ConvertPhysicalToLightningUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, + ["ConvertPhysicalToLightningEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% of Physical Damage Converted to Lightning Damage", statOrder = { 1868 }, level = 75, group = "ConvertPhysicalToLightningUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, + ["ConvertPhysicalToLightningEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% of Physical Damage Converted to Lightning Damage", statOrder = { 1868 }, level = 75, group = "ConvertPhysicalToLightningUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, + ["ConvertPhysicalToLightningEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% of Physical Damage Converted to Lightning Damage", statOrder = { 1868 }, level = 75, group = "ConvertPhysicalToLightningUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, + ["ConvertPhysicalToLightningEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 45% of Physical Damage Converted to Lightning Damage", statOrder = { 1868 }, level = 75, group = "ConvertPhysicalToLightningUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, + ["ConvertPhysicalToLightningEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 50% of Physical Damage Converted to Lightning Damage", statOrder = { 1868 }, level = 75, group = "ConvertPhysicalToLightningUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, + ["ConvertPhysicalToLightningEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% of Physical Damage Converted to Lightning Damage", statOrder = { 1868 }, level = 75, group = "ConvertPhysicalToLightningPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, + ["ConvertPhysicalToLightningEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% of Physical Damage Converted to Lightning Damage", statOrder = { 1868 }, level = 75, group = "ConvertPhysicalToLightningPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, + ["ConvertPhysicalToLightningEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% of Physical Damage Converted to Lightning Damage", statOrder = { 1868 }, level = 75, group = "ConvertPhysicalToLightningPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, + ["ConvertPhysicalToLightningEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 55% of Physical Damage Converted to Lightning Damage", statOrder = { 1868 }, level = 75, group = "ConvertPhysicalToLightningPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, + ["ConvertPhysicalToLightningEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 60% of Physical Damage Converted to Lightning Damage", statOrder = { 1868 }, level = 75, group = "ConvertPhysicalToLightningPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, + ["ConvertPhysicalToLightningEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 65% of Physical Damage Converted to Lightning Damage", statOrder = { 1868 }, level = 75, group = "ConvertPhysicalToLightningPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, + ["ConvertPhysicalToChaosEldritchImplicit1"] = { type = "Eater", affix = "", "10% of Physical Damage Converted to Chaos Damage", statOrder = { 1871 }, level = 75, group = "PhysicalDamageConvertToChaosImplicit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, + ["ConvertPhysicalToChaosEldritchImplicit2"] = { type = "Eater", affix = "", "15% of Physical Damage Converted to Chaos Damage", statOrder = { 1871 }, level = 75, group = "PhysicalDamageConvertToChaosImplicit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, + ["ConvertPhysicalToChaosEldritchImplicit3"] = { type = "Eater", affix = "", "20% of Physical Damage Converted to Chaos Damage", statOrder = { 1871 }, level = 75, group = "PhysicalDamageConvertToChaosImplicit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, + ["ConvertPhysicalToChaosEldritchImplicit4"] = { type = "Eater", affix = "", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1871 }, level = 75, group = "PhysicalDamageConvertToChaosImplicit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, + ["ConvertPhysicalToChaosEldritchImplicit5"] = { type = "Eater", affix = "", "30% of Physical Damage Converted to Chaos Damage", statOrder = { 1871 }, level = 75, group = "PhysicalDamageConvertToChaosImplicit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, + ["ConvertPhysicalToChaosEldritchImplicit6"] = { type = "Eater", affix = "", "35% of Physical Damage Converted to Chaos Damage", statOrder = { 1871 }, level = 75, group = "PhysicalDamageConvertToChaosImplicit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, + ["ConvertPhysicalToChaosEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% of Physical Damage Converted to Chaos Damage", statOrder = { 1871 }, level = 75, group = "ConvertPhysicalToChaosUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, + ["ConvertPhysicalToChaosEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% of Physical Damage Converted to Chaos Damage", statOrder = { 1871 }, level = 75, group = "ConvertPhysicalToChaosUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, + ["ConvertPhysicalToChaosEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% of Physical Damage Converted to Chaos Damage", statOrder = { 1871 }, level = 75, group = "ConvertPhysicalToChaosUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, + ["ConvertPhysicalToChaosEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% of Physical Damage Converted to Chaos Damage", statOrder = { 1871 }, level = 75, group = "ConvertPhysicalToChaosUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, + ["ConvertPhysicalToChaosEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 45% of Physical Damage Converted to Chaos Damage", statOrder = { 1871 }, level = 75, group = "ConvertPhysicalToChaosUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, + ["ConvertPhysicalToChaosEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 50% of Physical Damage Converted to Chaos Damage", statOrder = { 1871 }, level = 75, group = "ConvertPhysicalToChaosUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, + ["ConvertPhysicalToChaosEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% of Physical Damage Converted to Chaos Damage", statOrder = { 1871 }, level = 75, group = "ConvertPhysicalToChaosPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, + ["ConvertPhysicalToChaosEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% of Physical Damage Converted to Chaos Damage", statOrder = { 1871 }, level = 75, group = "ConvertPhysicalToChaosPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, + ["ConvertPhysicalToChaosEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% of Physical Damage Converted to Chaos Damage", statOrder = { 1871 }, level = 75, group = "ConvertPhysicalToChaosPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, + ["ConvertPhysicalToChaosEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 55% of Physical Damage Converted to Chaos Damage", statOrder = { 1871 }, level = 75, group = "ConvertPhysicalToChaosPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, + ["ConvertPhysicalToChaosEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 60% of Physical Damage Converted to Chaos Damage", statOrder = { 1871 }, level = 75, group = "ConvertPhysicalToChaosPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, + ["ConvertPhysicalToChaosEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 65% of Physical Damage Converted to Chaos Damage", statOrder = { 1871 }, level = 75, group = "ConvertPhysicalToChaosPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, + ["FireDamageLifeLeechEldritchImplicit1"] = { type = "Eater", affix = "", "0.2% of Fire Damage Leeched as Life", statOrder = { 1583 }, level = 75, group = "FireDamageLifeLeechHundredThousand", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["FireDamageLifeLeechEldritchImplicit2"] = { type = "Eater", affix = "", "0.3% of Fire Damage Leeched as Life", statOrder = { 1583 }, level = 75, group = "FireDamageLifeLeechHundredThousand", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["FireDamageLifeLeechEldritchImplicit3"] = { type = "Eater", affix = "", "0.4% of Fire Damage Leeched as Life", statOrder = { 1583 }, level = 75, group = "FireDamageLifeLeechHundredThousand", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["FireDamageLifeLeechEldritchImplicit4"] = { type = "Eater", affix = "", "0.5% of Fire Damage Leeched as Life", statOrder = { 1583 }, level = 75, group = "FireDamageLifeLeechHundredThousand", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["FireDamageLifeLeechEldritchImplicit5"] = { type = "Eater", affix = "", "0.6% of Fire Damage Leeched as Life", statOrder = { 1583 }, level = 75, group = "FireDamageLifeLeechHundredThousand", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["FireDamageLifeLeechEldritchImplicit6"] = { type = "Eater", affix = "", "0.7% of Fire Damage Leeched as Life", statOrder = { 1583 }, level = 75, group = "FireDamageLifeLeechHundredThousand", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["FireDamageLifeLeechEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.4% of Fire Damage Leeched as Life", statOrder = { 1583 }, level = 75, group = "FireDamageLifeLeechUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["FireDamageLifeLeechEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.5% of Fire Damage Leeched as Life", statOrder = { 1583 }, level = 75, group = "FireDamageLifeLeechUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["FireDamageLifeLeechEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.6% of Fire Damage Leeched as Life", statOrder = { 1583 }, level = 75, group = "FireDamageLifeLeechUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["FireDamageLifeLeechEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.7% of Fire Damage Leeched as Life", statOrder = { 1583 }, level = 75, group = "FireDamageLifeLeechUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["FireDamageLifeLeechEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.8% of Fire Damage Leeched as Life", statOrder = { 1583 }, level = 75, group = "FireDamageLifeLeechUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["FireDamageLifeLeechEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.9% of Fire Damage Leeched as Life", statOrder = { 1583 }, level = 75, group = "FireDamageLifeLeechUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["FireDamageLifeLeechEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.6% of Fire Damage Leeched as Life", statOrder = { 1583 }, level = 75, group = "FireDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["FireDamageLifeLeechEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.7% of Fire Damage Leeched as Life", statOrder = { 1583 }, level = 75, group = "FireDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["FireDamageLifeLeechEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.8% of Fire Damage Leeched as Life", statOrder = { 1583 }, level = 75, group = "FireDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, + ["FireDamageLifeLeechEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.9% of Fire Damage Leeched as Life", statOrder = { 1583 }, level = 75, group = "FireDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, + ["FireDamageLifeLeechEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% of Fire Damage Leeched as Life", statOrder = { 1583 }, level = 75, group = "FireDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, + ["FireDamageLifeLeechEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1.1% of Fire Damage Leeched as Life", statOrder = { 1583 }, level = 75, group = "FireDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, + ["ColdDamageLifeLeechEldritchImplicit1"] = { type = "Eater", affix = "", "0.2% of Cold Damage Leeched as Life", statOrder = { 1588 }, level = 75, group = "ColdDamageLifeLeechHundredThousand", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["ColdDamageLifeLeechEldritchImplicit2"] = { type = "Eater", affix = "", "0.3% of Cold Damage Leeched as Life", statOrder = { 1588 }, level = 75, group = "ColdDamageLifeLeechHundredThousand", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["ColdDamageLifeLeechEldritchImplicit3"] = { type = "Eater", affix = "", "0.4% of Cold Damage Leeched as Life", statOrder = { 1588 }, level = 75, group = "ColdDamageLifeLeechHundredThousand", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["ColdDamageLifeLeechEldritchImplicit4"] = { type = "Eater", affix = "", "0.5% of Cold Damage Leeched as Life", statOrder = { 1588 }, level = 75, group = "ColdDamageLifeLeechHundredThousand", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["ColdDamageLifeLeechEldritchImplicit5"] = { type = "Eater", affix = "", "0.6% of Cold Damage Leeched as Life", statOrder = { 1588 }, level = 75, group = "ColdDamageLifeLeechHundredThousand", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["ColdDamageLifeLeechEldritchImplicit6"] = { type = "Eater", affix = "", "0.7% of Cold Damage Leeched as Life", statOrder = { 1588 }, level = 75, group = "ColdDamageLifeLeechHundredThousand", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["ColdDamageLifeLeechEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.4% of Cold Damage Leeched as Life", statOrder = { 1588 }, level = 75, group = "ColdDamageLifeLeechUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["ColdDamageLifeLeechEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.5% of Cold Damage Leeched as Life", statOrder = { 1588 }, level = 75, group = "ColdDamageLifeLeechUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["ColdDamageLifeLeechEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.6% of Cold Damage Leeched as Life", statOrder = { 1588 }, level = 75, group = "ColdDamageLifeLeechUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["ColdDamageLifeLeechEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.7% of Cold Damage Leeched as Life", statOrder = { 1588 }, level = 75, group = "ColdDamageLifeLeechUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["ColdDamageLifeLeechEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.8% of Cold Damage Leeched as Life", statOrder = { 1588 }, level = 75, group = "ColdDamageLifeLeechUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["ColdDamageLifeLeechEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.9% of Cold Damage Leeched as Life", statOrder = { 1588 }, level = 75, group = "ColdDamageLifeLeechUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["ColdDamageLifeLeechEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.6% of Cold Damage Leeched as Life", statOrder = { 1588 }, level = 75, group = "ColdDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["ColdDamageLifeLeechEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.7% of Cold Damage Leeched as Life", statOrder = { 1588 }, level = 75, group = "ColdDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["ColdDamageLifeLeechEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.8% of Cold Damage Leeched as Life", statOrder = { 1588 }, level = 75, group = "ColdDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, + ["ColdDamageLifeLeechEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.9% of Cold Damage Leeched as Life", statOrder = { 1588 }, level = 75, group = "ColdDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, + ["ColdDamageLifeLeechEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% of Cold Damage Leeched as Life", statOrder = { 1588 }, level = 75, group = "ColdDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, + ["ColdDamageLifeLeechEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1.1% of Cold Damage Leeched as Life", statOrder = { 1588 }, level = 75, group = "ColdDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, + ["LightningDamageLifeLeechEldritchImplicit1"] = { type = "Eater", affix = "", "0.2% of Lightning Damage Leeched as Life", statOrder = { 1592 }, level = 75, group = "LightningDamageLifeLeechHundredThousand", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["LightningDamageLifeLeechEldritchImplicit2"] = { type = "Eater", affix = "", "0.3% of Lightning Damage Leeched as Life", statOrder = { 1592 }, level = 75, group = "LightningDamageLifeLeechHundredThousand", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["LightningDamageLifeLeechEldritchImplicit3"] = { type = "Eater", affix = "", "0.4% of Lightning Damage Leeched as Life", statOrder = { 1592 }, level = 75, group = "LightningDamageLifeLeechHundredThousand", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["LightningDamageLifeLeechEldritchImplicit4"] = { type = "Eater", affix = "", "0.5% of Lightning Damage Leeched as Life", statOrder = { 1592 }, level = 75, group = "LightningDamageLifeLeechHundredThousand", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["LightningDamageLifeLeechEldritchImplicit5"] = { type = "Eater", affix = "", "0.6% of Lightning Damage Leeched as Life", statOrder = { 1592 }, level = 75, group = "LightningDamageLifeLeechHundredThousand", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["LightningDamageLifeLeechEldritchImplicit6"] = { type = "Eater", affix = "", "0.7% of Lightning Damage Leeched as Life", statOrder = { 1592 }, level = 75, group = "LightningDamageLifeLeechHundredThousand", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["LightningDamageLifeLeechEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.4% of Lightning Damage Leeched as Life", statOrder = { 1592 }, level = 75, group = "LightningDamageLifeLeechUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["LightningDamageLifeLeechEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.5% of Lightning Damage Leeched as Life", statOrder = { 1592 }, level = 75, group = "LightningDamageLifeLeechUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["LightningDamageLifeLeechEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.6% of Lightning Damage Leeched as Life", statOrder = { 1592 }, level = 75, group = "LightningDamageLifeLeechUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["LightningDamageLifeLeechEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.7% of Lightning Damage Leeched as Life", statOrder = { 1592 }, level = 75, group = "LightningDamageLifeLeechUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["LightningDamageLifeLeechEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.8% of Lightning Damage Leeched as Life", statOrder = { 1592 }, level = 75, group = "LightningDamageLifeLeechUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["LightningDamageLifeLeechEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.9% of Lightning Damage Leeched as Life", statOrder = { 1592 }, level = 75, group = "LightningDamageLifeLeechUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["LightningDamageLifeLeechEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.6% of Lightning Damage Leeched as Life", statOrder = { 1592 }, level = 75, group = "LightningDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["LightningDamageLifeLeechEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.7% of Lightning Damage Leeched as Life", statOrder = { 1592 }, level = 75, group = "LightningDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["LightningDamageLifeLeechEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.8% of Lightning Damage Leeched as Life", statOrder = { 1592 }, level = 75, group = "LightningDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, + ["LightningDamageLifeLeechEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.9% of Lightning Damage Leeched as Life", statOrder = { 1592 }, level = 75, group = "LightningDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, + ["LightningDamageLifeLeechEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% of Lightning Damage Leeched as Life", statOrder = { 1592 }, level = 75, group = "LightningDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, + ["LightningDamageLifeLeechEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1.1% of Lightning Damage Leeched as Life", statOrder = { 1592 }, level = 75, group = "LightningDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, + ["PhysicalDamageLifeLeechEldritchImplicit1"] = { type = "Eater", affix = "", "0.2% of Physical Damage Leeched as Life", statOrder = { 1579 }, level = 75, group = "PhysicalDamageLifeLeechHundredThousand", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["PhysicalDamageLifeLeechEldritchImplicit2"] = { type = "Eater", affix = "", "0.3% of Physical Damage Leeched as Life", statOrder = { 1579 }, level = 75, group = "PhysicalDamageLifeLeechHundredThousand", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["PhysicalDamageLifeLeechEldritchImplicit3"] = { type = "Eater", affix = "", "0.4% of Physical Damage Leeched as Life", statOrder = { 1579 }, level = 75, group = "PhysicalDamageLifeLeechHundredThousand", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["PhysicalDamageLifeLeechEldritchImplicit4"] = { type = "Eater", affix = "", "0.5% of Physical Damage Leeched as Life", statOrder = { 1579 }, level = 75, group = "PhysicalDamageLifeLeechHundredThousand", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["PhysicalDamageLifeLeechEldritchImplicit5"] = { type = "Eater", affix = "", "0.6% of Physical Damage Leeched as Life", statOrder = { 1579 }, level = 75, group = "PhysicalDamageLifeLeechHundredThousand", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["PhysicalDamageLifeLeechEldritchImplicit6"] = { type = "Eater", affix = "", "0.7% of Physical Damage Leeched as Life", statOrder = { 1579 }, level = 75, group = "PhysicalDamageLifeLeechHundredThousand", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["PhysicalDamageLifeLeechEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.4% of Physical Damage Leeched as Life", statOrder = { 1579 }, level = 75, group = "PhysicalDamageLifeLeechUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["PhysicalDamageLifeLeechEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.5% of Physical Damage Leeched as Life", statOrder = { 1579 }, level = 75, group = "PhysicalDamageLifeLeechUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["PhysicalDamageLifeLeechEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.6% of Physical Damage Leeched as Life", statOrder = { 1579 }, level = 75, group = "PhysicalDamageLifeLeechUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["PhysicalDamageLifeLeechEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.7% of Physical Damage Leeched as Life", statOrder = { 1579 }, level = 75, group = "PhysicalDamageLifeLeechUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["PhysicalDamageLifeLeechEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.8% of Physical Damage Leeched as Life", statOrder = { 1579 }, level = 75, group = "PhysicalDamageLifeLeechUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["PhysicalDamageLifeLeechEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.9% of Physical Damage Leeched as Life", statOrder = { 1579 }, level = 75, group = "PhysicalDamageLifeLeechUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["PhysicalDamageLifeLeechEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.6% of Physical Damage Leeched as Life", statOrder = { 1579 }, level = 75, group = "PhysicalDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["PhysicalDamageLifeLeechEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.7% of Physical Damage Leeched as Life", statOrder = { 1579 }, level = 75, group = "PhysicalDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["PhysicalDamageLifeLeechEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.8% of Physical Damage Leeched as Life", statOrder = { 1579 }, level = 75, group = "PhysicalDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, + ["PhysicalDamageLifeLeechEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.9% of Physical Damage Leeched as Life", statOrder = { 1579 }, level = 75, group = "PhysicalDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, + ["PhysicalDamageLifeLeechEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% of Physical Damage Leeched as Life", statOrder = { 1579 }, level = 75, group = "PhysicalDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, + ["PhysicalDamageLifeLeechEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1.1% of Physical Damage Leeched as Life", statOrder = { 1579 }, level = 75, group = "PhysicalDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, + ["ChaosDamageLifeLeechEldritchImplicit1"] = { type = "Eater", affix = "", "0.2% of Chaos Damage Leeched as Life", statOrder = { 1595 }, level = 75, group = "ChaosDamageLifeLeechHundredThousand", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["ChaosDamageLifeLeechEldritchImplicit2"] = { type = "Eater", affix = "", "0.3% of Chaos Damage Leeched as Life", statOrder = { 1595 }, level = 75, group = "ChaosDamageLifeLeechHundredThousand", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["ChaosDamageLifeLeechEldritchImplicit3"] = { type = "Eater", affix = "", "0.4% of Chaos Damage Leeched as Life", statOrder = { 1595 }, level = 75, group = "ChaosDamageLifeLeechHundredThousand", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["ChaosDamageLifeLeechEldritchImplicit4"] = { type = "Eater", affix = "", "0.5% of Chaos Damage Leeched as Life", statOrder = { 1595 }, level = 75, group = "ChaosDamageLifeLeechHundredThousand", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["ChaosDamageLifeLeechEldritchImplicit5"] = { type = "Eater", affix = "", "0.6% of Chaos Damage Leeched as Life", statOrder = { 1595 }, level = 75, group = "ChaosDamageLifeLeechHundredThousand", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["ChaosDamageLifeLeechEldritchImplicit6"] = { type = "Eater", affix = "", "0.7% of Chaos Damage Leeched as Life", statOrder = { 1595 }, level = 75, group = "ChaosDamageLifeLeechHundredThousand", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["ChaosDamageLifeLeechEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.4% of Chaos Damage Leeched as Life", statOrder = { 1595 }, level = 75, group = "ChaosDamageLifeLeechUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["ChaosDamageLifeLeechEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.5% of Chaos Damage Leeched as Life", statOrder = { 1595 }, level = 75, group = "ChaosDamageLifeLeechUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["ChaosDamageLifeLeechEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.6% of Chaos Damage Leeched as Life", statOrder = { 1595 }, level = 75, group = "ChaosDamageLifeLeechUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["ChaosDamageLifeLeechEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.7% of Chaos Damage Leeched as Life", statOrder = { 1595 }, level = 75, group = "ChaosDamageLifeLeechUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["ChaosDamageLifeLeechEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.8% of Chaos Damage Leeched as Life", statOrder = { 1595 }, level = 75, group = "ChaosDamageLifeLeechUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["ChaosDamageLifeLeechEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.9% of Chaos Damage Leeched as Life", statOrder = { 1595 }, level = 75, group = "ChaosDamageLifeLeechUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["ChaosDamageLifeLeechEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.6% of Chaos Damage Leeched as Life", statOrder = { 1595 }, level = 75, group = "ChaosDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["ChaosDamageLifeLeechEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.7% of Chaos Damage Leeched as Life", statOrder = { 1595 }, level = 75, group = "ChaosDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["ChaosDamageLifeLeechEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.8% of Chaos Damage Leeched as Life", statOrder = { 1595 }, level = 75, group = "ChaosDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, + ["ChaosDamageLifeLeechEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.9% of Chaos Damage Leeched as Life", statOrder = { 1595 }, level = 75, group = "ChaosDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, + ["ChaosDamageLifeLeechEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% of Chaos Damage Leeched as Life", statOrder = { 1595 }, level = 75, group = "ChaosDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, + ["ChaosDamageLifeLeechEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1.1% of Chaos Damage Leeched as Life", statOrder = { 1595 }, level = 75, group = "ChaosDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, + ["DamagePer100STREldritchImplicit1"] = { type = "Eater", affix = "", "3% increased Damage per 100 Strength", statOrder = { 5949 }, level = 75, group = "DamagePer100STR", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["DamagePer100STREldritchImplicit2"] = { type = "Eater", affix = "", "3% increased Damage per 100 Strength", statOrder = { 5949 }, level = 75, group = "DamagePer100STR", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["DamagePer100STREldritchImplicit3"] = { type = "Eater", affix = "", "3% increased Damage per 100 Strength", statOrder = { 5949 }, level = 75, group = "DamagePer100STR", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["DamagePer100STREldritchImplicit4"] = { type = "Eater", affix = "", "3% increased Damage per 100 Strength", statOrder = { 5949 }, level = 75, group = "DamagePer100STR", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["DamagePer100STREldritchImplicit5"] = { type = "Eater", affix = "", "4% increased Damage per 100 Strength", statOrder = { 5949 }, level = 75, group = "DamagePer100STR", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["DamagePer100STREldritchImplicit6"] = { type = "Eater", affix = "", "4% increased Damage per 100 Strength", statOrder = { 5949 }, level = 75, group = "DamagePer100STR", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["DamagePer100STREldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Strength", statOrder = { 5949 }, level = 75, group = "DamagePer100STRUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, }, + ["DamagePer100STREldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Strength", statOrder = { 5949 }, level = 75, group = "DamagePer100STRUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, + ["DamagePer100STREldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Strength", statOrder = { 5949 }, level = 75, group = "DamagePer100STRUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, + ["DamagePer100STREldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Strength", statOrder = { 5949 }, level = 75, group = "DamagePer100STRUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, + ["DamagePer100STREldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per 100 Strength", statOrder = { 5949 }, level = 75, group = "DamagePer100STRUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, + ["DamagePer100STREldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per 100 Strength", statOrder = { 5949 }, level = 75, group = "DamagePer100STRUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, + ["DamagePer100STREldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Strength", statOrder = { 5949 }, level = 75, group = "DamagePer100STRPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, }, + ["DamagePer100STREldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Strength", statOrder = { 5949 }, level = 75, group = "DamagePer100STRPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, }, + ["DamagePer100STREldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Strength", statOrder = { 5949 }, level = 75, group = "DamagePer100STRPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, }, + ["DamagePer100STREldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Strength", statOrder = { 5949 }, level = 75, group = "DamagePer100STRPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, }, + ["DamagePer100STREldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per 100 Strength", statOrder = { 5949 }, level = 75, group = "DamagePer100STRPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, }, + ["DamagePer100STREldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per 100 Strength", statOrder = { 5949 }, level = 75, group = "DamagePer100STRPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, }, + ["DamagePer100DEXEldritchImplicit1"] = { type = "Eater", affix = "", "3% increased Damage per 100 Dexterity", statOrder = { 5947 }, level = 75, group = "DamagePer100DEX", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["DamagePer100DEXEldritchImplicit2"] = { type = "Eater", affix = "", "3% increased Damage per 100 Dexterity", statOrder = { 5947 }, level = 75, group = "DamagePer100DEX", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["DamagePer100DEXEldritchImplicit3"] = { type = "Eater", affix = "", "3% increased Damage per 100 Dexterity", statOrder = { 5947 }, level = 75, group = "DamagePer100DEX", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["DamagePer100DEXEldritchImplicit4"] = { type = "Eater", affix = "", "3% increased Damage per 100 Dexterity", statOrder = { 5947 }, level = 75, group = "DamagePer100DEX", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["DamagePer100DEXEldritchImplicit5"] = { type = "Eater", affix = "", "4% increased Damage per 100 Dexterity", statOrder = { 5947 }, level = 75, group = "DamagePer100DEX", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["DamagePer100DEXEldritchImplicit6"] = { type = "Eater", affix = "", "4% increased Damage per 100 Dexterity", statOrder = { 5947 }, level = 75, group = "DamagePer100DEX", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["DamagePer100DEXEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Dexterity", statOrder = { 5947 }, level = 75, group = "DamagePer100DEXUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, }, + ["DamagePer100DEXEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Dexterity", statOrder = { 5947 }, level = 75, group = "DamagePer100DEXUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, + ["DamagePer100DEXEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Dexterity", statOrder = { 5947 }, level = 75, group = "DamagePer100DEXUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, + ["DamagePer100DEXEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Dexterity", statOrder = { 5947 }, level = 75, group = "DamagePer100DEXUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, + ["DamagePer100DEXEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per 100 Dexterity", statOrder = { 5947 }, level = 75, group = "DamagePer100DEXUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, + ["DamagePer100DEXEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per 100 Dexterity", statOrder = { 5947 }, level = 75, group = "DamagePer100DEXUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, + ["DamagePer100DEXEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Dexterity", statOrder = { 5947 }, level = 75, group = "DamagePer100DEXPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, }, + ["DamagePer100DEXEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Dexterity", statOrder = { 5947 }, level = 75, group = "DamagePer100DEXPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, }, + ["DamagePer100DEXEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Dexterity", statOrder = { 5947 }, level = 75, group = "DamagePer100DEXPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, }, + ["DamagePer100DEXEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Dexterity", statOrder = { 5947 }, level = 75, group = "DamagePer100DEXPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, }, + ["DamagePer100DEXEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per 100 Dexterity", statOrder = { 5947 }, level = 75, group = "DamagePer100DEXPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, }, + ["DamagePer100DEXEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per 100 Dexterity", statOrder = { 5947 }, level = 75, group = "DamagePer100DEXPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, }, + ["DamagePer100INTEldritchImplicit1"] = { type = "Eater", affix = "", "3% increased Damage per 100 Intelligence", statOrder = { 5948 }, level = 75, group = "DamagePer100INT", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["DamagePer100INTEldritchImplicit2"] = { type = "Eater", affix = "", "3% increased Damage per 100 Intelligence", statOrder = { 5948 }, level = 75, group = "DamagePer100INT", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["DamagePer100INTEldritchImplicit3"] = { type = "Eater", affix = "", "3% increased Damage per 100 Intelligence", statOrder = { 5948 }, level = 75, group = "DamagePer100INT", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["DamagePer100INTEldritchImplicit4"] = { type = "Eater", affix = "", "3% increased Damage per 100 Intelligence", statOrder = { 5948 }, level = 75, group = "DamagePer100INT", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["DamagePer100INTEldritchImplicit5"] = { type = "Eater", affix = "", "4% increased Damage per 100 Intelligence", statOrder = { 5948 }, level = 75, group = "DamagePer100INT", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["DamagePer100INTEldritchImplicit6"] = { type = "Eater", affix = "", "4% increased Damage per 100 Intelligence", statOrder = { 5948 }, level = 75, group = "DamagePer100INT", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["DamagePer100INTEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Intelligence", statOrder = { 5948 }, level = 75, group = "DamagePer100INTUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, }, + ["DamagePer100INTEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Intelligence", statOrder = { 5948 }, level = 75, group = "DamagePer100INTUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, + ["DamagePer100INTEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Intelligence", statOrder = { 5948 }, level = 75, group = "DamagePer100INTUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, + ["DamagePer100INTEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Intelligence", statOrder = { 5948 }, level = 75, group = "DamagePer100INTUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, + ["DamagePer100INTEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per 100 Intelligence", statOrder = { 5948 }, level = 75, group = "DamagePer100INTUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, + ["DamagePer100INTEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per 100 Intelligence", statOrder = { 5948 }, level = 75, group = "DamagePer100INTUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, + ["DamagePer100INTEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Intelligence", statOrder = { 5948 }, level = 75, group = "DamagePer100INTPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, }, + ["DamagePer100INTEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Intelligence", statOrder = { 5948 }, level = 75, group = "DamagePer100INTPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, }, + ["DamagePer100INTEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Intelligence", statOrder = { 5948 }, level = 75, group = "DamagePer100INTPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, }, + ["DamagePer100INTEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Intelligence", statOrder = { 5948 }, level = 75, group = "DamagePer100INTPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, }, + ["DamagePer100INTEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per 100 Intelligence", statOrder = { 5948 }, level = 75, group = "DamagePer100INTPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, }, + ["DamagePer100INTEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per 100 Intelligence", statOrder = { 5948 }, level = 75, group = "DamagePer100INTPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, }, + ["BlindEffectEldritchImplicit1"] = { type = "Eater", affix = "", "(6-7)% increased Blind Effect", statOrder = { 5113 }, level = 75, group = "BlindEffect", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["BlindEffectEldritchImplicit2"] = { type = "Eater", affix = "", "(8-9)% increased Blind Effect", statOrder = { 5113 }, level = 75, group = "BlindEffect", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["BlindEffectEldritchImplicit3"] = { type = "Eater", affix = "", "(10-11)% increased Blind Effect", statOrder = { 5113 }, level = 75, group = "BlindEffect", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["BlindEffectEldritchImplicit4"] = { type = "Eater", affix = "", "(12-13)% increased Blind Effect", statOrder = { 5113 }, level = 75, group = "BlindEffect", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["BlindEffectEldritchImplicit5"] = { type = "Eater", affix = "", "(14-15)% increased Blind Effect", statOrder = { 5113 }, level = 75, group = "BlindEffect", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["BlindEffectEldritchImplicit6"] = { type = "Eater", affix = "", "(16-17)% increased Blind Effect", statOrder = { 5113 }, level = 75, group = "BlindEffect", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["BlindEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (12-13)% increased Blind Effect", statOrder = { 5113 }, level = 75, group = "BlindEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["BlindEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (14-15)% increased Blind Effect", statOrder = { 5113 }, level = 75, group = "BlindEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["BlindEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (16-17)% increased Blind Effect", statOrder = { 5113 }, level = 75, group = "BlindEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["BlindEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (18-19)% increased Blind Effect", statOrder = { 5113 }, level = 75, group = "BlindEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["BlindEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (20-21)% increased Blind Effect", statOrder = { 5113 }, level = 75, group = "BlindEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["BlindEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (22-23)% increased Blind Effect", statOrder = { 5113 }, level = 75, group = "BlindEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["BlindEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (18-19)% increased Blind Effect", statOrder = { 5113 }, level = 75, group = "BlindEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["BlindEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% increased Blind Effect", statOrder = { 5113 }, level = 75, group = "BlindEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["BlindEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% increased Blind Effect", statOrder = { 5113 }, level = 75, group = "BlindEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["BlindEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% increased Blind Effect", statOrder = { 5113 }, level = 75, group = "BlindEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["BlindEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% increased Blind Effect", statOrder = { 5113 }, level = 75, group = "BlindEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["BlindEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% increased Blind Effect", statOrder = { 5113 }, level = 75, group = "BlindEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["ExertedAttackDamageEldritchImplicit1"] = { type = "Eater", affix = "", "Exerted Attacks deal (20-22)% increased Damage", statOrder = { 6248 }, level = 75, group = "ExertedAttackDamage", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "damage", "attack" }, }, + ["ExertedAttackDamageEldritchImplicit2"] = { type = "Eater", affix = "", "Exerted Attacks deal (23-25)% increased Damage", statOrder = { 6248 }, level = 75, group = "ExertedAttackDamage", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "damage", "attack" }, }, + ["ExertedAttackDamageEldritchImplicit3"] = { type = "Eater", affix = "", "Exerted Attacks deal (26-28)% increased Damage", statOrder = { 6248 }, level = 75, group = "ExertedAttackDamage", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "damage", "attack" }, }, + ["ExertedAttackDamageEldritchImplicit4"] = { type = "Eater", affix = "", "Exerted Attacks deal (29-31)% increased Damage", statOrder = { 6248 }, level = 75, group = "ExertedAttackDamage", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "damage", "attack" }, }, + ["ExertedAttackDamageEldritchImplicit5"] = { type = "Eater", affix = "", "Exerted Attacks deal (32-33)% increased Damage", statOrder = { 6248 }, level = 75, group = "ExertedAttackDamage", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "damage", "attack" }, }, + ["ExertedAttackDamageEldritchImplicit6"] = { type = "Eater", affix = "", "Exerted Attacks deal (34-35)% increased Damage", statOrder = { 6248 }, level = 75, group = "ExertedAttackDamage", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "damage", "attack" }, }, + ["ExertedAttackDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Exerted Attacks deal (26-28)% increased Damage", statOrder = { 6248 }, level = 75, group = "ExertedAttackDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage", "attack" }, }, + ["ExertedAttackDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Exerted Attacks deal (29-31)% increased Damage", statOrder = { 6248 }, level = 75, group = "ExertedAttackDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "damage", "attack" }, }, + ["ExertedAttackDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Exerted Attacks deal (32-34)% increased Damage", statOrder = { 6248 }, level = 75, group = "ExertedAttackDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "damage", "attack" }, }, + ["ExertedAttackDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Exerted Attacks deal (35-37)% increased Damage", statOrder = { 6248 }, level = 75, group = "ExertedAttackDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "damage", "attack" }, }, + ["ExertedAttackDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Exerted Attacks deal (38-39)% increased Damage", statOrder = { 6248 }, level = 75, group = "ExertedAttackDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "damage", "attack" }, }, + ["ExertedAttackDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Exerted Attacks deal (40-41)% increased Damage", statOrder = { 6248 }, level = 75, group = "ExertedAttackDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "damage", "attack" }, }, + ["ExertedAttackDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Exerted Attacks deal (32-34)% increased Damage", statOrder = { 6248 }, level = 75, group = "ExertedAttackDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage", "attack" }, }, + ["ExertedAttackDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Exerted Attacks deal (35-37)% increased Damage", statOrder = { 6248 }, level = 75, group = "ExertedAttackDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage", "attack" }, }, + ["ExertedAttackDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Exerted Attacks deal (38-40)% increased Damage", statOrder = { 6248 }, level = 75, group = "ExertedAttackDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "damage", "attack" }, }, + ["ExertedAttackDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Exerted Attacks deal (41-43)% increased Damage", statOrder = { 6248 }, level = 75, group = "ExertedAttackDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "damage", "attack" }, }, + ["ExertedAttackDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Exerted Attacks deal (44-45)% increased Damage", statOrder = { 6248 }, level = 75, group = "ExertedAttackDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "damage", "attack" }, }, + ["ExertedAttackDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Exerted Attacks deal (46-47)% increased Damage", statOrder = { 6248 }, level = 75, group = "ExertedAttackDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "damage", "attack" }, }, + ["GlobalMaimOnHitEldritchImplicit1"] = { type = "Eater", affix = "", "Attacks have 15% chance to Maim on Hit", statOrder = { 7987 }, level = 75, group = "GlobalMaimOnHit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "attack" }, }, + ["GlobalMaimOnHitEldritchImplicit2"] = { type = "Eater", affix = "", "Attacks have 20% chance to Maim on Hit", statOrder = { 7987 }, level = 75, group = "GlobalMaimOnHit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "attack" }, }, + ["GlobalMaimOnHitEldritchImplicit3"] = { type = "Eater", affix = "", "Attacks have 25% chance to Maim on Hit", statOrder = { 7987 }, level = 75, group = "GlobalMaimOnHit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "attack" }, }, + ["GlobalMaimOnHitEldritchImplicit4"] = { type = "Eater", affix = "", "Attacks have 30% chance to Maim on Hit", statOrder = { 7987 }, level = 75, group = "GlobalMaimOnHit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "attack" }, }, + ["GlobalMaimOnHitEldritchImplicit5"] = { type = "Eater", affix = "", "Attacks have 35% chance to Maim on Hit", statOrder = { 7987 }, level = 75, group = "GlobalMaimOnHit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "attack" }, }, + ["GlobalMaimOnHitEldritchImplicit6"] = { type = "Eater", affix = "", "Attacks have 40% chance to Maim on Hit", statOrder = { 7987 }, level = 75, group = "GlobalMaimOnHit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "attack" }, }, + ["GlobalMaimOnHitEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 45% chance to Maim on Hit", statOrder = { 7987 }, level = 75, group = "GlobalMaimOnHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, + ["GlobalMaimOnHitEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 50% chance to Maim on Hit", statOrder = { 7987 }, level = 75, group = "GlobalMaimOnHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "attack" }, }, + ["GlobalMaimOnHitEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 55% chance to Maim on Hit", statOrder = { 7987 }, level = 75, group = "GlobalMaimOnHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "attack" }, }, + ["GlobalMaimOnHitEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 60% chance to Maim on Hit", statOrder = { 7987 }, level = 75, group = "GlobalMaimOnHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "attack" }, }, + ["GlobalMaimOnHitEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 65% chance to Maim on Hit", statOrder = { 7987 }, level = 75, group = "GlobalMaimOnHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "attack" }, }, + ["GlobalMaimOnHitEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 70% chance to Maim on Hit", statOrder = { 7987 }, level = 75, group = "GlobalMaimOnHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "attack" }, }, + ["GlobalMaimOnHitEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 75% chance to Maim on Hit", statOrder = { 7987 }, level = 75, group = "GlobalMaimOnHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, + ["GlobalMaimOnHitEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 80% chance to Maim on Hit", statOrder = { 7987 }, level = 75, group = "GlobalMaimOnHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, + ["GlobalMaimOnHitEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 85% chance to Maim on Hit", statOrder = { 7987 }, level = 75, group = "GlobalMaimOnHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "attack" }, }, + ["GlobalMaimOnHitEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 90% chance to Maim on Hit", statOrder = { 7987 }, level = 75, group = "GlobalMaimOnHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "attack" }, }, + ["GlobalMaimOnHitEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 95% chance to Maim on Hit", statOrder = { 7987 }, level = 75, group = "GlobalMaimOnHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "attack" }, }, + ["GlobalMaimOnHitEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks always Maim on Hit", statOrder = { 7987 }, level = 75, group = "GlobalMaimOnHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "attack" }, }, + ["SpellsHinderOnHitChanceEldritchImplicit1"] = { type = "Eater", affix = "", "15% chance to Hinder Enemies on Hit with Spells", statOrder = { 9972 }, level = 75, group = "SpellsHinderOnHitChance", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "caster" }, }, + ["SpellsHinderOnHitChanceEldritchImplicit2"] = { type = "Eater", affix = "", "20% chance to Hinder Enemies on Hit with Spells", statOrder = { 9972 }, level = 75, group = "SpellsHinderOnHitChance", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "caster" }, }, + ["SpellsHinderOnHitChanceEldritchImplicit3"] = { type = "Eater", affix = "", "25% chance to Hinder Enemies on Hit with Spells", statOrder = { 9972 }, level = 75, group = "SpellsHinderOnHitChance", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "caster" }, }, + ["SpellsHinderOnHitChanceEldritchImplicit4"] = { type = "Eater", affix = "", "30% chance to Hinder Enemies on Hit with Spells", statOrder = { 9972 }, level = 75, group = "SpellsHinderOnHitChance", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "caster" }, }, + ["SpellsHinderOnHitChanceEldritchImplicit5"] = { type = "Eater", affix = "", "35% chance to Hinder Enemies on Hit with Spells", statOrder = { 9972 }, level = 75, group = "SpellsHinderOnHitChance", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "caster" }, }, + ["SpellsHinderOnHitChanceEldritchImplicit6"] = { type = "Eater", affix = "", "40% chance to Hinder Enemies on Hit with Spells", statOrder = { 9972 }, level = 75, group = "SpellsHinderOnHitChance", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "caster" }, }, + ["SpellsHinderOnHitChanceEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 45% chance to Hinder Enemies on Hit with Spells", statOrder = { 9972 }, level = 75, group = "SpellsHinderOnHitChanceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "caster" }, }, + ["SpellsHinderOnHitChanceEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 50% chance to Hinder Enemies on Hit with Spells", statOrder = { 9972 }, level = 75, group = "SpellsHinderOnHitChanceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster" }, }, + ["SpellsHinderOnHitChanceEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 55% chance to Hinder Enemies on Hit with Spells", statOrder = { 9972 }, level = 75, group = "SpellsHinderOnHitChanceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster" }, }, + ["SpellsHinderOnHitChanceEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 60% chance to Hinder Enemies on Hit with Spells", statOrder = { 9972 }, level = 75, group = "SpellsHinderOnHitChanceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster" }, }, + ["SpellsHinderOnHitChanceEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 65% chance to Hinder Enemies on Hit with Spells", statOrder = { 9972 }, level = 75, group = "SpellsHinderOnHitChanceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster" }, }, + ["SpellsHinderOnHitChanceEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 70% chance to Hinder Enemies on Hit with Spells", statOrder = { 9972 }, level = 75, group = "SpellsHinderOnHitChanceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster" }, }, + ["SpellsHinderOnHitChanceEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 75% chance to Hinder Enemies on Hit with Spells", statOrder = { 9972 }, level = 75, group = "SpellsHinderOnHitChancePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "caster" }, }, + ["SpellsHinderOnHitChanceEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 80% chance to Hinder Enemies on Hit with Spells", statOrder = { 9972 }, level = 75, group = "SpellsHinderOnHitChancePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "caster" }, }, + ["SpellsHinderOnHitChanceEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 85% chance to Hinder Enemies on Hit with Spells", statOrder = { 9972 }, level = 75, group = "SpellsHinderOnHitChancePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "caster" }, }, + ["SpellsHinderOnHitChanceEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 90% chance to Hinder Enemies on Hit with Spells", statOrder = { 9972 }, level = 75, group = "SpellsHinderOnHitChancePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "caster" }, }, + ["SpellsHinderOnHitChanceEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 95% chance to Hinder Enemies on Hit with Spells", statOrder = { 9972 }, level = 75, group = "SpellsHinderOnHitChancePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "caster" }, }, + ["SpellsHinderOnHitChanceEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hinder Enemies on Hit with Spells", statOrder = { 9972 }, level = 75, group = "SpellsHinderOnHitChancePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "caster" }, }, + ["IncreasedAccuracyPercentEldritchImplicit1"] = { type = "Eater", affix = "", "(9-10)% increased Global Accuracy Rating", statOrder = { 1345 }, level = 75, group = "IncreasedAccuracyPercent", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack" }, }, + ["IncreasedAccuracyPercentEldritchImplicit2"] = { type = "Eater", affix = "", "(11-12)% increased Global Accuracy Rating", statOrder = { 1345 }, level = 75, group = "IncreasedAccuracyPercent", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack" }, }, + ["IncreasedAccuracyPercentEldritchImplicit3"] = { type = "Eater", affix = "", "(13-14)% increased Global Accuracy Rating", statOrder = { 1345 }, level = 75, group = "IncreasedAccuracyPercent", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack" }, }, + ["IncreasedAccuracyPercentEldritchImplicit4"] = { type = "Eater", affix = "", "(15-16)% increased Global Accuracy Rating", statOrder = { 1345 }, level = 75, group = "IncreasedAccuracyPercent", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack" }, }, + ["IncreasedAccuracyPercentEldritchImplicit5"] = { type = "Eater", affix = "", "(17-18)% increased Global Accuracy Rating", statOrder = { 1345 }, level = 75, group = "IncreasedAccuracyPercent", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack" }, }, + ["IncreasedAccuracyPercentEldritchImplicit6"] = { type = "Eater", affix = "", "(19-20)% increased Global Accuracy Rating", statOrder = { 1345 }, level = 75, group = "IncreasedAccuracyPercent", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack" }, }, + ["IncreasedAccuracyPercentEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (13-14)% increased Global Accuracy Rating", statOrder = { 1345 }, level = 75, group = "IncreasedAccuracyPercentUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, + ["IncreasedAccuracyPercentEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (15-16)% increased Global Accuracy Rating", statOrder = { 1345 }, level = 75, group = "IncreasedAccuracyPercentUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, }, + ["IncreasedAccuracyPercentEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (17-18)% increased Global Accuracy Rating", statOrder = { 1345 }, level = 75, group = "IncreasedAccuracyPercentUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, }, + ["IncreasedAccuracyPercentEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (19-20)% increased Global Accuracy Rating", statOrder = { 1345 }, level = 75, group = "IncreasedAccuracyPercentUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, }, + ["IncreasedAccuracyPercentEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (21-22)% increased Global Accuracy Rating", statOrder = { 1345 }, level = 75, group = "IncreasedAccuracyPercentUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, }, + ["IncreasedAccuracyPercentEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (23-24)% increased Global Accuracy Rating", statOrder = { 1345 }, level = 75, group = "IncreasedAccuracyPercentUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, }, + ["IncreasedAccuracyPercentEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (17-18)% increased Global Accuracy Rating", statOrder = { 1345 }, level = 75, group = "IncreasedAccuracyPercentPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, + ["IncreasedAccuracyPercentEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (19-20)% increased Global Accuracy Rating", statOrder = { 1345 }, level = 75, group = "IncreasedAccuracyPercentPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, + ["IncreasedAccuracyPercentEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (21-22)% increased Global Accuracy Rating", statOrder = { 1345 }, level = 75, group = "IncreasedAccuracyPercentPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, }, + ["IncreasedAccuracyPercentEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (23-24)% increased Global Accuracy Rating", statOrder = { 1345 }, level = 75, group = "IncreasedAccuracyPercentPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, }, + ["IncreasedAccuracyPercentEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% increased Global Accuracy Rating", statOrder = { 1345 }, level = 75, group = "IncreasedAccuracyPercentPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, }, + ["IncreasedAccuracyPercentEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% increased Global Accuracy Rating", statOrder = { 1345 }, level = 75, group = "IncreasedAccuracyPercentPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, }, + ["MarkEffectEldritchImplicit1"] = { type = "Eater", affix = "", "(6-7)% increased Effect of your Marks", statOrder = { 2507 }, level = 75, group = "MarkEffect", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "caster", "curse" }, }, + ["MarkEffectEldritchImplicit2"] = { type = "Eater", affix = "", "(8-9)% increased Effect of your Marks", statOrder = { 2507 }, level = 75, group = "MarkEffect", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "caster", "curse" }, }, + ["MarkEffectEldritchImplicit3"] = { type = "Eater", affix = "", "(10-11)% increased Effect of your Marks", statOrder = { 2507 }, level = 75, group = "MarkEffect", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "caster", "curse" }, }, + ["MarkEffectEldritchImplicit4"] = { type = "Eater", affix = "", "(12-13)% increased Effect of your Marks", statOrder = { 2507 }, level = 75, group = "MarkEffect", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "caster", "curse" }, }, + ["MarkEffectEldritchImplicit5"] = { type = "Eater", affix = "", "(14-15)% increased Effect of your Marks", statOrder = { 2507 }, level = 75, group = "MarkEffect", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "caster", "curse" }, }, + ["MarkEffectEldritchImplicit6"] = { type = "Eater", affix = "", "(16-17)% increased Effect of your Marks", statOrder = { 2507 }, level = 75, group = "MarkEffect", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "caster", "curse" }, }, + ["MarkEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (12-13)% increased Effect of your Marks", statOrder = { 2507 }, level = 75, group = "MarkEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, + ["MarkEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (14-15)% increased Effect of your Marks", statOrder = { 2507 }, level = 75, group = "MarkEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "curse" }, }, + ["MarkEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (16-17)% increased Effect of your Marks", statOrder = { 2507 }, level = 75, group = "MarkEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "curse" }, }, + ["MarkEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (18-19)% increased Effect of your Marks", statOrder = { 2507 }, level = 75, group = "MarkEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "curse" }, }, + ["MarkEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (20-21)% increased Effect of your Marks", statOrder = { 2507 }, level = 75, group = "MarkEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "curse" }, }, + ["MarkEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (22-23)% increased Effect of your Marks", statOrder = { 2507 }, level = 75, group = "MarkEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "curse" }, }, + ["MarkEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (18-19)% increased Effect of your Marks", statOrder = { 2507 }, level = 75, group = "MarkEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, + ["MarkEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% increased Effect of your Marks", statOrder = { 2507 }, level = 75, group = "MarkEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, + ["MarkEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% increased Effect of your Marks", statOrder = { 2507 }, level = 75, group = "MarkEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "curse" }, }, + ["MarkEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% increased Effect of your Marks", statOrder = { 2507 }, level = 75, group = "MarkEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "curse" }, }, + ["MarkEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% increased Effect of your Marks", statOrder = { 2507 }, level = 75, group = "MarkEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "curse" }, }, + ["MarkEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% increased Effect of your Marks", statOrder = { 2507 }, level = 75, group = "MarkEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "curse" }, }, + ["FlatAccuracyPerFrenzyChargeEldritchImplicit1"] = { type = "Eater", affix = "", "+(43-45) to Accuracy Rating per Frenzy Charge", statOrder = { 4422 }, level = 75, group = "IncreasedAccuracyPerFrenzy", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, + ["FlatAccuracyPerFrenzyChargeEldritchImplicit2"] = { type = "Eater", affix = "", "+(46-48) to Accuracy Rating per Frenzy Charge", statOrder = { 4422 }, level = 75, group = "IncreasedAccuracyPerFrenzy", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, + ["FlatAccuracyPerFrenzyChargeEldritchImplicit3"] = { type = "Eater", affix = "", "+(49-51) to Accuracy Rating per Frenzy Charge", statOrder = { 4422 }, level = 75, group = "IncreasedAccuracyPerFrenzy", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, + ["FlatAccuracyPerFrenzyChargeEldritchImplicit4"] = { type = "Eater", affix = "", "+(52-54) to Accuracy Rating per Frenzy Charge", statOrder = { 4422 }, level = 75, group = "IncreasedAccuracyPerFrenzy", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, + ["FlatAccuracyPerFrenzyChargeEldritchImplicit5"] = { type = "Eater", affix = "", "+(55-57) to Accuracy Rating per Frenzy Charge", statOrder = { 4422 }, level = 75, group = "IncreasedAccuracyPerFrenzy", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, + ["FlatAccuracyPerFrenzyChargeEldritchImplicit6"] = { type = "Eater", affix = "", "+(58-60) to Accuracy Rating per Frenzy Charge", statOrder = { 4422 }, level = 75, group = "IncreasedAccuracyPerFrenzy", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, + ["FlatAccuracyPerFrenzyChargeEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(49-51) to Accuracy Rating per Frenzy Charge", statOrder = { 4422 }, level = 75, group = "FlatAccuracyPerFrenzyChargeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, + ["FlatAccuracyPerFrenzyChargeEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(52-54) to Accuracy Rating per Frenzy Charge", statOrder = { 4422 }, level = 75, group = "FlatAccuracyPerFrenzyChargeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, }, + ["FlatAccuracyPerFrenzyChargeEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(55-57) to Accuracy Rating per Frenzy Charge", statOrder = { 4422 }, level = 75, group = "FlatAccuracyPerFrenzyChargeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, }, + ["FlatAccuracyPerFrenzyChargeEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(58-60) to Accuracy Rating per Frenzy Charge", statOrder = { 4422 }, level = 75, group = "FlatAccuracyPerFrenzyChargeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, }, + ["FlatAccuracyPerFrenzyChargeEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(61-63) to Accuracy Rating per Frenzy Charge", statOrder = { 4422 }, level = 75, group = "FlatAccuracyPerFrenzyChargeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, }, + ["FlatAccuracyPerFrenzyChargeEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(64-66) to Accuracy Rating per Frenzy Charge", statOrder = { 4422 }, level = 75, group = "FlatAccuracyPerFrenzyChargeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, }, + ["FlatAccuracyPerFrenzyChargeEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(55-57) to Accuracy Rating per Frenzy Charge", statOrder = { 4422 }, level = 75, group = "FlatAccuracyPerFrenzyChargePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, + ["FlatAccuracyPerFrenzyChargeEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(58-60) to Accuracy Rating per Frenzy Charge", statOrder = { 4422 }, level = 75, group = "FlatAccuracyPerFrenzyChargePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, + ["FlatAccuracyPerFrenzyChargeEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(61-63) to Accuracy Rating per Frenzy Charge", statOrder = { 4422 }, level = 75, group = "FlatAccuracyPerFrenzyChargePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, }, + ["FlatAccuracyPerFrenzyChargeEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(64-66) to Accuracy Rating per Frenzy Charge", statOrder = { 4422 }, level = 75, group = "FlatAccuracyPerFrenzyChargePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, }, + ["FlatAccuracyPerFrenzyChargeEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(67-69) to Accuracy Rating per Frenzy Charge", statOrder = { 4422 }, level = 75, group = "FlatAccuracyPerFrenzyChargePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, }, + ["FlatAccuracyPerFrenzyChargeEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(70-72) to Accuracy Rating per Frenzy Charge", statOrder = { 4422 }, level = 75, group = "FlatAccuracyPerFrenzyChargePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, }, + ["AdditionalPierceEldritchImplicit1"] = { type = "Eater", affix = "", "Projectiles Pierce an additional Target", statOrder = { 1701 }, level = 75, group = "AdditionalPierce", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["AdditionalPierceEldritchImplicit2"] = { type = "Eater", affix = "", "Projectiles Pierce an additional Target", statOrder = { 1701 }, level = 75, group = "AdditionalPierce", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["AdditionalPierceEldritchImplicit3"] = { type = "Eater", affix = "", "Projectiles Pierce an additional Target", statOrder = { 1701 }, level = 75, group = "AdditionalPierce", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["AdditionalPierceEldritchImplicit4"] = { type = "Eater", affix = "", "Projectiles Pierce an additional Target", statOrder = { 1701 }, level = 75, group = "AdditionalPierce", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["AdditionalPierceEldritchImplicit5"] = { type = "Eater", affix = "", "Projectiles Pierce 2 additional Targets", statOrder = { 1701 }, level = 75, group = "AdditionalPierce", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["AdditionalPierceEldritchImplicit6"] = { type = "Eater", affix = "", "Projectiles Pierce 2 additional Targets", statOrder = { 1701 }, level = 75, group = "AdditionalPierce", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["AdditionalPierceEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Projectiles Pierce 2 additional Targets", statOrder = { 1701 }, level = 75, group = "AdditionalPierceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["AdditionalPierceEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Projectiles Pierce 2 additional Targets", statOrder = { 1701 }, level = 75, group = "AdditionalPierceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["AdditionalPierceEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Projectiles Pierce 2 additional Targets", statOrder = { 1701 }, level = 75, group = "AdditionalPierceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["AdditionalPierceEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Projectiles Pierce 2 additional Targets", statOrder = { 1701 }, level = 75, group = "AdditionalPierceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["AdditionalPierceEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Projectiles Pierce 3 additional Targets", statOrder = { 1701 }, level = 75, group = "AdditionalPierceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["AdditionalPierceEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Projectiles Pierce 3 additional Targets", statOrder = { 1701 }, level = 75, group = "AdditionalPierceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["AdditionalPierceEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Projectiles Pierce 3 additional Targets", statOrder = { 1701 }, level = 75, group = "AdditionalPiercePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["AdditionalPierceEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Projectiles Pierce 3 additional Targets", statOrder = { 1701 }, level = 75, group = "AdditionalPiercePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["AdditionalPierceEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Projectiles Pierce 3 additional Targets", statOrder = { 1701 }, level = 75, group = "AdditionalPiercePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["AdditionalPierceEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Projectiles Pierce 3 additional Targets", statOrder = { 1701 }, level = 75, group = "AdditionalPiercePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["AdditionalPierceEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Projectiles Pierce 4 additional Targets", statOrder = { 1701 }, level = 75, group = "AdditionalPiercePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["AdditionalPierceEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Projectiles Pierce 4 additional Targets", statOrder = { 1701 }, level = 75, group = "AdditionalPiercePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["PoisonOnHitEldritchImplicit1"] = { type = "Eater", affix = "", "5% chance to Poison on Hit", statOrder = { 3081 }, level = 75, group = "PoisonOnHit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["PoisonOnHitEldritchImplicit2"] = { type = "Eater", affix = "", "10% chance to Poison on Hit", statOrder = { 3081 }, level = 75, group = "PoisonOnHit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["PoisonOnHitEldritchImplicit3"] = { type = "Eater", affix = "", "15% chance to Poison on Hit", statOrder = { 3081 }, level = 75, group = "PoisonOnHit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["PoisonOnHitEldritchImplicit4"] = { type = "Eater", affix = "", "20% chance to Poison on Hit", statOrder = { 3081 }, level = 75, group = "PoisonOnHit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["PoisonOnHitEldritchImplicit5"] = { type = "Eater", affix = "", "25% chance to Poison on Hit", statOrder = { 3081 }, level = 75, group = "PoisonOnHit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["PoisonOnHitEldritchImplicit6"] = { type = "Eater", affix = "", "30% chance to Poison on Hit", statOrder = { 3081 }, level = 75, group = "PoisonOnHit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["PoisonOnHitEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% chance to Poison on Hit", statOrder = { 3081 }, level = 75, group = "PoisonOnHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["PoisonOnHitEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 20% chance to Poison on Hit", statOrder = { 3081 }, level = 75, group = "PoisonOnHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["PoisonOnHitEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% chance to Poison on Hit", statOrder = { 3081 }, level = 75, group = "PoisonOnHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["PoisonOnHitEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% chance to Poison on Hit", statOrder = { 3081 }, level = 75, group = "PoisonOnHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["PoisonOnHitEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% chance to Poison on Hit", statOrder = { 3081 }, level = 75, group = "PoisonOnHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["PoisonOnHitEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% chance to Poison on Hit", statOrder = { 3081 }, level = 75, group = "PoisonOnHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["PoisonOnHitEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 25% chance to Poison on Hit", statOrder = { 3081 }, level = 75, group = "PoisonOnHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["PoisonOnHitEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 30% chance to Poison on Hit", statOrder = { 3081 }, level = 75, group = "PoisonOnHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["PoisonOnHitEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 35% chance to Poison on Hit", statOrder = { 3081 }, level = 75, group = "PoisonOnHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["PoisonOnHitEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% chance to Poison on Hit", statOrder = { 3081 }, level = 75, group = "PoisonOnHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["PoisonOnHitEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% chance to Poison on Hit", statOrder = { 3081 }, level = 75, group = "PoisonOnHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["PoisonOnHitEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% chance to Poison on Hit", statOrder = { 3081 }, level = 75, group = "PoisonOnHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["ChanceToBleedEldritchImplicit1"] = { type = "Eater", affix = "", "Attacks have 5% chance to cause Bleeding", statOrder = { 2398 }, level = 75, group = "ChanceToBleed", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToBleedEldritchImplicit2"] = { type = "Eater", affix = "", "Attacks have 10% chance to cause Bleeding", statOrder = { 2398 }, level = 75, group = "ChanceToBleed", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToBleedEldritchImplicit3"] = { type = "Eater", affix = "", "Attacks have 15% chance to cause Bleeding", statOrder = { 2398 }, level = 75, group = "ChanceToBleed", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToBleedEldritchImplicit4"] = { type = "Eater", affix = "", "Attacks have 20% chance to cause Bleeding", statOrder = { 2398 }, level = 75, group = "ChanceToBleed", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToBleedEldritchImplicit5"] = { type = "Eater", affix = "", "Attacks have 25% chance to cause Bleeding", statOrder = { 2398 }, level = 75, group = "ChanceToBleed", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToBleedEldritchImplicit6"] = { type = "Eater", affix = "", "Attacks have 30% chance to cause Bleeding", statOrder = { 2398 }, level = 75, group = "ChanceToBleed", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToBleedEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 15% chance to cause Bleeding", statOrder = { 2398 }, level = 75, group = "ChanceToBleedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToBleedEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 20% chance to cause Bleeding", statOrder = { 2398 }, level = 75, group = "ChanceToBleedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToBleedEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 25% chance to cause Bleeding", statOrder = { 2398 }, level = 75, group = "ChanceToBleedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToBleedEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 30% chance to cause Bleeding", statOrder = { 2398 }, level = 75, group = "ChanceToBleedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToBleedEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 35% chance to cause Bleeding", statOrder = { 2398 }, level = 75, group = "ChanceToBleedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToBleedEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 40% chance to cause Bleeding", statOrder = { 2398 }, level = 75, group = "ChanceToBleedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToBleedEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 25% chance to cause Bleeding", statOrder = { 2398 }, level = 75, group = "ChanceToBleedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToBleedEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 30% chance to cause Bleeding", statOrder = { 2398 }, level = 75, group = "ChanceToBleedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToBleedEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 35% chance to cause Bleeding", statOrder = { 2398 }, level = 75, group = "ChanceToBleedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToBleedEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 40% chance to cause Bleeding", statOrder = { 2398 }, level = 75, group = "ChanceToBleedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToBleedEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 45% chance to cause Bleeding", statOrder = { 2398 }, level = 75, group = "ChanceToBleedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToBleedEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 50% chance to cause Bleeding", statOrder = { 2398 }, level = 75, group = "ChanceToBleedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToAggravateBleedEldritchImplicit1"] = { type = "Eater", affix = "", "5% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4512 }, level = 75, group = "ChanceToAggravateBleed", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToAggravateBleedEldritchImplicit2"] = { type = "Eater", affix = "", "10% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4512 }, level = 75, group = "ChanceToAggravateBleed", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToAggravateBleedEldritchImplicit3"] = { type = "Eater", affix = "", "15% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4512 }, level = 75, group = "ChanceToAggravateBleed", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToAggravateBleedEldritchImplicit4"] = { type = "Eater", affix = "", "20% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4512 }, level = 75, group = "ChanceToAggravateBleed", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToAggravateBleedEldritchImplicit5"] = { type = "Eater", affix = "", "25% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4512 }, level = 75, group = "ChanceToAggravateBleed", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToAggravateBleedEldritchImplicit6"] = { type = "Eater", affix = "", "30% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4512 }, level = 75, group = "ChanceToAggravateBleed", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToAggravateBleedEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4512 }, level = 75, group = "ChanceToAggravateBleedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToAggravateBleedEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 20% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4512 }, level = 75, group = "ChanceToAggravateBleedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToAggravateBleedEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4512 }, level = 75, group = "ChanceToAggravateBleedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToAggravateBleedEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4512 }, level = 75, group = "ChanceToAggravateBleedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToAggravateBleedEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4512 }, level = 75, group = "ChanceToAggravateBleedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToAggravateBleedEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4512 }, level = 75, group = "ChanceToAggravateBleedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToAggravateBleedEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 25% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4512 }, level = 75, group = "ChanceToAggravateBleedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToAggravateBleedEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 30% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4512 }, level = 75, group = "ChanceToAggravateBleedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToAggravateBleedEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 35% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4512 }, level = 75, group = "ChanceToAggravateBleedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 100, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToAggravateBleedEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4512 }, level = 75, group = "ChanceToAggravateBleedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 100, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToAggravateBleedEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4512 }, level = 75, group = "ChanceToAggravateBleedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 100, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToAggravateBleedEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4512 }, level = 75, group = "ChanceToAggravateBleedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 100, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["AttackImpaleChanceEldritchImplicit1"] = { type = "Eater", affix = "", "5% chance to Impale Enemies on Hit with Attacks", statOrder = { 4815 }, level = 75, group = "AttackImpaleChance", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical", "attack" }, }, + ["AttackImpaleChanceEldritchImplicit2"] = { type = "Eater", affix = "", "10% chance to Impale Enemies on Hit with Attacks", statOrder = { 4815 }, level = 75, group = "AttackImpaleChance", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical", "attack" }, }, + ["AttackImpaleChanceEldritchImplicit3"] = { type = "Eater", affix = "", "15% chance to Impale Enemies on Hit with Attacks", statOrder = { 4815 }, level = 75, group = "AttackImpaleChance", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical", "attack" }, }, + ["AttackImpaleChanceEldritchImplicit4"] = { type = "Eater", affix = "", "20% chance to Impale Enemies on Hit with Attacks", statOrder = { 4815 }, level = 75, group = "AttackImpaleChance", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical", "attack" }, }, + ["AttackImpaleChanceEldritchImplicit5"] = { type = "Eater", affix = "", "25% chance to Impale Enemies on Hit with Attacks", statOrder = { 4815 }, level = 75, group = "AttackImpaleChance", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical", "attack" }, }, + ["AttackImpaleChanceEldritchImplicit6"] = { type = "Eater", affix = "", "30% chance to Impale Enemies on Hit with Attacks", statOrder = { 4815 }, level = 75, group = "AttackImpaleChance", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical", "attack" }, }, + ["AttackImpaleChanceEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% chance to Impale Enemies on Hit with Attacks", statOrder = { 4815 }, level = 75, group = "AttackImpaleChanceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, + ["AttackImpaleChanceEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 20% chance to Impale Enemies on Hit with Attacks", statOrder = { 4815 }, level = 75, group = "AttackImpaleChanceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "attack" }, }, + ["AttackImpaleChanceEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% chance to Impale Enemies on Hit with Attacks", statOrder = { 4815 }, level = 75, group = "AttackImpaleChanceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "attack" }, }, + ["AttackImpaleChanceEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% chance to Impale Enemies on Hit with Attacks", statOrder = { 4815 }, level = 75, group = "AttackImpaleChanceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "attack" }, }, + ["AttackImpaleChanceEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% chance to Impale Enemies on Hit with Attacks", statOrder = { 4815 }, level = 75, group = "AttackImpaleChanceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "attack" }, }, + ["AttackImpaleChanceEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% chance to Impale Enemies on Hit with Attacks", statOrder = { 4815 }, level = 75, group = "AttackImpaleChanceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "attack" }, }, + ["AttackImpaleChanceEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 25% chance to Impale Enemies on Hit with Attacks", statOrder = { 4815 }, level = 75, group = "AttackImpaleChancePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, + ["AttackImpaleChanceEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 30% chance to Impale Enemies on Hit with Attacks", statOrder = { 4815 }, level = 75, group = "AttackImpaleChancePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, + ["AttackImpaleChanceEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 35% chance to Impale Enemies on Hit with Attacks", statOrder = { 4815 }, level = 75, group = "AttackImpaleChancePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "attack" }, }, + ["AttackImpaleChanceEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% chance to Impale Enemies on Hit with Attacks", statOrder = { 4815 }, level = 75, group = "AttackImpaleChancePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "attack" }, }, + ["AttackImpaleChanceEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% chance to Impale Enemies on Hit with Attacks", statOrder = { 4815 }, level = 75, group = "AttackImpaleChancePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "attack" }, }, + ["AttackImpaleChanceEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% chance to Impale Enemies on Hit with Attacks", statOrder = { 4815 }, level = 75, group = "AttackImpaleChancePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "attack" }, }, + ["IncreasedCastSpeedEldritchImplicit1"] = { type = "Exarch", affix = "", "8% increased Cast Speed", statOrder = { 1357 }, level = 75, group = "IncreasedCastSpeed", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedEldritchImplicit2"] = { type = "Exarch", affix = "", "9% increased Cast Speed", statOrder = { 1357 }, level = 75, group = "IncreasedCastSpeed", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedEldritchImplicit3"] = { type = "Exarch", affix = "", "10% increased Cast Speed", statOrder = { 1357 }, level = 75, group = "IncreasedCastSpeed", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedEldritchImplicit4"] = { type = "Exarch", affix = "", "11% increased Cast Speed", statOrder = { 1357 }, level = 75, group = "IncreasedCastSpeed", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedEldritchImplicit5"] = { type = "Exarch", affix = "", "12% increased Cast Speed", statOrder = { 1357 }, level = 75, group = "IncreasedCastSpeed", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedEldritchImplicit6"] = { type = "Exarch", affix = "", "13% increased Cast Speed", statOrder = { 1357 }, level = 75, group = "IncreasedCastSpeed", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 12% increased Cast Speed", statOrder = { 1357 }, level = 75, group = "IncreasedCastSpeedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 13% increased Cast Speed", statOrder = { 1357 }, level = 75, group = "IncreasedCastSpeedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Cast Speed", statOrder = { 1357 }, level = 75, group = "IncreasedCastSpeedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Cast Speed", statOrder = { 1357 }, level = 75, group = "IncreasedCastSpeedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Cast Speed", statOrder = { 1357 }, level = 75, group = "IncreasedCastSpeedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Cast Speed", statOrder = { 1357 }, level = 75, group = "IncreasedCastSpeedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Cast Speed", statOrder = { 1357 }, level = 75, group = "IncreasedCastSpeedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 17% increased Cast Speed", statOrder = { 1357 }, level = 75, group = "IncreasedCastSpeedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Cast Speed", statOrder = { 1357 }, level = 75, group = "IncreasedCastSpeedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Cast Speed", statOrder = { 1357 }, level = 75, group = "IncreasedCastSpeedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Cast Speed", statOrder = { 1357 }, level = 75, group = "IncreasedCastSpeedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Cast Speed", statOrder = { 1357 }, level = 75, group = "IncreasedCastSpeedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster", "speed" }, }, + ["SpellCriticalStrikeChanceEldritchImplicit1"] = { type = "Exarch", affix = "", "(28-30)% increased Spell Critical Strike Chance", statOrder = { 1369 }, level = 75, group = "SpellCriticalStrikeChance", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster", "critical" }, }, + ["SpellCriticalStrikeChanceEldritchImplicit2"] = { type = "Exarch", affix = "", "(31-33)% increased Spell Critical Strike Chance", statOrder = { 1369 }, level = 75, group = "SpellCriticalStrikeChance", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster", "critical" }, }, + ["SpellCriticalStrikeChanceEldritchImplicit3"] = { type = "Exarch", affix = "", "(34-36)% increased Spell Critical Strike Chance", statOrder = { 1369 }, level = 75, group = "SpellCriticalStrikeChance", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster", "critical" }, }, + ["SpellCriticalStrikeChanceEldritchImplicit4"] = { type = "Exarch", affix = "", "(37-39)% increased Spell Critical Strike Chance", statOrder = { 1369 }, level = 75, group = "SpellCriticalStrikeChance", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster", "critical" }, }, + ["SpellCriticalStrikeChanceEldritchImplicit5"] = { type = "Exarch", affix = "", "(40-42)% increased Spell Critical Strike Chance", statOrder = { 1369 }, level = 75, group = "SpellCriticalStrikeChance", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster", "critical" }, }, + ["SpellCriticalStrikeChanceEldritchImplicit6"] = { type = "Exarch", affix = "", "(43-45)% increased Spell Critical Strike Chance", statOrder = { 1369 }, level = 75, group = "SpellCriticalStrikeChance", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster", "critical" }, }, + ["SpellCriticalStrikeChanceEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (40-42)% increased Spell Critical Strike Chance", statOrder = { 1369 }, level = 75, group = "SpellCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "caster", "critical" }, }, + ["SpellCriticalStrikeChanceEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Spell Critical Strike Chance", statOrder = { 1369 }, level = 75, group = "SpellCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "critical" }, }, + ["SpellCriticalStrikeChanceEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Spell Critical Strike Chance", statOrder = { 1369 }, level = 75, group = "SpellCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "critical" }, }, + ["SpellCriticalStrikeChanceEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (49-51)% increased Spell Critical Strike Chance", statOrder = { 1369 }, level = 75, group = "SpellCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "critical" }, }, + ["SpellCriticalStrikeChanceEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (52-54)% increased Spell Critical Strike Chance", statOrder = { 1369 }, level = 75, group = "SpellCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "critical" }, }, + ["SpellCriticalStrikeChanceEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (55-57)% increased Spell Critical Strike Chance", statOrder = { 1369 }, level = 75, group = "SpellCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "critical" }, }, + ["SpellCriticalStrikeChanceEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (52-54)% increased Spell Critical Strike Chance", statOrder = { 1369 }, level = 75, group = "SpellCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "caster", "critical" }, }, + ["SpellCriticalStrikeChanceEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Spell Critical Strike Chance", statOrder = { 1369 }, level = 75, group = "SpellCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "caster", "critical" }, }, + ["SpellCriticalStrikeChanceEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Spell Critical Strike Chance", statOrder = { 1369 }, level = 75, group = "SpellCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "caster", "critical" }, }, + ["SpellCriticalStrikeChanceEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (61-63)% increased Spell Critical Strike Chance", statOrder = { 1369 }, level = 75, group = "SpellCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "caster", "critical" }, }, + ["SpellCriticalStrikeChanceEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (64-66)% increased Spell Critical Strike Chance", statOrder = { 1369 }, level = 75, group = "SpellCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "caster", "critical" }, }, + ["SpellCriticalStrikeChanceEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-69)% increased Spell Critical Strike Chance", statOrder = { 1369 }, level = 75, group = "SpellCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "caster", "critical" }, }, + ["SpellAddedFireDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Adds (10-13) to (20-23) Fire Damage to Spells", statOrder = { 1315 }, level = 75, group = "SpellAddedFireDamage", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Adds (10-14) to (21-25) Fire Damage to Spells", statOrder = { 1315 }, level = 75, group = "SpellAddedFireDamage", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Adds (11-15) to (24-27) Fire Damage to Spells", statOrder = { 1315 }, level = 75, group = "SpellAddedFireDamage", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Adds (13-16) to (26-30) Fire Damage to Spells", statOrder = { 1315 }, level = 75, group = "SpellAddedFireDamage", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Adds (14-18) to (29-33) Fire Damage to Spells", statOrder = { 1315 }, level = 75, group = "SpellAddedFireDamage", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Adds (15-20) to (32-36) Fire Damage to Spells", statOrder = { 1315 }, level = 75, group = "SpellAddedFireDamage", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (13-16) to (26-30) Fire Damage to Spells", statOrder = { 1315 }, level = 75, group = "SpellAddedFireDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (14-18) to (29-33) Fire Damage to Spells", statOrder = { 1315 }, level = 75, group = "SpellAddedFireDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (15-20) to (32-36) Fire Damage to Spells", statOrder = { 1315 }, level = 75, group = "SpellAddedFireDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (17-22) to (34-40) Fire Damage to Spells", statOrder = { 1315 }, level = 75, group = "SpellAddedFireDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (19-24) to (38-43) Fire Damage to Spells", statOrder = { 1315 }, level = 75, group = "SpellAddedFireDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (20-27) to (41-48) Fire Damage to Spells", statOrder = { 1315 }, level = 75, group = "SpellAddedFireDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (17-22) to (34-40) Fire Damage to Spells", statOrder = { 1315 }, level = 75, group = "SpellAddedFireDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (19-24) to (38-43) Fire Damage to Spells", statOrder = { 1315 }, level = 75, group = "SpellAddedFireDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (20-27) to (41-48) Fire Damage to Spells", statOrder = { 1315 }, level = 75, group = "SpellAddedFireDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (23-31) to (47-55) Fire Damage to Spells", statOrder = { 1315 }, level = 75, group = "SpellAddedFireDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (27-35) to (54-63) Fire Damage to Spells", statOrder = { 1315 }, level = 75, group = "SpellAddedFireDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (31-40) to (63-72) Fire Damage to Spells", statOrder = { 1315 }, level = 75, group = "SpellAddedFireDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedColdDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Adds (9-11) to (17-20) Cold Damage to Spells", statOrder = { 1316 }, level = 75, group = "SpellAddedColdDamage", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Adds (10-12) to (19-22) Cold Damage to Spells", statOrder = { 1316 }, level = 75, group = "SpellAddedColdDamage", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Adds (10-14) to (21-24) Cold Damage to Spells", statOrder = { 1316 }, level = 75, group = "SpellAddedColdDamage", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Adds (11-15) to (23-27) Cold Damage to Spells", statOrder = { 1316 }, level = 75, group = "SpellAddedColdDamage", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Adds (13-16) to (25-30) Cold Damage to Spells", statOrder = { 1316 }, level = 75, group = "SpellAddedColdDamage", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Adds (14-18) to (28-32) Cold Damage to Spells", statOrder = { 1316 }, level = 75, group = "SpellAddedColdDamage", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (11-15) to (23-27) Cold Damage to Spells", statOrder = { 1316 }, level = 75, group = "SpellAddedColdDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (13-16) to (25-30) Cold Damage to Spells", statOrder = { 1316 }, level = 75, group = "SpellAddedColdDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (14-18) to (28-32) Cold Damage to Spells", statOrder = { 1316 }, level = 75, group = "SpellAddedColdDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (15-20) to (30-36) Cold Damage to Spells", statOrder = { 1316 }, level = 75, group = "SpellAddedColdDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (17-21) to (34-39) Cold Damage to Spells", statOrder = { 1316 }, level = 75, group = "SpellAddedColdDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (18-24) to (37-43) Cold Damage to Spells", statOrder = { 1316 }, level = 75, group = "SpellAddedColdDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (15-20) to (30-36) Cold Damage to Spells", statOrder = { 1316 }, level = 75, group = "SpellAddedColdDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (17-21) to (34-39) Cold Damage to Spells", statOrder = { 1316 }, level = 75, group = "SpellAddedColdDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (18-24) to (37-43) Cold Damage to Spells", statOrder = { 1316 }, level = 75, group = "SpellAddedColdDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (21-27) to (42-50) Cold Damage to Spells", statOrder = { 1316 }, level = 75, group = "SpellAddedColdDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (24-32) to (48-57) Cold Damage to Spells", statOrder = { 1316 }, level = 75, group = "SpellAddedColdDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (28-36) to (56-65) Cold Damage to Spells", statOrder = { 1316 }, level = 75, group = "SpellAddedColdDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedLightningDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Adds (2-4) to (34-36) Lightning Damage to Spells", statOrder = { 1317 }, level = 75, group = "SpellAddedLightningDamage", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Adds (2-4) to (37-40) Lightning Damage to Spells", statOrder = { 1317 }, level = 75, group = "SpellAddedLightningDamage", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Adds (2-4) to (41-44) Lightning Damage to Spells", statOrder = { 1317 }, level = 75, group = "SpellAddedLightningDamage", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Adds (2-5) to (45-48) Lightning Damage to Spells", statOrder = { 1317 }, level = 75, group = "SpellAddedLightningDamage", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Adds (2-5) to (50-53) Lightning Damage to Spells", statOrder = { 1317 }, level = 75, group = "SpellAddedLightningDamage", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Adds (2-6) to (54-59) Lightning Damage to Spells", statOrder = { 1317 }, level = 75, group = "SpellAddedLightningDamage", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (2-5) to (45-48) Lightning Damage to Spells", statOrder = { 1317 }, level = 75, group = "SpellAddedLightningDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (2-5) to (50-53) Lightning Damage to Spells", statOrder = { 1317 }, level = 75, group = "SpellAddedLightningDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (2-6) to (54-59) Lightning Damage to Spells", statOrder = { 1317 }, level = 75, group = "SpellAddedLightningDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (3-6) to (60-64) Lightning Damage to Spells", statOrder = { 1317 }, level = 75, group = "SpellAddedLightningDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (3-7) to (66-70) Lightning Damage to Spells", statOrder = { 1317 }, level = 75, group = "SpellAddedLightningDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (3-8) to (72-78) Lightning Damage to Spells", statOrder = { 1317 }, level = 75, group = "SpellAddedLightningDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (3-6) to (60-64) Lightning Damage to Spells", statOrder = { 1317 }, level = 75, group = "SpellAddedLightningDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (3-7) to (66-70) Lightning Damage to Spells", statOrder = { 1317 }, level = 75, group = "SpellAddedLightningDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (3-8) to (72-78) Lightning Damage to Spells", statOrder = { 1317 }, level = 75, group = "SpellAddedLightningDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (4-8) to (83-90) Lightning Damage to Spells", statOrder = { 1317 }, level = 75, group = "SpellAddedLightningDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (4-10) to (96-103) Lightning Damage to Spells", statOrder = { 1317 }, level = 75, group = "SpellAddedLightningDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (5-11) to (110-119) Lightning Damage to Spells", statOrder = { 1317 }, level = 75, group = "SpellAddedLightningDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedPhysicalDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Adds (8-10) to (15-18) Physical Damage to Spells", statOrder = { 1314 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["SpellAddedPhysicalDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Adds (8-11) to (17-20) Physical Damage to Spells", statOrder = { 1314 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["SpellAddedPhysicalDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Adds (9-12) to (19-22) Physical Damage to Spells", statOrder = { 1314 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["SpellAddedPhysicalDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Adds (10-13) to (21-24) Physical Damage to Spells", statOrder = { 1314 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["SpellAddedPhysicalDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Adds (11-15) to (23-26) Physical Damage to Spells", statOrder = { 1314 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["SpellAddedPhysicalDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Adds (13-16) to (25-29) Physical Damage to Spells", statOrder = { 1314 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["SpellAddedPhysicalDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (10-13) to (21-24) Physical Damage to Spells", statOrder = { 1314 }, level = 75, group = "SpellAddedPhysicalDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["SpellAddedPhysicalDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (11-15) to (23-26) Physical Damage to Spells", statOrder = { 1314 }, level = 75, group = "SpellAddedPhysicalDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["SpellAddedPhysicalDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (13-16) to (25-29) Physical Damage to Spells", statOrder = { 1314 }, level = 75, group = "SpellAddedPhysicalDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["SpellAddedPhysicalDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (13-18) to (28-32) Physical Damage to Spells", statOrder = { 1314 }, level = 75, group = "SpellAddedPhysicalDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["SpellAddedPhysicalDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (15-19) to (31-35) Physical Damage to Spells", statOrder = { 1314 }, level = 75, group = "SpellAddedPhysicalDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["SpellAddedPhysicalDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (16-22) to (33-39) Physical Damage to Spells", statOrder = { 1314 }, level = 75, group = "SpellAddedPhysicalDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["SpellAddedPhysicalDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (13-18) to (28-32) Physical Damage to Spells", statOrder = { 1314 }, level = 75, group = "SpellAddedPhysicalDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["SpellAddedPhysicalDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (15-19) to (31-35) Physical Damage to Spells", statOrder = { 1314 }, level = 75, group = "SpellAddedPhysicalDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["SpellAddedPhysicalDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (16-22) to (33-39) Physical Damage to Spells", statOrder = { 1314 }, level = 75, group = "SpellAddedPhysicalDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["SpellAddedPhysicalDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (19-25) to (39-44) Physical Damage to Spells", statOrder = { 1314 }, level = 75, group = "SpellAddedPhysicalDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["SpellAddedPhysicalDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (22-28) to (45-51) Physical Damage to Spells", statOrder = { 1314 }, level = 75, group = "SpellAddedPhysicalDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["SpellAddedPhysicalDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (25-33) to (51-59) Physical Damage to Spells", statOrder = { 1314 }, level = 75, group = "SpellAddedPhysicalDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["SpellAddedChaosDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Adds (7-10) to (15-17) Chaos Damage to Spells", statOrder = { 1318 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["SpellAddedChaosDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Adds (8-10) to (16-19) Chaos Damage to Spells", statOrder = { 1318 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["SpellAddedChaosDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Adds (9-11) to (18-20) Chaos Damage to Spells", statOrder = { 1318 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["SpellAddedChaosDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Adds (10-13) to (20-23) Chaos Damage to Spells", statOrder = { 1318 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["SpellAddedChaosDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Adds (10-14) to (21-25) Chaos Damage to Spells", statOrder = { 1318 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["SpellAddedChaosDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Adds (11-15) to (24-27) Chaos Damage to Spells", statOrder = { 1318 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["SpellAddedChaosDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (10-13) to (20-23) Chaos Damage to Spells", statOrder = { 1318 }, level = 75, group = "SpellAddedChaosDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["SpellAddedChaosDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (10-14) to (21-25) Chaos Damage to Spells", statOrder = { 1318 }, level = 75, group = "SpellAddedChaosDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["SpellAddedChaosDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (11-15) to (24-27) Chaos Damage to Spells", statOrder = { 1318 }, level = 75, group = "SpellAddedChaosDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["SpellAddedChaosDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (13-16) to (26-30) Chaos Damage to Spells", statOrder = { 1318 }, level = 75, group = "SpellAddedChaosDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["SpellAddedChaosDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (14-18) to (29-33) Chaos Damage to Spells", statOrder = { 1318 }, level = 75, group = "SpellAddedChaosDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["SpellAddedChaosDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (15-20) to (32-36) Chaos Damage to Spells", statOrder = { 1318 }, level = 75, group = "SpellAddedChaosDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["SpellAddedChaosDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (13-16) to (26-30) Chaos Damage to Spells", statOrder = { 1318 }, level = 75, group = "SpellAddedChaosDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["SpellAddedChaosDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (14-18) to (29-33) Chaos Damage to Spells", statOrder = { 1318 }, level = 75, group = "SpellAddedChaosDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["SpellAddedChaosDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (15-20) to (32-36) Chaos Damage to Spells", statOrder = { 1318 }, level = 75, group = "SpellAddedChaosDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["SpellAddedChaosDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (18-23) to (36-41) Chaos Damage to Spells", statOrder = { 1318 }, level = 75, group = "SpellAddedChaosDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["SpellAddedChaosDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (20-27) to (41-48) Chaos Damage to Spells", statOrder = { 1318 }, level = 75, group = "SpellAddedChaosDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["SpellAddedChaosDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (23-31) to (47-55) Chaos Damage to Spells", statOrder = { 1318 }, level = 75, group = "SpellAddedChaosDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["FireDamageTakenGainedAsLifeEldritchImplicit1"] = { type = "Exarch", affix = "", "(7-8)% of Fire Damage taken Recouped as Life", statOrder = { 6457 }, level = 75, group = "FireDamageTakenGainedAsLife", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["FireDamageTakenGainedAsLifeEldritchImplicit2"] = { type = "Exarch", affix = "", "(9-10)% of Fire Damage taken Recouped as Life", statOrder = { 6457 }, level = 75, group = "FireDamageTakenGainedAsLife", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["FireDamageTakenGainedAsLifeEldritchImplicit3"] = { type = "Exarch", affix = "", "(11-12)% of Fire Damage taken Recouped as Life", statOrder = { 6457 }, level = 75, group = "FireDamageTakenGainedAsLife", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["FireDamageTakenGainedAsLifeEldritchImplicit4"] = { type = "Exarch", affix = "", "(13-14)% of Fire Damage taken Recouped as Life", statOrder = { 6457 }, level = 75, group = "FireDamageTakenGainedAsLife", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["FireDamageTakenGainedAsLifeEldritchImplicit5"] = { type = "Exarch", affix = "", "(15-16)% of Fire Damage taken Recouped as Life", statOrder = { 6457 }, level = 75, group = "FireDamageTakenGainedAsLife", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["FireDamageTakenGainedAsLifeEldritchImplicit6"] = { type = "Exarch", affix = "", "(17-18)% of Fire Damage taken Recouped as Life", statOrder = { 6457 }, level = 75, group = "FireDamageTakenGainedAsLife", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["FireDamageTakenGainedAsLifeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (13-14)% of Fire Damage taken Recouped as Life", statOrder = { 6457 }, level = 75, group = "FireDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "elemental", "fire" }, }, + ["FireDamageTakenGainedAsLifeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (15-16)% of Fire Damage taken Recouped as Life", statOrder = { 6457 }, level = 75, group = "FireDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "fire" }, }, + ["FireDamageTakenGainedAsLifeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (17-18)% of Fire Damage taken Recouped as Life", statOrder = { 6457 }, level = 75, group = "FireDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "fire" }, }, + ["FireDamageTakenGainedAsLifeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (19-20)% of Fire Damage taken Recouped as Life", statOrder = { 6457 }, level = 75, group = "FireDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "fire" }, }, + ["FireDamageTakenGainedAsLifeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-22)% of Fire Damage taken Recouped as Life", statOrder = { 6457 }, level = 75, group = "FireDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "fire" }, }, + ["FireDamageTakenGainedAsLifeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (23-24)% of Fire Damage taken Recouped as Life", statOrder = { 6457 }, level = 75, group = "FireDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "fire" }, }, + ["FireDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (19-20)% of Fire Damage taken Recouped as Life", statOrder = { 6457 }, level = 75, group = "FireDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "elemental", "fire" }, }, + ["FireDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (21-22)% of Fire Damage taken Recouped as Life", statOrder = { 6457 }, level = 75, group = "FireDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "elemental", "fire" }, }, + ["FireDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (23-24)% of Fire Damage taken Recouped as Life", statOrder = { 6457 }, level = 75, group = "FireDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "fire" }, }, + ["FireDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% of Fire Damage taken Recouped as Life", statOrder = { 6457 }, level = 75, group = "FireDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "fire" }, }, + ["FireDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% of Fire Damage taken Recouped as Life", statOrder = { 6457 }, level = 75, group = "FireDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "fire" }, }, + ["FireDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% of Fire Damage taken Recouped as Life", statOrder = { 6457 }, level = 75, group = "FireDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "fire" }, }, + ["ColdDamageTakenGainedAsLifeEldritchImplicit1"] = { type = "Exarch", affix = "", "(7-8)% of Cold Damage taken Recouped as Life", statOrder = { 5715 }, level = 75, group = "ColdDamageTakenGainedAsLife", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["ColdDamageTakenGainedAsLifeEldritchImplicit2"] = { type = "Exarch", affix = "", "(9-10)% of Cold Damage taken Recouped as Life", statOrder = { 5715 }, level = 75, group = "ColdDamageTakenGainedAsLife", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["ColdDamageTakenGainedAsLifeEldritchImplicit3"] = { type = "Exarch", affix = "", "(11-12)% of Cold Damage taken Recouped as Life", statOrder = { 5715 }, level = 75, group = "ColdDamageTakenGainedAsLife", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["ColdDamageTakenGainedAsLifeEldritchImplicit4"] = { type = "Exarch", affix = "", "(13-14)% of Cold Damage taken Recouped as Life", statOrder = { 5715 }, level = 75, group = "ColdDamageTakenGainedAsLife", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["ColdDamageTakenGainedAsLifeEldritchImplicit5"] = { type = "Exarch", affix = "", "(15-16)% of Cold Damage taken Recouped as Life", statOrder = { 5715 }, level = 75, group = "ColdDamageTakenGainedAsLife", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["ColdDamageTakenGainedAsLifeEldritchImplicit6"] = { type = "Exarch", affix = "", "(17-18)% of Cold Damage taken Recouped as Life", statOrder = { 5715 }, level = 75, group = "ColdDamageTakenGainedAsLife", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["ColdDamageTakenGainedAsLifeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (13-14)% of Cold Damage taken Recouped as Life", statOrder = { 5715 }, level = 75, group = "ColdDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "elemental", "cold" }, }, + ["ColdDamageTakenGainedAsLifeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (15-16)% of Cold Damage taken Recouped as Life", statOrder = { 5715 }, level = 75, group = "ColdDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "cold" }, }, + ["ColdDamageTakenGainedAsLifeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (17-18)% of Cold Damage taken Recouped as Life", statOrder = { 5715 }, level = 75, group = "ColdDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "cold" }, }, + ["ColdDamageTakenGainedAsLifeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (19-20)% of Cold Damage taken Recouped as Life", statOrder = { 5715 }, level = 75, group = "ColdDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "cold" }, }, + ["ColdDamageTakenGainedAsLifeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-22)% of Cold Damage taken Recouped as Life", statOrder = { 5715 }, level = 75, group = "ColdDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "cold" }, }, + ["ColdDamageTakenGainedAsLifeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (23-24)% of Cold Damage taken Recouped as Life", statOrder = { 5715 }, level = 75, group = "ColdDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "cold" }, }, + ["ColdDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (19-20)% of Cold Damage taken Recouped as Life", statOrder = { 5715 }, level = 75, group = "ColdDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "elemental", "cold" }, }, + ["ColdDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (21-22)% of Cold Damage taken Recouped as Life", statOrder = { 5715 }, level = 75, group = "ColdDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "elemental", "cold" }, }, + ["ColdDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (23-24)% of Cold Damage taken Recouped as Life", statOrder = { 5715 }, level = 75, group = "ColdDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "cold" }, }, + ["ColdDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% of Cold Damage taken Recouped as Life", statOrder = { 5715 }, level = 75, group = "ColdDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "cold" }, }, + ["ColdDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% of Cold Damage taken Recouped as Life", statOrder = { 5715 }, level = 75, group = "ColdDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "cold" }, }, + ["ColdDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% of Cold Damage taken Recouped as Life", statOrder = { 5715 }, level = 75, group = "ColdDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "cold" }, }, + ["LightningDamageTakenGainedAsLifeEldritchImplicit1"] = { type = "Exarch", affix = "", "(7-8)% of Lightning Damage taken Recouped as Life", statOrder = { 7311 }, level = 75, group = "LightningDamageTakenGainedAsLife", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["LightningDamageTakenGainedAsLifeEldritchImplicit2"] = { type = "Exarch", affix = "", "(9-10)% of Lightning Damage taken Recouped as Life", statOrder = { 7311 }, level = 75, group = "LightningDamageTakenGainedAsLife", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["LightningDamageTakenGainedAsLifeEldritchImplicit3"] = { type = "Exarch", affix = "", "(11-12)% of Lightning Damage taken Recouped as Life", statOrder = { 7311 }, level = 75, group = "LightningDamageTakenGainedAsLife", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["LightningDamageTakenGainedAsLifeEldritchImplicit4"] = { type = "Exarch", affix = "", "(13-14)% of Lightning Damage taken Recouped as Life", statOrder = { 7311 }, level = 75, group = "LightningDamageTakenGainedAsLife", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["LightningDamageTakenGainedAsLifeEldritchImplicit5"] = { type = "Exarch", affix = "", "(15-16)% of Lightning Damage taken Recouped as Life", statOrder = { 7311 }, level = 75, group = "LightningDamageTakenGainedAsLife", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["LightningDamageTakenGainedAsLifeEldritchImplicit6"] = { type = "Exarch", affix = "", "(17-18)% of Lightning Damage taken Recouped as Life", statOrder = { 7311 }, level = 75, group = "LightningDamageTakenGainedAsLife", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["LightningDamageTakenGainedAsLifeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (13-14)% of Lightning Damage taken Recouped as Life", statOrder = { 7311 }, level = 75, group = "LightningDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, }, + ["LightningDamageTakenGainedAsLifeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (15-16)% of Lightning Damage taken Recouped as Life", statOrder = { 7311 }, level = 75, group = "LightningDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, }, + ["LightningDamageTakenGainedAsLifeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (17-18)% of Lightning Damage taken Recouped as Life", statOrder = { 7311 }, level = 75, group = "LightningDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, }, + ["LightningDamageTakenGainedAsLifeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (19-20)% of Lightning Damage taken Recouped as Life", statOrder = { 7311 }, level = 75, group = "LightningDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, }, + ["LightningDamageTakenGainedAsLifeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-22)% of Lightning Damage taken Recouped as Life", statOrder = { 7311 }, level = 75, group = "LightningDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, }, + ["LightningDamageTakenGainedAsLifeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (23-24)% of Lightning Damage taken Recouped as Life", statOrder = { 7311 }, level = 75, group = "LightningDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, }, + ["LightningDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (19-20)% of Lightning Damage taken Recouped as Life", statOrder = { 7311 }, level = 75, group = "LightningDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, }, + ["LightningDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (21-22)% of Lightning Damage taken Recouped as Life", statOrder = { 7311 }, level = 75, group = "LightningDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, }, + ["LightningDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (23-24)% of Lightning Damage taken Recouped as Life", statOrder = { 7311 }, level = 75, group = "LightningDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, }, + ["LightningDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% of Lightning Damage taken Recouped as Life", statOrder = { 7311 }, level = 75, group = "LightningDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, }, + ["LightningDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% of Lightning Damage taken Recouped as Life", statOrder = { 7311 }, level = 75, group = "LightningDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, }, + ["LightningDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% of Lightning Damage taken Recouped as Life", statOrder = { 7311 }, level = 75, group = "LightningDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, }, + ["PhysicalDamageTakenGainedAsLifeEldritchImplicit1"] = { type = "Exarch", affix = "", "(7-8)% of Physical Damage taken Recouped as Life", statOrder = { 9451 }, level = 75, group = "PhysicalDamageTakenGainedAsLife", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["PhysicalDamageTakenGainedAsLifeEldritchImplicit2"] = { type = "Exarch", affix = "", "(9-10)% of Physical Damage taken Recouped as Life", statOrder = { 9451 }, level = 75, group = "PhysicalDamageTakenGainedAsLife", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["PhysicalDamageTakenGainedAsLifeEldritchImplicit3"] = { type = "Exarch", affix = "", "(11-12)% of Physical Damage taken Recouped as Life", statOrder = { 9451 }, level = 75, group = "PhysicalDamageTakenGainedAsLife", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["PhysicalDamageTakenGainedAsLifeEldritchImplicit4"] = { type = "Exarch", affix = "", "(13-14)% of Physical Damage taken Recouped as Life", statOrder = { 9451 }, level = 75, group = "PhysicalDamageTakenGainedAsLife", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["PhysicalDamageTakenGainedAsLifeEldritchImplicit5"] = { type = "Exarch", affix = "", "(15-16)% of Physical Damage taken Recouped as Life", statOrder = { 9451 }, level = 75, group = "PhysicalDamageTakenGainedAsLife", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["PhysicalDamageTakenGainedAsLifeEldritchImplicit6"] = { type = "Exarch", affix = "", "(17-18)% of Physical Damage taken Recouped as Life", statOrder = { 9451 }, level = 75, group = "PhysicalDamageTakenGainedAsLife", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["PhysicalDamageTakenGainedAsLifeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (13-14)% of Physical Damage taken Recouped as Life", statOrder = { 9451 }, level = 75, group = "PhysicalDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "physical" }, }, + ["PhysicalDamageTakenGainedAsLifeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (15-16)% of Physical Damage taken Recouped as Life", statOrder = { 9451 }, level = 75, group = "PhysicalDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "physical" }, }, + ["PhysicalDamageTakenGainedAsLifeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (17-18)% of Physical Damage taken Recouped as Life", statOrder = { 9451 }, level = 75, group = "PhysicalDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "physical" }, }, + ["PhysicalDamageTakenGainedAsLifeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (19-20)% of Physical Damage taken Recouped as Life", statOrder = { 9451 }, level = 75, group = "PhysicalDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "physical" }, }, + ["PhysicalDamageTakenGainedAsLifeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-22)% of Physical Damage taken Recouped as Life", statOrder = { 9451 }, level = 75, group = "PhysicalDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "physical" }, }, + ["PhysicalDamageTakenGainedAsLifeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (23-24)% of Physical Damage taken Recouped as Life", statOrder = { 9451 }, level = 75, group = "PhysicalDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "physical" }, }, + ["PhysicalDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (19-20)% of Physical Damage taken Recouped as Life", statOrder = { 9451 }, level = 75, group = "PhysicalDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "physical" }, }, + ["PhysicalDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (21-22)% of Physical Damage taken Recouped as Life", statOrder = { 9451 }, level = 75, group = "PhysicalDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "physical" }, }, + ["PhysicalDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (23-24)% of Physical Damage taken Recouped as Life", statOrder = { 9451 }, level = 75, group = "PhysicalDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "physical" }, }, + ["PhysicalDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% of Physical Damage taken Recouped as Life", statOrder = { 9451 }, level = 75, group = "PhysicalDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "physical" }, }, + ["PhysicalDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% of Physical Damage taken Recouped as Life", statOrder = { 9451 }, level = 75, group = "PhysicalDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "physical" }, }, + ["PhysicalDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% of Physical Damage taken Recouped as Life", statOrder = { 9451 }, level = 75, group = "PhysicalDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "physical" }, }, + ["CurseEffectFlammabilityEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Flammability Curse Effect", statOrder = { 3921 }, level = 75, group = "CurseEffectFlammability", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, + ["CurseEffectFlammabilityEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Flammability Curse Effect", statOrder = { 3921 }, level = 75, group = "CurseEffectFlammability", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, + ["CurseEffectFlammabilityEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Flammability Curse Effect", statOrder = { 3921 }, level = 75, group = "CurseEffectFlammability", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, + ["CurseEffectFlammabilityEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Flammability Curse Effect", statOrder = { 3921 }, level = 75, group = "CurseEffectFlammability", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, + ["CurseEffectFlammabilityEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Flammability Curse Effect", statOrder = { 3921 }, level = 75, group = "CurseEffectFlammability", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, + ["CurseEffectFlammabilityEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Flammability Curse Effect", statOrder = { 3921 }, level = 75, group = "CurseEffectFlammability", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, + ["CurseEffectFlammabilityEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Flammability Curse Effect", statOrder = { 3921 }, level = 75, group = "CurseEffectFlammabilityUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, + ["CurseEffectFlammabilityEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Flammability Curse Effect", statOrder = { 3921 }, level = 75, group = "CurseEffectFlammabilityUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, + ["CurseEffectFlammabilityEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Flammability Curse Effect", statOrder = { 3921 }, level = 75, group = "CurseEffectFlammabilityUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, + ["CurseEffectFlammabilityEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Flammability Curse Effect", statOrder = { 3921 }, level = 75, group = "CurseEffectFlammabilityUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, + ["CurseEffectFlammabilityEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Flammability Curse Effect", statOrder = { 3921 }, level = 75, group = "CurseEffectFlammabilityUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, + ["CurseEffectFlammabilityEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Flammability Curse Effect", statOrder = { 3921 }, level = 75, group = "CurseEffectFlammabilityUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, + ["CurseEffectFlammabilityEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Flammability Curse Effect", statOrder = { 3921 }, level = 75, group = "CurseEffectFlammabilityPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, + ["CurseEffectFlammabilityEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Flammability Curse Effect", statOrder = { 3921 }, level = 75, group = "CurseEffectFlammabilityPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, + ["CurseEffectFlammabilityEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Flammability Curse Effect", statOrder = { 3921 }, level = 75, group = "CurseEffectFlammabilityPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, + ["CurseEffectFlammabilityEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Flammability Curse Effect", statOrder = { 3921 }, level = 75, group = "CurseEffectFlammabilityPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, + ["CurseEffectFlammabilityEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Flammability Curse Effect", statOrder = { 3921 }, level = 75, group = "CurseEffectFlammabilityPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, + ["CurseEffectFlammabilityEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Flammability Curse Effect", statOrder = { 3921 }, level = 75, group = "CurseEffectFlammabilityPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, + ["CurseEffectFrostbiteEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Frostbite Curse Effect", statOrder = { 3922 }, level = 75, group = "CurseEffectFrostbite", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, + ["CurseEffectFrostbiteEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Frostbite Curse Effect", statOrder = { 3922 }, level = 75, group = "CurseEffectFrostbite", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, + ["CurseEffectFrostbiteEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Frostbite Curse Effect", statOrder = { 3922 }, level = 75, group = "CurseEffectFrostbite", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, + ["CurseEffectFrostbiteEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Frostbite Curse Effect", statOrder = { 3922 }, level = 75, group = "CurseEffectFrostbite", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, + ["CurseEffectFrostbiteEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Frostbite Curse Effect", statOrder = { 3922 }, level = 75, group = "CurseEffectFrostbite", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, + ["CurseEffectFrostbiteEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Frostbite Curse Effect", statOrder = { 3922 }, level = 75, group = "CurseEffectFrostbite", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, + ["CurseEffectFrostbiteEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Frostbite Curse Effect", statOrder = { 3922 }, level = 75, group = "CurseEffectFrostbiteUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, + ["CurseEffectFrostbiteEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Frostbite Curse Effect", statOrder = { 3922 }, level = 75, group = "CurseEffectFrostbiteUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, + ["CurseEffectFrostbiteEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Frostbite Curse Effect", statOrder = { 3922 }, level = 75, group = "CurseEffectFrostbiteUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, + ["CurseEffectFrostbiteEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Frostbite Curse Effect", statOrder = { 3922 }, level = 75, group = "CurseEffectFrostbiteUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, + ["CurseEffectFrostbiteEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Frostbite Curse Effect", statOrder = { 3922 }, level = 75, group = "CurseEffectFrostbiteUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, + ["CurseEffectFrostbiteEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Frostbite Curse Effect", statOrder = { 3922 }, level = 75, group = "CurseEffectFrostbiteUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, + ["CurseEffectFrostbiteEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Frostbite Curse Effect", statOrder = { 3922 }, level = 75, group = "CurseEffectFrostbitePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, + ["CurseEffectFrostbiteEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Frostbite Curse Effect", statOrder = { 3922 }, level = 75, group = "CurseEffectFrostbitePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, + ["CurseEffectFrostbiteEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Frostbite Curse Effect", statOrder = { 3922 }, level = 75, group = "CurseEffectFrostbitePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, + ["CurseEffectFrostbiteEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Frostbite Curse Effect", statOrder = { 3922 }, level = 75, group = "CurseEffectFrostbitePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, + ["CurseEffectFrostbiteEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Frostbite Curse Effect", statOrder = { 3922 }, level = 75, group = "CurseEffectFrostbitePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, + ["CurseEffectFrostbiteEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Frostbite Curse Effect", statOrder = { 3922 }, level = 75, group = "CurseEffectFrostbitePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, + ["CurseEffectConductivityEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Conductivity Curse Effect", statOrder = { 3918 }, level = 75, group = "CurseEffectConductivity", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, + ["CurseEffectConductivityEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Conductivity Curse Effect", statOrder = { 3918 }, level = 75, group = "CurseEffectConductivity", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, + ["CurseEffectConductivityEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Conductivity Curse Effect", statOrder = { 3918 }, level = 75, group = "CurseEffectConductivity", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, + ["CurseEffectConductivityEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Conductivity Curse Effect", statOrder = { 3918 }, level = 75, group = "CurseEffectConductivity", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, + ["CurseEffectConductivityEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Conductivity Curse Effect", statOrder = { 3918 }, level = 75, group = "CurseEffectConductivity", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, + ["CurseEffectConductivityEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Conductivity Curse Effect", statOrder = { 3918 }, level = 75, group = "CurseEffectConductivity", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, + ["CurseEffectConductivityEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Conductivity Curse Effect", statOrder = { 3918 }, level = 75, group = "CurseEffectConductivityUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, + ["CurseEffectConductivityEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Conductivity Curse Effect", statOrder = { 3918 }, level = 75, group = "CurseEffectConductivityUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, + ["CurseEffectConductivityEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Conductivity Curse Effect", statOrder = { 3918 }, level = 75, group = "CurseEffectConductivityUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, + ["CurseEffectConductivityEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Conductivity Curse Effect", statOrder = { 3918 }, level = 75, group = "CurseEffectConductivityUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, + ["CurseEffectConductivityEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Conductivity Curse Effect", statOrder = { 3918 }, level = 75, group = "CurseEffectConductivityUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, + ["CurseEffectConductivityEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Conductivity Curse Effect", statOrder = { 3918 }, level = 75, group = "CurseEffectConductivityUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, + ["CurseEffectConductivityEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Conductivity Curse Effect", statOrder = { 3918 }, level = 75, group = "CurseEffectConductivityPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, + ["CurseEffectConductivityEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Conductivity Curse Effect", statOrder = { 3918 }, level = 75, group = "CurseEffectConductivityPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, + ["CurseEffectConductivityEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Conductivity Curse Effect", statOrder = { 3918 }, level = 75, group = "CurseEffectConductivityPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, + ["CurseEffectConductivityEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Conductivity Curse Effect", statOrder = { 3918 }, level = 75, group = "CurseEffectConductivityPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, + ["CurseEffectConductivityEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Conductivity Curse Effect", statOrder = { 3918 }, level = 75, group = "CurseEffectConductivityPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, + ["CurseEffectConductivityEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Conductivity Curse Effect", statOrder = { 3918 }, level = 75, group = "CurseEffectConductivityPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, + ["CurseEffectVulnerabilityEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Vulnerability Curse Effect", statOrder = { 3924 }, level = 75, group = "CurseEffectVulnerability", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, + ["CurseEffectVulnerabilityEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Vulnerability Curse Effect", statOrder = { 3924 }, level = 75, group = "CurseEffectVulnerability", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, + ["CurseEffectVulnerabilityEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Vulnerability Curse Effect", statOrder = { 3924 }, level = 75, group = "CurseEffectVulnerability", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, + ["CurseEffectVulnerabilityEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Vulnerability Curse Effect", statOrder = { 3924 }, level = 75, group = "CurseEffectVulnerability", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, + ["CurseEffectVulnerabilityEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Vulnerability Curse Effect", statOrder = { 3924 }, level = 75, group = "CurseEffectVulnerability", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, + ["CurseEffectVulnerabilityEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Vulnerability Curse Effect", statOrder = { 3924 }, level = 75, group = "CurseEffectVulnerability", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, + ["CurseEffectVulnerabilityEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Vulnerability Curse Effect", statOrder = { 3924 }, level = 75, group = "CurseEffectVulnerabilityUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, + ["CurseEffectVulnerabilityEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Vulnerability Curse Effect", statOrder = { 3924 }, level = 75, group = "CurseEffectVulnerabilityUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, + ["CurseEffectVulnerabilityEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Vulnerability Curse Effect", statOrder = { 3924 }, level = 75, group = "CurseEffectVulnerabilityUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, + ["CurseEffectVulnerabilityEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Vulnerability Curse Effect", statOrder = { 3924 }, level = 75, group = "CurseEffectVulnerabilityUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, + ["CurseEffectVulnerabilityEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Vulnerability Curse Effect", statOrder = { 3924 }, level = 75, group = "CurseEffectVulnerabilityUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, + ["CurseEffectVulnerabilityEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Vulnerability Curse Effect", statOrder = { 3924 }, level = 75, group = "CurseEffectVulnerabilityUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, + ["CurseEffectVulnerabilityEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Vulnerability Curse Effect", statOrder = { 3924 }, level = 75, group = "CurseEffectVulnerabilityPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, + ["CurseEffectVulnerabilityEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Vulnerability Curse Effect", statOrder = { 3924 }, level = 75, group = "CurseEffectVulnerabilityPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, + ["CurseEffectVulnerabilityEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Vulnerability Curse Effect", statOrder = { 3924 }, level = 75, group = "CurseEffectVulnerabilityPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, + ["CurseEffectVulnerabilityEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Vulnerability Curse Effect", statOrder = { 3924 }, level = 75, group = "CurseEffectVulnerabilityPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, + ["CurseEffectVulnerabilityEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Vulnerability Curse Effect", statOrder = { 3924 }, level = 75, group = "CurseEffectVulnerabilityPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, + ["CurseEffectVulnerabilityEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Vulnerability Curse Effect", statOrder = { 3924 }, level = 75, group = "CurseEffectVulnerabilityPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, + ["CurseEffectElementalWeaknessEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Elemental Weakness Curse Effect", statOrder = { 3919 }, level = 75, group = "CurseEffectElementalWeakness", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, + ["CurseEffectElementalWeaknessEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Elemental Weakness Curse Effect", statOrder = { 3919 }, level = 75, group = "CurseEffectElementalWeakness", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, + ["CurseEffectElementalWeaknessEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Elemental Weakness Curse Effect", statOrder = { 3919 }, level = 75, group = "CurseEffectElementalWeakness", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, + ["CurseEffectElementalWeaknessEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Elemental Weakness Curse Effect", statOrder = { 3919 }, level = 75, group = "CurseEffectElementalWeakness", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, + ["CurseEffectElementalWeaknessEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Elemental Weakness Curse Effect", statOrder = { 3919 }, level = 75, group = "CurseEffectElementalWeakness", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, + ["CurseEffectElementalWeaknessEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Elemental Weakness Curse Effect", statOrder = { 3919 }, level = 75, group = "CurseEffectElementalWeakness", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, + ["CurseEffectElementalWeaknessEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Elemental Weakness Curse Effect", statOrder = { 3919 }, level = 75, group = "CurseEffectElementalWeaknessUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, + ["CurseEffectElementalWeaknessEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Elemental Weakness Curse Effect", statOrder = { 3919 }, level = 75, group = "CurseEffectElementalWeaknessUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, + ["CurseEffectElementalWeaknessEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Elemental Weakness Curse Effect", statOrder = { 3919 }, level = 75, group = "CurseEffectElementalWeaknessUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, + ["CurseEffectElementalWeaknessEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Elemental Weakness Curse Effect", statOrder = { 3919 }, level = 75, group = "CurseEffectElementalWeaknessUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, + ["CurseEffectElementalWeaknessEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Elemental Weakness Curse Effect", statOrder = { 3919 }, level = 75, group = "CurseEffectElementalWeaknessUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, + ["CurseEffectElementalWeaknessEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Elemental Weakness Curse Effect", statOrder = { 3919 }, level = 75, group = "CurseEffectElementalWeaknessUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, + ["CurseEffectElementalWeaknessEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Elemental Weakness Curse Effect", statOrder = { 3919 }, level = 75, group = "CurseEffectElementalWeaknessPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, + ["CurseEffectElementalWeaknessEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Elemental Weakness Curse Effect", statOrder = { 3919 }, level = 75, group = "CurseEffectElementalWeaknessPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, + ["CurseEffectElementalWeaknessEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Elemental Weakness Curse Effect", statOrder = { 3919 }, level = 75, group = "CurseEffectElementalWeaknessPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, + ["CurseEffectElementalWeaknessEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Elemental Weakness Curse Effect", statOrder = { 3919 }, level = 75, group = "CurseEffectElementalWeaknessPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, + ["CurseEffectElementalWeaknessEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Elemental Weakness Curse Effect", statOrder = { 3919 }, level = 75, group = "CurseEffectElementalWeaknessPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, + ["CurseEffectElementalWeaknessEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Elemental Weakness Curse Effect", statOrder = { 3919 }, level = 75, group = "CurseEffectElementalWeaknessPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, + ["CurseEffectDespairEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Despair Curse Effect", statOrder = { 6062 }, level = 75, group = "CurseEffectDespair", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["CurseEffectDespairEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Despair Curse Effect", statOrder = { 6062 }, level = 75, group = "CurseEffectDespair", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["CurseEffectDespairEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Despair Curse Effect", statOrder = { 6062 }, level = 75, group = "CurseEffectDespair", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["CurseEffectDespairEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Despair Curse Effect", statOrder = { 6062 }, level = 75, group = "CurseEffectDespair", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["CurseEffectDespairEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Despair Curse Effect", statOrder = { 6062 }, level = 75, group = "CurseEffectDespair", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["CurseEffectDespairEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Despair Curse Effect", statOrder = { 6062 }, level = 75, group = "CurseEffectDespair", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["CurseEffectDespairEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Despair Curse Effect", statOrder = { 6062 }, level = 75, group = "CurseEffectDespairUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, + ["CurseEffectDespairEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Despair Curse Effect", statOrder = { 6062 }, level = 75, group = "CurseEffectDespairUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, + ["CurseEffectDespairEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Despair Curse Effect", statOrder = { 6062 }, level = 75, group = "CurseEffectDespairUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, + ["CurseEffectDespairEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Despair Curse Effect", statOrder = { 6062 }, level = 75, group = "CurseEffectDespairUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, + ["CurseEffectDespairEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Despair Curse Effect", statOrder = { 6062 }, level = 75, group = "CurseEffectDespairUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, + ["CurseEffectDespairEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Despair Curse Effect", statOrder = { 6062 }, level = 75, group = "CurseEffectDespairUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, + ["CurseEffectDespairEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Despair Curse Effect", statOrder = { 6062 }, level = 75, group = "CurseEffectDespairPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, + ["CurseEffectDespairEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Despair Curse Effect", statOrder = { 6062 }, level = 75, group = "CurseEffectDespairPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, + ["CurseEffectDespairEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Despair Curse Effect", statOrder = { 6062 }, level = 75, group = "CurseEffectDespairPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, + ["CurseEffectDespairEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Despair Curse Effect", statOrder = { 6062 }, level = 75, group = "CurseEffectDespairPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, + ["CurseEffectDespairEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Despair Curse Effect", statOrder = { 6062 }, level = 75, group = "CurseEffectDespairPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, + ["CurseEffectDespairEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Despair Curse Effect", statOrder = { 6062 }, level = 75, group = "CurseEffectDespairPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, + ["CurseEffectTemporalChainsEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Temporal Chains Curse Effect", statOrder = { 3916 }, level = 75, group = "CurseEffectTemporalChains", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, + ["CurseEffectTemporalChainsEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Temporal Chains Curse Effect", statOrder = { 3916 }, level = 75, group = "CurseEffectTemporalChains", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, + ["CurseEffectTemporalChainsEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Temporal Chains Curse Effect", statOrder = { 3916 }, level = 75, group = "CurseEffectTemporalChains", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, + ["CurseEffectTemporalChainsEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Temporal Chains Curse Effect", statOrder = { 3916 }, level = 75, group = "CurseEffectTemporalChains", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, + ["CurseEffectTemporalChainsEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Temporal Chains Curse Effect", statOrder = { 3916 }, level = 75, group = "CurseEffectTemporalChains", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, + ["CurseEffectTemporalChainsEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Temporal Chains Curse Effect", statOrder = { 3916 }, level = 75, group = "CurseEffectTemporalChains", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, + ["CurseEffectTemporalChainsEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Temporal Chains Curse Effect", statOrder = { 3916 }, level = 75, group = "CurseEffectTemporalChainsUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, + ["CurseEffectTemporalChainsEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Temporal Chains Curse Effect", statOrder = { 3916 }, level = 75, group = "CurseEffectTemporalChainsUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, + ["CurseEffectTemporalChainsEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Temporal Chains Curse Effect", statOrder = { 3916 }, level = 75, group = "CurseEffectTemporalChainsUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, + ["CurseEffectTemporalChainsEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Temporal Chains Curse Effect", statOrder = { 3916 }, level = 75, group = "CurseEffectTemporalChainsUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, + ["CurseEffectTemporalChainsEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Temporal Chains Curse Effect", statOrder = { 3916 }, level = 75, group = "CurseEffectTemporalChainsUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, + ["CurseEffectTemporalChainsEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Temporal Chains Curse Effect", statOrder = { 3916 }, level = 75, group = "CurseEffectTemporalChainsUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, + ["CurseEffectTemporalChainsEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Temporal Chains Curse Effect", statOrder = { 3916 }, level = 75, group = "CurseEffectTemporalChainsPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, + ["CurseEffectTemporalChainsEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Temporal Chains Curse Effect", statOrder = { 3916 }, level = 75, group = "CurseEffectTemporalChainsPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, + ["CurseEffectTemporalChainsEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Temporal Chains Curse Effect", statOrder = { 3916 }, level = 75, group = "CurseEffectTemporalChainsPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, + ["CurseEffectTemporalChainsEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Temporal Chains Curse Effect", statOrder = { 3916 }, level = 75, group = "CurseEffectTemporalChainsPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, + ["CurseEffectTemporalChainsEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Temporal Chains Curse Effect", statOrder = { 3916 }, level = 75, group = "CurseEffectTemporalChainsPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, + ["CurseEffectTemporalChainsEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Temporal Chains Curse Effect", statOrder = { 3916 }, level = 75, group = "CurseEffectTemporalChainsPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, + ["CurseEffectEnfeebleEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Enfeeble Curse Effect", statOrder = { 3920 }, level = 75, group = "CurseEffectEnfeeble", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["CurseEffectEnfeebleEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Enfeeble Curse Effect", statOrder = { 3920 }, level = 75, group = "CurseEffectEnfeeble", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["CurseEffectEnfeebleEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Enfeeble Curse Effect", statOrder = { 3920 }, level = 75, group = "CurseEffectEnfeeble", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["CurseEffectEnfeebleEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Enfeeble Curse Effect", statOrder = { 3920 }, level = 75, group = "CurseEffectEnfeeble", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["CurseEffectEnfeebleEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Enfeeble Curse Effect", statOrder = { 3920 }, level = 75, group = "CurseEffectEnfeeble", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["CurseEffectEnfeebleEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Enfeeble Curse Effect", statOrder = { 3920 }, level = 75, group = "CurseEffectEnfeeble", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["CurseEffectEnfeebleEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Enfeeble Curse Effect", statOrder = { 3920 }, level = 75, group = "CurseEffectEnfeebleUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, + ["CurseEffectEnfeebleEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Enfeeble Curse Effect", statOrder = { 3920 }, level = 75, group = "CurseEffectEnfeebleUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, + ["CurseEffectEnfeebleEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Enfeeble Curse Effect", statOrder = { 3920 }, level = 75, group = "CurseEffectEnfeebleUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, + ["CurseEffectEnfeebleEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Enfeeble Curse Effect", statOrder = { 3920 }, level = 75, group = "CurseEffectEnfeebleUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, + ["CurseEffectEnfeebleEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Enfeeble Curse Effect", statOrder = { 3920 }, level = 75, group = "CurseEffectEnfeebleUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, + ["CurseEffectEnfeebleEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Enfeeble Curse Effect", statOrder = { 3920 }, level = 75, group = "CurseEffectEnfeebleUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, + ["CurseEffectEnfeebleEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Enfeeble Curse Effect", statOrder = { 3920 }, level = 75, group = "CurseEffectEnfeeblePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, + ["CurseEffectEnfeebleEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Enfeeble Curse Effect", statOrder = { 3920 }, level = 75, group = "CurseEffectEnfeeblePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, + ["CurseEffectEnfeebleEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Enfeeble Curse Effect", statOrder = { 3920 }, level = 75, group = "CurseEffectEnfeeblePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, + ["CurseEffectEnfeebleEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Enfeeble Curse Effect", statOrder = { 3920 }, level = 75, group = "CurseEffectEnfeeblePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, + ["CurseEffectEnfeebleEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Enfeeble Curse Effect", statOrder = { 3920 }, level = 75, group = "CurseEffectEnfeeblePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, + ["CurseEffectEnfeebleEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Enfeeble Curse Effect", statOrder = { 3920 }, level = 75, group = "CurseEffectEnfeeblePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, + ["CurseEffectPunishmentEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Punishment Curse Effect", statOrder = { 3923 }, level = 75, group = "CurseEffectPunishment", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["CurseEffectPunishmentEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Punishment Curse Effect", statOrder = { 3923 }, level = 75, group = "CurseEffectPunishment", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["CurseEffectPunishmentEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Punishment Curse Effect", statOrder = { 3923 }, level = 75, group = "CurseEffectPunishment", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["CurseEffectPunishmentEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Punishment Curse Effect", statOrder = { 3923 }, level = 75, group = "CurseEffectPunishment", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["CurseEffectPunishmentEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Punishment Curse Effect", statOrder = { 3923 }, level = 75, group = "CurseEffectPunishment", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["CurseEffectPunishmentEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Punishment Curse Effect", statOrder = { 3923 }, level = 75, group = "CurseEffectPunishment", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["CurseEffectPunishmentEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Punishment Curse Effect", statOrder = { 3923 }, level = 75, group = "CurseEffectPunishmentUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, + ["CurseEffectPunishmentEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Punishment Curse Effect", statOrder = { 3923 }, level = 75, group = "CurseEffectPunishmentUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, + ["CurseEffectPunishmentEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Punishment Curse Effect", statOrder = { 3923 }, level = 75, group = "CurseEffectPunishmentUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, + ["CurseEffectPunishmentEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Punishment Curse Effect", statOrder = { 3923 }, level = 75, group = "CurseEffectPunishmentUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, + ["CurseEffectPunishmentEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Punishment Curse Effect", statOrder = { 3923 }, level = 75, group = "CurseEffectPunishmentUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, + ["CurseEffectPunishmentEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Punishment Curse Effect", statOrder = { 3923 }, level = 75, group = "CurseEffectPunishmentUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, + ["CurseEffectPunishmentEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Punishment Curse Effect", statOrder = { 3923 }, level = 75, group = "CurseEffectPunishmentPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, + ["CurseEffectPunishmentEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Punishment Curse Effect", statOrder = { 3923 }, level = 75, group = "CurseEffectPunishmentPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, + ["CurseEffectPunishmentEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Punishment Curse Effect", statOrder = { 3923 }, level = 75, group = "CurseEffectPunishmentPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, + ["CurseEffectPunishmentEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Punishment Curse Effect", statOrder = { 3923 }, level = 75, group = "CurseEffectPunishmentPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, + ["CurseEffectPunishmentEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Punishment Curse Effect", statOrder = { 3923 }, level = 75, group = "CurseEffectPunishmentPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, + ["CurseEffectPunishmentEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Punishment Curse Effect", statOrder = { 3923 }, level = 75, group = "CurseEffectPunishmentPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, + ["ReducedAttackManaCostEldritchImplicit1"] = { type = "Exarch", affix = "", "(19-20)% reduced Mana Cost of Attacks", statOrder = { 4765 }, level = 75, group = "ReducedAttackManaCost", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["ReducedAttackManaCostEldritchImplicit2"] = { type = "Exarch", affix = "", "(21-22)% reduced Mana Cost of Attacks", statOrder = { 4765 }, level = 75, group = "ReducedAttackManaCost", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["ReducedAttackManaCostEldritchImplicit3"] = { type = "Exarch", affix = "", "(23-24)% reduced Mana Cost of Attacks", statOrder = { 4765 }, level = 75, group = "ReducedAttackManaCost", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["ReducedAttackManaCostEldritchImplicit4"] = { type = "Exarch", affix = "", "(25-26)% reduced Mana Cost of Attacks", statOrder = { 4765 }, level = 75, group = "ReducedAttackManaCost", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["ReducedAttackManaCostEldritchImplicit5"] = { type = "Exarch", affix = "", "(27-28)% reduced Mana Cost of Attacks", statOrder = { 4765 }, level = 75, group = "ReducedAttackManaCost", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["ReducedAttackManaCostEldritchImplicit6"] = { type = "Exarch", affix = "", "(29-30)% reduced Mana Cost of Attacks", statOrder = { 4765 }, level = 75, group = "ReducedAttackManaCost", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["ReducedAttackManaCostEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (25-26)% reduced Mana Cost of Attacks", statOrder = { 4765 }, level = 75, group = "ReducedAttackManaCostUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana", "attack" }, }, + ["ReducedAttackManaCostEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-28)% reduced Mana Cost of Attacks", statOrder = { 4765 }, level = 75, group = "ReducedAttackManaCostUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana", "attack" }, }, + ["ReducedAttackManaCostEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (29-30)% reduced Mana Cost of Attacks", statOrder = { 4765 }, level = 75, group = "ReducedAttackManaCostUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana", "attack" }, }, + ["ReducedAttackManaCostEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (31-32)% reduced Mana Cost of Attacks", statOrder = { 4765 }, level = 75, group = "ReducedAttackManaCostUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana", "attack" }, }, + ["ReducedAttackManaCostEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (33-34)% reduced Mana Cost of Attacks", statOrder = { 4765 }, level = 75, group = "ReducedAttackManaCostUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana", "attack" }, }, + ["ReducedAttackManaCostEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (35-36)% reduced Mana Cost of Attacks", statOrder = { 4765 }, level = 75, group = "ReducedAttackManaCostUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana", "attack" }, }, + ["ReducedAttackManaCostEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (31-32)% reduced Mana Cost of Attacks", statOrder = { 4765 }, level = 75, group = "ReducedAttackManaCostPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana", "attack" }, }, + ["ReducedAttackManaCostEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-34)% reduced Mana Cost of Attacks", statOrder = { 4765 }, level = 75, group = "ReducedAttackManaCostPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana", "attack" }, }, + ["ReducedAttackManaCostEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (35-36)% reduced Mana Cost of Attacks", statOrder = { 4765 }, level = 75, group = "ReducedAttackManaCostPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "mana", "attack" }, }, + ["ReducedAttackManaCostEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (37-38)% reduced Mana Cost of Attacks", statOrder = { 4765 }, level = 75, group = "ReducedAttackManaCostPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "mana", "attack" }, }, + ["ReducedAttackManaCostEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-40)% reduced Mana Cost of Attacks", statOrder = { 4765 }, level = 75, group = "ReducedAttackManaCostPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "mana", "attack" }, }, + ["ReducedAttackManaCostEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (41-42)% reduced Mana Cost of Attacks", statOrder = { 4765 }, level = 75, group = "ReducedAttackManaCostPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "mana", "attack" }, }, + ["MaximumLightningResistanceImplicitEldritchImplicit1"] = { type = "Exarch", affix = "", "+1% to maximum Lightning Resistance", statOrder = { 1545 }, level = 75, group = "MaximumLightningResistanceImplicit", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["MaximumLightningResistanceImplicitEldritchImplicit2"] = { type = "Exarch", affix = "", "+1% to maximum Lightning Resistance", statOrder = { 1545 }, level = 75, group = "MaximumLightningResistanceImplicit", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["MaximumLightningResistanceImplicitEldritchImplicit3"] = { type = "Exarch", affix = "", "+1% to maximum Lightning Resistance", statOrder = { 1545 }, level = 75, group = "MaximumLightningResistanceImplicit", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["MaximumLightningResistanceImplicitEldritchImplicit4"] = { type = "Exarch", affix = "", "+1% to maximum Lightning Resistance", statOrder = { 1545 }, level = 75, group = "MaximumLightningResistanceImplicit", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["MaximumLightningResistanceImplicitEldritchImplicit5"] = { type = "Exarch", affix = "", "+2% to maximum Lightning Resistance", statOrder = { 1545 }, level = 75, group = "MaximumLightningResistanceImplicit", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["MaximumLightningResistanceImplicitEldritchImplicit6"] = { type = "Exarch", affix = "", "+2% to maximum Lightning Resistance", statOrder = { 1545 }, level = 75, group = "MaximumLightningResistanceImplicit", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["MaximumLightningResistanceImplicitEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Lightning Resistance", statOrder = { 1545 }, level = 75, group = "MaximumLightningResistanceImplicitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["MaximumLightningResistanceImplicitEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Lightning Resistance", statOrder = { 1545 }, level = 75, group = "MaximumLightningResistanceImplicitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["MaximumLightningResistanceImplicitEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Lightning Resistance", statOrder = { 1545 }, level = 75, group = "MaximumLightningResistanceImplicitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["MaximumLightningResistanceImplicitEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Lightning Resistance", statOrder = { 1545 }, level = 75, group = "MaximumLightningResistanceImplicitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["MaximumLightningResistanceImplicitEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1545 }, level = 75, group = "MaximumLightningResistanceImplicitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["MaximumLightningResistanceImplicitEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1545 }, level = 75, group = "MaximumLightningResistanceImplicitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["MaximumLightningResistanceImplicitEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1545 }, level = 75, group = "MaximumLightningResistanceImplicitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["MaximumLightningResistanceImplicitEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1545 }, level = 75, group = "MaximumLightningResistanceImplicitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["MaximumLightningResistanceImplicitEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1545 }, level = 75, group = "MaximumLightningResistanceImplicitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["MaximumLightningResistanceImplicitEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1545 }, level = 75, group = "MaximumLightningResistanceImplicitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["MaximumLightningResistanceImplicitEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Lightning Resistance", statOrder = { 1545 }, level = 75, group = "MaximumLightningResistanceImplicitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["MaximumLightningResistanceImplicitEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Lightning Resistance", statOrder = { 1545 }, level = 75, group = "MaximumLightningResistanceImplicitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["IncreasedDamagePerPowerChargeEldritchImplicit1"] = { type = "Exarch", affix = "", "4% increased Damage per Power Charge", statOrder = { 5961 }, level = 75, group = "IncreasedDamagePerPowerCharge", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, }, + ["IncreasedDamagePerPowerChargeEldritchImplicit2"] = { type = "Exarch", affix = "", "4% increased Damage per Power Charge", statOrder = { 5961 }, level = 75, group = "IncreasedDamagePerPowerCharge", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, }, + ["IncreasedDamagePerPowerChargeEldritchImplicit3"] = { type = "Exarch", affix = "", "5% increased Damage per Power Charge", statOrder = { 5961 }, level = 75, group = "IncreasedDamagePerPowerCharge", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, }, + ["IncreasedDamagePerPowerChargeEldritchImplicit4"] = { type = "Exarch", affix = "", "5% increased Damage per Power Charge", statOrder = { 5961 }, level = 75, group = "IncreasedDamagePerPowerCharge", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, }, + ["IncreasedDamagePerPowerChargeEldritchImplicit5"] = { type = "Exarch", affix = "", "6% increased Damage per Power Charge", statOrder = { 5961 }, level = 75, group = "IncreasedDamagePerPowerCharge", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, }, + ["IncreasedDamagePerPowerChargeEldritchImplicit6"] = { type = "Exarch", affix = "", "6% increased Damage per Power Charge", statOrder = { 5961 }, level = 75, group = "IncreasedDamagePerPowerCharge", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, }, + ["IncreasedDamagePerPowerChargeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per Power Charge", statOrder = { 5961 }, level = 75, group = "IncreasedDamagePerPowerChargeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, }, + ["IncreasedDamagePerPowerChargeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per Power Charge", statOrder = { 5961 }, level = 75, group = "IncreasedDamagePerPowerChargeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, }, + ["IncreasedDamagePerPowerChargeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 6% increased Damage per Power Charge", statOrder = { 5961 }, level = 75, group = "IncreasedDamagePerPowerChargeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, }, + ["IncreasedDamagePerPowerChargeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 6% increased Damage per Power Charge", statOrder = { 5961 }, level = 75, group = "IncreasedDamagePerPowerChargeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, }, + ["IncreasedDamagePerPowerChargeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 7% increased Damage per Power Charge", statOrder = { 5961 }, level = 75, group = "IncreasedDamagePerPowerChargeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, }, + ["IncreasedDamagePerPowerChargeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 7% increased Damage per Power Charge", statOrder = { 5961 }, level = 75, group = "IncreasedDamagePerPowerChargeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, }, + ["IncreasedDamagePerPowerChargeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per Power Charge", statOrder = { 5961 }, level = 75, group = "IncreasedDamagePerPowerChargePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, }, + ["IncreasedDamagePerPowerChargeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per Power Charge", statOrder = { 5961 }, level = 75, group = "IncreasedDamagePerPowerChargePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, }, + ["IncreasedDamagePerPowerChargeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Damage per Power Charge", statOrder = { 5961 }, level = 75, group = "IncreasedDamagePerPowerChargePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, + ["IncreasedDamagePerPowerChargeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Damage per Power Charge", statOrder = { 5961 }, level = 75, group = "IncreasedDamagePerPowerChargePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, + ["IncreasedDamagePerPowerChargeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Damage per Power Charge", statOrder = { 5961 }, level = 75, group = "IncreasedDamagePerPowerChargePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, + ["IncreasedDamagePerPowerChargeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Damage per Power Charge", statOrder = { 5961 }, level = 75, group = "IncreasedDamagePerPowerChargePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, + ["MinionLifeEldritchImplicit1"] = { type = "Exarch", affix = "", "Minions have (14-16)% increased maximum Life", statOrder = { 1677 }, level = 75, group = "MinionLife", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life", "minion" }, }, + ["MinionLifeEldritchImplicit2"] = { type = "Exarch", affix = "", "Minions have (17-19)% increased maximum Life", statOrder = { 1677 }, level = 75, group = "MinionLife", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life", "minion" }, }, + ["MinionLifeEldritchImplicit3"] = { type = "Exarch", affix = "", "Minions have (20-22)% increased maximum Life", statOrder = { 1677 }, level = 75, group = "MinionLife", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life", "minion" }, }, + ["MinionLifeEldritchImplicit4"] = { type = "Exarch", affix = "", "Minions have (23-25)% increased maximum Life", statOrder = { 1677 }, level = 75, group = "MinionLife", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life", "minion" }, }, + ["MinionLifeEldritchImplicit5"] = { type = "Exarch", affix = "", "Minions have (26-27)% increased maximum Life", statOrder = { 1677 }, level = 75, group = "MinionLife", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life", "minion" }, }, + ["MinionLifeEldritchImplicit6"] = { type = "Exarch", affix = "", "Minions have (28-29)% increased maximum Life", statOrder = { 1677 }, level = 75, group = "MinionLife", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life", "minion" }, }, + ["MinionLifeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (20-22)% increased maximum Life", statOrder = { 1677 }, level = 75, group = "MinionLifeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "minion" }, }, + ["MinionLifeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (23-25)% increased maximum Life", statOrder = { 1677 }, level = 75, group = "MinionLifeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life", "minion" }, }, + ["MinionLifeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (26-28)% increased maximum Life", statOrder = { 1677 }, level = 75, group = "MinionLifeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life", "minion" }, }, + ["MinionLifeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (29-31)% increased maximum Life", statOrder = { 1677 }, level = 75, group = "MinionLifeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life", "minion" }, }, + ["MinionLifeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (32-33)% increased maximum Life", statOrder = { 1677 }, level = 75, group = "MinionLifeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life", "minion" }, }, + ["MinionLifeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (34-35)% increased maximum Life", statOrder = { 1677 }, level = 75, group = "MinionLifeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life", "minion" }, }, + ["MinionLifeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (26-28)% increased maximum Life", statOrder = { 1677 }, level = 75, group = "MinionLifePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "minion" }, }, + ["MinionLifeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (29-31)% increased maximum Life", statOrder = { 1677 }, level = 75, group = "MinionLifePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "minion" }, }, + ["MinionLifeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (32-34)% increased maximum Life", statOrder = { 1677 }, level = 75, group = "MinionLifePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "life", "minion" }, }, + ["MinionLifeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (35-37)% increased maximum Life", statOrder = { 1677 }, level = 75, group = "MinionLifePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "life", "minion" }, }, + ["MinionLifeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (38-39)% increased maximum Life", statOrder = { 1677 }, level = 75, group = "MinionLifePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "life", "minion" }, }, + ["MinionLifeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (40-41)% increased maximum Life", statOrder = { 1677 }, level = 75, group = "MinionLifePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "life", "minion" }, }, + ["MinionRunSpeedEldritchImplicit1"] = { type = "Exarch", affix = "", "Minions have (11-12)% increased Movement Speed", statOrder = { 1680 }, level = 75, group = "MinionRunSpeed", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "speed", "minion" }, }, + ["MinionRunSpeedEldritchImplicit2"] = { type = "Exarch", affix = "", "Minions have (13-14)% increased Movement Speed", statOrder = { 1680 }, level = 75, group = "MinionRunSpeed", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "speed", "minion" }, }, + ["MinionRunSpeedEldritchImplicit3"] = { type = "Exarch", affix = "", "Minions have (15-16)% increased Movement Speed", statOrder = { 1680 }, level = 75, group = "MinionRunSpeed", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "speed", "minion" }, }, + ["MinionRunSpeedEldritchImplicit4"] = { type = "Exarch", affix = "", "Minions have (17-18)% increased Movement Speed", statOrder = { 1680 }, level = 75, group = "MinionRunSpeed", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "speed", "minion" }, }, + ["MinionRunSpeedEldritchImplicit5"] = { type = "Exarch", affix = "", "Minions have (19-20)% increased Movement Speed", statOrder = { 1680 }, level = 75, group = "MinionRunSpeed", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "speed", "minion" }, }, + ["MinionRunSpeedEldritchImplicit6"] = { type = "Exarch", affix = "", "Minions have (21-22)% increased Movement Speed", statOrder = { 1680 }, level = 75, group = "MinionRunSpeed", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "speed", "minion" }, }, + ["MinionRunSpeedEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (13-15)% increased Movement Speed", statOrder = { 1680 }, level = 75, group = "MinionRunSpeedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed", "minion" }, }, + ["MinionRunSpeedEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (16-18)% increased Movement Speed", statOrder = { 1680 }, level = 75, group = "MinionRunSpeedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "speed", "minion" }, }, + ["MinionRunSpeedEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (19-21)% increased Movement Speed", statOrder = { 1680 }, level = 75, group = "MinionRunSpeedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "speed", "minion" }, }, + ["MinionRunSpeedEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (22-24)% increased Movement Speed", statOrder = { 1680 }, level = 75, group = "MinionRunSpeedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "speed", "minion" }, }, + ["MinionRunSpeedEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (25-26)% increased Movement Speed", statOrder = { 1680 }, level = 75, group = "MinionRunSpeedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "speed", "minion" }, }, + ["MinionRunSpeedEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (27-28)% increased Movement Speed", statOrder = { 1680 }, level = 75, group = "MinionRunSpeedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "speed", "minion" }, }, + ["MinionRunSpeedEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (19-21)% increased Movement Speed", statOrder = { 1680 }, level = 75, group = "MinionRunSpeedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed", "minion" }, }, + ["MinionRunSpeedEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (22-24)% increased Movement Speed", statOrder = { 1680 }, level = 75, group = "MinionRunSpeedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed", "minion" }, }, + ["MinionRunSpeedEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (25-27)% increased Movement Speed", statOrder = { 1680 }, level = 75, group = "MinionRunSpeedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "speed", "minion" }, }, + ["MinionRunSpeedEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (28-30)% increased Movement Speed", statOrder = { 1680 }, level = 75, group = "MinionRunSpeedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "speed", "minion" }, }, + ["MinionRunSpeedEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (31-32)% increased Movement Speed", statOrder = { 1680 }, level = 75, group = "MinionRunSpeedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "speed", "minion" }, }, + ["MinionRunSpeedEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (33-34)% increased Movement Speed", statOrder = { 1680 }, level = 75, group = "MinionRunSpeedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "speed", "minion" }, }, + ["AreaOfEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(7-8)% increased Area of Effect", statOrder = { 1791 }, level = 75, group = "AreaOfEffect", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, }, + ["AreaOfEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(9-10)% increased Area of Effect", statOrder = { 1791 }, level = 75, group = "AreaOfEffect", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, }, + ["AreaOfEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(11-12)% increased Area of Effect", statOrder = { 1791 }, level = 75, group = "AreaOfEffect", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, }, + ["AreaOfEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(13-14)% increased Area of Effect", statOrder = { 1791 }, level = 75, group = "AreaOfEffect", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, }, + ["AreaOfEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(15-16)% increased Area of Effect", statOrder = { 1791 }, level = 75, group = "AreaOfEffect", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, }, + ["AreaOfEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(17-18)% increased Area of Effect", statOrder = { 1791 }, level = 75, group = "AreaOfEffect", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, }, + ["AreaOfEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (13-14)% increased Area of Effect", statOrder = { 1791 }, level = 75, group = "AreaOfEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["AreaOfEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (15-16)% increased Area of Effect", statOrder = { 1791 }, level = 75, group = "AreaOfEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, }, + ["AreaOfEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (17-18)% increased Area of Effect", statOrder = { 1791 }, level = 75, group = "AreaOfEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, }, + ["AreaOfEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (19-20)% increased Area of Effect", statOrder = { 1791 }, level = 75, group = "AreaOfEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, }, + ["AreaOfEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-22)% increased Area of Effect", statOrder = { 1791 }, level = 75, group = "AreaOfEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, }, + ["AreaOfEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (23-24)% increased Area of Effect", statOrder = { 1791 }, level = 75, group = "AreaOfEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, }, + ["AreaOfEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (19-20)% increased Area of Effect", statOrder = { 1791 }, level = 75, group = "AreaOfEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["AreaOfEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (21-22)% increased Area of Effect", statOrder = { 1791 }, level = 75, group = "AreaOfEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["AreaOfEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (23-24)% increased Area of Effect", statOrder = { 1791 }, level = 75, group = "AreaOfEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, + ["AreaOfEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% increased Area of Effect", statOrder = { 1791 }, level = 75, group = "AreaOfEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, + ["AreaOfEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% increased Area of Effect", statOrder = { 1791 }, level = 75, group = "AreaOfEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, + ["AreaOfEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% increased Area of Effect", statOrder = { 1791 }, level = 75, group = "AreaOfEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, + ["EnergyShieldRegenerationEldritchImplicit1"] = { type = "Eater", affix = "", "21% increased Energy Shield Recharge Rate", statOrder = { 1476 }, level = 75, group = "EnergyShieldRegeneration", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldRegenerationEldritchImplicit2"] = { type = "Eater", affix = "", "22% increased Energy Shield Recharge Rate", statOrder = { 1476 }, level = 75, group = "EnergyShieldRegeneration", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldRegenerationEldritchImplicit3"] = { type = "Eater", affix = "", "23% increased Energy Shield Recharge Rate", statOrder = { 1476 }, level = 75, group = "EnergyShieldRegeneration", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldRegenerationEldritchImplicit4"] = { type = "Eater", affix = "", "24% increased Energy Shield Recharge Rate", statOrder = { 1476 }, level = 75, group = "EnergyShieldRegeneration", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldRegenerationEldritchImplicit5"] = { type = "Eater", affix = "", "25% increased Energy Shield Recharge Rate", statOrder = { 1476 }, level = 75, group = "EnergyShieldRegeneration", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldRegenerationEldritchImplicit6"] = { type = "Eater", affix = "", "26% increased Energy Shield Recharge Rate", statOrder = { 1476 }, level = 75, group = "EnergyShieldRegeneration", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldRegenerationEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 24% increased Energy Shield Recharge Rate", statOrder = { 1476 }, level = 75, group = "EnergyShieldRegenerationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldRegenerationEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% increased Energy Shield Recharge Rate", statOrder = { 1476 }, level = 75, group = "EnergyShieldRegenerationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldRegenerationEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 26% increased Energy Shield Recharge Rate", statOrder = { 1476 }, level = 75, group = "EnergyShieldRegenerationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldRegenerationEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 27% increased Energy Shield Recharge Rate", statOrder = { 1476 }, level = 75, group = "EnergyShieldRegenerationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldRegenerationEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 28% increased Energy Shield Recharge Rate", statOrder = { 1476 }, level = 75, group = "EnergyShieldRegenerationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldRegenerationEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 29% increased Energy Shield Recharge Rate", statOrder = { 1476 }, level = 75, group = "EnergyShieldRegenerationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldRegenerationEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 27% increased Energy Shield Recharge Rate", statOrder = { 1476 }, level = 75, group = "EnergyShieldRegenerationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldRegenerationEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 28% increased Energy Shield Recharge Rate", statOrder = { 1476 }, level = 75, group = "EnergyShieldRegenerationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldRegenerationEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 29% increased Energy Shield Recharge Rate", statOrder = { 1476 }, level = 75, group = "EnergyShieldRegenerationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldRegenerationEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 30% increased Energy Shield Recharge Rate", statOrder = { 1476 }, level = 75, group = "EnergyShieldRegenerationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldRegenerationEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 31% increased Energy Shield Recharge Rate", statOrder = { 1476 }, level = 75, group = "EnergyShieldRegenerationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldRegenerationEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 32% increased Energy Shield Recharge Rate", statOrder = { 1476 }, level = 75, group = "EnergyShieldRegenerationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldFromGlovesBootsEldritchImplicit1"] = { type = "Eater", affix = "", "(33-35)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6317 }, level = 75, group = "EnergyShieldFromGlovesBoots", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, + ["EnergyShieldFromGlovesBootsEldritchImplicit2"] = { type = "Eater", affix = "", "(36-38)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6317 }, level = 75, group = "EnergyShieldFromGlovesBoots", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, + ["EnergyShieldFromGlovesBootsEldritchImplicit3"] = { type = "Eater", affix = "", "(39-41)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6317 }, level = 75, group = "EnergyShieldFromGlovesBoots", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, + ["EnergyShieldFromGlovesBootsEldritchImplicit4"] = { type = "Eater", affix = "", "(42-44)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6317 }, level = 75, group = "EnergyShieldFromGlovesBoots", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, + ["EnergyShieldFromGlovesBootsEldritchImplicit5"] = { type = "Eater", affix = "", "(45-47)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6317 }, level = 75, group = "EnergyShieldFromGlovesBoots", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, + ["EnergyShieldFromGlovesBootsEldritchImplicit6"] = { type = "Eater", affix = "", "(48-50)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6317 }, level = 75, group = "EnergyShieldFromGlovesBoots", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, + ["EnergyShieldFromGlovesBootsEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (42-44)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6317 }, level = 75, group = "EnergyShieldFromGlovesBootsUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldFromGlovesBootsEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (45-47)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6317 }, level = 75, group = "EnergyShieldFromGlovesBootsUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldFromGlovesBootsEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (48-50)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6317 }, level = 75, group = "EnergyShieldFromGlovesBootsUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldFromGlovesBootsEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (51-53)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6317 }, level = 75, group = "EnergyShieldFromGlovesBootsUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldFromGlovesBootsEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (54-57)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6317 }, level = 75, group = "EnergyShieldFromGlovesBootsUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldFromGlovesBootsEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (58-61)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6317 }, level = 75, group = "EnergyShieldFromGlovesBootsUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldFromGlovesBootsEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6317 }, level = 75, group = "EnergyShieldFromGlovesBootsPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldFromGlovesBootsEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6317 }, level = 75, group = "EnergyShieldFromGlovesBootsPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldFromGlovesBootsEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6317 }, level = 75, group = "EnergyShieldFromGlovesBootsPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldFromGlovesBootsEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6317 }, level = 75, group = "EnergyShieldFromGlovesBootsPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldFromGlovesBootsEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6317 }, level = 75, group = "EnergyShieldFromGlovesBootsPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldFromGlovesBootsEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6317 }, level = 75, group = "EnergyShieldFromGlovesBootsPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "energy_shield" }, }, + ["FireResistancePenetrationEldritchImplicit1"] = { type = "Eater", affix = "", "Damage Penetrates 4% Fire Resistance", statOrder = { 2890 }, level = 75, group = "FireResistancePenetration", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireResistancePenetrationEldritchImplicit2"] = { type = "Eater", affix = "", "Damage Penetrates 4% Fire Resistance", statOrder = { 2890 }, level = 75, group = "FireResistancePenetration", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireResistancePenetrationEldritchImplicit3"] = { type = "Eater", affix = "", "Damage Penetrates 5% Fire Resistance", statOrder = { 2890 }, level = 75, group = "FireResistancePenetration", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireResistancePenetrationEldritchImplicit4"] = { type = "Eater", affix = "", "Damage Penetrates 5% Fire Resistance", statOrder = { 2890 }, level = 75, group = "FireResistancePenetration", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireResistancePenetrationEldritchImplicit5"] = { type = "Eater", affix = "", "Damage Penetrates 6% Fire Resistance", statOrder = { 2890 }, level = 75, group = "FireResistancePenetration", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireResistancePenetrationEldritchImplicit6"] = { type = "Eater", affix = "", "Damage Penetrates 6% Fire Resistance", statOrder = { 2890 }, level = 75, group = "FireResistancePenetration", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireResistancePenetrationEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 6% Fire Resistance", statOrder = { 2890 }, level = 75, group = "FireResistancePenetrationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireResistancePenetrationEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 6% Fire Resistance", statOrder = { 2890 }, level = 75, group = "FireResistancePenetrationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireResistancePenetrationEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 7% Fire Resistance", statOrder = { 2890 }, level = 75, group = "FireResistancePenetrationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireResistancePenetrationEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 7% Fire Resistance", statOrder = { 2890 }, level = 75, group = "FireResistancePenetrationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireResistancePenetrationEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 8% Fire Resistance", statOrder = { 2890 }, level = 75, group = "FireResistancePenetrationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireResistancePenetrationEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 8% Fire Resistance", statOrder = { 2890 }, level = 75, group = "FireResistancePenetrationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireResistancePenetrationEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 8% Fire Resistance", statOrder = { 2890 }, level = 75, group = "FireResistancePenetrationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireResistancePenetrationEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 8% Fire Resistance", statOrder = { 2890 }, level = 75, group = "FireResistancePenetrationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireResistancePenetrationEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 9% Fire Resistance", statOrder = { 2890 }, level = 75, group = "FireResistancePenetrationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireResistancePenetrationEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 9% Fire Resistance", statOrder = { 2890 }, level = 75, group = "FireResistancePenetrationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireResistancePenetrationEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 10% Fire Resistance", statOrder = { 2890 }, level = 75, group = "FireResistancePenetrationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireResistancePenetrationEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 10% Fire Resistance", statOrder = { 2890 }, level = 75, group = "FireResistancePenetrationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["ColdResistancePenetrationEldritchImplicit1"] = { type = "Eater", affix = "", "Damage Penetrates 4% Cold Resistance", statOrder = { 2892 }, level = 75, group = "ColdResistancePenetration", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdResistancePenetrationEldritchImplicit2"] = { type = "Eater", affix = "", "Damage Penetrates 4% Cold Resistance", statOrder = { 2892 }, level = 75, group = "ColdResistancePenetration", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdResistancePenetrationEldritchImplicit3"] = { type = "Eater", affix = "", "Damage Penetrates 5% Cold Resistance", statOrder = { 2892 }, level = 75, group = "ColdResistancePenetration", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdResistancePenetrationEldritchImplicit4"] = { type = "Eater", affix = "", "Damage Penetrates 5% Cold Resistance", statOrder = { 2892 }, level = 75, group = "ColdResistancePenetration", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdResistancePenetrationEldritchImplicit5"] = { type = "Eater", affix = "", "Damage Penetrates 6% Cold Resistance", statOrder = { 2892 }, level = 75, group = "ColdResistancePenetration", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdResistancePenetrationEldritchImplicit6"] = { type = "Eater", affix = "", "Damage Penetrates 6% Cold Resistance", statOrder = { 2892 }, level = 75, group = "ColdResistancePenetration", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdResistancePenetrationEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 6% Cold Resistance", statOrder = { 2892 }, level = 75, group = "ColdResistancePenetrationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdResistancePenetrationEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 6% Cold Resistance", statOrder = { 2892 }, level = 75, group = "ColdResistancePenetrationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdResistancePenetrationEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 7% Cold Resistance", statOrder = { 2892 }, level = 75, group = "ColdResistancePenetrationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdResistancePenetrationEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 7% Cold Resistance", statOrder = { 2892 }, level = 75, group = "ColdResistancePenetrationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdResistancePenetrationEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 8% Cold Resistance", statOrder = { 2892 }, level = 75, group = "ColdResistancePenetrationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdResistancePenetrationEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 8% Cold Resistance", statOrder = { 2892 }, level = 75, group = "ColdResistancePenetrationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdResistancePenetrationEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 8% Cold Resistance", statOrder = { 2892 }, level = 75, group = "ColdResistancePenetrationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdResistancePenetrationEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 8% Cold Resistance", statOrder = { 2892 }, level = 75, group = "ColdResistancePenetrationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdResistancePenetrationEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 9% Cold Resistance", statOrder = { 2892 }, level = 75, group = "ColdResistancePenetrationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdResistancePenetrationEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 9% Cold Resistance", statOrder = { 2892 }, level = 75, group = "ColdResistancePenetrationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdResistancePenetrationEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 10% Cold Resistance", statOrder = { 2892 }, level = 75, group = "ColdResistancePenetrationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdResistancePenetrationEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 10% Cold Resistance", statOrder = { 2892 }, level = 75, group = "ColdResistancePenetrationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["LightningResistancePenetrationEldritchImplicit1"] = { type = "Eater", affix = "", "Damage Penetrates 4% Lightning Resistance", statOrder = { 2893 }, level = 75, group = "LightningResistancePenetration", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningResistancePenetrationEldritchImplicit2"] = { type = "Eater", affix = "", "Damage Penetrates 4% Lightning Resistance", statOrder = { 2893 }, level = 75, group = "LightningResistancePenetration", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningResistancePenetrationEldritchImplicit3"] = { type = "Eater", affix = "", "Damage Penetrates 5% Lightning Resistance", statOrder = { 2893 }, level = 75, group = "LightningResistancePenetration", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningResistancePenetrationEldritchImplicit4"] = { type = "Eater", affix = "", "Damage Penetrates 5% Lightning Resistance", statOrder = { 2893 }, level = 75, group = "LightningResistancePenetration", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningResistancePenetrationEldritchImplicit5"] = { type = "Eater", affix = "", "Damage Penetrates 6% Lightning Resistance", statOrder = { 2893 }, level = 75, group = "LightningResistancePenetration", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningResistancePenetrationEldritchImplicit6"] = { type = "Eater", affix = "", "Damage Penetrates 6% Lightning Resistance", statOrder = { 2893 }, level = 75, group = "LightningResistancePenetration", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningResistancePenetrationEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 6% Lightning Resistance", statOrder = { 2893 }, level = 75, group = "LightningResistancePenetrationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningResistancePenetrationEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 6% Lightning Resistance", statOrder = { 2893 }, level = 75, group = "LightningResistancePenetrationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningResistancePenetrationEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 7% Lightning Resistance", statOrder = { 2893 }, level = 75, group = "LightningResistancePenetrationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningResistancePenetrationEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 7% Lightning Resistance", statOrder = { 2893 }, level = 75, group = "LightningResistancePenetrationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningResistancePenetrationEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 8% Lightning Resistance", statOrder = { 2893 }, level = 75, group = "LightningResistancePenetrationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningResistancePenetrationEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 8% Lightning Resistance", statOrder = { 2893 }, level = 75, group = "LightningResistancePenetrationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningResistancePenetrationEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 8% Lightning Resistance", statOrder = { 2893 }, level = 75, group = "LightningResistancePenetrationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningResistancePenetrationEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 8% Lightning Resistance", statOrder = { 2893 }, level = 75, group = "LightningResistancePenetrationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningResistancePenetrationEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 9% Lightning Resistance", statOrder = { 2893 }, level = 75, group = "LightningResistancePenetrationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningResistancePenetrationEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 9% Lightning Resistance", statOrder = { 2893 }, level = 75, group = "LightningResistancePenetrationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningResistancePenetrationEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 10% Lightning Resistance", statOrder = { 2893 }, level = 75, group = "LightningResistancePenetrationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningResistancePenetrationEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 10% Lightning Resistance", statOrder = { 2893 }, level = 75, group = "LightningResistancePenetrationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["IncreasedAilmentDurationEldritchImplicit1"] = { type = "Eater", affix = "", "(13-14)% increased Duration of Ailments on Enemies", statOrder = { 1771 }, level = 75, group = "IncreasedAilmentDuration", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, }, + ["IncreasedAilmentDurationEldritchImplicit2"] = { type = "Eater", affix = "", "(15-16)% increased Duration of Ailments on Enemies", statOrder = { 1771 }, level = 75, group = "IncreasedAilmentDuration", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, }, + ["IncreasedAilmentDurationEldritchImplicit3"] = { type = "Eater", affix = "", "(17-18)% increased Duration of Ailments on Enemies", statOrder = { 1771 }, level = 75, group = "IncreasedAilmentDuration", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, }, + ["IncreasedAilmentDurationEldritchImplicit4"] = { type = "Eater", affix = "", "(19-20)% increased Duration of Ailments on Enemies", statOrder = { 1771 }, level = 75, group = "IncreasedAilmentDuration", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, }, + ["IncreasedAilmentDurationEldritchImplicit5"] = { type = "Eater", affix = "", "(21-22)% increased Duration of Ailments on Enemies", statOrder = { 1771 }, level = 75, group = "IncreasedAilmentDuration", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, }, + ["IncreasedAilmentDurationEldritchImplicit6"] = { type = "Eater", affix = "", "(23-24)% increased Duration of Ailments on Enemies", statOrder = { 1771 }, level = 75, group = "IncreasedAilmentDuration", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, }, + ["IncreasedAilmentDurationEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (19-20)% increased Duration of Ailments on Enemies", statOrder = { 1771 }, level = 75, group = "IncreasedAilmentDurationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "ailment" }, }, + ["IncreasedAilmentDurationEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (21-22)% increased Duration of Ailments on Enemies", statOrder = { 1771 }, level = 75, group = "IncreasedAilmentDurationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, }, + ["IncreasedAilmentDurationEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (23-24)% increased Duration of Ailments on Enemies", statOrder = { 1771 }, level = 75, group = "IncreasedAilmentDurationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, }, + ["IncreasedAilmentDurationEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (25-26)% increased Duration of Ailments on Enemies", statOrder = { 1771 }, level = 75, group = "IncreasedAilmentDurationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, }, + ["IncreasedAilmentDurationEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (27-28)% increased Duration of Ailments on Enemies", statOrder = { 1771 }, level = 75, group = "IncreasedAilmentDurationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, }, + ["IncreasedAilmentDurationEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (29-30)% increased Duration of Ailments on Enemies", statOrder = { 1771 }, level = 75, group = "IncreasedAilmentDurationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, }, + ["IncreasedAilmentDurationEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% increased Duration of Ailments on Enemies", statOrder = { 1771 }, level = 75, group = "IncreasedAilmentDurationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "ailment" }, }, + ["IncreasedAilmentDurationEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% increased Duration of Ailments on Enemies", statOrder = { 1771 }, level = 75, group = "IncreasedAilmentDurationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "ailment" }, }, + ["IncreasedAilmentDurationEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% increased Duration of Ailments on Enemies", statOrder = { 1771 }, level = 75, group = "IncreasedAilmentDurationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "ailment" }, }, + ["IncreasedAilmentDurationEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (31-32)% increased Duration of Ailments on Enemies", statOrder = { 1771 }, level = 75, group = "IncreasedAilmentDurationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "ailment" }, }, + ["IncreasedAilmentDurationEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-34)% increased Duration of Ailments on Enemies", statOrder = { 1771 }, level = 75, group = "IncreasedAilmentDurationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "ailment" }, }, + ["IncreasedAilmentDurationEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (35-36)% increased Duration of Ailments on Enemies", statOrder = { 1771 }, level = 75, group = "IncreasedAilmentDurationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "ailment" }, }, + ["IncreasedAilmentEffectOnEnemiesEldritchImplicit1"] = { type = "Eater", affix = "", "(14-16)% increased Effect of Non-Damaging Ailments", statOrder = { 9296 }, level = 75, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, }, + ["IncreasedAilmentEffectOnEnemiesEldritchImplicit2"] = { type = "Eater", affix = "", "(17-19)% increased Effect of Non-Damaging Ailments", statOrder = { 9296 }, level = 75, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, }, + ["IncreasedAilmentEffectOnEnemiesEldritchImplicit3"] = { type = "Eater", affix = "", "(20-22)% increased Effect of Non-Damaging Ailments", statOrder = { 9296 }, level = 75, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, }, + ["IncreasedAilmentEffectOnEnemiesEldritchImplicit4"] = { type = "Eater", affix = "", "(23-25)% increased Effect of Non-Damaging Ailments", statOrder = { 9296 }, level = 75, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, }, + ["IncreasedAilmentEffectOnEnemiesEldritchImplicit5"] = { type = "Eater", affix = "", "(26-27)% increased Effect of Non-Damaging Ailments", statOrder = { 9296 }, level = 75, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, }, + ["IncreasedAilmentEffectOnEnemiesEldritchImplicit6"] = { type = "Eater", affix = "", "(28-29)% increased Effect of Non-Damaging Ailments", statOrder = { 9296 }, level = 75, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, }, + ["IncreasedAilmentEffectOnEnemiesEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (20-22)% increased Effect of Non-Damaging Ailments", statOrder = { 9296 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "ailment" }, }, + ["IncreasedAilmentEffectOnEnemiesEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (23-25)% increased Effect of Non-Damaging Ailments", statOrder = { 9296 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, }, + ["IncreasedAilmentEffectOnEnemiesEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (26-28)% increased Effect of Non-Damaging Ailments", statOrder = { 9296 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, }, + ["IncreasedAilmentEffectOnEnemiesEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (29-31)% increased Effect of Non-Damaging Ailments", statOrder = { 9296 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, }, + ["IncreasedAilmentEffectOnEnemiesEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (32-33)% increased Effect of Non-Damaging Ailments", statOrder = { 9296 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, }, + ["IncreasedAilmentEffectOnEnemiesEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (34-35)% increased Effect of Non-Damaging Ailments", statOrder = { 9296 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, }, + ["IncreasedAilmentEffectOnEnemiesEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-28)% increased Effect of Non-Damaging Ailments", statOrder = { 9296 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "ailment" }, }, + ["IncreasedAilmentEffectOnEnemiesEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-31)% increased Effect of Non-Damaging Ailments", statOrder = { 9296 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "ailment" }, }, + ["IncreasedAilmentEffectOnEnemiesEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (32-34)% increased Effect of Non-Damaging Ailments", statOrder = { 9296 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "ailment" }, }, + ["IncreasedAilmentEffectOnEnemiesEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (35-37)% increased Effect of Non-Damaging Ailments", statOrder = { 9296 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "ailment" }, }, + ["IncreasedAilmentEffectOnEnemiesEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (38-39)% increased Effect of Non-Damaging Ailments", statOrder = { 9296 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "ailment" }, }, + ["IncreasedAilmentEffectOnEnemiesEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (40-41)% increased Effect of Non-Damaging Ailments", statOrder = { 9296 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "ailment" }, }, + ["PhysicalDamageTakenAsFireUberEldritchImplicit1"] = { type = "Eater", affix = "", "6% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2356 }, level = 75, group = "PhysicalDamageTakenAsFireUber", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalDamageTakenAsFireUberEldritchImplicit2"] = { type = "Eater", affix = "", "6% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2356 }, level = 75, group = "PhysicalDamageTakenAsFireUber", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalDamageTakenAsFireUberEldritchImplicit3"] = { type = "Eater", affix = "", "7% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2356 }, level = 75, group = "PhysicalDamageTakenAsFireUber", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalDamageTakenAsFireUberEldritchImplicit4"] = { type = "Eater", affix = "", "7% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2356 }, level = 75, group = "PhysicalDamageTakenAsFireUber", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalDamageTakenAsFireUberEldritchImplicit5"] = { type = "Eater", affix = "", "8% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2356 }, level = 75, group = "PhysicalDamageTakenAsFireUber", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalDamageTakenAsFireUberEldritchImplicit6"] = { type = "Eater", affix = "", "8% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2356 }, level = 75, group = "PhysicalDamageTakenAsFireUber", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalDamageTakenAsFireUberEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2356 }, level = 75, group = "PhysicalDamageTakenAsFireUberUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalDamageTakenAsFireUberEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2356 }, level = 75, group = "PhysicalDamageTakenAsFireUberUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalDamageTakenAsFireUberEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2356 }, level = 75, group = "PhysicalDamageTakenAsFireUberUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalDamageTakenAsFireUberEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2356 }, level = 75, group = "PhysicalDamageTakenAsFireUberUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalDamageTakenAsFireUberEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2356 }, level = 75, group = "PhysicalDamageTakenAsFireUberUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalDamageTakenAsFireUberEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2356 }, level = 75, group = "PhysicalDamageTakenAsFireUberUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalDamageTakenAsFireUberEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2356 }, level = 75, group = "PhysicalDamageTakenAsFireUberPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalDamageTakenAsFireUberEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2356 }, level = 75, group = "PhysicalDamageTakenAsFireUberPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalDamageTakenAsFireUberEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2356 }, level = 75, group = "PhysicalDamageTakenAsFireUberPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalDamageTakenAsFireUberEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2356 }, level = 75, group = "PhysicalDamageTakenAsFireUberPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalDamageTakenAsFireUberEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2356 }, level = 75, group = "PhysicalDamageTakenAsFireUberPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalDamageTakenAsFireUberEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2356 }, level = 75, group = "PhysicalDamageTakenAsFireUberPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalDamageTakenAsColdUberEldritchImplicit1"] = { type = "Eater", affix = "", "6% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2357 }, level = 75, group = "PhysicalDamageTakenAsColdUber", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalDamageTakenAsColdUberEldritchImplicit2"] = { type = "Eater", affix = "", "6% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2357 }, level = 75, group = "PhysicalDamageTakenAsColdUber", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalDamageTakenAsColdUberEldritchImplicit3"] = { type = "Eater", affix = "", "7% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2357 }, level = 75, group = "PhysicalDamageTakenAsColdUber", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalDamageTakenAsColdUberEldritchImplicit4"] = { type = "Eater", affix = "", "7% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2357 }, level = 75, group = "PhysicalDamageTakenAsColdUber", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalDamageTakenAsColdUberEldritchImplicit5"] = { type = "Eater", affix = "", "8% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2357 }, level = 75, group = "PhysicalDamageTakenAsColdUber", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalDamageTakenAsColdUberEldritchImplicit6"] = { type = "Eater", affix = "", "8% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2357 }, level = 75, group = "PhysicalDamageTakenAsColdUber", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalDamageTakenAsColdUberEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2357 }, level = 75, group = "PhysicalDamageTakenAsColdUberUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalDamageTakenAsColdUberEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2357 }, level = 75, group = "PhysicalDamageTakenAsColdUberUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalDamageTakenAsColdUberEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2357 }, level = 75, group = "PhysicalDamageTakenAsColdUberUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalDamageTakenAsColdUberEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2357 }, level = 75, group = "PhysicalDamageTakenAsColdUberUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalDamageTakenAsColdUberEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2357 }, level = 75, group = "PhysicalDamageTakenAsColdUberUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalDamageTakenAsColdUberEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2357 }, level = 75, group = "PhysicalDamageTakenAsColdUberUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalDamageTakenAsColdUberEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2357 }, level = 75, group = "PhysicalDamageTakenAsColdUberPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalDamageTakenAsColdUberEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2357 }, level = 75, group = "PhysicalDamageTakenAsColdUberPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalDamageTakenAsColdUberEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2357 }, level = 75, group = "PhysicalDamageTakenAsColdUberPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalDamageTakenAsColdUberEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2357 }, level = 75, group = "PhysicalDamageTakenAsColdUberPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalDamageTakenAsColdUberEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2357 }, level = 75, group = "PhysicalDamageTakenAsColdUberPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalDamageTakenAsColdUberEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2357 }, level = 75, group = "PhysicalDamageTakenAsColdUberPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalDamageTakenAsLightningUberEldritchImplicit1"] = { type = "Eater", affix = "", "6% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2358 }, level = 75, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalDamageTakenAsLightningUberEldritchImplicit2"] = { type = "Eater", affix = "", "6% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2358 }, level = 75, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalDamageTakenAsLightningUberEldritchImplicit3"] = { type = "Eater", affix = "", "7% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2358 }, level = 75, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalDamageTakenAsLightningUberEldritchImplicit4"] = { type = "Eater", affix = "", "7% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2358 }, level = 75, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalDamageTakenAsLightningUberEldritchImplicit5"] = { type = "Eater", affix = "", "8% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2358 }, level = 75, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalDamageTakenAsLightningUberEldritchImplicit6"] = { type = "Eater", affix = "", "8% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2358 }, level = 75, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalDamageTakenAsLightningUberEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2358 }, level = 75, group = "PhysicalDamageTakenAsLightningUberUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalDamageTakenAsLightningUberEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2358 }, level = 75, group = "PhysicalDamageTakenAsLightningUberUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalDamageTakenAsLightningUberEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2358 }, level = 75, group = "PhysicalDamageTakenAsLightningUberUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalDamageTakenAsLightningUberEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2358 }, level = 75, group = "PhysicalDamageTakenAsLightningUberUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalDamageTakenAsLightningUberEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2358 }, level = 75, group = "PhysicalDamageTakenAsLightningUberUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalDamageTakenAsLightningUberEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2358 }, level = 75, group = "PhysicalDamageTakenAsLightningUberUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalDamageTakenAsLightningUberEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2358 }, level = 75, group = "PhysicalDamageTakenAsLightningUberPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalDamageTakenAsLightningUberEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2358 }, level = 75, group = "PhysicalDamageTakenAsLightningUberPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalDamageTakenAsLightningUberEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2358 }, level = 75, group = "PhysicalDamageTakenAsLightningUberPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalDamageTakenAsLightningUberEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2358 }, level = 75, group = "PhysicalDamageTakenAsLightningUberPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalDamageTakenAsLightningUberEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2358 }, level = 75, group = "PhysicalDamageTakenAsLightningUberPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalDamageTakenAsLightningUberEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2358 }, level = 75, group = "PhysicalDamageTakenAsLightningUberPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalDamageTakenAsChaosUberEldritchImplicit1"] = { type = "Eater", affix = "", "6% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2360 }, level = 75, group = "PhysicalDamageTakenAsChaosUber", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysicalDamageTakenAsChaosUberEldritchImplicit2"] = { type = "Eater", affix = "", "6% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2360 }, level = 75, group = "PhysicalDamageTakenAsChaosUber", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysicalDamageTakenAsChaosUberEldritchImplicit3"] = { type = "Eater", affix = "", "7% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2360 }, level = 75, group = "PhysicalDamageTakenAsChaosUber", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysicalDamageTakenAsChaosUberEldritchImplicit4"] = { type = "Eater", affix = "", "7% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2360 }, level = 75, group = "PhysicalDamageTakenAsChaosUber", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysicalDamageTakenAsChaosUberEldritchImplicit5"] = { type = "Eater", affix = "", "8% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2360 }, level = 75, group = "PhysicalDamageTakenAsChaosUber", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysicalDamageTakenAsChaosUberEldritchImplicit6"] = { type = "Eater", affix = "", "8% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2360 }, level = 75, group = "PhysicalDamageTakenAsChaosUber", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysicalDamageTakenAsChaosUberEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2360 }, level = 75, group = "PhysicalDamageTakenAsChaosUberUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysicalDamageTakenAsChaosUberEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2360 }, level = 75, group = "PhysicalDamageTakenAsChaosUberUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysicalDamageTakenAsChaosUberEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2360 }, level = 75, group = "PhysicalDamageTakenAsChaosUberUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysicalDamageTakenAsChaosUberEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2360 }, level = 75, group = "PhysicalDamageTakenAsChaosUberUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysicalDamageTakenAsChaosUberEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2360 }, level = 75, group = "PhysicalDamageTakenAsChaosUberUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysicalDamageTakenAsChaosUberEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2360 }, level = 75, group = "PhysicalDamageTakenAsChaosUberUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysicalDamageTakenAsChaosUberEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2360 }, level = 75, group = "PhysicalDamageTakenAsChaosUberPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysicalDamageTakenAsChaosUberEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2360 }, level = 75, group = "PhysicalDamageTakenAsChaosUberPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysicalDamageTakenAsChaosUberEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2360 }, level = 75, group = "PhysicalDamageTakenAsChaosUberPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysicalDamageTakenAsChaosUberEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2360 }, level = 75, group = "PhysicalDamageTakenAsChaosUberPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysicalDamageTakenAsChaosUberEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2360 }, level = 75, group = "PhysicalDamageTakenAsChaosUberPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysicalDamageTakenAsChaosUberEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2360 }, level = 75, group = "PhysicalDamageTakenAsChaosUberPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysicalDamageTakenAsFireBodyUberEldritchImplicit1"] = { type = "Eater", affix = "", "10% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2356 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUber", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalDamageTakenAsFireBodyUberEldritchImplicit2"] = { type = "Eater", affix = "", "10% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2356 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUber", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalDamageTakenAsFireBodyUberEldritchImplicit3"] = { type = "Eater", affix = "", "11% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2356 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUber", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalDamageTakenAsFireBodyUberEldritchImplicit4"] = { type = "Eater", affix = "", "11% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2356 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUber", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalDamageTakenAsFireBodyUberEldritchImplicit5"] = { type = "Eater", affix = "", "12% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2356 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUber", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalDamageTakenAsFireBodyUberEldritchImplicit6"] = { type = "Eater", affix = "", "12% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2356 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUber", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2356 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2356 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2356 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2356 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 16% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2356 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 16% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2356 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2356 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2356 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2356 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2356 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2356 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2356 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalDamageTakenAsColdBodyUberEldritchImplicit1"] = { type = "Eater", affix = "", "10% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2357 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUber", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalDamageTakenAsColdBodyUberEldritchImplicit2"] = { type = "Eater", affix = "", "10% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2357 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUber", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalDamageTakenAsColdBodyUberEldritchImplicit3"] = { type = "Eater", affix = "", "11% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2357 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUber", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalDamageTakenAsColdBodyUberEldritchImplicit4"] = { type = "Eater", affix = "", "11% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2357 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUber", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalDamageTakenAsColdBodyUberEldritchImplicit5"] = { type = "Eater", affix = "", "12% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2357 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUber", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalDamageTakenAsColdBodyUberEldritchImplicit6"] = { type = "Eater", affix = "", "12% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2357 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUber", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2357 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2357 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2357 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2357 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 16% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2357 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 16% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2357 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2357 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2357 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2357 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2357 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2357 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2357 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicit1"] = { type = "Eater", affix = "", "10% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2358 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUber", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicit2"] = { type = "Eater", affix = "", "10% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2358 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUber", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicit3"] = { type = "Eater", affix = "", "11% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2358 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUber", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicit4"] = { type = "Eater", affix = "", "11% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2358 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUber", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicit5"] = { type = "Eater", affix = "", "12% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2358 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUber", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicit6"] = { type = "Eater", affix = "", "12% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2358 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUber", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2358 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2358 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2358 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2358 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 16% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2358 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 16% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2358 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2358 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2358 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2358 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2358 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2358 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2358 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicit1"] = { type = "Eater", affix = "", "10% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2360 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUber", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicit2"] = { type = "Eater", affix = "", "10% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2360 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUber", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicit3"] = { type = "Eater", affix = "", "11% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2360 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUber", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicit4"] = { type = "Eater", affix = "", "11% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2360 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUber", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicit5"] = { type = "Eater", affix = "", "12% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2360 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUber", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicit6"] = { type = "Eater", affix = "", "12% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2360 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUber", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2360 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2360 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2360 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2360 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 16% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2360 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 16% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2360 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2360 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2360 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2360 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2360 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2360 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2360 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "chaos" }, }, + ["ManaReservationEfficiencyEldritchImplicit1"] = { type = "Eater", affix = "", "7% increased Mana Reservation Efficiency of Skills", statOrder = { 2137 }, level = 75, group = "ManaReservationEfficiency", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resource", "mana" }, }, + ["ManaReservationEfficiencyEldritchImplicit2"] = { type = "Eater", affix = "", "8% increased Mana Reservation Efficiency of Skills", statOrder = { 2137 }, level = 75, group = "ManaReservationEfficiency", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resource", "mana" }, }, + ["ManaReservationEfficiencyEldritchImplicit3"] = { type = "Eater", affix = "", "9% increased Mana Reservation Efficiency of Skills", statOrder = { 2137 }, level = 75, group = "ManaReservationEfficiency", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resource", "mana" }, }, + ["ManaReservationEfficiencyEldritchImplicit4"] = { type = "Eater", affix = "", "10% increased Mana Reservation Efficiency of Skills", statOrder = { 2137 }, level = 75, group = "ManaReservationEfficiency", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resource", "mana" }, }, + ["ManaReservationEfficiencyEldritchImplicit5"] = { type = "Eater", affix = "", "11% increased Mana Reservation Efficiency of Skills", statOrder = { 2137 }, level = 75, group = "ManaReservationEfficiency", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resource", "mana" }, }, + ["ManaReservationEfficiencyEldritchImplicit6"] = { type = "Eater", affix = "", "12% increased Mana Reservation Efficiency of Skills", statOrder = { 2137 }, level = 75, group = "ManaReservationEfficiency", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resource", "mana" }, }, + ["ManaReservationEfficiencyEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% increased Mana Reservation Efficiency of Skills", statOrder = { 2137 }, level = 75, group = "ManaReservationEfficiencyUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "mana" }, }, + ["ManaReservationEfficiencyEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 11% increased Mana Reservation Efficiency of Skills", statOrder = { 2137 }, level = 75, group = "ManaReservationEfficiencyUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resource", "mana" }, }, + ["ManaReservationEfficiencyEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 12% increased Mana Reservation Efficiency of Skills", statOrder = { 2137 }, level = 75, group = "ManaReservationEfficiencyUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resource", "mana" }, }, + ["ManaReservationEfficiencyEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 13% increased Mana Reservation Efficiency of Skills", statOrder = { 2137 }, level = 75, group = "ManaReservationEfficiencyUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resource", "mana" }, }, + ["ManaReservationEfficiencyEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% increased Mana Reservation Efficiency of Skills", statOrder = { 2137 }, level = 75, group = "ManaReservationEfficiencyUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resource", "mana" }, }, + ["ManaReservationEfficiencyEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% increased Mana Reservation Efficiency of Skills", statOrder = { 2137 }, level = 75, group = "ManaReservationEfficiencyUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resource", "mana" }, }, + ["ManaReservationEfficiencyEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% increased Mana Reservation Efficiency of Skills", statOrder = { 2137 }, level = 75, group = "ManaReservationEfficiencyPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "mana" }, }, + ["ManaReservationEfficiencyEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% increased Mana Reservation Efficiency of Skills", statOrder = { 2137 }, level = 75, group = "ManaReservationEfficiencyPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "mana" }, }, + ["ManaReservationEfficiencyEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 15% increased Mana Reservation Efficiency of Skills", statOrder = { 2137 }, level = 75, group = "ManaReservationEfficiencyPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 80, 80, 0 }, modTags = { "resource", "mana" }, }, + ["ManaReservationEfficiencyEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Mana Reservation Efficiency of Skills", statOrder = { 2137 }, level = 75, group = "ManaReservationEfficiencyPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 80, 80, 0 }, modTags = { "resource", "mana" }, }, + ["ManaReservationEfficiencyEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 17% increased Mana Reservation Efficiency of Skills", statOrder = { 2137 }, level = 75, group = "ManaReservationEfficiencyPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 80, 80, 0 }, modTags = { "resource", "mana" }, }, + ["ManaReservationEfficiencyEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Mana Reservation Efficiency of Skills", statOrder = { 2137 }, level = 75, group = "ManaReservationEfficiencyPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 80, 80, 0 }, modTags = { "resource", "mana" }, }, + ["ChanceToIgniteEldritchImplicit1"] = { type = "Eater", affix = "", "5% chance to Ignite", statOrder = { 1935 }, level = 75, group = "ChanceToIgnite", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ChanceToIgniteEldritchImplicit2"] = { type = "Eater", affix = "", "10% chance to Ignite", statOrder = { 1935 }, level = 75, group = "ChanceToIgnite", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ChanceToIgniteEldritchImplicit3"] = { type = "Eater", affix = "", "15% chance to Ignite", statOrder = { 1935 }, level = 75, group = "ChanceToIgnite", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ChanceToIgniteEldritchImplicit4"] = { type = "Eater", affix = "", "20% chance to Ignite", statOrder = { 1935 }, level = 75, group = "ChanceToIgnite", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ChanceToIgniteEldritchImplicit5"] = { type = "Eater", affix = "", "25% chance to Ignite", statOrder = { 1935 }, level = 75, group = "ChanceToIgnite", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ChanceToIgniteEldritchImplicit6"] = { type = "Eater", affix = "", "30% chance to Ignite", statOrder = { 1935 }, level = 75, group = "ChanceToIgnite", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ChanceToIgniteEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% chance to Ignite", statOrder = { 1935 }, level = 75, group = "ChanceToIgniteUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ChanceToIgniteEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 20% chance to Ignite", statOrder = { 1935 }, level = 75, group = "ChanceToIgniteUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ChanceToIgniteEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% chance to Ignite", statOrder = { 1935 }, level = 75, group = "ChanceToIgniteUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ChanceToIgniteEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% chance to Ignite", statOrder = { 1935 }, level = 75, group = "ChanceToIgniteUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ChanceToIgniteEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% chance to Ignite", statOrder = { 1935 }, level = 75, group = "ChanceToIgniteUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ChanceToIgniteEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% chance to Ignite", statOrder = { 1935 }, level = 75, group = "ChanceToIgniteUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ChanceToIgniteEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 25% chance to Ignite", statOrder = { 1935 }, level = 75, group = "ChanceToIgnitePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ChanceToIgniteEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 30% chance to Ignite", statOrder = { 1935 }, level = 75, group = "ChanceToIgnitePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ChanceToIgniteEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 35% chance to Ignite", statOrder = { 1935 }, level = 75, group = "ChanceToIgnitePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ChanceToIgniteEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% chance to Ignite", statOrder = { 1935 }, level = 75, group = "ChanceToIgnitePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ChanceToIgniteEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% chance to Ignite", statOrder = { 1935 }, level = 75, group = "ChanceToIgnitePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ChanceToIgniteEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% chance to Ignite", statOrder = { 1935 }, level = 75, group = "ChanceToIgnitePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ChanceToFreezeEldritchImplicit1"] = { type = "Eater", affix = "", "5% chance to Freeze", statOrder = { 1938 }, level = 75, group = "ChanceToFreeze", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ChanceToFreezeEldritchImplicit2"] = { type = "Eater", affix = "", "10% chance to Freeze", statOrder = { 1938 }, level = 75, group = "ChanceToFreeze", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ChanceToFreezeEldritchImplicit3"] = { type = "Eater", affix = "", "15% chance to Freeze", statOrder = { 1938 }, level = 75, group = "ChanceToFreeze", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ChanceToFreezeEldritchImplicit4"] = { type = "Eater", affix = "", "20% chance to Freeze", statOrder = { 1938 }, level = 75, group = "ChanceToFreeze", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ChanceToFreezeEldritchImplicit5"] = { type = "Eater", affix = "", "25% chance to Freeze", statOrder = { 1938 }, level = 75, group = "ChanceToFreeze", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ChanceToFreezeEldritchImplicit6"] = { type = "Eater", affix = "", "30% chance to Freeze", statOrder = { 1938 }, level = 75, group = "ChanceToFreeze", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ChanceToFreezeEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% chance to Freeze", statOrder = { 1938 }, level = 75, group = "ChanceToFreezeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ChanceToFreezeEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 20% chance to Freeze", statOrder = { 1938 }, level = 75, group = "ChanceToFreezeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ChanceToFreezeEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% chance to Freeze", statOrder = { 1938 }, level = 75, group = "ChanceToFreezeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ChanceToFreezeEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% chance to Freeze", statOrder = { 1938 }, level = 75, group = "ChanceToFreezeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ChanceToFreezeEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% chance to Freeze", statOrder = { 1938 }, level = 75, group = "ChanceToFreezeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ChanceToFreezeEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% chance to Freeze", statOrder = { 1938 }, level = 75, group = "ChanceToFreezeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ChanceToFreezeEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 25% chance to Freeze", statOrder = { 1938 }, level = 75, group = "ChanceToFreezePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ChanceToFreezeEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 30% chance to Freeze", statOrder = { 1938 }, level = 75, group = "ChanceToFreezePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ChanceToFreezeEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 35% chance to Freeze", statOrder = { 1938 }, level = 75, group = "ChanceToFreezePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ChanceToFreezeEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% chance to Freeze", statOrder = { 1938 }, level = 75, group = "ChanceToFreezePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ChanceToFreezeEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% chance to Freeze", statOrder = { 1938 }, level = 75, group = "ChanceToFreezePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ChanceToFreezeEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% chance to Freeze", statOrder = { 1938 }, level = 75, group = "ChanceToFreezePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ChanceToShockEldritchImplicit1"] = { type = "Eater", affix = "", "5% chance to Shock", statOrder = { 1942 }, level = 75, group = "ChanceToShock", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ChanceToShockEldritchImplicit2"] = { type = "Eater", affix = "", "10% chance to Shock", statOrder = { 1942 }, level = 75, group = "ChanceToShock", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ChanceToShockEldritchImplicit3"] = { type = "Eater", affix = "", "15% chance to Shock", statOrder = { 1942 }, level = 75, group = "ChanceToShock", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ChanceToShockEldritchImplicit4"] = { type = "Eater", affix = "", "20% chance to Shock", statOrder = { 1942 }, level = 75, group = "ChanceToShock", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ChanceToShockEldritchImplicit5"] = { type = "Eater", affix = "", "25% chance to Shock", statOrder = { 1942 }, level = 75, group = "ChanceToShock", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ChanceToShockEldritchImplicit6"] = { type = "Eater", affix = "", "30% chance to Shock", statOrder = { 1942 }, level = 75, group = "ChanceToShock", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ChanceToShockEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% chance to Shock", statOrder = { 1942 }, level = 75, group = "ChanceToShockUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ChanceToShockEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 20% chance to Shock", statOrder = { 1942 }, level = 75, group = "ChanceToShockUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ChanceToShockEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% chance to Shock", statOrder = { 1942 }, level = 75, group = "ChanceToShockUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ChanceToShockEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% chance to Shock", statOrder = { 1942 }, level = 75, group = "ChanceToShockUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ChanceToShockEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% chance to Shock", statOrder = { 1942 }, level = 75, group = "ChanceToShockUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ChanceToShockEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% chance to Shock", statOrder = { 1942 }, level = 75, group = "ChanceToShockUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ChanceToShockEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 25% chance to Shock", statOrder = { 1942 }, level = 75, group = "ChanceToShockPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ChanceToShockEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 30% chance to Shock", statOrder = { 1942 }, level = 75, group = "ChanceToShockPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ChanceToShockEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 35% chance to Shock", statOrder = { 1942 }, level = 75, group = "ChanceToShockPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ChanceToShockEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% chance to Shock", statOrder = { 1942 }, level = 75, group = "ChanceToShockPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ChanceToShockEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% chance to Shock", statOrder = { 1942 }, level = 75, group = "ChanceToShockPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ChanceToShockEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% chance to Shock", statOrder = { 1942 }, level = 75, group = "ChanceToShockPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ReducedIgniteDurationOnSelfEldritchImplicit1"] = { type = "Eater", affix = "", "(33-35)% reduced Ignite Duration on you", statOrder = { 1786 }, level = 75, group = "ReducedIgniteDurationOnSelf", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ReducedIgniteDurationOnSelfEldritchImplicit2"] = { type = "Eater", affix = "", "(36-38)% reduced Ignite Duration on you", statOrder = { 1786 }, level = 75, group = "ReducedIgniteDurationOnSelf", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ReducedIgniteDurationOnSelfEldritchImplicit3"] = { type = "Eater", affix = "", "(39-41)% reduced Ignite Duration on you", statOrder = { 1786 }, level = 75, group = "ReducedIgniteDurationOnSelf", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ReducedIgniteDurationOnSelfEldritchImplicit4"] = { type = "Eater", affix = "", "(42-44)% reduced Ignite Duration on you", statOrder = { 1786 }, level = 75, group = "ReducedIgniteDurationOnSelf", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ReducedIgniteDurationOnSelfEldritchImplicit5"] = { type = "Eater", affix = "", "(45-47)% reduced Ignite Duration on you", statOrder = { 1786 }, level = 75, group = "ReducedIgniteDurationOnSelf", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ReducedIgniteDurationOnSelfEldritchImplicit6"] = { type = "Eater", affix = "", "(48-50)% reduced Ignite Duration on you", statOrder = { 1786 }, level = 75, group = "ReducedIgniteDurationOnSelf", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ReducedIgniteDurationOnSelfEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (42-44)% reduced Ignite Duration on you", statOrder = { 1786 }, level = 75, group = "ReducedIgniteDurationOnSelfUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ReducedIgniteDurationOnSelfEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (45-47)% reduced Ignite Duration on you", statOrder = { 1786 }, level = 75, group = "ReducedIgniteDurationOnSelfUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ReducedIgniteDurationOnSelfEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (48-50)% reduced Ignite Duration on you", statOrder = { 1786 }, level = 75, group = "ReducedIgniteDurationOnSelfUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ReducedIgniteDurationOnSelfEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (51-53)% reduced Ignite Duration on you", statOrder = { 1786 }, level = 75, group = "ReducedIgniteDurationOnSelfUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ReducedIgniteDurationOnSelfEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (54-57)% reduced Ignite Duration on you", statOrder = { 1786 }, level = 75, group = "ReducedIgniteDurationOnSelfUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ReducedIgniteDurationOnSelfEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (58-61)% reduced Ignite Duration on you", statOrder = { 1786 }, level = 75, group = "ReducedIgniteDurationOnSelfUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ReducedIgniteDurationOnSelfEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% reduced Ignite Duration on you", statOrder = { 1786 }, level = 75, group = "ReducedIgniteDurationOnSelfPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ReducedIgniteDurationOnSelfEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% reduced Ignite Duration on you", statOrder = { 1786 }, level = 75, group = "ReducedIgniteDurationOnSelfPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ReducedIgniteDurationOnSelfEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% reduced Ignite Duration on you", statOrder = { 1786 }, level = 75, group = "ReducedIgniteDurationOnSelfPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ReducedIgniteDurationOnSelfEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% reduced Ignite Duration on you", statOrder = { 1786 }, level = 75, group = "ReducedIgniteDurationOnSelfPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ReducedIgniteDurationOnSelfEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% reduced Ignite Duration on you", statOrder = { 1786 }, level = 75, group = "ReducedIgniteDurationOnSelfPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ReducedIgniteDurationOnSelfEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% reduced Ignite Duration on you", statOrder = { 1786 }, level = 75, group = "ReducedIgniteDurationOnSelfPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ReducedFreezeDurationEldritchImplicit1"] = { type = "Eater", affix = "", "(33-35)% reduced Freeze Duration on you", statOrder = { 1785 }, level = 75, group = "ReducedFreezeDuration", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ReducedFreezeDurationEldritchImplicit2"] = { type = "Eater", affix = "", "(36-38)% reduced Freeze Duration on you", statOrder = { 1785 }, level = 75, group = "ReducedFreezeDuration", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ReducedFreezeDurationEldritchImplicit3"] = { type = "Eater", affix = "", "(39-41)% reduced Freeze Duration on you", statOrder = { 1785 }, level = 75, group = "ReducedFreezeDuration", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ReducedFreezeDurationEldritchImplicit4"] = { type = "Eater", affix = "", "(42-44)% reduced Freeze Duration on you", statOrder = { 1785 }, level = 75, group = "ReducedFreezeDuration", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ReducedFreezeDurationEldritchImplicit5"] = { type = "Eater", affix = "", "(45-47)% reduced Freeze Duration on you", statOrder = { 1785 }, level = 75, group = "ReducedFreezeDuration", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ReducedFreezeDurationEldritchImplicit6"] = { type = "Eater", affix = "", "(48-50)% reduced Freeze Duration on you", statOrder = { 1785 }, level = 75, group = "ReducedFreezeDuration", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ReducedFreezeDurationEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (42-44)% reduced Freeze Duration on you", statOrder = { 1785 }, level = 75, group = "ReducedFreezeDurationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ReducedFreezeDurationEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (45-47)% reduced Freeze Duration on you", statOrder = { 1785 }, level = 75, group = "ReducedFreezeDurationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ReducedFreezeDurationEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (48-50)% reduced Freeze Duration on you", statOrder = { 1785 }, level = 75, group = "ReducedFreezeDurationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ReducedFreezeDurationEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (51-53)% reduced Freeze Duration on you", statOrder = { 1785 }, level = 75, group = "ReducedFreezeDurationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ReducedFreezeDurationEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (54-57)% reduced Freeze Duration on you", statOrder = { 1785 }, level = 75, group = "ReducedFreezeDurationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ReducedFreezeDurationEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (58-61)% reduced Freeze Duration on you", statOrder = { 1785 }, level = 75, group = "ReducedFreezeDurationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ReducedFreezeDurationEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% reduced Freeze Duration on you", statOrder = { 1785 }, level = 75, group = "ReducedFreezeDurationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ReducedFreezeDurationEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% reduced Freeze Duration on you", statOrder = { 1785 }, level = 75, group = "ReducedFreezeDurationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ReducedFreezeDurationEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% reduced Freeze Duration on you", statOrder = { 1785 }, level = 75, group = "ReducedFreezeDurationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ReducedFreezeDurationEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% reduced Freeze Duration on you", statOrder = { 1785 }, level = 75, group = "ReducedFreezeDurationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ReducedFreezeDurationEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% reduced Freeze Duration on you", statOrder = { 1785 }, level = 75, group = "ReducedFreezeDurationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ReducedFreezeDurationEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% reduced Freeze Duration on you", statOrder = { 1785 }, level = 75, group = "ReducedFreezeDurationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ReducedShockEffectOnSelfEldritchImplicit1"] = { type = "Eater", affix = "", "(33-35)% reduced Effect of Shock on you", statOrder = { 9803 }, level = 75, group = "ReducedShockEffectOnSelf", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ReducedShockEffectOnSelfEldritchImplicit2"] = { type = "Eater", affix = "", "(36-38)% reduced Effect of Shock on you", statOrder = { 9803 }, level = 75, group = "ReducedShockEffectOnSelf", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ReducedShockEffectOnSelfEldritchImplicit3"] = { type = "Eater", affix = "", "(39-41)% reduced Effect of Shock on you", statOrder = { 9803 }, level = 75, group = "ReducedShockEffectOnSelf", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ReducedShockEffectOnSelfEldritchImplicit4"] = { type = "Eater", affix = "", "(42-44)% reduced Effect of Shock on you", statOrder = { 9803 }, level = 75, group = "ReducedShockEffectOnSelf", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ReducedShockEffectOnSelfEldritchImplicit5"] = { type = "Eater", affix = "", "(45-47)% reduced Effect of Shock on you", statOrder = { 9803 }, level = 75, group = "ReducedShockEffectOnSelf", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ReducedShockEffectOnSelfEldritchImplicit6"] = { type = "Eater", affix = "", "(48-50)% reduced Effect of Shock on you", statOrder = { 9803 }, level = 75, group = "ReducedShockEffectOnSelf", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ReducedShockEffectOnSelfEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (42-44)% reduced Effect of Shock on you", statOrder = { 9803 }, level = 75, group = "ReducedShockEffectOnSelfUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ReducedShockEffectOnSelfEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (45-47)% reduced Effect of Shock on you", statOrder = { 9803 }, level = 75, group = "ReducedShockEffectOnSelfUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ReducedShockEffectOnSelfEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (48-50)% reduced Effect of Shock on you", statOrder = { 9803 }, level = 75, group = "ReducedShockEffectOnSelfUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ReducedShockEffectOnSelfEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (51-53)% reduced Effect of Shock on you", statOrder = { 9803 }, level = 75, group = "ReducedShockEffectOnSelfUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ReducedShockEffectOnSelfEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (54-57)% reduced Effect of Shock on you", statOrder = { 9803 }, level = 75, group = "ReducedShockEffectOnSelfUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ReducedShockEffectOnSelfEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (58-61)% reduced Effect of Shock on you", statOrder = { 9803 }, level = 75, group = "ReducedShockEffectOnSelfUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ReducedShockEffectOnSelfEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% reduced Effect of Shock on you", statOrder = { 9803 }, level = 75, group = "ReducedShockEffectOnSelfPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ReducedShockEffectOnSelfEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% reduced Effect of Shock on you", statOrder = { 9803 }, level = 75, group = "ReducedShockEffectOnSelfPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ReducedShockEffectOnSelfEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% reduced Effect of Shock on you", statOrder = { 9803 }, level = 75, group = "ReducedShockEffectOnSelfPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ReducedShockEffectOnSelfEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% reduced Effect of Shock on you", statOrder = { 9803 }, level = 75, group = "ReducedShockEffectOnSelfPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ReducedShockEffectOnSelfEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% reduced Effect of Shock on you", statOrder = { 9803 }, level = 75, group = "ReducedShockEffectOnSelfPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ReducedShockEffectOnSelfEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% reduced Effect of Shock on you", statOrder = { 9803 }, level = 75, group = "ReducedShockEffectOnSelfPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ManaRegenerationEldritchImplicit1"] = { type = "Eater", affix = "", "(19-21)% increased Mana Regeneration Rate", statOrder = { 1495 }, level = 75, group = "ManaRegeneration", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["ManaRegenerationEldritchImplicit2"] = { type = "Eater", affix = "", "(22-24)% increased Mana Regeneration Rate", statOrder = { 1495 }, level = 75, group = "ManaRegeneration", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["ManaRegenerationEldritchImplicit3"] = { type = "Eater", affix = "", "(25-27)% increased Mana Regeneration Rate", statOrder = { 1495 }, level = 75, group = "ManaRegeneration", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["ManaRegenerationEldritchImplicit4"] = { type = "Eater", affix = "", "(28-30)% increased Mana Regeneration Rate", statOrder = { 1495 }, level = 75, group = "ManaRegeneration", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["ManaRegenerationEldritchImplicit5"] = { type = "Eater", affix = "", "(31-33)% increased Mana Regeneration Rate", statOrder = { 1495 }, level = 75, group = "ManaRegeneration", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["ManaRegenerationEldritchImplicit6"] = { type = "Eater", affix = "", "(34-36)% increased Mana Regeneration Rate", statOrder = { 1495 }, level = 75, group = "ManaRegeneration", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["ManaRegenerationEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (31-33)% increased Mana Regeneration Rate", statOrder = { 1495 }, level = 75, group = "ManaRegenerationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana" }, }, + ["ManaRegenerationEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (34-36)% increased Mana Regeneration Rate", statOrder = { 1495 }, level = 75, group = "ManaRegenerationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, }, + ["ManaRegenerationEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (37-39)% increased Mana Regeneration Rate", statOrder = { 1495 }, level = 75, group = "ManaRegenerationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, }, + ["ManaRegenerationEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (40-42)% increased Mana Regeneration Rate", statOrder = { 1495 }, level = 75, group = "ManaRegenerationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, }, + ["ManaRegenerationEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Mana Regeneration Rate", statOrder = { 1495 }, level = 75, group = "ManaRegenerationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, }, + ["ManaRegenerationEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Mana Regeneration Rate", statOrder = { 1495 }, level = 75, group = "ManaRegenerationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, }, + ["ManaRegenerationEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (43-45)% increased Mana Regeneration Rate", statOrder = { 1495 }, level = 75, group = "ManaRegenerationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana" }, }, + ["ManaRegenerationEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (46-48)% increased Mana Regeneration Rate", statOrder = { 1495 }, level = 75, group = "ManaRegenerationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana" }, }, + ["ManaRegenerationEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (49-51)% increased Mana Regeneration Rate", statOrder = { 1495 }, level = 75, group = "ManaRegenerationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "mana" }, }, + ["ManaRegenerationEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (52-54)% increased Mana Regeneration Rate", statOrder = { 1495 }, level = 75, group = "ManaRegenerationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "mana" }, }, + ["ManaRegenerationEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Mana Regeneration Rate", statOrder = { 1495 }, level = 75, group = "ManaRegenerationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "mana" }, }, + ["ManaRegenerationEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Mana Regeneration Rate", statOrder = { 1495 }, level = 75, group = "ManaRegenerationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "mana" }, }, + ["EnemyLifeRegenerationRateEldritchImplicit1"] = { type = "Eater", affix = "", "Enemies you've Hit Recently have (65-67)% reduced Life Regeneration rate", statOrder = { 6311 }, level = 75, group = "EnemyLifeRegenerationRate", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["EnemyLifeRegenerationRateEldritchImplicit2"] = { type = "Eater", affix = "", "Enemies you've Hit Recently have (68-70)% reduced Life Regeneration rate", statOrder = { 6311 }, level = 75, group = "EnemyLifeRegenerationRate", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["EnemyLifeRegenerationRateEldritchImplicit3"] = { type = "Eater", affix = "", "Enemies you've Hit Recently have (71-73)% reduced Life Regeneration rate", statOrder = { 6311 }, level = 75, group = "EnemyLifeRegenerationRate", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["EnemyLifeRegenerationRateEldritchImplicit4"] = { type = "Eater", affix = "", "Enemies you've Hit Recently have (74-76)% reduced Life Regeneration rate", statOrder = { 6311 }, level = 75, group = "EnemyLifeRegenerationRate", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["EnemyLifeRegenerationRateEldritchImplicit5"] = { type = "Eater", affix = "", "Enemies you've Hit Recently have (77-79)% reduced Life Regeneration rate", statOrder = { 6311 }, level = 75, group = "EnemyLifeRegenerationRate", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["EnemyLifeRegenerationRateEldritchImplicit6"] = { type = "Eater", affix = "", "Enemies you've Hit Recently have (80-82)% reduced Life Regeneration rate", statOrder = { 6311 }, level = 75, group = "EnemyLifeRegenerationRate", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["EnemyLifeRegenerationRateEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enemies you've Hit Recently have (74-76)% reduced Life Regeneration rate", statOrder = { 6311 }, level = 75, group = "EnemyLifeRegenerationRateUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, }, + ["EnemyLifeRegenerationRateEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enemies you've Hit Recently have (77-79)% reduced Life Regeneration rate", statOrder = { 6311 }, level = 75, group = "EnemyLifeRegenerationRateUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, }, + ["EnemyLifeRegenerationRateEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enemies you've Hit Recently have (80-82)% reduced Life Regeneration rate", statOrder = { 6311 }, level = 75, group = "EnemyLifeRegenerationRateUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, }, + ["EnemyLifeRegenerationRateEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enemies you've Hit Recently have (83-85)% reduced Life Regeneration rate", statOrder = { 6311 }, level = 75, group = "EnemyLifeRegenerationRateUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, }, + ["EnemyLifeRegenerationRateEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enemies you've Hit Recently have (86-88)% reduced Life Regeneration rate", statOrder = { 6311 }, level = 75, group = "EnemyLifeRegenerationRateUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, }, + ["EnemyLifeRegenerationRateEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enemies you've Hit Recently have (89-91)% reduced Life Regeneration rate", statOrder = { 6311 }, level = 75, group = "EnemyLifeRegenerationRateUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, }, + ["EnemyLifeRegenerationRateEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enemies you've Hit Recently have (83-85)% reduced Life Regeneration rate", statOrder = { 6311 }, level = 75, group = "EnemyLifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, }, + ["EnemyLifeRegenerationRateEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enemies you've Hit Recently have (86-88)% reduced Life Regeneration rate", statOrder = { 6311 }, level = 75, group = "EnemyLifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, }, + ["EnemyLifeRegenerationRateEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enemies you've Hit Recently have (89-91)% reduced Life Regeneration rate", statOrder = { 6311 }, level = 75, group = "EnemyLifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, }, + ["EnemyLifeRegenerationRateEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enemies you've Hit Recently have (92-94)% reduced Life Regeneration rate", statOrder = { 6311 }, level = 75, group = "EnemyLifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, }, + ["EnemyLifeRegenerationRateEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enemies you've Hit Recently have (95-97)% reduced Life Regeneration rate", statOrder = { 6311 }, level = 75, group = "EnemyLifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, }, + ["EnemyLifeRegenerationRateEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enemies you've Hit Recently have (98-100)% reduced Life Regeneration rate", statOrder = { 6311 }, level = 75, group = "EnemyLifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, }, + ["IncreasedManaRegenerationPerPowerChargeEldritchImplicit1"] = { type = "Eater", affix = "", "5% increased Mana Regeneration Rate per Power Charge", statOrder = { 1888 }, level = 75, group = "IncreasedManaRegenerationPerPowerCharge", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaRegenerationPerPowerChargeEldritchImplicit2"] = { type = "Eater", affix = "", "5% increased Mana Regeneration Rate per Power Charge", statOrder = { 1888 }, level = 75, group = "IncreasedManaRegenerationPerPowerCharge", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaRegenerationPerPowerChargeEldritchImplicit3"] = { type = "Eater", affix = "", "5% increased Mana Regeneration Rate per Power Charge", statOrder = { 1888 }, level = 75, group = "IncreasedManaRegenerationPerPowerCharge", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaRegenerationPerPowerChargeEldritchImplicit4"] = { type = "Eater", affix = "", "5% increased Mana Regeneration Rate per Power Charge", statOrder = { 1888 }, level = 75, group = "IncreasedManaRegenerationPerPowerCharge", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaRegenerationPerPowerChargeEldritchImplicit5"] = { type = "Eater", affix = "", "6% increased Mana Regeneration Rate per Power Charge", statOrder = { 1888 }, level = 75, group = "IncreasedManaRegenerationPerPowerCharge", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaRegenerationPerPowerChargeEldritchImplicit6"] = { type = "Eater", affix = "", "6% increased Mana Regeneration Rate per Power Charge", statOrder = { 1888 }, level = 75, group = "IncreasedManaRegenerationPerPowerCharge", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 6% increased Mana Regeneration Rate per Power Charge", statOrder = { 1888 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 6% increased Mana Regeneration Rate per Power Charge", statOrder = { 1888 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 6% increased Mana Regeneration Rate per Power Charge", statOrder = { 1888 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 6% increased Mana Regeneration Rate per Power Charge", statOrder = { 1888 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 7% increased Mana Regeneration Rate per Power Charge", statOrder = { 1888 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 7% increased Mana Regeneration Rate per Power Charge", statOrder = { 1888 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Mana Regeneration Rate per Power Charge", statOrder = { 1888 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Mana Regeneration Rate per Power Charge", statOrder = { 1888 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Mana Regeneration Rate per Power Charge", statOrder = { 1888 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Mana Regeneration Rate per Power Charge", statOrder = { 1888 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Mana Regeneration Rate per Power Charge", statOrder = { 1888 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Mana Regeneration Rate per Power Charge", statOrder = { 1888 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "mana" }, }, + ["AttackDamageEldritchImplicit1"] = { type = "Eater", affix = "", "(14-16)% increased Attack Damage", statOrder = { 1110 }, level = 75, group = "AttackDamage", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "attack" }, }, + ["AttackDamageEldritchImplicit2"] = { type = "Eater", affix = "", "(17-19)% increased Attack Damage", statOrder = { 1110 }, level = 75, group = "AttackDamage", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "attack" }, }, + ["AttackDamageEldritchImplicit3"] = { type = "Eater", affix = "", "(20-22)% increased Attack Damage", statOrder = { 1110 }, level = 75, group = "AttackDamage", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "attack" }, }, + ["AttackDamageEldritchImplicit4"] = { type = "Eater", affix = "", "(23-25)% increased Attack Damage", statOrder = { 1110 }, level = 75, group = "AttackDamage", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "attack" }, }, + ["AttackDamageEldritchImplicit5"] = { type = "Eater", affix = "", "(26-27)% increased Attack Damage", statOrder = { 1110 }, level = 75, group = "AttackDamage", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "attack" }, }, + ["AttackDamageEldritchImplicit6"] = { type = "Eater", affix = "", "(28-29)% increased Attack Damage", statOrder = { 1110 }, level = 75, group = "AttackDamage", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "attack" }, }, + ["AttackDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (26-28)% increased Attack Damage", statOrder = { 1110 }, level = 75, group = "AttackDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack" }, }, + ["AttackDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (29-31)% increased Attack Damage", statOrder = { 1110 }, level = 75, group = "AttackDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "attack" }, }, + ["AttackDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (32-34)% increased Attack Damage", statOrder = { 1110 }, level = 75, group = "AttackDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "attack" }, }, + ["AttackDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (35-37)% increased Attack Damage", statOrder = { 1110 }, level = 75, group = "AttackDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "attack" }, }, + ["AttackDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (38-39)% increased Attack Damage", statOrder = { 1110 }, level = 75, group = "AttackDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "attack" }, }, + ["AttackDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (40-41)% increased Attack Damage", statOrder = { 1110 }, level = 75, group = "AttackDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "attack" }, }, + ["AttackDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (38-40)% increased Attack Damage", statOrder = { 1110 }, level = 75, group = "AttackDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack" }, }, + ["AttackDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (41-43)% increased Attack Damage", statOrder = { 1110 }, level = 75, group = "AttackDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack" }, }, + ["AttackDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (44-46)% increased Attack Damage", statOrder = { 1110 }, level = 75, group = "AttackDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "damage", "attack" }, }, + ["AttackDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (47-49)% increased Attack Damage", statOrder = { 1110 }, level = 75, group = "AttackDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "damage", "attack" }, }, + ["AttackDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (50-51)% increased Attack Damage", statOrder = { 1110 }, level = 75, group = "AttackDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "damage", "attack" }, }, + ["AttackDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (52-53)% increased Attack Damage", statOrder = { 1110 }, level = 75, group = "AttackDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "damage", "attack" }, }, + ["SpellDamageEldritchImplicit1"] = { type = "Eater", affix = "", "(14-16)% increased Spell Damage", statOrder = { 1135 }, level = 75, group = "SpellDamage", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageEldritchImplicit2"] = { type = "Eater", affix = "", "(17-19)% increased Spell Damage", statOrder = { 1135 }, level = 75, group = "SpellDamage", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageEldritchImplicit3"] = { type = "Eater", affix = "", "(20-22)% increased Spell Damage", statOrder = { 1135 }, level = 75, group = "SpellDamage", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageEldritchImplicit4"] = { type = "Eater", affix = "", "(23-25)% increased Spell Damage", statOrder = { 1135 }, level = 75, group = "SpellDamage", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageEldritchImplicit5"] = { type = "Eater", affix = "", "(26-27)% increased Spell Damage", statOrder = { 1135 }, level = 75, group = "SpellDamage", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageEldritchImplicit6"] = { type = "Eater", affix = "", "(28-29)% increased Spell Damage", statOrder = { 1135 }, level = 75, group = "SpellDamage", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (26-28)% increased Spell Damage", statOrder = { 1135 }, level = 75, group = "SpellDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (29-31)% increased Spell Damage", statOrder = { 1135 }, level = 75, group = "SpellDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (32-34)% increased Spell Damage", statOrder = { 1135 }, level = 75, group = "SpellDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (35-37)% increased Spell Damage", statOrder = { 1135 }, level = 75, group = "SpellDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (38-39)% increased Spell Damage", statOrder = { 1135 }, level = 75, group = "SpellDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (40-41)% increased Spell Damage", statOrder = { 1135 }, level = 75, group = "SpellDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (38-40)% increased Spell Damage", statOrder = { 1135 }, level = 75, group = "SpellDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (41-43)% increased Spell Damage", statOrder = { 1135 }, level = 75, group = "SpellDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (44-46)% increased Spell Damage", statOrder = { 1135 }, level = 75, group = "SpellDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (47-49)% increased Spell Damage", statOrder = { 1135 }, level = 75, group = "SpellDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (50-51)% increased Spell Damage", statOrder = { 1135 }, level = 75, group = "SpellDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (52-53)% increased Spell Damage", statOrder = { 1135 }, level = 75, group = "SpellDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["ArcaneSurgeEffectEldritchImplicit1"] = { type = "Eater", affix = "", "(6-7)% increased Effect of Arcane Surge on you", statOrder = { 3196 }, level = 75, group = "ArcaneSurgeEffect", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["ArcaneSurgeEffectEldritchImplicit2"] = { type = "Eater", affix = "", "(8-9)% increased Effect of Arcane Surge on you", statOrder = { 3196 }, level = 75, group = "ArcaneSurgeEffect", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["ArcaneSurgeEffectEldritchImplicit3"] = { type = "Eater", affix = "", "(10-11)% increased Effect of Arcane Surge on you", statOrder = { 3196 }, level = 75, group = "ArcaneSurgeEffect", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["ArcaneSurgeEffectEldritchImplicit4"] = { type = "Eater", affix = "", "(12-13)% increased Effect of Arcane Surge on you", statOrder = { 3196 }, level = 75, group = "ArcaneSurgeEffect", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["ArcaneSurgeEffectEldritchImplicit5"] = { type = "Eater", affix = "", "(14-15)% increased Effect of Arcane Surge on you", statOrder = { 3196 }, level = 75, group = "ArcaneSurgeEffect", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["ArcaneSurgeEffectEldritchImplicit6"] = { type = "Eater", affix = "", "(16-17)% increased Effect of Arcane Surge on you", statOrder = { 3196 }, level = 75, group = "ArcaneSurgeEffect", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["ArcaneSurgeEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (12-13)% increased Effect of Arcane Surge on you", statOrder = { 3196 }, level = 75, group = "ArcaneSurgeEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["ArcaneSurgeEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (14-15)% increased Effect of Arcane Surge on you", statOrder = { 3196 }, level = 75, group = "ArcaneSurgeEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["ArcaneSurgeEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (16-17)% increased Effect of Arcane Surge on you", statOrder = { 3196 }, level = 75, group = "ArcaneSurgeEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["ArcaneSurgeEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (18-19)% increased Effect of Arcane Surge on you", statOrder = { 3196 }, level = 75, group = "ArcaneSurgeEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["ArcaneSurgeEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (20-21)% increased Effect of Arcane Surge on you", statOrder = { 3196 }, level = 75, group = "ArcaneSurgeEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["ArcaneSurgeEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (22-23)% increased Effect of Arcane Surge on you", statOrder = { 3196 }, level = 75, group = "ArcaneSurgeEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["ArcaneSurgeEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (18-19)% increased Effect of Arcane Surge on you", statOrder = { 3196 }, level = 75, group = "ArcaneSurgeEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["ArcaneSurgeEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% increased Effect of Arcane Surge on you", statOrder = { 3196 }, level = 75, group = "ArcaneSurgeEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["ArcaneSurgeEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% increased Effect of Arcane Surge on you", statOrder = { 3196 }, level = 75, group = "ArcaneSurgeEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["ArcaneSurgeEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% increased Effect of Arcane Surge on you", statOrder = { 3196 }, level = 75, group = "ArcaneSurgeEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["ArcaneSurgeEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% increased Effect of Arcane Surge on you", statOrder = { 3196 }, level = 75, group = "ArcaneSurgeEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["ArcaneSurgeEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% increased Effect of Arcane Surge on you", statOrder = { 3196 }, level = 75, group = "ArcaneSurgeEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["MovementVelocityEldritchImplicit1"] = { type = "Exarch", affix = "", "5% increased Movement Speed", statOrder = { 1709 }, level = 75, group = "MovementVelocity", weightKey = { "no_tier_6_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "speed" }, }, + ["MovementVelocityEldritchImplicit2"] = { type = "Exarch", affix = "", "6% increased Movement Speed", statOrder = { 1709 }, level = 75, group = "MovementVelocity", weightKey = { "no_tier_5_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "speed" }, }, + ["MovementVelocityEldritchImplicit3"] = { type = "Exarch", affix = "", "7% increased Movement Speed", statOrder = { 1709 }, level = 75, group = "MovementVelocity", weightKey = { "no_tier_4_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "speed" }, }, + ["MovementVelocityEldritchImplicit4"] = { type = "Exarch", affix = "", "8% increased Movement Speed", statOrder = { 1709 }, level = 75, group = "MovementVelocity", weightKey = { "no_tier_3_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "speed" }, }, + ["MovementVelocityEldritchImplicit5"] = { type = "Exarch", affix = "", "9% increased Movement Speed", statOrder = { 1709 }, level = 75, group = "MovementVelocity", weightKey = { "no_tier_2_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "speed" }, }, + ["MovementVelocityEldritchImplicit6"] = { type = "Exarch", affix = "", "10% increased Movement Speed", statOrder = { 1709 }, level = 75, group = "MovementVelocity", weightKey = { "no_tier_1_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "speed" }, }, + ["MovementVelocityEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 8% increased Movement Speed", statOrder = { 1709 }, level = 75, group = "MovementVelocityUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "speed" }, }, + ["MovementVelocityEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 9% increased Movement Speed", statOrder = { 1709 }, level = 75, group = "MovementVelocityUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "speed" }, }, + ["MovementVelocityEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 10% increased Movement Speed", statOrder = { 1709 }, level = 75, group = "MovementVelocityUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "speed" }, }, + ["MovementVelocityEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 11% increased Movement Speed", statOrder = { 1709 }, level = 75, group = "MovementVelocityUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "speed" }, }, + ["MovementVelocityEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 12% increased Movement Speed", statOrder = { 1709 }, level = 75, group = "MovementVelocityUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "speed" }, }, + ["MovementVelocityEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 13% increased Movement Speed", statOrder = { 1709 }, level = 75, group = "MovementVelocityUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "speed" }, }, + ["MovementVelocityEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% increased Movement Speed", statOrder = { 1709 }, level = 75, group = "MovementVelocityPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "speed" }, }, + ["MovementVelocityEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% increased Movement Speed", statOrder = { 1709 }, level = 75, group = "MovementVelocityPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "speed" }, }, + ["MovementVelocityEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% increased Movement Speed", statOrder = { 1709 }, level = 75, group = "MovementVelocityPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "speed" }, }, + ["MovementVelocityEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% increased Movement Speed", statOrder = { 1709 }, level = 75, group = "MovementVelocityPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "speed" }, }, + ["MovementVelocityEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 15% increased Movement Speed", statOrder = { 1709 }, level = 75, group = "MovementVelocityPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "speed" }, }, + ["MovementVelocityEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Movement Speed", statOrder = { 1709 }, level = 75, group = "MovementVelocityPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "speed" }, }, + ["ActionSpeedImplicitEldritchImplicit1"] = { type = "Exarch", affix = "", "4% increased Action Speed", statOrder = { 4432 }, level = 75, group = "ActionSpeedImplicit", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["ActionSpeedImplicitEldritchImplicit2"] = { type = "Exarch", affix = "", "4% increased Action Speed", statOrder = { 4432 }, level = 75, group = "ActionSpeedImplicit", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["ActionSpeedImplicitEldritchImplicit3"] = { type = "Exarch", affix = "", "5% increased Action Speed", statOrder = { 4432 }, level = 75, group = "ActionSpeedImplicit", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["ActionSpeedImplicitEldritchImplicit4"] = { type = "Exarch", affix = "", "5% increased Action Speed", statOrder = { 4432 }, level = 75, group = "ActionSpeedImplicit", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["ActionSpeedImplicitEldritchImplicit5"] = { type = "Exarch", affix = "", "6% increased Action Speed", statOrder = { 4432 }, level = 75, group = "ActionSpeedImplicit", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["ActionSpeedImplicitEldritchImplicit6"] = { type = "Exarch", affix = "", "6% increased Action Speed", statOrder = { 4432 }, level = 75, group = "ActionSpeedImplicit", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["ActionSpeedImplicitEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 5% increased Action Speed", statOrder = { 4432 }, level = 75, group = "ActionSpeedImplicitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, }, + ["ActionSpeedImplicitEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 5% increased Action Speed", statOrder = { 4432 }, level = 75, group = "ActionSpeedImplicitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { "speed" }, }, + ["ActionSpeedImplicitEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 6% increased Action Speed", statOrder = { 4432 }, level = 75, group = "ActionSpeedImplicitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { "speed" }, }, + ["ActionSpeedImplicitEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 6% increased Action Speed", statOrder = { 4432 }, level = 75, group = "ActionSpeedImplicitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { "speed" }, }, + ["ActionSpeedImplicitEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 7% increased Action Speed", statOrder = { 4432 }, level = 75, group = "ActionSpeedImplicitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { "speed" }, }, + ["ActionSpeedImplicitEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 7% increased Action Speed", statOrder = { 4432 }, level = 75, group = "ActionSpeedImplicitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { "speed" }, }, + ["ActionSpeedImplicitEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Action Speed", statOrder = { 4432 }, level = 75, group = "ActionSpeedImplicitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, }, + ["ActionSpeedImplicitEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Action Speed", statOrder = { 4432 }, level = 75, group = "ActionSpeedImplicitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, }, + ["ActionSpeedImplicitEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Action Speed", statOrder = { 4432 }, level = 75, group = "ActionSpeedImplicitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { "speed" }, }, + ["ActionSpeedImplicitEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Action Speed", statOrder = { 4432 }, level = 75, group = "ActionSpeedImplicitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { "speed" }, }, + ["ActionSpeedImplicitEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Action Speed", statOrder = { 4432 }, level = 75, group = "ActionSpeedImplicitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { "speed" }, }, + ["ActionSpeedImplicitEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Action Speed", statOrder = { 4432 }, level = 75, group = "ActionSpeedImplicitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { "speed" }, }, + ["ScorchedGroundWhileMovingEldritchImplicit1"] = { type = "Exarch", affix = "", "Drops Scorched Ground while moving, lasting 2 seconds", statOrder = { 5154 }, level = 75, group = "ScorchedGroundMovingImplicit", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["ScorchedGroundWhileMovingEldritchImplicit2"] = { type = "Exarch", affix = "", "Drops Scorched Ground while moving, lasting 3 seconds", statOrder = { 5154 }, level = 75, group = "ScorchedGroundMovingImplicit", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["ScorchedGroundWhileMovingEldritchImplicit3"] = { type = "Exarch", affix = "", "Drops Scorched Ground while moving, lasting 4 seconds", statOrder = { 5154 }, level = 75, group = "ScorchedGroundMovingImplicit", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["ScorchedGroundWhileMovingEldritchImplicit4"] = { type = "Exarch", affix = "", "Drops Scorched Ground while moving, lasting 5 seconds", statOrder = { 5154 }, level = 75, group = "ScorchedGroundMovingImplicit", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["ScorchedGroundWhileMovingEldritchImplicit5"] = { type = "Exarch", affix = "", "Drops Scorched Ground while moving, lasting 6 seconds", statOrder = { 5154 }, level = 75, group = "ScorchedGroundMovingImplicit", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["ScorchedGroundWhileMovingEldritchImplicit6"] = { type = "Exarch", affix = "", "Drops Scorched Ground while moving, lasting 7 seconds", statOrder = { 5154 }, level = 75, group = "ScorchedGroundMovingImplicit", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["ScorchedGroundWhileMovingEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Scorched Ground while moving, lasting 4 seconds", statOrder = { 5154 }, level = 75, group = "ScorchedGroundWhileMovingUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["ScorchedGroundWhileMovingEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Scorched Ground while moving, lasting 5 seconds", statOrder = { 5154 }, level = 75, group = "ScorchedGroundWhileMovingUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["ScorchedGroundWhileMovingEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Scorched Ground while moving, lasting 6 seconds", statOrder = { 5154 }, level = 75, group = "ScorchedGroundWhileMovingUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["ScorchedGroundWhileMovingEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Scorched Ground while moving, lasting 7 seconds", statOrder = { 5154 }, level = 75, group = "ScorchedGroundWhileMovingUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["ScorchedGroundWhileMovingEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Scorched Ground while moving, lasting 8 seconds", statOrder = { 5154 }, level = 75, group = "ScorchedGroundWhileMovingUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["ScorchedGroundWhileMovingEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Scorched Ground while moving, lasting 9 seconds", statOrder = { 5154 }, level = 75, group = "ScorchedGroundWhileMovingUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["ScorchedGroundWhileMovingEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Scorched Ground while moving, lasting 6 seconds", statOrder = { 5154 }, level = 75, group = "ScorchedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["ScorchedGroundWhileMovingEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Scorched Ground while moving, lasting 7 seconds", statOrder = { 5154 }, level = 75, group = "ScorchedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["ScorchedGroundWhileMovingEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Scorched Ground while moving, lasting 8 seconds", statOrder = { 5154 }, level = 75, group = "ScorchedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, }, + ["ScorchedGroundWhileMovingEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Scorched Ground while moving, lasting 9 seconds", statOrder = { 5154 }, level = 75, group = "ScorchedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, }, + ["ScorchedGroundWhileMovingEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Scorched Ground while moving, lasting 10 seconds", statOrder = { 5154 }, level = 75, group = "ScorchedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, }, + ["ScorchedGroundWhileMovingEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Scorched Ground while moving, lasting 11 seconds", statOrder = { 5154 }, level = 75, group = "ScorchedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, }, + ["BrittleGroundWhileMovingEldritchImplicit1"] = { type = "Exarch", affix = "", "Drops Brittle Ground while moving, lasting 2 seconds", statOrder = { 5152 }, level = 75, group = "BrittleGroundMovingImplicit", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["BrittleGroundWhileMovingEldritchImplicit2"] = { type = "Exarch", affix = "", "Drops Brittle Ground while moving, lasting 3 seconds", statOrder = { 5152 }, level = 75, group = "BrittleGroundMovingImplicit", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["BrittleGroundWhileMovingEldritchImplicit3"] = { type = "Exarch", affix = "", "Drops Brittle Ground while moving, lasting 4 seconds", statOrder = { 5152 }, level = 75, group = "BrittleGroundMovingImplicit", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["BrittleGroundWhileMovingEldritchImplicit4"] = { type = "Exarch", affix = "", "Drops Brittle Ground while moving, lasting 5 seconds", statOrder = { 5152 }, level = 75, group = "BrittleGroundMovingImplicit", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["BrittleGroundWhileMovingEldritchImplicit5"] = { type = "Exarch", affix = "", "Drops Brittle Ground while moving, lasting 6 seconds", statOrder = { 5152 }, level = 75, group = "BrittleGroundMovingImplicit", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["BrittleGroundWhileMovingEldritchImplicit6"] = { type = "Exarch", affix = "", "Drops Brittle Ground while moving, lasting 7 seconds", statOrder = { 5152 }, level = 75, group = "BrittleGroundMovingImplicit", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["BrittleGroundWhileMovingEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Brittle Ground while moving, lasting 4 seconds", statOrder = { 5152 }, level = 75, group = "BrittleGroundWhileMovingUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["BrittleGroundWhileMovingEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Brittle Ground while moving, lasting 5 seconds", statOrder = { 5152 }, level = 75, group = "BrittleGroundWhileMovingUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["BrittleGroundWhileMovingEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Brittle Ground while moving, lasting 6 seconds", statOrder = { 5152 }, level = 75, group = "BrittleGroundWhileMovingUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["BrittleGroundWhileMovingEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Brittle Ground while moving, lasting 7 seconds", statOrder = { 5152 }, level = 75, group = "BrittleGroundWhileMovingUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["BrittleGroundWhileMovingEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Brittle Ground while moving, lasting 8 seconds", statOrder = { 5152 }, level = 75, group = "BrittleGroundWhileMovingUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["BrittleGroundWhileMovingEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Brittle Ground while moving, lasting 9 seconds", statOrder = { 5152 }, level = 75, group = "BrittleGroundWhileMovingUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["BrittleGroundWhileMovingEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Brittle Ground while moving, lasting 6 seconds", statOrder = { 5152 }, level = 75, group = "BrittleGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["BrittleGroundWhileMovingEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Brittle Ground while moving, lasting 7 seconds", statOrder = { 5152 }, level = 75, group = "BrittleGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["BrittleGroundWhileMovingEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Brittle Ground while moving, lasting 8 seconds", statOrder = { 5152 }, level = 75, group = "BrittleGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, }, + ["BrittleGroundWhileMovingEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Brittle Ground while moving, lasting 9 seconds", statOrder = { 5152 }, level = 75, group = "BrittleGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, }, + ["BrittleGroundWhileMovingEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Brittle Ground while moving, lasting 10 seconds", statOrder = { 5152 }, level = 75, group = "BrittleGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, }, + ["BrittleGroundWhileMovingEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Brittle Ground while moving, lasting 11 seconds", statOrder = { 5152 }, level = 75, group = "BrittleGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, }, + ["SappedGroundWhileMovingEldritchImplicit1"] = { type = "Exarch", affix = "", "Drops Sapped Ground while moving, lasting 2 seconds", statOrder = { 5153 }, level = 75, group = "SappedGroundMovingImplicit", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["SappedGroundWhileMovingEldritchImplicit2"] = { type = "Exarch", affix = "", "Drops Sapped Ground while moving, lasting 3 seconds", statOrder = { 5153 }, level = 75, group = "SappedGroundMovingImplicit", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["SappedGroundWhileMovingEldritchImplicit3"] = { type = "Exarch", affix = "", "Drops Sapped Ground while moving, lasting 4 seconds", statOrder = { 5153 }, level = 75, group = "SappedGroundMovingImplicit", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["SappedGroundWhileMovingEldritchImplicit4"] = { type = "Exarch", affix = "", "Drops Sapped Ground while moving, lasting 5 seconds", statOrder = { 5153 }, level = 75, group = "SappedGroundMovingImplicit", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["SappedGroundWhileMovingEldritchImplicit5"] = { type = "Exarch", affix = "", "Drops Sapped Ground while moving, lasting 6 seconds", statOrder = { 5153 }, level = 75, group = "SappedGroundMovingImplicit", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["SappedGroundWhileMovingEldritchImplicit6"] = { type = "Exarch", affix = "", "Drops Sapped Ground while moving, lasting 7 seconds", statOrder = { 5153 }, level = 75, group = "SappedGroundMovingImplicit", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["SappedGroundWhileMovingEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Sapped Ground while moving, lasting 4 seconds", statOrder = { 5153 }, level = 75, group = "SappedGroundWhileMovingUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["SappedGroundWhileMovingEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Sapped Ground while moving, lasting 5 seconds", statOrder = { 5153 }, level = 75, group = "SappedGroundWhileMovingUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["SappedGroundWhileMovingEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Sapped Ground while moving, lasting 6 seconds", statOrder = { 5153 }, level = 75, group = "SappedGroundWhileMovingUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["SappedGroundWhileMovingEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Sapped Ground while moving, lasting 7 seconds", statOrder = { 5153 }, level = 75, group = "SappedGroundWhileMovingUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["SappedGroundWhileMovingEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Sapped Ground while moving, lasting 8 seconds", statOrder = { 5153 }, level = 75, group = "SappedGroundWhileMovingUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["SappedGroundWhileMovingEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Sapped Ground while moving, lasting 9 seconds", statOrder = { 5153 }, level = 75, group = "SappedGroundWhileMovingUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["SappedGroundWhileMovingEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Sapped Ground while moving, lasting 6 seconds", statOrder = { 5153 }, level = 75, group = "SappedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["SappedGroundWhileMovingEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Sapped Ground while moving, lasting 7 seconds", statOrder = { 5153 }, level = 75, group = "SappedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["SappedGroundWhileMovingEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Sapped Ground while moving, lasting 8 seconds", statOrder = { 5153 }, level = 75, group = "SappedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, }, + ["SappedGroundWhileMovingEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Sapped Ground while moving, lasting 9 seconds", statOrder = { 5153 }, level = 75, group = "SappedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, }, + ["SappedGroundWhileMovingEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Sapped Ground while moving, lasting 10 seconds", statOrder = { 5153 }, level = 75, group = "SappedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, }, + ["SappedGroundWhileMovingEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Sapped Ground while moving, lasting 11 seconds", statOrder = { 5153 }, level = 75, group = "SappedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, }, + ["FireResistanceEldritchImplicit1"] = { type = "Exarch", affix = "", "+(13-14)% to Fire Resistance", statOrder = { 1536 }, level = 75, group = "FireResistance", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistanceEldritchImplicit2"] = { type = "Exarch", affix = "", "+(15-16)% to Fire Resistance", statOrder = { 1536 }, level = 75, group = "FireResistance", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistanceEldritchImplicit3"] = { type = "Exarch", affix = "", "+(17-18)% to Fire Resistance", statOrder = { 1536 }, level = 75, group = "FireResistance", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistanceEldritchImplicit4"] = { type = "Exarch", affix = "", "+(19-20)% to Fire Resistance", statOrder = { 1536 }, level = 75, group = "FireResistance", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistanceEldritchImplicit5"] = { type = "Exarch", affix = "", "+(21-22)% to Fire Resistance", statOrder = { 1536 }, level = 75, group = "FireResistance", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistanceEldritchImplicit6"] = { type = "Exarch", affix = "", "+(23-24)% to Fire Resistance", statOrder = { 1536 }, level = 75, group = "FireResistance", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistanceEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(19-20)% to Fire Resistance", statOrder = { 1536 }, level = 75, group = "FireResistanceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistanceEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(21-22)% to Fire Resistance", statOrder = { 1536 }, level = 75, group = "FireResistanceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistanceEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(23-24)% to Fire Resistance", statOrder = { 1536 }, level = 75, group = "FireResistanceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistanceEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(25-26)% to Fire Resistance", statOrder = { 1536 }, level = 75, group = "FireResistanceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistanceEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(27-28)% to Fire Resistance", statOrder = { 1536 }, level = 75, group = "FireResistanceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistanceEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(29-30)% to Fire Resistance", statOrder = { 1536 }, level = 75, group = "FireResistanceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistanceEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(25-26)% to Fire Resistance", statOrder = { 1536 }, level = 75, group = "FireResistancePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistanceEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(27-28)% to Fire Resistance", statOrder = { 1536 }, level = 75, group = "FireResistancePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistanceEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(29-30)% to Fire Resistance", statOrder = { 1536 }, level = 75, group = "FireResistancePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistanceEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(31-32)% to Fire Resistance", statOrder = { 1536 }, level = 75, group = "FireResistancePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistanceEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(33-34)% to Fire Resistance", statOrder = { 1536 }, level = 75, group = "FireResistancePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistanceEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(35-36)% to Fire Resistance", statOrder = { 1536 }, level = 75, group = "FireResistancePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["ColdResistanceEldritchImplicit1"] = { type = "Exarch", affix = "", "+(13-14)% to Cold Resistance", statOrder = { 1542 }, level = 75, group = "ColdResistance", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistanceEldritchImplicit2"] = { type = "Exarch", affix = "", "+(15-16)% to Cold Resistance", statOrder = { 1542 }, level = 75, group = "ColdResistance", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistanceEldritchImplicit3"] = { type = "Exarch", affix = "", "+(17-18)% to Cold Resistance", statOrder = { 1542 }, level = 75, group = "ColdResistance", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistanceEldritchImplicit4"] = { type = "Exarch", affix = "", "+(19-20)% to Cold Resistance", statOrder = { 1542 }, level = 75, group = "ColdResistance", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistanceEldritchImplicit5"] = { type = "Exarch", affix = "", "+(21-22)% to Cold Resistance", statOrder = { 1542 }, level = 75, group = "ColdResistance", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistanceEldritchImplicit6"] = { type = "Exarch", affix = "", "+(23-24)% to Cold Resistance", statOrder = { 1542 }, level = 75, group = "ColdResistance", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistanceEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(19-20)% to Cold Resistance", statOrder = { 1542 }, level = 75, group = "ColdResistanceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistanceEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(21-22)% to Cold Resistance", statOrder = { 1542 }, level = 75, group = "ColdResistanceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistanceEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(23-24)% to Cold Resistance", statOrder = { 1542 }, level = 75, group = "ColdResistanceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistanceEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(25-26)% to Cold Resistance", statOrder = { 1542 }, level = 75, group = "ColdResistanceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistanceEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(27-28)% to Cold Resistance", statOrder = { 1542 }, level = 75, group = "ColdResistanceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistanceEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(29-30)% to Cold Resistance", statOrder = { 1542 }, level = 75, group = "ColdResistanceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistanceEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(25-26)% to Cold Resistance", statOrder = { 1542 }, level = 75, group = "ColdResistancePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistanceEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(27-28)% to Cold Resistance", statOrder = { 1542 }, level = 75, group = "ColdResistancePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistanceEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(29-30)% to Cold Resistance", statOrder = { 1542 }, level = 75, group = "ColdResistancePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistanceEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(31-32)% to Cold Resistance", statOrder = { 1542 }, level = 75, group = "ColdResistancePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistanceEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(33-34)% to Cold Resistance", statOrder = { 1542 }, level = 75, group = "ColdResistancePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistanceEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(35-36)% to Cold Resistance", statOrder = { 1542 }, level = 75, group = "ColdResistancePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["LightningResistanceEldritchImplicit1"] = { type = "Exarch", affix = "", "+(13-14)% to Lightning Resistance", statOrder = { 1547 }, level = 75, group = "LightningResistance", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResistanceEldritchImplicit2"] = { type = "Exarch", affix = "", "+(15-16)% to Lightning Resistance", statOrder = { 1547 }, level = 75, group = "LightningResistance", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResistanceEldritchImplicit3"] = { type = "Exarch", affix = "", "+(17-18)% to Lightning Resistance", statOrder = { 1547 }, level = 75, group = "LightningResistance", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResistanceEldritchImplicit4"] = { type = "Exarch", affix = "", "+(19-20)% to Lightning Resistance", statOrder = { 1547 }, level = 75, group = "LightningResistance", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResistanceEldritchImplicit5"] = { type = "Exarch", affix = "", "+(21-22)% to Lightning Resistance", statOrder = { 1547 }, level = 75, group = "LightningResistance", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResistanceEldritchImplicit6"] = { type = "Exarch", affix = "", "+(23-24)% to Lightning Resistance", statOrder = { 1547 }, level = 75, group = "LightningResistance", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResistanceEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(19-20)% to Lightning Resistance", statOrder = { 1547 }, level = 75, group = "LightningResistanceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResistanceEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(21-22)% to Lightning Resistance", statOrder = { 1547 }, level = 75, group = "LightningResistanceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResistanceEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(23-24)% to Lightning Resistance", statOrder = { 1547 }, level = 75, group = "LightningResistanceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResistanceEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(25-26)% to Lightning Resistance", statOrder = { 1547 }, level = 75, group = "LightningResistanceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResistanceEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(27-28)% to Lightning Resistance", statOrder = { 1547 }, level = 75, group = "LightningResistanceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResistanceEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(29-30)% to Lightning Resistance", statOrder = { 1547 }, level = 75, group = "LightningResistanceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResistanceEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(25-26)% to Lightning Resistance", statOrder = { 1547 }, level = 75, group = "LightningResistancePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResistanceEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(27-28)% to Lightning Resistance", statOrder = { 1547 }, level = 75, group = "LightningResistancePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResistanceEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(29-30)% to Lightning Resistance", statOrder = { 1547 }, level = 75, group = "LightningResistancePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResistanceEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(31-32)% to Lightning Resistance", statOrder = { 1547 }, level = 75, group = "LightningResistancePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResistanceEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(33-34)% to Lightning Resistance", statOrder = { 1547 }, level = 75, group = "LightningResistancePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResistanceEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(35-36)% to Lightning Resistance", statOrder = { 1547 }, level = 75, group = "LightningResistancePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["ChaosResistanceEldritchImplicit1"] = { type = "Exarch", affix = "", "+(6-7)% to Chaos Resistance", statOrder = { 1552 }, level = 75, group = "ChaosResistance", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "chaos", "resistance" }, }, + ["ChaosResistanceEldritchImplicit2"] = { type = "Exarch", affix = "", "+(8-9)% to Chaos Resistance", statOrder = { 1552 }, level = 75, group = "ChaosResistance", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "chaos", "resistance" }, }, + ["ChaosResistanceEldritchImplicit3"] = { type = "Exarch", affix = "", "+(10-11)% to Chaos Resistance", statOrder = { 1552 }, level = 75, group = "ChaosResistance", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "chaos", "resistance" }, }, + ["ChaosResistanceEldritchImplicit4"] = { type = "Exarch", affix = "", "+(12-13)% to Chaos Resistance", statOrder = { 1552 }, level = 75, group = "ChaosResistance", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "chaos", "resistance" }, }, + ["ChaosResistanceEldritchImplicit5"] = { type = "Exarch", affix = "", "+(14-15)% to Chaos Resistance", statOrder = { 1552 }, level = 75, group = "ChaosResistance", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "chaos", "resistance" }, }, + ["ChaosResistanceEldritchImplicit6"] = { type = "Exarch", affix = "", "+(16-17)% to Chaos Resistance", statOrder = { 1552 }, level = 75, group = "ChaosResistance", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "chaos", "resistance" }, }, + ["ChaosResistanceEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(12-13)% to Chaos Resistance", statOrder = { 1552 }, level = 75, group = "ChaosResistanceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos", "resistance" }, }, + ["ChaosResistanceEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(14-15)% to Chaos Resistance", statOrder = { 1552 }, level = 75, group = "ChaosResistanceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos", "resistance" }, }, + ["ChaosResistanceEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(16-17)% to Chaos Resistance", statOrder = { 1552 }, level = 75, group = "ChaosResistanceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos", "resistance" }, }, + ["ChaosResistanceEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(18-19)% to Chaos Resistance", statOrder = { 1552 }, level = 75, group = "ChaosResistanceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos", "resistance" }, }, + ["ChaosResistanceEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(20-21)% to Chaos Resistance", statOrder = { 1552 }, level = 75, group = "ChaosResistanceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos", "resistance" }, }, + ["ChaosResistanceEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(22-23)% to Chaos Resistance", statOrder = { 1552 }, level = 75, group = "ChaosResistanceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos", "resistance" }, }, + ["ChaosResistanceEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(18-19)% to Chaos Resistance", statOrder = { 1552 }, level = 75, group = "ChaosResistancePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos", "resistance" }, }, + ["ChaosResistanceEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(20-21)% to Chaos Resistance", statOrder = { 1552 }, level = 75, group = "ChaosResistancePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos", "resistance" }, }, + ["ChaosResistanceEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(22-23)% to Chaos Resistance", statOrder = { 1552 }, level = 75, group = "ChaosResistancePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "chaos", "resistance" }, }, + ["ChaosResistanceEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(24-25)% to Chaos Resistance", statOrder = { 1552 }, level = 75, group = "ChaosResistancePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "chaos", "resistance" }, }, + ["ChaosResistanceEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(26-27)% to Chaos Resistance", statOrder = { 1552 }, level = 75, group = "ChaosResistancePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "chaos", "resistance" }, }, + ["ChaosResistanceEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(28-29)% to Chaos Resistance", statOrder = { 1552 }, level = 75, group = "ChaosResistancePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "chaos", "resistance" }, }, + ["DamagePerEnduranceChargeEldritchImplicit1"] = { type = "Exarch", affix = "", "4% increased Damage per Endurance Charge", statOrder = { 3107 }, level = 75, group = "DamagePerEnduranceCharge", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, }, + ["DamagePerEnduranceChargeEldritchImplicit2"] = { type = "Exarch", affix = "", "4% increased Damage per Endurance Charge", statOrder = { 3107 }, level = 75, group = "DamagePerEnduranceCharge", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, }, + ["DamagePerEnduranceChargeEldritchImplicit3"] = { type = "Exarch", affix = "", "5% increased Damage per Endurance Charge", statOrder = { 3107 }, level = 75, group = "DamagePerEnduranceCharge", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, }, + ["DamagePerEnduranceChargeEldritchImplicit4"] = { type = "Exarch", affix = "", "5% increased Damage per Endurance Charge", statOrder = { 3107 }, level = 75, group = "DamagePerEnduranceCharge", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, }, + ["DamagePerEnduranceChargeEldritchImplicit5"] = { type = "Exarch", affix = "", "6% increased Damage per Endurance Charge", statOrder = { 3107 }, level = 75, group = "DamagePerEnduranceCharge", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, }, + ["DamagePerEnduranceChargeEldritchImplicit6"] = { type = "Exarch", affix = "", "6% increased Damage per Endurance Charge", statOrder = { 3107 }, level = 75, group = "DamagePerEnduranceCharge", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, }, + ["DamagePerEnduranceChargeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per Endurance Charge", statOrder = { 3107 }, level = 75, group = "DamagePerEnduranceChargeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, }, + ["DamagePerEnduranceChargeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per Endurance Charge", statOrder = { 3107 }, level = 75, group = "DamagePerEnduranceChargeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, }, + ["DamagePerEnduranceChargeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 6% increased Damage per Endurance Charge", statOrder = { 3107 }, level = 75, group = "DamagePerEnduranceChargeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, }, + ["DamagePerEnduranceChargeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 6% increased Damage per Endurance Charge", statOrder = { 3107 }, level = 75, group = "DamagePerEnduranceChargeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, }, + ["DamagePerEnduranceChargeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 7% increased Damage per Endurance Charge", statOrder = { 3107 }, level = 75, group = "DamagePerEnduranceChargeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, }, + ["DamagePerEnduranceChargeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 7% increased Damage per Endurance Charge", statOrder = { 3107 }, level = 75, group = "DamagePerEnduranceChargeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, }, + ["DamagePerEnduranceChargeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per Endurance Charge", statOrder = { 3107 }, level = 75, group = "DamagePerEnduranceChargePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, }, + ["DamagePerEnduranceChargeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per Endurance Charge", statOrder = { 3107 }, level = 75, group = "DamagePerEnduranceChargePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, }, + ["DamagePerEnduranceChargeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Damage per Endurance Charge", statOrder = { 3107 }, level = 75, group = "DamagePerEnduranceChargePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, + ["DamagePerEnduranceChargeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Damage per Endurance Charge", statOrder = { 3107 }, level = 75, group = "DamagePerEnduranceChargePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, + ["DamagePerEnduranceChargeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Damage per Endurance Charge", statOrder = { 3107 }, level = 75, group = "DamagePerEnduranceChargePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, + ["DamagePerEnduranceChargeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Damage per Endurance Charge", statOrder = { 3107 }, level = 75, group = "DamagePerEnduranceChargePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, + ["MaximumFireResistanceImplicitEldritchImplicit1"] = { type = "Exarch", affix = "", "+1% to maximum Fire Resistance", statOrder = { 1534 }, level = 75, group = "MaximumFireResistanceImplicit", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["MaximumFireResistanceImplicitEldritchImplicit2"] = { type = "Exarch", affix = "", "+1% to maximum Fire Resistance", statOrder = { 1534 }, level = 75, group = "MaximumFireResistanceImplicit", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["MaximumFireResistanceImplicitEldritchImplicit3"] = { type = "Exarch", affix = "", "+1% to maximum Fire Resistance", statOrder = { 1534 }, level = 75, group = "MaximumFireResistanceImplicit", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["MaximumFireResistanceImplicitEldritchImplicit4"] = { type = "Exarch", affix = "", "+1% to maximum Fire Resistance", statOrder = { 1534 }, level = 75, group = "MaximumFireResistanceImplicit", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["MaximumFireResistanceImplicitEldritchImplicit5"] = { type = "Exarch", affix = "", "+2% to maximum Fire Resistance", statOrder = { 1534 }, level = 75, group = "MaximumFireResistanceImplicit", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["MaximumFireResistanceImplicitEldritchImplicit6"] = { type = "Exarch", affix = "", "+2% to maximum Fire Resistance", statOrder = { 1534 }, level = 75, group = "MaximumFireResistanceImplicit", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["MaximumFireResistanceImplicitEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Fire Resistance", statOrder = { 1534 }, level = 75, group = "MaximumFireResistanceImplicitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["MaximumFireResistanceImplicitEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Fire Resistance", statOrder = { 1534 }, level = 75, group = "MaximumFireResistanceImplicitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["MaximumFireResistanceImplicitEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Fire Resistance", statOrder = { 1534 }, level = 75, group = "MaximumFireResistanceImplicitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["MaximumFireResistanceImplicitEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Fire Resistance", statOrder = { 1534 }, level = 75, group = "MaximumFireResistanceImplicitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["MaximumFireResistanceImplicitEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1534 }, level = 75, group = "MaximumFireResistanceImplicitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["MaximumFireResistanceImplicitEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1534 }, level = 75, group = "MaximumFireResistanceImplicitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["MaximumFireResistanceImplicitEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1534 }, level = 75, group = "MaximumFireResistanceImplicitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["MaximumFireResistanceImplicitEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1534 }, level = 75, group = "MaximumFireResistanceImplicitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["MaximumFireResistanceImplicitEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1534 }, level = 75, group = "MaximumFireResistanceImplicitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["MaximumFireResistanceImplicitEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1534 }, level = 75, group = "MaximumFireResistanceImplicitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["MaximumFireResistanceImplicitEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Fire Resistance", statOrder = { 1534 }, level = 75, group = "MaximumFireResistanceImplicitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["MaximumFireResistanceImplicitEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Fire Resistance", statOrder = { 1534 }, level = 75, group = "MaximumFireResistanceImplicitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["SummonTotemCastSpeedEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Totem Placement speed", statOrder = { 2487 }, level = 75, group = "SummonTotemCastSpeed", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, + ["SummonTotemCastSpeedEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Totem Placement speed", statOrder = { 2487 }, level = 75, group = "SummonTotemCastSpeed", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, + ["SummonTotemCastSpeedEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Totem Placement speed", statOrder = { 2487 }, level = 75, group = "SummonTotemCastSpeed", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, + ["SummonTotemCastSpeedEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Totem Placement speed", statOrder = { 2487 }, level = 75, group = "SummonTotemCastSpeed", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, + ["SummonTotemCastSpeedEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Totem Placement speed", statOrder = { 2487 }, level = 75, group = "SummonTotemCastSpeed", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, + ["SummonTotemCastSpeedEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Totem Placement speed", statOrder = { 2487 }, level = 75, group = "SummonTotemCastSpeed", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, + ["SummonTotemCastSpeedEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Totem Placement speed", statOrder = { 2487 }, level = 75, group = "SummonTotemCastSpeedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, }, + ["SummonTotemCastSpeedEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Totem Placement speed", statOrder = { 2487 }, level = 75, group = "SummonTotemCastSpeedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, }, + ["SummonTotemCastSpeedEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Totem Placement speed", statOrder = { 2487 }, level = 75, group = "SummonTotemCastSpeedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, }, + ["SummonTotemCastSpeedEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Totem Placement speed", statOrder = { 2487 }, level = 75, group = "SummonTotemCastSpeedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, }, + ["SummonTotemCastSpeedEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Totem Placement speed", statOrder = { 2487 }, level = 75, group = "SummonTotemCastSpeedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, }, + ["SummonTotemCastSpeedEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Totem Placement speed", statOrder = { 2487 }, level = 75, group = "SummonTotemCastSpeedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, }, + ["SummonTotemCastSpeedEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Totem Placement speed", statOrder = { 2487 }, level = 75, group = "SummonTotemCastSpeedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, }, + ["SummonTotemCastSpeedEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Totem Placement speed", statOrder = { 2487 }, level = 75, group = "SummonTotemCastSpeedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, }, + ["SummonTotemCastSpeedEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Totem Placement speed", statOrder = { 2487 }, level = 75, group = "SummonTotemCastSpeedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, }, + ["SummonTotemCastSpeedEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Totem Placement speed", statOrder = { 2487 }, level = 75, group = "SummonTotemCastSpeedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, }, + ["SummonTotemCastSpeedEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Totem Placement speed", statOrder = { 2487 }, level = 75, group = "SummonTotemCastSpeedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, }, + ["SummonTotemCastSpeedEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Totem Placement speed", statOrder = { 2487 }, level = 75, group = "SummonTotemCastSpeedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, }, + ["BrandAttachmentRangeEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Brand Attachment range", statOrder = { 9827 }, level = 75, group = "BrandAttachmentRange", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "caster" }, }, + ["BrandAttachmentRangeEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Brand Attachment range", statOrder = { 9827 }, level = 75, group = "BrandAttachmentRange", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "caster" }, }, + ["BrandAttachmentRangeEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Brand Attachment range", statOrder = { 9827 }, level = 75, group = "BrandAttachmentRange", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "caster" }, }, + ["BrandAttachmentRangeEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Brand Attachment range", statOrder = { 9827 }, level = 75, group = "BrandAttachmentRange", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "caster" }, }, + ["BrandAttachmentRangeEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Brand Attachment range", statOrder = { 9827 }, level = 75, group = "BrandAttachmentRange", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "caster" }, }, + ["BrandAttachmentRangeEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Brand Attachment range", statOrder = { 9827 }, level = 75, group = "BrandAttachmentRange", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "caster" }, }, + ["BrandAttachmentRangeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Brand Attachment range", statOrder = { 9827 }, level = 75, group = "BrandAttachmentRangeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["BrandAttachmentRangeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Brand Attachment range", statOrder = { 9827 }, level = 75, group = "BrandAttachmentRangeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, + ["BrandAttachmentRangeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Brand Attachment range", statOrder = { 9827 }, level = 75, group = "BrandAttachmentRangeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, + ["BrandAttachmentRangeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Brand Attachment range", statOrder = { 9827 }, level = 75, group = "BrandAttachmentRangeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, + ["BrandAttachmentRangeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Brand Attachment range", statOrder = { 9827 }, level = 75, group = "BrandAttachmentRangeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, + ["BrandAttachmentRangeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Brand Attachment range", statOrder = { 9827 }, level = 75, group = "BrandAttachmentRangeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, + ["BrandAttachmentRangeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Brand Attachment range", statOrder = { 9827 }, level = 75, group = "BrandAttachmentRangePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["BrandAttachmentRangeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Brand Attachment range", statOrder = { 9827 }, level = 75, group = "BrandAttachmentRangePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["BrandAttachmentRangeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Brand Attachment range", statOrder = { 9827 }, level = 75, group = "BrandAttachmentRangePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, + ["BrandAttachmentRangeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Brand Attachment range", statOrder = { 9827 }, level = 75, group = "BrandAttachmentRangePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, + ["BrandAttachmentRangeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Brand Attachment range", statOrder = { 9827 }, level = 75, group = "BrandAttachmentRangePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, + ["BrandAttachmentRangeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Brand Attachment range", statOrder = { 9827 }, level = 75, group = "BrandAttachmentRangePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, + ["FireGolemBuffEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(31-33)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4005 }, level = 75, group = "FireGolemBuffEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["FireGolemBuffEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(34-36)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4005 }, level = 75, group = "FireGolemBuffEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["FireGolemBuffEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(37-39)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4005 }, level = 75, group = "FireGolemBuffEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["FireGolemBuffEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(40-42)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4005 }, level = 75, group = "FireGolemBuffEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["FireGolemBuffEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(43-45)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4005 }, level = 75, group = "FireGolemBuffEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["FireGolemBuffEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(46-48)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4005 }, level = 75, group = "FireGolemBuffEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["FireGolemBuffEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4005 }, level = 75, group = "FireGolemBuffEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["FireGolemBuffEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4005 }, level = 75, group = "FireGolemBuffEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["FireGolemBuffEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (49-51)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4005 }, level = 75, group = "FireGolemBuffEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["FireGolemBuffEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (52-54)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4005 }, level = 75, group = "FireGolemBuffEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["FireGolemBuffEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (55-57)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4005 }, level = 75, group = "FireGolemBuffEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["FireGolemBuffEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (58-60)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4005 }, level = 75, group = "FireGolemBuffEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["FireGolemBuffEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4005 }, level = 75, group = "FireGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["FireGolemBuffEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4005 }, level = 75, group = "FireGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["FireGolemBuffEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (61-63)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4005 }, level = 75, group = "FireGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["FireGolemBuffEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (64-66)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4005 }, level = 75, group = "FireGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["FireGolemBuffEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-69)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4005 }, level = 75, group = "FireGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["FireGolemBuffEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (70-72)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4005 }, level = 75, group = "FireGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["IceGolemBuffEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(31-33)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4006 }, level = 75, group = "IceGolemBuffEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["IceGolemBuffEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(34-36)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4006 }, level = 75, group = "IceGolemBuffEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["IceGolemBuffEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(37-39)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4006 }, level = 75, group = "IceGolemBuffEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["IceGolemBuffEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(40-42)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4006 }, level = 75, group = "IceGolemBuffEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["IceGolemBuffEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(43-45)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4006 }, level = 75, group = "IceGolemBuffEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["IceGolemBuffEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(46-48)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4006 }, level = 75, group = "IceGolemBuffEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["IceGolemBuffEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4006 }, level = 75, group = "IceGolemBuffEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["IceGolemBuffEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4006 }, level = 75, group = "IceGolemBuffEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["IceGolemBuffEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (49-51)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4006 }, level = 75, group = "IceGolemBuffEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["IceGolemBuffEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (52-54)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4006 }, level = 75, group = "IceGolemBuffEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["IceGolemBuffEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (55-57)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4006 }, level = 75, group = "IceGolemBuffEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["IceGolemBuffEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (58-60)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4006 }, level = 75, group = "IceGolemBuffEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["IceGolemBuffEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4006 }, level = 75, group = "IceGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["IceGolemBuffEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4006 }, level = 75, group = "IceGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["IceGolemBuffEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (61-63)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4006 }, level = 75, group = "IceGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["IceGolemBuffEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (64-66)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4006 }, level = 75, group = "IceGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["IceGolemBuffEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-69)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4006 }, level = 75, group = "IceGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["IceGolemBuffEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (70-72)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4006 }, level = 75, group = "IceGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["LightningGolemBuffEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(31-33)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4007 }, level = 75, group = "LightningGolemBuffEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["LightningGolemBuffEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(34-36)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4007 }, level = 75, group = "LightningGolemBuffEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["LightningGolemBuffEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(37-39)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4007 }, level = 75, group = "LightningGolemBuffEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["LightningGolemBuffEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(40-42)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4007 }, level = 75, group = "LightningGolemBuffEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["LightningGolemBuffEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(43-45)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4007 }, level = 75, group = "LightningGolemBuffEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["LightningGolemBuffEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(46-48)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4007 }, level = 75, group = "LightningGolemBuffEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["LightningGolemBuffEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4007 }, level = 75, group = "LightningGolemBuffEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["LightningGolemBuffEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4007 }, level = 75, group = "LightningGolemBuffEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["LightningGolemBuffEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (49-51)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4007 }, level = 75, group = "LightningGolemBuffEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["LightningGolemBuffEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (52-54)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4007 }, level = 75, group = "LightningGolemBuffEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["LightningGolemBuffEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (55-57)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4007 }, level = 75, group = "LightningGolemBuffEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["LightningGolemBuffEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (58-60)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4007 }, level = 75, group = "LightningGolemBuffEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["LightningGolemBuffEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4007 }, level = 75, group = "LightningGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["LightningGolemBuffEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4007 }, level = 75, group = "LightningGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["LightningGolemBuffEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (61-63)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4007 }, level = 75, group = "LightningGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["LightningGolemBuffEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (64-66)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4007 }, level = 75, group = "LightningGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["LightningGolemBuffEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-69)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4007 }, level = 75, group = "LightningGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["LightningGolemBuffEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (70-72)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4007 }, level = 75, group = "LightningGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["RockGolemBuffEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(31-33)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4004 }, level = 75, group = "RockGolemBuffEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["RockGolemBuffEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(34-36)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4004 }, level = 75, group = "RockGolemBuffEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["RockGolemBuffEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(37-39)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4004 }, level = 75, group = "RockGolemBuffEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["RockGolemBuffEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(40-42)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4004 }, level = 75, group = "RockGolemBuffEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["RockGolemBuffEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(43-45)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4004 }, level = 75, group = "RockGolemBuffEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["RockGolemBuffEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(46-48)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4004 }, level = 75, group = "RockGolemBuffEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["RockGolemBuffEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4004 }, level = 75, group = "RockGolemBuffEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["RockGolemBuffEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4004 }, level = 75, group = "RockGolemBuffEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["RockGolemBuffEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (49-51)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4004 }, level = 75, group = "RockGolemBuffEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["RockGolemBuffEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (52-54)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4004 }, level = 75, group = "RockGolemBuffEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["RockGolemBuffEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (55-57)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4004 }, level = 75, group = "RockGolemBuffEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["RockGolemBuffEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (58-60)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4004 }, level = 75, group = "RockGolemBuffEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["RockGolemBuffEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4004 }, level = 75, group = "RockGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["RockGolemBuffEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4004 }, level = 75, group = "RockGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["RockGolemBuffEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (61-63)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4004 }, level = 75, group = "RockGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["RockGolemBuffEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (64-66)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4004 }, level = 75, group = "RockGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["RockGolemBuffEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-69)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4004 }, level = 75, group = "RockGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["RockGolemBuffEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (70-72)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4004 }, level = 75, group = "RockGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["ChaosGolemBuffEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(31-33)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4008 }, level = 75, group = "ChaosGolemBuffEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["ChaosGolemBuffEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(34-36)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4008 }, level = 75, group = "ChaosGolemBuffEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["ChaosGolemBuffEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(37-39)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4008 }, level = 75, group = "ChaosGolemBuffEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["ChaosGolemBuffEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(40-42)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4008 }, level = 75, group = "ChaosGolemBuffEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["ChaosGolemBuffEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(43-45)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4008 }, level = 75, group = "ChaosGolemBuffEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["ChaosGolemBuffEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(46-48)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4008 }, level = 75, group = "ChaosGolemBuffEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["ChaosGolemBuffEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4008 }, level = 75, group = "ChaosGolemBuffEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["ChaosGolemBuffEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4008 }, level = 75, group = "ChaosGolemBuffEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["ChaosGolemBuffEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (49-51)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4008 }, level = 75, group = "ChaosGolemBuffEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["ChaosGolemBuffEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (52-54)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4008 }, level = 75, group = "ChaosGolemBuffEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["ChaosGolemBuffEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (55-57)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4008 }, level = 75, group = "ChaosGolemBuffEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["ChaosGolemBuffEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (58-60)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4008 }, level = 75, group = "ChaosGolemBuffEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["ChaosGolemBuffEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4008 }, level = 75, group = "ChaosGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["ChaosGolemBuffEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4008 }, level = 75, group = "ChaosGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["ChaosGolemBuffEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (61-63)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4008 }, level = 75, group = "ChaosGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["ChaosGolemBuffEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (64-66)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4008 }, level = 75, group = "ChaosGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["ChaosGolemBuffEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-69)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4008 }, level = 75, group = "ChaosGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["ChaosGolemBuffEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (70-72)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4008 }, level = 75, group = "ChaosGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["CarrionGolemBuffEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(31-33)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4891 }, level = 75, group = "CarrionGolemBuffEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["CarrionGolemBuffEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(34-36)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4891 }, level = 75, group = "CarrionGolemBuffEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["CarrionGolemBuffEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(37-39)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4891 }, level = 75, group = "CarrionGolemBuffEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["CarrionGolemBuffEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(40-42)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4891 }, level = 75, group = "CarrionGolemBuffEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["CarrionGolemBuffEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(43-45)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4891 }, level = 75, group = "CarrionGolemBuffEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["CarrionGolemBuffEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(46-48)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4891 }, level = 75, group = "CarrionGolemBuffEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["CarrionGolemBuffEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4891 }, level = 75, group = "CarrionGolemBuffEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["CarrionGolemBuffEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4891 }, level = 75, group = "CarrionGolemBuffEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["CarrionGolemBuffEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (49-51)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4891 }, level = 75, group = "CarrionGolemBuffEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["CarrionGolemBuffEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (52-54)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4891 }, level = 75, group = "CarrionGolemBuffEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["CarrionGolemBuffEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (55-57)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4891 }, level = 75, group = "CarrionGolemBuffEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["CarrionGolemBuffEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (58-60)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4891 }, level = 75, group = "CarrionGolemBuffEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["CarrionGolemBuffEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4891 }, level = 75, group = "CarrionGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["CarrionGolemBuffEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4891 }, level = 75, group = "CarrionGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["CarrionGolemBuffEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (61-63)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4891 }, level = 75, group = "CarrionGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["CarrionGolemBuffEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (64-66)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4891 }, level = 75, group = "CarrionGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["CarrionGolemBuffEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-69)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4891 }, level = 75, group = "CarrionGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["CarrionGolemBuffEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (70-72)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4891 }, level = 75, group = "CarrionGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["FleshOfferingEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Flesh Offering has (6-7)% increased Effect", statOrder = { 1085 }, level = 75, group = "FleshOfferingEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["FleshOfferingEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Flesh Offering has (8-9)% increased Effect", statOrder = { 1085 }, level = 75, group = "FleshOfferingEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["FleshOfferingEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Flesh Offering has (10-11)% increased Effect", statOrder = { 1085 }, level = 75, group = "FleshOfferingEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["FleshOfferingEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Flesh Offering has (12-13)% increased Effect", statOrder = { 1085 }, level = 75, group = "FleshOfferingEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["FleshOfferingEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Flesh Offering has (14-15)% increased Effect", statOrder = { 1085 }, level = 75, group = "FleshOfferingEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["FleshOfferingEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Flesh Offering has (16-17)% increased Effect", statOrder = { 1085 }, level = 75, group = "FleshOfferingEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["FleshOfferingEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh Offering has (12-13)% increased Effect", statOrder = { 1085 }, level = 75, group = "FleshOfferingEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["FleshOfferingEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh Offering has (14-15)% increased Effect", statOrder = { 1085 }, level = 75, group = "FleshOfferingEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["FleshOfferingEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh Offering has (16-17)% increased Effect", statOrder = { 1085 }, level = 75, group = "FleshOfferingEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["FleshOfferingEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh Offering has (18-19)% increased Effect", statOrder = { 1085 }, level = 75, group = "FleshOfferingEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["FleshOfferingEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh Offering has (20-21)% increased Effect", statOrder = { 1085 }, level = 75, group = "FleshOfferingEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["FleshOfferingEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh Offering has (22-23)% increased Effect", statOrder = { 1085 }, level = 75, group = "FleshOfferingEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["FleshOfferingEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh Offering has (18-19)% increased Effect", statOrder = { 1085 }, level = 75, group = "FleshOfferingEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["FleshOfferingEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh Offering has (20-21)% increased Effect", statOrder = { 1085 }, level = 75, group = "FleshOfferingEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["FleshOfferingEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh Offering has (22-23)% increased Effect", statOrder = { 1085 }, level = 75, group = "FleshOfferingEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["FleshOfferingEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh Offering has (24-25)% increased Effect", statOrder = { 1085 }, level = 75, group = "FleshOfferingEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["FleshOfferingEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh Offering has (26-27)% increased Effect", statOrder = { 1085 }, level = 75, group = "FleshOfferingEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["FleshOfferingEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh Offering has (28-29)% increased Effect", statOrder = { 1085 }, level = 75, group = "FleshOfferingEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["BoneOfferingEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Bone Offering has (6-7)% increased Effect", statOrder = { 1084 }, level = 75, group = "BoneOfferingEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["BoneOfferingEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Bone Offering has (8-9)% increased Effect", statOrder = { 1084 }, level = 75, group = "BoneOfferingEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["BoneOfferingEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Bone Offering has (10-11)% increased Effect", statOrder = { 1084 }, level = 75, group = "BoneOfferingEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["BoneOfferingEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Bone Offering has (12-13)% increased Effect", statOrder = { 1084 }, level = 75, group = "BoneOfferingEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["BoneOfferingEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Bone Offering has (14-15)% increased Effect", statOrder = { 1084 }, level = 75, group = "BoneOfferingEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["BoneOfferingEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Bone Offering has (16-17)% increased Effect", statOrder = { 1084 }, level = 75, group = "BoneOfferingEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["BoneOfferingEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Bone Offering has (12-13)% increased Effect", statOrder = { 1084 }, level = 75, group = "BoneOfferingEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["BoneOfferingEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Bone Offering has (14-15)% increased Effect", statOrder = { 1084 }, level = 75, group = "BoneOfferingEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["BoneOfferingEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Bone Offering has (16-17)% increased Effect", statOrder = { 1084 }, level = 75, group = "BoneOfferingEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["BoneOfferingEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Bone Offering has (18-19)% increased Effect", statOrder = { 1084 }, level = 75, group = "BoneOfferingEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["BoneOfferingEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Bone Offering has (20-21)% increased Effect", statOrder = { 1084 }, level = 75, group = "BoneOfferingEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["BoneOfferingEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Bone Offering has (22-23)% increased Effect", statOrder = { 1084 }, level = 75, group = "BoneOfferingEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["BoneOfferingEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bone Offering has (18-19)% increased Effect", statOrder = { 1084 }, level = 75, group = "BoneOfferingEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["BoneOfferingEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bone Offering has (20-21)% increased Effect", statOrder = { 1084 }, level = 75, group = "BoneOfferingEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["BoneOfferingEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bone Offering has (22-23)% increased Effect", statOrder = { 1084 }, level = 75, group = "BoneOfferingEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["BoneOfferingEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bone Offering has (24-25)% increased Effect", statOrder = { 1084 }, level = 75, group = "BoneOfferingEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["BoneOfferingEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bone Offering has (26-27)% increased Effect", statOrder = { 1084 }, level = 75, group = "BoneOfferingEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["BoneOfferingEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bone Offering has (28-29)% increased Effect", statOrder = { 1084 }, level = 75, group = "BoneOfferingEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["SpiritOfferingEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Spirit Offering has (6-7)% increased Effect", statOrder = { 1086 }, level = 75, group = "SpiritOfferingEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["SpiritOfferingEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Spirit Offering has (8-9)% increased Effect", statOrder = { 1086 }, level = 75, group = "SpiritOfferingEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["SpiritOfferingEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Spirit Offering has (10-11)% increased Effect", statOrder = { 1086 }, level = 75, group = "SpiritOfferingEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["SpiritOfferingEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Spirit Offering has (12-13)% increased Effect", statOrder = { 1086 }, level = 75, group = "SpiritOfferingEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["SpiritOfferingEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Spirit Offering has (14-15)% increased Effect", statOrder = { 1086 }, level = 75, group = "SpiritOfferingEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["SpiritOfferingEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Spirit Offering has (16-17)% increased Effect", statOrder = { 1086 }, level = 75, group = "SpiritOfferingEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["SpiritOfferingEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Spirit Offering has (12-13)% increased Effect", statOrder = { 1086 }, level = 75, group = "SpiritOfferingEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["SpiritOfferingEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Spirit Offering has (14-15)% increased Effect", statOrder = { 1086 }, level = 75, group = "SpiritOfferingEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["SpiritOfferingEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Spirit Offering has (16-17)% increased Effect", statOrder = { 1086 }, level = 75, group = "SpiritOfferingEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["SpiritOfferingEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Spirit Offering has (18-19)% increased Effect", statOrder = { 1086 }, level = 75, group = "SpiritOfferingEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["SpiritOfferingEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Spirit Offering has (20-21)% increased Effect", statOrder = { 1086 }, level = 75, group = "SpiritOfferingEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["SpiritOfferingEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Spirit Offering has (22-23)% increased Effect", statOrder = { 1086 }, level = 75, group = "SpiritOfferingEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["SpiritOfferingEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Spirit Offering has (18-19)% increased Effect", statOrder = { 1086 }, level = 75, group = "SpiritOfferingEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["SpiritOfferingEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Spirit Offering has (20-21)% increased Effect", statOrder = { 1086 }, level = 75, group = "SpiritOfferingEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["SpiritOfferingEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Spirit Offering has (22-23)% increased Effect", statOrder = { 1086 }, level = 75, group = "SpiritOfferingEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["SpiritOfferingEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Spirit Offering has (24-25)% increased Effect", statOrder = { 1086 }, level = 75, group = "SpiritOfferingEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["SpiritOfferingEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Spirit Offering has (26-27)% increased Effect", statOrder = { 1086 }, level = 75, group = "SpiritOfferingEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["SpiritOfferingEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Spirit Offering has (28-29)% increased Effect", statOrder = { 1086 }, level = 75, group = "SpiritOfferingEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["AvoidIgniteEldritchImplicit1"] = { type = "Exarch", affix = "", "(33-35)% chance to Avoid being Ignited", statOrder = { 1757 }, level = 75, group = "AvoidIgnite", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["AvoidIgniteEldritchImplicit2"] = { type = "Exarch", affix = "", "(36-38)% chance to Avoid being Ignited", statOrder = { 1757 }, level = 75, group = "AvoidIgnite", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["AvoidIgniteEldritchImplicit3"] = { type = "Exarch", affix = "", "(39-41)% chance to Avoid being Ignited", statOrder = { 1757 }, level = 75, group = "AvoidIgnite", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["AvoidIgniteEldritchImplicit4"] = { type = "Exarch", affix = "", "(42-44)% chance to Avoid being Ignited", statOrder = { 1757 }, level = 75, group = "AvoidIgnite", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["AvoidIgniteEldritchImplicit5"] = { type = "Exarch", affix = "", "(45-47)% chance to Avoid being Ignited", statOrder = { 1757 }, level = 75, group = "AvoidIgnite", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["AvoidIgniteEldritchImplicit6"] = { type = "Exarch", affix = "", "(48-50)% chance to Avoid being Ignited", statOrder = { 1757 }, level = 75, group = "AvoidIgnite", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["AvoidIgniteEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (42-44)% chance to Avoid being Ignited", statOrder = { 1757 }, level = 75, group = "AvoidIgniteUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["AvoidIgniteEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (45-47)% chance to Avoid being Ignited", statOrder = { 1757 }, level = 75, group = "AvoidIgniteUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["AvoidIgniteEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (48-50)% chance to Avoid being Ignited", statOrder = { 1757 }, level = 75, group = "AvoidIgniteUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["AvoidIgniteEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (51-53)% chance to Avoid being Ignited", statOrder = { 1757 }, level = 75, group = "AvoidIgniteUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["AvoidIgniteEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (54-57)% chance to Avoid being Ignited", statOrder = { 1757 }, level = 75, group = "AvoidIgniteUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["AvoidIgniteEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (58-61)% chance to Avoid being Ignited", statOrder = { 1757 }, level = 75, group = "AvoidIgniteUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["AvoidIgniteEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% chance to Avoid being Ignited", statOrder = { 1757 }, level = 75, group = "AvoidIgnitePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["AvoidIgniteEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% chance to Avoid being Ignited", statOrder = { 1757 }, level = 75, group = "AvoidIgnitePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["AvoidIgniteEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% chance to Avoid being Ignited", statOrder = { 1757 }, level = 75, group = "AvoidIgnitePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["AvoidIgniteEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% chance to Avoid being Ignited", statOrder = { 1757 }, level = 75, group = "AvoidIgnitePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["AvoidIgniteEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% chance to Avoid being Ignited", statOrder = { 1757 }, level = 75, group = "AvoidIgnitePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["AvoidIgniteEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% chance to Avoid being Ignited", statOrder = { 1757 }, level = 75, group = "AvoidIgnitePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["AvoidFreezeEldritchImplicit1"] = { type = "Exarch", affix = "", "(33-35)% chance to Avoid being Frozen", statOrder = { 1756 }, level = 75, group = "AvoidFreeze", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["AvoidFreezeEldritchImplicit2"] = { type = "Exarch", affix = "", "(36-38)% chance to Avoid being Frozen", statOrder = { 1756 }, level = 75, group = "AvoidFreeze", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["AvoidFreezeEldritchImplicit3"] = { type = "Exarch", affix = "", "(39-41)% chance to Avoid being Frozen", statOrder = { 1756 }, level = 75, group = "AvoidFreeze", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["AvoidFreezeEldritchImplicit4"] = { type = "Exarch", affix = "", "(42-44)% chance to Avoid being Frozen", statOrder = { 1756 }, level = 75, group = "AvoidFreeze", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["AvoidFreezeEldritchImplicit5"] = { type = "Exarch", affix = "", "(45-47)% chance to Avoid being Frozen", statOrder = { 1756 }, level = 75, group = "AvoidFreeze", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["AvoidFreezeEldritchImplicit6"] = { type = "Exarch", affix = "", "(48-50)% chance to Avoid being Frozen", statOrder = { 1756 }, level = 75, group = "AvoidFreeze", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["AvoidFreezeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (42-44)% chance to Avoid being Frozen", statOrder = { 1756 }, level = 75, group = "AvoidFreezeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["AvoidFreezeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (45-47)% chance to Avoid being Frozen", statOrder = { 1756 }, level = 75, group = "AvoidFreezeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["AvoidFreezeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (48-50)% chance to Avoid being Frozen", statOrder = { 1756 }, level = 75, group = "AvoidFreezeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["AvoidFreezeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (51-53)% chance to Avoid being Frozen", statOrder = { 1756 }, level = 75, group = "AvoidFreezeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["AvoidFreezeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (54-57)% chance to Avoid being Frozen", statOrder = { 1756 }, level = 75, group = "AvoidFreezeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["AvoidFreezeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (58-61)% chance to Avoid being Frozen", statOrder = { 1756 }, level = 75, group = "AvoidFreezeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["AvoidFreezeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% chance to Avoid being Frozen", statOrder = { 1756 }, level = 75, group = "AvoidFreezePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["AvoidFreezeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% chance to Avoid being Frozen", statOrder = { 1756 }, level = 75, group = "AvoidFreezePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["AvoidFreezeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% chance to Avoid being Frozen", statOrder = { 1756 }, level = 75, group = "AvoidFreezePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["AvoidFreezeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% chance to Avoid being Frozen", statOrder = { 1756 }, level = 75, group = "AvoidFreezePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["AvoidFreezeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% chance to Avoid being Frozen", statOrder = { 1756 }, level = 75, group = "AvoidFreezePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["AvoidFreezeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% chance to Avoid being Frozen", statOrder = { 1756 }, level = 75, group = "AvoidFreezePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["AvoidShockEldritchImplicit1"] = { type = "Exarch", affix = "", "(33-35)% chance to Avoid being Shocked", statOrder = { 1759 }, level = 75, group = "AvoidShock", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["AvoidShockEldritchImplicit2"] = { type = "Exarch", affix = "", "(36-38)% chance to Avoid being Shocked", statOrder = { 1759 }, level = 75, group = "AvoidShock", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["AvoidShockEldritchImplicit3"] = { type = "Exarch", affix = "", "(39-41)% chance to Avoid being Shocked", statOrder = { 1759 }, level = 75, group = "AvoidShock", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["AvoidShockEldritchImplicit4"] = { type = "Exarch", affix = "", "(42-44)% chance to Avoid being Shocked", statOrder = { 1759 }, level = 75, group = "AvoidShock", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["AvoidShockEldritchImplicit5"] = { type = "Exarch", affix = "", "(45-47)% chance to Avoid being Shocked", statOrder = { 1759 }, level = 75, group = "AvoidShock", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["AvoidShockEldritchImplicit6"] = { type = "Exarch", affix = "", "(48-50)% chance to Avoid being Shocked", statOrder = { 1759 }, level = 75, group = "AvoidShock", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["AvoidShockEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (42-44)% chance to Avoid being Shocked", statOrder = { 1759 }, level = 75, group = "AvoidShockUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["AvoidShockEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (45-47)% chance to Avoid being Shocked", statOrder = { 1759 }, level = 75, group = "AvoidShockUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["AvoidShockEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (48-50)% chance to Avoid being Shocked", statOrder = { 1759 }, level = 75, group = "AvoidShockUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["AvoidShockEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (51-53)% chance to Avoid being Shocked", statOrder = { 1759 }, level = 75, group = "AvoidShockUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["AvoidShockEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (54-57)% chance to Avoid being Shocked", statOrder = { 1759 }, level = 75, group = "AvoidShockUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["AvoidShockEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (58-61)% chance to Avoid being Shocked", statOrder = { 1759 }, level = 75, group = "AvoidShockUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["AvoidShockEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% chance to Avoid being Shocked", statOrder = { 1759 }, level = 75, group = "AvoidShockPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["AvoidShockEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% chance to Avoid being Shocked", statOrder = { 1759 }, level = 75, group = "AvoidShockPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["AvoidShockEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% chance to Avoid being Shocked", statOrder = { 1759 }, level = 75, group = "AvoidShockPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["AvoidShockEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% chance to Avoid being Shocked", statOrder = { 1759 }, level = 75, group = "AvoidShockPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["AvoidShockEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% chance to Avoid being Shocked", statOrder = { 1759 }, level = 75, group = "AvoidShockPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["AvoidShockEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% chance to Avoid being Shocked", statOrder = { 1759 }, level = 75, group = "AvoidShockPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["AvoidStunEldritchImplicit1"] = { type = "Exarch", affix = "", "(15-17)% chance to Avoid being Stunned", statOrder = { 1762 }, level = 75, group = "AvoidStun", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["AvoidStunEldritchImplicit2"] = { type = "Exarch", affix = "", "(18-20)% chance to Avoid being Stunned", statOrder = { 1762 }, level = 75, group = "AvoidStun", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["AvoidStunEldritchImplicit3"] = { type = "Exarch", affix = "", "(21-23)% chance to Avoid being Stunned", statOrder = { 1762 }, level = 75, group = "AvoidStun", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["AvoidStunEldritchImplicit4"] = { type = "Exarch", affix = "", "(24-26)% chance to Avoid being Stunned", statOrder = { 1762 }, level = 75, group = "AvoidStun", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["AvoidStunEldritchImplicit5"] = { type = "Exarch", affix = "", "(27-29)% chance to Avoid being Stunned", statOrder = { 1762 }, level = 75, group = "AvoidStun", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["AvoidStunEldritchImplicit6"] = { type = "Exarch", affix = "", "(30-32)% chance to Avoid being Stunned", statOrder = { 1762 }, level = 75, group = "AvoidStun", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["AvoidStunEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (24-26)% chance to Avoid being Stunned", statOrder = { 1762 }, level = 75, group = "AvoidStunUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["AvoidStunEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-29)% chance to Avoid being Stunned", statOrder = { 1762 }, level = 75, group = "AvoidStunUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["AvoidStunEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (30-32)% chance to Avoid being Stunned", statOrder = { 1762 }, level = 75, group = "AvoidStunUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["AvoidStunEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (33-35)% chance to Avoid being Stunned", statOrder = { 1762 }, level = 75, group = "AvoidStunUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["AvoidStunEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (36-38)% chance to Avoid being Stunned", statOrder = { 1762 }, level = 75, group = "AvoidStunUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["AvoidStunEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (39-41)% chance to Avoid being Stunned", statOrder = { 1762 }, level = 75, group = "AvoidStunUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["AvoidStunEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% chance to Avoid being Stunned", statOrder = { 1762 }, level = 75, group = "AvoidStunPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["AvoidStunEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% chance to Avoid being Stunned", statOrder = { 1762 }, level = 75, group = "AvoidStunPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["AvoidStunEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-41)% chance to Avoid being Stunned", statOrder = { 1762 }, level = 75, group = "AvoidStunPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["AvoidStunEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (42-44)% chance to Avoid being Stunned", statOrder = { 1762 }, level = 75, group = "AvoidStunPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["AvoidStunEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (45-47)% chance to Avoid being Stunned", statOrder = { 1762 }, level = 75, group = "AvoidStunPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["AvoidStunEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (48-50)% chance to Avoid being Stunned", statOrder = { 1762 }, level = 75, group = "AvoidStunPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["OnslaughtEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(6-7)% increased Effect of Onslaught on you", statOrder = { 3198 }, level = 75, group = "OnslaughtEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["OnslaughtEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(8-9)% increased Effect of Onslaught on you", statOrder = { 3198 }, level = 75, group = "OnslaughtEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["OnslaughtEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(10-11)% increased Effect of Onslaught on you", statOrder = { 3198 }, level = 75, group = "OnslaughtEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["OnslaughtEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(12-13)% increased Effect of Onslaught on you", statOrder = { 3198 }, level = 75, group = "OnslaughtEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["OnslaughtEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(14-15)% increased Effect of Onslaught on you", statOrder = { 3198 }, level = 75, group = "OnslaughtEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["OnslaughtEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(16-17)% increased Effect of Onslaught on you", statOrder = { 3198 }, level = 75, group = "OnslaughtEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["OnslaughtEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (12-13)% increased Effect of Onslaught on you", statOrder = { 3198 }, level = 75, group = "OnslaughtEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["OnslaughtEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (14-15)% increased Effect of Onslaught on you", statOrder = { 3198 }, level = 75, group = "OnslaughtEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["OnslaughtEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (16-17)% increased Effect of Onslaught on you", statOrder = { 3198 }, level = 75, group = "OnslaughtEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["OnslaughtEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (18-19)% increased Effect of Onslaught on you", statOrder = { 3198 }, level = 75, group = "OnslaughtEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["OnslaughtEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (20-21)% increased Effect of Onslaught on you", statOrder = { 3198 }, level = 75, group = "OnslaughtEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["OnslaughtEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (22-23)% increased Effect of Onslaught on you", statOrder = { 3198 }, level = 75, group = "OnslaughtEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["OnslaughtEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (18-19)% increased Effect of Onslaught on you", statOrder = { 3198 }, level = 75, group = "OnslaughtEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["OnslaughtEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% increased Effect of Onslaught on you", statOrder = { 3198 }, level = 75, group = "OnslaughtEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["OnslaughtEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% increased Effect of Onslaught on you", statOrder = { 3198 }, level = 75, group = "OnslaughtEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["OnslaughtEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% increased Effect of Onslaught on you", statOrder = { 3198 }, level = 75, group = "OnslaughtEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["OnslaughtEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% increased Effect of Onslaught on you", statOrder = { 3198 }, level = 75, group = "OnslaughtEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["OnslaughtEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% increased Effect of Onslaught on you", statOrder = { 3198 }, level = 75, group = "OnslaughtEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["LifeRegenerationRateEldritchImplicit1"] = { type = "Eater", affix = "", "7% increased Life Regeneration rate", statOrder = { 1488 }, level = 75, group = "LifeRegenerationRate", weightKey = { "no_tier_6_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "resource", "life" }, }, + ["LifeRegenerationRateEldritchImplicit2"] = { type = "Eater", affix = "", "8% increased Life Regeneration rate", statOrder = { 1488 }, level = 75, group = "LifeRegenerationRate", weightKey = { "no_tier_5_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "resource", "life" }, }, + ["LifeRegenerationRateEldritchImplicit3"] = { type = "Eater", affix = "", "9% increased Life Regeneration rate", statOrder = { 1488 }, level = 75, group = "LifeRegenerationRate", weightKey = { "no_tier_4_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "resource", "life" }, }, + ["LifeRegenerationRateEldritchImplicit4"] = { type = "Eater", affix = "", "10% increased Life Regeneration rate", statOrder = { 1488 }, level = 75, group = "LifeRegenerationRate", weightKey = { "no_tier_3_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "resource", "life" }, }, + ["LifeRegenerationRateEldritchImplicit5"] = { type = "Eater", affix = "", "11% increased Life Regeneration rate", statOrder = { 1488 }, level = 75, group = "LifeRegenerationRate", weightKey = { "no_tier_2_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "resource", "life" }, }, + ["LifeRegenerationRateEldritchImplicit6"] = { type = "Eater", affix = "", "12% increased Life Regeneration rate", statOrder = { 1488 }, level = 75, group = "LifeRegenerationRate", weightKey = { "no_tier_1_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "resource", "life" }, }, + ["LifeRegenerationRateEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% increased Life Regeneration rate", statOrder = { 1488 }, level = 75, group = "LifeRegenerationRateUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "life" }, }, + ["LifeRegenerationRateEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 11% increased Life Regeneration rate", statOrder = { 1488 }, level = 75, group = "LifeRegenerationRateUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "resource", "life" }, }, + ["LifeRegenerationRateEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 12% increased Life Regeneration rate", statOrder = { 1488 }, level = 75, group = "LifeRegenerationRateUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "resource", "life" }, }, + ["LifeRegenerationRateEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 13% increased Life Regeneration rate", statOrder = { 1488 }, level = 75, group = "LifeRegenerationRateUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "resource", "life" }, }, + ["LifeRegenerationRateEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% increased Life Regeneration rate", statOrder = { 1488 }, level = 75, group = "LifeRegenerationRateUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "resource", "life" }, }, + ["LifeRegenerationRateEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% increased Life Regeneration rate", statOrder = { 1488 }, level = 75, group = "LifeRegenerationRateUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "resource", "life" }, }, + ["LifeRegenerationRateEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% increased Life Regeneration rate", statOrder = { 1488 }, level = 75, group = "LifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "life" }, }, + ["LifeRegenerationRateEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% increased Life Regeneration rate", statOrder = { 1488 }, level = 75, group = "LifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "life" }, }, + ["LifeRegenerationRateEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 15% increased Life Regeneration rate", statOrder = { 1488 }, level = 75, group = "LifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resource", "life" }, }, + ["LifeRegenerationRateEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Life Regeneration rate", statOrder = { 1488 }, level = 75, group = "LifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resource", "life" }, }, + ["LifeRegenerationRateEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 17% increased Life Regeneration rate", statOrder = { 1488 }, level = 75, group = "LifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resource", "life" }, }, + ["LifeRegenerationRateEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Life Regeneration rate", statOrder = { 1488 }, level = 75, group = "LifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resource", "life" }, }, + ["ArmourFromHelmetGlovesEldritchImplicit1"] = { type = "Eater", affix = "", "(33-35)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4661 }, level = 75, group = "ArmourFromHelmetGloves", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, + ["ArmourFromHelmetGlovesEldritchImplicit2"] = { type = "Eater", affix = "", "(36-38)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4661 }, level = 75, group = "ArmourFromHelmetGloves", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, + ["ArmourFromHelmetGlovesEldritchImplicit3"] = { type = "Eater", affix = "", "(39-41)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4661 }, level = 75, group = "ArmourFromHelmetGloves", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, + ["ArmourFromHelmetGlovesEldritchImplicit4"] = { type = "Eater", affix = "", "(42-44)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4661 }, level = 75, group = "ArmourFromHelmetGloves", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, + ["ArmourFromHelmetGlovesEldritchImplicit5"] = { type = "Eater", affix = "", "(45-47)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4661 }, level = 75, group = "ArmourFromHelmetGloves", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, + ["ArmourFromHelmetGlovesEldritchImplicit6"] = { type = "Eater", affix = "", "(48-50)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4661 }, level = 75, group = "ArmourFromHelmetGloves", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, + ["ArmourFromHelmetGlovesEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (42-44)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4661 }, level = 75, group = "ArmourFromHelmetGlovesUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "armour" }, }, + ["ArmourFromHelmetGlovesEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (45-47)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4661 }, level = 75, group = "ArmourFromHelmetGlovesUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "armour" }, }, + ["ArmourFromHelmetGlovesEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (48-50)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4661 }, level = 75, group = "ArmourFromHelmetGlovesUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "armour" }, }, + ["ArmourFromHelmetGlovesEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (51-53)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4661 }, level = 75, group = "ArmourFromHelmetGlovesUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "armour" }, }, + ["ArmourFromHelmetGlovesEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (54-57)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4661 }, level = 75, group = "ArmourFromHelmetGlovesUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "armour" }, }, + ["ArmourFromHelmetGlovesEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (58-61)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4661 }, level = 75, group = "ArmourFromHelmetGlovesUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "armour" }, }, + ["ArmourFromHelmetGlovesEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4661 }, level = 75, group = "ArmourFromHelmetGlovesPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "armour" }, }, + ["ArmourFromHelmetGlovesEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4661 }, level = 75, group = "ArmourFromHelmetGlovesPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "armour" }, }, + ["ArmourFromHelmetGlovesEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4661 }, level = 75, group = "ArmourFromHelmetGlovesPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "armour" }, }, + ["ArmourFromHelmetGlovesEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4661 }, level = 75, group = "ArmourFromHelmetGlovesPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "armour" }, }, + ["ArmourFromHelmetGlovesEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4661 }, level = 75, group = "ArmourFromHelmetGlovesPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "armour" }, }, + ["ArmourFromHelmetGlovesEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4661 }, level = 75, group = "ArmourFromHelmetGlovesPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "armour" }, }, + ["FasterIgniteDamageEldritchImplicit1"] = { type = "Eater", affix = "", "Ignites you inflict deal Damage 5% faster", statOrder = { 2473 }, level = 75, group = "FasterIgniteDamage", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, + ["FasterIgniteDamageEldritchImplicit2"] = { type = "Eater", affix = "", "Ignites you inflict deal Damage 6% faster", statOrder = { 2473 }, level = 75, group = "FasterIgniteDamage", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, + ["FasterIgniteDamageEldritchImplicit3"] = { type = "Eater", affix = "", "Ignites you inflict deal Damage 7% faster", statOrder = { 2473 }, level = 75, group = "FasterIgniteDamage", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, + ["FasterIgniteDamageEldritchImplicit4"] = { type = "Eater", affix = "", "Ignites you inflict deal Damage 8% faster", statOrder = { 2473 }, level = 75, group = "FasterIgniteDamage", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, + ["FasterIgniteDamageEldritchImplicit5"] = { type = "Eater", affix = "", "Ignites you inflict deal Damage 9% faster", statOrder = { 2473 }, level = 75, group = "FasterIgniteDamage", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, + ["FasterIgniteDamageEldritchImplicit6"] = { type = "Eater", affix = "", "Ignites you inflict deal Damage 10% faster", statOrder = { 2473 }, level = 75, group = "FasterIgniteDamage", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, + ["FasterIgniteDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict deal Damage 8% faster", statOrder = { 2473 }, level = 75, group = "FasterIgniteDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["FasterIgniteDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict deal Damage 9% faster", statOrder = { 2473 }, level = 75, group = "FasterIgniteDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["FasterIgniteDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict deal Damage 10% faster", statOrder = { 2473 }, level = 75, group = "FasterIgniteDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["FasterIgniteDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict deal Damage 11% faster", statOrder = { 2473 }, level = 75, group = "FasterIgniteDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["FasterIgniteDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict deal Damage 12% faster", statOrder = { 2473 }, level = 75, group = "FasterIgniteDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["FasterIgniteDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict deal Damage 13% faster", statOrder = { 2473 }, level = 75, group = "FasterIgniteDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["FasterIgniteDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict deal Damage 11% faster", statOrder = { 2473 }, level = 75, group = "FasterIgniteDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["FasterIgniteDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict deal Damage 12% faster", statOrder = { 2473 }, level = 75, group = "FasterIgniteDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["FasterIgniteDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict deal Damage 13% faster", statOrder = { 2473 }, level = 75, group = "FasterIgniteDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["FasterIgniteDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict deal Damage 14% faster", statOrder = { 2473 }, level = 75, group = "FasterIgniteDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["FasterIgniteDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict deal Damage 15% faster", statOrder = { 2473 }, level = 75, group = "FasterIgniteDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["FasterIgniteDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict deal Damage 16% faster", statOrder = { 2473 }, level = 75, group = "FasterIgniteDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["FasterPoisonDamageEldritchImplicit1"] = { type = "Eater", affix = "", "Poisons you inflict deal Damage 5% faster", statOrder = { 6431 }, level = 75, group = "FasterPoisonDamage", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["FasterPoisonDamageEldritchImplicit2"] = { type = "Eater", affix = "", "Poisons you inflict deal Damage 6% faster", statOrder = { 6431 }, level = 75, group = "FasterPoisonDamage", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["FasterPoisonDamageEldritchImplicit3"] = { type = "Eater", affix = "", "Poisons you inflict deal Damage 7% faster", statOrder = { 6431 }, level = 75, group = "FasterPoisonDamage", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["FasterPoisonDamageEldritchImplicit4"] = { type = "Eater", affix = "", "Poisons you inflict deal Damage 8% faster", statOrder = { 6431 }, level = 75, group = "FasterPoisonDamage", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["FasterPoisonDamageEldritchImplicit5"] = { type = "Eater", affix = "", "Poisons you inflict deal Damage 9% faster", statOrder = { 6431 }, level = 75, group = "FasterPoisonDamage", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["FasterPoisonDamageEldritchImplicit6"] = { type = "Eater", affix = "", "Poisons you inflict deal Damage 10% faster", statOrder = { 6431 }, level = 75, group = "FasterPoisonDamage", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["FasterPoisonDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Poisons you inflict deal Damage 8% faster", statOrder = { 6431 }, level = 75, group = "FasterPoisonDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["FasterPoisonDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Poisons you inflict deal Damage 9% faster", statOrder = { 6431 }, level = 75, group = "FasterPoisonDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["FasterPoisonDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Poisons you inflict deal Damage 10% faster", statOrder = { 6431 }, level = 75, group = "FasterPoisonDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["FasterPoisonDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Poisons you inflict deal Damage 11% faster", statOrder = { 6431 }, level = 75, group = "FasterPoisonDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["FasterPoisonDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Poisons you inflict deal Damage 12% faster", statOrder = { 6431 }, level = 75, group = "FasterPoisonDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["FasterPoisonDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Poisons you inflict deal Damage 13% faster", statOrder = { 6431 }, level = 75, group = "FasterPoisonDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["FasterPoisonDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Poisons you inflict deal Damage 11% faster", statOrder = { 6431 }, level = 75, group = "FasterPoisonDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["FasterPoisonDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Poisons you inflict deal Damage 12% faster", statOrder = { 6431 }, level = 75, group = "FasterPoisonDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["FasterPoisonDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Poisons you inflict deal Damage 13% faster", statOrder = { 6431 }, level = 75, group = "FasterPoisonDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["FasterPoisonDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Poisons you inflict deal Damage 14% faster", statOrder = { 6431 }, level = 75, group = "FasterPoisonDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["FasterPoisonDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Poisons you inflict deal Damage 15% faster", statOrder = { 6431 }, level = 75, group = "FasterPoisonDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["FasterPoisonDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Poisons you inflict deal Damage 16% faster", statOrder = { 6431 }, level = 75, group = "FasterPoisonDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["FasterBleedDamageEldritchImplicit1"] = { type = "Eater", affix = "", "Bleeding you inflict deals Damage 5% faster", statOrder = { 6430 }, level = 75, group = "FasterBleedDamage", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["FasterBleedDamageEldritchImplicit2"] = { type = "Eater", affix = "", "Bleeding you inflict deals Damage 6% faster", statOrder = { 6430 }, level = 75, group = "FasterBleedDamage", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["FasterBleedDamageEldritchImplicit3"] = { type = "Eater", affix = "", "Bleeding you inflict deals Damage 7% faster", statOrder = { 6430 }, level = 75, group = "FasterBleedDamage", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["FasterBleedDamageEldritchImplicit4"] = { type = "Eater", affix = "", "Bleeding you inflict deals Damage 8% faster", statOrder = { 6430 }, level = 75, group = "FasterBleedDamage", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["FasterBleedDamageEldritchImplicit5"] = { type = "Eater", affix = "", "Bleeding you inflict deals Damage 9% faster", statOrder = { 6430 }, level = 75, group = "FasterBleedDamage", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["FasterBleedDamageEldritchImplicit6"] = { type = "Eater", affix = "", "Bleeding you inflict deals Damage 10% faster", statOrder = { 6430 }, level = 75, group = "FasterBleedDamage", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["FasterBleedDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Bleeding you inflict deals Damage 8% faster", statOrder = { 6430 }, level = 75, group = "FasterBleedDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "ailment" }, }, + ["FasterBleedDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Bleeding you inflict deals Damage 9% faster", statOrder = { 6430 }, level = 75, group = "FasterBleedDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "bleed", "physical", "ailment" }, }, + ["FasterBleedDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Bleeding you inflict deals Damage 10% faster", statOrder = { 6430 }, level = 75, group = "FasterBleedDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "bleed", "physical", "ailment" }, }, + ["FasterBleedDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Bleeding you inflict deals Damage 11% faster", statOrder = { 6430 }, level = 75, group = "FasterBleedDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "bleed", "physical", "ailment" }, }, + ["FasterBleedDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Bleeding you inflict deals Damage 12% faster", statOrder = { 6430 }, level = 75, group = "FasterBleedDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "bleed", "physical", "ailment" }, }, + ["FasterBleedDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Bleeding you inflict deals Damage 13% faster", statOrder = { 6430 }, level = 75, group = "FasterBleedDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "bleed", "physical", "ailment" }, }, + ["FasterBleedDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bleeding you inflict deals Damage 11% faster", statOrder = { 6430 }, level = 75, group = "FasterBleedDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "ailment" }, }, + ["FasterBleedDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bleeding you inflict deals Damage 12% faster", statOrder = { 6430 }, level = 75, group = "FasterBleedDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "ailment" }, }, + ["FasterBleedDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bleeding you inflict deals Damage 13% faster", statOrder = { 6430 }, level = 75, group = "FasterBleedDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "bleed", "physical", "ailment" }, }, + ["FasterBleedDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bleeding you inflict deals Damage 14% faster", statOrder = { 6430 }, level = 75, group = "FasterBleedDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "bleed", "physical", "ailment" }, }, + ["FasterBleedDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bleeding you inflict deals Damage 15% faster", statOrder = { 6430 }, level = 75, group = "FasterBleedDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "bleed", "physical", "ailment" }, }, + ["FasterBleedDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bleeding you inflict deals Damage 16% faster", statOrder = { 6430 }, level = 75, group = "FasterBleedDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "bleed", "physical", "ailment" }, }, + ["PhysicalAddedAsFireEldritchImplicit1"] = { type = "Eater", affix = "", "Gain 4% of Physical Damage as Extra Fire Damage", statOrder = { 1841 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["PhysicalAddedAsFireEldritchImplicit2"] = { type = "Eater", affix = "", "Gain 4% of Physical Damage as Extra Fire Damage", statOrder = { 1841 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["PhysicalAddedAsFireEldritchImplicit3"] = { type = "Eater", affix = "", "Gain 5% of Physical Damage as Extra Fire Damage", statOrder = { 1841 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["PhysicalAddedAsFireEldritchImplicit4"] = { type = "Eater", affix = "", "Gain 5% of Physical Damage as Extra Fire Damage", statOrder = { 1841 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["PhysicalAddedAsFireEldritchImplicit5"] = { type = "Eater", affix = "", "Gain 6% of Physical Damage as Extra Fire Damage", statOrder = { 1841 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["PhysicalAddedAsFireEldritchImplicit6"] = { type = "Eater", affix = "", "Gain 6% of Physical Damage as Extra Fire Damage", statOrder = { 1841 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["PhysicalAddedAsFireEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 6% of Physical Damage as Extra Fire Damage", statOrder = { 1841 }, level = 75, group = "PhysicalAddedAsFireUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalAddedAsFireEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 6% of Physical Damage as Extra Fire Damage", statOrder = { 1841 }, level = 75, group = "PhysicalAddedAsFireUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalAddedAsFireEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 7% of Physical Damage as Extra Fire Damage", statOrder = { 1841 }, level = 75, group = "PhysicalAddedAsFireUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalAddedAsFireEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 7% of Physical Damage as Extra Fire Damage", statOrder = { 1841 }, level = 75, group = "PhysicalAddedAsFireUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalAddedAsFireEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 8% of Physical Damage as Extra Fire Damage", statOrder = { 1841 }, level = 75, group = "PhysicalAddedAsFireUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalAddedAsFireEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 8% of Physical Damage as Extra Fire Damage", statOrder = { 1841 }, level = 75, group = "PhysicalAddedAsFireUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalAddedAsFireEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 8% of Physical Damage as Extra Fire Damage", statOrder = { 1841 }, level = 75, group = "PhysicalAddedAsFirePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalAddedAsFireEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 8% of Physical Damage as Extra Fire Damage", statOrder = { 1841 }, level = 75, group = "PhysicalAddedAsFirePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalAddedAsFireEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 9% of Physical Damage as Extra Fire Damage", statOrder = { 1841 }, level = 75, group = "PhysicalAddedAsFirePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalAddedAsFireEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 9% of Physical Damage as Extra Fire Damage", statOrder = { 1841 }, level = 75, group = "PhysicalAddedAsFirePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalAddedAsFireEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 10% of Physical Damage as Extra Fire Damage", statOrder = { 1841 }, level = 75, group = "PhysicalAddedAsFirePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalAddedAsFireEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 10% of Physical Damage as Extra Fire Damage", statOrder = { 1841 }, level = 75, group = "PhysicalAddedAsFirePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalAddedAsColdEldritchImplicit1"] = { type = "Eater", affix = "", "Gain 4% of Physical Damage as Extra Cold Damage", statOrder = { 1842 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, + ["PhysicalAddedAsColdEldritchImplicit2"] = { type = "Eater", affix = "", "Gain 4% of Physical Damage as Extra Cold Damage", statOrder = { 1842 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, + ["PhysicalAddedAsColdEldritchImplicit3"] = { type = "Eater", affix = "", "Gain 5% of Physical Damage as Extra Cold Damage", statOrder = { 1842 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, + ["PhysicalAddedAsColdEldritchImplicit4"] = { type = "Eater", affix = "", "Gain 5% of Physical Damage as Extra Cold Damage", statOrder = { 1842 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, + ["PhysicalAddedAsColdEldritchImplicit5"] = { type = "Eater", affix = "", "Gain 6% of Physical Damage as Extra Cold Damage", statOrder = { 1842 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, + ["PhysicalAddedAsColdEldritchImplicit6"] = { type = "Eater", affix = "", "Gain 6% of Physical Damage as Extra Cold Damage", statOrder = { 1842 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, + ["PhysicalAddedAsColdEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 6% of Physical Damage as Extra Cold Damage", statOrder = { 1842 }, level = 75, group = "PhysicalAddedAsColdUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalAddedAsColdEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 6% of Physical Damage as Extra Cold Damage", statOrder = { 1842 }, level = 75, group = "PhysicalAddedAsColdUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalAddedAsColdEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 7% of Physical Damage as Extra Cold Damage", statOrder = { 1842 }, level = 75, group = "PhysicalAddedAsColdUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalAddedAsColdEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 7% of Physical Damage as Extra Cold Damage", statOrder = { 1842 }, level = 75, group = "PhysicalAddedAsColdUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalAddedAsColdEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 8% of Physical Damage as Extra Cold Damage", statOrder = { 1842 }, level = 75, group = "PhysicalAddedAsColdUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalAddedAsColdEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 8% of Physical Damage as Extra Cold Damage", statOrder = { 1842 }, level = 75, group = "PhysicalAddedAsColdUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalAddedAsColdEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 8% of Physical Damage as Extra Cold Damage", statOrder = { 1842 }, level = 75, group = "PhysicalAddedAsColdPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalAddedAsColdEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 8% of Physical Damage as Extra Cold Damage", statOrder = { 1842 }, level = 75, group = "PhysicalAddedAsColdPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalAddedAsColdEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 9% of Physical Damage as Extra Cold Damage", statOrder = { 1842 }, level = 75, group = "PhysicalAddedAsColdPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalAddedAsColdEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 9% of Physical Damage as Extra Cold Damage", statOrder = { 1842 }, level = 75, group = "PhysicalAddedAsColdPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalAddedAsColdEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 10% of Physical Damage as Extra Cold Damage", statOrder = { 1842 }, level = 75, group = "PhysicalAddedAsColdPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalAddedAsColdEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 10% of Physical Damage as Extra Cold Damage", statOrder = { 1842 }, level = 75, group = "PhysicalAddedAsColdPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalAddedAsLightningEldritchImplicit1"] = { type = "Eater", affix = "", "Gain 4% of Physical Damage as Extra Lightning Damage", statOrder = { 1843 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, + ["PhysicalAddedAsLightningEldritchImplicit2"] = { type = "Eater", affix = "", "Gain 4% of Physical Damage as Extra Lightning Damage", statOrder = { 1843 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, + ["PhysicalAddedAsLightningEldritchImplicit3"] = { type = "Eater", affix = "", "Gain 5% of Physical Damage as Extra Lightning Damage", statOrder = { 1843 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, + ["PhysicalAddedAsLightningEldritchImplicit4"] = { type = "Eater", affix = "", "Gain 5% of Physical Damage as Extra Lightning Damage", statOrder = { 1843 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, + ["PhysicalAddedAsLightningEldritchImplicit5"] = { type = "Eater", affix = "", "Gain 6% of Physical Damage as Extra Lightning Damage", statOrder = { 1843 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, + ["PhysicalAddedAsLightningEldritchImplicit6"] = { type = "Eater", affix = "", "Gain 6% of Physical Damage as Extra Lightning Damage", statOrder = { 1843 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, + ["PhysicalAddedAsLightningEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 6% of Physical Damage as Extra Lightning Damage", statOrder = { 1843 }, level = 75, group = "PhysicalAddedAsLightningUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalAddedAsLightningEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 6% of Physical Damage as Extra Lightning Damage", statOrder = { 1843 }, level = 75, group = "PhysicalAddedAsLightningUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalAddedAsLightningEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 7% of Physical Damage as Extra Lightning Damage", statOrder = { 1843 }, level = 75, group = "PhysicalAddedAsLightningUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalAddedAsLightningEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 7% of Physical Damage as Extra Lightning Damage", statOrder = { 1843 }, level = 75, group = "PhysicalAddedAsLightningUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalAddedAsLightningEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 8% of Physical Damage as Extra Lightning Damage", statOrder = { 1843 }, level = 75, group = "PhysicalAddedAsLightningUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalAddedAsLightningEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 8% of Physical Damage as Extra Lightning Damage", statOrder = { 1843 }, level = 75, group = "PhysicalAddedAsLightningUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalAddedAsLightningEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 8% of Physical Damage as Extra Lightning Damage", statOrder = { 1843 }, level = 75, group = "PhysicalAddedAsLightningPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalAddedAsLightningEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 8% of Physical Damage as Extra Lightning Damage", statOrder = { 1843 }, level = 75, group = "PhysicalAddedAsLightningPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalAddedAsLightningEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 9% of Physical Damage as Extra Lightning Damage", statOrder = { 1843 }, level = 75, group = "PhysicalAddedAsLightningPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalAddedAsLightningEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 9% of Physical Damage as Extra Lightning Damage", statOrder = { 1843 }, level = 75, group = "PhysicalAddedAsLightningPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalAddedAsLightningEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 10% of Physical Damage as Extra Lightning Damage", statOrder = { 1843 }, level = 75, group = "PhysicalAddedAsLightningPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalAddedAsLightningEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 10% of Physical Damage as Extra Lightning Damage", statOrder = { 1843 }, level = 75, group = "PhysicalAddedAsLightningPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalDamageAddedAsChaosEldritchImplicit1"] = { type = "Eater", affix = "", "Gain 4% of Physical Damage as Extra Chaos Damage", statOrder = { 1844 }, level = 75, group = "PhysicalDamageAddedAsChaos", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, + ["PhysicalDamageAddedAsChaosEldritchImplicit2"] = { type = "Eater", affix = "", "Gain 4% of Physical Damage as Extra Chaos Damage", statOrder = { 1844 }, level = 75, group = "PhysicalDamageAddedAsChaos", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, + ["PhysicalDamageAddedAsChaosEldritchImplicit3"] = { type = "Eater", affix = "", "Gain 5% of Physical Damage as Extra Chaos Damage", statOrder = { 1844 }, level = 75, group = "PhysicalDamageAddedAsChaos", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, + ["PhysicalDamageAddedAsChaosEldritchImplicit4"] = { type = "Eater", affix = "", "Gain 5% of Physical Damage as Extra Chaos Damage", statOrder = { 1844 }, level = 75, group = "PhysicalDamageAddedAsChaos", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, + ["PhysicalDamageAddedAsChaosEldritchImplicit5"] = { type = "Eater", affix = "", "Gain 6% of Physical Damage as Extra Chaos Damage", statOrder = { 1844 }, level = 75, group = "PhysicalDamageAddedAsChaos", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, + ["PhysicalDamageAddedAsChaosEldritchImplicit6"] = { type = "Eater", affix = "", "Gain 6% of Physical Damage as Extra Chaos Damage", statOrder = { 1844 }, level = 75, group = "PhysicalDamageAddedAsChaos", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, + ["PhysicalDamageAddedAsChaosEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 6% of Physical Damage as Extra Chaos Damage", statOrder = { 1844 }, level = 75, group = "PhysicalDamageAddedAsChaosUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysicalDamageAddedAsChaosEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 6% of Physical Damage as Extra Chaos Damage", statOrder = { 1844 }, level = 75, group = "PhysicalDamageAddedAsChaosUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysicalDamageAddedAsChaosEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 7% of Physical Damage as Extra Chaos Damage", statOrder = { 1844 }, level = 75, group = "PhysicalDamageAddedAsChaosUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysicalDamageAddedAsChaosEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 7% of Physical Damage as Extra Chaos Damage", statOrder = { 1844 }, level = 75, group = "PhysicalDamageAddedAsChaosUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysicalDamageAddedAsChaosEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 8% of Physical Damage as Extra Chaos Damage", statOrder = { 1844 }, level = 75, group = "PhysicalDamageAddedAsChaosUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysicalDamageAddedAsChaosEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 8% of Physical Damage as Extra Chaos Damage", statOrder = { 1844 }, level = 75, group = "PhysicalDamageAddedAsChaosUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysicalDamageAddedAsChaosEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 8% of Physical Damage as Extra Chaos Damage", statOrder = { 1844 }, level = 75, group = "PhysicalDamageAddedAsChaosPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysicalDamageAddedAsChaosEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 8% of Physical Damage as Extra Chaos Damage", statOrder = { 1844 }, level = 75, group = "PhysicalDamageAddedAsChaosPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysicalDamageAddedAsChaosEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 9% of Physical Damage as Extra Chaos Damage", statOrder = { 1844 }, level = 75, group = "PhysicalDamageAddedAsChaosPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysicalDamageAddedAsChaosEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 9% of Physical Damage as Extra Chaos Damage", statOrder = { 1844 }, level = 75, group = "PhysicalDamageAddedAsChaosPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysicalDamageAddedAsChaosEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 10% of Physical Damage as Extra Chaos Damage", statOrder = { 1844 }, level = 75, group = "PhysicalDamageAddedAsChaosPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysicalDamageAddedAsChaosEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 10% of Physical Damage as Extra Chaos Damage", statOrder = { 1844 }, level = 75, group = "PhysicalDamageAddedAsChaosPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "chaos" }, }, + ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicit1"] = { type = "Eater", affix = "", "Regenerate 0.2% of Life per second per Endurance Charge", statOrder = { 1487 }, level = 75, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life" }, }, + ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicit2"] = { type = "Eater", affix = "", "Regenerate 0.2% of Life per second per Endurance Charge", statOrder = { 1487 }, level = 75, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life" }, }, + ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicit3"] = { type = "Eater", affix = "", "Regenerate 0.2% of Life per second per Endurance Charge", statOrder = { 1487 }, level = 75, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life" }, }, + ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicit4"] = { type = "Eater", affix = "", "Regenerate 0.2% of Life per second per Endurance Charge", statOrder = { 1487 }, level = 75, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life" }, }, + ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicit5"] = { type = "Eater", affix = "", "Regenerate 0.3% of Life per second per Endurance Charge", statOrder = { 1487 }, level = 75, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life" }, }, + ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicit6"] = { type = "Eater", affix = "", "Regenerate 0.3% of Life per second per Endurance Charge", statOrder = { 1487 }, level = 75, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life" }, }, + ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Regenerate 0.3% of Life per second per Endurance Charge", statOrder = { 1487 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, }, + ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Regenerate 0.3% of Life per second per Endurance Charge", statOrder = { 1487 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life" }, }, + ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Regenerate 0.3% of Life per second per Endurance Charge", statOrder = { 1487 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life" }, }, + ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Regenerate 0.3% of Life per second per Endurance Charge", statOrder = { 1487 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life" }, }, + ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Regenerate 0.4% of Life per second per Endurance Charge", statOrder = { 1487 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life" }, }, + ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Regenerate 0.4% of Life per second per Endurance Charge", statOrder = { 1487 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life" }, }, + ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Regenerate 0.4% of Life per second per Endurance Charge", statOrder = { 1487 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, }, + ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Regenerate 0.4% of Life per second per Endurance Charge", statOrder = { 1487 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, }, + ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Regenerate 0.4% of Life per second per Endurance Charge", statOrder = { 1487 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "life" }, }, + ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Regenerate 0.4% of Life per second per Endurance Charge", statOrder = { 1487 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "life" }, }, + ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Regenerate 0.5% of Life per second per Endurance Charge", statOrder = { 1487 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "life" }, }, + ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Regenerate 0.5% of Life per second per Endurance Charge", statOrder = { 1487 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "life" }, }, + ["IncreasedStunThresholdEldritchImplicit1"] = { type = "Eater", affix = "", "(15-17)% increased Stun Threshold", statOrder = { 3180 }, level = 75, group = "IncreasedStunThreshold", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, + ["IncreasedStunThresholdEldritchImplicit2"] = { type = "Eater", affix = "", "(18-20)% increased Stun Threshold", statOrder = { 3180 }, level = 75, group = "IncreasedStunThreshold", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, + ["IncreasedStunThresholdEldritchImplicit3"] = { type = "Eater", affix = "", "(21-23)% increased Stun Threshold", statOrder = { 3180 }, level = 75, group = "IncreasedStunThreshold", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, + ["IncreasedStunThresholdEldritchImplicit4"] = { type = "Eater", affix = "", "(24-26)% increased Stun Threshold", statOrder = { 3180 }, level = 75, group = "IncreasedStunThreshold", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, + ["IncreasedStunThresholdEldritchImplicit5"] = { type = "Eater", affix = "", "(27-29)% increased Stun Threshold", statOrder = { 3180 }, level = 75, group = "IncreasedStunThreshold", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, + ["IncreasedStunThresholdEldritchImplicit6"] = { type = "Eater", affix = "", "(30-32)% increased Stun Threshold", statOrder = { 3180 }, level = 75, group = "IncreasedStunThreshold", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, + ["IncreasedStunThresholdEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (24-26)% increased Stun Threshold", statOrder = { 3180 }, level = 75, group = "IncreasedStunThresholdUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["IncreasedStunThresholdEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (27-29)% increased Stun Threshold", statOrder = { 3180 }, level = 75, group = "IncreasedStunThresholdUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["IncreasedStunThresholdEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (30-32)% increased Stun Threshold", statOrder = { 3180 }, level = 75, group = "IncreasedStunThresholdUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["IncreasedStunThresholdEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (33-35)% increased Stun Threshold", statOrder = { 3180 }, level = 75, group = "IncreasedStunThresholdUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["IncreasedStunThresholdEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (36-38)% increased Stun Threshold", statOrder = { 3180 }, level = 75, group = "IncreasedStunThresholdUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["IncreasedStunThresholdEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (39-41)% increased Stun Threshold", statOrder = { 3180 }, level = 75, group = "IncreasedStunThresholdUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["IncreasedStunThresholdEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% increased Stun Threshold", statOrder = { 3180 }, level = 75, group = "IncreasedStunThresholdPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["IncreasedStunThresholdEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% increased Stun Threshold", statOrder = { 3180 }, level = 75, group = "IncreasedStunThresholdPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["IncreasedStunThresholdEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-41)% increased Stun Threshold", statOrder = { 3180 }, level = 75, group = "IncreasedStunThresholdPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["IncreasedStunThresholdEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (42-44)% increased Stun Threshold", statOrder = { 3180 }, level = 75, group = "IncreasedStunThresholdPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["IncreasedStunThresholdEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (45-47)% increased Stun Threshold", statOrder = { 3180 }, level = 75, group = "IncreasedStunThresholdPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["IncreasedStunThresholdEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (48-50)% increased Stun Threshold", statOrder = { 3180 }, level = 75, group = "IncreasedStunThresholdPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["TravelSkillCooldownRecoveryEldritchImplicit1"] = { type = "Eater", affix = "", "(15-17)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4288 }, level = 75, group = "TravelSkillCooldownRecovery", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["TravelSkillCooldownRecoveryEldritchImplicit2"] = { type = "Eater", affix = "", "(18-20)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4288 }, level = 75, group = "TravelSkillCooldownRecovery", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["TravelSkillCooldownRecoveryEldritchImplicit3"] = { type = "Eater", affix = "", "(21-23)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4288 }, level = 75, group = "TravelSkillCooldownRecovery", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["TravelSkillCooldownRecoveryEldritchImplicit4"] = { type = "Eater", affix = "", "(24-26)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4288 }, level = 75, group = "TravelSkillCooldownRecovery", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["TravelSkillCooldownRecoveryEldritchImplicit5"] = { type = "Eater", affix = "", "(27-29)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4288 }, level = 75, group = "TravelSkillCooldownRecovery", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["TravelSkillCooldownRecoveryEldritchImplicit6"] = { type = "Eater", affix = "", "(30-32)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4288 }, level = 75, group = "TravelSkillCooldownRecovery", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["TravelSkillCooldownRecoveryEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (24-26)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4288 }, level = 75, group = "TravelSkillCooldownRecoveryUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["TravelSkillCooldownRecoveryEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (27-29)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4288 }, level = 75, group = "TravelSkillCooldownRecoveryUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, + ["TravelSkillCooldownRecoveryEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (30-32)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4288 }, level = 75, group = "TravelSkillCooldownRecoveryUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, + ["TravelSkillCooldownRecoveryEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (33-35)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4288 }, level = 75, group = "TravelSkillCooldownRecoveryUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, + ["TravelSkillCooldownRecoveryEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (36-38)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4288 }, level = 75, group = "TravelSkillCooldownRecoveryUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, + ["TravelSkillCooldownRecoveryEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (39-41)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4288 }, level = 75, group = "TravelSkillCooldownRecoveryUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, + ["TravelSkillCooldownRecoveryEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4288 }, level = 75, group = "TravelSkillCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["TravelSkillCooldownRecoveryEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4288 }, level = 75, group = "TravelSkillCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["TravelSkillCooldownRecoveryEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-41)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4288 }, level = 75, group = "TravelSkillCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, + ["TravelSkillCooldownRecoveryEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (42-44)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4288 }, level = 75, group = "TravelSkillCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, + ["TravelSkillCooldownRecoveryEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (45-47)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4288 }, level = 75, group = "TravelSkillCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, + ["TravelSkillCooldownRecoveryEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (48-50)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4288 }, level = 75, group = "TravelSkillCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, + ["WarcrySpeedEldritchImplicit1"] = { type = "Eater", affix = "", "(15-16)% increased Warcry Speed", statOrder = { 3185 }, level = 75, group = "WarcrySpeed", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, + ["WarcrySpeedEldritchImplicit2"] = { type = "Eater", affix = "", "(17-18)% increased Warcry Speed", statOrder = { 3185 }, level = 75, group = "WarcrySpeed", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, + ["WarcrySpeedEldritchImplicit3"] = { type = "Eater", affix = "", "(19-20)% increased Warcry Speed", statOrder = { 3185 }, level = 75, group = "WarcrySpeed", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, + ["WarcrySpeedEldritchImplicit4"] = { type = "Eater", affix = "", "(21-22)% increased Warcry Speed", statOrder = { 3185 }, level = 75, group = "WarcrySpeed", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, + ["WarcrySpeedEldritchImplicit5"] = { type = "Eater", affix = "", "(23-24)% increased Warcry Speed", statOrder = { 3185 }, level = 75, group = "WarcrySpeed", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, + ["WarcrySpeedEldritchImplicit6"] = { type = "Eater", affix = "", "(25-26)% increased Warcry Speed", statOrder = { 3185 }, level = 75, group = "WarcrySpeed", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, + ["WarcrySpeedEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (19-20)% increased Warcry Speed", statOrder = { 3185 }, level = 75, group = "WarcrySpeedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, }, + ["WarcrySpeedEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (21-22)% increased Warcry Speed", statOrder = { 3185 }, level = 75, group = "WarcrySpeedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, }, + ["WarcrySpeedEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (23-24)% increased Warcry Speed", statOrder = { 3185 }, level = 75, group = "WarcrySpeedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, }, + ["WarcrySpeedEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (25-26)% increased Warcry Speed", statOrder = { 3185 }, level = 75, group = "WarcrySpeedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, }, + ["WarcrySpeedEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (27-28)% increased Warcry Speed", statOrder = { 3185 }, level = 75, group = "WarcrySpeedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, }, + ["WarcrySpeedEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (29-30)% increased Warcry Speed", statOrder = { 3185 }, level = 75, group = "WarcrySpeedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, }, + ["WarcrySpeedEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (23-24)% increased Warcry Speed", statOrder = { 3185 }, level = 75, group = "WarcrySpeedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, }, + ["WarcrySpeedEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% increased Warcry Speed", statOrder = { 3185 }, level = 75, group = "WarcrySpeedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, }, + ["WarcrySpeedEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% increased Warcry Speed", statOrder = { 3185 }, level = 75, group = "WarcrySpeedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, }, + ["WarcrySpeedEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% increased Warcry Speed", statOrder = { 3185 }, level = 75, group = "WarcrySpeedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, }, + ["WarcrySpeedEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (31-32)% increased Warcry Speed", statOrder = { 3185 }, level = 75, group = "WarcrySpeedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, }, + ["WarcrySpeedEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-34)% increased Warcry Speed", statOrder = { 3185 }, level = 75, group = "WarcrySpeedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, }, + ["EnduringCryCooldownRecoveryEldritchImplicit1"] = { type = "Eater", affix = "", "Enduring Cry has (15-17)% increased Cooldown Recovery Rate", statOrder = { 3795 }, level = 75, group = "EnduringCryCooldownRecovery", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["EnduringCryCooldownRecoveryEldritchImplicit2"] = { type = "Eater", affix = "", "Enduring Cry has (18-20)% increased Cooldown Recovery Rate", statOrder = { 3795 }, level = 75, group = "EnduringCryCooldownRecovery", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["EnduringCryCooldownRecoveryEldritchImplicit3"] = { type = "Eater", affix = "", "Enduring Cry has (21-23)% increased Cooldown Recovery Rate", statOrder = { 3795 }, level = 75, group = "EnduringCryCooldownRecovery", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["EnduringCryCooldownRecoveryEldritchImplicit4"] = { type = "Eater", affix = "", "Enduring Cry has (24-26)% increased Cooldown Recovery Rate", statOrder = { 3795 }, level = 75, group = "EnduringCryCooldownRecovery", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["EnduringCryCooldownRecoveryEldritchImplicit5"] = { type = "Eater", affix = "", "Enduring Cry has (27-29)% increased Cooldown Recovery Rate", statOrder = { 3795 }, level = 75, group = "EnduringCryCooldownRecovery", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["EnduringCryCooldownRecoveryEldritchImplicit6"] = { type = "Eater", affix = "", "Enduring Cry has (30-32)% increased Cooldown Recovery Rate", statOrder = { 3795 }, level = 75, group = "EnduringCryCooldownRecovery", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["EnduringCryCooldownRecoveryEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enduring Cry has (24-26)% increased Cooldown Recovery Rate", statOrder = { 3795 }, level = 75, group = "EnduringCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["EnduringCryCooldownRecoveryEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enduring Cry has (27-29)% increased Cooldown Recovery Rate", statOrder = { 3795 }, level = 75, group = "EnduringCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["EnduringCryCooldownRecoveryEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enduring Cry has (30-32)% increased Cooldown Recovery Rate", statOrder = { 3795 }, level = 75, group = "EnduringCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["EnduringCryCooldownRecoveryEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enduring Cry has (33-35)% increased Cooldown Recovery Rate", statOrder = { 3795 }, level = 75, group = "EnduringCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["EnduringCryCooldownRecoveryEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enduring Cry has (36-38)% increased Cooldown Recovery Rate", statOrder = { 3795 }, level = 75, group = "EnduringCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["EnduringCryCooldownRecoveryEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enduring Cry has (39-41)% increased Cooldown Recovery Rate", statOrder = { 3795 }, level = 75, group = "EnduringCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["EnduringCryCooldownRecoveryEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enduring Cry has (33-35)% increased Cooldown Recovery Rate", statOrder = { 3795 }, level = 75, group = "EnduringCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["EnduringCryCooldownRecoveryEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enduring Cry has (36-38)% increased Cooldown Recovery Rate", statOrder = { 3795 }, level = 75, group = "EnduringCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["EnduringCryCooldownRecoveryEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enduring Cry has (39-41)% increased Cooldown Recovery Rate", statOrder = { 3795 }, level = 75, group = "EnduringCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["EnduringCryCooldownRecoveryEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enduring Cry has (42-44)% increased Cooldown Recovery Rate", statOrder = { 3795 }, level = 75, group = "EnduringCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["EnduringCryCooldownRecoveryEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enduring Cry has (45-47)% increased Cooldown Recovery Rate", statOrder = { 3795 }, level = 75, group = "EnduringCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["EnduringCryCooldownRecoveryEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enduring Cry has (48-50)% increased Cooldown Recovery Rate", statOrder = { 3795 }, level = 75, group = "EnduringCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["IntimidatingCryCooldownRecoveryEldritchImplicit1"] = { type = "Eater", affix = "", "Intimidating Cry has (15-17)% increased Cooldown Recovery Rate", statOrder = { 7162 }, level = 75, group = "IntimidatingCryCooldownRecovery", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["IntimidatingCryCooldownRecoveryEldritchImplicit2"] = { type = "Eater", affix = "", "Intimidating Cry has (18-20)% increased Cooldown Recovery Rate", statOrder = { 7162 }, level = 75, group = "IntimidatingCryCooldownRecovery", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["IntimidatingCryCooldownRecoveryEldritchImplicit3"] = { type = "Eater", affix = "", "Intimidating Cry has (21-23)% increased Cooldown Recovery Rate", statOrder = { 7162 }, level = 75, group = "IntimidatingCryCooldownRecovery", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["IntimidatingCryCooldownRecoveryEldritchImplicit4"] = { type = "Eater", affix = "", "Intimidating Cry has (24-26)% increased Cooldown Recovery Rate", statOrder = { 7162 }, level = 75, group = "IntimidatingCryCooldownRecovery", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["IntimidatingCryCooldownRecoveryEldritchImplicit5"] = { type = "Eater", affix = "", "Intimidating Cry has (27-29)% increased Cooldown Recovery Rate", statOrder = { 7162 }, level = 75, group = "IntimidatingCryCooldownRecovery", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["IntimidatingCryCooldownRecoveryEldritchImplicit6"] = { type = "Eater", affix = "", "Intimidating Cry has (30-32)% increased Cooldown Recovery Rate", statOrder = { 7162 }, level = 75, group = "IntimidatingCryCooldownRecovery", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["IntimidatingCryCooldownRecoveryEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Intimidating Cry has (24-26)% increased Cooldown Recovery Rate", statOrder = { 7162 }, level = 75, group = "IntimidatingCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["IntimidatingCryCooldownRecoveryEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Intimidating Cry has (27-29)% increased Cooldown Recovery Rate", statOrder = { 7162 }, level = 75, group = "IntimidatingCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["IntimidatingCryCooldownRecoveryEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Intimidating Cry has (30-32)% increased Cooldown Recovery Rate", statOrder = { 7162 }, level = 75, group = "IntimidatingCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["IntimidatingCryCooldownRecoveryEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Intimidating Cry has (33-35)% increased Cooldown Recovery Rate", statOrder = { 7162 }, level = 75, group = "IntimidatingCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["IntimidatingCryCooldownRecoveryEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Intimidating Cry has (36-38)% increased Cooldown Recovery Rate", statOrder = { 7162 }, level = 75, group = "IntimidatingCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["IntimidatingCryCooldownRecoveryEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Intimidating Cry has (39-41)% increased Cooldown Recovery Rate", statOrder = { 7162 }, level = 75, group = "IntimidatingCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["IntimidatingCryCooldownRecoveryEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Intimidating Cry has (33-35)% increased Cooldown Recovery Rate", statOrder = { 7162 }, level = 75, group = "IntimidatingCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["IntimidatingCryCooldownRecoveryEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Intimidating Cry has (36-38)% increased Cooldown Recovery Rate", statOrder = { 7162 }, level = 75, group = "IntimidatingCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["IntimidatingCryCooldownRecoveryEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Intimidating Cry has (39-41)% increased Cooldown Recovery Rate", statOrder = { 7162 }, level = 75, group = "IntimidatingCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["IntimidatingCryCooldownRecoveryEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Intimidating Cry has (42-44)% increased Cooldown Recovery Rate", statOrder = { 7162 }, level = 75, group = "IntimidatingCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["IntimidatingCryCooldownRecoveryEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Intimidating Cry has (45-47)% increased Cooldown Recovery Rate", statOrder = { 7162 }, level = 75, group = "IntimidatingCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["IntimidatingCryCooldownRecoveryEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Intimidating Cry has (48-50)% increased Cooldown Recovery Rate", statOrder = { 7162 }, level = 75, group = "IntimidatingCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["SeismicCryExertedDamageEldritchImplicit1"] = { type = "Eater", affix = "", "Attacks Exerted by Seismic Cry deal (20-22)% increased Damage", statOrder = { 9751 }, level = 75, group = "SeismicCryExertedDamage", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["SeismicCryExertedDamageEldritchImplicit2"] = { type = "Eater", affix = "", "Attacks Exerted by Seismic Cry deal (23-25)% increased Damage", statOrder = { 9751 }, level = 75, group = "SeismicCryExertedDamage", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["SeismicCryExertedDamageEldritchImplicit3"] = { type = "Eater", affix = "", "Attacks Exerted by Seismic Cry deal (26-28)% increased Damage", statOrder = { 9751 }, level = 75, group = "SeismicCryExertedDamage", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["SeismicCryExertedDamageEldritchImplicit4"] = { type = "Eater", affix = "", "Attacks Exerted by Seismic Cry deal (29-31)% increased Damage", statOrder = { 9751 }, level = 75, group = "SeismicCryExertedDamage", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["SeismicCryExertedDamageEldritchImplicit5"] = { type = "Eater", affix = "", "Attacks Exerted by Seismic Cry deal (32-33)% increased Damage", statOrder = { 9751 }, level = 75, group = "SeismicCryExertedDamage", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["SeismicCryExertedDamageEldritchImplicit6"] = { type = "Eater", affix = "", "Attacks Exerted by Seismic Cry deal (34-35)% increased Damage", statOrder = { 9751 }, level = 75, group = "SeismicCryExertedDamage", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["SeismicCryExertedDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Seismic Cry deal (26-28)% increased Damage", statOrder = { 9751 }, level = 75, group = "SeismicCryExertedDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["SeismicCryExertedDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Seismic Cry deal (29-31)% increased Damage", statOrder = { 9751 }, level = 75, group = "SeismicCryExertedDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["SeismicCryExertedDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Seismic Cry deal (32-34)% increased Damage", statOrder = { 9751 }, level = 75, group = "SeismicCryExertedDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["SeismicCryExertedDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Seismic Cry deal (35-37)% increased Damage", statOrder = { 9751 }, level = 75, group = "SeismicCryExertedDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["SeismicCryExertedDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Seismic Cry deal (38-39)% increased Damage", statOrder = { 9751 }, level = 75, group = "SeismicCryExertedDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["SeismicCryExertedDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Seismic Cry deal (40-41)% increased Damage", statOrder = { 9751 }, level = 75, group = "SeismicCryExertedDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["SeismicCryExertedDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Seismic Cry deal (32-34)% increased Damage", statOrder = { 9751 }, level = 75, group = "SeismicCryExertedDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["SeismicCryExertedDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Seismic Cry deal (35-37)% increased Damage", statOrder = { 9751 }, level = 75, group = "SeismicCryExertedDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["SeismicCryExertedDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Seismic Cry deal (38-40)% increased Damage", statOrder = { 9751 }, level = 75, group = "SeismicCryExertedDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["SeismicCryExertedDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Seismic Cry deal (41-43)% increased Damage", statOrder = { 9751 }, level = 75, group = "SeismicCryExertedDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["SeismicCryExertedDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Seismic Cry deal (44-45)% increased Damage", statOrder = { 9751 }, level = 75, group = "SeismicCryExertedDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["SeismicCryExertedDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Seismic Cry deal (46-47)% increased Damage", statOrder = { 9751 }, level = 75, group = "SeismicCryExertedDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["AncestralCryExertedDamageEldritchImplicit1"] = { type = "Eater", affix = "", "Attacks Exerted by Ancestral Cry deal (20-22)% increased Damage", statOrder = { 4571 }, level = 75, group = "AncestralCryExertedDamage", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["AncestralCryExertedDamageEldritchImplicit2"] = { type = "Eater", affix = "", "Attacks Exerted by Ancestral Cry deal (23-25)% increased Damage", statOrder = { 4571 }, level = 75, group = "AncestralCryExertedDamage", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["AncestralCryExertedDamageEldritchImplicit3"] = { type = "Eater", affix = "", "Attacks Exerted by Ancestral Cry deal (26-28)% increased Damage", statOrder = { 4571 }, level = 75, group = "AncestralCryExertedDamage", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["AncestralCryExertedDamageEldritchImplicit4"] = { type = "Eater", affix = "", "Attacks Exerted by Ancestral Cry deal (29-31)% increased Damage", statOrder = { 4571 }, level = 75, group = "AncestralCryExertedDamage", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["AncestralCryExertedDamageEldritchImplicit5"] = { type = "Eater", affix = "", "Attacks Exerted by Ancestral Cry deal (32-33)% increased Damage", statOrder = { 4571 }, level = 75, group = "AncestralCryExertedDamage", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["AncestralCryExertedDamageEldritchImplicit6"] = { type = "Eater", affix = "", "Attacks Exerted by Ancestral Cry deal (34-35)% increased Damage", statOrder = { 4571 }, level = 75, group = "AncestralCryExertedDamage", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["AncestralCryExertedDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Ancestral Cry deal (26-28)% increased Damage", statOrder = { 4571 }, level = 75, group = "AncestralCryExertedDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["AncestralCryExertedDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Ancestral Cry deal (29-31)% increased Damage", statOrder = { 4571 }, level = 75, group = "AncestralCryExertedDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["AncestralCryExertedDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Ancestral Cry deal (32-34)% increased Damage", statOrder = { 4571 }, level = 75, group = "AncestralCryExertedDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["AncestralCryExertedDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Ancestral Cry deal (35-37)% increased Damage", statOrder = { 4571 }, level = 75, group = "AncestralCryExertedDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["AncestralCryExertedDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Ancestral Cry deal (38-39)% increased Damage", statOrder = { 4571 }, level = 75, group = "AncestralCryExertedDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["AncestralCryExertedDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Ancestral Cry deal (40-41)% increased Damage", statOrder = { 4571 }, level = 75, group = "AncestralCryExertedDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["AncestralCryExertedDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Ancestral Cry deal (32-34)% increased Damage", statOrder = { 4571 }, level = 75, group = "AncestralCryExertedDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["AncestralCryExertedDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Ancestral Cry deal (35-37)% increased Damage", statOrder = { 4571 }, level = 75, group = "AncestralCryExertedDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["AncestralCryExertedDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Ancestral Cry deal (38-40)% increased Damage", statOrder = { 4571 }, level = 75, group = "AncestralCryExertedDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["AncestralCryExertedDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Ancestral Cry deal (41-43)% increased Damage", statOrder = { 4571 }, level = 75, group = "AncestralCryExertedDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["AncestralCryExertedDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Ancestral Cry deal (44-45)% increased Damage", statOrder = { 4571 }, level = 75, group = "AncestralCryExertedDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["AncestralCryExertedDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Ancestral Cry deal (46-47)% increased Damage", statOrder = { 4571 }, level = 75, group = "AncestralCryExertedDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["RallyingCryWarcryEffectEldritchImplicit1"] = { type = "Eater", affix = "", "(6-7)% increased Rallying Cry Buff Effect", statOrder = { 4022 }, level = 75, group = "RallyingCryWarcryEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["RallyingCryWarcryEffectEldritchImplicit2"] = { type = "Eater", affix = "", "(8-9)% increased Rallying Cry Buff Effect", statOrder = { 4022 }, level = 75, group = "RallyingCryWarcryEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["RallyingCryWarcryEffectEldritchImplicit3"] = { type = "Eater", affix = "", "(10-11)% increased Rallying Cry Buff Effect", statOrder = { 4022 }, level = 75, group = "RallyingCryWarcryEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["RallyingCryWarcryEffectEldritchImplicit4"] = { type = "Eater", affix = "", "(12-13)% increased Rallying Cry Buff Effect", statOrder = { 4022 }, level = 75, group = "RallyingCryWarcryEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["RallyingCryWarcryEffectEldritchImplicit5"] = { type = "Eater", affix = "", "(14-15)% increased Rallying Cry Buff Effect", statOrder = { 4022 }, level = 75, group = "RallyingCryWarcryEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["RallyingCryWarcryEffectEldritchImplicit6"] = { type = "Eater", affix = "", "(16-17)% increased Rallying Cry Buff Effect", statOrder = { 4022 }, level = 75, group = "RallyingCryWarcryEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["RallyingCryWarcryEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (12-13)% increased Rallying Cry Buff Effect", statOrder = { 4022 }, level = 75, group = "RallyingCryWarcryEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["RallyingCryWarcryEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (14-15)% increased Rallying Cry Buff Effect", statOrder = { 4022 }, level = 75, group = "RallyingCryWarcryEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["RallyingCryWarcryEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (16-17)% increased Rallying Cry Buff Effect", statOrder = { 4022 }, level = 75, group = "RallyingCryWarcryEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["RallyingCryWarcryEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (18-19)% increased Rallying Cry Buff Effect", statOrder = { 4022 }, level = 75, group = "RallyingCryWarcryEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["RallyingCryWarcryEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (20-21)% increased Rallying Cry Buff Effect", statOrder = { 4022 }, level = 75, group = "RallyingCryWarcryEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["RallyingCryWarcryEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (22-23)% increased Rallying Cry Buff Effect", statOrder = { 4022 }, level = 75, group = "RallyingCryWarcryEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["RallyingCryWarcryEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (18-19)% increased Rallying Cry Buff Effect", statOrder = { 4022 }, level = 75, group = "RallyingCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["RallyingCryWarcryEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% increased Rallying Cry Buff Effect", statOrder = { 4022 }, level = 75, group = "RallyingCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["RallyingCryWarcryEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% increased Rallying Cry Buff Effect", statOrder = { 4022 }, level = 75, group = "RallyingCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["RallyingCryWarcryEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% increased Rallying Cry Buff Effect", statOrder = { 4022 }, level = 75, group = "RallyingCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["RallyingCryWarcryEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% increased Rallying Cry Buff Effect", statOrder = { 4022 }, level = 75, group = "RallyingCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["RallyingCryWarcryEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% increased Rallying Cry Buff Effect", statOrder = { 4022 }, level = 75, group = "RallyingCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["BattlemagesCryWarcryEffectEldritchImplicit1"] = { type = "Eater", affix = "", "(6-7)% increased Battlemage's Cry Buff Effect", statOrder = { 4953 }, level = 75, group = "BattlemagesCryWarcryEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["BattlemagesCryWarcryEffectEldritchImplicit2"] = { type = "Eater", affix = "", "(8-9)% increased Battlemage's Cry Buff Effect", statOrder = { 4953 }, level = 75, group = "BattlemagesCryWarcryEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["BattlemagesCryWarcryEffectEldritchImplicit3"] = { type = "Eater", affix = "", "(10-11)% increased Battlemage's Cry Buff Effect", statOrder = { 4953 }, level = 75, group = "BattlemagesCryWarcryEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["BattlemagesCryWarcryEffectEldritchImplicit4"] = { type = "Eater", affix = "", "(12-13)% increased Battlemage's Cry Buff Effect", statOrder = { 4953 }, level = 75, group = "BattlemagesCryWarcryEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["BattlemagesCryWarcryEffectEldritchImplicit5"] = { type = "Eater", affix = "", "(14-15)% increased Battlemage's Cry Buff Effect", statOrder = { 4953 }, level = 75, group = "BattlemagesCryWarcryEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["BattlemagesCryWarcryEffectEldritchImplicit6"] = { type = "Eater", affix = "", "(16-17)% increased Battlemage's Cry Buff Effect", statOrder = { 4953 }, level = 75, group = "BattlemagesCryWarcryEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["BattlemagesCryWarcryEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (12-13)% increased Battlemage's Cry Buff Effect", statOrder = { 4953 }, level = 75, group = "BattlemagesCryWarcryEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["BattlemagesCryWarcryEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (14-15)% increased Battlemage's Cry Buff Effect", statOrder = { 4953 }, level = 75, group = "BattlemagesCryWarcryEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["BattlemagesCryWarcryEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (16-17)% increased Battlemage's Cry Buff Effect", statOrder = { 4953 }, level = 75, group = "BattlemagesCryWarcryEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["BattlemagesCryWarcryEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (18-19)% increased Battlemage's Cry Buff Effect", statOrder = { 4953 }, level = 75, group = "BattlemagesCryWarcryEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["BattlemagesCryWarcryEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (20-21)% increased Battlemage's Cry Buff Effect", statOrder = { 4953 }, level = 75, group = "BattlemagesCryWarcryEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["BattlemagesCryWarcryEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (22-23)% increased Battlemage's Cry Buff Effect", statOrder = { 4953 }, level = 75, group = "BattlemagesCryWarcryEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["BattlemagesCryWarcryEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (18-19)% increased Battlemage's Cry Buff Effect", statOrder = { 4953 }, level = 75, group = "BattlemagesCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["BattlemagesCryWarcryEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% increased Battlemage's Cry Buff Effect", statOrder = { 4953 }, level = 75, group = "BattlemagesCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["BattlemagesCryWarcryEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% increased Battlemage's Cry Buff Effect", statOrder = { 4953 }, level = 75, group = "BattlemagesCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["BattlemagesCryWarcryEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% increased Battlemage's Cry Buff Effect", statOrder = { 4953 }, level = 75, group = "BattlemagesCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["BattlemagesCryWarcryEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% increased Battlemage's Cry Buff Effect", statOrder = { 4953 }, level = 75, group = "BattlemagesCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["BattlemagesCryWarcryEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% increased Battlemage's Cry Buff Effect", statOrder = { 4953 }, level = 75, group = "BattlemagesCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["InfernalCryWarcryAreaOfEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Infernal Cry has (15-17)% increased Area of Effect", statOrder = { 7132 }, level = 75, group = "InfernalCryWarcryAreaOfEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["InfernalCryWarcryAreaOfEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Infernal Cry has (18-20)% increased Area of Effect", statOrder = { 7132 }, level = 75, group = "InfernalCryWarcryAreaOfEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["InfernalCryWarcryAreaOfEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Infernal Cry has (21-23)% increased Area of Effect", statOrder = { 7132 }, level = 75, group = "InfernalCryWarcryAreaOfEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["InfernalCryWarcryAreaOfEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Infernal Cry has (24-26)% increased Area of Effect", statOrder = { 7132 }, level = 75, group = "InfernalCryWarcryAreaOfEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["InfernalCryWarcryAreaOfEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Infernal Cry has (27-29)% increased Area of Effect", statOrder = { 7132 }, level = 75, group = "InfernalCryWarcryAreaOfEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["InfernalCryWarcryAreaOfEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Infernal Cry has (30-32)% increased Area of Effect", statOrder = { 7132 }, level = 75, group = "InfernalCryWarcryAreaOfEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["InfernalCryWarcryAreaOfEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Infernal Cry has (24-26)% increased Area of Effect", statOrder = { 7132 }, level = 75, group = "InfernalCryWarcryAreaOfEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["InfernalCryWarcryAreaOfEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Infernal Cry has (27-29)% increased Area of Effect", statOrder = { 7132 }, level = 75, group = "InfernalCryWarcryAreaOfEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["InfernalCryWarcryAreaOfEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Infernal Cry has (30-32)% increased Area of Effect", statOrder = { 7132 }, level = 75, group = "InfernalCryWarcryAreaOfEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["InfernalCryWarcryAreaOfEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Infernal Cry has (33-35)% increased Area of Effect", statOrder = { 7132 }, level = 75, group = "InfernalCryWarcryAreaOfEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["InfernalCryWarcryAreaOfEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Infernal Cry has (36-38)% increased Area of Effect", statOrder = { 7132 }, level = 75, group = "InfernalCryWarcryAreaOfEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["InfernalCryWarcryAreaOfEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Infernal Cry has (39-41)% increased Area of Effect", statOrder = { 7132 }, level = 75, group = "InfernalCryWarcryAreaOfEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["InfernalCryWarcryAreaOfEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Infernal Cry has (33-35)% increased Area of Effect", statOrder = { 7132 }, level = 75, group = "InfernalCryWarcryAreaOfEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["InfernalCryWarcryAreaOfEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Infernal Cry has (36-38)% increased Area of Effect", statOrder = { 7132 }, level = 75, group = "InfernalCryWarcryAreaOfEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["InfernalCryWarcryAreaOfEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Infernal Cry has (39-41)% increased Area of Effect", statOrder = { 7132 }, level = 75, group = "InfernalCryWarcryAreaOfEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["InfernalCryWarcryAreaOfEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Infernal Cry has (42-44)% increased Area of Effect", statOrder = { 7132 }, level = 75, group = "InfernalCryWarcryAreaOfEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["InfernalCryWarcryAreaOfEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Infernal Cry has (45-47)% increased Area of Effect", statOrder = { 7132 }, level = 75, group = "InfernalCryWarcryAreaOfEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["InfernalCryWarcryAreaOfEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Infernal Cry has (48-50)% increased Area of Effect", statOrder = { 7132 }, level = 75, group = "InfernalCryWarcryAreaOfEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["GeneralsCryCooldownRecoveryEldritchImplicit1"] = { type = "Eater", affix = "", "General's Cry has (15-17)% increased Cooldown Recovery Rate", statOrder = { 6734 }, level = 75, group = "GeneralsCryCooldownRecovery", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["GeneralsCryCooldownRecoveryEldritchImplicit2"] = { type = "Eater", affix = "", "General's Cry has (18-20)% increased Cooldown Recovery Rate", statOrder = { 6734 }, level = 75, group = "GeneralsCryCooldownRecovery", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["GeneralsCryCooldownRecoveryEldritchImplicit3"] = { type = "Eater", affix = "", "General's Cry has (21-23)% increased Cooldown Recovery Rate", statOrder = { 6734 }, level = 75, group = "GeneralsCryCooldownRecovery", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["GeneralsCryCooldownRecoveryEldritchImplicit4"] = { type = "Eater", affix = "", "General's Cry has (24-26)% increased Cooldown Recovery Rate", statOrder = { 6734 }, level = 75, group = "GeneralsCryCooldownRecovery", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["GeneralsCryCooldownRecoveryEldritchImplicit5"] = { type = "Eater", affix = "", "General's Cry has (27-29)% increased Cooldown Recovery Rate", statOrder = { 6734 }, level = 75, group = "GeneralsCryCooldownRecovery", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["GeneralsCryCooldownRecoveryEldritchImplicit6"] = { type = "Eater", affix = "", "General's Cry has (30-32)% increased Cooldown Recovery Rate", statOrder = { 6734 }, level = 75, group = "GeneralsCryCooldownRecovery", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["GeneralsCryCooldownRecoveryEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, General's Cry has (24-26)% increased Cooldown Recovery Rate", statOrder = { 6734 }, level = 75, group = "GeneralsCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["GeneralsCryCooldownRecoveryEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, General's Cry has (27-29)% increased Cooldown Recovery Rate", statOrder = { 6734 }, level = 75, group = "GeneralsCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["GeneralsCryCooldownRecoveryEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, General's Cry has (30-32)% increased Cooldown Recovery Rate", statOrder = { 6734 }, level = 75, group = "GeneralsCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["GeneralsCryCooldownRecoveryEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, General's Cry has (33-35)% increased Cooldown Recovery Rate", statOrder = { 6734 }, level = 75, group = "GeneralsCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["GeneralsCryCooldownRecoveryEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, General's Cry has (36-38)% increased Cooldown Recovery Rate", statOrder = { 6734 }, level = 75, group = "GeneralsCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["GeneralsCryCooldownRecoveryEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, General's Cry has (39-41)% increased Cooldown Recovery Rate", statOrder = { 6734 }, level = 75, group = "GeneralsCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["GeneralsCryCooldownRecoveryEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, General's Cry has (33-35)% increased Cooldown Recovery Rate", statOrder = { 6734 }, level = 75, group = "GeneralsCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["GeneralsCryCooldownRecoveryEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, General's Cry has (36-38)% increased Cooldown Recovery Rate", statOrder = { 6734 }, level = 75, group = "GeneralsCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["GeneralsCryCooldownRecoveryEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, General's Cry has (39-41)% increased Cooldown Recovery Rate", statOrder = { 6734 }, level = 75, group = "GeneralsCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["GeneralsCryCooldownRecoveryEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, General's Cry has (42-44)% increased Cooldown Recovery Rate", statOrder = { 6734 }, level = 75, group = "GeneralsCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["GeneralsCryCooldownRecoveryEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, General's Cry has (45-47)% increased Cooldown Recovery Rate", statOrder = { 6734 }, level = 75, group = "GeneralsCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["GeneralsCryCooldownRecoveryEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, General's Cry has (48-50)% increased Cooldown Recovery Rate", statOrder = { 6734 }, level = 75, group = "GeneralsCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["AvoidElementalStatusAilmentsEldritchImplicit1"] = { type = "Eater", affix = "", "(15-17)% chance to Avoid Elemental Ailments", statOrder = { 1754 }, level = 75, group = "AvoidElementalStatusAilments", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["AvoidElementalStatusAilmentsEldritchImplicit2"] = { type = "Eater", affix = "", "(18-20)% chance to Avoid Elemental Ailments", statOrder = { 1754 }, level = 75, group = "AvoidElementalStatusAilments", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["AvoidElementalStatusAilmentsEldritchImplicit3"] = { type = "Eater", affix = "", "(21-23)% chance to Avoid Elemental Ailments", statOrder = { 1754 }, level = 75, group = "AvoidElementalStatusAilments", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["AvoidElementalStatusAilmentsEldritchImplicit4"] = { type = "Eater", affix = "", "(24-26)% chance to Avoid Elemental Ailments", statOrder = { 1754 }, level = 75, group = "AvoidElementalStatusAilments", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["AvoidElementalStatusAilmentsEldritchImplicit5"] = { type = "Eater", affix = "", "(27-29)% chance to Avoid Elemental Ailments", statOrder = { 1754 }, level = 75, group = "AvoidElementalStatusAilments", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["AvoidElementalStatusAilmentsEldritchImplicit6"] = { type = "Eater", affix = "", "(30-32)% chance to Avoid Elemental Ailments", statOrder = { 1754 }, level = 75, group = "AvoidElementalStatusAilments", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["AvoidElementalStatusAilmentsEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (24-26)% chance to Avoid Elemental Ailments", statOrder = { 1754 }, level = 75, group = "AvoidElementalStatusAilmentsUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "ailment" }, }, + ["AvoidElementalStatusAilmentsEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (27-29)% chance to Avoid Elemental Ailments", statOrder = { 1754 }, level = 75, group = "AvoidElementalStatusAilmentsUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { "elemental", "ailment" }, }, + ["AvoidElementalStatusAilmentsEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (30-32)% chance to Avoid Elemental Ailments", statOrder = { 1754 }, level = 75, group = "AvoidElementalStatusAilmentsUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { "elemental", "ailment" }, }, + ["AvoidElementalStatusAilmentsEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (33-35)% chance to Avoid Elemental Ailments", statOrder = { 1754 }, level = 75, group = "AvoidElementalStatusAilmentsUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { "elemental", "ailment" }, }, + ["AvoidElementalStatusAilmentsEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (36-38)% chance to Avoid Elemental Ailments", statOrder = { 1754 }, level = 75, group = "AvoidElementalStatusAilmentsUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { "elemental", "ailment" }, }, + ["AvoidElementalStatusAilmentsEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (39-41)% chance to Avoid Elemental Ailments", statOrder = { 1754 }, level = 75, group = "AvoidElementalStatusAilmentsUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { "elemental", "ailment" }, }, + ["AvoidElementalStatusAilmentsEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% chance to Avoid Elemental Ailments", statOrder = { 1754 }, level = 75, group = "AvoidElementalStatusAilmentsPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "ailment" }, }, + ["AvoidElementalStatusAilmentsEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% chance to Avoid Elemental Ailments", statOrder = { 1754 }, level = 75, group = "AvoidElementalStatusAilmentsPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "ailment" }, }, + ["AvoidElementalStatusAilmentsEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-41)% chance to Avoid Elemental Ailments", statOrder = { 1754 }, level = 75, group = "AvoidElementalStatusAilmentsPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 100, 0 }, modTags = { "elemental", "ailment" }, }, + ["AvoidElementalStatusAilmentsEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (42-44)% chance to Avoid Elemental Ailments", statOrder = { 1754 }, level = 75, group = "AvoidElementalStatusAilmentsPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 100, 0 }, modTags = { "elemental", "ailment" }, }, + ["AvoidElementalStatusAilmentsEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (45-47)% chance to Avoid Elemental Ailments", statOrder = { 1754 }, level = 75, group = "AvoidElementalStatusAilmentsPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 100, 0 }, modTags = { "elemental", "ailment" }, }, + ["AvoidElementalStatusAilmentsEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (48-50)% chance to Avoid Elemental Ailments", statOrder = { 1754 }, level = 75, group = "AvoidElementalStatusAilmentsPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 100, 0 }, modTags = { "elemental", "ailment" }, }, + ["ChanceToAvoidBleedingEldritchImplicit1"] = { type = "Eater", affix = "", "(33-35)% chance to Avoid Bleeding", statOrder = { 4123 }, level = 75, group = "ChanceToAvoidBleeding", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToAvoidBleedingEldritchImplicit2"] = { type = "Eater", affix = "", "(36-38)% chance to Avoid Bleeding", statOrder = { 4123 }, level = 75, group = "ChanceToAvoidBleeding", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToAvoidBleedingEldritchImplicit3"] = { type = "Eater", affix = "", "(39-41)% chance to Avoid Bleeding", statOrder = { 4123 }, level = 75, group = "ChanceToAvoidBleeding", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToAvoidBleedingEldritchImplicit4"] = { type = "Eater", affix = "", "(42-44)% chance to Avoid Bleeding", statOrder = { 4123 }, level = 75, group = "ChanceToAvoidBleeding", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToAvoidBleedingEldritchImplicit5"] = { type = "Eater", affix = "", "(45-47)% chance to Avoid Bleeding", statOrder = { 4123 }, level = 75, group = "ChanceToAvoidBleeding", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToAvoidBleedingEldritchImplicit6"] = { type = "Eater", affix = "", "(48-50)% chance to Avoid Bleeding", statOrder = { 4123 }, level = 75, group = "ChanceToAvoidBleeding", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToAvoidBleedingEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (42-44)% chance to Avoid Bleeding", statOrder = { 4123 }, level = 75, group = "ChanceToAvoidBleedingUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "ailment" }, }, + ["ChanceToAvoidBleedingEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (45-47)% chance to Avoid Bleeding", statOrder = { 4123 }, level = 75, group = "ChanceToAvoidBleedingUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "ailment" }, }, + ["ChanceToAvoidBleedingEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (48-50)% chance to Avoid Bleeding", statOrder = { 4123 }, level = 75, group = "ChanceToAvoidBleedingUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "ailment" }, }, + ["ChanceToAvoidBleedingEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (51-53)% chance to Avoid Bleeding", statOrder = { 4123 }, level = 75, group = "ChanceToAvoidBleedingUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "ailment" }, }, + ["ChanceToAvoidBleedingEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (54-57)% chance to Avoid Bleeding", statOrder = { 4123 }, level = 75, group = "ChanceToAvoidBleedingUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "ailment" }, }, + ["ChanceToAvoidBleedingEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (58-61)% chance to Avoid Bleeding", statOrder = { 4123 }, level = 75, group = "ChanceToAvoidBleedingUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "ailment" }, }, + ["ChanceToAvoidBleedingEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% chance to Avoid Bleeding", statOrder = { 4123 }, level = 75, group = "ChanceToAvoidBleedingPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "ailment" }, }, + ["ChanceToAvoidBleedingEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% chance to Avoid Bleeding", statOrder = { 4123 }, level = 75, group = "ChanceToAvoidBleedingPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "ailment" }, }, + ["ChanceToAvoidBleedingEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% chance to Avoid Bleeding", statOrder = { 4123 }, level = 75, group = "ChanceToAvoidBleedingPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "bleed", "physical", "ailment" }, }, + ["ChanceToAvoidBleedingEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% chance to Avoid Bleeding", statOrder = { 4123 }, level = 75, group = "ChanceToAvoidBleedingPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "bleed", "physical", "ailment" }, }, + ["ChanceToAvoidBleedingEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% chance to Avoid Bleeding", statOrder = { 4123 }, level = 75, group = "ChanceToAvoidBleedingPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "bleed", "physical", "ailment" }, }, + ["ChanceToAvoidBleedingEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% chance to Avoid Bleeding", statOrder = { 4123 }, level = 75, group = "ChanceToAvoidBleedingPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "bleed", "physical", "ailment" }, }, + ["ChanceToAvoidPoisonEldritchImplicit1"] = { type = "Eater", affix = "", "(33-35)% chance to Avoid being Poisoned", statOrder = { 1760 }, level = 75, group = "ChanceToAvoidPoison", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["ChanceToAvoidPoisonEldritchImplicit2"] = { type = "Eater", affix = "", "(36-38)% chance to Avoid being Poisoned", statOrder = { 1760 }, level = 75, group = "ChanceToAvoidPoison", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["ChanceToAvoidPoisonEldritchImplicit3"] = { type = "Eater", affix = "", "(39-41)% chance to Avoid being Poisoned", statOrder = { 1760 }, level = 75, group = "ChanceToAvoidPoison", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["ChanceToAvoidPoisonEldritchImplicit4"] = { type = "Eater", affix = "", "(42-44)% chance to Avoid being Poisoned", statOrder = { 1760 }, level = 75, group = "ChanceToAvoidPoison", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["ChanceToAvoidPoisonEldritchImplicit5"] = { type = "Eater", affix = "", "(45-47)% chance to Avoid being Poisoned", statOrder = { 1760 }, level = 75, group = "ChanceToAvoidPoison", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["ChanceToAvoidPoisonEldritchImplicit6"] = { type = "Eater", affix = "", "(48-50)% chance to Avoid being Poisoned", statOrder = { 1760 }, level = 75, group = "ChanceToAvoidPoison", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["ChanceToAvoidPoisonEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (42-44)% chance to Avoid being Poisoned", statOrder = { 1760 }, level = 75, group = "ChanceToAvoidPoisonUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["ChanceToAvoidPoisonEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (45-47)% chance to Avoid being Poisoned", statOrder = { 1760 }, level = 75, group = "ChanceToAvoidPoisonUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["ChanceToAvoidPoisonEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (48-50)% chance to Avoid being Poisoned", statOrder = { 1760 }, level = 75, group = "ChanceToAvoidPoisonUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["ChanceToAvoidPoisonEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (51-53)% chance to Avoid being Poisoned", statOrder = { 1760 }, level = 75, group = "ChanceToAvoidPoisonUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["ChanceToAvoidPoisonEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (54-57)% chance to Avoid being Poisoned", statOrder = { 1760 }, level = 75, group = "ChanceToAvoidPoisonUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["ChanceToAvoidPoisonEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (58-61)% chance to Avoid being Poisoned", statOrder = { 1760 }, level = 75, group = "ChanceToAvoidPoisonUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["ChanceToAvoidPoisonEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% chance to Avoid being Poisoned", statOrder = { 1760 }, level = 75, group = "ChanceToAvoidPoisonPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["ChanceToAvoidPoisonEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% chance to Avoid being Poisoned", statOrder = { 1760 }, level = 75, group = "ChanceToAvoidPoisonPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["ChanceToAvoidPoisonEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% chance to Avoid being Poisoned", statOrder = { 1760 }, level = 75, group = "ChanceToAvoidPoisonPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["ChanceToAvoidPoisonEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% chance to Avoid being Poisoned", statOrder = { 1760 }, level = 75, group = "ChanceToAvoidPoisonPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["ChanceToAvoidPoisonEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% chance to Avoid being Poisoned", statOrder = { 1760 }, level = 75, group = "ChanceToAvoidPoisonPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["ChanceToAvoidPoisonEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% chance to Avoid being Poisoned", statOrder = { 1760 }, level = 75, group = "ChanceToAvoidPoisonPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["GlobalCooldownRecoveryEldritchImplicit1"] = { type = "Eater", affix = "", "5% increased Cooldown Recovery Rate", statOrder = { 4899 }, level = 75, group = "GlobalCooldownRecovery", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["GlobalCooldownRecoveryEldritchImplicit2"] = { type = "Eater", affix = "", "6% increased Cooldown Recovery Rate", statOrder = { 4899 }, level = 75, group = "GlobalCooldownRecovery", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["GlobalCooldownRecoveryEldritchImplicit3"] = { type = "Eater", affix = "", "7% increased Cooldown Recovery Rate", statOrder = { 4899 }, level = 75, group = "GlobalCooldownRecovery", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["GlobalCooldownRecoveryEldritchImplicit4"] = { type = "Eater", affix = "", "8% increased Cooldown Recovery Rate", statOrder = { 4899 }, level = 75, group = "GlobalCooldownRecovery", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["GlobalCooldownRecoveryEldritchImplicit5"] = { type = "Eater", affix = "", "9% increased Cooldown Recovery Rate", statOrder = { 4899 }, level = 75, group = "GlobalCooldownRecovery", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["GlobalCooldownRecoveryEldritchImplicit6"] = { type = "Eater", affix = "", "10% increased Cooldown Recovery Rate", statOrder = { 4899 }, level = 75, group = "GlobalCooldownRecovery", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["GlobalCooldownRecoveryEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% increased Cooldown Recovery Rate", statOrder = { 4899 }, level = 75, group = "GlobalCooldownRecoveryUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["GlobalCooldownRecoveryEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% increased Cooldown Recovery Rate", statOrder = { 4899 }, level = 75, group = "GlobalCooldownRecoveryUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["GlobalCooldownRecoveryEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% increased Cooldown Recovery Rate", statOrder = { 4899 }, level = 75, group = "GlobalCooldownRecoveryUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["GlobalCooldownRecoveryEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 11% increased Cooldown Recovery Rate", statOrder = { 4899 }, level = 75, group = "GlobalCooldownRecoveryUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["GlobalCooldownRecoveryEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 12% increased Cooldown Recovery Rate", statOrder = { 4899 }, level = 75, group = "GlobalCooldownRecoveryUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["GlobalCooldownRecoveryEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 13% increased Cooldown Recovery Rate", statOrder = { 4899 }, level = 75, group = "GlobalCooldownRecoveryUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["GlobalCooldownRecoveryEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% increased Cooldown Recovery Rate", statOrder = { 4899 }, level = 75, group = "GlobalCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["GlobalCooldownRecoveryEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% increased Cooldown Recovery Rate", statOrder = { 4899 }, level = 75, group = "GlobalCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["GlobalCooldownRecoveryEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% increased Cooldown Recovery Rate", statOrder = { 4899 }, level = 75, group = "GlobalCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, + ["GlobalCooldownRecoveryEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% increased Cooldown Recovery Rate", statOrder = { 4899 }, level = 75, group = "GlobalCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, + ["GlobalCooldownRecoveryEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 15% increased Cooldown Recovery Rate", statOrder = { 4899 }, level = 75, group = "GlobalCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, + ["GlobalCooldownRecoveryEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Cooldown Recovery Rate", statOrder = { 4899 }, level = 75, group = "GlobalCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, + ["ElusiveEffectEldritchImplicit1"] = { type = "Eater", affix = "", "(6-7)% increased Elusive Effect", statOrder = { 6243 }, level = 75, group = "ElusiveEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["ElusiveEffectEldritchImplicit2"] = { type = "Eater", affix = "", "(8-9)% increased Elusive Effect", statOrder = { 6243 }, level = 75, group = "ElusiveEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["ElusiveEffectEldritchImplicit3"] = { type = "Eater", affix = "", "(10-11)% increased Elusive Effect", statOrder = { 6243 }, level = 75, group = "ElusiveEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["ElusiveEffectEldritchImplicit4"] = { type = "Eater", affix = "", "(12-13)% increased Elusive Effect", statOrder = { 6243 }, level = 75, group = "ElusiveEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["ElusiveEffectEldritchImplicit5"] = { type = "Eater", affix = "", "(14-15)% increased Elusive Effect", statOrder = { 6243 }, level = 75, group = "ElusiveEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["ElusiveEffectEldritchImplicit6"] = { type = "Eater", affix = "", "(16-17)% increased Elusive Effect", statOrder = { 6243 }, level = 75, group = "ElusiveEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["ElusiveEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (12-13)% increased Elusive Effect", statOrder = { 6243 }, level = 75, group = "ElusiveEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["ElusiveEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (14-15)% increased Elusive Effect", statOrder = { 6243 }, level = 75, group = "ElusiveEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["ElusiveEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (16-17)% increased Elusive Effect", statOrder = { 6243 }, level = 75, group = "ElusiveEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["ElusiveEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (18-19)% increased Elusive Effect", statOrder = { 6243 }, level = 75, group = "ElusiveEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["ElusiveEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (20-21)% increased Elusive Effect", statOrder = { 6243 }, level = 75, group = "ElusiveEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["ElusiveEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (22-23)% increased Elusive Effect", statOrder = { 6243 }, level = 75, group = "ElusiveEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["ElusiveEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (18-19)% increased Elusive Effect", statOrder = { 6243 }, level = 75, group = "ElusiveEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["ElusiveEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% increased Elusive Effect", statOrder = { 6243 }, level = 75, group = "ElusiveEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["ElusiveEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% increased Elusive Effect", statOrder = { 6243 }, level = 75, group = "ElusiveEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["ElusiveEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% increased Elusive Effect", statOrder = { 6243 }, level = 75, group = "ElusiveEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["ElusiveEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% increased Elusive Effect", statOrder = { 6243 }, level = 75, group = "ElusiveEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["ElusiveEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% increased Elusive Effect", statOrder = { 6243 }, level = 75, group = "ElusiveEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["SpellCriticalStrikeMultiplierEldritchImplicit1"] = { type = "Exarch", affix = "", "+(20-21)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1403 }, level = 75, group = "SpellCriticalStrikeMultiplier", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["SpellCriticalStrikeMultiplierEldritchImplicit2"] = { type = "Exarch", affix = "", "+(22-23)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1403 }, level = 75, group = "SpellCriticalStrikeMultiplier", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["SpellCriticalStrikeMultiplierEldritchImplicit3"] = { type = "Exarch", affix = "", "+(24-25)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1403 }, level = 75, group = "SpellCriticalStrikeMultiplier", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["SpellCriticalStrikeMultiplierEldritchImplicit4"] = { type = "Exarch", affix = "", "+(26-27)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1403 }, level = 75, group = "SpellCriticalStrikeMultiplier", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["SpellCriticalStrikeMultiplierEldritchImplicit5"] = { type = "Exarch", affix = "", "+(28-29)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1403 }, level = 75, group = "SpellCriticalStrikeMultiplier", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["SpellCriticalStrikeMultiplierEldritchImplicit6"] = { type = "Exarch", affix = "", "+(30-31)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1403 }, level = 75, group = "SpellCriticalStrikeMultiplier", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["SpellCriticalStrikeMultiplierEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(26-27)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1403 }, level = 75, group = "SpellCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["SpellCriticalStrikeMultiplierEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(28-29)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1403 }, level = 75, group = "SpellCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, + ["SpellCriticalStrikeMultiplierEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(30-31)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1403 }, level = 75, group = "SpellCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, + ["SpellCriticalStrikeMultiplierEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(32-33)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1403 }, level = 75, group = "SpellCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, + ["SpellCriticalStrikeMultiplierEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(34-35)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1403 }, level = 75, group = "SpellCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, + ["SpellCriticalStrikeMultiplierEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(36-37)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1403 }, level = 75, group = "SpellCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, + ["SpellCriticalStrikeMultiplierEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(32-33)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1403 }, level = 75, group = "SpellCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["SpellCriticalStrikeMultiplierEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(34-35)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1403 }, level = 75, group = "SpellCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["SpellCriticalStrikeMultiplierEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(36-37)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1403 }, level = 75, group = "SpellCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, + ["SpellCriticalStrikeMultiplierEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(38-39)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1403 }, level = 75, group = "SpellCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, + ["SpellCriticalStrikeMultiplierEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(40-41)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1403 }, level = 75, group = "SpellCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, + ["SpellCriticalStrikeMultiplierEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(42-43)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1403 }, level = 75, group = "SpellCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, + ["AttackCriticalStrikeMultiplierEldritchImplicit1"] = { type = "Exarch", affix = "", "+(20-21)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1402 }, level = 75, group = "AttackCriticalStrikeMultiplier", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["AttackCriticalStrikeMultiplierEldritchImplicit2"] = { type = "Exarch", affix = "", "+(22-23)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1402 }, level = 75, group = "AttackCriticalStrikeMultiplier", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["AttackCriticalStrikeMultiplierEldritchImplicit3"] = { type = "Exarch", affix = "", "+(24-25)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1402 }, level = 75, group = "AttackCriticalStrikeMultiplier", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["AttackCriticalStrikeMultiplierEldritchImplicit4"] = { type = "Exarch", affix = "", "+(26-27)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1402 }, level = 75, group = "AttackCriticalStrikeMultiplier", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["AttackCriticalStrikeMultiplierEldritchImplicit5"] = { type = "Exarch", affix = "", "+(28-29)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1402 }, level = 75, group = "AttackCriticalStrikeMultiplier", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["AttackCriticalStrikeMultiplierEldritchImplicit6"] = { type = "Exarch", affix = "", "+(30-31)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1402 }, level = 75, group = "AttackCriticalStrikeMultiplier", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["AttackCriticalStrikeMultiplierEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(26-27)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1402 }, level = 75, group = "AttackCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["AttackCriticalStrikeMultiplierEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(28-29)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1402 }, level = 75, group = "AttackCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, + ["AttackCriticalStrikeMultiplierEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(30-31)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1402 }, level = 75, group = "AttackCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, + ["AttackCriticalStrikeMultiplierEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(32-33)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1402 }, level = 75, group = "AttackCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, + ["AttackCriticalStrikeMultiplierEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(34-35)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1402 }, level = 75, group = "AttackCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, + ["AttackCriticalStrikeMultiplierEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(36-37)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1402 }, level = 75, group = "AttackCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, + ["AttackCriticalStrikeMultiplierEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(32-33)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1402 }, level = 75, group = "AttackCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["AttackCriticalStrikeMultiplierEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(34-35)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1402 }, level = 75, group = "AttackCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["AttackCriticalStrikeMultiplierEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(36-37)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1402 }, level = 75, group = "AttackCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, + ["AttackCriticalStrikeMultiplierEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(38-39)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1402 }, level = 75, group = "AttackCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, + ["AttackCriticalStrikeMultiplierEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(40-41)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1402 }, level = 75, group = "AttackCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, + ["AttackCriticalStrikeMultiplierEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(42-43)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1402 }, level = 75, group = "AttackCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, + ["FireDamagePercentageEldritchImplicit1"] = { type = "Exarch", affix = "", "(15-17)% increased Fire Damage", statOrder = { 1268 }, level = 75, group = "FireDamagePercentage", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePercentageEldritchImplicit2"] = { type = "Exarch", affix = "", "(18-20)% increased Fire Damage", statOrder = { 1268 }, level = 75, group = "FireDamagePercentage", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePercentageEldritchImplicit3"] = { type = "Exarch", affix = "", "(21-23)% increased Fire Damage", statOrder = { 1268 }, level = 75, group = "FireDamagePercentage", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePercentageEldritchImplicit4"] = { type = "Exarch", affix = "", "(24-26)% increased Fire Damage", statOrder = { 1268 }, level = 75, group = "FireDamagePercentage", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePercentageEldritchImplicit5"] = { type = "Exarch", affix = "", "(27-28)% increased Fire Damage", statOrder = { 1268 }, level = 75, group = "FireDamagePercentage", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePercentageEldritchImplicit6"] = { type = "Exarch", affix = "", "(29-30)% increased Fire Damage", statOrder = { 1268 }, level = 75, group = "FireDamagePercentage", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePercentageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-23)% increased Fire Damage", statOrder = { 1268 }, level = 75, group = "FireDamagePercentageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePercentageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (24-26)% increased Fire Damage", statOrder = { 1268 }, level = 75, group = "FireDamagePercentageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePercentageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-29)% increased Fire Damage", statOrder = { 1268 }, level = 75, group = "FireDamagePercentageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePercentageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (30-32)% increased Fire Damage", statOrder = { 1268 }, level = 75, group = "FireDamagePercentageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePercentageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (33-34)% increased Fire Damage", statOrder = { 1268 }, level = 75, group = "FireDamagePercentageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePercentageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (35-36)% increased Fire Damage", statOrder = { 1268 }, level = 75, group = "FireDamagePercentageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePercentageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-29)% increased Fire Damage", statOrder = { 1268 }, level = 75, group = "FireDamagePercentagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePercentageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (30-32)% increased Fire Damage", statOrder = { 1268 }, level = 75, group = "FireDamagePercentagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePercentageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% increased Fire Damage", statOrder = { 1268 }, level = 75, group = "FireDamagePercentagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePercentageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% increased Fire Damage", statOrder = { 1268 }, level = 75, group = "FireDamagePercentagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePercentageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-40)% increased Fire Damage", statOrder = { 1268 }, level = 75, group = "FireDamagePercentagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePercentageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (41-42)% increased Fire Damage", statOrder = { 1268 }, level = 75, group = "FireDamagePercentagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["ColdDamagePercentageEldritchImplicit1"] = { type = "Exarch", affix = "", "(15-17)% increased Cold Damage", statOrder = { 1277 }, level = 75, group = "ColdDamagePercentage", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePercentageEldritchImplicit2"] = { type = "Exarch", affix = "", "(18-20)% increased Cold Damage", statOrder = { 1277 }, level = 75, group = "ColdDamagePercentage", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePercentageEldritchImplicit3"] = { type = "Exarch", affix = "", "(21-23)% increased Cold Damage", statOrder = { 1277 }, level = 75, group = "ColdDamagePercentage", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePercentageEldritchImplicit4"] = { type = "Exarch", affix = "", "(24-26)% increased Cold Damage", statOrder = { 1277 }, level = 75, group = "ColdDamagePercentage", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePercentageEldritchImplicit5"] = { type = "Exarch", affix = "", "(27-28)% increased Cold Damage", statOrder = { 1277 }, level = 75, group = "ColdDamagePercentage", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePercentageEldritchImplicit6"] = { type = "Exarch", affix = "", "(29-30)% increased Cold Damage", statOrder = { 1277 }, level = 75, group = "ColdDamagePercentage", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePercentageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-23)% increased Cold Damage", statOrder = { 1277 }, level = 75, group = "ColdDamagePercentageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePercentageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (24-26)% increased Cold Damage", statOrder = { 1277 }, level = 75, group = "ColdDamagePercentageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePercentageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-29)% increased Cold Damage", statOrder = { 1277 }, level = 75, group = "ColdDamagePercentageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePercentageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (30-32)% increased Cold Damage", statOrder = { 1277 }, level = 75, group = "ColdDamagePercentageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePercentageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (33-34)% increased Cold Damage", statOrder = { 1277 }, level = 75, group = "ColdDamagePercentageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePercentageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (35-36)% increased Cold Damage", statOrder = { 1277 }, level = 75, group = "ColdDamagePercentageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePercentageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-29)% increased Cold Damage", statOrder = { 1277 }, level = 75, group = "ColdDamagePercentagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePercentageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (30-32)% increased Cold Damage", statOrder = { 1277 }, level = 75, group = "ColdDamagePercentagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePercentageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% increased Cold Damage", statOrder = { 1277 }, level = 75, group = "ColdDamagePercentagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePercentageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% increased Cold Damage", statOrder = { 1277 }, level = 75, group = "ColdDamagePercentagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePercentageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-40)% increased Cold Damage", statOrder = { 1277 }, level = 75, group = "ColdDamagePercentagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePercentageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (41-42)% increased Cold Damage", statOrder = { 1277 }, level = 75, group = "ColdDamagePercentagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["LightningDamagePercentageEldritchImplicit1"] = { type = "Exarch", affix = "", "(15-17)% increased Lightning Damage", statOrder = { 1288 }, level = 75, group = "LightningDamagePercentage", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePercentageEldritchImplicit2"] = { type = "Exarch", affix = "", "(18-20)% increased Lightning Damage", statOrder = { 1288 }, level = 75, group = "LightningDamagePercentage", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePercentageEldritchImplicit3"] = { type = "Exarch", affix = "", "(21-23)% increased Lightning Damage", statOrder = { 1288 }, level = 75, group = "LightningDamagePercentage", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePercentageEldritchImplicit4"] = { type = "Exarch", affix = "", "(24-26)% increased Lightning Damage", statOrder = { 1288 }, level = 75, group = "LightningDamagePercentage", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePercentageEldritchImplicit5"] = { type = "Exarch", affix = "", "(27-28)% increased Lightning Damage", statOrder = { 1288 }, level = 75, group = "LightningDamagePercentage", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePercentageEldritchImplicit6"] = { type = "Exarch", affix = "", "(29-30)% increased Lightning Damage", statOrder = { 1288 }, level = 75, group = "LightningDamagePercentage", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePercentageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-23)% increased Lightning Damage", statOrder = { 1288 }, level = 75, group = "LightningDamagePercentageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePercentageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (24-26)% increased Lightning Damage", statOrder = { 1288 }, level = 75, group = "LightningDamagePercentageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePercentageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-29)% increased Lightning Damage", statOrder = { 1288 }, level = 75, group = "LightningDamagePercentageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePercentageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (30-32)% increased Lightning Damage", statOrder = { 1288 }, level = 75, group = "LightningDamagePercentageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePercentageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (33-34)% increased Lightning Damage", statOrder = { 1288 }, level = 75, group = "LightningDamagePercentageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePercentageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (35-36)% increased Lightning Damage", statOrder = { 1288 }, level = 75, group = "LightningDamagePercentageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePercentageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-29)% increased Lightning Damage", statOrder = { 1288 }, level = 75, group = "LightningDamagePercentagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePercentageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (30-32)% increased Lightning Damage", statOrder = { 1288 }, level = 75, group = "LightningDamagePercentagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePercentageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% increased Lightning Damage", statOrder = { 1288 }, level = 75, group = "LightningDamagePercentagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePercentageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% increased Lightning Damage", statOrder = { 1288 }, level = 75, group = "LightningDamagePercentagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePercentageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-40)% increased Lightning Damage", statOrder = { 1288 }, level = 75, group = "LightningDamagePercentagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePercentageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (41-42)% increased Lightning Damage", statOrder = { 1288 }, level = 75, group = "LightningDamagePercentagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["IncreasedChaosDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "(15-17)% increased Chaos Damage", statOrder = { 1296 }, level = 75, group = "IncreasedChaosDamage", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["IncreasedChaosDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "(18-20)% increased Chaos Damage", statOrder = { 1296 }, level = 75, group = "IncreasedChaosDamage", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["IncreasedChaosDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "(21-23)% increased Chaos Damage", statOrder = { 1296 }, level = 75, group = "IncreasedChaosDamage", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["IncreasedChaosDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "(24-26)% increased Chaos Damage", statOrder = { 1296 }, level = 75, group = "IncreasedChaosDamage", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["IncreasedChaosDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "(27-28)% increased Chaos Damage", statOrder = { 1296 }, level = 75, group = "IncreasedChaosDamage", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["IncreasedChaosDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "(29-30)% increased Chaos Damage", statOrder = { 1296 }, level = 75, group = "IncreasedChaosDamage", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["IncreasedChaosDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-23)% increased Chaos Damage", statOrder = { 1296 }, level = 75, group = "IncreasedChaosDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["IncreasedChaosDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (24-26)% increased Chaos Damage", statOrder = { 1296 }, level = 75, group = "IncreasedChaosDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["IncreasedChaosDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-29)% increased Chaos Damage", statOrder = { 1296 }, level = 75, group = "IncreasedChaosDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["IncreasedChaosDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (30-32)% increased Chaos Damage", statOrder = { 1296 }, level = 75, group = "IncreasedChaosDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["IncreasedChaosDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (33-34)% increased Chaos Damage", statOrder = { 1296 }, level = 75, group = "IncreasedChaosDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["IncreasedChaosDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (35-36)% increased Chaos Damage", statOrder = { 1296 }, level = 75, group = "IncreasedChaosDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["IncreasedChaosDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-29)% increased Chaos Damage", statOrder = { 1296 }, level = 75, group = "IncreasedChaosDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["IncreasedChaosDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (30-32)% increased Chaos Damage", statOrder = { 1296 }, level = 75, group = "IncreasedChaosDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["IncreasedChaosDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% increased Chaos Damage", statOrder = { 1296 }, level = 75, group = "IncreasedChaosDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["IncreasedChaosDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% increased Chaos Damage", statOrder = { 1296 }, level = 75, group = "IncreasedChaosDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["IncreasedChaosDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-40)% increased Chaos Damage", statOrder = { 1296 }, level = 75, group = "IncreasedChaosDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["IncreasedChaosDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (41-42)% increased Chaos Damage", statOrder = { 1296 }, level = 75, group = "IncreasedChaosDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["PhysicalDamagePercentEldritchImplicit1"] = { type = "Exarch", affix = "", "(15-17)% increased Global Physical Damage", statOrder = { 1143 }, level = 75, group = "PhysicalDamagePercent", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["PhysicalDamagePercentEldritchImplicit2"] = { type = "Exarch", affix = "", "(18-20)% increased Global Physical Damage", statOrder = { 1143 }, level = 75, group = "PhysicalDamagePercent", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["PhysicalDamagePercentEldritchImplicit3"] = { type = "Exarch", affix = "", "(21-23)% increased Global Physical Damage", statOrder = { 1143 }, level = 75, group = "PhysicalDamagePercent", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["PhysicalDamagePercentEldritchImplicit4"] = { type = "Exarch", affix = "", "(24-26)% increased Global Physical Damage", statOrder = { 1143 }, level = 75, group = "PhysicalDamagePercent", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["PhysicalDamagePercentEldritchImplicit5"] = { type = "Exarch", affix = "", "(27-28)% increased Global Physical Damage", statOrder = { 1143 }, level = 75, group = "PhysicalDamagePercent", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["PhysicalDamagePercentEldritchImplicit6"] = { type = "Exarch", affix = "", "(29-30)% increased Global Physical Damage", statOrder = { 1143 }, level = 75, group = "PhysicalDamagePercent", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["PhysicalDamagePercentEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-23)% increased Global Physical Damage", statOrder = { 1143 }, level = 75, group = "PhysicalDamagePercentUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["PhysicalDamagePercentEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (24-26)% increased Global Physical Damage", statOrder = { 1143 }, level = 75, group = "PhysicalDamagePercentUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["PhysicalDamagePercentEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-29)% increased Global Physical Damage", statOrder = { 1143 }, level = 75, group = "PhysicalDamagePercentUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["PhysicalDamagePercentEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (30-32)% increased Global Physical Damage", statOrder = { 1143 }, level = 75, group = "PhysicalDamagePercentUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["PhysicalDamagePercentEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (33-34)% increased Global Physical Damage", statOrder = { 1143 }, level = 75, group = "PhysicalDamagePercentUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["PhysicalDamagePercentEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (35-36)% increased Global Physical Damage", statOrder = { 1143 }, level = 75, group = "PhysicalDamagePercentUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["PhysicalDamagePercentEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-29)% increased Global Physical Damage", statOrder = { 1143 }, level = 75, group = "PhysicalDamagePercentPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["PhysicalDamagePercentEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (30-32)% increased Global Physical Damage", statOrder = { 1143 }, level = 75, group = "PhysicalDamagePercentPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["PhysicalDamagePercentEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% increased Global Physical Damage", statOrder = { 1143 }, level = 75, group = "PhysicalDamagePercentPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["PhysicalDamagePercentEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% increased Global Physical Damage", statOrder = { 1143 }, level = 75, group = "PhysicalDamagePercentPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["PhysicalDamagePercentEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-40)% increased Global Physical Damage", statOrder = { 1143 }, level = 75, group = "PhysicalDamagePercentPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["PhysicalDamagePercentEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (41-42)% increased Global Physical Damage", statOrder = { 1143 }, level = 75, group = "PhysicalDamagePercentPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["ArcticArmourBuffEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(15-17)% increased Arctic Armour Buff Effect", statOrder = { 3930 }, level = 75, group = "ArcticArmourBuffEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["ArcticArmourBuffEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(18-20)% increased Arctic Armour Buff Effect", statOrder = { 3930 }, level = 75, group = "ArcticArmourBuffEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["ArcticArmourBuffEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(21-23)% increased Arctic Armour Buff Effect", statOrder = { 3930 }, level = 75, group = "ArcticArmourBuffEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["ArcticArmourBuffEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(24-26)% increased Arctic Armour Buff Effect", statOrder = { 3930 }, level = 75, group = "ArcticArmourBuffEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["ArcticArmourBuffEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(27-29)% increased Arctic Armour Buff Effect", statOrder = { 3930 }, level = 75, group = "ArcticArmourBuffEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["ArcticArmourBuffEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(30-32)% increased Arctic Armour Buff Effect", statOrder = { 3930 }, level = 75, group = "ArcticArmourBuffEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["ArcticArmourBuffEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (24-26)% increased Arctic Armour Buff Effect", statOrder = { 3930 }, level = 75, group = "ArcticArmourBuffEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["ArcticArmourBuffEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-29)% increased Arctic Armour Buff Effect", statOrder = { 3930 }, level = 75, group = "ArcticArmourBuffEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["ArcticArmourBuffEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (30-32)% increased Arctic Armour Buff Effect", statOrder = { 3930 }, level = 75, group = "ArcticArmourBuffEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["ArcticArmourBuffEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (33-35)% increased Arctic Armour Buff Effect", statOrder = { 3930 }, level = 75, group = "ArcticArmourBuffEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["ArcticArmourBuffEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (36-38)% increased Arctic Armour Buff Effect", statOrder = { 3930 }, level = 75, group = "ArcticArmourBuffEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["ArcticArmourBuffEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (39-41)% increased Arctic Armour Buff Effect", statOrder = { 3930 }, level = 75, group = "ArcticArmourBuffEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["ArcticArmourBuffEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% increased Arctic Armour Buff Effect", statOrder = { 3930 }, level = 75, group = "ArcticArmourBuffEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["ArcticArmourBuffEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% increased Arctic Armour Buff Effect", statOrder = { 3930 }, level = 75, group = "ArcticArmourBuffEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["ArcticArmourBuffEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-41)% increased Arctic Armour Buff Effect", statOrder = { 3930 }, level = 75, group = "ArcticArmourBuffEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["ArcticArmourBuffEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (42-44)% increased Arctic Armour Buff Effect", statOrder = { 3930 }, level = 75, group = "ArcticArmourBuffEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["ArcticArmourBuffEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (45-47)% increased Arctic Armour Buff Effect", statOrder = { 3930 }, level = 75, group = "ArcticArmourBuffEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["ArcticArmourBuffEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (48-50)% increased Arctic Armour Buff Effect", statOrder = { 3930 }, level = 75, group = "ArcticArmourBuffEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["FleshAndStoneAreaOfEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Flesh and Stone has (15-17)% increased Area of Effect", statOrder = { 6534 }, level = 75, group = "FleshAndStoneAreaOfEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["FleshAndStoneAreaOfEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Flesh and Stone has (18-20)% increased Area of Effect", statOrder = { 6534 }, level = 75, group = "FleshAndStoneAreaOfEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["FleshAndStoneAreaOfEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Flesh and Stone has (21-23)% increased Area of Effect", statOrder = { 6534 }, level = 75, group = "FleshAndStoneAreaOfEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["FleshAndStoneAreaOfEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Flesh and Stone has (24-26)% increased Area of Effect", statOrder = { 6534 }, level = 75, group = "FleshAndStoneAreaOfEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["FleshAndStoneAreaOfEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Flesh and Stone has (27-29)% increased Area of Effect", statOrder = { 6534 }, level = 75, group = "FleshAndStoneAreaOfEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["FleshAndStoneAreaOfEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Flesh and Stone has (30-32)% increased Area of Effect", statOrder = { 6534 }, level = 75, group = "FleshAndStoneAreaOfEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["FleshAndStoneAreaOfEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh and Stone has (24-26)% increased Area of Effect", statOrder = { 6534 }, level = 75, group = "FleshAndStoneAreaOfEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["FleshAndStoneAreaOfEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh and Stone has (27-29)% increased Area of Effect", statOrder = { 6534 }, level = 75, group = "FleshAndStoneAreaOfEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["FleshAndStoneAreaOfEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh and Stone has (30-32)% increased Area of Effect", statOrder = { 6534 }, level = 75, group = "FleshAndStoneAreaOfEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["FleshAndStoneAreaOfEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh and Stone has (33-35)% increased Area of Effect", statOrder = { 6534 }, level = 75, group = "FleshAndStoneAreaOfEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["FleshAndStoneAreaOfEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh and Stone has (36-38)% increased Area of Effect", statOrder = { 6534 }, level = 75, group = "FleshAndStoneAreaOfEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["FleshAndStoneAreaOfEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh and Stone has (39-41)% increased Area of Effect", statOrder = { 6534 }, level = 75, group = "FleshAndStoneAreaOfEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["FleshAndStoneAreaOfEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh and Stone has (33-35)% increased Area of Effect", statOrder = { 6534 }, level = 75, group = "FleshAndStoneAreaOfEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["FleshAndStoneAreaOfEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh and Stone has (36-38)% increased Area of Effect", statOrder = { 6534 }, level = 75, group = "FleshAndStoneAreaOfEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["FleshAndStoneAreaOfEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh and Stone has (39-41)% increased Area of Effect", statOrder = { 6534 }, level = 75, group = "FleshAndStoneAreaOfEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["FleshAndStoneAreaOfEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh and Stone has (42-44)% increased Area of Effect", statOrder = { 6534 }, level = 75, group = "FleshAndStoneAreaOfEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["FleshAndStoneAreaOfEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh and Stone has (45-47)% increased Area of Effect", statOrder = { 6534 }, level = 75, group = "FleshAndStoneAreaOfEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["FleshAndStoneAreaOfEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh and Stone has (48-50)% increased Area of Effect", statOrder = { 6534 }, level = 75, group = "FleshAndStoneAreaOfEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["TempestShieldBuffEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Tempest Shield has (15-17)% increased Buff Effect", statOrder = { 10149 }, level = 75, group = "TempestShieldBuffEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["TempestShieldBuffEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Tempest Shield has (18-20)% increased Buff Effect", statOrder = { 10149 }, level = 75, group = "TempestShieldBuffEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["TempestShieldBuffEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Tempest Shield has (21-23)% increased Buff Effect", statOrder = { 10149 }, level = 75, group = "TempestShieldBuffEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["TempestShieldBuffEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Tempest Shield has (24-26)% increased Buff Effect", statOrder = { 10149 }, level = 75, group = "TempestShieldBuffEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["TempestShieldBuffEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Tempest Shield has (27-29)% increased Buff Effect", statOrder = { 10149 }, level = 75, group = "TempestShieldBuffEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["TempestShieldBuffEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Tempest Shield has (30-32)% increased Buff Effect", statOrder = { 10149 }, level = 75, group = "TempestShieldBuffEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["TempestShieldBuffEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Tempest Shield has (24-26)% increased Buff Effect", statOrder = { 10149 }, level = 75, group = "TempestShieldBuffEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["TempestShieldBuffEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Tempest Shield has (27-29)% increased Buff Effect", statOrder = { 10149 }, level = 75, group = "TempestShieldBuffEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["TempestShieldBuffEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Tempest Shield has (30-32)% increased Buff Effect", statOrder = { 10149 }, level = 75, group = "TempestShieldBuffEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["TempestShieldBuffEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Tempest Shield has (33-35)% increased Buff Effect", statOrder = { 10149 }, level = 75, group = "TempestShieldBuffEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["TempestShieldBuffEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Tempest Shield has (36-38)% increased Buff Effect", statOrder = { 10149 }, level = 75, group = "TempestShieldBuffEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["TempestShieldBuffEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Tempest Shield has (39-41)% increased Buff Effect", statOrder = { 10149 }, level = 75, group = "TempestShieldBuffEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["TempestShieldBuffEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Tempest Shield has (33-35)% increased Buff Effect", statOrder = { 10149 }, level = 75, group = "TempestShieldBuffEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["TempestShieldBuffEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Tempest Shield has (36-38)% increased Buff Effect", statOrder = { 10149 }, level = 75, group = "TempestShieldBuffEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["TempestShieldBuffEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Tempest Shield has (39-41)% increased Buff Effect", statOrder = { 10149 }, level = 75, group = "TempestShieldBuffEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["TempestShieldBuffEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Tempest Shield has (42-44)% increased Buff Effect", statOrder = { 10149 }, level = 75, group = "TempestShieldBuffEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["TempestShieldBuffEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Tempest Shield has (45-47)% increased Buff Effect", statOrder = { 10149 }, level = 75, group = "TempestShieldBuffEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["TempestShieldBuffEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Tempest Shield has (48-50)% increased Buff Effect", statOrder = { 10149 }, level = 75, group = "TempestShieldBuffEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["DamageRemovedFromManaBeforeLifeEldritchImplicit1"] = { type = "Exarch", affix = "", "5% of Damage is taken from Mana before Life", statOrder = { 2607 }, level = 75, group = "DamageRemovedFromManaBeforeLife", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "mana" }, }, + ["DamageRemovedFromManaBeforeLifeEldritchImplicit2"] = { type = "Exarch", affix = "", "6% of Damage is taken from Mana before Life", statOrder = { 2607 }, level = 75, group = "DamageRemovedFromManaBeforeLife", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "mana" }, }, + ["DamageRemovedFromManaBeforeLifeEldritchImplicit3"] = { type = "Exarch", affix = "", "7% of Damage is taken from Mana before Life", statOrder = { 2607 }, level = 75, group = "DamageRemovedFromManaBeforeLife", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "mana" }, }, + ["DamageRemovedFromManaBeforeLifeEldritchImplicit4"] = { type = "Exarch", affix = "", "8% of Damage is taken from Mana before Life", statOrder = { 2607 }, level = 75, group = "DamageRemovedFromManaBeforeLife", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "mana" }, }, + ["DamageRemovedFromManaBeforeLifeEldritchImplicit5"] = { type = "Exarch", affix = "", "9% of Damage is taken from Mana before Life", statOrder = { 2607 }, level = 75, group = "DamageRemovedFromManaBeforeLife", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "mana" }, }, + ["DamageRemovedFromManaBeforeLifeEldritchImplicit6"] = { type = "Exarch", affix = "", "10% of Damage is taken from Mana before Life", statOrder = { 2607 }, level = 75, group = "DamageRemovedFromManaBeforeLife", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "mana" }, }, + ["DamageRemovedFromManaBeforeLifeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 7% of Damage is taken from Mana before Life", statOrder = { 2607 }, level = 75, group = "DamageRemovedFromManaBeforeLifeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["DamageRemovedFromManaBeforeLifeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 8% of Damage is taken from Mana before Life", statOrder = { 2607 }, level = 75, group = "DamageRemovedFromManaBeforeLifeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["DamageRemovedFromManaBeforeLifeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 9% of Damage is taken from Mana before Life", statOrder = { 2607 }, level = 75, group = "DamageRemovedFromManaBeforeLifeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["DamageRemovedFromManaBeforeLifeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 10% of Damage is taken from Mana before Life", statOrder = { 2607 }, level = 75, group = "DamageRemovedFromManaBeforeLifeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["DamageRemovedFromManaBeforeLifeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 11% of Damage is taken from Mana before Life", statOrder = { 2607 }, level = 75, group = "DamageRemovedFromManaBeforeLifeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["DamageRemovedFromManaBeforeLifeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 12% of Damage is taken from Mana before Life", statOrder = { 2607 }, level = 75, group = "DamageRemovedFromManaBeforeLifeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["DamageRemovedFromManaBeforeLifeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 9% of Damage is taken from Mana before Life", statOrder = { 2607 }, level = 75, group = "DamageRemovedFromManaBeforeLifePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["DamageRemovedFromManaBeforeLifeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% of Damage is taken from Mana before Life", statOrder = { 2607 }, level = 75, group = "DamageRemovedFromManaBeforeLifePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["DamageRemovedFromManaBeforeLifeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% of Damage is taken from Mana before Life", statOrder = { 2607 }, level = 75, group = "DamageRemovedFromManaBeforeLifePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["DamageRemovedFromManaBeforeLifeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% of Damage is taken from Mana before Life", statOrder = { 2607 }, level = 75, group = "DamageRemovedFromManaBeforeLifePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["DamageRemovedFromManaBeforeLifeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% of Damage is taken from Mana before Life", statOrder = { 2607 }, level = 75, group = "DamageRemovedFromManaBeforeLifePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["DamageRemovedFromManaBeforeLifeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% of Damage is taken from Mana before Life", statOrder = { 2607 }, level = 75, group = "DamageRemovedFromManaBeforeLifePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["GolemBuffEffectUniqueEldritchImplicit1"] = { type = "Exarch", affix = "", "(19-21)% increased Effect of Buffs granted by your Golems", statOrder = { 6769 }, level = 75, group = "GolemBuffEffectUnique", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["GolemBuffEffectUniqueEldritchImplicit2"] = { type = "Exarch", affix = "", "(22-24)% increased Effect of Buffs granted by your Golems", statOrder = { 6769 }, level = 75, group = "GolemBuffEffectUnique", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["GolemBuffEffectUniqueEldritchImplicit3"] = { type = "Exarch", affix = "", "(25-27)% increased Effect of Buffs granted by your Golems", statOrder = { 6769 }, level = 75, group = "GolemBuffEffectUnique", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["GolemBuffEffectUniqueEldritchImplicit4"] = { type = "Exarch", affix = "", "(28-30)% increased Effect of Buffs granted by your Golems", statOrder = { 6769 }, level = 75, group = "GolemBuffEffectUnique", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["GolemBuffEffectUniqueEldritchImplicit5"] = { type = "Exarch", affix = "", "(31-33)% increased Effect of Buffs granted by your Golems", statOrder = { 6769 }, level = 75, group = "GolemBuffEffectUnique", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["GolemBuffEffectUniqueEldritchImplicit6"] = { type = "Exarch", affix = "", "(34-36)% increased Effect of Buffs granted by your Golems", statOrder = { 6769 }, level = 75, group = "GolemBuffEffectUnique", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["GolemBuffEffectUniqueEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (31-33)% increased Effect of Buffs granted by your Golems", statOrder = { 6769 }, level = 75, group = "GolemBuffEffectUniqueUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["GolemBuffEffectUniqueEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (34-36)% increased Effect of Buffs granted by your Golems", statOrder = { 6769 }, level = 75, group = "GolemBuffEffectUniqueUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["GolemBuffEffectUniqueEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (37-39)% increased Effect of Buffs granted by your Golems", statOrder = { 6769 }, level = 75, group = "GolemBuffEffectUniqueUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["GolemBuffEffectUniqueEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (40-42)% increased Effect of Buffs granted by your Golems", statOrder = { 6769 }, level = 75, group = "GolemBuffEffectUniqueUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["GolemBuffEffectUniqueEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Effect of Buffs granted by your Golems", statOrder = { 6769 }, level = 75, group = "GolemBuffEffectUniqueUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["GolemBuffEffectUniqueEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Effect of Buffs granted by your Golems", statOrder = { 6769 }, level = 75, group = "GolemBuffEffectUniqueUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["GolemBuffEffectUniqueEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (43-45)% increased Effect of Buffs granted by your Golems", statOrder = { 6769 }, level = 75, group = "GolemBuffEffectUniquePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["GolemBuffEffectUniqueEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (46-48)% increased Effect of Buffs granted by your Golems", statOrder = { 6769 }, level = 75, group = "GolemBuffEffectUniquePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["GolemBuffEffectUniqueEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (49-51)% increased Effect of Buffs granted by your Golems", statOrder = { 6769 }, level = 75, group = "GolemBuffEffectUniquePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["GolemBuffEffectUniqueEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (52-54)% increased Effect of Buffs granted by your Golems", statOrder = { 6769 }, level = 75, group = "GolemBuffEffectUniquePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["GolemBuffEffectUniqueEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Effect of Buffs granted by your Golems", statOrder = { 6769 }, level = 75, group = "GolemBuffEffectUniquePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["GolemBuffEffectUniqueEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Effect of Buffs granted by your Golems", statOrder = { 6769 }, level = 75, group = "GolemBuffEffectUniquePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["AuraEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(9-10)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3474 }, level = 75, group = "AuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "aura" }, }, + ["AuraEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(11-12)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3474 }, level = 75, group = "AuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "aura" }, }, + ["AuraEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(13-14)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3474 }, level = 75, group = "AuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "aura" }, }, + ["AuraEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(15-16)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3474 }, level = 75, group = "AuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "aura" }, }, + ["AuraEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(17-18)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3474 }, level = 75, group = "AuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "aura" }, }, + ["AuraEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(19-20)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3474 }, level = 75, group = "AuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "aura" }, }, + ["AuraEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (17-18)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3474 }, level = 75, group = "AuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["AuraEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (19-20)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3474 }, level = 75, group = "AuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, }, + ["AuraEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-22)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3474 }, level = 75, group = "AuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, }, + ["AuraEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (23-24)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3474 }, level = 75, group = "AuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, }, + ["AuraEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (25-26)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3474 }, level = 75, group = "AuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, }, + ["AuraEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-28)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3474 }, level = 75, group = "AuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, }, + ["AuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3474 }, level = 75, group = "AuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["AuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3474 }, level = 75, group = "AuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["AuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3474 }, level = 75, group = "AuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, + ["AuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (31-32)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3474 }, level = 75, group = "AuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, + ["AuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-34)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3474 }, level = 75, group = "AuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, + ["AuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (35-36)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3474 }, level = 75, group = "AuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, + ["CurseEffectivenessEldritchImplicit1"] = { type = "Exarch", affix = "", "7% increased Effect of your Curses", statOrder = { 2505 }, level = 75, group = "CurseEffectiveness", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "curse" }, }, + ["CurseEffectivenessEldritchImplicit2"] = { type = "Exarch", affix = "", "8% increased Effect of your Curses", statOrder = { 2505 }, level = 75, group = "CurseEffectiveness", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "curse" }, }, + ["CurseEffectivenessEldritchImplicit3"] = { type = "Exarch", affix = "", "9% increased Effect of your Curses", statOrder = { 2505 }, level = 75, group = "CurseEffectiveness", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "curse" }, }, + ["CurseEffectivenessEldritchImplicit4"] = { type = "Exarch", affix = "", "10% increased Effect of your Curses", statOrder = { 2505 }, level = 75, group = "CurseEffectiveness", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "curse" }, }, + ["CurseEffectivenessEldritchImplicit5"] = { type = "Exarch", affix = "", "11% increased Effect of your Curses", statOrder = { 2505 }, level = 75, group = "CurseEffectiveness", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "curse" }, }, + ["CurseEffectivenessEldritchImplicit6"] = { type = "Exarch", affix = "", "12% increased Effect of your Curses", statOrder = { 2505 }, level = 75, group = "CurseEffectiveness", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "curse" }, }, + ["CurseEffectivenessEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 10% increased Effect of your Curses", statOrder = { 2505 }, level = 75, group = "CurseEffectivenessUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "curse" }, }, + ["CurseEffectivenessEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 11% increased Effect of your Curses", statOrder = { 2505 }, level = 75, group = "CurseEffectivenessUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { "curse" }, }, + ["CurseEffectivenessEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 12% increased Effect of your Curses", statOrder = { 2505 }, level = 75, group = "CurseEffectivenessUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { "curse" }, }, + ["CurseEffectivenessEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 13% increased Effect of your Curses", statOrder = { 2505 }, level = 75, group = "CurseEffectivenessUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { "curse" }, }, + ["CurseEffectivenessEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Effect of your Curses", statOrder = { 2505 }, level = 75, group = "CurseEffectivenessUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { "curse" }, }, + ["CurseEffectivenessEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Effect of your Curses", statOrder = { 2505 }, level = 75, group = "CurseEffectivenessUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { "curse" }, }, + ["CurseEffectivenessEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% increased Effect of your Curses", statOrder = { 2505 }, level = 75, group = "CurseEffectivenessPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "curse" }, }, + ["CurseEffectivenessEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% increased Effect of your Curses", statOrder = { 2505 }, level = 75, group = "CurseEffectivenessPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "curse" }, }, + ["CurseEffectivenessEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 15% increased Effect of your Curses", statOrder = { 2505 }, level = 75, group = "CurseEffectivenessPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { "curse" }, }, + ["CurseEffectivenessEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Effect of your Curses", statOrder = { 2505 }, level = 75, group = "CurseEffectivenessPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { "curse" }, }, + ["CurseEffectivenessEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 17% increased Effect of your Curses", statOrder = { 2505 }, level = 75, group = "CurseEffectivenessPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { "curse" }, }, + ["CurseEffectivenessEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Effect of your Curses", statOrder = { 2505 }, level = 75, group = "CurseEffectivenessPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { "curse" }, }, + ["OfferingEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(13-14)% increased effect of Offerings", statOrder = { 3971 }, level = 75, group = "OfferingEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["OfferingEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(15-16)% increased effect of Offerings", statOrder = { 3971 }, level = 75, group = "OfferingEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["OfferingEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(17-18)% increased effect of Offerings", statOrder = { 3971 }, level = 75, group = "OfferingEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["OfferingEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(19-20)% increased effect of Offerings", statOrder = { 3971 }, level = 75, group = "OfferingEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["OfferingEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(21-22)% increased effect of Offerings", statOrder = { 3971 }, level = 75, group = "OfferingEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["OfferingEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(23-24)% increased effect of Offerings", statOrder = { 3971 }, level = 75, group = "OfferingEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["OfferingEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (19-20)% increased effect of Offerings", statOrder = { 3971 }, level = 75, group = "OfferingEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["OfferingEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-22)% increased effect of Offerings", statOrder = { 3971 }, level = 75, group = "OfferingEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["OfferingEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (23-24)% increased effect of Offerings", statOrder = { 3971 }, level = 75, group = "OfferingEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["OfferingEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (25-26)% increased effect of Offerings", statOrder = { 3971 }, level = 75, group = "OfferingEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["OfferingEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-28)% increased effect of Offerings", statOrder = { 3971 }, level = 75, group = "OfferingEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["OfferingEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (29-30)% increased effect of Offerings", statOrder = { 3971 }, level = 75, group = "OfferingEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["OfferingEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% increased effect of Offerings", statOrder = { 3971 }, level = 75, group = "OfferingEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["OfferingEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% increased effect of Offerings", statOrder = { 3971 }, level = 75, group = "OfferingEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["OfferingEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% increased effect of Offerings", statOrder = { 3971 }, level = 75, group = "OfferingEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["OfferingEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (31-32)% increased effect of Offerings", statOrder = { 3971 }, level = 75, group = "OfferingEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["OfferingEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-34)% increased effect of Offerings", statOrder = { 3971 }, level = 75, group = "OfferingEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["OfferingEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (35-36)% increased effect of Offerings", statOrder = { 3971 }, level = 75, group = "OfferingEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["WarcryEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(19-20)% increased Warcry Buff Effect", statOrder = { 10348 }, level = 75, group = "WarcryEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["WarcryEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(21-22)% increased Warcry Buff Effect", statOrder = { 10348 }, level = 75, group = "WarcryEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["WarcryEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(23-24)% increased Warcry Buff Effect", statOrder = { 10348 }, level = 75, group = "WarcryEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["WarcryEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(25-26)% increased Warcry Buff Effect", statOrder = { 10348 }, level = 75, group = "WarcryEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["WarcryEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(27-28)% increased Warcry Buff Effect", statOrder = { 10348 }, level = 75, group = "WarcryEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["WarcryEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(29-30)% increased Warcry Buff Effect", statOrder = { 10348 }, level = 75, group = "WarcryEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["WarcryEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (25-26)% increased Warcry Buff Effect", statOrder = { 10348 }, level = 75, group = "WarcryEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["WarcryEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-28)% increased Warcry Buff Effect", statOrder = { 10348 }, level = 75, group = "WarcryEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["WarcryEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (29-30)% increased Warcry Buff Effect", statOrder = { 10348 }, level = 75, group = "WarcryEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["WarcryEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (31-32)% increased Warcry Buff Effect", statOrder = { 10348 }, level = 75, group = "WarcryEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["WarcryEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (33-34)% increased Warcry Buff Effect", statOrder = { 10348 }, level = 75, group = "WarcryEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["WarcryEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (35-36)% increased Warcry Buff Effect", statOrder = { 10348 }, level = 75, group = "WarcryEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["WarcryEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (31-32)% increased Warcry Buff Effect", statOrder = { 10348 }, level = 75, group = "WarcryEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["WarcryEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-34)% increased Warcry Buff Effect", statOrder = { 10348 }, level = 75, group = "WarcryEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["WarcryEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (35-36)% increased Warcry Buff Effect", statOrder = { 10348 }, level = 75, group = "WarcryEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["WarcryEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (37-38)% increased Warcry Buff Effect", statOrder = { 10348 }, level = 75, group = "WarcryEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["WarcryEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-40)% increased Warcry Buff Effect", statOrder = { 10348 }, level = 75, group = "WarcryEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["WarcryEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (41-42)% increased Warcry Buff Effect", statOrder = { 10348 }, level = 75, group = "WarcryEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["FlaskEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Flasks applied to you have (6-7)% increased Effect", statOrder = { 2652 }, level = 75, group = "FlaskEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "flask" }, }, + ["FlaskEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Flasks applied to you have (8-9)% increased Effect", statOrder = { 2652 }, level = 75, group = "FlaskEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "flask" }, }, + ["FlaskEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Flasks applied to you have (10-11)% increased Effect", statOrder = { 2652 }, level = 75, group = "FlaskEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "flask" }, }, + ["FlaskEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Flasks applied to you have (12-13)% increased Effect", statOrder = { 2652 }, level = 75, group = "FlaskEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "flask" }, }, + ["FlaskEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Flasks applied to you have (14-15)% increased Effect", statOrder = { 2652 }, level = 75, group = "FlaskEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "flask" }, }, + ["FlaskEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Flasks applied to you have (16-17)% increased Effect", statOrder = { 2652 }, level = 75, group = "FlaskEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "flask" }, }, + ["FlaskEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks applied to you have (12-13)% increased Effect", statOrder = { 2652 }, level = 75, group = "FlaskEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "flask" }, }, + ["FlaskEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks applied to you have (14-15)% increased Effect", statOrder = { 2652 }, level = 75, group = "FlaskEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "flask" }, }, + ["FlaskEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks applied to you have (16-17)% increased Effect", statOrder = { 2652 }, level = 75, group = "FlaskEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "flask" }, }, + ["FlaskEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks applied to you have (18-19)% increased Effect", statOrder = { 2652 }, level = 75, group = "FlaskEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "flask" }, }, + ["FlaskEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks applied to you have (20-21)% increased Effect", statOrder = { 2652 }, level = 75, group = "FlaskEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "flask" }, }, + ["FlaskEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks applied to you have (22-23)% increased Effect", statOrder = { 2652 }, level = 75, group = "FlaskEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "flask" }, }, + ["FlaskEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks applied to you have (18-19)% increased Effect", statOrder = { 2652 }, level = 75, group = "FlaskEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "flask" }, }, + ["FlaskEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks applied to you have (20-21)% increased Effect", statOrder = { 2652 }, level = 75, group = "FlaskEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "flask" }, }, + ["FlaskEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks applied to you have (22-23)% increased Effect", statOrder = { 2652 }, level = 75, group = "FlaskEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "flask" }, }, + ["FlaskEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks applied to you have (24-25)% increased Effect", statOrder = { 2652 }, level = 75, group = "FlaskEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "flask" }, }, + ["FlaskEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks applied to you have (26-27)% increased Effect", statOrder = { 2652 }, level = 75, group = "FlaskEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "flask" }, }, + ["FlaskEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks applied to you have (28-29)% increased Effect", statOrder = { 2652 }, level = 75, group = "FlaskEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "flask" }, }, + ["DamageTakenGainedAsLifeEldritchImplicit1"] = { type = "Exarch", affix = "", "(8-9)% of Damage taken Recouped as Life", statOrder = { 6000 }, level = 75, group = "DamageTakenGainedAsLife", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, }, + ["DamageTakenGainedAsLifeEldritchImplicit2"] = { type = "Exarch", affix = "", "(10-11)% of Damage taken Recouped as Life", statOrder = { 6000 }, level = 75, group = "DamageTakenGainedAsLife", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, }, + ["DamageTakenGainedAsLifeEldritchImplicit3"] = { type = "Exarch", affix = "", "(12-13)% of Damage taken Recouped as Life", statOrder = { 6000 }, level = 75, group = "DamageTakenGainedAsLife", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, }, + ["DamageTakenGainedAsLifeEldritchImplicit4"] = { type = "Exarch", affix = "", "(14-15)% of Damage taken Recouped as Life", statOrder = { 6000 }, level = 75, group = "DamageTakenGainedAsLife", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, }, + ["DamageTakenGainedAsLifeEldritchImplicit5"] = { type = "Exarch", affix = "", "(16-17)% of Damage taken Recouped as Life", statOrder = { 6000 }, level = 75, group = "DamageTakenGainedAsLife", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, }, + ["DamageTakenGainedAsLifeEldritchImplicit6"] = { type = "Exarch", affix = "", "(18-19)% of Damage taken Recouped as Life", statOrder = { 6000 }, level = 75, group = "DamageTakenGainedAsLife", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, }, + ["DamageTakenGainedAsLifeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (14-15)% of Damage taken Recouped as Life", statOrder = { 6000 }, level = 75, group = "DamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, }, + ["DamageTakenGainedAsLifeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (16-17)% of Damage taken Recouped as Life", statOrder = { 6000 }, level = 75, group = "DamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, }, + ["DamageTakenGainedAsLifeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (18-19)% of Damage taken Recouped as Life", statOrder = { 6000 }, level = 75, group = "DamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, }, + ["DamageTakenGainedAsLifeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (20-21)% of Damage taken Recouped as Life", statOrder = { 6000 }, level = 75, group = "DamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, }, + ["DamageTakenGainedAsLifeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (22-23)% of Damage taken Recouped as Life", statOrder = { 6000 }, level = 75, group = "DamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, }, + ["DamageTakenGainedAsLifeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (24-25)% of Damage taken Recouped as Life", statOrder = { 6000 }, level = 75, group = "DamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, }, + ["DamageTakenGainedAsLifeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% of Damage taken Recouped as Life", statOrder = { 6000 }, level = 75, group = "DamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, }, + ["DamageTakenGainedAsLifeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% of Damage taken Recouped as Life", statOrder = { 6000 }, level = 75, group = "DamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, }, + ["DamageTakenGainedAsLifeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% of Damage taken Recouped as Life", statOrder = { 6000 }, level = 75, group = "DamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, }, + ["DamageTakenGainedAsLifeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% of Damage taken Recouped as Life", statOrder = { 6000 }, level = 75, group = "DamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, }, + ["DamageTakenGainedAsLifeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% of Damage taken Recouped as Life", statOrder = { 6000 }, level = 75, group = "DamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, }, + ["DamageTakenGainedAsLifeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (30-31)% of Damage taken Recouped as Life", statOrder = { 6000 }, level = 75, group = "DamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, }, + ["FlaskGainPerSecondEldritchImplicit1"] = { type = "Exarch", affix = "", "Flasks gain a Charge every 3 seconds", statOrder = { 3386 }, level = 75, group = "FlaskGainPerSecond", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["FlaskGainPerSecondEldritchImplicit2"] = { type = "Exarch", affix = "", "Flasks gain a Charge every 3 seconds", statOrder = { 3386 }, level = 75, group = "FlaskGainPerSecond", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["FlaskGainPerSecondEldritchImplicit3"] = { type = "Exarch", affix = "", "Flasks gain a Charge every 3 seconds", statOrder = { 3386 }, level = 75, group = "FlaskGainPerSecond", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["FlaskGainPerSecondEldritchImplicit4"] = { type = "Exarch", affix = "", "Flasks gain a Charge every 3 seconds", statOrder = { 3386 }, level = 75, group = "FlaskGainPerSecond", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["FlaskGainPerSecondEldritchImplicit5"] = { type = "Exarch", affix = "", "Flasks gain 2 Charges every 3 seconds", statOrder = { 3386 }, level = 75, group = "FlaskGainPerSecond", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["FlaskGainPerSecondEldritchImplicit6"] = { type = "Exarch", affix = "", "Flasks gain 2 Charges every 3 seconds", statOrder = { 3386 }, level = 75, group = "FlaskGainPerSecond", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["FlaskGainPerSecondEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks gain 2 Charges every 3 seconds", statOrder = { 3386 }, level = 75, group = "FlaskGainPerSecondUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["FlaskGainPerSecondEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks gain 2 Charges every 3 seconds", statOrder = { 3386 }, level = 75, group = "FlaskGainPerSecondUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["FlaskGainPerSecondEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks gain 2 Charges every 3 seconds", statOrder = { 3386 }, level = 75, group = "FlaskGainPerSecondUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["FlaskGainPerSecondEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks gain 2 Charges every 3 seconds", statOrder = { 3386 }, level = 75, group = "FlaskGainPerSecondUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["FlaskGainPerSecondEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks gain 3 Charges every 3 seconds", statOrder = { 3386 }, level = 75, group = "FlaskGainPerSecondUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["FlaskGainPerSecondEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks gain 3 Charges every 3 seconds", statOrder = { 3386 }, level = 75, group = "FlaskGainPerSecondUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["FlaskGainPerSecondEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks gain 3 Charges every 3 seconds", statOrder = { 3386 }, level = 75, group = "FlaskGainPerSecondPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["FlaskGainPerSecondEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks gain 3 Charges every 3 seconds", statOrder = { 3386 }, level = 75, group = "FlaskGainPerSecondPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["FlaskGainPerSecondEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks gain 3 Charges every 3 seconds", statOrder = { 3386 }, level = 75, group = "FlaskGainPerSecondPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["FlaskGainPerSecondEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks gain 3 Charges every 3 seconds", statOrder = { 3386 }, level = 75, group = "FlaskGainPerSecondPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["FlaskGainPerSecondEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks gain 4 Charges every 3 seconds", statOrder = { 3386 }, level = 75, group = "FlaskGainPerSecondPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["FlaskGainPerSecondEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks gain 4 Charges every 3 seconds", statOrder = { 3386 }, level = 75, group = "FlaskGainPerSecondPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["MaximumResistancesEldritchImplicit1"] = { type = "Exarch", affix = "", "+1% to all maximum Resistances", statOrder = { 1553 }, level = 75, group = "MaximumResistances", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resistance" }, }, + ["MaximumResistancesEldritchImplicit2"] = { type = "Exarch", affix = "", "+1% to all maximum Resistances", statOrder = { 1553 }, level = 75, group = "MaximumResistances", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resistance" }, }, + ["MaximumResistancesEldritchImplicit3"] = { type = "Exarch", affix = "", "+1% to all maximum Resistances", statOrder = { 1553 }, level = 75, group = "MaximumResistances", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resistance" }, }, + ["MaximumResistancesEldritchImplicit4"] = { type = "Exarch", affix = "", "+1% to all maximum Resistances", statOrder = { 1553 }, level = 75, group = "MaximumResistances", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resistance" }, }, + ["MaximumResistancesEldritchImplicit5"] = { type = "Exarch", affix = "", "+2% to all maximum Resistances", statOrder = { 1553 }, level = 75, group = "MaximumResistances", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resistance" }, }, + ["MaximumResistancesEldritchImplicit6"] = { type = "Exarch", affix = "", "+2% to all maximum Resistances", statOrder = { 1553 }, level = 75, group = "MaximumResistances", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resistance" }, }, + ["MaximumResistancesEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to all maximum Resistances", statOrder = { 1553 }, level = 75, group = "MaximumResistancesUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resistance" }, }, + ["MaximumResistancesEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to all maximum Resistances", statOrder = { 1553 }, level = 75, group = "MaximumResistancesUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resistance" }, }, + ["MaximumResistancesEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to all maximum Resistances", statOrder = { 1553 }, level = 75, group = "MaximumResistancesUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resistance" }, }, + ["MaximumResistancesEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to all maximum Resistances", statOrder = { 1553 }, level = 75, group = "MaximumResistancesUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resistance" }, }, + ["MaximumResistancesEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to all maximum Resistances", statOrder = { 1553 }, level = 75, group = "MaximumResistancesUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resistance" }, }, + ["MaximumResistancesEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to all maximum Resistances", statOrder = { 1553 }, level = 75, group = "MaximumResistancesUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resistance" }, }, + ["MaximumResistancesEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to all maximum Resistances", statOrder = { 1553 }, level = 75, group = "MaximumResistancesPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resistance" }, }, + ["MaximumResistancesEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to all maximum Resistances", statOrder = { 1553 }, level = 75, group = "MaximumResistancesPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resistance" }, }, + ["MaximumResistancesEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to all maximum Resistances", statOrder = { 1553 }, level = 75, group = "MaximumResistancesPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 80, 80, 0 }, modTags = { "resistance" }, }, + ["MaximumResistancesEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to all maximum Resistances", statOrder = { 1553 }, level = 75, group = "MaximumResistancesPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 80, 80, 0 }, modTags = { "resistance" }, }, + ["MaximumResistancesEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to all maximum Resistances", statOrder = { 1553 }, level = 75, group = "MaximumResistancesPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 80, 80, 0 }, modTags = { "resistance" }, }, + ["MaximumResistancesEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to all maximum Resistances", statOrder = { 1553 }, level = 75, group = "MaximumResistancesPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 80, 80, 0 }, modTags = { "resistance" }, }, + ["MaximumFireResistanceEldritchEldritchImplicit1"] = { type = "Exarch", affix = "", "+1% to maximum Fire Resistance", statOrder = { 1534 }, level = 75, group = "MaximumFireResistanceEldritch", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["MaximumFireResistanceEldritchEldritchImplicit2"] = { type = "Exarch", affix = "", "+1% to maximum Fire Resistance", statOrder = { 1534 }, level = 75, group = "MaximumFireResistanceEldritch", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["MaximumFireResistanceEldritchEldritchImplicit3"] = { type = "Exarch", affix = "", "+2% to maximum Fire Resistance", statOrder = { 1534 }, level = 75, group = "MaximumFireResistanceEldritch", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["MaximumFireResistanceEldritchEldritchImplicit4"] = { type = "Exarch", affix = "", "+2% to maximum Fire Resistance", statOrder = { 1534 }, level = 75, group = "MaximumFireResistanceEldritch", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["MaximumFireResistanceEldritchEldritchImplicit5"] = { type = "Exarch", affix = "", "+3% to maximum Fire Resistance", statOrder = { 1534 }, level = 75, group = "MaximumFireResistanceEldritch", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["MaximumFireResistanceEldritchEldritchImplicit6"] = { type = "Exarch", affix = "", "+3% to maximum Fire Resistance", statOrder = { 1534 }, level = 75, group = "MaximumFireResistanceEldritch", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["MaximumFireResistanceEldritchEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Fire Resistance", statOrder = { 1534 }, level = 75, group = "MaximumFireResistanceEldritchUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["MaximumFireResistanceEldritchEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Fire Resistance", statOrder = { 1534 }, level = 75, group = "MaximumFireResistanceEldritchUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["MaximumFireResistanceEldritchEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1534 }, level = 75, group = "MaximumFireResistanceEldritchUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["MaximumFireResistanceEldritchEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1534 }, level = 75, group = "MaximumFireResistanceEldritchUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["MaximumFireResistanceEldritchEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +4% to maximum Fire Resistance", statOrder = { 1534 }, level = 75, group = "MaximumFireResistanceEldritchUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["MaximumFireResistanceEldritchEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +4% to maximum Fire Resistance", statOrder = { 1534 }, level = 75, group = "MaximumFireResistanceEldritchUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["MaximumFireResistanceEldritchEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1534 }, level = 75, group = "MaximumFireResistanceEldritchPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["MaximumFireResistanceEldritchEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1534 }, level = 75, group = "MaximumFireResistanceEldritchPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["MaximumFireResistanceEldritchEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Fire Resistance", statOrder = { 1534 }, level = 75, group = "MaximumFireResistanceEldritchPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["MaximumFireResistanceEldritchEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Fire Resistance", statOrder = { 1534 }, level = 75, group = "MaximumFireResistanceEldritchPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["MaximumFireResistanceEldritchEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +5% to maximum Fire Resistance", statOrder = { 1534 }, level = 75, group = "MaximumFireResistanceEldritchPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["MaximumFireResistanceEldritchEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +5% to maximum Fire Resistance", statOrder = { 1534 }, level = 75, group = "MaximumFireResistanceEldritchPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["MaximumColdResistanceEldritchEldritchImplicit1"] = { type = "Exarch", affix = "", "+1% to maximum Cold Resistance", statOrder = { 1540 }, level = 75, group = "MaximumColdResistanceEldritch", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["MaximumColdResistanceEldritchEldritchImplicit2"] = { type = "Exarch", affix = "", "+1% to maximum Cold Resistance", statOrder = { 1540 }, level = 75, group = "MaximumColdResistanceEldritch", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["MaximumColdResistanceEldritchEldritchImplicit3"] = { type = "Exarch", affix = "", "+2% to maximum Cold Resistance", statOrder = { 1540 }, level = 75, group = "MaximumColdResistanceEldritch", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["MaximumColdResistanceEldritchEldritchImplicit4"] = { type = "Exarch", affix = "", "+2% to maximum Cold Resistance", statOrder = { 1540 }, level = 75, group = "MaximumColdResistanceEldritch", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["MaximumColdResistanceEldritchEldritchImplicit5"] = { type = "Exarch", affix = "", "+3% to maximum Cold Resistance", statOrder = { 1540 }, level = 75, group = "MaximumColdResistanceEldritch", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["MaximumColdResistanceEldritchEldritchImplicit6"] = { type = "Exarch", affix = "", "+3% to maximum Cold Resistance", statOrder = { 1540 }, level = 75, group = "MaximumColdResistanceEldritch", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["MaximumColdResistanceEldritchEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Cold Resistance", statOrder = { 1540 }, level = 75, group = "MaximumColdResistanceEldritchUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["MaximumColdResistanceEldritchEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Cold Resistance", statOrder = { 1540 }, level = 75, group = "MaximumColdResistanceEldritchUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["MaximumColdResistanceEldritchEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1540 }, level = 75, group = "MaximumColdResistanceEldritchUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["MaximumColdResistanceEldritchEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1540 }, level = 75, group = "MaximumColdResistanceEldritchUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["MaximumColdResistanceEldritchEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +4% to maximum Cold Resistance", statOrder = { 1540 }, level = 75, group = "MaximumColdResistanceEldritchUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["MaximumColdResistanceEldritchEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +4% to maximum Cold Resistance", statOrder = { 1540 }, level = 75, group = "MaximumColdResistanceEldritchUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["MaximumColdResistanceEldritchEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1540 }, level = 75, group = "MaximumColdResistanceEldritchPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["MaximumColdResistanceEldritchEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1540 }, level = 75, group = "MaximumColdResistanceEldritchPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["MaximumColdResistanceEldritchEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Cold Resistance", statOrder = { 1540 }, level = 75, group = "MaximumColdResistanceEldritchPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["MaximumColdResistanceEldritchEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Cold Resistance", statOrder = { 1540 }, level = 75, group = "MaximumColdResistanceEldritchPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["MaximumColdResistanceEldritchEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +5% to maximum Cold Resistance", statOrder = { 1540 }, level = 75, group = "MaximumColdResistanceEldritchPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["MaximumColdResistanceEldritchEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +5% to maximum Cold Resistance", statOrder = { 1540 }, level = 75, group = "MaximumColdResistanceEldritchPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["MaximumLightningResistanceEldritchEldritchImplicit1"] = { type = "Exarch", affix = "", "+1% to maximum Lightning Resistance", statOrder = { 1545 }, level = 75, group = "MaximumLightningResistanceEldritch", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["MaximumLightningResistanceEldritchEldritchImplicit2"] = { type = "Exarch", affix = "", "+1% to maximum Lightning Resistance", statOrder = { 1545 }, level = 75, group = "MaximumLightningResistanceEldritch", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["MaximumLightningResistanceEldritchEldritchImplicit3"] = { type = "Exarch", affix = "", "+2% to maximum Lightning Resistance", statOrder = { 1545 }, level = 75, group = "MaximumLightningResistanceEldritch", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["MaximumLightningResistanceEldritchEldritchImplicit4"] = { type = "Exarch", affix = "", "+2% to maximum Lightning Resistance", statOrder = { 1545 }, level = 75, group = "MaximumLightningResistanceEldritch", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["MaximumLightningResistanceEldritchEldritchImplicit5"] = { type = "Exarch", affix = "", "+3% to maximum Lightning Resistance", statOrder = { 1545 }, level = 75, group = "MaximumLightningResistanceEldritch", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["MaximumLightningResistanceEldritchEldritchImplicit6"] = { type = "Exarch", affix = "", "+3% to maximum Lightning Resistance", statOrder = { 1545 }, level = 75, group = "MaximumLightningResistanceEldritch", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["MaximumLightningResistanceEldritchEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Lightning Resistance", statOrder = { 1545 }, level = 75, group = "MaximumLightningResistanceEldritchUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["MaximumLightningResistanceEldritchEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Lightning Resistance", statOrder = { 1545 }, level = 75, group = "MaximumLightningResistanceEldritchUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["MaximumLightningResistanceEldritchEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1545 }, level = 75, group = "MaximumLightningResistanceEldritchUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["MaximumLightningResistanceEldritchEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1545 }, level = 75, group = "MaximumLightningResistanceEldritchUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["MaximumLightningResistanceEldritchEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +4% to maximum Lightning Resistance", statOrder = { 1545 }, level = 75, group = "MaximumLightningResistanceEldritchUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["MaximumLightningResistanceEldritchEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +4% to maximum Lightning Resistance", statOrder = { 1545 }, level = 75, group = "MaximumLightningResistanceEldritchUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["MaximumLightningResistanceEldritchEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1545 }, level = 75, group = "MaximumLightningResistanceEldritchPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["MaximumLightningResistanceEldritchEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1545 }, level = 75, group = "MaximumLightningResistanceEldritchPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["MaximumLightningResistanceEldritchEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Lightning Resistance", statOrder = { 1545 }, level = 75, group = "MaximumLightningResistanceEldritchPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["MaximumLightningResistanceEldritchEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Lightning Resistance", statOrder = { 1545 }, level = 75, group = "MaximumLightningResistanceEldritchPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["MaximumLightningResistanceEldritchEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +5% to maximum Lightning Resistance", statOrder = { 1545 }, level = 75, group = "MaximumLightningResistanceEldritchPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["MaximumLightningResistanceEldritchEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +5% to maximum Lightning Resistance", statOrder = { 1545 }, level = 75, group = "MaximumLightningResistanceEldritchPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["MaximumChaosResistanceImplicitEldritchImplicit1"] = { type = "Exarch", affix = "", "+1% to maximum Chaos Resistance", statOrder = { 1551 }, level = 75, group = "MaximumChaosResistanceImplicit", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos", "resistance" }, }, + ["MaximumChaosResistanceImplicitEldritchImplicit2"] = { type = "Exarch", affix = "", "+1% to maximum Chaos Resistance", statOrder = { 1551 }, level = 75, group = "MaximumChaosResistanceImplicit", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos", "resistance" }, }, + ["MaximumChaosResistanceImplicitEldritchImplicit3"] = { type = "Exarch", affix = "", "+2% to maximum Chaos Resistance", statOrder = { 1551 }, level = 75, group = "MaximumChaosResistanceImplicit", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos", "resistance" }, }, + ["MaximumChaosResistanceImplicitEldritchImplicit4"] = { type = "Exarch", affix = "", "+2% to maximum Chaos Resistance", statOrder = { 1551 }, level = 75, group = "MaximumChaosResistanceImplicit", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos", "resistance" }, }, + ["MaximumChaosResistanceImplicitEldritchImplicit5"] = { type = "Exarch", affix = "", "+3% to maximum Chaos Resistance", statOrder = { 1551 }, level = 75, group = "MaximumChaosResistanceImplicit", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos", "resistance" }, }, + ["MaximumChaosResistanceImplicitEldritchImplicit6"] = { type = "Exarch", affix = "", "+3% to maximum Chaos Resistance", statOrder = { 1551 }, level = 75, group = "MaximumChaosResistanceImplicit", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos", "resistance" }, }, + ["MaximumChaosResistanceImplicitEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Chaos Resistance", statOrder = { 1551 }, level = 75, group = "MaximumChaosResistanceImplicitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos", "resistance" }, }, + ["MaximumChaosResistanceImplicitEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Chaos Resistance", statOrder = { 1551 }, level = 75, group = "MaximumChaosResistanceImplicitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "chaos", "resistance" }, }, + ["MaximumChaosResistanceImplicitEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Chaos Resistance", statOrder = { 1551 }, level = 75, group = "MaximumChaosResistanceImplicitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "chaos", "resistance" }, }, + ["MaximumChaosResistanceImplicitEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Chaos Resistance", statOrder = { 1551 }, level = 75, group = "MaximumChaosResistanceImplicitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "chaos", "resistance" }, }, + ["MaximumChaosResistanceImplicitEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +4% to maximum Chaos Resistance", statOrder = { 1551 }, level = 75, group = "MaximumChaosResistanceImplicitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "chaos", "resistance" }, }, + ["MaximumChaosResistanceImplicitEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +4% to maximum Chaos Resistance", statOrder = { 1551 }, level = 75, group = "MaximumChaosResistanceImplicitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "chaos", "resistance" }, }, + ["MaximumChaosResistanceImplicitEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Chaos Resistance", statOrder = { 1551 }, level = 75, group = "MaximumChaosResistanceImplicitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos", "resistance" }, }, + ["MaximumChaosResistanceImplicitEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Chaos Resistance", statOrder = { 1551 }, level = 75, group = "MaximumChaosResistanceImplicitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos", "resistance" }, }, + ["MaximumChaosResistanceImplicitEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Chaos Resistance", statOrder = { 1551 }, level = 75, group = "MaximumChaosResistanceImplicitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "chaos", "resistance" }, }, + ["MaximumChaosResistanceImplicitEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Chaos Resistance", statOrder = { 1551 }, level = 75, group = "MaximumChaosResistanceImplicitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "chaos", "resistance" }, }, + ["MaximumChaosResistanceImplicitEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +5% to maximum Chaos Resistance", statOrder = { 1551 }, level = 75, group = "MaximumChaosResistanceImplicitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "chaos", "resistance" }, }, + ["MaximumChaosResistanceImplicitEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +5% to maximum Chaos Resistance", statOrder = { 1551 }, level = 75, group = "MaximumChaosResistanceImplicitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "chaos", "resistance" }, }, + ["EnduranceChargePerSecondEldritchImplicit1"] = { type = "Exarch", affix = "", "Gain an Endurance Charge every 15 seconds", statOrder = { 5141 }, level = 75, group = "EnduranceChargePerSecond", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["EnduranceChargePerSecondEldritchImplicit2"] = { type = "Exarch", affix = "", "Gain an Endurance Charge every 14 seconds", statOrder = { 5141 }, level = 75, group = "EnduranceChargePerSecond", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["EnduranceChargePerSecondEldritchImplicit3"] = { type = "Exarch", affix = "", "Gain an Endurance Charge every 13 seconds", statOrder = { 5141 }, level = 75, group = "EnduranceChargePerSecond", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["EnduranceChargePerSecondEldritchImplicit4"] = { type = "Exarch", affix = "", "Gain an Endurance Charge every 12 seconds", statOrder = { 5141 }, level = 75, group = "EnduranceChargePerSecond", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["EnduranceChargePerSecondEldritchImplicit5"] = { type = "Exarch", affix = "", "Gain an Endurance Charge every 11 seconds", statOrder = { 5141 }, level = 75, group = "EnduranceChargePerSecond", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["EnduranceChargePerSecondEldritchImplicit6"] = { type = "Exarch", affix = "", "Gain an Endurance Charge every 10 seconds", statOrder = { 5141 }, level = 75, group = "EnduranceChargePerSecond", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["EnduranceChargePerSecondEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain an Endurance Charge every 11 seconds", statOrder = { 5141 }, level = 75, group = "EnduranceChargePerSecondUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["EnduranceChargePerSecondEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain an Endurance Charge every 10 seconds", statOrder = { 5141 }, level = 75, group = "EnduranceChargePerSecondUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["EnduranceChargePerSecondEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain an Endurance Charge every 9 seconds", statOrder = { 5141 }, level = 75, group = "EnduranceChargePerSecondUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["EnduranceChargePerSecondEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain an Endurance Charge every 8 seconds", statOrder = { 5141 }, level = 75, group = "EnduranceChargePerSecondUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["EnduranceChargePerSecondEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain an Endurance Charge every 7 seconds", statOrder = { 5141 }, level = 75, group = "EnduranceChargePerSecondUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["EnduranceChargePerSecondEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain an Endurance Charge every 6 seconds", statOrder = { 5141 }, level = 75, group = "EnduranceChargePerSecondUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["EnduranceChargePerSecondEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain an Endurance Charge every 7 seconds", statOrder = { 5141 }, level = 75, group = "EnduranceChargePerSecondPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["EnduranceChargePerSecondEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain an Endurance Charge every 6 seconds", statOrder = { 5141 }, level = 75, group = "EnduranceChargePerSecondPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["EnduranceChargePerSecondEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain an Endurance Charge every 5 seconds", statOrder = { 5141 }, level = 75, group = "EnduranceChargePerSecondPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["EnduranceChargePerSecondEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain an Endurance Charge every 4 seconds", statOrder = { 5141 }, level = 75, group = "EnduranceChargePerSecondPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["EnduranceChargePerSecondEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain an Endurance Charge every 3 seconds", statOrder = { 5141 }, level = 75, group = "EnduranceChargePerSecondPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["EnduranceChargePerSecondEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain an Endurance Charge every 2 seconds", statOrder = { 5141 }, level = 75, group = "EnduranceChargePerSecondPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["FrenzyChargePerSecondEldritchImplicit1"] = { type = "Exarch", affix = "", "Gain a Frenzy Charge every 15 seconds", statOrder = { 5142 }, level = 75, group = "FrenzyChargePerSecond", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["FrenzyChargePerSecondEldritchImplicit2"] = { type = "Exarch", affix = "", "Gain a Frenzy Charge every 14 seconds", statOrder = { 5142 }, level = 75, group = "FrenzyChargePerSecond", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["FrenzyChargePerSecondEldritchImplicit3"] = { type = "Exarch", affix = "", "Gain a Frenzy Charge every 13 seconds", statOrder = { 5142 }, level = 75, group = "FrenzyChargePerSecond", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["FrenzyChargePerSecondEldritchImplicit4"] = { type = "Exarch", affix = "", "Gain a Frenzy Charge every 12 seconds", statOrder = { 5142 }, level = 75, group = "FrenzyChargePerSecond", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["FrenzyChargePerSecondEldritchImplicit5"] = { type = "Exarch", affix = "", "Gain a Frenzy Charge every 11 seconds", statOrder = { 5142 }, level = 75, group = "FrenzyChargePerSecond", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["FrenzyChargePerSecondEldritchImplicit6"] = { type = "Exarch", affix = "", "Gain a Frenzy Charge every 10 seconds", statOrder = { 5142 }, level = 75, group = "FrenzyChargePerSecond", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["FrenzyChargePerSecondEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Frenzy Charge every 11 seconds", statOrder = { 5142 }, level = 75, group = "FrenzyChargePerSecondUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["FrenzyChargePerSecondEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Frenzy Charge every 10 seconds", statOrder = { 5142 }, level = 75, group = "FrenzyChargePerSecondUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["FrenzyChargePerSecondEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Frenzy Charge every 9 seconds", statOrder = { 5142 }, level = 75, group = "FrenzyChargePerSecondUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["FrenzyChargePerSecondEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Frenzy Charge every 8 seconds", statOrder = { 5142 }, level = 75, group = "FrenzyChargePerSecondUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["FrenzyChargePerSecondEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Frenzy Charge every 7 seconds", statOrder = { 5142 }, level = 75, group = "FrenzyChargePerSecondUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["FrenzyChargePerSecondEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Frenzy Charge every 6 seconds", statOrder = { 5142 }, level = 75, group = "FrenzyChargePerSecondUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["FrenzyChargePerSecondEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Frenzy Charge every 7 seconds", statOrder = { 5142 }, level = 75, group = "FrenzyChargePerSecondPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["FrenzyChargePerSecondEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Frenzy Charge every 6 seconds", statOrder = { 5142 }, level = 75, group = "FrenzyChargePerSecondPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["FrenzyChargePerSecondEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Frenzy Charge every 5 seconds", statOrder = { 5142 }, level = 75, group = "FrenzyChargePerSecondPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["FrenzyChargePerSecondEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Frenzy Charge every 4 seconds", statOrder = { 5142 }, level = 75, group = "FrenzyChargePerSecondPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["FrenzyChargePerSecondEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Frenzy Charge every 3 seconds", statOrder = { 5142 }, level = 75, group = "FrenzyChargePerSecondPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["FrenzyChargePerSecondEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Frenzy Charge every 2 seconds", statOrder = { 5142 }, level = 75, group = "FrenzyChargePerSecondPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["PowerChargePerSecondEldritchImplicit1"] = { type = "Exarch", affix = "", "Gain a Power Charge every 15 seconds", statOrder = { 5143 }, level = 75, group = "PowerChargePerSecond", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["PowerChargePerSecondEldritchImplicit2"] = { type = "Exarch", affix = "", "Gain a Power Charge every 14 seconds", statOrder = { 5143 }, level = 75, group = "PowerChargePerSecond", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["PowerChargePerSecondEldritchImplicit3"] = { type = "Exarch", affix = "", "Gain a Power Charge every 13 seconds", statOrder = { 5143 }, level = 75, group = "PowerChargePerSecond", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["PowerChargePerSecondEldritchImplicit4"] = { type = "Exarch", affix = "", "Gain a Power Charge every 12 seconds", statOrder = { 5143 }, level = 75, group = "PowerChargePerSecond", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["PowerChargePerSecondEldritchImplicit5"] = { type = "Exarch", affix = "", "Gain a Power Charge every 11 seconds", statOrder = { 5143 }, level = 75, group = "PowerChargePerSecond", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["PowerChargePerSecondEldritchImplicit6"] = { type = "Exarch", affix = "", "Gain a Power Charge every 10 seconds", statOrder = { 5143 }, level = 75, group = "PowerChargePerSecond", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["PowerChargePerSecondEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Power Charge every 11 seconds", statOrder = { 5143 }, level = 75, group = "PowerChargePerSecondUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["PowerChargePerSecondEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Power Charge every 10 seconds", statOrder = { 5143 }, level = 75, group = "PowerChargePerSecondUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["PowerChargePerSecondEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Power Charge every 9 seconds", statOrder = { 5143 }, level = 75, group = "PowerChargePerSecondUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["PowerChargePerSecondEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Power Charge every 8 seconds", statOrder = { 5143 }, level = 75, group = "PowerChargePerSecondUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["PowerChargePerSecondEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Power Charge every 7 seconds", statOrder = { 5143 }, level = 75, group = "PowerChargePerSecondUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["PowerChargePerSecondEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Power Charge every 6 seconds", statOrder = { 5143 }, level = 75, group = "PowerChargePerSecondUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["PowerChargePerSecondEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Power Charge every 7 seconds", statOrder = { 5143 }, level = 75, group = "PowerChargePerSecondPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["PowerChargePerSecondEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Power Charge every 6 seconds", statOrder = { 5143 }, level = 75, group = "PowerChargePerSecondPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["PowerChargePerSecondEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Power Charge every 5 seconds", statOrder = { 5143 }, level = 75, group = "PowerChargePerSecondPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["PowerChargePerSecondEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Power Charge every 4 seconds", statOrder = { 5143 }, level = 75, group = "PowerChargePerSecondPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["PowerChargePerSecondEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Power Charge every 3 seconds", statOrder = { 5143 }, level = 75, group = "PowerChargePerSecondPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["PowerChargePerSecondEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Power Charge every 2 seconds", statOrder = { 5143 }, level = 75, group = "PowerChargePerSecondPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["BlockPercentEldritchImplicit1"] = { type = "Eater", affix = "", "5% Chance to Block Attack Damage", statOrder = { 1051 }, level = 75, group = "BlockPercent", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, }, + ["BlockPercentEldritchImplicit2"] = { type = "Eater", affix = "", "6% Chance to Block Attack Damage", statOrder = { 1051 }, level = 75, group = "BlockPercent", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, }, + ["BlockPercentEldritchImplicit3"] = { type = "Eater", affix = "", "7% Chance to Block Attack Damage", statOrder = { 1051 }, level = 75, group = "BlockPercent", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, }, + ["BlockPercentEldritchImplicit4"] = { type = "Eater", affix = "", "8% Chance to Block Attack Damage", statOrder = { 1051 }, level = 75, group = "BlockPercent", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, }, + ["BlockPercentEldritchImplicit5"] = { type = "Eater", affix = "", "9% Chance to Block Attack Damage", statOrder = { 1051 }, level = 75, group = "BlockPercent", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, }, + ["BlockPercentEldritchImplicit6"] = { type = "Eater", affix = "", "10% Chance to Block Attack Damage", statOrder = { 1051 }, level = 75, group = "BlockPercent", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, }, + ["BlockPercentEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 7% Chance to Block Attack Damage", statOrder = { 1051 }, level = 75, group = "BlockPercentUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["BlockPercentEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% Chance to Block Attack Damage", statOrder = { 1051 }, level = 75, group = "BlockPercentUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, }, + ["BlockPercentEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% Chance to Block Attack Damage", statOrder = { 1051 }, level = 75, group = "BlockPercentUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, }, + ["BlockPercentEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% Chance to Block Attack Damage", statOrder = { 1051 }, level = 75, group = "BlockPercentUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, }, + ["BlockPercentEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 11% Chance to Block Attack Damage", statOrder = { 1051 }, level = 75, group = "BlockPercentUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, }, + ["BlockPercentEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 12% Chance to Block Attack Damage", statOrder = { 1051 }, level = 75, group = "BlockPercentUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, }, + ["BlockPercentEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 9% Chance to Block Attack Damage", statOrder = { 1051 }, level = 75, group = "BlockPercentPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["BlockPercentEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% Chance to Block Attack Damage", statOrder = { 1051 }, level = 75, group = "BlockPercentPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["BlockPercentEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% Chance to Block Attack Damage", statOrder = { 1051 }, level = 75, group = "BlockPercentPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { }, }, + ["BlockPercentEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% Chance to Block Attack Damage", statOrder = { 1051 }, level = 75, group = "BlockPercentPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { }, }, + ["BlockPercentEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% Chance to Block Attack Damage", statOrder = { 1051 }, level = 75, group = "BlockPercentPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { }, }, + ["BlockPercentEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% Chance to Block Attack Damage", statOrder = { 1051 }, level = 75, group = "BlockPercentPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { }, }, + ["SpellBlockPercentageEldritchImplicit1"] = { type = "Eater", affix = "", "5% Chance to Block Spell Damage", statOrder = { 1072 }, level = 75, group = "SpellBlockPercentage", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, }, + ["SpellBlockPercentageEldritchImplicit2"] = { type = "Eater", affix = "", "6% Chance to Block Spell Damage", statOrder = { 1072 }, level = 75, group = "SpellBlockPercentage", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, }, + ["SpellBlockPercentageEldritchImplicit3"] = { type = "Eater", affix = "", "7% Chance to Block Spell Damage", statOrder = { 1072 }, level = 75, group = "SpellBlockPercentage", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, }, + ["SpellBlockPercentageEldritchImplicit4"] = { type = "Eater", affix = "", "8% Chance to Block Spell Damage", statOrder = { 1072 }, level = 75, group = "SpellBlockPercentage", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, }, + ["SpellBlockPercentageEldritchImplicit5"] = { type = "Eater", affix = "", "9% Chance to Block Spell Damage", statOrder = { 1072 }, level = 75, group = "SpellBlockPercentage", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, }, + ["SpellBlockPercentageEldritchImplicit6"] = { type = "Eater", affix = "", "10% Chance to Block Spell Damage", statOrder = { 1072 }, level = 75, group = "SpellBlockPercentage", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, }, + ["SpellBlockPercentageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 7% Chance to Block Spell Damage", statOrder = { 1072 }, level = 75, group = "SpellBlockPercentageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["SpellBlockPercentageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% Chance to Block Spell Damage", statOrder = { 1072 }, level = 75, group = "SpellBlockPercentageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, }, + ["SpellBlockPercentageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% Chance to Block Spell Damage", statOrder = { 1072 }, level = 75, group = "SpellBlockPercentageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, }, + ["SpellBlockPercentageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% Chance to Block Spell Damage", statOrder = { 1072 }, level = 75, group = "SpellBlockPercentageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, }, + ["SpellBlockPercentageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 11% Chance to Block Spell Damage", statOrder = { 1072 }, level = 75, group = "SpellBlockPercentageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, }, + ["SpellBlockPercentageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 12% Chance to Block Spell Damage", statOrder = { 1072 }, level = 75, group = "SpellBlockPercentageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, }, + ["SpellBlockPercentageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 9% Chance to Block Spell Damage", statOrder = { 1072 }, level = 75, group = "SpellBlockPercentagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["SpellBlockPercentageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% Chance to Block Spell Damage", statOrder = { 1072 }, level = 75, group = "SpellBlockPercentagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["SpellBlockPercentageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% Chance to Block Spell Damage", statOrder = { 1072 }, level = 75, group = "SpellBlockPercentagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { }, }, + ["SpellBlockPercentageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% Chance to Block Spell Damage", statOrder = { 1072 }, level = 75, group = "SpellBlockPercentagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { }, }, + ["SpellBlockPercentageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% Chance to Block Spell Damage", statOrder = { 1072 }, level = 75, group = "SpellBlockPercentagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { }, }, + ["SpellBlockPercentageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% Chance to Block Spell Damage", statOrder = { 1072 }, level = 75, group = "SpellBlockPercentagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { }, }, + ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicit1"] = { type = "Eater", affix = "", "(17-18)% increased Armour", statOrder = { 1452 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "armour" }, }, + ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicit2"] = { type = "Eater", affix = "", "(19-20)% increased Armour", statOrder = { 1452 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "armour" }, }, + ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicit3"] = { type = "Eater", affix = "", "(21-22)% increased Armour", statOrder = { 1452 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "armour" }, }, + ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicit4"] = { type = "Eater", affix = "", "(23-24)% increased Armour", statOrder = { 1452 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "armour" }, }, + ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicit5"] = { type = "Eater", affix = "", "(25-26)% increased Armour", statOrder = { 1452 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "armour" }, }, + ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicit6"] = { type = "Eater", affix = "", "(27-28)% increased Armour", statOrder = { 1452 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "armour" }, }, + ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (23-24)% increased Armour", statOrder = { 1452 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour" }, }, + ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (25-26)% increased Armour", statOrder = { 1452 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "armour" }, }, + ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (27-28)% increased Armour", statOrder = { 1452 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "armour" }, }, + ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (29-30)% increased Armour", statOrder = { 1452 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "armour" }, }, + ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (31-32)% increased Armour", statOrder = { 1452 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "armour" }, }, + ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (33-34)% increased Armour", statOrder = { 1452 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "armour" }, }, + ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% increased Armour", statOrder = { 1452 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour" }, }, + ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (31-32)% increased Armour", statOrder = { 1452 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour" }, }, + ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-34)% increased Armour", statOrder = { 1452 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "armour" }, }, + ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (35-36)% increased Armour", statOrder = { 1452 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "armour" }, }, + ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (37-38)% increased Armour", statOrder = { 1452 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "armour" }, }, + ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-40)% increased Armour", statOrder = { 1452 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "armour" }, }, + ["GlobalEvasionRatingPercentEldritchImplicit1"] = { type = "Eater", affix = "", "(17-18)% increased Evasion Rating", statOrder = { 1460 }, level = 75, group = "GlobalEvasionRatingPercent", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "evasion" }, }, + ["GlobalEvasionRatingPercentEldritchImplicit2"] = { type = "Eater", affix = "", "(19-20)% increased Evasion Rating", statOrder = { 1460 }, level = 75, group = "GlobalEvasionRatingPercent", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "evasion" }, }, + ["GlobalEvasionRatingPercentEldritchImplicit3"] = { type = "Eater", affix = "", "(21-22)% increased Evasion Rating", statOrder = { 1460 }, level = 75, group = "GlobalEvasionRatingPercent", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "evasion" }, }, + ["GlobalEvasionRatingPercentEldritchImplicit4"] = { type = "Eater", affix = "", "(23-24)% increased Evasion Rating", statOrder = { 1460 }, level = 75, group = "GlobalEvasionRatingPercent", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "evasion" }, }, + ["GlobalEvasionRatingPercentEldritchImplicit5"] = { type = "Eater", affix = "", "(25-26)% increased Evasion Rating", statOrder = { 1460 }, level = 75, group = "GlobalEvasionRatingPercent", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "evasion" }, }, + ["GlobalEvasionRatingPercentEldritchImplicit6"] = { type = "Eater", affix = "", "(27-28)% increased Evasion Rating", statOrder = { 1460 }, level = 75, group = "GlobalEvasionRatingPercent", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "evasion" }, }, + ["GlobalEvasionRatingPercentEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (23-24)% increased Evasion Rating", statOrder = { 1460 }, level = 75, group = "GlobalEvasionRatingPercentUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "evasion" }, }, + ["GlobalEvasionRatingPercentEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (25-26)% increased Evasion Rating", statOrder = { 1460 }, level = 75, group = "GlobalEvasionRatingPercentUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "evasion" }, }, + ["GlobalEvasionRatingPercentEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (27-28)% increased Evasion Rating", statOrder = { 1460 }, level = 75, group = "GlobalEvasionRatingPercentUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "evasion" }, }, + ["GlobalEvasionRatingPercentEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (29-30)% increased Evasion Rating", statOrder = { 1460 }, level = 75, group = "GlobalEvasionRatingPercentUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "evasion" }, }, + ["GlobalEvasionRatingPercentEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (31-32)% increased Evasion Rating", statOrder = { 1460 }, level = 75, group = "GlobalEvasionRatingPercentUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "evasion" }, }, + ["GlobalEvasionRatingPercentEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (33-34)% increased Evasion Rating", statOrder = { 1460 }, level = 75, group = "GlobalEvasionRatingPercentUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "evasion" }, }, + ["GlobalEvasionRatingPercentEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% increased Evasion Rating", statOrder = { 1460 }, level = 75, group = "GlobalEvasionRatingPercentPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "evasion" }, }, + ["GlobalEvasionRatingPercentEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (31-32)% increased Evasion Rating", statOrder = { 1460 }, level = 75, group = "GlobalEvasionRatingPercentPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "evasion" }, }, + ["GlobalEvasionRatingPercentEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-34)% increased Evasion Rating", statOrder = { 1460 }, level = 75, group = "GlobalEvasionRatingPercentPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "evasion" }, }, + ["GlobalEvasionRatingPercentEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (35-36)% increased Evasion Rating", statOrder = { 1460 }, level = 75, group = "GlobalEvasionRatingPercentPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "evasion" }, }, + ["GlobalEvasionRatingPercentEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (37-38)% increased Evasion Rating", statOrder = { 1460 }, level = 75, group = "GlobalEvasionRatingPercentPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "evasion" }, }, + ["GlobalEvasionRatingPercentEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-40)% increased Evasion Rating", statOrder = { 1460 }, level = 75, group = "GlobalEvasionRatingPercentPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "evasion" }, }, + ["GlobalEnergyShieldPercentEldritchImplicit1"] = { type = "Eater", affix = "", "(6-7)% increased maximum Energy Shield", statOrder = { 1472 }, level = 75, group = "GlobalEnergyShieldPercent", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["GlobalEnergyShieldPercentEldritchImplicit2"] = { type = "Eater", affix = "", "(8-9)% increased maximum Energy Shield", statOrder = { 1472 }, level = 75, group = "GlobalEnergyShieldPercent", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["GlobalEnergyShieldPercentEldritchImplicit3"] = { type = "Eater", affix = "", "(10-11)% increased maximum Energy Shield", statOrder = { 1472 }, level = 75, group = "GlobalEnergyShieldPercent", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["GlobalEnergyShieldPercentEldritchImplicit4"] = { type = "Eater", affix = "", "(12-13)% increased maximum Energy Shield", statOrder = { 1472 }, level = 75, group = "GlobalEnergyShieldPercent", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["GlobalEnergyShieldPercentEldritchImplicit5"] = { type = "Eater", affix = "", "(14-15)% increased maximum Energy Shield", statOrder = { 1472 }, level = 75, group = "GlobalEnergyShieldPercent", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["GlobalEnergyShieldPercentEldritchImplicit6"] = { type = "Eater", affix = "", "(16-17)% increased maximum Energy Shield", statOrder = { 1472 }, level = 75, group = "GlobalEnergyShieldPercent", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["GlobalEnergyShieldPercentEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (12-13)% increased maximum Energy Shield", statOrder = { 1472 }, level = 75, group = "GlobalEnergyShieldPercentUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, }, + ["GlobalEnergyShieldPercentEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (14-15)% increased maximum Energy Shield", statOrder = { 1472 }, level = 75, group = "GlobalEnergyShieldPercentUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, }, + ["GlobalEnergyShieldPercentEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (16-17)% increased maximum Energy Shield", statOrder = { 1472 }, level = 75, group = "GlobalEnergyShieldPercentUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, }, + ["GlobalEnergyShieldPercentEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (18-19)% increased maximum Energy Shield", statOrder = { 1472 }, level = 75, group = "GlobalEnergyShieldPercentUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, }, + ["GlobalEnergyShieldPercentEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (20-21)% increased maximum Energy Shield", statOrder = { 1472 }, level = 75, group = "GlobalEnergyShieldPercentUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, }, + ["GlobalEnergyShieldPercentEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (22-23)% increased maximum Energy Shield", statOrder = { 1472 }, level = 75, group = "GlobalEnergyShieldPercentUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, }, + ["GlobalEnergyShieldPercentEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (18-19)% increased maximum Energy Shield", statOrder = { 1472 }, level = 75, group = "GlobalEnergyShieldPercentPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, }, + ["GlobalEnergyShieldPercentEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% increased maximum Energy Shield", statOrder = { 1472 }, level = 75, group = "GlobalEnergyShieldPercentPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, }, + ["GlobalEnergyShieldPercentEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% increased maximum Energy Shield", statOrder = { 1472 }, level = 75, group = "GlobalEnergyShieldPercentPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "energy_shield" }, }, + ["GlobalEnergyShieldPercentEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% increased maximum Energy Shield", statOrder = { 1472 }, level = 75, group = "GlobalEnergyShieldPercentPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "energy_shield" }, }, + ["GlobalEnergyShieldPercentEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% increased maximum Energy Shield", statOrder = { 1472 }, level = 75, group = "GlobalEnergyShieldPercentPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "energy_shield" }, }, + ["GlobalEnergyShieldPercentEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% increased maximum Energy Shield", statOrder = { 1472 }, level = 75, group = "GlobalEnergyShieldPercentPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "energy_shield" }, }, + ["PlayerReflectedDamageEldritchImplicit1"] = { type = "Eater", affix = "", "45% reduced Reflected Damage taken", statOrder = { 4176 }, level = 75, group = "PlayerReflectedDamage", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["PlayerReflectedDamageEldritchImplicit2"] = { type = "Eater", affix = "", "50% reduced Reflected Damage taken", statOrder = { 4176 }, level = 75, group = "PlayerReflectedDamage", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["PlayerReflectedDamageEldritchImplicit3"] = { type = "Eater", affix = "", "55% reduced Reflected Damage taken", statOrder = { 4176 }, level = 75, group = "PlayerReflectedDamage", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["PlayerReflectedDamageEldritchImplicit4"] = { type = "Eater", affix = "", "60% reduced Reflected Damage taken", statOrder = { 4176 }, level = 75, group = "PlayerReflectedDamage", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["PlayerReflectedDamageEldritchImplicit5"] = { type = "Eater", affix = "", "65% reduced Reflected Damage taken", statOrder = { 4176 }, level = 75, group = "PlayerReflectedDamage", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["PlayerReflectedDamageEldritchImplicit6"] = { type = "Eater", affix = "", "70% reduced Reflected Damage taken", statOrder = { 4176 }, level = 75, group = "PlayerReflectedDamage", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["PlayerReflectedDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 60% reduced Reflected Damage taken", statOrder = { 4176 }, level = 75, group = "PlayerReflectedDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["PlayerReflectedDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 65% reduced Reflected Damage taken", statOrder = { 4176 }, level = 75, group = "PlayerReflectedDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, + ["PlayerReflectedDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 70% reduced Reflected Damage taken", statOrder = { 4176 }, level = 75, group = "PlayerReflectedDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, + ["PlayerReflectedDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 75% reduced Reflected Damage taken", statOrder = { 4176 }, level = 75, group = "PlayerReflectedDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, + ["PlayerReflectedDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 80% reduced Reflected Damage taken", statOrder = { 4176 }, level = 75, group = "PlayerReflectedDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, + ["PlayerReflectedDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 85% reduced Reflected Damage taken", statOrder = { 4176 }, level = 75, group = "PlayerReflectedDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, + ["PlayerReflectedDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 75% reduced Reflected Damage taken", statOrder = { 4176 }, level = 75, group = "PlayerReflectedDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["PlayerReflectedDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 80% reduced Reflected Damage taken", statOrder = { 4176 }, level = 75, group = "PlayerReflectedDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["PlayerReflectedDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 85% reduced Reflected Damage taken", statOrder = { 4176 }, level = 75, group = "PlayerReflectedDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, + ["PlayerReflectedDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 90% reduced Reflected Damage taken", statOrder = { 4176 }, level = 75, group = "PlayerReflectedDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, + ["PlayerReflectedDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 95% reduced Reflected Damage taken", statOrder = { 4176 }, level = 75, group = "PlayerReflectedDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, + ["PlayerReflectedDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 100% reduced Reflected Damage taken", statOrder = { 4176 }, level = 75, group = "PlayerReflectedDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, + ["MinionReflectedDamageEldritchImplicit1"] = { type = "Eater", affix = "", "Minions take 45% reduced Reflected Damage", statOrder = { 9173 }, level = 75, group = "MinionReflectedDamage", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["MinionReflectedDamageEldritchImplicit2"] = { type = "Eater", affix = "", "Minions take 50% reduced Reflected Damage", statOrder = { 9173 }, level = 75, group = "MinionReflectedDamage", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["MinionReflectedDamageEldritchImplicit3"] = { type = "Eater", affix = "", "Minions take 55% reduced Reflected Damage", statOrder = { 9173 }, level = 75, group = "MinionReflectedDamage", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["MinionReflectedDamageEldritchImplicit4"] = { type = "Eater", affix = "", "Minions take 60% reduced Reflected Damage", statOrder = { 9173 }, level = 75, group = "MinionReflectedDamage", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["MinionReflectedDamageEldritchImplicit5"] = { type = "Eater", affix = "", "Minions take 65% reduced Reflected Damage", statOrder = { 9173 }, level = 75, group = "MinionReflectedDamage", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["MinionReflectedDamageEldritchImplicit6"] = { type = "Eater", affix = "", "Minions take 70% reduced Reflected Damage", statOrder = { 9173 }, level = 75, group = "MinionReflectedDamage", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["MinionReflectedDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Minions take 60% reduced Reflected Damage", statOrder = { 9173 }, level = 75, group = "MinionReflectedDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["MinionReflectedDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Minions take 65% reduced Reflected Damage", statOrder = { 9173 }, level = 75, group = "MinionReflectedDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, + ["MinionReflectedDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Minions take 70% reduced Reflected Damage", statOrder = { 9173 }, level = 75, group = "MinionReflectedDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, + ["MinionReflectedDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Minions take 75% reduced Reflected Damage", statOrder = { 9173 }, level = 75, group = "MinionReflectedDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, + ["MinionReflectedDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Minions take 80% reduced Reflected Damage", statOrder = { 9173 }, level = 75, group = "MinionReflectedDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, + ["MinionReflectedDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Minions take 85% reduced Reflected Damage", statOrder = { 9173 }, level = 75, group = "MinionReflectedDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, + ["MinionReflectedDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions take 75% reduced Reflected Damage", statOrder = { 9173 }, level = 75, group = "MinionReflectedDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["MinionReflectedDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions take 80% reduced Reflected Damage", statOrder = { 9173 }, level = 75, group = "MinionReflectedDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["MinionReflectedDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions take 85% reduced Reflected Damage", statOrder = { 9173 }, level = 75, group = "MinionReflectedDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, + ["MinionReflectedDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions take 90% reduced Reflected Damage", statOrder = { 9173 }, level = 75, group = "MinionReflectedDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, + ["MinionReflectedDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions take 95% reduced Reflected Damage", statOrder = { 9173 }, level = 75, group = "MinionReflectedDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, + ["MinionReflectedDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions take 100% reduced Reflected Damage", statOrder = { 9173 }, level = 75, group = "MinionReflectedDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, + ["AngerAuraEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Anger has (19-21)% increased Aura Effect", statOrder = { 3264 }, level = 75, group = "AngerAuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["AngerAuraEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Anger has (22-24)% increased Aura Effect", statOrder = { 3264 }, level = 75, group = "AngerAuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["AngerAuraEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Anger has (25-27)% increased Aura Effect", statOrder = { 3264 }, level = 75, group = "AngerAuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["AngerAuraEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Anger has (28-30)% increased Aura Effect", statOrder = { 3264 }, level = 75, group = "AngerAuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["AngerAuraEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Anger has (31-33)% increased Aura Effect", statOrder = { 3264 }, level = 75, group = "AngerAuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["AngerAuraEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Anger has (34-36)% increased Aura Effect", statOrder = { 3264 }, level = 75, group = "AngerAuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["AngerAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Anger has (31-33)% increased Aura Effect", statOrder = { 3264 }, level = 75, group = "AngerAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["AngerAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Anger has (34-36)% increased Aura Effect", statOrder = { 3264 }, level = 75, group = "AngerAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["AngerAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Anger has (37-39)% increased Aura Effect", statOrder = { 3264 }, level = 75, group = "AngerAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["AngerAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Anger has (40-42)% increased Aura Effect", statOrder = { 3264 }, level = 75, group = "AngerAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["AngerAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Anger has (43-45)% increased Aura Effect", statOrder = { 3264 }, level = 75, group = "AngerAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["AngerAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Anger has (46-48)% increased Aura Effect", statOrder = { 3264 }, level = 75, group = "AngerAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["AngerAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Anger has (43-45)% increased Aura Effect", statOrder = { 3264 }, level = 75, group = "AngerAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["AngerAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Anger has (46-48)% increased Aura Effect", statOrder = { 3264 }, level = 75, group = "AngerAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["AngerAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Anger has (49-51)% increased Aura Effect", statOrder = { 3264 }, level = 75, group = "AngerAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["AngerAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Anger has (52-54)% increased Aura Effect", statOrder = { 3264 }, level = 75, group = "AngerAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["AngerAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Anger has (55-57)% increased Aura Effect", statOrder = { 3264 }, level = 75, group = "AngerAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["AngerAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Anger has (58-60)% increased Aura Effect", statOrder = { 3264 }, level = 75, group = "AngerAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["HatredAuraEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Hatred has (19-21)% increased Aura Effect", statOrder = { 3274 }, level = 75, group = "HatredAuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["HatredAuraEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Hatred has (22-24)% increased Aura Effect", statOrder = { 3274 }, level = 75, group = "HatredAuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["HatredAuraEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Hatred has (25-27)% increased Aura Effect", statOrder = { 3274 }, level = 75, group = "HatredAuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["HatredAuraEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Hatred has (28-30)% increased Aura Effect", statOrder = { 3274 }, level = 75, group = "HatredAuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["HatredAuraEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Hatred has (31-33)% increased Aura Effect", statOrder = { 3274 }, level = 75, group = "HatredAuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["HatredAuraEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Hatred has (34-36)% increased Aura Effect", statOrder = { 3274 }, level = 75, group = "HatredAuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["HatredAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hatred has (31-33)% increased Aura Effect", statOrder = { 3274 }, level = 75, group = "HatredAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["HatredAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hatred has (34-36)% increased Aura Effect", statOrder = { 3274 }, level = 75, group = "HatredAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["HatredAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hatred has (37-39)% increased Aura Effect", statOrder = { 3274 }, level = 75, group = "HatredAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["HatredAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hatred has (40-42)% increased Aura Effect", statOrder = { 3274 }, level = 75, group = "HatredAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["HatredAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hatred has (43-45)% increased Aura Effect", statOrder = { 3274 }, level = 75, group = "HatredAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["HatredAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hatred has (46-48)% increased Aura Effect", statOrder = { 3274 }, level = 75, group = "HatredAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["HatredAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hatred has (43-45)% increased Aura Effect", statOrder = { 3274 }, level = 75, group = "HatredAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["HatredAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hatred has (46-48)% increased Aura Effect", statOrder = { 3274 }, level = 75, group = "HatredAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["HatredAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hatred has (49-51)% increased Aura Effect", statOrder = { 3274 }, level = 75, group = "HatredAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["HatredAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hatred has (52-54)% increased Aura Effect", statOrder = { 3274 }, level = 75, group = "HatredAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["HatredAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hatred has (55-57)% increased Aura Effect", statOrder = { 3274 }, level = 75, group = "HatredAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["HatredAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hatred has (58-60)% increased Aura Effect", statOrder = { 3274 }, level = 75, group = "HatredAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["WrathAuraEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Wrath has (19-21)% increased Aura Effect", statOrder = { 3269 }, level = 75, group = "WrathAuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["WrathAuraEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Wrath has (22-24)% increased Aura Effect", statOrder = { 3269 }, level = 75, group = "WrathAuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["WrathAuraEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Wrath has (25-27)% increased Aura Effect", statOrder = { 3269 }, level = 75, group = "WrathAuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["WrathAuraEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Wrath has (28-30)% increased Aura Effect", statOrder = { 3269 }, level = 75, group = "WrathAuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["WrathAuraEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Wrath has (31-33)% increased Aura Effect", statOrder = { 3269 }, level = 75, group = "WrathAuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["WrathAuraEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Wrath has (34-36)% increased Aura Effect", statOrder = { 3269 }, level = 75, group = "WrathAuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["WrathAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Wrath has (31-33)% increased Aura Effect", statOrder = { 3269 }, level = 75, group = "WrathAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["WrathAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Wrath has (34-36)% increased Aura Effect", statOrder = { 3269 }, level = 75, group = "WrathAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["WrathAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Wrath has (37-39)% increased Aura Effect", statOrder = { 3269 }, level = 75, group = "WrathAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["WrathAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Wrath has (40-42)% increased Aura Effect", statOrder = { 3269 }, level = 75, group = "WrathAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["WrathAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Wrath has (43-45)% increased Aura Effect", statOrder = { 3269 }, level = 75, group = "WrathAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["WrathAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Wrath has (46-48)% increased Aura Effect", statOrder = { 3269 }, level = 75, group = "WrathAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["WrathAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Wrath has (43-45)% increased Aura Effect", statOrder = { 3269 }, level = 75, group = "WrathAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["WrathAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Wrath has (46-48)% increased Aura Effect", statOrder = { 3269 }, level = 75, group = "WrathAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["WrathAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Wrath has (49-51)% increased Aura Effect", statOrder = { 3269 }, level = 75, group = "WrathAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["WrathAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Wrath has (52-54)% increased Aura Effect", statOrder = { 3269 }, level = 75, group = "WrathAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["WrathAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Wrath has (55-57)% increased Aura Effect", statOrder = { 3269 }, level = 75, group = "WrathAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["WrathAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Wrath has (58-60)% increased Aura Effect", statOrder = { 3269 }, level = 75, group = "WrathAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["MalevolenceAuraEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Malevolence has (19-21)% increased Aura Effect", statOrder = { 6055 }, level = 75, group = "MalevolenceAuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["MalevolenceAuraEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Malevolence has (22-24)% increased Aura Effect", statOrder = { 6055 }, level = 75, group = "MalevolenceAuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["MalevolenceAuraEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Malevolence has (25-27)% increased Aura Effect", statOrder = { 6055 }, level = 75, group = "MalevolenceAuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["MalevolenceAuraEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Malevolence has (28-30)% increased Aura Effect", statOrder = { 6055 }, level = 75, group = "MalevolenceAuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["MalevolenceAuraEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Malevolence has (31-33)% increased Aura Effect", statOrder = { 6055 }, level = 75, group = "MalevolenceAuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["MalevolenceAuraEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Malevolence has (34-36)% increased Aura Effect", statOrder = { 6055 }, level = 75, group = "MalevolenceAuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["MalevolenceAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Malevolence has (31-33)% increased Aura Effect", statOrder = { 6055 }, level = 75, group = "MalevolenceAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["MalevolenceAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Malevolence has (34-36)% increased Aura Effect", statOrder = { 6055 }, level = 75, group = "MalevolenceAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["MalevolenceAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Malevolence has (37-39)% increased Aura Effect", statOrder = { 6055 }, level = 75, group = "MalevolenceAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["MalevolenceAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Malevolence has (40-42)% increased Aura Effect", statOrder = { 6055 }, level = 75, group = "MalevolenceAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["MalevolenceAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Malevolence has (43-45)% increased Aura Effect", statOrder = { 6055 }, level = 75, group = "MalevolenceAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["MalevolenceAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Malevolence has (46-48)% increased Aura Effect", statOrder = { 6055 }, level = 75, group = "MalevolenceAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["MalevolenceAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Malevolence has (43-45)% increased Aura Effect", statOrder = { 6055 }, level = 75, group = "MalevolenceAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["MalevolenceAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Malevolence has (46-48)% increased Aura Effect", statOrder = { 6055 }, level = 75, group = "MalevolenceAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["MalevolenceAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Malevolence has (49-51)% increased Aura Effect", statOrder = { 6055 }, level = 75, group = "MalevolenceAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["MalevolenceAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Malevolence has (52-54)% increased Aura Effect", statOrder = { 6055 }, level = 75, group = "MalevolenceAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["MalevolenceAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Malevolence has (55-57)% increased Aura Effect", statOrder = { 6055 }, level = 75, group = "MalevolenceAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["MalevolenceAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Malevolence has (58-60)% increased Aura Effect", statOrder = { 6055 }, level = 75, group = "MalevolenceAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["ZealotryAuraEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Zealotry has (19-21)% increased Aura Effect", statOrder = { 10495 }, level = 75, group = "ZealotryAuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["ZealotryAuraEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Zealotry has (22-24)% increased Aura Effect", statOrder = { 10495 }, level = 75, group = "ZealotryAuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["ZealotryAuraEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Zealotry has (25-27)% increased Aura Effect", statOrder = { 10495 }, level = 75, group = "ZealotryAuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["ZealotryAuraEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Zealotry has (28-30)% increased Aura Effect", statOrder = { 10495 }, level = 75, group = "ZealotryAuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["ZealotryAuraEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Zealotry has (31-33)% increased Aura Effect", statOrder = { 10495 }, level = 75, group = "ZealotryAuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["ZealotryAuraEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Zealotry has (34-36)% increased Aura Effect", statOrder = { 10495 }, level = 75, group = "ZealotryAuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["ZealotryAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Zealotry has (31-33)% increased Aura Effect", statOrder = { 10495 }, level = 75, group = "ZealotryAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["ZealotryAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Zealotry has (34-36)% increased Aura Effect", statOrder = { 10495 }, level = 75, group = "ZealotryAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["ZealotryAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Zealotry has (37-39)% increased Aura Effect", statOrder = { 10495 }, level = 75, group = "ZealotryAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["ZealotryAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Zealotry has (40-42)% increased Aura Effect", statOrder = { 10495 }, level = 75, group = "ZealotryAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["ZealotryAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Zealotry has (43-45)% increased Aura Effect", statOrder = { 10495 }, level = 75, group = "ZealotryAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["ZealotryAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Zealotry has (46-48)% increased Aura Effect", statOrder = { 10495 }, level = 75, group = "ZealotryAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["ZealotryAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Zealotry has (43-45)% increased Aura Effect", statOrder = { 10495 }, level = 75, group = "ZealotryAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["ZealotryAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Zealotry has (46-48)% increased Aura Effect", statOrder = { 10495 }, level = 75, group = "ZealotryAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["ZealotryAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Zealotry has (49-51)% increased Aura Effect", statOrder = { 10495 }, level = 75, group = "ZealotryAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["ZealotryAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Zealotry has (52-54)% increased Aura Effect", statOrder = { 10495 }, level = 75, group = "ZealotryAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["ZealotryAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Zealotry has (55-57)% increased Aura Effect", statOrder = { 10495 }, level = 75, group = "ZealotryAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["ZealotryAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Zealotry has (58-60)% increased Aura Effect", statOrder = { 10495 }, level = 75, group = "ZealotryAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["PrideAuraEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Pride has (19-21)% increased Aura Effect", statOrder = { 9498 }, level = 75, group = "PrideAuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["PrideAuraEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Pride has (22-24)% increased Aura Effect", statOrder = { 9498 }, level = 75, group = "PrideAuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["PrideAuraEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Pride has (25-27)% increased Aura Effect", statOrder = { 9498 }, level = 75, group = "PrideAuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["PrideAuraEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Pride has (28-30)% increased Aura Effect", statOrder = { 9498 }, level = 75, group = "PrideAuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["PrideAuraEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Pride has (31-33)% increased Aura Effect", statOrder = { 9498 }, level = 75, group = "PrideAuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["PrideAuraEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Pride has (34-36)% increased Aura Effect", statOrder = { 9498 }, level = 75, group = "PrideAuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["PrideAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Pride has (31-33)% increased Aura Effect", statOrder = { 9498 }, level = 75, group = "PrideAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["PrideAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Pride has (34-36)% increased Aura Effect", statOrder = { 9498 }, level = 75, group = "PrideAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["PrideAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Pride has (37-39)% increased Aura Effect", statOrder = { 9498 }, level = 75, group = "PrideAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["PrideAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Pride has (40-42)% increased Aura Effect", statOrder = { 9498 }, level = 75, group = "PrideAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["PrideAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Pride has (43-45)% increased Aura Effect", statOrder = { 9498 }, level = 75, group = "PrideAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["PrideAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Pride has (46-48)% increased Aura Effect", statOrder = { 9498 }, level = 75, group = "PrideAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["PrideAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Pride has (43-45)% increased Aura Effect", statOrder = { 9498 }, level = 75, group = "PrideAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["PrideAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Pride has (46-48)% increased Aura Effect", statOrder = { 9498 }, level = 75, group = "PrideAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["PrideAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Pride has (49-51)% increased Aura Effect", statOrder = { 9498 }, level = 75, group = "PrideAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["PrideAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Pride has (52-54)% increased Aura Effect", statOrder = { 9498 }, level = 75, group = "PrideAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["PrideAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Pride has (55-57)% increased Aura Effect", statOrder = { 9498 }, level = 75, group = "PrideAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["PrideAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Pride has (58-60)% increased Aura Effect", statOrder = { 9498 }, level = 75, group = "PrideAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["DeterminationAuraEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Determination has (19-21)% increased Aura Effect", statOrder = { 3275 }, level = 75, group = "DeterminationAuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["DeterminationAuraEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Determination has (22-24)% increased Aura Effect", statOrder = { 3275 }, level = 75, group = "DeterminationAuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["DeterminationAuraEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Determination has (25-27)% increased Aura Effect", statOrder = { 3275 }, level = 75, group = "DeterminationAuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["DeterminationAuraEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Determination has (28-30)% increased Aura Effect", statOrder = { 3275 }, level = 75, group = "DeterminationAuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["DeterminationAuraEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Determination has (31-33)% increased Aura Effect", statOrder = { 3275 }, level = 75, group = "DeterminationAuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["DeterminationAuraEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Determination has (34-36)% increased Aura Effect", statOrder = { 3275 }, level = 75, group = "DeterminationAuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["DeterminationAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Determination has (31-33)% increased Aura Effect", statOrder = { 3275 }, level = 75, group = "DeterminationAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["DeterminationAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Determination has (34-36)% increased Aura Effect", statOrder = { 3275 }, level = 75, group = "DeterminationAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["DeterminationAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Determination has (37-39)% increased Aura Effect", statOrder = { 3275 }, level = 75, group = "DeterminationAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["DeterminationAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Determination has (40-42)% increased Aura Effect", statOrder = { 3275 }, level = 75, group = "DeterminationAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["DeterminationAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Determination has (43-45)% increased Aura Effect", statOrder = { 3275 }, level = 75, group = "DeterminationAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["DeterminationAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Determination has (46-48)% increased Aura Effect", statOrder = { 3275 }, level = 75, group = "DeterminationAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["DeterminationAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Determination has (43-45)% increased Aura Effect", statOrder = { 3275 }, level = 75, group = "DeterminationAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["DeterminationAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Determination has (46-48)% increased Aura Effect", statOrder = { 3275 }, level = 75, group = "DeterminationAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["DeterminationAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Determination has (49-51)% increased Aura Effect", statOrder = { 3275 }, level = 75, group = "DeterminationAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["DeterminationAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Determination has (52-54)% increased Aura Effect", statOrder = { 3275 }, level = 75, group = "DeterminationAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["DeterminationAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Determination has (55-57)% increased Aura Effect", statOrder = { 3275 }, level = 75, group = "DeterminationAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["DeterminationAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Determination has (58-60)% increased Aura Effect", statOrder = { 3275 }, level = 75, group = "DeterminationAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["GraceAuraEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Grace has (19-21)% increased Aura Effect", statOrder = { 3271 }, level = 75, group = "GraceAuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["GraceAuraEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Grace has (22-24)% increased Aura Effect", statOrder = { 3271 }, level = 75, group = "GraceAuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["GraceAuraEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Grace has (25-27)% increased Aura Effect", statOrder = { 3271 }, level = 75, group = "GraceAuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["GraceAuraEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Grace has (28-30)% increased Aura Effect", statOrder = { 3271 }, level = 75, group = "GraceAuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["GraceAuraEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Grace has (31-33)% increased Aura Effect", statOrder = { 3271 }, level = 75, group = "GraceAuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["GraceAuraEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Grace has (34-36)% increased Aura Effect", statOrder = { 3271 }, level = 75, group = "GraceAuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["GraceAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Grace has (31-33)% increased Aura Effect", statOrder = { 3271 }, level = 75, group = "GraceAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["GraceAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Grace has (34-36)% increased Aura Effect", statOrder = { 3271 }, level = 75, group = "GraceAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["GraceAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Grace has (37-39)% increased Aura Effect", statOrder = { 3271 }, level = 75, group = "GraceAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["GraceAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Grace has (40-42)% increased Aura Effect", statOrder = { 3271 }, level = 75, group = "GraceAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["GraceAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Grace has (43-45)% increased Aura Effect", statOrder = { 3271 }, level = 75, group = "GraceAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["GraceAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Grace has (46-48)% increased Aura Effect", statOrder = { 3271 }, level = 75, group = "GraceAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["GraceAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Grace has (43-45)% increased Aura Effect", statOrder = { 3271 }, level = 75, group = "GraceAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["GraceAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Grace has (46-48)% increased Aura Effect", statOrder = { 3271 }, level = 75, group = "GraceAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["GraceAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Grace has (49-51)% increased Aura Effect", statOrder = { 3271 }, level = 75, group = "GraceAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["GraceAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Grace has (52-54)% increased Aura Effect", statOrder = { 3271 }, level = 75, group = "GraceAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["GraceAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Grace has (55-57)% increased Aura Effect", statOrder = { 3271 }, level = 75, group = "GraceAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["GraceAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Grace has (58-60)% increased Aura Effect", statOrder = { 3271 }, level = 75, group = "GraceAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["DisciplineAuraEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Discipline has (19-21)% increased Aura Effect", statOrder = { 3276 }, level = 75, group = "DisciplineAuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["DisciplineAuraEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Discipline has (22-24)% increased Aura Effect", statOrder = { 3276 }, level = 75, group = "DisciplineAuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["DisciplineAuraEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Discipline has (25-27)% increased Aura Effect", statOrder = { 3276 }, level = 75, group = "DisciplineAuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["DisciplineAuraEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Discipline has (28-30)% increased Aura Effect", statOrder = { 3276 }, level = 75, group = "DisciplineAuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["DisciplineAuraEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Discipline has (31-33)% increased Aura Effect", statOrder = { 3276 }, level = 75, group = "DisciplineAuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["DisciplineAuraEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Discipline has (34-36)% increased Aura Effect", statOrder = { 3276 }, level = 75, group = "DisciplineAuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["DisciplineAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Discipline has (31-33)% increased Aura Effect", statOrder = { 3276 }, level = 75, group = "DisciplineAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["DisciplineAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Discipline has (34-36)% increased Aura Effect", statOrder = { 3276 }, level = 75, group = "DisciplineAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["DisciplineAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Discipline has (37-39)% increased Aura Effect", statOrder = { 3276 }, level = 75, group = "DisciplineAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["DisciplineAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Discipline has (40-42)% increased Aura Effect", statOrder = { 3276 }, level = 75, group = "DisciplineAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["DisciplineAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Discipline has (43-45)% increased Aura Effect", statOrder = { 3276 }, level = 75, group = "DisciplineAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["DisciplineAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Discipline has (46-48)% increased Aura Effect", statOrder = { 3276 }, level = 75, group = "DisciplineAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["DisciplineAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Discipline has (43-45)% increased Aura Effect", statOrder = { 3276 }, level = 75, group = "DisciplineAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["DisciplineAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Discipline has (46-48)% increased Aura Effect", statOrder = { 3276 }, level = 75, group = "DisciplineAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["DisciplineAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Discipline has (49-51)% increased Aura Effect", statOrder = { 3276 }, level = 75, group = "DisciplineAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["DisciplineAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Discipline has (52-54)% increased Aura Effect", statOrder = { 3276 }, level = 75, group = "DisciplineAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["DisciplineAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Discipline has (55-57)% increased Aura Effect", statOrder = { 3276 }, level = 75, group = "DisciplineAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["DisciplineAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Discipline has (58-60)% increased Aura Effect", statOrder = { 3276 }, level = 75, group = "DisciplineAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["HasteAuraEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Haste has (19-21)% increased Aura Effect", statOrder = { 3272 }, level = 75, group = "HasteAuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["HasteAuraEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Haste has (22-24)% increased Aura Effect", statOrder = { 3272 }, level = 75, group = "HasteAuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["HasteAuraEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Haste has (25-27)% increased Aura Effect", statOrder = { 3272 }, level = 75, group = "HasteAuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["HasteAuraEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Haste has (28-30)% increased Aura Effect", statOrder = { 3272 }, level = 75, group = "HasteAuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["HasteAuraEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Haste has (31-33)% increased Aura Effect", statOrder = { 3272 }, level = 75, group = "HasteAuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["HasteAuraEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Haste has (34-36)% increased Aura Effect", statOrder = { 3272 }, level = 75, group = "HasteAuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["HasteAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Haste has (31-33)% increased Aura Effect", statOrder = { 3272 }, level = 75, group = "HasteAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["HasteAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Haste has (34-36)% increased Aura Effect", statOrder = { 3272 }, level = 75, group = "HasteAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["HasteAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Haste has (37-39)% increased Aura Effect", statOrder = { 3272 }, level = 75, group = "HasteAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["HasteAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Haste has (40-42)% increased Aura Effect", statOrder = { 3272 }, level = 75, group = "HasteAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["HasteAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Haste has (43-45)% increased Aura Effect", statOrder = { 3272 }, level = 75, group = "HasteAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["HasteAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Haste has (46-48)% increased Aura Effect", statOrder = { 3272 }, level = 75, group = "HasteAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["HasteAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Haste has (43-45)% increased Aura Effect", statOrder = { 3272 }, level = 75, group = "HasteAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["HasteAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Haste has (46-48)% increased Aura Effect", statOrder = { 3272 }, level = 75, group = "HasteAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["HasteAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Haste has (49-51)% increased Aura Effect", statOrder = { 3272 }, level = 75, group = "HasteAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["HasteAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Haste has (52-54)% increased Aura Effect", statOrder = { 3272 }, level = 75, group = "HasteAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["HasteAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Haste has (55-57)% increased Aura Effect", statOrder = { 3272 }, level = 75, group = "HasteAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["HasteAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Haste has (58-60)% increased Aura Effect", statOrder = { 3272 }, level = 75, group = "HasteAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["PurityOfElementsEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Purity of Elements has (19-21)% increased Aura Effect", statOrder = { 3265 }, level = 75, group = "PurityOfElementsEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["PurityOfElementsEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Purity of Elements has (22-24)% increased Aura Effect", statOrder = { 3265 }, level = 75, group = "PurityOfElementsEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["PurityOfElementsEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Purity of Elements has (25-27)% increased Aura Effect", statOrder = { 3265 }, level = 75, group = "PurityOfElementsEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["PurityOfElementsEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Purity of Elements has (28-30)% increased Aura Effect", statOrder = { 3265 }, level = 75, group = "PurityOfElementsEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["PurityOfElementsEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Purity of Elements has (31-33)% increased Aura Effect", statOrder = { 3265 }, level = 75, group = "PurityOfElementsEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["PurityOfElementsEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Purity of Elements has (34-36)% increased Aura Effect", statOrder = { 3265 }, level = 75, group = "PurityOfElementsEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["PurityOfElementsEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Elements has (31-33)% increased Aura Effect", statOrder = { 3265 }, level = 75, group = "PurityOfElementsEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["PurityOfElementsEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Elements has (34-36)% increased Aura Effect", statOrder = { 3265 }, level = 75, group = "PurityOfElementsEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["PurityOfElementsEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Elements has (37-39)% increased Aura Effect", statOrder = { 3265 }, level = 75, group = "PurityOfElementsEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["PurityOfElementsEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Elements has (40-42)% increased Aura Effect", statOrder = { 3265 }, level = 75, group = "PurityOfElementsEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["PurityOfElementsEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Elements has (43-45)% increased Aura Effect", statOrder = { 3265 }, level = 75, group = "PurityOfElementsEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["PurityOfElementsEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Elements has (46-48)% increased Aura Effect", statOrder = { 3265 }, level = 75, group = "PurityOfElementsEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["PurityOfElementsEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Elements has (43-45)% increased Aura Effect", statOrder = { 3265 }, level = 75, group = "PurityOfElementsEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["PurityOfElementsEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Elements has (46-48)% increased Aura Effect", statOrder = { 3265 }, level = 75, group = "PurityOfElementsEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["PurityOfElementsEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Elements has (49-51)% increased Aura Effect", statOrder = { 3265 }, level = 75, group = "PurityOfElementsEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["PurityOfElementsEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Elements has (52-54)% increased Aura Effect", statOrder = { 3265 }, level = 75, group = "PurityOfElementsEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["PurityOfElementsEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Elements has (55-57)% increased Aura Effect", statOrder = { 3265 }, level = 75, group = "PurityOfElementsEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["PurityOfElementsEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Elements has (58-60)% increased Aura Effect", statOrder = { 3265 }, level = 75, group = "PurityOfElementsEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["PurityOfFireEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Purity of Fire has (19-21)% increased Aura Effect", statOrder = { 3266 }, level = 75, group = "PurityOfFireEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["PurityOfFireEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Purity of Fire has (22-24)% increased Aura Effect", statOrder = { 3266 }, level = 75, group = "PurityOfFireEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["PurityOfFireEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Purity of Fire has (25-27)% increased Aura Effect", statOrder = { 3266 }, level = 75, group = "PurityOfFireEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["PurityOfFireEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Purity of Fire has (28-30)% increased Aura Effect", statOrder = { 3266 }, level = 75, group = "PurityOfFireEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["PurityOfFireEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Purity of Fire has (31-33)% increased Aura Effect", statOrder = { 3266 }, level = 75, group = "PurityOfFireEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["PurityOfFireEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Purity of Fire has (34-36)% increased Aura Effect", statOrder = { 3266 }, level = 75, group = "PurityOfFireEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["PurityOfFireEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Fire has (31-33)% increased Aura Effect", statOrder = { 3266 }, level = 75, group = "PurityOfFireEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["PurityOfFireEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Fire has (34-36)% increased Aura Effect", statOrder = { 3266 }, level = 75, group = "PurityOfFireEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["PurityOfFireEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Fire has (37-39)% increased Aura Effect", statOrder = { 3266 }, level = 75, group = "PurityOfFireEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["PurityOfFireEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Fire has (40-42)% increased Aura Effect", statOrder = { 3266 }, level = 75, group = "PurityOfFireEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["PurityOfFireEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Fire has (43-45)% increased Aura Effect", statOrder = { 3266 }, level = 75, group = "PurityOfFireEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["PurityOfFireEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Fire has (46-48)% increased Aura Effect", statOrder = { 3266 }, level = 75, group = "PurityOfFireEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["PurityOfFireEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Fire has (43-45)% increased Aura Effect", statOrder = { 3266 }, level = 75, group = "PurityOfFireEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["PurityOfFireEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Fire has (46-48)% increased Aura Effect", statOrder = { 3266 }, level = 75, group = "PurityOfFireEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["PurityOfFireEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Fire has (49-51)% increased Aura Effect", statOrder = { 3266 }, level = 75, group = "PurityOfFireEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["PurityOfFireEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Fire has (52-54)% increased Aura Effect", statOrder = { 3266 }, level = 75, group = "PurityOfFireEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["PurityOfFireEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Fire has (55-57)% increased Aura Effect", statOrder = { 3266 }, level = 75, group = "PurityOfFireEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["PurityOfFireEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Fire has (58-60)% increased Aura Effect", statOrder = { 3266 }, level = 75, group = "PurityOfFireEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["PurityOfIceEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Purity of Ice has (19-21)% increased Aura Effect", statOrder = { 3267 }, level = 75, group = "PurityOfIceEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["PurityOfIceEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Purity of Ice has (22-24)% increased Aura Effect", statOrder = { 3267 }, level = 75, group = "PurityOfIceEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["PurityOfIceEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Purity of Ice has (25-27)% increased Aura Effect", statOrder = { 3267 }, level = 75, group = "PurityOfIceEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["PurityOfIceEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Purity of Ice has (28-30)% increased Aura Effect", statOrder = { 3267 }, level = 75, group = "PurityOfIceEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["PurityOfIceEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Purity of Ice has (31-33)% increased Aura Effect", statOrder = { 3267 }, level = 75, group = "PurityOfIceEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["PurityOfIceEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Purity of Ice has (34-36)% increased Aura Effect", statOrder = { 3267 }, level = 75, group = "PurityOfIceEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["PurityOfIceEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Ice has (31-33)% increased Aura Effect", statOrder = { 3267 }, level = 75, group = "PurityOfIceEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["PurityOfIceEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Ice has (34-36)% increased Aura Effect", statOrder = { 3267 }, level = 75, group = "PurityOfIceEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["PurityOfIceEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Ice has (37-39)% increased Aura Effect", statOrder = { 3267 }, level = 75, group = "PurityOfIceEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["PurityOfIceEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Ice has (40-42)% increased Aura Effect", statOrder = { 3267 }, level = 75, group = "PurityOfIceEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["PurityOfIceEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Ice has (43-45)% increased Aura Effect", statOrder = { 3267 }, level = 75, group = "PurityOfIceEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["PurityOfIceEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Ice has (46-48)% increased Aura Effect", statOrder = { 3267 }, level = 75, group = "PurityOfIceEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["PurityOfIceEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Ice has (43-45)% increased Aura Effect", statOrder = { 3267 }, level = 75, group = "PurityOfIceEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["PurityOfIceEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Ice has (46-48)% increased Aura Effect", statOrder = { 3267 }, level = 75, group = "PurityOfIceEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["PurityOfIceEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Ice has (49-51)% increased Aura Effect", statOrder = { 3267 }, level = 75, group = "PurityOfIceEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["PurityOfIceEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Ice has (52-54)% increased Aura Effect", statOrder = { 3267 }, level = 75, group = "PurityOfIceEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["PurityOfIceEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Ice has (55-57)% increased Aura Effect", statOrder = { 3267 }, level = 75, group = "PurityOfIceEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["PurityOfIceEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Ice has (58-60)% increased Aura Effect", statOrder = { 3267 }, level = 75, group = "PurityOfIceEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["PurityOfLightningEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Purity of Lightning has (19-21)% increased Aura Effect", statOrder = { 3268 }, level = 75, group = "PurityOfLightningEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["PurityOfLightningEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Purity of Lightning has (22-24)% increased Aura Effect", statOrder = { 3268 }, level = 75, group = "PurityOfLightningEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["PurityOfLightningEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Purity of Lightning has (25-27)% increased Aura Effect", statOrder = { 3268 }, level = 75, group = "PurityOfLightningEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["PurityOfLightningEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Purity of Lightning has (28-30)% increased Aura Effect", statOrder = { 3268 }, level = 75, group = "PurityOfLightningEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["PurityOfLightningEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Purity of Lightning has (31-33)% increased Aura Effect", statOrder = { 3268 }, level = 75, group = "PurityOfLightningEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["PurityOfLightningEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Purity of Lightning has (34-36)% increased Aura Effect", statOrder = { 3268 }, level = 75, group = "PurityOfLightningEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["PurityOfLightningEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Lightning has (31-33)% increased Aura Effect", statOrder = { 3268 }, level = 75, group = "PurityOfLightningEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["PurityOfLightningEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Lightning has (34-36)% increased Aura Effect", statOrder = { 3268 }, level = 75, group = "PurityOfLightningEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["PurityOfLightningEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Lightning has (37-39)% increased Aura Effect", statOrder = { 3268 }, level = 75, group = "PurityOfLightningEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["PurityOfLightningEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Lightning has (40-42)% increased Aura Effect", statOrder = { 3268 }, level = 75, group = "PurityOfLightningEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["PurityOfLightningEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Lightning has (43-45)% increased Aura Effect", statOrder = { 3268 }, level = 75, group = "PurityOfLightningEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["PurityOfLightningEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Lightning has (46-48)% increased Aura Effect", statOrder = { 3268 }, level = 75, group = "PurityOfLightningEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["PurityOfLightningEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Lightning has (43-45)% increased Aura Effect", statOrder = { 3268 }, level = 75, group = "PurityOfLightningEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["PurityOfLightningEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Lightning has (46-48)% increased Aura Effect", statOrder = { 3268 }, level = 75, group = "PurityOfLightningEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["PurityOfLightningEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Lightning has (49-51)% increased Aura Effect", statOrder = { 3268 }, level = 75, group = "PurityOfLightningEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["PurityOfLightningEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Lightning has (52-54)% increased Aura Effect", statOrder = { 3268 }, level = 75, group = "PurityOfLightningEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["PurityOfLightningEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Lightning has (55-57)% increased Aura Effect", statOrder = { 3268 }, level = 75, group = "PurityOfLightningEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["PurityOfLightningEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Lightning has (58-60)% increased Aura Effect", statOrder = { 3268 }, level = 75, group = "PurityOfLightningEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["FortifyOnMeleeHitEldritchImplicit1"] = { type = "Eater", affix = "", "Melee Hits have (6-7)% chance to Fortify", statOrder = { 2173 }, level = 75, group = "FortifyOnMeleeHit", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, }, + ["FortifyOnMeleeHitEldritchImplicit2"] = { type = "Eater", affix = "", "Melee Hits have (8-9)% chance to Fortify", statOrder = { 2173 }, level = 75, group = "FortifyOnMeleeHit", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, }, + ["FortifyOnMeleeHitEldritchImplicit3"] = { type = "Eater", affix = "", "Melee Hits have (10-11)% chance to Fortify", statOrder = { 2173 }, level = 75, group = "FortifyOnMeleeHit", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, }, + ["FortifyOnMeleeHitEldritchImplicit4"] = { type = "Eater", affix = "", "Melee Hits have (12-13)% chance to Fortify", statOrder = { 2173 }, level = 75, group = "FortifyOnMeleeHit", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, }, + ["FortifyOnMeleeHitEldritchImplicit5"] = { type = "Eater", affix = "", "Melee Hits have (14-15)% chance to Fortify", statOrder = { 2173 }, level = 75, group = "FortifyOnMeleeHit", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, }, + ["FortifyOnMeleeHitEldritchImplicit6"] = { type = "Eater", affix = "", "Melee Hits have (16-17)% chance to Fortify", statOrder = { 2173 }, level = 75, group = "FortifyOnMeleeHit", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, }, + ["FortifyOnMeleeHitEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Melee Hits have (12-13)% chance to Fortify", statOrder = { 2173 }, level = 75, group = "FortifyOnMeleeHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, + ["FortifyOnMeleeHitEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Melee Hits have (14-15)% chance to Fortify", statOrder = { 2173 }, level = 75, group = "FortifyOnMeleeHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "attack" }, }, + ["FortifyOnMeleeHitEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Melee Hits have (16-17)% chance to Fortify", statOrder = { 2173 }, level = 75, group = "FortifyOnMeleeHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "attack" }, }, + ["FortifyOnMeleeHitEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Melee Hits have (18-19)% chance to Fortify", statOrder = { 2173 }, level = 75, group = "FortifyOnMeleeHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "attack" }, }, + ["FortifyOnMeleeHitEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Melee Hits have (20-21)% chance to Fortify", statOrder = { 2173 }, level = 75, group = "FortifyOnMeleeHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "attack" }, }, + ["FortifyOnMeleeHitEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Melee Hits have (22-23)% chance to Fortify", statOrder = { 2173 }, level = 75, group = "FortifyOnMeleeHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "attack" }, }, + ["FortifyOnMeleeHitEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Melee Hits have (18-19)% chance to Fortify", statOrder = { 2173 }, level = 75, group = "FortifyOnMeleeHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, + ["FortifyOnMeleeHitEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Melee Hits have (20-21)% chance to Fortify", statOrder = { 2173 }, level = 75, group = "FortifyOnMeleeHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, + ["FortifyOnMeleeHitEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Melee Hits have (22-23)% chance to Fortify", statOrder = { 2173 }, level = 75, group = "FortifyOnMeleeHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "attack" }, }, + ["FortifyOnMeleeHitEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Melee Hits have (24-25)% chance to Fortify", statOrder = { 2173 }, level = 75, group = "FortifyOnMeleeHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "attack" }, }, + ["FortifyOnMeleeHitEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Melee Hits have (26-27)% chance to Fortify", statOrder = { 2173 }, level = 75, group = "FortifyOnMeleeHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "attack" }, }, + ["FortifyOnMeleeHitEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Melee Hits have (28-29)% chance to Fortify", statOrder = { 2173 }, level = 75, group = "FortifyOnMeleeHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "attack" }, }, + ["AllResistancesEldritchImplicit1"] = { type = "Eater", affix = "", "+(5-6)% to all Elemental Resistances", statOrder = { 1530 }, level = 75, group = "AllResistances", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesEldritchImplicit2"] = { type = "Eater", affix = "", "+(7-8)% to all Elemental Resistances", statOrder = { 1530 }, level = 75, group = "AllResistances", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesEldritchImplicit3"] = { type = "Eater", affix = "", "+(9-10)% to all Elemental Resistances", statOrder = { 1530 }, level = 75, group = "AllResistances", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesEldritchImplicit4"] = { type = "Eater", affix = "", "+(11-12)% to all Elemental Resistances", statOrder = { 1530 }, level = 75, group = "AllResistances", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesEldritchImplicit5"] = { type = "Eater", affix = "", "+(13-14)% to all Elemental Resistances", statOrder = { 1530 }, level = 75, group = "AllResistances", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesEldritchImplicit6"] = { type = "Eater", affix = "", "+(15-16)% to all Elemental Resistances", statOrder = { 1530 }, level = 75, group = "AllResistances", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(11-12)% to all Elemental Resistances", statOrder = { 1530 }, level = 75, group = "AllResistancesUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(13-14)% to all Elemental Resistances", statOrder = { 1530 }, level = 75, group = "AllResistancesUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(15-16)% to all Elemental Resistances", statOrder = { 1530 }, level = 75, group = "AllResistancesUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(17-18)% to all Elemental Resistances", statOrder = { 1530 }, level = 75, group = "AllResistancesUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(19-20)% to all Elemental Resistances", statOrder = { 1530 }, level = 75, group = "AllResistancesUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(21-22)% to all Elemental Resistances", statOrder = { 1530 }, level = 75, group = "AllResistancesUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(17-18)% to all Elemental Resistances", statOrder = { 1530 }, level = 75, group = "AllResistancesPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(19-20)% to all Elemental Resistances", statOrder = { 1530 }, level = 75, group = "AllResistancesPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(21-22)% to all Elemental Resistances", statOrder = { 1530 }, level = 75, group = "AllResistancesPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(23-24)% to all Elemental Resistances", statOrder = { 1530 }, level = 75, group = "AllResistancesPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(25-26)% to all Elemental Resistances", statOrder = { 1530 }, level = 75, group = "AllResistancesPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(27-28)% to all Elemental Resistances", statOrder = { 1530 }, level = 75, group = "AllResistancesPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "resistance" }, }, + ["LifeRecoveryRateEldritchImplicit1"] = { type = "Eater", affix = "", "7% increased Life Recovery rate", statOrder = { 1489 }, level = 75, group = "LifeRecoveryRate", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, }, + ["LifeRecoveryRateEldritchImplicit2"] = { type = "Eater", affix = "", "8% increased Life Recovery rate", statOrder = { 1489 }, level = 75, group = "LifeRecoveryRate", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, }, + ["LifeRecoveryRateEldritchImplicit3"] = { type = "Eater", affix = "", "9% increased Life Recovery rate", statOrder = { 1489 }, level = 75, group = "LifeRecoveryRate", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, }, + ["LifeRecoveryRateEldritchImplicit4"] = { type = "Eater", affix = "", "10% increased Life Recovery rate", statOrder = { 1489 }, level = 75, group = "LifeRecoveryRate", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, }, + ["LifeRecoveryRateEldritchImplicit5"] = { type = "Eater", affix = "", "11% increased Life Recovery rate", statOrder = { 1489 }, level = 75, group = "LifeRecoveryRate", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, }, + ["LifeRecoveryRateEldritchImplicit6"] = { type = "Eater", affix = "", "12% increased Life Recovery rate", statOrder = { 1489 }, level = 75, group = "LifeRecoveryRate", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, }, + ["LifeRecoveryRateEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% increased Life Recovery rate", statOrder = { 1489 }, level = 75, group = "LifeRecoveryRateUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, }, + ["LifeRecoveryRateEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% increased Life Recovery rate", statOrder = { 1489 }, level = 75, group = "LifeRecoveryRateUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, }, + ["LifeRecoveryRateEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 11% increased Life Recovery rate", statOrder = { 1489 }, level = 75, group = "LifeRecoveryRateUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, }, + ["LifeRecoveryRateEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 12% increased Life Recovery rate", statOrder = { 1489 }, level = 75, group = "LifeRecoveryRateUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, }, + ["LifeRecoveryRateEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 13% increased Life Recovery rate", statOrder = { 1489 }, level = 75, group = "LifeRecoveryRateUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, }, + ["LifeRecoveryRateEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% increased Life Recovery rate", statOrder = { 1489 }, level = 75, group = "LifeRecoveryRateUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, }, + ["LifeRecoveryRateEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% increased Life Recovery rate", statOrder = { 1489 }, level = 75, group = "LifeRecoveryRatePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, }, + ["LifeRecoveryRateEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% increased Life Recovery rate", statOrder = { 1489 }, level = 75, group = "LifeRecoveryRatePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, }, + ["LifeRecoveryRateEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% increased Life Recovery rate", statOrder = { 1489 }, level = 75, group = "LifeRecoveryRatePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, }, + ["LifeRecoveryRateEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% increased Life Recovery rate", statOrder = { 1489 }, level = 75, group = "LifeRecoveryRatePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, }, + ["LifeRecoveryRateEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 15% increased Life Recovery rate", statOrder = { 1489 }, level = 75, group = "LifeRecoveryRatePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, }, + ["LifeRecoveryRateEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Life Recovery rate", statOrder = { 1489 }, level = 75, group = "LifeRecoveryRatePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, }, + ["ManaRecoveryRateEldritchImplicit1"] = { type = "Eater", affix = "", "7% increased Mana Recovery rate", statOrder = { 1497 }, level = 75, group = "ManaRecoveryRate", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "mana" }, }, + ["ManaRecoveryRateEldritchImplicit2"] = { type = "Eater", affix = "", "8% increased Mana Recovery rate", statOrder = { 1497 }, level = 75, group = "ManaRecoveryRate", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "mana" }, }, + ["ManaRecoveryRateEldritchImplicit3"] = { type = "Eater", affix = "", "9% increased Mana Recovery rate", statOrder = { 1497 }, level = 75, group = "ManaRecoveryRate", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "mana" }, }, + ["ManaRecoveryRateEldritchImplicit4"] = { type = "Eater", affix = "", "10% increased Mana Recovery rate", statOrder = { 1497 }, level = 75, group = "ManaRecoveryRate", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "mana" }, }, + ["ManaRecoveryRateEldritchImplicit5"] = { type = "Eater", affix = "", "11% increased Mana Recovery rate", statOrder = { 1497 }, level = 75, group = "ManaRecoveryRate", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "mana" }, }, + ["ManaRecoveryRateEldritchImplicit6"] = { type = "Eater", affix = "", "12% increased Mana Recovery rate", statOrder = { 1497 }, level = 75, group = "ManaRecoveryRate", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "mana" }, }, + ["ManaRecoveryRateEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% increased Mana Recovery rate", statOrder = { 1497 }, level = 75, group = "ManaRecoveryRateUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana" }, }, + ["ManaRecoveryRateEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% increased Mana Recovery rate", statOrder = { 1497 }, level = 75, group = "ManaRecoveryRateUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana" }, }, + ["ManaRecoveryRateEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 11% increased Mana Recovery rate", statOrder = { 1497 }, level = 75, group = "ManaRecoveryRateUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana" }, }, + ["ManaRecoveryRateEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 12% increased Mana Recovery rate", statOrder = { 1497 }, level = 75, group = "ManaRecoveryRateUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana" }, }, + ["ManaRecoveryRateEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 13% increased Mana Recovery rate", statOrder = { 1497 }, level = 75, group = "ManaRecoveryRateUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana" }, }, + ["ManaRecoveryRateEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% increased Mana Recovery rate", statOrder = { 1497 }, level = 75, group = "ManaRecoveryRateUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana" }, }, + ["ManaRecoveryRateEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% increased Mana Recovery rate", statOrder = { 1497 }, level = 75, group = "ManaRecoveryRatePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana" }, }, + ["ManaRecoveryRateEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% increased Mana Recovery rate", statOrder = { 1497 }, level = 75, group = "ManaRecoveryRatePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana" }, }, + ["ManaRecoveryRateEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% increased Mana Recovery rate", statOrder = { 1497 }, level = 75, group = "ManaRecoveryRatePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "mana" }, }, + ["ManaRecoveryRateEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% increased Mana Recovery rate", statOrder = { 1497 }, level = 75, group = "ManaRecoveryRatePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "mana" }, }, + ["ManaRecoveryRateEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 15% increased Mana Recovery rate", statOrder = { 1497 }, level = 75, group = "ManaRecoveryRatePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "mana" }, }, + ["ManaRecoveryRateEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Mana Recovery rate", statOrder = { 1497 }, level = 75, group = "ManaRecoveryRatePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "mana" }, }, + ["EnergyShieldRecoveryRateEldritchImplicit1"] = { type = "Eater", affix = "", "7% increased Energy Shield Recovery rate", statOrder = { 1479 }, level = 75, group = "EnergyShieldRecoveryRate", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldRecoveryRateEldritchImplicit2"] = { type = "Eater", affix = "", "8% increased Energy Shield Recovery rate", statOrder = { 1479 }, level = 75, group = "EnergyShieldRecoveryRate", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldRecoveryRateEldritchImplicit3"] = { type = "Eater", affix = "", "9% increased Energy Shield Recovery rate", statOrder = { 1479 }, level = 75, group = "EnergyShieldRecoveryRate", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldRecoveryRateEldritchImplicit4"] = { type = "Eater", affix = "", "10% increased Energy Shield Recovery rate", statOrder = { 1479 }, level = 75, group = "EnergyShieldRecoveryRate", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldRecoveryRateEldritchImplicit5"] = { type = "Eater", affix = "", "11% increased Energy Shield Recovery rate", statOrder = { 1479 }, level = 75, group = "EnergyShieldRecoveryRate", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldRecoveryRateEldritchImplicit6"] = { type = "Eater", affix = "", "12% increased Energy Shield Recovery rate", statOrder = { 1479 }, level = 75, group = "EnergyShieldRecoveryRate", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldRecoveryRateEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% increased Energy Shield Recovery rate", statOrder = { 1479 }, level = 75, group = "EnergyShieldRecoveryRateUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldRecoveryRateEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% increased Energy Shield Recovery rate", statOrder = { 1479 }, level = 75, group = "EnergyShieldRecoveryRateUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldRecoveryRateEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 11% increased Energy Shield Recovery rate", statOrder = { 1479 }, level = 75, group = "EnergyShieldRecoveryRateUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldRecoveryRateEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 12% increased Energy Shield Recovery rate", statOrder = { 1479 }, level = 75, group = "EnergyShieldRecoveryRateUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldRecoveryRateEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 13% increased Energy Shield Recovery rate", statOrder = { 1479 }, level = 75, group = "EnergyShieldRecoveryRateUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldRecoveryRateEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% increased Energy Shield Recovery rate", statOrder = { 1479 }, level = 75, group = "EnergyShieldRecoveryRateUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldRecoveryRateEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% increased Energy Shield Recovery rate", statOrder = { 1479 }, level = 75, group = "EnergyShieldRecoveryRatePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldRecoveryRateEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% increased Energy Shield Recovery rate", statOrder = { 1479 }, level = 75, group = "EnergyShieldRecoveryRatePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldRecoveryRateEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% increased Energy Shield Recovery rate", statOrder = { 1479 }, level = 75, group = "EnergyShieldRecoveryRatePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldRecoveryRateEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% increased Energy Shield Recovery rate", statOrder = { 1479 }, level = 75, group = "EnergyShieldRecoveryRatePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldRecoveryRateEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 15% increased Energy Shield Recovery rate", statOrder = { 1479 }, level = 75, group = "EnergyShieldRecoveryRatePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldRecoveryRateEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Energy Shield Recovery rate", statOrder = { 1479 }, level = 75, group = "EnergyShieldRecoveryRatePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "defences", "energy_shield" }, }, + ["DamageTakenPerStrengthEldritchImplicit1"] = { type = "Eater", affix = "", "1% less Damage Taken per 230 Strength", statOrder = { 5140 }, level = 75, group = "BodyDamageTakenPerStrength", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["DamageTakenPerStrengthEldritchImplicit2"] = { type = "Eater", affix = "", "1% less Damage Taken per 220 Strength", statOrder = { 5140 }, level = 75, group = "BodyDamageTakenPerStrength", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["DamageTakenPerStrengthEldritchImplicit3"] = { type = "Eater", affix = "", "1% less Damage Taken per 210 Strength", statOrder = { 5140 }, level = 75, group = "BodyDamageTakenPerStrength", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["DamageTakenPerStrengthEldritchImplicit4"] = { type = "Eater", affix = "", "1% less Damage Taken per 200 Strength", statOrder = { 5140 }, level = 75, group = "BodyDamageTakenPerStrength", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["DamageTakenPerStrengthEldritchImplicit5"] = { type = "Eater", affix = "", "1% less Damage Taken per 190 Strength", statOrder = { 5140 }, level = 75, group = "BodyDamageTakenPerStrength", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["DamageTakenPerStrengthEldritchImplicit6"] = { type = "Eater", affix = "", "1% less Damage Taken per 180 Strength", statOrder = { 5140 }, level = 75, group = "BodyDamageTakenPerStrength", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["DamageTakenPerStrengthEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 210 Strength", statOrder = { 5140 }, level = 75, group = "BodyDamageTakenPerStrengthUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["DamageTakenPerStrengthEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 200 Strength", statOrder = { 5140 }, level = 75, group = "BodyDamageTakenPerStrengthUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["DamageTakenPerStrengthEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 190 Strength", statOrder = { 5140 }, level = 75, group = "BodyDamageTakenPerStrengthUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["DamageTakenPerStrengthEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 180 Strength", statOrder = { 5140 }, level = 75, group = "BodyDamageTakenPerStrengthUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["DamageTakenPerStrengthEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 170 Strength", statOrder = { 5140 }, level = 75, group = "BodyDamageTakenPerStrengthUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["DamageTakenPerStrengthEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 160 Strength", statOrder = { 5140 }, level = 75, group = "BodyDamageTakenPerStrengthUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["DamageTakenPerStrengthEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 190 Strength", statOrder = { 5140 }, level = 75, group = "BodyDamageTakenPerStrengthPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["DamageTakenPerStrengthEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 180 Strength", statOrder = { 5140 }, level = 75, group = "BodyDamageTakenPerStrengthPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["DamageTakenPerStrengthEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 170 Strength", statOrder = { 5140 }, level = 75, group = "BodyDamageTakenPerStrengthPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["DamageTakenPerStrengthEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 160 Strength", statOrder = { 5140 }, level = 75, group = "BodyDamageTakenPerStrengthPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["DamageTakenPerStrengthEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 150 Strength", statOrder = { 5140 }, level = 75, group = "BodyDamageTakenPerStrengthPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["DamageTakenPerStrengthEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 140 Strength", statOrder = { 5140 }, level = 75, group = "BodyDamageTakenPerStrengthPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["DamageTakenPerDexterityEldritchImplicit1"] = { type = "Eater", affix = "", "1% less Damage Taken per 230 Dexterity", statOrder = { 5138 }, level = 75, group = "BodyDamageTakenPerDexterity", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["DamageTakenPerDexterityEldritchImplicit2"] = { type = "Eater", affix = "", "1% less Damage Taken per 220 Dexterity", statOrder = { 5138 }, level = 75, group = "BodyDamageTakenPerDexterity", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["DamageTakenPerDexterityEldritchImplicit3"] = { type = "Eater", affix = "", "1% less Damage Taken per 210 Dexterity", statOrder = { 5138 }, level = 75, group = "BodyDamageTakenPerDexterity", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["DamageTakenPerDexterityEldritchImplicit4"] = { type = "Eater", affix = "", "1% less Damage Taken per 200 Dexterity", statOrder = { 5138 }, level = 75, group = "BodyDamageTakenPerDexterity", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["DamageTakenPerDexterityEldritchImplicit5"] = { type = "Eater", affix = "", "1% less Damage Taken per 190 Dexterity", statOrder = { 5138 }, level = 75, group = "BodyDamageTakenPerDexterity", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["DamageTakenPerDexterityEldritchImplicit6"] = { type = "Eater", affix = "", "1% less Damage Taken per 180 Dexterity", statOrder = { 5138 }, level = 75, group = "BodyDamageTakenPerDexterity", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["DamageTakenPerDexterityEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 210 Dexterity", statOrder = { 5138 }, level = 75, group = "BodyDamageTakenPerDexterityUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["DamageTakenPerDexterityEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 200 Dexterity", statOrder = { 5138 }, level = 75, group = "BodyDamageTakenPerDexterityUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["DamageTakenPerDexterityEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 190 Dexterity", statOrder = { 5138 }, level = 75, group = "BodyDamageTakenPerDexterityUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["DamageTakenPerDexterityEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 180 Dexterity", statOrder = { 5138 }, level = 75, group = "BodyDamageTakenPerDexterityUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["DamageTakenPerDexterityEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 170 Dexterity", statOrder = { 5138 }, level = 75, group = "BodyDamageTakenPerDexterityUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["DamageTakenPerDexterityEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 160 Dexterity", statOrder = { 5138 }, level = 75, group = "BodyDamageTakenPerDexterityUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["DamageTakenPerDexterityEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 190 Dexterity", statOrder = { 5138 }, level = 75, group = "BodyDamageTakenPerDexterityPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["DamageTakenPerDexterityEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 180 Dexterity", statOrder = { 5138 }, level = 75, group = "BodyDamageTakenPerDexterityPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["DamageTakenPerDexterityEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 170 Dexterity", statOrder = { 5138 }, level = 75, group = "BodyDamageTakenPerDexterityPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["DamageTakenPerDexterityEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 160 Dexterity", statOrder = { 5138 }, level = 75, group = "BodyDamageTakenPerDexterityPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["DamageTakenPerDexterityEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 150 Dexterity", statOrder = { 5138 }, level = 75, group = "BodyDamageTakenPerDexterityPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["DamageTakenPerDexterityEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 140 Dexterity", statOrder = { 5138 }, level = 75, group = "BodyDamageTakenPerDexterityPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["DamageTakenPerIntelligenceEldritchImplicit1"] = { type = "Eater", affix = "", "1% less Damage Taken per 230 Intelligence", statOrder = { 5139 }, level = 75, group = "BodyDamageTakenPerIntelligence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["DamageTakenPerIntelligenceEldritchImplicit2"] = { type = "Eater", affix = "", "1% less Damage Taken per 220 Intelligence", statOrder = { 5139 }, level = 75, group = "BodyDamageTakenPerIntelligence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["DamageTakenPerIntelligenceEldritchImplicit3"] = { type = "Eater", affix = "", "1% less Damage Taken per 210 Intelligence", statOrder = { 5139 }, level = 75, group = "BodyDamageTakenPerIntelligence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["DamageTakenPerIntelligenceEldritchImplicit4"] = { type = "Eater", affix = "", "1% less Damage Taken per 200 Intelligence", statOrder = { 5139 }, level = 75, group = "BodyDamageTakenPerIntelligence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["DamageTakenPerIntelligenceEldritchImplicit5"] = { type = "Eater", affix = "", "1% less Damage Taken per 190 Intelligence", statOrder = { 5139 }, level = 75, group = "BodyDamageTakenPerIntelligence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["DamageTakenPerIntelligenceEldritchImplicit6"] = { type = "Eater", affix = "", "1% less Damage Taken per 180 Intelligence", statOrder = { 5139 }, level = 75, group = "BodyDamageTakenPerIntelligence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["DamageTakenPerIntelligenceEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 210 Intelligence", statOrder = { 5139 }, level = 75, group = "BodyDamageTakenPerIntelligenceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["DamageTakenPerIntelligenceEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 200 Intelligence", statOrder = { 5139 }, level = 75, group = "BodyDamageTakenPerIntelligenceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["DamageTakenPerIntelligenceEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 190 Intelligence", statOrder = { 5139 }, level = 75, group = "BodyDamageTakenPerIntelligenceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["DamageTakenPerIntelligenceEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 180 Intelligence", statOrder = { 5139 }, level = 75, group = "BodyDamageTakenPerIntelligenceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["DamageTakenPerIntelligenceEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 170 Intelligence", statOrder = { 5139 }, level = 75, group = "BodyDamageTakenPerIntelligenceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["DamageTakenPerIntelligenceEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 160 Intelligence", statOrder = { 5139 }, level = 75, group = "BodyDamageTakenPerIntelligenceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["DamageTakenPerIntelligenceEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 190 Intelligence", statOrder = { 5139 }, level = 75, group = "BodyDamageTakenPerIntelligencePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["DamageTakenPerIntelligenceEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 180 Intelligence", statOrder = { 5139 }, level = 75, group = "BodyDamageTakenPerIntelligencePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["DamageTakenPerIntelligenceEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 170 Intelligence", statOrder = { 5139 }, level = 75, group = "BodyDamageTakenPerIntelligencePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["DamageTakenPerIntelligenceEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 160 Intelligence", statOrder = { 5139 }, level = 75, group = "BodyDamageTakenPerIntelligencePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["DamageTakenPerIntelligenceEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 150 Intelligence", statOrder = { 5139 }, level = 75, group = "BodyDamageTakenPerIntelligencePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["DamageTakenPerIntelligenceEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 140 Intelligence", statOrder = { 5139 }, level = 75, group = "BodyDamageTakenPerIntelligencePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["SkillEffectDurationEldritchImplicit1"] = { type = "Eater", affix = "", "(7-8)% increased Skill Effect Duration", statOrder = { 1806 }, level = 75, group = "SkillEffectDuration", weightKey = { "no_tier_6_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["SkillEffectDurationEldritchImplicit2"] = { type = "Eater", affix = "", "(9-10)% increased Skill Effect Duration", statOrder = { 1806 }, level = 75, group = "SkillEffectDuration", weightKey = { "no_tier_5_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["SkillEffectDurationEldritchImplicit3"] = { type = "Eater", affix = "", "(11-12)% increased Skill Effect Duration", statOrder = { 1806 }, level = 75, group = "SkillEffectDuration", weightKey = { "no_tier_4_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["SkillEffectDurationEldritchImplicit4"] = { type = "Eater", affix = "", "(13-14)% increased Skill Effect Duration", statOrder = { 1806 }, level = 75, group = "SkillEffectDuration", weightKey = { "no_tier_3_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["SkillEffectDurationEldritchImplicit5"] = { type = "Eater", affix = "", "(15-16)% increased Skill Effect Duration", statOrder = { 1806 }, level = 75, group = "SkillEffectDuration", weightKey = { "no_tier_2_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["SkillEffectDurationEldritchImplicit6"] = { type = "Eater", affix = "", "(17-18)% increased Skill Effect Duration", statOrder = { 1806 }, level = 75, group = "SkillEffectDuration", weightKey = { "no_tier_1_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["SkillEffectDurationUniquePresence1"] = { type = "Eater", affix = "", "(13-14)% increased Skill Effect Duration", statOrder = { 1806 }, level = 75, group = "SkillEffectDurationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["SkillEffectDurationUniquePresence2"] = { type = "Eater", affix = "", "(15-16)% increased Skill Effect Duration", statOrder = { 1806 }, level = 75, group = "SkillEffectDurationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["SkillEffectDurationUniquePresence3"] = { type = "Eater", affix = "", "(17-18)% increased Skill Effect Duration", statOrder = { 1806 }, level = 75, group = "SkillEffectDurationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["SkillEffectDurationUniquePresence4"] = { type = "Eater", affix = "", "(19-20)% increased Skill Effect Duration", statOrder = { 1806 }, level = 75, group = "SkillEffectDurationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["SkillEffectDurationUniquePresence5"] = { type = "Eater", affix = "", "(21-22)% increased Skill Effect Duration", statOrder = { 1806 }, level = 75, group = "SkillEffectDurationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["SkillEffectDurationUniquePresence6"] = { type = "Eater", affix = "", "(23-24)% increased Skill Effect Duration", statOrder = { 1806 }, level = 75, group = "SkillEffectDurationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["SkillEffectDurationPinnaclePresence1"] = { type = "Eater", affix = "", "(19-20)% increased Skill Effect Duration", statOrder = { 1806 }, level = 75, group = "SkillEffectDurationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["SkillEffectDurationPinnaclePresence2"] = { type = "Eater", affix = "", "(21-22)% increased Skill Effect Duration", statOrder = { 1806 }, level = 75, group = "SkillEffectDurationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["SkillEffectDurationPinnaclePresence3"] = { type = "Eater", affix = "", "(23-24)% increased Skill Effect Duration", statOrder = { 1806 }, level = 75, group = "SkillEffectDurationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["SkillEffectDurationPinnaclePresence4"] = { type = "Eater", affix = "", "(25-26)% increased Skill Effect Duration", statOrder = { 1806 }, level = 75, group = "SkillEffectDurationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["SkillEffectDurationPinnaclePresence5"] = { type = "Eater", affix = "", "(27-28)% increased Skill Effect Duration", statOrder = { 1806 }, level = 75, group = "SkillEffectDurationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["SkillEffectDurationPinnaclePresence6"] = { type = "Eater", affix = "", "(29-30)% increased Skill Effect Duration", statOrder = { 1806 }, level = 75, group = "SkillEffectDurationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["RecombinatorSpecialMaximumEnduranceCharge"] = { type = "Prefix", affix = "Sentinel's", "+1 to Maximum Endurance Charges", statOrder = { 1715 }, level = 68, group = "MaximumEnduranceCharges", weightKey = { "default", }, weightVal = { 0 }, modTags = { "endurance_charge" }, }, + ["RecombinatorSpecialMaximumFrenzyCharge"] = { type = "Prefix", affix = "Sentinel's", "+1 to Maximum Frenzy Charges", statOrder = { 1720 }, level = 68, group = "MaximumFrenzyCharges", weightKey = { "default", }, weightVal = { 0 }, modTags = { "frenzy_charge" }, }, + ["RecombinatorSpecialMaximumPowerCharge"] = { type = "Prefix", affix = "Sentinel's", "+1 to Maximum Power Charges", statOrder = { 1725 }, level = 68, group = "IncreasedMaximumPowerCharges", weightKey = { "default", }, weightVal = { 0 }, modTags = { "power_charge" }, }, + ["RecombinatorSpecialKeystoneMinionInstability"] = { type = "Suffix", affix = "of the Sentinel", "Minion Instability", statOrder = { 10570 }, level = 68, group = "MinionInstability", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "minion" }, }, + ["RecombinatorSpecialKeystoneResoluteTechnique"] = { type = "Suffix", affix = "of the Sentinel", "Resolute Technique", statOrder = { 10598 }, level = 68, group = "ResoluteTechnique", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "critical" }, }, + ["RecombinatorSpecialKeystoneBloodMagic"] = { type = "Suffix", affix = "of the Sentinel", "Blood Magic", statOrder = { 10545 }, level = 68, group = "BloodMagic", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "mana" }, }, + ["RecombinatorSpecialKeystonePainAttunement"] = { type = "Suffix", affix = "of the Sentinel", "Pain Attunement", statOrder = { 10572 }, level = 68, group = "PainAttunement", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["RecombinatorSpecialKeystoneElementalEquilibrium"] = { type = "Suffix", affix = "of the Sentinel", "Elemental Equilibrium", statOrder = { 10554 }, level = 68, group = "ElementalEquilibrium", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["RecombinatorSpecialKeystoneIronGrip"] = { type = "Suffix", affix = "of the Sentinel", "Iron Grip", statOrder = { 10588 }, level = 68, group = "IronGrip", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack" }, }, + ["RecombinatorSpecialKeystonePointBlank"] = { type = "Suffix", affix = "of the Sentinel", "Point Blank", statOrder = { 10573 }, level = 68, group = "PointBlank", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack" }, }, + ["RecombinatorSpecialKeystoneAcrobatics"] = { type = "Suffix", affix = "of the Sentinel", "Acrobatics", statOrder = { 10540 }, level = 68, group = "Acrobatics", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["RecombinatorSpecialKeystoneGhostReaver"] = { type = "Suffix", affix = "of the Sentinel", "Ghost Reaver", statOrder = { 10560 }, level = 68, group = "KeystoneGhostReaver", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "energy_shield" }, }, + ["RecombinatorSpecialKeystoneVaalPact"] = { type = "Suffix", affix = "of the Sentinel", "Vaal Pact", statOrder = { 10592 }, level = 68, group = "VaalPact", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, + ["RecombinatorSpecialKeystoneElementalOverload"] = { type = "Suffix", affix = "of the Sentinel", "Elemental Overload", statOrder = { 10555 }, level = 68, group = "ElementalOverload", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "critical" }, }, + ["RecombinatorSpecialKeystoneAvatarOfFire"] = { type = "Suffix", affix = "of the Sentinel", "Avatar of Fire", statOrder = { 10543 }, level = 68, group = "AvatarOfFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["RecombinatorSpecialKeystoneEldritchBattery"] = { type = "Suffix", affix = "of the Sentinel", "Eldritch Battery", statOrder = { 10553 }, level = 68, group = "EldritchBattery", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, + ["RecombinatorSpecialKeystoneAncestralBond"] = { type = "Suffix", affix = "of the Sentinel", "Ancestral Bond", statOrder = { 10542 }, level = 68, group = "AncestralBond", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, }, + ["RecombinatorSpecialKeystoneCrimsonDance"] = { type = "Suffix", affix = "of the Sentinel", "Crimson Dance", statOrder = { 10550 }, level = 68, group = "CrimsonDance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["RecombinatorSpecialKeystonePerfectAgony"] = { type = "Suffix", affix = "of the Sentinel", "Perfect Agony", statOrder = { 10541 }, level = 68, group = "PerfectAgony", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "critical", "ailment" }, }, + ["RecombinatorSpecialKeystoneRunebinder"] = { type = "Suffix", affix = "of the Sentinel", "Runebinder", statOrder = { 10580 }, level = 68, group = "Runebinder", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster" }, }, + ["RecombinatorSpecialKeystoneMortalConviction"] = { type = "Suffix", affix = "of the Sentinel", "Blood Magic", statOrder = { 10545 }, level = 68, group = "BloodMagic", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "mana" }, }, + ["RecombinatorSpecialKeystoneCallToArms"] = { type = "Suffix", affix = "of the Sentinel", "Call to Arms", statOrder = { 10546 }, level = 68, group = "CallToArms", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["RecombinatorSpecialKeystoneTheAgnostic"] = { type = "Suffix", affix = "of the Sentinel", "The Agnostic", statOrder = { 10571 }, level = 68, group = "TheAgnostic", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "mana", "defences", "energy_shield" }, }, + ["RecombinatorSpecialKeystoneSupremeEgo"] = { type = "Suffix", affix = "of the Sentinel", "Supreme Ego", statOrder = { 10589 }, level = 68, group = "SupremeEgo", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "aura" }, }, + ["RecombinatorSpecialKeystoneTheImpaler"] = { type = "Suffix", affix = "of the Sentinel", "The Impaler", statOrder = { 10565 }, level = 68, group = "Impaler", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["RecombinatorSpecialKeystoneDoomsday"] = { type = "Suffix", affix = "of the Sentinel", "Hex Master", statOrder = { 10563 }, level = 68, group = "HexMaster", weightKey = { "default", }, weightVal = { 0 }, modTags = { "curse" }, }, + ["RecombinatorSpecialKeystoneLetheShade1"] = { type = "Suffix", affix = "of the Sentinel", "Lethe Shade", statOrder = { 10567 }, level = 68, group = "LetheShade", weightKey = { "default", }, weightVal = { 0 }, modTags = { "ailment" }, }, + ["RecombinatorSpecialKeystoneGhostDance"] = { type = "Suffix", affix = "of the Sentinel", "Ghost Dance", statOrder = { 10559 }, level = 68, group = "GhostDance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["RecombinatorSpecialKeystoneVersatileCombatant"] = { type = "Suffix", affix = "of the Sentinel", "Versatile Combatant", statOrder = { 10593 }, level = 68, group = "VersatileCombatant", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, + ["RecombinatorSpecialKeystoneMagebane"] = { type = "Suffix", affix = "of the Sentinel", "Magebane", statOrder = { 10568 }, level = 68, group = "Magebane", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["RecombinatorSpecialKeystoneSolipsism"] = { type = "Suffix", affix = "of the Sentinel", "Solipsism", statOrder = { 10586 }, level = 68, group = "Solipsism", weightKey = { "default", }, weightVal = { 0 }, modTags = { "ailment" }, }, + ["RecombinatorSpecialKeystoneDivineShield"] = { type = "Suffix", affix = "of the Sentinel", "Divine Shield", statOrder = { 10552 }, level = 68, group = "DivineShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, + ["RecombinatorSpecialKeystoneIronWill"] = { type = "Suffix", affix = "of the Sentinel", "Iron Will", statOrder = { 10599 }, level = 68, group = "IronWill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster" }, }, + ["RecombinatorSpecialMagicUtilityFlaskEffect"] = { type = "Prefix", affix = "Sentinel's", "Magic Utility Flasks applied to you have (20-25)% increased Effect", statOrder = { 2653 }, level = 68, group = "MagicUtilityFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, }, + ["RecombinatorSpecialAuraEffect"] = { type = "Suffix", affix = "of the Sentinel", "(15-20)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3474 }, level = 68, group = "AuraEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "aura" }, }, + ["RecombinatorSpecialFireDamageToAttacksPerStrength"] = { type = "Prefix", affix = "Sentinel's", "Adds 2 to 4 Fire Damage to Attacks per 10 Strength", statOrder = { 9050 }, level = 68, group = "FireDamageToAttacksPerStrength", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "attack" }, }, + ["RecombinatorSpecialColdDamageToAttacksPerDexterity"] = { type = "Prefix", affix = "Sentinel's", "Adds 2 to 4 Cold Damage to Attacks per 10 Dexterity", statOrder = { 9042 }, level = 68, group = "ColdDamageToAttacksPerDexterity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "attack" }, }, + ["RecombinatorSpecialLightningDamageToAttacksPerIntelligence"] = { type = "Prefix", affix = "Sentinel's", "Adds 1 to 5 Lightning Damage to Attacks per 10 Intelligence", statOrder = { 9055 }, level = 68, group = "LightningDamageToAttacksPerIntelligence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "attack" }, }, + ["RecombinatorSpecialAllFireDamageCanShock"] = { type = "Suffix", affix = "of the Sentinel", "Your Fire Damage can Shock", statOrder = { 2786 }, level = 68, group = "AllFireDamageCanShock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "lightning", "ailment" }, }, + ["RecombinatorSpecialAllColdDamageCanIgnite"] = { type = "Suffix", affix = "of the Sentinel", "Your Cold Damage can Ignite", statOrder = { 2781 }, level = 68, group = "AllColdDamageCanIgnite", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "ailment" }, }, + ["RecombinatorSpecialAllLightningDamageCanFreeze"] = { type = "Suffix", affix = "of the Sentinel", "Your Lightning Damage can Freeze", statOrder = { 2793 }, level = 68, group = "AllLightningDamageCanFreeze", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "lightning", "ailment" }, }, + ["RecombinatorSpecialMarkEffect"] = { type = "Suffix", affix = "of the Sentinel", "(30-40)% increased Effect of your Marks", statOrder = { 2507 }, level = 68, group = "MarkEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, }, + ["RecombinatorSpecialArcaneSurgeEffect1H"] = { type = "Suffix", affix = "of the Sentinel", "(30-40)% increased Effect of Arcane Surge on you", statOrder = { 3196 }, level = 68, group = "ArcaneSurgeEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["RecombinatorSpecialArcaneSurgeEffect2H"] = { type = "Suffix", affix = "of the Sentinel", "(50-70)% increased Effect of Arcane Surge on you", statOrder = { 3196 }, level = 68, group = "ArcaneSurgeEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["RecombinatorSpecialOnslaughtEffect1H"] = { type = "Suffix", affix = "of the Sentinel", "(30-40)% increased Effect of Onslaught on you", statOrder = { 3198 }, level = 68, group = "OnslaughtEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["RecombinatorSpecialOnslaughtEffect2H"] = { type = "Suffix", affix = "of the Sentinel", "(50-70)% increased Effect of Onslaught on you", statOrder = { 3198 }, level = 68, group = "OnslaughtEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["RecombinatorSpecialIncreasedDamageVsWarcryTauntedEnemies1H"] = { type = "Suffix", affix = "of the Sentinel", "Enemies Taunted by your Warcries take (10-15)% increased Damage", statOrder = { 10140 }, level = 68, group = "WarcryTauntedEnemiesTakeIncreasedDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, }, + ["RecombinatorSpecialIncreasedDamageVsWarcryTauntedEnemies2H"] = { type = "Suffix", affix = "of the Sentinel", "Enemies Taunted by your Warcries take (20-25)% increased Damage", statOrder = { 10140 }, level = 68, group = "WarcryTauntedEnemiesTakeIncreasedDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, }, + ["RecombinatorSpecialSupportedByLevelFourEnlighten"] = { type = "Prefix", affix = "Sentinel's", "Socketed Gems are Supported by Level 4 Enlighten", statOrder = { 239 }, level = 68, group = "SupportedByEnlighten", weightKey = { "default", }, weightVal = { 0 }, modTags = { "support", "gem" }, }, + ["RecombinatorSpecialSupportedByLevelFourEnhance"] = { type = "Prefix", affix = "Sentinel's", "Socketed Gems are Supported by Level 4 Enhance", statOrder = { 238 }, level = 68, group = "SupportedByEnhance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "support", "gem" }, }, + ["RecombinatorSpecialSupportedByLevelFourEmpower"] = { type = "Prefix", affix = "Sentinel's", "Socketed Gems are Supported by Level 4 Empower", statOrder = { 236 }, level = 68, group = "SupportedByEmpower", weightKey = { "default", }, weightVal = { 0 }, modTags = { "support", "gem" }, }, + ["RecombinatorSpecialTriggerSkillsDoubleDamage"] = { type = "Prefix", affix = "Sentinel's", "Socketed Triggered Skills deal Double Damage", statOrder = { 336 }, level = 68, group = "SocketedTriggeredSkillsDoubleDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "support", "damage", "gem" }, }, + ["LifeRegeneration1Inverted"] = { type = "Suffix", affix = "of the Newt", "Lose (1-2) Life per second", statOrder = { 1486 }, level = 1, group = "LifeDegenerationGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["LifeRegeneration2Inverted"] = { type = "Suffix", affix = "of the Lizard", "Lose (2.1-8) Life per second", statOrder = { 1486 }, level = 7, group = "LifeDegenerationGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["LifeRegeneration3Inverted"] = { type = "Suffix", affix = "of the Flatworm", "Lose (8.1-16) Life per second", statOrder = { 1486 }, level = 19, group = "LifeDegenerationGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["LifeRegeneration4Inverted"] = { type = "Suffix", affix = "of the Starfish", "Lose (16.1-24) Life per second", statOrder = { 1486 }, level = 31, group = "LifeDegenerationGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["LifeRegeneration5Inverted"] = { type = "Suffix", affix = "of the Hydra", "Lose (24.1-32) Life per second", statOrder = { 1486 }, level = 44, group = "LifeDegenerationGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["LifeRegeneration6Inverted"] = { type = "Suffix", affix = "of the Troll", "Lose (32.1-48) Life per second", statOrder = { 1486 }, level = 55, group = "LifeDegenerationGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["LifeRegeneration7Inverted"] = { type = "Suffix", affix = "of Ryslatha", "Lose (48.1-64) Life per second", statOrder = { 1486 }, level = 68, group = "LifeDegenerationGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["LifeRegeneration8Inverted"] = { type = "Suffix", affix = "of the Phoenix", "Lose (64.1-96) Life per second", statOrder = { 1486 }, level = 74, group = "LifeDegenerationGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["AddedPhysicalDamage1Inverted"] = { type = "Prefix", affix = "Glinting", "Adds 1 to 2 Physical Damage to Attacks against you", statOrder = { 1179 }, level = 5, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamage2Inverted"] = { type = "Prefix", affix = "Burnished", "Adds (2-3) to (4-5) Physical Damage to Attacks against you", statOrder = { 1179 }, level = 13, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamage3Inverted"] = { type = "Prefix", affix = "Polished", "Adds (3-4) to (6-7) Physical Damage to Attacks against you", statOrder = { 1179 }, level = 19, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamage4Inverted"] = { type = "Prefix", affix = "Honed", "Adds (4-6) to (9-10) Physical Damage to Attacks against you", statOrder = { 1179 }, level = 28, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamage5Inverted"] = { type = "Prefix", affix = "Gleaming", "Adds (5-7) to (11-12) Physical Damage to Attacks against you", statOrder = { 1179 }, level = 35, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamage6Inverted"] = { type = "Prefix", affix = "Annealed", "Adds (6-9) to (13-15) Physical Damage to Attacks against you", statOrder = { 1179 }, level = 44, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamage7Inverted"] = { type = "Prefix", affix = "Razor-sharp", "Adds (7-10) to (15-18) Physical Damage to Attacks against you", statOrder = { 1179 }, level = 52, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamage8Inverted"] = { type = "Prefix", affix = "Tempered", "Adds (9-12) to (19-22) Physical Damage to Attacks against you", statOrder = { 1179 }, level = 64, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamage9Inverted"] = { type = "Prefix", affix = "Flaring", "Adds (11-15) to (22-26) Physical Damage to Attacks against you", statOrder = { 1179 }, level = 76, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedFireDamage1Inverted"] = { type = "Prefix", affix = "Heated", "Adds 1 to 2 Fire Damage to Attacks against you", statOrder = { 1272 }, level = 1, group = "SelfFireDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedFireDamage2Inverted"] = { type = "Prefix", affix = "Smouldering", "Adds (3-5) to (7-8) Fire Damage to Attacks against you", statOrder = { 1272 }, level = 12, group = "SelfFireDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedFireDamage3Inverted"] = { type = "Prefix", affix = "Smoking", "Adds (5-7) to (11-13) Fire Damage to Attacks against you", statOrder = { 1272 }, level = 20, group = "SelfFireDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedFireDamage4Inverted"] = { type = "Prefix", affix = "Burning", "Adds (7-10) to (15-18) Fire Damage to Attacks against you", statOrder = { 1272 }, level = 28, group = "SelfFireDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedFireDamage5Inverted"] = { type = "Prefix", affix = "Flaming", "Adds (9-12) to (19-22) Fire Damage to Attacks against you", statOrder = { 1272 }, level = 35, group = "SelfFireDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedFireDamage6Inverted"] = { type = "Prefix", affix = "Scorching", "Adds (11-15) to (23-27) Fire Damage to Attacks against you", statOrder = { 1272 }, level = 44, group = "SelfFireDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedFireDamage7Inverted"] = { type = "Prefix", affix = "Incinerating", "Adds (13-18) to (27-31) Fire Damage to Attacks against you", statOrder = { 1272 }, level = 52, group = "SelfFireDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedFireDamage8Inverted"] = { type = "Prefix", affix = "Blasting", "Adds (16-22) to (32-38) Fire Damage to Attacks against you", statOrder = { 1272 }, level = 64, group = "SelfFireDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedFireDamage9Inverted"] = { type = "Prefix", affix = "Cremating", "Adds (19-25) to (39-45) Fire Damage to Attacks against you", statOrder = { 1272 }, level = 76, group = "SelfFireDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedColdDamage1Inverted"] = { type = "Prefix", affix = "Frosted", "Adds 1 to 2 Cold Damage to Attacks against you", statOrder = { 1281 }, level = 2, group = "SelfColdDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedColdDamage2Inverted"] = { type = "Prefix", affix = "Chilled", "Adds (3-4) to (7-8) Cold Damage to Attacks against you", statOrder = { 1281 }, level = 13, group = "SelfColdDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedColdDamage3Inverted"] = { type = "Prefix", affix = "Icy", "Adds (5-7) to (10-12) Cold Damage to Attacks against you", statOrder = { 1281 }, level = 21, group = "SelfColdDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedColdDamage4Inverted"] = { type = "Prefix", affix = "Frigid", "Adds (6-9) to (13-16) Cold Damage to Attacks against you", statOrder = { 1281 }, level = 29, group = "SelfColdDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedColdDamage5Inverted"] = { type = "Prefix", affix = "Freezing", "Adds (8-11) to (16-19) Cold Damage to Attacks against you", statOrder = { 1281 }, level = 36, group = "SelfColdDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedColdDamage6Inverted"] = { type = "Prefix", affix = "Frozen", "Adds (10-13) to (20-24) Cold Damage to Attacks against you", statOrder = { 1281 }, level = 45, group = "SelfColdDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedColdDamage7Inverted"] = { type = "Prefix", affix = "Glaciated", "Adds (12-16) to (24-28) Cold Damage to Attacks against you", statOrder = { 1281 }, level = 53, group = "SelfColdDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedColdDamage8Inverted"] = { type = "Prefix", affix = "Polar", "Adds (14-19) to (29-34) Cold Damage to Attacks against you", statOrder = { 1281 }, level = 65, group = "SelfColdDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedColdDamage9Inverted"] = { type = "Prefix", affix = "Entombing", "Adds (17-22) to (34-40) Cold Damage to Attacks against you", statOrder = { 1281 }, level = 77, group = "SelfColdDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedLightningDamage1Inverted"] = { type = "Prefix", affix = "Humming", "Adds 1 to 5 Lightning Damage to Attacks against you", statOrder = { 1292 }, level = 3, group = "SelfLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamage2Inverted"] = { type = "Prefix", affix = "Buzzing", "Adds 1 to (14-15) Lightning Damage to Attacks against you", statOrder = { 1292 }, level = 13, group = "SelfLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamage3Inverted"] = { type = "Prefix", affix = "Snapping", "Adds (1-2) to (22-23) Lightning Damage to Attacks against you", statOrder = { 1292 }, level = 22, group = "SelfLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamage4Inverted"] = { type = "Prefix", affix = "Crackling", "Adds (1-2) to (27-28) Lightning Damage to Attacks against you", statOrder = { 1292 }, level = 28, group = "SelfLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamage5Inverted"] = { type = "Prefix", affix = "Sparking", "Adds (1-3) to (33-34) Lightning Damage to Attacks against you", statOrder = { 1292 }, level = 35, group = "SelfLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamage6Inverted"] = { type = "Prefix", affix = "Arcing", "Adds (1-4) to (40-43) Lightning Damage to Attacks against you", statOrder = { 1292 }, level = 44, group = "SelfLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamage7Inverted"] = { type = "Prefix", affix = "Shocking", "Adds (2-5) to (47-50) Lightning Damage to Attacks against you", statOrder = { 1292 }, level = 52, group = "SelfLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamage8Inverted"] = { type = "Prefix", affix = "Discharging", "Adds (3-6) to (57-61) Lightning Damage to Attacks against you", statOrder = { 1292 }, level = 64, group = "SelfLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamage9Inverted"] = { type = "Prefix", affix = "Electrocuting", "Adds (3-7) to (68-72) Lightning Damage to Attacks against you", statOrder = { 1292 }, level = 76, group = "SelfLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["LifeLeechPermyriad1Inverted"] = { type = "Prefix", affix = "Remora's", "(0.2-0.4)% of Physical Attack Damage Leeched by Enemy as Life", statOrder = { 1559 }, level = 50, group = "EnemyLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriad2Inverted"] = { type = "Prefix", affix = "Lamprey's", "(0.6-0.8)% of Physical Attack Damage Leeched by Enemy as Life", statOrder = { 1559 }, level = 60, group = "EnemyLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriad3Inverted"] = { type = "Prefix", affix = "Vampire's", "(1-1.2)% of Physical Attack Damage Leeched by Enemy as Life", statOrder = { 1559 }, level = 70, group = "EnemyLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadSuffix1Inverted"] = { type = "Suffix", affix = "of the Remora", "(0.2-0.4)% of Physical Attack Damage Leeched by Enemy as Life", statOrder = { 1559 }, level = 50, group = "EnemyLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadSuffix2Inverted"] = { type = "Suffix", affix = "of the Lamprey", "(0.6-0.8)% of Physical Attack Damage Leeched by Enemy as Life", statOrder = { 1559 }, level = 60, group = "EnemyLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadSuffix3Inverted"] = { type = "Suffix", affix = "of the Vampire", "(1-1.2)% of Physical Attack Damage Leeched by Enemy as Life", statOrder = { 1559 }, level = 70, group = "EnemyLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["ManaLeechPermyriad1Inverted"] = { type = "Prefix", affix = "Thirsty", "(0.2-0.4)% of Physical Attack Damage Leeched by Enemy as Mana", statOrder = { 1609 }, level = 50, group = "EnemyManaLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, }, + ["ManaLeechPermyriad2Inverted"] = { type = "Prefix", affix = "Parched", "(0.6-0.8)% of Physical Attack Damage Leeched by Enemy as Mana", statOrder = { 1609 }, level = 70, group = "EnemyManaLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, }, + ["ManaLeechPermyriadSuffix1Inverted"] = { type = "Suffix", affix = "of Thirst", "(0.2-0.4)% of Physical Attack Damage Leeched by Enemy as Mana", statOrder = { 1609 }, level = 50, group = "EnemyManaLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, }, + ["ManaLeechPermyriadSuffix2Inverted"] = { type = "Suffix", affix = "of Parching", "(0.6-0.8)% of Physical Attack Damage Leeched by Enemy as Mana", statOrder = { 1609 }, level = 70, group = "EnemyManaLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, }, + ["LifeRegenerationEnhancedLevel50ModInverted"] = { type = "Suffix", affix = "of Guatelitzi", "Lose (32-40) Life per second", "Lose 0.4% of Life per second", statOrder = { 1486, 1852 }, level = 50, group = "LifeDegenerationAndPercentGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, + ["IncreasedEnergyShieldEnhancedLevel50ModRegenInverted"] = { type = "Prefix", affix = "Guatelitzi's", "+(44-47) to maximum Energy Shield", "Lose 0.4% of Energy Shield per second", statOrder = { 1469, 2555 }, level = 50, group = "EnergyShieldAndDegenGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, + ["FireResistEnhancedLevel50ModLeechInverted"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Fire Resistance", "0.4% of Fire Damage Leeched by Enemy as Life", statOrder = { 1536, 1582 }, level = 50, group = "FireResistanceEnemyLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "fire", "resistance" }, }, + ["ColdResistEnhancedLevel50ModLeechInverted"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Cold Resistance", "0.4% of Cold Damage Leeched by Enemy as Life", statOrder = { 1542, 1587 }, level = 50, group = "ColdResistanceEnemyLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "cold", "resistance" }, }, + ["LightningResistEnhancedLevel50ModLeechInverted"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Lightning Resistance", "0.4% of Lightning Damage Leeched by Enemy as Life", statOrder = { 1547, 1591 }, level = 50, group = "LightningResistanceEnemyLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "lightning", "resistance" }, }, + ["IncreasedManaEnhancedLevel50ModRegenInverted"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "Lose (5-7) Mana per second", statOrder = { 1490, 1494 }, level = 50, group = "IncreasedManaAndDegenGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaEnhancedLevel50ModCostNewInverted"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "Non-Channelling Skills Cost -(8-6) Mana", statOrder = { 1490, 9847 }, level = 50, group = "IncreasedManaAndBaseCost", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, + ["AddedPhysicalDamageEssenceAmulet7Inverted"] = { type = "Prefix", affix = "Essences", "Adds (16-18) to (27-30) Physical Damage to Attacks against you", statOrder = { 1179 }, level = 82, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamageEssenceRing5Inverted"] = { type = "Prefix", affix = "Essences", "Adds (6-8) to (12-13) Physical Damage to Attacks against you", statOrder = { 1179 }, level = 58, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamageEssenceRing6Inverted"] = { type = "Prefix", affix = "Essences", "Adds (7-9) to (13-15) Physical Damage to Attacks against you", statOrder = { 1179 }, level = 74, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamageEssenceRing7Inverted"] = { type = "Prefix", affix = "Essences", "Adds (10-11) to (16-17) Physical Damage to Attacks against you", statOrder = { 1179 }, level = 82, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedFireDamageEssence7Inverted"] = { type = "Prefix", affix = "Essences", "Adds (23-27) to (43-48) Fire Damage to Attacks against you", statOrder = { 1272 }, level = 82, group = "SelfFireDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedColdDamageEssence7Inverted"] = { type = "Prefix", affix = "Essences", "Adds (20-24) to (38-44) Cold Damage to Attacks against you", statOrder = { 1281 }, level = 82, group = "SelfColdDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedLightningDamageEssence7Inverted"] = { type = "Prefix", affix = "Essences", "Adds (4-8) to (71-76) Lightning Damage to Attacks against you", statOrder = { 1292 }, level = 82, group = "SelfLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["FireDamageAsPortionOfPhysicalDamageEssence1Inverted"] = { type = "Prefix", affix = "Essences", "Hits against you gain 10% of Physical Damage as Extra Fire Damage", statOrder = { 1840 }, level = 63, group = "SelfPhysAsExtraFireTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["AddedColdDamagePerFrenzyChargeEssence1Inverted"] = { type = "Prefix", affix = "Essences", "Adds 4 to 7 Cold Damage to Hits against you per Frenzy Charge", statOrder = { 4179 }, level = 63, group = "SelfColdDamageTakenPerFrenzy", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ChanceToRecoverManaOnSkillUseEssence1Inverted"] = { type = "Suffix", affix = "of the Essence", "10% chance to lose 10% of Mana when you use a Skill", statOrder = { 3382 }, level = 63, group = "ChanceToLoseManaOnSkillUse", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, + ["PhysicalDamageLifeLeechDelveInverted"] = { type = "Prefix", affix = "Subterranean", "0.4% of Physical Damage Leeched by Enemy as Life", statOrder = { 1578 }, level = 60, group = "EnemyPhysicalDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["FireDamageLifeLeechDelveInverted"] = { type = "Prefix", affix = "Subterranean", "0.4% of Fire Damage Leeched by Enemy as Life", statOrder = { 1582 }, level = 60, group = "EnemyFireDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["ColdDamageLifeLeechDelveInverted"] = { type = "Prefix", affix = "Subterranean", "0.4% of Cold Damage Leeched by Enemy as Life", statOrder = { 1587 }, level = 60, group = "EnemyColdDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["LightningDamageLifeLeechDelveInverted"] = { type = "Prefix", affix = "Subterranean", "0.4% of Lightning Damage Leeched by Enemy as Life", statOrder = { 1591 }, level = 60, group = "EnemyLightningDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["ChaosDamageLifeLeechDelveInverted"] = { type = "Prefix", affix = "Subterranean", "0.4% of Chaos Damage Leeched by Enemy as Life", statOrder = { 1594 }, level = 60, group = "EnemyChaosDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["AddedManaRegenerationDelveInverted"] = { type = "Suffix", affix = "of the Underground", "Lose (3-5) Mana per second", statOrder = { 1494 }, level = 60, group = "ManaDegenerationGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, + ["NecropolisCraftingAllResistancesWithChaos"] = { type = "Suffix", affix = "of Haunting", "+(12-16)% to All Resistances", statOrder = { 9708 }, level = 12, group = "AllResistancesWithChaos", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "resistance" }, }, + ["NecropolisCraftingFireResistanceCannotBePenetrated"] = { type = "Suffix", affix = "of Haunting", "Fire Resistance cannot be Penetrated", statOrder = { 6470 }, level = 68, group = "FireResistanceCannotBePenetrated", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "fire", "resistance" }, }, + ["NecropolisCraftingColdResistanceCannotBePenetrated"] = { type = "Suffix", affix = "of Haunting", "Cold Resistance cannot be Penetrated", statOrder = { 5731 }, level = 68, group = "ColdResistanceCannotBePenetrated", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "cold", "resistance" }, }, + ["NecropolisCraftingLightningResistanceCannotBePenetrated"] = { type = "Suffix", affix = "of Haunting", "Lightning Resistance cannot be Penetrated", statOrder = { 7322 }, level = 68, group = "LightningResistanceCannotBePenetrated", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "lightning", "resistance" }, }, + ["NecropolisCraftingLocalNoAttributeRequirements"] = { type = "Suffix", affix = "of Haunting", "Has no Attribute Requirements", statOrder = { 995 }, level = 50, group = "LocalNoAttributeRequirements", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod" }, }, + ["NecropolisCraftingDamageTakenGainedAsLife"] = { type = "Suffix", affix = "of Haunting", "(25-35)% of Damage taken Recouped as Life", statOrder = { 6000 }, level = 45, group = "DamageTakenGainedAsLife", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 350, 0 }, modTags = { "resource", "necropolis_exclusive_mod", "life" }, }, + ["NecropolisCraftingPercentDamageGoesToMana"] = { type = "Suffix", affix = "of Haunting", "(25-35)% of Damage taken Recouped as Mana", statOrder = { 2364 }, level = 45, group = "PercentDamageGoesToMana", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 350, 0 }, modTags = { "resource", "necropolis_exclusive_mod", "mana" }, }, ["NecropolisCraftingLocalCanSocketIgnoringColour"] = { type = "Suffix", affix = "of Haunting", "Gems can be Socketed in this Item ignoring Socket Colour", statOrder = { 71 }, level = 1, group = "LocalCanSocketIgnoringColour", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod" }, }, - ["NecropolisCraftingReducedExtraDamageFromCrits"] = { type = "Suffix", affix = "of Haunting", "You take (40-60)% reduced Extra Damage from Critical Strikes", statOrder = { 1395 }, level = 24, group = "ReducedExtraDamageFromCrits", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod", "damage", "critical" }, }, - ["NecropolisCraftingManaReservationEfficiency"] = { type = "Suffix", affix = "of Haunting", "(10-15)% increased Mana Reservation Efficiency of Skills", statOrder = { 2105 }, level = 24, group = "ManaReservationEfficiency", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "necropolis_exclusive_mod", "mana" }, }, - ["NecropolisCraftingLifeReservationEfficiency"] = { type = "Suffix", affix = "of Haunting", "(20-30)% increased Life Reservation Efficiency of Skills", statOrder = { 2103 }, level = 34, group = "LifeReservationEfficiency", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "necropolis_exclusive_mod", "life" }, }, - ["NecropolisCraftingCorruptedBloodImmunity"] = { type = "Suffix", affix = "of Haunting", "Corrupted Blood cannot be inflicted on you", statOrder = { 5116 }, level = 60, group = "CorruptedBloodImmunity", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 250, 0 }, modTags = { "bleed", "necropolis_exclusive_mod", "physical", "ailment" }, }, - ["NecropolisCraftingIncreasedStunThreshold"] = { type = "Suffix", affix = "of Haunting", "(80-120)% increased Stun Threshold", statOrder = { 3138 }, level = 1, group = "IncreasedStunThreshold", weightKey = { "necropolis_boots", "default", }, weightVal = { 750, 0 }, modTags = { "necropolis_exclusive_mod" }, }, - ["NecropolisCraftingCannotBeKnockedBack"] = { type = "Prefix", affix = "Haunted", "Cannot be Knocked Back", statOrder = { 1404 }, level = 50, group = "CannotBeKnockedBack", weightKey = { "necropolis_boots", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod" }, }, - ["NecropolisCraftingMaximumEnduranceCharges"] = { type = "Prefix", affix = "Haunted", "+1 to Maximum Endurance Charges", statOrder = { 1685 }, level = 16, group = "MaximumEnduranceCharges", weightKey = { "necropolis_boots", "default", }, weightVal = { 250, 0 }, modTags = { "endurance_charge", "necropolis_exclusive_mod" }, }, - ["NecropolisCraftingNoExtraBleedDamageWhileMoving"] = { type = "Suffix", affix = "of Haunting", "Moving while Bleeding doesn't cause you to take extra Damage", statOrder = { 3058 }, level = 34, group = "NoExtraBleedDamageWhileMoving", weightKey = { "necropolis_boots", "default", }, weightVal = { 250, 0 }, modTags = { "bleed", "necropolis_exclusive_mod", "physical", "attack", "ailment" }, }, - ["NecropolisCraftingAvoidIgnite"] = { type = "Suffix", affix = "of Haunting", "(60-75)% chance to Avoid being Ignited", statOrder = { 1727 }, level = 16, group = "AvoidIgnite", weightKey = { "necropolis_boots", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "fire", "ailment" }, }, - ["NecropolisCraftingAvoidFreeze"] = { type = "Suffix", affix = "of Haunting", "(60-75)% chance to Avoid being Frozen", statOrder = { 1726 }, level = 16, group = "AvoidFreeze", weightKey = { "necropolis_boots", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "cold", "ailment" }, }, - ["NecropolisCraftingAvoidShock"] = { type = "Suffix", affix = "of Haunting", "(60-75)% chance to Avoid being Shocked", statOrder = { 1729 }, level = 16, group = "AvoidShock", weightKey = { "necropolis_boots", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "lightning", "ailment" }, }, - ["NecropolisCraftingReducedBleedDuration"] = { type = "Suffix", affix = "of Haunting", "(60-75)% reduced Bleed Duration on you", statOrder = { 9458 }, level = 24, group = "ReducedBleedDuration", weightKey = { "necropolis_boots", "default", }, weightVal = { 350, 0 }, modTags = { "bleed", "necropolis_exclusive_mod", "physical", "ailment" }, }, - ["NecropolisCraftingReducedPoisonDuration"] = { type = "Suffix", affix = "of Haunting", "(60-75)% reduced Poison Duration on you", statOrder = { 9467 }, level = 24, group = "ReducedPoisonDuration", weightKey = { "necropolis_boots", "default", }, weightVal = { 350, 0 }, modTags = { "poison", "necropolis_exclusive_mod", "chaos", "ailment" }, }, - ["NecropolisCraftingBurningGroundEffectEffectiveness"] = { type = "Prefix", affix = "Haunted", "Unaffected by Burning Ground", statOrder = { 9931 }, level = 68, group = "BurningGroundEffectEffectiveness", weightKey = { "necropolis_boots", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "fire" }, }, - ["NecropolisCraftingShockedGroundEffectEffectiveness"] = { type = "Prefix", affix = "Haunted", "Unaffected by Shocked Ground", statOrder = { 9956 }, level = 68, group = "ShockedGroundEffectEffectiveness", weightKey = { "necropolis_boots", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "lightning", "ailment" }, }, - ["NecropolisCraftingChilledGroundEffectEffectiveness"] = { type = "Prefix", affix = "Haunted", "Unaffected by Chilled Ground", statOrder = { 9936 }, level = 68, group = "ChilledGroundEffectEffectiveness", weightKey = { "necropolis_boots", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "cold", "ailment" }, }, - ["NecropolisCraftingDesecratedGroundEffectEffectiveness"] = { type = "Prefix", affix = "Haunted", "Unaffected by Desecrated Ground", statOrder = { 9942 }, level = 68, group = "DesecratedGroundEffectEffectiveness", weightKey = { "necropolis_boots", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "chaos" }, }, - ["NecropolisCraftingMovementCannotBeSlowedBelowBase"] = { type = "Prefix", affix = "Haunted", "Movement Speed cannot be modified to below Base Value", statOrder = { 3062 }, level = 45, group = "MovementCannotBeSlowedBelowBase", weightKey = { "necropolis_boots", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "speed" }, }, - ["NecropolisCraftingWarcriesOpenChests"] = { type = "Prefix", affix = "Haunted", "Your Warcries open Chests", statOrder = { 9071 }, level = 24, group = "WarcriesOpenChests", weightKey = { "necropolis_helmet", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod" }, }, - ["NecropolisCraftingIncreasedMaximumPowerCharges"] = { type = "Prefix", affix = "Haunted", "+1 to Maximum Power Charges", statOrder = { 1695 }, level = 16, group = "IncreasedMaximumPowerCharges", weightKey = { "necropolis_helmet", "default", }, weightVal = { 250, 0 }, modTags = { "power_charge", "necropolis_exclusive_mod" }, }, - ["NecropolisCraftingCriticalStrikeChance"] = { type = "Suffix", affix = "of Haunting", "(30-50)% increased Global Critical Strike Chance", statOrder = { 1343 }, level = 1, group = "CriticalStrikeChance", weightKey = { "necropolis_helmet", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod", "critical" }, }, - ["NecropolisCraftingManaRegeneration"] = { type = "Suffix", affix = "of Haunting", "(40-60)% increased Mana Regeneration Rate", statOrder = { 1466 }, level = 1, group = "ManaRegeneration", weightKey = { "necropolis_helmet", "default", }, weightVal = { 750, 0 }, modTags = { "resource", "necropolis_exclusive_mod", "mana" }, }, - ["NecropolisCraftingImmunityToBlind"] = { type = "Suffix", affix = "of Haunting", "Cannot be Blinded", statOrder = { 2846 }, level = 38, group = "ImmunityToBlind", weightKey = { "necropolis_helmet", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod" }, }, - ["NecropolisCraftingManaPer2Intelligence"] = { type = "Prefix", affix = "Haunted", "+1 to maximum Mana per 2 Intelligence", statOrder = { 8718 }, level = 68, group = "ManaPer2Intelligence", weightKey = { "necropolis_helmet", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "necropolis_exclusive_mod", "mana" }, }, - ["NecropolisCraftingAccuracyPer2Dexterity"] = { type = "Suffix", affix = "of Haunting", "+2 to Accuracy Rating per 2 Dexterity", statOrder = { 4374 }, level = 68, group = "AccuracyPer2Dexterity", weightKey = { "necropolis_helmet", "default", }, weightVal = { 100, 0 }, modTags = { "necropolis_exclusive_mod", "attack" }, }, - ["NecropolisCraftingSpellDamage"] = { type = "Prefix", affix = "Haunted", "(20-30)% increased Spell Damage", statOrder = { 1108 }, level = 1, group = "SpellDamage", weightKey = { "necropolis_helmet", "default", }, weightVal = { 750, 0 }, modTags = { "caster_damage", "necropolis_exclusive_mod", "damage", "caster" }, }, - ["NecropolisCraftingIncreasedCastSpeed"] = { type = "Suffix", affix = "of Haunting", "(8-12)% increased Cast Speed", statOrder = { 1330 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "necropolis_helmet", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod", "caster", "speed" }, }, - ["NecropolisCraftingArcaneSurgeOnSpendingMana"] = { type = "Suffix", affix = "of Haunting", "Gain Arcane Surge after Spending a total of 400 Mana", statOrder = { 6775 }, level = 34, group = "ArcaneSurgeOnSpendingMana", weightKey = { "necropolis_helmet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "necropolis_exclusive_mod", "mana" }, }, - ["NecropolisCraftingAreaOfEffect"] = { type = "Suffix", affix = "of Haunting", "(15-25)% increased Area of Effect", statOrder = { 1761 }, level = 12, group = "AreaOfEffect", weightKey = { "necropolis_helmet", "default", }, weightVal = { 750, 0 }, modTags = { "necropolis_exclusive_mod" }, }, - ["NecropolisCraftingCurseEffectiveness"] = { type = "Suffix", affix = "of Haunting", "(5-8)% increased Effect of your Curses", statOrder = { 2472 }, level = 24, group = "CurseEffectiveness", weightKey = { "necropolis_helmet", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "caster", "curse" }, }, - ["NecropolisCraftingMaximumFrenzyCharges"] = { type = "Prefix", affix = "Haunted", "+1 to Maximum Frenzy Charges", statOrder = { 1690 }, level = 16, group = "MaximumFrenzyCharges", weightKey = { "necropolis_gloves", "default", }, weightVal = { 250, 0 }, modTags = { "frenzy_charge", "necropolis_exclusive_mod" }, }, - ["NecropolisCraftingChaosDamage"] = { type = "Prefix", affix = "Haunted", "Adds (13-17) to (23-29) Chaos Damage to Attacks", statOrder = { 1271 }, level = 1, group = "ChaosDamage", weightKey = { "necropolis_gloves", "default", }, weightVal = { 750, 0 }, modTags = { "chaos_damage", "necropolis_exclusive_mod", "damage", "chaos", "attack" }, }, - ["NecropolisCraftingCriticalStrikeMultiplier"] = { type = "Suffix", affix = "of Haunting", "+(15-25)% to Global Critical Strike Multiplier", statOrder = { 1372 }, level = 24, group = "CriticalStrikeMultiplier", weightKey = { "necropolis_gloves", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod", "damage", "critical" }, }, - ["NecropolisCraftingPoisonOnHit"] = { type = "Suffix", affix = "of Haunting", "(15-25)% chance to Poison on Hit", statOrder = { 3039 }, level = 16, group = "PoisonOnHit", weightKey = { "necropolis_gloves", "default", }, weightVal = { 500, 0 }, modTags = { "poison", "necropolis_exclusive_mod", "chaos", "ailment" }, }, - ["NecropolisCraftingPoisonDuration"] = { type = "Suffix", affix = "of Haunting", "(12-20)% increased Poison Duration", statOrder = { 3036 }, level = 38, group = "PoisonDuration", weightKey = { "necropolis_gloves", "default", }, weightVal = { 250, 0 }, modTags = { "poison", "necropolis_exclusive_mod", "chaos", "ailment" }, }, - ["NecropolisCraftingChanceToBleed"] = { type = "Suffix", affix = "of Haunting", "Attacks have (15-25)% chance to cause Bleeding", statOrder = { 2365 }, level = 16, group = "ChanceToBleed", weightKey = { "necropolis_gloves", "default", }, weightVal = { 500, 0 }, modTags = { "bleed", "necropolis_exclusive_mod", "physical", "attack", "ailment" }, }, - ["NecropolisCraftingFasterBleedDamage"] = { type = "Suffix", affix = "of Haunting", "Bleeding you inflict deals Damage (12-20)% faster", statOrder = { 6214 }, level = 38, group = "FasterBleedDamage", weightKey = { "necropolis_gloves", "default", }, weightVal = { 250, 0 }, modTags = { "physical_damage", "bleed", "necropolis_exclusive_mod", "damage", "physical", "attack", "ailment" }, }, - ["NecropolisCraftingGlobalChanceToBlindOnHit"] = { type = "Suffix", affix = "of Haunting", "(15-25)% Global chance to Blind Enemies on hit", statOrder = { 2830 }, level = 16, group = "GlobalChanceToBlindOnHit", weightKey = { "necropolis_gloves", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod" }, }, - ["NecropolisCraftingGlobalMaimOnHit"] = { type = "Suffix", affix = "of Haunting", "Attacks have (15-25)% chance to Maim on Hit", statOrder = { 7728 }, level = 34, group = "GlobalMaimOnHit", weightKey = { "necropolis_gloves", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod", "attack" }, }, - ["NecropolisCraftingSpellsHinderOnHitChance"] = { type = "Suffix", affix = "of Haunting", "(15-25)% chance to Hinder Enemies on Hit with Spells", statOrder = { 9670 }, level = 34, group = "SpellsHinderOnHitChance", weightKey = { "necropolis_gloves", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod", "caster" }, }, - ["NecropolisCraftingMeleeKnockback"] = { type = "Suffix", affix = "of Haunting", "Melee Attacks Knock Enemies Back on Hit", statOrder = { 8736 }, level = 45, group = "MeleeKnockback", weightKey = { "necropolis_gloves", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "attack" }, }, - ["NecropolisCraftingIntimidateOnHit"] = { type = "Suffix", affix = "of Haunting", "(15-25)% chance to Intimidate Enemies for 4 seconds on Hit with Attacks", statOrder = { 4741 }, level = 38, group = "IntimidateOnHit", weightKey = { "necropolis_gloves", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "attack" }, }, - ["NecropolisCraftingSpellUnnerveOnHit"] = { type = "Suffix", affix = "of Haunting", "(15-25)% chance to Unnerve Enemies for 4 seconds on Hit with Spells", statOrder = { 5435 }, level = 38, group = "SpellUnnerveOnHit", weightKey = { "necropolis_gloves", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "caster" }, }, - ["WeaponSpellDamageTriggerSkillOnWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Tacati's", "Trigger a Socketed Spell on Using a Skill, with a 4 second Cooldown", "Spells Triggered this way have 150% more Cost", "(70-74)% increased Spell Damage", statOrder = { 725, 725.1, 1108 }, level = 50, group = "WeaponSpellDamageTriggerSkill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "caster_damage", "damage", "caster", "gem" }, }, - ["WeaponSpellDamageTriggerSkillOnTwoHandWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Tacati's", "Trigger a Socketed Spell on Using a Skill, with a 4 second Cooldown", "Spells Triggered this way have 150% more Cost", "(105-110)% increased Spell Damage", statOrder = { 725, 725.1, 1108 }, level = 50, group = "WeaponSpellDamageTriggerSkill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "caster_damage", "damage", "caster", "gem" }, }, - ["MercenaryModLightningSkillManaCostWhileShocked"] = { type = "Suffix", affix = "of Infamy", "40% less Mana cost of Lightning Skills while Shocked", statOrder = { 7078 }, level = 68, group = "LightningSkillManaCostWhileShocked", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "elemental", "lightning" }, }, - ["MercenaryModTravelSkillCrit"] = { type = "Prefix", affix = "Infamous", "Your Travel Skills Critically Strike once every 3 uses", statOrder = { 9901 }, level = 68, group = "TravelSkillCrit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, }, - ["MercenaryModRecoupWhileFrozen"] = { type = "Suffix", affix = "of Infamy", "(50-90)% of Damage taken while Frozen Recouped as Life", statOrder = { 5821 }, level = 68, group = "RecoupWhileFrozen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, - ["MercenaryModSkipSacrifice"] = { type = "Suffix", affix = "of Infamy", "(20-40)% chance on Skill use to not Sacrifice Life but", "still gain benefits as though you had", statOrder = { 9558, 9558.1 }, level = 68, group = "SkipSacrifice", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, - ["MercenaryModMinionFireConvertToChaos"] = { type = "Prefix", affix = "Infamous", "Minions convert 100% of Fire Damage to Chaos Damage", statOrder = { 8818 }, level = 68, group = "MinionFireConvertToChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "chaos", "minion" }, }, - ["MercenaryModRecentMinionCrit"] = { type = "Suffix", affix = "of Infamy", "Minions created Recently have (60-100)% increased Critical Hit Chance", statOrder = { 8875 }, level = 68, group = "RecentMinionCrit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion", "critical" }, }, - ["MercenaryModTrapMineChain"] = { type = "Suffix", affix = "of Infamy", "Skills used by your Traps and Mines Chain 2 additional times", statOrder = { 9893 }, level = 68, group = "TrapMineChain", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["MercenaryModMineLifeReserve"] = { type = "Prefix", affix = "Infamous", "Your Skills that throw Mines reserve Life instead of Mana", statOrder = { 9557 }, level = 68, group = "MineLifeReserve", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, - ["MercenaryModProjSpeedVariance"] = { type = "Suffix", affix = "of Infamy", "Each Projectile created by Attacks you make with a Melee Weapon has", "between 50% more and 50% less Projectile Speed at random", statOrder = { 9246, 9246.1 }, level = 68, group = "MeleeProjSpeedVariance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, - ["MercenaryModMaxBlades"] = { type = "Prefix", affix = "Infamous", "Skills that leave Lingering Blades have +(5-10) to Maximum Lingering Blades", statOrder = { 8721 }, level = 68, group = "MaxBlades", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["MercenaryModDebilitate"] = { type = "Prefix", affix = "Infamous", "Debuffs on you expire (80-100)% faster", "You are Debilitated", statOrder = { 5847, 9463 }, level = 68, group = "SelfDebilitate", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["MercenaryModAshWarcries"] = { type = "Suffix", affix = "of Infamy", "Your Warcries cover Enemies in Ash for 5 seconds", statOrder = { 10029 }, level = 68, group = "CoverInAshWarcry", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire" }, }, - ["MercenaryModRageDecaySpeed"] = { type = "Prefix", affix = "Infamous", "Inherent loss of Rage is 20% slower", statOrder = { 9293 }, level = 68, group = "RageDecaySpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["MercenaryModAddCritPerExert"] = { type = "Suffix", affix = "of Infamy", "Skills have +(2-3)% to Critical Strike Chance for each Warcry Exerting them", statOrder = { 4406 }, level = 68, group = "AddCritPerExert", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, }, - ["MercenaryModLGOHIgnitedEnemies"] = { type = "Suffix", affix = "of Infamy", "Gain (5-10) Life for each Ignited Enemy hit with Attacks", statOrder = { 1624 }, level = 68, group = "LifeGainOnHitVsIgnitedEnemies", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, - ["MercenaryModFortificationDamageAura"] = { type = "Suffix", affix = "of Infamy", "Nearby Enemies take 1% increased Physical Damage per two Fortification on you", statOrder = { 8984 }, level = 68, group = "FortificationDamageAura", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, }, - ["MercenaryModLifeCostOnLowLife"] = { type = "Suffix", affix = "of Infamy", "30% less Life cost of Skills while on Low Life", statOrder = { 9545 }, level = 68, group = "LifeCostOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, - ["MercenaryModMinionCDR"] = { type = "Suffix", affix = "of Infamy", "Minions have 20% increased Cooldown Recovery Rate", statOrder = { 8828 }, level = 68, group = "MinionCooldownRecovery", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, }, - ["MercenaryModConsecratedChaosRes"] = { type = "Suffix", affix = "of Infamy", "Consecrated Ground you create grants +(1-3)% maximum Chaos Resistance to you and Allies", statOrder = { 10143 }, level = 68, group = "ConsecratedChaosRes", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos" }, }, - ["MercenaryModImpaleEffectFromDistance"] = { type = "Suffix", affix = "of Infamy", "Projectiles gain Impale effect as they travel farther, causing Impales they inflict to have up to 40% increased effect", statOrder = { 6876 }, level = 68, group = "ImpaleEffectFromDistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, }, - ["MercenaryModClonesInheritGloves"] = { type = "Prefix", affix = "Infamous", "Your Blink and Mirror arrow clones use your Gloves", statOrder = { 5035 }, level = 68, group = "ClonesInheritGloves", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, }, - ["MercenaryModSingleProjAOE"] = { type = "Suffix", affix = "of Infamy", "30% more Area of Effect with Bow Attacks that fire a single Projectile", statOrder = { 4551 }, level = 68, group = "SingleProjAOE", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["MercenaryModSpellslingerReservation"] = { type = "Suffix", affix = "of Infamy", "20% increased Mana Reservation Efficiency of Skills Supported by Spellslinger", statOrder = { 9681 }, level = 68, group = "EnchantmentSpellslingerManaReservationEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "attack", "caster" }, }, - ["MercenaryModMaimDOT"] = { type = "Suffix", affix = "of Infamy", "Enemies Maimed by you take 10% increased Damage Over Time", statOrder = { 6095 }, level = 68, group = "EnchantmentMaim", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, }, - ["MercenaryModUnaffectedShock"] = { type = "Suffix", affix = "of Infamy", "Unaffected by Shock while Channelling", statOrder = { 9954 }, level = 68, group = "UnaffectedByShockWhileChannel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning" }, }, - ["MercenaryModCurseEffect"] = { type = "Prefix", affix = "Infamous", "20% reduced Curse Duration", "15% increased Effect of your Curses", statOrder = { 1662, 2472 }, level = 68, group = "CurseEffectReduceCurseDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "curse" }, }, - ["MercenaryModCurseChillingAreas"] = { type = "Prefix", affix = "Infamous", "Curses on Enemies in your Chilling Areas have 15% increased Effect", statOrder = { 5484 }, level = 68, group = "CurseEffectChillingAreas", weightKey = { "default", }, weightVal = { 0 }, modTags = { "curse" }, }, + ["NecropolisCraftingReducedExtraDamageFromCrits"] = { type = "Suffix", affix = "of Haunting", "You take (40-60)% reduced Extra Damage from Critical Strikes", statOrder = { 1423 }, level = 24, group = "ReducedExtraDamageFromCrits", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod", "damage", "critical" }, }, + ["NecropolisCraftingManaReservationEfficiency"] = { type = "Suffix", affix = "of Haunting", "(10-15)% increased Mana Reservation Efficiency of Skills", statOrder = { 2137 }, level = 24, group = "ManaReservationEfficiency", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "necropolis_exclusive_mod", "mana" }, }, + ["NecropolisCraftingLifeReservationEfficiency"] = { type = "Suffix", affix = "of Haunting", "(20-30)% increased Life Reservation Efficiency of Skills", statOrder = { 2135 }, level = 34, group = "LifeReservationEfficiency", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "necropolis_exclusive_mod", "life" }, }, + ["NecropolisCraftingCorruptedBloodImmunity"] = { type = "Suffix", affix = "of Haunting", "Corrupted Blood cannot be inflicted on you", statOrder = { 5301 }, level = 60, group = "CorruptedBloodImmunity", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 250, 0 }, modTags = { "bleed", "necropolis_exclusive_mod", "physical", "ailment" }, }, + ["NecropolisCraftingIncreasedStunThreshold"] = { type = "Suffix", affix = "of Haunting", "(80-120)% increased Stun Threshold", statOrder = { 3180 }, level = 1, group = "IncreasedStunThreshold", weightKey = { "necropolis_boots", "default", }, weightVal = { 750, 0 }, modTags = { "necropolis_exclusive_mod" }, }, + ["NecropolisCraftingCannotBeKnockedBack"] = { type = "Prefix", affix = "Haunted", "Cannot be Knocked Back", statOrder = { 1432 }, level = 50, group = "CannotBeKnockedBack", weightKey = { "necropolis_boots", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod" }, }, + ["NecropolisCraftingMaximumEnduranceCharges"] = { type = "Prefix", affix = "Haunted", "+1 to Maximum Endurance Charges", statOrder = { 1715 }, level = 16, group = "MaximumEnduranceCharges", weightKey = { "necropolis_boots", "default", }, weightVal = { 250, 0 }, modTags = { "endurance_charge", "necropolis_exclusive_mod" }, }, + ["NecropolisCraftingNoExtraBleedDamageWhileMoving"] = { type = "Suffix", affix = "of Haunting", "Moving while Bleeding doesn't cause you to take extra Damage", statOrder = { 3100 }, level = 34, group = "NoExtraBleedDamageWhileMoving", weightKey = { "necropolis_boots", "default", }, weightVal = { 250, 0 }, modTags = { "bleed", "necropolis_exclusive_mod", "physical", "attack", "ailment" }, }, + ["NecropolisCraftingAvoidIgnite"] = { type = "Suffix", affix = "of Haunting", "(60-75)% chance to Avoid being Ignited", statOrder = { 1757 }, level = 16, group = "AvoidIgnite", weightKey = { "necropolis_boots", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "fire", "ailment" }, }, + ["NecropolisCraftingAvoidFreeze"] = { type = "Suffix", affix = "of Haunting", "(60-75)% chance to Avoid being Frozen", statOrder = { 1756 }, level = 16, group = "AvoidFreeze", weightKey = { "necropolis_boots", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "cold", "ailment" }, }, + ["NecropolisCraftingAvoidShock"] = { type = "Suffix", affix = "of Haunting", "(60-75)% chance to Avoid being Shocked", statOrder = { 1759 }, level = 16, group = "AvoidShock", weightKey = { "necropolis_boots", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "lightning", "ailment" }, }, + ["NecropolisCraftingReducedBleedDuration"] = { type = "Suffix", affix = "of Haunting", "(60-75)% reduced Bleed Duration on you", statOrder = { 9753 }, level = 24, group = "ReducedBleedDuration", weightKey = { "necropolis_boots", "default", }, weightVal = { 350, 0 }, modTags = { "bleed", "necropolis_exclusive_mod", "physical", "ailment" }, }, + ["NecropolisCraftingReducedPoisonDuration"] = { type = "Suffix", affix = "of Haunting", "(60-75)% reduced Poison Duration on you", statOrder = { 9762 }, level = 24, group = "ReducedPoisonDuration", weightKey = { "necropolis_boots", "default", }, weightVal = { 350, 0 }, modTags = { "poison", "necropolis_exclusive_mod", "chaos", "ailment" }, }, + ["NecropolisCraftingBurningGroundEffectEffectiveness"] = { type = "Prefix", affix = "Haunted", "Unaffected by Burning Ground", statOrder = { 10239 }, level = 68, group = "BurningGroundEffectEffectiveness", weightKey = { "necropolis_boots", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "fire" }, }, + ["NecropolisCraftingShockedGroundEffectEffectiveness"] = { type = "Prefix", affix = "Haunted", "Unaffected by Shocked Ground", statOrder = { 10264 }, level = 68, group = "ShockedGroundEffectEffectiveness", weightKey = { "necropolis_boots", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "lightning", "ailment" }, }, + ["NecropolisCraftingChilledGroundEffectEffectiveness"] = { type = "Prefix", affix = "Haunted", "Unaffected by Chilled Ground", statOrder = { 10244 }, level = 68, group = "ChilledGroundEffectEffectiveness", weightKey = { "necropolis_boots", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "cold", "ailment" }, }, + ["NecropolisCraftingDesecratedGroundEffectEffectiveness"] = { type = "Prefix", affix = "Haunted", "Unaffected by Desecrated Ground", statOrder = { 10250 }, level = 68, group = "DesecratedGroundEffectEffectiveness", weightKey = { "necropolis_boots", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "chaos" }, }, + ["NecropolisCraftingMovementCannotBeSlowedBelowBase"] = { type = "Prefix", affix = "Haunted", "Movement Speed cannot be modified to below Base Value", statOrder = { 3104 }, level = 45, group = "MovementCannotBeSlowedBelowBase", weightKey = { "necropolis_boots", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "speed" }, }, + ["NecropolisCraftingWarcriesOpenChests"] = { type = "Prefix", affix = "Haunted", "Your Warcries open Chests", statOrder = { 9352 }, level = 24, group = "WarcriesOpenChests", weightKey = { "necropolis_helmet", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod" }, }, + ["NecropolisCraftingIncreasedMaximumPowerCharges"] = { type = "Prefix", affix = "Haunted", "+1 to Maximum Power Charges", statOrder = { 1725 }, level = 16, group = "IncreasedMaximumPowerCharges", weightKey = { "necropolis_helmet", "default", }, weightVal = { 250, 0 }, modTags = { "power_charge", "necropolis_exclusive_mod" }, }, + ["NecropolisCraftingCriticalStrikeChance"] = { type = "Suffix", affix = "of Haunting", "(30-50)% increased Global Critical Strike Chance", statOrder = { 1370 }, level = 1, group = "CriticalStrikeChance", weightKey = { "necropolis_helmet", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod", "critical" }, }, + ["NecropolisCraftingManaRegeneration"] = { type = "Suffix", affix = "of Haunting", "(40-60)% increased Mana Regeneration Rate", statOrder = { 1495 }, level = 1, group = "ManaRegeneration", weightKey = { "necropolis_helmet", "default", }, weightVal = { 750, 0 }, modTags = { "resource", "necropolis_exclusive_mod", "mana" }, }, + ["NecropolisCraftingImmunityToBlind"] = { type = "Suffix", affix = "of Haunting", "Cannot be Blinded", statOrder = { 2883 }, level = 38, group = "ImmunityToBlind", weightKey = { "necropolis_helmet", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod" }, }, + ["NecropolisCraftingManaPer2Intelligence"] = { type = "Prefix", affix = "Haunted", "+1 to maximum Mana per 2 Intelligence", statOrder = { 8984 }, level = 68, group = "ManaPer2Intelligence", weightKey = { "necropolis_helmet", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "necropolis_exclusive_mod", "mana" }, }, + ["NecropolisCraftingAccuracyPer2Dexterity"] = { type = "Suffix", affix = "of Haunting", "+2 to Accuracy Rating per 2 Dexterity", statOrder = { 4421 }, level = 68, group = "AccuracyPer2Dexterity", weightKey = { "necropolis_helmet", "default", }, weightVal = { 100, 0 }, modTags = { "necropolis_exclusive_mod", "attack" }, }, + ["NecropolisCraftingSpellDamage"] = { type = "Prefix", affix = "Haunted", "(20-30)% increased Spell Damage", statOrder = { 1135 }, level = 1, group = "SpellDamage", weightKey = { "necropolis_helmet", "default", }, weightVal = { 750, 0 }, modTags = { "caster_damage", "necropolis_exclusive_mod", "damage", "caster" }, }, + ["NecropolisCraftingIncreasedCastSpeed"] = { type = "Suffix", affix = "of Haunting", "(8-12)% increased Cast Speed", statOrder = { 1357 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "necropolis_helmet", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod", "caster", "speed" }, }, + ["NecropolisCraftingArcaneSurgeOnSpendingMana"] = { type = "Suffix", affix = "of Haunting", "Gain Arcane Surge after Spending a total of 400 Mana", statOrder = { 7008 }, level = 34, group = "ArcaneSurgeOnSpendingMana", weightKey = { "necropolis_helmet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "necropolis_exclusive_mod", "mana" }, }, + ["NecropolisCraftingAreaOfEffect"] = { type = "Suffix", affix = "of Haunting", "(15-25)% increased Area of Effect", statOrder = { 1791 }, level = 12, group = "AreaOfEffect", weightKey = { "necropolis_helmet", "default", }, weightVal = { 750, 0 }, modTags = { "necropolis_exclusive_mod" }, }, + ["NecropolisCraftingCurseEffectiveness"] = { type = "Suffix", affix = "of Haunting", "(5-8)% increased Effect of your Curses", statOrder = { 2505 }, level = 24, group = "CurseEffectiveness", weightKey = { "necropolis_helmet", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "caster", "curse" }, }, + ["NecropolisCraftingMaximumFrenzyCharges"] = { type = "Prefix", affix = "Haunted", "+1 to Maximum Frenzy Charges", statOrder = { 1720 }, level = 16, group = "MaximumFrenzyCharges", weightKey = { "necropolis_gloves", "default", }, weightVal = { 250, 0 }, modTags = { "frenzy_charge", "necropolis_exclusive_mod" }, }, + ["NecropolisCraftingChaosDamage"] = { type = "Prefix", affix = "Haunted", "Adds (13-17) to (23-29) Chaos Damage to Attacks", statOrder = { 1298 }, level = 1, group = "ChaosDamage", weightKey = { "necropolis_gloves", "default", }, weightVal = { 750, 0 }, modTags = { "chaos_damage", "necropolis_exclusive_mod", "damage", "chaos", "attack" }, }, + ["NecropolisCraftingCriticalStrikeMultiplier"] = { type = "Suffix", affix = "of Haunting", "+(15-25)% to Global Critical Strike Multiplier", statOrder = { 1399 }, level = 24, group = "CriticalStrikeMultiplier", weightKey = { "necropolis_gloves", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod", "damage", "critical" }, }, + ["NecropolisCraftingPoisonOnHit"] = { type = "Suffix", affix = "of Haunting", "(15-25)% chance to Poison on Hit", statOrder = { 3081 }, level = 16, group = "PoisonOnHit", weightKey = { "necropolis_gloves", "default", }, weightVal = { 500, 0 }, modTags = { "poison", "necropolis_exclusive_mod", "chaos", "ailment" }, }, + ["NecropolisCraftingPoisonDuration"] = { type = "Suffix", affix = "of Haunting", "(12-20)% increased Poison Duration", statOrder = { 3078 }, level = 38, group = "PoisonDuration", weightKey = { "necropolis_gloves", "default", }, weightVal = { 250, 0 }, modTags = { "poison", "necropolis_exclusive_mod", "chaos", "ailment" }, }, + ["NecropolisCraftingChanceToBleed"] = { type = "Suffix", affix = "of Haunting", "Attacks have (15-25)% chance to cause Bleeding", statOrder = { 2398 }, level = 16, group = "ChanceToBleed", weightKey = { "necropolis_gloves", "default", }, weightVal = { 500, 0 }, modTags = { "bleed", "necropolis_exclusive_mod", "physical", "attack", "ailment" }, }, + ["NecropolisCraftingFasterBleedDamage"] = { type = "Suffix", affix = "of Haunting", "Bleeding you inflict deals Damage (12-20)% faster", statOrder = { 6430 }, level = 38, group = "FasterBleedDamage", weightKey = { "necropolis_gloves", "default", }, weightVal = { 250, 0 }, modTags = { "physical_damage", "bleed", "necropolis_exclusive_mod", "damage", "physical", "attack", "ailment" }, }, + ["NecropolisCraftingGlobalChanceToBlindOnHit"] = { type = "Suffix", affix = "of Haunting", "(15-25)% Global chance to Blind Enemies on hit", statOrder = { 2867 }, level = 16, group = "GlobalChanceToBlindOnHit", weightKey = { "necropolis_gloves", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod" }, }, + ["NecropolisCraftingGlobalMaimOnHit"] = { type = "Suffix", affix = "of Haunting", "Attacks have (15-25)% chance to Maim on Hit", statOrder = { 7987 }, level = 34, group = "GlobalMaimOnHit", weightKey = { "necropolis_gloves", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod", "attack" }, }, + ["NecropolisCraftingSpellsHinderOnHitChance"] = { type = "Suffix", affix = "of Haunting", "(15-25)% chance to Hinder Enemies on Hit with Spells", statOrder = { 9972 }, level = 34, group = "SpellsHinderOnHitChance", weightKey = { "necropolis_gloves", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod", "caster" }, }, + ["NecropolisCraftingMeleeKnockback"] = { type = "Suffix", affix = "of Haunting", "Melee Attacks Knock Enemies Back on Hit", statOrder = { 9005 }, level = 45, group = "MeleeKnockback", weightKey = { "necropolis_gloves", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "attack" }, }, + ["NecropolisCraftingIntimidateOnHit"] = { type = "Suffix", affix = "of Haunting", "(15-25)% chance to Intimidate Enemies for 4 seconds on Hit with Attacks", statOrder = { 4817 }, level = 38, group = "IntimidateOnHit", weightKey = { "necropolis_gloves", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "attack" }, }, + ["NecropolisCraftingSpellUnnerveOnHit"] = { type = "Suffix", affix = "of Haunting", "(15-25)% chance to Unnerve Enemies for 4 seconds on Hit with Spells", statOrder = { 5623 }, level = 38, group = "SpellUnnerveOnHit", weightKey = { "necropolis_gloves", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "caster" }, }, + ["WeaponSpellDamageTriggerSkillOnWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Tacati's", "Trigger a Socketed Spell on Using a Skill, with a 4 second Cooldown", "Spells Triggered this way have 150% more Cost", "(70-74)% increased Spell Damage", statOrder = { 746, 746.1, 1135 }, level = 50, group = "WeaponSpellDamageTriggerSkill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "caster_damage", "damage", "caster", "gem" }, }, + ["WeaponSpellDamageTriggerSkillOnTwoHandWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Tacati's", "Trigger a Socketed Spell on Using a Skill, with a 4 second Cooldown", "Spells Triggered this way have 150% more Cost", "(105-110)% increased Spell Damage", statOrder = { 746, 746.1, 1135 }, level = 50, group = "WeaponSpellDamageTriggerSkill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "caster_damage", "damage", "caster", "gem" }, }, + ["MercenaryModLightningSkillManaCostWhileShocked"] = { type = "Suffix", affix = "of Infamy", "40% less Mana cost of Lightning Skills while Shocked", statOrder = { 7327 }, level = 68, group = "LightningSkillManaCostWhileShocked", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "elemental", "lightning" }, }, + ["MercenaryModTravelSkillCrit"] = { type = "Prefix", affix = "Infamous", "Your Travel Skills Critically Strike once every 3 uses", statOrder = { 10207 }, level = 68, group = "TravelSkillCrit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, }, + ["MercenaryModRecoupWhileFrozen"] = { type = "Suffix", affix = "of Infamy", "(50-90)% of Damage taken while Frozen Recouped as Life", statOrder = { 6019 }, level = 68, group = "RecoupWhileFrozen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, + ["MercenaryModSkipSacrifice"] = { type = "Suffix", affix = "of Infamy", "(20-40)% chance on Skill use to not Sacrifice Life but", "still gain benefits as though you had", statOrder = { 9855, 9855.1 }, level = 68, group = "SkipSacrifice", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, + ["MercenaryModMinionFireConvertToChaos"] = { type = "Prefix", affix = "Infamous", "Minions convert 100% of Fire Damage to Chaos Damage", statOrder = { 9088 }, level = 68, group = "MinionFireConvertToChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "chaos", "minion" }, }, + ["MercenaryModRecentMinionCrit"] = { type = "Suffix", affix = "of Infamy", "Minions created Recently have (60-100)% increased Critical Hit Chance", statOrder = { 9147 }, level = 68, group = "RecentMinionCrit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion", "critical" }, }, + ["MercenaryModTrapMineChain"] = { type = "Suffix", affix = "of Infamy", "Skills used by your Traps and Mines Chain 2 additional times", statOrder = { 10199 }, level = 68, group = "TrapMineChain", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["MercenaryModMineLifeReserve"] = { type = "Prefix", affix = "Infamous", "Your Skills that throw Mines reserve Life instead of Mana", statOrder = { 9854 }, level = 68, group = "MineLifeReserve", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, + ["MercenaryModProjSpeedVariance"] = { type = "Suffix", affix = "of Infamy", "Each Projectile created by Attacks you make with a Melee Weapon has", "between 50% more and 50% less Projectile Speed at random", statOrder = { 9533, 9533.1 }, level = 68, group = "MeleeProjSpeedVariance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, + ["MercenaryModMaxBlades"] = { type = "Prefix", affix = "Infamous", "Skills that leave Lingering Blades have +(5-10) to Maximum Lingering Blades", statOrder = { 8987 }, level = 68, group = "MaxBlades", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["MercenaryModDebilitate"] = { type = "Prefix", affix = "Infamous", "Debuffs on you expire (80-100)% faster", "You are Debilitated", statOrder = { 6045, 9758 }, level = 68, group = "SelfDebilitate", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["MercenaryModAshWarcries"] = { type = "Suffix", affix = "of Infamy", "Your Warcries cover Enemies in Ash for 5 seconds", statOrder = { 10342 }, level = 68, group = "CoverInAshWarcry", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire" }, }, + ["MercenaryModRageDecaySpeed"] = { type = "Prefix", affix = "Infamous", "Inherent loss of Rage is 20% slower", statOrder = { 9580 }, level = 68, group = "RageDecaySpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["MercenaryModAddCritPerExert"] = { type = "Suffix", affix = "of Infamy", "Skills have +(2-3)% to Critical Strike Chance for each Warcry Exerting them", statOrder = { 4456 }, level = 68, group = "AddCritPerExert", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, }, + ["MercenaryModLGOHIgnitedEnemies"] = { type = "Suffix", affix = "of Infamy", "Gain (5-10) Life for each Ignited Enemy hit with Attacks", statOrder = { 1654 }, level = 68, group = "LifeGainOnHitVsIgnitedEnemies", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, + ["MercenaryModFortificationDamageAura"] = { type = "Suffix", affix = "of Infamy", "Nearby Enemies take 1% increased Physical Damage per two Fortification on you", statOrder = { 9261 }, level = 68, group = "FortificationDamageAura", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, }, + ["MercenaryModLifeCostOnLowLife"] = { type = "Suffix", affix = "of Infamy", "30% less Life cost of Skills while on Low Life", statOrder = { 9842 }, level = 68, group = "LifeCostOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, + ["MercenaryModMinionCDR"] = { type = "Suffix", affix = "of Infamy", "Minions have 20% increased Cooldown Recovery Rate", statOrder = { 9098 }, level = 68, group = "MinionCooldownRecovery", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, }, + ["MercenaryModConsecratedChaosRes"] = { type = "Suffix", affix = "of Infamy", "Consecrated Ground you create grants +(1-3)% maximum Chaos Resistance to you and Allies", statOrder = { 10464 }, level = 68, group = "ConsecratedChaosRes", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos" }, }, + ["MercenaryModImpaleEffectFromDistance"] = { type = "Suffix", affix = "of Infamy", "Projectiles gain Impale effect as they travel farther, causing Impales they inflict to have up to 40% increased effect", statOrder = { 7114 }, level = 68, group = "ImpaleEffectFromDistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, }, + ["MercenaryModClonesInheritGloves"] = { type = "Prefix", affix = "Infamous", "Your Blink and Mirror arrow clones use your Gloves", statOrder = { 5117 }, level = 68, group = "ClonesInheritGloves", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, }, + ["MercenaryModSingleProjAOE"] = { type = "Suffix", affix = "of Infamy", "30% more Area of Effect with Bow Attacks that fire a single Projectile", statOrder = { 4623 }, level = 68, group = "SingleProjAOE", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["MercenaryModSpellslingerReservation"] = { type = "Suffix", affix = "of Infamy", "20% increased Mana Reservation Efficiency of Skills Supported by Spellslinger", statOrder = { 9983 }, level = 68, group = "EnchantmentSpellslingerManaReservationEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "attack", "caster" }, }, + ["MercenaryModMaimDOT"] = { type = "Suffix", affix = "of Infamy", "Enemies Maimed by you take 10% increased Damage Over Time", statOrder = { 6304 }, level = 68, group = "EnchantmentMaim", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, }, + ["MercenaryModUnaffectedShock"] = { type = "Suffix", affix = "of Infamy", "Unaffected by Shock while Channelling", statOrder = { 10262 }, level = 68, group = "UnaffectedByShockWhileChannel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning" }, }, + ["MercenaryModCurseEffect"] = { type = "Prefix", affix = "Infamous", "20% reduced Curse Duration", "15% increased Effect of your Curses", statOrder = { 1692, 2505 }, level = 68, group = "CurseEffectReduceCurseDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "curse" }, }, + ["MercenaryModCurseChillingAreas"] = { type = "Prefix", affix = "Infamous", "Curses on Enemies in your Chilling Areas have 15% increased Effect", statOrder = { 5674 }, level = 68, group = "CurseEffectChillingAreas", weightKey = { "default", }, weightVal = { 0 }, modTags = { "curse" }, }, } \ No newline at end of file diff --git a/src/Data/ModJewel.lua b/src/Data/ModJewel.lua index 9119a1483c..1b7042c3e1 100644 --- a/src/Data/ModJewel.lua +++ b/src/Data/ModJewel.lua @@ -2,428 +2,428 @@ -- Item data (c) Grinding Gear Games return { - ["ChaosResistJewelCorrupted"] = { type = "Corrupted", affix = "", "+(1-3)% to Chaos Resistance", statOrder = { 1522 }, level = 1, group = "ChaosResistance", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "chaos", "resistance" }, }, - ["ReducedCharacterSizeJewelCorrupted"] = { type = "Corrupted", affix = "", "1% reduced Character Size", statOrder = { 1934 }, level = 1, group = "ActorSize", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["ReducedChillDurationJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Chill Duration on you", statOrder = { 1753 }, level = 1, group = "ReducedChillDuration", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ReducedFreezeDurationJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Freeze Duration on you", statOrder = { 1755 }, level = 1, group = "ReducedFreezeDuration", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ReducedIgniteDurationJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Ignite Duration on you", statOrder = { 1756 }, level = 1, group = "ReducedBurnDuration", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ReducedShockDurationJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Shock Duration on you", statOrder = { 1754 }, level = 1, group = "ReducedShockDuration", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["IncreasedChargeDurationJewelCorrupted_"] = { type = "Corrupted", affix = "", "(3-7)% increased Endurance, Frenzy and Power Charge Duration", statOrder = { 2897 }, level = 1, group = "ChargeDuration", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, }, - ["AddedChaosDamageJewelCorrupted"] = { type = "Corrupted", affix = "", "Adds 1 to (2-3) Chaos Damage to Attacks", statOrder = { 1271 }, level = 1, group = "ChaosDamage", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["ChanceToBeCritJewelCorrupted"] = { type = "Corrupted", affix = "", "Hits have (60-100)% increased Critical Strike Chance against you", statOrder = { 2998 }, level = 1, group = "ChanceToTakeCriticalStrike", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "critical" }, }, - ["DamageWhileDeadJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-30)% increased Damage while Dead", statOrder = { 2962 }, level = 1, group = "DamageWhileDead", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage" }, }, - ["VaalSkillDamageJewelCorrupted"] = { type = "Corrupted", affix = "", "(5-10)% increased Damage with Vaal Skills", statOrder = { 2961 }, level = 1, group = "VaalSkillDamage", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage", "vaal" }, }, - ["ChaosDamagePerCorruptedItemJewelCorrupted"] = { type = "Corrupted", affix = "", "1% increased Chaos Damage for each Corrupted Item Equipped", statOrder = { 2965 }, level = 1, group = "ChaosDamagePerCorruptedItem", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["LifeLeechRatePerCorruptedItemJewelCorrupted"] = { type = "Corrupted", affix = "", "1% increased total Recovery per second from Life Leech for each Corrupted Item Equipped", statOrder = { 2966 }, level = 1, group = "LifeLeechRatePerCorruptedItem", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "life" }, }, - ["ManaLeechRatePerCorruptedItemJewelCorrupted"] = { type = "Corrupted", affix = "", "1% increased total Recovery per second from Mana Leech for each Corrupted Item Equipped", statOrder = { 2968 }, level = 1, group = "ManaLeechRatePerCorrupteditem", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana" }, }, - ["SilenceImmunityJewelCorrupted"] = { type = "Corrupted", affix = "", "You cannot be Cursed with Silence", statOrder = { 2960 }, level = 1, group = "ImmuneToSilence", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "caster", "curse" }, }, - ["V2CorruptedBloodImmunityCorrupted"] = { type = "Corrupted", affix = "", "Corrupted Blood cannot be inflicted on you", statOrder = { 5116 }, level = 33, group = "CorruptedBloodImmunity", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "bleed", "physical", "ailment" }, }, - ["V2HinderImmunityCorrupted"] = { type = "Corrupted", affix = "", "You cannot be Hindered", statOrder = { 10115 }, level = 40, group = "YouCannotBeHindered", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "blue_herring" }, }, - ["V2IncreasedAilmentEffectOnEnemiesCorrupted"] = { type = "Corrupted", affix = "", "(5-7)% increased Effect of Non-Damaging Ailments", statOrder = { 9017 }, level = 1, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "ailment" }, }, - ["V2IncreasedAreaOfEffectCorrupted"] = { type = "Corrupted", affix = "", "(4-5)% increased Area of Effect", statOrder = { 1761 }, level = 1, group = "AreaOfEffect", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["V2IncreasedCriticalStrikeChanceCorrupted_"] = { type = "Corrupted", affix = "", "(8-10)% increased Global Critical Strike Chance", statOrder = { 1343 }, level = 1, group = "CriticalStrikeChance", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "critical" }, }, - ["V2IncreasedDamageJewelCorrupted___"] = { type = "Corrupted", affix = "", "(4-5)% increased Damage", statOrder = { 1076 }, level = 1, group = "IncreasedDamage", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, }, - ["V2MaimImmunityCorrupted"] = { type = "Corrupted", affix = "", "You cannot be Maimed", statOrder = { 4766 }, level = 40, group = "AvoidMaimChance", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["V2MinionDamageCorrupted"] = { type = "Corrupted", affix = "", "Minions deal (4-5)% increased Damage", statOrder = { 1852 }, level = 1, group = "MinionDamage", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "minion" }, }, - ["V2ReducedManaReservationCorrupted"] = { type = "Corrupted", affix = "", "2% increased Reservation Efficiency of Skills", statOrder = { 2110 }, level = 1, group = "ReducedReservationForJewel", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["V2ReducedManaReservationCorruptedEfficiency__"] = { type = "Corrupted", affix = "", "2% increased Reservation Efficiency of Skills", statOrder = { 2107 }, level = 1, group = "ReservationEfficiencyForJewel", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["V2SilenceImmunityJewelCorrupted"] = { type = "Corrupted", affix = "", "You cannot be Cursed with Silence", statOrder = { 2960 }, level = 60, group = "ImmuneToSilence", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "curse" }, }, - ["V2FirePenetrationJewelCorrupted"] = { type = "Corrupted", affix = "", "Damage Penetrates 1% Fire Resistance", statOrder = { 2853 }, level = 1, group = "FireResistancePenetration", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["V2ColdPenetrationJewelCorrupted"] = { type = "Corrupted", affix = "", "Damage Penetrates 1% Cold Resistance", statOrder = { 2855 }, level = 1, group = "ColdResistancePenetration", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["V2LightningPenetrationJewelCorrupted__"] = { type = "Corrupted", affix = "", "Damage Penetrates 1% Lightning Resistance", statOrder = { 2856 }, level = 1, group = "LightningResistancePenetration", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["V2ElementalPenetrationJewelCorrupted_"] = { type = "Corrupted", affix = "", "Damage Penetrates 1% Elemental Resistances", statOrder = { 2852 }, level = 1, group = "ElementalPenetration", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["V2ArmourPenetrationJewelCorrupted"] = { type = "Corrupted", affix = "", "Hits have (10-15)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 6801 }, level = 1, group = "ChanceToIgnoreEnemyArmour", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "physical" }, }, - ["V2AvoidIgniteJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid being Ignited", statOrder = { 1727 }, level = 1, group = "AvoidIgnite", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["V2AvoidChillAndFreezeJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid being Chilled", "(20-25)% chance to Avoid being Frozen", statOrder = { 1725, 1726 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["V2AvoidShockJewelCorrupted_"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid being Shocked", statOrder = { 1729 }, level = 1, group = "AvoidShock", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["V2AvoidPoisonJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid being Poisoned", statOrder = { 1730 }, level = 1, group = "ChanceToAvoidPoison", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["V2AvoidBleedJewelCorrupted__"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid Bleeding", statOrder = { 4077 }, level = 1, group = "ChanceToAvoidBleeding", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["V2AvoidStunJewelCorrupted_"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid being Stunned", statOrder = { 1732 }, level = 1, group = "AvoidStun", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["V2IgniteDurationOnYouJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% reduced Ignite Duration on you", statOrder = { 1756 }, level = 1, group = "ReducedIgniteDurationOnSelf", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["V2ChillEffectOnYouJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% reduced Effect of Chill on you", statOrder = { 1526 }, level = 1, group = "ChillEffectivenessOnSelf", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["V2ShockEffectOnYouJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% reduced Effect of Shock on you", statOrder = { 9507 }, level = 1, group = "ReducedShockEffectOnSelf", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["V2PoisonDurationOnYouJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% reduced Poison Duration on you", statOrder = { 9467 }, level = 1, group = "ReducedPoisonDuration", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["V2BleedDurationOnYouJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% reduced Bleed Duration on you", statOrder = { 9458 }, level = 1, group = "ReducedBleedDuration", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "bleed", "physical", "ailment" }, }, - ["V2CurseEffectOnYouJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% reduced Effect of Curses on you", statOrder = { 2047 }, level = 1, group = "CurseEffectOnYouJewel", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "curse" }, }, - ["MaceDamageJewel"] = { type = "Prefix", affix = "Brutal", "(14-16)% increased Damage with Maces or Sceptres", statOrder = { 1209 }, level = 1, group = "IncreasedMaceDamageForJewel", weightKey = { "mace", "specific_weapon", "not_str", "default", }, weightVal = { 500, 0, 0, 500 }, modTags = { "damage", "attack" }, }, - ["AxeDamageJewel"] = { type = "Prefix", affix = "Sinister", "(14-16)% increased Damage with Axes", statOrder = { 1185 }, level = 1, group = "IncreasedAxeDamageForJewel", weightKey = { "axe", "specific_weapon", "not_int", "default", }, weightVal = { 500, 0, 500, 0 }, modTags = { "damage", "attack" }, }, - ["SwordDamageJewel"] = { type = "Prefix", affix = "Vicious", "(14-16)% increased Damage with Swords", statOrder = { 1223 }, level = 1, group = "IncreasedSwordDamageForJewel", weightKey = { "sword", "specific_weapon", "not_int", "default", }, weightVal = { 500, 0, 500, 0 }, modTags = { "damage", "attack" }, }, - ["BowDamageJewel"] = { type = "Prefix", affix = "Fierce", "(14-16)% increased Damage with Bows", statOrder = { 1215 }, level = 1, group = "IncreasedBowDamageForJewel", weightKey = { "one_handed_mod", "melee_mod", "dual_wielding_mod", "shield_mod", "bow", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0, 500, 0, 0, 500 }, modTags = { "damage", "attack" }, }, - ["ClawDamageJewel"] = { type = "Prefix", affix = "Savage", "(14-16)% increased Damage with Claws", statOrder = { 1197 }, level = 1, group = "IncreasedClawDamageForJewel", weightKey = { "two_handed_mod", "claw", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 500, 0, 0, 500 }, modTags = { "damage", "attack" }, }, - ["DaggerDamageJewel"] = { type = "Prefix", affix = "Lethal", "(14-16)% increased Damage with Daggers", statOrder = { 1203 }, level = 1, group = "IncreasedDaggerDamageForJewel", weightKey = { "two_handed_mod", "dagger", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 500, 0, 0, 500 }, modTags = { "damage", "attack" }, }, - ["WandDamageJewel"] = { type = "Prefix", affix = "Cruel", "(14-16)% increased Damage with Wands", statOrder = { 2816 }, level = 1, group = "IncreasedWandDamageForJewel", weightKey = { "melee_mod", "two_handed_mod", "wand", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 500, 0, 0, 500 }, modTags = { "damage", "attack" }, }, - ["StaffDamageJewel"] = { type = "Prefix", affix = "Judging", "(14-16)% increased Damage with Staves", statOrder = { 1192 }, level = 1, group = "IncreasedStaffDamageForJewel", weightKey = { "one_handed_mod", "dual_wielding_mod", "shield_mod", "staff", "specific_weapon", "not_str", "default", }, weightVal = { 0, 0, 0, 500, 0, 0, 500 }, modTags = { "damage", "attack" }, }, - ["OneHandedMeleeDamageJewel"] = { type = "Prefix", affix = "Soldier's", "(12-14)% increased Damage with One Handed Weapons", statOrder = { 3201 }, level = 1, group = "IncreasedOneHandedMeleeDamageForJewel", weightKey = { "two_handed_mod", "wand", "not_int", "default", }, weightVal = { 0, 0, 500, 0 }, modTags = { "damage", "attack" }, }, - ["TwoHandedMeleeDamageJewel"] = { type = "Prefix", affix = "Champion's", "(12-14)% increased Damage with Two Handed Weapons", statOrder = { 3202 }, level = 1, group = "IncreasedTwoHandedMeleeDamageForJewel", weightKey = { "bow", "wand", "one_handed_mod", "dual_wielding_mod", "shield_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 0, 0, 500, 0 }, modTags = { "damage", "attack" }, }, - ["DualWieldingMeleeDamageJewel"] = { type = "Prefix", affix = "Gladiator's", "(12-14)% increased Attack Damage while Dual Wielding", statOrder = { 1162 }, level = 1, group = "IncreasedDualWieldlingDamageForJewel", weightKey = { "shield_mod", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 500, 0 }, modTags = { "damage", "attack" }, }, - ["UnarmedMeleeDamageJewel"] = { type = "Prefix", affix = "Brawling", "(14-16)% increased Melee Physical Damage with Unarmed Attacks", statOrder = { 1184 }, level = 1, group = "IncreasedUnarmedDamageForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["MeleeDamageJewel_"] = { type = "Suffix", affix = "of Combat", "(10-12)% increased Melee Damage", statOrder = { 1119 }, level = 1, group = "MeleeDamageForJewel", weightKey = { "bow", "wand", "not_int", "default", }, weightVal = { 0, 0, 500, 0 }, modTags = { "damage", "attack" }, }, - ["ProjectileDamageJewel"] = { type = "Suffix", affix = "of Archery", "(10-12)% increased Projectile Damage", statOrder = { 1873 }, level = 1, group = "ProjectileDamageForJewel", weightKey = { "not_dex", "default", }, weightVal = { 400, 500 }, modTags = { "damage" }, }, - ["SpellDamageJewel"] = { type = "Suffix", affix = "of Mysticism", "(10-12)% increased Spell Damage", statOrder = { 1108 }, level = 1, group = "SpellDamageForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 500 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["StaffSpellDamageJewel"] = { type = "Prefix", affix = "Wizard's", "(14-16)% increased Spell Damage while wielding a Staff", statOrder = { 1112 }, level = 1, group = "StaffSpellDamageForJewel", weightKey = { "one_handed_mod", "staff", "specific_weapon", "shield_mod", "dual_wielding_mod", "not_int", "default", }, weightVal = { 0, 500, 0, 0, 0, 0, 500 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["DualWieldingSpellDamageJewel_"] = { type = "Prefix", affix = "Sorcerer's", "(14-16)% increased Spell Damage while Dual Wielding", statOrder = { 1115 }, level = 1, group = "DualWieldingSpellDamageForJewel", weightKey = { "shield_mod", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 500 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["ShieldSpellDamageJewel"] = { type = "Prefix", affix = "Battlemage's", "(14-16)% increased Spell Damage while holding a Shield", statOrder = { 1114 }, level = 1, group = "ShieldSpellDamageForJewel", weightKey = { "two_handed_mod", "dual_wielding_mod", "bow", "staff", "not_int", "default", }, weightVal = { 0, 0, 0, 0, 0, 500 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["TrapDamageJewel"] = { type = "Prefix", affix = "Trapping", "(14-16)% increased Trap Damage", statOrder = { 1079 }, level = 1, group = "TrapDamageForJewel", weightKey = { "not_str", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, }, - ["MineDamageJewel"] = { type = "Prefix", affix = "Sabotage", "(14-16)% increased Mine Damage", statOrder = { 1081 }, level = 1, group = "MineDamageForJewel", weightKey = { "not_str", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, }, - ["DamageJewel"] = { type = "Suffix", affix = "of Wounding", "(8-10)% increased Damage", statOrder = { 1076 }, level = 1, group = "DamageForJewel", weightKey = { "default", }, weightVal = { 350 }, modTags = { "damage" }, }, - ["MinionDamageJewel"] = { type = "Prefix", affix = "Leadership", "Minions deal (14-16)% increased Damage", statOrder = { 1852 }, level = 1, group = "MinionDamageForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 500 }, modTags = { "damage", "minion" }, }, - ["FireDamageJewel"] = { type = "Prefix", affix = "Flaming", "(14-16)% increased Fire Damage", statOrder = { 1241 }, level = 1, group = "FireDamageForJewel", weightKey = { "not_str", "default", }, weightVal = { 400, 500 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["ColdDamageJewel"] = { type = "Prefix", affix = "Chilling", "(14-16)% increased Cold Damage", statOrder = { 1250 }, level = 1, group = "ColdDamageForJewel", weightKey = { "not_dex", "default", }, weightVal = { 400, 500 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["LightningDamageJewel"] = { type = "Prefix", affix = "Humming", "(14-16)% increased Lightning Damage", statOrder = { 1261 }, level = 1, group = "LightningDamageForJewel", weightKey = { "not_int", "default", }, weightVal = { 400, 500 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["PhysicalDamageJewel"] = { type = "Prefix", affix = "Sharpened", "(14-16)% increased Global Physical Damage", statOrder = { 1116 }, level = 1, group = "PhysicalDamageForJewel", weightKey = { "default", }, weightVal = { 500 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["DamageOverTimeJewel"] = { type = "Suffix", affix = "of Entropy", "(10-12)% increased Damage over Time", statOrder = { 1095 }, level = 1, group = "DamageOverTimeForJewel", weightKey = { "default", }, weightVal = { 500 }, modTags = { "damage" }, }, - ["ChaosDamageJewel"] = { type = "Prefix", affix = "Chaotic", "(9-13)% increased Chaos Damage", statOrder = { 1269 }, level = 1, group = "ChaosDamageForJewel", weightKey = { "default", }, weightVal = { 200 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["AreaDamageJewel"] = { type = "Suffix", affix = "of Blasting", "(10-12)% increased Area Damage", statOrder = { 1912 }, level = 1, group = "AreaDamageForJewel", weightKey = { "default", }, weightVal = { 500 }, modTags = { "damage" }, }, - ["MaceAttackSpeedJewel"] = { type = "Prefix", affix = "Beating", "(6-8)% increased Attack Speed with Maces or Sceptres", statOrder = { 1308 }, level = 1, group = "MaceAttackSpeedForJewel", weightKey = { "mace", "specific_weapon", "not_str", "default", }, weightVal = { 500, 0, 0, 500 }, modTags = { "attack", "speed" }, }, - ["AxeAttackSpeedJewel"] = { type = "Prefix", affix = "Cleaving", "(6-8)% increased Attack Speed with Axes", statOrder = { 1304 }, level = 1, group = "AxeAttackSpeedForJewel", weightKey = { "axe", "specific_weapon", "not_int", "default", }, weightVal = { 500, 0, 500, 0 }, modTags = { "attack", "speed" }, }, - ["SwordAttackSpeedJewel"] = { type = "Prefix", affix = "Fencing", "(6-8)% increased Attack Speed with Swords", statOrder = { 1310 }, level = 1, group = "SwordAttackSpeedForJewel", weightKey = { "sword", "specific_weapon", "not_int", "default", }, weightVal = { 500, 0, 500, 0 }, modTags = { "attack", "speed" }, }, - ["BowAttackSpeedJewel"] = { type = "Prefix", affix = "Volleying", "(6-8)% increased Attack Speed with Bows", statOrder = { 1309 }, level = 1, group = "BowAttackSpeedForJewel", weightKey = { "one_handed_mod", "melee_mod", "dual_wielding_mod", "shield_mod", "bow", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0, 500, 0, 0, 500 }, modTags = { "attack", "speed" }, }, - ["ClawAttackSpeedJewel"] = { type = "Prefix", affix = "Ripping", "(6-8)% increased Attack Speed with Claws", statOrder = { 1306 }, level = 1, group = "ClawAttackSpeedForJewel", weightKey = { "two_handed_mod", "claw", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 500, 0, 0, 500 }, modTags = { "attack", "speed" }, }, - ["DaggerAttackSpeedJewel"] = { type = "Prefix", affix = "Slicing", "(6-8)% increased Attack Speed with Daggers", statOrder = { 1307 }, level = 1, group = "DaggerAttackSpeedForJewel", weightKey = { "two_handed_mod", "dagger", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 500, 0, 0, 500 }, modTags = { "attack", "speed" }, }, - ["WandAttackSpeedJewel"] = { type = "Prefix", affix = "Jinxing", "(6-8)% increased Attack Speed with Wands", statOrder = { 1311 }, level = 1, group = "WandAttackSpeedForJewel", weightKey = { "melee_mod", "two_handed_mod", "wand", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 500, 0, 0, 500 }, modTags = { "attack", "speed" }, }, - ["StaffAttackSpeedJewel"] = { type = "Prefix", affix = "Blunt", "(6-8)% increased Attack Speed with Staves", statOrder = { 1305 }, level = 1, group = "StaffAttackSpeedForJewel", weightKey = { "one_handed_mod", "dual_wielding_mod", "shield_mod", "staff", "specific_weapon", "not_str", "default", }, weightVal = { 0, 0, 0, 500, 0, 0, 500 }, modTags = { "attack", "speed" }, }, - ["OneHandedMeleeAttackSpeedJewel"] = { type = "Prefix", affix = "Bandit's", "(4-6)% increased Attack Speed with One Handed Melee Weapons", statOrder = { 1303 }, level = 1, group = "OneHandedMeleeAttackSpeedForJewel", weightKey = { "two_handed_mod", "wand", "not_int", "default", }, weightVal = { 0, 0, 500, 0 }, modTags = { "attack", "speed" }, }, - ["TwoHandedMeleeAttackSpeedJewel"] = { type = "Prefix", affix = "Warrior's", "(4-6)% increased Attack Speed with Two Handed Melee Weapons", statOrder = { 1302 }, level = 1, group = "TwoHandedMeleeAttackSpeedForJewel", weightKey = { "one_handed_mod", "dual_wielding_mod", "shield_mod", "bow", "not_int", "default", }, weightVal = { 0, 0, 0, 0, 500, 0 }, modTags = { "attack", "speed" }, }, - ["DualWieldingAttackSpeedJewel"] = { type = "Prefix", affix = "Harmonic", "(4-6)% increased Attack Speed while Dual Wielding", statOrder = { 1299 }, level = 1, group = "AttackSpeedWhileDualWieldingForJewel", weightKey = { "shield_mod", "two_handed_mod", "default", }, weightVal = { 0, 0, 500 }, modTags = { "attack", "speed" }, }, - ["DualWieldingCastSpeedJewel"] = { type = "Prefix", affix = "Resonant", "(3-5)% increased Cast Speed while Dual Wielding", statOrder = { 1331 }, level = 1, group = "CastSpeedWhileDualWieldingForJewel", weightKey = { "shield_mod", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 500 }, modTags = { "caster", "speed" }, }, - ["ShieldAttackSpeedJewel"] = { type = "Prefix", affix = "Charging", "(4-6)% increased Attack Speed while holding a Shield", statOrder = { 1301 }, level = 1, group = "AttackSpeedWithAShieldForJewel", weightKey = { "two_handed_mod", "dual_wielding_mod", "not_int", "default", }, weightVal = { 0, 0, 500, 400 }, modTags = { "attack", "speed" }, }, - ["ShieldCastSpeedJewel"] = { type = "Prefix", affix = "Warding", "(3-5)% increased Cast Speed while holding a Shield", statOrder = { 1332 }, level = 1, group = "CastSpeedWithAShieldForJewel", weightKey = { "two_handed_mod", "dual_wielding_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 500 }, modTags = { "caster", "speed" }, }, - ["StaffCastSpeedJewel"] = { type = "Prefix", affix = "Wright's", "(3-5)% increased Cast Speed while wielding a Staff", statOrder = { 1333 }, level = 1, group = "CastSpeedWithAStaffForJewel", weightKey = { "one_handed_mod", "dual_wielding_mod", "shield_mod", "staff", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 500, 0, 0, 500 }, modTags = { "caster", "speed" }, }, - ["UnarmedAttackSpeedJewel"] = { type = "Prefix", affix = "Furious", "(6-8)% increased Unarmed Attack Speed with Melee Skills", statOrder = { 1313 }, level = 1, group = "AttackSpeedWhileUnarmedForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, }, - ["AttackSpeedJewel"] = { type = "Suffix", affix = "of Berserking", "(3-5)% increased Attack Speed", statOrder = { 1294 }, level = 1, group = "IncreasedAttackSpeedForJewel", weightKey = { "default", }, weightVal = { 500 }, modTags = { "attack", "speed" }, }, - ["ProjectileSpeedJewel"] = { type = "Suffix", affix = "of Soaring", "(6-8)% increased Projectile Speed", statOrder = { 1677 }, level = 1, group = "IncreasedProjectileSpeedForJewel", weightKey = { "not_dex", "default", }, weightVal = { 300, 500 }, modTags = { "speed" }, }, - ["CastSpeedJewel"] = { type = "Suffix", affix = "of Enchanting", "(2-4)% increased Cast Speed", statOrder = { 1330 }, level = 1, group = "IncreasedCastSpeedForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 500 }, modTags = { "caster", "speed" }, }, - ["TrapThrowSpeedJewel"] = { type = "Prefix", affix = "Honed", "(6-8)% increased Trap Throwing Speed", statOrder = { 1806 }, level = 1, group = "TrapThrowSpeedForJewel", weightKey = { "not_str", "default", }, weightVal = { 250, 0 }, modTags = { "speed" }, }, - ["MineLaySpeedJewel"] = { type = "Prefix", affix = "Arming", "(6-8)% increased Mine Throwing Speed", statOrder = { 1807 }, level = 1, group = "MineLaySpeedForJewel", weightKey = { "not_str", "default", }, weightVal = { 250, 0 }, modTags = { "speed" }, }, - ["AttackAndCastSpeedJewel"] = { type = "Suffix", affix = "of Zeal", "(2-4)% increased Attack and Cast Speed", statOrder = { 1923 }, level = 1, group = "AttackAndCastSpeedForJewel", weightKey = { "default", }, weightVal = { 350 }, modTags = { "attack", "caster", "speed" }, }, - ["PhysicalDamageWhileHoldingAShield"] = { type = "Prefix", affix = "Flanking", "(12-14)% increased Attack Damage while holding a Shield", statOrder = { 1091 }, level = 1, group = "DamageWhileHoldingAShieldForJewel", weightKey = { "bow", "wand", "dual_wielding_mod", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 0, 500, 0 }, modTags = { "damage", "attack" }, }, - ["FireGemCastSpeedJewel"] = { type = "Prefix", affix = "Pyromantic", "(3-5)% increased Cast Speed with Fire Skills", statOrder = { 1249 }, level = 1, group = "FireGemCastSpeedForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 500 }, modTags = { "elemental", "fire", "caster", "speed" }, }, - ["ColdGemCastSpeedJewel"] = { type = "Prefix", affix = "Cryomantic", "(3-5)% increased Cast Speed with Cold Skills", statOrder = { 1260 }, level = 1, group = "ColdGemCastSpeedForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 500 }, modTags = { "elemental", "cold", "caster", "speed" }, }, - ["LightningGemCastSpeedJewel_"] = { type = "Prefix", affix = "Electromantic", "(3-5)% increased Cast Speed with Lightning Skills", statOrder = { 1268 }, level = 1, group = "LightningGemCastSpeedForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 500 }, modTags = { "elemental", "lightning", "caster", "speed" }, }, - ["ChaosGemCastSpeedJewel"] = { type = "Prefix", affix = "Withering", "(3-5)% increased Cast Speed with Chaos Skills", statOrder = { 1276 }, level = 1, group = "ChaosGemCastSpeedForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "caster", "speed" }, }, - ["CurseCastSpeedJewel_"] = { type = "Suffix", affix = "of Blasphemy", "Curse Skills have (5-10)% increased Cast Speed", statOrder = { 2091 }, level = 1, group = "CurseCastSpeedForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "speed", "curse" }, }, - ["StrengthJewel"] = { type = "Suffix", affix = "of Strength", "+(12-16) to Strength", statOrder = { 1062 }, level = 1, group = "StrengthForJewel", weightKey = { "not_str", "default", }, weightVal = { 300, 500 }, modTags = { "attribute" }, }, - ["DexterityJewel"] = { type = "Suffix", affix = "of Dexterity", "+(12-16) to Dexterity", statOrder = { 1063 }, level = 1, group = "DexterityForJewel", weightKey = { "not_dex", "default", }, weightVal = { 300, 500 }, modTags = { "attribute" }, }, - ["IntelligenceJewel"] = { type = "Suffix", affix = "of Intelligence", "+(12-16) to Intelligence", statOrder = { 1064 }, level = 1, group = "IntelligenceForJewel", weightKey = { "not_int", "default", }, weightVal = { 300, 500 }, modTags = { "attribute" }, }, - ["StrengthDexterityJewel"] = { type = "Suffix", affix = "of Athletics", "+(8-10) to Strength and Dexterity", statOrder = { 1065 }, level = 1, group = "StrengthDexterityForJewel", weightKey = { "not_int", "default", }, weightVal = { 450, 250 }, modTags = { "attribute" }, }, - ["StrengthIntelligenceJewel"] = { type = "Suffix", affix = "of Spirit", "+(8-10) to Strength and Intelligence", statOrder = { 1066 }, level = 1, group = "StrengthIntelligenceForJewel", weightKey = { "not_dex", "default", }, weightVal = { 450, 250 }, modTags = { "attribute" }, }, - ["DexterityIntelligenceJewel"] = { type = "Suffix", affix = "of Cunning", "+(8-10) to Dexterity and Intelligence", statOrder = { 1067 }, level = 1, group = "DexterityIntelligenceForJewel", weightKey = { "not_str", "default", }, weightVal = { 450, 250 }, modTags = { "attribute" }, }, - ["AllAttributesJewel"] = { type = "Suffix", affix = "of Adaption", "+(6-8) to all Attributes", statOrder = { 1061 }, level = 1, group = "AllAttributesForJewel", weightKey = { "default", }, weightVal = { 300 }, modTags = { "attribute" }, }, - ["IncreasedLifeJewel"] = { type = "Prefix", affix = "Healthy", "+(8-12) to maximum Life", statOrder = { 1451 }, level = 1, group = "IncreasedLifeForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, - ["PercentIncreasedLifeJewel"] = { type = "Prefix", affix = "Vivid", "(5-7)% increased maximum Life", statOrder = { 1453 }, level = 1, group = "PercentIncreasedLifeForJewel", weightKey = { "not_str", "default", }, weightVal = { 350, 500 }, modTags = { "resource", "life" }, }, - ["IncreasedManaJewel"] = { type = "Prefix", affix = "Learned", "+(8-12) to maximum Mana", statOrder = { 1461 }, level = 1, group = "IncreasedManaForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, - ["PercentIncreasedManaJewel"] = { type = "Prefix", affix = "Enlightened", "(8-10)% increased maximum Mana", statOrder = { 1462 }, level = 1, group = "PercentIncreasedManaForJewel", weightKey = { "not_str", "default", }, weightVal = { 500, 250 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaRegenJewel"] = { type = "Prefix", affix = "Energetic", "(12-15)% increased Mana Regeneration Rate", statOrder = { 1466 }, level = 1, group = "IncreasedManaRegenForJewel", weightKey = { "not_int", "default", }, weightVal = { 250, 500 }, modTags = { "resource", "mana" }, }, - ["IncreasedEnergyShieldJewel_"] = { type = "Prefix", affix = "Glowing", "+(8-12) to maximum Energy Shield", statOrder = { 1440 }, level = 1, group = "IncreasedEnergyShieldForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldJewel"] = { type = "Prefix", affix = "Shimmering", "(6-8)% increased maximum Energy Shield", statOrder = { 1443 }, level = 1, group = "EnergyShieldForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 500 }, modTags = { "defences", "energy_shield" }, }, - ["IncreasedLifeAndManaJewel"] = { type = "Prefix", affix = "Determined", "+(4-6) to maximum Life", "+(4-6) to maximum Mana", statOrder = { 1451, 1461 }, level = 1, group = "LifeAndManaForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "mana" }, }, - ["PercentIncreasedLifeAndManaJewel"] = { type = "Prefix", affix = "Passionate", "(2-4)% increased maximum Life", "(4-6)% increased maximum Mana", statOrder = { 1453, 1462 }, level = 1, group = "PercentageLifeAndManaForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "green_herring", "resource", "life", "mana" }, }, - ["EnergyShieldAndManaJewel"] = { type = "Prefix", affix = "Wise", "(2-4)% increased maximum Energy Shield", "(4-6)% increased maximum Mana", statOrder = { 1443, 1462 }, level = 1, group = "EnergyShieldAndManaForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "defences", "energy_shield" }, }, - ["LifeAndEnergyShieldJewel"] = { type = "Prefix", affix = "Faithful", "(2-4)% increased maximum Energy Shield", "(2-4)% increased maximum Life", statOrder = { 1443, 1453 }, level = 1, group = "LifeAndEnergyShieldForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "energy_shield" }, }, - ["LifeLeechPermyriadJewel"] = { type = "Prefix", affix = "Hungering", "(0.2-0.4)% of Physical Attack Damage Leeched as Life", statOrder = { 1530 }, level = 1, group = "LifeLeechPermyriadForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeechPermyriadSuffixJewel"] = { type = "Suffix", affix = "of Hungering", "(0.2-0.4)% of Physical Attack Damage Leeched as Life", statOrder = { 1530 }, level = 1, group = "LifeLeechPermyriadForJewel", weightKey = { "not_str", "default", }, weightVal = { 0, 500 }, modTags = { "resource", "life", "physical", "attack" }, }, - ["ManaLeechPermyriadJewel"] = { type = "Prefix", affix = "Thirsting", "(0.2-0.4)% of Physical Attack Damage Leeched as Mana", statOrder = { 1580 }, level = 1, group = "ManaLeechPermyriadForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, }, - ["ManaLeechPermyriadSuffixJewel"] = { type = "Suffix", affix = "of Thirsting", "(0.2-0.4)% of Physical Attack Damage Leeched as Mana", statOrder = { 1580 }, level = 1, group = "ManaLeechPermyriadForJewel", weightKey = { "not_dex", "default", }, weightVal = { 0, 500 }, modTags = { "resource", "mana", "physical", "attack" }, }, - ["SpellLifeLeechPermyriadJewel"] = { type = "Prefix", affix = "Transfusing", "0.2% of Spell Damage Leeched as Life", statOrder = { 1544 }, level = 1, group = "SpellLifeLeechPermyriadForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "caster" }, }, - ["SpellManaLeechPermyriadJewel"] = { type = "Prefix", affix = "Siphoning", "0.2% of Spell Damage Leeched as Mana", statOrder = { 1585 }, level = 1, group = "SpellManaLeechPermyriadForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "caster" }, }, - ["LifeOnHitJewel"] = { type = "Suffix", affix = "of Rejuvenation", "Gain (2-3) Life per Enemy Hit with Attacks", statOrder = { 1621 }, level = 1, group = "LifeGainPerTargetForJewel", weightKey = { "not_str", "default", }, weightVal = { 0, 500 }, modTags = { "resource", "life", "attack" }, }, - ["ManaOnHitJewel"] = { type = "Suffix", affix = "of Absorption", "Gain (1-2) Mana per Enemy Hit with Attacks", statOrder = { 1625 }, level = 1, group = "ManaGainPerTargetForJewel", weightKey = { "not_dex", "default", }, weightVal = { 0, 500 }, modTags = { "resource", "mana", "attack" }, }, - ["EnergyShieldOnHitJewel"] = { type = "Suffix", affix = "of Focus", "Gain (2-3) Energy Shield per Enemy Hit with Attacks", statOrder = { 1628 }, level = 1, group = "EnergyShieldGainPerTargetForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 500 }, modTags = { "defences", "energy_shield", "attack" }, }, - ["LifeRecoupJewel"] = { type = "Suffix", affix = "of Infusion", "(4-6)% of Damage taken Recouped as Life", statOrder = { 5803 }, level = 1, group = "LifeRecoupForJewel", weightKey = { "not_int", "default", }, weightVal = { 250, 500 }, modTags = { "resource", "life" }, }, - ["IncreasedArmourJewel"] = { type = "Prefix", affix = "Armoured", "(14-18)% increased Armour", statOrder = { 1424 }, level = 1, group = "IncreasedArmourForJewel", weightKey = { "not_str", "default", }, weightVal = { 0, 500 }, modTags = { "defences", "armour" }, }, - ["IncreasedEvasionJewel"] = { type = "Prefix", affix = "Evasive", "(14-18)% increased Evasion Rating", statOrder = { 1432 }, level = 1, group = "IncreasedEvasionForJewel", weightKey = { "not_dex", "default", }, weightVal = { 0, 500 }, modTags = { "defences", "evasion" }, }, - ["ArmourEvasionJewel"] = { type = "Prefix", affix = "Fighter's", "(6-12)% increased Armour", "(6-12)% increased Evasion Rating", statOrder = { 1424, 1432 }, level = 1, group = "ArmourEvasionForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour", "evasion" }, }, - ["ArmourEnergyShieldJewel"] = { type = "Prefix", affix = "Paladin's", "(6-12)% increased Armour", "(2-4)% increased maximum Energy Shield", statOrder = { 1424, 1443 }, level = 1, group = "ArmourEnergyShieldForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour", "energy_shield" }, }, - ["EvasionEnergyShieldJewel"] = { type = "Prefix", affix = "Rogue's", "(6-12)% increased Evasion Rating", "(2-4)% increased maximum Energy Shield", statOrder = { 1432, 1443 }, level = 1, group = "EvasionEnergyShieldForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, - ["IncreasedDefensesJewel"] = { type = "Prefix", affix = "Defensive", "(4-6)% increased Global Defences", statOrder = { 2707 }, level = 1, group = "IncreasedDefensesForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences" }, }, - ["ItemRarityJewel"] = { type = "Suffix", affix = "of Raiding", "(4-6)% increased Rarity of Items found", statOrder = { 1478 }, level = 1, group = "ItemRarityForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "drop" }, }, - ["IncreasedAccuracyJewel"] = { type = "Suffix", affix = "of Accuracy", "+(20-40) to Accuracy Rating", statOrder = { 1317 }, level = 1, group = "IncreasedAccuracyForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, }, - ["PercentIncreasedAccuracyJewel"] = { type = "Suffix", affix = "of Precision", "(10-14)% increased Global Accuracy Rating", statOrder = { 1318 }, level = 1, group = "IncreasedAccuracyPercentForJewel", weightKey = { "not_dex", "default", }, weightVal = { 0, 500 }, modTags = { "attack" }, }, - ["AccuracyAndCritsJewel"] = { type = "Suffix", affix = "of Deadliness", "(6-10)% increased Global Accuracy Rating", "(6-10)% increased Global Critical Strike Chance", statOrder = { 1318, 1343 }, level = 1, group = "AccuracyAndCritsForJewel", weightKey = { "not_dex", "default", }, weightVal = { 0, 150 }, modTags = { "attack", "critical" }, }, - ["CriticalStrikeChanceJewel"] = { type = "Suffix", affix = "of Menace", "(8-12)% increased Global Critical Strike Chance", statOrder = { 1343 }, level = 1, group = "CritChanceForJewel", weightKey = { "default", }, weightVal = { 250 }, modTags = { "critical" }, }, - ["CriticalStrikeMultiplierJewel"] = { type = "Suffix", affix = "of Potency", "+(9-12)% to Global Critical Strike Multiplier", statOrder = { 1372 }, level = 1, group = "CritMultiplierForJewel", weightKey = { "default", }, weightVal = { 250 }, modTags = { "damage", "critical" }, }, - ["CritChanceWithMaceJewel"] = { type = "Prefix", affix = "of Striking FIX ME", "(12-16)% increased Critical Strike Chance with Maces or Sceptres", statOrder = { 1353 }, level = 1, group = "CritChanceWithMaceForJewel", weightKey = { "mace", "specific_weapon", "not_str", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, }, - ["CritChanceWithAxeJewel"] = { type = "Prefix", affix = "of Biting FIX ME", "(12-16)% increased Critical Strike Chance with Axes", statOrder = { 1356 }, level = 1, group = "CritChanceWithAxeForJewel", weightKey = { "axe", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, }, - ["CritChanceWithSwordJewel"] = { type = "Prefix", affix = "of Stinging FIX ME", "(12-16)% increased Critical Strike Chance with Swords", statOrder = { 1352 }, level = 1, group = "CritChanceWithSwordForJewel", weightKey = { "sword", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, }, - ["CritChanceWithBowJewel"] = { type = "Prefix", affix = "of the Sniper FIX ME", "(12-16)% increased Critical Strike Chance with Bows", statOrder = { 1349 }, level = 1, group = "CritChanceWithBowForJewel", weightKey = { "bow", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, }, - ["CritChanceWithClawJewel"] = { type = "Prefix", affix = "of the Eagle FIX ME", "(12-16)% increased Critical Strike Chance with Claws", statOrder = { 1350 }, level = 1, group = "CritChanceWithClawForJewel", weightKey = { "claw", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, }, - ["CritChanceWithDaggerJewel"] = { type = "Prefix", affix = "of Needling FIX ME", "(12-16)% increased Critical Strike Chance with Daggers", statOrder = { 1351 }, level = 1, group = "CritChanceWithDaggerForJewel", weightKey = { "dagger", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, }, - ["CritChanceWithWandJewel"] = { type = "Prefix", affix = "of Divination FIX ME", "(12-16)% increased Critical Strike Chance with Wands", statOrder = { 1355 }, level = 1, group = "CritChanceWithWandForJewel", weightKey = { "wand", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, }, - ["CritChanceWithStaffJewel"] = { type = "Prefix", affix = "of Tyranny FIX ME", "(12-16)% increased Critical Strike Chance with Staves", statOrder = { 1354 }, level = 1, group = "CritChanceWithStaffForJewel", weightKey = { "staff", "specific_weapon", "not_str", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, }, - ["CritMultiplierWithMaceJewel"] = { type = "Prefix", affix = "of Crushing FIX ME", "+(8-10)% to Critical Strike Multiplier with Maces or Sceptres", statOrder = { 1377 }, level = 1, group = "CritMultiplierWithMaceForJewel", weightKey = { "mace", "specific_weapon", "not_str", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack", "critical" }, }, - ["CritMultiplierWithAxeJewel"] = { type = "Prefix", affix = "of Execution FIX ME", "+(8-10)% to Critical Strike Multiplier with Axes", statOrder = { 1378 }, level = 1, group = "CritMultiplierWithAxeForJewel", weightKey = { "axe", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack", "critical" }, }, - ["CritMultiplierWithSwordJewel"] = { type = "Prefix", affix = "of Severing FIX ME", "+(8-10)% to Critical Strike Multiplier with Swords", statOrder = { 1380 }, level = 1, group = "CritMultiplierWithSwordForJewel", weightKey = { "sword", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack", "critical" }, }, - ["CritMultiplierWithBowJewel"] = { type = "Prefix", affix = "of the Hunter FIX ME", "+(8-10)% to Critical Strike Multiplier with Bows", statOrder = { 1379 }, level = 1, group = "CritMultiplierWithBowForJewel", weightKey = { "bow", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack", "critical" }, }, - ["CritMultiplierWithClawJewel"] = { type = "Prefix", affix = "of the Bear FIX ME", "+(8-10)% to Critical Strike Multiplier with Claws", statOrder = { 1382 }, level = 1, group = "CritMultiplierWithClawForJewel", weightKey = { "claw", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack", "critical" }, }, - ["CritMultiplierWithDaggerJewel"] = { type = "Prefix", affix = "of Assassination FIX ME", "+(8-10)% to Critical Strike Multiplier with Daggers", statOrder = { 1376 }, level = 1, group = "CritMultiplierWithDaggerForJewel", weightKey = { "dagger", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack", "critical" }, }, - ["CritMultiplierWithWandJewel_"] = { type = "Prefix", affix = "of Evocation FIX ME", "+(8-10)% to Critical Strike Multiplier with Wands", statOrder = { 1381 }, level = 1, group = "CritMultiplierWithWandForJewel", weightKey = { "wand", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack", "critical" }, }, - ["CritMultiplierWithStaffJewel"] = { type = "Prefix", affix = "of Trauma FIX ME", "+(8-10)% to Critical Strike Multiplier with Staves", statOrder = { 1383 }, level = 1, group = "CritMultiplierWithStaffForJewel", weightKey = { "staff", "specific_weapon", "not_str", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack", "critical" }, }, - ["OneHandedCritChanceJewel"] = { type = "Prefix", affix = "Harming", "(14-18)% increased Critical Strike Chance with One Handed Melee Weapons", statOrder = { 1362 }, level = 1, group = "OneHandedCritChanceForJewel", weightKey = { "wand", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 250, 0 }, modTags = { "attack", "critical" }, }, - ["TwoHandedCritChanceJewel"] = { type = "Prefix", affix = "Sundering", "(14-18)% increased Critical Strike Chance with Two Handed Melee Weapons", statOrder = { 1360 }, level = 1, group = "TwoHandedCritChanceForJewel", weightKey = { "bow", "one_handed_mod", "shield_mod", "dual_wielding_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 0, 250, 0 }, modTags = { "attack", "critical" }, }, - ["DualWieldingCritChanceJewel"] = { type = "Prefix", affix = "Technical", "(14-18)% increased Attack Critical Strike Chance while Dual Wielding", statOrder = { 1364 }, level = 1, group = "DualWieldingCritChanceForJewel", weightKey = { "shield_mod", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 250, 0 }, modTags = { "attack", "critical" }, }, - ["ShieldCritChanceJewel"] = { type = "Prefix", affix = "", "(10-14)% increased Critical Strike Chance while holding a Shield", statOrder = { 1357 }, level = 1, group = "ShieldCritChanceForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "critical" }, }, - ["MeleeCritChanceJewel"] = { type = "Suffix", affix = "of Weight", "(10-14)% increased Melee Critical Strike Chance", statOrder = { 1363 }, level = 1, group = "MeleeCritChanceForJewel", weightKey = { "bow", "wand", "not_int", "default", }, weightVal = { 0, 0, 250, 0 }, modTags = { "attack", "critical" }, }, - ["SpellCritChanceJewel"] = { type = "Suffix", affix = "of Annihilation", "(10-14)% increased Spell Critical Strike Chance", statOrder = { 1342 }, level = 1, group = "SpellCritChanceForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 250 }, modTags = { "caster", "critical" }, }, - ["TrapCritChanceJewel_"] = { type = "Prefix", affix = "Inescapable", "(12-16)% increased Critical Strike Chance with Traps", statOrder = { 1358 }, level = 1, group = "TrapCritChanceForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, }, - ["MineCritChanceJewel"] = { type = "Prefix", affix = "Crippling", "(12-16)% increased Critical Strike Chance with Mines", statOrder = { 1359 }, level = 1, group = "MineCritChanceForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, }, - ["FireCritChanceJewel"] = { type = "Prefix", affix = "Incinerating", "(14-18)% increased Critical Strike Chance with Fire Skills", statOrder = { 1365 }, level = 1, group = "FireCritChanceForJewel", weightKey = { "not_str", "default", }, weightVal = { 200, 250 }, modTags = { "elemental", "fire", "critical" }, }, - ["ColdCritChanceJewel"] = { type = "Prefix", affix = "Avalanching", "(14-18)% increased Critical Strike Chance with Cold Skills", statOrder = { 1367 }, level = 1, group = "ColdCritChanceForJewel", weightKey = { "not_dex", "default", }, weightVal = { 200, 250 }, modTags = { "elemental", "cold", "critical" }, }, - ["LightningCritChanceJewel"] = { type = "Prefix", affix = "Thundering", "(14-18)% increased Critical Strike Chance with Lightning Skills", statOrder = { 1366 }, level = 1, group = "LightningCritChanceForJewel", weightKey = { "not_int", "default", }, weightVal = { 200, 250 }, modTags = { "elemental", "lightning", "critical" }, }, - ["ElementalCritChanceJewel"] = { type = "Suffix", affix = "of the Apocalypse", "(10-14)% increased Critical Strike Chance with Elemental Skills", statOrder = { 1368 }, level = 1, group = "ElementalCritChanceForJewel", weightKey = { "default", }, weightVal = { 100 }, modTags = { "elemental", "critical" }, }, - ["ChaosCritChanceJewel"] = { type = "Prefix", affix = "Obliterating", "(12-16)% increased Critical Strike Chance with Chaos Skills", statOrder = { 1369 }, level = 1, group = "ChaosCritChanceForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "critical" }, }, - ["OneHandCritMultiplierJewel_"] = { type = "Prefix", affix = "Piercing", "+(15-18)% to Critical Strike Multiplier with One Handed Melee Weapons", statOrder = { 1384 }, level = 1, group = "OneHandCritMultiplierForJewel", weightKey = { "wand", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 250, 0 }, modTags = { "damage", "attack", "critical" }, }, - ["TwoHandCritMultiplierJewel"] = { type = "Prefix", affix = "Rupturing", "+(15-18)% to Critical Strike Multiplier with Two Handed Melee Weapons", statOrder = { 1361 }, level = 1, group = "TwoHandCritMultiplierForJewel", weightKey = { "bow", "one_handed_mod", "shield_mod", "dual_wielding_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 0, 250, 0 }, modTags = { "damage", "attack", "critical" }, }, - ["DualWieldingCritMultiplierJewel"] = { type = "Prefix", affix = "Puncturing", "+(15-18)% to Critical Strike Multiplier while Dual Wielding", statOrder = { 4125 }, level = 1, group = "DualWieldingCritMultiplierForJewel", weightKey = { "shield_mod", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 250, 0 }, modTags = { "damage", "attack", "critical" }, }, - ["ShieldCritMultiplierJewel"] = { type = "Prefix", affix = "", "+(6-8)% to Melee Critical Strike Multiplier while holding a Shield", statOrder = { 1387 }, level = 1, group = "ShieldCritMultiplierForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack", "critical" }, }, - ["MeleeCritMultiplier"] = { type = "Suffix", affix = "of Demolishing", "+(12-15)% to Melee Critical Strike Multiplier", statOrder = { 1385 }, level = 1, group = "MeleeCritMultiplierForJewel", weightKey = { "bow", "wand", "not_int", "default", }, weightVal = { 0, 0, 250, 0 }, modTags = { "damage", "attack", "critical" }, }, - ["SpellCritMultiplier"] = { type = "Suffix", affix = "of Unmaking", "+(12-15)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1375 }, level = 1, group = "SpellCritMultiplierForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 250 }, modTags = { "caster_damage", "damage", "caster", "critical" }, }, - ["TrapCritMultiplier"] = { type = "Prefix", affix = "Debilitating", "+(8-10)% to Critical Strike Multiplier with Traps", statOrder = { 1388 }, level = 1, group = "TrapCritMultiplierForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "critical" }, }, - ["MineCritMultiplier"] = { type = "Prefix", affix = "Incapacitating", "+(8-10)% to Critical Strike Multiplier with Mines", statOrder = { 1389 }, level = 1, group = "MineCritMultiplierForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "critical" }, }, - ["FireCritMultiplier"] = { type = "Prefix", affix = "Infernal", "+(15-18)% to Critical Strike Multiplier with Fire Skills", statOrder = { 1390 }, level = 1, group = "FireCritMultiplierForJewel", weightKey = { "not_str", "default", }, weightVal = { 200, 250 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "critical" }, }, - ["ColdCritMultiplier"] = { type = "Prefix", affix = "Arctic", "+(15-18)% to Critical Strike Multiplier with Cold Skills", statOrder = { 1392 }, level = 1, group = "ColdCritMultiplierForJewel", weightKey = { "not_dex", "default", }, weightVal = { 200, 250 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "critical" }, }, - ["LightningCritMultiplier"] = { type = "Prefix", affix = "Surging", "+(15-18)% to Critical Strike Multiplier with Lightning Skills", statOrder = { 1391 }, level = 1, group = "LightningCritMultiplierForJewel", weightKey = { "not_int", "default", }, weightVal = { 200, 250 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "critical" }, }, - ["ElementalCritMultiplier"] = { type = "Suffix", affix = "of the Elements", "+(12-15)% to Critical Strike Multiplier with Elemental Skills", statOrder = { 1393 }, level = 1, group = "ElementalCritMultiplierForJewel", weightKey = { "default", }, weightVal = { 100 }, modTags = { "elemental_damage", "damage", "elemental", "critical" }, }, - ["ChaosCritMultiplier"] = { type = "Prefix", affix = "", "+(8-10)% to Critical Strike Multiplier with Chaos Skills", statOrder = { 1394 }, level = 1, group = "ChaosCritMultiplierForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "critical" }, }, - ["FireResistanceJewel"] = { type = "Suffix", affix = "of the Dragon", "+(12-15)% to Fire Resistance", statOrder = { 1507 }, level = 1, group = "FireResistanceForJewel", weightKey = { "not_str", "default", }, weightVal = { 300, 500 }, modTags = { "elemental", "fire", "resistance" }, }, - ["ColdResistanceJewel"] = { type = "Suffix", affix = "of the Beast", "+(12-15)% to Cold Resistance", statOrder = { 1513 }, level = 1, group = "ColdResistanceForJewel", weightKey = { "not_dex", "default", }, weightVal = { 300, 500 }, modTags = { "elemental", "cold", "resistance" }, }, - ["LightningResistanceJewel"] = { type = "Suffix", affix = "of Grounding", "+(12-15)% to Lightning Resistance", statOrder = { 1518 }, level = 1, group = "LightningResistanceForJewel", weightKey = { "not_int", "default", }, weightVal = { 300, 500 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["FireColdResistanceJewel"] = { type = "Suffix", affix = "of the Hearth", "+(10-12)% to Fire and Cold Resistances", statOrder = { 2673 }, level = 1, group = "FireColdResistanceForJewel", weightKey = { "not_int", "default", }, weightVal = { 450, 250 }, modTags = { "elemental", "fire", "cold", "resistance" }, }, - ["FireLightningResistanceJewel"] = { type = "Suffix", affix = "of Insulation", "+(10-12)% to Fire and Lightning Resistances", statOrder = { 2674 }, level = 1, group = "FireLightningResistanceForJewel", weightKey = { "not_dex", "default", }, weightVal = { 450, 250 }, modTags = { "elemental", "fire", "lightning", "resistance" }, }, - ["ColdLightningResistanceJewel"] = { type = "Suffix", affix = "of Shelter", "+(10-12)% to Cold and Lightning Resistances", statOrder = { 2675 }, level = 1, group = "ColdLightningResistanceForJewel", weightKey = { "not_str", "default", }, weightVal = { 450, 250 }, modTags = { "elemental", "cold", "lightning", "resistance" }, }, - ["AllResistancesJewel"] = { type = "Suffix", affix = "of Resistance", "+(8-10)% to all Elemental Resistances", statOrder = { 1501 }, level = 1, group = "AllResistancesForJewel", weightKey = { "default", }, weightVal = { 300 }, modTags = { "elemental", "resistance" }, }, - ["ChaosResistanceJewel"] = { type = "Suffix", affix = "of Order", "+(7-13)% to Chaos Resistance", statOrder = { 1522 }, level = 1, group = "ChaosResistanceForJewel", weightKey = { "default", }, weightVal = { 100 }, modTags = { "chaos", "resistance" }, }, - ["MaximumFireResistanceJewel"] = { type = "Suffix", affix = "of the Phoenix", "+(1-2)% to maximum Fire Resistance", statOrder = { 1505 }, level = 1, group = "MaximumFireResistanceForJewel", weightKey = { "not_str", "default", }, weightVal = { 60, 100 }, modTags = { "elemental", "fire", "resistance" }, }, - ["MaximumColdResistanceJewel"] = { type = "Suffix", affix = "of the Kraken", "+(1-2)% to maximum Cold Resistance", statOrder = { 1511 }, level = 1, group = "MaximumColdResistanceForJewel", weightKey = { "not_dex", "default", }, weightVal = { 60, 100 }, modTags = { "elemental", "cold", "resistance" }, }, - ["MaximumLightningResistanceJewel"] = { type = "Suffix", affix = "of the Leviathan", "+(1-2)% to maximum Lightning Resistance", statOrder = { 1516 }, level = 1, group = "MaximumLightningResistanceForJewel", weightKey = { "not_int", "default", }, weightVal = { 60, 100 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["StunDurationJewel"] = { type = "Suffix", affix = "of Stunning", "(10-14)% increased Stun Duration on Enemies", statOrder = { 1744 }, level = 1, group = "StunDurationForJewel", weightKey = { "not_str", "default", }, weightVal = { 200, 400 }, modTags = { }, }, - ["StunRecoveryJewel"] = { type = "Suffix", affix = "of Recovery", "(25-35)% increased Stun and Block Recovery", statOrder = { 1781 }, level = 1, group = "StunRecoveryForJewel", weightKey = { "not_str", "default", }, weightVal = { 200, 400 }, modTags = { }, }, - ["ManaCostReductionJewel"] = { type = "Suffix", affix = "of Efficiency", "(3-5)% reduced Mana Cost of Skills", statOrder = { 1764 }, level = 1, group = "ManaCostReductionForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, - ["FasterAilmentDamageJewel"] = { type = "Prefix", affix = "Decrepifying", "Damaging Ailments deal damage (4-6)% faster", statOrder = { 5823 }, level = 1, group = "FasterAilmentDamageForJewel", weightKey = { "default", }, weightVal = { 250 }, modTags = { "ailment" }, }, - ["AuraRadiusJewel"] = { type = "Suffix", affix = "Hero's FIX ME", "(10-15)% increased Area of Effect of Aura Skills", statOrder = { 2101 }, level = 1, group = "AuraRadiusForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "aura" }, }, - ["CurseRadiusJewel"] = { type = "Suffix", affix = "Hexing FIX ME", "(8-10)% increased Area of Effect of Hex Skills", statOrder = { 2102 }, level = 1, group = "CurseRadiusForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, }, - ["AvoidIgniteJewel"] = { type = "Suffix", affix = "Dousing FIX ME", "(6-8)% chance to Avoid being Ignited", statOrder = { 1727 }, level = 1, group = "AvoidIgniteForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["AvoidShockJewel"] = { type = "Suffix", affix = "Insulating FIX ME", "(6-8)% chance to Avoid being Shocked", statOrder = { 1729 }, level = 1, group = "AvoidShockForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["AvoidFreezeJewel"] = { type = "Suffix", affix = "Thawing FIX ME", "(6-8)% chance to Avoid being Frozen", statOrder = { 1726 }, level = 1, group = "AvoidFreezeForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["AvoidChillJewel"] = { type = "Suffix", affix = "Heating FIX ME", "(6-8)% chance to Avoid being Chilled", statOrder = { 1725 }, level = 1, group = "AvoidChillForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["AvoidStunJewel"] = { type = "Suffix", affix = "FIX ME", "(6-8)% chance to Avoid being Stunned", statOrder = { 1732 }, level = 1, group = "AvoidStunForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["ChanceToFreezeJewel"] = { type = "Suffix", affix = "FIX ME", "(2-3)% chance to Freeze", statOrder = { 1906 }, level = 1, group = "ChanceToFreezeForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ChanceToIgniteJewel_"] = { type = "Suffix", affix = "FIX ME", "(2-3)% chance to Ignite", statOrder = { 1903 }, level = 1, group = "ChanceToIgniteForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ChanceToShockJewel"] = { type = "Suffix", affix = "FIX ME", "(2-3)% chance to Shock", statOrder = { 1910 }, level = 1, group = "ChanceToShockForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["EnduranceChargeDurationJewel"] = { type = "Suffix", affix = "of Endurance", "(10-14)% increased Endurance Charge Duration", statOrder = { 2002 }, level = 1, group = "EnduranceChargeDurationForJewel", weightKey = { "not_str", "default", }, weightVal = { 0, 0 }, modTags = { "endurance_charge" }, }, - ["FrenzyChargeDurationJewel"] = { type = "Suffix", affix = "of Frenzy", "(10-14)% increased Frenzy Charge Duration", statOrder = { 2004 }, level = 1, group = "FrenzyChargeDurationForJewel", weightKey = { "not_dex", "default", }, weightVal = { 0, 0 }, modTags = { "frenzy_charge" }, }, - ["PowerChargeDurationJewel_"] = { type = "Suffix", affix = "of Power", "(10-14)% increased Power Charge Duration", statOrder = { 2019 }, level = 1, group = "PowerChargeDurationForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 0 }, modTags = { "power_charge" }, }, - ["KnockbackChanceJewel_"] = { type = "Suffix", affix = "of Fending", "(4-6)% chance to Knock Enemies Back on hit", statOrder = { 1872 }, level = 1, group = "KnockbackChanceForJewel", weightKey = { "default", }, weightVal = { 250 }, modTags = { }, }, - ["BlockDualWieldingJewel"] = { type = "Prefix", affix = "Parrying", "+(2-3)% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1047 }, level = 1, group = "BlockDualWieldingForJewel", weightKey = { "staff", "two_handed_mod", "shield_mod", "default", }, weightVal = { 0, 0, 0, 350 }, modTags = { "block" }, }, - ["BlockShieldJewel"] = { type = "Prefix", affix = "Shielding", "+(2-3)% Chance to Block Attack Damage while holding a Shield", statOrder = { 1028 }, level = 1, group = "BlockShieldForJewel", weightKey = { "two_handed_mod", "dual_wielding_mod", "default", }, weightVal = { 0, 0, 350 }, modTags = { "block" }, }, - ["BlockStaffJewel"] = { type = "Prefix", affix = "Deflecting", "+(2-3)% Chance to Block Attack Damage while wielding a Staff", statOrder = { 1040 }, level = 1, group = "BlockStaffForJewel", weightKey = { "one_handed_mod", "staff", "specific_weapon", "shield_mod", "dual_wielding_mod", "not_dex", "default", }, weightVal = { 0, 350, 0, 0, 0, 350, 0 }, modTags = { "block" }, }, - ["DualWieldingSpellBlockForJewel"] = { type = "Prefix", affix = "Dissipating", "+(2-3)% Chance to Block Spell Damage while Dual Wielding", statOrder = { 1033 }, level = 1, group = "DualWieldingSpellBlockForJewel", weightKey = { "two_handed_mod", "shield_mod", "default", }, weightVal = { 0, 0, 350 }, modTags = { "block" }, }, - ["ShieldSpellBlockJewel"] = { type = "Prefix", affix = "Thwarting", "+(2-3)% Chance to Block Spell Damage while holding a Shield", statOrder = { 1029 }, level = 1, group = "ShieldSpellBlockForJewel", weightKey = { "two_handed_mod", "dual_wielding_mod", "default", }, weightVal = { 0, 0, 350 }, modTags = { "block" }, }, - ["StaffSpellBlockJewel"] = { type = "Prefix", affix = "Halting", "+(2-3)% Chance to Block Spell Damage while wielding a Staff", statOrder = { 1037 }, level = 1, group = "StaffSpellBlockForJewel", weightKey = { "one_handed_mod", "staff", "specific_weapon", "shield_mod", "dual_wielding_mod", "not_dex", "default", }, weightVal = { 0, 350, 0, 0, 0, 350, 0 }, modTags = { "block" }, }, - ["FreezeDurationJewel"] = { type = "Suffix", affix = "of the Glacier", "(12-16)% increased Chill and Freeze Duration on Enemies", statOrder = { 5472 }, level = 1, group = "FreezeDurationForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ShockDurationJewel"] = { type = "Suffix", affix = "of the Storm", "(12-16)% increased Shock Duration on Enemies", statOrder = { 1738 }, level = 1, group = "ShockDurationForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["IgniteDurationJewel"] = { type = "Suffix", affix = "of Immolation", "(3-5)% increased Ignite Duration on Enemies", statOrder = { 1740 }, level = 1, group = "BurnDurationForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ChillAndShockEffectOnYouJewel"] = { type = "Suffix", affix = "of Insulation", "15% reduced Effect of Chill and Shock on you", statOrder = { 9506 }, level = 1, group = "ChillAndShockEffectOnYouJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "lightning", "ailment" }, }, - ["CurseEffectOnYouJewel"] = { type = "Suffix", affix = "of Hexwarding", "(25-30)% reduced Effect of Curses on you", statOrder = { 2047 }, level = 1, group = "CurseEffectOnYouJewel", weightKey = { "default", }, weightVal = { 250 }, modTags = { "curse" }, }, - ["IgniteDurationOnYouJewel"] = { type = "Suffix", affix = "of the Flameruler", "(30-35)% reduced Ignite Duration on you", statOrder = { 1756 }, level = 1, group = "ReducedIgniteDurationOnSelf", weightKey = { "default", }, weightVal = { 250 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ChillEffectOnYouJewel"] = { type = "Suffix", affix = "of the Snowbreather", "(30-35)% reduced Effect of Chill on you", statOrder = { 1526 }, level = 1, group = "ChillEffectivenessOnSelf", weightKey = { "default", }, weightVal = { 250 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ShockEffectOnYouJewel"] = { type = "Suffix", affix = "of the Stormdweller", "(30-35)% reduced Effect of Shock on you", statOrder = { 9507 }, level = 1, group = "ReducedShockEffectOnSelf", weightKey = { "default", }, weightVal = { 250 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["PoisonDurationOnYouJewel"] = { type = "Suffix", affix = "of Neutralisation", "(30-35)% reduced Poison Duration on you", statOrder = { 9467 }, level = 1, group = "ReducedPoisonDuration", weightKey = { "default", }, weightVal = { 250 }, modTags = { "poison", "chaos", "ailment" }, }, - ["BleedDurationOnYouJewel"] = { type = "Suffix", affix = "of Stemming", "(30-35)% reduced Bleed Duration on you", statOrder = { 9458 }, level = 1, group = "ReducedBleedDuration", weightKey = { "default", }, weightVal = { 250 }, modTags = { "bleed", "physical", "ailment" }, }, - ["ManaReservationEfficiencyJewel"] = { type = "Prefix", affix = "Cerebral", "(2-3)% increased Mana Reservation Efficiency of Skills", statOrder = { 2105 }, level = 1, group = "ManaReservationEfficiency", weightKey = { "default", }, weightVal = { 250 }, modTags = { "resource", "mana" }, }, - ["FlaskDurationJewel"] = { type = "Prefix", affix = "Prolonging", "(6-10)% increased Flask Effect Duration", statOrder = { 2064 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { "default", }, weightVal = { 250 }, modTags = { "flask" }, }, - ["FreezeChanceAndDurationJewel"] = { type = "Suffix", affix = "of Freezing", "(12-16)% increased Freeze Duration on Enemies", "(3-5)% chance to Freeze", statOrder = { 1739, 1906 }, level = 1, group = "FreezeChanceAndDurationForJewel", weightKey = { "not_dex", "default", }, weightVal = { 250, 350 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ShockChanceAndDurationJewel"] = { type = "Suffix", affix = "of Shocking", "(12-16)% increased Shock Duration on Enemies", "(3-5)% chance to Shock", statOrder = { 1738, 1910 }, level = 1, group = "ShockChanceAndDurationForJewel", weightKey = { "not_int", "default", }, weightVal = { 250, 350 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["IgniteChanceAndDurationJewel"] = { type = "Suffix", affix = "of Burning", "(6-8)% increased Ignite Duration on Enemies", "(3-5)% chance to Ignite", statOrder = { 1740, 1903 }, level = 1, group = "IgniteChanceAndDurationForJewel", weightKey = { "not_str", "default", }, weightVal = { 250, 350 }, modTags = { "elemental", "fire", "ailment" }, }, - ["PoisonChanceAndDurationForJewel"] = { type = "Suffix", affix = "of Poisoning", "(6-8)% increased Poison Duration", "(3-5)% chance to Poison on Hit", statOrder = { 3036, 3039 }, level = 1, group = "PoisonChanceAndDurationForJewel", weightKey = { "not_dex", "default", }, weightVal = { 250, 350 }, modTags = { "poison", "chaos", "ailment" }, }, - ["BleedChanceAndDurationForJewel__"] = { type = "Suffix", affix = "of Bleeding", "Attacks have (3-5)% chance to cause Bleeding", "(12-16)% increased Bleeding Duration", statOrder = { 2365, 4811 }, level = 1, group = "BleedChanceAndDurationForJewel", weightKey = { "not_str", "default", }, weightVal = { 250, 350 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["ImpaleChanceForJewel_"] = { type = "Suffix", affix = "of Impaling", "(5-7)% chance to Impale Enemies on Hit with Attacks", statOrder = { 4739 }, level = 1, group = "ImpaleChanceForJewel", weightKey = { "not_str", "default", }, weightVal = { 250, 350 }, modTags = { "physical", "attack" }, }, - ["PoisonDamageForJewel"] = { type = "Suffix", affix = "of Venom", "(16-20)% increased Damage with Poison", statOrder = { 3047 }, level = 1, group = "PoisonDamageForJewel", weightKey = { "not_dex", "default", }, weightVal = { 250, 500 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["BleedDamageForJewel"] = { type = "Suffix", affix = "of Haemophilia", "(16-20)% increased Damage with Bleeding", statOrder = { 3035 }, level = 1, group = "BleedDamageForJewel", weightKey = { "not_str", "default", }, weightVal = { 250, 500 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, - ["BurningDamageForJewel"] = { type = "Suffix", affix = "of Combusting", "(16-20)% increased Burning Damage", statOrder = { 1758 }, level = 1, group = "BurningDamageForJewel", weightKey = { "default", }, weightVal = { 500 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, - ["EnergyShieldDelayJewel"] = { type = "Prefix", affix = "Serene", "(4-6)% faster start of Energy Shield Recharge", statOrder = { 1444 }, level = 1, group = "EnergyShieldDelayForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 500 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldRateJewel"] = { type = "Prefix", affix = "Fevered", "(6-8)% increased Energy Shield Recharge Rate", statOrder = { 1447 }, level = 1, group = "EnergyShieldRechargeRateForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 500 }, modTags = { "defences", "energy_shield" }, }, - ["MinionBlockJewel"] = { type = "Suffix", affix = "of the Wall", "Minions have +(4-6)% Chance to Block Attack Damage", statOrder = { 2777 }, level = 1, group = "MinionBlockForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 0 }, modTags = { "block", "minion" }, }, - ["MinionLifeJewel"] = { type = "Prefix", affix = "Master's", "Minions have (8-12)% increased maximum Life", statOrder = { 1647 }, level = 1, group = "MinionLifeForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 350 }, modTags = { "resource", "life", "minion" }, }, - ["MinionElementalResistancesJewel"] = { type = "Suffix", affix = "of Resilience", "Minions have +(11-15)% to all Elemental Resistances", statOrder = { 2786 }, level = 1, group = "MinionElementalResistancesForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 350 }, modTags = { "elemental", "resistance", "minion" }, }, - ["MinionAccuracyRatingJewel"] = { type = "Suffix", affix = "of Training", "(22-26)% increased Minion Accuracy Rating", statOrder = { 8806 }, level = 1, group = "MinionAccuracyRatingForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 350 }, modTags = { "attack", "minion" }, }, - ["TotemDamageJewel"] = { type = "Prefix", affix = "Shaman's", "(12-16)% increased Totem Damage", statOrder = { 1078 }, level = 1, group = "TotemDamageForJewel", weightKey = { "not_str", "default", }, weightVal = { 250, 350 }, modTags = { "damage" }, }, - ["TotemLifeJewel"] = { type = "Prefix", affix = "Carved", "(8-12)% increased Totem Life", statOrder = { 1655 }, level = 1, group = "TotemLifeForJewel", weightKey = { "not_str", "default", }, weightVal = { 250, 350 }, modTags = { "resource", "life" }, }, - ["TotemElementalResistancesJewel"] = { type = "Suffix", affix = "of Runes", "Totems gain +(6-10)% to all Elemental Resistances", statOrder = { 2662 }, level = 1, group = "TotemElementalResistancesForJewel", weightKey = { "not_str", "default", }, weightVal = { 250, 350 }, modTags = { "elemental", "resistance" }, }, - ["DelveWeaponFirePenetration1h1_"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (5-7)% Fire Resistance", statOrder = { 2853 }, level = 1, group = "FireResistancePenetration", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["DelveWeaponFirePenetration2h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (12-15)% Fire Resistance", statOrder = { 2853 }, level = 1, group = "FireResistancePenetration", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["DelveJewelFirePenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates 1% Fire Resistance", statOrder = { 2853 }, level = 1, group = "FireResistancePenetration", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["DelveBodyArmourAvoidFire1_"] = { type = "Prefix", affix = "Subterranean", "(8-10)% chance to Avoid Fire Damage from Hits", statOrder = { 3239 }, level = 1, group = "FireDamageAvoidance", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "elemental", "fire" }, }, - ["DelveGlovesFireDamageToSpells1"] = { type = "Prefix", affix = "Subterranean", "Adds (20-25) to (26-35) Fire Damage", statOrder = { 1243 }, level = 1, group = "GlobalAddedFireDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["DelveBootsSocketedFireGemLevel1"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Fire Gems", statOrder = { 146 }, level = 1, group = "LocalIncreaseSocketedFireGemLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "fire", "gem" }, }, - ["DelveRingFireLeech1"] = { type = "Prefix", affix = "Subterranean", "0.2% of Fire Damage Leeched as Life", statOrder = { 1551 }, level = 1, group = "FireDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "elemental", "fire" }, }, - ["DelveHelmetEnemyFireResistanceAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies have -9% to Fire Resistance", statOrder = { 7518 }, level = 1, group = "NearbyEnemyFireDamageResistance", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "resistance" }, }, - ["DelveJewelryFireDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Fire Damage", statOrder = { 1241 }, level = 1, group = "FireDamagePercentagePrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["DelveWeaponColdPenetration1h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (5-7)% Cold Resistance", statOrder = { 2855 }, level = 1, group = "ColdResistancePenetration", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["DelveWeaponColdPenetration2h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (12-15)% Cold Resistance", statOrder = { 2855 }, level = 1, group = "ColdResistancePenetration", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["DelveJewelColdPenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates 1% Cold Resistance", statOrder = { 2855 }, level = 1, group = "ColdResistancePenetration", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["DelveBodyArmourAvoidCold1"] = { type = "Prefix", affix = "Subterranean", "(6-10)% chance to Avoid Cold Damage from Hits", statOrder = { 3240 }, level = 1, group = "ColdDamageAvoidance", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "elemental", "cold" }, }, - ["DelveGlovesColdDamageToSpells1"] = { type = "Prefix", affix = "Subterranean", "Adds (20-25) to (26-35) Cold Damage", statOrder = { 1252 }, level = 1, group = "GlobalAddedColdDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["DelveBootsSocketedColdGemLevel1"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Cold Gems", statOrder = { 147 }, level = 1, group = "LocalIncreaseSocketedColdGemLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "cold", "gem" }, }, - ["DelveRingColdLeech1"] = { type = "Prefix", affix = "Subterranean", "0.2% of Cold Damage Leeched as Life", statOrder = { 1556 }, level = 1, group = "ColdDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "elemental", "cold" }, }, - ["DelveHelmetEnemyColdResistanceAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies have -9% to Cold Resistance", statOrder = { 7516 }, level = 1, group = "NearbyEnemyColdDamageResistance", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "resistance" }, }, - ["DelveJewelryColdDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Cold Damage", statOrder = { 1250 }, level = 1, group = "ColdDamagePercentagePrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["DelveWeaponLightningPenetration1h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (5-7)% Lightning Resistance", statOrder = { 2856 }, level = 1, group = "LightningResistancePenetration", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["DelveWeaponLightningPenetration2h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (12-15)% Lightning Resistance", statOrder = { 2856 }, level = 1, group = "LightningResistancePenetration", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["DelveJewelLightningPenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates 1% Lightning Resistance", statOrder = { 2856 }, level = 1, group = "LightningResistancePenetration", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["DelveBodyArmourAvoidLightning1"] = { type = "Prefix", affix = "Subterranean", "(6-10)% chance to Avoid Lightning Damage from Hits", statOrder = { 3241 }, level = 1, group = "LightningDamageAvoidance", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "elemental", "lightning" }, }, - ["DelveGlovesLightningDamageToSpells1"] = { type = "Prefix", affix = "Subterranean", "Adds 1 to (48-60) Lightning Damage", statOrder = { 1263 }, level = 1, group = "GlobalAddedLightningDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["DelveBootsSocketedLightningGemLevel1_"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Lightning Gems", statOrder = { 148 }, level = 1, group = "LocalIncreaseSocketedLightningGemLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "lightning", "gem" }, }, - ["DelveRingLightningLeech1_"] = { type = "Prefix", affix = "Subterranean", "0.2% of Lightning Damage Leeched as Life", statOrder = { 1560 }, level = 1, group = "LightningDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, }, - ["DelveHelmetEnemyLightningResistanceAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies have -9% to Lightning Resistance", statOrder = { 7520 }, level = 1, group = "NearbyEnemyLightningDamageResistance", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "resistance" }, }, - ["DelveJewelryLightningDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Lightning Damage", statOrder = { 1261 }, level = 1, group = "LightningDamagePercentagePrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["DelveWeaponIntimidateOnHit1"] = { type = "Suffix", affix = "of the Underground", "15% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 7480 }, level = 1, group = "LocalChanceToIntimidateOnHit", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "attack" }, }, - ["DelveArmourPhysDamageTaken1"] = { type = "Suffix", affix = "of the Underground", "-(75-50) Physical Damage taken from Hits", statOrder = { 2112 }, level = 1, group = "FlatPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "physical" }, }, - ["DelveArmourPhysDamageTakenv2_1"] = { type = "Suffix", affix = "of the Underground", "-(34-20) Physical Damage taken from Hits", statOrder = { 2112 }, level = 1, group = "FlatPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical" }, }, - ["DelveArmourPhysDamageTakenv2_2"] = { type = "Suffix", affix = "of the Underground", "-(49-35) Physical Damage taken from Hits", statOrder = { 2112 }, level = 30, group = "FlatPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical" }, }, - ["DelveArmourPhysDamageTakenv2_3"] = { type = "Suffix", affix = "of the Underground", "-(75-50) Physical Damage taken from Hits", statOrder = { 2112 }, level = 60, group = "FlatPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical" }, }, - ["DelveShieldPhysicalDamageReductionRating1"] = { type = "Prefix", affix = "Subterranean", "(3-5)% additional Physical Damage Reduction", statOrder = { 2150 }, level = 1, group = "ReducedPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "physical" }, }, - ["DelveBootsPhyiscalDamageReductionRatingWhileMoving1"] = { type = "Suffix", affix = "of the Underground", "(3-5)% additional Physical Damage Reduction while moving", statOrder = { 4438 }, level = 1, group = "AdditionalPhysicalDamageReductionWhileMoving", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical" }, }, - ["DelveGlovesGlobalAddedPhysicalDamage1"] = { type = "Prefix", affix = "Subterranean", "Adds (6-8) to (9-11) Physical Damage", statOrder = { 1150 }, level = 1, group = "GlobalAddedPhysicalDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["DelveRingPhysicalLeech1"] = { type = "Prefix", affix = "Subterranean", "0.2% of Physical Damage Leeched as Life", statOrder = { 1547 }, level = 1, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "physical" }, }, - ["DelveHelmetEnemyPhysicalDamageTakenAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies take 9% increased Physical Damage", statOrder = { 7522 }, level = 1, group = "NearbyEnemyPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["DelveJewelryPhysicalDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Global Physical Damage", statOrder = { 1116 }, level = 1, group = "PhysicalDamagePercentPrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["DelveJewelPhysicalDamageOverTimeTaken1"] = { type = "Prefix", affix = "Subterranean", "(1-2)% reduced Physical Damage taken over time", statOrder = { 4856 }, level = 1, group = "PhysicalDamageOverTimeTaken", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "physical" }, }, - ["DelveWeaponDespairOnHit1h1"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Despair on Hit", statOrder = { 2404 }, level = 1, group = "CurseOnHitDespair", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "caster", "curse" }, }, - ["DelveWeaponDespairOnHit2h1"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Despair on Hit", statOrder = { 2404 }, level = 1, group = "CurseOnHitDespair", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "caster", "curse" }, }, - ["DelveArmourChaosResistance1_"] = { type = "Prefix", affix = "Subterranean", "+(20-35)% to Chaos Resistance", statOrder = { 1522 }, level = 1, group = "ChaosResistancePrefix", weightKey = { "abyss_jewel", "jewel", "quiver", "shield", "body_armour", "boots", "gloves", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "chaos", "resistance" }, }, - ["DelveBodyArmourChaosDegenResist1"] = { type = "Suffix", affix = "of the Underground", "+(30-40)% Chaos Resistance against Damage Over Time", statOrder = { 5442 }, level = 1, group = "ChaosResistanceAgainstDamageOverTime", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "chaos", "resistance" }, }, - ["DelveGlovesChaosDamageToSpells1"] = { type = "Prefix", affix = "Subterranean", "Adds (15-20) to (21-30) Chaos Damage", statOrder = { 1270 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["DelveBootsSocketedChaosGemLevel1"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Chaos Gems", statOrder = { 149 }, level = 1, group = "LocalIncreaseSocketedChaosGemLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "chaos", "gem" }, }, - ["DelveRingChaosLeech1"] = { type = "Prefix", affix = "Subterranean", "0.2% of Chaos Damage Leeched as Life", statOrder = { 1563 }, level = 1, group = "ChaosDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "chaos" }, }, - ["DelveHelmetEnemyChaosResistanceAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies have -9% to Chaos Resistance", statOrder = { 7515 }, level = 1, group = "NearbyEnemyChaosDamageResistance", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "chaos_damage", "damage", "chaos", "resistance" }, }, - ["DelveJewelryChaosDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Chaos Damage", statOrder = { 1269 }, level = 1, group = "IncreasedChaosDamagePrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["DelveJewelChaosDamage1"] = { type = "Suffix", affix = "of the Underground", "(13-19)% increased Chaos Damage", statOrder = { 1269 }, level = 1, group = "IncreasedChaosDamage", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["DelveWeaponDamageOnFullLife1h1__"] = { type = "Suffix", affix = "of the Underground", "(50-60)% increased Damage when on Full Life", statOrder = { 5774 }, level = 1, group = "DamageOnFullLife", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage" }, }, - ["DelveWeaponDamageOnFullLife2h1"] = { type = "Suffix", affix = "of the Underground", "(100-120)% increased Damage when on Full Life", statOrder = { 5774 }, level = 1, group = "DamageOnFullLife", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage" }, }, - ["DelveBodyArmourLife1"] = { type = "Prefix", affix = "Subterranean", "+(25-40) to maximum Life", "(3-5)% increased maximum Life", statOrder = { 1451, 1453 }, level = 1, group = "LifeAndPercentLife", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "life" }, }, - ["DelveNonBodyArmourLife1"] = { type = "Prefix", affix = "Subterranean", "+(15-25) to maximum Life", "(2-3)% increased maximum Life", statOrder = { 1451, 1453 }, level = 1, group = "LifeAndPercentLife", weightKey = { "abyss_jewel", "jewel", "shield", "boots", "helmet", "gloves", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "resource", "life" }, }, - ["DelveArmourLifeRegen1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 1% of Life per second", statOrder = { 1823 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { "abyss_jewel", "jewel", "quiver", "shield", "body_armour", "helmet", "gloves", "boots", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 2000, 2000, 0 }, modTags = { "resource", "life" }, }, - ["DelveJewelryFlaskLifeRecovery1"] = { type = "Suffix", affix = "of the Underground", "(20-30)% increased Life Recovery from Flasks", statOrder = { 1936 }, level = 1, group = "GlobalFlaskLifeRecovery", weightKey = { "abyss_jewel", "jewel", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "flask", "resource", "life" }, }, - ["DelveWeaponArmourIfYouHitRecently1h1"] = { type = "Suffix", affix = "of the Underground", "+500 to Armour if you've Hit an Enemy Recently", statOrder = { 9159 }, level = 1, group = "PhysicalDamageReductionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "sceptre", "mace", "axe", "sword", "default", }, weightVal = { 0, 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "armour" }, }, - ["DelveJewelLifeRegeneration1"] = { type = "Prefix", affix = "Subterranean", "Regenerate 0.3% of Life per second", statOrder = { 1823 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resource", "life" }, }, - ["DelveWeaponArmourIfYouHitRecently2h1"] = { type = "Suffix", affix = "of the Underground", "+1000 to Armour if you've Hit an Enemy Recently", statOrder = { 9159 }, level = 1, group = "PhysicalDamageReductionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "staff", "mace", "axe", "sword", "default", }, weightVal = { 0, 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "armour" }, }, - ["DelveJewelArmourIfYouHitRecently1"] = { type = "Suffix", affix = "of the Underground", "+(250-300) to Armour if you've Hit an Enemy Recently", statOrder = { 9159 }, level = 1, group = "PhysicalDamageReductionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 300, 300, 0 }, modTags = { "defences", "armour" }, }, - ["DelveWeaponEvasionIfYouHitRecently1h1"] = { type = "Suffix", affix = "of the Underground", "+500 to Evasion Rating if Hit an Enemy Recently", statOrder = { 6162 }, level = 1, group = "EvasionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "axe", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "evasion" }, }, - ["DelveWeaponEvasionIfYouHitRecently2h1"] = { type = "Suffix", affix = "of the Underground", "+1000 to Evasion Rating if Hit an Enemy Recently", statOrder = { 6162 }, level = 1, group = "EvasionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "axe", "sword", "bow", "default", }, weightVal = { 0, 0, 0, 1600, 1600, 1600, 0 }, modTags = { "defences", "evasion" }, }, - ["DelveJewelEvasionIfYouHitRecently1"] = { type = "Suffix", affix = "of the Underground", "+(250-300) to Evasion Rating if Hit an Enemy Recently", statOrder = { 6162 }, level = 1, group = "EvasionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 300, 300, 0 }, modTags = { "defences", "evasion" }, }, - ["DelveWeaponEnergyShieldRegenIfYouHitRecently1h1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.5% of Energy Shield per second if you've Hit an Enemy Recently", statOrder = { 6135 }, level = 1, group = "EnergyShieldRegenerationRatePerMinuteIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "dagger", "claw", "wand", "sceptre", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "energy_shield" }, }, - ["DelveWeaponEnergyShieldRegenIfYouHitRecently2h1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 1% of Energy Shield per second if you've Hit an Enemy Recently", statOrder = { 6135 }, level = 1, group = "EnergyShieldRegenerationRatePerMinuteIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "staff", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["DelveJewelEnergyShieldRegenIfYouHitRecently1_"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.3% of Energy Shield per second if you've Hit an Enemy Recently", statOrder = { 6135 }, level = 1, group = "EnergyShieldRegenerationRatePerMinuteIfYouHaveHitAnEnemyRecently", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 300, 300, 0 }, modTags = { "defences", "energy_shield" }, }, - ["DelveArmourArmour1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Armour", statOrder = { 1425 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercentSuffix", weightKey = { "abyss_jewel", "jewel", "str_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour" }, }, - ["DelveArmourEvasion1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Evasion Rating", statOrder = { 1433 }, level = 1, group = "LocalEvasionRatingIncreasePercentSuffix", weightKey = { "abyss_jewel", "jewel", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "evasion" }, }, - ["DelveArmourEnergyShield1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Energy Shield", statOrder = { 1442 }, level = 1, group = "LocalEnergyShieldPercentSuffix", weightKey = { "abyss_jewel", "jewel", "int_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, }, - ["DelveArmourArmourAndEvasion1_"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Armour and Evasion", statOrder = { 1436 }, level = 1, group = "LocalArmourAndEvasionSuffix", weightKey = { "abyss_jewel", "jewel", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour", "evasion" }, }, - ["DelveArmourArmourAndEnergyShield1__"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Armour and Energy Shield", statOrder = { 1435 }, level = 1, group = "LocalArmourAndEnergyShieldSuffix", weightKey = { "abyss_jewel", "jewel", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, - ["DelveArmourEvasionAndEnergyShield1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Evasion and Energy Shield", statOrder = { 1437 }, level = 1, group = "LocalEvasionAndEnergyShieldSuffix", weightKey = { "abyss_jewel", "jewel", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, - ["DelveArmourDefences1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Armour, Evasion and Energy Shield", statOrder = { 1438 }, level = 1, group = "LocalArmourAndEvasionAndEnergyShieldSuffix", weightKey = { "abyss_jewel", "jewel", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, }, - ["DelveArmourQuality"] = { type = "Suffix", affix = "of the Underground", "+(10-20)% to Quality", statOrder = { 7547 }, level = 1, group = "LocalItemQuality", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { }, }, - ["DelveArmourEnergyShieldRegen"] = { type = "Suffix", affix = "of the Underground", "Regenerate 1% of Energy Shield per second", statOrder = { 2521 }, level = 1, group = "EnergyShieldRegenerationPerMinute", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "helmet", "int_armour", "dex_int_armour", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["DelveArmourEnergyShieldLeechSpells_"] = { type = "Suffix", affix = "of the Underground", "0.3% of Spell Damage Leeched as Energy Shield", statOrder = { 1603 }, level = 1, group = "EnergyShieldLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "boots", "helmet", "int_armour", "dex_int_armour", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["DelveArmourSpellBlock__"] = { type = "Suffix", affix = "of the Underground", "(3-4)% Chance to Block Spell Damage", statOrder = { 1046 }, level = 1, group = "SpellBlockPercentage", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "boots", "gloves", "int_armour", "dex_int_armour", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "block" }, }, - ["DelveArmourDodgeAndSpellDodge_"] = { type = "Suffix", affix = "of the Underground", "+(4-6)% chance to Suppress Spell Damage", statOrder = { 1031 }, level = 1, group = "ChanceToDodgeAndSpellDodge", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "helmet", "dex_armour", "dex_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { }, }, - ["DelveArmourBlindChance"] = { type = "Suffix", affix = "of the Underground", "(4-6)% Global chance to Blind Enemies on hit", statOrder = { 2830 }, level = 1, group = "GlobalChanceToBlindOnHit", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "boots", "helmet", "dex_armour", "dex_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { }, }, - ["DelveArmourEvasionOnFullLife"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Global Evasion Rating when on Full Life", statOrder = { 6169 }, level = 1, group = "GlobalEvasionRatingPercentOnFullLife", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "boots", "dex_armour", "dex_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "defences", "evasion" }, }, - ["DelveArmourDoubleArmourEffectOnHit"] = { type = "Suffix", affix = "of the Underground", "(10-20)% chance to Defend with 200% of Armour", statOrder = { 5381 }, level = 1, group = "ChanceWhenHitForArmourToBeDoubled", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "helmet", "str_armour", "str_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "defences", "armour" }, }, - ["DelveArmourAttackBlock"] = { type = "Suffix", affix = "of the Underground", "(3-4)% Chance to Block Attack Damage", statOrder = { 1027 }, level = 1, group = "BlockPercent", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "boots", "helmet", "str_armour", "str_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "block" }, }, - ["DelveArmourFortifyEffect"] = { type = "Suffix", affix = "of the Underground", "+(3-5) to maximum Fortification", statOrder = { 8672 }, level = 1, group = "FortifyEffect", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "boots", "str_armour", "str_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { }, }, - ["DelveJewelryIncreasedEnergyShieldFromBodyArmour1"] = { type = "Suffix", affix = "of the Underground", "(20-30)% increased Energy Shield from Equipped Body Armour", statOrder = { 8685 }, level = 1, group = "MaximumEnergyShieldFromBodyArmour", weightKey = { "abyss_jewel", "jewel", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 0 }, modTags = { "defences", "energy_shield" }, }, - ["DelveJewelryChanceWhenHitForArmourToBeDoubled1"] = { type = "Suffix", affix = "of the Underground", "20% chance to Defend with 200% of Armour", statOrder = { 5381 }, level = 1, group = "ChanceWhenHitForArmourToBeDoubled", weightKey = { "abyss_jewel", "jewel", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 0 }, modTags = { "defences", "armour" }, }, - ["DelveJewelryChanceToEvade"] = { type = "Suffix", affix = "of the Underground", "+(1-2)% chance to Evade Attack Hits", statOrder = { 5383 }, level = 1, group = "AdditionalChanceToEvade", weightKey = { "abyss_jewel", "jewel", "quiver", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "evasion" }, }, - ["DelveJewelGlobalDefences1"] = { type = "Prefix", affix = "Subterranean", "(4-6)% increased Global Defences", statOrder = { 2707 }, level = 1, group = "AllDefences", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "defences" }, }, - ["DelveWeaponLocalChanceForPoisonDamage100FinalInflictedWithThisWeapon1"] = { type = "Prefix", affix = "Subterranean", "60% chance for Poisons inflicted with this Weapon to deal 100% more Damage", statOrder = { 7477 }, level = 1, group = "LocalChanceForPoisonDamage100FinalInflictedWithThisWeapon", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "attack", "ailment" }, }, - ["DelveWeaponLocalChanceForBleedingDamage100FinalInflictedWithThisWeapon1"] = { type = "Prefix", affix = "Subterranean", "60% chance for Bleeding inflicted with this Weapon to deal 100% more Damage", statOrder = { 7476 }, level = 1, group = "LocalChanceForBleedingDamage100FinalInflictedWithThisWeapon", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, - ["DelveArmourAvoidPoison1"] = { type = "Suffix", affix = "of the Underground", "50% chance to Avoid being Poisoned", statOrder = { 1730 }, level = 1, group = "ChanceToAvoidPoison", weightKey = { "abyss_jewel", "jewel", "shield", "helmet", "boots", "body_armour", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["DelveArmourAvoidBleeding1"] = { type = "Suffix", affix = "of the Underground", "50% chance to Avoid Bleeding", statOrder = { 4077 }, level = 1, group = "ChanceToAvoidBleeding", weightKey = { "abyss_jewel", "jewel", "shield", "helmet", "boots", "body_armour", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["DelveJewelryAilmentDamage1_"] = { type = "Suffix", affix = "of the Underground", "(30-40)% increased Damage with Ailments", statOrder = { 4801 }, level = 1, group = "AilmentDamage", weightKey = { "abyss_jewel", "jewel", "quiver", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "damage", "ailment" }, }, - ["DelveJewelAilmentDamage1__"] = { type = "Suffix", affix = "of the Underground", "(15-20)% increased Damage with Ailments", statOrder = { 4801 }, level = 1, group = "AilmentDamage", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "damage", "ailment" }, }, - ["DelveGlovesAddedPhysicalDamageVsPoisonedEnemies1"] = { type = "Prefix", affix = "Subterranean", "Adds (7-11) to (12-18) Physical Damage against Poisoned Enemies", statOrder = { 8791 }, level = 1, group = "AddedPhysicalDamageVsPoisonedEnemies", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 1600, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["DelveGlovesAddedPhysicalDamageVsBleedingEnemies1"] = { type = "Prefix", affix = "Subterranean", "Adds (7-11) to (12-18) Physical Damage against Bleeding Enemies", statOrder = { 2370 }, level = 1, group = "AddedPhysicalDamageVsBleedingEnemies", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 1600, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["DelveWeaponLocalAttackReduceEnemyElementalResistance1h1"] = { type = "Prefix", affix = "Subterranean", "Attacks with this Weapon Penetrate (9-12)% Elemental Resistances", statOrder = { 3624 }, level = 1, group = "LocalAttackReduceEnemyElementalResistance", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["DelveWeaponElementalDamage1h1"] = { type = "Prefix", affix = "Subterranean", "(40-60)% increased Elemental Damage", statOrder = { 1857 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["DelveWeaponElementalDamage2h1"] = { type = "Prefix", affix = "Subterranean", "(80-120)% increased Elemental Damage", statOrder = { 1857 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["DelveWeaponElementalDamagev2_1h1"] = { type = "Prefix", affix = "Subterranean", "(19-25)% increased Elemental Damage", statOrder = { 1857 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["DelveWeaponElementalDamagev2_1h2_"] = { type = "Prefix", affix = "Subterranean", "(26-32)% increased Elemental Damage", statOrder = { 1857 }, level = 25, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["DelveWeaponElementalDamagev2_1h3"] = { type = "Prefix", affix = "Subterranean", "(33-39)% increased Elemental Damage", statOrder = { 1857 }, level = 50, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["DelveWeaponElementalDamagev2_1h4"] = { type = "Prefix", affix = "Subterranean", "(40-49)% increased Elemental Damage", statOrder = { 1857 }, level = 75, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["DelveWeaponElementalDamagev2_2h1"] = { type = "Prefix", affix = "Subterranean", "(37-50)% increased Elemental Damage", statOrder = { 1857 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["DelveWeaponElementalDamagev2_2h2__"] = { type = "Prefix", affix = "Subterranean", "(51-65)% increased Elemental Damage", statOrder = { 1857 }, level = 25, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["DelveWeaponElementalDamagev2_2h3"] = { type = "Prefix", affix = "Subterranean", "(66-79)% increased Elemental Damage", statOrder = { 1857 }, level = 50, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["DelveWeaponElementalDamagev2_2h4_"] = { type = "Prefix", affix = "Subterranean", "(80-94)% increased Elemental Damage", statOrder = { 1857 }, level = 75, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["DelveArmourElementalAilmentDuration1___"] = { type = "Suffix", affix = "of the Underground", "(20-30)% reduced Elemental Ailment Duration on you", statOrder = { 1748 }, level = 1, group = "SelfStatusAilmentDuration", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "helmet", "gloves", "boots", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 2000, 0 }, modTags = { "elemental", "ailment" }, }, - ["DelveJewelryElementalPenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (3-5)% Elemental Resistances", statOrder = { 2852 }, level = 1, group = "ElementalPenetration", weightKey = { "abyss_jewel", "jewel", "quiver", "amulet", "default", }, weightVal = { 0, 0, 1600, 1600, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["DelveRingElementalDamage1"] = { type = "Suffix", affix = "of the Underground", "(25-30)% increased Elemental Damage", statOrder = { 1857 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "belt", "ring", "default", }, weightVal = { 0, 0, 1600, 1600, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["DelveJewelElementalPenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates 1% Elemental Resistances", statOrder = { 2852 }, level = 1, group = "ElementalPenetration", weightKey = { "abyss_jewel", "jewel", "default", }, weightVal = { 1600, 1600, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["DelveWeaponSocketedSpellsDamageFinal1h1_"] = { type = "Prefix", affix = "Subterranean", "Socketed Skills deal 40% more Spell Damage", statOrder = { 483 }, level = 1, group = "SocketedSpellsDamageFinal", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "caster_damage", "damage", "caster", "gem" }, }, - ["DelveWeaponSocketedSpellsDamageFinal2h1"] = { type = "Prefix", affix = "Subterranean", "Socketed Skills deal 20% more Spell Damage", statOrder = { 483 }, level = 1, group = "SocketedSpellsDamageFinal", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "caster_damage", "damage", "caster", "gem" }, }, - ["DelveBodyArmourSocketedSkillsSupportedByArcaneSurge1_"] = { type = "Suffix", affix = "of the Underground", "Socketed Gems are Supported by Level 1 Arcane Surge", statOrder = { 203 }, level = 1, group = "SupportedByArcaneSurge", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "support", "gem" }, }, - ["DelveGlovesSocketedSkillsCastSpeed1_"] = { type = "Suffix", affix = "of the Underground", "Socketed Skills have 18% increased Cast Speed", statOrder = { 480 }, level = 1, group = "SocketedSkillsCastSpeed", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "caster", "speed", "gem" }, }, - ["DelveArmourSocketedSpellsManaCost1_"] = { type = "Suffix", affix = "of the Underground", "Socketed Spells have 20% reduced Mana Cost", statOrder = { 486 }, level = 1, group = "SocketedSpellsManaCost", weightKey = { "abyss_jewel", "jewel", "shield", "boots", "helmet", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "skill", "resource", "mana", "caster", "gem" }, }, - ["DelveJewelAvoidInterruptionWhileCasting1"] = { type = "Suffix", affix = "of the Underground", "(15-20)% chance to Ignore Stuns while Casting", statOrder = { 1779 }, level = 1, group = "AvoidInterruptionWhileCasting", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { }, }, - ["DelveWeaponSocketedAttacksDamageFinal1h1"] = { type = "Prefix", affix = "Subterranean", "Socketed Skills deal 40% more Attack Damage", statOrder = { 464 }, level = 1, group = "SocketedAttacksDamageFinal", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "skill", "damage", "attack", "gem" }, }, - ["DelveWeaponSocketedAttacksDamageFinal2h1_"] = { type = "Prefix", affix = "Subterranean", "Socketed Skills deal 20% more Attack Damage", statOrder = { 464 }, level = 1, group = "SocketedAttacksDamageFinal", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "skill", "damage", "attack", "gem" }, }, - ["DelveBodyArmourSocketedSkillsSupportedByMaim1"] = { type = "Suffix", affix = "of the Underground", "Socketed Gems are Supported by Level 1 Maim", statOrder = { 272 }, level = 1, group = "SupportedByMaim", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "support", "gem" }, }, - ["DelveGlovesLocalDisplaySocketedSkillsAttackSpeed1"] = { type = "Suffix", affix = "of the Underground", "Socketed Skills have 18% increased Attack Speed", statOrder = { 479 }, level = 1, group = "SocketedSkillsAttackSpeed", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "attack", "speed", "gem" }, }, - ["DelveArmourLocalDisplaySocketedAttacksManaCost1_"] = { type = "Suffix", affix = "of the Underground", "Socketed Attacks have -15 to Total Mana Cost", statOrder = { 467 }, level = 1, group = "SocketedAttacksManaCost", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "boots", "helmet", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 0 }, modTags = { "skill", "resource", "mana", "attack", "gem" }, }, - ["DelveJewelAttackLeech1"] = { type = "Suffix", affix = "of the Underground", "0.3% of Attack Damage Leeched as Life", statOrder = { 1545 }, level = 1, group = "LifeLeechFromAttacksPermyriad", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resource", "life", "attack" }, }, - ["DelveWeaponManaRegeneratedIfYouveHitRecently1h1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.4% of Mana per second if you've Hit an Enemy Recently", statOrder = { 7771 }, level = 1, group = "ManaRegeneratedIfYouveHitRecently", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "resource", "mana" }, }, - ["DelveWeaponManaRegeneratedIfYouveHitRecently2h1_"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.8% of Mana per second if you've Hit an Enemy Recently", statOrder = { 7771 }, level = 1, group = "ManaRegeneratedIfYouveHitRecently", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, }, - ["DelveBodyDamageRemovedFromManaBeforeLife1_"] = { type = "Suffix", affix = "of the Underground", "(5-10)% of Damage is taken from Mana before Life", statOrder = { 2572 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "life", "mana" }, }, - ["DelveBodyDamageRemovedFromManaBeforeLifeNew1"] = { type = "Prefix", affix = "Subterranean", "(5-10)% of Damage is taken from Mana before Life", statOrder = { 2572 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "life", "mana" }, }, - ["DelveBootsManaRegenerationRateWhileMoving1"] = { type = "Suffix", affix = "of the Underground", "(50-70)% increased Mana Regeneration Rate while moving", statOrder = { 7783 }, level = 1, group = "ManaRegenerationRateWhileMoving", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, }, - ["DelveGlovesManaGainPerTarget1"] = { type = "Suffix", affix = "of the Underground", "Gain (2-4) Mana per Enemy Hit with Attacks", statOrder = { 1625 }, level = 1, group = "ManaGainPerTarget", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana", "attack" }, }, - ["DelveHelmBaseManaRegeneration1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.5% of Mana per second", statOrder = { 1463 }, level = 1, group = "BaseManaRegeneration", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, }, - ["DelveAmuletBeltManaRecoveryRate1"] = { type = "Suffix", affix = "of the Underground", "(8-12)% increased Mana Recovery rate", statOrder = { 1468 }, level = 1, group = "ManaRecoveryRate", weightKey = { "abyss_jewel", "jewel", "belt", "amulet", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "resource", "mana" }, }, - ["DelveRingManaCostReduction1"] = { type = "Suffix", affix = "of the Underground", "(4-6)% reduced Mana Cost of Skills", statOrder = { 1764 }, level = 1, group = "ManaCostReduction", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, }, - ["DelveQuiverIncreasedMana1"] = { type = "Suffix", affix = "of the Underground", "(20-30)% increased maximum Mana", statOrder = { 1462 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { "abyss_jewel", "jewel", "quiver", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, }, - ["DelveJewelDamageTakenGainedAsMana1"] = { type = "Suffix", affix = "of the Underground", "(2-3)% of Damage taken Recouped as Mana", statOrder = { 2331 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["DelveWeaponChanceToGainOnslaughtOnKill1h1_"] = { type = "Suffix", affix = "of the Underground", "10% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2865 }, level = 1, group = "ChanceToGainOnslaughtOnKill", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { }, }, - ["DelveWeaponChanceToGainOnslaughtOnKill2h1"] = { type = "Suffix", affix = "of the Underground", "20% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2865 }, level = 1, group = "ChanceToGainOnslaughtOnKill", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { }, }, - ["DelveBodyFrenzyChargeWhenHit1"] = { type = "Suffix", affix = "of the Underground", "(15-20)% chance to gain a Frenzy Charge when Hit", statOrder = { 4386 }, level = 1, group = "FrenzyChargeWhenHit", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "frenzy_charge" }, }, - ["DelveBootsMovementSpeedIfHitRecently1"] = { type = "Suffix", affix = "of the Underground", "(4-6)% increased Movement Speed if you've Hit an Enemy Recently", statOrder = { 8941 }, level = 1, group = "MovementSpeedIfHitRecently", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "speed" }, }, - ["DelveGlovesAttackAndCastSpeedIfHitRecently1"] = { type = "Suffix", affix = "of the Underground", "(5-10)% increased Attack and Cast Speed if you've Hit an Enemy Recently", statOrder = { 4639 }, level = 1, group = "AttackAndCastSpeedIfHitRecently", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "attack", "caster", "speed" }, }, - ["DelveHelmIgnoreArmourMovementPenalties1"] = { type = "Suffix", affix = "of the Underground", "Ignore all Movement Penalties from Armour", statOrder = { 2058 }, level = 1, group = "IgnoreArmourMovementPenalties", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "speed" }, }, - ["DelveAmuletCannotBeChilledOrFrozenWhileMoving1"] = { type = "Suffix", affix = "of the Underground", "Cannot be Chilled or Frozen while moving", statOrder = { 5104 }, level = 1, group = "CannotBeChilledOrFrozenWhileMoving", weightKey = { "abyss_jewel", "jewel", "amulet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["DelveBeltChanceToGainOnslaughtOnFlaskUse1"] = { type = "Suffix", affix = "of the Underground", "(15-20)% chance to gain Onslaught when you use a Flask", statOrder = { 5402 }, level = 1, group = "ChanceToGainOnslaughtOnFlaskUse", weightKey = { "abyss_jewel", "jewel", "belt", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "flask" }, }, - ["DelveRingCannotBeShockedWhileMoving1"] = { type = "Suffix", affix = "of the Underground", "Cannot be Shocked or Ignited while moving", statOrder = { 5120 }, level = 1, group = "CannotBeShockedOrIgnitedWhileMoving", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["DelveQuiverFrenzyChargeOnHittingRareOrUnique1"] = { type = "Suffix", affix = "of the Underground", "(3-5)% chance to gain a Frenzy Charge when you Hit a Rare or Unique Enemy", statOrder = { 6425 }, level = 1, group = "FrenzyChargeOnHittingRareOrUnique", weightKey = { "abyss_jewel", "jewel", "quiver", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "frenzy_charge" }, }, - ["DelveJewelChanceToGainOnslaughtOnFlaskUse1"] = { type = "Suffix", affix = "of the Underground", "(5-10)% chance to gain Onslaught when you use a Flask", statOrder = { 5402 }, level = 1, group = "ChanceToGainOnslaughtOnFlaskUse", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "flask" }, }, - ["DelveWeaponIncreasedDamageFromAuras1h1"] = { type = "Suffix", affix = "of the Underground", "Auras from your Skills grant 2% increased Damage to you and Allies", statOrder = { 3321 }, level = 1, group = "IncreasedDamageFromAuras", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "aura" }, }, - ["DelveWeaponIncreasedDamageFromAuras2h1"] = { type = "Suffix", affix = "of the Underground", "Auras from your Skills grant 4% increased Damage to you and Allies", statOrder = { 3321 }, level = 1, group = "IncreasedDamageFromAuras", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "aura" }, }, - ["DelveWeaponMinionDamage1h1_"] = { type = "Prefix", affix = "Subterranean", "Minions deal (30-44)% increased Damage", statOrder = { 1852 }, level = 1, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, }, - ["DelveWeaponMinionDamage1h2"] = { type = "Prefix", affix = "Subterranean", "Minions deal (45-59)% increased Damage", statOrder = { 1852 }, level = 25, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, }, - ["DelveWeaponMinionDamage1h3___"] = { type = "Prefix", affix = "Subterranean", "Minions deal (60-74)% increased Damage", statOrder = { 1852 }, level = 50, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "damage", "minion" }, }, - ["DelveWeaponMinionDamage1h4"] = { type = "Prefix", affix = "Subterranean", "Minions deal (75-80)% increased Damage", statOrder = { 1852 }, level = 75, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 500, 0 }, modTags = { "damage", "minion" }, }, - ["DelveWeaponMinionDamage2h1"] = { type = "Prefix", affix = "Subterranean", "Minions deal (51-70)% increased Damage", statOrder = { 1852 }, level = 1, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, }, - ["DelveWeaponMinionDamage2h2"] = { type = "Prefix", affix = "Subterranean", "Minions deal (71-90)% increased Damage", statOrder = { 1852 }, level = 25, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, }, - ["DelveWeaponMinionDamage2h3_"] = { type = "Prefix", affix = "Subterranean", "Minions deal (91-110)% increased Damage", statOrder = { 1852 }, level = 50, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "damage", "minion" }, }, - ["DelveWeaponMinionDamage2h4"] = { type = "Prefix", affix = "Subterranean", "Minions deal (111-130)% increased Damage", statOrder = { 1852 }, level = 75, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 500, 0 }, modTags = { "damage", "minion" }, }, - ["DelveGlovesMinionDamage1"] = { type = "Prefix", affix = "Subterranean", "Minions deal (20-30)% increased Damage", statOrder = { 1852 }, level = 1, group = "MinionDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, }, - ["DelveJewelryMinionRunSpeed1"] = { type = "Suffix", affix = "of the Underground", "Minions have (15-30)% increased Movement Speed", statOrder = { 1650 }, level = 74, group = "MinionRunSpeed", weightKey = { "abyss_jewel", "jewel", "quiver", "ring", "amulet", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "speed", "minion" }, }, - ["DelveArmourMinionLife1"] = { type = "Suffix", affix = "of the Underground", "Minions have (20-30)% increased maximum Life", statOrder = { 1647 }, level = 74, group = "MinionLife", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "resource", "life", "minion" }, }, - ["DelveBootsAdditionalSpectre1_"] = { type = "Suffix", affix = "of the Underground", "+1 to Level of all Raise Spectre Gems", statOrder = { 1498 }, level = 1, group = "MinionGlobalSkillLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "minion", "gem" }, }, - ["DelveBodyArmourAuraEffect1_"] = { type = "Suffix", affix = "of the Underground", "(20-25)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3429 }, level = 1, group = "AuraEffect", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "aura" }, }, - ["DelveHelmetReducedManaReserved1"] = { type = "Suffix", affix = "of the Underground", "(8-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 2109 }, level = 1, group = "ReducedReservation", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, }, - ["DelveHelmetManaReservationEfficiency1"] = { type = "Suffix", affix = "of the Underground", "10% increased Mana Reservation Efficiency of Skills", statOrder = { 2105 }, level = 1, group = "ManaReservationEfficiency", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, }, - ["DelveJewelMinionAttackAndCastSpeed1"] = { type = "Suffix", affix = "of the Underground", "Minions have (4-6)% increased Attack Speed", "Minions have (4-6)% increased Cast Speed", statOrder = { 2781, 2782 }, level = 1, group = "MinionAttackAndCastSpeed", weightKey = { "abyss_jewel", "jewel", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, + ["ChaosResistJewelCorrupted"] = { type = "Corrupted", affix = "", "+(1-3)% to Chaos Resistance", statOrder = { 1552 }, level = 1, group = "ChaosResistance", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "chaos", "resistance" }, }, + ["ReducedCharacterSizeJewelCorrupted"] = { type = "Corrupted", affix = "", "1% reduced Character Size", statOrder = { 1966 }, level = 1, group = "ActorSize", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["ReducedChillDurationJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Chill Duration on you", statOrder = { 1783 }, level = 1, group = "ReducedChillDuration", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ReducedFreezeDurationJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Freeze Duration on you", statOrder = { 1785 }, level = 1, group = "ReducedFreezeDuration", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ReducedIgniteDurationJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Ignite Duration on you", statOrder = { 1786 }, level = 1, group = "ReducedBurnDuration", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ReducedShockDurationJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Shock Duration on you", statOrder = { 1784 }, level = 1, group = "ReducedShockDuration", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["IncreasedChargeDurationJewelCorrupted_"] = { type = "Corrupted", affix = "", "(3-7)% increased Endurance, Frenzy and Power Charge Duration", statOrder = { 2934 }, level = 1, group = "ChargeDuration", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, }, + ["AddedChaosDamageJewelCorrupted"] = { type = "Corrupted", affix = "", "Adds 1 to (2-3) Chaos Damage to Attacks", statOrder = { 1298 }, level = 1, group = "ChaosDamage", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["ChanceToBeCritJewelCorrupted"] = { type = "Corrupted", affix = "", "Hits have (60-100)% increased Critical Strike Chance against you", statOrder = { 3040 }, level = 1, group = "ChanceToTakeCriticalStrike", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "critical" }, }, + ["DamageWhileDeadJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-30)% increased Damage while Dead", statOrder = { 3004 }, level = 1, group = "DamageWhileDead", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage" }, }, + ["VaalSkillDamageJewelCorrupted"] = { type = "Corrupted", affix = "", "(5-10)% increased Damage with Vaal Skills", statOrder = { 3003 }, level = 1, group = "VaalSkillDamage", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage", "vaal" }, }, + ["ChaosDamagePerCorruptedItemJewelCorrupted"] = { type = "Corrupted", affix = "", "1% increased Chaos Damage for each Corrupted Item Equipped", statOrder = { 3007 }, level = 1, group = "ChaosDamagePerCorruptedItem", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["LifeLeechRatePerCorruptedItemJewelCorrupted"] = { type = "Corrupted", affix = "", "1% increased total Recovery per second from Life Leech for each Corrupted Item Equipped", statOrder = { 3008 }, level = 1, group = "LifeLeechRatePerCorruptedItem", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "life" }, }, + ["ManaLeechRatePerCorruptedItemJewelCorrupted"] = { type = "Corrupted", affix = "", "1% increased total Recovery per second from Mana Leech for each Corrupted Item Equipped", statOrder = { 3010 }, level = 1, group = "ManaLeechRatePerCorrupteditem", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana" }, }, + ["SilenceImmunityJewelCorrupted"] = { type = "Corrupted", affix = "", "You cannot be Cursed with Silence", statOrder = { 3002 }, level = 1, group = "ImmuneToSilence", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "caster", "curse" }, }, + ["V2CorruptedBloodImmunityCorrupted"] = { type = "Corrupted", affix = "", "Corrupted Blood cannot be inflicted on you", statOrder = { 5301 }, level = 33, group = "CorruptedBloodImmunity", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "bleed", "physical", "ailment" }, }, + ["V2HinderImmunityCorrupted"] = { type = "Corrupted", affix = "", "You cannot be Hindered", statOrder = { 10435 }, level = 40, group = "YouCannotBeHindered", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "blue_herring" }, }, + ["V2IncreasedAilmentEffectOnEnemiesCorrupted"] = { type = "Corrupted", affix = "", "(5-7)% increased Effect of Non-Damaging Ailments", statOrder = { 9296 }, level = 1, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "ailment" }, }, + ["V2IncreasedAreaOfEffectCorrupted"] = { type = "Corrupted", affix = "", "(4-5)% increased Area of Effect", statOrder = { 1791 }, level = 1, group = "AreaOfEffect", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["V2IncreasedCriticalStrikeChanceCorrupted_"] = { type = "Corrupted", affix = "", "(8-10)% increased Global Critical Strike Chance", statOrder = { 1370 }, level = 1, group = "CriticalStrikeChance", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "critical" }, }, + ["V2IncreasedDamageJewelCorrupted___"] = { type = "Corrupted", affix = "", "(4-5)% increased Damage", statOrder = { 1103 }, level = 1, group = "IncreasedDamage", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, }, + ["V2MaimImmunityCorrupted"] = { type = "Corrupted", affix = "", "You cannot be Maimed", statOrder = { 4843 }, level = 40, group = "AvoidMaimChance", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["V2MinionDamageCorrupted"] = { type = "Corrupted", affix = "", "Minions deal (4-5)% increased Damage", statOrder = { 1882 }, level = 1, group = "MinionDamage", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "minion" }, }, + ["V2ReducedManaReservationCorrupted"] = { type = "Corrupted", affix = "", "2% increased Reservation Efficiency of Skills", statOrder = { 2142 }, level = 1, group = "ReducedReservationForJewel", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["V2ReducedManaReservationCorruptedEfficiency__"] = { type = "Corrupted", affix = "", "2% increased Reservation Efficiency of Skills", statOrder = { 2139 }, level = 1, group = "ReservationEfficiencyForJewel", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["V2SilenceImmunityJewelCorrupted"] = { type = "Corrupted", affix = "", "You cannot be Cursed with Silence", statOrder = { 3002 }, level = 60, group = "ImmuneToSilence", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "curse" }, }, + ["V2FirePenetrationJewelCorrupted"] = { type = "Corrupted", affix = "", "Damage Penetrates 1% Fire Resistance", statOrder = { 2890 }, level = 1, group = "FireResistancePenetration", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["V2ColdPenetrationJewelCorrupted"] = { type = "Corrupted", affix = "", "Damage Penetrates 1% Cold Resistance", statOrder = { 2892 }, level = 1, group = "ColdResistancePenetration", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["V2LightningPenetrationJewelCorrupted__"] = { type = "Corrupted", affix = "", "Damage Penetrates 1% Lightning Resistance", statOrder = { 2893 }, level = 1, group = "LightningResistancePenetration", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["V2ElementalPenetrationJewelCorrupted_"] = { type = "Corrupted", affix = "", "Damage Penetrates 1% Elemental Resistances", statOrder = { 2889 }, level = 1, group = "ElementalPenetration", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["V2ArmourPenetrationJewelCorrupted"] = { type = "Corrupted", affix = "", "Hits have (10-15)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7037 }, level = 1, group = "ChanceToIgnoreEnemyArmour", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "physical" }, }, + ["V2AvoidIgniteJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid being Ignited", statOrder = { 1757 }, level = 1, group = "AvoidIgnite", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["V2AvoidChillAndFreezeJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid being Chilled", "(20-25)% chance to Avoid being Frozen", statOrder = { 1755, 1756 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["V2AvoidShockJewelCorrupted_"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid being Shocked", statOrder = { 1759 }, level = 1, group = "AvoidShock", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["V2AvoidPoisonJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid being Poisoned", statOrder = { 1760 }, level = 1, group = "ChanceToAvoidPoison", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["V2AvoidBleedJewelCorrupted__"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid Bleeding", statOrder = { 4123 }, level = 1, group = "ChanceToAvoidBleeding", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["V2AvoidStunJewelCorrupted_"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid being Stunned", statOrder = { 1762 }, level = 1, group = "AvoidStun", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["V2IgniteDurationOnYouJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% reduced Ignite Duration on you", statOrder = { 1786 }, level = 1, group = "ReducedIgniteDurationOnSelf", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["V2ChillEffectOnYouJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% reduced Effect of Chill on you", statOrder = { 1556 }, level = 1, group = "ChillEffectivenessOnSelf", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["V2ShockEffectOnYouJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% reduced Effect of Shock on you", statOrder = { 9803 }, level = 1, group = "ReducedShockEffectOnSelf", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["V2PoisonDurationOnYouJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% reduced Poison Duration on you", statOrder = { 9762 }, level = 1, group = "ReducedPoisonDuration", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["V2BleedDurationOnYouJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% reduced Bleed Duration on you", statOrder = { 9753 }, level = 1, group = "ReducedBleedDuration", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "bleed", "physical", "ailment" }, }, + ["V2CurseEffectOnYouJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% reduced Effect of Curses on you", statOrder = { 2079 }, level = 1, group = "CurseEffectOnYouJewel", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "curse" }, }, + ["MaceDamageJewel"] = { type = "Prefix", affix = "Brutal", "(14-16)% increased Damage with Maces or Sceptres", statOrder = { 1236 }, level = 1, group = "IncreasedMaceDamageForJewel", weightKey = { "mace", "specific_weapon", "not_str", "default", }, weightVal = { 500, 0, 0, 500 }, modTags = { "damage", "attack" }, }, + ["AxeDamageJewel"] = { type = "Prefix", affix = "Sinister", "(14-16)% increased Damage with Axes", statOrder = { 1212 }, level = 1, group = "IncreasedAxeDamageForJewel", weightKey = { "axe", "specific_weapon", "not_int", "default", }, weightVal = { 500, 0, 500, 0 }, modTags = { "damage", "attack" }, }, + ["SwordDamageJewel"] = { type = "Prefix", affix = "Vicious", "(14-16)% increased Damage with Swords", statOrder = { 1250 }, level = 1, group = "IncreasedSwordDamageForJewel", weightKey = { "sword", "specific_weapon", "not_int", "default", }, weightVal = { 500, 0, 500, 0 }, modTags = { "damage", "attack" }, }, + ["BowDamageJewel"] = { type = "Prefix", affix = "Fierce", "(14-16)% increased Damage with Bows", statOrder = { 1242 }, level = 1, group = "IncreasedBowDamageForJewel", weightKey = { "one_handed_mod", "melee_mod", "dual_wielding_mod", "shield_mod", "bow", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0, 500, 0, 0, 500 }, modTags = { "damage", "attack" }, }, + ["ClawDamageJewel"] = { type = "Prefix", affix = "Savage", "(14-16)% increased Damage with Claws", statOrder = { 1224 }, level = 1, group = "IncreasedClawDamageForJewel", weightKey = { "two_handed_mod", "claw", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 500, 0, 0, 500 }, modTags = { "damage", "attack" }, }, + ["DaggerDamageJewel"] = { type = "Prefix", affix = "Lethal", "(14-16)% increased Damage with Daggers", statOrder = { 1230 }, level = 1, group = "IncreasedDaggerDamageForJewel", weightKey = { "two_handed_mod", "dagger", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 500, 0, 0, 500 }, modTags = { "damage", "attack" }, }, + ["WandDamageJewel"] = { type = "Prefix", affix = "Cruel", "(14-16)% increased Damage with Wands", statOrder = { 2852 }, level = 1, group = "IncreasedWandDamageForJewel", weightKey = { "melee_mod", "two_handed_mod", "wand", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 500, 0, 0, 500 }, modTags = { "damage", "attack" }, }, + ["StaffDamageJewel"] = { type = "Prefix", affix = "Judging", "(14-16)% increased Damage with Staves", statOrder = { 1219 }, level = 1, group = "IncreasedStaffDamageForJewel", weightKey = { "one_handed_mod", "dual_wielding_mod", "shield_mod", "staff", "specific_weapon", "not_str", "default", }, weightVal = { 0, 0, 0, 500, 0, 0, 500 }, modTags = { "damage", "attack" }, }, + ["OneHandedMeleeDamageJewel"] = { type = "Prefix", affix = "Soldier's", "(12-14)% increased Damage with One Handed Weapons", statOrder = { 3243 }, level = 1, group = "IncreasedOneHandedMeleeDamageForJewel", weightKey = { "two_handed_mod", "wand", "not_int", "default", }, weightVal = { 0, 0, 500, 0 }, modTags = { "damage", "attack" }, }, + ["TwoHandedMeleeDamageJewel"] = { type = "Prefix", affix = "Champion's", "(12-14)% increased Damage with Two Handed Weapons", statOrder = { 3244 }, level = 1, group = "IncreasedTwoHandedMeleeDamageForJewel", weightKey = { "bow", "wand", "one_handed_mod", "dual_wielding_mod", "shield_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 0, 0, 500, 0 }, modTags = { "damage", "attack" }, }, + ["DualWieldingMeleeDamageJewel"] = { type = "Prefix", affix = "Gladiator's", "(12-14)% increased Attack Damage while Dual Wielding", statOrder = { 1189 }, level = 1, group = "IncreasedDualWieldlingDamageForJewel", weightKey = { "shield_mod", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 500, 0 }, modTags = { "damage", "attack" }, }, + ["UnarmedMeleeDamageJewel"] = { type = "Prefix", affix = "Brawling", "(14-16)% increased Melee Physical Damage with Unarmed Attacks", statOrder = { 1211 }, level = 1, group = "IncreasedUnarmedDamageForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["MeleeDamageJewel_"] = { type = "Suffix", affix = "of Combat", "(10-12)% increased Melee Damage", statOrder = { 1146 }, level = 1, group = "MeleeDamageForJewel", weightKey = { "bow", "wand", "not_int", "default", }, weightVal = { 0, 0, 500, 0 }, modTags = { "damage", "attack" }, }, + ["ProjectileDamageJewel"] = { type = "Suffix", affix = "of Archery", "(10-12)% increased Projectile Damage", statOrder = { 1905 }, level = 1, group = "ProjectileDamageForJewel", weightKey = { "not_dex", "default", }, weightVal = { 400, 500 }, modTags = { "damage" }, }, + ["SpellDamageJewel"] = { type = "Suffix", affix = "of Mysticism", "(10-12)% increased Spell Damage", statOrder = { 1135 }, level = 1, group = "SpellDamageForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 500 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["StaffSpellDamageJewel"] = { type = "Prefix", affix = "Wizard's", "(14-16)% increased Spell Damage while wielding a Staff", statOrder = { 1139 }, level = 1, group = "StaffSpellDamageForJewel", weightKey = { "one_handed_mod", "staff", "specific_weapon", "shield_mod", "dual_wielding_mod", "not_int", "default", }, weightVal = { 0, 500, 0, 0, 0, 0, 500 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["DualWieldingSpellDamageJewel_"] = { type = "Prefix", affix = "Sorcerer's", "(14-16)% increased Spell Damage while Dual Wielding", statOrder = { 1142 }, level = 1, group = "DualWieldingSpellDamageForJewel", weightKey = { "shield_mod", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 500 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["ShieldSpellDamageJewel"] = { type = "Prefix", affix = "Battlemage's", "(14-16)% increased Spell Damage while holding a Shield", statOrder = { 1141 }, level = 1, group = "ShieldSpellDamageForJewel", weightKey = { "two_handed_mod", "dual_wielding_mod", "bow", "staff", "not_int", "default", }, weightVal = { 0, 0, 0, 0, 0, 500 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["TrapDamageJewel"] = { type = "Prefix", affix = "Trapping", "(14-16)% increased Trap Damage", statOrder = { 1106 }, level = 1, group = "TrapDamageForJewel", weightKey = { "not_str", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, }, + ["MineDamageJewel"] = { type = "Prefix", affix = "Sabotage", "(14-16)% increased Mine Damage", statOrder = { 1108 }, level = 1, group = "MineDamageForJewel", weightKey = { "not_str", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, }, + ["DamageJewel"] = { type = "Suffix", affix = "of Wounding", "(8-10)% increased Damage", statOrder = { 1103 }, level = 1, group = "DamageForJewel", weightKey = { "default", }, weightVal = { 350 }, modTags = { "damage" }, }, + ["MinionDamageJewel"] = { type = "Prefix", affix = "Leadership", "Minions deal (14-16)% increased Damage", statOrder = { 1882 }, level = 1, group = "MinionDamageForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 500 }, modTags = { "damage", "minion" }, }, + ["FireDamageJewel"] = { type = "Prefix", affix = "Flaming", "(14-16)% increased Fire Damage", statOrder = { 1268 }, level = 1, group = "FireDamageForJewel", weightKey = { "not_str", "default", }, weightVal = { 400, 500 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["ColdDamageJewel"] = { type = "Prefix", affix = "Chilling", "(14-16)% increased Cold Damage", statOrder = { 1277 }, level = 1, group = "ColdDamageForJewel", weightKey = { "not_dex", "default", }, weightVal = { 400, 500 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["LightningDamageJewel"] = { type = "Prefix", affix = "Humming", "(14-16)% increased Lightning Damage", statOrder = { 1288 }, level = 1, group = "LightningDamageForJewel", weightKey = { "not_int", "default", }, weightVal = { 400, 500 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["PhysicalDamageJewel"] = { type = "Prefix", affix = "Sharpened", "(14-16)% increased Global Physical Damage", statOrder = { 1143 }, level = 1, group = "PhysicalDamageForJewel", weightKey = { "default", }, weightVal = { 500 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["DamageOverTimeJewel"] = { type = "Suffix", affix = "of Entropy", "(10-12)% increased Damage over Time", statOrder = { 1122 }, level = 1, group = "DamageOverTimeForJewel", weightKey = { "default", }, weightVal = { 500 }, modTags = { "damage" }, }, + ["ChaosDamageJewel"] = { type = "Prefix", affix = "Chaotic", "(9-13)% increased Chaos Damage", statOrder = { 1296 }, level = 1, group = "ChaosDamageForJewel", weightKey = { "default", }, weightVal = { 200 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["AreaDamageJewel"] = { type = "Suffix", affix = "of Blasting", "(10-12)% increased Area Damage", statOrder = { 1944 }, level = 1, group = "AreaDamageForJewel", weightKey = { "default", }, weightVal = { 500 }, modTags = { "damage" }, }, + ["MaceAttackSpeedJewel"] = { type = "Prefix", affix = "Beating", "(6-8)% increased Attack Speed with Maces or Sceptres", statOrder = { 1335 }, level = 1, group = "MaceAttackSpeedForJewel", weightKey = { "mace", "specific_weapon", "not_str", "default", }, weightVal = { 500, 0, 0, 500 }, modTags = { "attack", "speed" }, }, + ["AxeAttackSpeedJewel"] = { type = "Prefix", affix = "Cleaving", "(6-8)% increased Attack Speed with Axes", statOrder = { 1331 }, level = 1, group = "AxeAttackSpeedForJewel", weightKey = { "axe", "specific_weapon", "not_int", "default", }, weightVal = { 500, 0, 500, 0 }, modTags = { "attack", "speed" }, }, + ["SwordAttackSpeedJewel"] = { type = "Prefix", affix = "Fencing", "(6-8)% increased Attack Speed with Swords", statOrder = { 1337 }, level = 1, group = "SwordAttackSpeedForJewel", weightKey = { "sword", "specific_weapon", "not_int", "default", }, weightVal = { 500, 0, 500, 0 }, modTags = { "attack", "speed" }, }, + ["BowAttackSpeedJewel"] = { type = "Prefix", affix = "Volleying", "(6-8)% increased Attack Speed with Bows", statOrder = { 1336 }, level = 1, group = "BowAttackSpeedForJewel", weightKey = { "one_handed_mod", "melee_mod", "dual_wielding_mod", "shield_mod", "bow", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0, 500, 0, 0, 500 }, modTags = { "attack", "speed" }, }, + ["ClawAttackSpeedJewel"] = { type = "Prefix", affix = "Ripping", "(6-8)% increased Attack Speed with Claws", statOrder = { 1333 }, level = 1, group = "ClawAttackSpeedForJewel", weightKey = { "two_handed_mod", "claw", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 500, 0, 0, 500 }, modTags = { "attack", "speed" }, }, + ["DaggerAttackSpeedJewel"] = { type = "Prefix", affix = "Slicing", "(6-8)% increased Attack Speed with Daggers", statOrder = { 1334 }, level = 1, group = "DaggerAttackSpeedForJewel", weightKey = { "two_handed_mod", "dagger", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 500, 0, 0, 500 }, modTags = { "attack", "speed" }, }, + ["WandAttackSpeedJewel"] = { type = "Prefix", affix = "Jinxing", "(6-8)% increased Attack Speed with Wands", statOrder = { 1338 }, level = 1, group = "WandAttackSpeedForJewel", weightKey = { "melee_mod", "two_handed_mod", "wand", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 500, 0, 0, 500 }, modTags = { "attack", "speed" }, }, + ["StaffAttackSpeedJewel"] = { type = "Prefix", affix = "Blunt", "(6-8)% increased Attack Speed with Staves", statOrder = { 1332 }, level = 1, group = "StaffAttackSpeedForJewel", weightKey = { "one_handed_mod", "dual_wielding_mod", "shield_mod", "staff", "specific_weapon", "not_str", "default", }, weightVal = { 0, 0, 0, 500, 0, 0, 500 }, modTags = { "attack", "speed" }, }, + ["OneHandedMeleeAttackSpeedJewel"] = { type = "Prefix", affix = "Bandit's", "(4-6)% increased Attack Speed with One Handed Melee Weapons", statOrder = { 1330 }, level = 1, group = "OneHandedMeleeAttackSpeedForJewel", weightKey = { "two_handed_mod", "wand", "not_int", "default", }, weightVal = { 0, 0, 500, 0 }, modTags = { "attack", "speed" }, }, + ["TwoHandedMeleeAttackSpeedJewel"] = { type = "Prefix", affix = "Warrior's", "(4-6)% increased Attack Speed with Two Handed Melee Weapons", statOrder = { 1329 }, level = 1, group = "TwoHandedMeleeAttackSpeedForJewel", weightKey = { "one_handed_mod", "dual_wielding_mod", "shield_mod", "bow", "not_int", "default", }, weightVal = { 0, 0, 0, 0, 500, 0 }, modTags = { "attack", "speed" }, }, + ["DualWieldingAttackSpeedJewel"] = { type = "Prefix", affix = "Harmonic", "(4-6)% increased Attack Speed while Dual Wielding", statOrder = { 1326 }, level = 1, group = "AttackSpeedWhileDualWieldingForJewel", weightKey = { "shield_mod", "two_handed_mod", "default", }, weightVal = { 0, 0, 500 }, modTags = { "attack", "speed" }, }, + ["DualWieldingCastSpeedJewel"] = { type = "Prefix", affix = "Resonant", "(3-5)% increased Cast Speed while Dual Wielding", statOrder = { 1358 }, level = 1, group = "CastSpeedWhileDualWieldingForJewel", weightKey = { "shield_mod", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 500 }, modTags = { "caster", "speed" }, }, + ["ShieldAttackSpeedJewel"] = { type = "Prefix", affix = "Charging", "(4-6)% increased Attack Speed while holding a Shield", statOrder = { 1328 }, level = 1, group = "AttackSpeedWithAShieldForJewel", weightKey = { "two_handed_mod", "dual_wielding_mod", "not_int", "default", }, weightVal = { 0, 0, 500, 400 }, modTags = { "attack", "speed" }, }, + ["ShieldCastSpeedJewel"] = { type = "Prefix", affix = "Warding", "(3-5)% increased Cast Speed while holding a Shield", statOrder = { 1359 }, level = 1, group = "CastSpeedWithAShieldForJewel", weightKey = { "two_handed_mod", "dual_wielding_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 500 }, modTags = { "caster", "speed" }, }, + ["StaffCastSpeedJewel"] = { type = "Prefix", affix = "Wright's", "(3-5)% increased Cast Speed while wielding a Staff", statOrder = { 1360 }, level = 1, group = "CastSpeedWithAStaffForJewel", weightKey = { "one_handed_mod", "dual_wielding_mod", "shield_mod", "staff", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 500, 0, 0, 500 }, modTags = { "caster", "speed" }, }, + ["UnarmedAttackSpeedJewel"] = { type = "Prefix", affix = "Furious", "(6-8)% increased Unarmed Attack Speed with Melee Skills", statOrder = { 1340 }, level = 1, group = "AttackSpeedWhileUnarmedForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, }, + ["AttackSpeedJewel"] = { type = "Suffix", affix = "of Berserking", "(3-5)% increased Attack Speed", statOrder = { 1321 }, level = 1, group = "IncreasedAttackSpeedForJewel", weightKey = { "default", }, weightVal = { 500 }, modTags = { "attack", "speed" }, }, + ["ProjectileSpeedJewel"] = { type = "Suffix", affix = "of Soaring", "(6-8)% increased Projectile Speed", statOrder = { 1707 }, level = 1, group = "IncreasedProjectileSpeedForJewel", weightKey = { "not_dex", "default", }, weightVal = { 300, 500 }, modTags = { "speed" }, }, + ["CastSpeedJewel"] = { type = "Suffix", affix = "of Enchanting", "(2-4)% increased Cast Speed", statOrder = { 1357 }, level = 1, group = "IncreasedCastSpeedForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 500 }, modTags = { "caster", "speed" }, }, + ["TrapThrowSpeedJewel"] = { type = "Prefix", affix = "Honed", "(6-8)% increased Trap Throwing Speed", statOrder = { 1836 }, level = 1, group = "TrapThrowSpeedForJewel", weightKey = { "not_str", "default", }, weightVal = { 250, 0 }, modTags = { "speed" }, }, + ["MineLaySpeedJewel"] = { type = "Prefix", affix = "Arming", "(6-8)% increased Mine Throwing Speed", statOrder = { 1837 }, level = 1, group = "MineLaySpeedForJewel", weightKey = { "not_str", "default", }, weightVal = { 250, 0 }, modTags = { "speed" }, }, + ["AttackAndCastSpeedJewel"] = { type = "Suffix", affix = "of Zeal", "(2-4)% increased Attack and Cast Speed", statOrder = { 1955 }, level = 1, group = "AttackAndCastSpeedForJewel", weightKey = { "default", }, weightVal = { 350 }, modTags = { "attack", "caster", "speed" }, }, + ["PhysicalDamageWhileHoldingAShield"] = { type = "Prefix", affix = "Flanking", "(12-14)% increased Attack Damage while holding a Shield", statOrder = { 1118 }, level = 1, group = "DamageWhileHoldingAShieldForJewel", weightKey = { "bow", "wand", "dual_wielding_mod", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 0, 500, 0 }, modTags = { "damage", "attack" }, }, + ["FireGemCastSpeedJewel"] = { type = "Prefix", affix = "Pyromantic", "(3-5)% increased Cast Speed with Fire Skills", statOrder = { 1276 }, level = 1, group = "FireGemCastSpeedForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 500 }, modTags = { "elemental", "fire", "caster", "speed" }, }, + ["ColdGemCastSpeedJewel"] = { type = "Prefix", affix = "Cryomantic", "(3-5)% increased Cast Speed with Cold Skills", statOrder = { 1287 }, level = 1, group = "ColdGemCastSpeedForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 500 }, modTags = { "elemental", "cold", "caster", "speed" }, }, + ["LightningGemCastSpeedJewel_"] = { type = "Prefix", affix = "Electromantic", "(3-5)% increased Cast Speed with Lightning Skills", statOrder = { 1295 }, level = 1, group = "LightningGemCastSpeedForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 500 }, modTags = { "elemental", "lightning", "caster", "speed" }, }, + ["ChaosGemCastSpeedJewel"] = { type = "Prefix", affix = "Withering", "(3-5)% increased Cast Speed with Chaos Skills", statOrder = { 1303 }, level = 1, group = "ChaosGemCastSpeedForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "caster", "speed" }, }, + ["CurseCastSpeedJewel_"] = { type = "Suffix", affix = "of Blasphemy", "Curse Skills have (5-10)% increased Cast Speed", statOrder = { 2123 }, level = 1, group = "CurseCastSpeedForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "speed", "curse" }, }, + ["StrengthJewel"] = { type = "Suffix", affix = "of Strength", "+(12-16) to Strength", statOrder = { 1089 }, level = 1, group = "StrengthForJewel", weightKey = { "not_str", "default", }, weightVal = { 300, 500 }, modTags = { "attribute" }, }, + ["DexterityJewel"] = { type = "Suffix", affix = "of Dexterity", "+(12-16) to Dexterity", statOrder = { 1090 }, level = 1, group = "DexterityForJewel", weightKey = { "not_dex", "default", }, weightVal = { 300, 500 }, modTags = { "attribute" }, }, + ["IntelligenceJewel"] = { type = "Suffix", affix = "of Intelligence", "+(12-16) to Intelligence", statOrder = { 1091 }, level = 1, group = "IntelligenceForJewel", weightKey = { "not_int", "default", }, weightVal = { 300, 500 }, modTags = { "attribute" }, }, + ["StrengthDexterityJewel"] = { type = "Suffix", affix = "of Athletics", "+(8-10) to Strength and Dexterity", statOrder = { 1092 }, level = 1, group = "StrengthDexterityForJewel", weightKey = { "not_int", "default", }, weightVal = { 450, 250 }, modTags = { "attribute" }, }, + ["StrengthIntelligenceJewel"] = { type = "Suffix", affix = "of Spirit", "+(8-10) to Strength and Intelligence", statOrder = { 1093 }, level = 1, group = "StrengthIntelligenceForJewel", weightKey = { "not_dex", "default", }, weightVal = { 450, 250 }, modTags = { "attribute" }, }, + ["DexterityIntelligenceJewel"] = { type = "Suffix", affix = "of Cunning", "+(8-10) to Dexterity and Intelligence", statOrder = { 1094 }, level = 1, group = "DexterityIntelligenceForJewel", weightKey = { "not_str", "default", }, weightVal = { 450, 250 }, modTags = { "attribute" }, }, + ["AllAttributesJewel"] = { type = "Suffix", affix = "of Adaption", "+(6-8) to all Attributes", statOrder = { 1088 }, level = 1, group = "AllAttributesForJewel", weightKey = { "default", }, weightVal = { 300 }, modTags = { "attribute" }, }, + ["IncreasedLifeJewel"] = { type = "Prefix", affix = "Healthy", "+(8-12) to maximum Life", statOrder = { 1480 }, level = 1, group = "IncreasedLifeForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, + ["PercentIncreasedLifeJewel"] = { type = "Prefix", affix = "Vivid", "(5-7)% increased maximum Life", statOrder = { 1482 }, level = 1, group = "PercentIncreasedLifeForJewel", weightKey = { "not_str", "default", }, weightVal = { 350, 500 }, modTags = { "resource", "life" }, }, + ["IncreasedManaJewel"] = { type = "Prefix", affix = "Learned", "+(8-12) to maximum Mana", statOrder = { 1490 }, level = 1, group = "IncreasedManaForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, + ["PercentIncreasedManaJewel"] = { type = "Prefix", affix = "Enlightened", "(8-10)% increased maximum Mana", statOrder = { 1491 }, level = 1, group = "PercentIncreasedManaForJewel", weightKey = { "not_str", "default", }, weightVal = { 500, 250 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaRegenJewel"] = { type = "Prefix", affix = "Energetic", "(12-15)% increased Mana Regeneration Rate", statOrder = { 1495 }, level = 1, group = "IncreasedManaRegenForJewel", weightKey = { "not_int", "default", }, weightVal = { 250, 500 }, modTags = { "resource", "mana" }, }, + ["IncreasedEnergyShieldJewel_"] = { type = "Prefix", affix = "Glowing", "+(8-12) to maximum Energy Shield", statOrder = { 1469 }, level = 1, group = "IncreasedEnergyShieldForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldJewel"] = { type = "Prefix", affix = "Shimmering", "(6-8)% increased maximum Energy Shield", statOrder = { 1472 }, level = 1, group = "EnergyShieldForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 500 }, modTags = { "defences", "energy_shield" }, }, + ["IncreasedLifeAndManaJewel"] = { type = "Prefix", affix = "Determined", "+(4-6) to maximum Life", "+(4-6) to maximum Mana", statOrder = { 1480, 1490 }, level = 1, group = "LifeAndManaForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "mana" }, }, + ["PercentIncreasedLifeAndManaJewel"] = { type = "Prefix", affix = "Passionate", "(2-4)% increased maximum Life", "(4-6)% increased maximum Mana", statOrder = { 1482, 1491 }, level = 1, group = "PercentageLifeAndManaForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "green_herring", "resource", "life", "mana" }, }, + ["EnergyShieldAndManaJewel"] = { type = "Prefix", affix = "Wise", "(2-4)% increased maximum Energy Shield", "(4-6)% increased maximum Mana", statOrder = { 1472, 1491 }, level = 1, group = "EnergyShieldAndManaForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "defences", "energy_shield" }, }, + ["LifeAndEnergyShieldJewel"] = { type = "Prefix", affix = "Faithful", "(2-4)% increased maximum Energy Shield", "(2-4)% increased maximum Life", statOrder = { 1472, 1482 }, level = 1, group = "LifeAndEnergyShieldForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "energy_shield" }, }, + ["LifeLeechPermyriadJewel"] = { type = "Prefix", affix = "Hungering", "(0.2-0.4)% of Physical Attack Damage Leeched as Life", statOrder = { 1560 }, level = 1, group = "LifeLeechPermyriadForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadSuffixJewel"] = { type = "Suffix", affix = "of Hungering", "(0.2-0.4)% of Physical Attack Damage Leeched as Life", statOrder = { 1560 }, level = 1, group = "LifeLeechPermyriadForJewel", weightKey = { "not_str", "default", }, weightVal = { 0, 500 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["ManaLeechPermyriadJewel"] = { type = "Prefix", affix = "Thirsting", "(0.2-0.4)% of Physical Attack Damage Leeched as Mana", statOrder = { 1610 }, level = 1, group = "ManaLeechPermyriadForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, }, + ["ManaLeechPermyriadSuffixJewel"] = { type = "Suffix", affix = "of Thirsting", "(0.2-0.4)% of Physical Attack Damage Leeched as Mana", statOrder = { 1610 }, level = 1, group = "ManaLeechPermyriadForJewel", weightKey = { "not_dex", "default", }, weightVal = { 0, 500 }, modTags = { "resource", "mana", "physical", "attack" }, }, + ["SpellLifeLeechPermyriadJewel"] = { type = "Prefix", affix = "Transfusing", "0.2% of Spell Damage Leeched as Life", statOrder = { 1574 }, level = 1, group = "SpellLifeLeechPermyriadForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "caster" }, }, + ["SpellManaLeechPermyriadJewel"] = { type = "Prefix", affix = "Siphoning", "0.2% of Spell Damage Leeched as Mana", statOrder = { 1615 }, level = 1, group = "SpellManaLeechPermyriadForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "caster" }, }, + ["LifeOnHitJewel"] = { type = "Suffix", affix = "of Rejuvenation", "Gain (2-3) Life per Enemy Hit with Attacks", statOrder = { 1651 }, level = 1, group = "LifeGainPerTargetForJewel", weightKey = { "not_str", "default", }, weightVal = { 0, 500 }, modTags = { "resource", "life", "attack" }, }, + ["ManaOnHitJewel"] = { type = "Suffix", affix = "of Absorption", "Gain (1-2) Mana per Enemy Hit with Attacks", statOrder = { 1655 }, level = 1, group = "ManaGainPerTargetForJewel", weightKey = { "not_dex", "default", }, weightVal = { 0, 500 }, modTags = { "resource", "mana", "attack" }, }, + ["EnergyShieldOnHitJewel"] = { type = "Suffix", affix = "of Focus", "Gain (2-3) Energy Shield per Enemy Hit with Attacks", statOrder = { 1658 }, level = 1, group = "EnergyShieldGainPerTargetForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 500 }, modTags = { "defences", "energy_shield", "attack" }, }, + ["LifeRecoupJewel"] = { type = "Suffix", affix = "of Infusion", "(4-6)% of Damage taken Recouped as Life", statOrder = { 6000 }, level = 1, group = "LifeRecoupForJewel", weightKey = { "not_int", "default", }, weightVal = { 250, 500 }, modTags = { "resource", "life" }, }, + ["IncreasedArmourJewel"] = { type = "Prefix", affix = "Armoured", "(14-18)% increased Armour", statOrder = { 1452 }, level = 1, group = "IncreasedArmourForJewel", weightKey = { "not_str", "default", }, weightVal = { 0, 500 }, modTags = { "defences", "armour" }, }, + ["IncreasedEvasionJewel"] = { type = "Prefix", affix = "Evasive", "(14-18)% increased Evasion Rating", statOrder = { 1460 }, level = 1, group = "IncreasedEvasionForJewel", weightKey = { "not_dex", "default", }, weightVal = { 0, 500 }, modTags = { "defences", "evasion" }, }, + ["ArmourEvasionJewel"] = { type = "Prefix", affix = "Fighter's", "(6-12)% increased Armour", "(6-12)% increased Evasion Rating", statOrder = { 1452, 1460 }, level = 1, group = "ArmourEvasionForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour", "evasion" }, }, + ["ArmourEnergyShieldJewel"] = { type = "Prefix", affix = "Paladin's", "(6-12)% increased Armour", "(2-4)% increased maximum Energy Shield", statOrder = { 1452, 1472 }, level = 1, group = "ArmourEnergyShieldForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour", "energy_shield" }, }, + ["EvasionEnergyShieldJewel"] = { type = "Prefix", affix = "Rogue's", "(6-12)% increased Evasion Rating", "(2-4)% increased maximum Energy Shield", statOrder = { 1460, 1472 }, level = 1, group = "EvasionEnergyShieldForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["IncreasedDefensesJewel"] = { type = "Prefix", affix = "Defensive", "(4-6)% increased Global Defences", statOrder = { 2742 }, level = 1, group = "IncreasedDefensesForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences" }, }, + ["ItemRarityJewel"] = { type = "Suffix", affix = "of Raiding", "(4-6)% increased Rarity of Items found", statOrder = { 1507 }, level = 1, group = "ItemRarityForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "drop" }, }, + ["IncreasedAccuracyJewel"] = { type = "Suffix", affix = "of Accuracy", "+(20-40) to Accuracy Rating", statOrder = { 1344 }, level = 1, group = "IncreasedAccuracyForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, }, + ["PercentIncreasedAccuracyJewel"] = { type = "Suffix", affix = "of Precision", "(10-14)% increased Global Accuracy Rating", statOrder = { 1345 }, level = 1, group = "IncreasedAccuracyPercentForJewel", weightKey = { "not_dex", "default", }, weightVal = { 0, 500 }, modTags = { "attack" }, }, + ["AccuracyAndCritsJewel"] = { type = "Suffix", affix = "of Deadliness", "(6-10)% increased Global Accuracy Rating", "(6-10)% increased Global Critical Strike Chance", statOrder = { 1345, 1370 }, level = 1, group = "AccuracyAndCritsForJewel", weightKey = { "not_dex", "default", }, weightVal = { 0, 150 }, modTags = { "attack", "critical" }, }, + ["CriticalStrikeChanceJewel"] = { type = "Suffix", affix = "of Menace", "(8-12)% increased Global Critical Strike Chance", statOrder = { 1370 }, level = 1, group = "CritChanceForJewel", weightKey = { "default", }, weightVal = { 250 }, modTags = { "critical" }, }, + ["CriticalStrikeMultiplierJewel"] = { type = "Suffix", affix = "of Potency", "+(9-12)% to Global Critical Strike Multiplier", statOrder = { 1399 }, level = 1, group = "CritMultiplierForJewel", weightKey = { "default", }, weightVal = { 250 }, modTags = { "damage", "critical" }, }, + ["CritChanceWithMaceJewel"] = { type = "Prefix", affix = "of Striking FIX ME", "(12-16)% increased Critical Strike Chance with Maces or Sceptres", statOrder = { 1380 }, level = 1, group = "CritChanceWithMaceForJewel", weightKey = { "mace", "specific_weapon", "not_str", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, }, + ["CritChanceWithAxeJewel"] = { type = "Prefix", affix = "of Biting FIX ME", "(12-16)% increased Critical Strike Chance with Axes", statOrder = { 1383 }, level = 1, group = "CritChanceWithAxeForJewel", weightKey = { "axe", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, }, + ["CritChanceWithSwordJewel"] = { type = "Prefix", affix = "of Stinging FIX ME", "(12-16)% increased Critical Strike Chance with Swords", statOrder = { 1379 }, level = 1, group = "CritChanceWithSwordForJewel", weightKey = { "sword", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, }, + ["CritChanceWithBowJewel"] = { type = "Prefix", affix = "of the Sniper FIX ME", "(12-16)% increased Critical Strike Chance with Bows", statOrder = { 1376 }, level = 1, group = "CritChanceWithBowForJewel", weightKey = { "bow", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, }, + ["CritChanceWithClawJewel"] = { type = "Prefix", affix = "of the Eagle FIX ME", "(12-16)% increased Critical Strike Chance with Claws", statOrder = { 1377 }, level = 1, group = "CritChanceWithClawForJewel", weightKey = { "claw", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, }, + ["CritChanceWithDaggerJewel"] = { type = "Prefix", affix = "of Needling FIX ME", "(12-16)% increased Critical Strike Chance with Daggers", statOrder = { 1378 }, level = 1, group = "CritChanceWithDaggerForJewel", weightKey = { "dagger", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, }, + ["CritChanceWithWandJewel"] = { type = "Prefix", affix = "of Divination FIX ME", "(12-16)% increased Critical Strike Chance with Wands", statOrder = { 1382 }, level = 1, group = "CritChanceWithWandForJewel", weightKey = { "wand", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, }, + ["CritChanceWithStaffJewel"] = { type = "Prefix", affix = "of Tyranny FIX ME", "(12-16)% increased Critical Strike Chance with Staves", statOrder = { 1381 }, level = 1, group = "CritChanceWithStaffForJewel", weightKey = { "staff", "specific_weapon", "not_str", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, }, + ["CritMultiplierWithMaceJewel"] = { type = "Prefix", affix = "of Crushing FIX ME", "+(8-10)% to Critical Strike Multiplier with Maces or Sceptres", statOrder = { 1405 }, level = 1, group = "CritMultiplierWithMaceForJewel", weightKey = { "mace", "specific_weapon", "not_str", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack", "critical" }, }, + ["CritMultiplierWithAxeJewel"] = { type = "Prefix", affix = "of Execution FIX ME", "+(8-10)% to Critical Strike Multiplier with Axes", statOrder = { 1406 }, level = 1, group = "CritMultiplierWithAxeForJewel", weightKey = { "axe", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack", "critical" }, }, + ["CritMultiplierWithSwordJewel"] = { type = "Prefix", affix = "of Severing FIX ME", "+(8-10)% to Critical Strike Multiplier with Swords", statOrder = { 1408 }, level = 1, group = "CritMultiplierWithSwordForJewel", weightKey = { "sword", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack", "critical" }, }, + ["CritMultiplierWithBowJewel"] = { type = "Prefix", affix = "of the Hunter FIX ME", "+(8-10)% to Critical Strike Multiplier with Bows", statOrder = { 1407 }, level = 1, group = "CritMultiplierWithBowForJewel", weightKey = { "bow", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack", "critical" }, }, + ["CritMultiplierWithClawJewel"] = { type = "Prefix", affix = "of the Bear FIX ME", "+(8-10)% to Critical Strike Multiplier with Claws", statOrder = { 1410 }, level = 1, group = "CritMultiplierWithClawForJewel", weightKey = { "claw", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack", "critical" }, }, + ["CritMultiplierWithDaggerJewel"] = { type = "Prefix", affix = "of Assassination FIX ME", "+(8-10)% to Critical Strike Multiplier with Daggers", statOrder = { 1404 }, level = 1, group = "CritMultiplierWithDaggerForJewel", weightKey = { "dagger", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack", "critical" }, }, + ["CritMultiplierWithWandJewel_"] = { type = "Prefix", affix = "of Evocation FIX ME", "+(8-10)% to Critical Strike Multiplier with Wands", statOrder = { 1409 }, level = 1, group = "CritMultiplierWithWandForJewel", weightKey = { "wand", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack", "critical" }, }, + ["CritMultiplierWithStaffJewel"] = { type = "Prefix", affix = "of Trauma FIX ME", "+(8-10)% to Critical Strike Multiplier with Staves", statOrder = { 1411 }, level = 1, group = "CritMultiplierWithStaffForJewel", weightKey = { "staff", "specific_weapon", "not_str", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack", "critical" }, }, + ["OneHandedCritChanceJewel"] = { type = "Prefix", affix = "Harming", "(14-18)% increased Critical Strike Chance with One Handed Melee Weapons", statOrder = { 1389 }, level = 1, group = "OneHandedCritChanceForJewel", weightKey = { "wand", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 250, 0 }, modTags = { "attack", "critical" }, }, + ["TwoHandedCritChanceJewel"] = { type = "Prefix", affix = "Sundering", "(14-18)% increased Critical Strike Chance with Two Handed Melee Weapons", statOrder = { 1387 }, level = 1, group = "TwoHandedCritChanceForJewel", weightKey = { "bow", "one_handed_mod", "shield_mod", "dual_wielding_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 0, 250, 0 }, modTags = { "attack", "critical" }, }, + ["DualWieldingCritChanceJewel"] = { type = "Prefix", affix = "Technical", "(14-18)% increased Attack Critical Strike Chance while Dual Wielding", statOrder = { 1391 }, level = 1, group = "DualWieldingCritChanceForJewel", weightKey = { "shield_mod", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 250, 0 }, modTags = { "attack", "critical" }, }, + ["ShieldCritChanceJewel"] = { type = "Prefix", affix = "", "(10-14)% increased Critical Strike Chance while holding a Shield", statOrder = { 1384 }, level = 1, group = "ShieldCritChanceForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "critical" }, }, + ["MeleeCritChanceJewel"] = { type = "Suffix", affix = "of Weight", "(10-14)% increased Melee Critical Strike Chance", statOrder = { 1390 }, level = 1, group = "MeleeCritChanceForJewel", weightKey = { "bow", "wand", "not_int", "default", }, weightVal = { 0, 0, 250, 0 }, modTags = { "attack", "critical" }, }, + ["SpellCritChanceJewel"] = { type = "Suffix", affix = "of Annihilation", "(10-14)% increased Spell Critical Strike Chance", statOrder = { 1369 }, level = 1, group = "SpellCritChanceForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 250 }, modTags = { "caster", "critical" }, }, + ["TrapCritChanceJewel_"] = { type = "Prefix", affix = "Inescapable", "(12-16)% increased Critical Strike Chance with Traps", statOrder = { 1385 }, level = 1, group = "TrapCritChanceForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, }, + ["MineCritChanceJewel"] = { type = "Prefix", affix = "Crippling", "(12-16)% increased Critical Strike Chance with Mines", statOrder = { 1386 }, level = 1, group = "MineCritChanceForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, }, + ["FireCritChanceJewel"] = { type = "Prefix", affix = "Incinerating", "(14-18)% increased Critical Strike Chance with Fire Skills", statOrder = { 1392 }, level = 1, group = "FireCritChanceForJewel", weightKey = { "not_str", "default", }, weightVal = { 200, 250 }, modTags = { "elemental", "fire", "critical" }, }, + ["ColdCritChanceJewel"] = { type = "Prefix", affix = "Avalanching", "(14-18)% increased Critical Strike Chance with Cold Skills", statOrder = { 1394 }, level = 1, group = "ColdCritChanceForJewel", weightKey = { "not_dex", "default", }, weightVal = { 200, 250 }, modTags = { "elemental", "cold", "critical" }, }, + ["LightningCritChanceJewel"] = { type = "Prefix", affix = "Thundering", "(14-18)% increased Critical Strike Chance with Lightning Skills", statOrder = { 1393 }, level = 1, group = "LightningCritChanceForJewel", weightKey = { "not_int", "default", }, weightVal = { 200, 250 }, modTags = { "elemental", "lightning", "critical" }, }, + ["ElementalCritChanceJewel"] = { type = "Suffix", affix = "of the Apocalypse", "(10-14)% increased Critical Strike Chance with Elemental Skills", statOrder = { 1395 }, level = 1, group = "ElementalCritChanceForJewel", weightKey = { "default", }, weightVal = { 100 }, modTags = { "elemental", "critical" }, }, + ["ChaosCritChanceJewel"] = { type = "Prefix", affix = "Obliterating", "(12-16)% increased Critical Strike Chance with Chaos Skills", statOrder = { 1396 }, level = 1, group = "ChaosCritChanceForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "critical" }, }, + ["OneHandCritMultiplierJewel_"] = { type = "Prefix", affix = "Piercing", "+(15-18)% to Critical Strike Multiplier with One Handed Melee Weapons", statOrder = { 1412 }, level = 1, group = "OneHandCritMultiplierForJewel", weightKey = { "wand", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 250, 0 }, modTags = { "damage", "attack", "critical" }, }, + ["TwoHandCritMultiplierJewel"] = { type = "Prefix", affix = "Rupturing", "+(15-18)% to Critical Strike Multiplier with Two Handed Melee Weapons", statOrder = { 1388 }, level = 1, group = "TwoHandCritMultiplierForJewel", weightKey = { "bow", "one_handed_mod", "shield_mod", "dual_wielding_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 0, 250, 0 }, modTags = { "damage", "attack", "critical" }, }, + ["DualWieldingCritMultiplierJewel"] = { type = "Prefix", affix = "Puncturing", "+(15-18)% to Critical Strike Multiplier while Dual Wielding", statOrder = { 4171 }, level = 1, group = "DualWieldingCritMultiplierForJewel", weightKey = { "shield_mod", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 250, 0 }, modTags = { "damage", "attack", "critical" }, }, + ["ShieldCritMultiplierJewel"] = { type = "Prefix", affix = "", "+(6-8)% to Melee Critical Strike Multiplier while holding a Shield", statOrder = { 1415 }, level = 1, group = "ShieldCritMultiplierForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack", "critical" }, }, + ["MeleeCritMultiplier"] = { type = "Suffix", affix = "of Demolishing", "+(12-15)% to Melee Critical Strike Multiplier", statOrder = { 1413 }, level = 1, group = "MeleeCritMultiplierForJewel", weightKey = { "bow", "wand", "not_int", "default", }, weightVal = { 0, 0, 250, 0 }, modTags = { "damage", "attack", "critical" }, }, + ["SpellCritMultiplier"] = { type = "Suffix", affix = "of Unmaking", "+(12-15)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1403 }, level = 1, group = "SpellCritMultiplierForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 250 }, modTags = { "caster_damage", "damage", "caster", "critical" }, }, + ["TrapCritMultiplier"] = { type = "Prefix", affix = "Debilitating", "+(8-10)% to Critical Strike Multiplier with Traps", statOrder = { 1416 }, level = 1, group = "TrapCritMultiplierForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "critical" }, }, + ["MineCritMultiplier"] = { type = "Prefix", affix = "Incapacitating", "+(8-10)% to Critical Strike Multiplier with Mines", statOrder = { 1417 }, level = 1, group = "MineCritMultiplierForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "critical" }, }, + ["FireCritMultiplier"] = { type = "Prefix", affix = "Infernal", "+(15-18)% to Critical Strike Multiplier with Fire Skills", statOrder = { 1418 }, level = 1, group = "FireCritMultiplierForJewel", weightKey = { "not_str", "default", }, weightVal = { 200, 250 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "critical" }, }, + ["ColdCritMultiplier"] = { type = "Prefix", affix = "Arctic", "+(15-18)% to Critical Strike Multiplier with Cold Skills", statOrder = { 1420 }, level = 1, group = "ColdCritMultiplierForJewel", weightKey = { "not_dex", "default", }, weightVal = { 200, 250 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "critical" }, }, + ["LightningCritMultiplier"] = { type = "Prefix", affix = "Surging", "+(15-18)% to Critical Strike Multiplier with Lightning Skills", statOrder = { 1419 }, level = 1, group = "LightningCritMultiplierForJewel", weightKey = { "not_int", "default", }, weightVal = { 200, 250 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "critical" }, }, + ["ElementalCritMultiplier"] = { type = "Suffix", affix = "of the Elements", "+(12-15)% to Critical Strike Multiplier with Elemental Skills", statOrder = { 1421 }, level = 1, group = "ElementalCritMultiplierForJewel", weightKey = { "default", }, weightVal = { 100 }, modTags = { "elemental_damage", "damage", "elemental", "critical" }, }, + ["ChaosCritMultiplier"] = { type = "Prefix", affix = "", "+(8-10)% to Critical Strike Multiplier with Chaos Skills", statOrder = { 1422 }, level = 1, group = "ChaosCritMultiplierForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "critical" }, }, + ["FireResistanceJewel"] = { type = "Suffix", affix = "of the Dragon", "+(12-15)% to Fire Resistance", statOrder = { 1536 }, level = 1, group = "FireResistanceForJewel", weightKey = { "not_str", "default", }, weightVal = { 300, 500 }, modTags = { "elemental", "fire", "resistance" }, }, + ["ColdResistanceJewel"] = { type = "Suffix", affix = "of the Beast", "+(12-15)% to Cold Resistance", statOrder = { 1542 }, level = 1, group = "ColdResistanceForJewel", weightKey = { "not_dex", "default", }, weightVal = { 300, 500 }, modTags = { "elemental", "cold", "resistance" }, }, + ["LightningResistanceJewel"] = { type = "Suffix", affix = "of Grounding", "+(12-15)% to Lightning Resistance", statOrder = { 1547 }, level = 1, group = "LightningResistanceForJewel", weightKey = { "not_int", "default", }, weightVal = { 300, 500 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["FireColdResistanceJewel"] = { type = "Suffix", affix = "of the Hearth", "+(10-12)% to Fire and Cold Resistances", statOrder = { 2708 }, level = 1, group = "FireColdResistanceForJewel", weightKey = { "not_int", "default", }, weightVal = { 450, 250 }, modTags = { "elemental", "fire", "cold", "resistance" }, }, + ["FireLightningResistanceJewel"] = { type = "Suffix", affix = "of Insulation", "+(10-12)% to Fire and Lightning Resistances", statOrder = { 2709 }, level = 1, group = "FireLightningResistanceForJewel", weightKey = { "not_dex", "default", }, weightVal = { 450, 250 }, modTags = { "elemental", "fire", "lightning", "resistance" }, }, + ["ColdLightningResistanceJewel"] = { type = "Suffix", affix = "of Shelter", "+(10-12)% to Cold and Lightning Resistances", statOrder = { 2710 }, level = 1, group = "ColdLightningResistanceForJewel", weightKey = { "not_str", "default", }, weightVal = { 450, 250 }, modTags = { "elemental", "cold", "lightning", "resistance" }, }, + ["AllResistancesJewel"] = { type = "Suffix", affix = "of Resistance", "+(8-10)% to all Elemental Resistances", statOrder = { 1530 }, level = 1, group = "AllResistancesForJewel", weightKey = { "default", }, weightVal = { 300 }, modTags = { "elemental", "resistance" }, }, + ["ChaosResistanceJewel"] = { type = "Suffix", affix = "of Order", "+(7-13)% to Chaos Resistance", statOrder = { 1552 }, level = 1, group = "ChaosResistanceForJewel", weightKey = { "default", }, weightVal = { 100 }, modTags = { "chaos", "resistance" }, }, + ["MaximumFireResistanceJewel"] = { type = "Suffix", affix = "of the Phoenix", "+(1-2)% to maximum Fire Resistance", statOrder = { 1534 }, level = 1, group = "MaximumFireResistanceForJewel", weightKey = { "not_str", "default", }, weightVal = { 60, 100 }, modTags = { "elemental", "fire", "resistance" }, }, + ["MaximumColdResistanceJewel"] = { type = "Suffix", affix = "of the Kraken", "+(1-2)% to maximum Cold Resistance", statOrder = { 1540 }, level = 1, group = "MaximumColdResistanceForJewel", weightKey = { "not_dex", "default", }, weightVal = { 60, 100 }, modTags = { "elemental", "cold", "resistance" }, }, + ["MaximumLightningResistanceJewel"] = { type = "Suffix", affix = "of the Leviathan", "+(1-2)% to maximum Lightning Resistance", statOrder = { 1545 }, level = 1, group = "MaximumLightningResistanceForJewel", weightKey = { "not_int", "default", }, weightVal = { 60, 100 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["StunDurationJewel"] = { type = "Suffix", affix = "of Stunning", "(10-14)% increased Stun Duration on Enemies", statOrder = { 1774 }, level = 1, group = "StunDurationForJewel", weightKey = { "not_str", "default", }, weightVal = { 200, 400 }, modTags = { }, }, + ["StunRecoveryJewel"] = { type = "Suffix", affix = "of Recovery", "(25-35)% increased Stun and Block Recovery", statOrder = { 1811 }, level = 1, group = "StunRecoveryForJewel", weightKey = { "not_str", "default", }, weightVal = { 200, 400 }, modTags = { }, }, + ["ManaCostReductionJewel"] = { type = "Suffix", affix = "of Efficiency", "(3-5)% reduced Mana Cost of Skills", statOrder = { 1794 }, level = 1, group = "ManaCostReductionForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, + ["FasterAilmentDamageJewel"] = { type = "Prefix", affix = "Decrepifying", "Damaging Ailments deal damage (4-6)% faster", statOrder = { 6021 }, level = 1, group = "FasterAilmentDamageForJewel", weightKey = { "default", }, weightVal = { 250 }, modTags = { "ailment" }, }, + ["AuraRadiusJewel"] = { type = "Suffix", affix = "Hero's FIX ME", "(10-15)% increased Area of Effect of Aura Skills", statOrder = { 2133 }, level = 1, group = "AuraRadiusForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "aura" }, }, + ["CurseRadiusJewel"] = { type = "Suffix", affix = "Hexing FIX ME", "(8-10)% increased Area of Effect of Hex Skills", statOrder = { 2134 }, level = 1, group = "CurseRadiusForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, }, + ["AvoidIgniteJewel"] = { type = "Suffix", affix = "Dousing FIX ME", "(6-8)% chance to Avoid being Ignited", statOrder = { 1757 }, level = 1, group = "AvoidIgniteForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["AvoidShockJewel"] = { type = "Suffix", affix = "Insulating FIX ME", "(6-8)% chance to Avoid being Shocked", statOrder = { 1759 }, level = 1, group = "AvoidShockForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["AvoidFreezeJewel"] = { type = "Suffix", affix = "Thawing FIX ME", "(6-8)% chance to Avoid being Frozen", statOrder = { 1756 }, level = 1, group = "AvoidFreezeForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["AvoidChillJewel"] = { type = "Suffix", affix = "Heating FIX ME", "(6-8)% chance to Avoid being Chilled", statOrder = { 1755 }, level = 1, group = "AvoidChillForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["AvoidStunJewel"] = { type = "Suffix", affix = "FIX ME", "(6-8)% chance to Avoid being Stunned", statOrder = { 1762 }, level = 1, group = "AvoidStunForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["ChanceToFreezeJewel"] = { type = "Suffix", affix = "FIX ME", "(2-3)% chance to Freeze", statOrder = { 1938 }, level = 1, group = "ChanceToFreezeForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ChanceToIgniteJewel_"] = { type = "Suffix", affix = "FIX ME", "(2-3)% chance to Ignite", statOrder = { 1935 }, level = 1, group = "ChanceToIgniteForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ChanceToShockJewel"] = { type = "Suffix", affix = "FIX ME", "(2-3)% chance to Shock", statOrder = { 1942 }, level = 1, group = "ChanceToShockForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["EnduranceChargeDurationJewel"] = { type = "Suffix", affix = "of Endurance", "(10-14)% increased Endurance Charge Duration", statOrder = { 2034 }, level = 1, group = "EnduranceChargeDurationForJewel", weightKey = { "not_str", "default", }, weightVal = { 0, 0 }, modTags = { "endurance_charge" }, }, + ["FrenzyChargeDurationJewel"] = { type = "Suffix", affix = "of Frenzy", "(10-14)% increased Frenzy Charge Duration", statOrder = { 2036 }, level = 1, group = "FrenzyChargeDurationForJewel", weightKey = { "not_dex", "default", }, weightVal = { 0, 0 }, modTags = { "frenzy_charge" }, }, + ["PowerChargeDurationJewel_"] = { type = "Suffix", affix = "of Power", "(10-14)% increased Power Charge Duration", statOrder = { 2051 }, level = 1, group = "PowerChargeDurationForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 0 }, modTags = { "power_charge" }, }, + ["KnockbackChanceJewel_"] = { type = "Suffix", affix = "of Fending", "(4-6)% chance to Knock Enemies Back on hit", statOrder = { 1904 }, level = 1, group = "KnockbackChanceForJewel", weightKey = { "default", }, weightVal = { 250 }, modTags = { }, }, + ["BlockDualWieldingJewel"] = { type = "Prefix", affix = "Parrying", "+(2-3)% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1074 }, level = 1, group = "BlockDualWieldingForJewel", weightKey = { "staff", "two_handed_mod", "shield_mod", "default", }, weightVal = { 0, 0, 0, 350 }, modTags = { "block" }, }, + ["BlockShieldJewel"] = { type = "Prefix", affix = "Shielding", "+(2-3)% Chance to Block Attack Damage while holding a Shield", statOrder = { 1052 }, level = 1, group = "BlockShieldForJewel", weightKey = { "two_handed_mod", "dual_wielding_mod", "default", }, weightVal = { 0, 0, 350 }, modTags = { "block" }, }, + ["BlockStaffJewel"] = { type = "Prefix", affix = "Deflecting", "+(2-3)% Chance to Block Attack Damage while wielding a Staff", statOrder = { 1066 }, level = 1, group = "BlockStaffForJewel", weightKey = { "one_handed_mod", "staff", "specific_weapon", "shield_mod", "dual_wielding_mod", "not_dex", "default", }, weightVal = { 0, 350, 0, 0, 0, 350, 0 }, modTags = { "block" }, }, + ["DualWieldingSpellBlockForJewel"] = { type = "Prefix", affix = "Dissipating", "+(2-3)% Chance to Block Spell Damage while Dual Wielding", statOrder = { 1057 }, level = 1, group = "DualWieldingSpellBlockForJewel", weightKey = { "two_handed_mod", "shield_mod", "default", }, weightVal = { 0, 0, 350 }, modTags = { "block" }, }, + ["ShieldSpellBlockJewel"] = { type = "Prefix", affix = "Thwarting", "+(2-3)% Chance to Block Spell Damage while holding a Shield", statOrder = { 1053 }, level = 1, group = "ShieldSpellBlockForJewel", weightKey = { "two_handed_mod", "dual_wielding_mod", "default", }, weightVal = { 0, 0, 350 }, modTags = { "block" }, }, + ["StaffSpellBlockJewel"] = { type = "Prefix", affix = "Halting", "+(2-3)% Chance to Block Spell Damage while wielding a Staff", statOrder = { 1063 }, level = 1, group = "StaffSpellBlockForJewel", weightKey = { "one_handed_mod", "staff", "specific_weapon", "shield_mod", "dual_wielding_mod", "not_dex", "default", }, weightVal = { 0, 350, 0, 0, 0, 350, 0 }, modTags = { "block" }, }, + ["FreezeDurationJewel"] = { type = "Suffix", affix = "of the Glacier", "(12-16)% increased Chill and Freeze Duration on Enemies", statOrder = { 5662 }, level = 1, group = "FreezeDurationForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ShockDurationJewel"] = { type = "Suffix", affix = "of the Storm", "(12-16)% increased Shock Duration on Enemies", statOrder = { 1768 }, level = 1, group = "ShockDurationForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["IgniteDurationJewel"] = { type = "Suffix", affix = "of Immolation", "(3-5)% increased Ignite Duration on Enemies", statOrder = { 1770 }, level = 1, group = "BurnDurationForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ChillAndShockEffectOnYouJewel"] = { type = "Suffix", affix = "of Insulation", "15% reduced Effect of Chill and Shock on you", statOrder = { 9802 }, level = 1, group = "ChillAndShockEffectOnYouJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "lightning", "ailment" }, }, + ["CurseEffectOnYouJewel"] = { type = "Suffix", affix = "of Hexwarding", "(25-30)% reduced Effect of Curses on you", statOrder = { 2079 }, level = 1, group = "CurseEffectOnYouJewel", weightKey = { "default", }, weightVal = { 250 }, modTags = { "curse" }, }, + ["IgniteDurationOnYouJewel"] = { type = "Suffix", affix = "of the Flameruler", "(30-35)% reduced Ignite Duration on you", statOrder = { 1786 }, level = 1, group = "ReducedIgniteDurationOnSelf", weightKey = { "default", }, weightVal = { 250 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ChillEffectOnYouJewel"] = { type = "Suffix", affix = "of the Snowbreather", "(30-35)% reduced Effect of Chill on you", statOrder = { 1556 }, level = 1, group = "ChillEffectivenessOnSelf", weightKey = { "default", }, weightVal = { 250 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ShockEffectOnYouJewel"] = { type = "Suffix", affix = "of the Stormdweller", "(30-35)% reduced Effect of Shock on you", statOrder = { 9803 }, level = 1, group = "ReducedShockEffectOnSelf", weightKey = { "default", }, weightVal = { 250 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["PoisonDurationOnYouJewel"] = { type = "Suffix", affix = "of Neutralisation", "(30-35)% reduced Poison Duration on you", statOrder = { 9762 }, level = 1, group = "ReducedPoisonDuration", weightKey = { "default", }, weightVal = { 250 }, modTags = { "poison", "chaos", "ailment" }, }, + ["BleedDurationOnYouJewel"] = { type = "Suffix", affix = "of Stemming", "(30-35)% reduced Bleed Duration on you", statOrder = { 9753 }, level = 1, group = "ReducedBleedDuration", weightKey = { "default", }, weightVal = { 250 }, modTags = { "bleed", "physical", "ailment" }, }, + ["ManaReservationEfficiencyJewel"] = { type = "Prefix", affix = "Cerebral", "(2-3)% increased Mana Reservation Efficiency of Skills", statOrder = { 2137 }, level = 1, group = "ManaReservationEfficiency", weightKey = { "default", }, weightVal = { 250 }, modTags = { "resource", "mana" }, }, + ["FlaskDurationJewel"] = { type = "Prefix", affix = "Prolonging", "(6-10)% increased Flask Effect Duration", statOrder = { 2096 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { "default", }, weightVal = { 250 }, modTags = { "flask" }, }, + ["FreezeChanceAndDurationJewel"] = { type = "Suffix", affix = "of Freezing", "(12-16)% increased Freeze Duration on Enemies", "(3-5)% chance to Freeze", statOrder = { 1769, 1938 }, level = 1, group = "FreezeChanceAndDurationForJewel", weightKey = { "not_dex", "default", }, weightVal = { 250, 350 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ShockChanceAndDurationJewel"] = { type = "Suffix", affix = "of Shocking", "(12-16)% increased Shock Duration on Enemies", "(3-5)% chance to Shock", statOrder = { 1768, 1942 }, level = 1, group = "ShockChanceAndDurationForJewel", weightKey = { "not_int", "default", }, weightVal = { 250, 350 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["IgniteChanceAndDurationJewel"] = { type = "Suffix", affix = "of Burning", "(6-8)% increased Ignite Duration on Enemies", "(3-5)% chance to Ignite", statOrder = { 1770, 1935 }, level = 1, group = "IgniteChanceAndDurationForJewel", weightKey = { "not_str", "default", }, weightVal = { 250, 350 }, modTags = { "elemental", "fire", "ailment" }, }, + ["PoisonChanceAndDurationForJewel"] = { type = "Suffix", affix = "of Poisoning", "(6-8)% increased Poison Duration", "(3-5)% chance to Poison on Hit", statOrder = { 3078, 3081 }, level = 1, group = "PoisonChanceAndDurationForJewel", weightKey = { "not_dex", "default", }, weightVal = { 250, 350 }, modTags = { "poison", "chaos", "ailment" }, }, + ["BleedChanceAndDurationForJewel__"] = { type = "Suffix", affix = "of Bleeding", "Attacks have (3-5)% chance to cause Bleeding", "(12-16)% increased Bleeding Duration", statOrder = { 2398, 4888 }, level = 1, group = "BleedChanceAndDurationForJewel", weightKey = { "not_str", "default", }, weightVal = { 250, 350 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ImpaleChanceForJewel_"] = { type = "Suffix", affix = "of Impaling", "(5-7)% chance to Impale Enemies on Hit with Attacks", statOrder = { 4815 }, level = 1, group = "ImpaleChanceForJewel", weightKey = { "not_str", "default", }, weightVal = { 250, 350 }, modTags = { "physical", "attack" }, }, + ["PoisonDamageForJewel"] = { type = "Suffix", affix = "of Venom", "(16-20)% increased Damage with Poison", statOrder = { 3089 }, level = 1, group = "PoisonDamageForJewel", weightKey = { "not_dex", "default", }, weightVal = { 250, 500 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["BleedDamageForJewel"] = { type = "Suffix", affix = "of Haemophilia", "(16-20)% increased Damage with Bleeding", statOrder = { 3077 }, level = 1, group = "BleedDamageForJewel", weightKey = { "not_str", "default", }, weightVal = { 250, 500 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["BurningDamageForJewel"] = { type = "Suffix", affix = "of Combusting", "(16-20)% increased Burning Damage", statOrder = { 1788 }, level = 1, group = "BurningDamageForJewel", weightKey = { "default", }, weightVal = { 500 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, + ["EnergyShieldDelayJewel"] = { type = "Prefix", affix = "Serene", "(4-6)% faster start of Energy Shield Recharge", statOrder = { 1473 }, level = 1, group = "EnergyShieldDelayForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 500 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldRateJewel"] = { type = "Prefix", affix = "Fevered", "(6-8)% increased Energy Shield Recharge Rate", statOrder = { 1476 }, level = 1, group = "EnergyShieldRechargeRateForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 500 }, modTags = { "defences", "energy_shield" }, }, + ["MinionBlockJewel"] = { type = "Suffix", affix = "of the Wall", "Minions have +(4-6)% Chance to Block Attack Damage", statOrder = { 2813 }, level = 1, group = "MinionBlockForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 0 }, modTags = { "block", "minion" }, }, + ["MinionLifeJewel"] = { type = "Prefix", affix = "Master's", "Minions have (8-12)% increased maximum Life", statOrder = { 1677 }, level = 1, group = "MinionLifeForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 350 }, modTags = { "resource", "life", "minion" }, }, + ["MinionElementalResistancesJewel"] = { type = "Suffix", affix = "of Resilience", "Minions have +(11-15)% to all Elemental Resistances", statOrder = { 2822 }, level = 1, group = "MinionElementalResistancesForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 350 }, modTags = { "elemental", "resistance", "minion" }, }, + ["MinionAccuracyRatingJewel"] = { type = "Suffix", affix = "of Training", "(22-26)% increased Minion Accuracy Rating", statOrder = { 9076 }, level = 1, group = "MinionAccuracyRatingForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "minion" }, }, + ["TotemDamageJewel"] = { type = "Prefix", affix = "Shaman's", "(12-16)% increased Totem Damage", statOrder = { 1105 }, level = 1, group = "TotemDamageForJewel", weightKey = { "not_str", "default", }, weightVal = { 250, 350 }, modTags = { "damage" }, }, + ["TotemLifeJewel"] = { type = "Prefix", affix = "Carved", "(8-12)% increased Totem Life", statOrder = { 1685 }, level = 1, group = "TotemLifeForJewel", weightKey = { "not_str", "default", }, weightVal = { 250, 350 }, modTags = { "resource", "life" }, }, + ["TotemElementalResistancesJewel"] = { type = "Suffix", affix = "of Runes", "Totems gain +(6-10)% to all Elemental Resistances", statOrder = { 2697 }, level = 1, group = "TotemElementalResistancesForJewel", weightKey = { "not_str", "default", }, weightVal = { 250, 350 }, modTags = { "elemental", "resistance" }, }, + ["DelveWeaponFirePenetration1h1_"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (5-7)% Fire Resistance", statOrder = { 2890 }, level = 1, group = "FireResistancePenetration", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["DelveWeaponFirePenetration2h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (12-15)% Fire Resistance", statOrder = { 2890 }, level = 1, group = "FireResistancePenetration", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["DelveJewelFirePenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates 1% Fire Resistance", statOrder = { 2890 }, level = 1, group = "FireResistancePenetration", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["DelveBodyArmourAvoidFire1_"] = { type = "Prefix", affix = "Subterranean", "(8-10)% chance to Avoid Fire Damage from Hits", statOrder = { 3281 }, level = 1, group = "FireDamageAvoidance", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "elemental", "fire" }, }, + ["DelveGlovesFireDamageToSpells1"] = { type = "Prefix", affix = "Subterranean", "Adds (20-25) to (26-35) Fire Damage", statOrder = { 1270 }, level = 1, group = "GlobalAddedFireDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["DelveBootsSocketedFireGemLevel1"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Fire Gems", statOrder = { 147 }, level = 1, group = "LocalIncreaseSocketedFireGemLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "fire", "gem" }, }, + ["DelveRingFireLeech1"] = { type = "Prefix", affix = "Subterranean", "0.2% of Fire Damage Leeched as Life", statOrder = { 1581 }, level = 1, group = "FireDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "elemental", "fire" }, }, + ["DelveHelmetEnemyFireResistanceAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies have -9% to Fire Resistance", statOrder = { 7766 }, level = 1, group = "NearbyEnemyFireDamageResistance", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "resistance" }, }, + ["DelveJewelryFireDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Fire Damage", statOrder = { 1268 }, level = 1, group = "FireDamagePercentagePrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["DelveWeaponColdPenetration1h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (5-7)% Cold Resistance", statOrder = { 2892 }, level = 1, group = "ColdResistancePenetration", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["DelveWeaponColdPenetration2h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (12-15)% Cold Resistance", statOrder = { 2892 }, level = 1, group = "ColdResistancePenetration", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["DelveJewelColdPenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates 1% Cold Resistance", statOrder = { 2892 }, level = 1, group = "ColdResistancePenetration", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["DelveBodyArmourAvoidCold1"] = { type = "Prefix", affix = "Subterranean", "(6-10)% chance to Avoid Cold Damage from Hits", statOrder = { 3282 }, level = 1, group = "ColdDamageAvoidance", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "elemental", "cold" }, }, + ["DelveGlovesColdDamageToSpells1"] = { type = "Prefix", affix = "Subterranean", "Adds (20-25) to (26-35) Cold Damage", statOrder = { 1279 }, level = 1, group = "GlobalAddedColdDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["DelveBootsSocketedColdGemLevel1"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Cold Gems", statOrder = { 148 }, level = 1, group = "LocalIncreaseSocketedColdGemLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "cold", "gem" }, }, + ["DelveRingColdLeech1"] = { type = "Prefix", affix = "Subterranean", "0.2% of Cold Damage Leeched as Life", statOrder = { 1586 }, level = 1, group = "ColdDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "elemental", "cold" }, }, + ["DelveHelmetEnemyColdResistanceAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies have -9% to Cold Resistance", statOrder = { 7764 }, level = 1, group = "NearbyEnemyColdDamageResistance", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "resistance" }, }, + ["DelveJewelryColdDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Cold Damage", statOrder = { 1277 }, level = 1, group = "ColdDamagePercentagePrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["DelveWeaponLightningPenetration1h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (5-7)% Lightning Resistance", statOrder = { 2893 }, level = 1, group = "LightningResistancePenetration", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["DelveWeaponLightningPenetration2h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (12-15)% Lightning Resistance", statOrder = { 2893 }, level = 1, group = "LightningResistancePenetration", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["DelveJewelLightningPenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates 1% Lightning Resistance", statOrder = { 2893 }, level = 1, group = "LightningResistancePenetration", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["DelveBodyArmourAvoidLightning1"] = { type = "Prefix", affix = "Subterranean", "(6-10)% chance to Avoid Lightning Damage from Hits", statOrder = { 3283 }, level = 1, group = "LightningDamageAvoidance", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "elemental", "lightning" }, }, + ["DelveGlovesLightningDamageToSpells1"] = { type = "Prefix", affix = "Subterranean", "Adds 1 to (48-60) Lightning Damage", statOrder = { 1290 }, level = 1, group = "GlobalAddedLightningDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["DelveBootsSocketedLightningGemLevel1_"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Lightning Gems", statOrder = { 149 }, level = 1, group = "LocalIncreaseSocketedLightningGemLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "lightning", "gem" }, }, + ["DelveRingLightningLeech1_"] = { type = "Prefix", affix = "Subterranean", "0.2% of Lightning Damage Leeched as Life", statOrder = { 1590 }, level = 1, group = "LightningDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, }, + ["DelveHelmetEnemyLightningResistanceAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies have -9% to Lightning Resistance", statOrder = { 7768 }, level = 1, group = "NearbyEnemyLightningDamageResistance", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "resistance" }, }, + ["DelveJewelryLightningDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Lightning Damage", statOrder = { 1288 }, level = 1, group = "LightningDamagePercentagePrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["DelveWeaponIntimidateOnHit1"] = { type = "Suffix", affix = "of the Underground", "15% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 7731 }, level = 1, group = "LocalChanceToIntimidateOnHit", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "attack" }, }, + ["DelveArmourPhysDamageTaken1"] = { type = "Suffix", affix = "of the Underground", "-(75-50) Physical Damage taken from Hits", statOrder = { 2144 }, level = 1, group = "FlatPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "physical" }, }, + ["DelveArmourPhysDamageTakenv2_1"] = { type = "Suffix", affix = "of the Underground", "-(34-20) Physical Damage taken from Hits", statOrder = { 2144 }, level = 1, group = "FlatPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical" }, }, + ["DelveArmourPhysDamageTakenv2_2"] = { type = "Suffix", affix = "of the Underground", "-(49-35) Physical Damage taken from Hits", statOrder = { 2144 }, level = 30, group = "FlatPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical" }, }, + ["DelveArmourPhysDamageTakenv2_3"] = { type = "Suffix", affix = "of the Underground", "-(75-50) Physical Damage taken from Hits", statOrder = { 2144 }, level = 60, group = "FlatPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical" }, }, + ["DelveShieldPhysicalDamageReductionRating1"] = { type = "Prefix", affix = "Subterranean", "(3-5)% additional Physical Damage Reduction", statOrder = { 2182 }, level = 1, group = "ReducedPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "physical" }, }, + ["DelveBootsPhyiscalDamageReductionRatingWhileMoving1"] = { type = "Suffix", affix = "of the Underground", "(3-5)% additional Physical Damage Reduction while moving", statOrder = { 4489 }, level = 1, group = "AdditionalPhysicalDamageReductionWhileMoving", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical" }, }, + ["DelveGlovesGlobalAddedPhysicalDamage1"] = { type = "Prefix", affix = "Subterranean", "Adds (6-8) to (9-11) Physical Damage", statOrder = { 1177 }, level = 1, group = "GlobalAddedPhysicalDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["DelveRingPhysicalLeech1"] = { type = "Prefix", affix = "Subterranean", "0.2% of Physical Damage Leeched as Life", statOrder = { 1577 }, level = 1, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "physical" }, }, + ["DelveHelmetEnemyPhysicalDamageTakenAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies take 9% increased Physical Damage", statOrder = { 7770 }, level = 1, group = "NearbyEnemyPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["DelveJewelryPhysicalDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Global Physical Damage", statOrder = { 1143 }, level = 1, group = "PhysicalDamagePercentPrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["DelveJewelPhysicalDamageOverTimeTaken1"] = { type = "Prefix", affix = "Subterranean", "(1-2)% reduced Physical Damage taken over time", statOrder = { 4935 }, level = 1, group = "PhysicalDamageOverTimeTaken", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "physical" }, }, + ["DelveWeaponDespairOnHit1h1"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Despair on Hit", statOrder = { 2437 }, level = 1, group = "CurseOnHitDespair", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "caster", "curse" }, }, + ["DelveWeaponDespairOnHit2h1"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Despair on Hit", statOrder = { 2437 }, level = 1, group = "CurseOnHitDespair", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "caster", "curse" }, }, + ["DelveArmourChaosResistance1_"] = { type = "Prefix", affix = "Subterranean", "+(20-35)% to Chaos Resistance", statOrder = { 1552 }, level = 1, group = "ChaosResistancePrefix", weightKey = { "abyss_jewel", "jewel", "quiver", "shield", "body_armour", "boots", "gloves", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "chaos", "resistance" }, }, + ["DelveBodyArmourChaosDegenResist1"] = { type = "Suffix", affix = "of the Underground", "+(30-40)% Chaos Resistance against Damage Over Time", statOrder = { 5631 }, level = 1, group = "ChaosResistanceAgainstDamageOverTime", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "chaos", "resistance" }, }, + ["DelveGlovesChaosDamageToSpells1"] = { type = "Prefix", affix = "Subterranean", "Adds (15-20) to (21-30) Chaos Damage", statOrder = { 1297 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["DelveBootsSocketedChaosGemLevel1"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Chaos Gems", statOrder = { 150 }, level = 1, group = "LocalIncreaseSocketedChaosGemLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "chaos", "gem" }, }, + ["DelveRingChaosLeech1"] = { type = "Prefix", affix = "Subterranean", "0.2% of Chaos Damage Leeched as Life", statOrder = { 1593 }, level = 1, group = "ChaosDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "chaos" }, }, + ["DelveHelmetEnemyChaosResistanceAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies have -9% to Chaos Resistance", statOrder = { 7763 }, level = 1, group = "NearbyEnemyChaosDamageResistance", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "chaos_damage", "damage", "chaos", "resistance" }, }, + ["DelveJewelryChaosDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Chaos Damage", statOrder = { 1296 }, level = 1, group = "IncreasedChaosDamagePrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["DelveJewelChaosDamage1"] = { type = "Suffix", affix = "of the Underground", "(13-19)% increased Chaos Damage", statOrder = { 1296 }, level = 1, group = "IncreasedChaosDamage", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["DelveWeaponDamageOnFullLife1h1__"] = { type = "Suffix", affix = "of the Underground", "(50-60)% increased Damage when on Full Life", statOrder = { 5969 }, level = 1, group = "DamageOnFullLife", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage" }, }, + ["DelveWeaponDamageOnFullLife2h1"] = { type = "Suffix", affix = "of the Underground", "(100-120)% increased Damage when on Full Life", statOrder = { 5969 }, level = 1, group = "DamageOnFullLife", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage" }, }, + ["DelveBodyArmourLife1"] = { type = "Prefix", affix = "Subterranean", "+(25-40) to maximum Life", "(3-5)% increased maximum Life", statOrder = { 1480, 1482 }, level = 1, group = "LifeAndPercentLife", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "life" }, }, + ["DelveNonBodyArmourLife1"] = { type = "Prefix", affix = "Subterranean", "+(15-25) to maximum Life", "(2-3)% increased maximum Life", statOrder = { 1480, 1482 }, level = 1, group = "LifeAndPercentLife", weightKey = { "abyss_jewel", "jewel", "shield", "boots", "helmet", "gloves", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "resource", "life" }, }, + ["DelveArmourLifeRegen1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 1% of Life per second", statOrder = { 1853 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { "abyss_jewel", "jewel", "quiver", "shield", "body_armour", "helmet", "gloves", "boots", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 2000, 2000, 0 }, modTags = { "resource", "life" }, }, + ["DelveJewelryFlaskLifeRecovery1"] = { type = "Suffix", affix = "of the Underground", "(20-30)% increased Life Recovery from Flasks", statOrder = { 1968 }, level = 1, group = "GlobalFlaskLifeRecovery", weightKey = { "abyss_jewel", "jewel", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "flask", "resource", "life" }, }, + ["DelveWeaponArmourIfYouHitRecently1h1"] = { type = "Suffix", affix = "of the Underground", "+500 to Armour if you've Hit an Enemy Recently", statOrder = { 9440 }, level = 1, group = "PhysicalDamageReductionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "sceptre", "mace", "axe", "sword", "default", }, weightVal = { 0, 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "armour" }, }, + ["DelveJewelLifeRegeneration1"] = { type = "Prefix", affix = "Subterranean", "Regenerate 0.3% of Life per second", statOrder = { 1853 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resource", "life" }, }, + ["DelveWeaponArmourIfYouHitRecently2h1"] = { type = "Suffix", affix = "of the Underground", "+1000 to Armour if you've Hit an Enemy Recently", statOrder = { 9440 }, level = 1, group = "PhysicalDamageReductionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "staff", "mace", "axe", "sword", "default", }, weightVal = { 0, 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "armour" }, }, + ["DelveJewelArmourIfYouHitRecently1"] = { type = "Suffix", affix = "of the Underground", "+(250-300) to Armour if you've Hit an Enemy Recently", statOrder = { 9440 }, level = 1, group = "PhysicalDamageReductionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 300, 300, 0 }, modTags = { "defences", "armour" }, }, + ["DelveWeaponEvasionIfYouHitRecently1h1"] = { type = "Suffix", affix = "of the Underground", "+500 to Evasion Rating if Hit an Enemy Recently", statOrder = { 6375 }, level = 1, group = "EvasionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "axe", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "evasion" }, }, + ["DelveWeaponEvasionIfYouHitRecently2h1"] = { type = "Suffix", affix = "of the Underground", "+1000 to Evasion Rating if Hit an Enemy Recently", statOrder = { 6375 }, level = 1, group = "EvasionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "axe", "sword", "bow", "default", }, weightVal = { 0, 0, 0, 1600, 1600, 1600, 0 }, modTags = { "defences", "evasion" }, }, + ["DelveJewelEvasionIfYouHitRecently1"] = { type = "Suffix", affix = "of the Underground", "+(250-300) to Evasion Rating if Hit an Enemy Recently", statOrder = { 6375 }, level = 1, group = "EvasionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 300, 300, 0 }, modTags = { "defences", "evasion" }, }, + ["DelveWeaponEnergyShieldRegenIfYouHitRecently1h1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.5% of Energy Shield per second if you've Hit an Enemy Recently", statOrder = { 6345 }, level = 1, group = "EnergyShieldRegenerationRatePerMinuteIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "dagger", "claw", "wand", "sceptre", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "energy_shield" }, }, + ["DelveWeaponEnergyShieldRegenIfYouHitRecently2h1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 1% of Energy Shield per second if you've Hit an Enemy Recently", statOrder = { 6345 }, level = 1, group = "EnergyShieldRegenerationRatePerMinuteIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "staff", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["DelveJewelEnergyShieldRegenIfYouHitRecently1_"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.3% of Energy Shield per second if you've Hit an Enemy Recently", statOrder = { 6345 }, level = 1, group = "EnergyShieldRegenerationRatePerMinuteIfYouHaveHitAnEnemyRecently", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 300, 300, 0 }, modTags = { "defences", "energy_shield" }, }, + ["DelveArmourArmour1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Armour", statOrder = { 1453 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercentSuffix", weightKey = { "abyss_jewel", "jewel", "str_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour" }, }, + ["DelveArmourEvasion1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Evasion Rating", statOrder = { 1461 }, level = 1, group = "LocalEvasionRatingIncreasePercentSuffix", weightKey = { "abyss_jewel", "jewel", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "evasion" }, }, + ["DelveArmourEnergyShield1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Energy Shield", statOrder = { 1471 }, level = 1, group = "LocalEnergyShieldPercentSuffix", weightKey = { "abyss_jewel", "jewel", "int_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, }, + ["DelveArmourArmourAndEvasion1_"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Armour and Evasion", statOrder = { 1464 }, level = 1, group = "LocalArmourAndEvasionSuffix", weightKey = { "abyss_jewel", "jewel", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour", "evasion" }, }, + ["DelveArmourArmourAndEnergyShield1__"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Armour and Energy Shield", statOrder = { 1463 }, level = 1, group = "LocalArmourAndEnergyShieldSuffix", weightKey = { "abyss_jewel", "jewel", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, + ["DelveArmourEvasionAndEnergyShield1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Evasion and Energy Shield", statOrder = { 1465 }, level = 1, group = "LocalEvasionAndEnergyShieldSuffix", weightKey = { "abyss_jewel", "jewel", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["DelveArmourDefences1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Armour, Evasion and Energy Shield", statOrder = { 1466 }, level = 1, group = "LocalArmourAndEvasionAndEnergyShieldSuffix", weightKey = { "abyss_jewel", "jewel", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, }, + ["DelveArmourQuality"] = { type = "Suffix", affix = "of the Underground", "+(10-20)% to Quality", statOrder = { 7800 }, level = 1, group = "LocalItemQuality", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { }, }, + ["DelveArmourEnergyShieldRegen"] = { type = "Suffix", affix = "of the Underground", "Regenerate 1% of Energy Shield per second", statOrder = { 2554 }, level = 1, group = "EnergyShieldRegenerationPerMinute", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "helmet", "int_armour", "dex_int_armour", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["DelveArmourEnergyShieldLeechSpells_"] = { type = "Suffix", affix = "of the Underground", "0.3% of Spell Damage Leeched as Energy Shield", statOrder = { 1633 }, level = 1, group = "EnergyShieldLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "boots", "helmet", "int_armour", "dex_int_armour", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["DelveArmourSpellBlock__"] = { type = "Suffix", affix = "of the Underground", "(3-4)% Chance to Block Spell Damage", statOrder = { 1072 }, level = 1, group = "SpellBlockPercentage", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "boots", "gloves", "int_armour", "dex_int_armour", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "block" }, }, + ["DelveArmourDodgeAndSpellDodge_"] = { type = "Suffix", affix = "of the Underground", "+(4-6)% chance to Suppress Spell Damage", statOrder = { 1055 }, level = 1, group = "ChanceToDodgeAndSpellDodge", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "helmet", "dex_armour", "dex_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { }, }, + ["DelveArmourBlindChance"] = { type = "Suffix", affix = "of the Underground", "(4-6)% Global chance to Blind Enemies on hit", statOrder = { 2867 }, level = 1, group = "GlobalChanceToBlindOnHit", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "boots", "helmet", "dex_armour", "dex_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { }, }, + ["DelveArmourEvasionOnFullLife"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Global Evasion Rating when on Full Life", statOrder = { 6382 }, level = 1, group = "GlobalEvasionRatingPercentOnFullLife", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "boots", "dex_armour", "dex_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "defences", "evasion" }, }, + ["DelveArmourDoubleArmourEffectOnHit"] = { type = "Suffix", affix = "of the Underground", "(10-20)% chance to Defend with 200% of Armour", statOrder = { 5569 }, level = 1, group = "ChanceWhenHitForArmourToBeDoubled", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "helmet", "str_armour", "str_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "defences", "armour" }, }, + ["DelveArmourAttackBlock"] = { type = "Suffix", affix = "of the Underground", "(3-4)% Chance to Block Attack Damage", statOrder = { 1051 }, level = 1, group = "BlockPercent", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "boots", "helmet", "str_armour", "str_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "block" }, }, + ["DelveArmourFortifyEffect"] = { type = "Suffix", affix = "of the Underground", "+(3-5) to maximum Fortification", statOrder = { 8936 }, level = 1, group = "FortifyEffect", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "boots", "str_armour", "str_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { }, }, + ["DelveJewelryIncreasedEnergyShieldFromBodyArmour1"] = { type = "Suffix", affix = "of the Underground", "(20-30)% increased Energy Shield from Equipped Body Armour", statOrder = { 8949 }, level = 1, group = "MaximumEnergyShieldFromBodyArmour", weightKey = { "abyss_jewel", "jewel", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 0 }, modTags = { "defences", "energy_shield" }, }, + ["DelveJewelryChanceWhenHitForArmourToBeDoubled1"] = { type = "Suffix", affix = "of the Underground", "20% chance to Defend with 200% of Armour", statOrder = { 5569 }, level = 1, group = "ChanceWhenHitForArmourToBeDoubled", weightKey = { "abyss_jewel", "jewel", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 0 }, modTags = { "defences", "armour" }, }, + ["DelveJewelryChanceToEvade"] = { type = "Suffix", affix = "of the Underground", "+(1-2)% chance to Evade Attack Hits", statOrder = { 5571 }, level = 1, group = "AdditionalChanceToEvade", weightKey = { "abyss_jewel", "jewel", "quiver", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "evasion" }, }, + ["DelveJewelGlobalDefences1"] = { type = "Prefix", affix = "Subterranean", "(4-6)% increased Global Defences", statOrder = { 2742 }, level = 1, group = "AllDefences", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "defences" }, }, + ["DelveWeaponLocalChanceForPoisonDamage100FinalInflictedWithThisWeapon1"] = { type = "Prefix", affix = "Subterranean", "60% chance for Poisons inflicted with this Weapon to deal 100% more Damage", statOrder = { 7728 }, level = 1, group = "LocalChanceForPoisonDamage100FinalInflictedWithThisWeapon", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "attack", "ailment" }, }, + ["DelveWeaponLocalChanceForBleedingDamage100FinalInflictedWithThisWeapon1"] = { type = "Prefix", affix = "Subterranean", "60% chance for Bleeding inflicted with this Weapon to deal 100% more Damage", statOrder = { 7727 }, level = 1, group = "LocalChanceForBleedingDamage100FinalInflictedWithThisWeapon", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["DelveArmourAvoidPoison1"] = { type = "Suffix", affix = "of the Underground", "50% chance to Avoid being Poisoned", statOrder = { 1760 }, level = 1, group = "ChanceToAvoidPoison", weightKey = { "abyss_jewel", "jewel", "shield", "helmet", "boots", "body_armour", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["DelveArmourAvoidBleeding1"] = { type = "Suffix", affix = "of the Underground", "50% chance to Avoid Bleeding", statOrder = { 4123 }, level = 1, group = "ChanceToAvoidBleeding", weightKey = { "abyss_jewel", "jewel", "shield", "helmet", "boots", "body_armour", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["DelveJewelryAilmentDamage1_"] = { type = "Suffix", affix = "of the Underground", "(30-40)% increased Damage with Ailments", statOrder = { 4878 }, level = 1, group = "AilmentDamage", weightKey = { "abyss_jewel", "jewel", "quiver", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "damage", "ailment" }, }, + ["DelveJewelAilmentDamage1__"] = { type = "Suffix", affix = "of the Underground", "(15-20)% increased Damage with Ailments", statOrder = { 4878 }, level = 1, group = "AilmentDamage", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "damage", "ailment" }, }, + ["DelveGlovesAddedPhysicalDamageVsPoisonedEnemies1"] = { type = "Prefix", affix = "Subterranean", "Adds (7-11) to (12-18) Physical Damage against Poisoned Enemies", statOrder = { 9061 }, level = 1, group = "AddedPhysicalDamageVsPoisonedEnemies", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 1600, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["DelveGlovesAddedPhysicalDamageVsBleedingEnemies1"] = { type = "Prefix", affix = "Subterranean", "Adds (7-11) to (12-18) Physical Damage against Bleeding Enemies", statOrder = { 2403 }, level = 1, group = "AddedPhysicalDamageVsBleedingEnemies", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 1600, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["DelveWeaponLocalAttackReduceEnemyElementalResistance1h1"] = { type = "Prefix", affix = "Subterranean", "Attacks with this Weapon Penetrate (9-12)% Elemental Resistances", statOrder = { 3669 }, level = 1, group = "LocalAttackReduceEnemyElementalResistance", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["DelveWeaponElementalDamage1h1"] = { type = "Prefix", affix = "Subterranean", "(40-60)% increased Elemental Damage", statOrder = { 1889 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["DelveWeaponElementalDamage2h1"] = { type = "Prefix", affix = "Subterranean", "(80-120)% increased Elemental Damage", statOrder = { 1889 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["DelveWeaponElementalDamagev2_1h1"] = { type = "Prefix", affix = "Subterranean", "(19-25)% increased Elemental Damage", statOrder = { 1889 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["DelveWeaponElementalDamagev2_1h2_"] = { type = "Prefix", affix = "Subterranean", "(26-32)% increased Elemental Damage", statOrder = { 1889 }, level = 25, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["DelveWeaponElementalDamagev2_1h3"] = { type = "Prefix", affix = "Subterranean", "(33-39)% increased Elemental Damage", statOrder = { 1889 }, level = 50, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["DelveWeaponElementalDamagev2_1h4"] = { type = "Prefix", affix = "Subterranean", "(40-49)% increased Elemental Damage", statOrder = { 1889 }, level = 75, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["DelveWeaponElementalDamagev2_2h1"] = { type = "Prefix", affix = "Subterranean", "(37-50)% increased Elemental Damage", statOrder = { 1889 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["DelveWeaponElementalDamagev2_2h2__"] = { type = "Prefix", affix = "Subterranean", "(51-65)% increased Elemental Damage", statOrder = { 1889 }, level = 25, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["DelveWeaponElementalDamagev2_2h3"] = { type = "Prefix", affix = "Subterranean", "(66-79)% increased Elemental Damage", statOrder = { 1889 }, level = 50, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["DelveWeaponElementalDamagev2_2h4_"] = { type = "Prefix", affix = "Subterranean", "(80-94)% increased Elemental Damage", statOrder = { 1889 }, level = 75, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["DelveArmourElementalAilmentDuration1___"] = { type = "Suffix", affix = "of the Underground", "(20-30)% reduced Elemental Ailment Duration on you", statOrder = { 1778 }, level = 1, group = "SelfStatusAilmentDuration", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "helmet", "gloves", "boots", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 2000, 0 }, modTags = { "elemental", "ailment" }, }, + ["DelveJewelryElementalPenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (3-5)% Elemental Resistances", statOrder = { 2889 }, level = 1, group = "ElementalPenetration", weightKey = { "abyss_jewel", "jewel", "quiver", "amulet", "default", }, weightVal = { 0, 0, 1600, 1600, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["DelveRingElementalDamage1"] = { type = "Suffix", affix = "of the Underground", "(25-30)% increased Elemental Damage", statOrder = { 1889 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "belt", "ring", "default", }, weightVal = { 0, 0, 1600, 1600, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["DelveJewelElementalPenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates 1% Elemental Resistances", statOrder = { 2889 }, level = 1, group = "ElementalPenetration", weightKey = { "abyss_jewel", "jewel", "default", }, weightVal = { 1600, 1600, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["DelveWeaponSocketedSpellsDamageFinal1h1_"] = { type = "Prefix", affix = "Subterranean", "Socketed Skills deal 40% more Spell Damage", statOrder = { 492 }, level = 1, group = "SocketedSpellsDamageFinal", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "caster_damage", "damage", "caster", "gem" }, }, + ["DelveWeaponSocketedSpellsDamageFinal2h1"] = { type = "Prefix", affix = "Subterranean", "Socketed Skills deal 20% more Spell Damage", statOrder = { 492 }, level = 1, group = "SocketedSpellsDamageFinal", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "caster_damage", "damage", "caster", "gem" }, }, + ["DelveBodyArmourSocketedSkillsSupportedByArcaneSurge1_"] = { type = "Suffix", affix = "of the Underground", "Socketed Gems are Supported by Level 1 Arcane Surge", statOrder = { 204 }, level = 1, group = "SupportedByArcaneSurge", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "support", "gem" }, }, + ["DelveGlovesSocketedSkillsCastSpeed1_"] = { type = "Suffix", affix = "of the Underground", "Socketed Skills have 18% increased Cast Speed", statOrder = { 489 }, level = 1, group = "SocketedSkillsCastSpeed", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "caster", "speed", "gem" }, }, + ["DelveArmourSocketedSpellsManaCost1_"] = { type = "Suffix", affix = "of the Underground", "Socketed Spells have 20% reduced Mana Cost", statOrder = { 495 }, level = 1, group = "SocketedSpellsManaCost", weightKey = { "abyss_jewel", "jewel", "shield", "boots", "helmet", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "skill", "resource", "mana", "caster", "gem" }, }, + ["DelveJewelAvoidInterruptionWhileCasting1"] = { type = "Suffix", affix = "of the Underground", "(15-20)% chance to Ignore Stuns while Casting", statOrder = { 1809 }, level = 1, group = "AvoidInterruptionWhileCasting", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { }, }, + ["DelveWeaponSocketedAttacksDamageFinal1h1"] = { type = "Prefix", affix = "Subterranean", "Socketed Skills deal 40% more Attack Damage", statOrder = { 473 }, level = 1, group = "SocketedAttacksDamageFinal", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "skill", "damage", "attack", "gem" }, }, + ["DelveWeaponSocketedAttacksDamageFinal2h1_"] = { type = "Prefix", affix = "Subterranean", "Socketed Skills deal 20% more Attack Damage", statOrder = { 473 }, level = 1, group = "SocketedAttacksDamageFinal", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "skill", "damage", "attack", "gem" }, }, + ["DelveBodyArmourSocketedSkillsSupportedByMaim1"] = { type = "Suffix", affix = "of the Underground", "Socketed Gems are Supported by Level 1 Maim", statOrder = { 275 }, level = 1, group = "SupportedByMaim", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "support", "gem" }, }, + ["DelveGlovesLocalDisplaySocketedSkillsAttackSpeed1"] = { type = "Suffix", affix = "of the Underground", "Socketed Skills have 18% increased Attack Speed", statOrder = { 488 }, level = 1, group = "SocketedSkillsAttackSpeed", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "attack", "speed", "gem" }, }, + ["DelveArmourLocalDisplaySocketedAttacksManaCost1_"] = { type = "Suffix", affix = "of the Underground", "Socketed Attacks have -15 to Total Mana Cost", statOrder = { 476 }, level = 1, group = "SocketedAttacksManaCost", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "boots", "helmet", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 0 }, modTags = { "skill", "resource", "mana", "attack", "gem" }, }, + ["DelveJewelAttackLeech1"] = { type = "Suffix", affix = "of the Underground", "0.3% of Attack Damage Leeched as Life", statOrder = { 1575 }, level = 1, group = "LifeLeechFromAttacksPermyriad", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resource", "life", "attack" }, }, + ["DelveWeaponManaRegeneratedIfYouveHitRecently1h1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.4% of Mana per second if you've Hit an Enemy Recently", statOrder = { 8032 }, level = 1, group = "ManaRegeneratedIfYouveHitRecently", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "resource", "mana" }, }, + ["DelveWeaponManaRegeneratedIfYouveHitRecently2h1_"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.8% of Mana per second if you've Hit an Enemy Recently", statOrder = { 8032 }, level = 1, group = "ManaRegeneratedIfYouveHitRecently", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, }, + ["DelveBodyDamageRemovedFromManaBeforeLife1_"] = { type = "Suffix", affix = "of the Underground", "(5-10)% of Damage is taken from Mana before Life", statOrder = { 2607 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "life", "mana" }, }, + ["DelveBodyDamageRemovedFromManaBeforeLifeNew1"] = { type = "Prefix", affix = "Subterranean", "(5-10)% of Damage is taken from Mana before Life", statOrder = { 2607 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "life", "mana" }, }, + ["DelveBootsManaRegenerationRateWhileMoving1"] = { type = "Suffix", affix = "of the Underground", "(50-70)% increased Mana Regeneration Rate while moving", statOrder = { 8044 }, level = 1, group = "ManaRegenerationRateWhileMoving", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, }, + ["DelveGlovesManaGainPerTarget1"] = { type = "Suffix", affix = "of the Underground", "Gain (2-4) Mana per Enemy Hit with Attacks", statOrder = { 1655 }, level = 1, group = "ManaGainPerTarget", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana", "attack" }, }, + ["DelveHelmBaseManaRegeneration1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.5% of Mana per second", statOrder = { 1492 }, level = 1, group = "BaseManaRegeneration", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, }, + ["DelveAmuletBeltManaRecoveryRate1"] = { type = "Suffix", affix = "of the Underground", "(8-12)% increased Mana Recovery rate", statOrder = { 1497 }, level = 1, group = "ManaRecoveryRate", weightKey = { "abyss_jewel", "jewel", "belt", "amulet", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "resource", "mana" }, }, + ["DelveRingManaCostReduction1"] = { type = "Suffix", affix = "of the Underground", "(4-6)% reduced Mana Cost of Skills", statOrder = { 1794 }, level = 1, group = "ManaCostReduction", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, }, + ["DelveQuiverIncreasedMana1"] = { type = "Suffix", affix = "of the Underground", "(20-30)% increased maximum Mana", statOrder = { 1491 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { "abyss_jewel", "jewel", "quiver", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, }, + ["DelveJewelDamageTakenGainedAsMana1"] = { type = "Suffix", affix = "of the Underground", "(2-3)% of Damage taken Recouped as Mana", statOrder = { 2364 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["DelveWeaponChanceToGainOnslaughtOnKill1h1_"] = { type = "Suffix", affix = "of the Underground", "10% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2902 }, level = 1, group = "ChanceToGainOnslaughtOnKill", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { }, }, + ["DelveWeaponChanceToGainOnslaughtOnKill2h1"] = { type = "Suffix", affix = "of the Underground", "20% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2902 }, level = 1, group = "ChanceToGainOnslaughtOnKill", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { }, }, + ["DelveBodyFrenzyChargeWhenHit1"] = { type = "Suffix", affix = "of the Underground", "(15-20)% chance to gain a Frenzy Charge when Hit", statOrder = { 4435 }, level = 1, group = "FrenzyChargeWhenHit", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "frenzy_charge" }, }, + ["DelveBootsMovementSpeedIfHitRecently1"] = { type = "Suffix", affix = "of the Underground", "(4-6)% increased Movement Speed if you've Hit an Enemy Recently", statOrder = { 9216 }, level = 1, group = "MovementSpeedIfHitRecently", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "speed" }, }, + ["DelveGlovesAttackAndCastSpeedIfHitRecently1"] = { type = "Suffix", affix = "of the Underground", "(5-10)% increased Attack and Cast Speed if you've Hit an Enemy Recently", statOrder = { 4713 }, level = 1, group = "AttackAndCastSpeedIfHitRecently", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "attack", "caster", "speed" }, }, + ["DelveHelmIgnoreArmourMovementPenalties1"] = { type = "Suffix", affix = "of the Underground", "Ignore all Movement Penalties from Armour", statOrder = { 2090 }, level = 1, group = "IgnoreArmourMovementPenalties", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "speed" }, }, + ["DelveAmuletCannotBeChilledOrFrozenWhileMoving1"] = { type = "Suffix", affix = "of the Underground", "Cannot be Chilled or Frozen while moving", statOrder = { 5289 }, level = 1, group = "CannotBeChilledOrFrozenWhileMoving", weightKey = { "abyss_jewel", "jewel", "amulet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["DelveBeltChanceToGainOnslaughtOnFlaskUse1"] = { type = "Suffix", affix = "of the Underground", "(15-20)% chance to gain Onslaught when you use a Flask", statOrder = { 5590 }, level = 1, group = "ChanceToGainOnslaughtOnFlaskUse", weightKey = { "abyss_jewel", "jewel", "belt", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "flask" }, }, + ["DelveRingCannotBeShockedWhileMoving1"] = { type = "Suffix", affix = "of the Underground", "Cannot be Shocked or Ignited while moving", statOrder = { 5305 }, level = 1, group = "CannotBeShockedOrIgnitedWhileMoving", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["DelveQuiverFrenzyChargeOnHittingRareOrUnique1"] = { type = "Suffix", affix = "of the Underground", "(3-5)% chance to gain a Frenzy Charge when you Hit a Rare or Unique Enemy", statOrder = { 6645 }, level = 1, group = "FrenzyChargeOnHittingRareOrUnique", weightKey = { "abyss_jewel", "jewel", "quiver", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "frenzy_charge" }, }, + ["DelveJewelChanceToGainOnslaughtOnFlaskUse1"] = { type = "Suffix", affix = "of the Underground", "(5-10)% chance to gain Onslaught when you use a Flask", statOrder = { 5590 }, level = 1, group = "ChanceToGainOnslaughtOnFlaskUse", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "flask" }, }, + ["DelveWeaponIncreasedDamageFromAuras1h1"] = { type = "Suffix", affix = "of the Underground", "Auras from your Skills grant 2% increased Damage to you and Allies", statOrder = { 3366 }, level = 1, group = "IncreasedDamageFromAuras", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "aura" }, }, + ["DelveWeaponIncreasedDamageFromAuras2h1"] = { type = "Suffix", affix = "of the Underground", "Auras from your Skills grant 4% increased Damage to you and Allies", statOrder = { 3366 }, level = 1, group = "IncreasedDamageFromAuras", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "aura" }, }, + ["DelveWeaponMinionDamage1h1_"] = { type = "Prefix", affix = "Subterranean", "Minions deal (30-44)% increased Damage", statOrder = { 1882 }, level = 1, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, }, + ["DelveWeaponMinionDamage1h2"] = { type = "Prefix", affix = "Subterranean", "Minions deal (45-59)% increased Damage", statOrder = { 1882 }, level = 25, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, }, + ["DelveWeaponMinionDamage1h3___"] = { type = "Prefix", affix = "Subterranean", "Minions deal (60-74)% increased Damage", statOrder = { 1882 }, level = 50, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "damage", "minion" }, }, + ["DelveWeaponMinionDamage1h4"] = { type = "Prefix", affix = "Subterranean", "Minions deal (75-80)% increased Damage", statOrder = { 1882 }, level = 75, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 500, 0 }, modTags = { "damage", "minion" }, }, + ["DelveWeaponMinionDamage2h1"] = { type = "Prefix", affix = "Subterranean", "Minions deal (51-70)% increased Damage", statOrder = { 1882 }, level = 1, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, }, + ["DelveWeaponMinionDamage2h2"] = { type = "Prefix", affix = "Subterranean", "Minions deal (71-90)% increased Damage", statOrder = { 1882 }, level = 25, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, }, + ["DelveWeaponMinionDamage2h3_"] = { type = "Prefix", affix = "Subterranean", "Minions deal (91-110)% increased Damage", statOrder = { 1882 }, level = 50, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "damage", "minion" }, }, + ["DelveWeaponMinionDamage2h4"] = { type = "Prefix", affix = "Subterranean", "Minions deal (111-130)% increased Damage", statOrder = { 1882 }, level = 75, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 500, 0 }, modTags = { "damage", "minion" }, }, + ["DelveGlovesMinionDamage1"] = { type = "Prefix", affix = "Subterranean", "Minions deal (20-30)% increased Damage", statOrder = { 1882 }, level = 1, group = "MinionDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, }, + ["DelveJewelryMinionRunSpeed1"] = { type = "Suffix", affix = "of the Underground", "Minions have (15-30)% increased Movement Speed", statOrder = { 1680 }, level = 74, group = "MinionRunSpeed", weightKey = { "abyss_jewel", "jewel", "quiver", "ring", "amulet", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "speed", "minion" }, }, + ["DelveArmourMinionLife1"] = { type = "Suffix", affix = "of the Underground", "Minions have (20-30)% increased maximum Life", statOrder = { 1677 }, level = 74, group = "MinionLife", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "resource", "life", "minion" }, }, + ["DelveBootsAdditionalSpectre1_"] = { type = "Suffix", affix = "of the Underground", "+1 to Level of all Raise Spectre Gems", statOrder = { 1527 }, level = 1, group = "MinionGlobalSkillLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "minion", "gem" }, }, + ["DelveBodyArmourAuraEffect1_"] = { type = "Suffix", affix = "of the Underground", "(20-25)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3474 }, level = 1, group = "AuraEffect", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "aura" }, }, + ["DelveHelmetReducedManaReserved1"] = { type = "Suffix", affix = "of the Underground", "(8-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 2141 }, level = 1, group = "ReducedReservation", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, }, + ["DelveHelmetManaReservationEfficiency1"] = { type = "Suffix", affix = "of the Underground", "10% increased Mana Reservation Efficiency of Skills", statOrder = { 2137 }, level = 1, group = "ManaReservationEfficiency", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, }, + ["DelveJewelMinionAttackAndCastSpeed1"] = { type = "Suffix", affix = "of the Underground", "Minions have (4-6)% increased Attack Speed", "Minions have (4-6)% increased Cast Speed", statOrder = { 2817, 2818 }, level = 1, group = "MinionAttackAndCastSpeed", weightKey = { "abyss_jewel", "jewel", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, ["DelveStrengthGemLevel1"] = { type = "Suffix", affix = "of the Underground", "+1 to Level of Socketed Strength Gems", statOrder = { 138 }, level = 1, group = "DelveStrengthGemLevel", weightKey = { "abyss_jewel", "jewel", "staff", "sceptre", "mace", "axe", "sword", "bow", "dagger", "claw", "wand", "str_armour", "int_armour", "dex_armour", "str_dex_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "unset_ring", "default", }, weightVal = { 0, 0, 1000, 1000, 1600, 1000, 1000, 750, 750, 750, 750, 1600, 750, 750, 1000, 1000, 750, 1000, 1000, 0 }, modTags = { "attribute", "gem" }, }, - ["DelveDexterityGemLevel1"] = { type = "Suffix", affix = "of the Underground", "+1 to Level of Socketed Dexterity Gems", statOrder = { 139 }, level = 1, group = "DelveDexterityGemLevel", weightKey = { "abyss_jewel", "jewel", "staff", "sceptre", "mace", "axe", "sword", "bow", "dagger", "claw", "wand", "str_armour", "int_armour", "dex_armour", "str_dex_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "unset_ring", "default", }, weightVal = { 0, 0, 750, 750, 750, 1000, 1000, 1600, 1000, 1000, 750, 750, 750, 1600, 1000, 750, 1000, 1000, 1000, 0 }, modTags = { "attribute", "gem" }, }, - ["DelveIntelligenceGemLevel1"] = { type = "Suffix", affix = "of the Underground", "+1 to Level of Socketed Intelligence Gems", statOrder = { 140 }, level = 1, group = "DelveIntelligenceGemLevel", weightKey = { "abyss_jewel", "jewel", "staff", "sceptre", "mace", "axe", "sword", "bow", "dagger", "claw", "wand", "str_armour", "int_armour", "dex_armour", "str_dex_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "unset_ring", "default", }, weightVal = { 0, 0, 1000, 1000, 750, 750, 750, 750, 1000, 1000, 1600, 750, 1600, 750, 750, 1000, 1000, 1000, 1000, 0 }, modTags = { "attribute", "gem" }, }, + ["DelveDexterityGemLevel1"] = { type = "Suffix", affix = "of the Underground", "+1 to Level of Socketed Dexterity Gems", statOrder = { 140 }, level = 1, group = "DelveDexterityGemLevel", weightKey = { "abyss_jewel", "jewel", "staff", "sceptre", "mace", "axe", "sword", "bow", "dagger", "claw", "wand", "str_armour", "int_armour", "dex_armour", "str_dex_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "unset_ring", "default", }, weightVal = { 0, 0, 750, 750, 750, 1000, 1000, 1600, 1000, 1000, 750, 750, 750, 1600, 1000, 750, 1000, 1000, 1000, 0 }, modTags = { "attribute", "gem" }, }, + ["DelveIntelligenceGemLevel1"] = { type = "Suffix", affix = "of the Underground", "+1 to Level of Socketed Intelligence Gems", statOrder = { 141 }, level = 1, group = "DelveIntelligenceGemLevel", weightKey = { "abyss_jewel", "jewel", "staff", "sceptre", "mace", "axe", "sword", "bow", "dagger", "claw", "wand", "str_armour", "int_armour", "dex_armour", "str_dex_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "unset_ring", "default", }, weightVal = { 0, 0, 1000, 1000, 750, 750, 750, 750, 1000, 1000, 1600, 750, 1600, 750, 750, 1000, 1000, 1000, 1000, 0 }, modTags = { "attribute", "gem" }, }, ["DelveAbyssJewelSocket1"] = { type = "Suffix", affix = "of the Underground", "Has 1 Abyssal Socket", statOrder = { 49 }, level = 1, group = "AbyssJewelSocket", weightKey = { "abyss_jewel", "jewel", "weapon", "helmet", "boots", "gloves", "body_armour", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 2000, 0 }, modTags = { }, }, - ["DelveWeaponVaalSoulCost1h1_"] = { type = "Suffix", affix = "of the Underground", "Non-Aura Vaal Skills require 20% reduced Souls Per Use", statOrder = { 9007 }, level = 1, group = "VaalSoulCost", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "vaal" }, }, - ["DelveWeaponVaalSoulCost2h1"] = { type = "Suffix", affix = "of the Underground", "Non-Aura Vaal Skills require 40% reduced Souls Per Use", statOrder = { 9007 }, level = 1, group = "VaalSoulCost", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "vaal" }, }, - ["DelveArmourVaalSoulsOnKill1_"] = { type = "Suffix", affix = "of the Underground", "(5-8)% chance to gain an additional Vaal Soul on Kill", statOrder = { 2970 }, level = 1, group = "AdditionalVaalSoulOnKill", weightKey = { "abyss_jewel", "jewel", "helmet", "body_armour", "boots", "shield", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 0 }, modTags = { "vaal" }, }, - ["DelveJewelVaalSoulsOnKill1"] = { type = "Suffix", affix = "of the Underground", "(3-5)% chance to gain an additional Vaal Soul on Kill", statOrder = { 2970 }, level = 1, group = "AdditionalVaalSoulOnKill", weightKey = { "abyss_jewel", "jewel", "default", }, weightVal = { 2000, 2000, 0 }, modTags = { "vaal" }, }, - ["DelveGlovesVaalSkillCriticalChance1"] = { type = "Suffix", affix = "of the Underground", "(80-120)% increased Vaal Skill Critical Strike Chance", statOrder = { 2973 }, level = 1, group = "VaalSkillCriticalStrikeChance", weightKey = { "abyss_jewel", "jewel", "quiver", "gloves", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "critical", "vaal" }, }, - ["DelveAmuletVaalSkillDuration1"] = { type = "Suffix", affix = "of the Underground", "(15-25)% increased Vaal Skill Effect Duration", statOrder = { 2971 }, level = 1, group = "VaalSkillDuration", weightKey = { "abyss_jewel", "jewel", "amulet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "vaal" }, }, - ["DelveJewelryVaalSkillDamage1"] = { type = "Suffix", affix = "of the Underground", "(20-40)% increased Damage with Vaal Skills", statOrder = { 2961 }, level = 1, group = "VaalSkillDamage", weightKey = { "abyss_jewel", "jewel", "belt", "ring", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "damage", "vaal" }, }, - ["JewelChaosNonAilmentDamageOverTimeMultiplier2"] = { type = "Suffix", affix = "of Atrophy", "+(6-8)% to Chaos Damage over Time Multiplier", statOrder = { 1144 }, level = 1, group = "ChaosDamageOverTimeMultiplier", weightKey = { "not_str", "default", }, weightVal = { 300, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["JewelColdDamageOverTimeMultiplier1"] = { type = "Suffix", affix = "of Gelidity", "+(6-8)% to Cold Damage over Time Multiplier", statOrder = { 1141 }, level = 1, group = "ColdDamageOverTimeMultiplier", weightKey = { "not_str", "default", }, weightVal = { 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["JewelFireDamageOverTimeMultiplier1"] = { type = "Suffix", affix = "of Zealousness", "+(6-8)% to Fire Damage over Time Multiplier", statOrder = { 1136 }, level = 1, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 300 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, - ["JewelPhysicalDamageOverTimeMultiplier1"] = { type = "Suffix", affix = "of Exsanguinating", "+(6-8)% to Physical Damage over Time Multiplier", statOrder = { 1132 }, level = 1, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 300 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, - ["JewelGlobalDamageOverTimeMultiplier1"] = { type = "Suffix", affix = "of Acrimony", "+(4-6)% to Damage over Time Multiplier", statOrder = { 1127 }, level = 1, group = "GlobalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 300 }, modTags = { "dot_multi", "damage" }, }, + ["DelveWeaponVaalSoulCost1h1_"] = { type = "Suffix", affix = "of the Underground", "Non-Aura Vaal Skills require 20% reduced Souls Per Use", statOrder = { 9284 }, level = 1, group = "VaalSoulCost", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "vaal" }, }, + ["DelveWeaponVaalSoulCost2h1"] = { type = "Suffix", affix = "of the Underground", "Non-Aura Vaal Skills require 40% reduced Souls Per Use", statOrder = { 9284 }, level = 1, group = "VaalSoulCost", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "vaal" }, }, + ["DelveArmourVaalSoulsOnKill1_"] = { type = "Suffix", affix = "of the Underground", "(5-8)% chance to gain an additional Vaal Soul on Kill", statOrder = { 3012 }, level = 1, group = "AdditionalVaalSoulOnKill", weightKey = { "abyss_jewel", "jewel", "helmet", "body_armour", "boots", "shield", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 0 }, modTags = { "vaal" }, }, + ["DelveJewelVaalSoulsOnKill1"] = { type = "Suffix", affix = "of the Underground", "(3-5)% chance to gain an additional Vaal Soul on Kill", statOrder = { 3012 }, level = 1, group = "AdditionalVaalSoulOnKill", weightKey = { "abyss_jewel", "jewel", "default", }, weightVal = { 2000, 2000, 0 }, modTags = { "vaal" }, }, + ["DelveGlovesVaalSkillCriticalChance1"] = { type = "Suffix", affix = "of the Underground", "(80-120)% increased Vaal Skill Critical Strike Chance", statOrder = { 3015 }, level = 1, group = "VaalSkillCriticalStrikeChance", weightKey = { "abyss_jewel", "jewel", "quiver", "gloves", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "critical", "vaal" }, }, + ["DelveAmuletVaalSkillDuration1"] = { type = "Suffix", affix = "of the Underground", "Vaal Skills have (15-25)% increased Skill Effect Duration", statOrder = { 3013 }, level = 1, group = "VaalSkillDuration", weightKey = { "abyss_jewel", "jewel", "amulet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "vaal" }, }, + ["DelveJewelryVaalSkillDamage1"] = { type = "Suffix", affix = "of the Underground", "(20-40)% increased Damage with Vaal Skills", statOrder = { 3003 }, level = 1, group = "VaalSkillDamage", weightKey = { "abyss_jewel", "jewel", "belt", "ring", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "damage", "vaal" }, }, + ["JewelChaosNonAilmentDamageOverTimeMultiplier2"] = { type = "Suffix", affix = "of Atrophy", "+(6-8)% to Chaos Damage over Time Multiplier", statOrder = { 1171 }, level = 1, group = "ChaosDamageOverTimeMultiplier", weightKey = { "not_str", "default", }, weightVal = { 300, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["JewelColdDamageOverTimeMultiplier1"] = { type = "Suffix", affix = "of Gelidity", "+(6-8)% to Cold Damage over Time Multiplier", statOrder = { 1168 }, level = 1, group = "ColdDamageOverTimeMultiplier", weightKey = { "not_str", "default", }, weightVal = { 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["JewelFireDamageOverTimeMultiplier1"] = { type = "Suffix", affix = "of Zealousness", "+(6-8)% to Fire Damage over Time Multiplier", statOrder = { 1163 }, level = 1, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 300 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["JewelPhysicalDamageOverTimeMultiplier1"] = { type = "Suffix", affix = "of Exsanguinating", "+(6-8)% to Physical Damage over Time Multiplier", statOrder = { 1159 }, level = 1, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 300 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, + ["JewelGlobalDamageOverTimeMultiplier1"] = { type = "Suffix", affix = "of Acrimony", "+(4-6)% to Damage over Time Multiplier", statOrder = { 1154 }, level = 1, group = "GlobalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 300 }, modTags = { "dot_multi", "damage" }, }, } \ No newline at end of file diff --git a/src/Data/ModJewelAbyss.lua b/src/Data/ModJewelAbyss.lua index 1812469b14..eaf5902022 100644 --- a/src/Data/ModJewelAbyss.lua +++ b/src/Data/ModJewelAbyss.lua @@ -2,725 +2,725 @@ -- Item data (c) Grinding Gear Games return { - ["ChaosResistAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "+(1-3)% to Chaos Resistance", statOrder = { 1522 }, level = 1, group = "ChaosResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "resistance" }, }, - ["ReducedCharacterSizeAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "1% reduced Character Size", statOrder = { 1934 }, level = 1, group = "ActorSize", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["ReducedChillDurationAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Chill Duration on you", statOrder = { 1753 }, level = 1, group = "ReducedChillDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ReducedFreezeDurationAbyssJewelCorrupted_"] = { type = "Corrupted", affix = "", "(3-5)% reduced Freeze Duration on you", statOrder = { 1755 }, level = 1, group = "ReducedFreezeDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ReducedIgniteDurationAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Ignite Duration on you", statOrder = { 1756 }, level = 1, group = "ReducedBurnDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ReducedShockDurationAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Shock Duration on you", statOrder = { 1754 }, level = 1, group = "ReducedShockDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["IncreasedChargeDurationAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-7)% increased Endurance, Frenzy and Power Charge Duration", statOrder = { 2897 }, level = 1, group = "ChargeDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, }, - ["AddedChaosDamageAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "Adds 1 to (2-3) Chaos Damage to Attacks", statOrder = { 1271 }, level = 1, group = "ChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["ChanceToBeCritAbyssJewelCorrupted_"] = { type = "Corrupted", affix = "", "Hits have (60-100)% increased Critical Strike Chance against you", statOrder = { 2998 }, level = 1, group = "ChanceToTakeCriticalStrike", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, }, - ["DamageWhileDeadAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-30)% increased Damage while Dead", statOrder = { 2962 }, level = 1, group = "DamageWhileDead", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, }, - ["VaalSkillDamageAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "(5-10)% increased Damage with Vaal Skills", statOrder = { 2961 }, level = 1, group = "VaalSkillDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "vaal" }, }, - ["ChaosDamagePerCorruptedItemAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "1% increased Chaos Damage for each Corrupted Item Equipped", statOrder = { 2965 }, level = 1, group = "ChaosDamagePerCorruptedItem", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["LifeLeechRatePerCorruptedItemAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "1% increased total Recovery per second from Life Leech for each Corrupted Item Equipped", statOrder = { 2966 }, level = 1, group = "LifeLeechRatePerCorruptedItem", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, - ["ManaLeechRatePerCorruptedItemAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "1% increased total Recovery per second from Mana Leech for each Corrupted Item Equipped", statOrder = { 2968 }, level = 1, group = "ManaLeechRatePerCorrupteditem", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, - ["SilenceImmunityAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "You cannot be Cursed with Silence", statOrder = { 2960 }, level = 1, group = "ImmuneToSilence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, }, - ["V2AvoidIgniteAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid being Ignited", statOrder = { 1727 }, level = 1, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "elemental", "fire", "ailment" }, }, - ["V2AvoidChillAndFreezeAbyssalJewelCorrupted_"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid being Frozen", statOrder = { 1726 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "elemental", "cold", "ailment" }, }, - ["V2AvoidShockAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid being Shocked", statOrder = { 1729 }, level = 1, group = "AvoidShock", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["V2AvoidPoisonAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid being Poisoned", statOrder = { 1730 }, level = 1, group = "ChanceToAvoidPoison", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "poison", "chaos", "ailment" }, }, - ["V2AvoidBleedAbyssalJewelCorrupted_"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid Bleeding", statOrder = { 4077 }, level = 1, group = "ChanceToAvoidBleeding", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["V2AvoidStunAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid being Stunned", statOrder = { 1732 }, level = 1, group = "AvoidStun", weightKey = { "default", }, weightVal = { 1000 }, modTags = { }, }, - ["V2CorruptedBloodImmunityAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "Corrupted Blood cannot be inflicted on you", statOrder = { 5116 }, level = 33, group = "CorruptedBloodImmunity", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "bleed", "physical", "ailment" }, }, - ["V2HinderImmunityAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "You cannot be Hindered", statOrder = { 10115 }, level = 40, group = "YouCannotBeHindered", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "blue_herring" }, }, - ["V2IncreasedAilmentEffectOnEnemiesAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "(5-7)% increased Effect of Non-Damaging Ailments", statOrder = { 9017 }, level = 1, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "ailment" }, }, - ["V2IncreasedAreaOfEffectAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "(4-5)% increased Area of Effect", statOrder = { 1761 }, level = 1, group = "AreaOfEffect", weightKey = { "default", }, weightVal = { 1000 }, modTags = { }, }, - ["V2IncreasedCriticalStrikeChanceAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "(8-10)% increased Global Critical Strike Chance", statOrder = { 1343 }, level = 1, group = "CriticalStrikeChance", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "critical" }, }, - ["V2IncreasedDamageAbyssJewelCorrupted_"] = { type = "Corrupted", affix = "", "(4-5)% increased Damage", statOrder = { 1076 }, level = 1, group = "IncreasedDamage", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "damage" }, }, - ["V2MaimImmunityCorrupted_"] = { type = "Corrupted", affix = "", "You cannot be Maimed", statOrder = { 4766 }, level = 40, group = "AvoidMaimChance", weightKey = { "default", }, weightVal = { 1000 }, modTags = { }, }, - ["V2MinionDamageCorrupted__"] = { type = "Corrupted", affix = "", "Minions deal (4-5)% increased Damage", statOrder = { 1852 }, level = 1, group = "MinionDamage", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "damage", "minion" }, }, - ["V2ReducedManaReservationCorrupted_"] = { type = "Corrupted", affix = "", "2% increased Reservation Efficiency of Skills", statOrder = { 2110 }, level = 1, group = "ReducedReservationForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["V2ReducedManaReservationCorruptedEfficiency_____"] = { type = "Corrupted", affix = "", "2% increased Reservation Efficiency of Skills", statOrder = { 2107 }, level = 1, group = "ReservationEfficiencyForJewel", weightKey = { "default", }, weightVal = { 1000 }, modTags = { }, }, - ["V2SilenceImmunityJewelCorrupted__"] = { type = "Corrupted", affix = "", "You cannot be Cursed with Silence", statOrder = { 2960 }, level = 60, group = "ImmuneToSilence", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "caster", "curse" }, }, - ["V2FirePenetrationAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "Damage Penetrates 1% Fire Resistance", statOrder = { 2853 }, level = 1, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["V2ColdPenetrationAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "Damage Penetrates 1% Cold Resistance", statOrder = { 2855 }, level = 1, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["V2LightningPenetrationAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "Damage Penetrates 1% Lightning Resistance", statOrder = { 2856 }, level = 1, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["V2ElementalPenetrationAbyssalJewelCorrupted_"] = { type = "Corrupted", affix = "", "Damage Penetrates 1% Elemental Resistances", statOrder = { 2852 }, level = 1, group = "ElementalPenetration", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["V2ArmourPenetrationAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "Hits have (10-15)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 6801 }, level = 1, group = "ChanceToIgnoreEnemyArmour", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "physical" }, }, - ["AbyssJewelAddedLife1"] = { type = "Prefix", affix = "Hale", "+(21-25) to maximum Life", statOrder = { 1451 }, level = 1, group = "AbyssJewelLife", weightKey = { "default", }, weightVal = { 3000 }, modTags = { "resource", "life" }, }, - ["AbyssJewelAddedLife2"] = { type = "Prefix", affix = "Healthy", "+(26-30) to maximum Life", statOrder = { 1451 }, level = 35, group = "AbyssJewelLife", weightKey = { "default", }, weightVal = { 3000 }, modTags = { "resource", "life" }, }, - ["AbyssJewelAddedLife3"] = { type = "Prefix", affix = "Sanguine", "+(31-35) to maximum Life", statOrder = { 1451 }, level = 74, group = "AbyssJewelLife", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "resource", "life" }, }, - ["AbyssJewelAddedLife4"] = { type = "Prefix", affix = "Stalwart", "+(36-40) to maximum Life", statOrder = { 1451 }, level = 82, group = "AbyssJewelLife", weightKey = { "default", }, weightVal = { 500 }, modTags = { "resource", "life" }, }, - ["AbyssJewelAddedMana1"] = { type = "Prefix", affix = "Beryl", "+(21-25) to maximum Mana", statOrder = { 1461 }, level = 1, group = "AbyssJewelMana", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "resource", "mana" }, }, - ["AbyssJewelAddedMana2"] = { type = "Prefix", affix = "Cobalt", "+(26-30) to maximum Mana", statOrder = { 1461 }, level = 40, group = "AbyssJewelMana", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "resource", "mana" }, }, - ["AbyssJewelAddedMana3"] = { type = "Prefix", affix = "Azure", "+(31-35) to maximum Mana", statOrder = { 1461 }, level = 75, group = "AbyssJewelMana", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "resource", "mana" }, }, - ["AbyssJewelAddedMana4"] = { type = "Prefix", affix = "Sapphire", "+(36-40) to maximum Mana", statOrder = { 1461 }, level = 83, group = "AbyssJewelMana", weightKey = { "default", }, weightVal = { 500 }, modTags = { "resource", "mana" }, }, - ["AbyssJewelChillEffect1_"] = { type = "Suffix", affix = "of Chilling", "(10-15)% increased Effect of Cold Ailments", statOrder = { 5505 }, level = 30, group = "AbyssJewelChillEffect", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 0, 500 }, modTags = { "elemental", "cold", "ailment" }, }, - ["AbyssJewelShockEffect1"] = { type = "Suffix", affix = "of Shocking", "(10-15)% increased Effect of Lightning Ailments", statOrder = { 7045 }, level = 30, group = "AbyssJewelShockEffect", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 0, 500 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["AbyssStrengthJewel1_"] = { type = "Suffix", affix = "of Strength", "+(12-16) to Strength", statOrder = { 1062 }, level = 1, group = "StrengthForJewel", weightKey = { "default", }, weightVal = { 500 }, modTags = { "attribute" }, }, - ["AbyssDexterityJewel1_"] = { type = "Suffix", affix = "of Dexterity", "+(12-16) to Dexterity", statOrder = { 1063 }, level = 1, group = "DexterityForJewel", weightKey = { "default", }, weightVal = { 500 }, modTags = { "attribute" }, }, - ["AbyssIntelligenceJewel1"] = { type = "Suffix", affix = "of Intelligence", "+(12-16) to Intelligence", statOrder = { 1064 }, level = 1, group = "IntelligenceForJewel", weightKey = { "default", }, weightVal = { 500 }, modTags = { "attribute" }, }, - ["AbyssStrengthDexterityJewel1"] = { type = "Suffix", affix = "of Athletics", "+(8-10) to Strength and Dexterity", statOrder = { 1065 }, level = 1, group = "StrengthDexterityForJewel", weightKey = { "default", }, weightVal = { 500 }, modTags = { "attribute" }, }, - ["AbyssStrengthIntelligenceJewel1_"] = { type = "Suffix", affix = "of Spirit", "+(8-10) to Strength and Intelligence", statOrder = { 1066 }, level = 1, group = "StrengthIntelligenceForJewel", weightKey = { "default", }, weightVal = { 500 }, modTags = { "attribute" }, }, - ["AbyssDexterityIntelligenceJewel1"] = { type = "Suffix", affix = "of Cunning", "+(8-10) to Dexterity and Intelligence", statOrder = { 1067 }, level = 1, group = "DexterityIntelligenceForJewel", weightKey = { "default", }, weightVal = { 500 }, modTags = { "attribute" }, }, - ["AbyssAllAttributesJewel1"] = { type = "Suffix", affix = "of Adaption", "+(6-8) to all Attributes", statOrder = { 1061 }, level = 1, group = "AllAttributesForJewel", weightKey = { "default", }, weightVal = { 250 }, modTags = { "attribute" }, }, - ["AbyssFireResistanceJewel1"] = { type = "Suffix", affix = "of the Dragon", "+(12-15)% to Fire Resistance", statOrder = { 1507 }, level = 1, group = "FireResistanceForJewel", weightKey = { "default", }, weightVal = { 400 }, modTags = { "elemental", "fire", "resistance" }, }, - ["AbyssColdResistanceJewel1"] = { type = "Suffix", affix = "of the Beast", "+(12-15)% to Cold Resistance", statOrder = { 1513 }, level = 1, group = "ColdResistanceForJewel", weightKey = { "default", }, weightVal = { 400 }, modTags = { "elemental", "cold", "resistance" }, }, - ["AbyssLightningResistanceJewel1"] = { type = "Suffix", affix = "of Grounding", "+(12-15)% to Lightning Resistance", statOrder = { 1518 }, level = 1, group = "LightningResistanceForJewel", weightKey = { "default", }, weightVal = { 400 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["AbyssFireColdResistanceJewel1"] = { type = "Suffix", affix = "of the Hearth", "+(10-12)% to Fire and Cold Resistances", statOrder = { 2673 }, level = 1, group = "FireColdResistanceForJewel", weightKey = { "default", }, weightVal = { 250 }, modTags = { "elemental", "fire", "cold", "resistance" }, }, - ["AbyssFireLightningResistanceJewel1"] = { type = "Suffix", affix = "of Insulation", "+(10-12)% to Fire and Lightning Resistances", statOrder = { 2674 }, level = 1, group = "FireLightningResistanceForJewel", weightKey = { "default", }, weightVal = { 250 }, modTags = { "elemental", "fire", "lightning", "resistance" }, }, - ["AbyssColdLightningResistanceJewel1"] = { type = "Suffix", affix = "of Shelter", "+(10-12)% to Cold and Lightning Resistances", statOrder = { 2675 }, level = 1, group = "ColdLightningResistanceForJewel", weightKey = { "default", }, weightVal = { 250 }, modTags = { "elemental", "cold", "lightning", "resistance" }, }, - ["AbyssAllResistancesJewel1"] = { type = "Suffix", affix = "of Resistance", "+(8-10)% to all Elemental Resistances", statOrder = { 1501 }, level = 1, group = "AllResistancesForJewel", weightKey = { "default", }, weightVal = { 200 }, modTags = { "elemental", "resistance" }, }, - ["AbyssChaosResistanceJewel1"] = { type = "Suffix", affix = "of Order", "+(7-13)% to Chaos Resistance", statOrder = { 1522 }, level = 1, group = "ChaosResistanceForJewel", weightKey = { "default", }, weightVal = { 100 }, modTags = { "chaos", "resistance" }, }, - ["AbyssAttackSpeedJewel1_"] = { type = "Suffix", affix = "of Berserking", "(3-5)% increased Attack Speed", statOrder = { 1294 }, level = 50, group = "IncreasedAttackSpeedForJewel", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 750, 750, 0 }, modTags = { "attack", "speed" }, }, - ["AbyssCastSpeedJewel1"] = { type = "Suffix", affix = "of Enchanting", "(2-4)% increased Cast Speed", statOrder = { 1330 }, level = 50, group = "IncreasedCastSpeedForJewel", weightKey = { "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 750, 750, 0 }, modTags = { "caster", "speed" }, }, - ["AbyssCriticalStrikeChanceJewel1"] = { type = "Suffix", affix = "of Menace", "(8-12)% increased Global Critical Strike Chance", statOrder = { 1343 }, level = 50, group = "CritChanceForJewel", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 0, 900 }, modTags = { "critical" }, }, - ["AbyssCriticalStrikeMultiplierJewel1"] = { type = "Suffix", affix = "of Potency", "+(9-12)% to Global Critical Strike Multiplier", statOrder = { 1372 }, level = 50, group = "CritMultiplierForJewel", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 0, 900 }, modTags = { "damage", "critical" }, }, - ["AbyssDamageOverTimeWhileDualWieldingJewel1"] = { type = "Prefix", affix = "Degenerative", "(10-14)% increased Damage over Time while Dual Wielding", statOrder = { 2012 }, level = 1, group = "DamageOverTimeWhileDualWielding", weightKey = { "abyss_jewel_summoner", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 600, 300 }, modTags = { "damage" }, }, - ["AbyssDamageOverTimeWhileDualWieldingJewel2"] = { type = "Prefix", affix = "Deleterious", "(15-18)% increased Damage over Time while Dual Wielding", statOrder = { 2012 }, level = 60, group = "DamageOverTimeWhileDualWielding", weightKey = { "abyss_jewel_summoner", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 200, 100 }, modTags = { "damage" }, }, - ["AbyssDamageOverTimeWhileWieldingTwoHandedWeaponJewel1"] = { type = "Prefix", affix = "Degenerative", "(10-14)% increased Damage over Time while wielding a Two Handed Weapon", statOrder = { 2014 }, level = 1, group = "DamageOverTimeWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_summoner", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 900, 450 }, modTags = { "damage" }, }, - ["AbyssDamageOverTimeWhileWieldingTwoHandedWeaponJewel2"] = { type = "Prefix", affix = "Deleterious", "(15-18)% increased Damage over Time while wielding a Two Handed Weapon", statOrder = { 2014 }, level = 60, group = "DamageOverTimeWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_summoner", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 300, 150 }, modTags = { "damage" }, }, - ["AbyssDamageOverTimeWhileHoldingAShieldJewel1_"] = { type = "Prefix", affix = "Degenerative", "(10-14)% increased Damage over Time while holding a Shield", statOrder = { 2013 }, level = 1, group = "DamageOverTimeWhileHoldingAShield", weightKey = { "abyss_jewel_summoner", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 600, 300 }, modTags = { "damage" }, }, - ["AbyssDamageOverTimeWhileHoldingAShieldJewel2_"] = { type = "Prefix", affix = "Deleterious", "(15-18)% increased Damage over Time while holding a Shield", statOrder = { 2013 }, level = 60, group = "DamageOverTimeWhileHoldingAShield", weightKey = { "abyss_jewel_summoner", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 200, 100 }, modTags = { "damage" }, }, - ["AbyssMinionAddedFireDamageJewel1"] = { type = "Prefix", affix = "Heated", "Minions deal (3-6) to (8-11) additional Fire Damage", statOrder = { 3634 }, level = 1, group = "MinionAddedFireDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "minion" }, }, - ["AbyssMinionAddedFireDamageJewel2"] = { type = "Prefix", affix = "Flaming", "Minions deal (11-14) to (17-20) additional Fire Damage", statOrder = { 3634 }, level = 39, group = "MinionAddedFireDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "minion" }, }, - ["AbyssMinionAddedFireDamageJewel3"] = { type = "Prefix", affix = "Scorching", "Minions deal (15-18) to (21-24) additional Fire Damage", statOrder = { 3634 }, level = 48, group = "MinionAddedFireDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "minion" }, }, - ["AbyssMinionAddedFireDamageJewel4_"] = { type = "Prefix", affix = "Incinerating", "Minions deal (20-23) to (26-32) additional Fire Damage", statOrder = { 3634 }, level = 58, group = "MinionAddedFireDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "minion" }, }, - ["AbyssMinionAddedFireDamageJewel5"] = { type = "Prefix", affix = "Blasting", "Minions deal (24-27) to (33-36) additional Fire Damage", statOrder = { 3634 }, level = 70, group = "MinionAddedFireDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "minion" }, }, - ["AbyssMinionAddedFireDamageJewel6_"] = { type = "Prefix", affix = "Cremating", "Minions deal (29-35) to (42-51) additional Fire Damage", statOrder = { 3634 }, level = 82, group = "MinionAddedFireDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 175, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "minion" }, }, - ["AbyssMinionAddedColdDamageJewel1"] = { type = "Prefix", affix = "Frosted", "Minions deal (3-6) to (8-11) additional Cold Damage", statOrder = { 3633 }, level = 1, group = "MinionAddedColdDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "minion" }, }, - ["AbyssMinionAddedColdDamageJewel2"] = { type = "Prefix", affix = "Freezing", "Minions deal (11-14) to (17-20) additional Cold Damage", statOrder = { 3633 }, level = 39, group = "MinionAddedColdDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "minion" }, }, - ["AbyssMinionAddedColdDamageJewel3"] = { type = "Prefix", affix = "Frozen", "Minions deal (15-18) to (21-24) additional Cold Damage", statOrder = { 3633 }, level = 48, group = "MinionAddedColdDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "minion" }, }, - ["AbyssMinionAddedColdDamageJewel4"] = { type = "Prefix", affix = "Glaciated", "Minions deal (20-23) to (26-32) additional Cold Damage", statOrder = { 3633 }, level = 58, group = "MinionAddedColdDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "minion" }, }, - ["AbyssMinionAddedColdDamageJewel5"] = { type = "Prefix", affix = "Polar", "Minions deal (24-27) to (33-36) additional Cold Damage", statOrder = { 3633 }, level = 70, group = "MinionAddedColdDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "minion" }, }, - ["AbyssMinionAddedColdDamageJewel6_"] = { type = "Prefix", affix = "Entombing", "Minions deal (29-35) to (42-51) additional Cold Damage", statOrder = { 3633 }, level = 82, group = "MinionAddedColdDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 175, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "minion" }, }, - ["AbyssMinionAddedLightningDamageJewel1_"] = { type = "Prefix", affix = "Humming", "Minions deal 1 to (9-15) additional Lightning Damage", statOrder = { 3635 }, level = 1, group = "MinionAddedLightningDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "minion" }, }, - ["AbyssMinionAddedLightningDamageJewel2"] = { type = "Prefix", affix = "Sparking", "Minions deal (1-2) to (26-32) additional Lightning Damage", statOrder = { 3635 }, level = 39, group = "MinionAddedLightningDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "minion" }, }, - ["AbyssMinionAddedLightningDamageJewel3_"] = { type = "Prefix", affix = "Arcing", "Minions deal (1-3) to (33-39) additional Lightning Damage", statOrder = { 3635 }, level = 48, group = "MinionAddedLightningDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "minion" }, }, - ["AbyssMinionAddedLightningDamageJewel4"] = { type = "Prefix", affix = "Shocking", "Minions deal (1-4) to (44-50) additional Lightning Damage", statOrder = { 3635 }, level = 58, group = "MinionAddedLightningDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "minion" }, }, - ["AbyssMinionAddedLightningDamageJewel5"] = { type = "Prefix", affix = "Discharging", "Minions deal (1-5) to (51-54) additional Lightning Damage", statOrder = { 3635 }, level = 70, group = "MinionAddedLightningDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "minion" }, }, - ["AbyssMinionAddedLightningDamageJewel6"] = { type = "Prefix", affix = "Electrocuting", "Minions deal (1-6) to (65-77) additional Lightning Damage", statOrder = { 3635 }, level = 82, group = "MinionAddedLightningDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 175, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "minion" }, }, - ["AbyssMinionAddedPhysicalDamageJewel1"] = { type = "Prefix", affix = "Glinting", "Minions deal (2-3) to (5-8) additional Physical Damage", statOrder = { 3636 }, level = 1, group = "MinionAddedPhysicalDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "physical_damage", "damage", "physical", "minion" }, }, - ["AbyssMinionAddedPhysicalDamageJewel2"] = { type = "Prefix", affix = "Gleaming", "Minions deal (5-8) to (11-14) additional Physical Damage", statOrder = { 3636 }, level = 42, group = "MinionAddedPhysicalDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "physical_damage", "damage", "physical", "minion" }, }, - ["AbyssMinionAddedPhysicalDamageJewel3"] = { type = "Prefix", affix = "Annealed", "Minions deal (9-12) to (15-18) additional Physical Damage", statOrder = { 3636 }, level = 54, group = "MinionAddedPhysicalDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "physical_damage", "damage", "physical", "minion" }, }, - ["AbyssMinionAddedPhysicalDamageJewel4"] = { type = "Prefix", affix = "Razor-sharp", "Minions deal (14-17) to (20-23) additional Physical Damage", statOrder = { 3636 }, level = 63, group = "MinionAddedPhysicalDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "physical_damage", "damage", "physical", "minion" }, }, - ["AbyssMinionAddedPhysicalDamageJewel5"] = { type = "Prefix", affix = "Tempered", "Minions deal (18-21) to (24-27) additional Physical Damage", statOrder = { 3636 }, level = 72, group = "MinionAddedPhysicalDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 350, 0 }, modTags = { "physical_damage", "damage", "physical", "minion" }, }, - ["AbyssMinionAddedPhysicalDamageJewel6"] = { type = "Prefix", affix = "Flaring", "Minions deal (23-26) to (33-39) additional Physical Damage", statOrder = { 3636 }, level = 83, group = "MinionAddedPhysicalDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 175, 0 }, modTags = { "physical_damage", "damage", "physical", "minion" }, }, - ["AbyssMinionAddedChaosDamageJewel1"] = { type = "Prefix", affix = "Tainted", "Minions deal (2-3) to (5-8) additional Chaos Damage", statOrder = { 3632 }, level = 1, group = "MinionAddedChaosDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "chaos_damage", "damage", "chaos", "minion" }, }, - ["AbyssMinionAddedChaosDamageJewel2_"] = { type = "Prefix", affix = "Clouded", "Minions deal (5-8) to (11-14) additional Chaos Damage", statOrder = { 3632 }, level = 42, group = "MinionAddedChaosDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "chaos_damage", "damage", "chaos", "minion" }, }, - ["AbyssMinionAddedChaosDamageJewel3"] = { type = "Prefix", affix = "Darkened", "Minions deal (9-12) to (15-18) additional Chaos Damage", statOrder = { 3632 }, level = 54, group = "MinionAddedChaosDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "chaos_damage", "damage", "chaos", "minion" }, }, - ["AbyssMinionAddedChaosDamageJewel4"] = { type = "Prefix", affix = "Malignant", "Minions deal (14-17) to (20-23) additional Chaos Damage", statOrder = { 3632 }, level = 65, group = "MinionAddedChaosDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "chaos_damage", "damage", "chaos", "minion" }, }, - ["AbyssMinionAddedChaosDamageJewel5_"] = { type = "Prefix", affix = "Vile", "Minions deal (18-21) to (24-27) additional Chaos Damage", statOrder = { 3632 }, level = 75, group = "MinionAddedChaosDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 350, 0 }, modTags = { "chaos_damage", "damage", "chaos", "minion" }, }, - ["AbyssMinionAddedChaosDamageJewel6"] = { type = "Prefix", affix = "Malicious", "Minions deal (23-26) to (33-39) additional Chaos Damage", statOrder = { 3632 }, level = 84, group = "MinionAddedChaosDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 175, 0 }, modTags = { "chaos_damage", "damage", "chaos", "minion" }, }, - ["AbyssSpellAddedFireDamageWhileDualWieldingJewel1"] = { type = "Prefix", affix = "Heated", "(2-4) to (5-7) Added Spell Fire Damage while Dual Wielding", statOrder = { 1989 }, level = 1, group = "SpellAddedFireDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["AbyssSpellAddedFireDamageWhileDualWieldingJewel2"] = { type = "Prefix", affix = "Flaming", "(7-9) to (11-13) Added Spell Fire Damage while Dual Wielding", statOrder = { 1989 }, level = 39, group = "SpellAddedFireDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["AbyssSpellAddedFireDamageWhileDualWieldingJewel3"] = { type = "Prefix", affix = "Scorching", "(10-12) to (14-16) Added Spell Fire Damage while Dual Wielding", statOrder = { 1989 }, level = 48, group = "SpellAddedFireDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["AbyssSpellAddedFireDamageWhileDualWieldingJewel4"] = { type = "Prefix", affix = "Incinerating", "(13-15) to (17-21) Added Spell Fire Damage while Dual Wielding", statOrder = { 1989 }, level = 58, group = "SpellAddedFireDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["AbyssSpellAddedFireDamageWhileDualWieldingJewel5_"] = { type = "Prefix", affix = "Blasting", "(16-18) to (22-24) Added Spell Fire Damage while Dual Wielding", statOrder = { 1989 }, level = 70, group = "SpellAddedFireDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 350, 0, 0, 125, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["AbyssSpellAddedFireDamageWhileDualWieldingJewel6"] = { type = "Prefix", affix = "Cremating", "(19-25) to (26-34) Added Spell Fire Damage while Dual Wielding", statOrder = { 1989 }, level = 82, group = "SpellAddedFireDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 175, 0, 0, 62, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["AbyssSpellAddedColdDamageWhileDualWieldingJewel1"] = { type = "Prefix", affix = "Frosted", "(2-4) to (5-7) Added Spell Cold Damage while Dual Wielding", statOrder = { 1986 }, level = 1, group = "SpellAddedColdDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["AbyssSpellAddedColdDamageWhileDualWieldingJewel2"] = { type = "Prefix", affix = "Freezing", "(7-9) to (11-13) Added Spell Cold Damage while Dual Wielding", statOrder = { 1986 }, level = 39, group = "SpellAddedColdDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["AbyssSpellAddedColdDamageWhileDualWieldingJewel3"] = { type = "Prefix", affix = "Frozen", "(10-12) to (14-16) Added Spell Cold Damage while Dual Wielding", statOrder = { 1986 }, level = 48, group = "SpellAddedColdDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["AbyssSpellAddedColdDamageWhileDualWieldingJewel4__"] = { type = "Prefix", affix = "Glaciated", "(13-15) to (17-21) Added Spell Cold Damage while Dual Wielding", statOrder = { 1986 }, level = 58, group = "SpellAddedColdDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["AbyssSpellAddedColdDamageWhileDualWieldingJewel5"] = { type = "Prefix", affix = "Polar", "(16-18) to (22-24) Added Spell Cold Damage while Dual Wielding", statOrder = { 1986 }, level = 70, group = "SpellAddedColdDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 350, 0, 0, 125, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["AbyssSpellAddedColdDamageWhileDualWieldingJewel6"] = { type = "Prefix", affix = "Entombing", "(19-25) to (26-34) Added Spell Cold Damage while Dual Wielding", statOrder = { 1986 }, level = 82, group = "SpellAddedColdDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 175, 0, 0, 62, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["AbyssSpellAddedLightningDamageWhileDualWieldingJewel1"] = { type = "Prefix", affix = "Humming", "1 to (6-10) Added Spell Lightning Damage while Dual Wielding", statOrder = { 1992 }, level = 1, group = "SpellAddedLightningDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["AbyssSpellAddedLightningDamageWhileDualWieldingJewel2"] = { type = "Prefix", affix = "Sparking", "(1-2) to (17-21) Added Spell Lightning Damage while Dual Wielding", statOrder = { 1992 }, level = 39, group = "SpellAddedLightningDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["AbyssSpellAddedLightningDamageWhileDualWieldingJewel3"] = { type = "Prefix", affix = "Arcing", "(1-3) to (22-26) Added Spell Lightning Damage while Dual Wielding", statOrder = { 1992 }, level = 48, group = "SpellAddedLightningDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["AbyssSpellAddedLightningDamageWhileDualWieldingJewel4"] = { type = "Prefix", affix = "Shocking", "(1-4) to (29-33) Added Spell Lightning Damage while Dual Wielding", statOrder = { 1992 }, level = 58, group = "SpellAddedLightningDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["AbyssSpellAddedLightningDamageWhileDualWieldingJewel5_"] = { type = "Prefix", affix = "Discharging", "(1-5) to (34-36) Added Spell Lightning Damage while Dual Wielding", statOrder = { 1992 }, level = 70, group = "SpellAddedLightningDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 350, 0, 0, 125, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["AbyssSpellAddedLightningDamageWhileDualWieldingJewel6"] = { type = "Prefix", affix = "Electrocuting", "(1-6) to (43-51) Added Spell Lightning Damage while Dual Wielding", statOrder = { 1992 }, level = 82, group = "SpellAddedLightningDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 175, 0, 0, 62, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["AbyssSpellAddedPhysicalDamageWhileDualWieldingJewel1"] = { type = "Prefix", affix = "Glinting", "(1-2) to (3-5) Added Spell Physical Damage while Dual Wielding", statOrder = { 1995 }, level = 1, group = "SpellAddedPhysicalDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["AbyssSpellAddedPhysicalDamageWhileDualWieldingJewel2"] = { type = "Prefix", affix = "Gleaming", "(3-5) to (7-9) Added Spell Physical Damage while Dual Wielding", statOrder = { 1995 }, level = 42, group = "SpellAddedPhysicalDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["AbyssSpellAddedPhysicalDamageWhileDualWieldingJewel3"] = { type = "Prefix", affix = "Annealed", "(6-8) to (10-12) Added Spell Physical Damage while Dual Wielding", statOrder = { 1995 }, level = 54, group = "SpellAddedPhysicalDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["AbyssSpellAddedPhysicalDamageWhileDualWieldingJewel4"] = { type = "Prefix", affix = "Razor-sharp", "(9-11) to (13-15) Added Spell Physical Damage while Dual Wielding", statOrder = { 1995 }, level = 63, group = "SpellAddedPhysicalDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["AbyssSpellAddedPhysicalDamageWhileDualWieldingJewel5"] = { type = "Prefix", affix = "Tempered", "(12-14) to (15-17) Added Spell Physical Damage while Dual Wielding", statOrder = { 1995 }, level = 72, group = "SpellAddedPhysicalDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 350, 0, 0, 125, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["AbyssSpellAddedPhysicalDamageWhileDualWieldingJewel6"] = { type = "Prefix", affix = "Flaring", "(15-17) to (20-24) Added Spell Physical Damage while Dual Wielding", statOrder = { 1995 }, level = 83, group = "SpellAddedPhysicalDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 175, 0, 0, 62, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["AbyssSpellAddedChaosDamageWhileDualWieldingJewel1"] = { type = "Prefix", affix = "Tainted", "(1-2) to (3-5) Added Spell Chaos Damage while Dual Wielding", statOrder = { 1983 }, level = 1, group = "SpellAddedChaosDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["AbyssSpellAddedChaosDamageWhileDualWieldingJewel2"] = { type = "Prefix", affix = "Clouded", "(3-5) to (7-9) Added Spell Chaos Damage while Dual Wielding", statOrder = { 1983 }, level = 42, group = "SpellAddedChaosDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["AbyssSpellAddedChaosDamageWhileDualWieldingJewel3"] = { type = "Prefix", affix = "Darkened", "(6-8) to (10-12) Added Spell Chaos Damage while Dual Wielding", statOrder = { 1983 }, level = 54, group = "SpellAddedChaosDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["AbyssSpellAddedChaosDamageWhileDualWieldingJewel4"] = { type = "Prefix", affix = "Malignant", "(9-11) to (13-15) Added Spell Chaos Damage while Dual Wielding", statOrder = { 1983 }, level = 65, group = "SpellAddedChaosDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["AbyssSpellAddedChaosDamageWhileDualWieldingJewel5"] = { type = "Prefix", affix = "Vile", "(12-14) to (15-17) Added Spell Chaos Damage while Dual Wielding", statOrder = { 1983 }, level = 75, group = "SpellAddedChaosDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 350, 0, 0, 125, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["AbyssSpellAddedChaosDamageWhileDualWieldingJewel6"] = { type = "Prefix", affix = "Malicious", "(15-17) to (20-24) Added Spell Chaos Damage while Dual Wielding", statOrder = { 1983 }, level = 84, group = "SpellAddedChaosDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 175, 0, 0, 62, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["AbyssSpellAddedFireDamageWhileWieldingTwoHandedWeaponJewel1"] = { type = "Prefix", affix = "Heated", "(2-4) to (5-7) Added Spell Fire Damage while wielding a Two Handed Weapon", statOrder = { 1991 }, level = 1, group = "SpellAddedFireDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["AbyssSpellAddedFireDamageWhileWieldingTwoHandedWeaponJewel2"] = { type = "Prefix", affix = "Flaming", "(7-9) to (11-13) Added Spell Fire Damage while wielding a Two Handed Weapon", statOrder = { 1991 }, level = 39, group = "SpellAddedFireDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["AbyssSpellAddedFireDamageWhileWieldingTwoHandedWeaponJewel3_"] = { type = "Prefix", affix = "Scorching", "(10-12) to (14-16) Added Spell Fire Damage while wielding a Two Handed Weapon", statOrder = { 1991 }, level = 48, group = "SpellAddedFireDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["AbyssSpellAddedFireDamageWhileWieldingTwoHandedWeaponJewel4"] = { type = "Prefix", affix = "Incinerating", "(13-15) to (17-21) Added Spell Fire Damage while wielding a Two Handed Weapon", statOrder = { 1991 }, level = 58, group = "SpellAddedFireDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["AbyssSpellAddedFireDamageWhileWieldingTwoHandedWeaponJewel5"] = { type = "Prefix", affix = "Blasting", "(16-18) to (22-24) Added Spell Fire Damage while wielding a Two Handed Weapon", statOrder = { 1991 }, level = 70, group = "SpellAddedFireDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 350, 0, 125, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["AbyssSpellAddedFireDamageWhileWieldingTwoHandedWeaponJewel6"] = { type = "Prefix", affix = "Cremating", "(19-25) to (26-34) Added Spell Fire Damage while wielding a Two Handed Weapon", statOrder = { 1991 }, level = 82, group = "SpellAddedFireDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 175, 0, 62, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["AbyssSpellAddedColdDamageWhileWieldingTwoHandedWeaponJewel1"] = { type = "Prefix", affix = "Frosted", "(2-4) to (5-7) Added Spell Cold Damage while wielding a Two Handed Weapon", statOrder = { 1988 }, level = 1, group = "SpellAddedColdDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["AbyssSpellAddedColdDamageWhileWieldingTwoHandedWeaponJewel2"] = { type = "Prefix", affix = "Freezing", "(7-9) to (11-13) Added Spell Cold Damage while wielding a Two Handed Weapon", statOrder = { 1988 }, level = 39, group = "SpellAddedColdDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["AbyssSpellAddedColdDamageWhileWieldingTwoHandedWeaponJewel3"] = { type = "Prefix", affix = "Frozen", "(10-12) to (14-16) Added Spell Cold Damage while wielding a Two Handed Weapon", statOrder = { 1988 }, level = 48, group = "SpellAddedColdDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["AbyssSpellAddedColdDamageWhileWieldingTwoHandedWeaponJewel4"] = { type = "Prefix", affix = "Glaciated", "(13-15) to (17-21) Added Spell Cold Damage while wielding a Two Handed Weapon", statOrder = { 1988 }, level = 58, group = "SpellAddedColdDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["AbyssSpellAddedColdDamageWhileWieldingTwoHandedWeaponJewel5"] = { type = "Prefix", affix = "Polar", "(16-18) to (22-24) Added Spell Cold Damage while wielding a Two Handed Weapon", statOrder = { 1988 }, level = 70, group = "SpellAddedColdDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 350, 0, 125, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["AbyssSpellAddedColdDamageWhileWieldingTwoHandedWeaponJewel6"] = { type = "Prefix", affix = "Entombing", "(19-25) to (26-34) Added Spell Cold Damage while wielding a Two Handed Weapon", statOrder = { 1988 }, level = 82, group = "SpellAddedColdDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 175, 0, 62, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["AbyssSpellAddedLightningDamageWhileWieldingTwoHandedWeaponJewel1"] = { type = "Prefix", affix = "Humming", "1 to (6-10) Added Spell Lightning Damage while wielding a Two Handed Weapon", statOrder = { 1994 }, level = 1, group = "SpellAddedLightningDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["AbyssSpellAddedLightningDamageWhileWieldingTwoHandedWeaponJewel2"] = { type = "Prefix", affix = "Sparking", "(1-2) to (17-21) Added Spell Lightning Damage while wielding a Two Handed Weapon", statOrder = { 1994 }, level = 39, group = "SpellAddedLightningDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["AbyssSpellAddedLightningDamageWhileWieldingTwoHandedWeaponJewel3"] = { type = "Prefix", affix = "Arcing", "(1-3) to (22-26) Added Spell Lightning Damage while wielding a Two Handed Weapon", statOrder = { 1994 }, level = 48, group = "SpellAddedLightningDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["AbyssSpellAddedLightningDamageWhileWieldingTwoHandedWeaponJewel4"] = { type = "Prefix", affix = "Shocking", "(1-4) to (29-33) Added Spell Lightning Damage while wielding a Two Handed Weapon", statOrder = { 1994 }, level = 58, group = "SpellAddedLightningDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["AbyssSpellAddedLightningDamageWhileWieldingTwoHandedWeaponJewel5_"] = { type = "Prefix", affix = "Discharging", "(1-5) to (34-36) Added Spell Lightning Damage while wielding a Two Handed Weapon", statOrder = { 1994 }, level = 70, group = "SpellAddedLightningDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 350, 0, 125, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["AbyssSpellAddedLightningDamageWhileWieldingTwoHandedWeaponJewel6_"] = { type = "Prefix", affix = "Electrocuting", "(1-6) to (43-51) Added Spell Lightning Damage while wielding a Two Handed Weapon", statOrder = { 1994 }, level = 82, group = "SpellAddedLightningDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 175, 0, 62, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["AbyssSpellAddedPhysicalDamageWhileWieldingTwoHandedWeaponJewel1"] = { type = "Prefix", affix = "Glinting", "(1-2) to (3-5) Added Spell Physical Damage while wielding a Two Handed Weapon", statOrder = { 1997 }, level = 1, group = "SpellAddedPhysicalDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["AbyssSpellAddedPhysicalDamageWhileWieldingTwoHandedWeaponJewel2"] = { type = "Prefix", affix = "Gleaming", "(3-5) to (7-9) Added Spell Physical Damage while wielding a Two Handed Weapon", statOrder = { 1997 }, level = 42, group = "SpellAddedPhysicalDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["AbyssSpellAddedPhysicalDamageWhileWieldingTwoHandedWeaponJewel3"] = { type = "Prefix", affix = "Annealed", "(6-8) to (10-12) Added Spell Physical Damage while wielding a Two Handed Weapon", statOrder = { 1997 }, level = 54, group = "SpellAddedPhysicalDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["AbyssSpellAddedPhysicalDamageWhileWieldingTwoHandedWeaponJewel4"] = { type = "Prefix", affix = "Razor-sharp", "(9-11) to (13-15) Added Spell Physical Damage while wielding a Two Handed Weapon", statOrder = { 1997 }, level = 63, group = "SpellAddedPhysicalDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["AbyssSpellAddedPhysicalDamageWhileWieldingTwoHandedWeaponJewel5"] = { type = "Prefix", affix = "Tempered", "(12-14) to (15-17) Added Spell Physical Damage while wielding a Two Handed Weapon", statOrder = { 1997 }, level = 72, group = "SpellAddedPhysicalDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 350, 0, 125, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["AbyssSpellAddedPhysicalDamageWhileWieldingTwoHandedWeaponJewel6"] = { type = "Prefix", affix = "Flaring", "(15-17) to (20-24) Added Spell Physical Damage while wielding a Two Handed Weapon", statOrder = { 1997 }, level = 83, group = "SpellAddedPhysicalDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 175, 0, 62, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["AbyssSpellAddedChaosDamageWhileWieldingTwoHandedWeaponJewel1"] = { type = "Prefix", affix = "Tainted", "(1-2) to (3-5) Added Spell Chaos Damage while wielding a Two Handed Weapon", statOrder = { 1985 }, level = 1, group = "SpellAddedChaosDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["AbyssSpellAddedChaosDamageWhileWieldingTwoHandedWeaponJewel2"] = { type = "Prefix", affix = "Clouded", "(3-5) to (7-9) Added Spell Chaos Damage while wielding a Two Handed Weapon", statOrder = { 1985 }, level = 42, group = "SpellAddedChaosDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["AbyssSpellAddedChaosDamageWhileWieldingTwoHandedWeaponJewel3"] = { type = "Prefix", affix = "Darkened", "(6-8) to (10-12) Added Spell Chaos Damage while wielding a Two Handed Weapon", statOrder = { 1985 }, level = 54, group = "SpellAddedChaosDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["AbyssSpellAddedChaosDamageWhileWieldingTwoHandedWeaponJewel4"] = { type = "Prefix", affix = "Malignant", "(9-11) to (13-15) Added Spell Chaos Damage while wielding a Two Handed Weapon", statOrder = { 1985 }, level = 65, group = "SpellAddedChaosDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["AbyssSpellAddedChaosDamageWhileWieldingTwoHandedWeaponJewel5"] = { type = "Prefix", affix = "Vile", "(12-14) to (15-17) Added Spell Chaos Damage while wielding a Two Handed Weapon", statOrder = { 1985 }, level = 75, group = "SpellAddedChaosDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 350, 0, 125, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["AbyssSpellAddedChaosDamageWhileWieldingTwoHandedWeaponJewel6"] = { type = "Prefix", affix = "Malicious", "(15-17) to (20-24) Added Spell Chaos Damage while wielding a Two Handed Weapon", statOrder = { 1985 }, level = 84, group = "SpellAddedChaosDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 175, 0, 62, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["AbyssSpellAddedFireDamageWhileHoldingAShieldJewel1"] = { type = "Prefix", affix = "Heated", "(2-4) to (5-7) Added Spell Fire Damage while holding a Shield", statOrder = { 1990 }, level = 1, group = "SpellAddedFireDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["AbyssSpellAddedFireDamageWhileHoldingAShieldJewel2"] = { type = "Prefix", affix = "Flaming", "(7-9) to (11-13) Added Spell Fire Damage while holding a Shield", statOrder = { 1990 }, level = 39, group = "SpellAddedFireDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["AbyssSpellAddedFireDamageWhileHoldingAShieldJewel3"] = { type = "Prefix", affix = "Scorching", "(10-12) to (14-16) Added Spell Fire Damage while holding a Shield", statOrder = { 1990 }, level = 48, group = "SpellAddedFireDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["AbyssSpellAddedFireDamageWhileHoldingAShieldJewel4_"] = { type = "Prefix", affix = "Incinerating", "(13-15) to (17-21) Added Spell Fire Damage while holding a Shield", statOrder = { 1990 }, level = 58, group = "SpellAddedFireDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["AbyssSpellAddedFireDamageWhileHoldingAShieldJewel5"] = { type = "Prefix", affix = "Blasting", "(16-18) to (22-24) Added Spell Fire Damage while holding a Shield", statOrder = { 1990 }, level = 70, group = "SpellAddedFireDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 350, 0, 0, 125, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["AbyssSpellAddedFireDamageWhileHoldingAShieldJewel6__"] = { type = "Prefix", affix = "Cremating", "(19-25) to (26-34) Added Spell Fire Damage while holding a Shield", statOrder = { 1990 }, level = 82, group = "SpellAddedFireDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 175, 0, 0, 62, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["AbyssSpellAddedColdDamageWhileHoldingAShieldJewel1_"] = { type = "Prefix", affix = "Frosted", "(2-4) to (5-7) Added Spell Cold Damage while holding a Shield", statOrder = { 1987 }, level = 1, group = "SpellAddedColdDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["AbyssSpellAddedColdDamageWhileHoldingAShieldJewel2"] = { type = "Prefix", affix = "Freezing", "(7-9) to (11-13) Added Spell Cold Damage while holding a Shield", statOrder = { 1987 }, level = 39, group = "SpellAddedColdDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["AbyssSpellAddedColdDamageWhileHoldingAShieldJewel3"] = { type = "Prefix", affix = "Frozen", "(10-12) to (14-16) Added Spell Cold Damage while holding a Shield", statOrder = { 1987 }, level = 48, group = "SpellAddedColdDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["AbyssSpellAddedColdDamageWhileHoldingAShieldJewel4"] = { type = "Prefix", affix = "Glaciated", "(13-15) to (17-21) Added Spell Cold Damage while holding a Shield", statOrder = { 1987 }, level = 58, group = "SpellAddedColdDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["AbyssSpellAddedColdDamageWhileHoldingAShieldJewel5_"] = { type = "Prefix", affix = "Polar", "(16-18) to (22-24) Added Spell Cold Damage while holding a Shield", statOrder = { 1987 }, level = 70, group = "SpellAddedColdDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 350, 0, 0, 125, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["AbyssSpellAddedColdDamageWhileHoldingAShieldJewel6"] = { type = "Prefix", affix = "Entombing", "(19-25) to (26-34) Added Spell Cold Damage while holding a Shield", statOrder = { 1987 }, level = 82, group = "SpellAddedColdDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 175, 0, 0, 62, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["AbyssSpellAddedLightningDamageWhileHoldingAShieldJewel1"] = { type = "Prefix", affix = "Humming", "1 to (6-10) Added Spell Lightning Damage while holding a Shield", statOrder = { 1993 }, level = 1, group = "SpellAddedLightningDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["AbyssSpellAddedLightningDamageWhileHoldingAShieldJewel2"] = { type = "Prefix", affix = "Sparking", "(1-2) to (17-21) Added Spell Lightning Damage while holding a Shield", statOrder = { 1993 }, level = 39, group = "SpellAddedLightningDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["AbyssSpellAddedLightningDamageWhileHoldingAShieldJewel3"] = { type = "Prefix", affix = "Arcing", "(1-3) to (22-26) Added Spell Lightning Damage while holding a Shield", statOrder = { 1993 }, level = 48, group = "SpellAddedLightningDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["AbyssSpellAddedLightningDamageWhileHoldingAShieldJewel4"] = { type = "Prefix", affix = "Shocking", "(1-4) to (29-33) Added Spell Lightning Damage while holding a Shield", statOrder = { 1993 }, level = 58, group = "SpellAddedLightningDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["AbyssSpellAddedLightningDamageWhileHoldingAShieldJewel5"] = { type = "Prefix", affix = "Discharging", "(1-5) to (34-36) Added Spell Lightning Damage while holding a Shield", statOrder = { 1993 }, level = 70, group = "SpellAddedLightningDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 350, 0, 0, 125, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["AbyssSpellAddedLightningDamageWhileHoldingAShieldJewel6"] = { type = "Prefix", affix = "Electrocuting", "(1-6) to (43-51) Added Spell Lightning Damage while holding a Shield", statOrder = { 1993 }, level = 82, group = "SpellAddedLightningDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 175, 0, 0, 62, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["AbyssSpellAddedPhysicalDamageWhileHoldingAShieldJewel1"] = { type = "Prefix", affix = "Glinting", "(1-2) to (3-5) Added Spell Physical Damage while holding a Shield", statOrder = { 1996 }, level = 1, group = "SpellAddedPhysicalDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["AbyssSpellAddedPhysicalDamageWhileHoldingAShieldJewel2"] = { type = "Prefix", affix = "Gleaming", "(3-5) to (7-9) Added Spell Physical Damage while holding a Shield", statOrder = { 1996 }, level = 42, group = "SpellAddedPhysicalDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["AbyssSpellAddedPhysicalDamageWhileHoldingAShieldJewel3"] = { type = "Prefix", affix = "Annealed", "(6-8) to (10-12) Added Spell Physical Damage while holding a Shield", statOrder = { 1996 }, level = 54, group = "SpellAddedPhysicalDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["AbyssSpellAddedPhysicalDamageWhileHoldingAShieldJewel4"] = { type = "Prefix", affix = "Razor-sharp", "(9-11) to (13-15) Added Spell Physical Damage while holding a Shield", statOrder = { 1996 }, level = 63, group = "SpellAddedPhysicalDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["AbyssSpellAddedPhysicalDamageWhileHoldingAShieldJewel5"] = { type = "Prefix", affix = "Tempered", "(12-14) to (15-17) Added Spell Physical Damage while holding a Shield", statOrder = { 1996 }, level = 72, group = "SpellAddedPhysicalDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 350, 0, 0, 125, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["AbyssSpellAddedPhysicalDamageWhileHoldingAShieldJewel6"] = { type = "Prefix", affix = "Flaring", "(15-17) to (20-24) Added Spell Physical Damage while holding a Shield", statOrder = { 1996 }, level = 83, group = "SpellAddedPhysicalDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 175, 0, 0, 62, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["AbyssSpellAddedChaosDamageWhileHoldingAShieldJewel1"] = { type = "Prefix", affix = "Tainted", "(1-2) to (3-5) Added Spell Chaos Damage while holding a Shield", statOrder = { 1984 }, level = 1, group = "SpellAddedChaosDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["AbyssSpellAddedChaosDamageWhileHoldingAShieldJewel2"] = { type = "Prefix", affix = "Clouded", "(3-5) to (7-9) Added Spell Chaos Damage while holding a Shield", statOrder = { 1984 }, level = 42, group = "SpellAddedChaosDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["AbyssSpellAddedChaosDamageWhileHoldingAShieldJewel3__"] = { type = "Prefix", affix = "Darkened", "(6-8) to (10-12) Added Spell Chaos Damage while holding a Shield", statOrder = { 1984 }, level = 54, group = "SpellAddedChaosDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["AbyssSpellAddedChaosDamageWhileHoldingAShieldJewel4"] = { type = "Prefix", affix = "Malignant", "(9-11) to (13-15) Added Spell Chaos Damage while holding a Shield", statOrder = { 1984 }, level = 65, group = "SpellAddedChaosDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["AbyssSpellAddedChaosDamageWhileHoldingAShieldJewel5"] = { type = "Prefix", affix = "Vile", "(12-14) to (15-17) Added Spell Chaos Damage while holding a Shield", statOrder = { 1984 }, level = 75, group = "SpellAddedChaosDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 350, 0, 0, 125, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["AbyssSpellAddedChaosDamageWhileHoldingAShieldJewel6"] = { type = "Prefix", affix = "Malicious", "(15-17) to (20-24) Added Spell Chaos Damage while holding a Shield", statOrder = { 1984 }, level = 84, group = "SpellAddedChaosDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 175, 0, 0, 62, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["AbyssSpellAddedFireDamageJewel1"] = { type = "Suffix", affix = "of Coals", "Adds (6-8) to (9-11) Fire Damage to Spells", statOrder = { 1288 }, level = 30, group = "SpellAddedFireSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["AbyssSpellAddedFireDamageJewel2_"] = { type = "Suffix", affix = "of Cinders", "Adds (9-11) to (12-14) Fire Damage to Spells", statOrder = { 1288 }, level = 43, group = "SpellAddedFireSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["AbyssSpellAddedFireDamageJewel3"] = { type = "Suffix", affix = "of Flames", "Adds (12-14) to (15-19) Fire Damage to Spells", statOrder = { 1288 }, level = 55, group = "SpellAddedFireSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["AbyssSpellAddedFireDamageJewel4"] = { type = "Suffix", affix = "of Immolation", "Adds (15-17) to (20-23) Fire Damage to Spells", statOrder = { 1288 }, level = 66, group = "SpellAddedFireSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 350, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["AbyssSpellAddedFireDamageJewel5"] = { type = "Suffix", affix = "of Ashes", "Adds (19-23) to (24-32) Fire Damage to Spells", statOrder = { 1288 }, level = 77, group = "SpellAddedFireSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 175, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["AbyssSpellAddedColdDamageJewel1"] = { type = "Suffix", affix = "of Sleet", "Adds (6-8) to (9-11) Cold Damage to Spells", statOrder = { 1289 }, level = 30, group = "SpellAddedColdSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["AbyssSpellAddedColdDamageJewel2"] = { type = "Suffix", affix = "of Ice", "Adds (9-11) to (12-14) Cold Damage to Spells", statOrder = { 1289 }, level = 43, group = "SpellAddedColdSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["AbyssSpellAddedColdDamageJewel3"] = { type = "Suffix", affix = "of Rime", "Adds (12-14) to (15-19) Cold Damage to Spells", statOrder = { 1289 }, level = 55, group = "SpellAddedColdSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["AbyssSpellAddedColdDamageJewel4"] = { type = "Suffix", affix = "of Floe", "Adds (15-17) to (20-23) Cold Damage to Spells", statOrder = { 1289 }, level = 66, group = "SpellAddedColdSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 350, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["AbyssSpellAddedColdDamageJewel5"] = { type = "Suffix", affix = "of Glaciation", "Adds (19-23) to (24-32) Cold Damage to Spells", statOrder = { 1289 }, level = 77, group = "SpellAddedColdSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 175, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["AbyssSpellAddedLightningDamageJewel1__"] = { type = "Suffix", affix = "of Static", "Adds (1-2) to (15-19) Lightning Damage to Spells", statOrder = { 1290 }, level = 30, group = "SpellAddedLightningSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["AbyssSpellAddedLightningDamageJewel2"] = { type = "Suffix", affix = "of Electricity", "Adds (1-3) to (20-24) Lightning Damage to Spells", statOrder = { 1290 }, level = 43, group = "SpellAddedLightningSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["AbyssSpellAddedLightningDamageJewel3__"] = { type = "Suffix", affix = "of Voltage", "Adds (1-4) to (25-29) Lightning Damage to Spells", statOrder = { 1290 }, level = 55, group = "SpellAddedLightningSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["AbyssSpellAddedLightningDamageJewel4"] = { type = "Suffix", affix = "of Discharge", "Adds (1-5) to (30-32) Lightning Damage to Spells", statOrder = { 1290 }, level = 66, group = "SpellAddedLightningSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 350, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["AbyssSpellAddedLightningDamageJewel5_"] = { type = "Suffix", affix = "of Arcing", "Adds (1-6) to (37-45) Lightning Damage to Spells", statOrder = { 1290 }, level = 77, group = "SpellAddedLightningSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 175, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["AbyssSpellAddedPhysicalDamageJewel1"] = { type = "Suffix", affix = "of Heft", "Adds (3-4) to (6-7) Physical Damage to Spells", statOrder = { 1287 }, level = 32, group = "SpellAddedPhysicalSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["AbyssSpellAddedPhysicalDamageJewel2"] = { type = "Suffix", affix = "of Force", "Adds (5-7) to (8-10) Physical Damage to Spells", statOrder = { 1287 }, level = 45, group = "SpellAddedPhysicalSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["AbyssSpellAddedPhysicalDamageJewel3"] = { type = "Suffix", affix = "of Weight", "Adds (8-10) to (11-13) Physical Damage to Spells", statOrder = { 1287 }, level = 56, group = "SpellAddedPhysicalSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["AbyssSpellAddedPhysicalDamageJewel4"] = { type = "Suffix", affix = "of Impact", "Adds (11-13) to (14-16) Physical Damage to Spells", statOrder = { 1287 }, level = 65, group = "SpellAddedPhysicalSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 350, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["AbyssSpellAddedPhysicalDamageJewel5__"] = { type = "Suffix", affix = "of Collision", "Adds (14-16) to (18-22) Physical Damage to Spells", statOrder = { 1287 }, level = 78, group = "SpellAddedPhysicalSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 175, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["AbyssSpellAddedChaosDamageJewel1"] = { type = "Suffix", affix = "of Dishonour", "Adds (3-4) to (6-7) Chaos Damage to Spells", statOrder = { 1291 }, level = 33, group = "SpellAddedChaosSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["AbyssSpellAddedChaosDamageJewel2"] = { type = "Suffix", affix = "of Harm", "Adds (5-7) to (8-10) Chaos Damage to Spells", statOrder = { 1291 }, level = 48, group = "SpellAddedChaosSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["AbyssSpellAddedChaosDamageJewel3"] = { type = "Suffix", affix = "of Malevolence", "Adds (8-10) to (11-13) Chaos Damage to Spells", statOrder = { 1291 }, level = 57, group = "SpellAddedChaosSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["AbyssSpellAddedChaosDamageJewel4"] = { type = "Suffix", affix = "of Malice", "Adds (11-13) to (14-16) Chaos Damage to Spells", statOrder = { 1291 }, level = 68, group = "SpellAddedChaosSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 350, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["AbyssSpellAddedChaosDamageJewel5"] = { type = "Suffix", affix = "of Sin", "Adds (14-16) to (18-22) Chaos Damage to Spells", statOrder = { 1291 }, level = 79, group = "SpellAddedChaosSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 175, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["AbyssAddedPhysicalDamageWithWandsJewel1_"] = { type = "Prefix", affix = "Glinting", "2 to 3 Added Physical Damage with Wand Attacks", statOrder = { 1953 }, level = 1, group = "AddedPhysicalDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AbyssAddedPhysicalDamageWithWandsJewel2"] = { type = "Prefix", affix = "Gleaming", "3 to 4 Added Physical Damage with Wand Attacks", statOrder = { 1953 }, level = 42, group = "AddedPhysicalDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AbyssAddedPhysicalDamageWithWandsJewel3_"] = { type = "Prefix", affix = "Tempered", "4 to (5-6) Added Physical Damage with Wand Attacks", statOrder = { 1953 }, level = 64, group = "AddedPhysicalDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AbyssAddedPhysicalDamageWithWandsJewel4"] = { type = "Prefix", affix = "Flaring", "(5-6) to (7-8) Added Physical Damage with Wand Attacks", statOrder = { 1953 }, level = 77, group = "AddedPhysicalDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 1000, 0, 0, 150, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AbyssAddedPhysicalDamageWithWandsJewel5"] = { type = "Prefix", affix = "Acuminate", "(7-8) to (9-10) Added Physical Damage with Wand Attacks", statOrder = { 1953 }, level = 85, group = "AddedPhysicalDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 500, 0, 0, 75, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AbyssAddedPhysicalDamageWithDaggersJewel1"] = { type = "Prefix", affix = "Glinting", "2 to 3 Added Physical Damage with Dagger Attacks", statOrder = { 1949 }, level = 1, group = "AddedPhysicalDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AbyssAddedPhysicalDamageWithDaggersJewel2"] = { type = "Prefix", affix = "Gleaming", "3 to 4 Added Physical Damage with Dagger Attacks", statOrder = { 1949 }, level = 42, group = "AddedPhysicalDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AbyssAddedPhysicalDamageWithDaggersJewel3_"] = { type = "Prefix", affix = "Tempered", "4 to (5-6) Added Physical Damage with Dagger Attacks", statOrder = { 1949 }, level = 64, group = "AddedPhysicalDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AbyssAddedPhysicalDamageWithDaggersJewel4"] = { type = "Prefix", affix = "Flaring", "(5-6) to (7-8) Added Physical Damage with Dagger Attacks", statOrder = { 1949 }, level = 77, group = "AddedPhysicalDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AbyssAddedPhysicalDamageWithDaggersJewel5_"] = { type = "Prefix", affix = "Acuminate", "(7-8) to (9-10) Added Physical Damage with Dagger Attacks", statOrder = { 1949 }, level = 85, group = "AddedPhysicalDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AbyssAddedPhysicalDamageWithClawsJewel1"] = { type = "Prefix", affix = "Glinting", "2 to 3 Added Physical Damage with Claw Attacks", statOrder = { 1948 }, level = 1, group = "AddedPhysicalDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AbyssAddedPhysicalDamageWithClawsJewel2"] = { type = "Prefix", affix = "Gleaming", "3 to 4 Added Physical Damage with Claw Attacks", statOrder = { 1948 }, level = 42, group = "AddedPhysicalDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AbyssAddedPhysicalDamageWithClawsJewel3"] = { type = "Prefix", affix = "Tempered", "4 to (5-6) Added Physical Damage with Claw Attacks", statOrder = { 1948 }, level = 64, group = "AddedPhysicalDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AbyssAddedPhysicalDamageWithClawsJewel4"] = { type = "Prefix", affix = "Flaring", "(5-6) to (7-8) Added Physical Damage with Claw Attacks", statOrder = { 1948 }, level = 77, group = "AddedPhysicalDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AbyssAddedPhysicalDamageWithClawsJewel5"] = { type = "Prefix", affix = "Acuminate", "(7-8) to (9-10) Added Physical Damage with Claw Attacks", statOrder = { 1948 }, level = 85, group = "AddedPhysicalDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AbyssAddedPhysicalDamageWithSwordsJewel1"] = { type = "Prefix", affix = "Glinting", "2 to 3 Added Physical Damage with Sword Attacks", statOrder = { 1952 }, level = 1, group = "AddedPhysicalDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AbyssAddedPhysicalDamageWithSwordsJewel2"] = { type = "Prefix", affix = "Gleaming", "3 to 4 Added Physical Damage with Sword Attacks", statOrder = { 1952 }, level = 42, group = "AddedPhysicalDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AbyssAddedPhysicalDamageWithSwordsJewel3"] = { type = "Prefix", affix = "Tempered", "4 to (5-6) Added Physical Damage with Sword Attacks", statOrder = { 1952 }, level = 64, group = "AddedPhysicalDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AbyssAddedPhysicalDamageWithSwordsJewel4"] = { type = "Prefix", affix = "Flaring", "(5-6) to (7-8) Added Physical Damage with Sword Attacks", statOrder = { 1952 }, level = 77, group = "AddedPhysicalDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AbyssAddedPhysicalDamageWithSwordsJewel5"] = { type = "Prefix", affix = "Acuminate", "(7-8) to (9-10) Added Physical Damage with Sword Attacks", statOrder = { 1952 }, level = 85, group = "AddedPhysicalDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 125, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AbyssAddedPhysicalDamageWithAxesJewel1"] = { type = "Prefix", affix = "Glinting", "2 to 3 Added Physical Damage with Axe Attacks", statOrder = { 1946 }, level = 1, group = "AddedPhysicalDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AbyssAddedPhysicalDamageWithAxesJewel2"] = { type = "Prefix", affix = "Gleaming", "3 to 4 Added Physical Damage with Axe Attacks", statOrder = { 1946 }, level = 42, group = "AddedPhysicalDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AbyssAddedPhysicalDamageWithAxesJewel3"] = { type = "Prefix", affix = "Tempered", "4 to (5-6) Added Physical Damage with Axe Attacks", statOrder = { 1946 }, level = 64, group = "AddedPhysicalDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AbyssAddedPhysicalDamageWithAxesJewel4"] = { type = "Prefix", affix = "Flaring", "(5-6) to (7-8) Added Physical Damage with Axe Attacks", statOrder = { 1946 }, level = 77, group = "AddedPhysicalDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AbyssAddedPhysicalDamageWithAxesJewel5_"] = { type = "Prefix", affix = "Acuminate", "(7-8) to (9-10) Added Physical Damage with Axe Attacks", statOrder = { 1946 }, level = 85, group = "AddedPhysicalDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 125, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AbyssAddedPhysicalDamageWithMacesJewel1"] = { type = "Prefix", affix = "Glinting", "2 to 3 Added Physical Damage with Mace or Sceptre Attacks", statOrder = { 1950 }, level = 1, group = "AddedPhysicalDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AbyssAddedPhysicalDamageWithMacesJewel2"] = { type = "Prefix", affix = "Gleaming", "3 to 4 Added Physical Damage with Mace or Sceptre Attacks", statOrder = { 1950 }, level = 42, group = "AddedPhysicalDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AbyssAddedPhysicalDamageWithMacesJewel3"] = { type = "Prefix", affix = "Tempered", "4 to (5-6) Added Physical Damage with Mace or Sceptre Attacks", statOrder = { 1950 }, level = 64, group = "AddedPhysicalDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AbyssAddedPhysicalDamageWithMacesJewel4_"] = { type = "Prefix", affix = "Flaring", "(5-6) to (7-8) Added Physical Damage with Mace or Sceptre Attacks", statOrder = { 1950 }, level = 77, group = "AddedPhysicalDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AbyssAddedPhysicalDamageWithMacesJewel5"] = { type = "Prefix", affix = "Acuminate", "(7-8) to (9-10) Added Physical Damage with Mace or Sceptre Attacks", statOrder = { 1950 }, level = 85, group = "AddedPhysicalDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 125, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AbyssAddedPhysicalDamageWithStavesJewel1"] = { type = "Prefix", affix = "Glinting", "2 to 3 Added Physical Damage with Staff Attacks", statOrder = { 1951 }, level = 1, group = "AddedPhysicalDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AbyssAddedPhysicalDamageWithStavesJewel2"] = { type = "Prefix", affix = "Gleaming", "3 to 4 Added Physical Damage with Staff Attacks", statOrder = { 1951 }, level = 42, group = "AddedPhysicalDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AbyssAddedPhysicalDamageWithStavesJewel3_"] = { type = "Prefix", affix = "Tempered", "4 to (5-6) Added Physical Damage with Staff Attacks", statOrder = { 1951 }, level = 64, group = "AddedPhysicalDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AbyssAddedPhysicalDamageWithStavesJewel4"] = { type = "Prefix", affix = "Flaring", "(5-6) to (7-8) Added Physical Damage with Staff Attacks", statOrder = { 1951 }, level = 77, group = "AddedPhysicalDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AbyssAddedPhysicalDamageWithStavesJewel5_"] = { type = "Prefix", affix = "Acuminate", "(7-8) to (9-10) Added Physical Damage with Staff Attacks", statOrder = { 1951 }, level = 85, group = "AddedPhysicalDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AbyssAddedPhysicalDamageWithBowsJewel1"] = { type = "Prefix", affix = "Glinting", "2 to 3 Added Physical Damage with Bow Attacks", statOrder = { 1947 }, level = 1, group = "PhysicalDamageWithBowsJewel", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AbyssAddedPhysicalDamageWithBowsJewel2_"] = { type = "Prefix", affix = "Gleaming", "3 to 4 Added Physical Damage with Bow Attacks", statOrder = { 1947 }, level = 42, group = "PhysicalDamageWithBowsJewel", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AbyssAddedPhysicalDamageWithBowsJewel3"] = { type = "Prefix", affix = "Tempered", "4 to (5-6) Added Physical Damage with Bow Attacks", statOrder = { 1947 }, level = 64, group = "PhysicalDamageWithBowsJewel", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AbyssAddedPhysicalDamageWithBowsJewel4_"] = { type = "Prefix", affix = "Flaring", "(5-6) to (7-8) Added Physical Damage with Bow Attacks", statOrder = { 1947 }, level = 77, group = "PhysicalDamageWithBowsJewel", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AbyssAddedPhysicalDamageWithBowsJewel5"] = { type = "Prefix", affix = "Acuminate", "(7-8) to (9-10) Added Physical Damage with Bow Attacks", statOrder = { 1947 }, level = 85, group = "PhysicalDamageWithBowsJewel", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AbyssAddedLightningDamageWithWandsJewel1_"] = { type = "Prefix", affix = "Humming", "1 to (19-20) Added Lightning Damage with Wand Attacks", statOrder = { 1979 }, level = 1, group = "AddedLightningDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithWandsJewel2"] = { type = "Prefix", affix = "Sparking", "(1-2) to (23-24) Added Lightning Damage with Wand Attacks", statOrder = { 1979 }, level = 37, group = "AddedLightningDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithWandsJewel3"] = { type = "Prefix", affix = "Arcing", "(1-3) to (28-30) Added Lightning Damage with Wand Attacks", statOrder = { 1979 }, level = 48, group = "AddedLightningDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithWandsJewel4"] = { type = "Prefix", affix = "Shocking", "(1-4) to (33-35) Added Lightning Damage with Wand Attacks", statOrder = { 1979 }, level = 60, group = "AddedLightningDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithWandsJewel5"] = { type = "Prefix", affix = "Discharging", "(2-4) to (40-43) Added Lightning Damage with Wand Attacks", statOrder = { 1979 }, level = 70, group = "AddedLightningDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 1175, 0, 0, 175, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithWandsJewel6"] = { type = "Prefix", affix = "Electrocuting", "(2-5) to (48-50) Added Lightning Damage with Wand Attacks", statOrder = { 1979 }, level = 82, group = "AddedLightningDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 553, 0, 0, 87, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithDaggersJewel1"] = { type = "Prefix", affix = "Humming", "1 to (19-20) Added Lightning Damage with Dagger Attacks", statOrder = { 1975 }, level = 1, group = "AddedLightningDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithDaggersJewel2_"] = { type = "Prefix", affix = "Sparking", "(1-2) to (23-24) Added Lightning Damage with Dagger Attacks", statOrder = { 1975 }, level = 37, group = "AddedLightningDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithDaggersJewel3"] = { type = "Prefix", affix = "Arcing", "(1-3) to (28-30) Added Lightning Damage with Dagger Attacks", statOrder = { 1975 }, level = 48, group = "AddedLightningDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithDaggersJewel4"] = { type = "Prefix", affix = "Shocking", "(1-4) to (33-35) Added Lightning Damage with Dagger Attacks", statOrder = { 1975 }, level = 60, group = "AddedLightningDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithDaggersJewel5"] = { type = "Prefix", affix = "Discharging", "(2-4) to (40-43) Added Lightning Damage with Dagger Attacks", statOrder = { 1975 }, level = 70, group = "AddedLightningDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithDaggersJewel6"] = { type = "Prefix", affix = "Electrocuting", "(2-5) to (48-50) Added Lightning Damage with Dagger Attacks", statOrder = { 1975 }, level = 82, group = "AddedLightningDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithClawsJewel1__"] = { type = "Prefix", affix = "Humming", "1 to (19-20) Added Lightning Damage with Claw Attacks", statOrder = { 1974 }, level = 1, group = "AddedLightningDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithClawsJewel2_"] = { type = "Prefix", affix = "Sparking", "(1-2) to (23-24) Added Lightning Damage with Claw Attacks", statOrder = { 1974 }, level = 37, group = "AddedLightningDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithClawsJewel3"] = { type = "Prefix", affix = "Arcing", "(1-3) to (28-30) Added Lightning Damage with Claw Attacks", statOrder = { 1974 }, level = 48, group = "AddedLightningDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithClawsJewel4"] = { type = "Prefix", affix = "Shocking", "(1-4) to (33-35) Added Lightning Damage with Claw Attacks", statOrder = { 1974 }, level = 60, group = "AddedLightningDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithClawsJewel5"] = { type = "Prefix", affix = "Discharging", "(2-4) to (40-43) Added Lightning Damage with Claw Attacks", statOrder = { 1974 }, level = 70, group = "AddedLightningDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithClawsJewel6"] = { type = "Prefix", affix = "Electrocuting", "(2-5) to (48-50) Added Lightning Damage with Claw Attacks", statOrder = { 1974 }, level = 82, group = "AddedLightningDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithBowsJewel1"] = { type = "Prefix", affix = "Humming", "1 to (19-20) Added Lightning Damage with Bow Attacks", statOrder = { 1973 }, level = 1, group = "AddedLightningDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithBowsJewel2_"] = { type = "Prefix", affix = "Sparking", "(1-2) to (23-24) Added Lightning Damage with Bow Attacks", statOrder = { 1973 }, level = 37, group = "AddedLightningDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithBowsJewel3"] = { type = "Prefix", affix = "Arcing", "(1-3) to (28-30) Added Lightning Damage with Bow Attacks", statOrder = { 1973 }, level = 48, group = "AddedLightningDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithBowsJewel4"] = { type = "Prefix", affix = "Shocking", "(1-4) to (33-35) Added Lightning Damage with Bow Attacks", statOrder = { 1973 }, level = 60, group = "AddedLightningDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithBowsJewel5"] = { type = "Prefix", affix = "Discharging", "(2-4) to (40-43) Added Lightning Damage with Bow Attacks", statOrder = { 1973 }, level = 70, group = "AddedLightningDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 1250, 0, 0, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithBowsJewel6"] = { type = "Prefix", affix = "Electrocuting", "(2-5) to (48-50) Added Lightning Damage with Bow Attacks", statOrder = { 1973 }, level = 82, group = "AddedLightningDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 625, 0, 0, 175, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithSwordsJewel1"] = { type = "Prefix", affix = "Humming", "1 to (19-20) Added Lightning Damage with Sword Attacks", statOrder = { 1978 }, level = 1, group = "AddedLightningDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithSwordsJewel2__"] = { type = "Prefix", affix = "Sparking", "(1-2) to (23-24) Added Lightning Damage with Sword Attacks", statOrder = { 1978 }, level = 37, group = "AddedLightningDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithSwordsJewel3"] = { type = "Prefix", affix = "Arcing", "(1-3) to (28-30) Added Lightning Damage with Sword Attacks", statOrder = { 1978 }, level = 48, group = "AddedLightningDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithSwordsJewel4_"] = { type = "Prefix", affix = "Shocking", "(1-4) to (33-35) Added Lightning Damage with Sword Attacks", statOrder = { 1978 }, level = 60, group = "AddedLightningDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithSwordsJewel5_"] = { type = "Prefix", affix = "Discharging", "(2-4) to (40-43) Added Lightning Damage with Sword Attacks", statOrder = { 1978 }, level = 70, group = "AddedLightningDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithSwordsJewel6"] = { type = "Prefix", affix = "Electrocuting", "(2-5) to (48-50) Added Lightning Damage with Sword Attacks", statOrder = { 1978 }, level = 82, group = "AddedLightningDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithAxesJewel1"] = { type = "Prefix", affix = "Humming", "1 to (19-20) Added Lightning Damage with Axe Attacks", statOrder = { 1972 }, level = 1, group = "AddedLightningDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithAxesJewel2"] = { type = "Prefix", affix = "Sparking", "(1-2) to (23-24) Added Lightning Damage with Axe Attacks", statOrder = { 1972 }, level = 37, group = "AddedLightningDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithAxesJewel3_"] = { type = "Prefix", affix = "Arcing", "(1-3) to (28-30) Added Lightning Damage with Axe Attacks", statOrder = { 1972 }, level = 48, group = "AddedLightningDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithAxesJewel4"] = { type = "Prefix", affix = "Shocking", "(1-4) to (33-35) Added Lightning Damage with Axe Attacks", statOrder = { 1972 }, level = 60, group = "AddedLightningDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithAxesJewel5"] = { type = "Prefix", affix = "Discharging", "(2-4) to (40-43) Added Lightning Damage with Axe Attacks", statOrder = { 1972 }, level = 70, group = "AddedLightningDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithAxesJewel6"] = { type = "Prefix", affix = "Electrocuting", "(2-5) to (48-50) Added Lightning Damage with Axe Attacks", statOrder = { 1972 }, level = 82, group = "AddedLightningDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithMacesJewel1"] = { type = "Prefix", affix = "Humming", "1 to (19-20) Added Lightning Damage with Mace or Sceptre Attacks", statOrder = { 1976 }, level = 1, group = "AddedLightningDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithMacesJewel2"] = { type = "Prefix", affix = "Sparking", "(1-2) to (23-24) Added Lightning Damage with Mace or Sceptre Attacks", statOrder = { 1976 }, level = 37, group = "AddedLightningDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithMacesJewel3"] = { type = "Prefix", affix = "Arcing", "(1-3) to (28-30) Added Lightning Damage with Mace or Sceptre Attacks", statOrder = { 1976 }, level = 48, group = "AddedLightningDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithMacesJewel4_"] = { type = "Prefix", affix = "Shocking", "(1-4) to (33-35) Added Lightning Damage with Mace or Sceptre Attacks", statOrder = { 1976 }, level = 60, group = "AddedLightningDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithMacesJewel5"] = { type = "Prefix", affix = "Discharging", "(2-4) to (40-43) Added Lightning Damage with Mace or Sceptre Attacks", statOrder = { 1976 }, level = 70, group = "AddedLightningDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithMacesJewel6"] = { type = "Prefix", affix = "Electrocuting", "(2-5) to (48-50) Added Lightning Damage with Mace or Sceptre Attacks", statOrder = { 1976 }, level = 82, group = "AddedLightningDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithStavesJewel1"] = { type = "Prefix", affix = "Humming", "1 to (19-20) Added Lightning Damage with Staff Attacks", statOrder = { 1977 }, level = 1, group = "AddedLightningDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithStavesJewel2"] = { type = "Prefix", affix = "Sparking", "(1-2) to (23-24) Added Lightning Damage with Staff Attacks", statOrder = { 1977 }, level = 37, group = "AddedLightningDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithStavesJewel3"] = { type = "Prefix", affix = "Arcing", "(1-3) to (28-30) Added Lightning Damage with Staff Attacks", statOrder = { 1977 }, level = 48, group = "AddedLightningDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithStavesJewel4"] = { type = "Prefix", affix = "Shocking", "(1-4) to (33-35) Added Lightning Damage with Staff Attacks", statOrder = { 1977 }, level = 60, group = "AddedLightningDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithStavesJewel5"] = { type = "Prefix", affix = "Discharging", "(2-4) to (40-43) Added Lightning Damage with Staff Attacks", statOrder = { 1977 }, level = 70, group = "AddedLightningDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithStavesJewel6"] = { type = "Prefix", affix = "Electrocuting", "(2-5) to (48-50) Added Lightning Damage with Staff Attacks", statOrder = { 1977 }, level = 82, group = "AddedLightningDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedFireDamageWithWandsJewel1"] = { type = "Prefix", affix = "Heated", "(5-6) to (11-12) Added Fire Damage with Wand Attacks", statOrder = { 1963 }, level = 1, group = "AddedFireDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithWandsJewel2"] = { type = "Prefix", affix = "Flaming", "(7-8) to (13-15) Added Fire Damage with Wand Attacks", statOrder = { 1963 }, level = 40, group = "AddedFireDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithWandsJewel3"] = { type = "Prefix", affix = "Scorching", "(9-11) to (16-19) Added Fire Damage with Wand Attacks", statOrder = { 1963 }, level = 51, group = "AddedFireDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithWandsJewel4"] = { type = "Prefix", affix = "Incinerating", "(12-13) to (20-22) Added Fire Damage with Wand Attacks", statOrder = { 1963 }, level = 62, group = "AddedFireDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithWandsJewel5__"] = { type = "Prefix", affix = "Blasting", "(14-15) to (23-26) Added Fire Damage with Wand Attacks", statOrder = { 1963 }, level = 72, group = "AddedFireDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 1175, 0, 0, 175, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithWandsJewel6"] = { type = "Prefix", affix = "Cremating", "(16-18) to (27-32) Added Fire Damage with Wand Attacks", statOrder = { 1963 }, level = 84, group = "AddedFireDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 553, 0, 0, 87, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithDaggersJewel1"] = { type = "Prefix", affix = "Heated", "(5-6) to (11-12) Added Fire Damage with Dagger Attacks", statOrder = { 1959 }, level = 1, group = "AddedFireDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithDaggersJewel2"] = { type = "Prefix", affix = "Flaming", "(7-8) to (13-15) Added Fire Damage with Dagger Attacks", statOrder = { 1959 }, level = 40, group = "AddedFireDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithDaggersJewel3"] = { type = "Prefix", affix = "Scorching", "(9-11) to (16-19) Added Fire Damage with Dagger Attacks", statOrder = { 1959 }, level = 51, group = "AddedFireDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithDaggersJewel4"] = { type = "Prefix", affix = "Incinerating", "(12-13) to (20-22) Added Fire Damage with Dagger Attacks", statOrder = { 1959 }, level = 62, group = "AddedFireDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithDaggersJewel5"] = { type = "Prefix", affix = "Blasting", "(14-15) to (23-26) Added Fire Damage with Dagger Attacks", statOrder = { 1959 }, level = 72, group = "AddedFireDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithDaggersJewel6"] = { type = "Prefix", affix = "Cremating", "(16-18) to (27-32) Added Fire Damage with Dagger Attacks", statOrder = { 1959 }, level = 84, group = "AddedFireDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithClawsJewel1"] = { type = "Prefix", affix = "Heated", "(5-6) to (11-12) Added Fire Damage with Claw Attacks", statOrder = { 1958 }, level = 1, group = "AddedFireDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithClawsJewel2"] = { type = "Prefix", affix = "Flaming", "(7-8) to (13-15) Added Fire Damage with Claw Attacks", statOrder = { 1958 }, level = 40, group = "AddedFireDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithClawsJewel3"] = { type = "Prefix", affix = "Scorching", "(9-11) to (16-19) Added Fire Damage with Claw Attacks", statOrder = { 1958 }, level = 51, group = "AddedFireDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithClawsJewel4"] = { type = "Prefix", affix = "Incinerating", "(12-13) to (20-22) Added Fire Damage with Claw Attacks", statOrder = { 1958 }, level = 62, group = "AddedFireDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithClawsJewel5"] = { type = "Prefix", affix = "Blasting", "(14-15) to (23-26) Added Fire Damage with Claw Attacks", statOrder = { 1958 }, level = 72, group = "AddedFireDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithClawsJewel6"] = { type = "Prefix", affix = "Cremating", "(16-18) to (27-32) Added Fire Damage with Claw Attacks", statOrder = { 1958 }, level = 84, group = "AddedFireDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithBowsJewel1"] = { type = "Prefix", affix = "Heated", "(5-6) to (11-12) Added Fire Damage with Bow Attacks", statOrder = { 1957 }, level = 1, group = "FireDamageWithBowsJewel", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithBowsJewel2"] = { type = "Prefix", affix = "Flaming", "(7-8) to (13-15) Added Fire Damage with Bow Attacks", statOrder = { 1957 }, level = 40, group = "FireDamageWithBowsJewel", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithBowsJewel3_"] = { type = "Prefix", affix = "Scorching", "(9-11) to (16-19) Added Fire Damage with Bow Attacks", statOrder = { 1957 }, level = 51, group = "FireDamageWithBowsJewel", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithBowsJewel4"] = { type = "Prefix", affix = "Incinerating", "(12-13) to (20-22) Added Fire Damage with Bow Attacks", statOrder = { 1957 }, level = 62, group = "FireDamageWithBowsJewel", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithBowsJewel5_"] = { type = "Prefix", affix = "Blasting", "(14-15) to (23-26) Added Fire Damage with Bow Attacks", statOrder = { 1957 }, level = 72, group = "FireDamageWithBowsJewel", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 1250, 0, 0, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithBowsJewel6_"] = { type = "Prefix", affix = "Cremating", "(16-18) to (27-32) Added Fire Damage with Bow Attacks", statOrder = { 1957 }, level = 84, group = "FireDamageWithBowsJewel", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 500, 0, 0, 175, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithSwordsJewel1"] = { type = "Prefix", affix = "Heated", "(5-6) to (11-12) Added Fire Damage with Sword Attacks", statOrder = { 1962 }, level = 1, group = "AddedFireDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithSwordsJewel2"] = { type = "Prefix", affix = "Flaming", "(7-8) to (13-15) Added Fire Damage with Sword Attacks", statOrder = { 1962 }, level = 40, group = "AddedFireDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithSwordsJewel3___"] = { type = "Prefix", affix = "Scorching", "(9-11) to (16-19) Added Fire Damage with Sword Attacks", statOrder = { 1962 }, level = 51, group = "AddedFireDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithSwordsJewel4"] = { type = "Prefix", affix = "Incinerating", "(12-13) to (20-22) Added Fire Damage with Sword Attacks", statOrder = { 1962 }, level = 62, group = "AddedFireDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithSwordsJewel5_"] = { type = "Prefix", affix = "Blasting", "(14-15) to (23-26) Added Fire Damage with Sword Attacks", statOrder = { 1962 }, level = 72, group = "AddedFireDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithSwordsJewel6"] = { type = "Prefix", affix = "Cremating", "(16-18) to (27-32) Added Fire Damage with Sword Attacks", statOrder = { 1962 }, level = 84, group = "AddedFireDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithAxesJewel1_"] = { type = "Prefix", affix = "Heated", "(5-6) to (11-12) Added Fire Damage with Axe Attacks", statOrder = { 1956 }, level = 1, group = "AddedFireDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithAxesJewel2"] = { type = "Prefix", affix = "Flaming", "(7-8) to (13-15) Added Fire Damage with Axe Attacks", statOrder = { 1956 }, level = 40, group = "AddedFireDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithAxesJewel3"] = { type = "Prefix", affix = "Scorching", "(9-11) to (16-19) Added Fire Damage with Axe Attacks", statOrder = { 1956 }, level = 51, group = "AddedFireDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithAxesJewel4"] = { type = "Prefix", affix = "Incinerating", "(12-13) to (20-22) Added Fire Damage with Axe Attacks", statOrder = { 1956 }, level = 62, group = "AddedFireDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithAxesJewel5"] = { type = "Prefix", affix = "Blasting", "(14-15) to (23-26) Added Fire Damage with Axe Attacks", statOrder = { 1956 }, level = 72, group = "AddedFireDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithAxesJewel6_"] = { type = "Prefix", affix = "Cremating", "(16-18) to (27-32) Added Fire Damage with Axe Attacks", statOrder = { 1956 }, level = 84, group = "AddedFireDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithMacesJewel1"] = { type = "Prefix", affix = "Heated", "(5-6) to (11-12) Added Fire Damage with Mace or Sceptre Attacks", statOrder = { 1960 }, level = 1, group = "AddedFireDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithMacesJewel2_"] = { type = "Prefix", affix = "Flaming", "(7-8) to (13-15) Added Fire Damage with Mace or Sceptre Attacks", statOrder = { 1960 }, level = 40, group = "AddedFireDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithMacesJewel3"] = { type = "Prefix", affix = "Scorching", "(9-11) to (16-19) Added Fire Damage with Mace or Sceptre Attacks", statOrder = { 1960 }, level = 51, group = "AddedFireDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithMacesJewel4"] = { type = "Prefix", affix = "Incinerating", "(12-13) to (20-22) Added Fire Damage with Mace or Sceptre Attacks", statOrder = { 1960 }, level = 62, group = "AddedFireDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithMacesJewel5_"] = { type = "Prefix", affix = "Blasting", "(14-15) to (23-26) Added Fire Damage with Mace or Sceptre Attacks", statOrder = { 1960 }, level = 72, group = "AddedFireDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithMacesJewel6"] = { type = "Prefix", affix = "Cremating", "(16-18) to (27-32) Added Fire Damage with Mace or Sceptre Attacks", statOrder = { 1960 }, level = 84, group = "AddedFireDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithStavesJewel1_"] = { type = "Prefix", affix = "Heated", "(5-6) to (11-12) Added Fire Damage with Staff Attacks", statOrder = { 1961 }, level = 1, group = "AddedFireDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithStavesJewel2"] = { type = "Prefix", affix = "Flaming", "(7-8) to (13-15) Added Fire Damage with Staff Attacks", statOrder = { 1961 }, level = 40, group = "AddedFireDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithStavesJewel3__"] = { type = "Prefix", affix = "Scorching", "(9-11) to (16-19) Added Fire Damage with Staff Attacks", statOrder = { 1961 }, level = 51, group = "AddedFireDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithStavesJewel4"] = { type = "Prefix", affix = "Incinerating", "(12-13) to (20-22) Added Fire Damage with Staff Attacks", statOrder = { 1961 }, level = 62, group = "AddedFireDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithStavesJewel5__"] = { type = "Prefix", affix = "Blasting", "(14-15) to (23-26) Added Fire Damage with Staff Attacks", statOrder = { 1961 }, level = 72, group = "AddedFireDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithStavesJewel6"] = { type = "Prefix", affix = "Cremating", "(16-18) to (27-32) Added Fire Damage with Staff Attacks", statOrder = { 1961 }, level = 84, group = "AddedFireDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedColdDamageWithWandsJewel1__"] = { type = "Prefix", affix = "Frosted", "(4-5) to (9-10) Added Cold Damage with Wand Attacks", statOrder = { 1971 }, level = 1, group = "AddedColdDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithWandsJewel2"] = { type = "Prefix", affix = "Freezing", "(6-7) to (11-13) Added Cold Damage with Wand Attacks", statOrder = { 1971 }, level = 38, group = "AddedColdDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithWandsJewel3_"] = { type = "Prefix", affix = "Frozen", "(8-9) to (14-16) Added Cold Damage with Wand Attacks", statOrder = { 1971 }, level = 47, group = "AddedColdDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithWandsJewel4"] = { type = "Prefix", affix = "Glaciated", "(10-11) to (17-20) Added Cold Damage with Wand Attacks", statOrder = { 1971 }, level = 59, group = "AddedColdDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithWandsJewel5"] = { type = "Prefix", affix = "Polar", "(12-13) to (21-24) Added Cold Damage with Wand Attacks", statOrder = { 1971 }, level = 68, group = "AddedColdDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 1175, 0, 0, 175, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithWandsJewel6"] = { type = "Prefix", affix = "Entombing", "(14-15) to (25-28) Added Cold Damage with Wand Attacks", statOrder = { 1971 }, level = 83, group = "AddedColdDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 553, 0, 0, 87, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithDaggersJewel1"] = { type = "Prefix", affix = "Frosted", "(4-5) to (9-10) Added Cold Damage with Dagger Attacks", statOrder = { 1967 }, level = 1, group = "AddedColdDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithDaggersJewel2"] = { type = "Prefix", affix = "Freezing", "(6-7) to (11-13) Added Cold Damage with Dagger Attacks", statOrder = { 1967 }, level = 38, group = "AddedColdDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithDaggersJewel3"] = { type = "Prefix", affix = "Frozen", "(8-9) to (14-16) Added Cold Damage with Dagger Attacks", statOrder = { 1967 }, level = 47, group = "AddedColdDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithDaggersJewel4"] = { type = "Prefix", affix = "Glaciated", "(10-11) to (17-20) Added Cold Damage with Dagger Attacks", statOrder = { 1967 }, level = 59, group = "AddedColdDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithDaggersJewel5"] = { type = "Prefix", affix = "Polar", "(12-13) to (21-24) Added Cold Damage with Dagger Attacks", statOrder = { 1967 }, level = 68, group = "AddedColdDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithDaggersJewel6"] = { type = "Prefix", affix = "Entombing", "(14-15) to (25-28) Added Cold Damage with Dagger Attacks", statOrder = { 1967 }, level = 83, group = "AddedColdDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithClawsJewel1"] = { type = "Prefix", affix = "Frosted", "(4-5) to (9-10) Added Cold Damage with Claw Attacks", statOrder = { 1966 }, level = 1, group = "AddedColdDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithClawsJewel2"] = { type = "Prefix", affix = "Freezing", "(6-7) to (11-13) Added Cold Damage with Claw Attacks", statOrder = { 1966 }, level = 38, group = "AddedColdDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithClawsJewel3"] = { type = "Prefix", affix = "Frozen", "(8-9) to (14-16) Added Cold Damage with Claw Attacks", statOrder = { 1966 }, level = 47, group = "AddedColdDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithClawsJewel4"] = { type = "Prefix", affix = "Glaciated", "(10-11) to (17-20) Added Cold Damage with Claw Attacks", statOrder = { 1966 }, level = 59, group = "AddedColdDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithClawsJewel5"] = { type = "Prefix", affix = "Polar", "(12-13) to (21-24) Added Cold Damage with Claw Attacks", statOrder = { 1966 }, level = 68, group = "AddedColdDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithClawsJewel6"] = { type = "Prefix", affix = "Entombing", "(14-15) to (25-28) Added Cold Damage with Claw Attacks", statOrder = { 1966 }, level = 83, group = "AddedColdDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithBowsJewel1"] = { type = "Prefix", affix = "Frosted", "(4-5) to (9-10) Added Cold Damage with Bow Attacks", statOrder = { 1965 }, level = 1, group = "AddedColdDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithBowsJewel2"] = { type = "Prefix", affix = "Freezing", "(6-7) to (11-13) Added Cold Damage with Bow Attacks", statOrder = { 1965 }, level = 38, group = "AddedColdDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithBowsJewel3_"] = { type = "Prefix", affix = "Frozen", "(8-9) to (14-16) Added Cold Damage with Bow Attacks", statOrder = { 1965 }, level = 47, group = "AddedColdDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithBowsJewel4"] = { type = "Prefix", affix = "Glaciated", "(10-11) to (17-20) Added Cold Damage with Bow Attacks", statOrder = { 1965 }, level = 59, group = "AddedColdDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithBowsJewel5"] = { type = "Prefix", affix = "Polar", "(12-13) to (21-24) Added Cold Damage with Bow Attacks", statOrder = { 1965 }, level = 68, group = "AddedColdDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 1250, 0, 0, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithBowsJewel6"] = { type = "Prefix", affix = "Entombing", "(14-15) to (25-28) Added Cold Damage with Bow Attacks", statOrder = { 1965 }, level = 83, group = "AddedColdDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 500, 0, 0, 175, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithSwordsJewel1"] = { type = "Prefix", affix = "Frosted", "(4-5) to (9-10) Added Cold Damage with Sword Attacks", statOrder = { 1970 }, level = 1, group = "AddedColdDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithSwordsJewel2"] = { type = "Prefix", affix = "Freezing", "(6-7) to (11-13) Added Cold Damage with Sword Attacks", statOrder = { 1970 }, level = 38, group = "AddedColdDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithSwordsJewel3"] = { type = "Prefix", affix = "Frozen", "(8-9) to (14-16) Added Cold Damage with Sword Attacks", statOrder = { 1970 }, level = 47, group = "AddedColdDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithSwordsJewel4"] = { type = "Prefix", affix = "Glaciated", "(10-11) to (17-20) Added Cold Damage with Sword Attacks", statOrder = { 1970 }, level = 59, group = "AddedColdDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithSwordsJewel5"] = { type = "Prefix", affix = "Polar", "(12-13) to (21-24) Added Cold Damage with Sword Attacks", statOrder = { 1970 }, level = 68, group = "AddedColdDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithSwordsJewel6"] = { type = "Prefix", affix = "Entombing", "(14-15) to (25-28) Added Cold Damage with Sword Attacks", statOrder = { 1970 }, level = 83, group = "AddedColdDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithAxesJewel1"] = { type = "Prefix", affix = "Frosted", "(4-5) to (9-10) Added Cold Damage with Axe Attacks", statOrder = { 1964 }, level = 1, group = "AddedColdDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithAxesJewel2"] = { type = "Prefix", affix = "Freezing", "(6-7) to (11-13) Added Cold Damage with Axe Attacks", statOrder = { 1964 }, level = 38, group = "AddedColdDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithAxesJewel3"] = { type = "Prefix", affix = "Frozen", "(8-9) to (14-16) Added Cold Damage with Axe Attacks", statOrder = { 1964 }, level = 47, group = "AddedColdDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithAxesJewel4"] = { type = "Prefix", affix = "Glaciated", "(10-11) to (17-20) Added Cold Damage with Axe Attacks", statOrder = { 1964 }, level = 59, group = "AddedColdDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithAxesJewel5"] = { type = "Prefix", affix = "Polar", "(12-13) to (21-24) Added Cold Damage with Axe Attacks", statOrder = { 1964 }, level = 68, group = "AddedColdDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithAxesJewel6"] = { type = "Prefix", affix = "Entombing", "(14-15) to (25-28) Added Cold Damage with Axe Attacks", statOrder = { 1964 }, level = 83, group = "AddedColdDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithMacesJewel1"] = { type = "Prefix", affix = "Frosted", "(4-5) to (9-10) Added Cold Damage with Mace or Sceptre Attacks", statOrder = { 1968 }, level = 1, group = "AddedColdDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithMacesJewel2"] = { type = "Prefix", affix = "Freezing", "(6-7) to (11-13) Added Cold Damage with Mace or Sceptre Attacks", statOrder = { 1968 }, level = 38, group = "AddedColdDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithMacesJewel3"] = { type = "Prefix", affix = "Frozen", "(8-9) to (14-16) Added Cold Damage with Mace or Sceptre Attacks", statOrder = { 1968 }, level = 47, group = "AddedColdDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithMacesJewel4"] = { type = "Prefix", affix = "Glaciated", "(10-11) to (17-20) Added Cold Damage with Mace or Sceptre Attacks", statOrder = { 1968 }, level = 59, group = "AddedColdDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithMacesJewel5_"] = { type = "Prefix", affix = "Polar", "(12-13) to (21-24) Added Cold Damage with Mace or Sceptre Attacks", statOrder = { 1968 }, level = 68, group = "AddedColdDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithMacesJewel6"] = { type = "Prefix", affix = "Entombing", "(14-15) to (25-28) Added Cold Damage with Mace or Sceptre Attacks", statOrder = { 1968 }, level = 83, group = "AddedColdDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithStavesJewel1"] = { type = "Prefix", affix = "Frosted", "(4-5) to (9-10) Added Cold Damage with Staff Attacks", statOrder = { 1969 }, level = 1, group = "AddedColdDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithStavesJewel2_"] = { type = "Prefix", affix = "Freezing", "(6-7) to (11-13) Added Cold Damage with Staff Attacks", statOrder = { 1969 }, level = 38, group = "AddedColdDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithStavesJewel3_"] = { type = "Prefix", affix = "Frozen", "(8-9) to (14-16) Added Cold Damage with Staff Attacks", statOrder = { 1969 }, level = 47, group = "AddedColdDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithStavesJewel4"] = { type = "Prefix", affix = "Glaciated", "(10-11) to (17-20) Added Cold Damage with Staff Attacks", statOrder = { 1969 }, level = 59, group = "AddedColdDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithStavesJewel5"] = { type = "Prefix", affix = "Polar", "(12-13) to (21-24) Added Cold Damage with Staff Attacks", statOrder = { 1969 }, level = 68, group = "AddedColdDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithStavesJewel6"] = { type = "Prefix", affix = "Entombing", "(14-15) to (25-28) Added Cold Damage with Staff Attacks", statOrder = { 1969 }, level = 83, group = "AddedColdDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedChaosDamageWithDaggersJewel1"] = { type = "Prefix", affix = "Tainted", "(4-5) to (9-10) Added Chaos Damage with Dagger Attacks", statOrder = { 1982 }, level = 1, group = "AddedChaosDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["AbyssAddedChaosDamageWithDaggersJewel2_"] = { type = "Prefix", affix = "Clouded", "(6-7) to (11-13) Added Chaos Damage with Dagger Attacks", statOrder = { 1982 }, level = 42, group = "AddedChaosDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["AbyssAddedChaosDamageWithDaggersJewel3__"] = { type = "Prefix", affix = "Darkened", "(8-9) to (14-16) Added Chaos Damage with Dagger Attacks", statOrder = { 1982 }, level = 64, group = "AddedChaosDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["AbyssAddedChaosDamageWithDaggersJewel4"] = { type = "Prefix", affix = "Malignant", "(10-11) to (17-20) Added Chaos Damage with Dagger Attacks", statOrder = { 1982 }, level = 77, group = "AddedChaosDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["AbyssAddedChaosDamageWithDaggersJewel5"] = { type = "Prefix", affix = "Vile", "(12-13) to (21-24) Added Chaos Damage with Dagger Attacks", statOrder = { 1982 }, level = 85, group = "AddedChaosDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 250, 0, 0, 60, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["AbyssAddedChaosDamageWithBowsJewel1_"] = { type = "Prefix", affix = "Tainted", "(4-5) to (9-10) Added Chaos Damage with Bow Attacks", statOrder = { 1980 }, level = 1, group = "AddedChaosDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 1250, 0, 0, 350, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["AbyssAddedChaosDamageWithBowsJewel2"] = { type = "Prefix", affix = "Clouded", "(6-7) to (11-13) Added Chaos Damage with Bow Attacks", statOrder = { 1980 }, level = 42, group = "AddedChaosDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 1250, 0, 0, 350, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["AbyssAddedChaosDamageWithBowsJewel3"] = { type = "Prefix", affix = "Darkened", "(8-9) to (14-16) Added Chaos Damage with Bow Attacks", statOrder = { 1980 }, level = 64, group = "AddedChaosDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 1250, 0, 0, 350, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["AbyssAddedChaosDamageWithBowsJewel4"] = { type = "Prefix", affix = "Malignant", "(10-11) to (17-20) Added Chaos Damage with Bow Attacks", statOrder = { 1980 }, level = 77, group = "AddedChaosDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["AbyssAddedChaosDamageWithBowsJewel5"] = { type = "Prefix", affix = "Vile", "(12-13) to (21-24) Added Chaos Damage with Bow Attacks", statOrder = { 1980 }, level = 85, group = "AddedChaosDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 250, 0, 0, 60, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["AbyssAddedChaosDamageWithClawsJewel1"] = { type = "Prefix", affix = "Tainted", "(4-5) to (9-10) Added Chaos Damage with Claw Attacks", statOrder = { 1981 }, level = 1, group = "AddedChaosDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["AbyssAddedChaosDamageWithClawsJewel2"] = { type = "Prefix", affix = "Clouded", "(6-7) to (11-13) Added Chaos Damage with Claw Attacks", statOrder = { 1981 }, level = 42, group = "AddedChaosDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["AbyssAddedChaosDamageWithClawsJewel3_"] = { type = "Prefix", affix = "Darkened", "(8-9) to (14-16) Added Chaos Damage with Claw Attacks", statOrder = { 1981 }, level = 64, group = "AddedChaosDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["AbyssAddedChaosDamageWithClawsJewel4"] = { type = "Prefix", affix = "Malignant", "(10-11) to (17-20) Added Chaos Damage with Claw Attacks", statOrder = { 1981 }, level = 77, group = "AddedChaosDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["AbyssAddedChaosDamageWithClawsJewel5_"] = { type = "Prefix", affix = "Vile", "(12-13) to (21-24) Added Chaos Damage with Claw Attacks", statOrder = { 1981 }, level = 85, group = "AddedChaosDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 250, 0, 0, 60, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["AbyssAddedFireSuffixJewel1"] = { type = "Suffix", affix = "of Coals", "Adds (4-5) to (10-12) Fire Damage to Attacks", statOrder = { 1244 }, level = 35, group = "AddedFireSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireSuffixJewel2"] = { type = "Suffix", affix = "of Cinders", "Adds (6-7) to (13-16) Fire Damage to Attacks", statOrder = { 1244 }, level = 44, group = "AddedFireSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireSuffixJewel3"] = { type = "Suffix", affix = "of Flames", "Adds (8-9) to (17-20) Fire Damage to Attacks", statOrder = { 1244 }, level = 52, group = "AddedFireSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireSuffixJewel4_"] = { type = "Suffix", affix = "of Immolation", "Adds (10-12) to (21-24) Fire Damage to Attacks", statOrder = { 1244 }, level = 64, group = "AddedFireSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireSuffixJewel5"] = { type = "Suffix", affix = "of Ashes", "Adds (13-15) to (25-28) Fire Damage to Attacks", statOrder = { 1244 }, level = 76, group = "AddedFireSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 300, 300, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedColdSuffixJewel1"] = { type = "Suffix", affix = "of Sleet", "Adds (4-5) to (8-10) Cold Damage to Attacks", statOrder = { 1253 }, level = 36, group = "AddedColdSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdSuffixJewel2_"] = { type = "Suffix", affix = "of Ice", "Adds (6-7) to (11-13) Cold Damage to Attacks", statOrder = { 1253 }, level = 45, group = "AddedColdSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdSuffixJewel3"] = { type = "Suffix", affix = "of Rime", "Adds (8-9) to (14-17) Cold Damage to Attacks", statOrder = { 1253 }, level = 53, group = "AddedColdSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdSuffixJewel4"] = { type = "Suffix", affix = "of Floe", "Adds (10-11) to (18-21) Cold Damage to Attacks", statOrder = { 1253 }, level = 65, group = "AddedColdSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdSuffixJewel5_"] = { type = "Suffix", affix = "of Glaciation", "Adds (12-13) to (22-26) Cold Damage to Attacks", statOrder = { 1253 }, level = 77, group = "AddedColdSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 300, 300, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedLightningSuffixJewel1"] = { type = "Suffix", affix = "of Static", "Adds 1 to (19-20) Lightning Damage to Attacks", statOrder = { 1264 }, level = 35, group = "AddedLightningSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningSuffixJewel2"] = { type = "Suffix", affix = "of Electricity", "Adds (1-2) to (25-27) Lightning Damage to Attacks", statOrder = { 1264 }, level = 44, group = "AddedLightningSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningSuffixJewel3"] = { type = "Suffix", affix = "of Voltage", "Adds (1-3) to (29-32) Lightning Damage to Attacks", statOrder = { 1264 }, level = 52, group = "AddedLightningSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningSuffixJewel4"] = { type = "Suffix", affix = "of Discharge", "Adds (1-4) to (36-39) Lightning Damage to Attacks", statOrder = { 1264 }, level = 64, group = "AddedLightningSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningSuffixJewel5"] = { type = "Suffix", affix = "of Arcing", "Adds (1-4) to (43-48) Lightning Damage to Attacks", statOrder = { 1264 }, level = 76, group = "AddedLightningSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 300, 300, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedPhysicalSuffixJewel1"] = { type = "Suffix", affix = "of Weight", "Adds 1 to 3 Physical Damage to Attacks", statOrder = { 1151 }, level = 34, group = "AddedPhysicalSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AbyssAddedPhysicalSuffixJewel2"] = { type = "Suffix", affix = "of Impact", "Adds (2-3) to (4-5) Physical Damage to Attacks", statOrder = { 1151 }, level = 45, group = "AddedPhysicalSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AbyssAddedPhysicalSuffixJewel3"] = { type = "Suffix", affix = "of Collision", "Adds (4-5) to (6-7) Physical Damage to Attacks", statOrder = { 1151 }, level = 61, group = "AddedPhysicalSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AbyssAddedChaosSuffixJewel1"] = { type = "Suffix", affix = "of Malevolence", "Adds (6-7) to (11-13) Chaos Damage to Attacks", statOrder = { 1271 }, level = 36, group = "AddedChaosSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 750, 750, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["AbyssAddedChaosSuffixJewel2"] = { type = "Suffix", affix = "of Malice", "Adds (8-9) to (14-17) Chaos Damage to Attacks", statOrder = { 1271 }, level = 48, group = "AddedChaosSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 750, 750, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["AbyssAddedChaosSuffixJewel3"] = { type = "Suffix", affix = "of Sin", "Adds (10-11) to (18-21) Chaos Damage to Attacks", statOrder = { 1271 }, level = 64, group = "AddedChaosSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 375, 375, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["AbyssFlatMinionLifeRegenerationJewel1"] = { type = "Prefix", affix = "Fuelling", "Minions Regenerate (22-30) Life per second", statOrder = { 8852 }, level = 1, group = "FlatMinionLifeRegeneration", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life", "minion" }, }, - ["AbyssFlatMinionLifeRegenerationJewel2"] = { type = "Prefix", affix = "Lively", "Minions Regenerate (32-40) Life per second", statOrder = { 8852 }, level = 30, group = "FlatMinionLifeRegeneration", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life", "minion" }, }, - ["AbyssFlatMinionLifeRegenerationJewel3"] = { type = "Prefix", affix = "Exuberant", "Minions Regenerate (42-60) Life per second", statOrder = { 8852 }, level = 60, group = "FlatMinionLifeRegeneration", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life", "minion" }, }, - ["AbyssFlatEnergyShieldRegenerationJewel1"] = { type = "Prefix", affix = "Captivating", "Regenerate (9-12) Energy Shield per second", statOrder = { 6138 }, level = 1, group = "FlatEnergyShieldRegeneration", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 250, 250, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, }, - ["AbyssFlatEnergyShieldRegenerationJewel2"] = { type = "Prefix", affix = "Beautiful", "Regenerate (13-16) Energy Shield per second", statOrder = { 6138 }, level = 30, group = "FlatEnergyShieldRegeneration", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 250, 250, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, }, - ["AbyssFlatEnergyShieldRegenerationJewel3"] = { type = "Prefix", affix = "Breathtaking", "Regenerate (17-20) Energy Shield per second", statOrder = { 6138 }, level = 60, group = "FlatEnergyShieldRegeneration", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 250, 250, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, }, - ["AbyssFlatLifeRegenerationJewel1"] = { type = "Prefix", affix = "Youthful", "Regenerate (9-12) Life per second", statOrder = { 1456 }, level = 1, group = "LifeRegeneration", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 500, 250, 250, 0 }, modTags = { "flat_life_regen", "resource", "life" }, }, - ["AbyssFlatLifeRegenerationJewel2"] = { type = "Prefix", affix = "Spirited", "Regenerate (13-16) Life per second", statOrder = { 1456 }, level = 40, group = "LifeRegeneration", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 500, 250, 250, 0 }, modTags = { "flat_life_regen", "resource", "life" }, }, - ["AbyssFlatLifeRegenerationJewel3_"] = { type = "Prefix", affix = "Vivacious", "Regenerate (17-20) Life per second", statOrder = { 1456 }, level = 80, group = "LifeRegeneration", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 500, 250, 250, 0 }, modTags = { "flat_life_regen", "resource", "life" }, }, - ["AbyssFlatManaShieldRegenerationJewel1"] = { type = "Prefix", affix = "Energising", "Regenerate (1.1-2) Mana per second", statOrder = { 1464 }, level = 1, group = "AddedManaRegeneration", weightKey = { "default", }, weightVal = { 350 }, modTags = { "resource", "mana" }, }, - ["AbyssFlatManaShieldRegenerationJewel2"] = { type = "Prefix", affix = "Inspirational", "Regenerate (2.1-3) Mana per second", statOrder = { 1464 }, level = 40, group = "AddedManaRegeneration", weightKey = { "default", }, weightVal = { 350 }, modTags = { "resource", "mana" }, }, - ["AbyssFlatManaShieldRegenerationJewel3"] = { type = "Prefix", affix = "Resonating", "Regenerate (3.3-4) Mana per second", statOrder = { 1464 }, level = 75, group = "AddedManaRegeneration", weightKey = { "default", }, weightVal = { 350 }, modTags = { "resource", "mana" }, }, - ["AbyssAttacksBlindOnHitChanceJewel1"] = { type = "Suffix", affix = "of Blinding", "(3-4)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4736 }, level = 32, group = "AttacksBlindOnHitChance", weightKey = { "abyss_jewel_ranged", "abyss_jewel_melee", "default", }, weightVal = { 800, 800, 0 }, modTags = { "attack" }, }, - ["AbyssAttacksBlindOnHitChanceJewel2___"] = { type = "Suffix", affix = "of Blinding", "(5-6)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4736 }, level = 65, group = "AttacksBlindOnHitChance", weightKey = { "abyss_jewel_ranged", "abyss_jewel_melee", "default", }, weightVal = { 400, 400, 0 }, modTags = { "attack" }, }, - ["AbyssAttacksTauntOnHitChanceJewel1"] = { type = "Suffix", affix = "of Taunting", "(3-5)% chance to Taunt Enemies on Hit with Attacks", statOrder = { 4737 }, level = 32, group = "AttacksTauntOnHitChance", weightKey = { "abyss_jewel_melee", "default", }, weightVal = { 800, 0 }, modTags = { "attack" }, }, - ["AbyssAttacksTauntOnHitChanceJewel2"] = { type = "Suffix", affix = "of Taunting", "(6-8)% chance to Taunt Enemies on Hit with Attacks", statOrder = { 4737 }, level = 65, group = "AttacksTauntOnHitChance", weightKey = { "abyss_jewel_melee", "default", }, weightVal = { 400, 0 }, modTags = { "attack" }, }, - ["AbyssSpellsHinderOnHitChanceJewel1"] = { type = "Suffix", affix = "of Hindering", "(3-5)% chance to Hinder Enemies on Hit with Spells", statOrder = { 9670 }, level = 32, group = "SpellsHinderOnHitChance", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 800, 0 }, modTags = { "caster" }, }, - ["AbyssSpellsHinderOnHitChanceJewel2"] = { type = "Suffix", affix = "of Hindering", "(6-8)% chance to Hinder Enemies on Hit with Spells", statOrder = { 9670 }, level = 65, group = "SpellsHinderOnHitChance", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 400, 0 }, modTags = { "caster" }, }, - ["AbyssMinionAttacksBlindOnHitChanceJewel1"] = { type = "Suffix", affix = "of Stifling", "Minions have (3-4)% chance to Blind on Hit with Attacks", statOrder = { 8817 }, level = 32, group = "MinionAttacksBlindOnHitChance", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0 }, modTags = { "attack", "minion" }, }, - ["AbyssMinionAttacksBlindOnHitChanceJewel2"] = { type = "Suffix", affix = "of Stifling", "Minions have (5-6)% chance to Blind on Hit with Attacks", statOrder = { 8817 }, level = 65, group = "MinionAttacksBlindOnHitChance", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 400, 0 }, modTags = { "attack", "minion" }, }, - ["AbyssMinionAttacksTauntOnHitChanceJewel1"] = { type = "Suffix", affix = "of Distraction", "Minions have (3-5)% chance to Taunt on Hit with Attacks", statOrder = { 3297 }, level = 32, group = "MinionAttacksTauntOnHitChance", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0 }, modTags = { "attack", "minion" }, }, - ["AbyssMinionAttacksTauntOnHitChanceJewel2_"] = { type = "Suffix", affix = "of Distraction", "Minions have (6-8)% chance to Taunt on Hit with Attacks", statOrder = { 3297 }, level = 65, group = "MinionAttacksTauntOnHitChance", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 400, 0 }, modTags = { "attack", "minion" }, }, - ["AbyssMinionSpellsHinderOnHitChanceJewel1"] = { type = "Suffix", affix = "of Delaying", "Minions have (3-5)% chance to Hinder Enemies on Hit with Spells", statOrder = { 8871 }, level = 32, group = "MinionSpellsHinderOnHitChance", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0 }, modTags = { "caster", "minion" }, }, - ["AbyssMinionSpellsHinderOnHitChanceJewel2"] = { type = "Suffix", affix = "of Delaying", "Minions have (6-8)% chance to Hinder Enemies on Hit with Spells", statOrder = { 8871 }, level = 65, group = "MinionSpellsHinderOnHitChance", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 400, 0 }, modTags = { "caster", "minion" }, }, - ["AbyssMinionPoisonOnHitChanceJewel1"] = { type = "Suffix", affix = "of Venom", "Minions have (10-15)% chance to Poison Enemies on Hit", statOrder = { 3040 }, level = 60, group = "AbyssMinionPoisonOnHitChance", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 400, 0 }, modTags = { "poison", "chaos", "minion", "ailment" }, }, - ["AbyssMinionIgniteOnHitChanceJewel1"] = { type = "Suffix", affix = "of Combustion", "Minions have (10-15)% chance to Ignite", statOrder = { 8825 }, level = 60, group = "AbyssMinionIgniteOnHitChance", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 400, 0 }, modTags = { "elemental", "fire", "minion", "ailment" }, }, - ["AbyssMinionAttacksBleedOnHitChanceJewel1"] = { type = "Suffix", affix = "of Bloodletting", "Minions have (10-15)% chance to cause Bleeding with Attacks", statOrder = { 2366 }, level = 60, group = "AbyssMinionAttacksBleedOnHitChance", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 400, 0 }, modTags = { "bleed", "physical", "minion", "ailment" }, }, - ["AbyssDamageVSAbyssMonstersJewel1"] = { type = "Suffix", affix = "of Banishing", "(30-40)% increased Damage with Hits and Ailments against Abyssal Monsters", statOrder = { 5769 }, level = 1, group = "DamageVSAbyssMonsters", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 0, 500 }, modTags = { "damage" }, }, - ["AbyssMinionDamageVSAbyssMonstersJewel1"] = { type = "Suffix", affix = "of Marshalling", "Minions deal (30-40)% increased Damage with Hits and Ailments against Abyssal Monsters", statOrder = { 8836 }, level = 1, group = "MinionDamageVSAbyssMonsters", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "minion" }, }, - ["AbyssReducedPhysicalDamageTakenVsAbyssMonsterJewel1"] = { type = "Suffix", affix = "of Warding", "(4-6)% additional Physical Damage Reduction against Abyssal Monsters", statOrder = { 4432 }, level = 1, group = "ReducedPhysicalDamageTakenVsAbyssMonsters", weightKey = { "default", }, weightVal = { 500 }, modTags = { "physical" }, }, - ["AbyssAvoidIgniteJewel1_"] = { type = "Suffix", affix = "of Nonflammability", "(31-40)% chance to Avoid being Ignited", statOrder = { 1727 }, level = 50, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 300 }, modTags = { "elemental", "fire", "ailment" }, }, - ["AbyssAvoidIgniteJewel2"] = { type = "Suffix", affix = "of Fireproofing", "(41-50)% chance to Avoid being Ignited", statOrder = { 1727 }, level = 70, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 150 }, modTags = { "elemental", "fire", "ailment" }, }, - ["AbyssAvoidFreezeAndChillJewel1"] = { type = "Suffix", affix = "of Warming", "(31-40)% chance to Avoid being Frozen", statOrder = { 1726 }, level = 50, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 300 }, modTags = { "elemental", "cold", "ailment" }, }, - ["AbyssAvoidFreezeAndChillJewel2"] = { type = "Suffix", affix = "of Heating", "(41-50)% chance to Avoid being Frozen", statOrder = { 1726 }, level = 70, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 150 }, modTags = { "elemental", "cold", "ailment" }, }, - ["AbyssAvoidShockJewel1"] = { type = "Suffix", affix = "of Insulating", "(31-40)% chance to Avoid being Shocked", statOrder = { 1729 }, level = 50, group = "AvoidShockForJewel", weightKey = { "default", }, weightVal = { 300 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["AbyssAvoidShockJewel2"] = { type = "Suffix", affix = "of the Lightning Rod", "(41-50)% chance to Avoid being Shocked", statOrder = { 1729 }, level = 70, group = "AvoidShockForJewel", weightKey = { "default", }, weightVal = { 150 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["AbyssAvoidPoisonJewel1__"] = { type = "Suffix", affix = "of Tolerance", "(31-40)% chance to Avoid being Poisoned", statOrder = { 1730 }, level = 50, group = "ChanceToAvoidPoison", weightKey = { "default", }, weightVal = { 300 }, modTags = { "poison", "chaos", "ailment" }, }, - ["AbyssAvoidPoisonJewel2__"] = { type = "Suffix", affix = "of Immunity", "(41-50)% chance to Avoid being Poisoned", statOrder = { 1730 }, level = 70, group = "ChanceToAvoidPoison", weightKey = { "default", }, weightVal = { 150 }, modTags = { "poison", "chaos", "ailment" }, }, - ["AbyssAvoidBleedingJewel1"] = { type = "Suffix", affix = "of Stemming", "(31-40)% chance to Avoid Bleeding", statOrder = { 4077 }, level = 50, group = "ChanceToAvoidBleeding", weightKey = { "default", }, weightVal = { 300 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["AbyssAvoidBleedingJewel2"] = { type = "Suffix", affix = "of the Tourniquet", "(41-50)% chance to Avoid Bleeding", statOrder = { 4077 }, level = 70, group = "ChanceToAvoidBleeding", weightKey = { "default", }, weightVal = { 150 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["AbyssAvoidStunJewel1"] = { type = "Suffix", affix = "of Balance", "(21-24)% chance to Avoid being Stunned", statOrder = { 1732 }, level = 50, group = "AvoidStun", weightKey = { "default", }, weightVal = { 300 }, modTags = { }, }, - ["AbyssAvoidStunJewel2"] = { type = "Suffix", affix = "of Poise", "(25-30)% chance to Avoid being Stunned", statOrder = { 1732 }, level = 70, group = "AvoidStun", weightKey = { "default", }, weightVal = { 150 }, modTags = { }, }, - ["AbyssAccuracyRatingJewel1"] = { type = "Suffix", affix = "of Calm", "+(10-30) to Accuracy Rating", statOrder = { 1317 }, level = 1, group = "IncreasedAccuracy", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, - ["AbyssAccuracyRatingJewel2"] = { type = "Suffix", affix = "of Steadiness", "+(31-60) to Accuracy Rating", statOrder = { 1317 }, level = 1, group = "IncreasedAccuracy", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 500, 1000, 0 }, modTags = { "attack" }, }, - ["AbyssAccuracyRatingJewel3"] = { type = "Suffix", affix = "of the Marksman", "+(61-120) to Accuracy Rating", statOrder = { 1317 }, level = 52, group = "IncreasedAccuracy", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 500, 1000, 0 }, modTags = { "attack" }, }, - ["AbyssAccuracyRatingJewel4"] = { type = "Suffix", affix = "of the Ranger", "+(121-240) to Accuracy Rating", statOrder = { 1317 }, level = 78, group = "IncreasedAccuracy", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 500, 1000, 0 }, modTags = { "attack" }, }, - ["AbyssAccuracyRatingJewel5"] = { type = "Suffix", affix = "of the Deadeye", "+(241-300) to Accuracy Rating", statOrder = { 1317 }, level = 85, group = "IncreasedAccuracy", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 250, 500, 0 }, modTags = { "attack" }, }, - ["AbyssMinionAttackAndCastSpeedJewel1"] = { type = "Suffix", affix = "of Training", "Minions have (4-6)% increased Attack Speed", "Minions have (4-6)% increased Cast Speed", statOrder = { 2781, 2782 }, level = 1, group = "MinionAttackAndCastSpeed", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, - ["AbyssMinionLifeRegenerationJewel1"] = { type = "Suffix", affix = "of Longevity", "Minions Regenerate (0.4-0.8)% of Life per second", statOrder = { 2785 }, level = 1, group = "MinionLifeRegeneration", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "life", "minion" }, }, - ["AbyssMinionLifeLeechJewel1"] = { type = "Suffix", affix = "of Vampirism", "Minions Leech (0.3-0.5)% of Damage as Life", statOrder = { 2784 }, level = 1, group = "MinionLifeLeech", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "life", "minion" }, }, - ["AbyssMinionMovementSpeedJewel1"] = { type = "Suffix", affix = "of Orchestration", "Minions have (6-10)% increased Movement Speed", statOrder = { 1650 }, level = 1, group = "MinionMovementSpeed", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0 }, modTags = { "speed", "minion" }, }, - ["AbyssMinionLifeJewel1_"] = { type = "Suffix", affix = "of Fortitude", "Minions have (8-12)% increased maximum Life", statOrder = { 1647 }, level = 1, group = "MinionLifeForJewel", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "life", "minion" }, }, - ["AbyssFlatMinionAccuracy1"] = { type = "Suffix", affix = "of Suggestion", "Minions have +(95-125) to Accuracy Rating", statOrder = { 8804 }, level = 1, group = "MinionAccuracyRatingFlat", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 300, 0 }, modTags = { "attack", "minion" }, }, - ["AbyssFlatMinionAccuracy2_"] = { type = "Suffix", affix = "of Instruction", "Minions have +(126-180) to Accuracy Rating", statOrder = { 8804 }, level = 52, group = "MinionAccuracyRatingFlat", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 300, 0 }, modTags = { "attack", "minion" }, }, - ["AbyssFlatMinionAccuracy3"] = { type = "Suffix", affix = "of Command", "Minions have +(181-250) to Accuracy Rating", statOrder = { 8804 }, level = 78, group = "MinionAccuracyRatingFlat", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 300, 0 }, modTags = { "attack", "minion" }, }, - ["AbyssMinionElementalResistancesJewel1"] = { type = "Suffix", affix = "of Acclimatisation", "Minions have +(6-10)% to all Elemental Resistances", statOrder = { 2786 }, level = 1, group = "MinionElementalResistancesForJewel", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0 }, modTags = { "elemental", "resistance", "minion" }, }, - ["AbyssMinionChaosResistanceJewel1"] = { type = "Suffix", affix = "of Righteousness", "Minions have +(7-11)% to Chaos Resistance", statOrder = { 2787 }, level = 1, group = "MinionChaosResistance", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0 }, modTags = { "chaos", "resistance", "minion" }, }, - ["AbyssFlatArmourJewel1"] = { type = "Prefix", affix = "Lacquered", "+(36-60) to Armour", statOrder = { 1422 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 600 }, modTags = { "defences", "armour" }, }, - ["AbyssFlatArmourJewel2"] = { type = "Prefix", affix = "Fortified", "+(61-100) to Armour", statOrder = { 1422 }, level = 40, group = "PhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 600 }, modTags = { "defences", "armour" }, }, - ["AbyssFlatArmourJewel3"] = { type = "Prefix", affix = "Carapaced", "+(101-180) to Armour", statOrder = { 1422 }, level = 75, group = "PhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 600 }, modTags = { "defences", "armour" }, }, - ["AbyssFlatArmourJewel4__"] = { type = "Prefix", affix = "Encased", "+(181-250) to Armour", statOrder = { 1422 }, level = 83, group = "PhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 300 }, modTags = { "defences", "armour" }, }, - ["AbyssFlatEvasionJewel1"] = { type = "Prefix", affix = "Agile", "+(36-60) to Evasion Rating", statOrder = { 1427 }, level = 1, group = "EvasionRating", weightKey = { "default", }, weightVal = { 600 }, modTags = { "defences", "evasion" }, }, - ["AbyssFlatEvasionJewel2"] = { type = "Prefix", affix = "Fleet", "+(61-100) to Evasion Rating", statOrder = { 1427 }, level = 40, group = "EvasionRating", weightKey = { "default", }, weightVal = { 600 }, modTags = { "defences", "evasion" }, }, - ["AbyssFlatEvasionJewel3"] = { type = "Prefix", affix = "Vaporous", "+(101-180) to Evasion Rating", statOrder = { 1427 }, level = 75, group = "EvasionRating", weightKey = { "default", }, weightVal = { 600 }, modTags = { "defences", "evasion" }, }, - ["AbyssFlatEvasionJewel4_"] = { type = "Prefix", affix = "Beclouded", "+(181-250) to Evasion Rating", statOrder = { 1427 }, level = 83, group = "EvasionRating", weightKey = { "default", }, weightVal = { 300 }, modTags = { "defences", "evasion" }, }, - ["AbyssFlatEnergyShieldJewel1"] = { type = "Prefix", affix = "Shining", "+(21-25) to maximum Energy Shield", statOrder = { 1440 }, level = 1, group = "EnergyShield", weightKey = { "default", }, weightVal = { 600 }, modTags = { "defences", "energy_shield" }, }, - ["AbyssFlatEnergyShieldJewel2"] = { type = "Prefix", affix = "Seething", "+(26-30) to maximum Energy Shield", statOrder = { 1440 }, level = 40, group = "EnergyShield", weightKey = { "default", }, weightVal = { 600 }, modTags = { "defences", "energy_shield" }, }, - ["AbyssFlatEnergyShieldJewel3"] = { type = "Prefix", affix = "Incandescent", "+(31-35) to maximum Energy Shield", statOrder = { 1440 }, level = 75, group = "EnergyShield", weightKey = { "default", }, weightVal = { 600 }, modTags = { "defences", "energy_shield" }, }, - ["AbyssFlatEnergyShieldJewel4"] = { type = "Prefix", affix = "Resplendent", "+(36-40) to maximum Energy Shield", statOrder = { 1440 }, level = 83, group = "EnergyShield", weightKey = { "default", }, weightVal = { 300 }, modTags = { "defences", "energy_shield" }, }, - ["AbyssCurseEffectJewel1"] = { type = "Prefix", affix = "Murmuring", "2% increased Effect of your Curses", statOrder = { 2472 }, level = 75, group = "CurseEffectiveness", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "caster", "curse" }, }, - ["AbyssCurseEffectJewel2"] = { type = "Prefix", affix = "Foul-tongued", "3% increased Effect of your Curses", statOrder = { 2472 }, level = 86, group = "CurseEffectiveness", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "caster", "curse" }, }, - ["AbyssCooldownRecoverySpeed1_"] = { type = "Prefix", affix = "Facilitating", "2% increased Cooldown Recovery Rate", statOrder = { 4822 }, level = 75, group = "GlobalCooldownRecovery", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 300, 300, 100, 100, 0 }, modTags = { }, }, - ["AbyssCooldownRecoverySpeed2__"] = { type = "Prefix", affix = "Expediting", "3% increased Cooldown Recovery Rate", statOrder = { 4822 }, level = 86, group = "GlobalCooldownRecovery", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 300, 300, 100, 100, 0 }, modTags = { }, }, - ["AbyssImpaleEffect1_"] = { type = "Prefix", affix = "Skewering", "(3-4)% increased Impale Effect", statOrder = { 6869 }, level = 75, group = "ImpaleEffect", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 300, 300, 100, 100, 0 }, modTags = { "physical" }, }, - ["AbyssImpaleEffect2_"] = { type = "Prefix", affix = "Lancing", "(5-6)% increased Impale Effect", statOrder = { 6869 }, level = 86, group = "ImpaleEffect", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 300, 300, 100, 100, 0 }, modTags = { "physical" }, }, - ["AbyssDamageRecoupedAsMana1"] = { type = "Prefix", affix = "Spurring", "2% of Damage taken Recouped as Mana", statOrder = { 2331 }, level = 75, group = "PercentDamageGoesToMana", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 100, 100, 300, 300, 0 }, modTags = { "resource", "mana" }, }, - ["AbyssDamageRecoupedAsMana2"] = { type = "Prefix", affix = "Motivating", "3% of Damage taken Recouped as Mana", statOrder = { 2331 }, level = 86, group = "PercentDamageGoesToMana", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 100, 100, 300, 300, 0 }, modTags = { "resource", "mana" }, }, - ["AbyssSpellBlockChanceIfHitRecentlyJewel1"] = { type = "Suffix", affix = "of Instinct", "+(3-4)% Chance to Block Spell Damage if you were Damaged by a Hit Recently", statOrder = { 5361 }, level = 1, group = "SpellBlockChanceIfHitRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 250, 250, 500, 250, 0 }, modTags = { "block" }, }, - ["AbyssReducedPhysicalDamageTakenIfNotHitRecentlyJewel1"] = { type = "Suffix", affix = "of Confidence", "2% additional Physical Damage Reduction if you weren't Damaged by a Hit Recently", statOrder = { 4428 }, level = 1, group = "ReducedPhysicalDamageTakenIfNotHitRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 250, 250, 250, 0 }, modTags = { "physical" }, }, - ["AbyssMovementSpeedIfNotDamagedRecentlyJewel1"] = { type = "Suffix", affix = "of Momentum", "(3-4)% increased Movement Speed if you haven't taken Damage Recently", statOrder = { 8944 }, level = 1, group = "MovementSpeedIfNotDamagedRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 250, 500, 250, 250, 0 }, modTags = { "speed" }, }, - ["AbyssDamageIfEnemySlainRecentlyJewel1"] = { type = "Suffix", affix = "of the Slayer", "(15-20)% increased Damage if you've Killed Recently", statOrder = { 5742 }, level = 1, group = "DamageIfEnemySlainRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 250, 250, 0, 0 }, modTags = { "damage" }, }, - ["AbyssCriticalStrikeMultiplierIfEnemySlainRecentlyJewel1"] = { type = "Suffix", affix = "of the Assassin", "+(8-14)% to Critical Strike Multiplier if you've Killed Recently", statOrder = { 5660 }, level = 25, group = "CriticalStrikeMultiplierIfEnemySlainRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 250, 250, 500, 0, 0 }, modTags = { "damage", "critical" }, }, - ["AbyssIncreasedArmourIfNoEnemySlainRecentlyJewel1__"] = { type = "Suffix", affix = "of the Guardian", "(20-30)% increased Armour if you haven't Killed Recently", statOrder = { 4593 }, level = 1, group = "IncreasedArmourIfNoEnemySlainRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 250, 250, 0, 0 }, modTags = { "defences", "armour" }, }, - ["AbyssAccuracyIfNoEnemySlainRecentlyJewel1_"] = { type = "Suffix", affix = "of the Deadeye", "(20-30)% increased Accuracy Rating if you haven't Killed Recently", statOrder = { 4378 }, level = 1, group = "AccuracyIfNoEnemySlainRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "attack" }, }, - ["AbyssDamagePenetratesElementalResistancesIfNoEnemySlainRecentlyJewel1"] = { type = "Suffix", affix = "of the Inquisitor", "Damage Penetrates 2% Elemental Resistances if you haven't Killed Recently", statOrder = { 5732 }, level = 1, group = "DamagePenetratesElementalResistancesIfNoEnemySlainRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 250, 250, 500, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["AbyssCastSpeedIfMinionKilledRecentlyJewel1"] = { type = "Suffix", affix = "of Retaliation", "(7-10)% increased Cast Speed if a Minion has been Killed Recently", statOrder = { 5173 }, level = 30, group = "CastSpeedIfMinionKilledRecently", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 500, 0 }, modTags = { "caster", "speed" }, }, - ["AbyssMinionDamageIfMinionSkillUsedRecentlyJewel1"] = { type = "Suffix", affix = "of Authority", "Minions deal (15-20)% increased Damage if you've used a Minion Skill Recently", statOrder = { 1853 }, level = 1, group = "MinionDamageIfMinionSkillUsedRecently", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "minion" }, }, - ["AbyssEvasionRatingWhileMovingJewel1"] = { type = "Suffix", affix = "of Maneuvering", "(25-35)% increased Evasion Rating while moving", statOrder = { 6171 }, level = 1, group = "EvasionRatingWhileMoving", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 250, 500, 250, 250, 0 }, modTags = { "defences", "evasion" }, }, - ["AbyssManaRegenerationRateWhileMovingJewel1"] = { type = "Suffix", affix = "of Praxis", "(20-25)% increased Mana Regeneration Rate while moving", statOrder = { 7783 }, level = 1, group = "ManaRegenerationRateWhileMoving", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 250, 250, 500, 250, 0 }, modTags = { "resource", "mana" }, }, - ["AbyssLifeRegenerationRateWhileMovingJewel1"] = { type = "Suffix", affix = "of Vivaciousness", "Regenerate (0.5-1)% of Life per second while moving", statOrder = { 7036 }, level = 1, group = "LifeRegenerationRateWhileMoving", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 250, 250, 250, 0 }, modTags = { "resource", "life" }, }, - ["AbyssPhysicalDamageAddedAsExtraFireIfCriticalStrikeDealtRecentlyJewel1"] = { type = "Suffix", affix = "of the Inferno", "Gain (2-4)% of Physical Damage as Extra Fire Damage if you've dealt a Critical Strike Recently", statOrder = { 9140 }, level = 40, group = "PhysicalDamageAddedAsExtraFireIfCriticalStrikeDealtRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 300, 150, 150, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, - ["AbyssAttackSpeedIfCriticalStrikeDealtRecentlyJewel1"] = { type = "Suffix", affix = "of Opportunity", "(6-8)% increased Attack Speed if you've dealt a Critical Strike Recently", statOrder = { 4718 }, level = 25, group = "AttackSpeedIfCriticalStrikeDealtRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 500, 250, 0, 0 }, modTags = { "attack", "speed" }, }, - ["AbyssCastSpeedIfCriticalStrikeDealtRecentlyJewel1"] = { type = "Suffix", affix = "of Abuse", "(5-7)% increased Cast Speed if you've dealt a Critical Strike Recently", statOrder = { 5172 }, level = 25, group = "CastSpeedIfCriticalStrikeDealtRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 250, 250, 500, 0, 0 }, modTags = { "caster", "speed" }, }, - ["AbyssCriticalStrikeChanceIfNoCriticalStrikeDealtRecentlyJewel1"] = { type = "Suffix", affix = "of Preparation", "(20-30)% increased Critical Strike Chance if you haven't dealt a Critical Strike Recently", statOrder = { 5631 }, level = 1, group = "CriticalStrikeChanceIfNoCriticalStrikeDealtRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 250, 250, 500, 0, 0 }, modTags = { "critical" }, }, - ["AbyssMinionAttackAndCastSpeedIfEnemySlainRecentlyJewel1"] = { type = "Suffix", affix = "of Rallying", "Minions have (6-8)% increased Attack and Cast Speed if you or your Minions have Killed Recently", statOrder = { 8811 }, level = 1, group = "MinionAttackAndCastSpeedIfEnemySlainRecently", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, - ["AbyssSpellDodgeAndDodgeChanceIfHitRecentlyJewel1"] = { type = "Suffix", affix = "of Readiness", "+2% Chance to Block Spell Damage if you were Damaged by a Hit Recently", statOrder = { 5361 }, level = 1, group = "SpellBlockChanceIfHitRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 250, 500, 250, 250, 0 }, modTags = { "block" }, }, - ["AbyssMovementSpeedIfEnemySlainRecentlyJewel1"] = { type = "Suffix", affix = "of the Raider", "(2-4)% increased Movement Speed if you've Killed Recently", statOrder = { 4122 }, level = 1, group = "MovementSpeedIfEnemySlainRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 250, 500, 250, 0, 0 }, modTags = { "speed" }, }, - ["AbyssChanceToBlockIfDamagedRecentlyJewel1_"] = { type = "Suffix", affix = "of Guarding", "+(3-4)% Chance to Block Attack Damage if you were Damaged by a Hit Recently", statOrder = { 3082 }, level = 1, group = "ChanceToBlockIfDamagedRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 250, 250, 250, 0 }, modTags = { "block" }, }, - ["AbyssChanceToGainOnslaughtOnKillJewel1"] = { type = "Suffix", affix = "of Onslaught", "(3-5)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2865 }, level = 50, group = "ChanceToGainOnslaughtOnKill", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["AbyssChanceToGainOnslaughtOnKillJewel2"] = { type = "Suffix", affix = "of Onslaught", "(6-8)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2865 }, level = 80, group = "ChanceToGainOnslaughtOnKill", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["AbyssChancetoGainPhasingOnKillJewel1"] = { type = "Suffix", affix = "of Phasing", "(3-5)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3328 }, level = 50, group = "ChancetoGainPhasingOnKill", weightKey = { "abyss_jewel_ranged", "abyss_jewel_caster", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { }, }, - ["AbyssChancetoGainPhasingOnKillJewel2"] = { type = "Suffix", affix = "of Phasing", "(6-8)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3328 }, level = 80, group = "ChancetoGainPhasingOnKill", weightKey = { "abyss_jewel_ranged", "abyss_jewel_caster", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["AbyssChanceToGainUnholyMightOnKillAbyssJewel1"] = { type = "Suffix", affix = "of Unholy Might", "(2-3)% chance to Gain Unholy Might for 4 seconds on Melee Kill", statOrder = { 2949 }, level = 60, group = "ChanceToGainUnholyMightOnKillAbyss", weightKey = { "abyss_jewel_melee", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["AbyssChanceToGainUnholyMightOnKillAbyssJewel2_"] = { type = "Suffix", affix = "of Unholy Might", "(4-5)% chance to Gain Unholy Might for 4 seconds on Melee Kill", statOrder = { 2949 }, level = 84, group = "ChanceToGainUnholyMightOnKillAbyss", weightKey = { "abyss_jewel_melee", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AbyssSelfCurseEffectOnConsecratedGroundJewel1__"] = { type = "Suffix", affix = "of the Sanctum", "(10-15)% reduced Effect of Curses on you while on Consecrated Ground", statOrder = { 5699 }, level = 84, group = "EnchantmentConsecratedGround", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 100, 100, 500, 500, 0 }, modTags = { "caster", "curse" }, }, - ["AbyssAvoidElementalAilmentsWhileElusiveJewel1"] = { type = "Suffix", affix = "of Escape", "(8-10)% chance to Avoid Elemental Ailments while you have Elusive", statOrder = { 4760 }, level = 84, group = "EnchantmentElusive", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 100, 500, 100, 100, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, - ["AbyssHinderedEnemiesLifeRegenerationRateJewel1"] = { type = "Suffix", affix = "of Enervation", "Enemies Hindered by you have (15-20)% reduced Life Regeneration rate", statOrder = { 6091 }, level = 84, group = "EnchantmentHinder", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 100, 500, 500, 0 }, modTags = { "resource", "life" }, }, - ["AbyssBlindedEnemiesCriticalStrikeChanceJewel1"] = { type = "Suffix", affix = "of Clouding", "Enemies Blinded by you have (15-20)% reduced Critical Strike Chance", statOrder = { 6085 }, level = 84, group = "EnchantmentBlind", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 500, 100, 100, 0 }, modTags = { "critical" }, }, - ["AbyssWitheredEnemiesAllResistanceJewel1___"] = { type = "Suffix", affix = "of Languishing", "Enemies Withered by you have -2% to all Resistances", statOrder = { 6097 }, level = 84, group = "EnchantmentWither", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 100, 100, 500, 500, 0 }, modTags = { "damage" }, }, - ["AbyssMaimedEnemiesDamageOverTimeJewel1"] = { type = "Suffix", affix = "of Mangling", "Enemies Maimed by you take (4-5)% increased Damage Over Time", statOrder = { 6095 }, level = 84, group = "EnchantmentMaim", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 500, 100, 100, 0 }, modTags = { "damage" }, }, - ["AbyssIntimidatedEnemiesStunDurationJewel1"] = { type = "Suffix", affix = "of Daunting", "Enemies Intimidated by you have (10-15)% increased duration of stuns against them", statOrder = { 6094 }, level = 84, group = "EnchantmentIntimidate", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 100, 100, 100, 0 }, modTags = { }, }, - ["DelveWeaponFirePenetration1h1_"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (5-7)% Fire Resistance", statOrder = { 2853 }, level = 1, group = "FireResistancePenetration", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["DelveWeaponFirePenetration2h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (12-15)% Fire Resistance", statOrder = { 2853 }, level = 1, group = "FireResistancePenetration", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["DelveJewelFirePenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates 1% Fire Resistance", statOrder = { 2853 }, level = 1, group = "FireResistancePenetration", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["DelveBodyArmourAvoidFire1_"] = { type = "Prefix", affix = "Subterranean", "(8-10)% chance to Avoid Fire Damage from Hits", statOrder = { 3239 }, level = 1, group = "FireDamageAvoidance", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "elemental", "fire" }, }, - ["DelveGlovesFireDamageToSpells1"] = { type = "Prefix", affix = "Subterranean", "Adds (20-25) to (26-35) Fire Damage", statOrder = { 1243 }, level = 1, group = "GlobalAddedFireDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["DelveBootsSocketedFireGemLevel1"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Fire Gems", statOrder = { 146 }, level = 1, group = "LocalIncreaseSocketedFireGemLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "fire", "gem" }, }, - ["DelveRingFireLeech1"] = { type = "Prefix", affix = "Subterranean", "0.2% of Fire Damage Leeched as Life", statOrder = { 1551 }, level = 1, group = "FireDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "elemental", "fire" }, }, - ["DelveHelmetEnemyFireResistanceAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies have -9% to Fire Resistance", statOrder = { 7518 }, level = 1, group = "NearbyEnemyFireDamageResistance", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "resistance" }, }, - ["DelveJewelryFireDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Fire Damage", statOrder = { 1241 }, level = 1, group = "FireDamagePercentagePrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["DelveWeaponColdPenetration1h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (5-7)% Cold Resistance", statOrder = { 2855 }, level = 1, group = "ColdResistancePenetration", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["DelveWeaponColdPenetration2h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (12-15)% Cold Resistance", statOrder = { 2855 }, level = 1, group = "ColdResistancePenetration", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["DelveJewelColdPenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates 1% Cold Resistance", statOrder = { 2855 }, level = 1, group = "ColdResistancePenetration", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["DelveBodyArmourAvoidCold1"] = { type = "Prefix", affix = "Subterranean", "(6-10)% chance to Avoid Cold Damage from Hits", statOrder = { 3240 }, level = 1, group = "ColdDamageAvoidance", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "elemental", "cold" }, }, - ["DelveGlovesColdDamageToSpells1"] = { type = "Prefix", affix = "Subterranean", "Adds (20-25) to (26-35) Cold Damage", statOrder = { 1252 }, level = 1, group = "GlobalAddedColdDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["DelveBootsSocketedColdGemLevel1"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Cold Gems", statOrder = { 147 }, level = 1, group = "LocalIncreaseSocketedColdGemLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "cold", "gem" }, }, - ["DelveRingColdLeech1"] = { type = "Prefix", affix = "Subterranean", "0.2% of Cold Damage Leeched as Life", statOrder = { 1556 }, level = 1, group = "ColdDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "elemental", "cold" }, }, - ["DelveHelmetEnemyColdResistanceAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies have -9% to Cold Resistance", statOrder = { 7516 }, level = 1, group = "NearbyEnemyColdDamageResistance", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "resistance" }, }, - ["DelveJewelryColdDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Cold Damage", statOrder = { 1250 }, level = 1, group = "ColdDamagePercentagePrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["DelveWeaponLightningPenetration1h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (5-7)% Lightning Resistance", statOrder = { 2856 }, level = 1, group = "LightningResistancePenetration", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["DelveWeaponLightningPenetration2h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (12-15)% Lightning Resistance", statOrder = { 2856 }, level = 1, group = "LightningResistancePenetration", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["DelveJewelLightningPenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates 1% Lightning Resistance", statOrder = { 2856 }, level = 1, group = "LightningResistancePenetration", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["DelveBodyArmourAvoidLightning1"] = { type = "Prefix", affix = "Subterranean", "(6-10)% chance to Avoid Lightning Damage from Hits", statOrder = { 3241 }, level = 1, group = "LightningDamageAvoidance", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "elemental", "lightning" }, }, - ["DelveGlovesLightningDamageToSpells1"] = { type = "Prefix", affix = "Subterranean", "Adds 1 to (48-60) Lightning Damage", statOrder = { 1263 }, level = 1, group = "GlobalAddedLightningDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["DelveBootsSocketedLightningGemLevel1_"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Lightning Gems", statOrder = { 148 }, level = 1, group = "LocalIncreaseSocketedLightningGemLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "lightning", "gem" }, }, - ["DelveRingLightningLeech1_"] = { type = "Prefix", affix = "Subterranean", "0.2% of Lightning Damage Leeched as Life", statOrder = { 1560 }, level = 1, group = "LightningDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, }, - ["DelveHelmetEnemyLightningResistanceAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies have -9% to Lightning Resistance", statOrder = { 7520 }, level = 1, group = "NearbyEnemyLightningDamageResistance", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "resistance" }, }, - ["DelveJewelryLightningDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Lightning Damage", statOrder = { 1261 }, level = 1, group = "LightningDamagePercentagePrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["DelveWeaponIntimidateOnHit1"] = { type = "Suffix", affix = "of the Underground", "15% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 7480 }, level = 1, group = "LocalChanceToIntimidateOnHit", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "attack" }, }, - ["DelveArmourPhysDamageTaken1"] = { type = "Suffix", affix = "of the Underground", "-(75-50) Physical Damage taken from Hits", statOrder = { 2112 }, level = 1, group = "FlatPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "physical" }, }, - ["DelveArmourPhysDamageTakenv2_1"] = { type = "Suffix", affix = "of the Underground", "-(34-20) Physical Damage taken from Hits", statOrder = { 2112 }, level = 1, group = "FlatPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical" }, }, - ["DelveArmourPhysDamageTakenv2_2"] = { type = "Suffix", affix = "of the Underground", "-(49-35) Physical Damage taken from Hits", statOrder = { 2112 }, level = 30, group = "FlatPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical" }, }, - ["DelveArmourPhysDamageTakenv2_3"] = { type = "Suffix", affix = "of the Underground", "-(75-50) Physical Damage taken from Hits", statOrder = { 2112 }, level = 60, group = "FlatPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical" }, }, - ["DelveShieldPhysicalDamageReductionRating1"] = { type = "Prefix", affix = "Subterranean", "(3-5)% additional Physical Damage Reduction", statOrder = { 2150 }, level = 1, group = "ReducedPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "physical" }, }, - ["DelveBootsPhyiscalDamageReductionRatingWhileMoving1"] = { type = "Suffix", affix = "of the Underground", "(3-5)% additional Physical Damage Reduction while moving", statOrder = { 4438 }, level = 1, group = "AdditionalPhysicalDamageReductionWhileMoving", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical" }, }, - ["DelveGlovesGlobalAddedPhysicalDamage1"] = { type = "Prefix", affix = "Subterranean", "Adds (6-8) to (9-11) Physical Damage", statOrder = { 1150 }, level = 1, group = "GlobalAddedPhysicalDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["DelveRingPhysicalLeech1"] = { type = "Prefix", affix = "Subterranean", "0.2% of Physical Damage Leeched as Life", statOrder = { 1547 }, level = 1, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "physical" }, }, - ["DelveHelmetEnemyPhysicalDamageTakenAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies take 9% increased Physical Damage", statOrder = { 7522 }, level = 1, group = "NearbyEnemyPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["DelveJewelryPhysicalDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Global Physical Damage", statOrder = { 1116 }, level = 1, group = "PhysicalDamagePercentPrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["DelveJewelPhysicalDamageOverTimeTaken1"] = { type = "Prefix", affix = "Subterranean", "(1-2)% reduced Physical Damage taken over time", statOrder = { 4856 }, level = 1, group = "PhysicalDamageOverTimeTaken", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "physical" }, }, - ["DelveWeaponDespairOnHit1h1"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Despair on Hit", statOrder = { 2404 }, level = 1, group = "CurseOnHitDespair", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "caster", "curse" }, }, - ["DelveWeaponDespairOnHit2h1"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Despair on Hit", statOrder = { 2404 }, level = 1, group = "CurseOnHitDespair", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "caster", "curse" }, }, - ["DelveArmourChaosResistance1_"] = { type = "Prefix", affix = "Subterranean", "+(20-35)% to Chaos Resistance", statOrder = { 1522 }, level = 1, group = "ChaosResistancePrefix", weightKey = { "abyss_jewel", "jewel", "quiver", "shield", "body_armour", "boots", "gloves", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "chaos", "resistance" }, }, - ["DelveBodyArmourChaosDegenResist1"] = { type = "Suffix", affix = "of the Underground", "+(30-40)% Chaos Resistance against Damage Over Time", statOrder = { 5442 }, level = 1, group = "ChaosResistanceAgainstDamageOverTime", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "chaos", "resistance" }, }, - ["DelveGlovesChaosDamageToSpells1"] = { type = "Prefix", affix = "Subterranean", "Adds (15-20) to (21-30) Chaos Damage", statOrder = { 1270 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["DelveBootsSocketedChaosGemLevel1"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Chaos Gems", statOrder = { 149 }, level = 1, group = "LocalIncreaseSocketedChaosGemLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "chaos", "gem" }, }, - ["DelveRingChaosLeech1"] = { type = "Prefix", affix = "Subterranean", "0.2% of Chaos Damage Leeched as Life", statOrder = { 1563 }, level = 1, group = "ChaosDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "chaos" }, }, - ["DelveHelmetEnemyChaosResistanceAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies have -9% to Chaos Resistance", statOrder = { 7515 }, level = 1, group = "NearbyEnemyChaosDamageResistance", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "chaos_damage", "damage", "chaos", "resistance" }, }, - ["DelveJewelryChaosDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Chaos Damage", statOrder = { 1269 }, level = 1, group = "IncreasedChaosDamagePrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["DelveJewelChaosDamage1"] = { type = "Suffix", affix = "of the Underground", "(13-19)% increased Chaos Damage", statOrder = { 1269 }, level = 1, group = "IncreasedChaosDamage", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["DelveWeaponDamageOnFullLife1h1__"] = { type = "Suffix", affix = "of the Underground", "(50-60)% increased Damage when on Full Life", statOrder = { 5774 }, level = 1, group = "DamageOnFullLife", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage" }, }, - ["DelveWeaponDamageOnFullLife2h1"] = { type = "Suffix", affix = "of the Underground", "(100-120)% increased Damage when on Full Life", statOrder = { 5774 }, level = 1, group = "DamageOnFullLife", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage" }, }, - ["DelveBodyArmourLife1"] = { type = "Prefix", affix = "Subterranean", "+(25-40) to maximum Life", "(3-5)% increased maximum Life", statOrder = { 1451, 1453 }, level = 1, group = "LifeAndPercentLife", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "life" }, }, - ["DelveNonBodyArmourLife1"] = { type = "Prefix", affix = "Subterranean", "+(15-25) to maximum Life", "(2-3)% increased maximum Life", statOrder = { 1451, 1453 }, level = 1, group = "LifeAndPercentLife", weightKey = { "abyss_jewel", "jewel", "shield", "boots", "helmet", "gloves", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "resource", "life" }, }, - ["DelveArmourLifeRegen1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 1% of Life per second", statOrder = { 1823 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { "abyss_jewel", "jewel", "quiver", "shield", "body_armour", "helmet", "gloves", "boots", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 2000, 2000, 0 }, modTags = { "resource", "life" }, }, - ["DelveJewelryFlaskLifeRecovery1"] = { type = "Suffix", affix = "of the Underground", "(20-30)% increased Life Recovery from Flasks", statOrder = { 1936 }, level = 1, group = "GlobalFlaskLifeRecovery", weightKey = { "abyss_jewel", "jewel", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "flask", "resource", "life" }, }, - ["DelveWeaponArmourIfYouHitRecently1h1"] = { type = "Suffix", affix = "of the Underground", "+500 to Armour if you've Hit an Enemy Recently", statOrder = { 9159 }, level = 1, group = "PhysicalDamageReductionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "sceptre", "mace", "axe", "sword", "default", }, weightVal = { 0, 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "armour" }, }, - ["DelveJewelLifeRegeneration1"] = { type = "Prefix", affix = "Subterranean", "Regenerate 0.3% of Life per second", statOrder = { 1823 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resource", "life" }, }, - ["DelveWeaponArmourIfYouHitRecently2h1"] = { type = "Suffix", affix = "of the Underground", "+1000 to Armour if you've Hit an Enemy Recently", statOrder = { 9159 }, level = 1, group = "PhysicalDamageReductionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "staff", "mace", "axe", "sword", "default", }, weightVal = { 0, 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "armour" }, }, - ["DelveJewelArmourIfYouHitRecently1"] = { type = "Suffix", affix = "of the Underground", "+(250-300) to Armour if you've Hit an Enemy Recently", statOrder = { 9159 }, level = 1, group = "PhysicalDamageReductionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 300, 300, 0 }, modTags = { "defences", "armour" }, }, - ["DelveWeaponEvasionIfYouHitRecently1h1"] = { type = "Suffix", affix = "of the Underground", "+500 to Evasion Rating if Hit an Enemy Recently", statOrder = { 6162 }, level = 1, group = "EvasionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "axe", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "evasion" }, }, - ["DelveWeaponEvasionIfYouHitRecently2h1"] = { type = "Suffix", affix = "of the Underground", "+1000 to Evasion Rating if Hit an Enemy Recently", statOrder = { 6162 }, level = 1, group = "EvasionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "axe", "sword", "bow", "default", }, weightVal = { 0, 0, 0, 1600, 1600, 1600, 0 }, modTags = { "defences", "evasion" }, }, - ["DelveJewelEvasionIfYouHitRecently1"] = { type = "Suffix", affix = "of the Underground", "+(250-300) to Evasion Rating if Hit an Enemy Recently", statOrder = { 6162 }, level = 1, group = "EvasionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 300, 300, 0 }, modTags = { "defences", "evasion" }, }, - ["DelveWeaponEnergyShieldRegenIfYouHitRecently1h1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.5% of Energy Shield per second if you've Hit an Enemy Recently", statOrder = { 6135 }, level = 1, group = "EnergyShieldRegenerationRatePerMinuteIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "dagger", "claw", "wand", "sceptre", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "energy_shield" }, }, - ["DelveWeaponEnergyShieldRegenIfYouHitRecently2h1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 1% of Energy Shield per second if you've Hit an Enemy Recently", statOrder = { 6135 }, level = 1, group = "EnergyShieldRegenerationRatePerMinuteIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "staff", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["DelveJewelEnergyShieldRegenIfYouHitRecently1_"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.3% of Energy Shield per second if you've Hit an Enemy Recently", statOrder = { 6135 }, level = 1, group = "EnergyShieldRegenerationRatePerMinuteIfYouHaveHitAnEnemyRecently", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 300, 300, 0 }, modTags = { "defences", "energy_shield" }, }, - ["DelveArmourArmour1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Armour", statOrder = { 1425 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercentSuffix", weightKey = { "abyss_jewel", "jewel", "str_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour" }, }, - ["DelveArmourEvasion1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Evasion Rating", statOrder = { 1433 }, level = 1, group = "LocalEvasionRatingIncreasePercentSuffix", weightKey = { "abyss_jewel", "jewel", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "evasion" }, }, - ["DelveArmourEnergyShield1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Energy Shield", statOrder = { 1442 }, level = 1, group = "LocalEnergyShieldPercentSuffix", weightKey = { "abyss_jewel", "jewel", "int_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, }, - ["DelveArmourArmourAndEvasion1_"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Armour and Evasion", statOrder = { 1436 }, level = 1, group = "LocalArmourAndEvasionSuffix", weightKey = { "abyss_jewel", "jewel", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour", "evasion" }, }, - ["DelveArmourArmourAndEnergyShield1__"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Armour and Energy Shield", statOrder = { 1435 }, level = 1, group = "LocalArmourAndEnergyShieldSuffix", weightKey = { "abyss_jewel", "jewel", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, - ["DelveArmourEvasionAndEnergyShield1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Evasion and Energy Shield", statOrder = { 1437 }, level = 1, group = "LocalEvasionAndEnergyShieldSuffix", weightKey = { "abyss_jewel", "jewel", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, - ["DelveArmourDefences1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Armour, Evasion and Energy Shield", statOrder = { 1438 }, level = 1, group = "LocalArmourAndEvasionAndEnergyShieldSuffix", weightKey = { "abyss_jewel", "jewel", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, }, - ["DelveArmourQuality"] = { type = "Suffix", affix = "of the Underground", "+(10-20)% to Quality", statOrder = { 7547 }, level = 1, group = "LocalItemQuality", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { }, }, - ["DelveArmourEnergyShieldRegen"] = { type = "Suffix", affix = "of the Underground", "Regenerate 1% of Energy Shield per second", statOrder = { 2521 }, level = 1, group = "EnergyShieldRegenerationPerMinute", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "helmet", "int_armour", "dex_int_armour", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["DelveArmourEnergyShieldLeechSpells_"] = { type = "Suffix", affix = "of the Underground", "0.3% of Spell Damage Leeched as Energy Shield", statOrder = { 1603 }, level = 1, group = "EnergyShieldLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "boots", "helmet", "int_armour", "dex_int_armour", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["DelveArmourSpellBlock__"] = { type = "Suffix", affix = "of the Underground", "(3-4)% Chance to Block Spell Damage", statOrder = { 1046 }, level = 1, group = "SpellBlockPercentage", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "boots", "gloves", "int_armour", "dex_int_armour", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "block" }, }, - ["DelveArmourDodgeAndSpellDodge_"] = { type = "Suffix", affix = "of the Underground", "+(4-6)% chance to Suppress Spell Damage", statOrder = { 1031 }, level = 1, group = "ChanceToDodgeAndSpellDodge", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "helmet", "dex_armour", "dex_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { }, }, - ["DelveArmourBlindChance"] = { type = "Suffix", affix = "of the Underground", "(4-6)% Global chance to Blind Enemies on hit", statOrder = { 2830 }, level = 1, group = "GlobalChanceToBlindOnHit", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "boots", "helmet", "dex_armour", "dex_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { }, }, - ["DelveArmourEvasionOnFullLife"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Global Evasion Rating when on Full Life", statOrder = { 6169 }, level = 1, group = "GlobalEvasionRatingPercentOnFullLife", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "boots", "dex_armour", "dex_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "defences", "evasion" }, }, - ["DelveArmourDoubleArmourEffectOnHit"] = { type = "Suffix", affix = "of the Underground", "(10-20)% chance to Defend with 200% of Armour", statOrder = { 5381 }, level = 1, group = "ChanceWhenHitForArmourToBeDoubled", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "helmet", "str_armour", "str_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "defences", "armour" }, }, - ["DelveArmourAttackBlock"] = { type = "Suffix", affix = "of the Underground", "(3-4)% Chance to Block Attack Damage", statOrder = { 1027 }, level = 1, group = "BlockPercent", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "boots", "helmet", "str_armour", "str_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "block" }, }, - ["DelveArmourFortifyEffect"] = { type = "Suffix", affix = "of the Underground", "+(3-5) to maximum Fortification", statOrder = { 8672 }, level = 1, group = "FortifyEffect", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "boots", "str_armour", "str_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { }, }, - ["DelveJewelryIncreasedEnergyShieldFromBodyArmour1"] = { type = "Suffix", affix = "of the Underground", "(20-30)% increased Energy Shield from Equipped Body Armour", statOrder = { 8685 }, level = 1, group = "MaximumEnergyShieldFromBodyArmour", weightKey = { "abyss_jewel", "jewel", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 0 }, modTags = { "defences", "energy_shield" }, }, - ["DelveJewelryChanceWhenHitForArmourToBeDoubled1"] = { type = "Suffix", affix = "of the Underground", "20% chance to Defend with 200% of Armour", statOrder = { 5381 }, level = 1, group = "ChanceWhenHitForArmourToBeDoubled", weightKey = { "abyss_jewel", "jewel", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 0 }, modTags = { "defences", "armour" }, }, - ["DelveJewelryChanceToEvade"] = { type = "Suffix", affix = "of the Underground", "+(1-2)% chance to Evade Attack Hits", statOrder = { 5383 }, level = 1, group = "AdditionalChanceToEvade", weightKey = { "abyss_jewel", "jewel", "quiver", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "evasion" }, }, - ["DelveJewelGlobalDefences1"] = { type = "Prefix", affix = "Subterranean", "(4-6)% increased Global Defences", statOrder = { 2707 }, level = 1, group = "AllDefences", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "defences" }, }, - ["DelveWeaponLocalChanceForPoisonDamage100FinalInflictedWithThisWeapon1"] = { type = "Prefix", affix = "Subterranean", "60% chance for Poisons inflicted with this Weapon to deal 100% more Damage", statOrder = { 7477 }, level = 1, group = "LocalChanceForPoisonDamage100FinalInflictedWithThisWeapon", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "attack", "ailment" }, }, - ["DelveWeaponLocalChanceForBleedingDamage100FinalInflictedWithThisWeapon1"] = { type = "Prefix", affix = "Subterranean", "60% chance for Bleeding inflicted with this Weapon to deal 100% more Damage", statOrder = { 7476 }, level = 1, group = "LocalChanceForBleedingDamage100FinalInflictedWithThisWeapon", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, - ["DelveArmourAvoidPoison1"] = { type = "Suffix", affix = "of the Underground", "50% chance to Avoid being Poisoned", statOrder = { 1730 }, level = 1, group = "ChanceToAvoidPoison", weightKey = { "abyss_jewel", "jewel", "shield", "helmet", "boots", "body_armour", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["DelveArmourAvoidBleeding1"] = { type = "Suffix", affix = "of the Underground", "50% chance to Avoid Bleeding", statOrder = { 4077 }, level = 1, group = "ChanceToAvoidBleeding", weightKey = { "abyss_jewel", "jewel", "shield", "helmet", "boots", "body_armour", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["DelveJewelryAilmentDamage1_"] = { type = "Suffix", affix = "of the Underground", "(30-40)% increased Damage with Ailments", statOrder = { 4801 }, level = 1, group = "AilmentDamage", weightKey = { "abyss_jewel", "jewel", "quiver", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "damage", "ailment" }, }, - ["DelveJewelAilmentDamage1__"] = { type = "Suffix", affix = "of the Underground", "(15-20)% increased Damage with Ailments", statOrder = { 4801 }, level = 1, group = "AilmentDamage", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "damage", "ailment" }, }, - ["DelveGlovesAddedPhysicalDamageVsPoisonedEnemies1"] = { type = "Prefix", affix = "Subterranean", "Adds (7-11) to (12-18) Physical Damage against Poisoned Enemies", statOrder = { 8791 }, level = 1, group = "AddedPhysicalDamageVsPoisonedEnemies", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 1600, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["DelveGlovesAddedPhysicalDamageVsBleedingEnemies1"] = { type = "Prefix", affix = "Subterranean", "Adds (7-11) to (12-18) Physical Damage against Bleeding Enemies", statOrder = { 2370 }, level = 1, group = "AddedPhysicalDamageVsBleedingEnemies", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 1600, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["DelveWeaponLocalAttackReduceEnemyElementalResistance1h1"] = { type = "Prefix", affix = "Subterranean", "Attacks with this Weapon Penetrate (9-12)% Elemental Resistances", statOrder = { 3624 }, level = 1, group = "LocalAttackReduceEnemyElementalResistance", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["DelveWeaponElementalDamage1h1"] = { type = "Prefix", affix = "Subterranean", "(40-60)% increased Elemental Damage", statOrder = { 1857 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["DelveWeaponElementalDamage2h1"] = { type = "Prefix", affix = "Subterranean", "(80-120)% increased Elemental Damage", statOrder = { 1857 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["DelveWeaponElementalDamagev2_1h1"] = { type = "Prefix", affix = "Subterranean", "(19-25)% increased Elemental Damage", statOrder = { 1857 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["DelveWeaponElementalDamagev2_1h2_"] = { type = "Prefix", affix = "Subterranean", "(26-32)% increased Elemental Damage", statOrder = { 1857 }, level = 25, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["DelveWeaponElementalDamagev2_1h3"] = { type = "Prefix", affix = "Subterranean", "(33-39)% increased Elemental Damage", statOrder = { 1857 }, level = 50, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["DelveWeaponElementalDamagev2_1h4"] = { type = "Prefix", affix = "Subterranean", "(40-49)% increased Elemental Damage", statOrder = { 1857 }, level = 75, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["DelveWeaponElementalDamagev2_2h1"] = { type = "Prefix", affix = "Subterranean", "(37-50)% increased Elemental Damage", statOrder = { 1857 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["DelveWeaponElementalDamagev2_2h2__"] = { type = "Prefix", affix = "Subterranean", "(51-65)% increased Elemental Damage", statOrder = { 1857 }, level = 25, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["DelveWeaponElementalDamagev2_2h3"] = { type = "Prefix", affix = "Subterranean", "(66-79)% increased Elemental Damage", statOrder = { 1857 }, level = 50, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["DelveWeaponElementalDamagev2_2h4_"] = { type = "Prefix", affix = "Subterranean", "(80-94)% increased Elemental Damage", statOrder = { 1857 }, level = 75, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["DelveArmourElementalAilmentDuration1___"] = { type = "Suffix", affix = "of the Underground", "(20-30)% reduced Elemental Ailment Duration on you", statOrder = { 1748 }, level = 1, group = "SelfStatusAilmentDuration", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "helmet", "gloves", "boots", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 2000, 0 }, modTags = { "elemental", "ailment" }, }, - ["DelveJewelryElementalPenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (3-5)% Elemental Resistances", statOrder = { 2852 }, level = 1, group = "ElementalPenetration", weightKey = { "abyss_jewel", "jewel", "quiver", "amulet", "default", }, weightVal = { 0, 0, 1600, 1600, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["DelveRingElementalDamage1"] = { type = "Suffix", affix = "of the Underground", "(25-30)% increased Elemental Damage", statOrder = { 1857 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "belt", "ring", "default", }, weightVal = { 0, 0, 1600, 1600, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["DelveJewelElementalPenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates 1% Elemental Resistances", statOrder = { 2852 }, level = 1, group = "ElementalPenetration", weightKey = { "abyss_jewel", "jewel", "default", }, weightVal = { 1600, 1600, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["DelveWeaponSocketedSpellsDamageFinal1h1_"] = { type = "Prefix", affix = "Subterranean", "Socketed Skills deal 40% more Spell Damage", statOrder = { 483 }, level = 1, group = "SocketedSpellsDamageFinal", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "caster_damage", "damage", "caster", "gem" }, }, - ["DelveWeaponSocketedSpellsDamageFinal2h1"] = { type = "Prefix", affix = "Subterranean", "Socketed Skills deal 20% more Spell Damage", statOrder = { 483 }, level = 1, group = "SocketedSpellsDamageFinal", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "caster_damage", "damage", "caster", "gem" }, }, - ["DelveBodyArmourSocketedSkillsSupportedByArcaneSurge1_"] = { type = "Suffix", affix = "of the Underground", "Socketed Gems are Supported by Level 1 Arcane Surge", statOrder = { 203 }, level = 1, group = "SupportedByArcaneSurge", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "support", "gem" }, }, - ["DelveGlovesSocketedSkillsCastSpeed1_"] = { type = "Suffix", affix = "of the Underground", "Socketed Skills have 18% increased Cast Speed", statOrder = { 480 }, level = 1, group = "SocketedSkillsCastSpeed", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "caster", "speed", "gem" }, }, - ["DelveArmourSocketedSpellsManaCost1_"] = { type = "Suffix", affix = "of the Underground", "Socketed Spells have 20% reduced Mana Cost", statOrder = { 486 }, level = 1, group = "SocketedSpellsManaCost", weightKey = { "abyss_jewel", "jewel", "shield", "boots", "helmet", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "skill", "resource", "mana", "caster", "gem" }, }, - ["DelveJewelAvoidInterruptionWhileCasting1"] = { type = "Suffix", affix = "of the Underground", "(15-20)% chance to Ignore Stuns while Casting", statOrder = { 1779 }, level = 1, group = "AvoidInterruptionWhileCasting", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { }, }, - ["DelveWeaponSocketedAttacksDamageFinal1h1"] = { type = "Prefix", affix = "Subterranean", "Socketed Skills deal 40% more Attack Damage", statOrder = { 464 }, level = 1, group = "SocketedAttacksDamageFinal", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "skill", "damage", "attack", "gem" }, }, - ["DelveWeaponSocketedAttacksDamageFinal2h1_"] = { type = "Prefix", affix = "Subterranean", "Socketed Skills deal 20% more Attack Damage", statOrder = { 464 }, level = 1, group = "SocketedAttacksDamageFinal", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "skill", "damage", "attack", "gem" }, }, - ["DelveBodyArmourSocketedSkillsSupportedByMaim1"] = { type = "Suffix", affix = "of the Underground", "Socketed Gems are Supported by Level 1 Maim", statOrder = { 272 }, level = 1, group = "SupportedByMaim", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "support", "gem" }, }, - ["DelveGlovesLocalDisplaySocketedSkillsAttackSpeed1"] = { type = "Suffix", affix = "of the Underground", "Socketed Skills have 18% increased Attack Speed", statOrder = { 479 }, level = 1, group = "SocketedSkillsAttackSpeed", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "attack", "speed", "gem" }, }, - ["DelveArmourLocalDisplaySocketedAttacksManaCost1_"] = { type = "Suffix", affix = "of the Underground", "Socketed Attacks have -15 to Total Mana Cost", statOrder = { 467 }, level = 1, group = "SocketedAttacksManaCost", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "boots", "helmet", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 0 }, modTags = { "skill", "resource", "mana", "attack", "gem" }, }, - ["DelveJewelAttackLeech1"] = { type = "Suffix", affix = "of the Underground", "0.3% of Attack Damage Leeched as Life", statOrder = { 1545 }, level = 1, group = "LifeLeechFromAttacksPermyriad", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resource", "life", "attack" }, }, - ["DelveWeaponManaRegeneratedIfYouveHitRecently1h1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.4% of Mana per second if you've Hit an Enemy Recently", statOrder = { 7771 }, level = 1, group = "ManaRegeneratedIfYouveHitRecently", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "resource", "mana" }, }, - ["DelveWeaponManaRegeneratedIfYouveHitRecently2h1_"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.8% of Mana per second if you've Hit an Enemy Recently", statOrder = { 7771 }, level = 1, group = "ManaRegeneratedIfYouveHitRecently", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, }, - ["DelveBodyDamageRemovedFromManaBeforeLife1_"] = { type = "Suffix", affix = "of the Underground", "(5-10)% of Damage is taken from Mana before Life", statOrder = { 2572 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "life", "mana" }, }, - ["DelveBodyDamageRemovedFromManaBeforeLifeNew1"] = { type = "Prefix", affix = "Subterranean", "(5-10)% of Damage is taken from Mana before Life", statOrder = { 2572 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "life", "mana" }, }, - ["DelveBootsManaRegenerationRateWhileMoving1"] = { type = "Suffix", affix = "of the Underground", "(50-70)% increased Mana Regeneration Rate while moving", statOrder = { 7783 }, level = 1, group = "ManaRegenerationRateWhileMoving", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, }, - ["DelveGlovesManaGainPerTarget1"] = { type = "Suffix", affix = "of the Underground", "Gain (2-4) Mana per Enemy Hit with Attacks", statOrder = { 1625 }, level = 1, group = "ManaGainPerTarget", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana", "attack" }, }, - ["DelveHelmBaseManaRegeneration1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.5% of Mana per second", statOrder = { 1463 }, level = 1, group = "BaseManaRegeneration", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, }, - ["DelveAmuletBeltManaRecoveryRate1"] = { type = "Suffix", affix = "of the Underground", "(8-12)% increased Mana Recovery rate", statOrder = { 1468 }, level = 1, group = "ManaRecoveryRate", weightKey = { "abyss_jewel", "jewel", "belt", "amulet", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "resource", "mana" }, }, - ["DelveRingManaCostReduction1"] = { type = "Suffix", affix = "of the Underground", "(4-6)% reduced Mana Cost of Skills", statOrder = { 1764 }, level = 1, group = "ManaCostReduction", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, }, - ["DelveQuiverIncreasedMana1"] = { type = "Suffix", affix = "of the Underground", "(20-30)% increased maximum Mana", statOrder = { 1462 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { "abyss_jewel", "jewel", "quiver", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, }, - ["DelveJewelDamageTakenGainedAsMana1"] = { type = "Suffix", affix = "of the Underground", "(2-3)% of Damage taken Recouped as Mana", statOrder = { 2331 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["DelveWeaponChanceToGainOnslaughtOnKill1h1_"] = { type = "Suffix", affix = "of the Underground", "10% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2865 }, level = 1, group = "ChanceToGainOnslaughtOnKill", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { }, }, - ["DelveWeaponChanceToGainOnslaughtOnKill2h1"] = { type = "Suffix", affix = "of the Underground", "20% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2865 }, level = 1, group = "ChanceToGainOnslaughtOnKill", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { }, }, - ["DelveBodyFrenzyChargeWhenHit1"] = { type = "Suffix", affix = "of the Underground", "(15-20)% chance to gain a Frenzy Charge when Hit", statOrder = { 4386 }, level = 1, group = "FrenzyChargeWhenHit", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "frenzy_charge" }, }, - ["DelveBootsMovementSpeedIfHitRecently1"] = { type = "Suffix", affix = "of the Underground", "(4-6)% increased Movement Speed if you've Hit an Enemy Recently", statOrder = { 8941 }, level = 1, group = "MovementSpeedIfHitRecently", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "speed" }, }, - ["DelveGlovesAttackAndCastSpeedIfHitRecently1"] = { type = "Suffix", affix = "of the Underground", "(5-10)% increased Attack and Cast Speed if you've Hit an Enemy Recently", statOrder = { 4639 }, level = 1, group = "AttackAndCastSpeedIfHitRecently", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "attack", "caster", "speed" }, }, - ["DelveHelmIgnoreArmourMovementPenalties1"] = { type = "Suffix", affix = "of the Underground", "Ignore all Movement Penalties from Armour", statOrder = { 2058 }, level = 1, group = "IgnoreArmourMovementPenalties", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "speed" }, }, - ["DelveAmuletCannotBeChilledOrFrozenWhileMoving1"] = { type = "Suffix", affix = "of the Underground", "Cannot be Chilled or Frozen while moving", statOrder = { 5104 }, level = 1, group = "CannotBeChilledOrFrozenWhileMoving", weightKey = { "abyss_jewel", "jewel", "amulet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["DelveBeltChanceToGainOnslaughtOnFlaskUse1"] = { type = "Suffix", affix = "of the Underground", "(15-20)% chance to gain Onslaught when you use a Flask", statOrder = { 5402 }, level = 1, group = "ChanceToGainOnslaughtOnFlaskUse", weightKey = { "abyss_jewel", "jewel", "belt", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "flask" }, }, - ["DelveRingCannotBeShockedWhileMoving1"] = { type = "Suffix", affix = "of the Underground", "Cannot be Shocked or Ignited while moving", statOrder = { 5120 }, level = 1, group = "CannotBeShockedOrIgnitedWhileMoving", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["DelveQuiverFrenzyChargeOnHittingRareOrUnique1"] = { type = "Suffix", affix = "of the Underground", "(3-5)% chance to gain a Frenzy Charge when you Hit a Rare or Unique Enemy", statOrder = { 6425 }, level = 1, group = "FrenzyChargeOnHittingRareOrUnique", weightKey = { "abyss_jewel", "jewel", "quiver", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "frenzy_charge" }, }, - ["DelveJewelChanceToGainOnslaughtOnFlaskUse1"] = { type = "Suffix", affix = "of the Underground", "(5-10)% chance to gain Onslaught when you use a Flask", statOrder = { 5402 }, level = 1, group = "ChanceToGainOnslaughtOnFlaskUse", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "flask" }, }, - ["DelveWeaponIncreasedDamageFromAuras1h1"] = { type = "Suffix", affix = "of the Underground", "Auras from your Skills grant 2% increased Damage to you and Allies", statOrder = { 3321 }, level = 1, group = "IncreasedDamageFromAuras", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "aura" }, }, - ["DelveWeaponIncreasedDamageFromAuras2h1"] = { type = "Suffix", affix = "of the Underground", "Auras from your Skills grant 4% increased Damage to you and Allies", statOrder = { 3321 }, level = 1, group = "IncreasedDamageFromAuras", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "aura" }, }, - ["DelveWeaponMinionDamage1h1_"] = { type = "Prefix", affix = "Subterranean", "Minions deal (30-44)% increased Damage", statOrder = { 1852 }, level = 1, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, }, - ["DelveWeaponMinionDamage1h2"] = { type = "Prefix", affix = "Subterranean", "Minions deal (45-59)% increased Damage", statOrder = { 1852 }, level = 25, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, }, - ["DelveWeaponMinionDamage1h3___"] = { type = "Prefix", affix = "Subterranean", "Minions deal (60-74)% increased Damage", statOrder = { 1852 }, level = 50, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "damage", "minion" }, }, - ["DelveWeaponMinionDamage1h4"] = { type = "Prefix", affix = "Subterranean", "Minions deal (75-80)% increased Damage", statOrder = { 1852 }, level = 75, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 500, 0 }, modTags = { "damage", "minion" }, }, - ["DelveWeaponMinionDamage2h1"] = { type = "Prefix", affix = "Subterranean", "Minions deal (51-70)% increased Damage", statOrder = { 1852 }, level = 1, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, }, - ["DelveWeaponMinionDamage2h2"] = { type = "Prefix", affix = "Subterranean", "Minions deal (71-90)% increased Damage", statOrder = { 1852 }, level = 25, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, }, - ["DelveWeaponMinionDamage2h3_"] = { type = "Prefix", affix = "Subterranean", "Minions deal (91-110)% increased Damage", statOrder = { 1852 }, level = 50, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "damage", "minion" }, }, - ["DelveWeaponMinionDamage2h4"] = { type = "Prefix", affix = "Subterranean", "Minions deal (111-130)% increased Damage", statOrder = { 1852 }, level = 75, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 500, 0 }, modTags = { "damage", "minion" }, }, - ["DelveGlovesMinionDamage1"] = { type = "Prefix", affix = "Subterranean", "Minions deal (20-30)% increased Damage", statOrder = { 1852 }, level = 1, group = "MinionDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, }, - ["DelveJewelryMinionRunSpeed1"] = { type = "Suffix", affix = "of the Underground", "Minions have (15-30)% increased Movement Speed", statOrder = { 1650 }, level = 74, group = "MinionRunSpeed", weightKey = { "abyss_jewel", "jewel", "quiver", "ring", "amulet", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "speed", "minion" }, }, - ["DelveArmourMinionLife1"] = { type = "Suffix", affix = "of the Underground", "Minions have (20-30)% increased maximum Life", statOrder = { 1647 }, level = 74, group = "MinionLife", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "resource", "life", "minion" }, }, - ["DelveBootsAdditionalSpectre1_"] = { type = "Suffix", affix = "of the Underground", "+1 to Level of all Raise Spectre Gems", statOrder = { 1498 }, level = 1, group = "MinionGlobalSkillLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "minion", "gem" }, }, - ["DelveBodyArmourAuraEffect1_"] = { type = "Suffix", affix = "of the Underground", "(20-25)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3429 }, level = 1, group = "AuraEffect", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "aura" }, }, - ["DelveHelmetReducedManaReserved1"] = { type = "Suffix", affix = "of the Underground", "(8-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 2109 }, level = 1, group = "ReducedReservation", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, }, - ["DelveHelmetManaReservationEfficiency1"] = { type = "Suffix", affix = "of the Underground", "10% increased Mana Reservation Efficiency of Skills", statOrder = { 2105 }, level = 1, group = "ManaReservationEfficiency", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, }, - ["DelveAbyssJewelMinionDamage1"] = { type = "Prefix", affix = "Subterranean", "Minions deal (14-16)% increased Damage", statOrder = { 1852 }, level = 1, group = "MinionDamage", weightKey = { "abyss_jewel", "default", }, weightVal = { 2000, 0 }, modTags = { "damage", "minion" }, }, - ["DelveJewelMinionAttackAndCastSpeed1"] = { type = "Suffix", affix = "of the Underground", "Minions have (4-6)% increased Attack Speed", "Minions have (4-6)% increased Cast Speed", statOrder = { 2781, 2782 }, level = 1, group = "MinionAttackAndCastSpeed", weightKey = { "abyss_jewel", "jewel", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, + ["ChaosResistAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "+(1-3)% to Chaos Resistance", statOrder = { 1552 }, level = 1, group = "ChaosResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "resistance" }, }, + ["ReducedCharacterSizeAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "1% reduced Character Size", statOrder = { 1966 }, level = 1, group = "ActorSize", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["ReducedChillDurationAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Chill Duration on you", statOrder = { 1783 }, level = 1, group = "ReducedChillDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ReducedFreezeDurationAbyssJewelCorrupted_"] = { type = "Corrupted", affix = "", "(3-5)% reduced Freeze Duration on you", statOrder = { 1785 }, level = 1, group = "ReducedFreezeDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ReducedIgniteDurationAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Ignite Duration on you", statOrder = { 1786 }, level = 1, group = "ReducedBurnDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ReducedShockDurationAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Shock Duration on you", statOrder = { 1784 }, level = 1, group = "ReducedShockDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["IncreasedChargeDurationAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-7)% increased Endurance, Frenzy and Power Charge Duration", statOrder = { 2934 }, level = 1, group = "ChargeDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, }, + ["AddedChaosDamageAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "Adds 1 to (2-3) Chaos Damage to Attacks", statOrder = { 1298 }, level = 1, group = "ChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["ChanceToBeCritAbyssJewelCorrupted_"] = { type = "Corrupted", affix = "", "Hits have (60-100)% increased Critical Strike Chance against you", statOrder = { 3040 }, level = 1, group = "ChanceToTakeCriticalStrike", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, }, + ["DamageWhileDeadAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-30)% increased Damage while Dead", statOrder = { 3004 }, level = 1, group = "DamageWhileDead", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, }, + ["VaalSkillDamageAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "(5-10)% increased Damage with Vaal Skills", statOrder = { 3003 }, level = 1, group = "VaalSkillDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "vaal" }, }, + ["ChaosDamagePerCorruptedItemAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "1% increased Chaos Damage for each Corrupted Item Equipped", statOrder = { 3007 }, level = 1, group = "ChaosDamagePerCorruptedItem", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["LifeLeechRatePerCorruptedItemAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "1% increased total Recovery per second from Life Leech for each Corrupted Item Equipped", statOrder = { 3008 }, level = 1, group = "LifeLeechRatePerCorruptedItem", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, + ["ManaLeechRatePerCorruptedItemAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "1% increased total Recovery per second from Mana Leech for each Corrupted Item Equipped", statOrder = { 3010 }, level = 1, group = "ManaLeechRatePerCorrupteditem", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, + ["SilenceImmunityAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "You cannot be Cursed with Silence", statOrder = { 3002 }, level = 1, group = "ImmuneToSilence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, }, + ["V2AvoidIgniteAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid being Ignited", statOrder = { 1757 }, level = 1, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "elemental", "fire", "ailment" }, }, + ["V2AvoidChillAndFreezeAbyssalJewelCorrupted_"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid being Frozen", statOrder = { 1756 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "elemental", "cold", "ailment" }, }, + ["V2AvoidShockAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid being Shocked", statOrder = { 1759 }, level = 1, group = "AvoidShock", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["V2AvoidPoisonAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid being Poisoned", statOrder = { 1760 }, level = 1, group = "ChanceToAvoidPoison", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "poison", "chaos", "ailment" }, }, + ["V2AvoidBleedAbyssalJewelCorrupted_"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid Bleeding", statOrder = { 4123 }, level = 1, group = "ChanceToAvoidBleeding", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["V2AvoidStunAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid being Stunned", statOrder = { 1762 }, level = 1, group = "AvoidStun", weightKey = { "default", }, weightVal = { 1000 }, modTags = { }, }, + ["V2CorruptedBloodImmunityAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "Corrupted Blood cannot be inflicted on you", statOrder = { 5301 }, level = 33, group = "CorruptedBloodImmunity", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "bleed", "physical", "ailment" }, }, + ["V2HinderImmunityAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "You cannot be Hindered", statOrder = { 10435 }, level = 40, group = "YouCannotBeHindered", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "blue_herring" }, }, + ["V2IncreasedAilmentEffectOnEnemiesAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "(5-7)% increased Effect of Non-Damaging Ailments", statOrder = { 9296 }, level = 1, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "ailment" }, }, + ["V2IncreasedAreaOfEffectAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "(4-5)% increased Area of Effect", statOrder = { 1791 }, level = 1, group = "AreaOfEffect", weightKey = { "default", }, weightVal = { 1000 }, modTags = { }, }, + ["V2IncreasedCriticalStrikeChanceAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "(8-10)% increased Global Critical Strike Chance", statOrder = { 1370 }, level = 1, group = "CriticalStrikeChance", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "critical" }, }, + ["V2IncreasedDamageAbyssJewelCorrupted_"] = { type = "Corrupted", affix = "", "(4-5)% increased Damage", statOrder = { 1103 }, level = 1, group = "IncreasedDamage", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "damage" }, }, + ["V2MaimImmunityCorrupted_"] = { type = "Corrupted", affix = "", "You cannot be Maimed", statOrder = { 4843 }, level = 40, group = "AvoidMaimChance", weightKey = { "default", }, weightVal = { 1000 }, modTags = { }, }, + ["V2MinionDamageCorrupted__"] = { type = "Corrupted", affix = "", "Minions deal (4-5)% increased Damage", statOrder = { 1882 }, level = 1, group = "MinionDamage", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "damage", "minion" }, }, + ["V2ReducedManaReservationCorrupted_"] = { type = "Corrupted", affix = "", "2% increased Reservation Efficiency of Skills", statOrder = { 2142 }, level = 1, group = "ReducedReservationForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["V2ReducedManaReservationCorruptedEfficiency_____"] = { type = "Corrupted", affix = "", "2% increased Reservation Efficiency of Skills", statOrder = { 2139 }, level = 1, group = "ReservationEfficiencyForJewel", weightKey = { "default", }, weightVal = { 1000 }, modTags = { }, }, + ["V2SilenceImmunityJewelCorrupted__"] = { type = "Corrupted", affix = "", "You cannot be Cursed with Silence", statOrder = { 3002 }, level = 60, group = "ImmuneToSilence", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "caster", "curse" }, }, + ["V2FirePenetrationAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "Damage Penetrates 1% Fire Resistance", statOrder = { 2890 }, level = 1, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["V2ColdPenetrationAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "Damage Penetrates 1% Cold Resistance", statOrder = { 2892 }, level = 1, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["V2LightningPenetrationAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "Damage Penetrates 1% Lightning Resistance", statOrder = { 2893 }, level = 1, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["V2ElementalPenetrationAbyssalJewelCorrupted_"] = { type = "Corrupted", affix = "", "Damage Penetrates 1% Elemental Resistances", statOrder = { 2889 }, level = 1, group = "ElementalPenetration", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["V2ArmourPenetrationAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "Hits have (10-15)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7037 }, level = 1, group = "ChanceToIgnoreEnemyArmour", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "physical" }, }, + ["AbyssJewelAddedLife1"] = { type = "Prefix", affix = "Hale", "+(21-25) to maximum Life", statOrder = { 1480 }, level = 1, group = "AbyssJewelLife", weightKey = { "default", }, weightVal = { 3000 }, modTags = { "resource", "life" }, }, + ["AbyssJewelAddedLife2"] = { type = "Prefix", affix = "Healthy", "+(26-30) to maximum Life", statOrder = { 1480 }, level = 35, group = "AbyssJewelLife", weightKey = { "default", }, weightVal = { 3000 }, modTags = { "resource", "life" }, }, + ["AbyssJewelAddedLife3"] = { type = "Prefix", affix = "Sanguine", "+(31-35) to maximum Life", statOrder = { 1480 }, level = 74, group = "AbyssJewelLife", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "resource", "life" }, }, + ["AbyssJewelAddedLife4"] = { type = "Prefix", affix = "Stalwart", "+(36-40) to maximum Life", statOrder = { 1480 }, level = 82, group = "AbyssJewelLife", weightKey = { "default", }, weightVal = { 500 }, modTags = { "resource", "life" }, }, + ["AbyssJewelAddedMana1"] = { type = "Prefix", affix = "Beryl", "+(21-25) to maximum Mana", statOrder = { 1490 }, level = 1, group = "AbyssJewelMana", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "resource", "mana" }, }, + ["AbyssJewelAddedMana2"] = { type = "Prefix", affix = "Cobalt", "+(26-30) to maximum Mana", statOrder = { 1490 }, level = 40, group = "AbyssJewelMana", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "resource", "mana" }, }, + ["AbyssJewelAddedMana3"] = { type = "Prefix", affix = "Azure", "+(31-35) to maximum Mana", statOrder = { 1490 }, level = 75, group = "AbyssJewelMana", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "resource", "mana" }, }, + ["AbyssJewelAddedMana4"] = { type = "Prefix", affix = "Sapphire", "+(36-40) to maximum Mana", statOrder = { 1490 }, level = 83, group = "AbyssJewelMana", weightKey = { "default", }, weightVal = { 500 }, modTags = { "resource", "mana" }, }, + ["AbyssJewelChillEffect1_"] = { type = "Suffix", affix = "of Chilling", "(10-15)% increased Effect of Cold Ailments", statOrder = { 5695 }, level = 30, group = "AbyssJewelChillEffect", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 0, 500 }, modTags = { "elemental", "cold", "ailment" }, }, + ["AbyssJewelShockEffect1"] = { type = "Suffix", affix = "of Shocking", "(10-15)% increased Effect of Lightning Ailments", statOrder = { 7293 }, level = 30, group = "AbyssJewelShockEffect", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 0, 500 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["AbyssStrengthJewel1_"] = { type = "Suffix", affix = "of Strength", "+(12-16) to Strength", statOrder = { 1089 }, level = 1, group = "StrengthForJewel", weightKey = { "default", }, weightVal = { 500 }, modTags = { "attribute" }, }, + ["AbyssDexterityJewel1_"] = { type = "Suffix", affix = "of Dexterity", "+(12-16) to Dexterity", statOrder = { 1090 }, level = 1, group = "DexterityForJewel", weightKey = { "default", }, weightVal = { 500 }, modTags = { "attribute" }, }, + ["AbyssIntelligenceJewel1"] = { type = "Suffix", affix = "of Intelligence", "+(12-16) to Intelligence", statOrder = { 1091 }, level = 1, group = "IntelligenceForJewel", weightKey = { "default", }, weightVal = { 500 }, modTags = { "attribute" }, }, + ["AbyssStrengthDexterityJewel1"] = { type = "Suffix", affix = "of Athletics", "+(8-10) to Strength and Dexterity", statOrder = { 1092 }, level = 1, group = "StrengthDexterityForJewel", weightKey = { "default", }, weightVal = { 500 }, modTags = { "attribute" }, }, + ["AbyssStrengthIntelligenceJewel1_"] = { type = "Suffix", affix = "of Spirit", "+(8-10) to Strength and Intelligence", statOrder = { 1093 }, level = 1, group = "StrengthIntelligenceForJewel", weightKey = { "default", }, weightVal = { 500 }, modTags = { "attribute" }, }, + ["AbyssDexterityIntelligenceJewel1"] = { type = "Suffix", affix = "of Cunning", "+(8-10) to Dexterity and Intelligence", statOrder = { 1094 }, level = 1, group = "DexterityIntelligenceForJewel", weightKey = { "default", }, weightVal = { 500 }, modTags = { "attribute" }, }, + ["AbyssAllAttributesJewel1"] = { type = "Suffix", affix = "of Adaption", "+(6-8) to all Attributes", statOrder = { 1088 }, level = 1, group = "AllAttributesForJewel", weightKey = { "default", }, weightVal = { 250 }, modTags = { "attribute" }, }, + ["AbyssFireResistanceJewel1"] = { type = "Suffix", affix = "of the Dragon", "+(12-15)% to Fire Resistance", statOrder = { 1536 }, level = 1, group = "FireResistanceForJewel", weightKey = { "default", }, weightVal = { 400 }, modTags = { "elemental", "fire", "resistance" }, }, + ["AbyssColdResistanceJewel1"] = { type = "Suffix", affix = "of the Beast", "+(12-15)% to Cold Resistance", statOrder = { 1542 }, level = 1, group = "ColdResistanceForJewel", weightKey = { "default", }, weightVal = { 400 }, modTags = { "elemental", "cold", "resistance" }, }, + ["AbyssLightningResistanceJewel1"] = { type = "Suffix", affix = "of Grounding", "+(12-15)% to Lightning Resistance", statOrder = { 1547 }, level = 1, group = "LightningResistanceForJewel", weightKey = { "default", }, weightVal = { 400 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["AbyssFireColdResistanceJewel1"] = { type = "Suffix", affix = "of the Hearth", "+(10-12)% to Fire and Cold Resistances", statOrder = { 2708 }, level = 1, group = "FireColdResistanceForJewel", weightKey = { "default", }, weightVal = { 250 }, modTags = { "elemental", "fire", "cold", "resistance" }, }, + ["AbyssFireLightningResistanceJewel1"] = { type = "Suffix", affix = "of Insulation", "+(10-12)% to Fire and Lightning Resistances", statOrder = { 2709 }, level = 1, group = "FireLightningResistanceForJewel", weightKey = { "default", }, weightVal = { 250 }, modTags = { "elemental", "fire", "lightning", "resistance" }, }, + ["AbyssColdLightningResistanceJewel1"] = { type = "Suffix", affix = "of Shelter", "+(10-12)% to Cold and Lightning Resistances", statOrder = { 2710 }, level = 1, group = "ColdLightningResistanceForJewel", weightKey = { "default", }, weightVal = { 250 }, modTags = { "elemental", "cold", "lightning", "resistance" }, }, + ["AbyssAllResistancesJewel1"] = { type = "Suffix", affix = "of Resistance", "+(8-10)% to all Elemental Resistances", statOrder = { 1530 }, level = 1, group = "AllResistancesForJewel", weightKey = { "default", }, weightVal = { 200 }, modTags = { "elemental", "resistance" }, }, + ["AbyssChaosResistanceJewel1"] = { type = "Suffix", affix = "of Order", "+(7-13)% to Chaos Resistance", statOrder = { 1552 }, level = 1, group = "ChaosResistanceForJewel", weightKey = { "default", }, weightVal = { 100 }, modTags = { "chaos", "resistance" }, }, + ["AbyssAttackSpeedJewel1_"] = { type = "Suffix", affix = "of Berserking", "(3-5)% increased Attack Speed", statOrder = { 1321 }, level = 50, group = "IncreasedAttackSpeedForJewel", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 750, 750, 0 }, modTags = { "attack", "speed" }, }, + ["AbyssCastSpeedJewel1"] = { type = "Suffix", affix = "of Enchanting", "(2-4)% increased Cast Speed", statOrder = { 1357 }, level = 50, group = "IncreasedCastSpeedForJewel", weightKey = { "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 750, 750, 0 }, modTags = { "caster", "speed" }, }, + ["AbyssCriticalStrikeChanceJewel1"] = { type = "Suffix", affix = "of Menace", "(8-12)% increased Global Critical Strike Chance", statOrder = { 1370 }, level = 50, group = "CritChanceForJewel", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 0, 900 }, modTags = { "critical" }, }, + ["AbyssCriticalStrikeMultiplierJewel1"] = { type = "Suffix", affix = "of Potency", "+(9-12)% to Global Critical Strike Multiplier", statOrder = { 1399 }, level = 50, group = "CritMultiplierForJewel", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 0, 900 }, modTags = { "damage", "critical" }, }, + ["AbyssDamageOverTimeWhileDualWieldingJewel1"] = { type = "Prefix", affix = "Degenerative", "(10-14)% increased Damage over Time while Dual Wielding", statOrder = { 2044 }, level = 1, group = "DamageOverTimeWhileDualWielding", weightKey = { "abyss_jewel_summoner", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 600, 300 }, modTags = { "damage" }, }, + ["AbyssDamageOverTimeWhileDualWieldingJewel2"] = { type = "Prefix", affix = "Deleterious", "(15-18)% increased Damage over Time while Dual Wielding", statOrder = { 2044 }, level = 60, group = "DamageOverTimeWhileDualWielding", weightKey = { "abyss_jewel_summoner", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 200, 100 }, modTags = { "damage" }, }, + ["AbyssDamageOverTimeWhileWieldingTwoHandedWeaponJewel1"] = { type = "Prefix", affix = "Degenerative", "(10-14)% increased Damage over Time while wielding a Two Handed Weapon", statOrder = { 2046 }, level = 1, group = "DamageOverTimeWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_summoner", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 900, 450 }, modTags = { "damage" }, }, + ["AbyssDamageOverTimeWhileWieldingTwoHandedWeaponJewel2"] = { type = "Prefix", affix = "Deleterious", "(15-18)% increased Damage over Time while wielding a Two Handed Weapon", statOrder = { 2046 }, level = 60, group = "DamageOverTimeWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_summoner", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 300, 150 }, modTags = { "damage" }, }, + ["AbyssDamageOverTimeWhileHoldingAShieldJewel1_"] = { type = "Prefix", affix = "Degenerative", "(10-14)% increased Damage over Time while holding a Shield", statOrder = { 2045 }, level = 1, group = "DamageOverTimeWhileHoldingAShield", weightKey = { "abyss_jewel_summoner", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 600, 300 }, modTags = { "damage" }, }, + ["AbyssDamageOverTimeWhileHoldingAShieldJewel2_"] = { type = "Prefix", affix = "Deleterious", "(15-18)% increased Damage over Time while holding a Shield", statOrder = { 2045 }, level = 60, group = "DamageOverTimeWhileHoldingAShield", weightKey = { "abyss_jewel_summoner", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 200, 100 }, modTags = { "damage" }, }, + ["AbyssMinionAddedFireDamageJewel1"] = { type = "Prefix", affix = "Heated", "Minions deal (3-6) to (8-11) additional Fire Damage", statOrder = { 3679 }, level = 1, group = "MinionAddedFireDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "minion" }, }, + ["AbyssMinionAddedFireDamageJewel2"] = { type = "Prefix", affix = "Flaming", "Minions deal (11-14) to (17-20) additional Fire Damage", statOrder = { 3679 }, level = 39, group = "MinionAddedFireDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "minion" }, }, + ["AbyssMinionAddedFireDamageJewel3"] = { type = "Prefix", affix = "Scorching", "Minions deal (15-18) to (21-24) additional Fire Damage", statOrder = { 3679 }, level = 48, group = "MinionAddedFireDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "minion" }, }, + ["AbyssMinionAddedFireDamageJewel4_"] = { type = "Prefix", affix = "Incinerating", "Minions deal (20-23) to (26-32) additional Fire Damage", statOrder = { 3679 }, level = 58, group = "MinionAddedFireDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "minion" }, }, + ["AbyssMinionAddedFireDamageJewel5"] = { type = "Prefix", affix = "Blasting", "Minions deal (24-27) to (33-36) additional Fire Damage", statOrder = { 3679 }, level = 70, group = "MinionAddedFireDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "minion" }, }, + ["AbyssMinionAddedFireDamageJewel6_"] = { type = "Prefix", affix = "Cremating", "Minions deal (29-35) to (42-51) additional Fire Damage", statOrder = { 3679 }, level = 82, group = "MinionAddedFireDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 175, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "minion" }, }, + ["AbyssMinionAddedColdDamageJewel1"] = { type = "Prefix", affix = "Frosted", "Minions deal (3-6) to (8-11) additional Cold Damage", statOrder = { 3678 }, level = 1, group = "MinionAddedColdDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "minion" }, }, + ["AbyssMinionAddedColdDamageJewel2"] = { type = "Prefix", affix = "Freezing", "Minions deal (11-14) to (17-20) additional Cold Damage", statOrder = { 3678 }, level = 39, group = "MinionAddedColdDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "minion" }, }, + ["AbyssMinionAddedColdDamageJewel3"] = { type = "Prefix", affix = "Frozen", "Minions deal (15-18) to (21-24) additional Cold Damage", statOrder = { 3678 }, level = 48, group = "MinionAddedColdDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "minion" }, }, + ["AbyssMinionAddedColdDamageJewel4"] = { type = "Prefix", affix = "Glaciated", "Minions deal (20-23) to (26-32) additional Cold Damage", statOrder = { 3678 }, level = 58, group = "MinionAddedColdDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "minion" }, }, + ["AbyssMinionAddedColdDamageJewel5"] = { type = "Prefix", affix = "Polar", "Minions deal (24-27) to (33-36) additional Cold Damage", statOrder = { 3678 }, level = 70, group = "MinionAddedColdDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "minion" }, }, + ["AbyssMinionAddedColdDamageJewel6_"] = { type = "Prefix", affix = "Entombing", "Minions deal (29-35) to (42-51) additional Cold Damage", statOrder = { 3678 }, level = 82, group = "MinionAddedColdDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 175, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "minion" }, }, + ["AbyssMinionAddedLightningDamageJewel1_"] = { type = "Prefix", affix = "Humming", "Minions deal 1 to (9-15) additional Lightning Damage", statOrder = { 3680 }, level = 1, group = "MinionAddedLightningDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "minion" }, }, + ["AbyssMinionAddedLightningDamageJewel2"] = { type = "Prefix", affix = "Sparking", "Minions deal (1-2) to (26-32) additional Lightning Damage", statOrder = { 3680 }, level = 39, group = "MinionAddedLightningDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "minion" }, }, + ["AbyssMinionAddedLightningDamageJewel3_"] = { type = "Prefix", affix = "Arcing", "Minions deal (1-3) to (33-39) additional Lightning Damage", statOrder = { 3680 }, level = 48, group = "MinionAddedLightningDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "minion" }, }, + ["AbyssMinionAddedLightningDamageJewel4"] = { type = "Prefix", affix = "Shocking", "Minions deal (1-4) to (44-50) additional Lightning Damage", statOrder = { 3680 }, level = 58, group = "MinionAddedLightningDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "minion" }, }, + ["AbyssMinionAddedLightningDamageJewel5"] = { type = "Prefix", affix = "Discharging", "Minions deal (1-5) to (51-54) additional Lightning Damage", statOrder = { 3680 }, level = 70, group = "MinionAddedLightningDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "minion" }, }, + ["AbyssMinionAddedLightningDamageJewel6"] = { type = "Prefix", affix = "Electrocuting", "Minions deal (1-6) to (65-77) additional Lightning Damage", statOrder = { 3680 }, level = 82, group = "MinionAddedLightningDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 175, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "minion" }, }, + ["AbyssMinionAddedPhysicalDamageJewel1"] = { type = "Prefix", affix = "Glinting", "Minions deal (2-3) to (5-8) additional Physical Damage", statOrder = { 3681 }, level = 1, group = "MinionAddedPhysicalDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "physical_damage", "damage", "physical", "minion" }, }, + ["AbyssMinionAddedPhysicalDamageJewel2"] = { type = "Prefix", affix = "Gleaming", "Minions deal (5-8) to (11-14) additional Physical Damage", statOrder = { 3681 }, level = 42, group = "MinionAddedPhysicalDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "physical_damage", "damage", "physical", "minion" }, }, + ["AbyssMinionAddedPhysicalDamageJewel3"] = { type = "Prefix", affix = "Annealed", "Minions deal (9-12) to (15-18) additional Physical Damage", statOrder = { 3681 }, level = 54, group = "MinionAddedPhysicalDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "physical_damage", "damage", "physical", "minion" }, }, + ["AbyssMinionAddedPhysicalDamageJewel4"] = { type = "Prefix", affix = "Razor-sharp", "Minions deal (14-17) to (20-23) additional Physical Damage", statOrder = { 3681 }, level = 63, group = "MinionAddedPhysicalDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "physical_damage", "damage", "physical", "minion" }, }, + ["AbyssMinionAddedPhysicalDamageJewel5"] = { type = "Prefix", affix = "Tempered", "Minions deal (18-21) to (24-27) additional Physical Damage", statOrder = { 3681 }, level = 72, group = "MinionAddedPhysicalDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 350, 0 }, modTags = { "physical_damage", "damage", "physical", "minion" }, }, + ["AbyssMinionAddedPhysicalDamageJewel6"] = { type = "Prefix", affix = "Flaring", "Minions deal (23-26) to (33-39) additional Physical Damage", statOrder = { 3681 }, level = 83, group = "MinionAddedPhysicalDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 175, 0 }, modTags = { "physical_damage", "damage", "physical", "minion" }, }, + ["AbyssMinionAddedChaosDamageJewel1"] = { type = "Prefix", affix = "Tainted", "Minions deal (2-3) to (5-8) additional Chaos Damage", statOrder = { 3677 }, level = 1, group = "MinionAddedChaosDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "chaos_damage", "damage", "chaos", "minion" }, }, + ["AbyssMinionAddedChaosDamageJewel2_"] = { type = "Prefix", affix = "Clouded", "Minions deal (5-8) to (11-14) additional Chaos Damage", statOrder = { 3677 }, level = 42, group = "MinionAddedChaosDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "chaos_damage", "damage", "chaos", "minion" }, }, + ["AbyssMinionAddedChaosDamageJewel3"] = { type = "Prefix", affix = "Darkened", "Minions deal (9-12) to (15-18) additional Chaos Damage", statOrder = { 3677 }, level = 54, group = "MinionAddedChaosDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "chaos_damage", "damage", "chaos", "minion" }, }, + ["AbyssMinionAddedChaosDamageJewel4"] = { type = "Prefix", affix = "Malignant", "Minions deal (14-17) to (20-23) additional Chaos Damage", statOrder = { 3677 }, level = 65, group = "MinionAddedChaosDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "chaos_damage", "damage", "chaos", "minion" }, }, + ["AbyssMinionAddedChaosDamageJewel5_"] = { type = "Prefix", affix = "Vile", "Minions deal (18-21) to (24-27) additional Chaos Damage", statOrder = { 3677 }, level = 75, group = "MinionAddedChaosDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 350, 0 }, modTags = { "chaos_damage", "damage", "chaos", "minion" }, }, + ["AbyssMinionAddedChaosDamageJewel6"] = { type = "Prefix", affix = "Malicious", "Minions deal (23-26) to (33-39) additional Chaos Damage", statOrder = { 3677 }, level = 84, group = "MinionAddedChaosDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 175, 0 }, modTags = { "chaos_damage", "damage", "chaos", "minion" }, }, + ["AbyssSpellAddedFireDamageWhileDualWieldingJewel1"] = { type = "Prefix", affix = "Heated", "(2-4) to (5-7) Added Spell Fire Damage while Dual Wielding", statOrder = { 2021 }, level = 1, group = "SpellAddedFireDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["AbyssSpellAddedFireDamageWhileDualWieldingJewel2"] = { type = "Prefix", affix = "Flaming", "(7-9) to (11-13) Added Spell Fire Damage while Dual Wielding", statOrder = { 2021 }, level = 39, group = "SpellAddedFireDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["AbyssSpellAddedFireDamageWhileDualWieldingJewel3"] = { type = "Prefix", affix = "Scorching", "(10-12) to (14-16) Added Spell Fire Damage while Dual Wielding", statOrder = { 2021 }, level = 48, group = "SpellAddedFireDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["AbyssSpellAddedFireDamageWhileDualWieldingJewel4"] = { type = "Prefix", affix = "Incinerating", "(13-15) to (17-21) Added Spell Fire Damage while Dual Wielding", statOrder = { 2021 }, level = 58, group = "SpellAddedFireDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["AbyssSpellAddedFireDamageWhileDualWieldingJewel5_"] = { type = "Prefix", affix = "Blasting", "(16-18) to (22-24) Added Spell Fire Damage while Dual Wielding", statOrder = { 2021 }, level = 70, group = "SpellAddedFireDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 350, 0, 0, 125, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["AbyssSpellAddedFireDamageWhileDualWieldingJewel6"] = { type = "Prefix", affix = "Cremating", "(19-25) to (26-34) Added Spell Fire Damage while Dual Wielding", statOrder = { 2021 }, level = 82, group = "SpellAddedFireDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 175, 0, 0, 62, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["AbyssSpellAddedColdDamageWhileDualWieldingJewel1"] = { type = "Prefix", affix = "Frosted", "(2-4) to (5-7) Added Spell Cold Damage while Dual Wielding", statOrder = { 2018 }, level = 1, group = "SpellAddedColdDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["AbyssSpellAddedColdDamageWhileDualWieldingJewel2"] = { type = "Prefix", affix = "Freezing", "(7-9) to (11-13) Added Spell Cold Damage while Dual Wielding", statOrder = { 2018 }, level = 39, group = "SpellAddedColdDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["AbyssSpellAddedColdDamageWhileDualWieldingJewel3"] = { type = "Prefix", affix = "Frozen", "(10-12) to (14-16) Added Spell Cold Damage while Dual Wielding", statOrder = { 2018 }, level = 48, group = "SpellAddedColdDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["AbyssSpellAddedColdDamageWhileDualWieldingJewel4__"] = { type = "Prefix", affix = "Glaciated", "(13-15) to (17-21) Added Spell Cold Damage while Dual Wielding", statOrder = { 2018 }, level = 58, group = "SpellAddedColdDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["AbyssSpellAddedColdDamageWhileDualWieldingJewel5"] = { type = "Prefix", affix = "Polar", "(16-18) to (22-24) Added Spell Cold Damage while Dual Wielding", statOrder = { 2018 }, level = 70, group = "SpellAddedColdDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 350, 0, 0, 125, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["AbyssSpellAddedColdDamageWhileDualWieldingJewel6"] = { type = "Prefix", affix = "Entombing", "(19-25) to (26-34) Added Spell Cold Damage while Dual Wielding", statOrder = { 2018 }, level = 82, group = "SpellAddedColdDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 175, 0, 0, 62, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["AbyssSpellAddedLightningDamageWhileDualWieldingJewel1"] = { type = "Prefix", affix = "Humming", "1 to (6-10) Added Spell Lightning Damage while Dual Wielding", statOrder = { 2024 }, level = 1, group = "SpellAddedLightningDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["AbyssSpellAddedLightningDamageWhileDualWieldingJewel2"] = { type = "Prefix", affix = "Sparking", "(1-2) to (17-21) Added Spell Lightning Damage while Dual Wielding", statOrder = { 2024 }, level = 39, group = "SpellAddedLightningDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["AbyssSpellAddedLightningDamageWhileDualWieldingJewel3"] = { type = "Prefix", affix = "Arcing", "(1-3) to (22-26) Added Spell Lightning Damage while Dual Wielding", statOrder = { 2024 }, level = 48, group = "SpellAddedLightningDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["AbyssSpellAddedLightningDamageWhileDualWieldingJewel4"] = { type = "Prefix", affix = "Shocking", "(1-4) to (29-33) Added Spell Lightning Damage while Dual Wielding", statOrder = { 2024 }, level = 58, group = "SpellAddedLightningDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["AbyssSpellAddedLightningDamageWhileDualWieldingJewel5_"] = { type = "Prefix", affix = "Discharging", "(1-5) to (34-36) Added Spell Lightning Damage while Dual Wielding", statOrder = { 2024 }, level = 70, group = "SpellAddedLightningDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 350, 0, 0, 125, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["AbyssSpellAddedLightningDamageWhileDualWieldingJewel6"] = { type = "Prefix", affix = "Electrocuting", "(1-6) to (43-51) Added Spell Lightning Damage while Dual Wielding", statOrder = { 2024 }, level = 82, group = "SpellAddedLightningDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 175, 0, 0, 62, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["AbyssSpellAddedPhysicalDamageWhileDualWieldingJewel1"] = { type = "Prefix", affix = "Glinting", "(1-2) to (3-5) Added Spell Physical Damage while Dual Wielding", statOrder = { 2027 }, level = 1, group = "SpellAddedPhysicalDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["AbyssSpellAddedPhysicalDamageWhileDualWieldingJewel2"] = { type = "Prefix", affix = "Gleaming", "(3-5) to (7-9) Added Spell Physical Damage while Dual Wielding", statOrder = { 2027 }, level = 42, group = "SpellAddedPhysicalDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["AbyssSpellAddedPhysicalDamageWhileDualWieldingJewel3"] = { type = "Prefix", affix = "Annealed", "(6-8) to (10-12) Added Spell Physical Damage while Dual Wielding", statOrder = { 2027 }, level = 54, group = "SpellAddedPhysicalDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["AbyssSpellAddedPhysicalDamageWhileDualWieldingJewel4"] = { type = "Prefix", affix = "Razor-sharp", "(9-11) to (13-15) Added Spell Physical Damage while Dual Wielding", statOrder = { 2027 }, level = 63, group = "SpellAddedPhysicalDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["AbyssSpellAddedPhysicalDamageWhileDualWieldingJewel5"] = { type = "Prefix", affix = "Tempered", "(12-14) to (15-17) Added Spell Physical Damage while Dual Wielding", statOrder = { 2027 }, level = 72, group = "SpellAddedPhysicalDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 350, 0, 0, 125, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["AbyssSpellAddedPhysicalDamageWhileDualWieldingJewel6"] = { type = "Prefix", affix = "Flaring", "(15-17) to (20-24) Added Spell Physical Damage while Dual Wielding", statOrder = { 2027 }, level = 83, group = "SpellAddedPhysicalDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 175, 0, 0, 62, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["AbyssSpellAddedChaosDamageWhileDualWieldingJewel1"] = { type = "Prefix", affix = "Tainted", "(1-2) to (3-5) Added Spell Chaos Damage while Dual Wielding", statOrder = { 2015 }, level = 1, group = "SpellAddedChaosDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["AbyssSpellAddedChaosDamageWhileDualWieldingJewel2"] = { type = "Prefix", affix = "Clouded", "(3-5) to (7-9) Added Spell Chaos Damage while Dual Wielding", statOrder = { 2015 }, level = 42, group = "SpellAddedChaosDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["AbyssSpellAddedChaosDamageWhileDualWieldingJewel3"] = { type = "Prefix", affix = "Darkened", "(6-8) to (10-12) Added Spell Chaos Damage while Dual Wielding", statOrder = { 2015 }, level = 54, group = "SpellAddedChaosDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["AbyssSpellAddedChaosDamageWhileDualWieldingJewel4"] = { type = "Prefix", affix = "Malignant", "(9-11) to (13-15) Added Spell Chaos Damage while Dual Wielding", statOrder = { 2015 }, level = 65, group = "SpellAddedChaosDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["AbyssSpellAddedChaosDamageWhileDualWieldingJewel5"] = { type = "Prefix", affix = "Vile", "(12-14) to (15-17) Added Spell Chaos Damage while Dual Wielding", statOrder = { 2015 }, level = 75, group = "SpellAddedChaosDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 350, 0, 0, 125, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["AbyssSpellAddedChaosDamageWhileDualWieldingJewel6"] = { type = "Prefix", affix = "Malicious", "(15-17) to (20-24) Added Spell Chaos Damage while Dual Wielding", statOrder = { 2015 }, level = 84, group = "SpellAddedChaosDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 175, 0, 0, 62, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["AbyssSpellAddedFireDamageWhileWieldingTwoHandedWeaponJewel1"] = { type = "Prefix", affix = "Heated", "(2-4) to (5-7) Added Spell Fire Damage while wielding a Two Handed Weapon", statOrder = { 2023 }, level = 1, group = "SpellAddedFireDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["AbyssSpellAddedFireDamageWhileWieldingTwoHandedWeaponJewel2"] = { type = "Prefix", affix = "Flaming", "(7-9) to (11-13) Added Spell Fire Damage while wielding a Two Handed Weapon", statOrder = { 2023 }, level = 39, group = "SpellAddedFireDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["AbyssSpellAddedFireDamageWhileWieldingTwoHandedWeaponJewel3_"] = { type = "Prefix", affix = "Scorching", "(10-12) to (14-16) Added Spell Fire Damage while wielding a Two Handed Weapon", statOrder = { 2023 }, level = 48, group = "SpellAddedFireDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["AbyssSpellAddedFireDamageWhileWieldingTwoHandedWeaponJewel4"] = { type = "Prefix", affix = "Incinerating", "(13-15) to (17-21) Added Spell Fire Damage while wielding a Two Handed Weapon", statOrder = { 2023 }, level = 58, group = "SpellAddedFireDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["AbyssSpellAddedFireDamageWhileWieldingTwoHandedWeaponJewel5"] = { type = "Prefix", affix = "Blasting", "(16-18) to (22-24) Added Spell Fire Damage while wielding a Two Handed Weapon", statOrder = { 2023 }, level = 70, group = "SpellAddedFireDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 350, 0, 125, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["AbyssSpellAddedFireDamageWhileWieldingTwoHandedWeaponJewel6"] = { type = "Prefix", affix = "Cremating", "(19-25) to (26-34) Added Spell Fire Damage while wielding a Two Handed Weapon", statOrder = { 2023 }, level = 82, group = "SpellAddedFireDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 175, 0, 62, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["AbyssSpellAddedColdDamageWhileWieldingTwoHandedWeaponJewel1"] = { type = "Prefix", affix = "Frosted", "(2-4) to (5-7) Added Spell Cold Damage while wielding a Two Handed Weapon", statOrder = { 2020 }, level = 1, group = "SpellAddedColdDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["AbyssSpellAddedColdDamageWhileWieldingTwoHandedWeaponJewel2"] = { type = "Prefix", affix = "Freezing", "(7-9) to (11-13) Added Spell Cold Damage while wielding a Two Handed Weapon", statOrder = { 2020 }, level = 39, group = "SpellAddedColdDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["AbyssSpellAddedColdDamageWhileWieldingTwoHandedWeaponJewel3"] = { type = "Prefix", affix = "Frozen", "(10-12) to (14-16) Added Spell Cold Damage while wielding a Two Handed Weapon", statOrder = { 2020 }, level = 48, group = "SpellAddedColdDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["AbyssSpellAddedColdDamageWhileWieldingTwoHandedWeaponJewel4"] = { type = "Prefix", affix = "Glaciated", "(13-15) to (17-21) Added Spell Cold Damage while wielding a Two Handed Weapon", statOrder = { 2020 }, level = 58, group = "SpellAddedColdDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["AbyssSpellAddedColdDamageWhileWieldingTwoHandedWeaponJewel5"] = { type = "Prefix", affix = "Polar", "(16-18) to (22-24) Added Spell Cold Damage while wielding a Two Handed Weapon", statOrder = { 2020 }, level = 70, group = "SpellAddedColdDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 350, 0, 125, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["AbyssSpellAddedColdDamageWhileWieldingTwoHandedWeaponJewel6"] = { type = "Prefix", affix = "Entombing", "(19-25) to (26-34) Added Spell Cold Damage while wielding a Two Handed Weapon", statOrder = { 2020 }, level = 82, group = "SpellAddedColdDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 175, 0, 62, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["AbyssSpellAddedLightningDamageWhileWieldingTwoHandedWeaponJewel1"] = { type = "Prefix", affix = "Humming", "1 to (6-10) Added Spell Lightning Damage while wielding a Two Handed Weapon", statOrder = { 2026 }, level = 1, group = "SpellAddedLightningDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["AbyssSpellAddedLightningDamageWhileWieldingTwoHandedWeaponJewel2"] = { type = "Prefix", affix = "Sparking", "(1-2) to (17-21) Added Spell Lightning Damage while wielding a Two Handed Weapon", statOrder = { 2026 }, level = 39, group = "SpellAddedLightningDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["AbyssSpellAddedLightningDamageWhileWieldingTwoHandedWeaponJewel3"] = { type = "Prefix", affix = "Arcing", "(1-3) to (22-26) Added Spell Lightning Damage while wielding a Two Handed Weapon", statOrder = { 2026 }, level = 48, group = "SpellAddedLightningDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["AbyssSpellAddedLightningDamageWhileWieldingTwoHandedWeaponJewel4"] = { type = "Prefix", affix = "Shocking", "(1-4) to (29-33) Added Spell Lightning Damage while wielding a Two Handed Weapon", statOrder = { 2026 }, level = 58, group = "SpellAddedLightningDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["AbyssSpellAddedLightningDamageWhileWieldingTwoHandedWeaponJewel5_"] = { type = "Prefix", affix = "Discharging", "(1-5) to (34-36) Added Spell Lightning Damage while wielding a Two Handed Weapon", statOrder = { 2026 }, level = 70, group = "SpellAddedLightningDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 350, 0, 125, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["AbyssSpellAddedLightningDamageWhileWieldingTwoHandedWeaponJewel6_"] = { type = "Prefix", affix = "Electrocuting", "(1-6) to (43-51) Added Spell Lightning Damage while wielding a Two Handed Weapon", statOrder = { 2026 }, level = 82, group = "SpellAddedLightningDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 175, 0, 62, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["AbyssSpellAddedPhysicalDamageWhileWieldingTwoHandedWeaponJewel1"] = { type = "Prefix", affix = "Glinting", "(1-2) to (3-5) Added Spell Physical Damage while wielding a Two Handed Weapon", statOrder = { 2029 }, level = 1, group = "SpellAddedPhysicalDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["AbyssSpellAddedPhysicalDamageWhileWieldingTwoHandedWeaponJewel2"] = { type = "Prefix", affix = "Gleaming", "(3-5) to (7-9) Added Spell Physical Damage while wielding a Two Handed Weapon", statOrder = { 2029 }, level = 42, group = "SpellAddedPhysicalDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["AbyssSpellAddedPhysicalDamageWhileWieldingTwoHandedWeaponJewel3"] = { type = "Prefix", affix = "Annealed", "(6-8) to (10-12) Added Spell Physical Damage while wielding a Two Handed Weapon", statOrder = { 2029 }, level = 54, group = "SpellAddedPhysicalDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["AbyssSpellAddedPhysicalDamageWhileWieldingTwoHandedWeaponJewel4"] = { type = "Prefix", affix = "Razor-sharp", "(9-11) to (13-15) Added Spell Physical Damage while wielding a Two Handed Weapon", statOrder = { 2029 }, level = 63, group = "SpellAddedPhysicalDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["AbyssSpellAddedPhysicalDamageWhileWieldingTwoHandedWeaponJewel5"] = { type = "Prefix", affix = "Tempered", "(12-14) to (15-17) Added Spell Physical Damage while wielding a Two Handed Weapon", statOrder = { 2029 }, level = 72, group = "SpellAddedPhysicalDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 350, 0, 125, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["AbyssSpellAddedPhysicalDamageWhileWieldingTwoHandedWeaponJewel6"] = { type = "Prefix", affix = "Flaring", "(15-17) to (20-24) Added Spell Physical Damage while wielding a Two Handed Weapon", statOrder = { 2029 }, level = 83, group = "SpellAddedPhysicalDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 175, 0, 62, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["AbyssSpellAddedChaosDamageWhileWieldingTwoHandedWeaponJewel1"] = { type = "Prefix", affix = "Tainted", "(1-2) to (3-5) Added Spell Chaos Damage while wielding a Two Handed Weapon", statOrder = { 2017 }, level = 1, group = "SpellAddedChaosDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["AbyssSpellAddedChaosDamageWhileWieldingTwoHandedWeaponJewel2"] = { type = "Prefix", affix = "Clouded", "(3-5) to (7-9) Added Spell Chaos Damage while wielding a Two Handed Weapon", statOrder = { 2017 }, level = 42, group = "SpellAddedChaosDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["AbyssSpellAddedChaosDamageWhileWieldingTwoHandedWeaponJewel3"] = { type = "Prefix", affix = "Darkened", "(6-8) to (10-12) Added Spell Chaos Damage while wielding a Two Handed Weapon", statOrder = { 2017 }, level = 54, group = "SpellAddedChaosDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["AbyssSpellAddedChaosDamageWhileWieldingTwoHandedWeaponJewel4"] = { type = "Prefix", affix = "Malignant", "(9-11) to (13-15) Added Spell Chaos Damage while wielding a Two Handed Weapon", statOrder = { 2017 }, level = 65, group = "SpellAddedChaosDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["AbyssSpellAddedChaosDamageWhileWieldingTwoHandedWeaponJewel5"] = { type = "Prefix", affix = "Vile", "(12-14) to (15-17) Added Spell Chaos Damage while wielding a Two Handed Weapon", statOrder = { 2017 }, level = 75, group = "SpellAddedChaosDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 350, 0, 125, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["AbyssSpellAddedChaosDamageWhileWieldingTwoHandedWeaponJewel6"] = { type = "Prefix", affix = "Malicious", "(15-17) to (20-24) Added Spell Chaos Damage while wielding a Two Handed Weapon", statOrder = { 2017 }, level = 84, group = "SpellAddedChaosDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 175, 0, 62, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["AbyssSpellAddedFireDamageWhileHoldingAShieldJewel1"] = { type = "Prefix", affix = "Heated", "(2-4) to (5-7) Added Spell Fire Damage while holding a Shield", statOrder = { 2022 }, level = 1, group = "SpellAddedFireDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["AbyssSpellAddedFireDamageWhileHoldingAShieldJewel2"] = { type = "Prefix", affix = "Flaming", "(7-9) to (11-13) Added Spell Fire Damage while holding a Shield", statOrder = { 2022 }, level = 39, group = "SpellAddedFireDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["AbyssSpellAddedFireDamageWhileHoldingAShieldJewel3"] = { type = "Prefix", affix = "Scorching", "(10-12) to (14-16) Added Spell Fire Damage while holding a Shield", statOrder = { 2022 }, level = 48, group = "SpellAddedFireDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["AbyssSpellAddedFireDamageWhileHoldingAShieldJewel4_"] = { type = "Prefix", affix = "Incinerating", "(13-15) to (17-21) Added Spell Fire Damage while holding a Shield", statOrder = { 2022 }, level = 58, group = "SpellAddedFireDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["AbyssSpellAddedFireDamageWhileHoldingAShieldJewel5"] = { type = "Prefix", affix = "Blasting", "(16-18) to (22-24) Added Spell Fire Damage while holding a Shield", statOrder = { 2022 }, level = 70, group = "SpellAddedFireDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 350, 0, 0, 125, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["AbyssSpellAddedFireDamageWhileHoldingAShieldJewel6__"] = { type = "Prefix", affix = "Cremating", "(19-25) to (26-34) Added Spell Fire Damage while holding a Shield", statOrder = { 2022 }, level = 82, group = "SpellAddedFireDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 175, 0, 0, 62, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["AbyssSpellAddedColdDamageWhileHoldingAShieldJewel1_"] = { type = "Prefix", affix = "Frosted", "(2-4) to (5-7) Added Spell Cold Damage while holding a Shield", statOrder = { 2019 }, level = 1, group = "SpellAddedColdDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["AbyssSpellAddedColdDamageWhileHoldingAShieldJewel2"] = { type = "Prefix", affix = "Freezing", "(7-9) to (11-13) Added Spell Cold Damage while holding a Shield", statOrder = { 2019 }, level = 39, group = "SpellAddedColdDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["AbyssSpellAddedColdDamageWhileHoldingAShieldJewel3"] = { type = "Prefix", affix = "Frozen", "(10-12) to (14-16) Added Spell Cold Damage while holding a Shield", statOrder = { 2019 }, level = 48, group = "SpellAddedColdDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["AbyssSpellAddedColdDamageWhileHoldingAShieldJewel4"] = { type = "Prefix", affix = "Glaciated", "(13-15) to (17-21) Added Spell Cold Damage while holding a Shield", statOrder = { 2019 }, level = 58, group = "SpellAddedColdDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["AbyssSpellAddedColdDamageWhileHoldingAShieldJewel5_"] = { type = "Prefix", affix = "Polar", "(16-18) to (22-24) Added Spell Cold Damage while holding a Shield", statOrder = { 2019 }, level = 70, group = "SpellAddedColdDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 350, 0, 0, 125, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["AbyssSpellAddedColdDamageWhileHoldingAShieldJewel6"] = { type = "Prefix", affix = "Entombing", "(19-25) to (26-34) Added Spell Cold Damage while holding a Shield", statOrder = { 2019 }, level = 82, group = "SpellAddedColdDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 175, 0, 0, 62, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["AbyssSpellAddedLightningDamageWhileHoldingAShieldJewel1"] = { type = "Prefix", affix = "Humming", "1 to (6-10) Added Spell Lightning Damage while holding a Shield", statOrder = { 2025 }, level = 1, group = "SpellAddedLightningDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["AbyssSpellAddedLightningDamageWhileHoldingAShieldJewel2"] = { type = "Prefix", affix = "Sparking", "(1-2) to (17-21) Added Spell Lightning Damage while holding a Shield", statOrder = { 2025 }, level = 39, group = "SpellAddedLightningDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["AbyssSpellAddedLightningDamageWhileHoldingAShieldJewel3"] = { type = "Prefix", affix = "Arcing", "(1-3) to (22-26) Added Spell Lightning Damage while holding a Shield", statOrder = { 2025 }, level = 48, group = "SpellAddedLightningDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["AbyssSpellAddedLightningDamageWhileHoldingAShieldJewel4"] = { type = "Prefix", affix = "Shocking", "(1-4) to (29-33) Added Spell Lightning Damage while holding a Shield", statOrder = { 2025 }, level = 58, group = "SpellAddedLightningDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["AbyssSpellAddedLightningDamageWhileHoldingAShieldJewel5"] = { type = "Prefix", affix = "Discharging", "(1-5) to (34-36) Added Spell Lightning Damage while holding a Shield", statOrder = { 2025 }, level = 70, group = "SpellAddedLightningDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 350, 0, 0, 125, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["AbyssSpellAddedLightningDamageWhileHoldingAShieldJewel6"] = { type = "Prefix", affix = "Electrocuting", "(1-6) to (43-51) Added Spell Lightning Damage while holding a Shield", statOrder = { 2025 }, level = 82, group = "SpellAddedLightningDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 175, 0, 0, 62, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["AbyssSpellAddedPhysicalDamageWhileHoldingAShieldJewel1"] = { type = "Prefix", affix = "Glinting", "(1-2) to (3-5) Added Spell Physical Damage while holding a Shield", statOrder = { 2028 }, level = 1, group = "SpellAddedPhysicalDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["AbyssSpellAddedPhysicalDamageWhileHoldingAShieldJewel2"] = { type = "Prefix", affix = "Gleaming", "(3-5) to (7-9) Added Spell Physical Damage while holding a Shield", statOrder = { 2028 }, level = 42, group = "SpellAddedPhysicalDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["AbyssSpellAddedPhysicalDamageWhileHoldingAShieldJewel3"] = { type = "Prefix", affix = "Annealed", "(6-8) to (10-12) Added Spell Physical Damage while holding a Shield", statOrder = { 2028 }, level = 54, group = "SpellAddedPhysicalDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["AbyssSpellAddedPhysicalDamageWhileHoldingAShieldJewel4"] = { type = "Prefix", affix = "Razor-sharp", "(9-11) to (13-15) Added Spell Physical Damage while holding a Shield", statOrder = { 2028 }, level = 63, group = "SpellAddedPhysicalDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["AbyssSpellAddedPhysicalDamageWhileHoldingAShieldJewel5"] = { type = "Prefix", affix = "Tempered", "(12-14) to (15-17) Added Spell Physical Damage while holding a Shield", statOrder = { 2028 }, level = 72, group = "SpellAddedPhysicalDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 350, 0, 0, 125, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["AbyssSpellAddedPhysicalDamageWhileHoldingAShieldJewel6"] = { type = "Prefix", affix = "Flaring", "(15-17) to (20-24) Added Spell Physical Damage while holding a Shield", statOrder = { 2028 }, level = 83, group = "SpellAddedPhysicalDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 175, 0, 0, 62, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["AbyssSpellAddedChaosDamageWhileHoldingAShieldJewel1"] = { type = "Prefix", affix = "Tainted", "(1-2) to (3-5) Added Spell Chaos Damage while holding a Shield", statOrder = { 2016 }, level = 1, group = "SpellAddedChaosDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["AbyssSpellAddedChaosDamageWhileHoldingAShieldJewel2"] = { type = "Prefix", affix = "Clouded", "(3-5) to (7-9) Added Spell Chaos Damage while holding a Shield", statOrder = { 2016 }, level = 42, group = "SpellAddedChaosDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["AbyssSpellAddedChaosDamageWhileHoldingAShieldJewel3__"] = { type = "Prefix", affix = "Darkened", "(6-8) to (10-12) Added Spell Chaos Damage while holding a Shield", statOrder = { 2016 }, level = 54, group = "SpellAddedChaosDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["AbyssSpellAddedChaosDamageWhileHoldingAShieldJewel4"] = { type = "Prefix", affix = "Malignant", "(9-11) to (13-15) Added Spell Chaos Damage while holding a Shield", statOrder = { 2016 }, level = 65, group = "SpellAddedChaosDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["AbyssSpellAddedChaosDamageWhileHoldingAShieldJewel5"] = { type = "Prefix", affix = "Vile", "(12-14) to (15-17) Added Spell Chaos Damage while holding a Shield", statOrder = { 2016 }, level = 75, group = "SpellAddedChaosDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 350, 0, 0, 125, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["AbyssSpellAddedChaosDamageWhileHoldingAShieldJewel6"] = { type = "Prefix", affix = "Malicious", "(15-17) to (20-24) Added Spell Chaos Damage while holding a Shield", statOrder = { 2016 }, level = 84, group = "SpellAddedChaosDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 175, 0, 0, 62, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["AbyssSpellAddedFireDamageJewel1"] = { type = "Suffix", affix = "of Coals", "Adds (6-8) to (9-11) Fire Damage to Spells", statOrder = { 1315 }, level = 30, group = "SpellAddedFireSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["AbyssSpellAddedFireDamageJewel2_"] = { type = "Suffix", affix = "of Cinders", "Adds (9-11) to (12-14) Fire Damage to Spells", statOrder = { 1315 }, level = 43, group = "SpellAddedFireSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["AbyssSpellAddedFireDamageJewel3"] = { type = "Suffix", affix = "of Flames", "Adds (12-14) to (15-19) Fire Damage to Spells", statOrder = { 1315 }, level = 55, group = "SpellAddedFireSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["AbyssSpellAddedFireDamageJewel4"] = { type = "Suffix", affix = "of Immolation", "Adds (15-17) to (20-23) Fire Damage to Spells", statOrder = { 1315 }, level = 66, group = "SpellAddedFireSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 350, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["AbyssSpellAddedFireDamageJewel5"] = { type = "Suffix", affix = "of Ashes", "Adds (19-23) to (24-32) Fire Damage to Spells", statOrder = { 1315 }, level = 77, group = "SpellAddedFireSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 175, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["AbyssSpellAddedColdDamageJewel1"] = { type = "Suffix", affix = "of Sleet", "Adds (6-8) to (9-11) Cold Damage to Spells", statOrder = { 1316 }, level = 30, group = "SpellAddedColdSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["AbyssSpellAddedColdDamageJewel2"] = { type = "Suffix", affix = "of Ice", "Adds (9-11) to (12-14) Cold Damage to Spells", statOrder = { 1316 }, level = 43, group = "SpellAddedColdSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["AbyssSpellAddedColdDamageJewel3"] = { type = "Suffix", affix = "of Rime", "Adds (12-14) to (15-19) Cold Damage to Spells", statOrder = { 1316 }, level = 55, group = "SpellAddedColdSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["AbyssSpellAddedColdDamageJewel4"] = { type = "Suffix", affix = "of Floe", "Adds (15-17) to (20-23) Cold Damage to Spells", statOrder = { 1316 }, level = 66, group = "SpellAddedColdSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 350, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["AbyssSpellAddedColdDamageJewel5"] = { type = "Suffix", affix = "of Glaciation", "Adds (19-23) to (24-32) Cold Damage to Spells", statOrder = { 1316 }, level = 77, group = "SpellAddedColdSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 175, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["AbyssSpellAddedLightningDamageJewel1__"] = { type = "Suffix", affix = "of Static", "Adds (1-2) to (15-19) Lightning Damage to Spells", statOrder = { 1317 }, level = 30, group = "SpellAddedLightningSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["AbyssSpellAddedLightningDamageJewel2"] = { type = "Suffix", affix = "of Electricity", "Adds (1-3) to (20-24) Lightning Damage to Spells", statOrder = { 1317 }, level = 43, group = "SpellAddedLightningSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["AbyssSpellAddedLightningDamageJewel3__"] = { type = "Suffix", affix = "of Voltage", "Adds (1-4) to (25-29) Lightning Damage to Spells", statOrder = { 1317 }, level = 55, group = "SpellAddedLightningSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["AbyssSpellAddedLightningDamageJewel4"] = { type = "Suffix", affix = "of Discharge", "Adds (1-5) to (30-32) Lightning Damage to Spells", statOrder = { 1317 }, level = 66, group = "SpellAddedLightningSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 350, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["AbyssSpellAddedLightningDamageJewel5_"] = { type = "Suffix", affix = "of Arcing", "Adds (1-6) to (37-45) Lightning Damage to Spells", statOrder = { 1317 }, level = 77, group = "SpellAddedLightningSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 175, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["AbyssSpellAddedPhysicalDamageJewel1"] = { type = "Suffix", affix = "of Heft", "Adds (3-4) to (6-7) Physical Damage to Spells", statOrder = { 1314 }, level = 32, group = "SpellAddedPhysicalSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["AbyssSpellAddedPhysicalDamageJewel2"] = { type = "Suffix", affix = "of Force", "Adds (5-7) to (8-10) Physical Damage to Spells", statOrder = { 1314 }, level = 45, group = "SpellAddedPhysicalSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["AbyssSpellAddedPhysicalDamageJewel3"] = { type = "Suffix", affix = "of Weight", "Adds (8-10) to (11-13) Physical Damage to Spells", statOrder = { 1314 }, level = 56, group = "SpellAddedPhysicalSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["AbyssSpellAddedPhysicalDamageJewel4"] = { type = "Suffix", affix = "of Impact", "Adds (11-13) to (14-16) Physical Damage to Spells", statOrder = { 1314 }, level = 65, group = "SpellAddedPhysicalSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 350, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["AbyssSpellAddedPhysicalDamageJewel5__"] = { type = "Suffix", affix = "of Collision", "Adds (14-16) to (18-22) Physical Damage to Spells", statOrder = { 1314 }, level = 78, group = "SpellAddedPhysicalSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 175, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["AbyssSpellAddedChaosDamageJewel1"] = { type = "Suffix", affix = "of Dishonour", "Adds (3-4) to (6-7) Chaos Damage to Spells", statOrder = { 1318 }, level = 33, group = "SpellAddedChaosSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["AbyssSpellAddedChaosDamageJewel2"] = { type = "Suffix", affix = "of Harm", "Adds (5-7) to (8-10) Chaos Damage to Spells", statOrder = { 1318 }, level = 48, group = "SpellAddedChaosSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["AbyssSpellAddedChaosDamageJewel3"] = { type = "Suffix", affix = "of Malevolence", "Adds (8-10) to (11-13) Chaos Damage to Spells", statOrder = { 1318 }, level = 57, group = "SpellAddedChaosSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["AbyssSpellAddedChaosDamageJewel4"] = { type = "Suffix", affix = "of Malice", "Adds (11-13) to (14-16) Chaos Damage to Spells", statOrder = { 1318 }, level = 68, group = "SpellAddedChaosSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 350, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["AbyssSpellAddedChaosDamageJewel5"] = { type = "Suffix", affix = "of Sin", "Adds (14-16) to (18-22) Chaos Damage to Spells", statOrder = { 1318 }, level = 79, group = "SpellAddedChaosSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 175, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["AbyssAddedPhysicalDamageWithWandsJewel1_"] = { type = "Prefix", affix = "Glinting", "2 to 3 Added Physical Damage with Wand Attacks", statOrder = { 1985 }, level = 1, group = "AddedPhysicalDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AbyssAddedPhysicalDamageWithWandsJewel2"] = { type = "Prefix", affix = "Gleaming", "3 to 4 Added Physical Damage with Wand Attacks", statOrder = { 1985 }, level = 42, group = "AddedPhysicalDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AbyssAddedPhysicalDamageWithWandsJewel3_"] = { type = "Prefix", affix = "Tempered", "4 to (5-6) Added Physical Damage with Wand Attacks", statOrder = { 1985 }, level = 64, group = "AddedPhysicalDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AbyssAddedPhysicalDamageWithWandsJewel4"] = { type = "Prefix", affix = "Flaring", "(5-6) to (7-8) Added Physical Damage with Wand Attacks", statOrder = { 1985 }, level = 77, group = "AddedPhysicalDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 1000, 0, 0, 150, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AbyssAddedPhysicalDamageWithWandsJewel5"] = { type = "Prefix", affix = "Acuminate", "(7-8) to (9-10) Added Physical Damage with Wand Attacks", statOrder = { 1985 }, level = 85, group = "AddedPhysicalDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 500, 0, 0, 75, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AbyssAddedPhysicalDamageWithDaggersJewel1"] = { type = "Prefix", affix = "Glinting", "2 to 3 Added Physical Damage with Dagger Attacks", statOrder = { 1981 }, level = 1, group = "AddedPhysicalDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AbyssAddedPhysicalDamageWithDaggersJewel2"] = { type = "Prefix", affix = "Gleaming", "3 to 4 Added Physical Damage with Dagger Attacks", statOrder = { 1981 }, level = 42, group = "AddedPhysicalDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AbyssAddedPhysicalDamageWithDaggersJewel3_"] = { type = "Prefix", affix = "Tempered", "4 to (5-6) Added Physical Damage with Dagger Attacks", statOrder = { 1981 }, level = 64, group = "AddedPhysicalDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AbyssAddedPhysicalDamageWithDaggersJewel4"] = { type = "Prefix", affix = "Flaring", "(5-6) to (7-8) Added Physical Damage with Dagger Attacks", statOrder = { 1981 }, level = 77, group = "AddedPhysicalDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AbyssAddedPhysicalDamageWithDaggersJewel5_"] = { type = "Prefix", affix = "Acuminate", "(7-8) to (9-10) Added Physical Damage with Dagger Attacks", statOrder = { 1981 }, level = 85, group = "AddedPhysicalDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AbyssAddedPhysicalDamageWithClawsJewel1"] = { type = "Prefix", affix = "Glinting", "2 to 3 Added Physical Damage with Claw Attacks", statOrder = { 1980 }, level = 1, group = "AddedPhysicalDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AbyssAddedPhysicalDamageWithClawsJewel2"] = { type = "Prefix", affix = "Gleaming", "3 to 4 Added Physical Damage with Claw Attacks", statOrder = { 1980 }, level = 42, group = "AddedPhysicalDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AbyssAddedPhysicalDamageWithClawsJewel3"] = { type = "Prefix", affix = "Tempered", "4 to (5-6) Added Physical Damage with Claw Attacks", statOrder = { 1980 }, level = 64, group = "AddedPhysicalDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AbyssAddedPhysicalDamageWithClawsJewel4"] = { type = "Prefix", affix = "Flaring", "(5-6) to (7-8) Added Physical Damage with Claw Attacks", statOrder = { 1980 }, level = 77, group = "AddedPhysicalDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AbyssAddedPhysicalDamageWithClawsJewel5"] = { type = "Prefix", affix = "Acuminate", "(7-8) to (9-10) Added Physical Damage with Claw Attacks", statOrder = { 1980 }, level = 85, group = "AddedPhysicalDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AbyssAddedPhysicalDamageWithSwordsJewel1"] = { type = "Prefix", affix = "Glinting", "2 to 3 Added Physical Damage with Sword Attacks", statOrder = { 1984 }, level = 1, group = "AddedPhysicalDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AbyssAddedPhysicalDamageWithSwordsJewel2"] = { type = "Prefix", affix = "Gleaming", "3 to 4 Added Physical Damage with Sword Attacks", statOrder = { 1984 }, level = 42, group = "AddedPhysicalDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AbyssAddedPhysicalDamageWithSwordsJewel3"] = { type = "Prefix", affix = "Tempered", "4 to (5-6) Added Physical Damage with Sword Attacks", statOrder = { 1984 }, level = 64, group = "AddedPhysicalDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AbyssAddedPhysicalDamageWithSwordsJewel4"] = { type = "Prefix", affix = "Flaring", "(5-6) to (7-8) Added Physical Damage with Sword Attacks", statOrder = { 1984 }, level = 77, group = "AddedPhysicalDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AbyssAddedPhysicalDamageWithSwordsJewel5"] = { type = "Prefix", affix = "Acuminate", "(7-8) to (9-10) Added Physical Damage with Sword Attacks", statOrder = { 1984 }, level = 85, group = "AddedPhysicalDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 125, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AbyssAddedPhysicalDamageWithAxesJewel1"] = { type = "Prefix", affix = "Glinting", "2 to 3 Added Physical Damage with Axe Attacks", statOrder = { 1978 }, level = 1, group = "AddedPhysicalDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AbyssAddedPhysicalDamageWithAxesJewel2"] = { type = "Prefix", affix = "Gleaming", "3 to 4 Added Physical Damage with Axe Attacks", statOrder = { 1978 }, level = 42, group = "AddedPhysicalDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AbyssAddedPhysicalDamageWithAxesJewel3"] = { type = "Prefix", affix = "Tempered", "4 to (5-6) Added Physical Damage with Axe Attacks", statOrder = { 1978 }, level = 64, group = "AddedPhysicalDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AbyssAddedPhysicalDamageWithAxesJewel4"] = { type = "Prefix", affix = "Flaring", "(5-6) to (7-8) Added Physical Damage with Axe Attacks", statOrder = { 1978 }, level = 77, group = "AddedPhysicalDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AbyssAddedPhysicalDamageWithAxesJewel5_"] = { type = "Prefix", affix = "Acuminate", "(7-8) to (9-10) Added Physical Damage with Axe Attacks", statOrder = { 1978 }, level = 85, group = "AddedPhysicalDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 125, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AbyssAddedPhysicalDamageWithMacesJewel1"] = { type = "Prefix", affix = "Glinting", "2 to 3 Added Physical Damage with Mace or Sceptre Attacks", statOrder = { 1982 }, level = 1, group = "AddedPhysicalDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AbyssAddedPhysicalDamageWithMacesJewel2"] = { type = "Prefix", affix = "Gleaming", "3 to 4 Added Physical Damage with Mace or Sceptre Attacks", statOrder = { 1982 }, level = 42, group = "AddedPhysicalDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AbyssAddedPhysicalDamageWithMacesJewel3"] = { type = "Prefix", affix = "Tempered", "4 to (5-6) Added Physical Damage with Mace or Sceptre Attacks", statOrder = { 1982 }, level = 64, group = "AddedPhysicalDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AbyssAddedPhysicalDamageWithMacesJewel4_"] = { type = "Prefix", affix = "Flaring", "(5-6) to (7-8) Added Physical Damage with Mace or Sceptre Attacks", statOrder = { 1982 }, level = 77, group = "AddedPhysicalDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AbyssAddedPhysicalDamageWithMacesJewel5"] = { type = "Prefix", affix = "Acuminate", "(7-8) to (9-10) Added Physical Damage with Mace or Sceptre Attacks", statOrder = { 1982 }, level = 85, group = "AddedPhysicalDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 125, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AbyssAddedPhysicalDamageWithStavesJewel1"] = { type = "Prefix", affix = "Glinting", "2 to 3 Added Physical Damage with Staff Attacks", statOrder = { 1983 }, level = 1, group = "AddedPhysicalDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AbyssAddedPhysicalDamageWithStavesJewel2"] = { type = "Prefix", affix = "Gleaming", "3 to 4 Added Physical Damage with Staff Attacks", statOrder = { 1983 }, level = 42, group = "AddedPhysicalDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AbyssAddedPhysicalDamageWithStavesJewel3_"] = { type = "Prefix", affix = "Tempered", "4 to (5-6) Added Physical Damage with Staff Attacks", statOrder = { 1983 }, level = 64, group = "AddedPhysicalDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AbyssAddedPhysicalDamageWithStavesJewel4"] = { type = "Prefix", affix = "Flaring", "(5-6) to (7-8) Added Physical Damage with Staff Attacks", statOrder = { 1983 }, level = 77, group = "AddedPhysicalDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AbyssAddedPhysicalDamageWithStavesJewel5_"] = { type = "Prefix", affix = "Acuminate", "(7-8) to (9-10) Added Physical Damage with Staff Attacks", statOrder = { 1983 }, level = 85, group = "AddedPhysicalDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AbyssAddedPhysicalDamageWithBowsJewel1"] = { type = "Prefix", affix = "Glinting", "2 to 3 Added Physical Damage with Bow Attacks", statOrder = { 1979 }, level = 1, group = "PhysicalDamageWithBowsJewel", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AbyssAddedPhysicalDamageWithBowsJewel2_"] = { type = "Prefix", affix = "Gleaming", "3 to 4 Added Physical Damage with Bow Attacks", statOrder = { 1979 }, level = 42, group = "PhysicalDamageWithBowsJewel", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AbyssAddedPhysicalDamageWithBowsJewel3"] = { type = "Prefix", affix = "Tempered", "4 to (5-6) Added Physical Damage with Bow Attacks", statOrder = { 1979 }, level = 64, group = "PhysicalDamageWithBowsJewel", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AbyssAddedPhysicalDamageWithBowsJewel4_"] = { type = "Prefix", affix = "Flaring", "(5-6) to (7-8) Added Physical Damage with Bow Attacks", statOrder = { 1979 }, level = 77, group = "PhysicalDamageWithBowsJewel", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AbyssAddedPhysicalDamageWithBowsJewel5"] = { type = "Prefix", affix = "Acuminate", "(7-8) to (9-10) Added Physical Damage with Bow Attacks", statOrder = { 1979 }, level = 85, group = "PhysicalDamageWithBowsJewel", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AbyssAddedLightningDamageWithWandsJewel1_"] = { type = "Prefix", affix = "Humming", "1 to (19-20) Added Lightning Damage with Wand Attacks", statOrder = { 2011 }, level = 1, group = "AddedLightningDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithWandsJewel2"] = { type = "Prefix", affix = "Sparking", "(1-2) to (23-24) Added Lightning Damage with Wand Attacks", statOrder = { 2011 }, level = 37, group = "AddedLightningDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithWandsJewel3"] = { type = "Prefix", affix = "Arcing", "(1-3) to (28-30) Added Lightning Damage with Wand Attacks", statOrder = { 2011 }, level = 48, group = "AddedLightningDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithWandsJewel4"] = { type = "Prefix", affix = "Shocking", "(1-4) to (33-35) Added Lightning Damage with Wand Attacks", statOrder = { 2011 }, level = 60, group = "AddedLightningDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithWandsJewel5"] = { type = "Prefix", affix = "Discharging", "(2-4) to (40-43) Added Lightning Damage with Wand Attacks", statOrder = { 2011 }, level = 70, group = "AddedLightningDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 1175, 0, 0, 175, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithWandsJewel6"] = { type = "Prefix", affix = "Electrocuting", "(2-5) to (48-50) Added Lightning Damage with Wand Attacks", statOrder = { 2011 }, level = 82, group = "AddedLightningDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 553, 0, 0, 87, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithDaggersJewel1"] = { type = "Prefix", affix = "Humming", "1 to (19-20) Added Lightning Damage with Dagger Attacks", statOrder = { 2007 }, level = 1, group = "AddedLightningDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithDaggersJewel2_"] = { type = "Prefix", affix = "Sparking", "(1-2) to (23-24) Added Lightning Damage with Dagger Attacks", statOrder = { 2007 }, level = 37, group = "AddedLightningDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithDaggersJewel3"] = { type = "Prefix", affix = "Arcing", "(1-3) to (28-30) Added Lightning Damage with Dagger Attacks", statOrder = { 2007 }, level = 48, group = "AddedLightningDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithDaggersJewel4"] = { type = "Prefix", affix = "Shocking", "(1-4) to (33-35) Added Lightning Damage with Dagger Attacks", statOrder = { 2007 }, level = 60, group = "AddedLightningDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithDaggersJewel5"] = { type = "Prefix", affix = "Discharging", "(2-4) to (40-43) Added Lightning Damage with Dagger Attacks", statOrder = { 2007 }, level = 70, group = "AddedLightningDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithDaggersJewel6"] = { type = "Prefix", affix = "Electrocuting", "(2-5) to (48-50) Added Lightning Damage with Dagger Attacks", statOrder = { 2007 }, level = 82, group = "AddedLightningDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithClawsJewel1__"] = { type = "Prefix", affix = "Humming", "1 to (19-20) Added Lightning Damage with Claw Attacks", statOrder = { 2006 }, level = 1, group = "AddedLightningDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithClawsJewel2_"] = { type = "Prefix", affix = "Sparking", "(1-2) to (23-24) Added Lightning Damage with Claw Attacks", statOrder = { 2006 }, level = 37, group = "AddedLightningDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithClawsJewel3"] = { type = "Prefix", affix = "Arcing", "(1-3) to (28-30) Added Lightning Damage with Claw Attacks", statOrder = { 2006 }, level = 48, group = "AddedLightningDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithClawsJewel4"] = { type = "Prefix", affix = "Shocking", "(1-4) to (33-35) Added Lightning Damage with Claw Attacks", statOrder = { 2006 }, level = 60, group = "AddedLightningDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithClawsJewel5"] = { type = "Prefix", affix = "Discharging", "(2-4) to (40-43) Added Lightning Damage with Claw Attacks", statOrder = { 2006 }, level = 70, group = "AddedLightningDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithClawsJewel6"] = { type = "Prefix", affix = "Electrocuting", "(2-5) to (48-50) Added Lightning Damage with Claw Attacks", statOrder = { 2006 }, level = 82, group = "AddedLightningDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithBowsJewel1"] = { type = "Prefix", affix = "Humming", "1 to (19-20) Added Lightning Damage with Bow Attacks", statOrder = { 2005 }, level = 1, group = "AddedLightningDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithBowsJewel2_"] = { type = "Prefix", affix = "Sparking", "(1-2) to (23-24) Added Lightning Damage with Bow Attacks", statOrder = { 2005 }, level = 37, group = "AddedLightningDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithBowsJewel3"] = { type = "Prefix", affix = "Arcing", "(1-3) to (28-30) Added Lightning Damage with Bow Attacks", statOrder = { 2005 }, level = 48, group = "AddedLightningDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithBowsJewel4"] = { type = "Prefix", affix = "Shocking", "(1-4) to (33-35) Added Lightning Damage with Bow Attacks", statOrder = { 2005 }, level = 60, group = "AddedLightningDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithBowsJewel5"] = { type = "Prefix", affix = "Discharging", "(2-4) to (40-43) Added Lightning Damage with Bow Attacks", statOrder = { 2005 }, level = 70, group = "AddedLightningDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 1250, 0, 0, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithBowsJewel6"] = { type = "Prefix", affix = "Electrocuting", "(2-5) to (48-50) Added Lightning Damage with Bow Attacks", statOrder = { 2005 }, level = 82, group = "AddedLightningDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 625, 0, 0, 175, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithSwordsJewel1"] = { type = "Prefix", affix = "Humming", "1 to (19-20) Added Lightning Damage with Sword Attacks", statOrder = { 2010 }, level = 1, group = "AddedLightningDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithSwordsJewel2__"] = { type = "Prefix", affix = "Sparking", "(1-2) to (23-24) Added Lightning Damage with Sword Attacks", statOrder = { 2010 }, level = 37, group = "AddedLightningDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithSwordsJewel3"] = { type = "Prefix", affix = "Arcing", "(1-3) to (28-30) Added Lightning Damage with Sword Attacks", statOrder = { 2010 }, level = 48, group = "AddedLightningDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithSwordsJewel4_"] = { type = "Prefix", affix = "Shocking", "(1-4) to (33-35) Added Lightning Damage with Sword Attacks", statOrder = { 2010 }, level = 60, group = "AddedLightningDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithSwordsJewel5_"] = { type = "Prefix", affix = "Discharging", "(2-4) to (40-43) Added Lightning Damage with Sword Attacks", statOrder = { 2010 }, level = 70, group = "AddedLightningDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithSwordsJewel6"] = { type = "Prefix", affix = "Electrocuting", "(2-5) to (48-50) Added Lightning Damage with Sword Attacks", statOrder = { 2010 }, level = 82, group = "AddedLightningDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithAxesJewel1"] = { type = "Prefix", affix = "Humming", "1 to (19-20) Added Lightning Damage with Axe Attacks", statOrder = { 2004 }, level = 1, group = "AddedLightningDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithAxesJewel2"] = { type = "Prefix", affix = "Sparking", "(1-2) to (23-24) Added Lightning Damage with Axe Attacks", statOrder = { 2004 }, level = 37, group = "AddedLightningDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithAxesJewel3_"] = { type = "Prefix", affix = "Arcing", "(1-3) to (28-30) Added Lightning Damage with Axe Attacks", statOrder = { 2004 }, level = 48, group = "AddedLightningDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithAxesJewel4"] = { type = "Prefix", affix = "Shocking", "(1-4) to (33-35) Added Lightning Damage with Axe Attacks", statOrder = { 2004 }, level = 60, group = "AddedLightningDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithAxesJewel5"] = { type = "Prefix", affix = "Discharging", "(2-4) to (40-43) Added Lightning Damage with Axe Attacks", statOrder = { 2004 }, level = 70, group = "AddedLightningDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithAxesJewel6"] = { type = "Prefix", affix = "Electrocuting", "(2-5) to (48-50) Added Lightning Damage with Axe Attacks", statOrder = { 2004 }, level = 82, group = "AddedLightningDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithMacesJewel1"] = { type = "Prefix", affix = "Humming", "1 to (19-20) Added Lightning Damage with Mace or Sceptre Attacks", statOrder = { 2008 }, level = 1, group = "AddedLightningDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithMacesJewel2"] = { type = "Prefix", affix = "Sparking", "(1-2) to (23-24) Added Lightning Damage with Mace or Sceptre Attacks", statOrder = { 2008 }, level = 37, group = "AddedLightningDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithMacesJewel3"] = { type = "Prefix", affix = "Arcing", "(1-3) to (28-30) Added Lightning Damage with Mace or Sceptre Attacks", statOrder = { 2008 }, level = 48, group = "AddedLightningDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithMacesJewel4_"] = { type = "Prefix", affix = "Shocking", "(1-4) to (33-35) Added Lightning Damage with Mace or Sceptre Attacks", statOrder = { 2008 }, level = 60, group = "AddedLightningDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithMacesJewel5"] = { type = "Prefix", affix = "Discharging", "(2-4) to (40-43) Added Lightning Damage with Mace or Sceptre Attacks", statOrder = { 2008 }, level = 70, group = "AddedLightningDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithMacesJewel6"] = { type = "Prefix", affix = "Electrocuting", "(2-5) to (48-50) Added Lightning Damage with Mace or Sceptre Attacks", statOrder = { 2008 }, level = 82, group = "AddedLightningDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithStavesJewel1"] = { type = "Prefix", affix = "Humming", "1 to (19-20) Added Lightning Damage with Staff Attacks", statOrder = { 2009 }, level = 1, group = "AddedLightningDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithStavesJewel2"] = { type = "Prefix", affix = "Sparking", "(1-2) to (23-24) Added Lightning Damage with Staff Attacks", statOrder = { 2009 }, level = 37, group = "AddedLightningDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithStavesJewel3"] = { type = "Prefix", affix = "Arcing", "(1-3) to (28-30) Added Lightning Damage with Staff Attacks", statOrder = { 2009 }, level = 48, group = "AddedLightningDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithStavesJewel4"] = { type = "Prefix", affix = "Shocking", "(1-4) to (33-35) Added Lightning Damage with Staff Attacks", statOrder = { 2009 }, level = 60, group = "AddedLightningDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithStavesJewel5"] = { type = "Prefix", affix = "Discharging", "(2-4) to (40-43) Added Lightning Damage with Staff Attacks", statOrder = { 2009 }, level = 70, group = "AddedLightningDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithStavesJewel6"] = { type = "Prefix", affix = "Electrocuting", "(2-5) to (48-50) Added Lightning Damage with Staff Attacks", statOrder = { 2009 }, level = 82, group = "AddedLightningDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedFireDamageWithWandsJewel1"] = { type = "Prefix", affix = "Heated", "(5-6) to (11-12) Added Fire Damage with Wand Attacks", statOrder = { 1995 }, level = 1, group = "AddedFireDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithWandsJewel2"] = { type = "Prefix", affix = "Flaming", "(7-8) to (13-15) Added Fire Damage with Wand Attacks", statOrder = { 1995 }, level = 40, group = "AddedFireDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithWandsJewel3"] = { type = "Prefix", affix = "Scorching", "(9-11) to (16-19) Added Fire Damage with Wand Attacks", statOrder = { 1995 }, level = 51, group = "AddedFireDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithWandsJewel4"] = { type = "Prefix", affix = "Incinerating", "(12-13) to (20-22) Added Fire Damage with Wand Attacks", statOrder = { 1995 }, level = 62, group = "AddedFireDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithWandsJewel5__"] = { type = "Prefix", affix = "Blasting", "(14-15) to (23-26) Added Fire Damage with Wand Attacks", statOrder = { 1995 }, level = 72, group = "AddedFireDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 1175, 0, 0, 175, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithWandsJewel6"] = { type = "Prefix", affix = "Cremating", "(16-18) to (27-32) Added Fire Damage with Wand Attacks", statOrder = { 1995 }, level = 84, group = "AddedFireDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 553, 0, 0, 87, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithDaggersJewel1"] = { type = "Prefix", affix = "Heated", "(5-6) to (11-12) Added Fire Damage with Dagger Attacks", statOrder = { 1991 }, level = 1, group = "AddedFireDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithDaggersJewel2"] = { type = "Prefix", affix = "Flaming", "(7-8) to (13-15) Added Fire Damage with Dagger Attacks", statOrder = { 1991 }, level = 40, group = "AddedFireDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithDaggersJewel3"] = { type = "Prefix", affix = "Scorching", "(9-11) to (16-19) Added Fire Damage with Dagger Attacks", statOrder = { 1991 }, level = 51, group = "AddedFireDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithDaggersJewel4"] = { type = "Prefix", affix = "Incinerating", "(12-13) to (20-22) Added Fire Damage with Dagger Attacks", statOrder = { 1991 }, level = 62, group = "AddedFireDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithDaggersJewel5"] = { type = "Prefix", affix = "Blasting", "(14-15) to (23-26) Added Fire Damage with Dagger Attacks", statOrder = { 1991 }, level = 72, group = "AddedFireDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithDaggersJewel6"] = { type = "Prefix", affix = "Cremating", "(16-18) to (27-32) Added Fire Damage with Dagger Attacks", statOrder = { 1991 }, level = 84, group = "AddedFireDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithClawsJewel1"] = { type = "Prefix", affix = "Heated", "(5-6) to (11-12) Added Fire Damage with Claw Attacks", statOrder = { 1990 }, level = 1, group = "AddedFireDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithClawsJewel2"] = { type = "Prefix", affix = "Flaming", "(7-8) to (13-15) Added Fire Damage with Claw Attacks", statOrder = { 1990 }, level = 40, group = "AddedFireDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithClawsJewel3"] = { type = "Prefix", affix = "Scorching", "(9-11) to (16-19) Added Fire Damage with Claw Attacks", statOrder = { 1990 }, level = 51, group = "AddedFireDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithClawsJewel4"] = { type = "Prefix", affix = "Incinerating", "(12-13) to (20-22) Added Fire Damage with Claw Attacks", statOrder = { 1990 }, level = 62, group = "AddedFireDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithClawsJewel5"] = { type = "Prefix", affix = "Blasting", "(14-15) to (23-26) Added Fire Damage with Claw Attacks", statOrder = { 1990 }, level = 72, group = "AddedFireDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithClawsJewel6"] = { type = "Prefix", affix = "Cremating", "(16-18) to (27-32) Added Fire Damage with Claw Attacks", statOrder = { 1990 }, level = 84, group = "AddedFireDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithBowsJewel1"] = { type = "Prefix", affix = "Heated", "(5-6) to (11-12) Added Fire Damage with Bow Attacks", statOrder = { 1989 }, level = 1, group = "FireDamageWithBowsJewel", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithBowsJewel2"] = { type = "Prefix", affix = "Flaming", "(7-8) to (13-15) Added Fire Damage with Bow Attacks", statOrder = { 1989 }, level = 40, group = "FireDamageWithBowsJewel", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithBowsJewel3_"] = { type = "Prefix", affix = "Scorching", "(9-11) to (16-19) Added Fire Damage with Bow Attacks", statOrder = { 1989 }, level = 51, group = "FireDamageWithBowsJewel", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithBowsJewel4"] = { type = "Prefix", affix = "Incinerating", "(12-13) to (20-22) Added Fire Damage with Bow Attacks", statOrder = { 1989 }, level = 62, group = "FireDamageWithBowsJewel", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithBowsJewel5_"] = { type = "Prefix", affix = "Blasting", "(14-15) to (23-26) Added Fire Damage with Bow Attacks", statOrder = { 1989 }, level = 72, group = "FireDamageWithBowsJewel", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 1250, 0, 0, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithBowsJewel6_"] = { type = "Prefix", affix = "Cremating", "(16-18) to (27-32) Added Fire Damage with Bow Attacks", statOrder = { 1989 }, level = 84, group = "FireDamageWithBowsJewel", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 500, 0, 0, 175, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithSwordsJewel1"] = { type = "Prefix", affix = "Heated", "(5-6) to (11-12) Added Fire Damage with Sword Attacks", statOrder = { 1994 }, level = 1, group = "AddedFireDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithSwordsJewel2"] = { type = "Prefix", affix = "Flaming", "(7-8) to (13-15) Added Fire Damage with Sword Attacks", statOrder = { 1994 }, level = 40, group = "AddedFireDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithSwordsJewel3___"] = { type = "Prefix", affix = "Scorching", "(9-11) to (16-19) Added Fire Damage with Sword Attacks", statOrder = { 1994 }, level = 51, group = "AddedFireDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithSwordsJewel4"] = { type = "Prefix", affix = "Incinerating", "(12-13) to (20-22) Added Fire Damage with Sword Attacks", statOrder = { 1994 }, level = 62, group = "AddedFireDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithSwordsJewel5_"] = { type = "Prefix", affix = "Blasting", "(14-15) to (23-26) Added Fire Damage with Sword Attacks", statOrder = { 1994 }, level = 72, group = "AddedFireDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithSwordsJewel6"] = { type = "Prefix", affix = "Cremating", "(16-18) to (27-32) Added Fire Damage with Sword Attacks", statOrder = { 1994 }, level = 84, group = "AddedFireDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithAxesJewel1_"] = { type = "Prefix", affix = "Heated", "(5-6) to (11-12) Added Fire Damage with Axe Attacks", statOrder = { 1988 }, level = 1, group = "AddedFireDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithAxesJewel2"] = { type = "Prefix", affix = "Flaming", "(7-8) to (13-15) Added Fire Damage with Axe Attacks", statOrder = { 1988 }, level = 40, group = "AddedFireDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithAxesJewel3"] = { type = "Prefix", affix = "Scorching", "(9-11) to (16-19) Added Fire Damage with Axe Attacks", statOrder = { 1988 }, level = 51, group = "AddedFireDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithAxesJewel4"] = { type = "Prefix", affix = "Incinerating", "(12-13) to (20-22) Added Fire Damage with Axe Attacks", statOrder = { 1988 }, level = 62, group = "AddedFireDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithAxesJewel5"] = { type = "Prefix", affix = "Blasting", "(14-15) to (23-26) Added Fire Damage with Axe Attacks", statOrder = { 1988 }, level = 72, group = "AddedFireDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithAxesJewel6_"] = { type = "Prefix", affix = "Cremating", "(16-18) to (27-32) Added Fire Damage with Axe Attacks", statOrder = { 1988 }, level = 84, group = "AddedFireDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithMacesJewel1"] = { type = "Prefix", affix = "Heated", "(5-6) to (11-12) Added Fire Damage with Mace or Sceptre Attacks", statOrder = { 1992 }, level = 1, group = "AddedFireDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithMacesJewel2_"] = { type = "Prefix", affix = "Flaming", "(7-8) to (13-15) Added Fire Damage with Mace or Sceptre Attacks", statOrder = { 1992 }, level = 40, group = "AddedFireDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithMacesJewel3"] = { type = "Prefix", affix = "Scorching", "(9-11) to (16-19) Added Fire Damage with Mace or Sceptre Attacks", statOrder = { 1992 }, level = 51, group = "AddedFireDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithMacesJewel4"] = { type = "Prefix", affix = "Incinerating", "(12-13) to (20-22) Added Fire Damage with Mace or Sceptre Attacks", statOrder = { 1992 }, level = 62, group = "AddedFireDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithMacesJewel5_"] = { type = "Prefix", affix = "Blasting", "(14-15) to (23-26) Added Fire Damage with Mace or Sceptre Attacks", statOrder = { 1992 }, level = 72, group = "AddedFireDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithMacesJewel6"] = { type = "Prefix", affix = "Cremating", "(16-18) to (27-32) Added Fire Damage with Mace or Sceptre Attacks", statOrder = { 1992 }, level = 84, group = "AddedFireDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithStavesJewel1_"] = { type = "Prefix", affix = "Heated", "(5-6) to (11-12) Added Fire Damage with Staff Attacks", statOrder = { 1993 }, level = 1, group = "AddedFireDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithStavesJewel2"] = { type = "Prefix", affix = "Flaming", "(7-8) to (13-15) Added Fire Damage with Staff Attacks", statOrder = { 1993 }, level = 40, group = "AddedFireDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithStavesJewel3__"] = { type = "Prefix", affix = "Scorching", "(9-11) to (16-19) Added Fire Damage with Staff Attacks", statOrder = { 1993 }, level = 51, group = "AddedFireDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithStavesJewel4"] = { type = "Prefix", affix = "Incinerating", "(12-13) to (20-22) Added Fire Damage with Staff Attacks", statOrder = { 1993 }, level = 62, group = "AddedFireDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithStavesJewel5__"] = { type = "Prefix", affix = "Blasting", "(14-15) to (23-26) Added Fire Damage with Staff Attacks", statOrder = { 1993 }, level = 72, group = "AddedFireDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithStavesJewel6"] = { type = "Prefix", affix = "Cremating", "(16-18) to (27-32) Added Fire Damage with Staff Attacks", statOrder = { 1993 }, level = 84, group = "AddedFireDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedColdDamageWithWandsJewel1__"] = { type = "Prefix", affix = "Frosted", "(4-5) to (9-10) Added Cold Damage with Wand Attacks", statOrder = { 2003 }, level = 1, group = "AddedColdDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithWandsJewel2"] = { type = "Prefix", affix = "Freezing", "(6-7) to (11-13) Added Cold Damage with Wand Attacks", statOrder = { 2003 }, level = 38, group = "AddedColdDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithWandsJewel3_"] = { type = "Prefix", affix = "Frozen", "(8-9) to (14-16) Added Cold Damage with Wand Attacks", statOrder = { 2003 }, level = 47, group = "AddedColdDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithWandsJewel4"] = { type = "Prefix", affix = "Glaciated", "(10-11) to (17-20) Added Cold Damage with Wand Attacks", statOrder = { 2003 }, level = 59, group = "AddedColdDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithWandsJewel5"] = { type = "Prefix", affix = "Polar", "(12-13) to (21-24) Added Cold Damage with Wand Attacks", statOrder = { 2003 }, level = 68, group = "AddedColdDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 1175, 0, 0, 175, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithWandsJewel6"] = { type = "Prefix", affix = "Entombing", "(14-15) to (25-28) Added Cold Damage with Wand Attacks", statOrder = { 2003 }, level = 83, group = "AddedColdDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 553, 0, 0, 87, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithDaggersJewel1"] = { type = "Prefix", affix = "Frosted", "(4-5) to (9-10) Added Cold Damage with Dagger Attacks", statOrder = { 1999 }, level = 1, group = "AddedColdDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithDaggersJewel2"] = { type = "Prefix", affix = "Freezing", "(6-7) to (11-13) Added Cold Damage with Dagger Attacks", statOrder = { 1999 }, level = 38, group = "AddedColdDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithDaggersJewel3"] = { type = "Prefix", affix = "Frozen", "(8-9) to (14-16) Added Cold Damage with Dagger Attacks", statOrder = { 1999 }, level = 47, group = "AddedColdDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithDaggersJewel4"] = { type = "Prefix", affix = "Glaciated", "(10-11) to (17-20) Added Cold Damage with Dagger Attacks", statOrder = { 1999 }, level = 59, group = "AddedColdDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithDaggersJewel5"] = { type = "Prefix", affix = "Polar", "(12-13) to (21-24) Added Cold Damage with Dagger Attacks", statOrder = { 1999 }, level = 68, group = "AddedColdDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithDaggersJewel6"] = { type = "Prefix", affix = "Entombing", "(14-15) to (25-28) Added Cold Damage with Dagger Attacks", statOrder = { 1999 }, level = 83, group = "AddedColdDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithClawsJewel1"] = { type = "Prefix", affix = "Frosted", "(4-5) to (9-10) Added Cold Damage with Claw Attacks", statOrder = { 1998 }, level = 1, group = "AddedColdDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithClawsJewel2"] = { type = "Prefix", affix = "Freezing", "(6-7) to (11-13) Added Cold Damage with Claw Attacks", statOrder = { 1998 }, level = 38, group = "AddedColdDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithClawsJewel3"] = { type = "Prefix", affix = "Frozen", "(8-9) to (14-16) Added Cold Damage with Claw Attacks", statOrder = { 1998 }, level = 47, group = "AddedColdDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithClawsJewel4"] = { type = "Prefix", affix = "Glaciated", "(10-11) to (17-20) Added Cold Damage with Claw Attacks", statOrder = { 1998 }, level = 59, group = "AddedColdDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithClawsJewel5"] = { type = "Prefix", affix = "Polar", "(12-13) to (21-24) Added Cold Damage with Claw Attacks", statOrder = { 1998 }, level = 68, group = "AddedColdDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithClawsJewel6"] = { type = "Prefix", affix = "Entombing", "(14-15) to (25-28) Added Cold Damage with Claw Attacks", statOrder = { 1998 }, level = 83, group = "AddedColdDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithBowsJewel1"] = { type = "Prefix", affix = "Frosted", "(4-5) to (9-10) Added Cold Damage with Bow Attacks", statOrder = { 1997 }, level = 1, group = "AddedColdDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithBowsJewel2"] = { type = "Prefix", affix = "Freezing", "(6-7) to (11-13) Added Cold Damage with Bow Attacks", statOrder = { 1997 }, level = 38, group = "AddedColdDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithBowsJewel3_"] = { type = "Prefix", affix = "Frozen", "(8-9) to (14-16) Added Cold Damage with Bow Attacks", statOrder = { 1997 }, level = 47, group = "AddedColdDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithBowsJewel4"] = { type = "Prefix", affix = "Glaciated", "(10-11) to (17-20) Added Cold Damage with Bow Attacks", statOrder = { 1997 }, level = 59, group = "AddedColdDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithBowsJewel5"] = { type = "Prefix", affix = "Polar", "(12-13) to (21-24) Added Cold Damage with Bow Attacks", statOrder = { 1997 }, level = 68, group = "AddedColdDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 1250, 0, 0, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithBowsJewel6"] = { type = "Prefix", affix = "Entombing", "(14-15) to (25-28) Added Cold Damage with Bow Attacks", statOrder = { 1997 }, level = 83, group = "AddedColdDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 500, 0, 0, 175, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithSwordsJewel1"] = { type = "Prefix", affix = "Frosted", "(4-5) to (9-10) Added Cold Damage with Sword Attacks", statOrder = { 2002 }, level = 1, group = "AddedColdDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithSwordsJewel2"] = { type = "Prefix", affix = "Freezing", "(6-7) to (11-13) Added Cold Damage with Sword Attacks", statOrder = { 2002 }, level = 38, group = "AddedColdDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithSwordsJewel3"] = { type = "Prefix", affix = "Frozen", "(8-9) to (14-16) Added Cold Damage with Sword Attacks", statOrder = { 2002 }, level = 47, group = "AddedColdDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithSwordsJewel4"] = { type = "Prefix", affix = "Glaciated", "(10-11) to (17-20) Added Cold Damage with Sword Attacks", statOrder = { 2002 }, level = 59, group = "AddedColdDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithSwordsJewel5"] = { type = "Prefix", affix = "Polar", "(12-13) to (21-24) Added Cold Damage with Sword Attacks", statOrder = { 2002 }, level = 68, group = "AddedColdDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithSwordsJewel6"] = { type = "Prefix", affix = "Entombing", "(14-15) to (25-28) Added Cold Damage with Sword Attacks", statOrder = { 2002 }, level = 83, group = "AddedColdDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithAxesJewel1"] = { type = "Prefix", affix = "Frosted", "(4-5) to (9-10) Added Cold Damage with Axe Attacks", statOrder = { 1996 }, level = 1, group = "AddedColdDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithAxesJewel2"] = { type = "Prefix", affix = "Freezing", "(6-7) to (11-13) Added Cold Damage with Axe Attacks", statOrder = { 1996 }, level = 38, group = "AddedColdDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithAxesJewel3"] = { type = "Prefix", affix = "Frozen", "(8-9) to (14-16) Added Cold Damage with Axe Attacks", statOrder = { 1996 }, level = 47, group = "AddedColdDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithAxesJewel4"] = { type = "Prefix", affix = "Glaciated", "(10-11) to (17-20) Added Cold Damage with Axe Attacks", statOrder = { 1996 }, level = 59, group = "AddedColdDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithAxesJewel5"] = { type = "Prefix", affix = "Polar", "(12-13) to (21-24) Added Cold Damage with Axe Attacks", statOrder = { 1996 }, level = 68, group = "AddedColdDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithAxesJewel6"] = { type = "Prefix", affix = "Entombing", "(14-15) to (25-28) Added Cold Damage with Axe Attacks", statOrder = { 1996 }, level = 83, group = "AddedColdDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithMacesJewel1"] = { type = "Prefix", affix = "Frosted", "(4-5) to (9-10) Added Cold Damage with Mace or Sceptre Attacks", statOrder = { 2000 }, level = 1, group = "AddedColdDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithMacesJewel2"] = { type = "Prefix", affix = "Freezing", "(6-7) to (11-13) Added Cold Damage with Mace or Sceptre Attacks", statOrder = { 2000 }, level = 38, group = "AddedColdDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithMacesJewel3"] = { type = "Prefix", affix = "Frozen", "(8-9) to (14-16) Added Cold Damage with Mace or Sceptre Attacks", statOrder = { 2000 }, level = 47, group = "AddedColdDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithMacesJewel4"] = { type = "Prefix", affix = "Glaciated", "(10-11) to (17-20) Added Cold Damage with Mace or Sceptre Attacks", statOrder = { 2000 }, level = 59, group = "AddedColdDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithMacesJewel5_"] = { type = "Prefix", affix = "Polar", "(12-13) to (21-24) Added Cold Damage with Mace or Sceptre Attacks", statOrder = { 2000 }, level = 68, group = "AddedColdDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithMacesJewel6"] = { type = "Prefix", affix = "Entombing", "(14-15) to (25-28) Added Cold Damage with Mace or Sceptre Attacks", statOrder = { 2000 }, level = 83, group = "AddedColdDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithStavesJewel1"] = { type = "Prefix", affix = "Frosted", "(4-5) to (9-10) Added Cold Damage with Staff Attacks", statOrder = { 2001 }, level = 1, group = "AddedColdDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithStavesJewel2_"] = { type = "Prefix", affix = "Freezing", "(6-7) to (11-13) Added Cold Damage with Staff Attacks", statOrder = { 2001 }, level = 38, group = "AddedColdDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithStavesJewel3_"] = { type = "Prefix", affix = "Frozen", "(8-9) to (14-16) Added Cold Damage with Staff Attacks", statOrder = { 2001 }, level = 47, group = "AddedColdDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithStavesJewel4"] = { type = "Prefix", affix = "Glaciated", "(10-11) to (17-20) Added Cold Damage with Staff Attacks", statOrder = { 2001 }, level = 59, group = "AddedColdDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithStavesJewel5"] = { type = "Prefix", affix = "Polar", "(12-13) to (21-24) Added Cold Damage with Staff Attacks", statOrder = { 2001 }, level = 68, group = "AddedColdDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithStavesJewel6"] = { type = "Prefix", affix = "Entombing", "(14-15) to (25-28) Added Cold Damage with Staff Attacks", statOrder = { 2001 }, level = 83, group = "AddedColdDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedChaosDamageWithDaggersJewel1"] = { type = "Prefix", affix = "Tainted", "(4-5) to (9-10) Added Chaos Damage with Dagger Attacks", statOrder = { 2014 }, level = 1, group = "AddedChaosDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["AbyssAddedChaosDamageWithDaggersJewel2_"] = { type = "Prefix", affix = "Clouded", "(6-7) to (11-13) Added Chaos Damage with Dagger Attacks", statOrder = { 2014 }, level = 42, group = "AddedChaosDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["AbyssAddedChaosDamageWithDaggersJewel3__"] = { type = "Prefix", affix = "Darkened", "(8-9) to (14-16) Added Chaos Damage with Dagger Attacks", statOrder = { 2014 }, level = 64, group = "AddedChaosDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["AbyssAddedChaosDamageWithDaggersJewel4"] = { type = "Prefix", affix = "Malignant", "(10-11) to (17-20) Added Chaos Damage with Dagger Attacks", statOrder = { 2014 }, level = 77, group = "AddedChaosDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["AbyssAddedChaosDamageWithDaggersJewel5"] = { type = "Prefix", affix = "Vile", "(12-13) to (21-24) Added Chaos Damage with Dagger Attacks", statOrder = { 2014 }, level = 85, group = "AddedChaosDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 250, 0, 0, 60, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["AbyssAddedChaosDamageWithBowsJewel1_"] = { type = "Prefix", affix = "Tainted", "(4-5) to (9-10) Added Chaos Damage with Bow Attacks", statOrder = { 2012 }, level = 1, group = "AddedChaosDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 1250, 0, 0, 350, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["AbyssAddedChaosDamageWithBowsJewel2"] = { type = "Prefix", affix = "Clouded", "(6-7) to (11-13) Added Chaos Damage with Bow Attacks", statOrder = { 2012 }, level = 42, group = "AddedChaosDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 1250, 0, 0, 350, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["AbyssAddedChaosDamageWithBowsJewel3"] = { type = "Prefix", affix = "Darkened", "(8-9) to (14-16) Added Chaos Damage with Bow Attacks", statOrder = { 2012 }, level = 64, group = "AddedChaosDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 1250, 0, 0, 350, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["AbyssAddedChaosDamageWithBowsJewel4"] = { type = "Prefix", affix = "Malignant", "(10-11) to (17-20) Added Chaos Damage with Bow Attacks", statOrder = { 2012 }, level = 77, group = "AddedChaosDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["AbyssAddedChaosDamageWithBowsJewel5"] = { type = "Prefix", affix = "Vile", "(12-13) to (21-24) Added Chaos Damage with Bow Attacks", statOrder = { 2012 }, level = 85, group = "AddedChaosDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 250, 0, 0, 60, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["AbyssAddedChaosDamageWithClawsJewel1"] = { type = "Prefix", affix = "Tainted", "(4-5) to (9-10) Added Chaos Damage with Claw Attacks", statOrder = { 2013 }, level = 1, group = "AddedChaosDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["AbyssAddedChaosDamageWithClawsJewel2"] = { type = "Prefix", affix = "Clouded", "(6-7) to (11-13) Added Chaos Damage with Claw Attacks", statOrder = { 2013 }, level = 42, group = "AddedChaosDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["AbyssAddedChaosDamageWithClawsJewel3_"] = { type = "Prefix", affix = "Darkened", "(8-9) to (14-16) Added Chaos Damage with Claw Attacks", statOrder = { 2013 }, level = 64, group = "AddedChaosDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["AbyssAddedChaosDamageWithClawsJewel4"] = { type = "Prefix", affix = "Malignant", "(10-11) to (17-20) Added Chaos Damage with Claw Attacks", statOrder = { 2013 }, level = 77, group = "AddedChaosDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["AbyssAddedChaosDamageWithClawsJewel5_"] = { type = "Prefix", affix = "Vile", "(12-13) to (21-24) Added Chaos Damage with Claw Attacks", statOrder = { 2013 }, level = 85, group = "AddedChaosDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 250, 0, 0, 60, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["AbyssAddedFireSuffixJewel1"] = { type = "Suffix", affix = "of Coals", "Adds (4-5) to (10-12) Fire Damage to Attacks", statOrder = { 1271 }, level = 35, group = "AddedFireSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireSuffixJewel2"] = { type = "Suffix", affix = "of Cinders", "Adds (6-7) to (13-16) Fire Damage to Attacks", statOrder = { 1271 }, level = 44, group = "AddedFireSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireSuffixJewel3"] = { type = "Suffix", affix = "of Flames", "Adds (8-9) to (17-20) Fire Damage to Attacks", statOrder = { 1271 }, level = 52, group = "AddedFireSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireSuffixJewel4_"] = { type = "Suffix", affix = "of Immolation", "Adds (10-12) to (21-24) Fire Damage to Attacks", statOrder = { 1271 }, level = 64, group = "AddedFireSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireSuffixJewel5"] = { type = "Suffix", affix = "of Ashes", "Adds (13-15) to (25-28) Fire Damage to Attacks", statOrder = { 1271 }, level = 76, group = "AddedFireSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 300, 300, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedColdSuffixJewel1"] = { type = "Suffix", affix = "of Sleet", "Adds (4-5) to (8-10) Cold Damage to Attacks", statOrder = { 1280 }, level = 36, group = "AddedColdSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdSuffixJewel2_"] = { type = "Suffix", affix = "of Ice", "Adds (6-7) to (11-13) Cold Damage to Attacks", statOrder = { 1280 }, level = 45, group = "AddedColdSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdSuffixJewel3"] = { type = "Suffix", affix = "of Rime", "Adds (8-9) to (14-17) Cold Damage to Attacks", statOrder = { 1280 }, level = 53, group = "AddedColdSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdSuffixJewel4"] = { type = "Suffix", affix = "of Floe", "Adds (10-11) to (18-21) Cold Damage to Attacks", statOrder = { 1280 }, level = 65, group = "AddedColdSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdSuffixJewel5_"] = { type = "Suffix", affix = "of Glaciation", "Adds (12-13) to (22-26) Cold Damage to Attacks", statOrder = { 1280 }, level = 77, group = "AddedColdSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 300, 300, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedLightningSuffixJewel1"] = { type = "Suffix", affix = "of Static", "Adds 1 to (19-20) Lightning Damage to Attacks", statOrder = { 1291 }, level = 35, group = "AddedLightningSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningSuffixJewel2"] = { type = "Suffix", affix = "of Electricity", "Adds (1-2) to (25-27) Lightning Damage to Attacks", statOrder = { 1291 }, level = 44, group = "AddedLightningSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningSuffixJewel3"] = { type = "Suffix", affix = "of Voltage", "Adds (1-3) to (29-32) Lightning Damage to Attacks", statOrder = { 1291 }, level = 52, group = "AddedLightningSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningSuffixJewel4"] = { type = "Suffix", affix = "of Discharge", "Adds (1-4) to (36-39) Lightning Damage to Attacks", statOrder = { 1291 }, level = 64, group = "AddedLightningSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningSuffixJewel5"] = { type = "Suffix", affix = "of Arcing", "Adds (1-4) to (43-48) Lightning Damage to Attacks", statOrder = { 1291 }, level = 76, group = "AddedLightningSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 300, 300, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedPhysicalSuffixJewel1"] = { type = "Suffix", affix = "of Weight", "Adds 1 to 3 Physical Damage to Attacks", statOrder = { 1178 }, level = 34, group = "AddedPhysicalSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AbyssAddedPhysicalSuffixJewel2"] = { type = "Suffix", affix = "of Impact", "Adds (2-3) to (4-5) Physical Damage to Attacks", statOrder = { 1178 }, level = 45, group = "AddedPhysicalSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AbyssAddedPhysicalSuffixJewel3"] = { type = "Suffix", affix = "of Collision", "Adds (4-5) to (6-7) Physical Damage to Attacks", statOrder = { 1178 }, level = 61, group = "AddedPhysicalSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AbyssAddedChaosSuffixJewel1"] = { type = "Suffix", affix = "of Malevolence", "Adds (6-7) to (11-13) Chaos Damage to Attacks", statOrder = { 1298 }, level = 36, group = "AddedChaosSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 750, 750, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["AbyssAddedChaosSuffixJewel2"] = { type = "Suffix", affix = "of Malice", "Adds (8-9) to (14-17) Chaos Damage to Attacks", statOrder = { 1298 }, level = 48, group = "AddedChaosSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 750, 750, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["AbyssAddedChaosSuffixJewel3"] = { type = "Suffix", affix = "of Sin", "Adds (10-11) to (18-21) Chaos Damage to Attacks", statOrder = { 1298 }, level = 64, group = "AddedChaosSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 375, 375, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["AbyssFlatMinionLifeRegenerationJewel1"] = { type = "Prefix", affix = "Fuelling", "Minions Regenerate (22-30) Life per second", statOrder = { 9123 }, level = 1, group = "FlatMinionLifeRegeneration", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life", "minion" }, }, + ["AbyssFlatMinionLifeRegenerationJewel2"] = { type = "Prefix", affix = "Lively", "Minions Regenerate (32-40) Life per second", statOrder = { 9123 }, level = 30, group = "FlatMinionLifeRegeneration", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life", "minion" }, }, + ["AbyssFlatMinionLifeRegenerationJewel3"] = { type = "Prefix", affix = "Exuberant", "Minions Regenerate (42-60) Life per second", statOrder = { 9123 }, level = 60, group = "FlatMinionLifeRegeneration", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life", "minion" }, }, + ["AbyssFlatEnergyShieldRegenerationJewel1"] = { type = "Prefix", affix = "Captivating", "Regenerate (9-12) Energy Shield per second", statOrder = { 6348 }, level = 1, group = "FlatEnergyShieldRegeneration", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 250, 250, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, }, + ["AbyssFlatEnergyShieldRegenerationJewel2"] = { type = "Prefix", affix = "Beautiful", "Regenerate (13-16) Energy Shield per second", statOrder = { 6348 }, level = 30, group = "FlatEnergyShieldRegeneration", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 250, 250, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, }, + ["AbyssFlatEnergyShieldRegenerationJewel3"] = { type = "Prefix", affix = "Breathtaking", "Regenerate (17-20) Energy Shield per second", statOrder = { 6348 }, level = 60, group = "FlatEnergyShieldRegeneration", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 250, 250, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, }, + ["AbyssFlatLifeRegenerationJewel1"] = { type = "Prefix", affix = "Youthful", "Regenerate (9-12) Life per second", statOrder = { 1485 }, level = 1, group = "LifeRegeneration", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 500, 250, 250, 0 }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["AbyssFlatLifeRegenerationJewel2"] = { type = "Prefix", affix = "Spirited", "Regenerate (13-16) Life per second", statOrder = { 1485 }, level = 40, group = "LifeRegeneration", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 500, 250, 250, 0 }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["AbyssFlatLifeRegenerationJewel3_"] = { type = "Prefix", affix = "Vivacious", "Regenerate (17-20) Life per second", statOrder = { 1485 }, level = 80, group = "LifeRegeneration", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 500, 250, 250, 0 }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["AbyssFlatManaShieldRegenerationJewel1"] = { type = "Prefix", affix = "Energising", "Regenerate (1.1-2) Mana per second", statOrder = { 1493 }, level = 1, group = "AddedManaRegeneration", weightKey = { "default", }, weightVal = { 350 }, modTags = { "resource", "mana" }, }, + ["AbyssFlatManaShieldRegenerationJewel2"] = { type = "Prefix", affix = "Inspirational", "Regenerate (2.1-3) Mana per second", statOrder = { 1493 }, level = 40, group = "AddedManaRegeneration", weightKey = { "default", }, weightVal = { 350 }, modTags = { "resource", "mana" }, }, + ["AbyssFlatManaShieldRegenerationJewel3"] = { type = "Prefix", affix = "Resonating", "Regenerate (3.3-4) Mana per second", statOrder = { 1493 }, level = 75, group = "AddedManaRegeneration", weightKey = { "default", }, weightVal = { 350 }, modTags = { "resource", "mana" }, }, + ["AbyssAttacksBlindOnHitChanceJewel1"] = { type = "Suffix", affix = "of Blinding", "(3-4)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4812 }, level = 32, group = "AttacksBlindOnHitChance", weightKey = { "abyss_jewel_ranged", "abyss_jewel_melee", "default", }, weightVal = { 800, 800, 0 }, modTags = { "attack" }, }, + ["AbyssAttacksBlindOnHitChanceJewel2___"] = { type = "Suffix", affix = "of Blinding", "(5-6)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4812 }, level = 65, group = "AttacksBlindOnHitChance", weightKey = { "abyss_jewel_ranged", "abyss_jewel_melee", "default", }, weightVal = { 400, 400, 0 }, modTags = { "attack" }, }, + ["AbyssAttacksTauntOnHitChanceJewel1"] = { type = "Suffix", affix = "of Taunting", "(3-5)% chance to Taunt Enemies on Hit with Attacks", statOrder = { 4813 }, level = 32, group = "AttacksTauntOnHitChance", weightKey = { "abyss_jewel_melee", "default", }, weightVal = { 800, 0 }, modTags = { "attack" }, }, + ["AbyssAttacksTauntOnHitChanceJewel2"] = { type = "Suffix", affix = "of Taunting", "(6-8)% chance to Taunt Enemies on Hit with Attacks", statOrder = { 4813 }, level = 65, group = "AttacksTauntOnHitChance", weightKey = { "abyss_jewel_melee", "default", }, weightVal = { 400, 0 }, modTags = { "attack" }, }, + ["AbyssSpellsHinderOnHitChanceJewel1"] = { type = "Suffix", affix = "of Hindering", "(3-5)% chance to Hinder Enemies on Hit with Spells", statOrder = { 9972 }, level = 32, group = "SpellsHinderOnHitChance", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 800, 0 }, modTags = { "caster" }, }, + ["AbyssSpellsHinderOnHitChanceJewel2"] = { type = "Suffix", affix = "of Hindering", "(6-8)% chance to Hinder Enemies on Hit with Spells", statOrder = { 9972 }, level = 65, group = "SpellsHinderOnHitChance", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 400, 0 }, modTags = { "caster" }, }, + ["AbyssMinionAttacksBlindOnHitChanceJewel1"] = { type = "Suffix", affix = "of Stifling", "Minions have (3-4)% chance to Blind on Hit with Attacks", statOrder = { 9087 }, level = 32, group = "MinionAttacksBlindOnHitChance", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0 }, modTags = { "attack", "minion" }, }, + ["AbyssMinionAttacksBlindOnHitChanceJewel2"] = { type = "Suffix", affix = "of Stifling", "Minions have (5-6)% chance to Blind on Hit with Attacks", statOrder = { 9087 }, level = 65, group = "MinionAttacksBlindOnHitChance", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 400, 0 }, modTags = { "attack", "minion" }, }, + ["AbyssMinionAttacksTauntOnHitChanceJewel1"] = { type = "Suffix", affix = "of Distraction", "Minions have (3-5)% chance to Taunt on Hit with Attacks", statOrder = { 3339 }, level = 32, group = "MinionAttacksTauntOnHitChance", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0 }, modTags = { "attack", "minion" }, }, + ["AbyssMinionAttacksTauntOnHitChanceJewel2_"] = { type = "Suffix", affix = "of Distraction", "Minions have (6-8)% chance to Taunt on Hit with Attacks", statOrder = { 3339 }, level = 65, group = "MinionAttacksTauntOnHitChance", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 400, 0 }, modTags = { "attack", "minion" }, }, + ["AbyssMinionSpellsHinderOnHitChanceJewel1"] = { type = "Suffix", affix = "of Delaying", "Minions have (3-5)% chance to Hinder Enemies on Hit with Spells", statOrder = { 9143 }, level = 32, group = "MinionSpellsHinderOnHitChance", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0 }, modTags = { "caster", "minion" }, }, + ["AbyssMinionSpellsHinderOnHitChanceJewel2"] = { type = "Suffix", affix = "of Delaying", "Minions have (6-8)% chance to Hinder Enemies on Hit with Spells", statOrder = { 9143 }, level = 65, group = "MinionSpellsHinderOnHitChance", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 400, 0 }, modTags = { "caster", "minion" }, }, + ["AbyssMinionPoisonOnHitChanceJewel1"] = { type = "Suffix", affix = "of Venom", "Minions have (10-15)% chance to Poison Enemies on Hit", statOrder = { 3082 }, level = 60, group = "AbyssMinionPoisonOnHitChance", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 400, 0 }, modTags = { "poison", "chaos", "minion", "ailment" }, }, + ["AbyssMinionIgniteOnHitChanceJewel1"] = { type = "Suffix", affix = "of Combustion", "Minions have (10-15)% chance to Ignite", statOrder = { 9095 }, level = 60, group = "AbyssMinionIgniteOnHitChance", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 400, 0 }, modTags = { "elemental", "fire", "minion", "ailment" }, }, + ["AbyssMinionAttacksBleedOnHitChanceJewel1"] = { type = "Suffix", affix = "of Bloodletting", "Minions have (10-15)% chance to cause Bleeding with Attacks", statOrder = { 2399 }, level = 60, group = "AbyssMinionAttacksBleedOnHitChance", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 400, 0 }, modTags = { "bleed", "physical", "minion", "ailment" }, }, + ["AbyssDamageVSAbyssMonstersJewel1"] = { type = "Suffix", affix = "of Banishing", "(30-40)% increased Damage with Hits and Ailments against Abyssal Monsters", statOrder = { 5964 }, level = 1, group = "DamageVSAbyssMonsters", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 0, 500 }, modTags = { "damage" }, }, + ["AbyssMinionDamageVSAbyssMonstersJewel1"] = { type = "Suffix", affix = "of Marshalling", "Minions deal (30-40)% increased Damage with Hits and Ailments against Abyssal Monsters", statOrder = { 9107 }, level = 1, group = "MinionDamageVSAbyssMonsters", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "minion" }, }, + ["AbyssReducedPhysicalDamageTakenVsAbyssMonsterJewel1"] = { type = "Suffix", affix = "of Warding", "(4-6)% additional Physical Damage Reduction against Abyssal Monsters", statOrder = { 4483 }, level = 1, group = "ReducedPhysicalDamageTakenVsAbyssMonsters", weightKey = { "default", }, weightVal = { 500 }, modTags = { "physical" }, }, + ["AbyssAvoidIgniteJewel1_"] = { type = "Suffix", affix = "of Nonflammability", "(31-40)% chance to Avoid being Ignited", statOrder = { 1757 }, level = 50, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 300 }, modTags = { "elemental", "fire", "ailment" }, }, + ["AbyssAvoidIgniteJewel2"] = { type = "Suffix", affix = "of Fireproofing", "(41-50)% chance to Avoid being Ignited", statOrder = { 1757 }, level = 70, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 150 }, modTags = { "elemental", "fire", "ailment" }, }, + ["AbyssAvoidFreezeAndChillJewel1"] = { type = "Suffix", affix = "of Warming", "(31-40)% chance to Avoid being Frozen", statOrder = { 1756 }, level = 50, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 300 }, modTags = { "elemental", "cold", "ailment" }, }, + ["AbyssAvoidFreezeAndChillJewel2"] = { type = "Suffix", affix = "of Heating", "(41-50)% chance to Avoid being Frozen", statOrder = { 1756 }, level = 70, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 150 }, modTags = { "elemental", "cold", "ailment" }, }, + ["AbyssAvoidShockJewel1"] = { type = "Suffix", affix = "of Insulating", "(31-40)% chance to Avoid being Shocked", statOrder = { 1759 }, level = 50, group = "AvoidShockForJewel", weightKey = { "default", }, weightVal = { 300 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["AbyssAvoidShockJewel2"] = { type = "Suffix", affix = "of the Lightning Rod", "(41-50)% chance to Avoid being Shocked", statOrder = { 1759 }, level = 70, group = "AvoidShockForJewel", weightKey = { "default", }, weightVal = { 150 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["AbyssAvoidPoisonJewel1__"] = { type = "Suffix", affix = "of Tolerance", "(31-40)% chance to Avoid being Poisoned", statOrder = { 1760 }, level = 50, group = "ChanceToAvoidPoison", weightKey = { "default", }, weightVal = { 300 }, modTags = { "poison", "chaos", "ailment" }, }, + ["AbyssAvoidPoisonJewel2__"] = { type = "Suffix", affix = "of Immunity", "(41-50)% chance to Avoid being Poisoned", statOrder = { 1760 }, level = 70, group = "ChanceToAvoidPoison", weightKey = { "default", }, weightVal = { 150 }, modTags = { "poison", "chaos", "ailment" }, }, + ["AbyssAvoidBleedingJewel1"] = { type = "Suffix", affix = "of Stemming", "(31-40)% chance to Avoid Bleeding", statOrder = { 4123 }, level = 50, group = "ChanceToAvoidBleeding", weightKey = { "default", }, weightVal = { 300 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["AbyssAvoidBleedingJewel2"] = { type = "Suffix", affix = "of the Tourniquet", "(41-50)% chance to Avoid Bleeding", statOrder = { 4123 }, level = 70, group = "ChanceToAvoidBleeding", weightKey = { "default", }, weightVal = { 150 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["AbyssAvoidStunJewel1"] = { type = "Suffix", affix = "of Balance", "(21-24)% chance to Avoid being Stunned", statOrder = { 1762 }, level = 50, group = "AvoidStun", weightKey = { "default", }, weightVal = { 300 }, modTags = { }, }, + ["AbyssAvoidStunJewel2"] = { type = "Suffix", affix = "of Poise", "(25-30)% chance to Avoid being Stunned", statOrder = { 1762 }, level = 70, group = "AvoidStun", weightKey = { "default", }, weightVal = { 150 }, modTags = { }, }, + ["AbyssAccuracyRatingJewel1"] = { type = "Suffix", affix = "of Calm", "+(10-30) to Accuracy Rating", statOrder = { 1344 }, level = 1, group = "IncreasedAccuracy", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, + ["AbyssAccuracyRatingJewel2"] = { type = "Suffix", affix = "of Steadiness", "+(31-60) to Accuracy Rating", statOrder = { 1344 }, level = 1, group = "IncreasedAccuracy", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 500, 1000, 0 }, modTags = { "attack" }, }, + ["AbyssAccuracyRatingJewel3"] = { type = "Suffix", affix = "of the Marksman", "+(61-120) to Accuracy Rating", statOrder = { 1344 }, level = 52, group = "IncreasedAccuracy", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 500, 1000, 0 }, modTags = { "attack" }, }, + ["AbyssAccuracyRatingJewel4"] = { type = "Suffix", affix = "of the Ranger", "+(121-240) to Accuracy Rating", statOrder = { 1344 }, level = 78, group = "IncreasedAccuracy", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 500, 1000, 0 }, modTags = { "attack" }, }, + ["AbyssAccuracyRatingJewel5"] = { type = "Suffix", affix = "of the Deadeye", "+(241-300) to Accuracy Rating", statOrder = { 1344 }, level = 85, group = "IncreasedAccuracy", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 250, 500, 0 }, modTags = { "attack" }, }, + ["AbyssMinionAttackAndCastSpeedJewel1"] = { type = "Suffix", affix = "of Training", "Minions have (4-6)% increased Attack Speed", "Minions have (4-6)% increased Cast Speed", statOrder = { 2817, 2818 }, level = 1, group = "MinionAttackAndCastSpeed", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, + ["AbyssMinionLifeRegenerationJewel1"] = { type = "Suffix", affix = "of Longevity", "Minions Regenerate (0.4-0.8)% of Life per second", statOrder = { 2821 }, level = 1, group = "MinionLifeRegeneration", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "life", "minion" }, }, + ["AbyssMinionLifeLeechJewel1"] = { type = "Suffix", affix = "of Vampirism", "Minions Leech (0.3-0.5)% of Damage as Life", statOrder = { 2820 }, level = 1, group = "MinionLifeLeech", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "life", "minion" }, }, + ["AbyssMinionMovementSpeedJewel1"] = { type = "Suffix", affix = "of Orchestration", "Minions have (6-10)% increased Movement Speed", statOrder = { 1680 }, level = 1, group = "MinionMovementSpeed", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0 }, modTags = { "speed", "minion" }, }, + ["AbyssMinionLifeJewel1_"] = { type = "Suffix", affix = "of Fortitude", "Minions have (8-12)% increased maximum Life", statOrder = { 1677 }, level = 1, group = "MinionLifeForJewel", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "life", "minion" }, }, + ["AbyssFlatMinionAccuracy1"] = { type = "Suffix", affix = "of Suggestion", "Minions have +(95-125) to Accuracy Rating", statOrder = { 9074 }, level = 1, group = "MinionAccuracyRatingFlat", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "minion" }, }, + ["AbyssFlatMinionAccuracy2_"] = { type = "Suffix", affix = "of Instruction", "Minions have +(126-180) to Accuracy Rating", statOrder = { 9074 }, level = 52, group = "MinionAccuracyRatingFlat", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "minion" }, }, + ["AbyssFlatMinionAccuracy3"] = { type = "Suffix", affix = "of Command", "Minions have +(181-250) to Accuracy Rating", statOrder = { 9074 }, level = 78, group = "MinionAccuracyRatingFlat", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "minion" }, }, + ["AbyssMinionElementalResistancesJewel1"] = { type = "Suffix", affix = "of Acclimatisation", "Minions have +(6-10)% to all Elemental Resistances", statOrder = { 2822 }, level = 1, group = "MinionElementalResistancesForJewel", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0 }, modTags = { "elemental", "resistance", "minion" }, }, + ["AbyssMinionChaosResistanceJewel1"] = { type = "Suffix", affix = "of Righteousness", "Minions have +(7-11)% to Chaos Resistance", statOrder = { 2823 }, level = 1, group = "MinionChaosResistance", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0 }, modTags = { "chaos", "resistance", "minion" }, }, + ["AbyssFlatArmourJewel1"] = { type = "Prefix", affix = "Lacquered", "+(36-60) to Armour", statOrder = { 1450 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 600 }, modTags = { "defences", "armour" }, }, + ["AbyssFlatArmourJewel2"] = { type = "Prefix", affix = "Fortified", "+(61-100) to Armour", statOrder = { 1450 }, level = 40, group = "PhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 600 }, modTags = { "defences", "armour" }, }, + ["AbyssFlatArmourJewel3"] = { type = "Prefix", affix = "Carapaced", "+(101-180) to Armour", statOrder = { 1450 }, level = 75, group = "PhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 600 }, modTags = { "defences", "armour" }, }, + ["AbyssFlatArmourJewel4__"] = { type = "Prefix", affix = "Encased", "+(181-250) to Armour", statOrder = { 1450 }, level = 83, group = "PhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 300 }, modTags = { "defences", "armour" }, }, + ["AbyssFlatEvasionJewel1"] = { type = "Prefix", affix = "Agile", "+(36-60) to Evasion Rating", statOrder = { 1455 }, level = 1, group = "EvasionRating", weightKey = { "default", }, weightVal = { 600 }, modTags = { "defences", "evasion" }, }, + ["AbyssFlatEvasionJewel2"] = { type = "Prefix", affix = "Fleet", "+(61-100) to Evasion Rating", statOrder = { 1455 }, level = 40, group = "EvasionRating", weightKey = { "default", }, weightVal = { 600 }, modTags = { "defences", "evasion" }, }, + ["AbyssFlatEvasionJewel3"] = { type = "Prefix", affix = "Vaporous", "+(101-180) to Evasion Rating", statOrder = { 1455 }, level = 75, group = "EvasionRating", weightKey = { "default", }, weightVal = { 600 }, modTags = { "defences", "evasion" }, }, + ["AbyssFlatEvasionJewel4_"] = { type = "Prefix", affix = "Beclouded", "+(181-250) to Evasion Rating", statOrder = { 1455 }, level = 83, group = "EvasionRating", weightKey = { "default", }, weightVal = { 300 }, modTags = { "defences", "evasion" }, }, + ["AbyssFlatEnergyShieldJewel1"] = { type = "Prefix", affix = "Shining", "+(21-25) to maximum Energy Shield", statOrder = { 1469 }, level = 1, group = "EnergyShield", weightKey = { "default", }, weightVal = { 600 }, modTags = { "defences", "energy_shield" }, }, + ["AbyssFlatEnergyShieldJewel2"] = { type = "Prefix", affix = "Seething", "+(26-30) to maximum Energy Shield", statOrder = { 1469 }, level = 40, group = "EnergyShield", weightKey = { "default", }, weightVal = { 600 }, modTags = { "defences", "energy_shield" }, }, + ["AbyssFlatEnergyShieldJewel3"] = { type = "Prefix", affix = "Incandescent", "+(31-35) to maximum Energy Shield", statOrder = { 1469 }, level = 75, group = "EnergyShield", weightKey = { "default", }, weightVal = { 600 }, modTags = { "defences", "energy_shield" }, }, + ["AbyssFlatEnergyShieldJewel4"] = { type = "Prefix", affix = "Resplendent", "+(36-40) to maximum Energy Shield", statOrder = { 1469 }, level = 83, group = "EnergyShield", weightKey = { "default", }, weightVal = { 300 }, modTags = { "defences", "energy_shield" }, }, + ["AbyssCurseEffectJewel1"] = { type = "Prefix", affix = "Murmuring", "2% increased Effect of your Curses", statOrder = { 2505 }, level = 75, group = "CurseEffectiveness", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "caster", "curse" }, }, + ["AbyssCurseEffectJewel2"] = { type = "Prefix", affix = "Foul-tongued", "3% increased Effect of your Curses", statOrder = { 2505 }, level = 86, group = "CurseEffectiveness", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "caster", "curse" }, }, + ["AbyssCooldownRecoverySpeed1_"] = { type = "Prefix", affix = "Facilitating", "2% increased Cooldown Recovery Rate", statOrder = { 4899 }, level = 75, group = "GlobalCooldownRecovery", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 300, 300, 100, 100, 0 }, modTags = { }, }, + ["AbyssCooldownRecoverySpeed2__"] = { type = "Prefix", affix = "Expediting", "3% increased Cooldown Recovery Rate", statOrder = { 4899 }, level = 86, group = "GlobalCooldownRecovery", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 300, 300, 100, 100, 0 }, modTags = { }, }, + ["AbyssImpaleEffect1_"] = { type = "Prefix", affix = "Skewering", "(3-4)% increased Impale Effect", statOrder = { 7107 }, level = 75, group = "ImpaleEffect", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 300, 300, 100, 100, 0 }, modTags = { "physical" }, }, + ["AbyssImpaleEffect2_"] = { type = "Prefix", affix = "Lancing", "(5-6)% increased Impale Effect", statOrder = { 7107 }, level = 86, group = "ImpaleEffect", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 300, 300, 100, 100, 0 }, modTags = { "physical" }, }, + ["AbyssDamageRecoupedAsMana1"] = { type = "Prefix", affix = "Spurring", "2% of Damage taken Recouped as Mana", statOrder = { 2364 }, level = 75, group = "PercentDamageGoesToMana", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 100, 100, 300, 300, 0 }, modTags = { "resource", "mana" }, }, + ["AbyssDamageRecoupedAsMana2"] = { type = "Prefix", affix = "Motivating", "3% of Damage taken Recouped as Mana", statOrder = { 2364 }, level = 86, group = "PercentDamageGoesToMana", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 100, 100, 300, 300, 0 }, modTags = { "resource", "mana" }, }, + ["AbyssSpellBlockChanceIfHitRecentlyJewel1"] = { type = "Suffix", affix = "of Instinct", "+(3-4)% Chance to Block Spell Damage if you were Damaged by a Hit Recently", statOrder = { 5549 }, level = 1, group = "SpellBlockChanceIfHitRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 250, 250, 500, 250, 0 }, modTags = { "block" }, }, + ["AbyssReducedPhysicalDamageTakenIfNotHitRecentlyJewel1"] = { type = "Suffix", affix = "of Confidence", "2% additional Physical Damage Reduction if you weren't Damaged by a Hit Recently", statOrder = { 4479 }, level = 1, group = "ReducedPhysicalDamageTakenIfNotHitRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 250, 250, 250, 0 }, modTags = { "physical" }, }, + ["AbyssMovementSpeedIfNotDamagedRecentlyJewel1"] = { type = "Suffix", affix = "of Momentum", "(3-4)% increased Movement Speed if you haven't taken Damage Recently", statOrder = { 9219 }, level = 1, group = "MovementSpeedIfNotDamagedRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 250, 500, 250, 250, 0 }, modTags = { "speed" }, }, + ["AbyssDamageIfEnemySlainRecentlyJewel1"] = { type = "Suffix", affix = "of the Slayer", "(15-20)% increased Damage if you've Killed Recently", statOrder = { 5937 }, level = 1, group = "DamageIfEnemySlainRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 250, 250, 0, 0 }, modTags = { "damage" }, }, + ["AbyssCriticalStrikeMultiplierIfEnemySlainRecentlyJewel1"] = { type = "Suffix", affix = "of the Assassin", "+(8-14)% to Critical Strike Multiplier if you've Killed Recently", statOrder = { 5854 }, level = 25, group = "CriticalStrikeMultiplierIfEnemySlainRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 250, 250, 500, 0, 0 }, modTags = { "damage", "critical" }, }, + ["AbyssIncreasedArmourIfNoEnemySlainRecentlyJewel1__"] = { type = "Suffix", affix = "of the Guardian", "(20-30)% increased Armour if you haven't Killed Recently", statOrder = { 4667 }, level = 1, group = "IncreasedArmourIfNoEnemySlainRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 250, 250, 0, 0 }, modTags = { "defences", "armour" }, }, + ["AbyssAccuracyIfNoEnemySlainRecentlyJewel1_"] = { type = "Suffix", affix = "of the Deadeye", "(20-30)% increased Accuracy Rating if you haven't Killed Recently", statOrder = { 4425 }, level = 1, group = "AccuracyIfNoEnemySlainRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "attack" }, }, + ["AbyssDamagePenetratesElementalResistancesIfNoEnemySlainRecentlyJewel1"] = { type = "Suffix", affix = "of the Inquisitor", "Damage Penetrates 2% Elemental Resistances if you haven't Killed Recently", statOrder = { 5927 }, level = 1, group = "DamagePenetratesElementalResistancesIfNoEnemySlainRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 250, 250, 500, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["AbyssCastSpeedIfMinionKilledRecentlyJewel1"] = { type = "Suffix", affix = "of Retaliation", "(7-10)% increased Cast Speed if a Minion has been Killed Recently", statOrder = { 5361 }, level = 30, group = "CastSpeedIfMinionKilledRecently", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 500, 0 }, modTags = { "caster", "speed" }, }, + ["AbyssMinionDamageIfMinionSkillUsedRecentlyJewel1"] = { type = "Suffix", affix = "of Authority", "Minions deal (15-20)% increased Damage if you've used a Minion Skill Recently", statOrder = { 1883 }, level = 1, group = "MinionDamageIfMinionSkillUsedRecently", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "minion" }, }, + ["AbyssEvasionRatingWhileMovingJewel1"] = { type = "Suffix", affix = "of Maneuvering", "(25-35)% increased Evasion Rating while moving", statOrder = { 6384 }, level = 1, group = "EvasionRatingWhileMoving", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 250, 500, 250, 250, 0 }, modTags = { "defences", "evasion" }, }, + ["AbyssManaRegenerationRateWhileMovingJewel1"] = { type = "Suffix", affix = "of Praxis", "(20-25)% increased Mana Regeneration Rate while moving", statOrder = { 8044 }, level = 1, group = "ManaRegenerationRateWhileMoving", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 250, 250, 500, 250, 0 }, modTags = { "resource", "mana" }, }, + ["AbyssLifeRegenerationRateWhileMovingJewel1"] = { type = "Suffix", affix = "of Vivaciousness", "Regenerate (0.5-1)% of Life per second while moving", statOrder = { 7284 }, level = 1, group = "LifeRegenerationRateWhileMoving", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 250, 250, 250, 0 }, modTags = { "resource", "life" }, }, + ["AbyssPhysicalDamageAddedAsExtraFireIfCriticalStrikeDealtRecentlyJewel1"] = { type = "Suffix", affix = "of the Inferno", "Gain (2-4)% of Physical Damage as Extra Fire Damage if you've dealt a Critical Strike Recently", statOrder = { 9421 }, level = 40, group = "PhysicalDamageAddedAsExtraFireIfCriticalStrikeDealtRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 300, 150, 150, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["AbyssAttackSpeedIfCriticalStrikeDealtRecentlyJewel1"] = { type = "Suffix", affix = "of Opportunity", "(6-8)% increased Attack Speed if you've dealt a Critical Strike Recently", statOrder = { 4794 }, level = 25, group = "AttackSpeedIfCriticalStrikeDealtRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 500, 250, 0, 0 }, modTags = { "attack", "speed" }, }, + ["AbyssCastSpeedIfCriticalStrikeDealtRecentlyJewel1"] = { type = "Suffix", affix = "of Abuse", "(5-7)% increased Cast Speed if you've dealt a Critical Strike Recently", statOrder = { 5360 }, level = 25, group = "CastSpeedIfCriticalStrikeDealtRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 250, 250, 500, 0, 0 }, modTags = { "caster", "speed" }, }, + ["AbyssCriticalStrikeChanceIfNoCriticalStrikeDealtRecentlyJewel1"] = { type = "Suffix", affix = "of Preparation", "(20-30)% increased Critical Strike Chance if you haven't dealt a Critical Strike Recently", statOrder = { 5824 }, level = 1, group = "CriticalStrikeChanceIfNoCriticalStrikeDealtRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 250, 250, 500, 0, 0 }, modTags = { "critical" }, }, + ["AbyssMinionAttackAndCastSpeedIfEnemySlainRecentlyJewel1"] = { type = "Suffix", affix = "of Rallying", "Minions have (6-8)% increased Attack and Cast Speed if you or your Minions have Killed Recently", statOrder = { 9081 }, level = 1, group = "MinionAttackAndCastSpeedIfEnemySlainRecently", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, + ["AbyssSpellDodgeAndDodgeChanceIfHitRecentlyJewel1"] = { type = "Suffix", affix = "of Readiness", "+2% Chance to Block Spell Damage if you were Damaged by a Hit Recently", statOrder = { 5549 }, level = 1, group = "SpellBlockChanceIfHitRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 250, 500, 250, 250, 0 }, modTags = { "block" }, }, + ["AbyssMovementSpeedIfEnemySlainRecentlyJewel1"] = { type = "Suffix", affix = "of the Raider", "(2-4)% increased Movement Speed if you've Killed Recently", statOrder = { 4168 }, level = 1, group = "MovementSpeedIfEnemySlainRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 250, 500, 250, 0, 0 }, modTags = { "speed" }, }, + ["AbyssChanceToBlockIfDamagedRecentlyJewel1_"] = { type = "Suffix", affix = "of Guarding", "+(3-4)% Chance to Block Attack Damage if you were Damaged by a Hit Recently", statOrder = { 3124 }, level = 1, group = "ChanceToBlockIfDamagedRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 250, 250, 250, 0 }, modTags = { "block" }, }, + ["AbyssChanceToGainOnslaughtOnKillJewel1"] = { type = "Suffix", affix = "of Onslaught", "(3-5)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2902 }, level = 50, group = "ChanceToGainOnslaughtOnKill", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["AbyssChanceToGainOnslaughtOnKillJewel2"] = { type = "Suffix", affix = "of Onslaught", "(6-8)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2902 }, level = 80, group = "ChanceToGainOnslaughtOnKill", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["AbyssChancetoGainPhasingOnKillJewel1"] = { type = "Suffix", affix = "of Phasing", "(3-5)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3373 }, level = 50, group = "ChancetoGainPhasingOnKill", weightKey = { "abyss_jewel_ranged", "abyss_jewel_caster", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { }, }, + ["AbyssChancetoGainPhasingOnKillJewel2"] = { type = "Suffix", affix = "of Phasing", "(6-8)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3373 }, level = 80, group = "ChancetoGainPhasingOnKill", weightKey = { "abyss_jewel_ranged", "abyss_jewel_caster", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["AbyssChanceToGainUnholyMightOnKillAbyssJewel1"] = { type = "Suffix", affix = "of Unholy Might", "(2-3)% chance to Gain Unholy Might for 4 seconds on Melee Kill", statOrder = { 2991 }, level = 60, group = "ChanceToGainUnholyMightOnKillAbyss", weightKey = { "abyss_jewel_melee", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["AbyssChanceToGainUnholyMightOnKillAbyssJewel2_"] = { type = "Suffix", affix = "of Unholy Might", "(4-5)% chance to Gain Unholy Might for 4 seconds on Melee Kill", statOrder = { 2991 }, level = 84, group = "ChanceToGainUnholyMightOnKillAbyss", weightKey = { "abyss_jewel_melee", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AbyssSelfCurseEffectOnConsecratedGroundJewel1__"] = { type = "Suffix", affix = "of the Sanctum", "(10-15)% reduced Effect of Curses on you while on Consecrated Ground", statOrder = { 5893 }, level = 84, group = "EnchantmentConsecratedGround", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 100, 100, 500, 500, 0 }, modTags = { "caster", "curse" }, }, + ["AbyssAvoidElementalAilmentsWhileElusiveJewel1"] = { type = "Suffix", affix = "of Escape", "(8-10)% chance to Avoid Elemental Ailments while you have Elusive", statOrder = { 4837 }, level = 84, group = "EnchantmentElusive", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 100, 500, 100, 100, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["AbyssHinderedEnemiesLifeRegenerationRateJewel1"] = { type = "Suffix", affix = "of Enervation", "Enemies Hindered by you have (15-20)% reduced Life Regeneration rate", statOrder = { 6300 }, level = 84, group = "EnchantmentHinder", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 100, 500, 500, 0 }, modTags = { "resource", "life" }, }, + ["AbyssBlindedEnemiesCriticalStrikeChanceJewel1"] = { type = "Suffix", affix = "of Clouding", "Enemies Blinded by you have (15-20)% reduced Critical Strike Chance", statOrder = { 6294 }, level = 84, group = "EnchantmentBlind", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 500, 100, 100, 0 }, modTags = { "critical" }, }, + ["AbyssWitheredEnemiesAllResistanceJewel1___"] = { type = "Suffix", affix = "of Languishing", "Enemies Withered by you have -2% to all Resistances", statOrder = { 6306 }, level = 84, group = "EnchantmentWither", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 100, 100, 500, 500, 0 }, modTags = { "damage" }, }, + ["AbyssMaimedEnemiesDamageOverTimeJewel1"] = { type = "Suffix", affix = "of Mangling", "Enemies Maimed by you take (4-5)% increased Damage Over Time", statOrder = { 6304 }, level = 84, group = "EnchantmentMaim", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 500, 100, 100, 0 }, modTags = { "damage" }, }, + ["AbyssIntimidatedEnemiesStunDurationJewel1"] = { type = "Suffix", affix = "of Daunting", "Enemies Intimidated by you have (10-15)% increased duration of stuns against them", statOrder = { 6303 }, level = 84, group = "EnchantmentIntimidate", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 100, 100, 100, 0 }, modTags = { }, }, + ["DelveWeaponFirePenetration1h1_"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (5-7)% Fire Resistance", statOrder = { 2890 }, level = 1, group = "FireResistancePenetration", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["DelveWeaponFirePenetration2h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (12-15)% Fire Resistance", statOrder = { 2890 }, level = 1, group = "FireResistancePenetration", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["DelveJewelFirePenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates 1% Fire Resistance", statOrder = { 2890 }, level = 1, group = "FireResistancePenetration", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["DelveBodyArmourAvoidFire1_"] = { type = "Prefix", affix = "Subterranean", "(8-10)% chance to Avoid Fire Damage from Hits", statOrder = { 3281 }, level = 1, group = "FireDamageAvoidance", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "elemental", "fire" }, }, + ["DelveGlovesFireDamageToSpells1"] = { type = "Prefix", affix = "Subterranean", "Adds (20-25) to (26-35) Fire Damage", statOrder = { 1270 }, level = 1, group = "GlobalAddedFireDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["DelveBootsSocketedFireGemLevel1"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Fire Gems", statOrder = { 147 }, level = 1, group = "LocalIncreaseSocketedFireGemLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "fire", "gem" }, }, + ["DelveRingFireLeech1"] = { type = "Prefix", affix = "Subterranean", "0.2% of Fire Damage Leeched as Life", statOrder = { 1581 }, level = 1, group = "FireDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "elemental", "fire" }, }, + ["DelveHelmetEnemyFireResistanceAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies have -9% to Fire Resistance", statOrder = { 7766 }, level = 1, group = "NearbyEnemyFireDamageResistance", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "resistance" }, }, + ["DelveJewelryFireDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Fire Damage", statOrder = { 1268 }, level = 1, group = "FireDamagePercentagePrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["DelveWeaponColdPenetration1h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (5-7)% Cold Resistance", statOrder = { 2892 }, level = 1, group = "ColdResistancePenetration", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["DelveWeaponColdPenetration2h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (12-15)% Cold Resistance", statOrder = { 2892 }, level = 1, group = "ColdResistancePenetration", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["DelveJewelColdPenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates 1% Cold Resistance", statOrder = { 2892 }, level = 1, group = "ColdResistancePenetration", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["DelveBodyArmourAvoidCold1"] = { type = "Prefix", affix = "Subterranean", "(6-10)% chance to Avoid Cold Damage from Hits", statOrder = { 3282 }, level = 1, group = "ColdDamageAvoidance", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "elemental", "cold" }, }, + ["DelveGlovesColdDamageToSpells1"] = { type = "Prefix", affix = "Subterranean", "Adds (20-25) to (26-35) Cold Damage", statOrder = { 1279 }, level = 1, group = "GlobalAddedColdDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["DelveBootsSocketedColdGemLevel1"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Cold Gems", statOrder = { 148 }, level = 1, group = "LocalIncreaseSocketedColdGemLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "cold", "gem" }, }, + ["DelveRingColdLeech1"] = { type = "Prefix", affix = "Subterranean", "0.2% of Cold Damage Leeched as Life", statOrder = { 1586 }, level = 1, group = "ColdDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "elemental", "cold" }, }, + ["DelveHelmetEnemyColdResistanceAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies have -9% to Cold Resistance", statOrder = { 7764 }, level = 1, group = "NearbyEnemyColdDamageResistance", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "resistance" }, }, + ["DelveJewelryColdDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Cold Damage", statOrder = { 1277 }, level = 1, group = "ColdDamagePercentagePrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["DelveWeaponLightningPenetration1h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (5-7)% Lightning Resistance", statOrder = { 2893 }, level = 1, group = "LightningResistancePenetration", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["DelveWeaponLightningPenetration2h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (12-15)% Lightning Resistance", statOrder = { 2893 }, level = 1, group = "LightningResistancePenetration", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["DelveJewelLightningPenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates 1% Lightning Resistance", statOrder = { 2893 }, level = 1, group = "LightningResistancePenetration", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["DelveBodyArmourAvoidLightning1"] = { type = "Prefix", affix = "Subterranean", "(6-10)% chance to Avoid Lightning Damage from Hits", statOrder = { 3283 }, level = 1, group = "LightningDamageAvoidance", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "elemental", "lightning" }, }, + ["DelveGlovesLightningDamageToSpells1"] = { type = "Prefix", affix = "Subterranean", "Adds 1 to (48-60) Lightning Damage", statOrder = { 1290 }, level = 1, group = "GlobalAddedLightningDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["DelveBootsSocketedLightningGemLevel1_"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Lightning Gems", statOrder = { 149 }, level = 1, group = "LocalIncreaseSocketedLightningGemLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "lightning", "gem" }, }, + ["DelveRingLightningLeech1_"] = { type = "Prefix", affix = "Subterranean", "0.2% of Lightning Damage Leeched as Life", statOrder = { 1590 }, level = 1, group = "LightningDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, }, + ["DelveHelmetEnemyLightningResistanceAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies have -9% to Lightning Resistance", statOrder = { 7768 }, level = 1, group = "NearbyEnemyLightningDamageResistance", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "resistance" }, }, + ["DelveJewelryLightningDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Lightning Damage", statOrder = { 1288 }, level = 1, group = "LightningDamagePercentagePrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["DelveWeaponIntimidateOnHit1"] = { type = "Suffix", affix = "of the Underground", "15% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 7731 }, level = 1, group = "LocalChanceToIntimidateOnHit", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "attack" }, }, + ["DelveArmourPhysDamageTaken1"] = { type = "Suffix", affix = "of the Underground", "-(75-50) Physical Damage taken from Hits", statOrder = { 2144 }, level = 1, group = "FlatPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "physical" }, }, + ["DelveArmourPhysDamageTakenv2_1"] = { type = "Suffix", affix = "of the Underground", "-(34-20) Physical Damage taken from Hits", statOrder = { 2144 }, level = 1, group = "FlatPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical" }, }, + ["DelveArmourPhysDamageTakenv2_2"] = { type = "Suffix", affix = "of the Underground", "-(49-35) Physical Damage taken from Hits", statOrder = { 2144 }, level = 30, group = "FlatPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical" }, }, + ["DelveArmourPhysDamageTakenv2_3"] = { type = "Suffix", affix = "of the Underground", "-(75-50) Physical Damage taken from Hits", statOrder = { 2144 }, level = 60, group = "FlatPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical" }, }, + ["DelveShieldPhysicalDamageReductionRating1"] = { type = "Prefix", affix = "Subterranean", "(3-5)% additional Physical Damage Reduction", statOrder = { 2182 }, level = 1, group = "ReducedPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "physical" }, }, + ["DelveBootsPhyiscalDamageReductionRatingWhileMoving1"] = { type = "Suffix", affix = "of the Underground", "(3-5)% additional Physical Damage Reduction while moving", statOrder = { 4489 }, level = 1, group = "AdditionalPhysicalDamageReductionWhileMoving", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical" }, }, + ["DelveGlovesGlobalAddedPhysicalDamage1"] = { type = "Prefix", affix = "Subterranean", "Adds (6-8) to (9-11) Physical Damage", statOrder = { 1177 }, level = 1, group = "GlobalAddedPhysicalDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["DelveRingPhysicalLeech1"] = { type = "Prefix", affix = "Subterranean", "0.2% of Physical Damage Leeched as Life", statOrder = { 1577 }, level = 1, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "physical" }, }, + ["DelveHelmetEnemyPhysicalDamageTakenAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies take 9% increased Physical Damage", statOrder = { 7770 }, level = 1, group = "NearbyEnemyPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["DelveJewelryPhysicalDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Global Physical Damage", statOrder = { 1143 }, level = 1, group = "PhysicalDamagePercentPrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["DelveJewelPhysicalDamageOverTimeTaken1"] = { type = "Prefix", affix = "Subterranean", "(1-2)% reduced Physical Damage taken over time", statOrder = { 4935 }, level = 1, group = "PhysicalDamageOverTimeTaken", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "physical" }, }, + ["DelveWeaponDespairOnHit1h1"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Despair on Hit", statOrder = { 2437 }, level = 1, group = "CurseOnHitDespair", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "caster", "curse" }, }, + ["DelveWeaponDespairOnHit2h1"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Despair on Hit", statOrder = { 2437 }, level = 1, group = "CurseOnHitDespair", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "caster", "curse" }, }, + ["DelveArmourChaosResistance1_"] = { type = "Prefix", affix = "Subterranean", "+(20-35)% to Chaos Resistance", statOrder = { 1552 }, level = 1, group = "ChaosResistancePrefix", weightKey = { "abyss_jewel", "jewel", "quiver", "shield", "body_armour", "boots", "gloves", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "chaos", "resistance" }, }, + ["DelveBodyArmourChaosDegenResist1"] = { type = "Suffix", affix = "of the Underground", "+(30-40)% Chaos Resistance against Damage Over Time", statOrder = { 5631 }, level = 1, group = "ChaosResistanceAgainstDamageOverTime", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "chaos", "resistance" }, }, + ["DelveGlovesChaosDamageToSpells1"] = { type = "Prefix", affix = "Subterranean", "Adds (15-20) to (21-30) Chaos Damage", statOrder = { 1297 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["DelveBootsSocketedChaosGemLevel1"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Chaos Gems", statOrder = { 150 }, level = 1, group = "LocalIncreaseSocketedChaosGemLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "chaos", "gem" }, }, + ["DelveRingChaosLeech1"] = { type = "Prefix", affix = "Subterranean", "0.2% of Chaos Damage Leeched as Life", statOrder = { 1593 }, level = 1, group = "ChaosDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "chaos" }, }, + ["DelveHelmetEnemyChaosResistanceAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies have -9% to Chaos Resistance", statOrder = { 7763 }, level = 1, group = "NearbyEnemyChaosDamageResistance", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "chaos_damage", "damage", "chaos", "resistance" }, }, + ["DelveJewelryChaosDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Chaos Damage", statOrder = { 1296 }, level = 1, group = "IncreasedChaosDamagePrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["DelveJewelChaosDamage1"] = { type = "Suffix", affix = "of the Underground", "(13-19)% increased Chaos Damage", statOrder = { 1296 }, level = 1, group = "IncreasedChaosDamage", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["DelveWeaponDamageOnFullLife1h1__"] = { type = "Suffix", affix = "of the Underground", "(50-60)% increased Damage when on Full Life", statOrder = { 5969 }, level = 1, group = "DamageOnFullLife", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage" }, }, + ["DelveWeaponDamageOnFullLife2h1"] = { type = "Suffix", affix = "of the Underground", "(100-120)% increased Damage when on Full Life", statOrder = { 5969 }, level = 1, group = "DamageOnFullLife", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage" }, }, + ["DelveBodyArmourLife1"] = { type = "Prefix", affix = "Subterranean", "+(25-40) to maximum Life", "(3-5)% increased maximum Life", statOrder = { 1480, 1482 }, level = 1, group = "LifeAndPercentLife", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "life" }, }, + ["DelveNonBodyArmourLife1"] = { type = "Prefix", affix = "Subterranean", "+(15-25) to maximum Life", "(2-3)% increased maximum Life", statOrder = { 1480, 1482 }, level = 1, group = "LifeAndPercentLife", weightKey = { "abyss_jewel", "jewel", "shield", "boots", "helmet", "gloves", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "resource", "life" }, }, + ["DelveArmourLifeRegen1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 1% of Life per second", statOrder = { 1853 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { "abyss_jewel", "jewel", "quiver", "shield", "body_armour", "helmet", "gloves", "boots", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 2000, 2000, 0 }, modTags = { "resource", "life" }, }, + ["DelveJewelryFlaskLifeRecovery1"] = { type = "Suffix", affix = "of the Underground", "(20-30)% increased Life Recovery from Flasks", statOrder = { 1968 }, level = 1, group = "GlobalFlaskLifeRecovery", weightKey = { "abyss_jewel", "jewel", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "flask", "resource", "life" }, }, + ["DelveWeaponArmourIfYouHitRecently1h1"] = { type = "Suffix", affix = "of the Underground", "+500 to Armour if you've Hit an Enemy Recently", statOrder = { 9440 }, level = 1, group = "PhysicalDamageReductionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "sceptre", "mace", "axe", "sword", "default", }, weightVal = { 0, 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "armour" }, }, + ["DelveJewelLifeRegeneration1"] = { type = "Prefix", affix = "Subterranean", "Regenerate 0.3% of Life per second", statOrder = { 1853 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resource", "life" }, }, + ["DelveWeaponArmourIfYouHitRecently2h1"] = { type = "Suffix", affix = "of the Underground", "+1000 to Armour if you've Hit an Enemy Recently", statOrder = { 9440 }, level = 1, group = "PhysicalDamageReductionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "staff", "mace", "axe", "sword", "default", }, weightVal = { 0, 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "armour" }, }, + ["DelveJewelArmourIfYouHitRecently1"] = { type = "Suffix", affix = "of the Underground", "+(250-300) to Armour if you've Hit an Enemy Recently", statOrder = { 9440 }, level = 1, group = "PhysicalDamageReductionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 300, 300, 0 }, modTags = { "defences", "armour" }, }, + ["DelveWeaponEvasionIfYouHitRecently1h1"] = { type = "Suffix", affix = "of the Underground", "+500 to Evasion Rating if Hit an Enemy Recently", statOrder = { 6375 }, level = 1, group = "EvasionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "axe", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "evasion" }, }, + ["DelveWeaponEvasionIfYouHitRecently2h1"] = { type = "Suffix", affix = "of the Underground", "+1000 to Evasion Rating if Hit an Enemy Recently", statOrder = { 6375 }, level = 1, group = "EvasionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "axe", "sword", "bow", "default", }, weightVal = { 0, 0, 0, 1600, 1600, 1600, 0 }, modTags = { "defences", "evasion" }, }, + ["DelveJewelEvasionIfYouHitRecently1"] = { type = "Suffix", affix = "of the Underground", "+(250-300) to Evasion Rating if Hit an Enemy Recently", statOrder = { 6375 }, level = 1, group = "EvasionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 300, 300, 0 }, modTags = { "defences", "evasion" }, }, + ["DelveWeaponEnergyShieldRegenIfYouHitRecently1h1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.5% of Energy Shield per second if you've Hit an Enemy Recently", statOrder = { 6345 }, level = 1, group = "EnergyShieldRegenerationRatePerMinuteIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "dagger", "claw", "wand", "sceptre", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "energy_shield" }, }, + ["DelveWeaponEnergyShieldRegenIfYouHitRecently2h1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 1% of Energy Shield per second if you've Hit an Enemy Recently", statOrder = { 6345 }, level = 1, group = "EnergyShieldRegenerationRatePerMinuteIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "staff", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["DelveJewelEnergyShieldRegenIfYouHitRecently1_"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.3% of Energy Shield per second if you've Hit an Enemy Recently", statOrder = { 6345 }, level = 1, group = "EnergyShieldRegenerationRatePerMinuteIfYouHaveHitAnEnemyRecently", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 300, 300, 0 }, modTags = { "defences", "energy_shield" }, }, + ["DelveArmourArmour1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Armour", statOrder = { 1453 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercentSuffix", weightKey = { "abyss_jewel", "jewel", "str_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour" }, }, + ["DelveArmourEvasion1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Evasion Rating", statOrder = { 1461 }, level = 1, group = "LocalEvasionRatingIncreasePercentSuffix", weightKey = { "abyss_jewel", "jewel", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "evasion" }, }, + ["DelveArmourEnergyShield1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Energy Shield", statOrder = { 1471 }, level = 1, group = "LocalEnergyShieldPercentSuffix", weightKey = { "abyss_jewel", "jewel", "int_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, }, + ["DelveArmourArmourAndEvasion1_"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Armour and Evasion", statOrder = { 1464 }, level = 1, group = "LocalArmourAndEvasionSuffix", weightKey = { "abyss_jewel", "jewel", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour", "evasion" }, }, + ["DelveArmourArmourAndEnergyShield1__"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Armour and Energy Shield", statOrder = { 1463 }, level = 1, group = "LocalArmourAndEnergyShieldSuffix", weightKey = { "abyss_jewel", "jewel", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, + ["DelveArmourEvasionAndEnergyShield1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Evasion and Energy Shield", statOrder = { 1465 }, level = 1, group = "LocalEvasionAndEnergyShieldSuffix", weightKey = { "abyss_jewel", "jewel", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["DelveArmourDefences1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Armour, Evasion and Energy Shield", statOrder = { 1466 }, level = 1, group = "LocalArmourAndEvasionAndEnergyShieldSuffix", weightKey = { "abyss_jewel", "jewel", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, }, + ["DelveArmourQuality"] = { type = "Suffix", affix = "of the Underground", "+(10-20)% to Quality", statOrder = { 7800 }, level = 1, group = "LocalItemQuality", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { }, }, + ["DelveArmourEnergyShieldRegen"] = { type = "Suffix", affix = "of the Underground", "Regenerate 1% of Energy Shield per second", statOrder = { 2554 }, level = 1, group = "EnergyShieldRegenerationPerMinute", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "helmet", "int_armour", "dex_int_armour", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["DelveArmourEnergyShieldLeechSpells_"] = { type = "Suffix", affix = "of the Underground", "0.3% of Spell Damage Leeched as Energy Shield", statOrder = { 1633 }, level = 1, group = "EnergyShieldLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "boots", "helmet", "int_armour", "dex_int_armour", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["DelveArmourSpellBlock__"] = { type = "Suffix", affix = "of the Underground", "(3-4)% Chance to Block Spell Damage", statOrder = { 1072 }, level = 1, group = "SpellBlockPercentage", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "boots", "gloves", "int_armour", "dex_int_armour", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "block" }, }, + ["DelveArmourDodgeAndSpellDodge_"] = { type = "Suffix", affix = "of the Underground", "+(4-6)% chance to Suppress Spell Damage", statOrder = { 1055 }, level = 1, group = "ChanceToDodgeAndSpellDodge", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "helmet", "dex_armour", "dex_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { }, }, + ["DelveArmourBlindChance"] = { type = "Suffix", affix = "of the Underground", "(4-6)% Global chance to Blind Enemies on hit", statOrder = { 2867 }, level = 1, group = "GlobalChanceToBlindOnHit", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "boots", "helmet", "dex_armour", "dex_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { }, }, + ["DelveArmourEvasionOnFullLife"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Global Evasion Rating when on Full Life", statOrder = { 6382 }, level = 1, group = "GlobalEvasionRatingPercentOnFullLife", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "boots", "dex_armour", "dex_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "defences", "evasion" }, }, + ["DelveArmourDoubleArmourEffectOnHit"] = { type = "Suffix", affix = "of the Underground", "(10-20)% chance to Defend with 200% of Armour", statOrder = { 5569 }, level = 1, group = "ChanceWhenHitForArmourToBeDoubled", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "helmet", "str_armour", "str_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "defences", "armour" }, }, + ["DelveArmourAttackBlock"] = { type = "Suffix", affix = "of the Underground", "(3-4)% Chance to Block Attack Damage", statOrder = { 1051 }, level = 1, group = "BlockPercent", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "boots", "helmet", "str_armour", "str_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "block" }, }, + ["DelveArmourFortifyEffect"] = { type = "Suffix", affix = "of the Underground", "+(3-5) to maximum Fortification", statOrder = { 8936 }, level = 1, group = "FortifyEffect", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "boots", "str_armour", "str_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { }, }, + ["DelveJewelryIncreasedEnergyShieldFromBodyArmour1"] = { type = "Suffix", affix = "of the Underground", "(20-30)% increased Energy Shield from Equipped Body Armour", statOrder = { 8949 }, level = 1, group = "MaximumEnergyShieldFromBodyArmour", weightKey = { "abyss_jewel", "jewel", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 0 }, modTags = { "defences", "energy_shield" }, }, + ["DelveJewelryChanceWhenHitForArmourToBeDoubled1"] = { type = "Suffix", affix = "of the Underground", "20% chance to Defend with 200% of Armour", statOrder = { 5569 }, level = 1, group = "ChanceWhenHitForArmourToBeDoubled", weightKey = { "abyss_jewel", "jewel", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 0 }, modTags = { "defences", "armour" }, }, + ["DelveJewelryChanceToEvade"] = { type = "Suffix", affix = "of the Underground", "+(1-2)% chance to Evade Attack Hits", statOrder = { 5571 }, level = 1, group = "AdditionalChanceToEvade", weightKey = { "abyss_jewel", "jewel", "quiver", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "evasion" }, }, + ["DelveJewelGlobalDefences1"] = { type = "Prefix", affix = "Subterranean", "(4-6)% increased Global Defences", statOrder = { 2742 }, level = 1, group = "AllDefences", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "defences" }, }, + ["DelveWeaponLocalChanceForPoisonDamage100FinalInflictedWithThisWeapon1"] = { type = "Prefix", affix = "Subterranean", "60% chance for Poisons inflicted with this Weapon to deal 100% more Damage", statOrder = { 7728 }, level = 1, group = "LocalChanceForPoisonDamage100FinalInflictedWithThisWeapon", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "attack", "ailment" }, }, + ["DelveWeaponLocalChanceForBleedingDamage100FinalInflictedWithThisWeapon1"] = { type = "Prefix", affix = "Subterranean", "60% chance for Bleeding inflicted with this Weapon to deal 100% more Damage", statOrder = { 7727 }, level = 1, group = "LocalChanceForBleedingDamage100FinalInflictedWithThisWeapon", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["DelveArmourAvoidPoison1"] = { type = "Suffix", affix = "of the Underground", "50% chance to Avoid being Poisoned", statOrder = { 1760 }, level = 1, group = "ChanceToAvoidPoison", weightKey = { "abyss_jewel", "jewel", "shield", "helmet", "boots", "body_armour", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["DelveArmourAvoidBleeding1"] = { type = "Suffix", affix = "of the Underground", "50% chance to Avoid Bleeding", statOrder = { 4123 }, level = 1, group = "ChanceToAvoidBleeding", weightKey = { "abyss_jewel", "jewel", "shield", "helmet", "boots", "body_armour", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["DelveJewelryAilmentDamage1_"] = { type = "Suffix", affix = "of the Underground", "(30-40)% increased Damage with Ailments", statOrder = { 4878 }, level = 1, group = "AilmentDamage", weightKey = { "abyss_jewel", "jewel", "quiver", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "damage", "ailment" }, }, + ["DelveJewelAilmentDamage1__"] = { type = "Suffix", affix = "of the Underground", "(15-20)% increased Damage with Ailments", statOrder = { 4878 }, level = 1, group = "AilmentDamage", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "damage", "ailment" }, }, + ["DelveGlovesAddedPhysicalDamageVsPoisonedEnemies1"] = { type = "Prefix", affix = "Subterranean", "Adds (7-11) to (12-18) Physical Damage against Poisoned Enemies", statOrder = { 9061 }, level = 1, group = "AddedPhysicalDamageVsPoisonedEnemies", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 1600, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["DelveGlovesAddedPhysicalDamageVsBleedingEnemies1"] = { type = "Prefix", affix = "Subterranean", "Adds (7-11) to (12-18) Physical Damage against Bleeding Enemies", statOrder = { 2403 }, level = 1, group = "AddedPhysicalDamageVsBleedingEnemies", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 1600, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["DelveWeaponLocalAttackReduceEnemyElementalResistance1h1"] = { type = "Prefix", affix = "Subterranean", "Attacks with this Weapon Penetrate (9-12)% Elemental Resistances", statOrder = { 3669 }, level = 1, group = "LocalAttackReduceEnemyElementalResistance", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["DelveWeaponElementalDamage1h1"] = { type = "Prefix", affix = "Subterranean", "(40-60)% increased Elemental Damage", statOrder = { 1889 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["DelveWeaponElementalDamage2h1"] = { type = "Prefix", affix = "Subterranean", "(80-120)% increased Elemental Damage", statOrder = { 1889 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["DelveWeaponElementalDamagev2_1h1"] = { type = "Prefix", affix = "Subterranean", "(19-25)% increased Elemental Damage", statOrder = { 1889 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["DelveWeaponElementalDamagev2_1h2_"] = { type = "Prefix", affix = "Subterranean", "(26-32)% increased Elemental Damage", statOrder = { 1889 }, level = 25, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["DelveWeaponElementalDamagev2_1h3"] = { type = "Prefix", affix = "Subterranean", "(33-39)% increased Elemental Damage", statOrder = { 1889 }, level = 50, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["DelveWeaponElementalDamagev2_1h4"] = { type = "Prefix", affix = "Subterranean", "(40-49)% increased Elemental Damage", statOrder = { 1889 }, level = 75, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["DelveWeaponElementalDamagev2_2h1"] = { type = "Prefix", affix = "Subterranean", "(37-50)% increased Elemental Damage", statOrder = { 1889 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["DelveWeaponElementalDamagev2_2h2__"] = { type = "Prefix", affix = "Subterranean", "(51-65)% increased Elemental Damage", statOrder = { 1889 }, level = 25, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["DelveWeaponElementalDamagev2_2h3"] = { type = "Prefix", affix = "Subterranean", "(66-79)% increased Elemental Damage", statOrder = { 1889 }, level = 50, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["DelveWeaponElementalDamagev2_2h4_"] = { type = "Prefix", affix = "Subterranean", "(80-94)% increased Elemental Damage", statOrder = { 1889 }, level = 75, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["DelveArmourElementalAilmentDuration1___"] = { type = "Suffix", affix = "of the Underground", "(20-30)% reduced Elemental Ailment Duration on you", statOrder = { 1778 }, level = 1, group = "SelfStatusAilmentDuration", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "helmet", "gloves", "boots", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 2000, 0 }, modTags = { "elemental", "ailment" }, }, + ["DelveJewelryElementalPenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (3-5)% Elemental Resistances", statOrder = { 2889 }, level = 1, group = "ElementalPenetration", weightKey = { "abyss_jewel", "jewel", "quiver", "amulet", "default", }, weightVal = { 0, 0, 1600, 1600, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["DelveRingElementalDamage1"] = { type = "Suffix", affix = "of the Underground", "(25-30)% increased Elemental Damage", statOrder = { 1889 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "belt", "ring", "default", }, weightVal = { 0, 0, 1600, 1600, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["DelveJewelElementalPenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates 1% Elemental Resistances", statOrder = { 2889 }, level = 1, group = "ElementalPenetration", weightKey = { "abyss_jewel", "jewel", "default", }, weightVal = { 1600, 1600, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["DelveWeaponSocketedSpellsDamageFinal1h1_"] = { type = "Prefix", affix = "Subterranean", "Socketed Skills deal 40% more Spell Damage", statOrder = { 492 }, level = 1, group = "SocketedSpellsDamageFinal", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "caster_damage", "damage", "caster", "gem" }, }, + ["DelveWeaponSocketedSpellsDamageFinal2h1"] = { type = "Prefix", affix = "Subterranean", "Socketed Skills deal 20% more Spell Damage", statOrder = { 492 }, level = 1, group = "SocketedSpellsDamageFinal", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "caster_damage", "damage", "caster", "gem" }, }, + ["DelveBodyArmourSocketedSkillsSupportedByArcaneSurge1_"] = { type = "Suffix", affix = "of the Underground", "Socketed Gems are Supported by Level 1 Arcane Surge", statOrder = { 204 }, level = 1, group = "SupportedByArcaneSurge", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "support", "gem" }, }, + ["DelveGlovesSocketedSkillsCastSpeed1_"] = { type = "Suffix", affix = "of the Underground", "Socketed Skills have 18% increased Cast Speed", statOrder = { 489 }, level = 1, group = "SocketedSkillsCastSpeed", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "caster", "speed", "gem" }, }, + ["DelveArmourSocketedSpellsManaCost1_"] = { type = "Suffix", affix = "of the Underground", "Socketed Spells have 20% reduced Mana Cost", statOrder = { 495 }, level = 1, group = "SocketedSpellsManaCost", weightKey = { "abyss_jewel", "jewel", "shield", "boots", "helmet", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "skill", "resource", "mana", "caster", "gem" }, }, + ["DelveJewelAvoidInterruptionWhileCasting1"] = { type = "Suffix", affix = "of the Underground", "(15-20)% chance to Ignore Stuns while Casting", statOrder = { 1809 }, level = 1, group = "AvoidInterruptionWhileCasting", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { }, }, + ["DelveWeaponSocketedAttacksDamageFinal1h1"] = { type = "Prefix", affix = "Subterranean", "Socketed Skills deal 40% more Attack Damage", statOrder = { 473 }, level = 1, group = "SocketedAttacksDamageFinal", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "skill", "damage", "attack", "gem" }, }, + ["DelveWeaponSocketedAttacksDamageFinal2h1_"] = { type = "Prefix", affix = "Subterranean", "Socketed Skills deal 20% more Attack Damage", statOrder = { 473 }, level = 1, group = "SocketedAttacksDamageFinal", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "skill", "damage", "attack", "gem" }, }, + ["DelveBodyArmourSocketedSkillsSupportedByMaim1"] = { type = "Suffix", affix = "of the Underground", "Socketed Gems are Supported by Level 1 Maim", statOrder = { 275 }, level = 1, group = "SupportedByMaim", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "support", "gem" }, }, + ["DelveGlovesLocalDisplaySocketedSkillsAttackSpeed1"] = { type = "Suffix", affix = "of the Underground", "Socketed Skills have 18% increased Attack Speed", statOrder = { 488 }, level = 1, group = "SocketedSkillsAttackSpeed", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "attack", "speed", "gem" }, }, + ["DelveArmourLocalDisplaySocketedAttacksManaCost1_"] = { type = "Suffix", affix = "of the Underground", "Socketed Attacks have -15 to Total Mana Cost", statOrder = { 476 }, level = 1, group = "SocketedAttacksManaCost", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "boots", "helmet", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 0 }, modTags = { "skill", "resource", "mana", "attack", "gem" }, }, + ["DelveJewelAttackLeech1"] = { type = "Suffix", affix = "of the Underground", "0.3% of Attack Damage Leeched as Life", statOrder = { 1575 }, level = 1, group = "LifeLeechFromAttacksPermyriad", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resource", "life", "attack" }, }, + ["DelveWeaponManaRegeneratedIfYouveHitRecently1h1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.4% of Mana per second if you've Hit an Enemy Recently", statOrder = { 8032 }, level = 1, group = "ManaRegeneratedIfYouveHitRecently", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "resource", "mana" }, }, + ["DelveWeaponManaRegeneratedIfYouveHitRecently2h1_"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.8% of Mana per second if you've Hit an Enemy Recently", statOrder = { 8032 }, level = 1, group = "ManaRegeneratedIfYouveHitRecently", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, }, + ["DelveBodyDamageRemovedFromManaBeforeLife1_"] = { type = "Suffix", affix = "of the Underground", "(5-10)% of Damage is taken from Mana before Life", statOrder = { 2607 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "life", "mana" }, }, + ["DelveBodyDamageRemovedFromManaBeforeLifeNew1"] = { type = "Prefix", affix = "Subterranean", "(5-10)% of Damage is taken from Mana before Life", statOrder = { 2607 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "life", "mana" }, }, + ["DelveBootsManaRegenerationRateWhileMoving1"] = { type = "Suffix", affix = "of the Underground", "(50-70)% increased Mana Regeneration Rate while moving", statOrder = { 8044 }, level = 1, group = "ManaRegenerationRateWhileMoving", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, }, + ["DelveGlovesManaGainPerTarget1"] = { type = "Suffix", affix = "of the Underground", "Gain (2-4) Mana per Enemy Hit with Attacks", statOrder = { 1655 }, level = 1, group = "ManaGainPerTarget", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana", "attack" }, }, + ["DelveHelmBaseManaRegeneration1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.5% of Mana per second", statOrder = { 1492 }, level = 1, group = "BaseManaRegeneration", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, }, + ["DelveAmuletBeltManaRecoveryRate1"] = { type = "Suffix", affix = "of the Underground", "(8-12)% increased Mana Recovery rate", statOrder = { 1497 }, level = 1, group = "ManaRecoveryRate", weightKey = { "abyss_jewel", "jewel", "belt", "amulet", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "resource", "mana" }, }, + ["DelveRingManaCostReduction1"] = { type = "Suffix", affix = "of the Underground", "(4-6)% reduced Mana Cost of Skills", statOrder = { 1794 }, level = 1, group = "ManaCostReduction", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, }, + ["DelveQuiverIncreasedMana1"] = { type = "Suffix", affix = "of the Underground", "(20-30)% increased maximum Mana", statOrder = { 1491 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { "abyss_jewel", "jewel", "quiver", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, }, + ["DelveJewelDamageTakenGainedAsMana1"] = { type = "Suffix", affix = "of the Underground", "(2-3)% of Damage taken Recouped as Mana", statOrder = { 2364 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["DelveWeaponChanceToGainOnslaughtOnKill1h1_"] = { type = "Suffix", affix = "of the Underground", "10% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2902 }, level = 1, group = "ChanceToGainOnslaughtOnKill", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { }, }, + ["DelveWeaponChanceToGainOnslaughtOnKill2h1"] = { type = "Suffix", affix = "of the Underground", "20% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2902 }, level = 1, group = "ChanceToGainOnslaughtOnKill", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { }, }, + ["DelveBodyFrenzyChargeWhenHit1"] = { type = "Suffix", affix = "of the Underground", "(15-20)% chance to gain a Frenzy Charge when Hit", statOrder = { 4435 }, level = 1, group = "FrenzyChargeWhenHit", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "frenzy_charge" }, }, + ["DelveBootsMovementSpeedIfHitRecently1"] = { type = "Suffix", affix = "of the Underground", "(4-6)% increased Movement Speed if you've Hit an Enemy Recently", statOrder = { 9216 }, level = 1, group = "MovementSpeedIfHitRecently", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "speed" }, }, + ["DelveGlovesAttackAndCastSpeedIfHitRecently1"] = { type = "Suffix", affix = "of the Underground", "(5-10)% increased Attack and Cast Speed if you've Hit an Enemy Recently", statOrder = { 4713 }, level = 1, group = "AttackAndCastSpeedIfHitRecently", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "attack", "caster", "speed" }, }, + ["DelveHelmIgnoreArmourMovementPenalties1"] = { type = "Suffix", affix = "of the Underground", "Ignore all Movement Penalties from Armour", statOrder = { 2090 }, level = 1, group = "IgnoreArmourMovementPenalties", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "speed" }, }, + ["DelveAmuletCannotBeChilledOrFrozenWhileMoving1"] = { type = "Suffix", affix = "of the Underground", "Cannot be Chilled or Frozen while moving", statOrder = { 5289 }, level = 1, group = "CannotBeChilledOrFrozenWhileMoving", weightKey = { "abyss_jewel", "jewel", "amulet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["DelveBeltChanceToGainOnslaughtOnFlaskUse1"] = { type = "Suffix", affix = "of the Underground", "(15-20)% chance to gain Onslaught when you use a Flask", statOrder = { 5590 }, level = 1, group = "ChanceToGainOnslaughtOnFlaskUse", weightKey = { "abyss_jewel", "jewel", "belt", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "flask" }, }, + ["DelveRingCannotBeShockedWhileMoving1"] = { type = "Suffix", affix = "of the Underground", "Cannot be Shocked or Ignited while moving", statOrder = { 5305 }, level = 1, group = "CannotBeShockedOrIgnitedWhileMoving", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["DelveQuiverFrenzyChargeOnHittingRareOrUnique1"] = { type = "Suffix", affix = "of the Underground", "(3-5)% chance to gain a Frenzy Charge when you Hit a Rare or Unique Enemy", statOrder = { 6645 }, level = 1, group = "FrenzyChargeOnHittingRareOrUnique", weightKey = { "abyss_jewel", "jewel", "quiver", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "frenzy_charge" }, }, + ["DelveJewelChanceToGainOnslaughtOnFlaskUse1"] = { type = "Suffix", affix = "of the Underground", "(5-10)% chance to gain Onslaught when you use a Flask", statOrder = { 5590 }, level = 1, group = "ChanceToGainOnslaughtOnFlaskUse", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "flask" }, }, + ["DelveWeaponIncreasedDamageFromAuras1h1"] = { type = "Suffix", affix = "of the Underground", "Auras from your Skills grant 2% increased Damage to you and Allies", statOrder = { 3366 }, level = 1, group = "IncreasedDamageFromAuras", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "aura" }, }, + ["DelveWeaponIncreasedDamageFromAuras2h1"] = { type = "Suffix", affix = "of the Underground", "Auras from your Skills grant 4% increased Damage to you and Allies", statOrder = { 3366 }, level = 1, group = "IncreasedDamageFromAuras", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "aura" }, }, + ["DelveWeaponMinionDamage1h1_"] = { type = "Prefix", affix = "Subterranean", "Minions deal (30-44)% increased Damage", statOrder = { 1882 }, level = 1, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, }, + ["DelveWeaponMinionDamage1h2"] = { type = "Prefix", affix = "Subterranean", "Minions deal (45-59)% increased Damage", statOrder = { 1882 }, level = 25, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, }, + ["DelveWeaponMinionDamage1h3___"] = { type = "Prefix", affix = "Subterranean", "Minions deal (60-74)% increased Damage", statOrder = { 1882 }, level = 50, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "damage", "minion" }, }, + ["DelveWeaponMinionDamage1h4"] = { type = "Prefix", affix = "Subterranean", "Minions deal (75-80)% increased Damage", statOrder = { 1882 }, level = 75, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 500, 0 }, modTags = { "damage", "minion" }, }, + ["DelveWeaponMinionDamage2h1"] = { type = "Prefix", affix = "Subterranean", "Minions deal (51-70)% increased Damage", statOrder = { 1882 }, level = 1, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, }, + ["DelveWeaponMinionDamage2h2"] = { type = "Prefix", affix = "Subterranean", "Minions deal (71-90)% increased Damage", statOrder = { 1882 }, level = 25, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, }, + ["DelveWeaponMinionDamage2h3_"] = { type = "Prefix", affix = "Subterranean", "Minions deal (91-110)% increased Damage", statOrder = { 1882 }, level = 50, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "damage", "minion" }, }, + ["DelveWeaponMinionDamage2h4"] = { type = "Prefix", affix = "Subterranean", "Minions deal (111-130)% increased Damage", statOrder = { 1882 }, level = 75, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 500, 0 }, modTags = { "damage", "minion" }, }, + ["DelveGlovesMinionDamage1"] = { type = "Prefix", affix = "Subterranean", "Minions deal (20-30)% increased Damage", statOrder = { 1882 }, level = 1, group = "MinionDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, }, + ["DelveJewelryMinionRunSpeed1"] = { type = "Suffix", affix = "of the Underground", "Minions have (15-30)% increased Movement Speed", statOrder = { 1680 }, level = 74, group = "MinionRunSpeed", weightKey = { "abyss_jewel", "jewel", "quiver", "ring", "amulet", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "speed", "minion" }, }, + ["DelveArmourMinionLife1"] = { type = "Suffix", affix = "of the Underground", "Minions have (20-30)% increased maximum Life", statOrder = { 1677 }, level = 74, group = "MinionLife", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "resource", "life", "minion" }, }, + ["DelveBootsAdditionalSpectre1_"] = { type = "Suffix", affix = "of the Underground", "+1 to Level of all Raise Spectre Gems", statOrder = { 1527 }, level = 1, group = "MinionGlobalSkillLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "minion", "gem" }, }, + ["DelveBodyArmourAuraEffect1_"] = { type = "Suffix", affix = "of the Underground", "(20-25)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3474 }, level = 1, group = "AuraEffect", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "aura" }, }, + ["DelveHelmetReducedManaReserved1"] = { type = "Suffix", affix = "of the Underground", "(8-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 2141 }, level = 1, group = "ReducedReservation", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, }, + ["DelveHelmetManaReservationEfficiency1"] = { type = "Suffix", affix = "of the Underground", "10% increased Mana Reservation Efficiency of Skills", statOrder = { 2137 }, level = 1, group = "ManaReservationEfficiency", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, }, + ["DelveAbyssJewelMinionDamage1"] = { type = "Prefix", affix = "Subterranean", "Minions deal (14-16)% increased Damage", statOrder = { 1882 }, level = 1, group = "MinionDamage", weightKey = { "abyss_jewel", "default", }, weightVal = { 2000, 0 }, modTags = { "damage", "minion" }, }, + ["DelveJewelMinionAttackAndCastSpeed1"] = { type = "Suffix", affix = "of the Underground", "Minions have (4-6)% increased Attack Speed", "Minions have (4-6)% increased Cast Speed", statOrder = { 2817, 2818 }, level = 1, group = "MinionAttackAndCastSpeed", weightKey = { "abyss_jewel", "jewel", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, ["DelveStrengthGemLevel1"] = { type = "Suffix", affix = "of the Underground", "+1 to Level of Socketed Strength Gems", statOrder = { 138 }, level = 1, group = "DelveStrengthGemLevel", weightKey = { "abyss_jewel", "jewel", "staff", "sceptre", "mace", "axe", "sword", "bow", "dagger", "claw", "wand", "str_armour", "int_armour", "dex_armour", "str_dex_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "unset_ring", "default", }, weightVal = { 0, 0, 1000, 1000, 1600, 1000, 1000, 750, 750, 750, 750, 1600, 750, 750, 1000, 1000, 750, 1000, 1000, 0 }, modTags = { "attribute", "gem" }, }, - ["DelveDexterityGemLevel1"] = { type = "Suffix", affix = "of the Underground", "+1 to Level of Socketed Dexterity Gems", statOrder = { 139 }, level = 1, group = "DelveDexterityGemLevel", weightKey = { "abyss_jewel", "jewel", "staff", "sceptre", "mace", "axe", "sword", "bow", "dagger", "claw", "wand", "str_armour", "int_armour", "dex_armour", "str_dex_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "unset_ring", "default", }, weightVal = { 0, 0, 750, 750, 750, 1000, 1000, 1600, 1000, 1000, 750, 750, 750, 1600, 1000, 750, 1000, 1000, 1000, 0 }, modTags = { "attribute", "gem" }, }, - ["DelveIntelligenceGemLevel1"] = { type = "Suffix", affix = "of the Underground", "+1 to Level of Socketed Intelligence Gems", statOrder = { 140 }, level = 1, group = "DelveIntelligenceGemLevel", weightKey = { "abyss_jewel", "jewel", "staff", "sceptre", "mace", "axe", "sword", "bow", "dagger", "claw", "wand", "str_armour", "int_armour", "dex_armour", "str_dex_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "unset_ring", "default", }, weightVal = { 0, 0, 1000, 1000, 750, 750, 750, 750, 1000, 1000, 1600, 750, 1600, 750, 750, 1000, 1000, 1000, 1000, 0 }, modTags = { "attribute", "gem" }, }, + ["DelveDexterityGemLevel1"] = { type = "Suffix", affix = "of the Underground", "+1 to Level of Socketed Dexterity Gems", statOrder = { 140 }, level = 1, group = "DelveDexterityGemLevel", weightKey = { "abyss_jewel", "jewel", "staff", "sceptre", "mace", "axe", "sword", "bow", "dagger", "claw", "wand", "str_armour", "int_armour", "dex_armour", "str_dex_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "unset_ring", "default", }, weightVal = { 0, 0, 750, 750, 750, 1000, 1000, 1600, 1000, 1000, 750, 750, 750, 1600, 1000, 750, 1000, 1000, 1000, 0 }, modTags = { "attribute", "gem" }, }, + ["DelveIntelligenceGemLevel1"] = { type = "Suffix", affix = "of the Underground", "+1 to Level of Socketed Intelligence Gems", statOrder = { 141 }, level = 1, group = "DelveIntelligenceGemLevel", weightKey = { "abyss_jewel", "jewel", "staff", "sceptre", "mace", "axe", "sword", "bow", "dagger", "claw", "wand", "str_armour", "int_armour", "dex_armour", "str_dex_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "unset_ring", "default", }, weightVal = { 0, 0, 1000, 1000, 750, 750, 750, 750, 1000, 1000, 1600, 750, 1600, 750, 750, 1000, 1000, 1000, 1000, 0 }, modTags = { "attribute", "gem" }, }, ["DelveAbyssJewelSocket1"] = { type = "Suffix", affix = "of the Underground", "Has 1 Abyssal Socket", statOrder = { 49 }, level = 1, group = "AbyssJewelSocket", weightKey = { "abyss_jewel", "jewel", "weapon", "helmet", "boots", "gloves", "body_armour", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 2000, 0 }, modTags = { }, }, - ["DelveWeaponVaalSoulCost1h1_"] = { type = "Suffix", affix = "of the Underground", "Non-Aura Vaal Skills require 20% reduced Souls Per Use", statOrder = { 9007 }, level = 1, group = "VaalSoulCost", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "vaal" }, }, - ["DelveWeaponVaalSoulCost2h1"] = { type = "Suffix", affix = "of the Underground", "Non-Aura Vaal Skills require 40% reduced Souls Per Use", statOrder = { 9007 }, level = 1, group = "VaalSoulCost", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "vaal" }, }, - ["DelveArmourVaalSoulsOnKill1_"] = { type = "Suffix", affix = "of the Underground", "(5-8)% chance to gain an additional Vaal Soul on Kill", statOrder = { 2970 }, level = 1, group = "AdditionalVaalSoulOnKill", weightKey = { "abyss_jewel", "jewel", "helmet", "body_armour", "boots", "shield", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 0 }, modTags = { "vaal" }, }, - ["DelveJewelVaalSoulsOnKill1"] = { type = "Suffix", affix = "of the Underground", "(3-5)% chance to gain an additional Vaal Soul on Kill", statOrder = { 2970 }, level = 1, group = "AdditionalVaalSoulOnKill", weightKey = { "abyss_jewel", "jewel", "default", }, weightVal = { 2000, 2000, 0 }, modTags = { "vaal" }, }, - ["DelveGlovesVaalSkillCriticalChance1"] = { type = "Suffix", affix = "of the Underground", "(80-120)% increased Vaal Skill Critical Strike Chance", statOrder = { 2973 }, level = 1, group = "VaalSkillCriticalStrikeChance", weightKey = { "abyss_jewel", "jewel", "quiver", "gloves", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "critical", "vaal" }, }, - ["DelveAmuletVaalSkillDuration1"] = { type = "Suffix", affix = "of the Underground", "(15-25)% increased Vaal Skill Effect Duration", statOrder = { 2971 }, level = 1, group = "VaalSkillDuration", weightKey = { "abyss_jewel", "jewel", "amulet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "vaal" }, }, - ["DelveJewelryVaalSkillDamage1"] = { type = "Suffix", affix = "of the Underground", "(20-40)% increased Damage with Vaal Skills", statOrder = { 2961 }, level = 1, group = "VaalSkillDamage", weightKey = { "abyss_jewel", "jewel", "belt", "ring", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "damage", "vaal" }, }, + ["DelveWeaponVaalSoulCost1h1_"] = { type = "Suffix", affix = "of the Underground", "Non-Aura Vaal Skills require 20% reduced Souls Per Use", statOrder = { 9284 }, level = 1, group = "VaalSoulCost", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "vaal" }, }, + ["DelveWeaponVaalSoulCost2h1"] = { type = "Suffix", affix = "of the Underground", "Non-Aura Vaal Skills require 40% reduced Souls Per Use", statOrder = { 9284 }, level = 1, group = "VaalSoulCost", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "vaal" }, }, + ["DelveArmourVaalSoulsOnKill1_"] = { type = "Suffix", affix = "of the Underground", "(5-8)% chance to gain an additional Vaal Soul on Kill", statOrder = { 3012 }, level = 1, group = "AdditionalVaalSoulOnKill", weightKey = { "abyss_jewel", "jewel", "helmet", "body_armour", "boots", "shield", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 0 }, modTags = { "vaal" }, }, + ["DelveJewelVaalSoulsOnKill1"] = { type = "Suffix", affix = "of the Underground", "(3-5)% chance to gain an additional Vaal Soul on Kill", statOrder = { 3012 }, level = 1, group = "AdditionalVaalSoulOnKill", weightKey = { "abyss_jewel", "jewel", "default", }, weightVal = { 2000, 2000, 0 }, modTags = { "vaal" }, }, + ["DelveGlovesVaalSkillCriticalChance1"] = { type = "Suffix", affix = "of the Underground", "(80-120)% increased Vaal Skill Critical Strike Chance", statOrder = { 3015 }, level = 1, group = "VaalSkillCriticalStrikeChance", weightKey = { "abyss_jewel", "jewel", "quiver", "gloves", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "critical", "vaal" }, }, + ["DelveAmuletVaalSkillDuration1"] = { type = "Suffix", affix = "of the Underground", "Vaal Skills have (15-25)% increased Skill Effect Duration", statOrder = { 3013 }, level = 1, group = "VaalSkillDuration", weightKey = { "abyss_jewel", "jewel", "amulet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "vaal" }, }, + ["DelveJewelryVaalSkillDamage1"] = { type = "Suffix", affix = "of the Underground", "(20-40)% increased Damage with Vaal Skills", statOrder = { 3003 }, level = 1, group = "VaalSkillDamage", weightKey = { "abyss_jewel", "jewel", "belt", "ring", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "damage", "vaal" }, }, } \ No newline at end of file diff --git a/src/Data/ModJewelCharm.lua b/src/Data/ModJewelCharm.lua index 5fba45dda3..6aced4d66a 100644 --- a/src/Data/ModJewelCharm.lua +++ b/src/Data/ModJewelCharm.lua @@ -2,246 +2,246 @@ -- Item data (c) Grinding Gear Games return { - ["AnimalCharmMovementSpeedCannotBeBelowBase"] = { type = "Prefix", affix = "Juggernaut's", "Movement Speed cannot be modified to below Base Value", statOrder = { 3062 }, level = 70, group = "AnimalCharmMovementSpeedCannotBeBelowBase", weightKey = { "str_animal_charm", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["AnimalCharmArmourAppliesToElementalDamage1"] = { type = "Suffix", affix = "of the Juggernaut", "2% of Armour applies to Fire, Cold and Lightning Damage taken from Hits", statOrder = { 4576 }, level = 81, group = "AnimalCharmArmourAppliesToElementalDamage", weightKey = { "str_animal_charm", "default", }, weightVal = { 20, 0 }, modTags = { }, }, - ["AnimalCharmArmourAppliesToElementalDamage2"] = { type = "Suffix", affix = "of the Juggernaut", "3% of Armour applies to Fire, Cold and Lightning Damage taken from Hits", statOrder = { 4576 }, level = 83, group = "AnimalCharmArmourAppliesToElementalDamage", weightKey = { "str_animal_charm", "default", }, weightVal = { 10, 0 }, modTags = { }, }, - ["AnimalCharmEnduranceChargeOnStun1"] = { type = "Prefix", affix = "Juggernaut's", "(10-19)% chance to gain an Endurance Charge when you Stun an Enemy", statOrder = { 5396 }, level = 1, group = "AnimalCharmEnduranceChargeOnStun", weightKey = { "str_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["AnimalCharmEnduranceChargeOnStun2"] = { type = "Prefix", affix = "Juggernaut's", "(20-30)% chance to gain an Endurance Charge when you Stun an Enemy", statOrder = { 5396 }, level = 60, group = "AnimalCharmEnduranceChargeOnStun", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmAreaOfEffectPerEnduranceCharge1"] = { type = "Prefix", affix = "Juggernaut's", "(3-4)% increased Area of Effect per Endurance Charge", statOrder = { 4561 }, level = 1, group = "AnimalCharmAreaOfEffectPerEnduranceCharge", weightKey = { "str_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["AnimalCharmAreaOfEffectPerEnduranceCharge2"] = { type = "Prefix", affix = "Juggernaut's", "(5-6)% increased Area of Effect per Endurance Charge", statOrder = { 4561 }, level = 60, group = "AnimalCharmAreaOfEffectPerEnduranceCharge", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmEnchangeChargeWhenHit1"] = { type = "Prefix", affix = "Juggernaut's", "(10-19)% chance to gain an Endurance Charge when you are Hit", statOrder = { 2626 }, level = 1, group = "AnimalCharmEnchangeChargeWhenHit", weightKey = { "str_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["AnimalCharmEnchangeChargeWhenHit2"] = { type = "Prefix", affix = "Juggernaut's", "(20-30)% chance to gain an Endurance Charge when you are Hit", statOrder = { 2626 }, level = 60, group = "AnimalCharmEnchangeChargeWhenHit", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmChaosResistancePerEnduranceCharge1"] = { type = "Suffix", affix = "of the Juggernaut", "+(2-3)% to Chaos Resistance per Endurance Charge", statOrder = { 5447 }, level = 1, group = "AnimalCharmChaosResistancePerEnduranceCharge", weightKey = { "str_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["AnimalCharmChaosResistancePerEnduranceCharge2"] = { type = "Suffix", affix = "of the Juggernaut", "+(4-5)% to Chaos Resistance per Endurance Charge", statOrder = { 5447 }, level = 60, group = "AnimalCharmChaosResistancePerEnduranceCharge", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmLIfeRegenerationRate1"] = { type = "Suffix", affix = "of the Juggernaut", "(10-15)% increased Life Regeneration rate", statOrder = { 1459 }, level = 45, group = "AnimalCharmLIfeRegenerationRate", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmLIfeRegenerationRate2"] = { type = "Suffix", affix = "of the Juggernaut", "(16-20)% increased Life Regeneration rate", statOrder = { 1459 }, level = 72, group = "AnimalCharmLIfeRegenerationRate", weightKey = { "str_animal_charm", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["AnimalCharmTotemTauntEnemiesWhenSummoned"] = { type = "Suffix", affix = "of the Chieftain", "Totems Taunt Enemies around them for 2 seconds when Summoned", statOrder = { 9885 }, level = 45, group = "AnimalCharmTotemTauntEnemiesWhenSummoned", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmTotemRecoup1"] = { type = "Suffix", affix = "of the Chieftain", "Recoup (5-7)% of Damage Taken by your Totems as Life", statOrder = { 9331 }, level = 1, group = "AnimalCharmTotemRecoup", weightKey = { "str_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["AnimalCharmTotemRecoup2"] = { type = "Suffix", affix = "of the Chieftain", "Recoup (8-12)% of Damage Taken by your Totems as Life", statOrder = { 9331 }, level = 60, group = "AnimalCharmTotemRecoup", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmFireExplode"] = { type = "Prefix", affix = "Chieftain's", "Enemies you or your Totems Kill have 1% chance to Explode, dealing 500% of their maximum Life as Fire Damage", statOrder = { 6188 }, level = 70, group = "AnimalCharmFireExplode", weightKey = { "str_animal_charm", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["AnimalCharmAshOnHittingRareUniqueEnemy1"] = { type = "Prefix", affix = "Chieftain's", "(5-10)% chance to Cover Rare or Unique Enemies in Ash for 10 Seconds on Hit", statOrder = { 4523 }, level = 45, group = "AnimalCharmAshOnHittingRareUniqueEnemy", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmAshOnHittingRareUniqueEnemy2"] = { type = "Prefix", affix = "Chieftain's", "(11-20)% chance to Cover Rare or Unique Enemies in Ash for 10 Seconds on Hit", statOrder = { 4523 }, level = 72, group = "AnimalCharmAshOnHittingRareUniqueEnemy", weightKey = { "str_animal_charm", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["AnimalCharmStrengthPercent1"] = { type = "Prefix", affix = "Chieftain's", "(3-5)% increased Strength", statOrder = { 1069 }, level = 1, group = "AnimalCharmStrengthPercent", weightKey = { "str_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["AnimalCharmStrengthPercent2"] = { type = "Prefix", affix = "Chieftain's", "(6-8)% increased Strength", statOrder = { 1069 }, level = 60, group = "AnimalCharmStrengthPercent", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmMaximumFireDamageResistance1"] = { type = "Suffix", affix = "of the Chieftain", "+1% to maximum Fire Resistance", statOrder = { 1505 }, level = 45, group = "AnimalCharmMaximumFireDamageResistance", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmMaximumFireDamageResistance2"] = { type = "Suffix", affix = "of the Chieftain", "+2% to maximum Fire Resistance", statOrder = { 1505 }, level = 72, group = "AnimalCharmMaximumFireDamageResistance", weightKey = { "str_animal_charm", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["AnimalCharmIgniteDurationOnSelf1"] = { type = "Suffix", affix = "of the Chieftain", "(20-30)% reduced Ignite Duration on you", statOrder = { 1756 }, level = 1, group = "AnimalCharmIgniteDurationOnSelf", weightKey = { "str_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["AnimalCharmIgniteDurationOnSelf2"] = { type = "Suffix", affix = "of the Chieftain", "(31-50)% reduced Ignite Duration on you", statOrder = { 1756 }, level = 60, group = "AnimalCharmIgniteDurationOnSelf", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmStunImmuneWith25Rage"] = { type = "Suffix", affix = "of the Berserker", "Cannot be Stunned while you have at least 25 Rage", statOrder = { 9291 }, level = 45, group = "AnimalCharmStunImmuneWith25Rage", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmAddedPhysicalDamageIfCritRecently1"] = { type = "Prefix", affix = "Berserker's", "Adds (5-7) to (14-17) Physical Damage if you've dealt a Critical Strike Recently", statOrder = { 8788 }, level = 1, group = "AnimalCharmAddedPhysicalDamageIfCritRecently", weightKey = { "str_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["AnimalCharmAddedPhysicalDamageIfCritRecently2"] = { type = "Prefix", affix = "Berserker's", "Adds (8-12) to (18-22) Physical Damage if you've dealt a Critical Strike Recently", statOrder = { 8788 }, level = 60, group = "AnimalCharmAddedPhysicalDamageIfCritRecently", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmMaximumRage1"] = { type = "Prefix", affix = "Berserker's", "+(2-3) to Maximum Rage", statOrder = { 9285 }, level = 1, group = "AnimalCharmMaximumRage", weightKey = { "str_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["AnimalCharmMaximumRage2"] = { type = "Prefix", affix = "Berserker's", "+(4-5) to Maximum Rage", statOrder = { 9285 }, level = 60, group = "AnimalCharmMaximumRage", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmWarcriesGrantRage1"] = { type = "Prefix", affix = "Berserker's", "Warcries grant (2-3) Rage per 5 Power if you have less than 25 Rage", statOrder = { 4883 }, level = 1, group = "AnimalCharmWarcriesGrantRage", weightKey = { "str_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["AnimalCharmWarcriesGrantRage2"] = { type = "Prefix", affix = "Berserker's", "Warcries grant (4-5) Rage per 5 Power if you have less than 25 Rage", statOrder = { 4883 }, level = 60, group = "AnimalCharmWarcriesGrantRage", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmLeechPercentIsInstant1"] = { type = "Suffix", affix = "of the Berserker", "(3-5)% of Leech is Instant", statOrder = { 6953 }, level = 45, group = "AnimalCharmLeechPercentIsInstant", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmLeechPercentIsInstant2"] = { type = "Suffix", affix = "of the Berserker", "(6-8)% of Leech is Instant", statOrder = { 6953 }, level = 72, group = "AnimalCharmLeechPercentIsInstant", weightKey = { "str_animal_charm", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["AnimalCharmLeechIfKilledRecently1"] = { type = "Suffix", affix = "of the Berserker", "1% of Attack Damage Leeched as Life and Mana if you've Killed Recently", statOrder = { 6959 }, level = 1, group = "AnimalCharmLeechIfKilledRecently", weightKey = { "str_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["AnimalCharmLeechIfKilledRecently2"] = { type = "Suffix", affix = "of the Berserker", "2% of Attack Damage Leeched as Life and Mana if you've Killed Recently", statOrder = { 6959 }, level = 60, group = "AnimalCharmLeechIfKilledRecently", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmCorpseExplodeOnWarcry1"] = { type = "Prefix", affix = "Berserker's", "Nearby corpses Explode when you Warcry, dealing (3-4)% of their Life as Physical Damage", statOrder = { 8970 }, level = 70, group = "AnimalCharmCorpseExplodeOnWarcry", weightKey = { "str_animal_charm", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["AnimalCharmCorpseExplodeOnWarcry2"] = { type = "Prefix", affix = "Berserker's", "Nearby corpses Explode when you Warcry, dealing (5-6)% of their Life as Physical Damage", statOrder = { 8970 }, level = 81, group = "AnimalCharmCorpseExplodeOnWarcry", weightKey = { "str_animal_charm", "default", }, weightVal = { 50, 0 }, modTags = { }, }, - ["AnimalCharmStunImmuneWhileFortified"] = { type = "Suffix", affix = "of the Champion", "Cannot be Stunned while Fortified", statOrder = { 5133 }, level = 70, group = "AnimalCharmStunImmuneWhileFortified", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 50, 50, 0 }, modTags = { }, }, - ["AnimalCharmTauntOnHitChance1"] = { type = "Prefix", affix = "Champion's", "(10-19)% chance to Taunt on Hit", statOrder = { 3296 }, level = 1, group = "AnimalCharmTauntOnHitChance", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["AnimalCharmTauntOnHitChance2"] = { type = "Prefix", affix = "Champion's", "(20-30)% chance to Taunt on Hit", statOrder = { 3296 }, level = 60, group = "AnimalCharmTauntOnHitChance", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmBannersNoReservation"] = { type = "Prefix", affix = "Champion's", "Banner Skills have no Reservation", statOrder = { 4798 }, level = 45, group = "AnimalCharmBannersNoReservation", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmRecoverBannerStagesOnPlacingBanner1"] = { type = "Suffix", affix = "of the Champion", "When you leave your Banner's Area, recover (10-15)% of the Valour consumed for that Banner", statOrder = { 9068 }, level = 1, group = "AnimalCharmRecoverBannerStagesOnPlacingBanner", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["AnimalCharmRecoverBannerStagesOnPlacingBanner2"] = { type = "Suffix", affix = "of the Champion", "When you leave your Banner's Area, recover (16-25)% of the Valour consumed for that Banner", statOrder = { 9068 }, level = 60, group = "AnimalCharmRecoverBannerStagesOnPlacingBanner", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmGainAdrenalineOnReachingLowLife"] = { type = "Prefix", affix = "Champion's", "Gain Adrenaline for 4 seconds when you reach Low Life", statOrder = { 6380 }, level = 70, group = "AnimalCharmGainAdrenalineOnReachingLowLife", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 50, 50, 0 }, modTags = { }, }, - ["AnimalCharmImpaleLastsForExtraHits"] = { type = "Prefix", affix = "Champion's", "Impales you inflict last 1 additional Hit", statOrder = { 6882 }, level = 81, group = "AnimalCharmImpaleLastsForExtraHits", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 10, 10, 0 }, modTags = { }, }, - ["AnimalCharmFortifyOnMeleeHitChance1"] = { type = "Suffix", affix = "of the Champion", "Melee Hits have (5-10)% chance to Fortify", statOrder = { 2141 }, level = 45, group = "AnimalCharmFortifyOnMeleeHitChance", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmFortifyOnMeleeHitChance2"] = { type = "Suffix", affix = "of the Champion", "Melee Hits have (11-20)% chance to Fortify", statOrder = { 2141 }, level = 72, group = "AnimalCharmFortifyOnMeleeHitChance", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 125, 125, 0 }, modTags = { }, }, - ["AnimalCharmBleedExplode1"] = { type = "Prefix", affix = "Gladiator's", "Bleeding Enemies you Kill Explode, dealing (2-3)% of", "their Maximum Life as Physical Damage", statOrder = { 3344, 3344.1 }, level = 70, group = "AnimalCharmBleedExplode", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 50, 50, 0 }, modTags = { }, }, - ["AnimalCharmBleedExplode2"] = { type = "Prefix", affix = "Gladiator's", "Bleeding Enemies you Kill Explode, dealing (4-5)% of", "their Maximum Life as Physical Damage", statOrder = { 3344, 3344.1 }, level = 81, group = "AnimalCharmBleedExplode", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 25, 25, 0 }, modTags = { }, }, - ["AnimalCharmBlindOnHitVsBleedingEnemies1"] = { type = "Prefix", affix = "Gladiator's", "Attack Hits against Bleeding Enemies have (10-19)% chance to Blind", statOrder = { 4664 }, level = 1, group = "AnimalCharmBlindOnHitVsBleedingEnemies", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["AnimalCharmBlindOnHitVsBleedingEnemies2"] = { type = "Prefix", affix = "Gladiator's", "Attack Hits against Bleeding Enemies have (20-30)% chance to Blind", statOrder = { 4664 }, level = 60, group = "AnimalCharmBlindOnHitVsBleedingEnemies", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmMaimOnHitVsBlindedEnemies1"] = { type = "Prefix", affix = "Gladiator's", "Attack Hits against Blinded Enemies have (10-19)% chance to Maim", statOrder = { 4665 }, level = 1, group = "AnimalCharmMaimOnHitVsBlindedEnemies", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["AnimalCharmMaimOnHitVsBlindedEnemies2"] = { type = "Prefix", affix = "Gladiator's", "Attack Hits against Blinded Enemies have (20-30)% chance to Maim", statOrder = { 4665 }, level = 60, group = "AnimalCharmMaimOnHitVsBlindedEnemies", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmStunImmuneAgainstBlockedHits"] = { type = "Suffix", affix = "of the Gladiator", "Cannot be Stunned by Hits you Block", statOrder = { 5124 }, level = 45, group = "AnimalCharmStunImmuneAgainstBlockedHits", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmMaximumBlock1"] = { type = "Suffix", affix = "of the Gladiator", "+(1-2)% to maximum Chance to Block Attack Damage", statOrder = { 1865 }, level = 45, group = "AnimalCharmMaximumBlock", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmMaximumBlock2"] = { type = "Suffix", affix = "of the Gladiator", "+3% to maximum Chance to Block Attack Damage", statOrder = { 1865 }, level = 72, group = "AnimalCharmMaximumBlock", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 125, 125, 0 }, modTags = { }, }, - ["AnimalCharmOverwhelmIfBlockedinPast20Seconds"] = { type = "Prefix", affix = "Gladiator's", "Hits ignore Enemy Physical Damage Reduction if you've Blocked in the past 20 seconds", statOrder = { 6800 }, level = 1, group = "AnimalCharmOverwhelmIfBlockedinPast20Seconds", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["AnimalCharmArmourAndEvasionPerBlock1"] = { type = "Suffix", affix = "of the Gladiator", "+(3-4) to Armour and Evasion Rating per 1% Chance to Block Attack Damage", statOrder = { 4583 }, level = 1, group = "AnimalCharmArmourAndEvasionPerBlock", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["AnimalCharmArmourAndEvasionPerBlock2"] = { type = "Suffix", affix = "of the Gladiator", "+(5-6) to Armour and Evasion Rating per 1% Chance to Block Attack Damage", statOrder = { 4583 }, level = 60, group = "AnimalCharmArmourAndEvasionPerBlock", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmAttackBlock1"] = { type = "Suffix", affix = "of the Gladiator", "+(3-4)% Chance to Block Attack Damage", statOrder = { 2334 }, level = 1, group = "AnimalCharmAttackBlock", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["AnimalCharmAttackBlock2"] = { type = "Suffix", affix = "of the Gladiator", "+(5-6)% Chance to Block Attack Damage", statOrder = { 2334 }, level = 60, group = "AnimalCharmAttackBlock", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmAttackSpeedOnKillingRareUnique1"] = { type = "Prefix", affix = "Slayer's", "Gain (4-7)% increased Attack Speed for 20 seconds when you Kill a Rare or Unique Enemy", statOrder = { 6401 }, level = 1, group = "AnimalCharmAttackSpeedOnKillingRareUnique", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["AnimalCharmAttackSpeedOnKillingRareUnique2"] = { type = "Prefix", affix = "Slayer's", "Gain (8-12)% increased Attack Speed for 20 seconds when you Kill a Rare or Unique Enemy", statOrder = { 6401 }, level = 60, group = "AnimalCharmAttackSpeedOnKillingRareUnique", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmPhysicalReflectImmune"] = { type = "Suffix", affix = "of the Slayer", "Cannot take Reflected Physical Damage", statOrder = { 5152 }, level = 45, group = "AnimalCharmPhysicalReflectImmune", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmStunImmuneWhileLeeching"] = { type = "Suffix", affix = "of the Slayer", "Cannot be Stunned while Leeching", statOrder = { 3078 }, level = 70, group = "AnimalCharmStunImmuneWhileLeeching", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 50, 50, 0 }, modTags = { }, }, - ["AnimalCharmUnaffectedbyBleedingWhileLeeching"] = { type = "Suffix", affix = "of the Slayer", "You are Unaffected by Bleeding while Leeching", statOrder = { 9929 }, level = 70, group = "AnimalCharmUnaffectedbyBleedingWhileLeeching", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 50, 50, 0 }, modTags = { }, }, - ["AnimalCharmOverkillLeech1"] = { type = "Suffix", affix = "of the Slayer", "(4-7)% of Overkill Damage is Leeched as Life", statOrder = { 3075 }, level = 1, group = "AnimalCharmOverkillLeech", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["AnimalCharmOverkillLeech2"] = { type = "Suffix", affix = "of the Slayer", "(8-12)% of Overkill Damage is Leeched as Life", statOrder = { 3075 }, level = 60, group = "AnimalCharmOverkillLeech", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmMaximumAmountPerLifeLeech1"] = { type = "Prefix", affix = "Slayer's", "(10-20)% increased Maximum Recovery per Life Leech", statOrder = { 1605 }, level = 45, group = "AnimalCharmMaximumAmountPerLifeLeech", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmMaximumAmountPerLifeLeech2"] = { type = "Prefix", affix = "Slayer's", "(21-30)% increased Maximum Recovery per Life Leech", statOrder = { 1605 }, level = 72, group = "AnimalCharmMaximumAmountPerLifeLeech", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 125, 125, 0 }, modTags = { }, }, - ["AnimalCharmAreaOfEffectIfKilledRecently1"] = { type = "Prefix", affix = "Slayer's", "(4-7)% increased Area of Effect if you've Killed Recently", statOrder = { 4080 }, level = 1, group = "AnimalCharmAreaOfEffectIfKilledRecently", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["AnimalCharmAreaOfEffectIfKilledRecently2"] = { type = "Prefix", affix = "Slayer's", "(8-12)% increased Area of Effect if you've Killed Recently", statOrder = { 4080 }, level = 60, group = "AnimalCharmAreaOfEffectIfKilledRecently", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmCullingStrike"] = { type = "Prefix", affix = "Slayer's", "Culling Strike", statOrder = { 1916 }, level = 45, group = "AnimalCharmCullingStrike", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmStrengthAndIntelligence1"] = { type = "Suffix", affix = "of the Inquisitor", "+(20-30) to Strength and Intelligence", statOrder = { 381 }, level = 1, group = "AnimalCharmStrengthAndIntelligence", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["AnimalCharmStrengthAndIntelligence2"] = { type = "Suffix", affix = "of the Inquisitor", "+(31-40) to Strength and Intelligence", statOrder = { 381 }, level = 60, group = "AnimalCharmStrengthAndIntelligence", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmCriticalStrikesNonDamagingAilmentEffect1"] = { type = "Prefix", affix = "Inquisitor's", "(20-30)% increased Effect of non-Damaging Ailments you inflict with Critical Strikes", statOrder = { 9021 }, level = 1, group = "AnimalCharmCriticalStrikesNonDamagingAilmentEffect", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["AnimalCharmCriticalStrikesNonDamagingAilmentEffect2"] = { type = "Prefix", affix = "Inquisitor's", "(31-40)% increased Effect of non-Damaging Ailments you inflict with Critical Strikes", statOrder = { 9021 }, level = 60, group = "AnimalCharmCriticalStrikesNonDamagingAilmentEffect", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmConsecratedGroundLingerDuration"] = { type = "Suffix", affix = "of the Inquisitor", "Effects of Consecrated Ground you create Linger for 2 seconds", statOrder = { 10144 }, level = 70, group = "AnimalCharmConsecratedGroundLingerDuration", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 50, 50, 0 }, modTags = { }, }, - ["AnimalCharmConsecratedGroundDamageTaken1"] = { type = "Prefix", affix = "Inquisitor's", "Consecrated Ground you create applies (5-6)% increased Damage taken to Enemies", statOrder = { 5554 }, level = 45, group = "AnimalCharmConsecratedGroundDamageTaken", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmConsecratedGroundDamageTaken2"] = { type = "Prefix", affix = "Inquisitor's", "Consecrated Ground you create applies (7-10)% increased Damage taken to Enemies", statOrder = { 5554 }, level = 72, group = "AnimalCharmConsecratedGroundDamageTaken", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 125, 125, 0 }, modTags = { }, }, - ["AnimalCharmElementalPenetration1"] = { type = "Prefix", affix = "Inquisitor's", "Damage Penetrates (3-4)% of Enemy Elemental Resistances", statOrder = { 3422 }, level = 1, group = "AnimalCharmElementalPenetration", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["AnimalCharmElementalPenetration2"] = { type = "Prefix", affix = "Inquisitor's", "Damage Penetrates (5-6)% of Enemy Elemental Resistances", statOrder = { 3422 }, level = 60, group = "AnimalCharmElementalPenetration", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmConsecratedGroundVsRareUnique1"] = { type = "Suffix", affix = "of the Inquisitor", "(10-19)% chance to create Consecrated Ground when you Hit a Rare or Unique Enemy, lasting 8 seconds", statOrder = { 5607 }, level = 1, group = "AnimalCharmConsecratedGroundVsRareUnique", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["AnimalCharmConsecratedGroundVsRareUnique2"] = { type = "Suffix", affix = "of the Inquisitor", "(20-30)% chance to create Consecrated Ground when you Hit a Rare or Unique Enemy, lasting 8 seconds", statOrder = { 5607 }, level = 60, group = "AnimalCharmConsecratedGroundVsRareUnique", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmCriticalStrikeChanceIfNotCritRecently1"] = { type = "Prefix", affix = "Inquisitor's", "(50-70)% increased Critical Strike Chance if you haven't dealt a Critical Strike Recently", statOrder = { 5631 }, level = 1, group = "AnimalCharmCriticalStrikeChanceIfNotCritRecently", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["AnimalCharmCriticalStrikeChanceIfNotCritRecently2"] = { type = "Prefix", affix = "Inquisitor's", "(71-100)% increased Critical Strike Chance if you haven't dealt a Critical Strike Recently", statOrder = { 5631 }, level = 60, group = "AnimalCharmCriticalStrikeChanceIfNotCritRecently", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmDamageRemovedFromManaBeforeLife1"] = { type = "Suffix", affix = "of the Hierophant", "(1-2)% of Damage is taken from Mana before Life", statOrder = { 2572 }, level = 70, group = "AnimalCharmDamageRemovedFromManaBeforeLife", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 50, 50, 0 }, modTags = { }, }, - ["AnimalCharmDamageRemovedFromManaBeforeLife2"] = { type = "Suffix", affix = "of the Hierophant", "3% of Damage is taken from Mana before Life", statOrder = { 2572 }, level = 81, group = "AnimalCharmDamageRemovedFromManaBeforeLife", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 25, 25, 0 }, modTags = { }, }, - ["AnimalCharmManaReservationEfficiency1"] = { type = "Prefix", affix = "Hierophant's", "(4-7)% increased Mana Reservation Efficiency of Skills", statOrder = { 2105 }, level = 45, group = "AnimalCharmManaReservationEfficiency", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmManaReservationEfficiency2"] = { type = "Prefix", affix = "Hierophant's", "(8-12)% increased Mana Reservation Efficiency of Skills", statOrder = { 2105 }, level = 72, group = "AnimalCharmManaReservationEfficiency", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 125, 125, 0 }, modTags = { }, }, - ["AnimalCharmManaToAddAsExtraEnergyShield1"] = { type = "Suffix", affix = "of the Hierophant", "Gain (2-3)% of Maximum Mana as Extra Maximum Energy Shield", statOrder = { 2052 }, level = 1, group = "AnimalCharmManaToAddAsExtraEnergyShield", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["AnimalCharmManaToAddAsExtraEnergyShield2"] = { type = "Suffix", affix = "of the Hierophant", "Gain (4-5)% of Maximum Mana as Extra Maximum Energy Shield", statOrder = { 2052 }, level = 60, group = "AnimalCharmManaToAddAsExtraEnergyShield", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmArcaneSurgeOnHit"] = { type = "Prefix", affix = "Hierophant's", "Gain Arcane Surge when you or your Totems Hit an Enemy with a Spell", statOrder = { 6396 }, level = 70, group = "AnimalCharmArcaneSurgeOnHit", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 50, 50, 0 }, modTags = { }, }, - ["AnimalCharmNonDamagingAilmentEffectOnSelfWithArcaneSurge1"] = { type = "Prefix", affix = "Hierophant's", "Non-Damaging Ailments have (20-30)% reduced Effect on you while you have Arcane Surge", statOrder = { 4192 }, level = 1, group = "AnimalCharmNonDamagingAilmentEffectOnSelfWithArcaneSurge", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["AnimalCharmNonDamagingAilmentEffectOnSelfWithArcaneSurge2"] = { type = "Prefix", affix = "Hierophant's", "Non-Damaging Ailments have (31-40)% reduced Effect on you while you have Arcane Surge", statOrder = { 4192 }, level = 60, group = "AnimalCharmNonDamagingAilmentEffectOnSelfWithArcaneSurge", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmDamageRemovedFromTotemLifeBeforeSelf1"] = { type = "Suffix", affix = "of the Hierophant", "(1-2)% of Damage from Hits is taken from your nearest Totem's Life before you", statOrder = { 5794 }, level = 1, group = "AnimalCharmDamageRemovedFromTotemLifeBeforeSelf", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["AnimalCharmDamageRemovedFromTotemLifeBeforeSelf2"] = { type = "Suffix", affix = "of the Hierophant", "3% of Damage from Hits is taken from your nearest Totem's Life before you", statOrder = { 5794 }, level = 60, group = "AnimalCharmDamageRemovedFromTotemLifeBeforeSelf", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmMinimumEnduranceAndPowerCharges"] = { type = "Suffix", affix = "of the Hierophant", "+1 to Minimum Endurance Charges", "+1 to Minimum Power Charges", statOrder = { 1684, 1694 }, level = 70, group = "AnimalCharmMinimumEnduranceAndPowerCharges", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 50, 50, 0 }, modTags = { }, }, - ["AnimalCharmChanceToSummonTwoTotems1"] = { type = "Prefix", affix = "Hierophant's", "Skills that Summon a Totem have (20-30)% chance to Summon two Totems instead of one", statOrder = { 5432 }, level = 1, group = "AnimalCharmChanceToSummonTwoTotems", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["AnimalCharmChanceToSummonTwoTotems2"] = { type = "Prefix", affix = "Hierophant's", "Skills that Summon a Totem have (31-50)% chance to Summon two Totems instead of one", statOrder = { 5432 }, level = 60, group = "AnimalCharmChanceToSummonTwoTotems", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmBlockChanceIfAttackedRecently1"] = { type = "Suffix", affix = "of the Guardian", "If you've Attacked Recently, you and nearby Allies have +(4-5)% Chance to Block Attack Damage", statOrder = { 10095 }, level = 1, group = "AnimalCharmBlockChanceIfAttackedRecently", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["AnimalCharmBlockChanceIfAttackedRecently2"] = { type = "Suffix", affix = "of the Guardian", "If you've Attacked Recently, you and nearby Allies have +(6-8)% Chance to Block Attack Damage", statOrder = { 10095 }, level = 60, group = "AnimalCharmBlockChanceIfAttackedRecently", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmSpellBlockChanceIfCastSpellRecently1"] = { type = "Suffix", affix = "of the Guardian", "If you've Cast a Spell Recently, you and nearby Allies have +(4-5)% Chance to Block Spell Damage", statOrder = { 10096 }, level = 1, group = "AnimalCharmSpellBlockChanceIfCastSpellRecently", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["AnimalCharmSpellBlockChanceIfCastSpellRecently2"] = { type = "Suffix", affix = "of the Guardian", "If you've Cast a Spell Recently, you and nearby Allies have +(6-8)% Chance to Block Spell Damage", statOrder = { 10096 }, level = 60, group = "AnimalCharmSpellBlockChanceIfCastSpellRecently", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmRemoveCursesAndAilmentsEvery10seconds"] = { type = "Suffix", affix = "of the Guardian", "Every 4 seconds, remove Curses and Elemental Ailments from you", statOrder = { 3648 }, level = 45, group = "AnimalCharmRemoveCursesAndAilmentsEvery10seconds", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmReservedManaGrantedAsArmour1"] = { type = "Prefix", affix = "Guardian's", "Grants Armour equal to (3-4)% of your Reserved Mana to you and nearby Allies", statOrder = { 3646 }, level = 45, group = "AnimalCharmReservedManaGrantedAsArmour", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmReservedManaGrantedAsArmour2"] = { type = "Prefix", affix = "Guardian's", "Grants Armour equal to (5-6)% of your Reserved Mana to you and nearby Allies", statOrder = { 3646 }, level = 72, group = "AnimalCharmReservedManaGrantedAsArmour", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 125, 125, 0 }, modTags = { }, }, - ["AnimalCharmEnemiesInLinkBeamCannotInflictElementalAilments"] = { type = "Suffix", affix = "of the Guardian", "Enemies in your Link Beams cannot apply Elemental Ailments", statOrder = { 7110 }, level = 45, group = "AnimalCharmEnemiesInLinkBeamCannotInflictElementalAilments", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmLifeRegenerationForASecondEvery10Seconds1"] = { type = "Prefix", affix = "Guardian's", "Every 4 seconds, Regenerate 10% of Life over one second", statOrder = { 3649 }, level = 1, group = "AnimalCharmLifeRegenerationForASecondEvery10Seconds", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["AnimalCharmLifeRegenerationForASecondEvery10Seconds2"] = { type = "Prefix", affix = "Guardian's", "Every 4 seconds, Regenerate 20% of Life over one second", statOrder = { 3649 }, level = 60, group = "AnimalCharmLifeRegenerationForASecondEvery10Seconds", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmNearbyEnemiesCannotGainCharges"] = { type = "Prefix", affix = "Guardian's", "Nearby Enemies cannot gain Power, Frenzy or Endurance Charges", statOrder = { 3644 }, level = 45, group = "AnimalCharmNearbyEnemiesCannotGainCharges", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmNearbyAlliesHaveOnslaughtIfYouHaveAtLeast5Nearby"] = { type = "Prefix", affix = "Guardian's", "While there are at least five nearby Allies, you and nearby Allies have Onslaught", statOrder = { 6569 }, level = 45, group = "AnimalCharmNearbyAlliesHaveOnslaughtIfYouHaveAtLeast5Nearby", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmExposureExtraResistance1"] = { type = "Prefix", affix = "Elementalist's", "Exposure you inflict applies an extra -(5-4)% to the affected Resistance", statOrder = { 6195 }, level = 1, group = "AnimalCharmExposureExtraResistance", weightKey = { "int_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["AnimalCharmExposureExtraResistance2"] = { type = "Prefix", affix = "Elementalist's", "Exposure you inflict applies an extra -(7-6)% to the affected Resistance", statOrder = { 6195 }, level = 60, group = "AnimalCharmExposureExtraResistance", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmAllDamageCanIgnite"] = { type = "Prefix", affix = "Elementalist's", "All Damage can Ignite", statOrder = { 4469 }, level = 81, group = "AnimalCharmAllDamageCanIgnite", weightKey = { "int_animal_charm", "default", }, weightVal = { 20, 0 }, modTags = { }, }, - ["AnimalCharmShockMinimumDamageIncrease1"] = { type = "Prefix", affix = "Elementalist's", "Shocks from your Hits always increase Damage taken by at least (5-7)%", statOrder = { 4302 }, level = 45, group = "AnimalCharmShockMinimumDamageIncrease", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmShockMinimumDamageIncrease2"] = { type = "Prefix", affix = "Elementalist's", "Shocks from your Hits always increase Damage taken by at least (8-10)%", statOrder = { 4302 }, level = 72, group = "AnimalCharmShockMinimumDamageIncrease", weightKey = { "int_animal_charm", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["AnimalCharmChillMinimumSlow1"] = { type = "Suffix", affix = "of the Elementalist", "Chills from your Hits always reduce Action Speed by at least (3-4)%", statOrder = { 4300 }, level = 45, group = "AnimalCharmChillMinimumSlow", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmChillMinimumSlow2"] = { type = "Suffix", affix = "of the Elementalist", "Chills from your Hits always reduce Action Speed by at least (5-6)%", statOrder = { 4300 }, level = 72, group = "AnimalCharmChillMinimumSlow", weightKey = { "int_animal_charm", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["AnimalCharmGolemBuffEffect1"] = { type = "Suffix", affix = "of the Elementalist", "(15-20)% increased Effect of Buffs granted by your Golems", statOrder = { 6541 }, level = 1, group = "AnimalCharmGolemBuffEffect", weightKey = { "int_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["AnimalCharmGolemBuffEffect2"] = { type = "Suffix", affix = "of the Elementalist", "(21-35)% increased Effect of Buffs granted by your Golems", statOrder = { 6541 }, level = 60, group = "AnimalCharmGolemBuffEffect", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmIgniteFreezeShockChance1"] = { type = "Prefix", affix = "Elementalist's", "(10-15)% chance to Freeze, Shock and Ignite", statOrder = { 2676 }, level = 1, group = "AnimalCharmIgniteFreezeShockChance", weightKey = { "int_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["AnimalCharmIgniteFreezeShockChance2"] = { type = "Prefix", affix = "Elementalist's", "(16-25)% chance to Freeze, Shock and Ignite", statOrder = { 2676 }, level = 60, group = "AnimalCharmIgniteFreezeShockChance", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmElementalReflectImmune"] = { type = "Suffix", affix = "of the Elementalist", "Cannot take Reflected Elemental Damage", statOrder = { 5151 }, level = 45, group = "AnimalCharmElementalReflectImmune", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmIgnoreHexproofEnemies"] = { type = "Prefix", affix = "Occultist's", "Your Hexes can affect Hexproof Enemies", statOrder = { 2476 }, level = 45, group = "AnimalCharmIgnoreHexproofEnemies", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmChaosExplode1"] = { type = "Prefix", affix = "Occultist's", "Cursed Enemies you or your Minions Kill have a (6-10)% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage", statOrder = { 3172 }, level = 70, group = "AnimalCharmChaosExplode", weightKey = { "int_animal_charm", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["AnimalCharmChaosExplode2"] = { type = "Prefix", affix = "Occultist's", "Cursed Enemies you or your Minions Kill have a (11-15)% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage", statOrder = { 3172 }, level = 81, group = "AnimalCharmChaosExplode", weightKey = { "int_animal_charm", "default", }, weightVal = { 50, 0 }, modTags = { }, }, - ["AnimalCharmAreaofEffectPerPowerCharge1"] = { type = "Prefix", affix = "Occultist's", "(2-3)% increased Area of Effect per Power Charge", statOrder = { 2006 }, level = 1, group = "AnimalCharmAreaofEffectPerPowerCharge", weightKey = { "int_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["AnimalCharmAreaofEffectPerPowerCharge2"] = { type = "Prefix", affix = "Occultist's", "4% increased Area of Effect per Power Charge", statOrder = { 2006 }, level = 60, group = "AnimalCharmAreaofEffectPerPowerCharge", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmCurseEffect1"] = { type = "Prefix", affix = "Occultist's", "(3-5)% increased Effect of your Curses", statOrder = { 2472 }, level = 1, group = "AnimalCharmCurseEffect", weightKey = { "int_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["AnimalCharmCurseEffect2"] = { type = "Prefix", affix = "Occultist's", "(6-8)% increased Effect of your Curses", statOrder = { 2472 }, level = 60, group = "AnimalCharmCurseEffect", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmNearbyEnemiesAreChilled"] = { type = "Suffix", affix = "of the Occultist", "Nearby Enemies are Chilled", statOrder = { 8973 }, level = 70, group = "AnimalCharmNearbyEnemiesAreChilled", weightKey = { "int_animal_charm", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["AnimalCharmEnergyShieldRegeneration1"] = { type = "Suffix", affix = "of the Occultist", "Regenerate (1-1.5)% of Energy Shield per second", statOrder = { 2521 }, level = 1, group = "AnimalCharmEnergyShieldRegeneration", weightKey = { "int_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["AnimalCharmEnergyShieldRegeneration2"] = { type = "Suffix", affix = "of the Occultist", "Regenerate (2-3)% of Energy Shield per second", statOrder = { 2521 }, level = 60, group = "AnimalCharmEnergyShieldRegeneration", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmSpellHinderOnHitChance1"] = { type = "Suffix", affix = "of the Occultist", "(10-19)% chance to Hinder Enemies on Hit with Spells", statOrder = { 9670 }, level = 1, group = "AnimalCharmSpellHinderOnHitChance", weightKey = { "int_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["AnimalCharmSpellHinderOnHitChance2"] = { type = "Suffix", affix = "of the Occultist", "(20-30)% chance to Hinder Enemies on Hit with Spells", statOrder = { 9670 }, level = 60, group = "AnimalCharmSpellHinderOnHitChance", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmMinionUnholyMightChance1"] = { type = "Prefix", affix = "Necromancer's", "Minions have (10-19)% chance to gain Unholy Might for 4 seconds on Kill", statOrder = { 3245 }, level = 1, group = "AnimalCharmMinionUnholyMightChance", weightKey = { "int_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["AnimalCharmMinionUnholyMightChance2"] = { type = "Prefix", affix = "Necromancer's", "Minions have (20-30)% chance to gain Unholy Might for 4 seconds on Kill", statOrder = { 3245 }, level = 60, group = "AnimalCharmMinionUnholyMightChance", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmOfferingEffect1"] = { type = "Prefix", affix = "Necromancer's", "Your Offerings have (15-20)% increased Effect on you", statOrder = { 1055 }, level = 1, group = "AnimalCharmOfferingEffect", weightKey = { "int_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["AnimalCharmOfferingEffect2"] = { type = "Prefix", affix = "Necromancer's", "Your Offerings have (21-30)% increased Effect on you", statOrder = { 1055 }, level = 60, group = "AnimalCharmOfferingEffect", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmRegenerateManaOnConsumeCorpse1"] = { type = "Suffix", affix = "of the Necromancer", "Regenerate (2-3)% of Mana over 2 seconds when you Consume a corpse", statOrder = { 9390 }, level = 1, group = "AnimalCharmRegenerateManaOnConsumeCorpse", weightKey = { "int_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["AnimalCharmRegenerateManaOnConsumeCorpse2"] = { type = "Suffix", affix = "of the Necromancer", "Regenerate (4-5)% of Mana over 2 seconds when you Consume a corpse", statOrder = { 9390 }, level = 60, group = "AnimalCharmRegenerateManaOnConsumeCorpse", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmRegenerateEnergyShieldOnConsumeCorpse1"] = { type = "Suffix", affix = "of the Necromancer", "Regenerate (2-3)% of Energy Shield over 2 seconds when you Consume a corpse", statOrder = { 9389 }, level = 1, group = "AnimalCharmRegenerateEnergyShieldOnConsumeCorpse", weightKey = { "int_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["AnimalCharmRegenerateEnergyShieldOnConsumeCorpse2"] = { type = "Suffix", affix = "of the Necromancer", "Regenerate (4-5)% of Energy Shield over 2 seconds when you Consume a corpse", statOrder = { 9389 }, level = 60, group = "AnimalCharmRegenerateEnergyShieldOnConsumeCorpse", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmElementalResistancesForAuraAffectedAllies1"] = { type = "Suffix", affix = "of the Necromancer", "You and nearby Allies have +(10-14)% to Elemental Resistances", statOrder = { 3932 }, level = 1, group = "AnimalCharmElementalResistancesForAuraAffectedAllies", weightKey = { "int_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["AnimalCharmElementalResistancesForAuraAffectedAllies2"] = { type = "Suffix", affix = "of the Necromancer", "You and nearby Allies have +(15-20)% to Elemental Resistances", statOrder = { 3932 }, level = 60, group = "AnimalCharmElementalResistancesForAuraAffectedAllies", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmMinionPhysicalDamageBasedOffHelmetEnergyShield1"] = { type = "Prefix", affix = "Necromancer's", "Minions gain Added Physical Damage equal to (3-5)% of Maximum Energy Shield on your Equipped Helmet", statOrder = { 10146 }, level = 45, group = "AnimalCharmMinionPhysicalDamageBasedOffHelmetEnergyShield", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmMinionPhysicalDamageBasedOffHelmetEnergyShield2"] = { type = "Prefix", affix = "Necromancer's", "Minions gain Added Physical Damage equal to (6-10)% of Maximum Energy Shield on your Equipped Helmet", statOrder = { 10146 }, level = 72, group = "AnimalCharmMinionPhysicalDamageBasedOffHelmetEnergyShield", weightKey = { "int_animal_charm", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["AnimalCharmCorpseLife1"] = { type = "Prefix", affix = "Necromancer's", "Corpses you Spawn have (5-10)% increased Maximum Life", statOrder = { 8710 }, level = 45, group = "AnimalCharmCorpseLife", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmCorpseLife2"] = { type = "Prefix", affix = "Necromancer's", "Corpses you Spawn have (11-20)% increased Maximum Life", statOrder = { 8710 }, level = 72, group = "AnimalCharmCorpseLife", weightKey = { "int_animal_charm", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["AnimalCharmMinionPhysicalDamageReduction1"] = { type = "Suffix", affix = "of the Necromancer", "Minions have (5-8)% additional Physical Damage Reduction", statOrder = { 2151 }, level = 1, group = "AnimalCharmMinionPhysicalDamageReduction", weightKey = { "int_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["AnimalCharmMinionPhysicalDamageReduction2"] = { type = "Suffix", affix = "of the Necromancer", "Minions have (9-12)% additional Physical Damage Reduction", statOrder = { 2151 }, level = 60, group = "AnimalCharmMinionPhysicalDamageReduction", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmPowerChargeOnCriticalStrike1"] = { type = "Prefix", affix = "Assassin's", "(10-15)% chance to gain a Power Charge on Critical Strike", statOrder = { 1711 }, level = 1, group = "AnimalCharmPowerChargeOnCriticalStrike", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["AnimalCharmPowerChargeOnCriticalStrike2"] = { type = "Prefix", affix = "Assassin's", "(16-25)% chance to gain a Power Charge on Critical Strike", statOrder = { 1711 }, level = 60, group = "AnimalCharmPowerChargeOnCriticalStrike", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmCriticalStrikeMultiplierPerPowerCharge1"] = { type = "Prefix", affix = "Assassin's", "+(2-3)% to Critical Strike Multiplier per Power Charge", statOrder = { 3148 }, level = 1, group = "AnimalCharmCriticalStrikeMultiplierPerPowerCharge", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["AnimalCharmCriticalStrikeMultiplierPerPowerCharge2"] = { type = "Prefix", affix = "Assassin's", "+(4-5)% to Critical Strike Multiplier per Power Charge", statOrder = { 3148 }, level = 60, group = "AnimalCharmCriticalStrikeMultiplierPerPowerCharge", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmAdditionalCriticalStrikeChanceAtMaximumPowerCharges1"] = { type = "Prefix", affix = "Assassin's", "+(0.4-0.6)% Critical Strike Chance while at maximum Power Charges", statOrder = { 3333 }, level = 1, group = "AnimalCharmAdditionalCriticalStrikeChanceAtMaximumPowerCharges", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["AnimalCharmAdditionalCriticalStrikeChanceAtMaximumPowerCharges2"] = { type = "Prefix", affix = "Assassin's", "+(0.6-1)% Critical Strike Chance while at maximum Power Charges", statOrder = { 3333 }, level = 60, group = "AnimalCharmAdditionalCriticalStrikeChanceAtMaximumPowerCharges", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmCriticalStrikesHaveCullingStrike"] = { type = "Prefix", affix = "Assassin's", "Critical Strikes have Culling Strike", statOrder = { 3303 }, level = 45, group = "AnimalCharmCriticalStrikesHaveCullingStrike", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmCriticalStrikeChanceAgainstFullLifeEnemies1"] = { type = "Prefix", affix = "Assassin's", "(80-120)% increased Critical Strike Chance against Enemies that are on Full Life", statOrder = { 3629 }, level = 1, group = "AnimalCharmCriticalStrikeChanceAgainstFullLifeEnemies", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["AnimalCharmCriticalStrikeChanceAgainstFullLifeEnemies2"] = { type = "Prefix", affix = "Assassin's", "(130-160)% increased Critical Strike Chance against Enemies that are on Full Life", statOrder = { 3629 }, level = 60, group = "AnimalCharmCriticalStrikeChanceAgainstFullLifeEnemies", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmCriticalStrikeDamageCannotBeReflected"] = { type = "Suffix", affix = "of the Assassin", "Damage from your Critical Strikes cannot be Reflected", statOrder = { 5651 }, level = 45, group = "AnimalCharmCriticalStrikeDamageCannotBeReflected", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmElusiveEffect1"] = { type = "Suffix", affix = "of the Assassin", "(10-15)% increased Elusive Effect", statOrder = { 6038 }, level = 45, group = "AnimalCharmElusiveEffect", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmElusiveEffect2"] = { type = "Suffix", affix = "of the Assassin", "(16-25)% increased Elusive Effect", statOrder = { 6038 }, level = 72, group = "AnimalCharmElusiveEffect", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 125, 125, 0 }, modTags = { }, }, - ["AnimalCharmNoExtraDamageFromCriticalStrikesIfElusive"] = { type = "Suffix", affix = "of the Assassin", "You take no Extra Damage from Critical Strikes while Elusive", statOrder = { 9473 }, level = 70, group = "AnimalCharmNoExtraDamageFromCriticalStrikesIfElusive", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 50, 50, 0 }, modTags = { }, }, - ["AnimalCharmPoisonDurationPerPoisonAppliedRecently1"] = { type = "Prefix", affix = "Assassin's", "(1-2)% increased Poison Duration for each Poison you have inflicted Recently, up to a maximum of 100%", statOrder = { 9193 }, level = 1, group = "AnimalCharmPoisonDurationPerPoisonAppliedRecently", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["AnimalCharmPoisonDurationPerPoisonAppliedRecently2"] = { type = "Prefix", affix = "Assassin's", "3% increased Poison Duration for each Poison you have inflicted Recently, up to a maximum of 100%", statOrder = { 9193 }, level = 60, group = "AnimalCharmPoisonDurationPerPoisonAppliedRecently", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmCannotBeBlinded"] = { type = "Suffix", affix = "of the Saboteur", "Cannot be Blinded", statOrder = { 2846 }, level = 45, group = "AnimalCharmCannotBeBlinded", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmBlindOnHitChance1"] = { type = "Suffix", affix = "of the Saboteur", "(5-10)% Global chance to Blind Enemies on hit", statOrder = { 2830 }, level = 1, group = "AnimalCharmBlindOnHitChance", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["AnimalCharmBlindOnHitChance2"] = { type = "Suffix", affix = "of the Saboteur", "(11-15)% Global chance to Blind Enemies on hit", statOrder = { 2830 }, level = 60, group = "AnimalCharmBlindOnHitChance", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmMineAuraEffect1"] = { type = "Prefix", affix = "Saboteur's", "(20-30)% increased Effect of Auras from Mines", statOrder = { 8761 }, level = 1, group = "AnimalCharmMineAuraEffect", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["AnimalCharmMineAuraEffect2"] = { type = "Prefix", affix = "Saboteur's", "(31-50)% increased Effect of Auras from Mines", statOrder = { 8761 }, level = 60, group = "AnimalCharmMineAuraEffect", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmTakeHalfAreaDamageChance1"] = { type = "Suffix", affix = "of the Saboteur", "(5-6)% chance to take 50% less Area Damage from Hits", statOrder = { 9830 }, level = 45, group = "AnimalCharmTakeHalfAreaDamageChance", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmTakeHalfAreaDamageChance2"] = { type = "Suffix", affix = "of the Saboteur", "(7-10)% chance to take 50% less Area Damage from Hits", statOrder = { 9830 }, level = 72, group = "AnimalCharmTakeHalfAreaDamageChance", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 125, 125, 0 }, modTags = { }, }, - ["AnimalCharmChanceFor150%AreaDamage1"] = { type = "Prefix", affix = "Saboteur's", "Hits have (5-6)% chance to deal 50% more Area Damage", statOrder = { 9109 }, level = 1, group = "AnimalCharmChanceFor150%AreaDamage", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["AnimalCharmChanceFor150%AreaDamage2"] = { type = "Prefix", affix = "Saboteur's", "Hits have (7-10)% chance to deal 50% more Area Damage", statOrder = { 9109 }, level = 60, group = "AnimalCharmChanceFor150%AreaDamage", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmCooldownRecoveryRate1"] = { type = "Prefix", affix = "Saboteur's", "(5-8)% increased Cooldown Recovery Rate", statOrder = { 4822 }, level = 70, group = "AnimalCharmCooldownRecoveryRate", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 50, 50, 0 }, modTags = { }, }, - ["AnimalCharmCooldownRecoveryRate2"] = { type = "Prefix", affix = "Saboteur's", "(9-12)% increased Cooldown Recovery Rate", statOrder = { 4822 }, level = 81, group = "AnimalCharmCooldownRecoveryRate", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 25, 25, 0 }, modTags = { }, }, - ["AnimalCharmChanceToThrow4AdditionalTraps1"] = { type = "Prefix", affix = "Saboteur's", "(2-3)% chance to throw up to 4 additional Traps", statOrder = { 5433 }, level = 1, group = "AnimalCharmChanceToThrow4AdditionalTraps", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["AnimalCharmChanceToThrow4AdditionalTraps2"] = { type = "Prefix", affix = "Saboteur's", "(4-5)% chance to throw up to 4 additional Traps", statOrder = { 5433 }, level = 60, group = "AnimalCharmChanceToThrow4AdditionalTraps", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmCritVsBurningAndShockedEnemies1"] = { type = "Prefix", affix = "Saboteur's", "+(10-15)% to Critical Strike Multiplier against Burning Enemies", "(20-30)% increased Critical Strike Chance against Shocked Enemies", statOrder = { 3054, 5617 }, level = 1, group = "AnimalCharmCritVsBurningAndShockedEnemies", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["AnimalCharmCritVsBurningAndShockedEnemies2"] = { type = "Prefix", affix = "Saboteur's", "+(16-25)% to Critical Strike Multiplier against Burning Enemies", "(31-50)% increased Critical Strike Chance against Shocked Enemies", statOrder = { 3054, 5617 }, level = 60, group = "AnimalCharmCritVsBurningAndShockedEnemies", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmChargeDuration1"] = { type = "Prefix", affix = "Trickster's", "(40-60)% increased Charge Duration", statOrder = { 4820 }, level = 1, group = "AnimalCharmChargeDuration", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["AnimalCharmChargeDuration2"] = { type = "Prefix", affix = "Trickster's", "(61-100)% increased Charge Duration", statOrder = { 4820 }, level = 60, group = "AnimalCharmChargeDuration", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmLifeManaESOnKill1"] = { type = "Suffix", affix = "of the Trickster", "Recover 1% of Life on Kill", "Recover 1% of Energy Shield on Kill", "Recover 1% of Mana on Kill", statOrder = { 1630, 1631, 1632 }, level = 1, group = "AnimalCharmLifeManaESOnKill", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["AnimalCharmLifeManaESOnKill2"] = { type = "Suffix", affix = "of the Trickster", "Recover 2% of Life on Kill", "Recover 2% of Energy Shield on Kill", "Recover 2% of Mana on Kill", statOrder = { 1630, 1631, 1632 }, level = 60, group = "AnimalCharmLifeManaESOnKill", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmChanceForEnergyShieldRechargeOnSuppress1"] = { type = "Suffix", affix = "of the Trickster", "(5-8)% chance for Energy Shield Recharge to start when you Suppress Spell Damage", statOrder = { 3289 }, level = 45, group = "AnimalCharmChanceForEnergyShieldRechargeOnSuppress", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmChanceForEnergyShieldRechargeOnSuppress2"] = { type = "Suffix", affix = "of the Trickster", "(9-12)% chance for Energy Shield Recharge to start when you Suppress Spell Damage", statOrder = { 3289 }, level = 72, group = "AnimalCharmChanceForEnergyShieldRechargeOnSuppress", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 125, 125, 0 }, modTags = { }, }, - ["AnimalCharmChanceFor25%NonChaosToAddAsChaosDamage1"] = { type = "Prefix", affix = "Trickster's", "(7-13)% chance to gain 25% of Non-Chaos Damage with Hits as Extra Chaos Damage", statOrder = { 4218 }, level = 45, group = "AnimalCharmChanceFor25%NonChaosToAddAsChaosDamage", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmChanceFor25%NonChaosToAddAsChaosDamage2"] = { type = "Prefix", affix = "Trickster's", "(17-23)% chance to gain 25% of Non-Chaos Damage with Hits as Extra Chaos Damage", statOrder = { 4218 }, level = 72, group = "AnimalCharmChanceFor25%NonChaosToAddAsChaosDamage", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 125, 125, 0 }, modTags = { }, }, - ["AnimalCharmEvasionPerEnergyShieldOnHelmet1"] = { type = "Suffix", affix = "of the Trickster", "+(1-2) to Evasion Rating per 1 Maximum Energy Shield on Equipped Helmet", statOrder = { 1430 }, level = 1, group = "AnimalCharmEvasionPerEnergyShieldOnHelmet", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["AnimalCharmEvasionPerEnergyShieldOnHelmet2"] = { type = "Suffix", affix = "of the Trickster", "+(3-4) to Evasion Rating per 1 Maximum Energy Shield on Equipped Helmet", statOrder = { 1430 }, level = 60, group = "AnimalCharmEvasionPerEnergyShieldOnHelmet", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmSpellDamageSuppressedOnFullEnergyShield1"] = { type = "Suffix", affix = "of the Trickster", "Prevent +(3-4)% of Suppressed Spell Damage while on Full Energy Shield", statOrder = { 1035 }, level = 70, group = "AnimalCharmSpellDamageSuppressedOnFullEnergyShield", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 50, 50, 0 }, modTags = { }, }, - ["AnimalCharmSpellDamageSuppressedOnFullEnergyShield2"] = { type = "Suffix", affix = "of the Trickster", "Prevent +(5-6)% of Suppressed Spell Damage while on Full Energy Shield", statOrder = { 1035 }, level = 81, group = "AnimalCharmSpellDamageSuppressedOnFullEnergyShield", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 25, 25, 0 }, modTags = { }, }, - ["AnimalCharmEnergyShieldLeech1"] = { type = "Prefix", affix = "Trickster's", "(0.5-1)% of Damage Leeched as Energy Shield", statOrder = { 1602 }, level = 1, group = "AnimalCharmEnergyShieldLeech", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["AnimalCharmEnergyShieldLeech2"] = { type = "Prefix", affix = "Trickster's", "(1.1-2)% of Damage Leeched as Energy Shield", statOrder = { 1602 }, level = 60, group = "AnimalCharmEnergyShieldLeech", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmRecover10PercentManaOnSkillUseChance1"] = { type = "Suffix", affix = "of the Trickster", "(4-6)% chance to Recover 10% of Mana when you use a Skill", statOrder = { 3338 }, level = 1, group = "AnimalCharmRecover10PercentManaOnSkillUseChance", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["AnimalCharmRecover10PercentManaOnSkillUseChance2"] = { type = "Suffix", affix = "of the Trickster", "(7-10)% chance to Recover 10% of Mana when you use a Skill", statOrder = { 3338 }, level = 60, group = "AnimalCharmRecover10PercentManaOnSkillUseChance", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmNoBarrageSpread"] = { type = "Prefix", affix = "Deadeye's", "Projectile Barrages have no spread", statOrder = { 9001 }, level = 45, group = "AnimalCharmNoBarrageSpread", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmMarkEffect1"] = { type = "Prefix", affix = "Deadeye's", "(10-15)% increased Effect of your Marks", statOrder = { 2474 }, level = 1, group = "AnimalCharmMarkEffect", weightKey = { "dex_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["AnimalCharmMarkEffect2"] = { type = "Prefix", affix = "Deadeye's", "(16-25)% increased Effect of your Marks", statOrder = { 2474 }, level = 60, group = "AnimalCharmMarkEffect", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmProjectileChainFromTerrainChance1"] = { type = "Prefix", affix = "Deadeye's", "Projectiles have (7-13)% chance to be able to Chain when colliding with terrain", statOrder = { 1708 }, level = 45, group = "AnimalCharmProjectileChainFromTerrainChance", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmProjectileChainFromTerrainChance2"] = { type = "Prefix", affix = "Deadeye's", "Projectiles have (14-20)% chance to be able to Chain when colliding with terrain", statOrder = { 1708 }, level = 72, group = "AnimalCharmProjectileChainFromTerrainChance", weightKey = { "dex_animal_charm", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["AnimalCharmAdditionalProjectiles"] = { type = "Prefix", affix = "Deadeye's", "Skills fire an additional Projectile", statOrder = { 1673 }, level = 81, group = "AnimalCharmAdditionalProjectiles", weightKey = { "dex_animal_charm", "default", }, weightVal = { 20, 0 }, modTags = { }, }, - ["AnimalCharmMirageArcherDuration1"] = { type = "Suffix", affix = "of the Deadeye", "(30-50)% increased Mirage Archer Duration", statOrder = { 8902 }, level = 1, group = "AnimalCharmMirageArcherDuration", weightKey = { "dex_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["AnimalCharmMirageArcherDuration2"] = { type = "Suffix", affix = "of the Deadeye", "(51-100)% increased Mirage Archer Duration", statOrder = { 8902 }, level = 60, group = "AnimalCharmMirageArcherDuration", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmProjectileDamageWithDistanceTravelled1"] = { type = "Prefix", affix = "Deadeye's", "Projectiles gain Damage as they travel farther, dealing up", "to (25-40)% increased Damage with Hits to targets", statOrder = { 3943, 3943.1 }, level = 1, group = "AnimalCharmProjectileDamageWithDistanceTravelled", weightKey = { "dex_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["AnimalCharmProjectileDamageWithDistanceTravelled2"] = { type = "Prefix", affix = "Deadeye's", "Projectiles gain Damage as they travel farther, dealing up", "to (41-60)% increased Damage with Hits to targets", statOrder = { 3943, 3943.1 }, level = 60, group = "AnimalCharmProjectileDamageWithDistanceTravelled", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmLifeOnHitVsBleedingEnemies1"] = { type = "Suffix", affix = "of the Deadeye", "Gain (6-10) Life per Bleeding Enemy Hit", statOrder = { 3433 }, level = 1, group = "AnimalCharmLifeOnHitVsBleedingEnemies", weightKey = { "dex_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["AnimalCharmLifeOnHitVsBleedingEnemies2"] = { type = "Suffix", affix = "of the Deadeye", "Gain (11-20) Life per Bleeding Enemy Hit", statOrder = { 3433 }, level = 60, group = "AnimalCharmLifeOnHitVsBleedingEnemies", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmAccuracyIfCritInLast8Seconds1"] = { type = "Prefix", affix = "Deadeye's", "(7-13)% increased Accuracy Rating if you've dealt a Critical Strike in the past 8 seconds", statOrder = { 4379 }, level = 1, group = "AnimalCharmAccuracyIfCritInLast8Seconds", weightKey = { "dex_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["AnimalCharmAccuracyIfCritInLast8Seconds2"] = { type = "Prefix", affix = "Deadeye's", "(14-20)% increased Accuracy Rating if you've dealt a Critical Strike in the past 8 seconds", statOrder = { 4379 }, level = 60, group = "AnimalCharmAccuracyIfCritInLast8Seconds", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmOnslaughtEffect1"] = { type = "Prefix", affix = "Raider's", "(15-25)% increased Effect of Onslaught on you", statOrder = { 3156 }, level = 1, group = "AnimalCharmOnslaughtEffect", weightKey = { "dex_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["AnimalCharmOnslaughtEffect2"] = { type = "Prefix", affix = "Raider's", "(26-40)% increased Effect of Onslaught on you", statOrder = { 3156 }, level = 60, group = "AnimalCharmOnslaughtEffect", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmPhasingOnKillChance1"] = { type = "Suffix", affix = "of the Raider", "(10-15)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3328 }, level = 1, group = "AnimalCharmPhasingOnKillChance", weightKey = { "dex_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["AnimalCharmPhasingOnKillChance2"] = { type = "Suffix", affix = "of the Raider", "(16-25)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3328 }, level = 60, group = "AnimalCharmPhasingOnKillChance", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmSpellSuppressionChance1"] = { type = "Suffix", affix = "of the Raider", "+(5-9)% chance to Suppress Spell Damage", statOrder = { 1032 }, level = 1, group = "AnimalCharmSpellSuppressionChance", weightKey = { "dex_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["AnimalCharmSpellSuppressionChance2"] = { type = "Suffix", affix = "of the Raider", "+(10-15)% chance to Suppress Spell Damage", statOrder = { 1032 }, level = 60, group = "AnimalCharmSpellSuppressionChance", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmAvoidElementalAilmentsChanceWhilePhasing1"] = { type = "Suffix", affix = "of the Raider", "(10-15)% chance to Avoid Elemental Ailments while Phasing", statOrder = { 4761 }, level = 1, group = "AnimalCharmAvoidElementalAilmentsChanceWhilePhasing", weightKey = { "dex_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["AnimalCharmAvoidElementalAilmentsChanceWhilePhasing2"] = { type = "Suffix", affix = "of the Raider", "(16-25)% chance to Avoid Elemental Ailments while Phasing", statOrder = { 4761 }, level = 60, group = "AnimalCharmAvoidElementalAilmentsChanceWhilePhasing", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmOnslaughtOnKillChance1"] = { type = "Prefix", affix = "Raider's", "(10-15)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3246 }, level = 1, group = "AnimalCharmOnslaughtOnKillChance", weightKey = { "dex_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["AnimalCharmOnslaughtOnKillChance2"] = { type = "Prefix", affix = "Raider's", "(16-25)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3246 }, level = 60, group = "AnimalCharmOnslaughtOnKillChance", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmEvasionRatingPerFrenzyCharge1"] = { type = "Suffix", affix = "of the Raider", "(3-5)% increased Evasion Rating per Frenzy Charge", statOrder = { 1439 }, level = 1, group = "AnimalCharmEvasionRatingPerFrenzyCharge", weightKey = { "dex_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["AnimalCharmEvasionRatingPerFrenzyCharge2"] = { type = "Suffix", affix = "of the Raider", "(6-9)% increased Evasion Rating per Frenzy Charge", statOrder = { 1439 }, level = 60, group = "AnimalCharmEvasionRatingPerFrenzyCharge", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmMovementSpeedPerFrenzyCharge"] = { type = "Prefix", affix = "Raider's", "2% increased Movement Speed per Frenzy Charge", statOrder = { 1683 }, level = 70, group = "AnimalCharmMovementSpeedPerFrenzyCharge", weightKey = { "dex_animal_charm", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["AnimalCharmFrenzyOnHItChance1"] = { type = "Prefix", affix = "Raider's", "(3-5)% chance to gain a Frenzy Charge on Hit", statOrder = { 1714 }, level = 45, group = "AnimalCharmFrenzyOnHItChance", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmFrenzyOnHItChance2"] = { type = "Prefix", affix = "Raider's", "(6-8)% chance to gain a Frenzy Charge on Hit", statOrder = { 1714 }, level = 72, group = "AnimalCharmFrenzyOnHItChance", weightKey = { "dex_animal_charm", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["AnimalCharmFlaskChargesEvery3Seconds"] = { type = "Suffix", affix = "of the Pathfinder", "Flasks gain a Charge every 3 seconds", statOrder = { 3341 }, level = 81, group = "AnimalCharmFlaskChargesEvery3Seconds", weightKey = { "dex_animal_charm", "default", }, weightVal = { 20, 0 }, modTags = { }, }, - ["AnimalCharmRemoveBleedOnFlaskUse"] = { type = "Suffix", affix = "of the Pathfinder", "Removes Bleeding when you use a Flask", statOrder = { 3252 }, level = 45, group = "AnimalCharmRemoveBleedOnFlaskUse", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmMagicUtilityFlaskEffect1"] = { type = "Prefix", affix = "Pathfinder's", "Magic Utility Flasks applied to you have (6-10)% increased Effect", statOrder = { 2618 }, level = 70, group = "AnimalCharmMagicUtilityFlaskEffect", weightKey = { "dex_animal_charm", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["AnimalCharmMagicUtilityFlaskEffect2"] = { type = "Prefix", affix = "Pathfinder's", "Magic Utility Flasks applied to you have (11-15)% increased Effect", statOrder = { 2618 }, level = 81, group = "AnimalCharmMagicUtilityFlaskEffect", weightKey = { "dex_animal_charm", "default", }, weightVal = { 50, 0 }, modTags = { }, }, - ["AnimalCharmWitheredOnHitChance1"] = { type = "Prefix", affix = "Pathfinder's", "(6-10)% chance to inflict Withered for 2 seconds on Hit", statOrder = { 4258 }, level = 45, group = "AnimalCharmWitheredOnHitChance", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmWitheredOnHitChance2"] = { type = "Prefix", affix = "Pathfinder's", "(11-15)% chance to inflict Withered for 2 seconds on Hit", statOrder = { 4258 }, level = 72, group = "AnimalCharmWitheredOnHitChance", weightKey = { "dex_animal_charm", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["AnimalCharmRecoverLifeOnFlaskUse1"] = { type = "Suffix", affix = "of the Pathfinder", "Recover (2-3)% of Life when you use a Flask", statOrder = { 4203 }, level = 45, group = "AnimalCharmRecoverLifeOnFlaskUse", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmRecoverLifeOnFlaskUse2"] = { type = "Suffix", affix = "of the Pathfinder", "Recover (4-5)% of Life when you use a Flask", statOrder = { 4203 }, level = 72, group = "AnimalCharmRecoverLifeOnFlaskUse", weightKey = { "dex_animal_charm", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["AnimalCharmWitheredEffect1"] = { type = "Prefix", affix = "Pathfinder's", "(7-13)% increased Effect of Withered", statOrder = { 10090 }, level = 1, group = "AnimalCharmWitheredEffect", weightKey = { "dex_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["AnimalCharmWitheredEffect2"] = { type = "Prefix", affix = "Pathfinder's", "(14-20)% increased Effect of Withered", statOrder = { 10090 }, level = 60, group = "AnimalCharmWitheredEffect", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmFlaskChargesGainedFromEnemiesWithAilments1"] = { type = "Suffix", affix = "of the Pathfinder", "Enemies you Kill that are affected by Elemental Ailments", "grant (15-25)% increased Flask Charges", statOrder = { 4110, 4110.1 }, level = 1, group = "AnimalCharmFlaskChargesGainedFromEnemiesWithAilments", weightKey = { "dex_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["AnimalCharmFlaskChargesGainedFromEnemiesWithAilments2"] = { type = "Suffix", affix = "of the Pathfinder", "Enemies you Kill that are affected by Elemental Ailments", "grant (26-40)% increased Flask Charges", statOrder = { 4110, 4110.1 }, level = 60, group = "AnimalCharmFlaskChargesGainedFromEnemiesWithAilments", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmPhysicalDamageAsRandomElement1"] = { type = "Prefix", affix = "Pathfinder's", "Gain (5-8)% of Physical Damage as Extra Damage of a random Element", statOrder = { 2809 }, level = 1, group = "AnimalCharmPhysicalDamageAsRandomElement", weightKey = { "dex_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["AnimalCharmPhysicalDamageAsRandomElement2"] = { type = "Prefix", affix = "Pathfinder's", "Gain (9-12)% of Physical Damage as Extra Damage of a random Element", statOrder = { 2809 }, level = 60, group = "AnimalCharmPhysicalDamageAsRandomElement", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmMovementSpeedCannotBeBelowBase"] = { type = "Prefix", affix = "Juggernaut's", "Movement Speed cannot be modified to below Base Value", statOrder = { 3104 }, level = 70, group = "AnimalCharmMovementSpeedCannotBeBelowBase", weightKey = { "str_animal_charm", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["AnimalCharmArmourAppliesToElementalDamage1"] = { type = "Suffix", affix = "of the Juggernaut", "2% of Armour applies to Fire, Cold and Lightning Damage taken from Hits", statOrder = { 4648 }, level = 81, group = "AnimalCharmArmourAppliesToElementalDamage", weightKey = { "str_animal_charm", "default", }, weightVal = { 20, 0 }, modTags = { }, }, + ["AnimalCharmArmourAppliesToElementalDamage2"] = { type = "Suffix", affix = "of the Juggernaut", "3% of Armour applies to Fire, Cold and Lightning Damage taken from Hits", statOrder = { 4648 }, level = 83, group = "AnimalCharmArmourAppliesToElementalDamage", weightKey = { "str_animal_charm", "default", }, weightVal = { 10, 0 }, modTags = { }, }, + ["AnimalCharmEnduranceChargeOnStun1"] = { type = "Prefix", affix = "Juggernaut's", "(10-19)% chance to gain an Endurance Charge when you Stun an Enemy", statOrder = { 5584 }, level = 1, group = "AnimalCharmEnduranceChargeOnStun", weightKey = { "str_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["AnimalCharmEnduranceChargeOnStun2"] = { type = "Prefix", affix = "Juggernaut's", "(20-30)% chance to gain an Endurance Charge when you Stun an Enemy", statOrder = { 5584 }, level = 60, group = "AnimalCharmEnduranceChargeOnStun", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmAreaOfEffectPerEnduranceCharge1"] = { type = "Prefix", affix = "Juggernaut's", "(3-4)% increased Area of Effect per Endurance Charge", statOrder = { 4633 }, level = 1, group = "AnimalCharmAreaOfEffectPerEnduranceCharge", weightKey = { "str_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["AnimalCharmAreaOfEffectPerEnduranceCharge2"] = { type = "Prefix", affix = "Juggernaut's", "(5-6)% increased Area of Effect per Endurance Charge", statOrder = { 4633 }, level = 60, group = "AnimalCharmAreaOfEffectPerEnduranceCharge", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmEnchangeChargeWhenHit1"] = { type = "Prefix", affix = "Juggernaut's", "(10-19)% chance to gain an Endurance Charge when you are Hit", statOrder = { 2661 }, level = 1, group = "AnimalCharmEnchangeChargeWhenHit", weightKey = { "str_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["AnimalCharmEnchangeChargeWhenHit2"] = { type = "Prefix", affix = "Juggernaut's", "(20-30)% chance to gain an Endurance Charge when you are Hit", statOrder = { 2661 }, level = 60, group = "AnimalCharmEnchangeChargeWhenHit", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmChaosResistancePerEnduranceCharge1"] = { type = "Suffix", affix = "of the Juggernaut", "+(2-3)% to Chaos Resistance per Endurance Charge", statOrder = { 5636 }, level = 1, group = "AnimalCharmChaosResistancePerEnduranceCharge", weightKey = { "str_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["AnimalCharmChaosResistancePerEnduranceCharge2"] = { type = "Suffix", affix = "of the Juggernaut", "+(4-5)% to Chaos Resistance per Endurance Charge", statOrder = { 5636 }, level = 60, group = "AnimalCharmChaosResistancePerEnduranceCharge", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmLIfeRegenerationRate1"] = { type = "Suffix", affix = "of the Juggernaut", "(10-15)% increased Life Regeneration rate", statOrder = { 1488 }, level = 45, group = "AnimalCharmLIfeRegenerationRate", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmLIfeRegenerationRate2"] = { type = "Suffix", affix = "of the Juggernaut", "(16-20)% increased Life Regeneration rate", statOrder = { 1488 }, level = 72, group = "AnimalCharmLIfeRegenerationRate", weightKey = { "str_animal_charm", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["AnimalCharmTotemTauntEnemiesWhenSummoned"] = { type = "Suffix", affix = "of the Chieftain", "Totems Taunt Enemies around them for 2 seconds when Summoned", statOrder = { 10191 }, level = 45, group = "AnimalCharmTotemTauntEnemiesWhenSummoned", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmTotemRecoup1"] = { type = "Suffix", affix = "of the Chieftain", "Recoup (5-7)% of Damage Taken by your Totems as Life", statOrder = { 9623 }, level = 1, group = "AnimalCharmTotemRecoup", weightKey = { "str_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["AnimalCharmTotemRecoup2"] = { type = "Suffix", affix = "of the Chieftain", "Recoup (8-12)% of Damage Taken by your Totems as Life", statOrder = { 9623 }, level = 60, group = "AnimalCharmTotemRecoup", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmFireExplode"] = { type = "Prefix", affix = "Chieftain's", "Enemies you or your Totems Kill have 1% chance to Explode, dealing 500% of their maximum Life as Fire Damage", statOrder = { 6401 }, level = 70, group = "AnimalCharmFireExplode", weightKey = { "str_animal_charm", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["AnimalCharmAshOnHittingRareUniqueEnemy1"] = { type = "Prefix", affix = "Chieftain's", "(5-10)% chance to Cover Rare or Unique Enemies in Ash for 10 Seconds on Hit", statOrder = { 4595 }, level = 45, group = "AnimalCharmAshOnHittingRareUniqueEnemy", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmAshOnHittingRareUniqueEnemy2"] = { type = "Prefix", affix = "Chieftain's", "(11-20)% chance to Cover Rare or Unique Enemies in Ash for 10 Seconds on Hit", statOrder = { 4595 }, level = 72, group = "AnimalCharmAshOnHittingRareUniqueEnemy", weightKey = { "str_animal_charm", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["AnimalCharmStrengthPercent1"] = { type = "Prefix", affix = "Chieftain's", "(3-5)% increased Strength", statOrder = { 1096 }, level = 1, group = "AnimalCharmStrengthPercent", weightKey = { "str_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["AnimalCharmStrengthPercent2"] = { type = "Prefix", affix = "Chieftain's", "(6-8)% increased Strength", statOrder = { 1096 }, level = 60, group = "AnimalCharmStrengthPercent", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmMaximumFireDamageResistance1"] = { type = "Suffix", affix = "of the Chieftain", "+1% to maximum Fire Resistance", statOrder = { 1534 }, level = 45, group = "AnimalCharmMaximumFireDamageResistance", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmMaximumFireDamageResistance2"] = { type = "Suffix", affix = "of the Chieftain", "+2% to maximum Fire Resistance", statOrder = { 1534 }, level = 72, group = "AnimalCharmMaximumFireDamageResistance", weightKey = { "str_animal_charm", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["AnimalCharmIgniteDurationOnSelf1"] = { type = "Suffix", affix = "of the Chieftain", "(20-30)% reduced Ignite Duration on you", statOrder = { 1786 }, level = 1, group = "AnimalCharmIgniteDurationOnSelf", weightKey = { "str_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["AnimalCharmIgniteDurationOnSelf2"] = { type = "Suffix", affix = "of the Chieftain", "(31-50)% reduced Ignite Duration on you", statOrder = { 1786 }, level = 60, group = "AnimalCharmIgniteDurationOnSelf", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmStunImmuneWith25Rage"] = { type = "Suffix", affix = "of the Berserker", "Cannot be Stunned while you have at least 25 Rage", statOrder = { 9578 }, level = 45, group = "AnimalCharmStunImmuneWith25Rage", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmAddedPhysicalDamageIfCritRecently1"] = { type = "Prefix", affix = "Berserker's", "Adds (5-7) to (14-17) Physical Damage if you've dealt a Critical Strike Recently", statOrder = { 9058 }, level = 1, group = "AnimalCharmAddedPhysicalDamageIfCritRecently", weightKey = { "str_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["AnimalCharmAddedPhysicalDamageIfCritRecently2"] = { type = "Prefix", affix = "Berserker's", "Adds (8-12) to (18-22) Physical Damage if you've dealt a Critical Strike Recently", statOrder = { 9058 }, level = 60, group = "AnimalCharmAddedPhysicalDamageIfCritRecently", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmMaximumRage1"] = { type = "Prefix", affix = "Berserker's", "+(2-3) to Maximum Rage", statOrder = { 9572 }, level = 1, group = "AnimalCharmMaximumRage", weightKey = { "str_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["AnimalCharmMaximumRage2"] = { type = "Prefix", affix = "Berserker's", "+(4-5) to Maximum Rage", statOrder = { 9572 }, level = 60, group = "AnimalCharmMaximumRage", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmWarcriesGrantRage1"] = { type = "Prefix", affix = "Berserker's", "Warcries grant (2-3) Rage per 5 Power if you have less than 25 Rage", statOrder = { 4965 }, level = 1, group = "AnimalCharmWarcriesGrantRage", weightKey = { "str_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["AnimalCharmWarcriesGrantRage2"] = { type = "Prefix", affix = "Berserker's", "Warcries grant (4-5) Rage per 5 Power if you have less than 25 Rage", statOrder = { 4965 }, level = 60, group = "AnimalCharmWarcriesGrantRage", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmLeechPercentIsInstant1"] = { type = "Suffix", affix = "of the Berserker", "(3-5)% of Leech is Instant", statOrder = { 7199 }, level = 45, group = "AnimalCharmLeechPercentIsInstant", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmLeechPercentIsInstant2"] = { type = "Suffix", affix = "of the Berserker", "(6-8)% of Leech is Instant", statOrder = { 7199 }, level = 72, group = "AnimalCharmLeechPercentIsInstant", weightKey = { "str_animal_charm", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["AnimalCharmLeechIfKilledRecently1"] = { type = "Suffix", affix = "of the Berserker", "1% of Attack Damage Leeched as Life and Mana if you've Killed Recently", statOrder = { 7206 }, level = 1, group = "AnimalCharmLeechIfKilledRecently", weightKey = { "str_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["AnimalCharmLeechIfKilledRecently2"] = { type = "Suffix", affix = "of the Berserker", "2% of Attack Damage Leeched as Life and Mana if you've Killed Recently", statOrder = { 7206 }, level = 60, group = "AnimalCharmLeechIfKilledRecently", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmCorpseExplodeOnWarcry1"] = { type = "Prefix", affix = "Berserker's", "Nearby corpses Explode when you Warcry, dealing (3-4)% of their Life as Physical Damage", statOrder = { 9245 }, level = 70, group = "AnimalCharmCorpseExplodeOnWarcry", weightKey = { "str_animal_charm", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["AnimalCharmCorpseExplodeOnWarcry2"] = { type = "Prefix", affix = "Berserker's", "Nearby corpses Explode when you Warcry, dealing (5-6)% of their Life as Physical Damage", statOrder = { 9245 }, level = 81, group = "AnimalCharmCorpseExplodeOnWarcry", weightKey = { "str_animal_charm", "default", }, weightVal = { 50, 0 }, modTags = { }, }, + ["AnimalCharmStunImmuneWhileFortified"] = { type = "Suffix", affix = "of the Champion", "Cannot be Stunned while Fortified", statOrder = { 5318 }, level = 70, group = "AnimalCharmStunImmuneWhileFortified", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 50, 50, 0 }, modTags = { }, }, + ["AnimalCharmTauntOnHitChance1"] = { type = "Prefix", affix = "Champion's", "(10-19)% chance to Taunt on Hit", statOrder = { 3338 }, level = 1, group = "AnimalCharmTauntOnHitChance", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["AnimalCharmTauntOnHitChance2"] = { type = "Prefix", affix = "Champion's", "(20-30)% chance to Taunt on Hit", statOrder = { 3338 }, level = 60, group = "AnimalCharmTauntOnHitChance", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmBannersNoReservation"] = { type = "Prefix", affix = "Champion's", "Banner Skills have no Reservation", statOrder = { 4875 }, level = 45, group = "AnimalCharmBannersNoReservation", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmRecoverBannerStagesOnPlacingBanner1"] = { type = "Suffix", affix = "of the Champion", "When you leave your Banner's Area, recover (10-15)% of the Valour consumed for that Banner", statOrder = { 9349 }, level = 1, group = "AnimalCharmRecoverBannerStagesOnPlacingBanner", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["AnimalCharmRecoverBannerStagesOnPlacingBanner2"] = { type = "Suffix", affix = "of the Champion", "When you leave your Banner's Area, recover (16-25)% of the Valour consumed for that Banner", statOrder = { 9349 }, level = 60, group = "AnimalCharmRecoverBannerStagesOnPlacingBanner", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmGainAdrenalineOnReachingLowLife"] = { type = "Prefix", affix = "Champion's", "Gain Adrenaline for 4 seconds when you reach Low Life", statOrder = { 6600 }, level = 70, group = "AnimalCharmGainAdrenalineOnReachingLowLife", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 50, 50, 0 }, modTags = { }, }, + ["AnimalCharmImpaleLastsForExtraHits"] = { type = "Prefix", affix = "Champion's", "Impales you inflict last 1 additional Hit", statOrder = { 7120 }, level = 81, group = "AnimalCharmImpaleLastsForExtraHits", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 10, 10, 0 }, modTags = { }, }, + ["AnimalCharmFortifyOnMeleeHitChance1"] = { type = "Suffix", affix = "of the Champion", "Melee Hits have (5-10)% chance to Fortify", statOrder = { 2173 }, level = 45, group = "AnimalCharmFortifyOnMeleeHitChance", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmFortifyOnMeleeHitChance2"] = { type = "Suffix", affix = "of the Champion", "Melee Hits have (11-20)% chance to Fortify", statOrder = { 2173 }, level = 72, group = "AnimalCharmFortifyOnMeleeHitChance", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 125, 125, 0 }, modTags = { }, }, + ["AnimalCharmBleedExplode1"] = { type = "Prefix", affix = "Gladiator's", "Bleeding Enemies you Kill Explode, dealing (2-3)% of", "their Maximum Life as Physical Damage", statOrder = { 3389, 3389.1 }, level = 70, group = "AnimalCharmBleedExplode", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 50, 50, 0 }, modTags = { }, }, + ["AnimalCharmBleedExplode2"] = { type = "Prefix", affix = "Gladiator's", "Bleeding Enemies you Kill Explode, dealing (4-5)% of", "their Maximum Life as Physical Damage", statOrder = { 3389, 3389.1 }, level = 81, group = "AnimalCharmBleedExplode", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 25, 25, 0 }, modTags = { }, }, + ["AnimalCharmBlindOnHitVsBleedingEnemies1"] = { type = "Prefix", affix = "Gladiator's", "Attack Hits against Bleeding Enemies have (10-19)% chance to Blind", statOrder = { 4738 }, level = 1, group = "AnimalCharmBlindOnHitVsBleedingEnemies", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["AnimalCharmBlindOnHitVsBleedingEnemies2"] = { type = "Prefix", affix = "Gladiator's", "Attack Hits against Bleeding Enemies have (20-30)% chance to Blind", statOrder = { 4738 }, level = 60, group = "AnimalCharmBlindOnHitVsBleedingEnemies", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmMaimOnHitVsBlindedEnemies1"] = { type = "Prefix", affix = "Gladiator's", "Attack Hits against Blinded Enemies have (10-19)% chance to Maim", statOrder = { 4739 }, level = 1, group = "AnimalCharmMaimOnHitVsBlindedEnemies", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["AnimalCharmMaimOnHitVsBlindedEnemies2"] = { type = "Prefix", affix = "Gladiator's", "Attack Hits against Blinded Enemies have (20-30)% chance to Maim", statOrder = { 4739 }, level = 60, group = "AnimalCharmMaimOnHitVsBlindedEnemies", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmStunImmuneAgainstBlockedHits"] = { type = "Suffix", affix = "of the Gladiator", "Cannot be Stunned by Hits you Block", statOrder = { 5309 }, level = 45, group = "AnimalCharmStunImmuneAgainstBlockedHits", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmMaximumBlock1"] = { type = "Suffix", affix = "of the Gladiator", "+(1-2)% to maximum Chance to Block Attack Damage", statOrder = { 1897 }, level = 45, group = "AnimalCharmMaximumBlock", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmMaximumBlock2"] = { type = "Suffix", affix = "of the Gladiator", "+3% to maximum Chance to Block Attack Damage", statOrder = { 1897 }, level = 72, group = "AnimalCharmMaximumBlock", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 125, 125, 0 }, modTags = { }, }, + ["AnimalCharmOverwhelmIfBlockedinPast20Seconds"] = { type = "Prefix", affix = "Gladiator's", "Hits ignore Enemy Physical Damage Reduction if you've Blocked in the past 20 seconds", statOrder = { 7036 }, level = 1, group = "AnimalCharmOverwhelmIfBlockedinPast20Seconds", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["AnimalCharmArmourAndEvasionPerBlock1"] = { type = "Suffix", affix = "of the Gladiator", "+(3-4) to Armour and Evasion Rating per 1% Chance to Block Attack Damage", statOrder = { 4657 }, level = 1, group = "AnimalCharmArmourAndEvasionPerBlock", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["AnimalCharmArmourAndEvasionPerBlock2"] = { type = "Suffix", affix = "of the Gladiator", "+(5-6) to Armour and Evasion Rating per 1% Chance to Block Attack Damage", statOrder = { 4657 }, level = 60, group = "AnimalCharmArmourAndEvasionPerBlock", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmAttackBlock1"] = { type = "Suffix", affix = "of the Gladiator", "+(3-4)% Chance to Block Attack Damage", statOrder = { 2367 }, level = 1, group = "AnimalCharmAttackBlock", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["AnimalCharmAttackBlock2"] = { type = "Suffix", affix = "of the Gladiator", "+(5-6)% Chance to Block Attack Damage", statOrder = { 2367 }, level = 60, group = "AnimalCharmAttackBlock", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmAttackSpeedOnKillingRareUnique1"] = { type = "Prefix", affix = "Slayer's", "Gain (4-7)% increased Attack Speed for 20 seconds when you Kill a Rare or Unique Enemy", statOrder = { 6621 }, level = 1, group = "AnimalCharmAttackSpeedOnKillingRareUnique", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["AnimalCharmAttackSpeedOnKillingRareUnique2"] = { type = "Prefix", affix = "Slayer's", "Gain (8-12)% increased Attack Speed for 20 seconds when you Kill a Rare or Unique Enemy", statOrder = { 6621 }, level = 60, group = "AnimalCharmAttackSpeedOnKillingRareUnique", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmPhysicalReflectImmune"] = { type = "Suffix", affix = "of the Slayer", "Cannot take Reflected Physical Damage", statOrder = { 5339 }, level = 45, group = "AnimalCharmPhysicalReflectImmune", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmStunImmuneWhileLeeching"] = { type = "Suffix", affix = "of the Slayer", "Cannot be Stunned while Leeching", statOrder = { 3120 }, level = 70, group = "AnimalCharmStunImmuneWhileLeeching", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 50, 50, 0 }, modTags = { }, }, + ["AnimalCharmUnaffectedbyBleedingWhileLeeching"] = { type = "Suffix", affix = "of the Slayer", "You are Unaffected by Bleeding while Leeching", statOrder = { 10237 }, level = 70, group = "AnimalCharmUnaffectedbyBleedingWhileLeeching", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 50, 50, 0 }, modTags = { }, }, + ["AnimalCharmOverkillLeech1"] = { type = "Suffix", affix = "of the Slayer", "(4-7)% of Overkill Damage is Leeched as Life", statOrder = { 3117 }, level = 1, group = "AnimalCharmOverkillLeech", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["AnimalCharmOverkillLeech2"] = { type = "Suffix", affix = "of the Slayer", "(8-12)% of Overkill Damage is Leeched as Life", statOrder = { 3117 }, level = 60, group = "AnimalCharmOverkillLeech", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmMaximumAmountPerLifeLeech1"] = { type = "Prefix", affix = "Slayer's", "(10-20)% increased Maximum Recovery per Life Leech", statOrder = { 1635 }, level = 45, group = "AnimalCharmMaximumAmountPerLifeLeech", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmMaximumAmountPerLifeLeech2"] = { type = "Prefix", affix = "Slayer's", "(21-30)% increased Maximum Recovery per Life Leech", statOrder = { 1635 }, level = 72, group = "AnimalCharmMaximumAmountPerLifeLeech", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 125, 125, 0 }, modTags = { }, }, + ["AnimalCharmAreaOfEffectIfKilledRecently1"] = { type = "Prefix", affix = "Slayer's", "(4-7)% increased Area of Effect if you've Killed Recently", statOrder = { 4126 }, level = 1, group = "AnimalCharmAreaOfEffectIfKilledRecently", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["AnimalCharmAreaOfEffectIfKilledRecently2"] = { type = "Prefix", affix = "Slayer's", "(8-12)% increased Area of Effect if you've Killed Recently", statOrder = { 4126 }, level = 60, group = "AnimalCharmAreaOfEffectIfKilledRecently", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmCullingStrike"] = { type = "Prefix", affix = "Slayer's", "Culling Strike", statOrder = { 1948 }, level = 45, group = "AnimalCharmCullingStrike", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmStrengthAndIntelligence1"] = { type = "Suffix", affix = "of the Inquisitor", "+(20-30) to Strength and Intelligence", statOrder = { 388 }, level = 1, group = "AnimalCharmStrengthAndIntelligence", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["AnimalCharmStrengthAndIntelligence2"] = { type = "Suffix", affix = "of the Inquisitor", "+(31-40) to Strength and Intelligence", statOrder = { 388 }, level = 60, group = "AnimalCharmStrengthAndIntelligence", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmCriticalStrikesNonDamagingAilmentEffect1"] = { type = "Prefix", affix = "Inquisitor's", "(20-30)% increased Effect of non-Damaging Ailments you inflict with Critical Strikes", statOrder = { 9300 }, level = 1, group = "AnimalCharmCriticalStrikesNonDamagingAilmentEffect", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["AnimalCharmCriticalStrikesNonDamagingAilmentEffect2"] = { type = "Prefix", affix = "Inquisitor's", "(31-40)% increased Effect of non-Damaging Ailments you inflict with Critical Strikes", statOrder = { 9300 }, level = 60, group = "AnimalCharmCriticalStrikesNonDamagingAilmentEffect", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmConsecratedGroundLingerDuration"] = { type = "Suffix", affix = "of the Inquisitor", "Effects of Consecrated Ground you create Linger for 2 seconds", statOrder = { 10465 }, level = 70, group = "AnimalCharmConsecratedGroundLingerDuration", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 50, 50, 0 }, modTags = { }, }, + ["AnimalCharmConsecratedGroundDamageTaken1"] = { type = "Prefix", affix = "Inquisitor's", "Consecrated Ground you create applies (5-6)% increased Damage taken to Enemies", statOrder = { 5746 }, level = 45, group = "AnimalCharmConsecratedGroundDamageTaken", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmConsecratedGroundDamageTaken2"] = { type = "Prefix", affix = "Inquisitor's", "Consecrated Ground you create applies (7-10)% increased Damage taken to Enemies", statOrder = { 5746 }, level = 72, group = "AnimalCharmConsecratedGroundDamageTaken", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 125, 125, 0 }, modTags = { }, }, + ["AnimalCharmElementalPenetration1"] = { type = "Prefix", affix = "Inquisitor's", "Damage Penetrates (3-4)% of Enemy Elemental Resistances", statOrder = { 3467 }, level = 1, group = "AnimalCharmElementalPenetration", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["AnimalCharmElementalPenetration2"] = { type = "Prefix", affix = "Inquisitor's", "Damage Penetrates (5-6)% of Enemy Elemental Resistances", statOrder = { 3467 }, level = 60, group = "AnimalCharmElementalPenetration", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmConsecratedGroundVsRareUnique1"] = { type = "Suffix", affix = "of the Inquisitor", "(10-19)% chance to create Consecrated Ground when you Hit a Rare or Unique Enemy, lasting 8 seconds", statOrder = { 5800 }, level = 1, group = "AnimalCharmConsecratedGroundVsRareUnique", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["AnimalCharmConsecratedGroundVsRareUnique2"] = { type = "Suffix", affix = "of the Inquisitor", "(20-30)% chance to create Consecrated Ground when you Hit a Rare or Unique Enemy, lasting 8 seconds", statOrder = { 5800 }, level = 60, group = "AnimalCharmConsecratedGroundVsRareUnique", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmCriticalStrikeChanceIfNotCritRecently1"] = { type = "Prefix", affix = "Inquisitor's", "(50-70)% increased Critical Strike Chance if you haven't dealt a Critical Strike Recently", statOrder = { 5824 }, level = 1, group = "AnimalCharmCriticalStrikeChanceIfNotCritRecently", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["AnimalCharmCriticalStrikeChanceIfNotCritRecently2"] = { type = "Prefix", affix = "Inquisitor's", "(71-100)% increased Critical Strike Chance if you haven't dealt a Critical Strike Recently", statOrder = { 5824 }, level = 60, group = "AnimalCharmCriticalStrikeChanceIfNotCritRecently", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmDamageRemovedFromManaBeforeLife1"] = { type = "Suffix", affix = "of the Hierophant", "(1-2)% of Damage is taken from Mana before Life", statOrder = { 2607 }, level = 70, group = "AnimalCharmDamageRemovedFromManaBeforeLife", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 50, 50, 0 }, modTags = { }, }, + ["AnimalCharmDamageRemovedFromManaBeforeLife2"] = { type = "Suffix", affix = "of the Hierophant", "3% of Damage is taken from Mana before Life", statOrder = { 2607 }, level = 81, group = "AnimalCharmDamageRemovedFromManaBeforeLife", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 25, 25, 0 }, modTags = { }, }, + ["AnimalCharmManaReservationEfficiency1"] = { type = "Prefix", affix = "Hierophant's", "(4-7)% increased Mana Reservation Efficiency of Skills", statOrder = { 2137 }, level = 45, group = "AnimalCharmManaReservationEfficiency", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmManaReservationEfficiency2"] = { type = "Prefix", affix = "Hierophant's", "(8-12)% increased Mana Reservation Efficiency of Skills", statOrder = { 2137 }, level = 72, group = "AnimalCharmManaReservationEfficiency", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 125, 125, 0 }, modTags = { }, }, + ["AnimalCharmManaToAddAsExtraEnergyShield1"] = { type = "Suffix", affix = "of the Hierophant", "Gain (2-3)% of Maximum Mana as Extra Maximum Energy Shield", statOrder = { 2084 }, level = 1, group = "AnimalCharmManaToAddAsExtraEnergyShield", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["AnimalCharmManaToAddAsExtraEnergyShield2"] = { type = "Suffix", affix = "of the Hierophant", "Gain (4-5)% of Maximum Mana as Extra Maximum Energy Shield", statOrder = { 2084 }, level = 60, group = "AnimalCharmManaToAddAsExtraEnergyShield", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmArcaneSurgeOnHit"] = { type = "Prefix", affix = "Hierophant's", "Gain Arcane Surge when you or your Totems Hit an Enemy with a Spell", statOrder = { 6616 }, level = 70, group = "AnimalCharmArcaneSurgeOnHit", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 50, 50, 0 }, modTags = { }, }, + ["AnimalCharmNonDamagingAilmentEffectOnSelfWithArcaneSurge1"] = { type = "Prefix", affix = "Hierophant's", "Non-Damaging Ailments have (20-30)% reduced Effect on you while you have Arcane Surge", statOrder = { 4238 }, level = 1, group = "AnimalCharmNonDamagingAilmentEffectOnSelfWithArcaneSurge", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["AnimalCharmNonDamagingAilmentEffectOnSelfWithArcaneSurge2"] = { type = "Prefix", affix = "Hierophant's", "Non-Damaging Ailments have (31-40)% reduced Effect on you while you have Arcane Surge", statOrder = { 4238 }, level = 60, group = "AnimalCharmNonDamagingAilmentEffectOnSelfWithArcaneSurge", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmDamageRemovedFromTotemLifeBeforeSelf1"] = { type = "Suffix", affix = "of the Hierophant", "(1-2)% of Damage from Hits is taken from your nearest Totem's Life before you", statOrder = { 5989 }, level = 1, group = "AnimalCharmDamageRemovedFromTotemLifeBeforeSelf", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["AnimalCharmDamageRemovedFromTotemLifeBeforeSelf2"] = { type = "Suffix", affix = "of the Hierophant", "3% of Damage from Hits is taken from your nearest Totem's Life before you", statOrder = { 5989 }, level = 60, group = "AnimalCharmDamageRemovedFromTotemLifeBeforeSelf", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmMinimumEnduranceAndPowerCharges"] = { type = "Suffix", affix = "of the Hierophant", "+1 to Minimum Endurance Charges", "+1 to Minimum Power Charges", statOrder = { 1714, 1724 }, level = 70, group = "AnimalCharmMinimumEnduranceAndPowerCharges", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 50, 50, 0 }, modTags = { }, }, + ["AnimalCharmChanceToSummonTwoTotems1"] = { type = "Prefix", affix = "Hierophant's", "Skills that Summon a Totem have (20-30)% chance to Summon two Totems instead of one", statOrder = { 5620 }, level = 1, group = "AnimalCharmChanceToSummonTwoTotems", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["AnimalCharmChanceToSummonTwoTotems2"] = { type = "Prefix", affix = "Hierophant's", "Skills that Summon a Totem have (31-50)% chance to Summon two Totems instead of one", statOrder = { 5620 }, level = 60, group = "AnimalCharmChanceToSummonTwoTotems", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmBlockChanceIfAttackedRecently1"] = { type = "Suffix", affix = "of the Guardian", "If you've Attacked Recently, you and nearby Allies have +(4-5)% Chance to Block Attack Damage", statOrder = { 10415 }, level = 1, group = "AnimalCharmBlockChanceIfAttackedRecently", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["AnimalCharmBlockChanceIfAttackedRecently2"] = { type = "Suffix", affix = "of the Guardian", "If you've Attacked Recently, you and nearby Allies have +(6-8)% Chance to Block Attack Damage", statOrder = { 10415 }, level = 60, group = "AnimalCharmBlockChanceIfAttackedRecently", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmSpellBlockChanceIfCastSpellRecently1"] = { type = "Suffix", affix = "of the Guardian", "If you've Cast a Spell Recently, you and nearby Allies have +(4-5)% Chance to Block Spell Damage", statOrder = { 10416 }, level = 1, group = "AnimalCharmSpellBlockChanceIfCastSpellRecently", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["AnimalCharmSpellBlockChanceIfCastSpellRecently2"] = { type = "Suffix", affix = "of the Guardian", "If you've Cast a Spell Recently, you and nearby Allies have +(6-8)% Chance to Block Spell Damage", statOrder = { 10416 }, level = 60, group = "AnimalCharmSpellBlockChanceIfCastSpellRecently", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmRemoveCursesAndAilmentsEvery10seconds"] = { type = "Suffix", affix = "of the Guardian", "Every 4 seconds, remove Curses and Elemental Ailments from you", statOrder = { 3693 }, level = 45, group = "AnimalCharmRemoveCursesAndAilmentsEvery10seconds", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmReservedManaGrantedAsArmour1"] = { type = "Prefix", affix = "Guardian's", "Grants Armour equal to (3-4)% of your Reserved Mana to you and nearby Allies", statOrder = { 3691 }, level = 45, group = "AnimalCharmReservedManaGrantedAsArmour", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmReservedManaGrantedAsArmour2"] = { type = "Prefix", affix = "Guardian's", "Grants Armour equal to (5-6)% of your Reserved Mana to you and nearby Allies", statOrder = { 3691 }, level = 72, group = "AnimalCharmReservedManaGrantedAsArmour", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 125, 125, 0 }, modTags = { }, }, + ["AnimalCharmEnemiesInLinkBeamCannotInflictElementalAilments"] = { type = "Suffix", affix = "of the Guardian", "Enemies in your Link Beams cannot apply Elemental Ailments", statOrder = { 7359 }, level = 45, group = "AnimalCharmEnemiesInLinkBeamCannotInflictElementalAilments", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmLifeRegenerationForASecondEvery10Seconds1"] = { type = "Prefix", affix = "Guardian's", "Every 4 seconds, Regenerate 10% of Life over one second", statOrder = { 3694 }, level = 1, group = "AnimalCharmLifeRegenerationForASecondEvery10Seconds", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["AnimalCharmLifeRegenerationForASecondEvery10Seconds2"] = { type = "Prefix", affix = "Guardian's", "Every 4 seconds, Regenerate 20% of Life over one second", statOrder = { 3694 }, level = 60, group = "AnimalCharmLifeRegenerationForASecondEvery10Seconds", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmNearbyEnemiesCannotGainCharges"] = { type = "Prefix", affix = "Guardian's", "Nearby Enemies cannot gain Power, Frenzy or Endurance Charges", statOrder = { 3689 }, level = 45, group = "AnimalCharmNearbyEnemiesCannotGainCharges", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmNearbyAlliesHaveOnslaughtIfYouHaveAtLeast5Nearby"] = { type = "Prefix", affix = "Guardian's", "While there are at least five nearby Allies, you and nearby Allies have Onslaught", statOrder = { 6800 }, level = 45, group = "AnimalCharmNearbyAlliesHaveOnslaughtIfYouHaveAtLeast5Nearby", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmExposureExtraResistance1"] = { type = "Prefix", affix = "Elementalist's", "Exposure you inflict applies an extra -(5-4)% to the affected Resistance", statOrder = { 6408 }, level = 1, group = "AnimalCharmExposureExtraResistance", weightKey = { "int_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["AnimalCharmExposureExtraResistance2"] = { type = "Prefix", affix = "Elementalist's", "Exposure you inflict applies an extra -(7-6)% to the affected Resistance", statOrder = { 6408 }, level = 60, group = "AnimalCharmExposureExtraResistance", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmAllDamageCanIgnite"] = { type = "Prefix", affix = "Elementalist's", "All Damage can Ignite", statOrder = { 4526 }, level = 81, group = "AnimalCharmAllDamageCanIgnite", weightKey = { "int_animal_charm", "default", }, weightVal = { 20, 0 }, modTags = { }, }, + ["AnimalCharmShockMinimumDamageIncrease1"] = { type = "Prefix", affix = "Elementalist's", "Shocks from your Hits always increase Damage taken by at least (5-7)%", statOrder = { 4348 }, level = 45, group = "AnimalCharmShockMinimumDamageIncrease", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmShockMinimumDamageIncrease2"] = { type = "Prefix", affix = "Elementalist's", "Shocks from your Hits always increase Damage taken by at least (8-10)%", statOrder = { 4348 }, level = 72, group = "AnimalCharmShockMinimumDamageIncrease", weightKey = { "int_animal_charm", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["AnimalCharmChillMinimumSlow1"] = { type = "Suffix", affix = "of the Elementalist", "Chills from your Hits always reduce Action Speed by at least (3-4)%", statOrder = { 4346 }, level = 45, group = "AnimalCharmChillMinimumSlow", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmChillMinimumSlow2"] = { type = "Suffix", affix = "of the Elementalist", "Chills from your Hits always reduce Action Speed by at least (5-6)%", statOrder = { 4346 }, level = 72, group = "AnimalCharmChillMinimumSlow", weightKey = { "int_animal_charm", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["AnimalCharmGolemBuffEffect1"] = { type = "Suffix", affix = "of the Elementalist", "(15-20)% increased Effect of Buffs granted by your Golems", statOrder = { 6769 }, level = 1, group = "AnimalCharmGolemBuffEffect", weightKey = { "int_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["AnimalCharmGolemBuffEffect2"] = { type = "Suffix", affix = "of the Elementalist", "(21-35)% increased Effect of Buffs granted by your Golems", statOrder = { 6769 }, level = 60, group = "AnimalCharmGolemBuffEffect", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmIgniteFreezeShockChance1"] = { type = "Prefix", affix = "Elementalist's", "(10-15)% chance to Freeze, Shock and Ignite", statOrder = { 2711 }, level = 1, group = "AnimalCharmIgniteFreezeShockChance", weightKey = { "int_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["AnimalCharmIgniteFreezeShockChance2"] = { type = "Prefix", affix = "Elementalist's", "(16-25)% chance to Freeze, Shock and Ignite", statOrder = { 2711 }, level = 60, group = "AnimalCharmIgniteFreezeShockChance", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmElementalReflectImmune"] = { type = "Suffix", affix = "of the Elementalist", "Cannot take Reflected Elemental Damage", statOrder = { 5338 }, level = 45, group = "AnimalCharmElementalReflectImmune", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmIgnoreHexproofEnemies"] = { type = "Prefix", affix = "Occultist's", "Your Hexes can affect Hexproof Enemies", statOrder = { 2509 }, level = 45, group = "AnimalCharmIgnoreHexproofEnemies", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmChaosExplode1"] = { type = "Prefix", affix = "Occultist's", "Cursed Enemies you or your Minions Kill have a (6-10)% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage", statOrder = { 3214 }, level = 70, group = "AnimalCharmChaosExplode", weightKey = { "int_animal_charm", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["AnimalCharmChaosExplode2"] = { type = "Prefix", affix = "Occultist's", "Cursed Enemies you or your Minions Kill have a (11-15)% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage", statOrder = { 3214 }, level = 81, group = "AnimalCharmChaosExplode", weightKey = { "int_animal_charm", "default", }, weightVal = { 50, 0 }, modTags = { }, }, + ["AnimalCharmAreaofEffectPerPowerCharge1"] = { type = "Prefix", affix = "Occultist's", "(2-3)% increased Area of Effect per Power Charge", statOrder = { 2038 }, level = 1, group = "AnimalCharmAreaofEffectPerPowerCharge", weightKey = { "int_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["AnimalCharmAreaofEffectPerPowerCharge2"] = { type = "Prefix", affix = "Occultist's", "4% increased Area of Effect per Power Charge", statOrder = { 2038 }, level = 60, group = "AnimalCharmAreaofEffectPerPowerCharge", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmCurseEffect1"] = { type = "Prefix", affix = "Occultist's", "(3-5)% increased Effect of your Curses", statOrder = { 2505 }, level = 1, group = "AnimalCharmCurseEffect", weightKey = { "int_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["AnimalCharmCurseEffect2"] = { type = "Prefix", affix = "Occultist's", "(6-8)% increased Effect of your Curses", statOrder = { 2505 }, level = 60, group = "AnimalCharmCurseEffect", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmNearbyEnemiesAreChilled"] = { type = "Suffix", affix = "of the Occultist", "Nearby Enemies are Chilled", statOrder = { 9248 }, level = 70, group = "AnimalCharmNearbyEnemiesAreChilled", weightKey = { "int_animal_charm", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["AnimalCharmEnergyShieldRegeneration1"] = { type = "Suffix", affix = "of the Occultist", "Regenerate (1-1.5)% of Energy Shield per second", statOrder = { 2554 }, level = 1, group = "AnimalCharmEnergyShieldRegeneration", weightKey = { "int_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["AnimalCharmEnergyShieldRegeneration2"] = { type = "Suffix", affix = "of the Occultist", "Regenerate (2-3)% of Energy Shield per second", statOrder = { 2554 }, level = 60, group = "AnimalCharmEnergyShieldRegeneration", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmSpellHinderOnHitChance1"] = { type = "Suffix", affix = "of the Occultist", "(10-19)% chance to Hinder Enemies on Hit with Spells", statOrder = { 9972 }, level = 1, group = "AnimalCharmSpellHinderOnHitChance", weightKey = { "int_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["AnimalCharmSpellHinderOnHitChance2"] = { type = "Suffix", affix = "of the Occultist", "(20-30)% chance to Hinder Enemies on Hit with Spells", statOrder = { 9972 }, level = 60, group = "AnimalCharmSpellHinderOnHitChance", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmMinionUnholyMightChance1"] = { type = "Prefix", affix = "Necromancer's", "Minions have (10-19)% chance to gain Unholy Might for 4 seconds on Kill", statOrder = { 3287 }, level = 1, group = "AnimalCharmMinionUnholyMightChance", weightKey = { "int_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["AnimalCharmMinionUnholyMightChance2"] = { type = "Prefix", affix = "Necromancer's", "Minions have (20-30)% chance to gain Unholy Might for 4 seconds on Kill", statOrder = { 3287 }, level = 60, group = "AnimalCharmMinionUnholyMightChance", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmOfferingEffect1"] = { type = "Prefix", affix = "Necromancer's", "Your Offerings have (15-20)% increased Effect on you", statOrder = { 1082 }, level = 1, group = "AnimalCharmOfferingEffect", weightKey = { "int_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["AnimalCharmOfferingEffect2"] = { type = "Prefix", affix = "Necromancer's", "Your Offerings have (21-30)% increased Effect on you", statOrder = { 1082 }, level = 60, group = "AnimalCharmOfferingEffect", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmRegenerateManaOnConsumeCorpse1"] = { type = "Suffix", affix = "of the Necromancer", "Regenerate (2-3)% of Mana over 2 seconds when you Consume a corpse", statOrder = { 9683 }, level = 1, group = "AnimalCharmRegenerateManaOnConsumeCorpse", weightKey = { "int_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["AnimalCharmRegenerateManaOnConsumeCorpse2"] = { type = "Suffix", affix = "of the Necromancer", "Regenerate (4-5)% of Mana over 2 seconds when you Consume a corpse", statOrder = { 9683 }, level = 60, group = "AnimalCharmRegenerateManaOnConsumeCorpse", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmRegenerateEnergyShieldOnConsumeCorpse1"] = { type = "Suffix", affix = "of the Necromancer", "Regenerate (2-3)% of Energy Shield over 2 seconds when you Consume a corpse", statOrder = { 9682 }, level = 1, group = "AnimalCharmRegenerateEnergyShieldOnConsumeCorpse", weightKey = { "int_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["AnimalCharmRegenerateEnergyShieldOnConsumeCorpse2"] = { type = "Suffix", affix = "of the Necromancer", "Regenerate (4-5)% of Energy Shield over 2 seconds when you Consume a corpse", statOrder = { 9682 }, level = 60, group = "AnimalCharmRegenerateEnergyShieldOnConsumeCorpse", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmElementalResistancesForAuraAffectedAllies1"] = { type = "Suffix", affix = "of the Necromancer", "You and nearby Allies have +(10-14)% to Elemental Resistances", statOrder = { 3978 }, level = 1, group = "AnimalCharmElementalResistancesForAuraAffectedAllies", weightKey = { "int_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["AnimalCharmElementalResistancesForAuraAffectedAllies2"] = { type = "Suffix", affix = "of the Necromancer", "You and nearby Allies have +(15-20)% to Elemental Resistances", statOrder = { 3978 }, level = 60, group = "AnimalCharmElementalResistancesForAuraAffectedAllies", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmMinionPhysicalDamageBasedOffHelmetEnergyShield1"] = { type = "Prefix", affix = "Necromancer's", "Minions gain Added Physical Damage equal to (3-5)% of Maximum Energy Shield on your Equipped Helmet", statOrder = { 10467 }, level = 45, group = "AnimalCharmMinionPhysicalDamageBasedOffHelmetEnergyShield", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmMinionPhysicalDamageBasedOffHelmetEnergyShield2"] = { type = "Prefix", affix = "Necromancer's", "Minions gain Added Physical Damage equal to (6-10)% of Maximum Energy Shield on your Equipped Helmet", statOrder = { 10467 }, level = 72, group = "AnimalCharmMinionPhysicalDamageBasedOffHelmetEnergyShield", weightKey = { "int_animal_charm", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["AnimalCharmCorpseLife1"] = { type = "Prefix", affix = "Necromancer's", "Corpses you Spawn have (5-10)% increased Maximum Life", statOrder = { 8976 }, level = 45, group = "AnimalCharmCorpseLife", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmCorpseLife2"] = { type = "Prefix", affix = "Necromancer's", "Corpses you Spawn have (11-20)% increased Maximum Life", statOrder = { 8976 }, level = 72, group = "AnimalCharmCorpseLife", weightKey = { "int_animal_charm", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["AnimalCharmMinionPhysicalDamageReduction1"] = { type = "Suffix", affix = "of the Necromancer", "Minions have (5-8)% additional Physical Damage Reduction", statOrder = { 2183 }, level = 1, group = "AnimalCharmMinionPhysicalDamageReduction", weightKey = { "int_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["AnimalCharmMinionPhysicalDamageReduction2"] = { type = "Suffix", affix = "of the Necromancer", "Minions have (9-12)% additional Physical Damage Reduction", statOrder = { 2183 }, level = 60, group = "AnimalCharmMinionPhysicalDamageReduction", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmPowerChargeOnCriticalStrike1"] = { type = "Prefix", affix = "Assassin's", "(10-15)% chance to gain a Power Charge on Critical Strike", statOrder = { 1741 }, level = 1, group = "AnimalCharmPowerChargeOnCriticalStrike", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["AnimalCharmPowerChargeOnCriticalStrike2"] = { type = "Prefix", affix = "Assassin's", "(16-25)% chance to gain a Power Charge on Critical Strike", statOrder = { 1741 }, level = 60, group = "AnimalCharmPowerChargeOnCriticalStrike", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmCriticalStrikeMultiplierPerPowerCharge1"] = { type = "Prefix", affix = "Assassin's", "+(2-3)% to Critical Strike Multiplier per Power Charge", statOrder = { 3190 }, level = 1, group = "AnimalCharmCriticalStrikeMultiplierPerPowerCharge", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["AnimalCharmCriticalStrikeMultiplierPerPowerCharge2"] = { type = "Prefix", affix = "Assassin's", "+(4-5)% to Critical Strike Multiplier per Power Charge", statOrder = { 3190 }, level = 60, group = "AnimalCharmCriticalStrikeMultiplierPerPowerCharge", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmAdditionalCriticalStrikeChanceAtMaximumPowerCharges1"] = { type = "Prefix", affix = "Assassin's", "+(0.4-0.6)% Critical Strike Chance while at maximum Power Charges", statOrder = { 3378 }, level = 1, group = "AnimalCharmAdditionalCriticalStrikeChanceAtMaximumPowerCharges", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["AnimalCharmAdditionalCriticalStrikeChanceAtMaximumPowerCharges2"] = { type = "Prefix", affix = "Assassin's", "+(0.6-1)% Critical Strike Chance while at maximum Power Charges", statOrder = { 3378 }, level = 60, group = "AnimalCharmAdditionalCriticalStrikeChanceAtMaximumPowerCharges", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmCriticalStrikesHaveCullingStrike"] = { type = "Prefix", affix = "Assassin's", "Critical Strikes have Culling Strike", statOrder = { 3348 }, level = 45, group = "AnimalCharmCriticalStrikesHaveCullingStrike", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmCriticalStrikeChanceAgainstFullLifeEnemies1"] = { type = "Prefix", affix = "Assassin's", "(80-120)% increased Critical Strike Chance against Enemies that are on Full Life", statOrder = { 3674 }, level = 1, group = "AnimalCharmCriticalStrikeChanceAgainstFullLifeEnemies", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["AnimalCharmCriticalStrikeChanceAgainstFullLifeEnemies2"] = { type = "Prefix", affix = "Assassin's", "(130-160)% increased Critical Strike Chance against Enemies that are on Full Life", statOrder = { 3674 }, level = 60, group = "AnimalCharmCriticalStrikeChanceAgainstFullLifeEnemies", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmCriticalStrikeDamageCannotBeReflected"] = { type = "Suffix", affix = "of the Assassin", "Damage from your Critical Strikes cannot be Reflected", statOrder = { 5844 }, level = 45, group = "AnimalCharmCriticalStrikeDamageCannotBeReflected", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmElusiveEffect1"] = { type = "Suffix", affix = "of the Assassin", "(10-15)% increased Elusive Effect", statOrder = { 6243 }, level = 45, group = "AnimalCharmElusiveEffect", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmElusiveEffect2"] = { type = "Suffix", affix = "of the Assassin", "(16-25)% increased Elusive Effect", statOrder = { 6243 }, level = 72, group = "AnimalCharmElusiveEffect", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 125, 125, 0 }, modTags = { }, }, + ["AnimalCharmNoExtraDamageFromCriticalStrikesIfElusive"] = { type = "Suffix", affix = "of the Assassin", "You take no Extra Damage from Critical Strikes while Elusive", statOrder = { 9768 }, level = 70, group = "AnimalCharmNoExtraDamageFromCriticalStrikesIfElusive", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 50, 50, 0 }, modTags = { }, }, + ["AnimalCharmPoisonDurationPerPoisonAppliedRecently1"] = { type = "Prefix", affix = "Assassin's", "(1-2)% increased Poison Duration for each Poison you have inflicted Recently, up", "to a maximum of 100%", statOrder = { 9474, 9474.1 }, level = 1, group = "AnimalCharmPoisonDurationPerPoisonAppliedRecently", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["AnimalCharmPoisonDurationPerPoisonAppliedRecently2"] = { type = "Prefix", affix = "Assassin's", "3% increased Poison Duration for each Poison you have inflicted Recently, up", "to a maximum of 100%", statOrder = { 9474, 9474.1 }, level = 60, group = "AnimalCharmPoisonDurationPerPoisonAppliedRecently", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmCannotBeBlinded"] = { type = "Suffix", affix = "of the Saboteur", "Cannot be Blinded", statOrder = { 2883 }, level = 45, group = "AnimalCharmCannotBeBlinded", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmBlindOnHitChance1"] = { type = "Suffix", affix = "of the Saboteur", "(5-10)% Global chance to Blind Enemies on hit", statOrder = { 2867 }, level = 1, group = "AnimalCharmBlindOnHitChance", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["AnimalCharmBlindOnHitChance2"] = { type = "Suffix", affix = "of the Saboteur", "(11-15)% Global chance to Blind Enemies on hit", statOrder = { 2867 }, level = 60, group = "AnimalCharmBlindOnHitChance", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmMineAuraEffect1"] = { type = "Prefix", affix = "Saboteur's", "(20-30)% increased Effect of Auras from Mines", statOrder = { 9030 }, level = 1, group = "AnimalCharmMineAuraEffect", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["AnimalCharmMineAuraEffect2"] = { type = "Prefix", affix = "Saboteur's", "(31-50)% increased Effect of Auras from Mines", statOrder = { 9030 }, level = 60, group = "AnimalCharmMineAuraEffect", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmTakeHalfAreaDamageChance1"] = { type = "Suffix", affix = "of the Saboteur", "(5-6)% chance to take 50% less Area Damage from Hits", statOrder = { 10135 }, level = 45, group = "AnimalCharmTakeHalfAreaDamageChance", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmTakeHalfAreaDamageChance2"] = { type = "Suffix", affix = "of the Saboteur", "(7-10)% chance to take 50% less Area Damage from Hits", statOrder = { 10135 }, level = 72, group = "AnimalCharmTakeHalfAreaDamageChance", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 125, 125, 0 }, modTags = { }, }, + ["AnimalCharmChanceFor150%AreaDamage1"] = { type = "Prefix", affix = "Saboteur's", "Hits have (5-6)% chance to deal 50% more Area Damage", statOrder = { 9390 }, level = 1, group = "AnimalCharmChanceFor150%AreaDamage", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["AnimalCharmChanceFor150%AreaDamage2"] = { type = "Prefix", affix = "Saboteur's", "Hits have (7-10)% chance to deal 50% more Area Damage", statOrder = { 9390 }, level = 60, group = "AnimalCharmChanceFor150%AreaDamage", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmCooldownRecoveryRate1"] = { type = "Prefix", affix = "Saboteur's", "(5-8)% increased Cooldown Recovery Rate", statOrder = { 4899 }, level = 70, group = "AnimalCharmCooldownRecoveryRate", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 50, 50, 0 }, modTags = { }, }, + ["AnimalCharmCooldownRecoveryRate2"] = { type = "Prefix", affix = "Saboteur's", "(9-12)% increased Cooldown Recovery Rate", statOrder = { 4899 }, level = 81, group = "AnimalCharmCooldownRecoveryRate", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 25, 25, 0 }, modTags = { }, }, + ["AnimalCharmChanceToThrow4AdditionalTraps1"] = { type = "Prefix", affix = "Saboteur's", "(2-3)% chance to throw up to 4 additional Traps", statOrder = { 5621 }, level = 1, group = "AnimalCharmChanceToThrow4AdditionalTraps", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["AnimalCharmChanceToThrow4AdditionalTraps2"] = { type = "Prefix", affix = "Saboteur's", "(4-5)% chance to throw up to 4 additional Traps", statOrder = { 5621 }, level = 60, group = "AnimalCharmChanceToThrow4AdditionalTraps", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmCritVsBurningAndShockedEnemies1"] = { type = "Prefix", affix = "Saboteur's", "+(10-15)% to Critical Strike Multiplier against Burning Enemies", "(20-30)% increased Critical Strike Chance against Shocked Enemies", statOrder = { 3096, 5810 }, level = 1, group = "AnimalCharmCritVsBurningAndShockedEnemies", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["AnimalCharmCritVsBurningAndShockedEnemies2"] = { type = "Prefix", affix = "Saboteur's", "+(16-25)% to Critical Strike Multiplier against Burning Enemies", "(31-50)% increased Critical Strike Chance against Shocked Enemies", statOrder = { 3096, 5810 }, level = 60, group = "AnimalCharmCritVsBurningAndShockedEnemies", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmChargeDuration1"] = { type = "Prefix", affix = "Trickster's", "(40-60)% increased Charge Duration", statOrder = { 4897 }, level = 1, group = "AnimalCharmChargeDuration", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["AnimalCharmChargeDuration2"] = { type = "Prefix", affix = "Trickster's", "(61-100)% increased Charge Duration", statOrder = { 4897 }, level = 60, group = "AnimalCharmChargeDuration", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmLifeManaESOnKill1"] = { type = "Suffix", affix = "of the Trickster", "Recover 1% of Life on Kill", "Recover 1% of Energy Shield on Kill", "Recover 1% of Mana on Kill", statOrder = { 1660, 1661, 1662 }, level = 1, group = "AnimalCharmLifeManaESOnKill", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["AnimalCharmLifeManaESOnKill2"] = { type = "Suffix", affix = "of the Trickster", "Recover 2% of Life on Kill", "Recover 2% of Energy Shield on Kill", "Recover 2% of Mana on Kill", statOrder = { 1660, 1661, 1662 }, level = 60, group = "AnimalCharmLifeManaESOnKill", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmChanceForEnergyShieldRechargeOnSuppress1"] = { type = "Suffix", affix = "of the Trickster", "(5-8)% chance for Energy Shield Recharge to start when you Suppress Spell Damage", statOrder = { 3331 }, level = 45, group = "AnimalCharmChanceForEnergyShieldRechargeOnSuppress", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmChanceForEnergyShieldRechargeOnSuppress2"] = { type = "Suffix", affix = "of the Trickster", "(9-12)% chance for Energy Shield Recharge to start when you Suppress Spell Damage", statOrder = { 3331 }, level = 72, group = "AnimalCharmChanceForEnergyShieldRechargeOnSuppress", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 125, 125, 0 }, modTags = { }, }, + ["AnimalCharmChanceFor25%NonChaosToAddAsChaosDamage1"] = { type = "Prefix", affix = "Trickster's", "(7-13)% chance to gain 25% of Non-Chaos Damage with Hits as Extra Chaos Damage", statOrder = { 4264 }, level = 45, group = "AnimalCharmChanceFor25%NonChaosToAddAsChaosDamage", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmChanceFor25%NonChaosToAddAsChaosDamage2"] = { type = "Prefix", affix = "Trickster's", "(17-23)% chance to gain 25% of Non-Chaos Damage with Hits as Extra Chaos Damage", statOrder = { 4264 }, level = 72, group = "AnimalCharmChanceFor25%NonChaosToAddAsChaosDamage", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 125, 125, 0 }, modTags = { }, }, + ["AnimalCharmEvasionPerEnergyShieldOnHelmet1"] = { type = "Suffix", affix = "of the Trickster", "+(1-2) to Evasion Rating per 1 Maximum Energy Shield on Equipped Helmet", statOrder = { 1458 }, level = 1, group = "AnimalCharmEvasionPerEnergyShieldOnHelmet", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["AnimalCharmEvasionPerEnergyShieldOnHelmet2"] = { type = "Suffix", affix = "of the Trickster", "+(3-4) to Evasion Rating per 1 Maximum Energy Shield on Equipped Helmet", statOrder = { 1458 }, level = 60, group = "AnimalCharmEvasionPerEnergyShieldOnHelmet", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmSpellDamageSuppressedOnFullEnergyShield1"] = { type = "Suffix", affix = "of the Trickster", "Prevent +(3-4)% of Suppressed Spell Damage while on Full Energy Shield", statOrder = { 1059 }, level = 70, group = "AnimalCharmSpellDamageSuppressedOnFullEnergyShield", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 50, 50, 0 }, modTags = { }, }, + ["AnimalCharmSpellDamageSuppressedOnFullEnergyShield2"] = { type = "Suffix", affix = "of the Trickster", "Prevent +(5-6)% of Suppressed Spell Damage while on Full Energy Shield", statOrder = { 1059 }, level = 81, group = "AnimalCharmSpellDamageSuppressedOnFullEnergyShield", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 25, 25, 0 }, modTags = { }, }, + ["AnimalCharmEnergyShieldLeech1"] = { type = "Prefix", affix = "Trickster's", "(0.5-1)% of Damage Leeched as Energy Shield", statOrder = { 1632 }, level = 1, group = "AnimalCharmEnergyShieldLeech", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["AnimalCharmEnergyShieldLeech2"] = { type = "Prefix", affix = "Trickster's", "(1.1-2)% of Damage Leeched as Energy Shield", statOrder = { 1632 }, level = 60, group = "AnimalCharmEnergyShieldLeech", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmRecover10PercentManaOnSkillUseChance1"] = { type = "Suffix", affix = "of the Trickster", "(4-6)% chance to Recover 10% of Mana when you use a Skill", statOrder = { 3383 }, level = 1, group = "AnimalCharmRecover10PercentManaOnSkillUseChance", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["AnimalCharmRecover10PercentManaOnSkillUseChance2"] = { type = "Suffix", affix = "of the Trickster", "(7-10)% chance to Recover 10% of Mana when you use a Skill", statOrder = { 3383 }, level = 60, group = "AnimalCharmRecover10PercentManaOnSkillUseChance", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmNoBarrageSpread"] = { type = "Prefix", affix = "Deadeye's", "Projectile Barrages have no spread", statOrder = { 9278 }, level = 45, group = "AnimalCharmNoBarrageSpread", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmMarkEffect1"] = { type = "Prefix", affix = "Deadeye's", "(10-15)% increased Effect of your Marks", statOrder = { 2507 }, level = 1, group = "AnimalCharmMarkEffect", weightKey = { "dex_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["AnimalCharmMarkEffect2"] = { type = "Prefix", affix = "Deadeye's", "(16-25)% increased Effect of your Marks", statOrder = { 2507 }, level = 60, group = "AnimalCharmMarkEffect", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmProjectileChainFromTerrainChance1"] = { type = "Prefix", affix = "Deadeye's", "Projectiles have (7-13)% chance to be able to Chain when colliding with terrain", statOrder = { 1738 }, level = 45, group = "AnimalCharmProjectileChainFromTerrainChance", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmProjectileChainFromTerrainChance2"] = { type = "Prefix", affix = "Deadeye's", "Projectiles have (14-20)% chance to be able to Chain when colliding with terrain", statOrder = { 1738 }, level = 72, group = "AnimalCharmProjectileChainFromTerrainChance", weightKey = { "dex_animal_charm", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["AnimalCharmAdditionalProjectiles"] = { type = "Prefix", affix = "Deadeye's", "Skills fire an additional Projectile", statOrder = { 1703 }, level = 81, group = "AnimalCharmAdditionalProjectiles", weightKey = { "dex_animal_charm", "default", }, weightVal = { 20, 0 }, modTags = { }, }, + ["AnimalCharmMirageArcherDuration1"] = { type = "Suffix", affix = "of the Deadeye", "(30-50)% increased Mirage Archer Duration", statOrder = { 9176 }, level = 1, group = "AnimalCharmMirageArcherDuration", weightKey = { "dex_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["AnimalCharmMirageArcherDuration2"] = { type = "Suffix", affix = "of the Deadeye", "(51-100)% increased Mirage Archer Duration", statOrder = { 9176 }, level = 60, group = "AnimalCharmMirageArcherDuration", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmProjectileDamageWithDistanceTravelled1"] = { type = "Prefix", affix = "Deadeye's", "Projectiles gain Damage as they travel farther, dealing up", "to (25-40)% increased Damage with Hits to targets", statOrder = { 3989, 3989.1 }, level = 1, group = "AnimalCharmProjectileDamageWithDistanceTravelled", weightKey = { "dex_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["AnimalCharmProjectileDamageWithDistanceTravelled2"] = { type = "Prefix", affix = "Deadeye's", "Projectiles gain Damage as they travel farther, dealing up", "to (41-60)% increased Damage with Hits to targets", statOrder = { 3989, 3989.1 }, level = 60, group = "AnimalCharmProjectileDamageWithDistanceTravelled", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmLifeOnHitVsBleedingEnemies1"] = { type = "Suffix", affix = "of the Deadeye", "Gain (6-10) Life per Bleeding Enemy Hit", statOrder = { 3478 }, level = 1, group = "AnimalCharmLifeOnHitVsBleedingEnemies", weightKey = { "dex_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["AnimalCharmLifeOnHitVsBleedingEnemies2"] = { type = "Suffix", affix = "of the Deadeye", "Gain (11-20) Life per Bleeding Enemy Hit", statOrder = { 3478 }, level = 60, group = "AnimalCharmLifeOnHitVsBleedingEnemies", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmAccuracyIfCritInLast8Seconds1"] = { type = "Prefix", affix = "Deadeye's", "(7-13)% increased Accuracy Rating if you've dealt a Critical Strike in the past 8 seconds", statOrder = { 4426 }, level = 1, group = "AnimalCharmAccuracyIfCritInLast8Seconds", weightKey = { "dex_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["AnimalCharmAccuracyIfCritInLast8Seconds2"] = { type = "Prefix", affix = "Deadeye's", "(14-20)% increased Accuracy Rating if you've dealt a Critical Strike in the past 8 seconds", statOrder = { 4426 }, level = 60, group = "AnimalCharmAccuracyIfCritInLast8Seconds", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmOnslaughtEffect1"] = { type = "Prefix", affix = "Raider's", "(15-25)% increased Effect of Onslaught on you", statOrder = { 3198 }, level = 1, group = "AnimalCharmOnslaughtEffect", weightKey = { "dex_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["AnimalCharmOnslaughtEffect2"] = { type = "Prefix", affix = "Raider's", "(26-40)% increased Effect of Onslaught on you", statOrder = { 3198 }, level = 60, group = "AnimalCharmOnslaughtEffect", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmPhasingOnKillChance1"] = { type = "Suffix", affix = "of the Raider", "(10-15)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3373 }, level = 1, group = "AnimalCharmPhasingOnKillChance", weightKey = { "dex_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["AnimalCharmPhasingOnKillChance2"] = { type = "Suffix", affix = "of the Raider", "(16-25)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3373 }, level = 60, group = "AnimalCharmPhasingOnKillChance", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmSpellSuppressionChance1"] = { type = "Suffix", affix = "of the Raider", "+(5-9)% chance to Suppress Spell Damage", statOrder = { 1056 }, level = 1, group = "AnimalCharmSpellSuppressionChance", weightKey = { "dex_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["AnimalCharmSpellSuppressionChance2"] = { type = "Suffix", affix = "of the Raider", "+(10-15)% chance to Suppress Spell Damage", statOrder = { 1056 }, level = 60, group = "AnimalCharmSpellSuppressionChance", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmAvoidElementalAilmentsChanceWhilePhasing1"] = { type = "Suffix", affix = "of the Raider", "(10-15)% chance to Avoid Elemental Ailments while Phasing", statOrder = { 4838 }, level = 1, group = "AnimalCharmAvoidElementalAilmentsChanceWhilePhasing", weightKey = { "dex_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["AnimalCharmAvoidElementalAilmentsChanceWhilePhasing2"] = { type = "Suffix", affix = "of the Raider", "(16-25)% chance to Avoid Elemental Ailments while Phasing", statOrder = { 4838 }, level = 60, group = "AnimalCharmAvoidElementalAilmentsChanceWhilePhasing", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmOnslaughtOnKillChance1"] = { type = "Prefix", affix = "Raider's", "(10-15)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3288 }, level = 1, group = "AnimalCharmOnslaughtOnKillChance", weightKey = { "dex_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["AnimalCharmOnslaughtOnKillChance2"] = { type = "Prefix", affix = "Raider's", "(16-25)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3288 }, level = 60, group = "AnimalCharmOnslaughtOnKillChance", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmEvasionRatingPerFrenzyCharge1"] = { type = "Suffix", affix = "of the Raider", "(3-5)% increased Evasion Rating per Frenzy Charge", statOrder = { 1467 }, level = 1, group = "AnimalCharmEvasionRatingPerFrenzyCharge", weightKey = { "dex_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["AnimalCharmEvasionRatingPerFrenzyCharge2"] = { type = "Suffix", affix = "of the Raider", "(6-9)% increased Evasion Rating per Frenzy Charge", statOrder = { 1467 }, level = 60, group = "AnimalCharmEvasionRatingPerFrenzyCharge", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmMovementSpeedPerFrenzyCharge"] = { type = "Prefix", affix = "Raider's", "2% increased Movement Speed per Frenzy Charge", statOrder = { 1713 }, level = 70, group = "AnimalCharmMovementSpeedPerFrenzyCharge", weightKey = { "dex_animal_charm", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["AnimalCharmFrenzyOnHItChance1"] = { type = "Prefix", affix = "Raider's", "(3-5)% chance to gain a Frenzy Charge on Hit", statOrder = { 1744 }, level = 45, group = "AnimalCharmFrenzyOnHItChance", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmFrenzyOnHItChance2"] = { type = "Prefix", affix = "Raider's", "(6-8)% chance to gain a Frenzy Charge on Hit", statOrder = { 1744 }, level = 72, group = "AnimalCharmFrenzyOnHItChance", weightKey = { "dex_animal_charm", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["AnimalCharmFlaskChargesEvery3Seconds"] = { type = "Suffix", affix = "of the Pathfinder", "Flasks gain a Charge every 3 seconds", statOrder = { 3386 }, level = 81, group = "AnimalCharmFlaskChargesEvery3Seconds", weightKey = { "dex_animal_charm", "default", }, weightVal = { 20, 0 }, modTags = { "flask" }, }, + ["AnimalCharmRemoveBleedOnFlaskUse"] = { type = "Suffix", affix = "of the Pathfinder", "Removes Bleeding when you use a Flask", statOrder = { 3294 }, level = 45, group = "AnimalCharmRemoveBleedOnFlaskUse", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmMagicUtilityFlaskEffect1"] = { type = "Prefix", affix = "Pathfinder's", "Magic Utility Flasks applied to you have (6-10)% increased Effect", statOrder = { 2653 }, level = 70, group = "AnimalCharmMagicUtilityFlaskEffect", weightKey = { "dex_animal_charm", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["AnimalCharmMagicUtilityFlaskEffect2"] = { type = "Prefix", affix = "Pathfinder's", "Magic Utility Flasks applied to you have (11-15)% increased Effect", statOrder = { 2653 }, level = 81, group = "AnimalCharmMagicUtilityFlaskEffect", weightKey = { "dex_animal_charm", "default", }, weightVal = { 50, 0 }, modTags = { }, }, + ["AnimalCharmWitheredOnHitChance1"] = { type = "Prefix", affix = "Pathfinder's", "(6-10)% chance to inflict Withered for 2 seconds on Hit", statOrder = { 4304 }, level = 45, group = "AnimalCharmWitheredOnHitChance", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmWitheredOnHitChance2"] = { type = "Prefix", affix = "Pathfinder's", "(11-15)% chance to inflict Withered for 2 seconds on Hit", statOrder = { 4304 }, level = 72, group = "AnimalCharmWitheredOnHitChance", weightKey = { "dex_animal_charm", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["AnimalCharmRecoverLifeOnFlaskUse1"] = { type = "Suffix", affix = "of the Pathfinder", "Recover (2-3)% of Life when you use a Flask", statOrder = { 4249 }, level = 45, group = "AnimalCharmRecoverLifeOnFlaskUse", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmRecoverLifeOnFlaskUse2"] = { type = "Suffix", affix = "of the Pathfinder", "Recover (4-5)% of Life when you use a Flask", statOrder = { 4249 }, level = 72, group = "AnimalCharmRecoverLifeOnFlaskUse", weightKey = { "dex_animal_charm", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["AnimalCharmWitheredEffect1"] = { type = "Prefix", affix = "Pathfinder's", "(7-13)% increased Effect of Withered", statOrder = { 10405 }, level = 1, group = "AnimalCharmWitheredEffect", weightKey = { "dex_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["AnimalCharmWitheredEffect2"] = { type = "Prefix", affix = "Pathfinder's", "(14-20)% increased Effect of Withered", statOrder = { 10405 }, level = 60, group = "AnimalCharmWitheredEffect", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmFlaskChargesGainedFromEnemiesWithAilments1"] = { type = "Suffix", affix = "of the Pathfinder", "Enemies you Kill that are affected by Elemental Ailments", "grant (15-25)% increased Flask Charges", statOrder = { 4156, 4156.1 }, level = 1, group = "AnimalCharmFlaskChargesGainedFromEnemiesWithAilments", weightKey = { "dex_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["AnimalCharmFlaskChargesGainedFromEnemiesWithAilments2"] = { type = "Suffix", affix = "of the Pathfinder", "Enemies you Kill that are affected by Elemental Ailments", "grant (26-40)% increased Flask Charges", statOrder = { 4156, 4156.1 }, level = 60, group = "AnimalCharmFlaskChargesGainedFromEnemiesWithAilments", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmPhysicalDamageAsRandomElement1"] = { type = "Prefix", affix = "Pathfinder's", "Gain (5-8)% of Physical Damage as Extra Damage of a random Element", statOrder = { 2845 }, level = 1, group = "AnimalCharmPhysicalDamageAsRandomElement", weightKey = { "dex_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["AnimalCharmPhysicalDamageAsRandomElement2"] = { type = "Prefix", affix = "Pathfinder's", "Gain (9-12)% of Physical Damage as Extra Damage of a random Element", statOrder = { 2845 }, level = 60, group = "AnimalCharmPhysicalDamageAsRandomElement", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, } \ No newline at end of file diff --git a/src/Data/ModJewelCluster.lua b/src/Data/ModJewelCluster.lua index 4215573c4d..ab7c340e76 100644 --- a/src/Data/ModJewelCluster.lua +++ b/src/Data/ModJewelCluster.lua @@ -2,559 +2,559 @@ -- Item data (c) Grinding Gear Games return { - ["ChaosResistJewelCorrupted"] = { type = "Corrupted", affix = "", "+(1-3)% to Chaos Resistance", statOrder = { 1522 }, level = 1, group = "ChaosResistance", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "chaos", "resistance" }, }, - ["ReducedCharacterSizeJewelCorrupted"] = { type = "Corrupted", affix = "", "1% reduced Character Size", statOrder = { 1934 }, level = 1, group = "ActorSize", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["ReducedChillDurationJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Chill Duration on you", statOrder = { 1753 }, level = 1, group = "ReducedChillDuration", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ReducedFreezeDurationJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Freeze Duration on you", statOrder = { 1755 }, level = 1, group = "ReducedFreezeDuration", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ReducedIgniteDurationJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Ignite Duration on you", statOrder = { 1756 }, level = 1, group = "ReducedBurnDuration", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ReducedShockDurationJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Shock Duration on you", statOrder = { 1754 }, level = 1, group = "ReducedShockDuration", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["IncreasedChargeDurationJewelCorrupted_"] = { type = "Corrupted", affix = "", "(3-7)% increased Endurance, Frenzy and Power Charge Duration", statOrder = { 2897 }, level = 1, group = "ChargeDuration", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, }, - ["AddedChaosDamageJewelCorrupted"] = { type = "Corrupted", affix = "", "Adds 1 to (2-3) Chaos Damage to Attacks", statOrder = { 1271 }, level = 1, group = "ChaosDamage", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["ChanceToBeCritJewelCorrupted"] = { type = "Corrupted", affix = "", "Hits have (60-100)% increased Critical Strike Chance against you", statOrder = { 2998 }, level = 1, group = "ChanceToTakeCriticalStrike", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "critical" }, }, - ["DamageWhileDeadJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-30)% increased Damage while Dead", statOrder = { 2962 }, level = 1, group = "DamageWhileDead", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage" }, }, - ["VaalSkillDamageJewelCorrupted"] = { type = "Corrupted", affix = "", "(5-10)% increased Damage with Vaal Skills", statOrder = { 2961 }, level = 1, group = "VaalSkillDamage", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage", "vaal" }, }, - ["ChaosDamagePerCorruptedItemJewelCorrupted"] = { type = "Corrupted", affix = "", "1% increased Chaos Damage for each Corrupted Item Equipped", statOrder = { 2965 }, level = 1, group = "ChaosDamagePerCorruptedItem", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["LifeLeechRatePerCorruptedItemJewelCorrupted"] = { type = "Corrupted", affix = "", "1% increased total Recovery per second from Life Leech for each Corrupted Item Equipped", statOrder = { 2966 }, level = 1, group = "LifeLeechRatePerCorruptedItem", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "life" }, }, - ["ManaLeechRatePerCorruptedItemJewelCorrupted"] = { type = "Corrupted", affix = "", "1% increased total Recovery per second from Mana Leech for each Corrupted Item Equipped", statOrder = { 2968 }, level = 1, group = "ManaLeechRatePerCorrupteditem", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana" }, }, - ["SilenceImmunityJewelCorrupted"] = { type = "Corrupted", affix = "", "You cannot be Cursed with Silence", statOrder = { 2960 }, level = 1, group = "ImmuneToSilence", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "caster", "curse" }, }, - ["V2CorruptedBloodImmunityCorrupted"] = { type = "Corrupted", affix = "", "Corrupted Blood cannot be inflicted on you", statOrder = { 5116 }, level = 33, group = "CorruptedBloodImmunity", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "bleed", "physical", "ailment" }, }, - ["V2HinderImmunityCorrupted"] = { type = "Corrupted", affix = "", "You cannot be Hindered", statOrder = { 10115 }, level = 40, group = "YouCannotBeHindered", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "blue_herring" }, }, - ["V2IncreasedAilmentEffectOnEnemiesCorrupted"] = { type = "Corrupted", affix = "", "(5-7)% increased Effect of Non-Damaging Ailments", statOrder = { 9017 }, level = 1, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "ailment" }, }, - ["V2IncreasedAreaOfEffectCorrupted"] = { type = "Corrupted", affix = "", "(4-5)% increased Area of Effect", statOrder = { 1761 }, level = 1, group = "AreaOfEffect", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["V2IncreasedCriticalStrikeChanceCorrupted_"] = { type = "Corrupted", affix = "", "(8-10)% increased Global Critical Strike Chance", statOrder = { 1343 }, level = 1, group = "CriticalStrikeChance", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "critical" }, }, - ["V2IncreasedDamageJewelCorrupted___"] = { type = "Corrupted", affix = "", "(4-5)% increased Damage", statOrder = { 1076 }, level = 1, group = "IncreasedDamage", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, }, - ["V2MaimImmunityCorrupted"] = { type = "Corrupted", affix = "", "You cannot be Maimed", statOrder = { 4766 }, level = 40, group = "AvoidMaimChance", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["V2MinionDamageCorrupted"] = { type = "Corrupted", affix = "", "Minions deal (4-5)% increased Damage", statOrder = { 1852 }, level = 1, group = "MinionDamage", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "minion" }, }, - ["V2ReducedManaReservationCorrupted"] = { type = "Corrupted", affix = "", "2% increased Reservation Efficiency of Skills", statOrder = { 2110 }, level = 1, group = "ReducedReservationForJewel", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["V2ReducedManaReservationCorruptedEfficiency__"] = { type = "Corrupted", affix = "", "2% increased Reservation Efficiency of Skills", statOrder = { 2107 }, level = 1, group = "ReservationEfficiencyForJewel", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["V2SilenceImmunityJewelCorrupted"] = { type = "Corrupted", affix = "", "You cannot be Cursed with Silence", statOrder = { 2960 }, level = 60, group = "ImmuneToSilence", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "curse" }, }, - ["V2FirePenetrationJewelCorrupted"] = { type = "Corrupted", affix = "", "Damage Penetrates 1% Fire Resistance", statOrder = { 2853 }, level = 1, group = "FireResistancePenetration", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["V2ColdPenetrationJewelCorrupted"] = { type = "Corrupted", affix = "", "Damage Penetrates 1% Cold Resistance", statOrder = { 2855 }, level = 1, group = "ColdResistancePenetration", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["V2LightningPenetrationJewelCorrupted__"] = { type = "Corrupted", affix = "", "Damage Penetrates 1% Lightning Resistance", statOrder = { 2856 }, level = 1, group = "LightningResistancePenetration", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["V2ElementalPenetrationJewelCorrupted_"] = { type = "Corrupted", affix = "", "Damage Penetrates 1% Elemental Resistances", statOrder = { 2852 }, level = 1, group = "ElementalPenetration", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["V2ArmourPenetrationJewelCorrupted"] = { type = "Corrupted", affix = "", "Hits have (10-15)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 6801 }, level = 1, group = "ChanceToIgnoreEnemyArmour", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "physical" }, }, - ["V2AvoidIgniteJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid being Ignited", statOrder = { 1727 }, level = 1, group = "AvoidIgnite", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["V2AvoidChillAndFreezeJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid being Chilled", "(20-25)% chance to Avoid being Frozen", statOrder = { 1725, 1726 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["V2AvoidShockJewelCorrupted_"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid being Shocked", statOrder = { 1729 }, level = 1, group = "AvoidShock", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["V2AvoidPoisonJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid being Poisoned", statOrder = { 1730 }, level = 1, group = "ChanceToAvoidPoison", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["V2AvoidBleedJewelCorrupted__"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid Bleeding", statOrder = { 4077 }, level = 1, group = "ChanceToAvoidBleeding", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["V2AvoidStunJewelCorrupted_"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid being Stunned", statOrder = { 1732 }, level = 1, group = "AvoidStun", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["V2IgniteDurationOnYouJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% reduced Ignite Duration on you", statOrder = { 1756 }, level = 1, group = "ReducedIgniteDurationOnSelf", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["V2ChillEffectOnYouJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% reduced Effect of Chill on you", statOrder = { 1526 }, level = 1, group = "ChillEffectivenessOnSelf", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["V2ShockEffectOnYouJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% reduced Effect of Shock on you", statOrder = { 9507 }, level = 1, group = "ReducedShockEffectOnSelf", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["V2PoisonDurationOnYouJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% reduced Poison Duration on you", statOrder = { 9467 }, level = 1, group = "ReducedPoisonDuration", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["V2BleedDurationOnYouJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% reduced Bleed Duration on you", statOrder = { 9458 }, level = 1, group = "ReducedBleedDuration", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "bleed", "physical", "ailment" }, }, - ["V2CurseEffectOnYouJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% reduced Effect of Curses on you", statOrder = { 2047 }, level = 1, group = "CurseEffectOnYouJewel", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "curse" }, }, - ["AfflictionNotableProdigiousDefense__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Prodigious Defence", statOrder = { 7361 }, level = 1, group = "AfflictionNotableProdigiousDefense", weightKey = { "affliction_attack_damage_while_holding_a_shield", "affliction_chance_to_block", "default", }, weightVal = { 600, 750, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block", "damage", "attack" }, }, - ["AfflictionNotableAdvanceGuard"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Advance Guard", statOrder = { 7164 }, level = 50, group = "AfflictionNotableAdvanceGuard", weightKey = { "affliction_attack_damage_while_holding_a_shield", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack", "speed" }, }, - ["AfflictionNotableGladiatorialCombat"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Gladiatorial Combat", statOrder = { 7285 }, level = 68, group = "AfflictionNotableGladiatorialCombat", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack", "critical" }, }, - ["AfflictionNotableStrikeLeader_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Strike Leader", statOrder = { 7416 }, level = 1, group = "AfflictionNotableStrikeLeader", weightKey = { "affliction_attack_damage_while_holding_a_shield", "affliction_chance_to_block", "default", }, weightVal = { 600, 750, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block", "damage", "attack" }, }, - ["AfflictionNotablePowerfulWard"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Powerful Ward", statOrder = { 7351 }, level = 68, group = "AfflictionNotablePowerfulWard", weightKey = { "affliction_chance_to_block", "default", }, weightVal = { 141, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block", "power_charge" }, }, - ["AfflictionNotableEnduringWard_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Enduring Ward", statOrder = { 7254 }, level = 68, group = "AfflictionNotableEnduringWard", weightKey = { "affliction_chance_to_block", "default", }, weightVal = { 141, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block", "endurance_charge" }, }, - ["AfflictionNotableGladiatorsFortitude"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Gladiator's Fortitude", statOrder = { 7286 }, level = 68, group = "AfflictionNotableGladiatorsFortitude", weightKey = { "affliction_attack_damage_while_holding_a_shield", "affliction_maximum_life", "default", }, weightVal = { 113, 146, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "damage", "attack" }, }, - ["AfflictionNotablePreciseRetaliation_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Precise Retaliation", statOrder = { 7355 }, level = 50, group = "AfflictionNotablePreciseRetaliation", weightKey = { "affliction_attack_damage_while_holding_a_shield", "affliction_critical_chance", "default", }, weightVal = { 300, 457, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "critical" }, }, - ["AfflictionNotableVeteranDefender"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Veteran Defender", statOrder = { 7438 }, level = 1, group = "AfflictionNotableVeteranDefender", weightKey = { "affliction_attack_damage_while_holding_a_shield", "default", }, weightVal = { 600, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "defences", "elemental", "resistance", "attribute" }, }, - ["AfflictionNotableIronBreaker"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Iron Breaker", statOrder = { 7312 }, level = 1, group = "AfflictionNotableIronBreaker", weightKey = { "affliction_physical_damage", "default", }, weightVal = { 464, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "physical_damage", "damage", "physical" }, }, - ["AfflictionNotableDeepCuts"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Deep Cuts", statOrder = { 7232 }, level = 75, group = "AfflictionNotableDeepCuts", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "physical", "attack" }, }, - ["AfflictionNotableMastertheFundamentals_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Master the Fundamentals", statOrder = { 7329 }, level = 50, group = "AfflictionNotableMastertheFundamentals", weightKey = { "affliction_physical_damage", "default", }, weightVal = { 232, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "resistance" }, }, - ["AfflictionNotableForceMultiplier"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Force Multiplier", statOrder = { 7280 }, level = 50, group = "AfflictionNotableForceMultiplier", weightKey = { "affliction_physical_damage", "default", }, weightVal = { 232, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "physical_damage", "damage", "physical" }, }, - ["AfflictionNotableFuriousAssault"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Furious Assault", statOrder = { 7283 }, level = 1, group = "AfflictionNotableFuriousAssault", weightKey = { "affliction_physical_damage", "default", }, weightVal = { 464, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "physical_damage", "caster_damage", "damage", "damage", "physical", "attack", "caster" }, }, - ["AfflictionNotableViciousSkewering"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Vicious Skewering", statOrder = { 7441 }, level = 68, group = "AfflictionNotableViciousSkewering", weightKey = { "affliction_attack_damage_", "affliction_axe_and_sword_damage", "affliction_mace_and_staff_damage", "affliction_dagger_and_claw_damage", "affliction_bow_damage", "affliction_wand_damage", "affliction_damage_with_two_handed_melee_weapons", "affliction_attack_damage_while_dual_wielding_", "affliction_attack_damage_while_holding_a_shield", "default", }, weightVal = { 81, 141, 141, 151, 145, 151, 113, 117, 113, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["AfflictionNotableGrimOath"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Grim Oath", statOrder = { 7290 }, level = 68, group = "AfflictionNotableGrimOath", weightKey = { "affliction_physical_damage", "affliction_chaos_damage", "default", }, weightVal = { 87, 97, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, - ["AfflictionNotableBattleHardened_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Battle-Hardened", statOrder = { 7185 }, level = 50, group = "AfflictionNotableBattleHardened", weightKey = { "affliction_physical_damage", "affliction_armour", "affliction_evasion", "default", }, weightVal = { 232, 696, 658, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "defences", "armour", "evasion", "physical" }, }, - ["AfflictionNotableReplenishingPresence"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Replenishing Presence", statOrder = { 7379 }, level = 50, group = "AfflictionNotableReplenishingPresence", weightKey = { "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "default", }, weightVal = { 480, 480, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "aura" }, }, - ["AfflictionNotableMasterofCommand__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Master of Command", statOrder = { 7325 }, level = 68, group = "AfflictionNotableMasterofCommand", weightKey = { "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "default", }, weightVal = { 180, 180, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "aura" }, }, - ["AfflictionNotableFirstAmongEquals__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Spiteful Presence", statOrder = { 7275 }, level = 1, group = "AfflictionNotableFirstAmongEquals", weightKey = { "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "default", }, weightVal = { 960, 960, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "elemental", "cold", "aura", "ailment" }, }, - ["AfflictionNotablePurposefulHarbinger"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Purposeful Harbinger", statOrder = { 7368 }, level = 75, group = "AfflictionNotablePurposefulHarbinger", weightKey = { "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "affliction_damage_while_you_have_a_herald", "affliction_minion_damage_while_you_have_a_herald", "default", }, weightVal = { 60, 60, 118, 158, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "aura" }, }, - ["AfflictionNotablePreciseCommander"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Destructive Aspect", statOrder = { 7353 }, level = 68, group = "AfflictionNotablePreciseCommander", weightKey = { "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "affliction_critical_chance", "default", }, weightVal = { 180, 180, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "aura" }, }, - ["AfflictionNotablePureCommander"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Electric Presence", statOrder = { 7365 }, level = 68, group = "AfflictionNotablePureCommander", weightKey = { "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "affliction_lightning_resistance", "affliction_cold_resistance", "affliction_fire_resistance", "default", }, weightVal = { 180, 180, 0, 0, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "elemental", "lightning", "aura", "ailment" }, }, - ["AfflictionNotableSummerCommander"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Mortifying Aspect", statOrder = { 7420 }, level = 68, group = "AfflictionNotableSummerCommander", weightKey = { "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "affliction_fire_resistance", "default", }, weightVal = { 180, 180, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "chaos", "resistance", "aura" }, }, - ["AfflictionNotableWinterCommander"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Frantic Aspect", statOrder = { 7456 }, level = 68, group = "AfflictionNotableWinterCommander", weightKey = { "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "affliction_cold_resistance", "default", }, weightVal = { 180, 180, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "speed", "aura" }, }, - ["AfflictionNotableGroundedCommander"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Introspection", statOrder = { 7291 }, level = 68, group = "AfflictionNotableGroundedCommander", weightKey = { "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "affliction_lightning_resistance", "default", }, weightVal = { 180, 180, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "aura" }, }, - ["AfflictionNotableStalwartCommander"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Volatile Presence", statOrder = { 7409 }, level = 50, group = "AfflictionNotableStalwartCommander", weightKey = { "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "affliction_armour", "affliction_evasion", "affliction_maximum_energy_shield", "default", }, weightVal = { 480, 480, 0, 0, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "elemental", "fire", "aura", "ailment" }, }, - ["AfflictionNotableVengefulCommander"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Righteous Path", statOrder = { 7437 }, level = 1, group = "AfflictionNotableVengefulCommander", weightKey = { "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "affliction_elemental_damage", "affliction_lightning_damage", "affliction_cold_damage", "affliction_fire_damage", "default", }, weightVal = { 960, 960, 0, 0, 0, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "aura" }, }, - ["AfflictionNotableSkullbreaker"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Skullbreaker", statOrder = { 7400 }, level = 68, group = "AfflictionNotableSkullbreaker", weightKey = { "affliction_critical_chance", "default", }, weightVal = { 171, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "critical" }, }, - ["AfflictionNotablePressurePoints__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Pressure Points", statOrder = { 7356 }, level = 50, group = "AfflictionNotablePressurePoints", weightKey = { "affliction_critical_chance", "default", }, weightVal = { 457, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "critical" }, }, - ["AfflictionNotableOverwhelmingMalice"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Overwhelming Malice", statOrder = { 7345 }, level = 68, group = "AfflictionNotableOverwhelmingMalice", weightKey = { "affliction_critical_chance", "affliction_chaos_damage", "default", }, weightVal = { 171, 97, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { }, }, - ["AfflictionNotableMagnifier"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Magnifier", statOrder = { 7321 }, level = 1, group = "AfflictionNotableMagnifier", weightKey = { "affliction_critical_chance", "affliction_area_damage", "default", }, weightVal = { 914, 1959, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "critical" }, }, - ["AfflictionNotableSavageResponse"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Savage Response", statOrder = { 7388 }, level = 50, group = "AfflictionNotableSavageResponse", weightKey = { "affliction_critical_chance", "default", }, weightVal = { 457, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "critical" }, }, - ["AfflictionNotableEyeoftheStorm"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Eye of the Storm", statOrder = { 7264 }, level = 50, group = "AfflictionNotableEyeoftheStorm", weightKey = { "affliction_critical_chance", "affliction_fire_damage_over_time_multiplier", "affliction_effect_of_non-damaging_ailments", "default", }, weightVal = { 457, 366, 814, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "cold", "lightning", "critical", "ailment" }, }, - ["AfflictionNotableBasicsofPain"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Basics of Pain", statOrder = { 7184 }, level = 1, group = "AfflictionNotableBasicsofPain", weightKey = { "affliction_critical_chance", "default", }, weightVal = { 914, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "critical" }, }, - ["AfflictionNotableQuickGetaway"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Quick Getaway", statOrder = { 7370 }, level = 1, group = "AfflictionNotableQuickGetaway", weightKey = { "affliction_critical_chance", "default", }, weightVal = { 914, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "attack", "caster", "speed", "critical" }, }, - ["AfflictionNotableAssertDominance"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Assert Dominance", statOrder = { 7182 }, level = 68, group = "AfflictionNotableAssertDominance", weightKey = { "affliction_area_damage", "default", }, weightVal = { 367, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { }, }, - ["AfflictionNotableVastPower"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Vast Power", statOrder = { 7436 }, level = 50, group = "AfflictionNotableVastPower", weightKey = { "affliction_area_damage", "default", }, weightVal = { 980, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage" }, }, - ["AfflictionNotablePowerfulAssault_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Powerful Assault", statOrder = { 7350 }, level = 50, group = "AfflictionNotablePowerfulAssault", weightKey = { "affliction_area_damage", "default", }, weightVal = { 980, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage" }, }, - ["AfflictionNotableIntensity"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Intensity", statOrder = { 7310 }, level = 68, group = "AfflictionNotableIntensity", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage" }, }, - ["AfflictionNotableTitanicSwings_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Titanic Swings", statOrder = { 7428 }, level = 50, group = "AfflictionNotableTitanicSwings", weightKey = { "affliction_area_damage", "affliction_damage_with_two_handed_melee_weapons", "default", }, weightVal = { 980, 302, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack" }, }, - ["AfflictionNotableToweringThreat"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Towering Threat", statOrder = { 7430 }, level = 68, group = "AfflictionNotableToweringThreat", weightKey = { "affliction_area_damage", "affliction_maximum_life", "default", }, weightVal = { 367, 146, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life" }, }, - ["AfflictionNotableAncestralEcho"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Ancestral Echo", statOrder = { 7170 }, level = 1, group = "AfflictionNotableAncestralEcho", weightKey = { "affliction_totem_damage", "default", }, weightVal = { 1477, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "attack", "caster", "speed" }, }, - ["AfflictionNotableAncestralReach"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Ancestral Reach", statOrder = { 7175 }, level = 1, group = "AfflictionNotableAncestralReach", weightKey = { "affliction_totem_damage", "default", }, weightVal = { 1477, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "speed" }, }, - ["AfflictionNotableAncestralMight"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Ancestral Might", statOrder = { 7173 }, level = 50, group = "AfflictionNotableAncestralMight", weightKey = { "affliction_totem_damage", "default", }, weightVal = { 738, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage" }, }, - ["AfflictionNotableAncestralPreservation__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Ancestral Preservation", statOrder = { 7174 }, level = 68, group = "AfflictionNotableAncestralPreservation", weightKey = { "affliction_totem_damage", "default", }, weightVal = { 277, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "chaos", "resistance" }, }, - ["AfflictionNotableSnaringSpirits"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Snaring Spirits", statOrder = { 7404 }, level = 50, group = "AfflictionNotableSnaringSpirits", weightKey = { "affliction_totem_damage", "default", }, weightVal = { 738, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage" }, }, - ["AfflictionNotableSleeplessSentries"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Sleepless Sentries", statOrder = { 7401 }, level = 68, group = "AfflictionNotableSleeplessSentries", weightKey = { "affliction_totem_damage", "default", }, weightVal = { 277, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { }, }, - ["AfflictionNotableAncestralGuidance_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Ancestral Guidance", statOrder = { 7171 }, level = 50, group = "AfflictionNotableAncestralGuidance", weightKey = { "affliction_totem_damage", "default", }, weightVal = { 738, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "speed" }, }, - ["AfflictionNotableAncestralInspiration__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Ancestral Inspiration", statOrder = { 7172 }, level = 68, group = "AfflictionNotableAncestralInspiration", weightKey = { "affliction_totem_damage", "affliction_spell_damage", "default", }, weightVal = { 277, 281, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster" }, }, - ["AfflictionNotableVitalFocus"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Vital Focus", statOrder = { 7444 }, level = 1, group = "AfflictionNotableVitalFocus", weightKey = { "affliction_channelling_skill_damage", "default", }, weightVal = { 1811, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "damage" }, }, - ["AfflictionNotableRapidInfusion_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Unrestrained Focus", statOrder = { 7371 }, level = 68, group = "AfflictionNotableRapidInfusion", weightKey = { "affliction_channelling_skill_damage", "default", }, weightVal = { 340, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "speed" }, }, - ["AfflictionNotableUnwaveringFocus"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Unwavering Focus", statOrder = { 7434 }, level = 50, group = "AfflictionNotableUnwaveringFocus", weightKey = { "affliction_channelling_skill_damage", "default", }, weightVal = { 906, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "damage" }, }, - ["AfflictionNotableEnduringFocus"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Enduring Focus", statOrder = { 7253 }, level = 75, group = "AfflictionNotableEnduringFocus", weightKey = { "affliction_channelling_skill_damage", "default", }, weightVal = { 113, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "endurance_charge", "damage" }, }, - ["AfflictionNotablePreciseFocus"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Precise Focus", statOrder = { 7354 }, level = 50, group = "AfflictionNotablePreciseFocus", weightKey = { "affliction_channelling_skill_damage", "default", }, weightVal = { 906, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "critical" }, }, - ["AfflictionNotableStoicFocus"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Stoic Focus", statOrder = { 7411 }, level = 1, group = "AfflictionNotableStoicFocus", weightKey = { "affliction_channelling_skill_damage", "affliction_chance_to_block", "default", }, weightVal = { 1811, 750, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block", "damage" }, }, - ["AfflictionNotableHexBreaker"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Hex Breaker", statOrder = { 7299 }, level = 75, group = "AfflictionNotableHexBreaker", weightKey = { "affliction_channelling_skill_damage", "default", }, weightVal = { 113, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "attack", "caster", "speed", "curse" }, }, - ["AfflictionNotableArcaneAdept_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Arcane Adept", statOrder = { 7178 }, level = 68, group = "AfflictionNotableArcaneAdept", weightKey = { "affliction_spell_damage", "default", }, weightVal = { 281, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster_damage", "damage", "attack", "caster", "speed" }, }, - ["AfflictionNotableDistilledPerfection_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Distilled Perfection", statOrder = { 7241 }, level = 1, group = "AfflictionNotableDistilledPerfection", weightKey = { "affliction_flask_duration", "affliction_life_and_mana_recovery_from_flasks", "default", }, weightVal = { 1079, 1778, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "flask", "resource", "life", "mana" }, }, - ["AfflictionNotableSpikedConcoction"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Spiked Concoction", statOrder = { 7407 }, level = 50, group = "AfflictionNotableSpikedConcoction", weightKey = { "affliction_flask_duration", "affliction_life_and_mana_recovery_from_flasks", "default", }, weightVal = { 539, 889, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "flask", "attack", "caster", "speed" }, }, - ["AfflictionNotableFasting"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Fasting", statOrder = { 7268 }, level = 50, group = "AfflictionNotableFasting", weightKey = { "affliction_flask_duration", "affliction_life_and_mana_recovery_from_flasks", "default", }, weightVal = { 539, 889, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "flask", "speed" }, }, - ["AfflictionNotableMendersWellspring__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Mender's Wellspring", statOrder = { 7330 }, level = 68, group = "AfflictionNotableMendersWellspring", weightKey = { "affliction_flask_duration", "affliction_life_and_mana_recovery_from_flasks", "default", }, weightVal = { 202, 333, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "flask", "resource", "life" }, }, - ["AfflictionNotableSpecialReserve"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Special Reserve", statOrder = { 7406 }, level = 1, group = "AfflictionNotableSpecialReserve", weightKey = { "affliction_flask_duration", "affliction_life_and_mana_recovery_from_flasks", "default", }, weightVal = { 1079, 1778, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "flask", "resource", "life", "damage" }, }, - ["AfflictionNotableNumbingElixir"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Numbing Elixir", statOrder = { 7339 }, level = 68, group = "AfflictionNotableNumbingElixir", weightKey = { "affliction_flask_duration", "affliction_life_and_mana_recovery_from_flasks", "default", }, weightVal = { 202, 333, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "flask", "caster", "ailment", "curse" }, }, - ["AfflictionNotableMobMentality"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Mob Mentality", statOrder = { 7333 }, level = 75, group = "AfflictionNotableMobMentality", weightKey = { "affliction_warcry_buff_effect", "default", }, weightVal = { 109, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "endurance_charge", "frenzy_charge", "power_charge", "damage", "attack" }, }, - ["AfflictionNotableCryWolf__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Cry Wolf", statOrder = { 7223 }, level = 68, group = "AfflictionNotableCryWolf", weightKey = { "affliction_warcry_buff_effect", "default", }, weightVal = { 327, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack" }, }, - ["AfflictionNotableHauntingShout"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Haunting Shout", statOrder = { 7294 }, level = 50, group = "AfflictionNotableHauntingShout", weightKey = { "affliction_warcry_buff_effect", "default", }, weightVal = { 873, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { }, }, - ["AfflictionNotableLeadByExample__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Lead By Example", statOrder = { 7314 }, level = 1, group = "AfflictionNotableLeadByExample", weightKey = { "affliction_warcry_buff_effect", "default", }, weightVal = { 1745, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "attribute" }, }, - ["AfflictionNotableProvocateur"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Provocateur", statOrder = { 7362 }, level = 50, group = "AfflictionNotableProvocateur", weightKey = { "affliction_warcry_buff_effect", "affliction_critical_chance", "default", }, weightVal = { 873, 457, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "critical" }, }, - ["AfflictionNotableWarningCall"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Warning Call", statOrder = { 7448 }, level = 68, group = "AfflictionNotableWarningCall", weightKey = { "affliction_warcry_buff_effect", "default", }, weightVal = { 327, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "defences", "armour" }, }, - ["AfflictionNotableRattlingBellow"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Rattling Bellow", statOrder = { 7372 }, level = 1, group = "AfflictionNotableRattlingBellow", weightKey = { "affliction_warcry_buff_effect", "default", }, weightVal = { 1745, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack", "attribute" }, }, - ["AfflictionNotableBloodscent"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Bloodscent", statOrder = { 7193 }, level = 75, group = "AfflictionNotableBloodscent", weightKey = { "affliction_axe_and_sword_damage", "default", }, weightVal = { 47, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "attack" }, }, - ["AfflictionNotableRunThrough"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Run Through", statOrder = { 7384 }, level = 68, group = "AfflictionNotableRunThrough", weightKey = { "affliction_axe_and_sword_damage", "default", }, weightVal = { 141, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AfflictionNotableWoundAggravation____"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Wound Aggravation", statOrder = { 7460 }, level = 1, group = "AfflictionNotableWoundAggravation", weightKey = { "affliction_axe_and_sword_damage", "affliction_physical_damage_over_time_multiplier", "default", }, weightVal = { 750, 686, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AfflictionNotableOverlord"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Overlord", statOrder = { 7343 }, level = 75, group = "AfflictionNotableOverlord", weightKey = { "affliction_mace_and_staff_damage", "default", }, weightVal = { 47, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack" }, }, - ["AfflictionNotableExpansiveMight"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Expansive Might", statOrder = { 7259 }, level = 68, group = "AfflictionNotableExpansiveMight", weightKey = { "affliction_mace_and_staff_damage", "affliction_area_damage", "default", }, weightVal = { 141, 367, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack" }, }, - ["AfflictionNotableWeightAdvantage_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Weight Advantage", statOrder = { 7450 }, level = 1, group = "AfflictionNotableWeightAdvantage", weightKey = { "affliction_mace_and_staff_damage", "default", }, weightVal = { 750, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack", "attribute" }, }, - ["AfflictionNotableWindup_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Wind-up", statOrder = { 7455 }, level = 68, group = "AfflictionNotableWindup", weightKey = { "affliction_dagger_and_claw_damage", "default", }, weightVal = { 151, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "power_charge", "damage", "attack", "critical" }, }, - ["AfflictionNotableFanofBlades_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Fan of Blades", statOrder = { 7266 }, level = 75, group = "AfflictionNotableFanofBlades", weightKey = { "affliction_dagger_and_claw_damage", "default", }, weightVal = { 51, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack" }, }, - ["AfflictionNotableDiseaseVector"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Disease Vector", statOrder = { 7238 }, level = 50, group = "AfflictionNotableDiseaseVector", weightKey = { "affliction_dagger_and_claw_damage", "default", }, weightVal = { 404, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["AfflictionNotableArcingShot__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Arcing Shot", statOrder = { 7181 }, level = 50, group = "AfflictionNotableArcingShot", weightKey = { "affliction_bow_damage", "default", }, weightVal = { 387, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack", "critical" }, }, - ["AfflictionNotableTemperedArrowheads"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Tempered Arrowheads", statOrder = { 7425 }, level = 50, group = "AfflictionNotableTemperedArrowheads", weightKey = { "affliction_bow_damage", "default", }, weightVal = { 387, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack", "ailment" }, }, - ["AfflictionNotableBroadside_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Broadside", statOrder = { 7199 }, level = 1, group = "AfflictionNotableBroadside", weightKey = { "affliction_bow_damage", "default", }, weightVal = { 774, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "attack" }, }, - ["AfflictionNotableExplosiveForce"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Explosive Force", statOrder = { 7262 }, level = 68, group = "AfflictionNotableExplosiveForce", weightKey = { "affliction_wand_damage", "default", }, weightVal = { 151, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos", "attack" }, }, - ["AfflictionNotableOpportunisticFusilade_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Opportunistic Fusilade", statOrder = { 7342 }, level = 1, group = "AfflictionNotableOpportunisticFusilade", weightKey = { "affliction_wand_damage", "default", }, weightVal = { 807, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack", "critical" }, }, - ["AfflictionNotableStormsHand"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Storm's Hand", statOrder = { 7414 }, level = 50, group = "AfflictionNotableStormsHand", weightKey = { "affliction_wand_damage", "default", }, weightVal = { 403, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning", "attack" }, }, - ["AfflictionNotableBattlefieldDominator"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Battlefield Dominator", statOrder = { 7186 }, level = 1, group = "AfflictionNotableBattlefieldDominator", weightKey = { "affliction_damage_with_two_handed_melee_weapons", "default", }, weightVal = { 604, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack" }, }, - ["AfflictionNotableMartialMastery"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Martial Mastery", statOrder = { 7322 }, level = 50, group = "AfflictionNotableMartialMastery", weightKey = { "affliction_damage_with_two_handed_melee_weapons", "default", }, weightVal = { 302, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "attack", "speed", "attribute" }, }, - ["AfflictionNotableSurefootedStriker_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Surefooted Striker", statOrder = { 7422 }, level = 50, group = "AfflictionNotableSurefootedStriker", weightKey = { "affliction_damage_with_two_handed_melee_weapons", "default", }, weightVal = { 302, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack", "critical" }, }, - ["AfflictionNotableGracefulExecution_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Graceful Execution", statOrder = { 7287 }, level = 1, group = "AfflictionNotableGracefulExecution", weightKey = { "affliction_damage_with_two_handed_melee_weapons", "default", }, weightVal = { 604, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "attack", "speed", "critical", "attribute" }, }, - ["AfflictionNotableBrutalInfamy"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Brutal Infamy", statOrder = { 7201 }, level = 50, group = "AfflictionNotableBrutalInfamy", weightKey = { "affliction_damage_with_two_handed_melee_weapons", "default", }, weightVal = { 302, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack" }, }, - ["AfflictionNotableFearsomeWarrior"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Fearsome Warrior", statOrder = { 7269 }, level = 68, group = "AfflictionNotableFearsomeWarrior", weightKey = { "affliction_damage_with_two_handed_melee_weapons", "default", }, weightVal = { 113, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack" }, }, - ["AfflictionNotableCombatRhythm"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Combat Rhythm", statOrder = { 7215 }, level = 50, group = "AfflictionNotableCombatRhythm", weightKey = { "affliction_attack_damage_while_dual_wielding_", "default", }, weightVal = { 312, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "attack", "speed" }, }, - ["AfflictionNotableHitandRun"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Hit and Run", statOrder = { 7301 }, level = 1, group = "AfflictionNotableHitandRun", weightKey = { "affliction_attack_damage_while_dual_wielding_", "affliction_chance_to_dodge_attacks", "default", }, weightVal = { 623, 1477, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack" }, }, - ["AfflictionNotableInsatiableKiller_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Insatiable Killer", statOrder = { 7307 }, level = 50, group = "AfflictionNotableInsatiableKiller", weightKey = { "affliction_attack_damage_while_dual_wielding_", "default", }, weightVal = { 312, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "frenzy_charge", "attack", "speed" }, }, - ["AfflictionNotableMageBane__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Mage Bane", statOrder = { 7319 }, level = 68, group = "AfflictionNotableMageBane", weightKey = { "affliction_attack_damage_while_dual_wielding_", "affliction_chance_to_block", "default", }, weightVal = { 117, 141, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block", "power_charge", "damage", "attack" }, }, - ["AfflictionNotableMartialMomentum"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Martial Momentum", statOrder = { 7323 }, level = 50, group = "AfflictionNotableMartialMomentum", weightKey = { "affliction_attack_damage_while_dual_wielding_", "default", }, weightVal = { 312, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack", "speed" }, }, - ["AfflictionNotableDeadlyRepartee"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Deadly Repartee", statOrder = { 7230 }, level = 1, group = "AfflictionNotableDeadlyRepartee", weightKey = { "affliction_attack_damage_while_dual_wielding_", "default", }, weightVal = { 623, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block", "damage", "attack", "critical" }, }, - ["AfflictionNotableQuickandDeadly_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Quick and Deadly", statOrder = { 7369 }, level = 68, group = "AfflictionNotableQuickandDeadly", weightKey = { "affliction_attack_damage_while_dual_wielding_", "default", }, weightVal = { 117, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack", "speed" }, }, - ["AfflictionNotableSmitetheWeak"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Smite the Weak", statOrder = { 7402 }, level = 1, group = "AfflictionNotableSmitetheWeak", weightKey = { "affliction_attack_damage_", "affliction_axe_and_sword_damage", "affliction_mace_and_staff_damage", "affliction_dagger_and_claw_damage", "affliction_bow_damage", "affliction_wand_damage", "affliction_damage_with_two_handed_melee_weapons", "affliction_attack_damage_while_dual_wielding_", "affliction_attack_damage_while_holding_a_shield", "default", }, weightVal = { 432, 750, 750, 808, 774, 807, 604, 623, 600, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "damage", "attack" }, }, - ["AfflictionNotableHeavyHitter"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Heavy Hitter", statOrder = { 7296 }, level = 50, group = "AfflictionNotableHeavyHitter", weightKey = { "affliction_attack_damage_", "affliction_axe_and_sword_damage", "affliction_mace_and_staff_damage", "affliction_dagger_and_claw_damage", "affliction_bow_damage", "affliction_wand_damage", "affliction_damage_with_two_handed_melee_weapons", "affliction_attack_damage_while_dual_wielding_", "affliction_attack_damage_while_holding_a_shield", "default", }, weightVal = { 216, 375, 375, 404, 387, 403, 302, 312, 300, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "damage", "attack" }, }, - ["AfflictionNotableMartialProwess"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Martial Prowess", statOrder = { 7324 }, level = 1, group = "AfflictionNotableMartialProwess", weightKey = { "affliction_attack_damage_", "affliction_axe_and_sword_damage", "affliction_mace_and_staff_damage", "affliction_dagger_and_claw_damage", "affliction_bow_damage", "affliction_wand_damage", "affliction_damage_with_two_handed_melee_weapons", "affliction_attack_damage_while_dual_wielding_", "affliction_attack_damage_while_holding_a_shield", "default", }, weightVal = { 432, 750, 750, 808, 774, 807, 604, 623, 600, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "damage", "attack", "speed" }, }, - ["AfflictionNotableCalamitous"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Calamitous", statOrder = { 7204 }, level = 50, group = "AfflictionNotableCalamitous", weightKey = { "affliction_attack_damage_", "affliction_axe_and_sword_damage", "affliction_mace_and_staff_damage", "affliction_dagger_and_claw_damage", "affliction_bow_damage", "affliction_wand_damage", "affliction_damage_with_two_handed_melee_weapons", "affliction_attack_damage_while_dual_wielding_", "affliction_attack_damage_while_holding_a_shield", "default", }, weightVal = { 216, 375, 375, 404, 387, 403, 302, 312, 300, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental", "fire", "cold", "lightning", "attack", "ailment" }, }, - ["AfflictionNotableDevastator"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Devastator", statOrder = { 7235 }, level = 75, group = "AfflictionNotableDevastator", weightKey = { "affliction_attack_damage_", "affliction_axe_and_sword_damage", "affliction_mace_and_staff_damage", "affliction_dagger_and_claw_damage", "affliction_bow_damage", "affliction_wand_damage", "affliction_damage_with_two_handed_melee_weapons", "affliction_attack_damage_while_dual_wielding_", "affliction_attack_damage_while_holding_a_shield", "default", }, weightVal = { 27, 47, 47, 51, 48, 50, 38, 39, 38, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AfflictionNotableFueltheFight"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Fuel the Fight", statOrder = { 7282 }, level = 1, group = "AfflictionNotableFueltheFight", weightKey = { "affliction_attack_damage_", "affliction_axe_and_sword_damage", "affliction_mace_and_staff_damage", "affliction_dagger_and_claw_damage", "affliction_bow_damage", "affliction_wand_damage", "affliction_damage_with_two_handed_melee_weapons", "affliction_attack_damage_while_dual_wielding_", "affliction_attack_damage_while_holding_a_shield", "default", }, weightVal = { 432, 750, 750, 808, 774, 807, 604, 623, 600, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "attack", "speed" }, }, - ["AfflictionNotableDrivetheDestruction__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Drive the Destruction", statOrder = { 7247 }, level = 1, group = "AfflictionNotableDrivetheDestruction", weightKey = { "affliction_attack_damage_", "affliction_axe_and_sword_damage", "affliction_mace_and_staff_damage", "affliction_dagger_and_claw_damage", "affliction_bow_damage", "affliction_wand_damage", "affliction_damage_with_two_handed_melee_weapons", "affliction_attack_damage_while_dual_wielding_", "affliction_attack_damage_while_holding_a_shield", "default", }, weightVal = { 432, 750, 750, 808, 774, 807, 604, 623, 600, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "damage", "attack" }, }, - ["AfflictionNotableFeedtheFury"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Feed the Fury", statOrder = { 7272 }, level = 50, group = "AfflictionNotableFeedtheFury", weightKey = { "affliction_attack_damage_", "affliction_axe_and_sword_damage", "affliction_mace_and_staff_damage", "affliction_dagger_and_claw_damage", "affliction_bow_damage", "affliction_wand_damage", "affliction_damage_with_two_handed_melee_weapons", "affliction_attack_damage_while_dual_wielding_", "affliction_attack_damage_while_holding_a_shield", "default", }, weightVal = { 216, 375, 375, 404, 387, 403, 302, 312, 300, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "damage", "attack", "speed" }, }, - ["AfflictionNotableSealMender"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Seal Mender", statOrder = { 7391 }, level = 75, group = "AfflictionNotableSealMender", weightKey = { "affliction_spell_damage", "default", }, weightVal = { 94, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { }, }, - ["AfflictionNotableConjuredWall"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Conjured Wall", statOrder = { 7218 }, level = 50, group = "AfflictionNotableConjuredWall", weightKey = { "affliction_spell_damage", "default", }, weightVal = { 750, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block", "caster_damage", "damage", "caster" }, }, - ["AfflictionNotableArcaneHeroism_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Arcane Heroism", statOrder = { 7179 }, level = 68, group = "AfflictionNotableArcaneHeroism", weightKey = { "affliction_spell_damage", "default", }, weightVal = { 281, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { }, }, - ["AfflictionNotablePracticedCaster"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Practiced Caster", statOrder = { 7352 }, level = 1, group = "AfflictionNotablePracticedCaster", weightKey = { "affliction_spell_damage", "default", }, weightVal = { 1500, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster_damage", "damage", "caster", "speed" }, }, - ["AfflictionNotableBurdenProjection"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Burden Projection", statOrder = { 7202 }, level = 50, group = "AfflictionNotableBurdenProjection", weightKey = { "affliction_spell_damage", "default", }, weightVal = { 750, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster_damage", "damage", "caster", "speed" }, }, - ["AfflictionNotableThaumophage"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Thaumophage", statOrder = { 7426 }, level = 50, group = "AfflictionNotableThaumophage", weightKey = { "affliction_spell_damage", "default", }, weightVal = { 750, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "caster_damage", "defences", "energy_shield", "damage", "caster" }, }, - ["AfflictionNotableEssenceRush"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Essence Rush", statOrder = { 7256 }, level = 50, group = "AfflictionNotableEssenceRush", weightKey = { "affliction_spell_damage", "default", }, weightVal = { 750, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "caster_damage", "defences", "energy_shield", "damage", "attack", "caster", "speed" }, }, - ["AfflictionNotableSapPsyche"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Sap Psyche", statOrder = { 7387 }, level = 68, group = "AfflictionNotableSapPsyche", weightKey = { "affliction_spell_damage", "default", }, weightVal = { 281, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "caster_damage", "resource", "mana", "defences", "energy_shield", "damage", "caster" }, }, - ["AfflictionNotableSadist_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Sadist", statOrder = { 7385 }, level = 68, group = "AfflictionNotableSadist", weightKey = { "affliction_elemental_damage", "affliction_lightning_damage", "affliction_cold_damage", "affliction_fire_damage", "default", }, weightVal = { 281, 136, 95, 89, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["AfflictionNotableCorrosiveElements"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Corrosive Elements", statOrder = { 7221 }, level = 75, group = "AfflictionNotableCorrosiveElements", weightKey = { "affliction_elemental_damage", "affliction_lightning_damage", "affliction_cold_damage", "affliction_fire_damage", "default", }, weightVal = { 94, 45, 32, 30, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["AfflictionNotableDoryanisLesson_"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Doryani's Lesson", statOrder = { 7244 }, level = 68, group = "AfflictionNotableDoryanisLesson", weightKey = { "affliction_elemental_damage", "affliction_lightning_damage", "affliction_cold_damage", "affliction_fire_damage", "default", }, weightVal = { 281, 136, 95, 89, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "elemental_damage", "resource", "life", "damage", "elemental" }, }, - ["AfflictionNotableDisorientingDisplay____"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Disorienting Display", statOrder = { 7239 }, level = 50, group = "AfflictionNotableDisorientingDisplay", weightKey = { "affliction_elemental_damage", "affliction_lightning_damage", "affliction_cold_damage", "affliction_fire_damage", "default", }, weightVal = { 750, 364, 253, 238, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["AfflictionNotablePrismaticHeart__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Prismatic Heart", statOrder = { 7360 }, level = 1, group = "AfflictionNotablePrismaticHeart", weightKey = { "affliction_elemental_damage", "affliction_lightning_damage", "affliction_cold_damage", "affliction_fire_damage", "affliction_lightning_resistance", "affliction_cold_resistance", "affliction_fire_resistance", "default", }, weightVal = { 1500, 727, 505, 475, 1371, 1371, 1315, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "resistance" }, }, - ["AfflictionNotableWidespreadDestruction"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Widespread Destruction", statOrder = { 7453 }, level = 1, group = "AfflictionNotableWidespreadDestruction", weightKey = { "affliction_elemental_damage", "affliction_lightning_damage", "affliction_cold_damage", "affliction_fire_damage", "default", }, weightVal = { 1500, 727, 505, 475, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["AfflictionNotableMasterofFire"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Master of Fire", statOrder = { 7327 }, level = 75, group = "AfflictionNotableMasterofFire", weightKey = { "affliction_fire_damage", "affliction_fire_damage_over_time_multiplier", "default", }, weightVal = { 30, 46, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { }, }, - ["AfflictionNotableSmokingRemains"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Smoking Remains", statOrder = { 7403 }, level = 50, group = "AfflictionNotableSmokingRemains", weightKey = { "affliction_fire_damage", "affliction_fire_damage_over_time_multiplier", "default", }, weightVal = { 238, 366, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["AfflictionNotableCremator"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Cremator", statOrder = { 7222 }, level = 50, group = "AfflictionNotableCremator", weightKey = { "affliction_fire_damage", "affliction_fire_damage_over_time_multiplier", "default", }, weightVal = { 238, 366, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["AfflictionNotableSnowstorm"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Snowstorm", statOrder = { 7405 }, level = 50, group = "AfflictionNotableSnowstorm", weightKey = { "affliction_lightning_damage", "affliction_cold_damage", "default", }, weightVal = { 364, 253, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "lightning" }, }, - ["AfflictionNotableStormDrinker___"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Storm Drinker", statOrder = { 7412 }, level = 1, group = "AfflictionNotableStormDrinker", weightKey = { "affliction_lightning_damage", "default", }, weightVal = { 727, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "defences", "energy_shield", "damage", "elemental", "lightning" }, }, - ["AfflictionNotableParalysis"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Paralysis", statOrder = { 7346 }, level = 50, group = "AfflictionNotableParalysis", weightKey = { "affliction_lightning_damage", "default", }, weightVal = { 364, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["AfflictionNotableSupercharge"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Supercharge", statOrder = { 7421 }, level = 75, group = "AfflictionNotableSupercharge", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["AfflictionNotableBlanketedSnow_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Blanketed Snow", statOrder = { 7188 }, level = 68, group = "AfflictionNotableBlanketedSnow", weightKey = { "affliction_cold_damage", "default", }, weightVal = { 95, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["AfflictionNotableColdtotheCore"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Cold to the Core", statOrder = { 7214 }, level = 68, group = "AfflictionNotableColdtotheCore", weightKey = { "affliction_cold_damage", "default", }, weightVal = { 95, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["AfflictionNotableColdBloodedKiller_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Cold-Blooded Killer", statOrder = { 7212 }, level = 50, group = "AfflictionNotableColdBloodedKiller", weightKey = { "affliction_cold_damage", "affliction_cold_damage_over_time_multiplier", "default", }, weightVal = { 253, 390, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "resource", "life", "damage", "elemental", "cold" }, }, - ["AfflictionNotableTouchofCruelty_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Touch of Cruelty", statOrder = { 7429 }, level = 1, group = "AfflictionNotableTouchofCruelty", weightKey = { "affliction_chaos_damage", "default", }, weightVal = { 519, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["AfflictionNotableUnwaveringlyEvil"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Unwaveringly Evil", statOrder = { 7435 }, level = 1, group = "AfflictionNotableUnwaveringlyEvil", weightKey = { "affliction_chaos_damage", "affliction_chaos_damage_over_time_multiplier", "default", }, weightVal = { 519, 696, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["AfflictionNotableUnspeakableGifts"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Unspeakable Gifts", statOrder = { 7432 }, level = 75, group = "AfflictionNotableUnspeakableGifts", weightKey = { "affliction_chaos_damage", "default", }, weightVal = { 32, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["AfflictionNotableDarkIdeation"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Dark Ideation", statOrder = { 7227 }, level = 68, group = "AfflictionNotableDarkIdeation", weightKey = { "affliction_chaos_damage", "affliction_chaos_damage_over_time_multiplier", "default", }, weightVal = { 97, 130, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["AfflictionNotableUnholyGrace_"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Unholy Grace", statOrder = { 7431 }, level = 1, group = "AfflictionNotableUnholyGrace", weightKey = { "affliction_chaos_damage", "default", }, weightVal = { 519, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "attack", "caster", "speed" }, }, - ["AfflictionNotableWickedPall_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Wicked Pall", statOrder = { 7452 }, level = 50, group = "AfflictionNotableWickedPall", weightKey = { "affliction_chaos_damage", "affliction_chaos_damage_over_time_multiplier", "default", }, weightVal = { 259, 348, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["AfflictionNotableRenewal"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Renewal", statOrder = { 7377 }, level = 50, group = "AfflictionNotableRenewal", weightKey = { "affliction_minion_damage", "affliction_minion_life", "default", }, weightVal = { 500, 716, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "damage", "minion" }, }, - ["AfflictionNotableRazeandPillage_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Raze and Pillage", statOrder = { 7373 }, level = 68, group = "AfflictionNotableRazeandPillage", weightKey = { "affliction_minion_damage", "default", }, weightVal = { 188, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "physical_damage", "elemental_damage", "bleed", "damage", "physical", "elemental", "fire", "minion", "ailment" }, }, - ["AfflictionNotableRottenClaws"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Rotten Claws", statOrder = { 7383 }, level = 50, group = "AfflictionNotableRottenClaws", weightKey = { "affliction_minion_damage", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "physical", "attack", "minion" }, }, - ["AfflictionNotableCalltotheSlaughter"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Call to the Slaughter", statOrder = { 7205 }, level = 1, group = "AfflictionNotableCalltotheSlaughter", weightKey = { "affliction_minion_damage", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "caster_damage", "damage", "attack", "caster", "speed", "minion" }, }, - ["AfflictionNotableSkeletalAtrophy"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Skeletal Atrophy", statOrder = { 7399 }, level = 68, group = "AfflictionNotableSkeletalAtrophy", weightKey = { "affliction_minion_damage", "default", }, weightVal = { 188, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos", "minion" }, }, - ["AfflictionNotableHulkingCorpses"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Hulking Corpses", statOrder = { 7305 }, level = 50, group = "AfflictionNotableHulkingCorpses", weightKey = { "affliction_minion_life", "default", }, weightVal = { 716, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "minion" }, }, - ["AfflictionNotableViciousBite"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Vicious Bite", statOrder = { 7439 }, level = 75, group = "AfflictionNotableViciousBite", weightKey = { "affliction_minion_damage", "default", }, weightVal = { 63, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "damage", "minion", "critical" }, }, - ["AfflictionNotablePrimordialBond"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Primordial Bond", statOrder = { 7357 }, level = 68, group = "AfflictionNotablePrimordialBond", weightKey = { "affliction_minion_damage", "default", }, weightVal = { 188, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "resource", "life", "damage", "minion" }, }, - ["AfflictionNotableBlowback"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Blowback", statOrder = { 7194 }, level = 50, group = "AfflictionNotableBlowback", weightKey = { "affliction_fire_damage_over_time_multiplier", "default", }, weightVal = { 366, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, - ["AfflictionNotableFantheFlames_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Fan the Flames", statOrder = { 7267 }, level = 68, group = "AfflictionNotableFantheFlames", weightKey = { "affliction_fire_damage_over_time_multiplier", "default", }, weightVal = { 137, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental", "fire", "ailment" }, }, - ["AfflictionNotableCookedAlive"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Cooked Alive", statOrder = { 7220 }, level = 68, group = "AfflictionNotableCookedAlive", weightKey = { "affliction_fire_damage_over_time_multiplier", "default", }, weightVal = { 137, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, - ["AfflictionNotableBurningBright"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Burning Bright", statOrder = { 7203 }, level = 50, group = "AfflictionNotableBurningBright", weightKey = { "affliction_fire_damage_over_time_multiplier", "affliction_fire_damage", "default", }, weightVal = { 366, 238, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["AfflictionNotableWrappedinFlame_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Wrapped in Flame", statOrder = { 7461 }, level = 68, group = "AfflictionNotableWrappedinFlame", weightKey = { "affliction_fire_damage_over_time_multiplier", "default", }, weightVal = { 137, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["AfflictionNotableVividHues"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Vivid Hues", statOrder = { 7445 }, level = 50, group = "AfflictionNotableVividHues", weightKey = { "affliction_physical_damage_over_time_multiplier", "default", }, weightVal = { 343, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "bleed", "resource", "life", "physical", "attack", "ailment" }, }, - ["AfflictionNotableRend"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Rend", statOrder = { 7376 }, level = 50, group = "AfflictionNotableRend", weightKey = { "affliction_physical_damage_over_time_multiplier", "default", }, weightVal = { 343, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["AfflictionNotableDisorientingWounds"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Disorienting Wounds", statOrder = { 7240 }, level = 1, group = "AfflictionNotableDisorientingWounds", weightKey = { "affliction_physical_damage_over_time_multiplier", "default", }, weightVal = { 686, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["AfflictionNotableCompoundInjury"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Compound Injury", statOrder = { 7216 }, level = 50, group = "AfflictionNotableCompoundInjury", weightKey = { "affliction_physical_damage_over_time_multiplier", "default", }, weightVal = { 343, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["AfflictionNotableBloodArtist"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Blood Artist", statOrder = { 7192 }, level = 75, group = "AfflictionNotableBloodArtist", weightKey = { "affliction_physical_damage_over_time_multiplier", "default", }, weightVal = { 129, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "bleed", "physical", "ailment" }, }, - ["AfflictionNotablePhlebotomist"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Phlebotomist", statOrder = { 7349 }, level = 50, group = "AfflictionNotablePhlebotomist", weightKey = { "affliction_physical_damage_over_time_multiplier", "default", }, weightVal = { 343, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "bleed", "physical", "critical", "ailment" }, }, - ["AfflictionNotableSepticSpells"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Septic Spells", statOrder = { 7395 }, level = 50, group = "AfflictionNotableSepticSpells", weightKey = { "affliction_chaos_damage_over_time_multiplier", "default", }, weightVal = { 348, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster_damage", "chaos_damage", "poison", "damage", "chaos", "caster", "speed", "ailment" }, }, - ["AfflictionNotableLowTolerance"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Low Tolerance", statOrder = { 7318 }, level = 68, group = "AfflictionNotableLowTolerance", weightKey = { "affliction_chaos_damage_over_time_multiplier", "default", }, weightVal = { 130, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["AfflictionNotableSteadyTorment"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Steady Torment", statOrder = { 7410 }, level = 68, group = "AfflictionNotableSteadyTorment", weightKey = { "affliction_chaos_damage_over_time_multiplier", "affliction_physical_damage_over_time_multiplier", "default", }, weightVal = { 130, 129, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "physical_damage", "chaos_damage", "bleed", "poison", "damage", "physical", "chaos", "attack", "ailment", "ailment" }, }, - ["AfflictionNotableEternalSuffering"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Eternal Suffering", statOrder = { 7257 }, level = 50, group = "AfflictionNotableEternalSuffering", weightKey = { "affliction_chaos_damage_over_time_multiplier", "default", }, weightVal = { 348, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["AfflictionNotableEldritchInspiration"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Eldritch Inspiration", statOrder = { 7248 }, level = 50, group = "AfflictionNotableEldritchInspiration", weightKey = { "affliction_chaos_damage_over_time_multiplier", "affliction_maximum_mana", "default", }, weightVal = { 348, 466, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "chaos_damage", "resource", "mana", "damage", "chaos" }, }, - ["AfflictionNotableWastingAffliction"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Wasting Affliction", statOrder = { 7449 }, level = 68, group = "AfflictionNotableWastingAffliction", weightKey = { "affliction_damage_over_time_multiplier", "affliction_cold_damage_over_time_multiplier", "affliction_physical_damage_over_time_multiplier", "affliction_fire_damage_over_time_multiplier", "affliction_chaos_damage_over_time_multiplier", "default", }, weightVal = { 222, 178, 129, 137, 130, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "ailment" }, }, - ["AfflictionNotableHaemorrhage"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Haemorrhage", statOrder = { 7293 }, level = 50, group = "AfflictionNotableHaemorrhage", weightKey = { "affliction_damage_over_time_multiplier", "affliction_cold_damage_over_time_multiplier", "affliction_physical_damage_over_time_multiplier", "affliction_fire_damage_over_time_multiplier", "affliction_chaos_damage_over_time_multiplier", "affliction_critical_chance", "default", }, weightVal = { 593, 475, 343, 366, 348, 457, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "critical", "ailment" }, }, - ["AfflictionNotableFlowofLife_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Flow of Life", statOrder = { 7278 }, level = 68, group = "AfflictionNotableFlowofLife", weightKey = { "affliction_damage_over_time_multiplier", "affliction_cold_damage_over_time_multiplier", "affliction_physical_damage_over_time_multiplier", "affliction_fire_damage_over_time_multiplier", "affliction_chaos_damage_over_time_multiplier", "affliction_maximum_life", "default", }, weightVal = { 222, 178, 129, 137, 130, 146, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "damage" }, }, - ["AfflictionNotableExposureTherapy_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Exposure Therapy", statOrder = { 7263 }, level = 1, group = "AfflictionNotableExposureTherapy", weightKey = { "affliction_damage_over_time_multiplier", "affliction_cold_damage_over_time_multiplier", "affliction_physical_damage_over_time_multiplier", "affliction_fire_damage_over_time_multiplier", "affliction_chaos_damage_over_time_multiplier", "affliction_chaos_resistance", "default", }, weightVal = { 1185, 950, 686, 733, 696, 2341, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "chaos_damage", "damage", "chaos", "resistance" }, }, - ["AfflictionNotableBrushwithDeath"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Brush with Death", statOrder = { 7200 }, level = 68, group = "AfflictionNotableBrushwithDeath", weightKey = { "affliction_damage_over_time_multiplier", "affliction_cold_damage_over_time_multiplier", "affliction_physical_damage_over_time_multiplier", "affliction_fire_damage_over_time_multiplier", "affliction_chaos_damage_over_time_multiplier", "affliction_maximum_life", "affliction_maximum_energy_shield", "default", }, weightVal = { 222, 178, 129, 137, 130, 146, 189, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "defences", "energy_shield", "damage" }, }, - ["AfflictionNotableVileReinvigoration_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Vile Reinvigoration", statOrder = { 7443 }, level = 50, group = "AfflictionNotableVileReinvigoration", weightKey = { "affliction_damage_over_time_multiplier", "affliction_cold_damage_over_time_multiplier", "affliction_physical_damage_over_time_multiplier", "affliction_fire_damage_over_time_multiplier", "affliction_chaos_damage_over_time_multiplier", "affliction_maximum_energy_shield", "default", }, weightVal = { 593, 475, 343, 366, 348, 505, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "defences", "energy_shield", "damage" }, }, - ["AfflictionNotableCirclingOblivion"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Circling Oblivion", statOrder = { 7210 }, level = 1, group = "AfflictionNotableCirclingOblivion", weightKey = { "affliction_damage_over_time_multiplier", "affliction_cold_damage_over_time_multiplier", "affliction_physical_damage_over_time_multiplier", "affliction_fire_damage_over_time_multiplier", "affliction_chaos_damage_over_time_multiplier", "default", }, weightVal = { 1185, 950, 686, 733, 696, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "ailment" }, }, - ["AfflictionNotableBrewedforPotency"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Brewed for Potency", statOrder = { 7198 }, level = 1, group = "AfflictionNotableBrewedforPotency", weightKey = { "affliction_damage_over_time_multiplier", "affliction_cold_damage_over_time_multiplier", "affliction_physical_damage_over_time_multiplier", "affliction_fire_damage_over_time_multiplier", "affliction_chaos_damage_over_time_multiplier", "affliction_flask_duration", "default", }, weightVal = { 1185, 950, 686, 733, 696, 1079, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "flask", "resource", "life", "mana", "damage" }, }, - ["AfflictionNotableAstonishingAffliction"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Astonishing Affliction", statOrder = { 7183 }, level = 1, group = "AfflictionNotableAstonishingAffliction", weightKey = { "affliction_effect_of_non-damaging_ailments", "default", }, weightVal = { 1627, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "ailment" }, }, - ["AfflictionNotableColdConduction__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Cold Conduction", statOrder = { 7213 }, level = 68, group = "AfflictionNotableColdConduction", weightKey = { "affliction_effect_of_non-damaging_ailments", "default", }, weightVal = { 305, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental", "cold", "lightning", "ailment" }, }, - ["AfflictionNotableInspiredOppression"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Inspired Oppression", statOrder = { 7308 }, level = 75, group = "AfflictionNotableInspiredOppression", weightKey = { "affliction_effect_of_non-damaging_ailments", "affliction_elemental_damage", "affliction_lightning_damage", "affliction_cold_damage", "default", }, weightVal = { 102, 94, 45, 32, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "resource", "mana", "damage", "elemental", "ailment" }, }, - ["AfflictionNotableChillingPresence"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Chilling Presence", statOrder = { 7208 }, level = 75, group = "AfflictionNotableChillingPresence", weightKey = { "affliction_effect_of_non-damaging_ailments", "affliction_cold_damage_over_time_multiplier", "default", }, weightVal = { 102, 59, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental", "cold", "ailment" }, }, - ["AfflictionNotableDeepChill"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Deep Chill", statOrder = { 7231 }, level = 1, group = "AfflictionNotableDeepChill", weightKey = { "affliction_effect_of_non-damaging_ailments", "affliction_cold_damage", "affliction_cold_damage_over_time_multiplier", "default", }, weightVal = { 1627, 505, 950, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "ailment" }, }, - ["AfflictionNotableBlastFreeze_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Blast-Freeze", statOrder = { 7189 }, level = 68, group = "AfflictionNotableBlastFreeze", weightKey = { "affliction_cold_damage", "affliction_cold_damage_over_time_multiplier", "affliction_effect_of_non-damaging_ailments", "default", }, weightVal = { 95, 178, 305, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "ailment" }, }, - ["AfflictionNotableThunderstruck"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Thunderstruck", statOrder = { 7427 }, level = 50, group = "AfflictionNotableThunderstruck", weightKey = { "affliction_lightning_damage", "default", }, weightVal = { 364, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "critical" }, }, - ["AfflictionNotableStormrider"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Stormrider", statOrder = { 7413 }, level = 68, group = "AfflictionNotableStormrider", weightKey = { "affliction_effect_of_non-damaging_ailments", "affliction_cold_damage", "affliction_lightning_damage", "default", }, weightVal = { 305, 95, 136, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "power_charge", "elemental_damage", "damage", "elemental", "cold", "lightning" }, }, - ["AfflictionNotableOvershock"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Overshock", statOrder = { 7344 }, level = 50, group = "AfflictionNotableOvershock", weightKey = { "affliction_lightning_damage", "affliction_effect_of_non-damaging_ailments", "default", }, weightVal = { 364, 814, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental", "lightning", "ailment" }, }, - ["AfflictionNotableEvilEye"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Evil Eye", statOrder = { 7258 }, level = 1, group = "AfflictionNotableEvilEye", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "default", }, weightVal = { 706, 706, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster_damage", "damage", "caster", "curse" }, }, - ["AfflictionNotableWhispersofDeath"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Evil Eye", statOrder = { 7451 }, level = 1, group = "AfflictionNotableWhispersofDeath", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster", "curse" }, }, - ["AfflictionNotableWardbreaker_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Forbidden Words", statOrder = { 7447 }, level = 68, group = "AfflictionNotableWardbreaker", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "caster", "curse" }, }, - ["AfflictionNotableDarkDiscourse"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Doedre's Spite", statOrder = { 7226 }, level = 50, group = "AfflictionNotableDarkDiscourse", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "default", }, weightVal = { 353, 353, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster", "curse" }, }, - ["AfflictionNotableVictimMaker"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Victim Maker", statOrder = { 7442 }, level = 50, group = "AfflictionNotableVictimMaker", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "default", }, weightVal = { 353, 353, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster", "speed", "curse" }, }, - ["AfflictionNotableMasterofFear"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Master of Fear", statOrder = { 7326 }, level = 68, group = "AfflictionNotableMasterofFear", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster", "curse" }, }, - ["AfflictionNotableWishforDeath_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Wish for Death", statOrder = { 7458 }, level = 50, group = "AfflictionNotableWishforDeath", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster", "curse" }, }, - ["AfflictionNotableLordofDrought_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Lord of Drought", statOrder = { 7276 }, level = 50, group = "AfflictionNotableLordofDrought", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "affliction_fire_damage", "default", }, weightVal = { 353, 353, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster", "curse" }, }, - ["AfflictionNotableBlizzardCaller_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Blizzard Caller", statOrder = { 7281 }, level = 50, group = "AfflictionNotableBlizzardCaller", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "affliction_cold_damage", "default", }, weightVal = { 353, 353, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster", "critical", "curse" }, }, - ["AfflictionNotableTempttheStorm"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Tempt the Storm", statOrder = { 7316 }, level = 50, group = "AfflictionNotableTempttheStorm", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "affliction_lightning_damage", "default", }, weightVal = { 353, 353, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster", "speed", "curse" }, }, - ["AfflictionNotableMiseryEverlasting"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Misery Everlasting", statOrder = { 7233 }, level = 50, group = "AfflictionNotableMiseryEverlasting", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "affliction_chaos_damage", "default", }, weightVal = { 353, 353, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster", "curse" }, }, - ["AfflictionNotableExploitWeakness_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Exploit Weakness", statOrder = { 7297 }, level = 50, group = "AfflictionNotableExploitWeakness", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "affliction_physical_damage", "default", }, weightVal = { 353, 353, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster", "curse" }, }, - ["AfflictionNotableHoundsMark"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Hound's Mark", statOrder = { 7304 }, level = 1, group = "AfflictionNotableHoundsMark", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "default", }, weightVal = { 706, 706, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster_damage", "damage", "caster", "curse" }, }, - ["AfflictionNotableDoedresGluttony"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Doedre's Gluttony", statOrder = { 7243 }, level = 50, group = "AfflictionNotableDoedresGluttony", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "default", }, weightVal = { 353, 353, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster_damage", "damage", "caster", "curse" }, }, - ["AfflictionNotableDoedresApathy____"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Doedre's Apathy", statOrder = { 7242 }, level = 68, group = "AfflictionNotableDoedresApathy", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "default", }, weightVal = { 132, 132, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster", "curse" }, }, - ["AfflictionNotableMasterOfTheMaelstrom_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Master of the Maelstrom", statOrder = { 7328 }, level = 50, group = "AfflictionNotableMasterOfTheMaelstrom", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "default", }, weightVal = { 353, 353, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental", "caster", "ailment", "curse" }, }, - ["AfflictionNotableHeraldry"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Heraldry", statOrder = { 7298 }, level = 75, group = "AfflictionNotableHeraldry", weightKey = { "affliction_damage_while_you_have_a_herald", "affliction_minion_damage_while_you_have_a_herald", "default", }, weightVal = { 118, 158, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { }, }, - ["AfflictionNotableEndbringer"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Endbringer", statOrder = { 7251 }, level = 68, group = "AfflictionNotableEndbringer", weightKey = { "affliction_damage_while_you_have_a_herald", "affliction_minion_damage_while_you_have_a_herald", "default", }, weightVal = { 353, 474, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage" }, }, - ["AfflictionNotableCultLeader_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Cult-Leader", statOrder = { 7224 }, level = 1, group = "AfflictionNotableCultLeader", weightKey = { "affliction_minion_damage_while_you_have_a_herald", "default", }, weightVal = { 2526, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "minion" }, }, - ["AfflictionNotableEmpoweredEnvoy_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Empowered Envoy", statOrder = { 7250 }, level = 1, group = "AfflictionNotableEmpoweredEnvoy", weightKey = { "affliction_damage_while_you_have_a_herald", "default", }, weightVal = { 1882, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage" }, }, - ["AfflictionNotableDarkMessenger"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Dark Messenger", statOrder = { 7228 }, level = 50, group = "AfflictionNotableDarkMessenger", weightKey = { "affliction_damage_while_you_have_a_herald", "default", }, weightVal = { 941, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage" }, }, - ["AfflictionNotableAgentofDestruction"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Agent of Destruction", statOrder = { 7167 }, level = 1, group = "AfflictionNotableAgentofDestruction", weightKey = { "affliction_damage_while_you_have_a_herald", "default", }, weightVal = { 1882, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "cold", "lightning", "ailment" }, }, - ["AfflictionNotableLastingImpression_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Lasting Impression", statOrder = { 7313 }, level = 68, group = "AfflictionNotableLastingImpression", weightKey = { "affliction_damage_while_you_have_a_herald", "affliction_minion_damage_while_you_have_a_herald", "default", }, weightVal = { 353, 474, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage" }, }, - ["AfflictionNotableSelfFulfillingProphecy_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Self-Fulfilling Prophecy", statOrder = { 7394 }, level = 68, group = "AfflictionNotableSelfFulfillingProphecy", weightKey = { "affliction_damage_while_you_have_a_herald", "default", }, weightVal = { 353, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "critical" }, }, - ["AfflictionNotableInvigoratingPortents"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Invigorating Portents", statOrder = { 7311 }, level = 50, group = "AfflictionNotableInvigoratingPortents", weightKey = { "affliction_minion_damage_while_you_have_a_herald", "default", }, weightVal = { 1263, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "speed", "minion" }, }, - ["AfflictionNotablePureAgony_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Pure Agony", statOrder = { 7363 }, level = 68, group = "AfflictionNotablePureAgony", weightKey = { "affliction_minion_damage_while_you_have_a_herald", "default", }, weightVal = { 474, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "minion" }, }, - ["AfflictionNotableDisciples_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Disciples", statOrder = { 7236 }, level = 68, group = "AfflictionNotableDisciples", weightKey = { "affliction_minion_damage_while_you_have_a_herald", "default", }, weightVal = { 474, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "speed", "minion" }, }, - ["AfflictionNotableDreadMarch_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Dread March", statOrder = { 7246 }, level = 1, group = "AfflictionNotableDreadMarch", weightKey = { "affliction_minion_life", "default", }, weightVal = { 1433, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "chaos", "resistance", "speed", "minion" }, }, - ["AfflictionNotableBlessedRebirth"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Blessed Rebirth", statOrder = { 7191 }, level = 68, group = "AfflictionNotableBlessedRebirth", weightKey = { "affliction_minion_life", "default", }, weightVal = { 269, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "minion" }, }, - ["AfflictionNotableLifefromDeath_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Life from Death", statOrder = { 7315 }, level = 50, group = "AfflictionNotableLifefromDeath", weightKey = { "affliction_minion_life", "default", }, weightVal = { 716, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "minion" }, }, - ["AfflictionNotableFeastingFiends"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Feasting Fiends", statOrder = { 7271 }, level = 1, group = "AfflictionNotableFeastingFiends", weightKey = { "affliction_minion_life", "affliction_minion_damage", "default", }, weightVal = { 1433, 1000, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "damage", "minion" }, }, - ["AfflictionNotableBodyguards"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Bodyguards", statOrder = { 7195 }, level = 50, group = "AfflictionNotableBodyguards", weightKey = { "affliction_minion_life", "default", }, weightVal = { 716, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "minion" }, }, - ["AfflictionNotableFollowThrough_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Follow-Through", statOrder = { 7279 }, level = 68, group = "AfflictionNotableFollowThrough", weightKey = { "affliction_projectile_damage", "default", }, weightVal = { 333, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage" }, }, - ["AfflictionNotableStreamlined"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Streamlined", statOrder = { 7415 }, level = 1, group = "AfflictionNotableStreamlined", weightKey = { "affliction_projectile_damage", "default", }, weightVal = { 1778, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "speed" }, }, - ["AfflictionNotableShriekingBolts_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Shrieking Bolts", statOrder = { 7398 }, level = 50, group = "AfflictionNotableShriekingBolts", weightKey = { "affliction_projectile_damage", "default", }, weightVal = { 889, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage" }, }, - ["AfflictionNotableEyetoEye"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Eye to Eye", statOrder = { 7265 }, level = 50, group = "AfflictionNotableEyetoEye", weightKey = { "affliction_projectile_damage", "default", }, weightVal = { 889, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage" }, }, - ["AfflictionNotableRepeater"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Repeater", statOrder = { 7378 }, level = 1, group = "AfflictionNotableRepeater", weightKey = { "affliction_projectile_damage", "default", }, weightVal = { 1778, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster_damage", "damage", "attack", "caster", "speed" }, }, - ["AfflictionNotableAerodynamics"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Aerodynamics", statOrder = { 7166 }, level = 68, group = "AfflictionNotableAerodynamics", weightKey = { "affliction_projectile_damage", "default", }, weightVal = { 333, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "speed" }, }, - ["AfflictionNotableChipAway"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Chip Away", statOrder = { 7209 }, level = 50, group = "AfflictionNotableChipAway", weightKey = { "affliction_brand_damage", "default", }, weightVal = { 1171, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster", "speed" }, }, - ["AfflictionNotableSeekerRunes"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Seeker Runes", statOrder = { 7393 }, level = 68, group = "AfflictionNotableSeekerRunes", weightKey = { "affliction_brand_damage", "default", }, weightVal = { 439, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster_damage", "damage", "caster" }, }, - ["AfflictionNotableRemarkable"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Remarkable", statOrder = { 7375 }, level = 68, group = "AfflictionNotableRemarkable", weightKey = { "affliction_brand_damage", "default", }, weightVal = { 439, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster", "speed" }, }, - ["AfflictionNotableBrandLoyalty"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Brand Loyalty", statOrder = { 7197 }, level = 1, group = "AfflictionNotableBrandLoyalty", weightKey = { "affliction_brand_damage", "default", }, weightVal = { 2341, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster_damage", "damage", "caster" }, }, - ["AfflictionNotableHolyConquest"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Holy Conquest", statOrder = { 7303 }, level = 50, group = "AfflictionNotableHolyConquest", weightKey = { "affliction_brand_damage", "default", }, weightVal = { 1171, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster", "speed" }, }, - ["AfflictionNotableGrandDesign_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Grand Design", statOrder = { 7289 }, level = 68, group = "AfflictionNotableGrandDesign", weightKey = { "affliction_brand_damage", "default", }, weightVal = { 439, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster", "speed" }, }, - ["AfflictionNotableSetandForget_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Set and Forget", statOrder = { 7396 }, level = 50, group = "AfflictionNotableSetandForget", weightKey = { "affliction_trap_and_mine_damage", "default", }, weightVal = { 980, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage" }, }, - ["AfflictionNotableExpertSabotage"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Expert Sabotage", statOrder = { 7261 }, level = 50, group = "AfflictionNotableExpertSabotage", weightKey = { "affliction_trap_and_mine_damage", "default", }, weightVal = { 980, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "speed" }, }, - ["AfflictionNotableGuerillaTactics"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Guerilla Tactics", statOrder = { 7292 }, level = 1, group = "AfflictionNotableGuerillaTactics", weightKey = { "affliction_trap_and_mine_damage", "default", }, weightVal = { 1959, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "speed" }, }, - ["AfflictionNotableExpendability"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Expendability", statOrder = { 7260 }, level = 68, group = "AfflictionNotableExpendability", weightKey = { "affliction_trap_and_mine_damage", "default", }, weightVal = { 367, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { }, }, - ["AfflictionNotableArcanePyrotechnics"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Arcane Pyrotechnics", statOrder = { 7180 }, level = 68, group = "AfflictionNotableArcanePyrotechnics", weightKey = { "affliction_trap_and_mine_damage", "default", }, weightVal = { 367, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage" }, }, - ["AfflictionNotableSurpriseSabotage_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Surprise Sabotage", statOrder = { 7424 }, level = 50, group = "AfflictionNotableSurpriseSabotage", weightKey = { "affliction_trap_and_mine_damage", "default", }, weightVal = { 980, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "critical" }, }, - ["AfflictionNotableCarefulHandling"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Careful Handling", statOrder = { 7207 }, level = 68, group = "AfflictionNotableCarefulHandling", weightKey = { "affliction_trap_and_mine_damage", "affliction_maximum_mana", "affliction_maximum_life", "default", }, weightVal = { 367, 175, 146, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "mana", "damage" }, }, - ["AfflictionNotablePeakVigour"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Peak Vigour", statOrder = { 7348 }, level = 1, group = "AfflictionNotablePeakVigour", weightKey = { "affliction_maximum_life", "affliction_flask_duration", "default", }, weightVal = { 780, 1079, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "flask", "resource", "life" }, }, - ["AfflictionNotableFettle"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Fettle", statOrder = { 7273 }, level = 75, group = "AfflictionNotableFettle", weightKey = { "affliction_maximum_life", "default", }, weightVal = { 49, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life" }, }, - ["AfflictionNotableFeastofFlesh"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Feast of Flesh", statOrder = { 7270 }, level = 68, group = "AfflictionNotableFeastofFlesh", weightKey = { "affliction_maximum_life", "default", }, weightVal = { 146, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "attack" }, }, - ["AfflictionNotableSublimeSensation_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Sublime Sensation", statOrder = { 7419 }, level = 50, group = "AfflictionNotableSublimeSensation", weightKey = { "affliction_maximum_life", "affliction_maximum_energy_shield", "default", }, weightVal = { 390, 505, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "defences", "energy_shield" }, }, - ["AfflictionNotableSurgingVitality"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Surging Vitality", statOrder = { 7423 }, level = 1, group = "AfflictionNotableSurgingVitality", weightKey = { "affliction_maximum_life", "default", }, weightVal = { 780, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life" }, }, - ["AfflictionNotablePeaceAmidstChaos"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Peace Amidst Chaos", statOrder = { 7347 }, level = 50, group = "AfflictionNotablePeaceAmidstChaos", weightKey = { "affliction_maximum_life", "default", }, weightVal = { 390, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "defences", "armour" }, }, - ["AfflictionNotableAdrenaline_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Adrenaline", statOrder = { 7163 }, level = 68, group = "AfflictionNotableAdrenaline", weightKey = { "affliction_maximum_life", "default", }, weightVal = { 146, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life" }, }, - ["AfflictionNotableWallofMuscle_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Wall of Muscle", statOrder = { 7446 }, level = 75, group = "AfflictionNotableWallofMuscle", weightKey = { "affliction_maximum_life", "default", }, weightVal = { 49, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "attribute" }, }, - ["AfflictionNotableMindfulness"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Mindfulness", statOrder = { 7332 }, level = 50, group = "AfflictionNotableMindfulness", weightKey = { "affliction_maximum_mana", "default", }, weightVal = { 466, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana" }, }, - ["AfflictionNotableLiquidInspiration"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Liquid Inspiration", statOrder = { 7317 }, level = 68, group = "AfflictionNotableLiquidInspiration", weightKey = { "affliction_maximum_mana", "affliction_flask_duration", "default", }, weightVal = { 175, 202, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "flask", "power_charge", "resource", "mana" }, }, - ["AfflictionNotableOpenness__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Openness", statOrder = { 7341 }, level = 1, group = "AfflictionNotableOpenness", weightKey = { "affliction_maximum_mana", "default", }, weightVal = { 932, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana" }, }, - ["AfflictionNotableDaringIdeas"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Daring Ideas", statOrder = { 7225 }, level = 50, group = "AfflictionNotableDaringIdeas", weightKey = { "affliction_maximum_mana", "default", }, weightVal = { 466, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "attack" }, }, - ["AfflictionNotableClarityofPurpose"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Clarity of Purpose", statOrder = { 7211 }, level = 1, group = "AfflictionNotableClarityofPurpose", weightKey = { "affliction_maximum_mana", "default", }, weightVal = { 932, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana" }, }, - ["AfflictionNotableScintillatingIdea_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Scintillating Idea", statOrder = { 7390 }, level = 50, group = "AfflictionNotableScintillatingIdea", weightKey = { "affliction_maximum_mana", "affliction_lightning_damage", "default", }, weightVal = { 466, 364, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "resource", "mana", "damage", "elemental", "lightning" }, }, - ["AfflictionNotableHolisticHealth"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Holistic Health", statOrder = { 7302 }, level = 68, group = "AfflictionNotableHolisticHealth", weightKey = { "affliction_maximum_mana", "affliction_maximum_life", "default", }, weightVal = { 175, 146, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "mana" }, }, - ["AfflictionNotableGenius"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Genius", statOrder = { 7284 }, level = 75, group = "AfflictionNotableGenius", weightKey = { "affliction_maximum_mana", "default", }, weightVal = { 58, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "attribute" }, }, - ["AfflictionNotableImprovisor"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Improvisor", statOrder = { 7306 }, level = 68, group = "AfflictionNotableImprovisor", weightKey = { "affliction_maximum_mana", "default", }, weightVal = { 175, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "attack" }, }, - ["AfflictionNotableStubbornStudent"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Stubborn Student", statOrder = { 7417 }, level = 68, group = "AfflictionNotableStubbornStudent", weightKey = { "affliction_maximum_mana", "affliction_armour", "default", }, weightVal = { 175, 261, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "defences", "armour" }, }, - ["AfflictionNotableSavourtheMoment"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Savour the Moment", statOrder = { 7389 }, level = 1, group = "AfflictionNotableSavourtheMoment", weightKey = { "affliction_maximum_energy_shield", "default", }, weightVal = { 1011, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "defences", "energy_shield" }, }, - ["AfflictionNotableEnergyFromNaught"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Energy From Naught", statOrder = { 7255 }, level = 50, group = "AfflictionNotableEnergyFromNaught", weightKey = { "affliction_maximum_energy_shield", "default", }, weightVal = { 505, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "defences", "energy_shield" }, }, - ["AfflictionNotableWillShaper"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Will Shaper", statOrder = { 7454 }, level = 75, group = "AfflictionNotableWillShaper", weightKey = { "affliction_maximum_energy_shield", "affliction_maximum_mana", "default", }, weightVal = { 63, 58, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "defences", "energy_shield" }, }, - ["AfflictionNotableSpringBack_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Spring Back", statOrder = { 7408 }, level = 1, group = "AfflictionNotableSpringBack", weightKey = { "affliction_maximum_energy_shield", "default", }, weightVal = { 1011, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "defences", "energy_shield" }, }, - ["AfflictionNotableConservationofEnergy"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Conservation of Energy", statOrder = { 7219 }, level = 68, group = "AfflictionNotableConservationofEnergy", weightKey = { "affliction_maximum_energy_shield", "default", }, weightVal = { 189, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "defences", "energy_shield", "caster" }, }, - ["AfflictionNotableSelfControl"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Self-Control", statOrder = { 7237 }, level = 50, group = "AfflictionNotableSelfControl", weightKey = { "affliction_maximum_energy_shield", "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "default", }, weightVal = { 505, 480, 480, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana" }, }, - ["AfflictionNotableHeartofIron"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Heart of Iron", statOrder = { 7295 }, level = 68, group = "AfflictionNotableHeartofIron", weightKey = { "affliction_maximum_life", "affliction_armour", "default", }, weightVal = { 146, 261, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "defences", "armour" }, }, - ["AfflictionNotablePrismaticCarapace_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Prismatic Carapace", statOrder = { 7358 }, level = 75, group = "AfflictionNotablePrismaticCarapace", weightKey = { "affliction_armour", "affliction_lightning_resistance", "affliction_cold_resistance", "affliction_fire_resistance", "default", }, weightVal = { 87, 86, 86, 82, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "defences", "armour", "elemental", "resistance" }, }, - ["AfflictionNotableMilitarism"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Militarism", statOrder = { 7331 }, level = 50, group = "AfflictionNotableMilitarism", weightKey = { "affliction_armour", "default", }, weightVal = { 696, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "defences", "armour" }, }, - ["AfflictionNotableSecondSkin"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Second Skin", statOrder = { 7392 }, level = 1, group = "AfflictionNotableSecondSkin", weightKey = { "affliction_armour", "affliction_chance_to_block", "default", }, weightVal = { 1391, 750, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block", "defences", "armour" }, }, - ["AfflictionNotableDragonHunter__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Dragon Hunter", statOrder = { 7245 }, level = 50, group = "AfflictionNotableDragonHunter", weightKey = { "affliction_armour", "affliction_fire_resistance", "default", }, weightVal = { 696, 658, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "defences", "armour", "elemental", "fire", "resistance" }, }, - ["AfflictionNotableEnduringComposure"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Enduring Composure", statOrder = { 7252 }, level = 68, group = "AfflictionNotableEnduringComposure", weightKey = { "affliction_armour", "default", }, weightVal = { 261, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "endurance_charge", "defences", "armour" }, }, - ["AfflictionNotableUncompromising_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Uncompromising", statOrder = { 7234 }, level = 50, group = "AfflictionNotableUncompromising", weightKey = { "affliction_armour", "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "default", }, weightVal = { 696, 480, 480, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana" }, }, - ["AfflictionNotablePrismaticDance____"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Prismatic Dance", statOrder = { 7359 }, level = 75, group = "AfflictionNotablePrismaticDance", weightKey = { "affliction_evasion", "affliction_lightning_resistance", "affliction_cold_resistance", "affliction_fire_resistance", "default", }, weightVal = { 82, 86, 86, 82, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "defences", "evasion", "elemental", "resistance" }, }, - ["AfflictionNotableNaturalVigour_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Natural Vigour", statOrder = { 7336 }, level = 50, group = "AfflictionNotableNaturalVigour", weightKey = { "affliction_evasion", "affliction_maximum_life", "default", }, weightVal = { 658, 390, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "defences", "evasion" }, }, - ["AfflictionNotableUntouchable"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Untouchable", statOrder = { 7433 }, level = 1, group = "AfflictionNotableUntouchable", weightKey = { "affliction_evasion", "affliction_chance_to_dodge_attacks", "default", }, weightVal = { 1315, 1477, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "defences", "evasion" }, }, - ["AfflictionNotableShiftingShadow"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Shifting Shadow", statOrder = { 7397 }, level = 50, group = "AfflictionNotableShiftingShadow", weightKey = { "affliction_evasion", "default", }, weightVal = { 658, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "defences", "evasion", "attribute" }, }, - ["AfflictionNotableReadiness"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Readiness", statOrder = { 7374 }, level = 1, group = "AfflictionNotableReadiness", weightKey = { "affliction_evasion", "default", }, weightVal = { 1315, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "bleed", "defences", "evasion", "physical", "attack", "ailment" }, }, - ["AfflictionNotableSublimeForm"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Sublime Form", statOrder = { 7288 }, level = 50, group = "AfflictionNotableSublimeForm", weightKey = { "affliction_evasion", "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "default", }, weightVal = { 658, 480, 480, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "elemental", "resistance" }, }, - ["AfflictionNotableConfidentCombatant"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Confident Combatant", statOrder = { 7217 }, level = 68, group = "AfflictionNotableConfidentCombatant", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage" }, }, - ["AfflictionNotableFlexibleSentry___"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Flexible Sentry", statOrder = { 7277 }, level = 50, group = "AfflictionNotableFlexibleSentry", weightKey = { "affliction_chance_to_block", "affliction_lightning_resistance", "affliction_cold_resistance", "affliction_fire_resistance", "default", }, weightVal = { 375, 686, 686, 658, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block", "ailment" }, }, - ["AfflictionNotableViciousGuard_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Vicious Guard", statOrder = { 7440 }, level = 1, group = "AfflictionNotableViciousGuard", weightKey = { "affliction_chance_to_block", "affliction_maximum_life", "default", }, weightVal = { 750, 780, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block", "resource", "life", "attack" }, }, - ["AfflictionNotableMysticalWard_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Mystical Ward", statOrder = { 7335 }, level = 1, group = "AfflictionNotableMysticalWard", weightKey = { "affliction_chance_to_block", "affliction_maximum_energy_shield", "default", }, weightVal = { 750, 1011, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block", "defences", "energy_shield" }, }, - ["AfflictionNotableRoteReinforcement"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Rote Reinforcement", statOrder = { 7382 }, level = 68, group = "AfflictionNotableRoteReinforcement", weightKey = { "affliction_chance_to_block", "affliction_maximum_life", "default", }, weightVal = { 141, 146, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block", "endurance_charge", "resource", "life" }, }, - ["AfflictionNotableMageHunter___"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Mage Hunter", statOrder = { 7320 }, level = 68, group = "AfflictionNotableMageHunter", weightKey = { "affliction_chance_to_block", "affliction_spell_damage", "default", }, weightVal = { 141, 281, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block", "power_charge", "caster_damage", "damage", "caster" }, }, - ["AfflictionNotableRiotQueller"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Riot Queller", statOrder = { 7380 }, level = 75, group = "AfflictionNotableRiotQueller", weightKey = { "affliction_chance_to_block", "affliction_attack_damage_while_holding_a_shield", "default", }, weightVal = { 47, 38, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block" }, }, - ["AfflictionNotableOnewiththeShield_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is One with the Shield", statOrder = { 7340 }, level = 50, group = "AfflictionNotableOnewiththeShield", weightKey = { "affliction_chance_to_block", "default", }, weightVal = { 375, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block", "resource", "life", "defences" }, }, - ["AfflictionNotableAerialist"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Aerialist", statOrder = { 7165 }, level = 75, group = "AfflictionNotableAerialist", weightKey = { "affliction_chance_to_dodge_attacks", "default", }, weightVal = { 92, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "attribute" }, }, - ["AfflictionNotableElegantForm"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Elegant Form", statOrder = { 7249 }, level = 1, group = "AfflictionNotableElegantForm", weightKey = { "affliction_chance_to_dodge_attacks", "default", }, weightVal = { 1477, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "ailment" }, }, - ["AfflictionNotableDartingMovements"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Darting Movements", statOrder = { 7229 }, level = 1, group = "AfflictionNotableDartingMovements", weightKey = { "affliction_chance_to_dodge_attacks", "default", }, weightVal = { 1477, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "speed" }, }, - ["AfflictionNotableNoWitnesses"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is No Witnesses", statOrder = { 7337 }, level = 75, group = "AfflictionNotableNoWitnesses", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { }, }, - ["AfflictionNotableMoltenOnesMark_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Molten One's Mark", statOrder = { 7334 }, level = 68, group = "AfflictionNotableMoltenOnesMark", weightKey = { "affliction_fire_resistance", "default", }, weightVal = { 247, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "elemental", "fire", "resistance" }, }, - ["AfflictionNotableFireAttunement_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Fire Attunement", statOrder = { 7274 }, level = 1, group = "AfflictionNotableFireAttunement", weightKey = { "affliction_fire_resistance", "default", }, weightVal = { 1315, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental", "fire", "ailment" }, }, - ["AfflictionNotablePureMight"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Pure Might", statOrder = { 7367 }, level = 68, group = "AfflictionNotablePureMight", weightKey = { "affliction_fire_resistance", "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "default", }, weightVal = { 247, 180, 180, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "attribute" }, }, - ["AfflictionNotableBlacksmith_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Blacksmith", statOrder = { 7187 }, level = 68, group = "AfflictionNotableBlacksmith", weightKey = { "affliction_fire_resistance", "affliction_armour", "default", }, weightVal = { 247, 261, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "defences", "armour", "elemental", "fire", "resistance" }, }, - ["AfflictionNotableNonFlammable"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Non-Flammable", statOrder = { 7338 }, level = 50, group = "AfflictionNotableNonFlammable", weightKey = { "affliction_fire_resistance", "default", }, weightVal = { 658, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental", "fire", "resistance", "ailment" }, }, - ["AfflictionNotableWinterProwler"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Winter Prowler", statOrder = { 7457 }, level = 68, group = "AfflictionNotableWinterProwler", weightKey = { "affliction_cold_resistance", "default", }, weightVal = { 257, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental", "cold", "resistance", "speed" }, }, - ["AfflictionNotableHibernator"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Hibernator", statOrder = { 7300 }, level = 50, group = "AfflictionNotableHibernator", weightKey = { "affliction_cold_resistance", "default", }, weightVal = { 686, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental", "cold", "ailment" }, }, - ["AfflictionNotablePureGuile"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Pure Guile", statOrder = { 7366 }, level = 68, group = "AfflictionNotablePureGuile", weightKey = { "affliction_cold_resistance", "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "default", }, weightVal = { 257, 180, 180, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "attribute" }, }, - ["AfflictionNotableAlchemist"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Alchemist", statOrder = { 7169 }, level = 1, group = "AfflictionNotableAlchemist", weightKey = { "affliction_cold_resistance", "default", }, weightVal = { 1371, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "flask", "elemental", "cold", "resistance", "attack", "caster", "speed" }, }, - ["AfflictionNotableAntifreeze"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Antifreeze", statOrder = { 7176 }, level = 50, group = "AfflictionNotableAntifreeze", weightKey = { "affliction_cold_resistance", "default", }, weightVal = { 686, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental", "cold", "resistance", "ailment" }, }, - ["AfflictionNotableWizardry_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Wizardry", statOrder = { 7459 }, level = 68, group = "AfflictionNotableWizardry", weightKey = { "affliction_lightning_resistance", "affliction_maximum_mana", "default", }, weightVal = { 257, 175, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "elemental", "lightning", "resistance" }, }, - ["AfflictionNotableCapacitor____"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Capacitor", statOrder = { 7206 }, level = 50, group = "AfflictionNotableCapacitor", weightKey = { "affliction_lightning_resistance", "default", }, weightVal = { 686, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental", "lightning", "ailment" }, }, - ["AfflictionNotablePureAptitude"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Pure Aptitude", statOrder = { 7364 }, level = 68, group = "AfflictionNotablePureAptitude", weightKey = { "affliction_lightning_resistance", "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "default", }, weightVal = { 257, 180, 180, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "defences", "energy_shield", "attribute" }, }, - ["AfflictionNotableSage_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Sage", statOrder = { 7386 }, level = 1, group = "AfflictionNotableSage", weightKey = { "affliction_lightning_resistance", "affliction_maximum_mana", "affliction_maximum_life", "default", }, weightVal = { 1371, 932, 780, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "mana", "elemental", "lightning", "resistance" }, }, - ["AfflictionNotableInsulated"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Insulated", statOrder = { 7309 }, level = 50, group = "AfflictionNotableInsulated", weightKey = { "affliction_lightning_resistance", "default", }, weightVal = { 686, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental", "lightning", "resistance", "ailment" }, }, - ["AfflictionNotableBornofChaos"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Born of Chaos", statOrder = { 7196 }, level = 68, group = "AfflictionNotableBornofChaos", weightKey = { "affliction_chaos_resistance", "default", }, weightVal = { 439, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "chaos", "resistance" }, }, - ["AfflictionNotableAntivenom"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Antivenom", statOrder = { 7177 }, level = 50, group = "AfflictionNotableAntivenom", weightKey = { "affliction_chaos_resistance", "default", }, weightVal = { 1171, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "poison", "chaos", "resistance", "ailment" }, }, - ["AfflictionNotableRotResistant"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Rot-Resistant", statOrder = { 7381 }, level = 68, group = "AfflictionNotableRotResistant", weightKey = { "affliction_chaos_resistance", "default", }, weightVal = { 439, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "mana", "defences", "energy_shield", "chaos", "resistance" }, }, - ["AfflictionNotableBlessed"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Blessed", statOrder = { 7190 }, level = 68, group = "AfflictionNotableBlessed", weightKey = { "affliction_chaos_resistance", "affliction_maximum_life", "affliction_maximum_mana", "default", }, weightVal = { 439, 146, 175, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "mana", "chaos", "resistance" }, }, - ["AfflictionNotableStudentofDecay"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Student of Decay", statOrder = { 7418 }, level = 50, group = "AfflictionNotableStudentofDecay", weightKey = { "affliction_chaos_resistance", "affliction_damage_over_time_multiplier", "affliction_physical_damage_over_time_multiplier", "affliction_fire_damage_over_time_multiplier", "affliction_chaos_damage_over_time_multiplier", "default", }, weightVal = { 1171, 593, 343, 366, 348, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "chaos_damage", "damage", "chaos", "resistance" }, }, - ["AfflictionNotableAggressiveDefence"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Aggressive Defence", statOrder = { 7168 }, level = 1, group = "AfflictionNotableAggressiveDefence", weightKey = { "affliction_axe_and_sword_damage", "affliction_mace_and_staff_damage", "affliction_dagger_and_claw_damage", "default", }, weightVal = { 750, 750, 750, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack" }, }, - ["AfflictionJewelSmallPassivesGrantLife_"] = { type = "Prefix", affix = "Hale", "Added Small Passive Skills also grant: +(2-3) to Maximum Life", statOrder = { 7151 }, level = 1, group = "AfflictionJewelSmallPassivesGrantLife", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "life" }, }, - ["AfflictionJewelSmallPassivesGrantLife2_"] = { type = "Prefix", affix = "Healthy", "Added Small Passive Skills also grant: +(4-7) to Maximum Life", statOrder = { 7151 }, level = 68, group = "AfflictionJewelSmallPassivesGrantLife", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "resource", "life" }, }, - ["AfflictionJewelSmallPassivesGrantLife3"] = { type = "Prefix", affix = "Sanguine", "Added Small Passive Skills also grant: +(8-10) to Maximum Life", statOrder = { 7151 }, level = 84, group = "AfflictionJewelSmallPassivesGrantLife", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "resource", "life" }, }, - ["AfflictionJewelSmallPassivesGrantMana"] = { type = "Prefix", affix = "Beryl", "Added Small Passive Skills also grant: +(2-5) to Maximum Mana", statOrder = { 7152 }, level = 1, group = "AfflictionJewelSmallPassivesGrantMana", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "mana" }, }, - ["AfflictionJewelSmallPassivesGrantMana2"] = { type = "Prefix", affix = "Cobalt", "Added Small Passive Skills also grant: +(6-8) to Maximum Mana", statOrder = { 7152 }, level = 68, group = "AfflictionJewelSmallPassivesGrantMana", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "resource", "mana" }, }, - ["AfflictionJewelSmallPassivesGrantMana3"] = { type = "Prefix", affix = "Azure", "Added Small Passive Skills also grant: +(9-10) to Maximum Mana", statOrder = { 7152 }, level = 84, group = "AfflictionJewelSmallPassivesGrantMana", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "resource", "mana" }, }, - ["AfflictionJewelSmallPassivesGrantES"] = { type = "Prefix", affix = "Shining", "Added Small Passive Skills also grant: +(4-5) to Maximum Energy Shield", statOrder = { 7150 }, level = 1, group = "AfflictionJewelSmallPassivesGrantES", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "defences", "energy_shield" }, }, - ["AfflictionJewelSmallPassivesGrantES2"] = { type = "Prefix", affix = "Glimmering", "Added Small Passive Skills also grant: +(6-9) to Maximum Energy Shield", statOrder = { 7150 }, level = 68, group = "AfflictionJewelSmallPassivesGrantES", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "defences", "energy_shield" }, }, - ["AfflictionJewelSmallPassivesGrantES3"] = { type = "Prefix", affix = "Glowing", "Added Small Passive Skills also grant: +(10-12) to Maximum Energy Shield", statOrder = { 7150 }, level = 84, group = "AfflictionJewelSmallPassivesGrantES", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "defences", "energy_shield" }, }, - ["AfflictionJewelSmallPassivesGrantArmour"] = { type = "Prefix", affix = "Lacquered", "Added Small Passive Skills also grant: +(11-20) to Armour", statOrder = { 7121 }, level = 1, group = "AfflictionJewelSmallPassivesGrantArmour", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "defences", "armour" }, }, - ["AfflictionJewelSmallPassivesGrantArmour2"] = { type = "Prefix", affix = "Studded", "Added Small Passive Skills also grant: +(21-30) to Armour", statOrder = { 7121 }, level = 68, group = "AfflictionJewelSmallPassivesGrantArmour", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "defences", "armour" }, }, - ["AfflictionJewelSmallPassivesGrantArmour3_"] = { type = "Prefix", affix = "Ribbed", "Added Small Passive Skills also grant: +(31-40) to Armour", statOrder = { 7121 }, level = 84, group = "AfflictionJewelSmallPassivesGrantArmour", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "defences", "armour" }, }, - ["AfflictionJewelSmallPassivesGrantEvasion"] = { type = "Prefix", affix = "Agile", "Added Small Passive Skills also grant: +(11-20) to Evasion", statOrder = { 7145 }, level = 1, group = "AfflictionJewelSmallPassivesGrantEvasion", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "defences", "evasion" }, }, - ["AfflictionJewelSmallPassivesGrantEvasion2__"] = { type = "Prefix", affix = "Dancer's", "Added Small Passive Skills also grant: +(21-30) to Evasion", statOrder = { 7145 }, level = 68, group = "AfflictionJewelSmallPassivesGrantEvasion", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "defences", "evasion" }, }, - ["AfflictionJewelSmallPassivesGrantEvasion3"] = { type = "Prefix", affix = "Acrobat's", "Added Small Passive Skills also grant: +(31-40) to Evasion", statOrder = { 7145 }, level = 84, group = "AfflictionJewelSmallPassivesGrantEvasion", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "defences", "evasion" }, }, - ["AfflictionJewelSmallPassivesGrantStr"] = { type = "Suffix", affix = "of the Brute", "Added Small Passive Skills also grant: +(2-3) to Strength", statOrder = { 7158 }, level = 1, group = "AfflictionJewelSmallPassivesGrantStr", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "attribute" }, }, - ["AfflictionJewelSmallPassivesGrantStr2_"] = { type = "Suffix", affix = "of the Wrestler", "Added Small Passive Skills also grant: +(4-5) to Strength", statOrder = { 7158 }, level = 68, group = "AfflictionJewelSmallPassivesGrantStr", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "attribute" }, }, - ["AfflictionJewelSmallPassivesGrantStr3_"] = { type = "Suffix", affix = "of the Bear", "Added Small Passive Skills also grant: +(6-8) to Strength", statOrder = { 7158 }, level = 84, group = "AfflictionJewelSmallPassivesGrantStr", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "attribute" }, }, - ["AfflictionJewelSmallPassivesGrantDex_"] = { type = "Suffix", affix = "of the Mongoose", "Added Small Passive Skills also grant: +(2-3) to Dexterity", statOrder = { 7143 }, level = 1, group = "AfflictionJewelSmallPassivesGrantDex", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "attribute" }, }, - ["AfflictionJewelSmallPassivesGrantDex2"] = { type = "Suffix", affix = "of the Lynx", "Added Small Passive Skills also grant: +(4-5) to Dexterity", statOrder = { 7143 }, level = 68, group = "AfflictionJewelSmallPassivesGrantDex", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "attribute" }, }, - ["AfflictionJewelSmallPassivesGrantDex3_"] = { type = "Suffix", affix = "of the Fox", "Added Small Passive Skills also grant: +(6-8) to Dexterity", statOrder = { 7143 }, level = 84, group = "AfflictionJewelSmallPassivesGrantDex", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "attribute" }, }, - ["AfflictionJewelSmallPassivesGrantInt_"] = { type = "Suffix", affix = "of the Pupil", "Added Small Passive Skills also grant: +(2-3) to Intelligence", statOrder = { 7147 }, level = 1, group = "AfflictionJewelSmallPassivesGrantInt", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "attribute" }, }, - ["AfflictionJewelSmallPassivesGrantInt2_"] = { type = "Suffix", affix = "of the Student", "Added Small Passive Skills also grant: +(4-5) to Intelligence", statOrder = { 7147 }, level = 68, group = "AfflictionJewelSmallPassivesGrantInt", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "attribute" }, }, - ["AfflictionJewelSmallPassivesGrantInt3"] = { type = "Suffix", affix = "of the Prodigy", "Added Small Passive Skills also grant: +(6-8) to Intelligence", statOrder = { 7147 }, level = 84, group = "AfflictionJewelSmallPassivesGrantInt", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "attribute" }, }, - ["AfflictionJewelSmallPassivesGrantAttributes"] = { type = "Suffix", affix = "of the Cloud", "Added Small Passive Skills also grant: +2 to All Attributes", statOrder = { 7120 }, level = 1, group = "AfflictionJewelSmallPassivesGrantAttributes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "attribute" }, }, - ["AfflictionJewelSmallPassivesGrantAttributes2"] = { type = "Suffix", affix = "of the Sky", "Added Small Passive Skills also grant: +3 to All Attributes", statOrder = { 7120 }, level = 68, group = "AfflictionJewelSmallPassivesGrantAttributes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "attribute" }, }, - ["AfflictionJewelSmallPassivesGrantAttributes3"] = { type = "Suffix", affix = "of the Meteor", "Added Small Passive Skills also grant: +4 to All Attributes", statOrder = { 7120 }, level = 84, group = "AfflictionJewelSmallPassivesGrantAttributes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "attribute" }, }, - ["AfflictionJewelSmallPassivesGrantManaRegen"] = { type = "Suffix", affix = "of Excitement", "Added Small Passive Skills also grant: 4% increased Mana Regeneration Rate", statOrder = { 7149 }, level = 1, group = "AfflictionJewelSmallPassivesGrantManaRegen", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "mana" }, }, - ["AfflictionJewelSmallPassivesGrantManaRegen2"] = { type = "Suffix", affix = "of Joy", "Added Small Passive Skills also grant: 5% increased Mana Regeneration Rate", statOrder = { 7149 }, level = 68, group = "AfflictionJewelSmallPassivesGrantManaRegen", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "resource", "mana" }, }, - ["AfflictionJewelSmallPassivesGrantManaRegen3_"] = { type = "Suffix", affix = "of Elation", "Added Small Passive Skills also grant: 6% increased Mana Regeneration Rate", statOrder = { 7149 }, level = 84, group = "AfflictionJewelSmallPassivesGrantManaRegen", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "resource", "mana" }, }, - ["AfflictionJewelSmallPassivesGrantLifeRegen___"] = { type = "Suffix", affix = "of the Newt", "Added Small Passive Skills also grant: Regenerate 0.1% of Life per Second", statOrder = { 7156 }, level = 1, group = "AfflictionJewelSmallPassivesGrantLifeRegen", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "life" }, }, - ["AfflictionJewelSmallPassivesGrantLifeRegen2_"] = { type = "Suffix", affix = "of the Lizard", "Added Small Passive Skills also grant: Regenerate 0.15% of Life per Second", statOrder = { 7156 }, level = 68, group = "AfflictionJewelSmallPassivesGrantLifeRegen", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "resource", "life" }, }, - ["AfflictionJewelSmallPassivesGrantLifeRegen3"] = { type = "Suffix", affix = "of the Flatworm", "Added Small Passive Skills also grant: Regenerate 0.2% of Life per Second", statOrder = { 7156 }, level = 84, group = "AfflictionJewelSmallPassivesGrantLifeRegen", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "resource", "life" }, }, - ["AfflictionJewelSmallPassivesGrantFireRes"] = { type = "Suffix", affix = "of the Whelpling", "Added Small Passive Skills also grant: +(2-3)% to Fire Resistance", statOrder = { 7146 }, level = 1, group = "AfflictionJewelSmallPassivesGrantFireRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["AfflictionJewelSmallPassivesGrantFireRes2"] = { type = "Suffix", affix = "of the Salamander", "Added Small Passive Skills also grant: +(4-5)% to Fire Resistance", statOrder = { 7146 }, level = 68, group = "AfflictionJewelSmallPassivesGrantFireRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["AfflictionJewelSmallPassivesGrantFireRes3"] = { type = "Suffix", affix = "of the Drake", "Added Small Passive Skills also grant: +(6-7)% to Fire Resistance", statOrder = { 7146 }, level = 84, group = "AfflictionJewelSmallPassivesGrantFireRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["AfflictionJewelSmallPassivesGrantColdRes_"] = { type = "Suffix", affix = "of the Inuit", "Added Small Passive Skills also grant: +(2-3)% to Cold Resistance", statOrder = { 7139 }, level = 1, group = "AfflictionJewelSmallPassivesGrantColdRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["AfflictionJewelSmallPassivesGrantColdRes2"] = { type = "Suffix", affix = "of the Seal", "Added Small Passive Skills also grant: +(4-5)% to Cold Resistance", statOrder = { 7139 }, level = 68, group = "AfflictionJewelSmallPassivesGrantColdRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["AfflictionJewelSmallPassivesGrantColdRes3"] = { type = "Suffix", affix = "of the Penguin", "Added Small Passive Skills also grant: +(6-7)% to Cold Resistance", statOrder = { 7139 }, level = 84, group = "AfflictionJewelSmallPassivesGrantColdRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["AfflictionJewelSmallPassivesGrantLightningRes"] = { type = "Suffix", affix = "of the Cloud", "Added Small Passive Skills also grant: +(2-3)% to Lightning Resistance", statOrder = { 7148 }, level = 1, group = "AfflictionJewelSmallPassivesGrantLightningRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["AfflictionJewelSmallPassivesGrantLightningRes2_"] = { type = "Suffix", affix = "of the Squall", "Added Small Passive Skills also grant: +(4-5)% to Lightning Resistance", statOrder = { 7148 }, level = 68, group = "AfflictionJewelSmallPassivesGrantLightningRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["AfflictionJewelSmallPassivesGrantLightningRes3"] = { type = "Suffix", affix = "of the Storm", "Added Small Passive Skills also grant: +(6-7)% to Lightning Resistance", statOrder = { 7148 }, level = 84, group = "AfflictionJewelSmallPassivesGrantLightningRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["AfflictionJewelSmallPassivesGrantElementalRes"] = { type = "Suffix", affix = "of the Crystal", "Added Small Passive Skills also grant: +2% to all Elemental Resistances", statOrder = { 7144 }, level = 1, group = "AfflictionJewelSmallPassivesGrantElementalRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "resistance" }, }, - ["AfflictionJewelSmallPassivesGrantElementalRes2"] = { type = "Suffix", affix = "of the Prism", "Added Small Passive Skills also grant: +3% to all Elemental Resistances", statOrder = { 7144 }, level = 68, group = "AfflictionJewelSmallPassivesGrantElementalRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "elemental", "resistance" }, }, - ["AfflictionJewelSmallPassivesGrantElementalRes3"] = { type = "Suffix", affix = "of the Kaleidoscope", "Added Small Passive Skills also grant: +4% to all Elemental Resistances", statOrder = { 7144 }, level = 84, group = "AfflictionJewelSmallPassivesGrantElementalRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "elemental", "resistance" }, }, - ["AfflictionJewelSmallPassivesGrantChaosRes"] = { type = "Suffix", affix = "of the Lost", "Added Small Passive Skills also grant: +3% to Chaos Resistance", statOrder = { 7137 }, level = 1, group = "AfflictionJewelSmallPassivesGrantChaosRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "chaos", "resistance" }, }, - ["AfflictionJewelSmallPassivesGrantChaosRes2"] = { type = "Suffix", affix = "of Banishment", "Added Small Passive Skills also grant: +4% to Chaos Resistance", statOrder = { 7137 }, level = 68, group = "AfflictionJewelSmallPassivesGrantChaosRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "chaos", "resistance" }, }, - ["AfflictionJewelSmallPassivesGrantChaosRes3"] = { type = "Suffix", affix = "of Eviction", "Added Small Passive Skills also grant: +5% to Chaos Resistance", statOrder = { 7137 }, level = 84, group = "AfflictionJewelSmallPassivesGrantChaosRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "chaos", "resistance" }, }, - ["AfflictionJewelSmallPassivesGrantDamage_"] = { type = "Prefix", affix = "Harmful", "Added Small Passive Skills also grant: 2% increased Damage", statOrder = { 7142 }, level = 1, group = "AfflictionJewelSmallPassivesGrantDamage", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "damage" }, }, - ["AfflictionJewelSmallPassivesGrantDamage2_"] = { type = "Prefix", affix = "Hazardous", "Added Small Passive Skills also grant: 3% increased Damage", statOrder = { 7142 }, level = 68, group = "AfflictionJewelSmallPassivesGrantDamage", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "damage" }, }, - ["AfflictionJewelSmallPassivesGrantDamage3"] = { type = "Prefix", affix = "Dangerous", "Added Small Passive Skills also grant: 4% increased Damage", statOrder = { 7142 }, level = 84, group = "AfflictionJewelSmallPassivesGrantDamage", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "damage" }, }, - ["AfflictionJewelSmallPassivesGrantLifeSmall"] = { type = "Prefix", affix = "Hale", "Added Small Passive Skills also grant: +(2-3) to Maximum Life", statOrder = { 7151 }, level = 1, group = "AfflictionJewelSmallPassivesGrantLife", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, }, - ["AfflictionJewelSmallPassivesGrantLifeSmall2"] = { type = "Prefix", affix = "Healthy", "Added Small Passive Skills also grant: +(4-7) to Maximum Life", statOrder = { 7151 }, level = 68, group = "AfflictionJewelSmallPassivesGrantLife", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "resource", "life" }, }, - ["AfflictionJewelSmallPassivesGrantLifeSmall3"] = { type = "Prefix", affix = "Sanguine", "Added Small Passive Skills also grant: +(8-10) to Maximum Life", statOrder = { 7151 }, level = 73, group = "AfflictionJewelSmallPassivesGrantLife", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "resource", "life" }, }, - ["AfflictionJewelSmallPassivesGrantLifeSmall4"] = { type = "Prefix", affix = "Stalwart", "Added Small Passive Skills also grant: +(11-13) to Maximum Life", statOrder = { 7151 }, level = 78, group = "AfflictionJewelSmallPassivesGrantLife", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "life" }, }, - ["AfflictionJewelSmallPassivesGrantLifeSmall5_"] = { type = "Prefix", affix = "Stout", "Added Small Passive Skills also grant: +(14-16) to Maximum Life", statOrder = { 7151 }, level = 84, group = "AfflictionJewelSmallPassivesGrantLife", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "life" }, }, - ["AfflictionJewelSmallPassivesGrantManaSmall"] = { type = "Prefix", affix = "Beryl", "Added Small Passive Skills also grant: +(2-5) to Maximum Mana", statOrder = { 7152 }, level = 1, group = "AfflictionJewelSmallPassivesGrantMana", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "mana" }, }, - ["AfflictionJewelSmallPassivesGrantManaSmall2_"] = { type = "Prefix", affix = "Cobalt", "Added Small Passive Skills also grant: +(6-8) to Maximum Mana", statOrder = { 7152 }, level = 68, group = "AfflictionJewelSmallPassivesGrantMana", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "resource", "mana" }, }, - ["AfflictionJewelSmallPassivesGrantManaSmall3"] = { type = "Prefix", affix = "Azure", "Added Small Passive Skills also grant: +(9-10) to Maximum Mana", statOrder = { 7152 }, level = 73, group = "AfflictionJewelSmallPassivesGrantMana", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "resource", "mana" }, }, - ["AfflictionJewelSmallPassivesGrantManaSmall4_"] = { type = "Prefix", affix = "Sapphire", "Added Small Passive Skills also grant: +(11-13) to Maximum Mana", statOrder = { 7152 }, level = 78, group = "AfflictionJewelSmallPassivesGrantMana", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, }, - ["AfflictionJewelSmallPassivesGrantManaSmall5_"] = { type = "Prefix", affix = "Cerulean", "Added Small Passive Skills also grant: +(14-16) to Maximum Mana", statOrder = { 7152 }, level = 84, group = "AfflictionJewelSmallPassivesGrantMana", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "mana" }, }, - ["AfflictionJewelSmallPassivesGrantESSmall"] = { type = "Prefix", affix = "Shining", "Added Small Passive Skills also grant: +(4-5) to Maximum Energy Shield", statOrder = { 7150 }, level = 1, group = "AfflictionJewelSmallPassivesGrantES", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "defences", "energy_shield" }, }, - ["AfflictionJewelSmallPassivesGrantESSmall2"] = { type = "Prefix", affix = "Glimmering", "Added Small Passive Skills also grant: +(6-9) to Maximum Energy Shield", statOrder = { 7150 }, level = 68, group = "AfflictionJewelSmallPassivesGrantES", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "defences", "energy_shield" }, }, - ["AfflictionJewelSmallPassivesGrantESSmall3_"] = { type = "Prefix", affix = "Glowing", "Added Small Passive Skills also grant: +(10-12) to Maximum Energy Shield", statOrder = { 7150 }, level = 73, group = "AfflictionJewelSmallPassivesGrantES", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "defences", "energy_shield" }, }, - ["AfflictionJewelSmallPassivesGrantESSmall4"] = { type = "Prefix", affix = "Radiating", "Added Small Passive Skills also grant: +(13-16) to Maximum Energy Shield", statOrder = { 7150 }, level = 78, group = "AfflictionJewelSmallPassivesGrantES", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "defences", "energy_shield" }, }, - ["AfflictionJewelSmallPassivesGrantESSmall5"] = { type = "Prefix", affix = "Pulsing", "Added Small Passive Skills also grant: +(17-20) to Maximum Energy Shield", statOrder = { 7150 }, level = 84, group = "AfflictionJewelSmallPassivesGrantES", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "defences", "energy_shield" }, }, - ["AfflictionJewelSmallPassivesGrantArmourSmall__"] = { type = "Prefix", affix = "Lacquered", "Added Small Passive Skills also grant: +(11-20) to Armour", statOrder = { 7121 }, level = 1, group = "AfflictionJewelSmallPassivesGrantArmour", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "defences", "armour" }, }, - ["AfflictionJewelSmallPassivesGrantArmourSmall2__"] = { type = "Prefix", affix = "Studded", "Added Small Passive Skills also grant: +(21-30) to Armour", statOrder = { 7121 }, level = 68, group = "AfflictionJewelSmallPassivesGrantArmour", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "defences", "armour" }, }, - ["AfflictionJewelSmallPassivesGrantArmourSmall3"] = { type = "Prefix", affix = "Ribbed", "Added Small Passive Skills also grant: +(31-40) to Armour", statOrder = { 7121 }, level = 73, group = "AfflictionJewelSmallPassivesGrantArmour", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "defences", "armour" }, }, - ["AfflictionJewelSmallPassivesGrantArmourSmall4___"] = { type = "Prefix", affix = "Fortified", "Added Small Passive Skills also grant: +(41-53) to Armour", statOrder = { 7121 }, level = 78, group = "AfflictionJewelSmallPassivesGrantArmour", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "defences", "armour" }, }, - ["AfflictionJewelSmallPassivesGrantArmourSmall5"] = { type = "Prefix", affix = "Plated", "Added Small Passive Skills also grant: +(54-66) to Armour", statOrder = { 7121 }, level = 84, group = "AfflictionJewelSmallPassivesGrantArmour", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "defences", "armour" }, }, - ["AfflictionJewelSmallPassivesGrantEvasionSmall"] = { type = "Prefix", affix = "Agile", "Added Small Passive Skills also grant: +(11-20) to Evasion", statOrder = { 7145 }, level = 1, group = "AfflictionJewelSmallPassivesGrantEvasion", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "defences", "evasion" }, }, - ["AfflictionJewelSmallPassivesGrantEvasionSmall2_"] = { type = "Prefix", affix = "Dancer's", "Added Small Passive Skills also grant: +(21-30) to Evasion", statOrder = { 7145 }, level = 68, group = "AfflictionJewelSmallPassivesGrantEvasion", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "defences", "evasion" }, }, - ["AfflictionJewelSmallPassivesGrantEvasionSmall3___"] = { type = "Prefix", affix = "Acrobat's", "Added Small Passive Skills also grant: +(31-40) to Evasion", statOrder = { 7145 }, level = 73, group = "AfflictionJewelSmallPassivesGrantEvasion", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "defences", "evasion" }, }, - ["AfflictionJewelSmallPassivesGrantEvasionSmall4_"] = { type = "Prefix", affix = "Fleet", "Added Small Passive Skills also grant: +(41-53) to Evasion", statOrder = { 7145 }, level = 78, group = "AfflictionJewelSmallPassivesGrantEvasion", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "defences", "evasion" }, }, - ["AfflictionJewelSmallPassivesGrantEvasionSmall5"] = { type = "Prefix", affix = "Blurred", "Added Small Passive Skills also grant: +(54-66) to Evasion", statOrder = { 7145 }, level = 84, group = "AfflictionJewelSmallPassivesGrantEvasion", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "defences", "evasion" }, }, - ["AfflictionJewelSmallPassivesGrantStrSmall_"] = { type = "Suffix", affix = "of the Brute", "Added Small Passive Skills also grant: +(2-3) to Strength", statOrder = { 7158 }, level = 1, group = "AfflictionJewelSmallPassivesGrantStr", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "attribute" }, }, - ["AfflictionJewelSmallPassivesGrantStrSmall2"] = { type = "Suffix", affix = "of the Wrestler", "Added Small Passive Skills also grant: +(4-5) to Strength", statOrder = { 7158 }, level = 68, group = "AfflictionJewelSmallPassivesGrantStr", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "attribute" }, }, - ["AfflictionJewelSmallPassivesGrantStrSmall3"] = { type = "Suffix", affix = "of the Bear", "Added Small Passive Skills also grant: +(6-8) to Strength", statOrder = { 7158 }, level = 73, group = "AfflictionJewelSmallPassivesGrantStr", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "attribute" }, }, - ["AfflictionJewelSmallPassivesGrantStrSmall4_"] = { type = "Suffix", affix = "of the Lion", "Added Small Passive Skills also grant: +(9-11) to Strength", statOrder = { 7158 }, level = 78, group = "AfflictionJewelSmallPassivesGrantStr", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "attribute" }, }, - ["AfflictionJewelSmallPassivesGrantStrSmall5"] = { type = "Suffix", affix = "of the Gorilla", "Added Small Passive Skills also grant: +(12-14) to Strength", statOrder = { 7158 }, level = 84, group = "AfflictionJewelSmallPassivesGrantStr", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "attribute" }, }, - ["AfflictionJewelSmallPassivesGrantDexSmall_"] = { type = "Suffix", affix = "of the Mongoose", "Added Small Passive Skills also grant: +(2-3) to Dexterity", statOrder = { 7143 }, level = 1, group = "AfflictionJewelSmallPassivesGrantDex", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "attribute" }, }, - ["AfflictionJewelSmallPassivesGrantDexSmall2"] = { type = "Suffix", affix = "of the Lynx", "Added Small Passive Skills also grant: +(4-5) to Dexterity", statOrder = { 7143 }, level = 68, group = "AfflictionJewelSmallPassivesGrantDex", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "attribute" }, }, - ["AfflictionJewelSmallPassivesGrantDexSmall3"] = { type = "Suffix", affix = "of the Fox", "Added Small Passive Skills also grant: +(6-8) to Dexterity", statOrder = { 7143 }, level = 73, group = "AfflictionJewelSmallPassivesGrantDex", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "attribute" }, }, - ["AfflictionJewelSmallPassivesGrantDexSmall4_"] = { type = "Suffix", affix = "of the Falcon", "Added Small Passive Skills also grant: +(9-11) to Dexterity", statOrder = { 7143 }, level = 78, group = "AfflictionJewelSmallPassivesGrantDex", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "attribute" }, }, - ["AfflictionJewelSmallPassivesGrantDexSmall5"] = { type = "Suffix", affix = "of the Panther", "Added Small Passive Skills also grant: +(12-14) to Dexterity", statOrder = { 7143 }, level = 84, group = "AfflictionJewelSmallPassivesGrantDex", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "attribute" }, }, - ["AfflictionJewelSmallPassivesGrantIntSmall_"] = { type = "Suffix", affix = "of the Pupil", "Added Small Passive Skills also grant: +(2-3) to Intelligence", statOrder = { 7147 }, level = 1, group = "AfflictionJewelSmallPassivesGrantInt", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "attribute" }, }, - ["AfflictionJewelSmallPassivesGrantIntSmall2"] = { type = "Suffix", affix = "of the Student", "Added Small Passive Skills also grant: +(4-5) to Intelligence", statOrder = { 7147 }, level = 68, group = "AfflictionJewelSmallPassivesGrantInt", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "attribute" }, }, - ["AfflictionJewelSmallPassivesGrantIntSmall3______"] = { type = "Suffix", affix = "of the Prodigy", "Added Small Passive Skills also grant: +(6-8) to Intelligence", statOrder = { 7147 }, level = 73, group = "AfflictionJewelSmallPassivesGrantInt", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "attribute" }, }, - ["AfflictionJewelSmallPassivesGrantIntSmall4_"] = { type = "Suffix", affix = "of the Augur", "Added Small Passive Skills also grant: +(9-11) to Intelligence", statOrder = { 7147 }, level = 78, group = "AfflictionJewelSmallPassivesGrantInt", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "attribute" }, }, - ["AfflictionJewelSmallPassivesGrantIntSmall5"] = { type = "Suffix", affix = "of the Philosopher", "Added Small Passive Skills also grant: +(12-14) to Intelligence", statOrder = { 7147 }, level = 84, group = "AfflictionJewelSmallPassivesGrantInt", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "attribute" }, }, - ["AfflictionJewelSmallPassivesGrantAttributesSmall"] = { type = "Suffix", affix = "of the Cloud", "Added Small Passive Skills also grant: +2 to All Attributes", statOrder = { 7120 }, level = 1, group = "AfflictionJewelSmallPassivesGrantAttributes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "attribute" }, }, - ["AfflictionJewelSmallPassivesGrantAttributesSmall2"] = { type = "Suffix", affix = "of the Sky", "Added Small Passive Skills also grant: +3 to All Attributes", statOrder = { 7120 }, level = 68, group = "AfflictionJewelSmallPassivesGrantAttributes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "attribute" }, }, - ["AfflictionJewelSmallPassivesGrantAttributesSmall3_"] = { type = "Suffix", affix = "of the Meteor", "Added Small Passive Skills also grant: +4 to All Attributes", statOrder = { 7120 }, level = 73, group = "AfflictionJewelSmallPassivesGrantAttributes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "attribute" }, }, - ["AfflictionJewelSmallPassivesGrantAttributesSmall4"] = { type = "Suffix", affix = "of the Comet", "Added Small Passive Skills also grant: +5 to All Attributes", statOrder = { 7120 }, level = 78, group = "AfflictionJewelSmallPassivesGrantAttributes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "attribute" }, }, - ["AfflictionJewelSmallPassivesGrantAttributesSmall5"] = { type = "Suffix", affix = "of the Heavens", "Added Small Passive Skills also grant: +6 to All Attributes", statOrder = { 7120 }, level = 84, group = "AfflictionJewelSmallPassivesGrantAttributes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "attribute" }, }, - ["AfflictionJewelSmallPassivesGrantManaRegenSmall_"] = { type = "Suffix", affix = "of Excitement", "Added Small Passive Skills also grant: 4% increased Mana Regeneration Rate", statOrder = { 7149 }, level = 1, group = "AfflictionJewelSmallPassivesGrantManaRegen", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "mana" }, }, - ["AfflictionJewelSmallPassivesGrantManaRegenSmall2"] = { type = "Suffix", affix = "of Joy", "Added Small Passive Skills also grant: 5% increased Mana Regeneration Rate", statOrder = { 7149 }, level = 68, group = "AfflictionJewelSmallPassivesGrantManaRegen", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "resource", "mana" }, }, - ["AfflictionJewelSmallPassivesGrantManaRegenSmall3"] = { type = "Suffix", affix = "of Elation", "Added Small Passive Skills also grant: 6% increased Mana Regeneration Rate", statOrder = { 7149 }, level = 73, group = "AfflictionJewelSmallPassivesGrantManaRegen", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "resource", "mana" }, }, - ["AfflictionJewelSmallPassivesGrantManaRegenSmall4"] = { type = "Suffix", affix = "of Bliss", "Added Small Passive Skills also grant: (7-8)% increased Mana Regeneration Rate", statOrder = { 7149 }, level = 78, group = "AfflictionJewelSmallPassivesGrantManaRegen", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, }, - ["AfflictionJewelSmallPassivesGrantManaRegenSmall5"] = { type = "Suffix", affix = "of Euphoria", "Added Small Passive Skills also grant: (9-10)% increased Mana Regeneration Rate", statOrder = { 7149 }, level = 84, group = "AfflictionJewelSmallPassivesGrantManaRegen", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "mana" }, }, - ["AfflictionJewelSmallPassivesGrantLifeRegenSmall"] = { type = "Suffix", affix = "of the Newt", "Added Small Passive Skills also grant: Regenerate 0.1% of Life per Second", statOrder = { 7156 }, level = 1, group = "AfflictionJewelSmallPassivesGrantLifeRegen", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, }, - ["AfflictionJewelSmallPassivesGrantLifeRegenSmall2_"] = { type = "Suffix", affix = "of the Lizard", "Added Small Passive Skills also grant: Regenerate 0.15% of Life per Second", statOrder = { 7156 }, level = 68, group = "AfflictionJewelSmallPassivesGrantLifeRegen", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "resource", "life" }, }, - ["AfflictionJewelSmallPassivesGrantLifeRegenSmall3_"] = { type = "Suffix", affix = "of the Flatworm", "Added Small Passive Skills also grant: Regenerate 0.2% of Life per Second", statOrder = { 7156 }, level = 73, group = "AfflictionJewelSmallPassivesGrantLifeRegen", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "resource", "life" }, }, - ["AfflictionJewelSmallPassivesGrantLifeRegenSmall4_"] = { type = "Suffix", affix = "of the Starfish", "Added Small Passive Skills also grant: Regenerate 0.25% of Life per Second", statOrder = { 7156 }, level = 78, group = "AfflictionJewelSmallPassivesGrantLifeRegen", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "life" }, }, - ["AfflictionJewelSmallPassivesGrantLifeRegenSmall5"] = { type = "Suffix", affix = "of the Hydra", "Added Small Passive Skills also grant: Regenerate 0.3% of Life per Second", statOrder = { 7156 }, level = 84, group = "AfflictionJewelSmallPassivesGrantLifeRegen", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "life" }, }, - ["AfflictionJewelSmallPassivesGrantFireResSmall"] = { type = "Suffix", affix = "of the Whelpling", "Added Small Passive Skills also grant: +(2-3)% to Fire Resistance", statOrder = { 7146 }, level = 1, group = "AfflictionJewelSmallPassivesGrantFireRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["AfflictionJewelSmallPassivesGrantFireResSmall2"] = { type = "Suffix", affix = "of the Salamander", "Added Small Passive Skills also grant: +(4-5)% to Fire Resistance", statOrder = { 7146 }, level = 68, group = "AfflictionJewelSmallPassivesGrantFireRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["AfflictionJewelSmallPassivesGrantFireResSmall3_"] = { type = "Suffix", affix = "of the Drake", "Added Small Passive Skills also grant: +(6-7)% to Fire Resistance", statOrder = { 7146 }, level = 73, group = "AfflictionJewelSmallPassivesGrantFireRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["AfflictionJewelSmallPassivesGrantFireResSmall4"] = { type = "Suffix", affix = "of the Kiln", "Added Small Passive Skills also grant: +(8-9)% to Fire Resistance", statOrder = { 7146 }, level = 78, group = "AfflictionJewelSmallPassivesGrantFireRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["AfflictionJewelSmallPassivesGrantFireResSmall5"] = { type = "Suffix", affix = "of the Furnace", "Added Small Passive Skills also grant: +(10-11)% to Fire Resistance", statOrder = { 7146 }, level = 84, group = "AfflictionJewelSmallPassivesGrantFireRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["AfflictionJewelSmallPassivesGrantColdResSmall"] = { type = "Suffix", affix = "of the Inuit", "Added Small Passive Skills also grant: +(2-3)% to Cold Resistance", statOrder = { 7139 }, level = 1, group = "AfflictionJewelSmallPassivesGrantColdRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["AfflictionJewelSmallPassivesGrantColdResSmall2"] = { type = "Suffix", affix = "of the Seal", "Added Small Passive Skills also grant: +(4-5)% to Cold Resistance", statOrder = { 7139 }, level = 68, group = "AfflictionJewelSmallPassivesGrantColdRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["AfflictionJewelSmallPassivesGrantColdResSmall3"] = { type = "Suffix", affix = "of the Penguin", "Added Small Passive Skills also grant: +(6-7)% to Cold Resistance", statOrder = { 7139 }, level = 73, group = "AfflictionJewelSmallPassivesGrantColdRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["AfflictionJewelSmallPassivesGrantColdResSmall4"] = { type = "Suffix", affix = "of the Yeti", "Added Small Passive Skills also grant: +(8-9)% to Cold Resistance", statOrder = { 7139 }, level = 78, group = "AfflictionJewelSmallPassivesGrantColdRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["AfflictionJewelSmallPassivesGrantColdResSmall5_"] = { type = "Suffix", affix = "of the Walrus", "Added Small Passive Skills also grant: +(10-11)% to Cold Resistance", statOrder = { 7139 }, level = 84, group = "AfflictionJewelSmallPassivesGrantColdRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["AfflictionJewelSmallPassivesGrantLightningResSmall"] = { type = "Suffix", affix = "of the Cloud", "Added Small Passive Skills also grant: +(2-3)% to Lightning Resistance", statOrder = { 7148 }, level = 1, group = "AfflictionJewelSmallPassivesGrantLightningRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["AfflictionJewelSmallPassivesGrantLightningResSmall2__"] = { type = "Suffix", affix = "of the Squall", "Added Small Passive Skills also grant: +(4-5)% to Lightning Resistance", statOrder = { 7148 }, level = 68, group = "AfflictionJewelSmallPassivesGrantLightningRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["AfflictionJewelSmallPassivesGrantLightningResSmall3"] = { type = "Suffix", affix = "of the Storm", "Added Small Passive Skills also grant: +(6-7)% to Lightning Resistance", statOrder = { 7148 }, level = 73, group = "AfflictionJewelSmallPassivesGrantLightningRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["AfflictionJewelSmallPassivesGrantLightningResSmall4_"] = { type = "Suffix", affix = "of the Thunderhead", "Added Small Passive Skills also grant: +(8-9)% to Lightning Resistance", statOrder = { 7148 }, level = 78, group = "AfflictionJewelSmallPassivesGrantLightningRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["AfflictionJewelSmallPassivesGrantLightningResSmall5"] = { type = "Suffix", affix = "of the Tempest", "Added Small Passive Skills also grant: +(10-11)% to Lightning Resistance", statOrder = { 7148 }, level = 84, group = "AfflictionJewelSmallPassivesGrantLightningRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["AfflictionJewelSmallPassivesGrantElementalResSmall"] = { type = "Suffix", affix = "of the Crystal", "Added Small Passive Skills also grant: +2% to all Elemental Resistances", statOrder = { 7144 }, level = 1, group = "AfflictionJewelSmallPassivesGrantElementalRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "resistance" }, }, - ["AfflictionJewelSmallPassivesGrantElementalResSmall2"] = { type = "Suffix", affix = "of the Prism", "Added Small Passive Skills also grant: +3% to all Elemental Resistances", statOrder = { 7144 }, level = 68, group = "AfflictionJewelSmallPassivesGrantElementalRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "elemental", "resistance" }, }, - ["AfflictionJewelSmallPassivesGrantElementalResSmall3"] = { type = "Suffix", affix = "of the Kaleidoscope", "Added Small Passive Skills also grant: +4% to all Elemental Resistances", statOrder = { 7144 }, level = 73, group = "AfflictionJewelSmallPassivesGrantElementalRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "elemental", "resistance" }, }, - ["AfflictionJewelSmallPassivesGrantElementalResSmall4"] = { type = "Suffix", affix = "of Variegation", "Added Small Passive Skills also grant: +5% to all Elemental Resistances", statOrder = { 7144 }, level = 78, group = "AfflictionJewelSmallPassivesGrantElementalRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "resistance" }, }, - ["AfflictionJewelSmallPassivesGrantElementalResSmall5"] = { type = "Suffix", affix = "of the Rainbow", "Added Small Passive Skills also grant: +6% to all Elemental Resistances", statOrder = { 7144 }, level = 84, group = "AfflictionJewelSmallPassivesGrantElementalRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "resistance" }, }, - ["AfflictionJewelSmallPassivesGrantChaosResSmall"] = { type = "Suffix", affix = "of the Lost", "Added Small Passive Skills also grant: +3% to Chaos Resistance", statOrder = { 7137 }, level = 1, group = "AfflictionJewelSmallPassivesGrantChaosRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "chaos", "resistance" }, }, - ["AfflictionJewelSmallPassivesGrantChaosResSmall2"] = { type = "Suffix", affix = "of Banishment", "Added Small Passive Skills also grant: +4% to Chaos Resistance", statOrder = { 7137 }, level = 68, group = "AfflictionJewelSmallPassivesGrantChaosRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "chaos", "resistance" }, }, - ["AfflictionJewelSmallPassivesGrantChaosResSmall3"] = { type = "Suffix", affix = "of Eviction", "Added Small Passive Skills also grant: +5% to Chaos Resistance", statOrder = { 7137 }, level = 73, group = "AfflictionJewelSmallPassivesGrantChaosRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "chaos", "resistance" }, }, - ["AfflictionJewelSmallPassivesGrantChaosResSmall4"] = { type = "Suffix", affix = "of Expulsion", "Added Small Passive Skills also grant: +6% to Chaos Resistance", statOrder = { 7137 }, level = 78, group = "AfflictionJewelSmallPassivesGrantChaosRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "chaos", "resistance" }, }, - ["AfflictionJewelSmallPassivesGrantChaosResSmall5"] = { type = "Suffix", affix = "of Exile", "Added Small Passive Skills also grant: +(7-8)% to Chaos Resistance", statOrder = { 7137 }, level = 84, group = "AfflictionJewelSmallPassivesGrantChaosRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "chaos", "resistance" }, }, - ["AfflictionJewelSmallPassivesGrantDamageSmall_"] = { type = "Prefix", affix = "Harmful", "Added Small Passive Skills also grant: 2% increased Damage", statOrder = { 7142 }, level = 1, group = "AfflictionJewelSmallPassivesGrantDamage", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, }, - ["AfflictionJewelSmallPassivesGrantDamageSmall2_"] = { type = "Prefix", affix = "Hazardous", "Added Small Passive Skills also grant: 3% increased Damage", statOrder = { 7142 }, level = 68, group = "AfflictionJewelSmallPassivesGrantDamage", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "damage" }, }, - ["AfflictionJewelSmallPassivesGrantDamageSmall3_"] = { type = "Prefix", affix = "Dangerous", "Added Small Passive Skills also grant: 4% increased Damage", statOrder = { 7142 }, level = 73, group = "AfflictionJewelSmallPassivesGrantDamage", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "damage" }, }, - ["AfflictionJewelSmallPassivesGrantDamageSmall4_"] = { type = "Prefix", affix = "Destructive", "Added Small Passive Skills also grant: 5% increased Damage", statOrder = { 7142 }, level = 78, group = "AfflictionJewelSmallPassivesGrantDamage", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "damage" }, }, - ["AfflictionJewelSmallPassivesGrantDamageSmall5"] = { type = "Prefix", affix = "Deadly", "Added Small Passive Skills also grant: 6% increased Damage", statOrder = { 7142 }, level = 84, group = "AfflictionJewelSmallPassivesGrantDamage", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "damage" }, }, - ["AfflictionJewelSmallPassivesHaveIncreasedEffect"] = { type = "Prefix", affix = "Potent", "Added Small Passive Skills have 25% increased Effect", statOrder = { 7162 }, level = 1, group = "AfflictionJewelSmallPassivesHaveIncreasedEffect", weightKey = { "default", }, weightVal = { 500 }, modTags = { }, }, - ["AfflictionJewelSmallPassivesHaveIncreasedEffect2"] = { type = "Prefix", affix = "Powerful", "Added Small Passive Skills have 35% increased Effect", statOrder = { 7162 }, level = 84, group = "AfflictionJewelSmallPassivesHaveIncreasedEffect", weightKey = { "default", }, weightVal = { 300 }, modTags = { }, }, - ["AfflictionJewelSmallPassivesGrantAttackSpeed"] = { type = "Suffix", affix = "of Skill", "Added Small Passive Skills also grant: 1% increased Attack Speed", statOrder = { 7130 }, level = 1, group = "AfflictionJewelSmallPassivesGrantAttackSpeed", weightKey = { "affliction_axe_and_sword_damage", "affliction_mace_and_staff_damage", "affliction_dagger_and_claw_damage", "affliction_bow_damage", "affliction_wand_damage", "affliction_damage_with_two_handed_melee_weapons", "affliction_attack_damage_while_dual_wielding_", "affliction_attack_damage_while_holding_a_shield", "affliction_attack_damage_", "default", }, weightVal = { 350, 350, 350, 350, 350, 350, 350, 350, 350, 0 }, modTags = { "attack", "speed" }, }, - ["AfflictionJewelSmallPassivesGrantAttackSpeed2_"] = { type = "Suffix", affix = "of Ease", "Added Small Passive Skills also grant: 2% increased Attack Speed", statOrder = { 7130 }, level = 68, group = "AfflictionJewelSmallPassivesGrantAttackSpeed", weightKey = { "affliction_axe_and_sword_damage", "affliction_mace_and_staff_damage", "affliction_dagger_and_claw_damage", "affliction_bow_damage", "affliction_wand_damage", "affliction_damage_with_two_handed_melee_weapons", "affliction_attack_damage_while_dual_wielding_", "affliction_attack_damage_while_holding_a_shield", "affliction_attack_damage_", "default", }, weightVal = { 350, 350, 350, 350, 350, 350, 350, 350, 350, 0 }, modTags = { "attack", "speed" }, }, - ["AfflictionJewelSmallPassivesGrantAttackSpeed3__"] = { type = "Suffix", affix = "of Mastery", "Added Small Passive Skills also grant: 3% increased Attack Speed", statOrder = { 7130 }, level = 84, group = "AfflictionJewelSmallPassivesGrantAttackSpeed", weightKey = { "affliction_axe_and_sword_damage", "affliction_mace_and_staff_damage", "affliction_dagger_and_claw_damage", "affliction_bow_damage", "affliction_wand_damage", "affliction_damage_with_two_handed_melee_weapons", "affliction_attack_damage_while_dual_wielding_", "affliction_attack_damage_while_holding_a_shield", "affliction_attack_damage_", "default", }, weightVal = { 250, 250, 250, 250, 250, 250, 250, 250, 250, 0 }, modTags = { "attack", "speed" }, }, - ["AfflictionJewelSmallPassivesGrantCastSpeed"] = { type = "Suffix", affix = "of Talent", "Added Small Passive Skills also grant: 1% increased Cast Speed", statOrder = { 7132 }, level = 1, group = "AfflictionJewelSmallPassivesGrantCastSpeed", weightKey = { "affliction_spell_damage", "default", }, weightVal = { 350, 0 }, modTags = { "caster", "speed" }, }, - ["AfflictionJewelSmallPassivesGrantCastSpeed2"] = { type = "Suffix", affix = "of Nimbleness", "Added Small Passive Skills also grant: 2% increased Cast Speed", statOrder = { 7132 }, level = 68, group = "AfflictionJewelSmallPassivesGrantCastSpeed", weightKey = { "affliction_spell_damage", "default", }, weightVal = { 350, 0 }, modTags = { "caster", "speed" }, }, - ["AfflictionJewelSmallPassivesGrantCastSpeed3_"] = { type = "Suffix", affix = "of Expertise", "Added Small Passive Skills also grant: 3% increased Cast Speed", statOrder = { 7132 }, level = 84, group = "AfflictionJewelSmallPassivesGrantCastSpeed", weightKey = { "affliction_spell_damage", "default", }, weightVal = { 250, 0 }, modTags = { "caster", "speed" }, }, - ["AfflictionJewelSmallPassivesGrantDamageOverTime"] = { type = "Suffix", affix = "of Decline", "Added Small Passive Skills also grant: 1% increased Damage over Time", statOrder = { 7141 }, level = 1, group = "AfflictionJewelSmallPassivesGrantDamageOverTime", weightKey = { "affliction_fire_damage_over_time_multiplier", "affliction_chaos_damage_over_time_multiplier", "affliction_physical_damage_over_time_multiplier", "affliction_cold_damage_over_time_multiplier", "affliction_damage_over_time_multiplier", "default", }, weightVal = { 350, 350, 350, 350, 350, 0 }, modTags = { "damage" }, }, - ["AfflictionJewelSmallPassivesGrantDamageOverTime2"] = { type = "Suffix", affix = "of Degeneration", "Added Small Passive Skills also grant: 2% increased Damage over Time", statOrder = { 7141 }, level = 68, group = "AfflictionJewelSmallPassivesGrantDamageOverTime", weightKey = { "affliction_fire_damage_over_time_multiplier", "affliction_chaos_damage_over_time_multiplier", "affliction_physical_damage_over_time_multiplier", "affliction_cold_damage_over_time_multiplier", "affliction_damage_over_time_multiplier", "default", }, weightVal = { 350, 350, 350, 350, 350, 0 }, modTags = { "damage" }, }, - ["AfflictionJewelSmallPassivesGrantDamageOverTime3"] = { type = "Suffix", affix = "of Disintegration", "Added Small Passive Skills also grant: 3% increased Damage over Time", statOrder = { 7141 }, level = 84, group = "AfflictionJewelSmallPassivesGrantDamageOverTime", weightKey = { "affliction_fire_damage_over_time_multiplier", "affliction_chaos_damage_over_time_multiplier", "affliction_physical_damage_over_time_multiplier", "affliction_cold_damage_over_time_multiplier", "affliction_damage_over_time_multiplier", "default", }, weightVal = { 250, 250, 250, 250, 250, 0 }, modTags = { "damage" }, }, - ["AfflictionJewelSmallPassivesGrantElementalAilmentDuration_"] = { type = "Suffix", affix = "of Tumult", "Added Small Passive Skills also grant: 3% increased Duration of Elemental Ailments on Enemies", statOrder = { 7134 }, level = 1, group = "AfflictionJewelSmallPassivesGrantElementalAilmentDuration", weightKey = { "affliction_effect_of_non-damaging_ailments", "default", }, weightVal = { 350, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, - ["AfflictionJewelSmallPassivesGrantElementalAilmentDuration2"] = { type = "Suffix", affix = "of Turbulence", "Added Small Passive Skills also grant: 4% increased Duration of Elemental Ailments on Enemies", statOrder = { 7134 }, level = 68, group = "AfflictionJewelSmallPassivesGrantElementalAilmentDuration", weightKey = { "affliction_effect_of_non-damaging_ailments", "default", }, weightVal = { 350, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, - ["AfflictionJewelSmallPassivesGrantElementalAilmentDuration3"] = { type = "Suffix", affix = "of Disturbance", "Added Small Passive Skills also grant: 5% increased Duration of Elemental Ailments on Enemies", statOrder = { 7134 }, level = 84, group = "AfflictionJewelSmallPassivesGrantElementalAilmentDuration", weightKey = { "affliction_effect_of_non-damaging_ailments", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, - ["AfflictionJewelSmallPassivesGrantAuraAreaOfEffect__"] = { type = "Suffix", affix = "of Outreach", "Added Small Passive Skills also grant: 2% increased Area of Effect of Aura Skills", statOrder = { 7131 }, level = 1, group = "AfflictionJewelSmallPassivesGrantAuraAreaOfEffect", weightKey = { "old_do_not_use_affliction_aura_effect", "default", }, weightVal = { 350, 0 }, modTags = { "aura" }, }, - ["AfflictionJewelSmallPassivesGrantAuraAreaOfEffect2"] = { type = "Suffix", affix = "of Influence", "Added Small Passive Skills also grant: 4% increased Area of Effect of Aura Skills", statOrder = { 7131 }, level = 68, group = "AfflictionJewelSmallPassivesGrantAuraAreaOfEffect", weightKey = { "old_do_not_use_affliction_aura_effect", "default", }, weightVal = { 350, 0 }, modTags = { "aura" }, }, - ["AfflictionJewelSmallPassivesGrantAuraAreaOfEffect3"] = { type = "Suffix", affix = "of Guidance", "Added Small Passive Skills also grant: 6% increased Area of Effect of Aura Skills", statOrder = { 7131 }, level = 84, group = "AfflictionJewelSmallPassivesGrantAuraAreaOfEffect", weightKey = { "old_do_not_use_affliction_aura_effect", "default", }, weightVal = { 250, 0 }, modTags = { "aura" }, }, - ["AfflictionJewelSmallPassivesGrantCurseAreaOfEffect"] = { type = "Suffix", affix = "of Clout", "Added Small Passive Skills also grant: 1% increased Area of Effect of Hex Skills", statOrder = { 7140 }, level = 1, group = "AfflictionJewelSmallPassivesGrantCurseAreaOfEffect", weightKey = { "old_do_not_use_affliction_curse_effect", "default", }, weightVal = { 350, 0 }, modTags = { "caster", "curse" }, }, - ["AfflictionJewelSmallPassivesGrantCurseAreaOfEffect2"] = { type = "Suffix", affix = "of Dominance", "Added Small Passive Skills also grant: 2% increased Area of Effect of Hex Skills", statOrder = { 7140 }, level = 68, group = "AfflictionJewelSmallPassivesGrantCurseAreaOfEffect", weightKey = { "old_do_not_use_affliction_curse_effect", "default", }, weightVal = { 350, 0 }, modTags = { "caster", "curse" }, }, - ["AfflictionJewelSmallPassivesGrantCurseAreaOfEffect3"] = { type = "Suffix", affix = "of Suppression", "Added Small Passive Skills also grant: 3% increased Area of Effect of Hex Skills", statOrder = { 7140 }, level = 84, group = "AfflictionJewelSmallPassivesGrantCurseAreaOfEffect", weightKey = { "old_do_not_use_affliction_curse_effect", "default", }, weightVal = { 250, 0 }, modTags = { "caster", "curse" }, }, - ["AfflictionJewelSmallPassivesGrantWarcryDuration"] = { type = "Suffix", affix = "of Yelling", "Added Small Passive Skills also grant: 2% increased Warcry Duration", statOrder = { 7161 }, level = 1, group = "AfflictionJewelSmallPassivesGrantWarcryDuration", weightKey = { "affliction_warcry_buff_effect", "default", }, weightVal = { 350, 0 }, modTags = { }, }, - ["AfflictionJewelSmallPassivesGrantWarcryDuration2"] = { type = "Suffix", affix = "of Shouting", "Added Small Passive Skills also grant: 3% increased Warcry Duration", statOrder = { 7161 }, level = 68, group = "AfflictionJewelSmallPassivesGrantWarcryDuration", weightKey = { "affliction_warcry_buff_effect", "default", }, weightVal = { 350, 0 }, modTags = { }, }, - ["AfflictionJewelSmallPassivesGrantWarcryDuration3"] = { type = "Suffix", affix = "of Bellowing", "Added Small Passive Skills also grant: 4% increased Warcry Duration", statOrder = { 7161 }, level = 84, group = "AfflictionJewelSmallPassivesGrantWarcryDuration", weightKey = { "affliction_warcry_buff_effect", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["AfflictionJewelSmallPassivesGrantCriticalStrikeMultiplier"] = { type = "Suffix", affix = "of Ire", "Added Small Passive Skills also grant: +1% to Critical Strike Multiplier", statOrder = { 7133 }, level = 1, group = "AfflictionJewelSmallPassivesGrantCriticalStrikeMultiplier", weightKey = { "affliction_critical_chance", "default", }, weightVal = { 350, 0 }, modTags = { "damage", "critical" }, }, - ["AfflictionJewelSmallPassivesGrantCriticalStrikeMultiplier2_"] = { type = "Suffix", affix = "of Anger", "Added Small Passive Skills also grant: +2% to Critical Strike Multiplier", statOrder = { 7133 }, level = 68, group = "AfflictionJewelSmallPassivesGrantCriticalStrikeMultiplier", weightKey = { "affliction_critical_chance", "default", }, weightVal = { 350, 0 }, modTags = { "damage", "critical" }, }, - ["AfflictionJewelSmallPassivesGrantCriticalStrikeMultiplier3"] = { type = "Suffix", affix = "of Rage", "Added Small Passive Skills also grant: +3% to Critical Strike Multiplier", statOrder = { 7133 }, level = 84, group = "AfflictionJewelSmallPassivesGrantCriticalStrikeMultiplier", weightKey = { "affliction_critical_chance", "default", }, weightVal = { 250, 0 }, modTags = { "damage", "critical" }, }, - ["AfflictionJewelSmallPassivesGrantMinionLifeRegen"] = { type = "Suffix", affix = "of Fostering", "Added Small Passive Skills also grant: Minions Regenerate 0.1% of Life per Second", statOrder = { 7155 }, level = 1, group = "AfflictionJewelSmallPassivesGrantMinionLifeRegen", weightKey = { "affliction_minion_life", "default", }, weightVal = { 350, 0 }, modTags = { "resource", "life", "minion" }, }, - ["AfflictionJewelSmallPassivesGrantMinionLifeRegen2"] = { type = "Suffix", affix = "of Nurturing", "Added Small Passive Skills also grant: Minions Regenerate 0.15% of Life per Second", statOrder = { 7155 }, level = 68, group = "AfflictionJewelSmallPassivesGrantMinionLifeRegen", weightKey = { "affliction_minion_life", "default", }, weightVal = { 350, 0 }, modTags = { "resource", "life", "minion" }, }, - ["AfflictionJewelSmallPassivesGrantMinionLifeRegen3"] = { type = "Suffix", affix = "of Motherhood", "Added Small Passive Skills also grant: Minions Regenerate 0.2% of Life per Second", statOrder = { 7155 }, level = 84, group = "AfflictionJewelSmallPassivesGrantMinionLifeRegen", weightKey = { "affliction_minion_life", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "minion" }, }, - ["AfflictionJewelSmallPassivesGrantAreaOfEffect_"] = { type = "Suffix", affix = "of Reach", "Added Small Passive Skills also grant: 1% increased Area of Effect", statOrder = { 7136 }, level = 1, group = "AfflictionJewelSmallPassivesGrantAreaOfEffect", weightKey = { "affliction_area_damage", "default", }, weightVal = { 350, 0 }, modTags = { }, }, - ["AfflictionJewelSmallPassivesGrantAreaOfEffect2"] = { type = "Suffix", affix = "of Range", "Added Small Passive Skills also grant: 2% increased Area of Effect", statOrder = { 7136 }, level = 68, group = "AfflictionJewelSmallPassivesGrantAreaOfEffect", weightKey = { "affliction_area_damage", "default", }, weightVal = { 350, 0 }, modTags = { }, }, - ["AfflictionJewelSmallPassivesGrantAreaOfEffect3"] = { type = "Suffix", affix = "of Horizons", "Added Small Passive Skills also grant: 3% increased Area of Effect", statOrder = { 7136 }, level = 84, group = "AfflictionJewelSmallPassivesGrantAreaOfEffect", weightKey = { "affliction_area_damage", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["AfflictionJewelSmallPassivesGrantProjectileSpeed"] = { type = "Suffix", affix = "of Darting", "Added Small Passive Skills also grant: 2% increased Projectile Speed", statOrder = { 7135 }, level = 1, group = "AfflictionJewelSmallPassivesGrantProjectileSpeed", weightKey = { "affliction_projectile_damage", "default", }, weightVal = { 350, 0 }, modTags = { "speed" }, }, - ["AfflictionJewelSmallPassivesGrantProjectileSpeed2"] = { type = "Suffix", affix = "of Flight", "Added Small Passive Skills also grant: 3% increased Projectile Speed", statOrder = { 7135 }, level = 68, group = "AfflictionJewelSmallPassivesGrantProjectileSpeed", weightKey = { "affliction_projectile_damage", "default", }, weightVal = { 350, 0 }, modTags = { "speed" }, }, - ["AfflictionJewelSmallPassivesGrantProjectileSpeed3"] = { type = "Suffix", affix = "of Propulsion", "Added Small Passive Skills also grant: 4% increased Projectile Speed", statOrder = { 7135 }, level = 84, group = "AfflictionJewelSmallPassivesGrantProjectileSpeed", weightKey = { "affliction_projectile_damage", "default", }, weightVal = { 250, 0 }, modTags = { "speed" }, }, - ["AfflictionJewelSmallPassivesGrantTrapAndMineSpeed_"] = { type = "Suffix", affix = "of Tinkering", "Added Small Passive Skills also grant: 1% increased Trap and Mine Throwing Speed", statOrder = { 7160 }, level = 1, group = "AfflictionJewelSmallPassivesGrantTrapAndMineSpeed", weightKey = { "affliction_trap_and_mine_damage", "default", }, weightVal = { 350, 0 }, modTags = { "speed" }, }, - ["AfflictionJewelSmallPassivesGrantTrapAndMineSpeed2"] = { type = "Suffix", affix = "of Assembly", "Added Small Passive Skills also grant: 2% increased Trap and Mine Throwing Speed", statOrder = { 7160 }, level = 68, group = "AfflictionJewelSmallPassivesGrantTrapAndMineSpeed", weightKey = { "affliction_trap_and_mine_damage", "default", }, weightVal = { 350, 0 }, modTags = { "speed" }, }, - ["AfflictionJewelSmallPassivesGrantTrapAndMineSpeed3_"] = { type = "Suffix", affix = "of Deployment", "Added Small Passive Skills also grant: 3% increased Trap and Mine Throwing Speed", statOrder = { 7160 }, level = 84, group = "AfflictionJewelSmallPassivesGrantTrapAndMineSpeed", weightKey = { "affliction_trap_and_mine_damage", "default", }, weightVal = { 250, 0 }, modTags = { "speed" }, }, - ["AfflictionJewelSmallPassivesGrantTotemPlacementSpeed"] = { type = "Suffix", affix = "of the Karui", "Added Small Passive Skills also grant: 1% increased Totem Placement speed", statOrder = { 7159 }, level = 1, group = "AfflictionJewelSmallPassivesGrantTotemPlacementSpeed", weightKey = { "affliction_totem_damage", "default", }, weightVal = { 350, 0 }, modTags = { "speed" }, }, - ["AfflictionJewelSmallPassivesGrantTotemPlacementSpeed2"] = { type = "Suffix", affix = "of the Ancestors", "Added Small Passive Skills also grant: 2% increased Totem Placement speed", statOrder = { 7159 }, level = 68, group = "AfflictionJewelSmallPassivesGrantTotemPlacementSpeed", weightKey = { "affliction_totem_damage", "default", }, weightVal = { 350, 0 }, modTags = { "speed" }, }, - ["AfflictionJewelSmallPassivesGrantTotemPlacementSpeed3"] = { type = "Suffix", affix = "of The Way", "Added Small Passive Skills also grant: 3% increased Totem Placement speed", statOrder = { 7159 }, level = 84, group = "AfflictionJewelSmallPassivesGrantTotemPlacementSpeed", weightKey = { "affliction_totem_damage", "default", }, weightVal = { 250, 0 }, modTags = { "speed" }, }, - ["AfflictionJewelSmallPassivesGrantBrandAttachmentRange_"] = { type = "Suffix", affix = "of Gripping", "Added Small Passive Skills also grant: 1% increased Brand Attachment range", statOrder = { 7157 }, level = 1, group = "AfflictionJewelSmallPassivesGrantBrandAttachmentRange", weightKey = { "affliction_brand_damage", "default", }, weightVal = { 350, 0 }, modTags = { "caster" }, }, - ["AfflictionJewelSmallPassivesGrantBrandAttachmentRange2"] = { type = "Suffix", affix = "of Grasping", "Added Small Passive Skills also grant: 2% increased Brand Attachment range", statOrder = { 7157 }, level = 68, group = "AfflictionJewelSmallPassivesGrantBrandAttachmentRange", weightKey = { "affliction_brand_damage", "default", }, weightVal = { 350, 0 }, modTags = { "caster" }, }, - ["AfflictionJewelSmallPassivesGrantBrandAttachmentRange3____"] = { type = "Suffix", affix = "of Latching", "Added Small Passive Skills also grant: 3% increased Brand Attachment range", statOrder = { 7157 }, level = 84, group = "AfflictionJewelSmallPassivesGrantBrandAttachmentRange", weightKey = { "affliction_brand_damage", "default", }, weightVal = { 250, 0 }, modTags = { "caster" }, }, - ["AfflictionJewelSmallPassivesGrantChannelledAttackAndCastSpeed"] = { type = "Suffix", affix = "of Attention", "Added Small Passive Skills also grant: Channelling Skills have 1% increased Attack and Cast Speed", statOrder = { 7123 }, level = 1, group = "AfflictionJewelSmallPassivesGrantChannelledAttackAndCastSpeed", weightKey = { "affliction_channelling_skill_damage", "default", }, weightVal = { 350, 0 }, modTags = { "attack", "caster", "speed" }, }, - ["AfflictionJewelSmallPassivesGrantChannelledAttackAndCastSpeed2"] = { type = "Suffix", affix = "of Concentration", "Added Small Passive Skills also grant: Channelling Skills have 2% increased Attack and Cast Speed", statOrder = { 7123 }, level = 68, group = "AfflictionJewelSmallPassivesGrantChannelledAttackAndCastSpeed", weightKey = { "affliction_channelling_skill_damage", "default", }, weightVal = { 350, 0 }, modTags = { "attack", "caster", "speed" }, }, - ["AfflictionJewelSmallPassivesGrantChannelledAttackAndCastSpeed3"] = { type = "Suffix", affix = "of Forethought", "Added Small Passive Skills also grant: Channelling Skills have 3% increased Attack and Cast Speed", statOrder = { 7123 }, level = 84, group = "AfflictionJewelSmallPassivesGrantChannelledAttackAndCastSpeed", weightKey = { "affliction_channelling_skill_damage", "default", }, weightVal = { 250, 0 }, modTags = { "attack", "caster", "speed" }, }, - ["AfflictionJewelSmallPassivesGrantFlaskChargesGained"] = { type = "Suffix", affix = "of Refilling", "Added Small Passive Skills also grant: 1% increased Flask Charges gained", statOrder = { 7138 }, level = 1, group = "AfflictionJewelSmallPassivesGrantFlaskChargesGained", weightKey = { "affliction_life_and_mana_recovery_from_flasks", "affliction_flask_duration", "default", }, weightVal = { 350, 350, 0 }, modTags = { "flask" }, }, - ["AfflictionJewelSmallPassivesGrantFlaskChargesGained2_"] = { type = "Suffix", affix = "of Brimming", "Added Small Passive Skills also grant: 2% increased Flask Charges gained", statOrder = { 7138 }, level = 68, group = "AfflictionJewelSmallPassivesGrantFlaskChargesGained", weightKey = { "affliction_life_and_mana_recovery_from_flasks", "affliction_flask_duration", "default", }, weightVal = { 350, 350, 0 }, modTags = { "flask" }, }, - ["AfflictionJewelSmallPassivesGrantFlaskChargesGained3"] = { type = "Suffix", affix = "of Overflowing", "Added Small Passive Skills also grant: 3% increased Flask Charges gained", statOrder = { 7138 }, level = 84, group = "AfflictionJewelSmallPassivesGrantFlaskChargesGained", weightKey = { "affliction_life_and_mana_recovery_from_flasks", "affliction_flask_duration", "default", }, weightVal = { 250, 250, 0 }, modTags = { "flask" }, }, - ["AfflictionJewelSmallPassivesGrantFireSkillAttackAndCastSpeed"] = { type = "Suffix", affix = "of Kindling", "Added Small Passive Skills also grant: 1% increased Attack and Cast Speed with Fire Skills", statOrder = { 7127 }, level = 1, group = "AfflictionJewelSmallPassivesGrantFireSkillAttackAndCastSpeed", weightKey = { "affliction_fire_damage", "default", }, weightVal = { 350, 0 }, modTags = { "elemental", "fire", "attack", "caster", "speed" }, }, - ["AfflictionJewelSmallPassivesGrantFireSkillAttackAndCastSpeed2"] = { type = "Suffix", affix = "of Smoke", "Added Small Passive Skills also grant: 2% increased Attack and Cast Speed with Fire Skills", statOrder = { 7127 }, level = 68, group = "AfflictionJewelSmallPassivesGrantFireSkillAttackAndCastSpeed", weightKey = { "affliction_fire_damage", "default", }, weightVal = { 350, 0 }, modTags = { "elemental", "fire", "attack", "caster", "speed" }, }, - ["AfflictionJewelSmallPassivesGrantFireSkillAttackAndCastSpeed3_"] = { type = "Suffix", affix = "of Flashfires", "Added Small Passive Skills also grant: 3% increased Attack and Cast Speed with Fire Skills", statOrder = { 7127 }, level = 84, group = "AfflictionJewelSmallPassivesGrantFireSkillAttackAndCastSpeed", weightKey = { "affliction_fire_damage", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "fire", "attack", "caster", "speed" }, }, - ["AfflictionJewelSmallPassivesGrantColdSkillAttackAndCastSpeed"] = { type = "Suffix", affix = "of Cooling", "Added Small Passive Skills also grant: 1% increased Attack and Cast Speed with Cold Skills", statOrder = { 7125 }, level = 1, group = "AfflictionJewelSmallPassivesGrantColdSkillAttackAndCastSpeed", weightKey = { "affliction_cold_damage", "default", }, weightVal = { 350, 0 }, modTags = { "elemental", "cold", "attack", "caster", "speed" }, }, - ["AfflictionJewelSmallPassivesGrantColdSkillAttackAndCastSpeed2_"] = { type = "Suffix", affix = "of Frigidity", "Added Small Passive Skills also grant: 2% increased Attack and Cast Speed with Cold Skills", statOrder = { 7125 }, level = 68, group = "AfflictionJewelSmallPassivesGrantColdSkillAttackAndCastSpeed", weightKey = { "affliction_cold_damage", "default", }, weightVal = { 350, 0 }, modTags = { "elemental", "cold", "attack", "caster", "speed" }, }, - ["AfflictionJewelSmallPassivesGrantColdSkillAttackAndCastSpeed3"] = { type = "Suffix", affix = "of the Avalanche", "Added Small Passive Skills also grant: 3% increased Attack and Cast Speed with Cold Skills", statOrder = { 7125 }, level = 84, group = "AfflictionJewelSmallPassivesGrantColdSkillAttackAndCastSpeed", weightKey = { "affliction_cold_damage", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "cold", "attack", "caster", "speed" }, }, - ["AfflictionJewelSmallPassivesGrantLightningSkillAttackAndCastSpeed"] = { type = "Suffix", affix = "of Gathering Clouds", "Added Small Passive Skills also grant: 1% increased Attack and Cast Speed with Lightning Skills", statOrder = { 7128 }, level = 1, group = "AfflictionJewelSmallPassivesGrantLightningSkillAttackAndCastSpeed", weightKey = { "affliction_lightning_damage", "default", }, weightVal = { 350, 0 }, modTags = { "elemental", "lightning", "attack", "caster", "speed" }, }, - ["AfflictionJewelSmallPassivesGrantLightningSkillAttackAndCastSpeed2"] = { type = "Suffix", affix = "of Sudden Storms", "Added Small Passive Skills also grant: 2% increased Attack and Cast Speed with Lightning Skills", statOrder = { 7128 }, level = 68, group = "AfflictionJewelSmallPassivesGrantLightningSkillAttackAndCastSpeed", weightKey = { "affliction_lightning_damage", "default", }, weightVal = { 350, 0 }, modTags = { "elemental", "lightning", "attack", "caster", "speed" }, }, - ["AfflictionJewelSmallPassivesGrantLightningSkillAttackAndCastSpeed3"] = { type = "Suffix", affix = "of the Strike", "Added Small Passive Skills also grant: 3% increased Attack and Cast Speed with Lightning Skills", statOrder = { 7128 }, level = 84, group = "AfflictionJewelSmallPassivesGrantLightningSkillAttackAndCastSpeed", weightKey = { "affliction_lightning_damage", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "lightning", "attack", "caster", "speed" }, }, - ["AfflictionJewelSmallPassivesGrantChaosSkillAttackAndCastSpeed"] = { type = "Suffix", affix = "of Dusk", "Added Small Passive Skills also grant: 1% increased Attack and Cast Speed with Chaos Skills", statOrder = { 7124 }, level = 1, group = "AfflictionJewelSmallPassivesGrantChaosSkillAttackAndCastSpeed", weightKey = { "affliction_chaos_damage", "default", }, weightVal = { 350, 0 }, modTags = { "chaos", "attack", "caster", "speed" }, }, - ["AfflictionJewelSmallPassivesGrantChaosSkillAttackAndCastSpeed2____"] = { type = "Suffix", affix = "of Midnight", "Added Small Passive Skills also grant: 2% increased Attack and Cast Speed with Chaos Skills", statOrder = { 7124 }, level = 68, group = "AfflictionJewelSmallPassivesGrantChaosSkillAttackAndCastSpeed", weightKey = { "affliction_chaos_damage", "default", }, weightVal = { 350, 0 }, modTags = { "chaos", "attack", "caster", "speed" }, }, - ["AfflictionJewelSmallPassivesGrantChaosSkillAttackAndCastSpeed3"] = { type = "Suffix", affix = "of the Eclipse", "Added Small Passive Skills also grant: 3% increased Attack and Cast Speed with Chaos Skills", statOrder = { 7124 }, level = 84, group = "AfflictionJewelSmallPassivesGrantChaosSkillAttackAndCastSpeed", weightKey = { "affliction_chaos_damage", "default", }, weightVal = { 250, 0 }, modTags = { "chaos", "attack", "caster", "speed" }, }, - ["AfflictionJewelSmallPassivesGrantPhysicalSkillAttackAndCastSpeed"] = { type = "Suffix", affix = "of Rumbling", "Added Small Passive Skills also grant: 1% increased Attack and Cast Speed with Physical Skills", statOrder = { 7129 }, level = 1, group = "AfflictionJewelSmallPassivesGrantPhysicalSkillAttackAndCastSpeed", weightKey = { "affliction_physical_damage", "default", }, weightVal = { 350, 0 }, modTags = { "physical", "attack", "caster", "speed" }, }, - ["AfflictionJewelSmallPassivesGrantPhysicalSkillAttackAndCastSpeed2"] = { type = "Suffix", affix = "of Tremors", "Added Small Passive Skills also grant: 2% increased Attack and Cast Speed with Physical Skills", statOrder = { 7129 }, level = 68, group = "AfflictionJewelSmallPassivesGrantPhysicalSkillAttackAndCastSpeed", weightKey = { "affliction_physical_damage", "default", }, weightVal = { 350, 0 }, modTags = { "physical", "attack", "caster", "speed" }, }, - ["AfflictionJewelSmallPassivesGrantPhysicalSkillAttackAndCastSpeed3_"] = { type = "Suffix", affix = "of the Earthquake", "Added Small Passive Skills also grant: 3% increased Attack and Cast Speed with Physical Skills", statOrder = { 7129 }, level = 84, group = "AfflictionJewelSmallPassivesGrantPhysicalSkillAttackAndCastSpeed", weightKey = { "affliction_physical_damage", "default", }, weightVal = { 250, 0 }, modTags = { "physical", "attack", "caster", "speed" }, }, - ["AfflictionJewelSmallPassivesGrantElementalSkillAttackAndCastSpeed"] = { type = "Suffix", affix = "of Coaxing", "Added Small Passive Skills also grant: 1% increased Attack and Cast Speed with Elemental Skills", statOrder = { 7126 }, level = 1, group = "AfflictionJewelSmallPassivesGrantElementalSkillAttackAndCastSpeed", weightKey = { "affliction_elemental_damage", "default", }, weightVal = { 350, 0 }, modTags = { "elemental", "attack", "caster", "speed" }, }, - ["AfflictionJewelSmallPassivesGrantElementalSkillAttackAndCastSpeed2_"] = { type = "Suffix", affix = "of Evoking", "Added Small Passive Skills also grant: 2% increased Attack and Cast Speed with Elemental Skills", statOrder = { 7126 }, level = 68, group = "AfflictionJewelSmallPassivesGrantElementalSkillAttackAndCastSpeed", weightKey = { "affliction_elemental_damage", "default", }, weightVal = { 350, 0 }, modTags = { "elemental", "attack", "caster", "speed" }, }, - ["AfflictionJewelSmallPassivesGrantElementalSkillAttackAndCastSpeed3_"] = { type = "Suffix", affix = "of Manifesting", "Added Small Passive Skills also grant: 3% increased Attack and Cast Speed with Elemental Skills", statOrder = { 7126 }, level = 84, group = "AfflictionJewelSmallPassivesGrantElementalSkillAttackAndCastSpeed", weightKey = { "affliction_elemental_damage", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "attack", "caster", "speed" }, }, - ["AfflictionJewelSmallPassivesGrantMinionAttackAndCastSpeed"] = { type = "Suffix", affix = "of Pillaging", "Added Small Passive Skills also grant: Minions have 1% increased Attack and Cast Speed", statOrder = { 7153 }, level = 1, group = "AfflictionJewelSmallPassivesGrantMinionAttackAndCastSpeed", weightKey = { "affliction_minion_damage", "default", }, weightVal = { 350, 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, - ["AfflictionJewelSmallPassivesGrantMinionAttackAndCastSpeed2"] = { type = "Suffix", affix = "of Ravaging", "Added Small Passive Skills also grant: Minions have 2% increased Attack and Cast Speed", statOrder = { 7153 }, level = 68, group = "AfflictionJewelSmallPassivesGrantMinionAttackAndCastSpeed", weightKey = { "affliction_minion_damage", "default", }, weightVal = { 350, 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, - ["AfflictionJewelSmallPassivesGrantMinionAttackAndCastSpeed3"] = { type = "Suffix", affix = "of Razing", "Added Small Passive Skills also grant: Minions have 3% increased Attack and Cast Speed", statOrder = { 7153 }, level = 84, group = "AfflictionJewelSmallPassivesGrantMinionAttackAndCastSpeed", weightKey = { "affliction_minion_damage", "default", }, weightVal = { 250, 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, - ["AfflictionJewelSmallPassivesGrantHeraldAttackAndCastSpeed"] = { type = "Suffix", affix = "of the Courier", "Added Small Passive Skills also grant: 1% increased Attack and Cast Speed while affected by a Herald", statOrder = { 7122 }, level = 1, group = "AfflictionJewelSmallPassivesGrantHeraldAttackAndCastSpeed", weightKey = { "affliction_damage_while_you_have_a_herald", "default", }, weightVal = { 350, 0 }, modTags = { "attack", "caster", "speed" }, }, - ["AfflictionJewelSmallPassivesGrantHeraldAttackAndCastSpeed2_"] = { type = "Suffix", affix = "of the Messenger", "Added Small Passive Skills also grant: 2% increased Attack and Cast Speed while affected by a Herald", statOrder = { 7122 }, level = 68, group = "AfflictionJewelSmallPassivesGrantHeraldAttackAndCastSpeed", weightKey = { "affliction_damage_while_you_have_a_herald", "default", }, weightVal = { 350, 0 }, modTags = { "attack", "caster", "speed" }, }, - ["AfflictionJewelSmallPassivesGrantHeraldAttackAndCastSpeed3"] = { type = "Suffix", affix = "of the Herald", "Added Small Passive Skills also grant: 3% increased Attack and Cast Speed while affected by a Herald", statOrder = { 7122 }, level = 84, group = "AfflictionJewelSmallPassivesGrantHeraldAttackAndCastSpeed", weightKey = { "affliction_damage_while_you_have_a_herald", "default", }, weightVal = { 250, 0 }, modTags = { "attack", "caster", "speed" }, }, - ["AfflictionJewelSmallPassivesGrantHeraldMinionAttackAndCastSpeed"] = { type = "Suffix", affix = "of the Message", "Added Small Passive Skills also grant: Minions have 1% increased Attack and Cast Speed while you are affected by a Herald", statOrder = { 7154 }, level = 1, group = "AfflictionJewelSmallPassivesGrantHeraldMinionAttackAndCastSpeed", weightKey = { "affliction_minion_damage_while_you_have_a_herald", "default", }, weightVal = { 350, 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, - ["AfflictionJewelSmallPassivesGrantHeraldMinionAttackAndCastSpeed2_"] = { type = "Suffix", affix = "of the Teachings", "Added Small Passive Skills also grant: Minions have 2% increased Attack and Cast Speed while you are affected by a Herald", statOrder = { 7154 }, level = 68, group = "AfflictionJewelSmallPassivesGrantHeraldMinionAttackAndCastSpeed", weightKey = { "affliction_minion_damage_while_you_have_a_herald", "default", }, weightVal = { 350, 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, - ["AfflictionJewelSmallPassivesGrantHeraldMinionAttackAndCastSpeed3"] = { type = "Suffix", affix = "of the Canon", "Added Small Passive Skills also grant: Minions have 3% increased Attack and Cast Speed while you are affected by a Herald", statOrder = { 7154 }, level = 84, group = "AfflictionJewelSmallPassivesGrantHeraldMinionAttackAndCastSpeed", weightKey = { "affliction_minion_damage_while_you_have_a_herald", "default", }, weightVal = { 250, 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, + ["ChaosResistJewelCorrupted"] = { type = "Corrupted", affix = "", "+(1-3)% to Chaos Resistance", statOrder = { 1552 }, level = 1, group = "ChaosResistance", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "chaos", "resistance" }, }, + ["ReducedCharacterSizeJewelCorrupted"] = { type = "Corrupted", affix = "", "1% reduced Character Size", statOrder = { 1966 }, level = 1, group = "ActorSize", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["ReducedChillDurationJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Chill Duration on you", statOrder = { 1783 }, level = 1, group = "ReducedChillDuration", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ReducedFreezeDurationJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Freeze Duration on you", statOrder = { 1785 }, level = 1, group = "ReducedFreezeDuration", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ReducedIgniteDurationJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Ignite Duration on you", statOrder = { 1786 }, level = 1, group = "ReducedBurnDuration", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ReducedShockDurationJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Shock Duration on you", statOrder = { 1784 }, level = 1, group = "ReducedShockDuration", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["IncreasedChargeDurationJewelCorrupted_"] = { type = "Corrupted", affix = "", "(3-7)% increased Endurance, Frenzy and Power Charge Duration", statOrder = { 2934 }, level = 1, group = "ChargeDuration", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, }, + ["AddedChaosDamageJewelCorrupted"] = { type = "Corrupted", affix = "", "Adds 1 to (2-3) Chaos Damage to Attacks", statOrder = { 1298 }, level = 1, group = "ChaosDamage", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["ChanceToBeCritJewelCorrupted"] = { type = "Corrupted", affix = "", "Hits have (60-100)% increased Critical Strike Chance against you", statOrder = { 3040 }, level = 1, group = "ChanceToTakeCriticalStrike", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "critical" }, }, + ["DamageWhileDeadJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-30)% increased Damage while Dead", statOrder = { 3004 }, level = 1, group = "DamageWhileDead", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage" }, }, + ["VaalSkillDamageJewelCorrupted"] = { type = "Corrupted", affix = "", "(5-10)% increased Damage with Vaal Skills", statOrder = { 3003 }, level = 1, group = "VaalSkillDamage", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage", "vaal" }, }, + ["ChaosDamagePerCorruptedItemJewelCorrupted"] = { type = "Corrupted", affix = "", "1% increased Chaos Damage for each Corrupted Item Equipped", statOrder = { 3007 }, level = 1, group = "ChaosDamagePerCorruptedItem", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["LifeLeechRatePerCorruptedItemJewelCorrupted"] = { type = "Corrupted", affix = "", "1% increased total Recovery per second from Life Leech for each Corrupted Item Equipped", statOrder = { 3008 }, level = 1, group = "LifeLeechRatePerCorruptedItem", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "life" }, }, + ["ManaLeechRatePerCorruptedItemJewelCorrupted"] = { type = "Corrupted", affix = "", "1% increased total Recovery per second from Mana Leech for each Corrupted Item Equipped", statOrder = { 3010 }, level = 1, group = "ManaLeechRatePerCorrupteditem", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana" }, }, + ["SilenceImmunityJewelCorrupted"] = { type = "Corrupted", affix = "", "You cannot be Cursed with Silence", statOrder = { 3002 }, level = 1, group = "ImmuneToSilence", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "caster", "curse" }, }, + ["V2CorruptedBloodImmunityCorrupted"] = { type = "Corrupted", affix = "", "Corrupted Blood cannot be inflicted on you", statOrder = { 5301 }, level = 33, group = "CorruptedBloodImmunity", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "bleed", "physical", "ailment" }, }, + ["V2HinderImmunityCorrupted"] = { type = "Corrupted", affix = "", "You cannot be Hindered", statOrder = { 10435 }, level = 40, group = "YouCannotBeHindered", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "blue_herring" }, }, + ["V2IncreasedAilmentEffectOnEnemiesCorrupted"] = { type = "Corrupted", affix = "", "(5-7)% increased Effect of Non-Damaging Ailments", statOrder = { 9296 }, level = 1, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "ailment" }, }, + ["V2IncreasedAreaOfEffectCorrupted"] = { type = "Corrupted", affix = "", "(4-5)% increased Area of Effect", statOrder = { 1791 }, level = 1, group = "AreaOfEffect", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["V2IncreasedCriticalStrikeChanceCorrupted_"] = { type = "Corrupted", affix = "", "(8-10)% increased Global Critical Strike Chance", statOrder = { 1370 }, level = 1, group = "CriticalStrikeChance", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "critical" }, }, + ["V2IncreasedDamageJewelCorrupted___"] = { type = "Corrupted", affix = "", "(4-5)% increased Damage", statOrder = { 1103 }, level = 1, group = "IncreasedDamage", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, }, + ["V2MaimImmunityCorrupted"] = { type = "Corrupted", affix = "", "You cannot be Maimed", statOrder = { 4843 }, level = 40, group = "AvoidMaimChance", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["V2MinionDamageCorrupted"] = { type = "Corrupted", affix = "", "Minions deal (4-5)% increased Damage", statOrder = { 1882 }, level = 1, group = "MinionDamage", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "minion" }, }, + ["V2ReducedManaReservationCorrupted"] = { type = "Corrupted", affix = "", "2% increased Reservation Efficiency of Skills", statOrder = { 2142 }, level = 1, group = "ReducedReservationForJewel", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["V2ReducedManaReservationCorruptedEfficiency__"] = { type = "Corrupted", affix = "", "2% increased Reservation Efficiency of Skills", statOrder = { 2139 }, level = 1, group = "ReservationEfficiencyForJewel", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["V2SilenceImmunityJewelCorrupted"] = { type = "Corrupted", affix = "", "You cannot be Cursed with Silence", statOrder = { 3002 }, level = 60, group = "ImmuneToSilence", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "curse" }, }, + ["V2FirePenetrationJewelCorrupted"] = { type = "Corrupted", affix = "", "Damage Penetrates 1% Fire Resistance", statOrder = { 2890 }, level = 1, group = "FireResistancePenetration", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["V2ColdPenetrationJewelCorrupted"] = { type = "Corrupted", affix = "", "Damage Penetrates 1% Cold Resistance", statOrder = { 2892 }, level = 1, group = "ColdResistancePenetration", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["V2LightningPenetrationJewelCorrupted__"] = { type = "Corrupted", affix = "", "Damage Penetrates 1% Lightning Resistance", statOrder = { 2893 }, level = 1, group = "LightningResistancePenetration", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["V2ElementalPenetrationJewelCorrupted_"] = { type = "Corrupted", affix = "", "Damage Penetrates 1% Elemental Resistances", statOrder = { 2889 }, level = 1, group = "ElementalPenetration", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["V2ArmourPenetrationJewelCorrupted"] = { type = "Corrupted", affix = "", "Hits have (10-15)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7037 }, level = 1, group = "ChanceToIgnoreEnemyArmour", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "physical" }, }, + ["V2AvoidIgniteJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid being Ignited", statOrder = { 1757 }, level = 1, group = "AvoidIgnite", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["V2AvoidChillAndFreezeJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid being Chilled", "(20-25)% chance to Avoid being Frozen", statOrder = { 1755, 1756 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["V2AvoidShockJewelCorrupted_"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid being Shocked", statOrder = { 1759 }, level = 1, group = "AvoidShock", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["V2AvoidPoisonJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid being Poisoned", statOrder = { 1760 }, level = 1, group = "ChanceToAvoidPoison", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["V2AvoidBleedJewelCorrupted__"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid Bleeding", statOrder = { 4123 }, level = 1, group = "ChanceToAvoidBleeding", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["V2AvoidStunJewelCorrupted_"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid being Stunned", statOrder = { 1762 }, level = 1, group = "AvoidStun", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["V2IgniteDurationOnYouJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% reduced Ignite Duration on you", statOrder = { 1786 }, level = 1, group = "ReducedIgniteDurationOnSelf", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["V2ChillEffectOnYouJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% reduced Effect of Chill on you", statOrder = { 1556 }, level = 1, group = "ChillEffectivenessOnSelf", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["V2ShockEffectOnYouJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% reduced Effect of Shock on you", statOrder = { 9803 }, level = 1, group = "ReducedShockEffectOnSelf", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["V2PoisonDurationOnYouJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% reduced Poison Duration on you", statOrder = { 9762 }, level = 1, group = "ReducedPoisonDuration", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["V2BleedDurationOnYouJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% reduced Bleed Duration on you", statOrder = { 9753 }, level = 1, group = "ReducedBleedDuration", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "bleed", "physical", "ailment" }, }, + ["V2CurseEffectOnYouJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% reduced Effect of Curses on you", statOrder = { 2079 }, level = 1, group = "CurseEffectOnYouJewel", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "curse" }, }, + ["AfflictionNotableProdigiousDefense__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Prodigious Defence", statOrder = { 7612 }, level = 1, group = "AfflictionNotableProdigiousDefense", weightKey = { "affliction_attack_damage_while_holding_a_shield", "affliction_chance_to_block", "default", }, weightVal = { 600, 750, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block", "damage", "attack" }, }, + ["AfflictionNotableAdvanceGuard"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Advance Guard", statOrder = { 7415 }, level = 50, group = "AfflictionNotableAdvanceGuard", weightKey = { "affliction_attack_damage_while_holding_a_shield", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack", "speed" }, }, + ["AfflictionNotableGladiatorialCombat"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Gladiatorial Combat", statOrder = { 7536 }, level = 68, group = "AfflictionNotableGladiatorialCombat", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack", "critical" }, }, + ["AfflictionNotableStrikeLeader_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Strike Leader", statOrder = { 7667 }, level = 1, group = "AfflictionNotableStrikeLeader", weightKey = { "affliction_attack_damage_while_holding_a_shield", "affliction_chance_to_block", "default", }, weightVal = { 600, 750, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block", "damage", "attack" }, }, + ["AfflictionNotablePowerfulWard"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Powerful Ward", statOrder = { 7602 }, level = 68, group = "AfflictionNotablePowerfulWard", weightKey = { "affliction_chance_to_block", "default", }, weightVal = { 141, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block", "power_charge" }, }, + ["AfflictionNotableEnduringWard_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Enduring Ward", statOrder = { 7505 }, level = 68, group = "AfflictionNotableEnduringWard", weightKey = { "affliction_chance_to_block", "default", }, weightVal = { 141, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block", "endurance_charge" }, }, + ["AfflictionNotableGladiatorsFortitude"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Gladiator's Fortitude", statOrder = { 7537 }, level = 68, group = "AfflictionNotableGladiatorsFortitude", weightKey = { "affliction_attack_damage_while_holding_a_shield", "affliction_maximum_life", "default", }, weightVal = { 113, 146, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "damage", "attack" }, }, + ["AfflictionNotablePreciseRetaliation_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Precise Retaliation", statOrder = { 7606 }, level = 50, group = "AfflictionNotablePreciseRetaliation", weightKey = { "affliction_attack_damage_while_holding_a_shield", "affliction_critical_chance", "default", }, weightVal = { 300, 457, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "critical" }, }, + ["AfflictionNotableVeteranDefender"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Veteran Defender", statOrder = { 7689 }, level = 1, group = "AfflictionNotableVeteranDefender", weightKey = { "affliction_attack_damage_while_holding_a_shield", "default", }, weightVal = { 600, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "defences", "elemental", "resistance", "attribute" }, }, + ["AfflictionNotableIronBreaker"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Iron Breaker", statOrder = { 7563 }, level = 1, group = "AfflictionNotableIronBreaker", weightKey = { "affliction_physical_damage", "default", }, weightVal = { 464, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "physical_damage", "damage", "physical" }, }, + ["AfflictionNotableDeepCuts"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Deep Cuts", statOrder = { 7483 }, level = 75, group = "AfflictionNotableDeepCuts", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "physical", "attack" }, }, + ["AfflictionNotableMastertheFundamentals_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Master the Fundamentals", statOrder = { 7580 }, level = 50, group = "AfflictionNotableMastertheFundamentals", weightKey = { "affliction_physical_damage", "default", }, weightVal = { 232, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "resistance" }, }, + ["AfflictionNotableForceMultiplier"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Force Multiplier", statOrder = { 7531 }, level = 50, group = "AfflictionNotableForceMultiplier", weightKey = { "affliction_physical_damage", "default", }, weightVal = { 232, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "physical_damage", "damage", "physical" }, }, + ["AfflictionNotableFuriousAssault"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Furious Assault", statOrder = { 7534 }, level = 1, group = "AfflictionNotableFuriousAssault", weightKey = { "affliction_physical_damage", "default", }, weightVal = { 464, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "physical_damage", "caster_damage", "damage", "damage", "physical", "attack", "caster" }, }, + ["AfflictionNotableViciousSkewering"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Vicious Skewering", statOrder = { 7692 }, level = 68, group = "AfflictionNotableViciousSkewering", weightKey = { "affliction_attack_damage_", "affliction_axe_and_sword_damage", "affliction_mace_and_staff_damage", "affliction_dagger_and_claw_damage", "affliction_bow_damage", "affliction_wand_damage", "affliction_damage_with_two_handed_melee_weapons", "affliction_attack_damage_while_dual_wielding_", "affliction_attack_damage_while_holding_a_shield", "default", }, weightVal = { 81, 141, 141, 151, 145, 151, 113, 117, 113, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["AfflictionNotableGrimOath"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Grim Oath", statOrder = { 7541 }, level = 68, group = "AfflictionNotableGrimOath", weightKey = { "affliction_physical_damage", "affliction_chaos_damage", "default", }, weightVal = { 87, 97, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, + ["AfflictionNotableBattleHardened_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Battle-Hardened", statOrder = { 7436 }, level = 50, group = "AfflictionNotableBattleHardened", weightKey = { "affliction_physical_damage", "affliction_armour", "affliction_evasion", "default", }, weightVal = { 232, 696, 658, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "defences", "armour", "evasion", "physical" }, }, + ["AfflictionNotableReplenishingPresence"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Replenishing Presence", statOrder = { 7630 }, level = 50, group = "AfflictionNotableReplenishingPresence", weightKey = { "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "default", }, weightVal = { 480, 480, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "aura" }, }, + ["AfflictionNotableMasterofCommand__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Master of Command", statOrder = { 7576 }, level = 68, group = "AfflictionNotableMasterofCommand", weightKey = { "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "default", }, weightVal = { 180, 180, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "aura" }, }, + ["AfflictionNotableFirstAmongEquals__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Spiteful Presence", statOrder = { 7526 }, level = 1, group = "AfflictionNotableFirstAmongEquals", weightKey = { "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "default", }, weightVal = { 960, 960, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "elemental", "cold", "aura", "ailment" }, }, + ["AfflictionNotablePurposefulHarbinger"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Purposeful Harbinger", statOrder = { 7619 }, level = 75, group = "AfflictionNotablePurposefulHarbinger", weightKey = { "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "affliction_damage_while_you_have_a_herald", "affliction_minion_damage_while_you_have_a_herald", "default", }, weightVal = { 60, 60, 118, 158, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "aura" }, }, + ["AfflictionNotablePreciseCommander"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Destructive Aspect", statOrder = { 7604 }, level = 68, group = "AfflictionNotablePreciseCommander", weightKey = { "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "affliction_critical_chance", "default", }, weightVal = { 180, 180, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "aura" }, }, + ["AfflictionNotablePureCommander"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Electric Presence", statOrder = { 7616 }, level = 68, group = "AfflictionNotablePureCommander", weightKey = { "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "affliction_lightning_resistance", "affliction_cold_resistance", "affliction_fire_resistance", "default", }, weightVal = { 180, 180, 0, 0, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "elemental", "lightning", "aura", "ailment" }, }, + ["AfflictionNotableSummerCommander"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Mortifying Aspect", statOrder = { 7671 }, level = 68, group = "AfflictionNotableSummerCommander", weightKey = { "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "affliction_fire_resistance", "default", }, weightVal = { 180, 180, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "chaos", "resistance", "aura" }, }, + ["AfflictionNotableWinterCommander"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Frantic Aspect", statOrder = { 7707 }, level = 68, group = "AfflictionNotableWinterCommander", weightKey = { "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "affliction_cold_resistance", "default", }, weightVal = { 180, 180, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "speed", "aura" }, }, + ["AfflictionNotableGroundedCommander"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Introspection", statOrder = { 7542 }, level = 68, group = "AfflictionNotableGroundedCommander", weightKey = { "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "affliction_lightning_resistance", "default", }, weightVal = { 180, 180, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "aura" }, }, + ["AfflictionNotableStalwartCommander"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Volatile Presence", statOrder = { 7660 }, level = 50, group = "AfflictionNotableStalwartCommander", weightKey = { "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "affliction_armour", "affliction_evasion", "affliction_maximum_energy_shield", "default", }, weightVal = { 480, 480, 0, 0, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "elemental", "fire", "aura", "ailment" }, }, + ["AfflictionNotableVengefulCommander"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Righteous Path", statOrder = { 7688 }, level = 1, group = "AfflictionNotableVengefulCommander", weightKey = { "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "affliction_elemental_damage", "affliction_lightning_damage", "affliction_cold_damage", "affliction_fire_damage", "default", }, weightVal = { 960, 960, 0, 0, 0, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "aura" }, }, + ["AfflictionNotableSkullbreaker"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Skullbreaker", statOrder = { 7651 }, level = 68, group = "AfflictionNotableSkullbreaker", weightKey = { "affliction_critical_chance", "default", }, weightVal = { 171, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "critical" }, }, + ["AfflictionNotablePressurePoints__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Pressure Points", statOrder = { 7607 }, level = 50, group = "AfflictionNotablePressurePoints", weightKey = { "affliction_critical_chance", "default", }, weightVal = { 457, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "critical" }, }, + ["AfflictionNotableOverwhelmingMalice"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Overwhelming Malice", statOrder = { 7596 }, level = 68, group = "AfflictionNotableOverwhelmingMalice", weightKey = { "affliction_critical_chance", "affliction_chaos_damage", "default", }, weightVal = { 171, 97, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { }, }, + ["AfflictionNotableMagnifier"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Magnifier", statOrder = { 7572 }, level = 1, group = "AfflictionNotableMagnifier", weightKey = { "affliction_critical_chance", "affliction_area_damage", "default", }, weightVal = { 914, 1959, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "critical" }, }, + ["AfflictionNotableSavageResponse"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Savage Response", statOrder = { 7639 }, level = 50, group = "AfflictionNotableSavageResponse", weightKey = { "affliction_critical_chance", "default", }, weightVal = { 457, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "critical" }, }, + ["AfflictionNotableEyeoftheStorm"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Eye of the Storm", statOrder = { 7515 }, level = 50, group = "AfflictionNotableEyeoftheStorm", weightKey = { "affliction_critical_chance", "affliction_fire_damage_over_time_multiplier", "affliction_effect_of_non-damaging_ailments", "default", }, weightVal = { 457, 366, 814, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "cold", "lightning", "critical", "ailment" }, }, + ["AfflictionNotableBasicsofPain"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Basics of Pain", statOrder = { 7435 }, level = 1, group = "AfflictionNotableBasicsofPain", weightKey = { "affliction_critical_chance", "default", }, weightVal = { 914, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "critical" }, }, + ["AfflictionNotableQuickGetaway"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Quick Getaway", statOrder = { 7621 }, level = 1, group = "AfflictionNotableQuickGetaway", weightKey = { "affliction_critical_chance", "default", }, weightVal = { 914, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "attack", "caster", "speed", "critical" }, }, + ["AfflictionNotableAssertDominance"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Assert Dominance", statOrder = { 7433 }, level = 68, group = "AfflictionNotableAssertDominance", weightKey = { "affliction_area_damage", "default", }, weightVal = { 367, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { }, }, + ["AfflictionNotableVastPower"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Vast Power", statOrder = { 7687 }, level = 50, group = "AfflictionNotableVastPower", weightKey = { "affliction_area_damage", "default", }, weightVal = { 980, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage" }, }, + ["AfflictionNotablePowerfulAssault_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Powerful Assault", statOrder = { 7601 }, level = 50, group = "AfflictionNotablePowerfulAssault", weightKey = { "affliction_area_damage", "default", }, weightVal = { 980, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage" }, }, + ["AfflictionNotableIntensity"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Intensity", statOrder = { 7561 }, level = 68, group = "AfflictionNotableIntensity", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage" }, }, + ["AfflictionNotableTitanicSwings_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Titanic Swings", statOrder = { 7679 }, level = 50, group = "AfflictionNotableTitanicSwings", weightKey = { "affliction_area_damage", "affliction_damage_with_two_handed_melee_weapons", "default", }, weightVal = { 980, 302, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack" }, }, + ["AfflictionNotableToweringThreat"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Towering Threat", statOrder = { 7681 }, level = 68, group = "AfflictionNotableToweringThreat", weightKey = { "affliction_area_damage", "affliction_maximum_life", "default", }, weightVal = { 367, 146, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life" }, }, + ["AfflictionNotableAncestralEcho"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Ancestral Echo", statOrder = { 7421 }, level = 1, group = "AfflictionNotableAncestralEcho", weightKey = { "affliction_totem_damage", "default", }, weightVal = { 1477, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "attack", "caster", "speed" }, }, + ["AfflictionNotableAncestralReach"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Ancestral Reach", statOrder = { 7426 }, level = 1, group = "AfflictionNotableAncestralReach", weightKey = { "affliction_totem_damage", "default", }, weightVal = { 1477, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "speed" }, }, + ["AfflictionNotableAncestralMight"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Ancestral Might", statOrder = { 7424 }, level = 50, group = "AfflictionNotableAncestralMight", weightKey = { "affliction_totem_damage", "default", }, weightVal = { 738, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage" }, }, + ["AfflictionNotableAncestralPreservation__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Ancestral Preservation", statOrder = { 7425 }, level = 68, group = "AfflictionNotableAncestralPreservation", weightKey = { "affliction_totem_damage", "default", }, weightVal = { 277, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "chaos", "resistance" }, }, + ["AfflictionNotableSnaringSpirits"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Snaring Spirits", statOrder = { 7655 }, level = 50, group = "AfflictionNotableSnaringSpirits", weightKey = { "affliction_totem_damage", "default", }, weightVal = { 738, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage" }, }, + ["AfflictionNotableSleeplessSentries"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Sleepless Sentries", statOrder = { 7652 }, level = 68, group = "AfflictionNotableSleeplessSentries", weightKey = { "affliction_totem_damage", "default", }, weightVal = { 277, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { }, }, + ["AfflictionNotableAncestralGuidance_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Ancestral Guidance", statOrder = { 7422 }, level = 50, group = "AfflictionNotableAncestralGuidance", weightKey = { "affliction_totem_damage", "default", }, weightVal = { 738, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "speed" }, }, + ["AfflictionNotableAncestralInspiration__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Ancestral Inspiration", statOrder = { 7423 }, level = 68, group = "AfflictionNotableAncestralInspiration", weightKey = { "affliction_totem_damage", "affliction_spell_damage", "default", }, weightVal = { 277, 281, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster" }, }, + ["AfflictionNotableVitalFocus"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Vital Focus", statOrder = { 7695 }, level = 1, group = "AfflictionNotableVitalFocus", weightKey = { "affliction_channelling_skill_damage", "default", }, weightVal = { 1811, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "damage" }, }, + ["AfflictionNotableRapidInfusion_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Unrestrained Focus", statOrder = { 7622 }, level = 68, group = "AfflictionNotableRapidInfusion", weightKey = { "affliction_channelling_skill_damage", "default", }, weightVal = { 340, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "speed" }, }, + ["AfflictionNotableUnwaveringFocus"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Unwavering Focus", statOrder = { 7685 }, level = 50, group = "AfflictionNotableUnwaveringFocus", weightKey = { "affliction_channelling_skill_damage", "default", }, weightVal = { 906, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "damage" }, }, + ["AfflictionNotableEnduringFocus"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Enduring Focus", statOrder = { 7504 }, level = 75, group = "AfflictionNotableEnduringFocus", weightKey = { "affliction_channelling_skill_damage", "default", }, weightVal = { 113, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "endurance_charge", "damage" }, }, + ["AfflictionNotablePreciseFocus"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Precise Focus", statOrder = { 7605 }, level = 50, group = "AfflictionNotablePreciseFocus", weightKey = { "affliction_channelling_skill_damage", "default", }, weightVal = { 906, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "critical" }, }, + ["AfflictionNotableStoicFocus"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Stoic Focus", statOrder = { 7662 }, level = 1, group = "AfflictionNotableStoicFocus", weightKey = { "affliction_channelling_skill_damage", "affliction_chance_to_block", "default", }, weightVal = { 1811, 750, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block", "damage" }, }, + ["AfflictionNotableHexBreaker"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Hex Breaker", statOrder = { 7550 }, level = 75, group = "AfflictionNotableHexBreaker", weightKey = { "affliction_channelling_skill_damage", "default", }, weightVal = { 113, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "attack", "caster", "speed", "curse" }, }, + ["AfflictionNotableArcaneAdept_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Arcane Adept", statOrder = { 7429 }, level = 68, group = "AfflictionNotableArcaneAdept", weightKey = { "affliction_spell_damage", "default", }, weightVal = { 281, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster_damage", "damage", "attack", "caster", "speed" }, }, + ["AfflictionNotableDistilledPerfection_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Distilled Perfection", statOrder = { 7492 }, level = 1, group = "AfflictionNotableDistilledPerfection", weightKey = { "affliction_flask_duration", "affliction_life_and_mana_recovery_from_flasks", "default", }, weightVal = { 1079, 1778, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "flask", "resource", "life", "mana" }, }, + ["AfflictionNotableSpikedConcoction"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Spiked Concoction", statOrder = { 7658 }, level = 50, group = "AfflictionNotableSpikedConcoction", weightKey = { "affliction_flask_duration", "affliction_life_and_mana_recovery_from_flasks", "default", }, weightVal = { 539, 889, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "flask", "attack", "caster", "speed" }, }, + ["AfflictionNotableFasting"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Fasting", statOrder = { 7519 }, level = 50, group = "AfflictionNotableFasting", weightKey = { "affliction_flask_duration", "affliction_life_and_mana_recovery_from_flasks", "default", }, weightVal = { 539, 889, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "flask", "speed" }, }, + ["AfflictionNotableMendersWellspring__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Mender's Wellspring", statOrder = { 7581 }, level = 68, group = "AfflictionNotableMendersWellspring", weightKey = { "affliction_flask_duration", "affliction_life_and_mana_recovery_from_flasks", "default", }, weightVal = { 202, 333, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "flask", "resource", "life" }, }, + ["AfflictionNotableSpecialReserve"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Special Reserve", statOrder = { 7657 }, level = 1, group = "AfflictionNotableSpecialReserve", weightKey = { "affliction_flask_duration", "affliction_life_and_mana_recovery_from_flasks", "default", }, weightVal = { 1079, 1778, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "flask", "resource", "life", "damage" }, }, + ["AfflictionNotableNumbingElixir"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Numbing Elixir", statOrder = { 7590 }, level = 68, group = "AfflictionNotableNumbingElixir", weightKey = { "affliction_flask_duration", "affliction_life_and_mana_recovery_from_flasks", "default", }, weightVal = { 202, 333, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "flask", "caster", "ailment", "curse" }, }, + ["AfflictionNotableMobMentality"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Mob Mentality", statOrder = { 7584 }, level = 75, group = "AfflictionNotableMobMentality", weightKey = { "affliction_warcry_buff_effect", "default", }, weightVal = { 109, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "endurance_charge", "frenzy_charge", "power_charge", "damage", "attack" }, }, + ["AfflictionNotableCryWolf__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Cry Wolf", statOrder = { 7474 }, level = 68, group = "AfflictionNotableCryWolf", weightKey = { "affliction_warcry_buff_effect", "default", }, weightVal = { 327, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack" }, }, + ["AfflictionNotableHauntingShout"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Haunting Shout", statOrder = { 7545 }, level = 50, group = "AfflictionNotableHauntingShout", weightKey = { "affliction_warcry_buff_effect", "default", }, weightVal = { 873, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { }, }, + ["AfflictionNotableLeadByExample__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Lead By Example", statOrder = { 7565 }, level = 1, group = "AfflictionNotableLeadByExample", weightKey = { "affliction_warcry_buff_effect", "default", }, weightVal = { 1745, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "attribute" }, }, + ["AfflictionNotableProvocateur"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Provocateur", statOrder = { 7613 }, level = 50, group = "AfflictionNotableProvocateur", weightKey = { "affliction_warcry_buff_effect", "affliction_critical_chance", "default", }, weightVal = { 873, 457, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "critical" }, }, + ["AfflictionNotableWarningCall"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Warning Call", statOrder = { 7699 }, level = 68, group = "AfflictionNotableWarningCall", weightKey = { "affliction_warcry_buff_effect", "default", }, weightVal = { 327, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "defences", "armour" }, }, + ["AfflictionNotableRattlingBellow"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Rattling Bellow", statOrder = { 7623 }, level = 1, group = "AfflictionNotableRattlingBellow", weightKey = { "affliction_warcry_buff_effect", "default", }, weightVal = { 1745, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack", "attribute" }, }, + ["AfflictionNotableBloodscent"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Bloodscent", statOrder = { 7444 }, level = 75, group = "AfflictionNotableBloodscent", weightKey = { "affliction_axe_and_sword_damage", "default", }, weightVal = { 47, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "attack" }, }, + ["AfflictionNotableRunThrough"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Run Through", statOrder = { 7635 }, level = 68, group = "AfflictionNotableRunThrough", weightKey = { "affliction_axe_and_sword_damage", "default", }, weightVal = { 141, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AfflictionNotableWoundAggravation____"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Wound Aggravation", statOrder = { 7711 }, level = 1, group = "AfflictionNotableWoundAggravation", weightKey = { "affliction_axe_and_sword_damage", "affliction_physical_damage_over_time_multiplier", "default", }, weightVal = { 750, 686, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AfflictionNotableOverlord"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Overlord", statOrder = { 7594 }, level = 75, group = "AfflictionNotableOverlord", weightKey = { "affliction_mace_and_staff_damage", "default", }, weightVal = { 47, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack" }, }, + ["AfflictionNotableExpansiveMight"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Expansive Might", statOrder = { 7510 }, level = 68, group = "AfflictionNotableExpansiveMight", weightKey = { "affliction_mace_and_staff_damage", "affliction_area_damage", "default", }, weightVal = { 141, 367, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack" }, }, + ["AfflictionNotableWeightAdvantage_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Weight Advantage", statOrder = { 7701 }, level = 1, group = "AfflictionNotableWeightAdvantage", weightKey = { "affliction_mace_and_staff_damage", "default", }, weightVal = { 750, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack", "attribute" }, }, + ["AfflictionNotableWindup_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Wind-up", statOrder = { 7706 }, level = 68, group = "AfflictionNotableWindup", weightKey = { "affliction_dagger_and_claw_damage", "default", }, weightVal = { 151, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "power_charge", "damage", "attack", "critical" }, }, + ["AfflictionNotableFanofBlades_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Fan of Blades", statOrder = { 7517 }, level = 75, group = "AfflictionNotableFanofBlades", weightKey = { "affliction_dagger_and_claw_damage", "default", }, weightVal = { 51, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack" }, }, + ["AfflictionNotableDiseaseVector"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Disease Vector", statOrder = { 7489 }, level = 50, group = "AfflictionNotableDiseaseVector", weightKey = { "affliction_dagger_and_claw_damage", "default", }, weightVal = { 404, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["AfflictionNotableArcingShot__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Arcing Shot", statOrder = { 7432 }, level = 50, group = "AfflictionNotableArcingShot", weightKey = { "affliction_bow_damage", "default", }, weightVal = { 387, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack", "critical" }, }, + ["AfflictionNotableTemperedArrowheads"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Tempered Arrowheads", statOrder = { 7676 }, level = 50, group = "AfflictionNotableTemperedArrowheads", weightKey = { "affliction_bow_damage", "default", }, weightVal = { 387, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack", "ailment" }, }, + ["AfflictionNotableBroadside_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Broadside", statOrder = { 7450 }, level = 1, group = "AfflictionNotableBroadside", weightKey = { "affliction_bow_damage", "default", }, weightVal = { 774, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "attack" }, }, + ["AfflictionNotableExplosiveForce"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Explosive Force", statOrder = { 7513 }, level = 68, group = "AfflictionNotableExplosiveForce", weightKey = { "affliction_wand_damage", "default", }, weightVal = { 151, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos", "attack" }, }, + ["AfflictionNotableOpportunisticFusilade_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Opportunistic Fusilade", statOrder = { 7593 }, level = 1, group = "AfflictionNotableOpportunisticFusilade", weightKey = { "affliction_wand_damage", "default", }, weightVal = { 807, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack", "critical" }, }, + ["AfflictionNotableStormsHand"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Storm's Hand", statOrder = { 7665 }, level = 50, group = "AfflictionNotableStormsHand", weightKey = { "affliction_wand_damage", "default", }, weightVal = { 403, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning", "attack" }, }, + ["AfflictionNotableBattlefieldDominator"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Battlefield Dominator", statOrder = { 7437 }, level = 1, group = "AfflictionNotableBattlefieldDominator", weightKey = { "affliction_damage_with_two_handed_melee_weapons", "default", }, weightVal = { 604, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack" }, }, + ["AfflictionNotableMartialMastery"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Martial Mastery", statOrder = { 7573 }, level = 50, group = "AfflictionNotableMartialMastery", weightKey = { "affliction_damage_with_two_handed_melee_weapons", "default", }, weightVal = { 302, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "attack", "speed", "attribute" }, }, + ["AfflictionNotableSurefootedStriker_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Surefooted Striker", statOrder = { 7673 }, level = 50, group = "AfflictionNotableSurefootedStriker", weightKey = { "affliction_damage_with_two_handed_melee_weapons", "default", }, weightVal = { 302, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack", "critical" }, }, + ["AfflictionNotableGracefulExecution_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Graceful Execution", statOrder = { 7538 }, level = 1, group = "AfflictionNotableGracefulExecution", weightKey = { "affliction_damage_with_two_handed_melee_weapons", "default", }, weightVal = { 604, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "attack", "speed", "critical", "attribute" }, }, + ["AfflictionNotableBrutalInfamy"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Brutal Infamy", statOrder = { 7452 }, level = 50, group = "AfflictionNotableBrutalInfamy", weightKey = { "affliction_damage_with_two_handed_melee_weapons", "default", }, weightVal = { 302, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack" }, }, + ["AfflictionNotableFearsomeWarrior"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Fearsome Warrior", statOrder = { 7520 }, level = 68, group = "AfflictionNotableFearsomeWarrior", weightKey = { "affliction_damage_with_two_handed_melee_weapons", "default", }, weightVal = { 113, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack" }, }, + ["AfflictionNotableCombatRhythm"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Combat Rhythm", statOrder = { 7466 }, level = 50, group = "AfflictionNotableCombatRhythm", weightKey = { "affliction_attack_damage_while_dual_wielding_", "default", }, weightVal = { 312, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "attack", "speed" }, }, + ["AfflictionNotableHitandRun"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Hit and Run", statOrder = { 7552 }, level = 1, group = "AfflictionNotableHitandRun", weightKey = { "affliction_attack_damage_while_dual_wielding_", "affliction_chance_to_dodge_attacks", "default", }, weightVal = { 623, 1477, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack" }, }, + ["AfflictionNotableInsatiableKiller_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Insatiable Killer", statOrder = { 7558 }, level = 50, group = "AfflictionNotableInsatiableKiller", weightKey = { "affliction_attack_damage_while_dual_wielding_", "default", }, weightVal = { 312, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "frenzy_charge", "attack", "speed" }, }, + ["AfflictionNotableMageBane__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Mage Bane", statOrder = { 7570 }, level = 68, group = "AfflictionNotableMageBane", weightKey = { "affliction_attack_damage_while_dual_wielding_", "affliction_chance_to_block", "default", }, weightVal = { 117, 141, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block", "power_charge", "damage", "attack" }, }, + ["AfflictionNotableMartialMomentum"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Martial Momentum", statOrder = { 7574 }, level = 50, group = "AfflictionNotableMartialMomentum", weightKey = { "affliction_attack_damage_while_dual_wielding_", "default", }, weightVal = { 312, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack", "speed" }, }, + ["AfflictionNotableDeadlyRepartee"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Deadly Repartee", statOrder = { 7481 }, level = 1, group = "AfflictionNotableDeadlyRepartee", weightKey = { "affliction_attack_damage_while_dual_wielding_", "default", }, weightVal = { 623, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block", "damage", "attack", "critical" }, }, + ["AfflictionNotableQuickandDeadly_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Quick and Deadly", statOrder = { 7620 }, level = 68, group = "AfflictionNotableQuickandDeadly", weightKey = { "affliction_attack_damage_while_dual_wielding_", "default", }, weightVal = { 117, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack", "speed" }, }, + ["AfflictionNotableSmitetheWeak"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Smite the Weak", statOrder = { 7653 }, level = 1, group = "AfflictionNotableSmitetheWeak", weightKey = { "affliction_attack_damage_", "affliction_axe_and_sword_damage", "affliction_mace_and_staff_damage", "affliction_dagger_and_claw_damage", "affliction_bow_damage", "affliction_wand_damage", "affliction_damage_with_two_handed_melee_weapons", "affliction_attack_damage_while_dual_wielding_", "affliction_attack_damage_while_holding_a_shield", "default", }, weightVal = { 432, 750, 750, 808, 774, 807, 604, 623, 600, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "damage", "attack" }, }, + ["AfflictionNotableHeavyHitter"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Heavy Hitter", statOrder = { 7547 }, level = 50, group = "AfflictionNotableHeavyHitter", weightKey = { "affliction_attack_damage_", "affliction_axe_and_sword_damage", "affliction_mace_and_staff_damage", "affliction_dagger_and_claw_damage", "affliction_bow_damage", "affliction_wand_damage", "affliction_damage_with_two_handed_melee_weapons", "affliction_attack_damage_while_dual_wielding_", "affliction_attack_damage_while_holding_a_shield", "default", }, weightVal = { 216, 375, 375, 404, 387, 403, 302, 312, 300, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "damage", "attack" }, }, + ["AfflictionNotableMartialProwess"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Martial Prowess", statOrder = { 7575 }, level = 1, group = "AfflictionNotableMartialProwess", weightKey = { "affliction_attack_damage_", "affliction_axe_and_sword_damage", "affliction_mace_and_staff_damage", "affliction_dagger_and_claw_damage", "affliction_bow_damage", "affliction_wand_damage", "affliction_damage_with_two_handed_melee_weapons", "affliction_attack_damage_while_dual_wielding_", "affliction_attack_damage_while_holding_a_shield", "default", }, weightVal = { 432, 750, 750, 808, 774, 807, 604, 623, 600, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "damage", "attack", "speed" }, }, + ["AfflictionNotableCalamitous"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Calamitous", statOrder = { 7455 }, level = 50, group = "AfflictionNotableCalamitous", weightKey = { "affliction_attack_damage_", "affliction_axe_and_sword_damage", "affliction_mace_and_staff_damage", "affliction_dagger_and_claw_damage", "affliction_bow_damage", "affliction_wand_damage", "affliction_damage_with_two_handed_melee_weapons", "affliction_attack_damage_while_dual_wielding_", "affliction_attack_damage_while_holding_a_shield", "default", }, weightVal = { 216, 375, 375, 404, 387, 403, 302, 312, 300, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental", "fire", "cold", "lightning", "attack", "ailment" }, }, + ["AfflictionNotableDevastator"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Devastator", statOrder = { 7486 }, level = 75, group = "AfflictionNotableDevastator", weightKey = { "affliction_attack_damage_", "affliction_axe_and_sword_damage", "affliction_mace_and_staff_damage", "affliction_dagger_and_claw_damage", "affliction_bow_damage", "affliction_wand_damage", "affliction_damage_with_two_handed_melee_weapons", "affliction_attack_damage_while_dual_wielding_", "affliction_attack_damage_while_holding_a_shield", "default", }, weightVal = { 27, 47, 47, 51, 48, 50, 38, 39, 38, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AfflictionNotableFueltheFight"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Fuel the Fight", statOrder = { 7533 }, level = 1, group = "AfflictionNotableFueltheFight", weightKey = { "affliction_attack_damage_", "affliction_axe_and_sword_damage", "affliction_mace_and_staff_damage", "affliction_dagger_and_claw_damage", "affliction_bow_damage", "affliction_wand_damage", "affliction_damage_with_two_handed_melee_weapons", "affliction_attack_damage_while_dual_wielding_", "affliction_attack_damage_while_holding_a_shield", "default", }, weightVal = { 432, 750, 750, 808, 774, 807, 604, 623, 600, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "attack", "speed" }, }, + ["AfflictionNotableDrivetheDestruction__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Drive the Destruction", statOrder = { 7498 }, level = 1, group = "AfflictionNotableDrivetheDestruction", weightKey = { "affliction_attack_damage_", "affliction_axe_and_sword_damage", "affliction_mace_and_staff_damage", "affliction_dagger_and_claw_damage", "affliction_bow_damage", "affliction_wand_damage", "affliction_damage_with_two_handed_melee_weapons", "affliction_attack_damage_while_dual_wielding_", "affliction_attack_damage_while_holding_a_shield", "default", }, weightVal = { 432, 750, 750, 808, 774, 807, 604, 623, 600, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "damage", "attack" }, }, + ["AfflictionNotableFeedtheFury"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Feed the Fury", statOrder = { 7523 }, level = 50, group = "AfflictionNotableFeedtheFury", weightKey = { "affliction_attack_damage_", "affliction_axe_and_sword_damage", "affliction_mace_and_staff_damage", "affliction_dagger_and_claw_damage", "affliction_bow_damage", "affliction_wand_damage", "affliction_damage_with_two_handed_melee_weapons", "affliction_attack_damage_while_dual_wielding_", "affliction_attack_damage_while_holding_a_shield", "default", }, weightVal = { 216, 375, 375, 404, 387, 403, 302, 312, 300, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "damage", "attack", "speed" }, }, + ["AfflictionNotableSealMender"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Seal Mender", statOrder = { 7642 }, level = 75, group = "AfflictionNotableSealMender", weightKey = { "affliction_spell_damage", "default", }, weightVal = { 94, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { }, }, + ["AfflictionNotableConjuredWall"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Conjured Wall", statOrder = { 7469 }, level = 50, group = "AfflictionNotableConjuredWall", weightKey = { "affliction_spell_damage", "default", }, weightVal = { 750, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block", "caster_damage", "damage", "caster" }, }, + ["AfflictionNotableArcaneHeroism_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Arcane Heroism", statOrder = { 7430 }, level = 68, group = "AfflictionNotableArcaneHeroism", weightKey = { "affliction_spell_damage", "default", }, weightVal = { 281, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { }, }, + ["AfflictionNotablePracticedCaster"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Practiced Caster", statOrder = { 7603 }, level = 1, group = "AfflictionNotablePracticedCaster", weightKey = { "affliction_spell_damage", "default", }, weightVal = { 1500, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster_damage", "damage", "caster", "speed" }, }, + ["AfflictionNotableBurdenProjection"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Burden Projection", statOrder = { 7453 }, level = 50, group = "AfflictionNotableBurdenProjection", weightKey = { "affliction_spell_damage", "default", }, weightVal = { 750, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster_damage", "damage", "caster", "speed" }, }, + ["AfflictionNotableThaumophage"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Thaumophage", statOrder = { 7677 }, level = 50, group = "AfflictionNotableThaumophage", weightKey = { "affliction_spell_damage", "default", }, weightVal = { 750, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "caster_damage", "defences", "energy_shield", "damage", "caster" }, }, + ["AfflictionNotableEssenceRush"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Essence Rush", statOrder = { 7507 }, level = 50, group = "AfflictionNotableEssenceRush", weightKey = { "affliction_spell_damage", "default", }, weightVal = { 750, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "caster_damage", "defences", "energy_shield", "damage", "attack", "caster", "speed" }, }, + ["AfflictionNotableSapPsyche"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Sap Psyche", statOrder = { 7638 }, level = 68, group = "AfflictionNotableSapPsyche", weightKey = { "affliction_spell_damage", "default", }, weightVal = { 281, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "caster_damage", "resource", "mana", "defences", "energy_shield", "damage", "caster" }, }, + ["AfflictionNotableSadist_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Sadist", statOrder = { 7636 }, level = 68, group = "AfflictionNotableSadist", weightKey = { "affliction_elemental_damage", "affliction_lightning_damage", "affliction_cold_damage", "affliction_fire_damage", "default", }, weightVal = { 281, 136, 95, 89, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["AfflictionNotableCorrosiveElements"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Corrosive Elements", statOrder = { 7472 }, level = 75, group = "AfflictionNotableCorrosiveElements", weightKey = { "affliction_elemental_damage", "affliction_lightning_damage", "affliction_cold_damage", "affliction_fire_damage", "default", }, weightVal = { 94, 45, 32, 30, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["AfflictionNotableDoryanisLesson_"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Doryani's Lesson", statOrder = { 7495 }, level = 68, group = "AfflictionNotableDoryanisLesson", weightKey = { "affliction_elemental_damage", "affliction_lightning_damage", "affliction_cold_damage", "affliction_fire_damage", "default", }, weightVal = { 281, 136, 95, 89, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "elemental_damage", "resource", "life", "damage", "elemental" }, }, + ["AfflictionNotableDisorientingDisplay____"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Disorienting Display", statOrder = { 7490 }, level = 50, group = "AfflictionNotableDisorientingDisplay", weightKey = { "affliction_elemental_damage", "affliction_lightning_damage", "affliction_cold_damage", "affliction_fire_damage", "default", }, weightVal = { 750, 364, 253, 238, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["AfflictionNotablePrismaticHeart__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Prismatic Heart", statOrder = { 7611 }, level = 1, group = "AfflictionNotablePrismaticHeart", weightKey = { "affliction_elemental_damage", "affliction_lightning_damage", "affliction_cold_damage", "affliction_fire_damage", "affliction_lightning_resistance", "affliction_cold_resistance", "affliction_fire_resistance", "default", }, weightVal = { 1500, 727, 505, 475, 1371, 1371, 1315, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "resistance" }, }, + ["AfflictionNotableWidespreadDestruction"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Widespread Destruction", statOrder = { 7704 }, level = 1, group = "AfflictionNotableWidespreadDestruction", weightKey = { "affliction_elemental_damage", "affliction_lightning_damage", "affliction_cold_damage", "affliction_fire_damage", "default", }, weightVal = { 1500, 727, 505, 475, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["AfflictionNotableMasterofFire"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Master of Fire", statOrder = { 7578 }, level = 75, group = "AfflictionNotableMasterofFire", weightKey = { "affliction_fire_damage", "affliction_fire_damage_over_time_multiplier", "default", }, weightVal = { 30, 46, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { }, }, + ["AfflictionNotableSmokingRemains"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Smoking Remains", statOrder = { 7654 }, level = 50, group = "AfflictionNotableSmokingRemains", weightKey = { "affliction_fire_damage", "affliction_fire_damage_over_time_multiplier", "default", }, weightVal = { 238, 366, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["AfflictionNotableCremator"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Cremator", statOrder = { 7473 }, level = 50, group = "AfflictionNotableCremator", weightKey = { "affliction_fire_damage", "affliction_fire_damage_over_time_multiplier", "default", }, weightVal = { 238, 366, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["AfflictionNotableSnowstorm"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Snowstorm", statOrder = { 7656 }, level = 50, group = "AfflictionNotableSnowstorm", weightKey = { "affliction_lightning_damage", "affliction_cold_damage", "default", }, weightVal = { 364, 253, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "lightning" }, }, + ["AfflictionNotableStormDrinker___"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Storm Drinker", statOrder = { 7663 }, level = 1, group = "AfflictionNotableStormDrinker", weightKey = { "affliction_lightning_damage", "default", }, weightVal = { 727, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "defences", "energy_shield", "damage", "elemental", "lightning" }, }, + ["AfflictionNotableParalysis"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Paralysis", statOrder = { 7597 }, level = 50, group = "AfflictionNotableParalysis", weightKey = { "affliction_lightning_damage", "default", }, weightVal = { 364, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["AfflictionNotableSupercharge"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Supercharge", statOrder = { 7672 }, level = 75, group = "AfflictionNotableSupercharge", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["AfflictionNotableBlanketedSnow_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Blanketed Snow", statOrder = { 7439 }, level = 68, group = "AfflictionNotableBlanketedSnow", weightKey = { "affliction_cold_damage", "default", }, weightVal = { 95, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["AfflictionNotableColdtotheCore"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Cold to the Core", statOrder = { 7465 }, level = 68, group = "AfflictionNotableColdtotheCore", weightKey = { "affliction_cold_damage", "default", }, weightVal = { 95, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["AfflictionNotableColdBloodedKiller_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Cold-Blooded Killer", statOrder = { 7463 }, level = 50, group = "AfflictionNotableColdBloodedKiller", weightKey = { "affliction_cold_damage", "affliction_cold_damage_over_time_multiplier", "default", }, weightVal = { 253, 390, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "resource", "life", "damage", "elemental", "cold" }, }, + ["AfflictionNotableTouchofCruelty_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Touch of Cruelty", statOrder = { 7680 }, level = 1, group = "AfflictionNotableTouchofCruelty", weightKey = { "affliction_chaos_damage", "default", }, weightVal = { 519, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["AfflictionNotableUnwaveringlyEvil"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Unwaveringly Evil", statOrder = { 7686 }, level = 1, group = "AfflictionNotableUnwaveringlyEvil", weightKey = { "affliction_chaos_damage", "affliction_chaos_damage_over_time_multiplier", "default", }, weightVal = { 519, 696, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["AfflictionNotableUnspeakableGifts"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Unspeakable Gifts", statOrder = { 7683 }, level = 75, group = "AfflictionNotableUnspeakableGifts", weightKey = { "affliction_chaos_damage", "default", }, weightVal = { 32, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["AfflictionNotableDarkIdeation"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Dark Ideation", statOrder = { 7478 }, level = 68, group = "AfflictionNotableDarkIdeation", weightKey = { "affliction_chaos_damage", "affliction_chaos_damage_over_time_multiplier", "default", }, weightVal = { 97, 130, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["AfflictionNotableUnholyGrace_"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Unholy Grace", statOrder = { 7682 }, level = 1, group = "AfflictionNotableUnholyGrace", weightKey = { "affliction_chaos_damage", "default", }, weightVal = { 519, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "attack", "caster", "speed" }, }, + ["AfflictionNotableWickedPall_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Wicked Pall", statOrder = { 7703 }, level = 50, group = "AfflictionNotableWickedPall", weightKey = { "affliction_chaos_damage", "affliction_chaos_damage_over_time_multiplier", "default", }, weightVal = { 259, 348, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["AfflictionNotableRenewal"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Renewal", statOrder = { 7628 }, level = 50, group = "AfflictionNotableRenewal", weightKey = { "affliction_minion_damage", "affliction_minion_life", "default", }, weightVal = { 500, 716, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "damage", "minion" }, }, + ["AfflictionNotableRazeandPillage_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Raze and Pillage", statOrder = { 7624 }, level = 68, group = "AfflictionNotableRazeandPillage", weightKey = { "affliction_minion_damage", "default", }, weightVal = { 188, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "physical_damage", "elemental_damage", "bleed", "damage", "physical", "elemental", "fire", "minion", "ailment" }, }, + ["AfflictionNotableRottenClaws"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Rotten Claws", statOrder = { 7634 }, level = 50, group = "AfflictionNotableRottenClaws", weightKey = { "affliction_minion_damage", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "physical", "attack", "minion" }, }, + ["AfflictionNotableCalltotheSlaughter"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Call to the Slaughter", statOrder = { 7456 }, level = 1, group = "AfflictionNotableCalltotheSlaughter", weightKey = { "affliction_minion_damage", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "caster_damage", "damage", "attack", "caster", "speed", "minion" }, }, + ["AfflictionNotableSkeletalAtrophy"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Skeletal Atrophy", statOrder = { 7650 }, level = 68, group = "AfflictionNotableSkeletalAtrophy", weightKey = { "affliction_minion_damage", "default", }, weightVal = { 188, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos", "minion" }, }, + ["AfflictionNotableHulkingCorpses"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Hulking Corpses", statOrder = { 7556 }, level = 50, group = "AfflictionNotableHulkingCorpses", weightKey = { "affliction_minion_life", "default", }, weightVal = { 716, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "minion" }, }, + ["AfflictionNotableViciousBite"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Vicious Bite", statOrder = { 7690 }, level = 75, group = "AfflictionNotableViciousBite", weightKey = { "affliction_minion_damage", "default", }, weightVal = { 63, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "damage", "minion", "critical" }, }, + ["AfflictionNotablePrimordialBond"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Primordial Bond", statOrder = { 7608 }, level = 68, group = "AfflictionNotablePrimordialBond", weightKey = { "affliction_minion_damage", "default", }, weightVal = { 188, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "resource", "life", "damage", "minion" }, }, + ["AfflictionNotableBlowback"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Blowback", statOrder = { 7445 }, level = 50, group = "AfflictionNotableBlowback", weightKey = { "affliction_fire_damage_over_time_multiplier", "default", }, weightVal = { 366, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, + ["AfflictionNotableFantheFlames_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Fan the Flames", statOrder = { 7518 }, level = 68, group = "AfflictionNotableFantheFlames", weightKey = { "affliction_fire_damage_over_time_multiplier", "default", }, weightVal = { 137, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental", "fire", "ailment" }, }, + ["AfflictionNotableCookedAlive"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Cooked Alive", statOrder = { 7471 }, level = 68, group = "AfflictionNotableCookedAlive", weightKey = { "affliction_fire_damage_over_time_multiplier", "default", }, weightVal = { 137, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, + ["AfflictionNotableBurningBright"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Burning Bright", statOrder = { 7454 }, level = 50, group = "AfflictionNotableBurningBright", weightKey = { "affliction_fire_damage_over_time_multiplier", "affliction_fire_damage", "default", }, weightVal = { 366, 238, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["AfflictionNotableWrappedinFlame_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Wrapped in Flame", statOrder = { 7712 }, level = 68, group = "AfflictionNotableWrappedinFlame", weightKey = { "affliction_fire_damage_over_time_multiplier", "default", }, weightVal = { 137, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["AfflictionNotableVividHues"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Vivid Hues", statOrder = { 7696 }, level = 50, group = "AfflictionNotableVividHues", weightKey = { "affliction_physical_damage_over_time_multiplier", "default", }, weightVal = { 343, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "bleed", "resource", "life", "physical", "attack", "ailment" }, }, + ["AfflictionNotableRend"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Rend", statOrder = { 7627 }, level = 50, group = "AfflictionNotableRend", weightKey = { "affliction_physical_damage_over_time_multiplier", "default", }, weightVal = { 343, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["AfflictionNotableDisorientingWounds"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Disorienting Wounds", statOrder = { 7491 }, level = 1, group = "AfflictionNotableDisorientingWounds", weightKey = { "affliction_physical_damage_over_time_multiplier", "default", }, weightVal = { 686, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["AfflictionNotableCompoundInjury"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Compound Injury", statOrder = { 7467 }, level = 50, group = "AfflictionNotableCompoundInjury", weightKey = { "affliction_physical_damage_over_time_multiplier", "default", }, weightVal = { 343, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["AfflictionNotableBloodArtist"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Blood Artist", statOrder = { 7443 }, level = 75, group = "AfflictionNotableBloodArtist", weightKey = { "affliction_physical_damage_over_time_multiplier", "default", }, weightVal = { 129, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "bleed", "physical", "ailment" }, }, + ["AfflictionNotablePhlebotomist"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Phlebotomist", statOrder = { 7600 }, level = 50, group = "AfflictionNotablePhlebotomist", weightKey = { "affliction_physical_damage_over_time_multiplier", "default", }, weightVal = { 343, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "bleed", "physical", "critical", "ailment" }, }, + ["AfflictionNotableSepticSpells"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Septic Spells", statOrder = { 7646 }, level = 50, group = "AfflictionNotableSepticSpells", weightKey = { "affliction_chaos_damage_over_time_multiplier", "default", }, weightVal = { 348, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster_damage", "chaos_damage", "poison", "damage", "chaos", "caster", "speed", "ailment" }, }, + ["AfflictionNotableLowTolerance"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Low Tolerance", statOrder = { 7569 }, level = 68, group = "AfflictionNotableLowTolerance", weightKey = { "affliction_chaos_damage_over_time_multiplier", "default", }, weightVal = { 130, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["AfflictionNotableSteadyTorment"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Steady Torment", statOrder = { 7661 }, level = 68, group = "AfflictionNotableSteadyTorment", weightKey = { "affliction_chaos_damage_over_time_multiplier", "affliction_physical_damage_over_time_multiplier", "default", }, weightVal = { 130, 129, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "physical_damage", "chaos_damage", "bleed", "poison", "damage", "physical", "chaos", "attack", "ailment", "ailment" }, }, + ["AfflictionNotableEternalSuffering"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Eternal Suffering", statOrder = { 7508 }, level = 50, group = "AfflictionNotableEternalSuffering", weightKey = { "affliction_chaos_damage_over_time_multiplier", "default", }, weightVal = { 348, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["AfflictionNotableEldritchInspiration"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Eldritch Inspiration", statOrder = { 7499 }, level = 50, group = "AfflictionNotableEldritchInspiration", weightKey = { "affliction_chaos_damage_over_time_multiplier", "affliction_maximum_mana", "default", }, weightVal = { 348, 466, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "chaos_damage", "resource", "mana", "damage", "chaos" }, }, + ["AfflictionNotableWastingAffliction"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Wasting Affliction", statOrder = { 7700 }, level = 68, group = "AfflictionNotableWastingAffliction", weightKey = { "affliction_damage_over_time_multiplier", "affliction_cold_damage_over_time_multiplier", "affliction_physical_damage_over_time_multiplier", "affliction_fire_damage_over_time_multiplier", "affliction_chaos_damage_over_time_multiplier", "default", }, weightVal = { 222, 178, 129, 137, 130, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "ailment" }, }, + ["AfflictionNotableHaemorrhage"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Haemorrhage", statOrder = { 7544 }, level = 50, group = "AfflictionNotableHaemorrhage", weightKey = { "affliction_damage_over_time_multiplier", "affliction_cold_damage_over_time_multiplier", "affliction_physical_damage_over_time_multiplier", "affliction_fire_damage_over_time_multiplier", "affliction_chaos_damage_over_time_multiplier", "affliction_critical_chance", "default", }, weightVal = { 593, 475, 343, 366, 348, 457, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "critical", "ailment" }, }, + ["AfflictionNotableFlowofLife_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Flow of Life", statOrder = { 7529 }, level = 68, group = "AfflictionNotableFlowofLife", weightKey = { "affliction_damage_over_time_multiplier", "affliction_cold_damage_over_time_multiplier", "affliction_physical_damage_over_time_multiplier", "affliction_fire_damage_over_time_multiplier", "affliction_chaos_damage_over_time_multiplier", "affliction_maximum_life", "default", }, weightVal = { 222, 178, 129, 137, 130, 146, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "damage" }, }, + ["AfflictionNotableExposureTherapy_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Exposure Therapy", statOrder = { 7514 }, level = 1, group = "AfflictionNotableExposureTherapy", weightKey = { "affliction_damage_over_time_multiplier", "affliction_cold_damage_over_time_multiplier", "affliction_physical_damage_over_time_multiplier", "affliction_fire_damage_over_time_multiplier", "affliction_chaos_damage_over_time_multiplier", "affliction_chaos_resistance", "default", }, weightVal = { 1185, 950, 686, 733, 696, 2341, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "chaos_damage", "damage", "chaos", "resistance" }, }, + ["AfflictionNotableBrushwithDeath"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Brush with Death", statOrder = { 7451 }, level = 68, group = "AfflictionNotableBrushwithDeath", weightKey = { "affliction_damage_over_time_multiplier", "affliction_cold_damage_over_time_multiplier", "affliction_physical_damage_over_time_multiplier", "affliction_fire_damage_over_time_multiplier", "affliction_chaos_damage_over_time_multiplier", "affliction_maximum_life", "affliction_maximum_energy_shield", "default", }, weightVal = { 222, 178, 129, 137, 130, 146, 189, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "defences", "energy_shield", "damage" }, }, + ["AfflictionNotableVileReinvigoration_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Vile Reinvigoration", statOrder = { 7694 }, level = 50, group = "AfflictionNotableVileReinvigoration", weightKey = { "affliction_damage_over_time_multiplier", "affliction_cold_damage_over_time_multiplier", "affliction_physical_damage_over_time_multiplier", "affliction_fire_damage_over_time_multiplier", "affliction_chaos_damage_over_time_multiplier", "affliction_maximum_energy_shield", "default", }, weightVal = { 593, 475, 343, 366, 348, 505, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "defences", "energy_shield", "damage" }, }, + ["AfflictionNotableCirclingOblivion"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Circling Oblivion", statOrder = { 7461 }, level = 1, group = "AfflictionNotableCirclingOblivion", weightKey = { "affliction_damage_over_time_multiplier", "affliction_cold_damage_over_time_multiplier", "affliction_physical_damage_over_time_multiplier", "affliction_fire_damage_over_time_multiplier", "affliction_chaos_damage_over_time_multiplier", "default", }, weightVal = { 1185, 950, 686, 733, 696, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "ailment" }, }, + ["AfflictionNotableBrewedforPotency"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Brewed for Potency", statOrder = { 7449 }, level = 1, group = "AfflictionNotableBrewedforPotency", weightKey = { "affliction_damage_over_time_multiplier", "affliction_cold_damage_over_time_multiplier", "affliction_physical_damage_over_time_multiplier", "affliction_fire_damage_over_time_multiplier", "affliction_chaos_damage_over_time_multiplier", "affliction_flask_duration", "default", }, weightVal = { 1185, 950, 686, 733, 696, 1079, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "flask", "resource", "life", "mana", "damage" }, }, + ["AfflictionNotableAstonishingAffliction"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Astonishing Affliction", statOrder = { 7434 }, level = 1, group = "AfflictionNotableAstonishingAffliction", weightKey = { "affliction_effect_of_non-damaging_ailments", "default", }, weightVal = { 1627, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "ailment" }, }, + ["AfflictionNotableColdConduction__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Cold Conduction", statOrder = { 7464 }, level = 68, group = "AfflictionNotableColdConduction", weightKey = { "affliction_effect_of_non-damaging_ailments", "default", }, weightVal = { 305, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental", "cold", "lightning", "ailment" }, }, + ["AfflictionNotableInspiredOppression"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Inspired Oppression", statOrder = { 7559 }, level = 75, group = "AfflictionNotableInspiredOppression", weightKey = { "affliction_effect_of_non-damaging_ailments", "affliction_elemental_damage", "affliction_lightning_damage", "affliction_cold_damage", "default", }, weightVal = { 102, 94, 45, 32, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "resource", "mana", "damage", "elemental", "ailment" }, }, + ["AfflictionNotableChillingPresence"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Chilling Presence", statOrder = { 7459 }, level = 75, group = "AfflictionNotableChillingPresence", weightKey = { "affliction_effect_of_non-damaging_ailments", "affliction_cold_damage_over_time_multiplier", "default", }, weightVal = { 102, 59, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental", "cold", "ailment" }, }, + ["AfflictionNotableDeepChill"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Deep Chill", statOrder = { 7482 }, level = 1, group = "AfflictionNotableDeepChill", weightKey = { "affliction_effect_of_non-damaging_ailments", "affliction_cold_damage", "affliction_cold_damage_over_time_multiplier", "default", }, weightVal = { 1627, 505, 950, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "ailment" }, }, + ["AfflictionNotableBlastFreeze_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Blast-Freeze", statOrder = { 7440 }, level = 68, group = "AfflictionNotableBlastFreeze", weightKey = { "affliction_cold_damage", "affliction_cold_damage_over_time_multiplier", "affliction_effect_of_non-damaging_ailments", "default", }, weightVal = { 95, 178, 305, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "ailment" }, }, + ["AfflictionNotableThunderstruck"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Thunderstruck", statOrder = { 7678 }, level = 50, group = "AfflictionNotableThunderstruck", weightKey = { "affliction_lightning_damage", "default", }, weightVal = { 364, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "critical" }, }, + ["AfflictionNotableStormrider"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Stormrider", statOrder = { 7664 }, level = 68, group = "AfflictionNotableStormrider", weightKey = { "affliction_effect_of_non-damaging_ailments", "affliction_cold_damage", "affliction_lightning_damage", "default", }, weightVal = { 305, 95, 136, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "power_charge", "elemental_damage", "damage", "elemental", "cold", "lightning" }, }, + ["AfflictionNotableOvershock"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Overshock", statOrder = { 7595 }, level = 50, group = "AfflictionNotableOvershock", weightKey = { "affliction_lightning_damage", "affliction_effect_of_non-damaging_ailments", "default", }, weightVal = { 364, 814, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental", "lightning", "ailment" }, }, + ["AfflictionNotableEvilEye"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Evil Eye", statOrder = { 7509 }, level = 1, group = "AfflictionNotableEvilEye", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "default", }, weightVal = { 706, 706, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster_damage", "damage", "caster", "curse" }, }, + ["AfflictionNotableWhispersofDeath"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Evil Eye", statOrder = { 7702 }, level = 1, group = "AfflictionNotableWhispersofDeath", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster", "curse" }, }, + ["AfflictionNotableWardbreaker_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Forbidden Words", statOrder = { 7698 }, level = 68, group = "AfflictionNotableWardbreaker", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "caster", "curse" }, }, + ["AfflictionNotableDarkDiscourse"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Doedre's Spite", statOrder = { 7477 }, level = 50, group = "AfflictionNotableDarkDiscourse", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "default", }, weightVal = { 353, 353, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster", "curse" }, }, + ["AfflictionNotableVictimMaker"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Victim Maker", statOrder = { 7693 }, level = 50, group = "AfflictionNotableVictimMaker", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "default", }, weightVal = { 353, 353, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster", "speed", "curse" }, }, + ["AfflictionNotableMasterofFear"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Master of Fear", statOrder = { 7577 }, level = 68, group = "AfflictionNotableMasterofFear", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster", "curse" }, }, + ["AfflictionNotableWishforDeath_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Wish for Death", statOrder = { 7709 }, level = 50, group = "AfflictionNotableWishforDeath", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster", "curse" }, }, + ["AfflictionNotableLordofDrought_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Lord of Drought", statOrder = { 7527 }, level = 50, group = "AfflictionNotableLordofDrought", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "affliction_fire_damage", "default", }, weightVal = { 353, 353, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster", "curse" }, }, + ["AfflictionNotableBlizzardCaller_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Blizzard Caller", statOrder = { 7532 }, level = 50, group = "AfflictionNotableBlizzardCaller", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "affliction_cold_damage", "default", }, weightVal = { 353, 353, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster", "critical", "curse" }, }, + ["AfflictionNotableTempttheStorm"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Tempt the Storm", statOrder = { 7567 }, level = 50, group = "AfflictionNotableTempttheStorm", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "affliction_lightning_damage", "default", }, weightVal = { 353, 353, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster", "speed", "curse" }, }, + ["AfflictionNotableMiseryEverlasting"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Misery Everlasting", statOrder = { 7484 }, level = 50, group = "AfflictionNotableMiseryEverlasting", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "affliction_chaos_damage", "default", }, weightVal = { 353, 353, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster", "curse" }, }, + ["AfflictionNotableExploitWeakness_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Exploit Weakness", statOrder = { 7548 }, level = 50, group = "AfflictionNotableExploitWeakness", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "affliction_physical_damage", "default", }, weightVal = { 353, 353, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster", "curse" }, }, + ["AfflictionNotableHoundsMark"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Hound's Mark", statOrder = { 7555 }, level = 1, group = "AfflictionNotableHoundsMark", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "default", }, weightVal = { 706, 706, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster_damage", "damage", "caster", "curse" }, }, + ["AfflictionNotableDoedresGluttony"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Doedre's Gluttony", statOrder = { 7494 }, level = 50, group = "AfflictionNotableDoedresGluttony", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "default", }, weightVal = { 353, 353, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster_damage", "damage", "caster", "curse" }, }, + ["AfflictionNotableDoedresApathy____"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Doedre's Apathy", statOrder = { 7493 }, level = 68, group = "AfflictionNotableDoedresApathy", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "default", }, weightVal = { 132, 132, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster", "curse" }, }, + ["AfflictionNotableMasterOfTheMaelstrom_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Master of the Maelstrom", statOrder = { 7579 }, level = 50, group = "AfflictionNotableMasterOfTheMaelstrom", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "default", }, weightVal = { 353, 353, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental", "caster", "ailment", "curse" }, }, + ["AfflictionNotableHeraldry"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Heraldry", statOrder = { 7549 }, level = 75, group = "AfflictionNotableHeraldry", weightKey = { "affliction_damage_while_you_have_a_herald", "affliction_minion_damage_while_you_have_a_herald", "default", }, weightVal = { 118, 158, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { }, }, + ["AfflictionNotableEndbringer"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Endbringer", statOrder = { 7502 }, level = 68, group = "AfflictionNotableEndbringer", weightKey = { "affliction_damage_while_you_have_a_herald", "affliction_minion_damage_while_you_have_a_herald", "default", }, weightVal = { 353, 474, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage" }, }, + ["AfflictionNotableCultLeader_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Cult-Leader", statOrder = { 7475 }, level = 1, group = "AfflictionNotableCultLeader", weightKey = { "affliction_minion_damage_while_you_have_a_herald", "default", }, weightVal = { 2526, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "minion" }, }, + ["AfflictionNotableEmpoweredEnvoy_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Empowered Envoy", statOrder = { 7501 }, level = 1, group = "AfflictionNotableEmpoweredEnvoy", weightKey = { "affliction_damage_while_you_have_a_herald", "default", }, weightVal = { 1882, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage" }, }, + ["AfflictionNotableDarkMessenger"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Dark Messenger", statOrder = { 7479 }, level = 50, group = "AfflictionNotableDarkMessenger", weightKey = { "affliction_damage_while_you_have_a_herald", "default", }, weightVal = { 941, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage" }, }, + ["AfflictionNotableAgentofDestruction"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Agent of Destruction", statOrder = { 7418 }, level = 1, group = "AfflictionNotableAgentofDestruction", weightKey = { "affliction_damage_while_you_have_a_herald", "default", }, weightVal = { 1882, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["AfflictionNotableLastingImpression_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Lasting Impression", statOrder = { 7564 }, level = 68, group = "AfflictionNotableLastingImpression", weightKey = { "affliction_damage_while_you_have_a_herald", "affliction_minion_damage_while_you_have_a_herald", "default", }, weightVal = { 353, 474, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage" }, }, + ["AfflictionNotableSelfFulfillingProphecy_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Self-Fulfilling Prophecy", statOrder = { 7645 }, level = 68, group = "AfflictionNotableSelfFulfillingProphecy", weightKey = { "affliction_damage_while_you_have_a_herald", "default", }, weightVal = { 353, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "critical" }, }, + ["AfflictionNotableInvigoratingPortents"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Invigorating Portents", statOrder = { 7562 }, level = 50, group = "AfflictionNotableInvigoratingPortents", weightKey = { "affliction_minion_damage_while_you_have_a_herald", "default", }, weightVal = { 1263, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "speed", "minion" }, }, + ["AfflictionNotablePureAgony_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Pure Agony", statOrder = { 7614 }, level = 68, group = "AfflictionNotablePureAgony", weightKey = { "affliction_minion_damage_while_you_have_a_herald", "default", }, weightVal = { 474, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "minion" }, }, + ["AfflictionNotableDisciples_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Disciples", statOrder = { 7487 }, level = 68, group = "AfflictionNotableDisciples", weightKey = { "affliction_minion_damage_while_you_have_a_herald", "default", }, weightVal = { 474, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "speed", "minion" }, }, + ["AfflictionNotableDreadMarch_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Dread March", statOrder = { 7497 }, level = 1, group = "AfflictionNotableDreadMarch", weightKey = { "affliction_minion_life", "default", }, weightVal = { 1433, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "chaos", "resistance", "speed", "minion" }, }, + ["AfflictionNotableBlessedRebirth"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Blessed Rebirth", statOrder = { 7442 }, level = 68, group = "AfflictionNotableBlessedRebirth", weightKey = { "affliction_minion_life", "default", }, weightVal = { 269, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "minion" }, }, + ["AfflictionNotableLifefromDeath_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Life from Death", statOrder = { 7566 }, level = 50, group = "AfflictionNotableLifefromDeath", weightKey = { "affliction_minion_life", "default", }, weightVal = { 716, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "minion" }, }, + ["AfflictionNotableFeastingFiends"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Feasting Fiends", statOrder = { 7522 }, level = 1, group = "AfflictionNotableFeastingFiends", weightKey = { "affliction_minion_life", "affliction_minion_damage", "default", }, weightVal = { 1433, 1000, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "damage", "minion" }, }, + ["AfflictionNotableBodyguards"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Bodyguards", statOrder = { 7446 }, level = 50, group = "AfflictionNotableBodyguards", weightKey = { "affliction_minion_life", "default", }, weightVal = { 716, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "minion" }, }, + ["AfflictionNotableFollowThrough_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Follow-Through", statOrder = { 7530 }, level = 68, group = "AfflictionNotableFollowThrough", weightKey = { "affliction_projectile_damage", "default", }, weightVal = { 333, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage" }, }, + ["AfflictionNotableStreamlined"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Streamlined", statOrder = { 7666 }, level = 1, group = "AfflictionNotableStreamlined", weightKey = { "affliction_projectile_damage", "default", }, weightVal = { 1778, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "speed" }, }, + ["AfflictionNotableShriekingBolts_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Shrieking Bolts", statOrder = { 7649 }, level = 50, group = "AfflictionNotableShriekingBolts", weightKey = { "affliction_projectile_damage", "default", }, weightVal = { 889, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage" }, }, + ["AfflictionNotableEyetoEye"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Eye to Eye", statOrder = { 7516 }, level = 50, group = "AfflictionNotableEyetoEye", weightKey = { "affliction_projectile_damage", "default", }, weightVal = { 889, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage" }, }, + ["AfflictionNotableRepeater"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Repeater", statOrder = { 7629 }, level = 1, group = "AfflictionNotableRepeater", weightKey = { "affliction_projectile_damage", "default", }, weightVal = { 1778, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster_damage", "damage", "attack", "caster", "speed" }, }, + ["AfflictionNotableAerodynamics"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Aerodynamics", statOrder = { 7417 }, level = 68, group = "AfflictionNotableAerodynamics", weightKey = { "affliction_projectile_damage", "default", }, weightVal = { 333, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "speed" }, }, + ["AfflictionNotableChipAway"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Chip Away", statOrder = { 7460 }, level = 50, group = "AfflictionNotableChipAway", weightKey = { "affliction_brand_damage", "default", }, weightVal = { 1171, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster", "speed" }, }, + ["AfflictionNotableSeekerRunes"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Seeker Runes", statOrder = { 7644 }, level = 68, group = "AfflictionNotableSeekerRunes", weightKey = { "affliction_brand_damage", "default", }, weightVal = { 439, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster_damage", "damage", "caster" }, }, + ["AfflictionNotableRemarkable"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Remarkable", statOrder = { 7626 }, level = 68, group = "AfflictionNotableRemarkable", weightKey = { "affliction_brand_damage", "default", }, weightVal = { 439, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster", "speed" }, }, + ["AfflictionNotableBrandLoyalty"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Brand Loyalty", statOrder = { 7448 }, level = 1, group = "AfflictionNotableBrandLoyalty", weightKey = { "affliction_brand_damage", "default", }, weightVal = { 2341, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster_damage", "damage", "caster" }, }, + ["AfflictionNotableHolyConquest"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Holy Conquest", statOrder = { 7554 }, level = 50, group = "AfflictionNotableHolyConquest", weightKey = { "affliction_brand_damage", "default", }, weightVal = { 1171, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster", "speed" }, }, + ["AfflictionNotableGrandDesign_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Grand Design", statOrder = { 7540 }, level = 68, group = "AfflictionNotableGrandDesign", weightKey = { "affliction_brand_damage", "default", }, weightVal = { 439, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster", "speed" }, }, + ["AfflictionNotableSetandForget_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Set and Forget", statOrder = { 7647 }, level = 50, group = "AfflictionNotableSetandForget", weightKey = { "affliction_trap_and_mine_damage", "default", }, weightVal = { 980, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage" }, }, + ["AfflictionNotableExpertSabotage"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Expert Sabotage", statOrder = { 7512 }, level = 50, group = "AfflictionNotableExpertSabotage", weightKey = { "affliction_trap_and_mine_damage", "default", }, weightVal = { 980, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "speed" }, }, + ["AfflictionNotableGuerillaTactics"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Guerilla Tactics", statOrder = { 7543 }, level = 1, group = "AfflictionNotableGuerillaTactics", weightKey = { "affliction_trap_and_mine_damage", "default", }, weightVal = { 1959, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "speed" }, }, + ["AfflictionNotableExpendability"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Expendability", statOrder = { 7511 }, level = 68, group = "AfflictionNotableExpendability", weightKey = { "affliction_trap_and_mine_damage", "default", }, weightVal = { 367, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { }, }, + ["AfflictionNotableArcanePyrotechnics"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Arcane Pyrotechnics", statOrder = { 7431 }, level = 68, group = "AfflictionNotableArcanePyrotechnics", weightKey = { "affliction_trap_and_mine_damage", "default", }, weightVal = { 367, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage" }, }, + ["AfflictionNotableSurpriseSabotage_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Surprise Sabotage", statOrder = { 7675 }, level = 50, group = "AfflictionNotableSurpriseSabotage", weightKey = { "affliction_trap_and_mine_damage", "default", }, weightVal = { 980, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "critical" }, }, + ["AfflictionNotableCarefulHandling"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Careful Handling", statOrder = { 7458 }, level = 68, group = "AfflictionNotableCarefulHandling", weightKey = { "affliction_trap_and_mine_damage", "affliction_maximum_mana", "affliction_maximum_life", "default", }, weightVal = { 367, 175, 146, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "mana", "damage" }, }, + ["AfflictionNotablePeakVigour"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Peak Vigour", statOrder = { 7599 }, level = 1, group = "AfflictionNotablePeakVigour", weightKey = { "affliction_maximum_life", "affliction_flask_duration", "default", }, weightVal = { 780, 1079, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "flask", "resource", "life" }, }, + ["AfflictionNotableFettle"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Fettle", statOrder = { 7524 }, level = 75, group = "AfflictionNotableFettle", weightKey = { "affliction_maximum_life", "default", }, weightVal = { 49, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life" }, }, + ["AfflictionNotableFeastofFlesh"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Feast of Flesh", statOrder = { 7521 }, level = 68, group = "AfflictionNotableFeastofFlesh", weightKey = { "affliction_maximum_life", "default", }, weightVal = { 146, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "attack" }, }, + ["AfflictionNotableSublimeSensation_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Sublime Sensation", statOrder = { 7670 }, level = 50, group = "AfflictionNotableSublimeSensation", weightKey = { "affliction_maximum_life", "affliction_maximum_energy_shield", "default", }, weightVal = { 390, 505, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "defences", "energy_shield" }, }, + ["AfflictionNotableSurgingVitality"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Surging Vitality", statOrder = { 7674 }, level = 1, group = "AfflictionNotableSurgingVitality", weightKey = { "affliction_maximum_life", "default", }, weightVal = { 780, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life" }, }, + ["AfflictionNotablePeaceAmidstChaos"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Peace Amidst Chaos", statOrder = { 7598 }, level = 50, group = "AfflictionNotablePeaceAmidstChaos", weightKey = { "affliction_maximum_life", "default", }, weightVal = { 390, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "defences", "armour" }, }, + ["AfflictionNotableAdrenaline_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Adrenaline", statOrder = { 7414 }, level = 68, group = "AfflictionNotableAdrenaline", weightKey = { "affliction_maximum_life", "default", }, weightVal = { 146, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life" }, }, + ["AfflictionNotableWallofMuscle_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Wall of Muscle", statOrder = { 7697 }, level = 75, group = "AfflictionNotableWallofMuscle", weightKey = { "affliction_maximum_life", "default", }, weightVal = { 49, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "attribute" }, }, + ["AfflictionNotableMindfulness"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Mindfulness", statOrder = { 7583 }, level = 50, group = "AfflictionNotableMindfulness", weightKey = { "affliction_maximum_mana", "default", }, weightVal = { 466, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana" }, }, + ["AfflictionNotableLiquidInspiration"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Liquid Inspiration", statOrder = { 7568 }, level = 68, group = "AfflictionNotableLiquidInspiration", weightKey = { "affliction_maximum_mana", "affliction_flask_duration", "default", }, weightVal = { 175, 202, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "flask", "power_charge", "resource", "mana" }, }, + ["AfflictionNotableOpenness__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Openness", statOrder = { 7592 }, level = 1, group = "AfflictionNotableOpenness", weightKey = { "affliction_maximum_mana", "default", }, weightVal = { 932, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana" }, }, + ["AfflictionNotableDaringIdeas"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Daring Ideas", statOrder = { 7476 }, level = 50, group = "AfflictionNotableDaringIdeas", weightKey = { "affliction_maximum_mana", "default", }, weightVal = { 466, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "attack" }, }, + ["AfflictionNotableClarityofPurpose"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Clarity of Purpose", statOrder = { 7462 }, level = 1, group = "AfflictionNotableClarityofPurpose", weightKey = { "affliction_maximum_mana", "default", }, weightVal = { 932, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana" }, }, + ["AfflictionNotableScintillatingIdea_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Scintillating Idea", statOrder = { 7641 }, level = 50, group = "AfflictionNotableScintillatingIdea", weightKey = { "affliction_maximum_mana", "affliction_lightning_damage", "default", }, weightVal = { 466, 364, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "resource", "mana", "damage", "elemental", "lightning" }, }, + ["AfflictionNotableHolisticHealth"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Holistic Health", statOrder = { 7553 }, level = 68, group = "AfflictionNotableHolisticHealth", weightKey = { "affliction_maximum_mana", "affliction_maximum_life", "default", }, weightVal = { 175, 146, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "mana" }, }, + ["AfflictionNotableGenius"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Genius", statOrder = { 7535 }, level = 75, group = "AfflictionNotableGenius", weightKey = { "affliction_maximum_mana", "default", }, weightVal = { 58, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "attribute" }, }, + ["AfflictionNotableImprovisor"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Improvisor", statOrder = { 7557 }, level = 68, group = "AfflictionNotableImprovisor", weightKey = { "affliction_maximum_mana", "default", }, weightVal = { 175, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "attack" }, }, + ["AfflictionNotableStubbornStudent"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Stubborn Student", statOrder = { 7668 }, level = 68, group = "AfflictionNotableStubbornStudent", weightKey = { "affliction_maximum_mana", "affliction_armour", "default", }, weightVal = { 175, 261, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "defences", "armour" }, }, + ["AfflictionNotableSavourtheMoment"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Savour the Moment", statOrder = { 7640 }, level = 1, group = "AfflictionNotableSavourtheMoment", weightKey = { "affliction_maximum_energy_shield", "default", }, weightVal = { 1011, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "defences", "energy_shield" }, }, + ["AfflictionNotableEnergyFromNaught"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Energy From Naught", statOrder = { 7506 }, level = 50, group = "AfflictionNotableEnergyFromNaught", weightKey = { "affliction_maximum_energy_shield", "default", }, weightVal = { 505, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "defences", "energy_shield" }, }, + ["AfflictionNotableWillShaper"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Will Shaper", statOrder = { 7705 }, level = 75, group = "AfflictionNotableWillShaper", weightKey = { "affliction_maximum_energy_shield", "affliction_maximum_mana", "default", }, weightVal = { 63, 58, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "defences", "energy_shield" }, }, + ["AfflictionNotableSpringBack_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Spring Back", statOrder = { 7659 }, level = 1, group = "AfflictionNotableSpringBack", weightKey = { "affliction_maximum_energy_shield", "default", }, weightVal = { 1011, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "defences", "energy_shield" }, }, + ["AfflictionNotableConservationofEnergy"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Conservation of Energy", statOrder = { 7470 }, level = 68, group = "AfflictionNotableConservationofEnergy", weightKey = { "affliction_maximum_energy_shield", "default", }, weightVal = { 189, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "defences", "energy_shield", "caster" }, }, + ["AfflictionNotableSelfControl"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Self-Control", statOrder = { 7488 }, level = 50, group = "AfflictionNotableSelfControl", weightKey = { "affliction_maximum_energy_shield", "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "default", }, weightVal = { 505, 480, 480, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana" }, }, + ["AfflictionNotableHeartofIron"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Heart of Iron", statOrder = { 7546 }, level = 68, group = "AfflictionNotableHeartofIron", weightKey = { "affliction_maximum_life", "affliction_armour", "default", }, weightVal = { 146, 261, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "defences", "armour" }, }, + ["AfflictionNotablePrismaticCarapace_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Prismatic Carapace", statOrder = { 7609 }, level = 75, group = "AfflictionNotablePrismaticCarapace", weightKey = { "affliction_armour", "affliction_lightning_resistance", "affliction_cold_resistance", "affliction_fire_resistance", "default", }, weightVal = { 87, 86, 86, 82, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "defences", "armour", "elemental", "resistance" }, }, + ["AfflictionNotableMilitarism"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Militarism", statOrder = { 7582 }, level = 50, group = "AfflictionNotableMilitarism", weightKey = { "affliction_armour", "default", }, weightVal = { 696, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "defences", "armour" }, }, + ["AfflictionNotableSecondSkin"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Second Skin", statOrder = { 7643 }, level = 1, group = "AfflictionNotableSecondSkin", weightKey = { "affliction_armour", "affliction_chance_to_block", "default", }, weightVal = { 1391, 750, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block", "defences", "armour" }, }, + ["AfflictionNotableDragonHunter__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Dragon Hunter", statOrder = { 7496 }, level = 50, group = "AfflictionNotableDragonHunter", weightKey = { "affliction_armour", "affliction_fire_resistance", "default", }, weightVal = { 696, 658, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "defences", "armour", "elemental", "fire", "resistance" }, }, + ["AfflictionNotableEnduringComposure"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Enduring Composure", statOrder = { 7503 }, level = 68, group = "AfflictionNotableEnduringComposure", weightKey = { "affliction_armour", "default", }, weightVal = { 261, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "endurance_charge", "defences", "armour" }, }, + ["AfflictionNotableUncompromising_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Uncompromising", statOrder = { 7485 }, level = 50, group = "AfflictionNotableUncompromising", weightKey = { "affliction_armour", "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "default", }, weightVal = { 696, 480, 480, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana" }, }, + ["AfflictionNotablePrismaticDance____"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Prismatic Dance", statOrder = { 7610 }, level = 75, group = "AfflictionNotablePrismaticDance", weightKey = { "affliction_evasion", "affliction_lightning_resistance", "affliction_cold_resistance", "affliction_fire_resistance", "default", }, weightVal = { 82, 86, 86, 82, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "defences", "evasion", "elemental", "resistance" }, }, + ["AfflictionNotableNaturalVigour_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Natural Vigour", statOrder = { 7587 }, level = 50, group = "AfflictionNotableNaturalVigour", weightKey = { "affliction_evasion", "affliction_maximum_life", "default", }, weightVal = { 658, 390, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "defences", "evasion" }, }, + ["AfflictionNotableUntouchable"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Untouchable", statOrder = { 7684 }, level = 1, group = "AfflictionNotableUntouchable", weightKey = { "affliction_evasion", "affliction_chance_to_dodge_attacks", "default", }, weightVal = { 1315, 1477, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "defences", "evasion" }, }, + ["AfflictionNotableShiftingShadow"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Shifting Shadow", statOrder = { 7648 }, level = 50, group = "AfflictionNotableShiftingShadow", weightKey = { "affliction_evasion", "default", }, weightVal = { 658, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "defences", "evasion", "attribute" }, }, + ["AfflictionNotableReadiness"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Readiness", statOrder = { 7625 }, level = 1, group = "AfflictionNotableReadiness", weightKey = { "affliction_evasion", "default", }, weightVal = { 1315, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "bleed", "defences", "evasion", "physical", "attack", "ailment" }, }, + ["AfflictionNotableSublimeForm"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Sublime Form", statOrder = { 7539 }, level = 50, group = "AfflictionNotableSublimeForm", weightKey = { "affliction_evasion", "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "default", }, weightVal = { 658, 480, 480, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "elemental", "resistance" }, }, + ["AfflictionNotableConfidentCombatant"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Confident Combatant", statOrder = { 7468 }, level = 68, group = "AfflictionNotableConfidentCombatant", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage" }, }, + ["AfflictionNotableFlexibleSentry___"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Flexible Sentry", statOrder = { 7528 }, level = 50, group = "AfflictionNotableFlexibleSentry", weightKey = { "affliction_chance_to_block", "affliction_lightning_resistance", "affliction_cold_resistance", "affliction_fire_resistance", "default", }, weightVal = { 375, 686, 686, 658, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block", "ailment" }, }, + ["AfflictionNotableViciousGuard_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Vicious Guard", statOrder = { 7691 }, level = 1, group = "AfflictionNotableViciousGuard", weightKey = { "affliction_chance_to_block", "affliction_maximum_life", "default", }, weightVal = { 750, 780, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block", "resource", "life", "attack" }, }, + ["AfflictionNotableMysticalWard_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Mystical Ward", statOrder = { 7586 }, level = 1, group = "AfflictionNotableMysticalWard", weightKey = { "affliction_chance_to_block", "affliction_maximum_energy_shield", "default", }, weightVal = { 750, 1011, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block", "defences", "energy_shield" }, }, + ["AfflictionNotableRoteReinforcement"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Rote Reinforcement", statOrder = { 7633 }, level = 68, group = "AfflictionNotableRoteReinforcement", weightKey = { "affliction_chance_to_block", "affliction_maximum_life", "default", }, weightVal = { 141, 146, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block", "endurance_charge", "resource", "life" }, }, + ["AfflictionNotableMageHunter___"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Mage Hunter", statOrder = { 7571 }, level = 68, group = "AfflictionNotableMageHunter", weightKey = { "affliction_chance_to_block", "affliction_spell_damage", "default", }, weightVal = { 141, 281, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block", "power_charge", "caster_damage", "damage", "caster" }, }, + ["AfflictionNotableRiotQueller"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Riot Queller", statOrder = { 7631 }, level = 75, group = "AfflictionNotableRiotQueller", weightKey = { "affliction_chance_to_block", "affliction_attack_damage_while_holding_a_shield", "default", }, weightVal = { 47, 38, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block" }, }, + ["AfflictionNotableOnewiththeShield_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is One with the Shield", statOrder = { 7591 }, level = 50, group = "AfflictionNotableOnewiththeShield", weightKey = { "affliction_chance_to_block", "default", }, weightVal = { 375, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block", "resource", "life", "defences" }, }, + ["AfflictionNotableAerialist"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Aerialist", statOrder = { 7416 }, level = 75, group = "AfflictionNotableAerialist", weightKey = { "affliction_chance_to_dodge_attacks", "default", }, weightVal = { 92, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "attribute" }, }, + ["AfflictionNotableElegantForm"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Elegant Form", statOrder = { 7500 }, level = 1, group = "AfflictionNotableElegantForm", weightKey = { "affliction_chance_to_dodge_attacks", "default", }, weightVal = { 1477, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "ailment" }, }, + ["AfflictionNotableDartingMovements"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Darting Movements", statOrder = { 7480 }, level = 1, group = "AfflictionNotableDartingMovements", weightKey = { "affliction_chance_to_dodge_attacks", "default", }, weightVal = { 1477, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "speed" }, }, + ["AfflictionNotableNoWitnesses"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is No Witnesses", statOrder = { 7588 }, level = 75, group = "AfflictionNotableNoWitnesses", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { }, }, + ["AfflictionNotableMoltenOnesMark_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Molten One's Mark", statOrder = { 7585 }, level = 68, group = "AfflictionNotableMoltenOnesMark", weightKey = { "affliction_fire_resistance", "default", }, weightVal = { 247, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "elemental", "fire", "resistance" }, }, + ["AfflictionNotableFireAttunement_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Fire Attunement", statOrder = { 7525 }, level = 1, group = "AfflictionNotableFireAttunement", weightKey = { "affliction_fire_resistance", "default", }, weightVal = { 1315, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental", "fire", "ailment" }, }, + ["AfflictionNotablePureMight"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Pure Might", statOrder = { 7618 }, level = 68, group = "AfflictionNotablePureMight", weightKey = { "affliction_fire_resistance", "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "default", }, weightVal = { 247, 180, 180, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "attribute" }, }, + ["AfflictionNotableBlacksmith_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Blacksmith", statOrder = { 7438 }, level = 68, group = "AfflictionNotableBlacksmith", weightKey = { "affliction_fire_resistance", "affliction_armour", "default", }, weightVal = { 247, 261, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "defences", "armour", "elemental", "fire", "resistance" }, }, + ["AfflictionNotableNonFlammable"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Non-Flammable", statOrder = { 7589 }, level = 50, group = "AfflictionNotableNonFlammable", weightKey = { "affliction_fire_resistance", "default", }, weightVal = { 658, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental", "fire", "resistance", "ailment" }, }, + ["AfflictionNotableWinterProwler"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Winter Prowler", statOrder = { 7708 }, level = 68, group = "AfflictionNotableWinterProwler", weightKey = { "affliction_cold_resistance", "default", }, weightVal = { 257, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental", "cold", "resistance", "speed" }, }, + ["AfflictionNotableHibernator"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Hibernator", statOrder = { 7551 }, level = 50, group = "AfflictionNotableHibernator", weightKey = { "affliction_cold_resistance", "default", }, weightVal = { 686, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental", "cold", "ailment" }, }, + ["AfflictionNotablePureGuile"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Pure Guile", statOrder = { 7617 }, level = 68, group = "AfflictionNotablePureGuile", weightKey = { "affliction_cold_resistance", "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "default", }, weightVal = { 257, 180, 180, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "attribute" }, }, + ["AfflictionNotableAlchemist"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Alchemist", statOrder = { 7420 }, level = 1, group = "AfflictionNotableAlchemist", weightKey = { "affliction_cold_resistance", "default", }, weightVal = { 1371, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "flask", "elemental", "cold", "resistance", "attack", "caster", "speed" }, }, + ["AfflictionNotableAntifreeze"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Antifreeze", statOrder = { 7427 }, level = 50, group = "AfflictionNotableAntifreeze", weightKey = { "affliction_cold_resistance", "default", }, weightVal = { 686, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental", "cold", "resistance", "ailment" }, }, + ["AfflictionNotableWizardry_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Wizardry", statOrder = { 7710 }, level = 68, group = "AfflictionNotableWizardry", weightKey = { "affliction_lightning_resistance", "affliction_maximum_mana", "default", }, weightVal = { 257, 175, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "elemental", "lightning", "resistance" }, }, + ["AfflictionNotableCapacitor____"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Capacitor", statOrder = { 7457 }, level = 50, group = "AfflictionNotableCapacitor", weightKey = { "affliction_lightning_resistance", "default", }, weightVal = { 686, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental", "lightning", "ailment" }, }, + ["AfflictionNotablePureAptitude"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Pure Aptitude", statOrder = { 7615 }, level = 68, group = "AfflictionNotablePureAptitude", weightKey = { "affliction_lightning_resistance", "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "default", }, weightVal = { 257, 180, 180, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "defences", "energy_shield", "attribute" }, }, + ["AfflictionNotableSage_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Sage", statOrder = { 7637 }, level = 1, group = "AfflictionNotableSage", weightKey = { "affliction_lightning_resistance", "affliction_maximum_mana", "affliction_maximum_life", "default", }, weightVal = { 1371, 932, 780, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "mana", "elemental", "lightning", "resistance" }, }, + ["AfflictionNotableInsulated"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Insulated", statOrder = { 7560 }, level = 50, group = "AfflictionNotableInsulated", weightKey = { "affliction_lightning_resistance", "default", }, weightVal = { 686, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental", "lightning", "resistance", "ailment" }, }, + ["AfflictionNotableBornofChaos"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Born of Chaos", statOrder = { 7447 }, level = 68, group = "AfflictionNotableBornofChaos", weightKey = { "affliction_chaos_resistance", "default", }, weightVal = { 439, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "chaos", "resistance" }, }, + ["AfflictionNotableAntivenom"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Antivenom", statOrder = { 7428 }, level = 50, group = "AfflictionNotableAntivenom", weightKey = { "affliction_chaos_resistance", "default", }, weightVal = { 1171, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "poison", "chaos", "resistance", "ailment" }, }, + ["AfflictionNotableRotResistant"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Rot-Resistant", statOrder = { 7632 }, level = 68, group = "AfflictionNotableRotResistant", weightKey = { "affliction_chaos_resistance", "default", }, weightVal = { 439, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "mana", "defences", "energy_shield", "chaos", "resistance" }, }, + ["AfflictionNotableBlessed"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Blessed", statOrder = { 7441 }, level = 68, group = "AfflictionNotableBlessed", weightKey = { "affliction_chaos_resistance", "affliction_maximum_life", "affliction_maximum_mana", "default", }, weightVal = { 439, 146, 175, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "mana", "chaos", "resistance" }, }, + ["AfflictionNotableStudentofDecay"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Student of Decay", statOrder = { 7669 }, level = 50, group = "AfflictionNotableStudentofDecay", weightKey = { "affliction_chaos_resistance", "affliction_damage_over_time_multiplier", "affliction_physical_damage_over_time_multiplier", "affliction_fire_damage_over_time_multiplier", "affliction_chaos_damage_over_time_multiplier", "default", }, weightVal = { 1171, 593, 343, 366, 348, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "chaos_damage", "damage", "chaos", "resistance" }, }, + ["AfflictionNotableAggressiveDefence"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Aggressive Defence", statOrder = { 7419 }, level = 1, group = "AfflictionNotableAggressiveDefence", weightKey = { "affliction_axe_and_sword_damage", "affliction_mace_and_staff_damage", "affliction_dagger_and_claw_damage", "default", }, weightVal = { 750, 750, 750, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack" }, }, + ["AfflictionJewelSmallPassivesGrantLife_"] = { type = "Prefix", affix = "Hale", "Added Small Passive Skills also grant: +(2-3) to Maximum Life", statOrder = { 7402 }, level = 1, group = "AfflictionJewelSmallPassivesGrantLife", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "life" }, }, + ["AfflictionJewelSmallPassivesGrantLife2_"] = { type = "Prefix", affix = "Healthy", "Added Small Passive Skills also grant: +(4-7) to Maximum Life", statOrder = { 7402 }, level = 68, group = "AfflictionJewelSmallPassivesGrantLife", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "resource", "life" }, }, + ["AfflictionJewelSmallPassivesGrantLife3"] = { type = "Prefix", affix = "Sanguine", "Added Small Passive Skills also grant: +(8-10) to Maximum Life", statOrder = { 7402 }, level = 84, group = "AfflictionJewelSmallPassivesGrantLife", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "resource", "life" }, }, + ["AfflictionJewelSmallPassivesGrantMana"] = { type = "Prefix", affix = "Beryl", "Added Small Passive Skills also grant: +(2-5) to Maximum Mana", statOrder = { 7403 }, level = 1, group = "AfflictionJewelSmallPassivesGrantMana", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "mana" }, }, + ["AfflictionJewelSmallPassivesGrantMana2"] = { type = "Prefix", affix = "Cobalt", "Added Small Passive Skills also grant: +(6-8) to Maximum Mana", statOrder = { 7403 }, level = 68, group = "AfflictionJewelSmallPassivesGrantMana", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "resource", "mana" }, }, + ["AfflictionJewelSmallPassivesGrantMana3"] = { type = "Prefix", affix = "Azure", "Added Small Passive Skills also grant: +(9-10) to Maximum Mana", statOrder = { 7403 }, level = 84, group = "AfflictionJewelSmallPassivesGrantMana", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "resource", "mana" }, }, + ["AfflictionJewelSmallPassivesGrantES"] = { type = "Prefix", affix = "Shining", "Added Small Passive Skills also grant: +(4-5) to Maximum Energy Shield", statOrder = { 7401 }, level = 1, group = "AfflictionJewelSmallPassivesGrantES", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "defences", "energy_shield" }, }, + ["AfflictionJewelSmallPassivesGrantES2"] = { type = "Prefix", affix = "Glimmering", "Added Small Passive Skills also grant: +(6-9) to Maximum Energy Shield", statOrder = { 7401 }, level = 68, group = "AfflictionJewelSmallPassivesGrantES", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "defences", "energy_shield" }, }, + ["AfflictionJewelSmallPassivesGrantES3"] = { type = "Prefix", affix = "Glowing", "Added Small Passive Skills also grant: +(10-12) to Maximum Energy Shield", statOrder = { 7401 }, level = 84, group = "AfflictionJewelSmallPassivesGrantES", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "defences", "energy_shield" }, }, + ["AfflictionJewelSmallPassivesGrantArmour"] = { type = "Prefix", affix = "Lacquered", "Added Small Passive Skills also grant: +(11-20) to Armour", statOrder = { 7372 }, level = 1, group = "AfflictionJewelSmallPassivesGrantArmour", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "defences", "armour" }, }, + ["AfflictionJewelSmallPassivesGrantArmour2"] = { type = "Prefix", affix = "Studded", "Added Small Passive Skills also grant: +(21-30) to Armour", statOrder = { 7372 }, level = 68, group = "AfflictionJewelSmallPassivesGrantArmour", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "defences", "armour" }, }, + ["AfflictionJewelSmallPassivesGrantArmour3_"] = { type = "Prefix", affix = "Ribbed", "Added Small Passive Skills also grant: +(31-40) to Armour", statOrder = { 7372 }, level = 84, group = "AfflictionJewelSmallPassivesGrantArmour", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "defences", "armour" }, }, + ["AfflictionJewelSmallPassivesGrantEvasion"] = { type = "Prefix", affix = "Agile", "Added Small Passive Skills also grant: +(11-20) to Evasion", statOrder = { 7396 }, level = 1, group = "AfflictionJewelSmallPassivesGrantEvasion", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "defences", "evasion" }, }, + ["AfflictionJewelSmallPassivesGrantEvasion2__"] = { type = "Prefix", affix = "Dancer's", "Added Small Passive Skills also grant: +(21-30) to Evasion", statOrder = { 7396 }, level = 68, group = "AfflictionJewelSmallPassivesGrantEvasion", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "defences", "evasion" }, }, + ["AfflictionJewelSmallPassivesGrantEvasion3"] = { type = "Prefix", affix = "Acrobat's", "Added Small Passive Skills also grant: +(31-40) to Evasion", statOrder = { 7396 }, level = 84, group = "AfflictionJewelSmallPassivesGrantEvasion", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "defences", "evasion" }, }, + ["AfflictionJewelSmallPassivesGrantStr"] = { type = "Suffix", affix = "of the Brute", "Added Small Passive Skills also grant: +(2-3) to Strength", statOrder = { 7409 }, level = 1, group = "AfflictionJewelSmallPassivesGrantStr", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "attribute" }, }, + ["AfflictionJewelSmallPassivesGrantStr2_"] = { type = "Suffix", affix = "of the Wrestler", "Added Small Passive Skills also grant: +(4-5) to Strength", statOrder = { 7409 }, level = 68, group = "AfflictionJewelSmallPassivesGrantStr", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "attribute" }, }, + ["AfflictionJewelSmallPassivesGrantStr3_"] = { type = "Suffix", affix = "of the Bear", "Added Small Passive Skills also grant: +(6-8) to Strength", statOrder = { 7409 }, level = 84, group = "AfflictionJewelSmallPassivesGrantStr", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "attribute" }, }, + ["AfflictionJewelSmallPassivesGrantDex_"] = { type = "Suffix", affix = "of the Mongoose", "Added Small Passive Skills also grant: +(2-3) to Dexterity", statOrder = { 7394 }, level = 1, group = "AfflictionJewelSmallPassivesGrantDex", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "attribute" }, }, + ["AfflictionJewelSmallPassivesGrantDex2"] = { type = "Suffix", affix = "of the Lynx", "Added Small Passive Skills also grant: +(4-5) to Dexterity", statOrder = { 7394 }, level = 68, group = "AfflictionJewelSmallPassivesGrantDex", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "attribute" }, }, + ["AfflictionJewelSmallPassivesGrantDex3_"] = { type = "Suffix", affix = "of the Fox", "Added Small Passive Skills also grant: +(6-8) to Dexterity", statOrder = { 7394 }, level = 84, group = "AfflictionJewelSmallPassivesGrantDex", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "attribute" }, }, + ["AfflictionJewelSmallPassivesGrantInt_"] = { type = "Suffix", affix = "of the Pupil", "Added Small Passive Skills also grant: +(2-3) to Intelligence", statOrder = { 7398 }, level = 1, group = "AfflictionJewelSmallPassivesGrantInt", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "attribute" }, }, + ["AfflictionJewelSmallPassivesGrantInt2_"] = { type = "Suffix", affix = "of the Student", "Added Small Passive Skills also grant: +(4-5) to Intelligence", statOrder = { 7398 }, level = 68, group = "AfflictionJewelSmallPassivesGrantInt", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "attribute" }, }, + ["AfflictionJewelSmallPassivesGrantInt3"] = { type = "Suffix", affix = "of the Prodigy", "Added Small Passive Skills also grant: +(6-8) to Intelligence", statOrder = { 7398 }, level = 84, group = "AfflictionJewelSmallPassivesGrantInt", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "attribute" }, }, + ["AfflictionJewelSmallPassivesGrantAttributes"] = { type = "Suffix", affix = "of the Cloud", "Added Small Passive Skills also grant: +2 to All Attributes", statOrder = { 7371 }, level = 1, group = "AfflictionJewelSmallPassivesGrantAttributes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "attribute" }, }, + ["AfflictionJewelSmallPassivesGrantAttributes2"] = { type = "Suffix", affix = "of the Sky", "Added Small Passive Skills also grant: +3 to All Attributes", statOrder = { 7371 }, level = 68, group = "AfflictionJewelSmallPassivesGrantAttributes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "attribute" }, }, + ["AfflictionJewelSmallPassivesGrantAttributes3"] = { type = "Suffix", affix = "of the Meteor", "Added Small Passive Skills also grant: +4 to All Attributes", statOrder = { 7371 }, level = 84, group = "AfflictionJewelSmallPassivesGrantAttributes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "attribute" }, }, + ["AfflictionJewelSmallPassivesGrantManaRegen"] = { type = "Suffix", affix = "of Excitement", "Added Small Passive Skills also grant: 4% increased Mana Regeneration Rate", statOrder = { 7400 }, level = 1, group = "AfflictionJewelSmallPassivesGrantManaRegen", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "mana" }, }, + ["AfflictionJewelSmallPassivesGrantManaRegen2"] = { type = "Suffix", affix = "of Joy", "Added Small Passive Skills also grant: 5% increased Mana Regeneration Rate", statOrder = { 7400 }, level = 68, group = "AfflictionJewelSmallPassivesGrantManaRegen", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "resource", "mana" }, }, + ["AfflictionJewelSmallPassivesGrantManaRegen3_"] = { type = "Suffix", affix = "of Elation", "Added Small Passive Skills also grant: 6% increased Mana Regeneration Rate", statOrder = { 7400 }, level = 84, group = "AfflictionJewelSmallPassivesGrantManaRegen", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "resource", "mana" }, }, + ["AfflictionJewelSmallPassivesGrantLifeRegen___"] = { type = "Suffix", affix = "of the Newt", "Added Small Passive Skills also grant: Regenerate 0.1% of Life per Second", statOrder = { 7407 }, level = 1, group = "AfflictionJewelSmallPassivesGrantLifeRegen", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "life" }, }, + ["AfflictionJewelSmallPassivesGrantLifeRegen2_"] = { type = "Suffix", affix = "of the Lizard", "Added Small Passive Skills also grant: Regenerate 0.15% of Life per Second", statOrder = { 7407 }, level = 68, group = "AfflictionJewelSmallPassivesGrantLifeRegen", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "resource", "life" }, }, + ["AfflictionJewelSmallPassivesGrantLifeRegen3"] = { type = "Suffix", affix = "of the Flatworm", "Added Small Passive Skills also grant: Regenerate 0.2% of Life per Second", statOrder = { 7407 }, level = 84, group = "AfflictionJewelSmallPassivesGrantLifeRegen", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "resource", "life" }, }, + ["AfflictionJewelSmallPassivesGrantFireRes"] = { type = "Suffix", affix = "of the Whelpling", "Added Small Passive Skills also grant: +(2-3)% to Fire Resistance", statOrder = { 7397 }, level = 1, group = "AfflictionJewelSmallPassivesGrantFireRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["AfflictionJewelSmallPassivesGrantFireRes2"] = { type = "Suffix", affix = "of the Salamander", "Added Small Passive Skills also grant: +(4-5)% to Fire Resistance", statOrder = { 7397 }, level = 68, group = "AfflictionJewelSmallPassivesGrantFireRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["AfflictionJewelSmallPassivesGrantFireRes3"] = { type = "Suffix", affix = "of the Drake", "Added Small Passive Skills also grant: +(6-7)% to Fire Resistance", statOrder = { 7397 }, level = 84, group = "AfflictionJewelSmallPassivesGrantFireRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["AfflictionJewelSmallPassivesGrantColdRes_"] = { type = "Suffix", affix = "of the Inuit", "Added Small Passive Skills also grant: +(2-3)% to Cold Resistance", statOrder = { 7390 }, level = 1, group = "AfflictionJewelSmallPassivesGrantColdRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["AfflictionJewelSmallPassivesGrantColdRes2"] = { type = "Suffix", affix = "of the Seal", "Added Small Passive Skills also grant: +(4-5)% to Cold Resistance", statOrder = { 7390 }, level = 68, group = "AfflictionJewelSmallPassivesGrantColdRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["AfflictionJewelSmallPassivesGrantColdRes3"] = { type = "Suffix", affix = "of the Penguin", "Added Small Passive Skills also grant: +(6-7)% to Cold Resistance", statOrder = { 7390 }, level = 84, group = "AfflictionJewelSmallPassivesGrantColdRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["AfflictionJewelSmallPassivesGrantLightningRes"] = { type = "Suffix", affix = "of the Cloud", "Added Small Passive Skills also grant: +(2-3)% to Lightning Resistance", statOrder = { 7399 }, level = 1, group = "AfflictionJewelSmallPassivesGrantLightningRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["AfflictionJewelSmallPassivesGrantLightningRes2_"] = { type = "Suffix", affix = "of the Squall", "Added Small Passive Skills also grant: +(4-5)% to Lightning Resistance", statOrder = { 7399 }, level = 68, group = "AfflictionJewelSmallPassivesGrantLightningRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["AfflictionJewelSmallPassivesGrantLightningRes3"] = { type = "Suffix", affix = "of the Storm", "Added Small Passive Skills also grant: +(6-7)% to Lightning Resistance", statOrder = { 7399 }, level = 84, group = "AfflictionJewelSmallPassivesGrantLightningRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["AfflictionJewelSmallPassivesGrantElementalRes"] = { type = "Suffix", affix = "of the Crystal", "Added Small Passive Skills also grant: +2% to all Elemental Resistances", statOrder = { 7395 }, level = 1, group = "AfflictionJewelSmallPassivesGrantElementalRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "resistance" }, }, + ["AfflictionJewelSmallPassivesGrantElementalRes2"] = { type = "Suffix", affix = "of the Prism", "Added Small Passive Skills also grant: +3% to all Elemental Resistances", statOrder = { 7395 }, level = 68, group = "AfflictionJewelSmallPassivesGrantElementalRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "elemental", "resistance" }, }, + ["AfflictionJewelSmallPassivesGrantElementalRes3"] = { type = "Suffix", affix = "of the Kaleidoscope", "Added Small Passive Skills also grant: +4% to all Elemental Resistances", statOrder = { 7395 }, level = 84, group = "AfflictionJewelSmallPassivesGrantElementalRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "elemental", "resistance" }, }, + ["AfflictionJewelSmallPassivesGrantChaosRes"] = { type = "Suffix", affix = "of the Lost", "Added Small Passive Skills also grant: +3% to Chaos Resistance", statOrder = { 7388 }, level = 1, group = "AfflictionJewelSmallPassivesGrantChaosRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "chaos", "resistance" }, }, + ["AfflictionJewelSmallPassivesGrantChaosRes2"] = { type = "Suffix", affix = "of Banishment", "Added Small Passive Skills also grant: +4% to Chaos Resistance", statOrder = { 7388 }, level = 68, group = "AfflictionJewelSmallPassivesGrantChaosRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "chaos", "resistance" }, }, + ["AfflictionJewelSmallPassivesGrantChaosRes3"] = { type = "Suffix", affix = "of Eviction", "Added Small Passive Skills also grant: +5% to Chaos Resistance", statOrder = { 7388 }, level = 84, group = "AfflictionJewelSmallPassivesGrantChaosRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "chaos", "resistance" }, }, + ["AfflictionJewelSmallPassivesGrantDamage_"] = { type = "Prefix", affix = "Harmful", "Added Small Passive Skills also grant: 2% increased Damage", statOrder = { 7393 }, level = 1, group = "AfflictionJewelSmallPassivesGrantDamage", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "damage" }, }, + ["AfflictionJewelSmallPassivesGrantDamage2_"] = { type = "Prefix", affix = "Hazardous", "Added Small Passive Skills also grant: 3% increased Damage", statOrder = { 7393 }, level = 68, group = "AfflictionJewelSmallPassivesGrantDamage", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "damage" }, }, + ["AfflictionJewelSmallPassivesGrantDamage3"] = { type = "Prefix", affix = "Dangerous", "Added Small Passive Skills also grant: 4% increased Damage", statOrder = { 7393 }, level = 84, group = "AfflictionJewelSmallPassivesGrantDamage", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "damage" }, }, + ["AfflictionJewelSmallPassivesGrantLifeSmall"] = { type = "Prefix", affix = "Hale", "Added Small Passive Skills also grant: +(2-3) to Maximum Life", statOrder = { 7402 }, level = 1, group = "AfflictionJewelSmallPassivesGrantLife", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, }, + ["AfflictionJewelSmallPassivesGrantLifeSmall2"] = { type = "Prefix", affix = "Healthy", "Added Small Passive Skills also grant: +(4-7) to Maximum Life", statOrder = { 7402 }, level = 68, group = "AfflictionJewelSmallPassivesGrantLife", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "resource", "life" }, }, + ["AfflictionJewelSmallPassivesGrantLifeSmall3"] = { type = "Prefix", affix = "Sanguine", "Added Small Passive Skills also grant: +(8-10) to Maximum Life", statOrder = { 7402 }, level = 73, group = "AfflictionJewelSmallPassivesGrantLife", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "resource", "life" }, }, + ["AfflictionJewelSmallPassivesGrantLifeSmall4"] = { type = "Prefix", affix = "Stalwart", "Added Small Passive Skills also grant: +(11-13) to Maximum Life", statOrder = { 7402 }, level = 78, group = "AfflictionJewelSmallPassivesGrantLife", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "life" }, }, + ["AfflictionJewelSmallPassivesGrantLifeSmall5_"] = { type = "Prefix", affix = "Stout", "Added Small Passive Skills also grant: +(14-16) to Maximum Life", statOrder = { 7402 }, level = 84, group = "AfflictionJewelSmallPassivesGrantLife", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "life" }, }, + ["AfflictionJewelSmallPassivesGrantManaSmall"] = { type = "Prefix", affix = "Beryl", "Added Small Passive Skills also grant: +(2-5) to Maximum Mana", statOrder = { 7403 }, level = 1, group = "AfflictionJewelSmallPassivesGrantMana", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "mana" }, }, + ["AfflictionJewelSmallPassivesGrantManaSmall2_"] = { type = "Prefix", affix = "Cobalt", "Added Small Passive Skills also grant: +(6-8) to Maximum Mana", statOrder = { 7403 }, level = 68, group = "AfflictionJewelSmallPassivesGrantMana", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "resource", "mana" }, }, + ["AfflictionJewelSmallPassivesGrantManaSmall3"] = { type = "Prefix", affix = "Azure", "Added Small Passive Skills also grant: +(9-10) to Maximum Mana", statOrder = { 7403 }, level = 73, group = "AfflictionJewelSmallPassivesGrantMana", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "resource", "mana" }, }, + ["AfflictionJewelSmallPassivesGrantManaSmall4_"] = { type = "Prefix", affix = "Sapphire", "Added Small Passive Skills also grant: +(11-13) to Maximum Mana", statOrder = { 7403 }, level = 78, group = "AfflictionJewelSmallPassivesGrantMana", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, }, + ["AfflictionJewelSmallPassivesGrantManaSmall5_"] = { type = "Prefix", affix = "Cerulean", "Added Small Passive Skills also grant: +(14-16) to Maximum Mana", statOrder = { 7403 }, level = 84, group = "AfflictionJewelSmallPassivesGrantMana", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "mana" }, }, + ["AfflictionJewelSmallPassivesGrantESSmall"] = { type = "Prefix", affix = "Shining", "Added Small Passive Skills also grant: +(4-5) to Maximum Energy Shield", statOrder = { 7401 }, level = 1, group = "AfflictionJewelSmallPassivesGrantES", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "defences", "energy_shield" }, }, + ["AfflictionJewelSmallPassivesGrantESSmall2"] = { type = "Prefix", affix = "Glimmering", "Added Small Passive Skills also grant: +(6-9) to Maximum Energy Shield", statOrder = { 7401 }, level = 68, group = "AfflictionJewelSmallPassivesGrantES", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "defences", "energy_shield" }, }, + ["AfflictionJewelSmallPassivesGrantESSmall3_"] = { type = "Prefix", affix = "Glowing", "Added Small Passive Skills also grant: +(10-12) to Maximum Energy Shield", statOrder = { 7401 }, level = 73, group = "AfflictionJewelSmallPassivesGrantES", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "defences", "energy_shield" }, }, + ["AfflictionJewelSmallPassivesGrantESSmall4"] = { type = "Prefix", affix = "Radiating", "Added Small Passive Skills also grant: +(13-16) to Maximum Energy Shield", statOrder = { 7401 }, level = 78, group = "AfflictionJewelSmallPassivesGrantES", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "defences", "energy_shield" }, }, + ["AfflictionJewelSmallPassivesGrantESSmall5"] = { type = "Prefix", affix = "Pulsing", "Added Small Passive Skills also grant: +(17-20) to Maximum Energy Shield", statOrder = { 7401 }, level = 84, group = "AfflictionJewelSmallPassivesGrantES", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "defences", "energy_shield" }, }, + ["AfflictionJewelSmallPassivesGrantArmourSmall__"] = { type = "Prefix", affix = "Lacquered", "Added Small Passive Skills also grant: +(11-20) to Armour", statOrder = { 7372 }, level = 1, group = "AfflictionJewelSmallPassivesGrantArmour", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "defences", "armour" }, }, + ["AfflictionJewelSmallPassivesGrantArmourSmall2__"] = { type = "Prefix", affix = "Studded", "Added Small Passive Skills also grant: +(21-30) to Armour", statOrder = { 7372 }, level = 68, group = "AfflictionJewelSmallPassivesGrantArmour", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "defences", "armour" }, }, + ["AfflictionJewelSmallPassivesGrantArmourSmall3"] = { type = "Prefix", affix = "Ribbed", "Added Small Passive Skills also grant: +(31-40) to Armour", statOrder = { 7372 }, level = 73, group = "AfflictionJewelSmallPassivesGrantArmour", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "defences", "armour" }, }, + ["AfflictionJewelSmallPassivesGrantArmourSmall4___"] = { type = "Prefix", affix = "Fortified", "Added Small Passive Skills also grant: +(41-53) to Armour", statOrder = { 7372 }, level = 78, group = "AfflictionJewelSmallPassivesGrantArmour", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "defences", "armour" }, }, + ["AfflictionJewelSmallPassivesGrantArmourSmall5"] = { type = "Prefix", affix = "Plated", "Added Small Passive Skills also grant: +(54-66) to Armour", statOrder = { 7372 }, level = 84, group = "AfflictionJewelSmallPassivesGrantArmour", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "defences", "armour" }, }, + ["AfflictionJewelSmallPassivesGrantEvasionSmall"] = { type = "Prefix", affix = "Agile", "Added Small Passive Skills also grant: +(11-20) to Evasion", statOrder = { 7396 }, level = 1, group = "AfflictionJewelSmallPassivesGrantEvasion", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "defences", "evasion" }, }, + ["AfflictionJewelSmallPassivesGrantEvasionSmall2_"] = { type = "Prefix", affix = "Dancer's", "Added Small Passive Skills also grant: +(21-30) to Evasion", statOrder = { 7396 }, level = 68, group = "AfflictionJewelSmallPassivesGrantEvasion", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "defences", "evasion" }, }, + ["AfflictionJewelSmallPassivesGrantEvasionSmall3___"] = { type = "Prefix", affix = "Acrobat's", "Added Small Passive Skills also grant: +(31-40) to Evasion", statOrder = { 7396 }, level = 73, group = "AfflictionJewelSmallPassivesGrantEvasion", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "defences", "evasion" }, }, + ["AfflictionJewelSmallPassivesGrantEvasionSmall4_"] = { type = "Prefix", affix = "Fleet", "Added Small Passive Skills also grant: +(41-53) to Evasion", statOrder = { 7396 }, level = 78, group = "AfflictionJewelSmallPassivesGrantEvasion", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "defences", "evasion" }, }, + ["AfflictionJewelSmallPassivesGrantEvasionSmall5"] = { type = "Prefix", affix = "Blurred", "Added Small Passive Skills also grant: +(54-66) to Evasion", statOrder = { 7396 }, level = 84, group = "AfflictionJewelSmallPassivesGrantEvasion", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "defences", "evasion" }, }, + ["AfflictionJewelSmallPassivesGrantStrSmall_"] = { type = "Suffix", affix = "of the Brute", "Added Small Passive Skills also grant: +(2-3) to Strength", statOrder = { 7409 }, level = 1, group = "AfflictionJewelSmallPassivesGrantStr", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "attribute" }, }, + ["AfflictionJewelSmallPassivesGrantStrSmall2"] = { type = "Suffix", affix = "of the Wrestler", "Added Small Passive Skills also grant: +(4-5) to Strength", statOrder = { 7409 }, level = 68, group = "AfflictionJewelSmallPassivesGrantStr", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "attribute" }, }, + ["AfflictionJewelSmallPassivesGrantStrSmall3"] = { type = "Suffix", affix = "of the Bear", "Added Small Passive Skills also grant: +(6-8) to Strength", statOrder = { 7409 }, level = 73, group = "AfflictionJewelSmallPassivesGrantStr", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "attribute" }, }, + ["AfflictionJewelSmallPassivesGrantStrSmall4_"] = { type = "Suffix", affix = "of the Lion", "Added Small Passive Skills also grant: +(9-11) to Strength", statOrder = { 7409 }, level = 78, group = "AfflictionJewelSmallPassivesGrantStr", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "attribute" }, }, + ["AfflictionJewelSmallPassivesGrantStrSmall5"] = { type = "Suffix", affix = "of the Gorilla", "Added Small Passive Skills also grant: +(12-14) to Strength", statOrder = { 7409 }, level = 84, group = "AfflictionJewelSmallPassivesGrantStr", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "attribute" }, }, + ["AfflictionJewelSmallPassivesGrantDexSmall_"] = { type = "Suffix", affix = "of the Mongoose", "Added Small Passive Skills also grant: +(2-3) to Dexterity", statOrder = { 7394 }, level = 1, group = "AfflictionJewelSmallPassivesGrantDex", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "attribute" }, }, + ["AfflictionJewelSmallPassivesGrantDexSmall2"] = { type = "Suffix", affix = "of the Lynx", "Added Small Passive Skills also grant: +(4-5) to Dexterity", statOrder = { 7394 }, level = 68, group = "AfflictionJewelSmallPassivesGrantDex", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "attribute" }, }, + ["AfflictionJewelSmallPassivesGrantDexSmall3"] = { type = "Suffix", affix = "of the Fox", "Added Small Passive Skills also grant: +(6-8) to Dexterity", statOrder = { 7394 }, level = 73, group = "AfflictionJewelSmallPassivesGrantDex", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "attribute" }, }, + ["AfflictionJewelSmallPassivesGrantDexSmall4_"] = { type = "Suffix", affix = "of the Falcon", "Added Small Passive Skills also grant: +(9-11) to Dexterity", statOrder = { 7394 }, level = 78, group = "AfflictionJewelSmallPassivesGrantDex", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "attribute" }, }, + ["AfflictionJewelSmallPassivesGrantDexSmall5"] = { type = "Suffix", affix = "of the Panther", "Added Small Passive Skills also grant: +(12-14) to Dexterity", statOrder = { 7394 }, level = 84, group = "AfflictionJewelSmallPassivesGrantDex", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "attribute" }, }, + ["AfflictionJewelSmallPassivesGrantIntSmall_"] = { type = "Suffix", affix = "of the Pupil", "Added Small Passive Skills also grant: +(2-3) to Intelligence", statOrder = { 7398 }, level = 1, group = "AfflictionJewelSmallPassivesGrantInt", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "attribute" }, }, + ["AfflictionJewelSmallPassivesGrantIntSmall2"] = { type = "Suffix", affix = "of the Student", "Added Small Passive Skills also grant: +(4-5) to Intelligence", statOrder = { 7398 }, level = 68, group = "AfflictionJewelSmallPassivesGrantInt", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "attribute" }, }, + ["AfflictionJewelSmallPassivesGrantIntSmall3______"] = { type = "Suffix", affix = "of the Prodigy", "Added Small Passive Skills also grant: +(6-8) to Intelligence", statOrder = { 7398 }, level = 73, group = "AfflictionJewelSmallPassivesGrantInt", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "attribute" }, }, + ["AfflictionJewelSmallPassivesGrantIntSmall4_"] = { type = "Suffix", affix = "of the Augur", "Added Small Passive Skills also grant: +(9-11) to Intelligence", statOrder = { 7398 }, level = 78, group = "AfflictionJewelSmallPassivesGrantInt", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "attribute" }, }, + ["AfflictionJewelSmallPassivesGrantIntSmall5"] = { type = "Suffix", affix = "of the Philosopher", "Added Small Passive Skills also grant: +(12-14) to Intelligence", statOrder = { 7398 }, level = 84, group = "AfflictionJewelSmallPassivesGrantInt", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "attribute" }, }, + ["AfflictionJewelSmallPassivesGrantAttributesSmall"] = { type = "Suffix", affix = "of the Cloud", "Added Small Passive Skills also grant: +2 to All Attributes", statOrder = { 7371 }, level = 1, group = "AfflictionJewelSmallPassivesGrantAttributes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "attribute" }, }, + ["AfflictionJewelSmallPassivesGrantAttributesSmall2"] = { type = "Suffix", affix = "of the Sky", "Added Small Passive Skills also grant: +3 to All Attributes", statOrder = { 7371 }, level = 68, group = "AfflictionJewelSmallPassivesGrantAttributes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "attribute" }, }, + ["AfflictionJewelSmallPassivesGrantAttributesSmall3_"] = { type = "Suffix", affix = "of the Meteor", "Added Small Passive Skills also grant: +4 to All Attributes", statOrder = { 7371 }, level = 73, group = "AfflictionJewelSmallPassivesGrantAttributes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "attribute" }, }, + ["AfflictionJewelSmallPassivesGrantAttributesSmall4"] = { type = "Suffix", affix = "of the Comet", "Added Small Passive Skills also grant: +5 to All Attributes", statOrder = { 7371 }, level = 78, group = "AfflictionJewelSmallPassivesGrantAttributes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "attribute" }, }, + ["AfflictionJewelSmallPassivesGrantAttributesSmall5"] = { type = "Suffix", affix = "of the Heavens", "Added Small Passive Skills also grant: +6 to All Attributes", statOrder = { 7371 }, level = 84, group = "AfflictionJewelSmallPassivesGrantAttributes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "attribute" }, }, + ["AfflictionJewelSmallPassivesGrantManaRegenSmall_"] = { type = "Suffix", affix = "of Excitement", "Added Small Passive Skills also grant: 4% increased Mana Regeneration Rate", statOrder = { 7400 }, level = 1, group = "AfflictionJewelSmallPassivesGrantManaRegen", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "mana" }, }, + ["AfflictionJewelSmallPassivesGrantManaRegenSmall2"] = { type = "Suffix", affix = "of Joy", "Added Small Passive Skills also grant: 5% increased Mana Regeneration Rate", statOrder = { 7400 }, level = 68, group = "AfflictionJewelSmallPassivesGrantManaRegen", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "resource", "mana" }, }, + ["AfflictionJewelSmallPassivesGrantManaRegenSmall3"] = { type = "Suffix", affix = "of Elation", "Added Small Passive Skills also grant: 6% increased Mana Regeneration Rate", statOrder = { 7400 }, level = 73, group = "AfflictionJewelSmallPassivesGrantManaRegen", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "resource", "mana" }, }, + ["AfflictionJewelSmallPassivesGrantManaRegenSmall4"] = { type = "Suffix", affix = "of Bliss", "Added Small Passive Skills also grant: (7-8)% increased Mana Regeneration Rate", statOrder = { 7400 }, level = 78, group = "AfflictionJewelSmallPassivesGrantManaRegen", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, }, + ["AfflictionJewelSmallPassivesGrantManaRegenSmall5"] = { type = "Suffix", affix = "of Euphoria", "Added Small Passive Skills also grant: (9-10)% increased Mana Regeneration Rate", statOrder = { 7400 }, level = 84, group = "AfflictionJewelSmallPassivesGrantManaRegen", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "mana" }, }, + ["AfflictionJewelSmallPassivesGrantLifeRegenSmall"] = { type = "Suffix", affix = "of the Newt", "Added Small Passive Skills also grant: Regenerate 0.1% of Life per Second", statOrder = { 7407 }, level = 1, group = "AfflictionJewelSmallPassivesGrantLifeRegen", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, }, + ["AfflictionJewelSmallPassivesGrantLifeRegenSmall2_"] = { type = "Suffix", affix = "of the Lizard", "Added Small Passive Skills also grant: Regenerate 0.15% of Life per Second", statOrder = { 7407 }, level = 68, group = "AfflictionJewelSmallPassivesGrantLifeRegen", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "resource", "life" }, }, + ["AfflictionJewelSmallPassivesGrantLifeRegenSmall3_"] = { type = "Suffix", affix = "of the Flatworm", "Added Small Passive Skills also grant: Regenerate 0.2% of Life per Second", statOrder = { 7407 }, level = 73, group = "AfflictionJewelSmallPassivesGrantLifeRegen", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "resource", "life" }, }, + ["AfflictionJewelSmallPassivesGrantLifeRegenSmall4_"] = { type = "Suffix", affix = "of the Starfish", "Added Small Passive Skills also grant: Regenerate 0.25% of Life per Second", statOrder = { 7407 }, level = 78, group = "AfflictionJewelSmallPassivesGrantLifeRegen", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "life" }, }, + ["AfflictionJewelSmallPassivesGrantLifeRegenSmall5"] = { type = "Suffix", affix = "of the Hydra", "Added Small Passive Skills also grant: Regenerate 0.3% of Life per Second", statOrder = { 7407 }, level = 84, group = "AfflictionJewelSmallPassivesGrantLifeRegen", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "life" }, }, + ["AfflictionJewelSmallPassivesGrantFireResSmall"] = { type = "Suffix", affix = "of the Whelpling", "Added Small Passive Skills also grant: +(2-3)% to Fire Resistance", statOrder = { 7397 }, level = 1, group = "AfflictionJewelSmallPassivesGrantFireRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["AfflictionJewelSmallPassivesGrantFireResSmall2"] = { type = "Suffix", affix = "of the Salamander", "Added Small Passive Skills also grant: +(4-5)% to Fire Resistance", statOrder = { 7397 }, level = 68, group = "AfflictionJewelSmallPassivesGrantFireRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["AfflictionJewelSmallPassivesGrantFireResSmall3_"] = { type = "Suffix", affix = "of the Drake", "Added Small Passive Skills also grant: +(6-7)% to Fire Resistance", statOrder = { 7397 }, level = 73, group = "AfflictionJewelSmallPassivesGrantFireRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["AfflictionJewelSmallPassivesGrantFireResSmall4"] = { type = "Suffix", affix = "of the Kiln", "Added Small Passive Skills also grant: +(8-9)% to Fire Resistance", statOrder = { 7397 }, level = 78, group = "AfflictionJewelSmallPassivesGrantFireRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["AfflictionJewelSmallPassivesGrantFireResSmall5"] = { type = "Suffix", affix = "of the Furnace", "Added Small Passive Skills also grant: +(10-11)% to Fire Resistance", statOrder = { 7397 }, level = 84, group = "AfflictionJewelSmallPassivesGrantFireRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["AfflictionJewelSmallPassivesGrantColdResSmall"] = { type = "Suffix", affix = "of the Inuit", "Added Small Passive Skills also grant: +(2-3)% to Cold Resistance", statOrder = { 7390 }, level = 1, group = "AfflictionJewelSmallPassivesGrantColdRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["AfflictionJewelSmallPassivesGrantColdResSmall2"] = { type = "Suffix", affix = "of the Seal", "Added Small Passive Skills also grant: +(4-5)% to Cold Resistance", statOrder = { 7390 }, level = 68, group = "AfflictionJewelSmallPassivesGrantColdRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["AfflictionJewelSmallPassivesGrantColdResSmall3"] = { type = "Suffix", affix = "of the Penguin", "Added Small Passive Skills also grant: +(6-7)% to Cold Resistance", statOrder = { 7390 }, level = 73, group = "AfflictionJewelSmallPassivesGrantColdRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["AfflictionJewelSmallPassivesGrantColdResSmall4"] = { type = "Suffix", affix = "of the Yeti", "Added Small Passive Skills also grant: +(8-9)% to Cold Resistance", statOrder = { 7390 }, level = 78, group = "AfflictionJewelSmallPassivesGrantColdRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["AfflictionJewelSmallPassivesGrantColdResSmall5_"] = { type = "Suffix", affix = "of the Walrus", "Added Small Passive Skills also grant: +(10-11)% to Cold Resistance", statOrder = { 7390 }, level = 84, group = "AfflictionJewelSmallPassivesGrantColdRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["AfflictionJewelSmallPassivesGrantLightningResSmall"] = { type = "Suffix", affix = "of the Cloud", "Added Small Passive Skills also grant: +(2-3)% to Lightning Resistance", statOrder = { 7399 }, level = 1, group = "AfflictionJewelSmallPassivesGrantLightningRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["AfflictionJewelSmallPassivesGrantLightningResSmall2__"] = { type = "Suffix", affix = "of the Squall", "Added Small Passive Skills also grant: +(4-5)% to Lightning Resistance", statOrder = { 7399 }, level = 68, group = "AfflictionJewelSmallPassivesGrantLightningRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["AfflictionJewelSmallPassivesGrantLightningResSmall3"] = { type = "Suffix", affix = "of the Storm", "Added Small Passive Skills also grant: +(6-7)% to Lightning Resistance", statOrder = { 7399 }, level = 73, group = "AfflictionJewelSmallPassivesGrantLightningRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["AfflictionJewelSmallPassivesGrantLightningResSmall4_"] = { type = "Suffix", affix = "of the Thunderhead", "Added Small Passive Skills also grant: +(8-9)% to Lightning Resistance", statOrder = { 7399 }, level = 78, group = "AfflictionJewelSmallPassivesGrantLightningRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["AfflictionJewelSmallPassivesGrantLightningResSmall5"] = { type = "Suffix", affix = "of the Tempest", "Added Small Passive Skills also grant: +(10-11)% to Lightning Resistance", statOrder = { 7399 }, level = 84, group = "AfflictionJewelSmallPassivesGrantLightningRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["AfflictionJewelSmallPassivesGrantElementalResSmall"] = { type = "Suffix", affix = "of the Crystal", "Added Small Passive Skills also grant: +2% to all Elemental Resistances", statOrder = { 7395 }, level = 1, group = "AfflictionJewelSmallPassivesGrantElementalRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "resistance" }, }, + ["AfflictionJewelSmallPassivesGrantElementalResSmall2"] = { type = "Suffix", affix = "of the Prism", "Added Small Passive Skills also grant: +3% to all Elemental Resistances", statOrder = { 7395 }, level = 68, group = "AfflictionJewelSmallPassivesGrantElementalRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "elemental", "resistance" }, }, + ["AfflictionJewelSmallPassivesGrantElementalResSmall3"] = { type = "Suffix", affix = "of the Kaleidoscope", "Added Small Passive Skills also grant: +4% to all Elemental Resistances", statOrder = { 7395 }, level = 73, group = "AfflictionJewelSmallPassivesGrantElementalRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "elemental", "resistance" }, }, + ["AfflictionJewelSmallPassivesGrantElementalResSmall4"] = { type = "Suffix", affix = "of Variegation", "Added Small Passive Skills also grant: +5% to all Elemental Resistances", statOrder = { 7395 }, level = 78, group = "AfflictionJewelSmallPassivesGrantElementalRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "resistance" }, }, + ["AfflictionJewelSmallPassivesGrantElementalResSmall5"] = { type = "Suffix", affix = "of the Rainbow", "Added Small Passive Skills also grant: +6% to all Elemental Resistances", statOrder = { 7395 }, level = 84, group = "AfflictionJewelSmallPassivesGrantElementalRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "resistance" }, }, + ["AfflictionJewelSmallPassivesGrantChaosResSmall"] = { type = "Suffix", affix = "of the Lost", "Added Small Passive Skills also grant: +3% to Chaos Resistance", statOrder = { 7388 }, level = 1, group = "AfflictionJewelSmallPassivesGrantChaosRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "chaos", "resistance" }, }, + ["AfflictionJewelSmallPassivesGrantChaosResSmall2"] = { type = "Suffix", affix = "of Banishment", "Added Small Passive Skills also grant: +4% to Chaos Resistance", statOrder = { 7388 }, level = 68, group = "AfflictionJewelSmallPassivesGrantChaosRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "chaos", "resistance" }, }, + ["AfflictionJewelSmallPassivesGrantChaosResSmall3"] = { type = "Suffix", affix = "of Eviction", "Added Small Passive Skills also grant: +5% to Chaos Resistance", statOrder = { 7388 }, level = 73, group = "AfflictionJewelSmallPassivesGrantChaosRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "chaos", "resistance" }, }, + ["AfflictionJewelSmallPassivesGrantChaosResSmall4"] = { type = "Suffix", affix = "of Expulsion", "Added Small Passive Skills also grant: +6% to Chaos Resistance", statOrder = { 7388 }, level = 78, group = "AfflictionJewelSmallPassivesGrantChaosRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "chaos", "resistance" }, }, + ["AfflictionJewelSmallPassivesGrantChaosResSmall5"] = { type = "Suffix", affix = "of Exile", "Added Small Passive Skills also grant: +(7-8)% to Chaos Resistance", statOrder = { 7388 }, level = 84, group = "AfflictionJewelSmallPassivesGrantChaosRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "chaos", "resistance" }, }, + ["AfflictionJewelSmallPassivesGrantDamageSmall_"] = { type = "Prefix", affix = "Harmful", "Added Small Passive Skills also grant: 2% increased Damage", statOrder = { 7393 }, level = 1, group = "AfflictionJewelSmallPassivesGrantDamage", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, }, + ["AfflictionJewelSmallPassivesGrantDamageSmall2_"] = { type = "Prefix", affix = "Hazardous", "Added Small Passive Skills also grant: 3% increased Damage", statOrder = { 7393 }, level = 68, group = "AfflictionJewelSmallPassivesGrantDamage", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "damage" }, }, + ["AfflictionJewelSmallPassivesGrantDamageSmall3_"] = { type = "Prefix", affix = "Dangerous", "Added Small Passive Skills also grant: 4% increased Damage", statOrder = { 7393 }, level = 73, group = "AfflictionJewelSmallPassivesGrantDamage", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "damage" }, }, + ["AfflictionJewelSmallPassivesGrantDamageSmall4_"] = { type = "Prefix", affix = "Destructive", "Added Small Passive Skills also grant: 5% increased Damage", statOrder = { 7393 }, level = 78, group = "AfflictionJewelSmallPassivesGrantDamage", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "damage" }, }, + ["AfflictionJewelSmallPassivesGrantDamageSmall5"] = { type = "Prefix", affix = "Deadly", "Added Small Passive Skills also grant: 6% increased Damage", statOrder = { 7393 }, level = 84, group = "AfflictionJewelSmallPassivesGrantDamage", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "damage" }, }, + ["AfflictionJewelSmallPassivesHaveIncreasedEffect"] = { type = "Prefix", affix = "Potent", "Added Small Passive Skills have 25% increased Effect", statOrder = { 7413 }, level = 1, group = "AfflictionJewelSmallPassivesHaveIncreasedEffect", weightKey = { "default", }, weightVal = { 500 }, modTags = { }, }, + ["AfflictionJewelSmallPassivesHaveIncreasedEffect2"] = { type = "Prefix", affix = "Powerful", "Added Small Passive Skills have 35% increased Effect", statOrder = { 7413 }, level = 84, group = "AfflictionJewelSmallPassivesHaveIncreasedEffect", weightKey = { "default", }, weightVal = { 300 }, modTags = { }, }, + ["AfflictionJewelSmallPassivesGrantAttackSpeed"] = { type = "Suffix", affix = "of Skill", "Added Small Passive Skills also grant: 1% increased Attack Speed", statOrder = { 7381 }, level = 1, group = "AfflictionJewelSmallPassivesGrantAttackSpeed", weightKey = { "affliction_axe_and_sword_damage", "affliction_mace_and_staff_damage", "affliction_dagger_and_claw_damage", "affliction_bow_damage", "affliction_wand_damage", "affliction_damage_with_two_handed_melee_weapons", "affliction_attack_damage_while_dual_wielding_", "affliction_attack_damage_while_holding_a_shield", "affliction_attack_damage_", "default", }, weightVal = { 350, 350, 350, 350, 350, 350, 350, 350, 350, 0 }, modTags = { "attack", "speed" }, }, + ["AfflictionJewelSmallPassivesGrantAttackSpeed2_"] = { type = "Suffix", affix = "of Ease", "Added Small Passive Skills also grant: 2% increased Attack Speed", statOrder = { 7381 }, level = 68, group = "AfflictionJewelSmallPassivesGrantAttackSpeed", weightKey = { "affliction_axe_and_sword_damage", "affliction_mace_and_staff_damage", "affliction_dagger_and_claw_damage", "affliction_bow_damage", "affliction_wand_damage", "affliction_damage_with_two_handed_melee_weapons", "affliction_attack_damage_while_dual_wielding_", "affliction_attack_damage_while_holding_a_shield", "affliction_attack_damage_", "default", }, weightVal = { 350, 350, 350, 350, 350, 350, 350, 350, 350, 0 }, modTags = { "attack", "speed" }, }, + ["AfflictionJewelSmallPassivesGrantAttackSpeed3__"] = { type = "Suffix", affix = "of Mastery", "Added Small Passive Skills also grant: 3% increased Attack Speed", statOrder = { 7381 }, level = 84, group = "AfflictionJewelSmallPassivesGrantAttackSpeed", weightKey = { "affliction_axe_and_sword_damage", "affliction_mace_and_staff_damage", "affliction_dagger_and_claw_damage", "affliction_bow_damage", "affliction_wand_damage", "affliction_damage_with_two_handed_melee_weapons", "affliction_attack_damage_while_dual_wielding_", "affliction_attack_damage_while_holding_a_shield", "affliction_attack_damage_", "default", }, weightVal = { 250, 250, 250, 250, 250, 250, 250, 250, 250, 0 }, modTags = { "attack", "speed" }, }, + ["AfflictionJewelSmallPassivesGrantCastSpeed"] = { type = "Suffix", affix = "of Talent", "Added Small Passive Skills also grant: 1% increased Cast Speed", statOrder = { 7383 }, level = 1, group = "AfflictionJewelSmallPassivesGrantCastSpeed", weightKey = { "affliction_spell_damage", "default", }, weightVal = { 350, 0 }, modTags = { "caster", "speed" }, }, + ["AfflictionJewelSmallPassivesGrantCastSpeed2"] = { type = "Suffix", affix = "of Nimbleness", "Added Small Passive Skills also grant: 2% increased Cast Speed", statOrder = { 7383 }, level = 68, group = "AfflictionJewelSmallPassivesGrantCastSpeed", weightKey = { "affliction_spell_damage", "default", }, weightVal = { 350, 0 }, modTags = { "caster", "speed" }, }, + ["AfflictionJewelSmallPassivesGrantCastSpeed3_"] = { type = "Suffix", affix = "of Expertise", "Added Small Passive Skills also grant: 3% increased Cast Speed", statOrder = { 7383 }, level = 84, group = "AfflictionJewelSmallPassivesGrantCastSpeed", weightKey = { "affliction_spell_damage", "default", }, weightVal = { 250, 0 }, modTags = { "caster", "speed" }, }, + ["AfflictionJewelSmallPassivesGrantDamageOverTime"] = { type = "Suffix", affix = "of Decline", "Added Small Passive Skills also grant: 1% increased Damage over Time", statOrder = { 7392 }, level = 1, group = "AfflictionJewelSmallPassivesGrantDamageOverTime", weightKey = { "affliction_fire_damage_over_time_multiplier", "affliction_chaos_damage_over_time_multiplier", "affliction_physical_damage_over_time_multiplier", "affliction_cold_damage_over_time_multiplier", "affliction_damage_over_time_multiplier", "default", }, weightVal = { 350, 350, 350, 350, 350, 0 }, modTags = { "damage" }, }, + ["AfflictionJewelSmallPassivesGrantDamageOverTime2"] = { type = "Suffix", affix = "of Degeneration", "Added Small Passive Skills also grant: 2% increased Damage over Time", statOrder = { 7392 }, level = 68, group = "AfflictionJewelSmallPassivesGrantDamageOverTime", weightKey = { "affliction_fire_damage_over_time_multiplier", "affliction_chaos_damage_over_time_multiplier", "affliction_physical_damage_over_time_multiplier", "affliction_cold_damage_over_time_multiplier", "affliction_damage_over_time_multiplier", "default", }, weightVal = { 350, 350, 350, 350, 350, 0 }, modTags = { "damage" }, }, + ["AfflictionJewelSmallPassivesGrantDamageOverTime3"] = { type = "Suffix", affix = "of Disintegration", "Added Small Passive Skills also grant: 3% increased Damage over Time", statOrder = { 7392 }, level = 84, group = "AfflictionJewelSmallPassivesGrantDamageOverTime", weightKey = { "affliction_fire_damage_over_time_multiplier", "affliction_chaos_damage_over_time_multiplier", "affliction_physical_damage_over_time_multiplier", "affliction_cold_damage_over_time_multiplier", "affliction_damage_over_time_multiplier", "default", }, weightVal = { 250, 250, 250, 250, 250, 0 }, modTags = { "damage" }, }, + ["AfflictionJewelSmallPassivesGrantElementalAilmentDuration_"] = { type = "Suffix", affix = "of Tumult", "Added Small Passive Skills also grant: 3% increased Duration of Elemental Ailments on Enemies", statOrder = { 7385 }, level = 1, group = "AfflictionJewelSmallPassivesGrantElementalAilmentDuration", weightKey = { "affliction_effect_of_non-damaging_ailments", "default", }, weightVal = { 350, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["AfflictionJewelSmallPassivesGrantElementalAilmentDuration2"] = { type = "Suffix", affix = "of Turbulence", "Added Small Passive Skills also grant: 4% increased Duration of Elemental Ailments on Enemies", statOrder = { 7385 }, level = 68, group = "AfflictionJewelSmallPassivesGrantElementalAilmentDuration", weightKey = { "affliction_effect_of_non-damaging_ailments", "default", }, weightVal = { 350, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["AfflictionJewelSmallPassivesGrantElementalAilmentDuration3"] = { type = "Suffix", affix = "of Disturbance", "Added Small Passive Skills also grant: 5% increased Duration of Elemental Ailments on Enemies", statOrder = { 7385 }, level = 84, group = "AfflictionJewelSmallPassivesGrantElementalAilmentDuration", weightKey = { "affliction_effect_of_non-damaging_ailments", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["AfflictionJewelSmallPassivesGrantAuraAreaOfEffect__"] = { type = "Suffix", affix = "of Outreach", "Added Small Passive Skills also grant: 2% increased Area of Effect of Aura Skills", statOrder = { 7382 }, level = 1, group = "AfflictionJewelSmallPassivesGrantAuraAreaOfEffect", weightKey = { "old_do_not_use_affliction_aura_effect", "default", }, weightVal = { 350, 0 }, modTags = { "aura" }, }, + ["AfflictionJewelSmallPassivesGrantAuraAreaOfEffect2"] = { type = "Suffix", affix = "of Influence", "Added Small Passive Skills also grant: 4% increased Area of Effect of Aura Skills", statOrder = { 7382 }, level = 68, group = "AfflictionJewelSmallPassivesGrantAuraAreaOfEffect", weightKey = { "old_do_not_use_affliction_aura_effect", "default", }, weightVal = { 350, 0 }, modTags = { "aura" }, }, + ["AfflictionJewelSmallPassivesGrantAuraAreaOfEffect3"] = { type = "Suffix", affix = "of Guidance", "Added Small Passive Skills also grant: 6% increased Area of Effect of Aura Skills", statOrder = { 7382 }, level = 84, group = "AfflictionJewelSmallPassivesGrantAuraAreaOfEffect", weightKey = { "old_do_not_use_affliction_aura_effect", "default", }, weightVal = { 250, 0 }, modTags = { "aura" }, }, + ["AfflictionJewelSmallPassivesGrantCurseAreaOfEffect"] = { type = "Suffix", affix = "of Clout", "Added Small Passive Skills also grant: 1% increased Area of Effect of Hex Skills", statOrder = { 7391 }, level = 1, group = "AfflictionJewelSmallPassivesGrantCurseAreaOfEffect", weightKey = { "old_do_not_use_affliction_curse_effect", "default", }, weightVal = { 350, 0 }, modTags = { "caster", "curse" }, }, + ["AfflictionJewelSmallPassivesGrantCurseAreaOfEffect2"] = { type = "Suffix", affix = "of Dominance", "Added Small Passive Skills also grant: 2% increased Area of Effect of Hex Skills", statOrder = { 7391 }, level = 68, group = "AfflictionJewelSmallPassivesGrantCurseAreaOfEffect", weightKey = { "old_do_not_use_affliction_curse_effect", "default", }, weightVal = { 350, 0 }, modTags = { "caster", "curse" }, }, + ["AfflictionJewelSmallPassivesGrantCurseAreaOfEffect3"] = { type = "Suffix", affix = "of Suppression", "Added Small Passive Skills also grant: 3% increased Area of Effect of Hex Skills", statOrder = { 7391 }, level = 84, group = "AfflictionJewelSmallPassivesGrantCurseAreaOfEffect", weightKey = { "old_do_not_use_affliction_curse_effect", "default", }, weightVal = { 250, 0 }, modTags = { "caster", "curse" }, }, + ["AfflictionJewelSmallPassivesGrantWarcryDuration"] = { type = "Suffix", affix = "of Yelling", "Added Small Passive Skills also grant: 2% increased Warcry Duration", statOrder = { 7412 }, level = 1, group = "AfflictionJewelSmallPassivesGrantWarcryDuration", weightKey = { "affliction_warcry_buff_effect", "default", }, weightVal = { 350, 0 }, modTags = { }, }, + ["AfflictionJewelSmallPassivesGrantWarcryDuration2"] = { type = "Suffix", affix = "of Shouting", "Added Small Passive Skills also grant: 3% increased Warcry Duration", statOrder = { 7412 }, level = 68, group = "AfflictionJewelSmallPassivesGrantWarcryDuration", weightKey = { "affliction_warcry_buff_effect", "default", }, weightVal = { 350, 0 }, modTags = { }, }, + ["AfflictionJewelSmallPassivesGrantWarcryDuration3"] = { type = "Suffix", affix = "of Bellowing", "Added Small Passive Skills also grant: 4% increased Warcry Duration", statOrder = { 7412 }, level = 84, group = "AfflictionJewelSmallPassivesGrantWarcryDuration", weightKey = { "affliction_warcry_buff_effect", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["AfflictionJewelSmallPassivesGrantCriticalStrikeMultiplier"] = { type = "Suffix", affix = "of Ire", "Added Small Passive Skills also grant: +1% to Critical Strike Multiplier", statOrder = { 7384 }, level = 1, group = "AfflictionJewelSmallPassivesGrantCriticalStrikeMultiplier", weightKey = { "affliction_critical_chance", "default", }, weightVal = { 350, 0 }, modTags = { "damage", "critical" }, }, + ["AfflictionJewelSmallPassivesGrantCriticalStrikeMultiplier2_"] = { type = "Suffix", affix = "of Anger", "Added Small Passive Skills also grant: +2% to Critical Strike Multiplier", statOrder = { 7384 }, level = 68, group = "AfflictionJewelSmallPassivesGrantCriticalStrikeMultiplier", weightKey = { "affliction_critical_chance", "default", }, weightVal = { 350, 0 }, modTags = { "damage", "critical" }, }, + ["AfflictionJewelSmallPassivesGrantCriticalStrikeMultiplier3"] = { type = "Suffix", affix = "of Rage", "Added Small Passive Skills also grant: +3% to Critical Strike Multiplier", statOrder = { 7384 }, level = 84, group = "AfflictionJewelSmallPassivesGrantCriticalStrikeMultiplier", weightKey = { "affliction_critical_chance", "default", }, weightVal = { 250, 0 }, modTags = { "damage", "critical" }, }, + ["AfflictionJewelSmallPassivesGrantMinionLifeRegen"] = { type = "Suffix", affix = "of Fostering", "Added Small Passive Skills also grant: Minions Regenerate 0.1% of Life per Second", statOrder = { 7406 }, level = 1, group = "AfflictionJewelSmallPassivesGrantMinionLifeRegen", weightKey = { "affliction_minion_life", "default", }, weightVal = { 350, 0 }, modTags = { "resource", "life", "minion" }, }, + ["AfflictionJewelSmallPassivesGrantMinionLifeRegen2"] = { type = "Suffix", affix = "of Nurturing", "Added Small Passive Skills also grant: Minions Regenerate 0.15% of Life per Second", statOrder = { 7406 }, level = 68, group = "AfflictionJewelSmallPassivesGrantMinionLifeRegen", weightKey = { "affliction_minion_life", "default", }, weightVal = { 350, 0 }, modTags = { "resource", "life", "minion" }, }, + ["AfflictionJewelSmallPassivesGrantMinionLifeRegen3"] = { type = "Suffix", affix = "of Motherhood", "Added Small Passive Skills also grant: Minions Regenerate 0.2% of Life per Second", statOrder = { 7406 }, level = 84, group = "AfflictionJewelSmallPassivesGrantMinionLifeRegen", weightKey = { "affliction_minion_life", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "minion" }, }, + ["AfflictionJewelSmallPassivesGrantAreaOfEffect_"] = { type = "Suffix", affix = "of Reach", "Added Small Passive Skills also grant: 1% increased Area of Effect", statOrder = { 7387 }, level = 1, group = "AfflictionJewelSmallPassivesGrantAreaOfEffect", weightKey = { "affliction_area_damage", "default", }, weightVal = { 350, 0 }, modTags = { }, }, + ["AfflictionJewelSmallPassivesGrantAreaOfEffect2"] = { type = "Suffix", affix = "of Range", "Added Small Passive Skills also grant: 2% increased Area of Effect", statOrder = { 7387 }, level = 68, group = "AfflictionJewelSmallPassivesGrantAreaOfEffect", weightKey = { "affliction_area_damage", "default", }, weightVal = { 350, 0 }, modTags = { }, }, + ["AfflictionJewelSmallPassivesGrantAreaOfEffect3"] = { type = "Suffix", affix = "of Horizons", "Added Small Passive Skills also grant: 3% increased Area of Effect", statOrder = { 7387 }, level = 84, group = "AfflictionJewelSmallPassivesGrantAreaOfEffect", weightKey = { "affliction_area_damage", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["AfflictionJewelSmallPassivesGrantProjectileSpeed"] = { type = "Suffix", affix = "of Darting", "Added Small Passive Skills also grant: 2% increased Projectile Speed", statOrder = { 7386 }, level = 1, group = "AfflictionJewelSmallPassivesGrantProjectileSpeed", weightKey = { "affliction_projectile_damage", "default", }, weightVal = { 350, 0 }, modTags = { "speed" }, }, + ["AfflictionJewelSmallPassivesGrantProjectileSpeed2"] = { type = "Suffix", affix = "of Flight", "Added Small Passive Skills also grant: 3% increased Projectile Speed", statOrder = { 7386 }, level = 68, group = "AfflictionJewelSmallPassivesGrantProjectileSpeed", weightKey = { "affliction_projectile_damage", "default", }, weightVal = { 350, 0 }, modTags = { "speed" }, }, + ["AfflictionJewelSmallPassivesGrantProjectileSpeed3"] = { type = "Suffix", affix = "of Propulsion", "Added Small Passive Skills also grant: 4% increased Projectile Speed", statOrder = { 7386 }, level = 84, group = "AfflictionJewelSmallPassivesGrantProjectileSpeed", weightKey = { "affliction_projectile_damage", "default", }, weightVal = { 250, 0 }, modTags = { "speed" }, }, + ["AfflictionJewelSmallPassivesGrantTrapAndMineSpeed_"] = { type = "Suffix", affix = "of Tinkering", "Added Small Passive Skills also grant: 1% increased Trap and Mine Throwing Speed", statOrder = { 7411 }, level = 1, group = "AfflictionJewelSmallPassivesGrantTrapAndMineSpeed", weightKey = { "affliction_trap_and_mine_damage", "default", }, weightVal = { 350, 0 }, modTags = { "speed" }, }, + ["AfflictionJewelSmallPassivesGrantTrapAndMineSpeed2"] = { type = "Suffix", affix = "of Assembly", "Added Small Passive Skills also grant: 2% increased Trap and Mine Throwing Speed", statOrder = { 7411 }, level = 68, group = "AfflictionJewelSmallPassivesGrantTrapAndMineSpeed", weightKey = { "affliction_trap_and_mine_damage", "default", }, weightVal = { 350, 0 }, modTags = { "speed" }, }, + ["AfflictionJewelSmallPassivesGrantTrapAndMineSpeed3_"] = { type = "Suffix", affix = "of Deployment", "Added Small Passive Skills also grant: 3% increased Trap and Mine Throwing Speed", statOrder = { 7411 }, level = 84, group = "AfflictionJewelSmallPassivesGrantTrapAndMineSpeed", weightKey = { "affliction_trap_and_mine_damage", "default", }, weightVal = { 250, 0 }, modTags = { "speed" }, }, + ["AfflictionJewelSmallPassivesGrantTotemPlacementSpeed"] = { type = "Suffix", affix = "of the Karui", "Added Small Passive Skills also grant: 1% increased Totem Placement speed", statOrder = { 7410 }, level = 1, group = "AfflictionJewelSmallPassivesGrantTotemPlacementSpeed", weightKey = { "affliction_totem_damage", "default", }, weightVal = { 350, 0 }, modTags = { "speed" }, }, + ["AfflictionJewelSmallPassivesGrantTotemPlacementSpeed2"] = { type = "Suffix", affix = "of the Ancestors", "Added Small Passive Skills also grant: 2% increased Totem Placement speed", statOrder = { 7410 }, level = 68, group = "AfflictionJewelSmallPassivesGrantTotemPlacementSpeed", weightKey = { "affliction_totem_damage", "default", }, weightVal = { 350, 0 }, modTags = { "speed" }, }, + ["AfflictionJewelSmallPassivesGrantTotemPlacementSpeed3"] = { type = "Suffix", affix = "of The Way", "Added Small Passive Skills also grant: 3% increased Totem Placement speed", statOrder = { 7410 }, level = 84, group = "AfflictionJewelSmallPassivesGrantTotemPlacementSpeed", weightKey = { "affliction_totem_damage", "default", }, weightVal = { 250, 0 }, modTags = { "speed" }, }, + ["AfflictionJewelSmallPassivesGrantBrandAttachmentRange_"] = { type = "Suffix", affix = "of Gripping", "Added Small Passive Skills also grant: 1% increased Brand Attachment range", statOrder = { 7408 }, level = 1, group = "AfflictionJewelSmallPassivesGrantBrandAttachmentRange", weightKey = { "affliction_brand_damage", "default", }, weightVal = { 350, 0 }, modTags = { "caster" }, }, + ["AfflictionJewelSmallPassivesGrantBrandAttachmentRange2"] = { type = "Suffix", affix = "of Grasping", "Added Small Passive Skills also grant: 2% increased Brand Attachment range", statOrder = { 7408 }, level = 68, group = "AfflictionJewelSmallPassivesGrantBrandAttachmentRange", weightKey = { "affliction_brand_damage", "default", }, weightVal = { 350, 0 }, modTags = { "caster" }, }, + ["AfflictionJewelSmallPassivesGrantBrandAttachmentRange3____"] = { type = "Suffix", affix = "of Latching", "Added Small Passive Skills also grant: 3% increased Brand Attachment range", statOrder = { 7408 }, level = 84, group = "AfflictionJewelSmallPassivesGrantBrandAttachmentRange", weightKey = { "affliction_brand_damage", "default", }, weightVal = { 250, 0 }, modTags = { "caster" }, }, + ["AfflictionJewelSmallPassivesGrantChannelledAttackAndCastSpeed"] = { type = "Suffix", affix = "of Attention", "Added Small Passive Skills also grant: Channelling Skills have 1% increased Attack and Cast Speed", statOrder = { 7374 }, level = 1, group = "AfflictionJewelSmallPassivesGrantChannelledAttackAndCastSpeed", weightKey = { "affliction_channelling_skill_damage", "default", }, weightVal = { 350, 0 }, modTags = { "attack", "caster", "speed" }, }, + ["AfflictionJewelSmallPassivesGrantChannelledAttackAndCastSpeed2"] = { type = "Suffix", affix = "of Concentration", "Added Small Passive Skills also grant: Channelling Skills have 2% increased Attack and Cast Speed", statOrder = { 7374 }, level = 68, group = "AfflictionJewelSmallPassivesGrantChannelledAttackAndCastSpeed", weightKey = { "affliction_channelling_skill_damage", "default", }, weightVal = { 350, 0 }, modTags = { "attack", "caster", "speed" }, }, + ["AfflictionJewelSmallPassivesGrantChannelledAttackAndCastSpeed3"] = { type = "Suffix", affix = "of Forethought", "Added Small Passive Skills also grant: Channelling Skills have 3% increased Attack and Cast Speed", statOrder = { 7374 }, level = 84, group = "AfflictionJewelSmallPassivesGrantChannelledAttackAndCastSpeed", weightKey = { "affliction_channelling_skill_damage", "default", }, weightVal = { 250, 0 }, modTags = { "attack", "caster", "speed" }, }, + ["AfflictionJewelSmallPassivesGrantFlaskChargesGained"] = { type = "Suffix", affix = "of Refilling", "Added Small Passive Skills also grant: 1% increased Flask Charges gained", statOrder = { 7389 }, level = 1, group = "AfflictionJewelSmallPassivesGrantFlaskChargesGained", weightKey = { "affliction_life_and_mana_recovery_from_flasks", "affliction_flask_duration", "default", }, weightVal = { 350, 350, 0 }, modTags = { "flask" }, }, + ["AfflictionJewelSmallPassivesGrantFlaskChargesGained2_"] = { type = "Suffix", affix = "of Brimming", "Added Small Passive Skills also grant: 2% increased Flask Charges gained", statOrder = { 7389 }, level = 68, group = "AfflictionJewelSmallPassivesGrantFlaskChargesGained", weightKey = { "affliction_life_and_mana_recovery_from_flasks", "affliction_flask_duration", "default", }, weightVal = { 350, 350, 0 }, modTags = { "flask" }, }, + ["AfflictionJewelSmallPassivesGrantFlaskChargesGained3"] = { type = "Suffix", affix = "of Overflowing", "Added Small Passive Skills also grant: 3% increased Flask Charges gained", statOrder = { 7389 }, level = 84, group = "AfflictionJewelSmallPassivesGrantFlaskChargesGained", weightKey = { "affliction_life_and_mana_recovery_from_flasks", "affliction_flask_duration", "default", }, weightVal = { 250, 250, 0 }, modTags = { "flask" }, }, + ["AfflictionJewelSmallPassivesGrantFireSkillAttackAndCastSpeed"] = { type = "Suffix", affix = "of Kindling", "Added Small Passive Skills also grant: 1% increased Attack and Cast Speed with Fire Skills", statOrder = { 7378 }, level = 1, group = "AfflictionJewelSmallPassivesGrantFireSkillAttackAndCastSpeed", weightKey = { "affliction_fire_damage", "default", }, weightVal = { 350, 0 }, modTags = { "elemental", "fire", "attack", "caster", "speed" }, }, + ["AfflictionJewelSmallPassivesGrantFireSkillAttackAndCastSpeed2"] = { type = "Suffix", affix = "of Smoke", "Added Small Passive Skills also grant: 2% increased Attack and Cast Speed with Fire Skills", statOrder = { 7378 }, level = 68, group = "AfflictionJewelSmallPassivesGrantFireSkillAttackAndCastSpeed", weightKey = { "affliction_fire_damage", "default", }, weightVal = { 350, 0 }, modTags = { "elemental", "fire", "attack", "caster", "speed" }, }, + ["AfflictionJewelSmallPassivesGrantFireSkillAttackAndCastSpeed3_"] = { type = "Suffix", affix = "of Flashfires", "Added Small Passive Skills also grant: 3% increased Attack and Cast Speed with Fire Skills", statOrder = { 7378 }, level = 84, group = "AfflictionJewelSmallPassivesGrantFireSkillAttackAndCastSpeed", weightKey = { "affliction_fire_damage", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "fire", "attack", "caster", "speed" }, }, + ["AfflictionJewelSmallPassivesGrantColdSkillAttackAndCastSpeed"] = { type = "Suffix", affix = "of Cooling", "Added Small Passive Skills also grant: 1% increased Attack and Cast Speed with Cold Skills", statOrder = { 7376 }, level = 1, group = "AfflictionJewelSmallPassivesGrantColdSkillAttackAndCastSpeed", weightKey = { "affliction_cold_damage", "default", }, weightVal = { 350, 0 }, modTags = { "elemental", "cold", "attack", "caster", "speed" }, }, + ["AfflictionJewelSmallPassivesGrantColdSkillAttackAndCastSpeed2_"] = { type = "Suffix", affix = "of Frigidity", "Added Small Passive Skills also grant: 2% increased Attack and Cast Speed with Cold Skills", statOrder = { 7376 }, level = 68, group = "AfflictionJewelSmallPassivesGrantColdSkillAttackAndCastSpeed", weightKey = { "affliction_cold_damage", "default", }, weightVal = { 350, 0 }, modTags = { "elemental", "cold", "attack", "caster", "speed" }, }, + ["AfflictionJewelSmallPassivesGrantColdSkillAttackAndCastSpeed3"] = { type = "Suffix", affix = "of the Avalanche", "Added Small Passive Skills also grant: 3% increased Attack and Cast Speed with Cold Skills", statOrder = { 7376 }, level = 84, group = "AfflictionJewelSmallPassivesGrantColdSkillAttackAndCastSpeed", weightKey = { "affliction_cold_damage", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "cold", "attack", "caster", "speed" }, }, + ["AfflictionJewelSmallPassivesGrantLightningSkillAttackAndCastSpeed"] = { type = "Suffix", affix = "of Gathering Clouds", "Added Small Passive Skills also grant: 1% increased Attack and Cast Speed with Lightning Skills", statOrder = { 7379 }, level = 1, group = "AfflictionJewelSmallPassivesGrantLightningSkillAttackAndCastSpeed", weightKey = { "affliction_lightning_damage", "default", }, weightVal = { 350, 0 }, modTags = { "elemental", "lightning", "attack", "caster", "speed" }, }, + ["AfflictionJewelSmallPassivesGrantLightningSkillAttackAndCastSpeed2"] = { type = "Suffix", affix = "of Sudden Storms", "Added Small Passive Skills also grant: 2% increased Attack and Cast Speed with Lightning Skills", statOrder = { 7379 }, level = 68, group = "AfflictionJewelSmallPassivesGrantLightningSkillAttackAndCastSpeed", weightKey = { "affliction_lightning_damage", "default", }, weightVal = { 350, 0 }, modTags = { "elemental", "lightning", "attack", "caster", "speed" }, }, + ["AfflictionJewelSmallPassivesGrantLightningSkillAttackAndCastSpeed3"] = { type = "Suffix", affix = "of the Strike", "Added Small Passive Skills also grant: 3% increased Attack and Cast Speed with Lightning Skills", statOrder = { 7379 }, level = 84, group = "AfflictionJewelSmallPassivesGrantLightningSkillAttackAndCastSpeed", weightKey = { "affliction_lightning_damage", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "lightning", "attack", "caster", "speed" }, }, + ["AfflictionJewelSmallPassivesGrantChaosSkillAttackAndCastSpeed"] = { type = "Suffix", affix = "of Dusk", "Added Small Passive Skills also grant: 1% increased Attack and Cast Speed with Chaos Skills", statOrder = { 7375 }, level = 1, group = "AfflictionJewelSmallPassivesGrantChaosSkillAttackAndCastSpeed", weightKey = { "affliction_chaos_damage", "default", }, weightVal = { 350, 0 }, modTags = { "chaos", "attack", "caster", "speed" }, }, + ["AfflictionJewelSmallPassivesGrantChaosSkillAttackAndCastSpeed2____"] = { type = "Suffix", affix = "of Midnight", "Added Small Passive Skills also grant: 2% increased Attack and Cast Speed with Chaos Skills", statOrder = { 7375 }, level = 68, group = "AfflictionJewelSmallPassivesGrantChaosSkillAttackAndCastSpeed", weightKey = { "affliction_chaos_damage", "default", }, weightVal = { 350, 0 }, modTags = { "chaos", "attack", "caster", "speed" }, }, + ["AfflictionJewelSmallPassivesGrantChaosSkillAttackAndCastSpeed3"] = { type = "Suffix", affix = "of the Eclipse", "Added Small Passive Skills also grant: 3% increased Attack and Cast Speed with Chaos Skills", statOrder = { 7375 }, level = 84, group = "AfflictionJewelSmallPassivesGrantChaosSkillAttackAndCastSpeed", weightKey = { "affliction_chaos_damage", "default", }, weightVal = { 250, 0 }, modTags = { "chaos", "attack", "caster", "speed" }, }, + ["AfflictionJewelSmallPassivesGrantPhysicalSkillAttackAndCastSpeed"] = { type = "Suffix", affix = "of Rumbling", "Added Small Passive Skills also grant: 1% increased Attack and Cast Speed with Physical Skills", statOrder = { 7380 }, level = 1, group = "AfflictionJewelSmallPassivesGrantPhysicalSkillAttackAndCastSpeed", weightKey = { "affliction_physical_damage", "default", }, weightVal = { 350, 0 }, modTags = { "physical", "attack", "caster", "speed" }, }, + ["AfflictionJewelSmallPassivesGrantPhysicalSkillAttackAndCastSpeed2"] = { type = "Suffix", affix = "of Tremors", "Added Small Passive Skills also grant: 2% increased Attack and Cast Speed with Physical Skills", statOrder = { 7380 }, level = 68, group = "AfflictionJewelSmallPassivesGrantPhysicalSkillAttackAndCastSpeed", weightKey = { "affliction_physical_damage", "default", }, weightVal = { 350, 0 }, modTags = { "physical", "attack", "caster", "speed" }, }, + ["AfflictionJewelSmallPassivesGrantPhysicalSkillAttackAndCastSpeed3_"] = { type = "Suffix", affix = "of the Earthquake", "Added Small Passive Skills also grant: 3% increased Attack and Cast Speed with Physical Skills", statOrder = { 7380 }, level = 84, group = "AfflictionJewelSmallPassivesGrantPhysicalSkillAttackAndCastSpeed", weightKey = { "affliction_physical_damage", "default", }, weightVal = { 250, 0 }, modTags = { "physical", "attack", "caster", "speed" }, }, + ["AfflictionJewelSmallPassivesGrantElementalSkillAttackAndCastSpeed"] = { type = "Suffix", affix = "of Coaxing", "Added Small Passive Skills also grant: 1% increased Attack and Cast Speed with Elemental Skills", statOrder = { 7377 }, level = 1, group = "AfflictionJewelSmallPassivesGrantElementalSkillAttackAndCastSpeed", weightKey = { "affliction_elemental_damage", "default", }, weightVal = { 350, 0 }, modTags = { "elemental", "attack", "caster", "speed" }, }, + ["AfflictionJewelSmallPassivesGrantElementalSkillAttackAndCastSpeed2_"] = { type = "Suffix", affix = "of Evoking", "Added Small Passive Skills also grant: 2% increased Attack and Cast Speed with Elemental Skills", statOrder = { 7377 }, level = 68, group = "AfflictionJewelSmallPassivesGrantElementalSkillAttackAndCastSpeed", weightKey = { "affliction_elemental_damage", "default", }, weightVal = { 350, 0 }, modTags = { "elemental", "attack", "caster", "speed" }, }, + ["AfflictionJewelSmallPassivesGrantElementalSkillAttackAndCastSpeed3_"] = { type = "Suffix", affix = "of Manifesting", "Added Small Passive Skills also grant: 3% increased Attack and Cast Speed with Elemental Skills", statOrder = { 7377 }, level = 84, group = "AfflictionJewelSmallPassivesGrantElementalSkillAttackAndCastSpeed", weightKey = { "affliction_elemental_damage", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "attack", "caster", "speed" }, }, + ["AfflictionJewelSmallPassivesGrantMinionAttackAndCastSpeed"] = { type = "Suffix", affix = "of Pillaging", "Added Small Passive Skills also grant: Minions have 1% increased Attack and Cast Speed", statOrder = { 7404 }, level = 1, group = "AfflictionJewelSmallPassivesGrantMinionAttackAndCastSpeed", weightKey = { "affliction_minion_damage", "default", }, weightVal = { 350, 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, + ["AfflictionJewelSmallPassivesGrantMinionAttackAndCastSpeed2"] = { type = "Suffix", affix = "of Ravaging", "Added Small Passive Skills also grant: Minions have 2% increased Attack and Cast Speed", statOrder = { 7404 }, level = 68, group = "AfflictionJewelSmallPassivesGrantMinionAttackAndCastSpeed", weightKey = { "affliction_minion_damage", "default", }, weightVal = { 350, 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, + ["AfflictionJewelSmallPassivesGrantMinionAttackAndCastSpeed3"] = { type = "Suffix", affix = "of Razing", "Added Small Passive Skills also grant: Minions have 3% increased Attack and Cast Speed", statOrder = { 7404 }, level = 84, group = "AfflictionJewelSmallPassivesGrantMinionAttackAndCastSpeed", weightKey = { "affliction_minion_damage", "default", }, weightVal = { 250, 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, + ["AfflictionJewelSmallPassivesGrantHeraldAttackAndCastSpeed"] = { type = "Suffix", affix = "of the Courier", "Added Small Passive Skills also grant: 1% increased Attack and Cast Speed while affected by a Herald", statOrder = { 7373 }, level = 1, group = "AfflictionJewelSmallPassivesGrantHeraldAttackAndCastSpeed", weightKey = { "affliction_damage_while_you_have_a_herald", "default", }, weightVal = { 350, 0 }, modTags = { "attack", "caster", "speed" }, }, + ["AfflictionJewelSmallPassivesGrantHeraldAttackAndCastSpeed2_"] = { type = "Suffix", affix = "of the Messenger", "Added Small Passive Skills also grant: 2% increased Attack and Cast Speed while affected by a Herald", statOrder = { 7373 }, level = 68, group = "AfflictionJewelSmallPassivesGrantHeraldAttackAndCastSpeed", weightKey = { "affliction_damage_while_you_have_a_herald", "default", }, weightVal = { 350, 0 }, modTags = { "attack", "caster", "speed" }, }, + ["AfflictionJewelSmallPassivesGrantHeraldAttackAndCastSpeed3"] = { type = "Suffix", affix = "of the Herald", "Added Small Passive Skills also grant: 3% increased Attack and Cast Speed while affected by a Herald", statOrder = { 7373 }, level = 84, group = "AfflictionJewelSmallPassivesGrantHeraldAttackAndCastSpeed", weightKey = { "affliction_damage_while_you_have_a_herald", "default", }, weightVal = { 250, 0 }, modTags = { "attack", "caster", "speed" }, }, + ["AfflictionJewelSmallPassivesGrantHeraldMinionAttackAndCastSpeed"] = { type = "Suffix", affix = "of the Message", "Added Small Passive Skills also grant: Minions have 1% increased Attack and Cast Speed while you are affected by a Herald", statOrder = { 7405 }, level = 1, group = "AfflictionJewelSmallPassivesGrantHeraldMinionAttackAndCastSpeed", weightKey = { "affliction_minion_damage_while_you_have_a_herald", "default", }, weightVal = { 350, 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, + ["AfflictionJewelSmallPassivesGrantHeraldMinionAttackAndCastSpeed2_"] = { type = "Suffix", affix = "of the Teachings", "Added Small Passive Skills also grant: Minions have 2% increased Attack and Cast Speed while you are affected by a Herald", statOrder = { 7405 }, level = 68, group = "AfflictionJewelSmallPassivesGrantHeraldMinionAttackAndCastSpeed", weightKey = { "affliction_minion_damage_while_you_have_a_herald", "default", }, weightVal = { 350, 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, + ["AfflictionJewelSmallPassivesGrantHeraldMinionAttackAndCastSpeed3"] = { type = "Suffix", affix = "of the Canon", "Added Small Passive Skills also grant: Minions have 3% increased Attack and Cast Speed while you are affected by a Herald", statOrder = { 7405 }, level = 84, group = "AfflictionJewelSmallPassivesGrantHeraldMinionAttackAndCastSpeed", weightKey = { "affliction_minion_damage_while_you_have_a_herald", "default", }, weightVal = { 250, 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, } \ No newline at end of file diff --git a/src/Data/ModMaster.lua b/src/Data/ModMaster.lua index 143b5728c9..80164d9d2e 100644 --- a/src/Data/ModMaster.lua +++ b/src/Data/ModMaster.lua @@ -2,729 +2,729 @@ -- Item data (c) Grinding Gear Games return { - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "life" }, "+(15-25) to maximum Life", statOrder = { 1451 }, level = 15, group = "IncreasedLife", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "fire", "resistance" }, "+(16-20)% to Fire Resistance", statOrder = { 1507 }, level = 15, group = "FireResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "cold", "resistance" }, "+(16-20)% to Cold Resistance", statOrder = { 1513 }, level = 15, group = "ColdResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "lightning", "resistance" }, "+(16-20)% to Lightning Resistance", statOrder = { 1518 }, level = 15, group = "LightningResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(15-20) to Strength", statOrder = { 1062 }, level = 15, group = "Strength", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(15-20) to Dexterity", statOrder = { 1063 }, level = 15, group = "Dexterity", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(15-20) to Intelligence", statOrder = { 1064 }, level = 15, group = "Intelligence", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "fire", "resistance" }, "+(21-28)% to Fire Resistance", statOrder = { 1507 }, level = 30, group = "FireResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "fire", "resistance" }, "+(29-35)% to Fire Resistance", statOrder = { 1507 }, level = 50, group = "FireResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "cold", "resistance" }, "+(21-28)% to Cold Resistance", statOrder = { 1513 }, level = 30, group = "ColdResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "cold", "resistance" }, "+(29-35)% to Cold Resistance", statOrder = { 1513 }, level = 50, group = "ColdResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "lightning", "resistance" }, "+(21-28)% to Lightning Resistance", statOrder = { 1518 }, level = 30, group = "LightningResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "lightning", "resistance" }, "+(29-35)% to Lightning Resistance", statOrder = { 1518 }, level = 50, group = "LightningResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "fire", "cold", "resistance" }, "+(10-12)% to Fire and Cold Resistances", statOrder = { 2673 }, level = 30, group = "FireAndColdResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "fire", "cold", "resistance" }, "+(13-16)% to Fire and Cold Resistances", statOrder = { 2673 }, level = 50, group = "FireAndColdResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "fire", "cold", "resistance" }, "+(17-20)% to Fire and Cold Resistances", statOrder = { 2673 }, level = 75, group = "FireAndColdResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "cold", "lightning", "resistance" }, "+(10-12)% to Cold and Lightning Resistances", statOrder = { 2675 }, level = 30, group = "ColdAndLightningResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "cold", "lightning", "resistance" }, "+(13-16)% to Cold and Lightning Resistances", statOrder = { 2675 }, level = 50, group = "ColdAndLightningResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "cold", "lightning", "resistance" }, "+(17-20)% to Cold and Lightning Resistances", statOrder = { 2675 }, level = 75, group = "ColdAndLightningResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "fire", "lightning", "resistance" }, "+(10-12)% to Fire and Lightning Resistances", statOrder = { 2674 }, level = 30, group = "FireAndLightningResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "fire", "lightning", "resistance" }, "+(13-16)% to Fire and Lightning Resistances", statOrder = { 2674 }, level = 50, group = "FireAndLightningResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "fire", "lightning", "resistance" }, "+(17-20)% to Fire and Lightning Resistances", statOrder = { 2674 }, level = 75, group = "FireAndLightningResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "resistance" }, "+(5-8)% to all Elemental Resistances", statOrder = { 1501 }, level = 30, group = "AllResistances", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "resistance" }, "+(9-12)% to all Elemental Resistances", statOrder = { 1501 }, level = 60, group = "AllResistances", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "resistance", "minion" }, "+(4-6)% to all Elemental Resistances", "Minions have +(5-8)% to all Elemental Resistances", statOrder = { 1501, 2786 }, level = 30, group = "AllResistancesMinionResistances", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "resistance", "minion" }, "+(7-9)% to all Elemental Resistances", "Minions have +(9-12)% to all Elemental Resistances", statOrder = { 1501, 2786 }, level = 60, group = "AllResistancesMinionResistances", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(21-25) to Strength", statOrder = { 1062 }, level = 20, group = "Strength", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(26-30) to Strength", statOrder = { 1062 }, level = 40, group = "Strength", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(21-25) to Dexterity", statOrder = { 1063 }, level = 20, group = "Dexterity", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(26-30) to Dexterity", statOrder = { 1063 }, level = 40, group = "Dexterity", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(21-25) to Intelligence", statOrder = { 1064 }, level = 20, group = "Intelligence", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(26-30) to Intelligence", statOrder = { 1064 }, level = 40, group = "Intelligence", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(6-9) to all Attributes", statOrder = { 1061 }, level = 30, group = "AllAttributes", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(10-13) to all Attributes", statOrder = { 1061 }, level = 50, group = "AllAttributes", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "speed" }, "(10-14)% increased Movement Speed", statOrder = { 1679 }, level = 1, group = "MovementVelocity", types = { ["Boots"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "speed" }, "(15-19)% increased Movement Speed", statOrder = { 1679 }, level = 40, group = "MovementVelocity", types = { ["Boots"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "speed" }, "(20-24)% increased Movement Speed", statOrder = { 1679 }, level = 68, group = "MovementVelocity", types = { ["Boots"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "life" }, "+(26-40) to maximum Life", statOrder = { 1451 }, level = 40, group = "IncreasedLife", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "life" }, "+(41-55) to maximum Life", statOrder = { 1451 }, level = 68, group = "IncreasedLife", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "life" }, "+(56-70) to maximum Life", statOrder = { 1451 }, level = 75, group = "IncreasedLife", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "life" }, "+(71-85) to maximum Life", statOrder = { 1451 }, level = 80, group = "IncreasedLife", types = { ["Body Armour"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "resource", "life", "physical", "attack" }, "(0.3-0.5)% of Physical Attack Damage Leeched as Life", statOrder = { 1530 }, level = 30, group = "LifeLeechPermyriad", types = { ["Ring"] = true, ["Amulet"] = true, ["Gloves"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "resource", "life", "physical", "attack" }, "(0.6-0.8)% of Physical Attack Damage Leeched as Life", statOrder = { 1530 }, level = 50, group = "LifeLeechPermyriad", types = { ["Amulet"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "resource", "life", "physical", "attack" }, "(2-2.4)% of Physical Attack Damage Leeched as Life", statOrder = { 1532 }, level = 30, group = "LifeLeechLocalPermyriad", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "resource", "life", "physical", "attack" }, "(2.6-3)% of Physical Attack Damage Leeched as Life", statOrder = { 1532 }, level = 50, group = "LifeLeechLocalPermyriad", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "resource", "mana", "physical", "attack" }, "(2-2.4)% of Physical Attack Damage Leeched as Mana", statOrder = { 1582 }, level = 50, group = "ManaLeechLocalPermyriad", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "mana" }, "+(55-64) to maximum Mana", statOrder = { 1461 }, level = 20, group = "IncreasedMana", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "mana" }, "+(65-74) to maximum Mana", statOrder = { 1461 }, level = 40, group = "IncreasedMana", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "mana" }, "+(75-84) to maximum Mana", statOrder = { 1461 }, level = 60, group = "IncreasedMana", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "mana" }, "+(85-94) to maximum Mana", statOrder = { 1461 }, level = 75, group = "IncreasedMana", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "mana" }, "+(35-44) to maximum Mana", statOrder = { 1461 }, level = 20, group = "IncreasedMana", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "mana" }, "+(45-54) to maximum Mana", statOrder = { 1461 }, level = 40, group = "IncreasedMana", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "mana" }, "+(55-64) to maximum Mana", statOrder = { 1461 }, level = 60, group = "IncreasedMana", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "mana" }, "+(65-74) to maximum Mana", statOrder = { 1461 }, level = 75, group = "IncreasedMana", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "mana" }, "+(25-34) to maximum Mana", statOrder = { 1461 }, level = 20, group = "IncreasedMana", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, ["Belt"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "mana" }, "+(35-44) to maximum Mana", statOrder = { 1461 }, level = 40, group = "IncreasedMana", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, ["Belt"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "mana" }, "+(45-54) to maximum Mana", statOrder = { 1461 }, level = 60, group = "IncreasedMana", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, ["Belt"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "resource", "mana" }, "(20-30)% increased Mana Regeneration Rate", statOrder = { 1466 }, level = 30, group = "ManaRegeneration", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Ring"] = true, ["Amulet"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "resource", "mana" }, "(31-40)% increased Mana Regeneration Rate", statOrder = { 1466 }, level = 50, group = "ManaRegeneration", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Ring"] = true, ["Amulet"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "resource", "mana" }, "(30-45)% increased Mana Regeneration Rate", statOrder = { 1466 }, level = 30, group = "ManaRegeneration", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "resource", "mana" }, "(46-60)% increased Mana Regeneration Rate", statOrder = { 1466 }, level = 50, group = "ManaRegeneration", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "damage", "physical", "attack" }, "(40-59)% increased Physical Damage", statOrder = { 1117 }, level = 20, group = "LocalPhysicalDamagePercent", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "damage", "physical", "attack" }, "(60-79)% increased Physical Damage", statOrder = { 1117 }, level = 40, group = "LocalPhysicalDamagePercent", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "damage", "physical", "attack" }, "(80-99)% increased Physical Damage", statOrder = { 1117 }, level = 60, group = "LocalPhysicalDamagePercent", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "damage", "physical", "attack" }, "(100-129)% increased Physical Damage", statOrder = { 1117 }, level = 80, group = "LocalPhysicalDamagePercent", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "damage", "caster" }, "(37-51)% increased Spell Damage", statOrder = { 1108 }, level = 20, group = "TwoHandWeaponSpellDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "damage", "caster" }, "(52-66)% increased Spell Damage", statOrder = { 1108 }, level = 40, group = "TwoHandWeaponSpellDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "damage", "caster" }, "(67-81)% increased Spell Damage", statOrder = { 1108 }, level = 60, group = "TwoHandWeaponSpellDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "damage", "caster" }, "(82-99)% increased Spell Damage", statOrder = { 1108 }, level = 80, group = "TwoHandWeaponSpellDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "damage", "caster" }, "(25-34)% increased Spell Damage", statOrder = { 1108 }, level = 20, group = "WeaponSpellDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "damage", "caster" }, "(35-44)% increased Spell Damage", statOrder = { 1108 }, level = 40, group = "WeaponSpellDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "damage", "caster" }, "(45-54)% increased Spell Damage", statOrder = { 1108 }, level = 60, group = "WeaponSpellDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "damage", "caster" }, "(55-66)% increased Spell Damage", statOrder = { 1108 }, level = 80, group = "WeaponSpellDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "damage" }, "(11-20)% increased Damage over Time", statOrder = { 1095 }, level = 30, group = "DegenerationDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "damage" }, "(21-30)% increased Damage over Time", statOrder = { 1095 }, level = 50, group = "DegenerationDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "attack" }, "(15-23)% increased Elemental Damage with Attack Skills", statOrder = { 6010 }, level = 30, group = "IncreasedWeaponElementalDamagePercent", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "attack" }, "(24-32)% increased Elemental Damage with Attack Skills", statOrder = { 6010 }, level = 50, group = "IncreasedWeaponElementalDamagePercent", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Quiver"] = true, ["Belt"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attack", "speed" }, "(8-10)% increased Attack Speed", statOrder = { 1297 }, level = 30, group = "LocalIncreasedAttackSpeed", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attack", "speed" }, "(11-15)% increased Attack Speed", statOrder = { 1297 }, level = 50, group = "LocalIncreasedAttackSpeed", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attack", "speed" }, "(16-20)% increased Attack Speed", statOrder = { 1297 }, level = 75, group = "LocalIncreasedAttackSpeed", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attack", "speed" }, "(11-13)% increased Attack Speed", statOrder = { 1297 }, level = 75, group = "LocalIncreasedAttackSpeed", types = { ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attack", "speed" }, "(7-12)% increased Attack Speed", statOrder = { 1294 }, level = 30, group = "IncreasedAttackSpeed", types = { ["Gloves"] = true, ["Quiver"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "caster", "speed" }, "(15-20)% increased Cast Speed", statOrder = { 1330 }, level = 30, group = "IncreasedCastSpeed", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "caster", "speed" }, "(21-26)% increased Cast Speed", statOrder = { 1330 }, level = 50, group = "IncreasedCastSpeed", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "caster", "speed" }, "(27-32)% increased Cast Speed", statOrder = { 1330 }, level = 75, group = "IncreasedCastSpeed", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "caster", "speed" }, "(10-13)% increased Cast Speed", statOrder = { 1330 }, level = 30, group = "IncreasedCastSpeed", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "caster", "speed" }, "(14-17)% increased Cast Speed", statOrder = { 1330 }, level = 50, group = "IncreasedCastSpeed", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "caster", "speed" }, "(18-21)% increased Cast Speed", statOrder = { 1330 }, level = 75, group = "IncreasedCastSpeed", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire" }, "(37-51)% increased Fire Damage", statOrder = { 1241 }, level = 20, group = "TwoHandFireDamageWeaponPrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire" }, "(52-66)% increased Fire Damage", statOrder = { 1241 }, level = 40, group = "TwoHandFireDamageWeaponPrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire" }, "(67-81)% increased Fire Damage", statOrder = { 1241 }, level = 68, group = "TwoHandFireDamageWeaponPrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire" }, "(25-34)% increased Fire Damage", statOrder = { 1241 }, level = 20, group = "FireDamageWeaponPrefix", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire" }, "(35-44)% increased Fire Damage", statOrder = { 1241 }, level = 40, group = "FireDamageWeaponPrefix", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire" }, "(45-54)% increased Fire Damage", statOrder = { 1241 }, level = 68, group = "FireDamageWeaponPrefix", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental_damage", "damage", "elemental", "fire" }, "(9-12)% increased Fire Damage", statOrder = { 1241 }, level = 20, group = "FireDamagePercentage", types = { ["Ring"] = true, ["Amulet"] = true, ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental_damage", "damage", "elemental", "fire" }, "(13-16)% increased Fire Damage", statOrder = { 1241 }, level = 40, group = "FireDamagePercentage", types = { ["Ring"] = true, ["Amulet"] = true, ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold" }, "(37-51)% increased Cold Damage", statOrder = { 1250 }, level = 20, group = "TwoHandColdDamageWeaponPrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold" }, "(52-66)% increased Cold Damage", statOrder = { 1250 }, level = 40, group = "TwoHandColdDamageWeaponPrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold" }, "(67-81)% increased Cold Damage", statOrder = { 1250 }, level = 68, group = "TwoHandColdDamageWeaponPrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold" }, "(25-34)% increased Cold Damage", statOrder = { 1250 }, level = 20, group = "ColdDamageWeaponPrefix", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold" }, "(35-44)% increased Cold Damage", statOrder = { 1250 }, level = 40, group = "ColdDamageWeaponPrefix", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold" }, "(45-54)% increased Cold Damage", statOrder = { 1250 }, level = 68, group = "ColdDamageWeaponPrefix", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental_damage", "damage", "elemental", "cold" }, "(9-12)% increased Cold Damage", statOrder = { 1250 }, level = 20, group = "ColdDamagePercentage", types = { ["Ring"] = true, ["Amulet"] = true, ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental_damage", "damage", "elemental", "cold" }, "(13-16)% increased Cold Damage", statOrder = { 1250 }, level = 40, group = "ColdDamagePercentage", types = { ["Ring"] = true, ["Amulet"] = true, ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning" }, "(37-51)% increased Lightning Damage", statOrder = { 1261 }, level = 20, group = "TwoHandLightningDamageWeaponPrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning" }, "(52-66)% increased Lightning Damage", statOrder = { 1261 }, level = 40, group = "TwoHandLightningDamageWeaponPrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning" }, "(67-81)% increased Lightning Damage", statOrder = { 1261 }, level = 68, group = "TwoHandLightningDamageWeaponPrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning" }, "(25-34)% increased Lightning Damage", statOrder = { 1261 }, level = 20, group = "LightningDamageWeaponPrefix", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning" }, "(35-44)% increased Lightning Damage", statOrder = { 1261 }, level = 40, group = "LightningDamageWeaponPrefix", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning" }, "(45-54)% increased Lightning Damage", statOrder = { 1261 }, level = 68, group = "LightningDamageWeaponPrefix", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental_damage", "damage", "elemental", "lightning" }, "(9-12)% increased Lightning Damage", statOrder = { 1261 }, level = 20, group = "LightningDamagePercentage", types = { ["Ring"] = true, ["Amulet"] = true, ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental_damage", "damage", "elemental", "lightning" }, "(13-16)% increased Lightning Damage", statOrder = { 1261 }, level = 40, group = "LightningDamagePercentage", types = { ["Ring"] = true, ["Amulet"] = true, ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "chaos_damage", "damage", "chaos" }, "(37-51)% increased Chaos Damage", statOrder = { 1269 }, level = 20, group = "TwoHandChaosDamageWeaponPrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "chaos_damage", "damage", "chaos" }, "(52-66)% increased Chaos Damage", statOrder = { 1269 }, level = 40, group = "TwoHandChaosDamageWeaponPrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "chaos_damage", "damage", "chaos" }, "(67-81)% increased Chaos Damage", statOrder = { 1269 }, level = 68, group = "TwoHandChaosDamageWeaponPrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "chaos_damage", "damage", "chaos" }, "(25-34)% increased Chaos Damage", statOrder = { 1269 }, level = 30, group = "ChaosDamageWeaponPrefix", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "chaos_damage", "damage", "chaos" }, "(35-44)% increased Chaos Damage", statOrder = { 1269 }, level = 50, group = "ChaosDamageWeaponPrefix", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "chaos_damage", "damage", "chaos" }, "(45-54)% increased Chaos Damage", statOrder = { 1269 }, level = 68, group = "ChaosDamageWeaponPrefix", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "chaos_damage", "damage", "chaos" }, "(9-12)% increased Chaos Damage", statOrder = { 1269 }, level = 30, group = "IncreasedChaosDamage", types = { ["Ring"] = true, ["Amulet"] = true, ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "chaos_damage", "damage", "chaos" }, "(13-16)% increased Chaos Damage", statOrder = { 1269 }, level = 50, group = "IncreasedChaosDamage", types = { ["Ring"] = true, ["Amulet"] = true, ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attack" }, "+(91-120) to Accuracy Rating", statOrder = { 1901 }, level = 20, group = "LocalAccuracyRating", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attack" }, "+(121-200) to Accuracy Rating", statOrder = { 1901 }, level = 40, group = "LocalAccuracyRating", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attack" }, "+(201-300) to Accuracy Rating", statOrder = { 1901 }, level = 68, group = "LocalAccuracyRating", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attack" }, "+(91-120) to Accuracy Rating", statOrder = { 1317 }, level = 20, group = "IncreasedAccuracy", types = { ["Gloves"] = true, ["Helmet"] = true, ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attack" }, "+(121-150) to Accuracy Rating", statOrder = { 1317 }, level = 40, group = "IncreasedAccuracy", types = { ["Gloves"] = true, ["Helmet"] = true, ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attack" }, "+(151-220) to Accuracy Rating", statOrder = { 1317 }, level = 68, group = "IncreasedAccuracy", types = { ["Gloves"] = true, ["Helmet"] = true, ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "physical_damage", "damage", "physical" }, "(9-12)% increased Global Physical Damage", statOrder = { 1116 }, level = 30, group = "PhysicalDamagePercent", types = { ["Shield"] = true, ["Amulet"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "physical_damage", "damage", "physical" }, "(13-16)% increased Global Physical Damage", statOrder = { 1116 }, level = 50, group = "PhysicalDamagePercent", types = { ["Shield"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "defences", "armour" }, "(26-35)% increased Armour", statOrder = { 1425 }, level = 30, group = "LocalPhysicalDamageReductionRatingPercent", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "defences", "armour" }, "(41-50)% increased Armour", statOrder = { 1425 }, level = 50, group = "LocalPhysicalDamageReductionRatingPercent", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "defences", "armour" }, "(56-74)% increased Armour", statOrder = { 1425 }, level = 75, group = "LocalPhysicalDamageReductionRatingPercent", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "defences", "armour" }, "+(50-75) to Armour", statOrder = { 1423 }, level = 30, group = "LocalPhysicalDamageReductionRating", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "defences", "armour" }, "+(100-150) to Armour", statOrder = { 1423 }, level = 50, group = "LocalPhysicalDamageReductionRating", types = { ["Body Armour"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "defences", "armour" }, "+(250-320) to Armour", statOrder = { 1423 }, level = 68, group = "LocalPhysicalDamageReductionRating", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "defences", "evasion" }, "(26-35)% increased Evasion Rating", statOrder = { 1433 }, level = 30, group = "LocalEvasionRatingIncreasePercent", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "defences", "evasion" }, "(41-50)% increased Evasion Rating", statOrder = { 1433 }, level = 50, group = "LocalEvasionRatingIncreasePercent", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "defences", "evasion" }, "(56-74)% increased Evasion Rating", statOrder = { 1433 }, level = 75, group = "LocalEvasionRatingIncreasePercent", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "defences", "evasion" }, "+(50-75) to Evasion Rating", statOrder = { 1431 }, level = 30, group = "LocalEvasionRating", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "defences", "evasion" }, "+(100-150) to Evasion Rating", statOrder = { 1431 }, level = 50, group = "LocalEvasionRating", types = { ["Body Armour"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "defences", "evasion" }, "+(250-320) to Evasion Rating", statOrder = { 1431 }, level = 68, group = "LocalEvasionRating", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "defences", "energy_shield" }, "(26-35)% increased Energy Shield", statOrder = { 1442 }, level = 30, group = "LocalEnergyShieldPercent", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "defences", "energy_shield" }, "(41-50)% increased Energy Shield", statOrder = { 1442 }, level = 50, group = "LocalEnergyShieldPercent", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "defences", "energy_shield" }, "(56-74)% increased Energy Shield", statOrder = { 1442 }, level = 75, group = "LocalEnergyShieldPercent", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "defences", "energy_shield" }, "+(17-22) to maximum Energy Shield", statOrder = { 1441 }, level = 30, group = "LocalEnergyShield", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "defences", "energy_shield" }, "+(35-45) to maximum Energy Shield", statOrder = { 1441 }, level = 50, group = "LocalEnergyShield", types = { ["Body Armour"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "defences", "energy_shield" }, "+(56-69) to maximum Energy Shield", statOrder = { 1441 }, level = 68, group = "LocalEnergyShield", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "defences", "energy_shield" }, "(10-12)% increased maximum Energy Shield", statOrder = { 1443 }, level = 60, group = "GlobalEnergyShieldPercent", types = { ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "defences", "energy_shield" }, "(13-15)% increased maximum Energy Shield", statOrder = { 1443 }, level = 75, group = "GlobalEnergyShieldPercent", types = { ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "defences", "energy_shield" }, "+(21-25) to maximum Energy Shield", statOrder = { 1440 }, level = 50, group = "EnergyShield", types = { ["Amulet"] = true, ["Ring"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "defences", "energy_shield" }, "+(26-30) to maximum Energy Shield", statOrder = { 1440 }, level = 68, group = "EnergyShield", types = { ["Amulet"] = true, ["Ring"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "defences", "armour", "evasion" }, "(26-35)% increased Armour and Evasion", statOrder = { 1436 }, level = 30, group = "LocalArmourAndEvasion", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "defences", "armour", "evasion" }, "(41-50)% increased Armour and Evasion", statOrder = { 1436 }, level = 50, group = "LocalArmourAndEvasion", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "defences", "armour", "evasion" }, "(56-74)% increased Armour and Evasion", statOrder = { 1436 }, level = 75, group = "LocalArmourAndEvasion", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "defences", "armour", "energy_shield" }, "(26-35)% increased Armour and Energy Shield", statOrder = { 1435 }, level = 30, group = "LocalArmourAndEnergyShield", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "defences", "armour", "energy_shield" }, "(41-50)% increased Armour and Energy Shield", statOrder = { 1435 }, level = 50, group = "LocalArmourAndEnergyShield", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "defences", "armour", "energy_shield" }, "(56-74)% increased Armour and Energy Shield", statOrder = { 1435 }, level = 75, group = "LocalArmourAndEnergyShield", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "defences", "evasion", "energy_shield" }, "(26-35)% increased Evasion and Energy Shield", statOrder = { 1437 }, level = 30, group = "LocalEvasionAndEnergyShield", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "defences", "evasion", "energy_shield" }, "(41-50)% increased Evasion and Energy Shield", statOrder = { 1437 }, level = 50, group = "LocalEvasionAndEnergyShield", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "defences", "evasion", "energy_shield" }, "(56-74)% increased Evasion and Energy Shield", statOrder = { 1437 }, level = 75, group = "LocalEvasionAndEnergyShield", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, "Adds (19-21) to (32-41) Fire Damage", statOrder = { 1246 }, level = 20, group = "LocalFireDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, "Adds (38-46) to (73-85) Fire Damage", statOrder = { 1246 }, level = 40, group = "LocalFireDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, "Adds (60-72) to (110-128) Fire Damage", statOrder = { 1246 }, level = 68, group = "LocalFireDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, "Adds (11-12) to (19-23) Fire Damage", statOrder = { 1246 }, level = 20, group = "LocalFireDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, "Adds (22-27) to (42-49) Fire Damage", statOrder = { 1246 }, level = 40, group = "LocalFireDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, "Adds (35-41) to (63-73) Fire Damage", statOrder = { 1246 }, level = 68, group = "LocalFireDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, "Adds (8-11) to (16-20) Fire Damage to Attacks", statOrder = { 1244 }, level = 20, group = "FireDamage", types = { ["Ring"] = true, ["Amulet"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, "Adds (12-17) to (26-30) Fire Damage to Attacks", statOrder = { 1244 }, level = 40, group = "FireDamage", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, "Adds (19-21) to (32-41) Cold Damage", statOrder = { 1255 }, level = 20, group = "LocalColdDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, "Adds (38-46) to (73-85) Cold Damage", statOrder = { 1255 }, level = 40, group = "LocalColdDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, "Adds (60-72) to (110-128) Cold Damage", statOrder = { 1255 }, level = 68, group = "LocalColdDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, "Adds (11-12) to (19-23) Cold Damage", statOrder = { 1255 }, level = 20, group = "LocalColdDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, "Adds (22-27) to (42-49) Cold Damage", statOrder = { 1255 }, level = 40, group = "LocalColdDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, "Adds (35-41) to (63-73) Cold Damage", statOrder = { 1255 }, level = 68, group = "LocalColdDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, "Adds (6-8) to (14-18) Cold Damage to Attacks", statOrder = { 1253 }, level = 20, group = "ColdDamage", types = { ["Ring"] = true, ["Amulet"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, "Adds (11-15) to (23-27) Cold Damage to Attacks", statOrder = { 1253 }, level = 40, group = "ColdDamage", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, "Adds (2-5) to (46-64) Lightning Damage", statOrder = { 1266 }, level = 20, group = "LocalLightningDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, "Adds (6-9) to (104-139) Lightning Damage", statOrder = { 1266 }, level = 40, group = "LocalLightningDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, "Adds (10-14) to (162-197) Lightning Damage", statOrder = { 1266 }, level = 68, group = "LocalLightningDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, "Adds (1-3) to (27-37) Lightning Damage", statOrder = { 1266 }, level = 20, group = "LocalLightningDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, "Adds (3-5) to (60-80) Lightning Damage", statOrder = { 1266 }, level = 40, group = "LocalLightningDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, "Adds (6-8) to (100-113) Lightning Damage", statOrder = { 1266 }, level = 68, group = "LocalLightningDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, "Adds (1-4) to (32-36) Lightning Damage to Attacks", statOrder = { 1264 }, level = 20, group = "LightningDamage", types = { ["Ring"] = true, ["Amulet"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, "Adds (1-5) to (41-48) Lightning Damage to Attacks", statOrder = { 1264 }, level = 40, group = "LightningDamage", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "damage", "physical", "attack" }, "Adds (9-12) to (18-21) Physical Damage", statOrder = { 1160 }, level = 20, group = "LocalPhysicalDamageTwoHanded", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "damage", "physical", "attack" }, "Adds (11-15) to (23-27) Physical Damage", statOrder = { 1160 }, level = 40, group = "LocalPhysicalDamageTwoHanded", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "damage", "physical", "attack" }, "Adds (18-24) to (36-42) Physical Damage", statOrder = { 1160 }, level = 68, group = "LocalPhysicalDamageTwoHanded", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "damage", "physical", "attack" }, "Adds (6-8) to (13-15) Physical Damage", statOrder = { 1160 }, level = 20, group = "LocalPhysicalDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "damage", "physical", "attack" }, "Adds (7-11) to (16-19) Physical Damage", statOrder = { 1160 }, level = 40, group = "LocalPhysicalDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "damage", "physical", "attack" }, "Adds (13-17) to (26-30) Physical Damage", statOrder = { 1160 }, level = 68, group = "LocalPhysicalDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "damage", "physical", "attack" }, "Adds (3-5) to (6-8) Physical Damage to Attacks", statOrder = { 1151 }, level = 20, group = "PhysicalDamage", types = { ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "damage", "physical", "attack" }, "Adds (5-7) to (8-10) Physical Damage to Attacks", statOrder = { 1151 }, level = 40, group = "PhysicalDamage", types = { ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "chaos_damage", "damage", "chaos", "attack" }, "Adds (6-8) to (14-18) Chaos Damage to Attacks", statOrder = { 1271 }, level = 30, group = "ChaosDamage", types = { ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "chaos_damage", "damage", "chaos", "attack" }, "Adds (11-15) to (23-27) Chaos Damage to Attacks", statOrder = { 1271 }, level = 68, group = "ChaosDamage", types = { ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, "Adds (16-21) to (31-36) Fire Damage to Spells", statOrder = { 1288 }, level = 30, group = "SpellAddedFireDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, "Adds (28-38) to (57-66) Fire Damage to Spells", statOrder = { 1288 }, level = 50, group = "SpellAddedFireDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, "Adds (41-55) to (83-96) Fire Damage to Spells", statOrder = { 1288 }, level = 68, group = "SpellAddedFireDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, "Adds (12-16) to (23-27) Fire Damage to Spells", statOrder = { 1288 }, level = 30, group = "SpellAddedFireDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, "Adds (21-28) to (42-49) Fire Damage to Spells", statOrder = { 1288 }, level = 50, group = "SpellAddedFireDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, "Adds (31-41) to (61-71) Fire Damage to Spells", statOrder = { 1288 }, level = 68, group = "SpellAddedFireDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, "Adds (14-19) to (28-33) Cold Damage to Spells", statOrder = { 1289 }, level = 30, group = "SpellAddedColdDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, "Adds (26-34) to (52-60) Cold Damage to Spells", statOrder = { 1289 }, level = 50, group = "SpellAddedColdDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, "Adds (38-50) to (75-88) Cold Damage to Spells", statOrder = { 1289 }, level = 68, group = "SpellAddedColdDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, "Adds (10-13) to (19-22) Cold Damage to Spells", statOrder = { 1289 }, level = 30, group = "SpellAddedColdDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, "Adds (17-23) to (34-40) Cold Damage to Spells", statOrder = { 1289 }, level = 50, group = "SpellAddedColdDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, "Adds (25-33) to (50-58) Cold Damage to Spells", statOrder = { 1289 }, level = 68, group = "SpellAddedColdDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, "Adds (1-5) to (59-63) Lightning Damage to Spells", statOrder = { 1290 }, level = 30, group = "SpellAddedLightningDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, "Adds (3-9) to (109-115) Lightning Damage to Spells", statOrder = { 1290 }, level = 50, group = "SpellAddedLightningDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, "Adds (4-13) to (159-168) Lightning Damage to Spells", statOrder = { 1290 }, level = 68, group = "SpellAddedLightningDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, "Adds (1-4) to (39-42) Lightning Damage to Spells", statOrder = { 1290 }, level = 30, group = "SpellAddedLightningDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, "Adds (2-6) to (73-77) Lightning Damage to Spells", statOrder = { 1290 }, level = 50, group = "SpellAddedLightningDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, "Adds (3-9) to (106-112) Lightning Damage to Spells", statOrder = { 1290 }, level = 68, group = "SpellAddedLightningDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attack", "critical" }, "(17-19)% increased Critical Strike Chance", statOrder = { 1348 }, level = 40, group = "LocalCriticalStrikeChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attack", "critical" }, "(20-24)% increased Critical Strike Chance", statOrder = { 1348 }, level = 60, group = "LocalCriticalStrikeChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attack", "critical" }, "(25-27)% increased Critical Strike Chance", statOrder = { 1348 }, level = 75, group = "LocalCriticalStrikeChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "damage", "critical" }, "+(17-19)% to Global Critical Strike Multiplier", statOrder = { 1372 }, level = 40, group = "CriticalStrikeMultiplier", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "damage", "critical" }, "+(20-24)% to Global Critical Strike Multiplier", statOrder = { 1372 }, level = 60, group = "CriticalStrikeMultiplier", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "damage", "critical" }, "+(25-28)% to Global Critical Strike Multiplier", statOrder = { 1372 }, level = 75, group = "CriticalStrikeMultiplier", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "caster", "critical" }, "(45-75)% increased Spell Critical Strike Chance", statOrder = { 1342 }, level = 40, group = "SpellCriticalStrikeChance", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "caster", "critical" }, "(76-105)% increased Spell Critical Strike Chance", statOrder = { 1342 }, level = 60, group = "SpellCriticalStrikeChance", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "caster", "critical" }, "(30-49)% increased Spell Critical Strike Chance", statOrder = { 1342 }, level = 40, group = "SpellCriticalStrikeChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "caster", "critical" }, "(50-69)% increased Spell Critical Strike Chance", statOrder = { 1342 }, level = 60, group = "SpellCriticalStrikeChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "critical" }, "(17-21)% increased Global Critical Strike Chance", statOrder = { 1343 }, level = 50, group = "CriticalStrikeChance", types = { ["Quiver"] = true, ["Amulet"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "critical" }, "(22-27)% increased Global Critical Strike Chance", statOrder = { 1343 }, level = 68, group = "CriticalStrikeChance", types = { ["Quiver"] = true, ["Amulet"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "flask" }, "(5-10)% increased Flask Effect Duration", statOrder = { 2064 }, level = 50, group = "BeltIncreasedFlaskDuration", types = { ["Belt"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "flask" }, "(11-15)% increased Flask Effect Duration", statOrder = { 2064 }, level = 68, group = "BeltIncreasedFlaskDuration", types = { ["Belt"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { }, "(15-20)% chance to Avoid being Stunned", statOrder = { 1732 }, level = 30, group = "AvoidStun", types = { ["Helmet"] = true, ["Gloves"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { }, "(21-25)% chance to Avoid being Stunned", statOrder = { 1732 }, level = 60, group = "AvoidStun", types = { ["Helmet"] = true, ["Gloves"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, "(16-20)% chance to Avoid Elemental Ailments", statOrder = { 1724 }, level = 30, group = "AvoidElementalStatusAilments", types = { ["Boots"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, "(21-25)% chance to Avoid Elemental Ailments", statOrder = { 1724 }, level = 60, group = "AvoidElementalStatusAilments", types = { ["Boots"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "ailment" }, "(24-30)% reduced Effect of Chill and Shock on you", statOrder = { 9506 }, level = 30, group = "ReducedElementalAilmentEffectOnSelf", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "ailment" }, "(31-40)% reduced Effect of Chill and Shock on you", statOrder = { 9506 }, level = 60, group = "ReducedElementalAilmentEffectOnSelf", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "life" }, "+(15-25) to maximum Life", statOrder = { 1480 }, level = 15, group = "IncreasedLife", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "fire", "resistance" }, "+(16-20)% to Fire Resistance", statOrder = { 1536 }, level = 15, group = "FireResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "cold", "resistance" }, "+(16-20)% to Cold Resistance", statOrder = { 1542 }, level = 15, group = "ColdResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "lightning", "resistance" }, "+(16-20)% to Lightning Resistance", statOrder = { 1547 }, level = 15, group = "LightningResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(15-20) to Strength", statOrder = { 1089 }, level = 15, group = "Strength", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(15-20) to Dexterity", statOrder = { 1090 }, level = 15, group = "Dexterity", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(15-20) to Intelligence", statOrder = { 1091 }, level = 15, group = "Intelligence", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "fire", "resistance" }, "+(21-28)% to Fire Resistance", statOrder = { 1536 }, level = 30, group = "FireResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "fire", "resistance" }, "+(29-35)% to Fire Resistance", statOrder = { 1536 }, level = 50, group = "FireResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "cold", "resistance" }, "+(21-28)% to Cold Resistance", statOrder = { 1542 }, level = 30, group = "ColdResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "cold", "resistance" }, "+(29-35)% to Cold Resistance", statOrder = { 1542 }, level = 50, group = "ColdResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "lightning", "resistance" }, "+(21-28)% to Lightning Resistance", statOrder = { 1547 }, level = 30, group = "LightningResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "lightning", "resistance" }, "+(29-35)% to Lightning Resistance", statOrder = { 1547 }, level = 50, group = "LightningResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "fire", "cold", "resistance" }, "+(10-12)% to Fire and Cold Resistances", statOrder = { 2708 }, level = 30, group = "FireAndColdResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "fire", "cold", "resistance" }, "+(13-16)% to Fire and Cold Resistances", statOrder = { 2708 }, level = 50, group = "FireAndColdResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "fire", "cold", "resistance" }, "+(17-20)% to Fire and Cold Resistances", statOrder = { 2708 }, level = 75, group = "FireAndColdResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "cold", "lightning", "resistance" }, "+(10-12)% to Cold and Lightning Resistances", statOrder = { 2710 }, level = 30, group = "ColdAndLightningResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "cold", "lightning", "resistance" }, "+(13-16)% to Cold and Lightning Resistances", statOrder = { 2710 }, level = 50, group = "ColdAndLightningResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "cold", "lightning", "resistance" }, "+(17-20)% to Cold and Lightning Resistances", statOrder = { 2710 }, level = 75, group = "ColdAndLightningResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "fire", "lightning", "resistance" }, "+(10-12)% to Fire and Lightning Resistances", statOrder = { 2709 }, level = 30, group = "FireAndLightningResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "fire", "lightning", "resistance" }, "+(13-16)% to Fire and Lightning Resistances", statOrder = { 2709 }, level = 50, group = "FireAndLightningResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "fire", "lightning", "resistance" }, "+(17-20)% to Fire and Lightning Resistances", statOrder = { 2709 }, level = 75, group = "FireAndLightningResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "resistance" }, "+(5-8)% to all Elemental Resistances", statOrder = { 1530 }, level = 30, group = "AllResistances", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "resistance" }, "+(9-12)% to all Elemental Resistances", statOrder = { 1530 }, level = 60, group = "AllResistances", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "resistance", "minion" }, "+(4-6)% to all Elemental Resistances", "Minions have +(5-8)% to all Elemental Resistances", statOrder = { 1530, 2822 }, level = 30, group = "AllResistancesMinionResistances", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "resistance", "minion" }, "+(7-9)% to all Elemental Resistances", "Minions have +(9-12)% to all Elemental Resistances", statOrder = { 1530, 2822 }, level = 60, group = "AllResistancesMinionResistances", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(21-25) to Strength", statOrder = { 1089 }, level = 20, group = "Strength", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(26-30) to Strength", statOrder = { 1089 }, level = 40, group = "Strength", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(21-25) to Dexterity", statOrder = { 1090 }, level = 20, group = "Dexterity", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(26-30) to Dexterity", statOrder = { 1090 }, level = 40, group = "Dexterity", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(21-25) to Intelligence", statOrder = { 1091 }, level = 20, group = "Intelligence", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(26-30) to Intelligence", statOrder = { 1091 }, level = 40, group = "Intelligence", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(6-9) to all Attributes", statOrder = { 1088 }, level = 30, group = "AllAttributes", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(10-13) to all Attributes", statOrder = { 1088 }, level = 50, group = "AllAttributes", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "speed" }, "(10-14)% increased Movement Speed", statOrder = { 1709 }, level = 1, group = "MovementVelocity", types = { ["Boots"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "speed" }, "(15-19)% increased Movement Speed", statOrder = { 1709 }, level = 40, group = "MovementVelocity", types = { ["Boots"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "speed" }, "(20-24)% increased Movement Speed", statOrder = { 1709 }, level = 68, group = "MovementVelocity", types = { ["Boots"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "life" }, "+(26-40) to maximum Life", statOrder = { 1480 }, level = 40, group = "IncreasedLife", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "life" }, "+(41-55) to maximum Life", statOrder = { 1480 }, level = 68, group = "IncreasedLife", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "life" }, "+(56-70) to maximum Life", statOrder = { 1480 }, level = 75, group = "IncreasedLife", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "life" }, "+(71-85) to maximum Life", statOrder = { 1480 }, level = 80, group = "IncreasedLife", types = { ["Body Armour"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "resource", "life", "physical", "attack" }, "(0.3-0.5)% of Physical Attack Damage Leeched as Life", statOrder = { 1560 }, level = 30, group = "LifeLeechPermyriad", types = { ["Ring"] = true, ["Amulet"] = true, ["Gloves"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "resource", "life", "physical", "attack" }, "(0.6-0.8)% of Physical Attack Damage Leeched as Life", statOrder = { 1560 }, level = 50, group = "LifeLeechPermyriad", types = { ["Amulet"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "resource", "life", "physical", "attack" }, "(2-2.4)% of Physical Attack Damage Leeched as Life", statOrder = { 1562 }, level = 30, group = "LifeLeechLocalPermyriad", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "resource", "life", "physical", "attack" }, "(2.6-3)% of Physical Attack Damage Leeched as Life", statOrder = { 1562 }, level = 50, group = "LifeLeechLocalPermyriad", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "resource", "mana", "physical", "attack" }, "(2-2.4)% of Physical Attack Damage Leeched as Mana", statOrder = { 1612 }, level = 50, group = "ManaLeechLocalPermyriad", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "mana" }, "+(55-64) to maximum Mana", statOrder = { 1490 }, level = 20, group = "IncreasedMana", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "mana" }, "+(65-74) to maximum Mana", statOrder = { 1490 }, level = 40, group = "IncreasedMana", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "mana" }, "+(75-84) to maximum Mana", statOrder = { 1490 }, level = 60, group = "IncreasedMana", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "mana" }, "+(85-94) to maximum Mana", statOrder = { 1490 }, level = 75, group = "IncreasedMana", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "mana" }, "+(35-44) to maximum Mana", statOrder = { 1490 }, level = 20, group = "IncreasedMana", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "mana" }, "+(45-54) to maximum Mana", statOrder = { 1490 }, level = 40, group = "IncreasedMana", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "mana" }, "+(55-64) to maximum Mana", statOrder = { 1490 }, level = 60, group = "IncreasedMana", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "mana" }, "+(65-74) to maximum Mana", statOrder = { 1490 }, level = 75, group = "IncreasedMana", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "mana" }, "+(25-34) to maximum Mana", statOrder = { 1490 }, level = 20, group = "IncreasedMana", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, ["Belt"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "mana" }, "+(35-44) to maximum Mana", statOrder = { 1490 }, level = 40, group = "IncreasedMana", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, ["Belt"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "mana" }, "+(45-54) to maximum Mana", statOrder = { 1490 }, level = 60, group = "IncreasedMana", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, ["Belt"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "resource", "mana" }, "(20-30)% increased Mana Regeneration Rate", statOrder = { 1495 }, level = 30, group = "ManaRegeneration", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Ring"] = true, ["Amulet"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "resource", "mana" }, "(31-40)% increased Mana Regeneration Rate", statOrder = { 1495 }, level = 50, group = "ManaRegeneration", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Ring"] = true, ["Amulet"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "resource", "mana" }, "(30-45)% increased Mana Regeneration Rate", statOrder = { 1495 }, level = 30, group = "ManaRegeneration", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "resource", "mana" }, "(46-60)% increased Mana Regeneration Rate", statOrder = { 1495 }, level = 50, group = "ManaRegeneration", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "damage", "physical", "attack" }, "(40-59)% increased Physical Damage", statOrder = { 1144 }, level = 20, group = "LocalPhysicalDamagePercent", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "damage", "physical", "attack" }, "(60-79)% increased Physical Damage", statOrder = { 1144 }, level = 40, group = "LocalPhysicalDamagePercent", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "damage", "physical", "attack" }, "(80-99)% increased Physical Damage", statOrder = { 1144 }, level = 60, group = "LocalPhysicalDamagePercent", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "damage", "physical", "attack" }, "(100-129)% increased Physical Damage", statOrder = { 1144 }, level = 80, group = "LocalPhysicalDamagePercent", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "damage", "caster" }, "(37-51)% increased Spell Damage", statOrder = { 1135 }, level = 20, group = "TwoHandWeaponSpellDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "damage", "caster" }, "(52-66)% increased Spell Damage", statOrder = { 1135 }, level = 40, group = "TwoHandWeaponSpellDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "damage", "caster" }, "(67-81)% increased Spell Damage", statOrder = { 1135 }, level = 60, group = "TwoHandWeaponSpellDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "damage", "caster" }, "(82-99)% increased Spell Damage", statOrder = { 1135 }, level = 80, group = "TwoHandWeaponSpellDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "damage", "caster" }, "(25-34)% increased Spell Damage", statOrder = { 1135 }, level = 20, group = "WeaponSpellDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "damage", "caster" }, "(35-44)% increased Spell Damage", statOrder = { 1135 }, level = 40, group = "WeaponSpellDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "damage", "caster" }, "(45-54)% increased Spell Damage", statOrder = { 1135 }, level = 60, group = "WeaponSpellDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "damage", "caster" }, "(55-66)% increased Spell Damage", statOrder = { 1135 }, level = 80, group = "WeaponSpellDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "damage" }, "(11-20)% increased Damage over Time", statOrder = { 1122 }, level = 30, group = "DegenerationDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "damage" }, "(21-30)% increased Damage over Time", statOrder = { 1122 }, level = 50, group = "DegenerationDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "attack" }, "(15-23)% increased Elemental Damage with Attack Skills", statOrder = { 6215 }, level = 30, group = "IncreasedWeaponElementalDamagePercent", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "attack" }, "(24-32)% increased Elemental Damage with Attack Skills", statOrder = { 6215 }, level = 50, group = "IncreasedWeaponElementalDamagePercent", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Quiver"] = true, ["Belt"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attack", "speed" }, "(8-10)% increased Attack Speed", statOrder = { 1324 }, level = 30, group = "LocalIncreasedAttackSpeed", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attack", "speed" }, "(11-15)% increased Attack Speed", statOrder = { 1324 }, level = 50, group = "LocalIncreasedAttackSpeed", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attack", "speed" }, "(16-20)% increased Attack Speed", statOrder = { 1324 }, level = 75, group = "LocalIncreasedAttackSpeed", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attack", "speed" }, "(11-13)% increased Attack Speed", statOrder = { 1324 }, level = 75, group = "LocalIncreasedAttackSpeed", types = { ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attack", "speed" }, "(7-12)% increased Attack Speed", statOrder = { 1321 }, level = 30, group = "IncreasedAttackSpeed", types = { ["Gloves"] = true, ["Quiver"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "caster", "speed" }, "(15-20)% increased Cast Speed", statOrder = { 1357 }, level = 30, group = "IncreasedCastSpeed", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "caster", "speed" }, "(21-26)% increased Cast Speed", statOrder = { 1357 }, level = 50, group = "IncreasedCastSpeed", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "caster", "speed" }, "(27-32)% increased Cast Speed", statOrder = { 1357 }, level = 75, group = "IncreasedCastSpeed", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "caster", "speed" }, "(10-13)% increased Cast Speed", statOrder = { 1357 }, level = 30, group = "IncreasedCastSpeed", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "caster", "speed" }, "(14-17)% increased Cast Speed", statOrder = { 1357 }, level = 50, group = "IncreasedCastSpeed", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "caster", "speed" }, "(18-21)% increased Cast Speed", statOrder = { 1357 }, level = 75, group = "IncreasedCastSpeed", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire" }, "(37-51)% increased Fire Damage", statOrder = { 1268 }, level = 20, group = "TwoHandFireDamageWeaponPrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire" }, "(52-66)% increased Fire Damage", statOrder = { 1268 }, level = 40, group = "TwoHandFireDamageWeaponPrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire" }, "(67-81)% increased Fire Damage", statOrder = { 1268 }, level = 68, group = "TwoHandFireDamageWeaponPrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire" }, "(25-34)% increased Fire Damage", statOrder = { 1268 }, level = 20, group = "FireDamageWeaponPrefix", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire" }, "(35-44)% increased Fire Damage", statOrder = { 1268 }, level = 40, group = "FireDamageWeaponPrefix", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire" }, "(45-54)% increased Fire Damage", statOrder = { 1268 }, level = 68, group = "FireDamageWeaponPrefix", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental_damage", "damage", "elemental", "fire" }, "(9-12)% increased Fire Damage", statOrder = { 1268 }, level = 20, group = "FireDamagePercentage", types = { ["Ring"] = true, ["Amulet"] = true, ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental_damage", "damage", "elemental", "fire" }, "(13-16)% increased Fire Damage", statOrder = { 1268 }, level = 40, group = "FireDamagePercentage", types = { ["Ring"] = true, ["Amulet"] = true, ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold" }, "(37-51)% increased Cold Damage", statOrder = { 1277 }, level = 20, group = "TwoHandColdDamageWeaponPrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold" }, "(52-66)% increased Cold Damage", statOrder = { 1277 }, level = 40, group = "TwoHandColdDamageWeaponPrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold" }, "(67-81)% increased Cold Damage", statOrder = { 1277 }, level = 68, group = "TwoHandColdDamageWeaponPrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold" }, "(25-34)% increased Cold Damage", statOrder = { 1277 }, level = 20, group = "ColdDamageWeaponPrefix", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold" }, "(35-44)% increased Cold Damage", statOrder = { 1277 }, level = 40, group = "ColdDamageWeaponPrefix", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold" }, "(45-54)% increased Cold Damage", statOrder = { 1277 }, level = 68, group = "ColdDamageWeaponPrefix", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental_damage", "damage", "elemental", "cold" }, "(9-12)% increased Cold Damage", statOrder = { 1277 }, level = 20, group = "ColdDamagePercentage", types = { ["Ring"] = true, ["Amulet"] = true, ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental_damage", "damage", "elemental", "cold" }, "(13-16)% increased Cold Damage", statOrder = { 1277 }, level = 40, group = "ColdDamagePercentage", types = { ["Ring"] = true, ["Amulet"] = true, ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning" }, "(37-51)% increased Lightning Damage", statOrder = { 1288 }, level = 20, group = "TwoHandLightningDamageWeaponPrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning" }, "(52-66)% increased Lightning Damage", statOrder = { 1288 }, level = 40, group = "TwoHandLightningDamageWeaponPrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning" }, "(67-81)% increased Lightning Damage", statOrder = { 1288 }, level = 68, group = "TwoHandLightningDamageWeaponPrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning" }, "(25-34)% increased Lightning Damage", statOrder = { 1288 }, level = 20, group = "LightningDamageWeaponPrefix", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning" }, "(35-44)% increased Lightning Damage", statOrder = { 1288 }, level = 40, group = "LightningDamageWeaponPrefix", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning" }, "(45-54)% increased Lightning Damage", statOrder = { 1288 }, level = 68, group = "LightningDamageWeaponPrefix", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental_damage", "damage", "elemental", "lightning" }, "(9-12)% increased Lightning Damage", statOrder = { 1288 }, level = 20, group = "LightningDamagePercentage", types = { ["Ring"] = true, ["Amulet"] = true, ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental_damage", "damage", "elemental", "lightning" }, "(13-16)% increased Lightning Damage", statOrder = { 1288 }, level = 40, group = "LightningDamagePercentage", types = { ["Ring"] = true, ["Amulet"] = true, ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "chaos_damage", "damage", "chaos" }, "(37-51)% increased Chaos Damage", statOrder = { 1296 }, level = 20, group = "TwoHandChaosDamageWeaponPrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "chaos_damage", "damage", "chaos" }, "(52-66)% increased Chaos Damage", statOrder = { 1296 }, level = 40, group = "TwoHandChaosDamageWeaponPrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "chaos_damage", "damage", "chaos" }, "(67-81)% increased Chaos Damage", statOrder = { 1296 }, level = 68, group = "TwoHandChaosDamageWeaponPrefix", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "chaos_damage", "damage", "chaos" }, "(25-34)% increased Chaos Damage", statOrder = { 1296 }, level = 30, group = "ChaosDamageWeaponPrefix", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "chaos_damage", "damage", "chaos" }, "(35-44)% increased Chaos Damage", statOrder = { 1296 }, level = 50, group = "ChaosDamageWeaponPrefix", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "chaos_damage", "damage", "chaos" }, "(45-54)% increased Chaos Damage", statOrder = { 1296 }, level = 68, group = "ChaosDamageWeaponPrefix", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "chaos_damage", "damage", "chaos" }, "(9-12)% increased Chaos Damage", statOrder = { 1296 }, level = 30, group = "IncreasedChaosDamage", types = { ["Ring"] = true, ["Amulet"] = true, ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "chaos_damage", "damage", "chaos" }, "(13-16)% increased Chaos Damage", statOrder = { 1296 }, level = 50, group = "IncreasedChaosDamage", types = { ["Ring"] = true, ["Amulet"] = true, ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attack" }, "+(91-120) to Accuracy Rating", statOrder = { 1933 }, level = 20, group = "LocalAccuracyRating", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attack" }, "+(121-200) to Accuracy Rating", statOrder = { 1933 }, level = 40, group = "LocalAccuracyRating", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attack" }, "+(201-300) to Accuracy Rating", statOrder = { 1933 }, level = 68, group = "LocalAccuracyRating", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attack" }, "+(91-120) to Accuracy Rating", statOrder = { 1344 }, level = 20, group = "IncreasedAccuracy", types = { ["Gloves"] = true, ["Helmet"] = true, ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attack" }, "+(121-150) to Accuracy Rating", statOrder = { 1344 }, level = 40, group = "IncreasedAccuracy", types = { ["Gloves"] = true, ["Helmet"] = true, ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attack" }, "+(151-220) to Accuracy Rating", statOrder = { 1344 }, level = 68, group = "IncreasedAccuracy", types = { ["Gloves"] = true, ["Helmet"] = true, ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "physical_damage", "damage", "physical" }, "(9-12)% increased Global Physical Damage", statOrder = { 1143 }, level = 30, group = "PhysicalDamagePercent", types = { ["Shield"] = true, ["Amulet"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "physical_damage", "damage", "physical" }, "(13-16)% increased Global Physical Damage", statOrder = { 1143 }, level = 50, group = "PhysicalDamagePercent", types = { ["Shield"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "defences", "armour" }, "(26-35)% increased Armour", statOrder = { 1453 }, level = 30, group = "LocalPhysicalDamageReductionRatingPercent", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "defences", "armour" }, "(41-50)% increased Armour", statOrder = { 1453 }, level = 50, group = "LocalPhysicalDamageReductionRatingPercent", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "defences", "armour" }, "(56-74)% increased Armour", statOrder = { 1453 }, level = 75, group = "LocalPhysicalDamageReductionRatingPercent", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "defences", "armour" }, "+(50-75) to Armour", statOrder = { 1451 }, level = 30, group = "LocalPhysicalDamageReductionRating", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "defences", "armour" }, "+(100-150) to Armour", statOrder = { 1451 }, level = 50, group = "LocalPhysicalDamageReductionRating", types = { ["Body Armour"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "defences", "armour" }, "+(250-320) to Armour", statOrder = { 1451 }, level = 68, group = "LocalPhysicalDamageReductionRating", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "defences", "evasion" }, "(26-35)% increased Evasion Rating", statOrder = { 1461 }, level = 30, group = "LocalEvasionRatingIncreasePercent", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "defences", "evasion" }, "(41-50)% increased Evasion Rating", statOrder = { 1461 }, level = 50, group = "LocalEvasionRatingIncreasePercent", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "defences", "evasion" }, "(56-74)% increased Evasion Rating", statOrder = { 1461 }, level = 75, group = "LocalEvasionRatingIncreasePercent", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "defences", "evasion" }, "+(50-75) to Evasion Rating", statOrder = { 1459 }, level = 30, group = "LocalEvasionRating", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "defences", "evasion" }, "+(100-150) to Evasion Rating", statOrder = { 1459 }, level = 50, group = "LocalEvasionRating", types = { ["Body Armour"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "defences", "evasion" }, "+(250-320) to Evasion Rating", statOrder = { 1459 }, level = 68, group = "LocalEvasionRating", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "defences", "energy_shield" }, "(26-35)% increased Energy Shield", statOrder = { 1471 }, level = 30, group = "LocalEnergyShieldPercent", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "defences", "energy_shield" }, "(41-50)% increased Energy Shield", statOrder = { 1471 }, level = 50, group = "LocalEnergyShieldPercent", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "defences", "energy_shield" }, "(56-74)% increased Energy Shield", statOrder = { 1471 }, level = 75, group = "LocalEnergyShieldPercent", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "defences", "energy_shield" }, "+(17-22) to maximum Energy Shield", statOrder = { 1470 }, level = 30, group = "LocalEnergyShield", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "defences", "energy_shield" }, "+(35-45) to maximum Energy Shield", statOrder = { 1470 }, level = 50, group = "LocalEnergyShield", types = { ["Body Armour"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "defences", "energy_shield" }, "+(56-69) to maximum Energy Shield", statOrder = { 1470 }, level = 68, group = "LocalEnergyShield", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "defences", "energy_shield" }, "(10-12)% increased maximum Energy Shield", statOrder = { 1472 }, level = 60, group = "GlobalEnergyShieldPercent", types = { ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "defences", "energy_shield" }, "(13-15)% increased maximum Energy Shield", statOrder = { 1472 }, level = 75, group = "GlobalEnergyShieldPercent", types = { ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "defences", "energy_shield" }, "+(21-25) to maximum Energy Shield", statOrder = { 1469 }, level = 50, group = "EnergyShield", types = { ["Amulet"] = true, ["Ring"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "defences", "energy_shield" }, "+(26-30) to maximum Energy Shield", statOrder = { 1469 }, level = 68, group = "EnergyShield", types = { ["Amulet"] = true, ["Ring"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "defences", "armour", "evasion" }, "(26-35)% increased Armour and Evasion", statOrder = { 1464 }, level = 30, group = "LocalArmourAndEvasion", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "defences", "armour", "evasion" }, "(41-50)% increased Armour and Evasion", statOrder = { 1464 }, level = 50, group = "LocalArmourAndEvasion", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "defences", "armour", "evasion" }, "(56-74)% increased Armour and Evasion", statOrder = { 1464 }, level = 75, group = "LocalArmourAndEvasion", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "defences", "armour", "energy_shield" }, "(26-35)% increased Armour and Energy Shield", statOrder = { 1463 }, level = 30, group = "LocalArmourAndEnergyShield", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "defences", "armour", "energy_shield" }, "(41-50)% increased Armour and Energy Shield", statOrder = { 1463 }, level = 50, group = "LocalArmourAndEnergyShield", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "defences", "armour", "energy_shield" }, "(56-74)% increased Armour and Energy Shield", statOrder = { 1463 }, level = 75, group = "LocalArmourAndEnergyShield", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "defences", "evasion", "energy_shield" }, "(26-35)% increased Evasion and Energy Shield", statOrder = { 1465 }, level = 30, group = "LocalEvasionAndEnergyShield", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "defences", "evasion", "energy_shield" }, "(41-50)% increased Evasion and Energy Shield", statOrder = { 1465 }, level = 50, group = "LocalEvasionAndEnergyShield", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "defences", "evasion", "energy_shield" }, "(56-74)% increased Evasion and Energy Shield", statOrder = { 1465 }, level = 75, group = "LocalEvasionAndEnergyShield", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, "Adds (19-21) to (32-41) Fire Damage", statOrder = { 1273 }, level = 20, group = "LocalFireDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, "Adds (38-46) to (73-85) Fire Damage", statOrder = { 1273 }, level = 40, group = "LocalFireDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, "Adds (60-72) to (110-128) Fire Damage", statOrder = { 1273 }, level = 68, group = "LocalFireDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, "Adds (11-12) to (19-23) Fire Damage", statOrder = { 1273 }, level = 20, group = "LocalFireDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, "Adds (22-27) to (42-49) Fire Damage", statOrder = { 1273 }, level = 40, group = "LocalFireDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, "Adds (35-41) to (63-73) Fire Damage", statOrder = { 1273 }, level = 68, group = "LocalFireDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, "Adds (8-11) to (16-20) Fire Damage to Attacks", statOrder = { 1271 }, level = 20, group = "FireDamage", types = { ["Ring"] = true, ["Amulet"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, "Adds (12-17) to (26-30) Fire Damage to Attacks", statOrder = { 1271 }, level = 40, group = "FireDamage", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, "Adds (19-21) to (32-41) Cold Damage", statOrder = { 1282 }, level = 20, group = "LocalColdDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, "Adds (38-46) to (73-85) Cold Damage", statOrder = { 1282 }, level = 40, group = "LocalColdDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, "Adds (60-72) to (110-128) Cold Damage", statOrder = { 1282 }, level = 68, group = "LocalColdDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, "Adds (11-12) to (19-23) Cold Damage", statOrder = { 1282 }, level = 20, group = "LocalColdDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, "Adds (22-27) to (42-49) Cold Damage", statOrder = { 1282 }, level = 40, group = "LocalColdDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, "Adds (35-41) to (63-73) Cold Damage", statOrder = { 1282 }, level = 68, group = "LocalColdDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, "Adds (6-8) to (14-18) Cold Damage to Attacks", statOrder = { 1280 }, level = 20, group = "ColdDamage", types = { ["Ring"] = true, ["Amulet"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, "Adds (11-15) to (23-27) Cold Damage to Attacks", statOrder = { 1280 }, level = 40, group = "ColdDamage", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, "Adds (2-5) to (46-64) Lightning Damage", statOrder = { 1293 }, level = 20, group = "LocalLightningDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, "Adds (6-9) to (104-139) Lightning Damage", statOrder = { 1293 }, level = 40, group = "LocalLightningDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, "Adds (10-14) to (162-197) Lightning Damage", statOrder = { 1293 }, level = 68, group = "LocalLightningDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, "Adds (1-3) to (27-37) Lightning Damage", statOrder = { 1293 }, level = 20, group = "LocalLightningDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, "Adds (3-5) to (60-80) Lightning Damage", statOrder = { 1293 }, level = 40, group = "LocalLightningDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, "Adds (6-8) to (100-113) Lightning Damage", statOrder = { 1293 }, level = 68, group = "LocalLightningDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, "Adds (1-4) to (32-36) Lightning Damage to Attacks", statOrder = { 1291 }, level = 20, group = "LightningDamage", types = { ["Ring"] = true, ["Amulet"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, "Adds (1-5) to (41-48) Lightning Damage to Attacks", statOrder = { 1291 }, level = 40, group = "LightningDamage", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "damage", "physical", "attack" }, "Adds (9-12) to (18-21) Physical Damage", statOrder = { 1187 }, level = 20, group = "LocalPhysicalDamageTwoHanded", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "damage", "physical", "attack" }, "Adds (11-15) to (23-27) Physical Damage", statOrder = { 1187 }, level = 40, group = "LocalPhysicalDamageTwoHanded", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "damage", "physical", "attack" }, "Adds (18-24) to (36-42) Physical Damage", statOrder = { 1187 }, level = 68, group = "LocalPhysicalDamageTwoHanded", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "damage", "physical", "attack" }, "Adds (6-8) to (13-15) Physical Damage", statOrder = { 1187 }, level = 20, group = "LocalPhysicalDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "damage", "physical", "attack" }, "Adds (7-11) to (16-19) Physical Damage", statOrder = { 1187 }, level = 40, group = "LocalPhysicalDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "damage", "physical", "attack" }, "Adds (13-17) to (26-30) Physical Damage", statOrder = { 1187 }, level = 68, group = "LocalPhysicalDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "damage", "physical", "attack" }, "Adds (3-5) to (6-8) Physical Damage to Attacks", statOrder = { 1178 }, level = 20, group = "PhysicalDamage", types = { ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "damage", "physical", "attack" }, "Adds (5-7) to (8-10) Physical Damage to Attacks", statOrder = { 1178 }, level = 40, group = "PhysicalDamage", types = { ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "chaos_damage", "damage", "chaos", "attack" }, "Adds (6-8) to (14-18) Chaos Damage to Attacks", statOrder = { 1298 }, level = 30, group = "ChaosDamage", types = { ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "chaos_damage", "damage", "chaos", "attack" }, "Adds (11-15) to (23-27) Chaos Damage to Attacks", statOrder = { 1298 }, level = 68, group = "ChaosDamage", types = { ["Ring"] = true, ["Amulet"] = true, ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, "Adds (16-21) to (31-36) Fire Damage to Spells", statOrder = { 1315 }, level = 30, group = "SpellAddedFireDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, "Adds (28-38) to (57-66) Fire Damage to Spells", statOrder = { 1315 }, level = 50, group = "SpellAddedFireDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, "Adds (41-55) to (83-96) Fire Damage to Spells", statOrder = { 1315 }, level = 68, group = "SpellAddedFireDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, "Adds (12-16) to (23-27) Fire Damage to Spells", statOrder = { 1315 }, level = 30, group = "SpellAddedFireDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, "Adds (21-28) to (42-49) Fire Damage to Spells", statOrder = { 1315 }, level = 50, group = "SpellAddedFireDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, "Adds (31-41) to (61-71) Fire Damage to Spells", statOrder = { 1315 }, level = 68, group = "SpellAddedFireDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, "Adds (14-19) to (28-33) Cold Damage to Spells", statOrder = { 1316 }, level = 30, group = "SpellAddedColdDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, "Adds (26-34) to (52-60) Cold Damage to Spells", statOrder = { 1316 }, level = 50, group = "SpellAddedColdDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, "Adds (38-50) to (75-88) Cold Damage to Spells", statOrder = { 1316 }, level = 68, group = "SpellAddedColdDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, "Adds (10-13) to (19-22) Cold Damage to Spells", statOrder = { 1316 }, level = 30, group = "SpellAddedColdDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, "Adds (17-23) to (34-40) Cold Damage to Spells", statOrder = { 1316 }, level = 50, group = "SpellAddedColdDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, "Adds (25-33) to (50-58) Cold Damage to Spells", statOrder = { 1316 }, level = 68, group = "SpellAddedColdDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, "Adds (1-5) to (59-63) Lightning Damage to Spells", statOrder = { 1317 }, level = 30, group = "SpellAddedLightningDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, "Adds (3-9) to (109-115) Lightning Damage to Spells", statOrder = { 1317 }, level = 50, group = "SpellAddedLightningDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, "Adds (4-13) to (159-168) Lightning Damage to Spells", statOrder = { 1317 }, level = 68, group = "SpellAddedLightningDamageTwoHand", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, "Adds (1-4) to (39-42) Lightning Damage to Spells", statOrder = { 1317 }, level = 30, group = "SpellAddedLightningDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, "Adds (2-6) to (73-77) Lightning Damage to Spells", statOrder = { 1317 }, level = 50, group = "SpellAddedLightningDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, "Adds (3-9) to (106-112) Lightning Damage to Spells", statOrder = { 1317 }, level = 68, group = "SpellAddedLightningDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attack", "critical" }, "(17-19)% increased Critical Strike Chance", statOrder = { 1375 }, level = 40, group = "LocalCriticalStrikeChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attack", "critical" }, "(20-24)% increased Critical Strike Chance", statOrder = { 1375 }, level = 60, group = "LocalCriticalStrikeChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attack", "critical" }, "(25-27)% increased Critical Strike Chance", statOrder = { 1375 }, level = 75, group = "LocalCriticalStrikeChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "damage", "critical" }, "+(17-19)% to Global Critical Strike Multiplier", statOrder = { 1399 }, level = 40, group = "CriticalStrikeMultiplier", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "damage", "critical" }, "+(20-24)% to Global Critical Strike Multiplier", statOrder = { 1399 }, level = 60, group = "CriticalStrikeMultiplier", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "damage", "critical" }, "+(25-28)% to Global Critical Strike Multiplier", statOrder = { 1399 }, level = 75, group = "CriticalStrikeMultiplier", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "caster", "critical" }, "(45-75)% increased Spell Critical Strike Chance", statOrder = { 1369 }, level = 40, group = "SpellCriticalStrikeChance", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "caster", "critical" }, "(76-105)% increased Spell Critical Strike Chance", statOrder = { 1369 }, level = 60, group = "SpellCriticalStrikeChance", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "caster", "critical" }, "(30-49)% increased Spell Critical Strike Chance", statOrder = { 1369 }, level = 40, group = "SpellCriticalStrikeChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "caster", "critical" }, "(50-69)% increased Spell Critical Strike Chance", statOrder = { 1369 }, level = 60, group = "SpellCriticalStrikeChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "critical" }, "(17-21)% increased Global Critical Strike Chance", statOrder = { 1370 }, level = 50, group = "CriticalStrikeChance", types = { ["Quiver"] = true, ["Amulet"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "critical" }, "(22-27)% increased Global Critical Strike Chance", statOrder = { 1370 }, level = 68, group = "CriticalStrikeChance", types = { ["Quiver"] = true, ["Amulet"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "flask" }, "(5-10)% increased Flask Effect Duration", statOrder = { 2096 }, level = 50, group = "BeltIncreasedFlaskDuration", types = { ["Belt"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "flask" }, "(11-15)% increased Flask Effect Duration", statOrder = { 2096 }, level = 68, group = "BeltIncreasedFlaskDuration", types = { ["Belt"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { }, "(15-20)% chance to Avoid being Stunned", statOrder = { 1762 }, level = 30, group = "AvoidStun", types = { ["Helmet"] = true, ["Gloves"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { }, "(21-25)% chance to Avoid being Stunned", statOrder = { 1762 }, level = 60, group = "AvoidStun", types = { ["Helmet"] = true, ["Gloves"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, "(16-20)% chance to Avoid Elemental Ailments", statOrder = { 1754 }, level = 30, group = "AvoidElementalStatusAilments", types = { ["Boots"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, "(21-25)% chance to Avoid Elemental Ailments", statOrder = { 1754 }, level = 60, group = "AvoidElementalStatusAilments", types = { ["Boots"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "ailment" }, "(24-30)% reduced Effect of Chill and Shock on you", statOrder = { 9802 }, level = 30, group = "ReducedElementalAilmentEffectOnSelf", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "ailment" }, "(31-40)% reduced Effect of Chill and Shock on you", statOrder = { 9802 }, level = 60, group = "ReducedElementalAilmentEffectOnSelf", types = { ["Boots"] = true, ["Gloves"] = true, }, }, { type = "Prefix", affix = "Upgraded", modTags = { "block" }, "(31-40)% increased Chance to Block", statOrder = { 70 }, level = 50, group = "LocalIncreasedBlockPercentage", types = { ["Shield"] = true, }, }, { type = "Prefix", affix = "Upgraded", modTags = { "block" }, "(41-50)% increased Chance to Block", statOrder = { 70 }, level = 68, group = "LocalIncreasedBlockPercentage", types = { ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "block" }, "(3-4)% Chance to Block Spell Damage", statOrder = { 1046 }, level = 50, group = "SpellBlockPercentage", types = { ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "block" }, "(5-6)% Chance to Block Spell Damage", statOrder = { 1046 }, level = 68, group = "SpellBlockPercentage", types = { ["Shield"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "resource", "life" }, "(5-6)% increased Life Regeneration rate", statOrder = { 1459 }, level = 40, group = "LifeRegenerationRate", types = { ["Helmet"] = true, ["Gloves"] = true, ["Boots"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "resource", "life" }, "(7-8)% increased Life Regeneration rate", statOrder = { 1459 }, level = 60, group = "LifeRegenerationRate", types = { ["Helmet"] = true, ["Gloves"] = true, ["Boots"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "physical" }, "2% additional Physical Damage Reduction", statOrder = { 2150 }, level = 40, group = "ReducedPhysicalDamageTaken", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "physical" }, "3% additional Physical Damage Reduction", statOrder = { 2150 }, level = 60, group = "ReducedPhysicalDamageTaken", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { }, "+(3-4)% chance to Suppress Spell Damage", statOrder = { 1032 }, level = 40, group = "ChanceToSuppressSpells", types = { ["Helmet"] = true, ["Gloves"] = true, ["Boots"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { }, "+(5-6)% chance to Suppress Spell Damage", statOrder = { 1032 }, level = 60, group = "ChanceToSuppressSpells", types = { ["Helmet"] = true, ["Gloves"] = true, ["Boots"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { }, "+(5-7)% chance to Suppress Spell Damage", statOrder = { 1032 }, level = 40, group = "ChanceToSuppressSpells", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { }, "+(8-10)% chance to Suppress Spell Damage", statOrder = { 1032 }, level = 60, group = "ChanceToSuppressSpells", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "defences", "energy_shield" }, "(9-11)% increased Energy Shield Recharge Rate", statOrder = { 1447 }, level = 40, group = "EnergyShieldRegeneration", types = { ["Helmet"] = true, ["Gloves"] = true, ["Boots"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "defences", "energy_shield" }, "(12-14)% increased Energy Shield Recharge Rate", statOrder = { 1447 }, level = 60, group = "EnergyShieldRegeneration", types = { ["Helmet"] = true, ["Gloves"] = true, ["Boots"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "defences", "energy_shield" }, "(16-20)% faster start of Energy Shield Recharge", statOrder = { 1444 }, level = 40, group = "EnergyShieldDelay", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "defences", "energy_shield" }, "(21-25)% faster start of Energy Shield Recharge", statOrder = { 1444 }, level = 60, group = "EnergyShieldDelay", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "Upgraded", modTags = { "damage" }, "5% reduced Damage taken from Damage Over Time", statOrder = { 2122 }, level = 80, group = "DegenDamageTaken", types = { ["Shield"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { }, "Light Radius is based on Energy Shield instead of Life", statOrder = { 2616 }, level = 68, group = "LightRadiusScalesWithEnergyShield", types = { ["Helmet"] = true, ["Ring"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "resource", "life", "minion" }, "Minions have (11-15)% increased maximum Life", statOrder = { 1647 }, level = 40, group = "MinionLife", types = { ["Shield"] = true, ["Ring"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "resource", "life", "minion" }, "Minions have (16-20)% increased maximum Life", statOrder = { 1647 }, level = 68, group = "MinionLife", types = { ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "damage", "minion" }, "Minions deal (10-20)% increased Damage", statOrder = { 1852 }, level = 40, group = "MinionDamage", types = { ["Gloves"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "speed", "minion" }, "Minions have (13-17)% increased Movement Speed", statOrder = { 1650 }, level = 30, group = "MinionRunSpeed", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "speed", "minion" }, "Minions have (18-22)% increased Movement Speed", statOrder = { 1650 }, level = 60, group = "MinionRunSpeed", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "damage", "minion" }, "Minions deal (37-51)% increased Damage", statOrder = { 1852 }, level = 30, group = "MinionDamageOnWeapon", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "damage", "minion" }, "Minions deal (52-66)% increased Damage", statOrder = { 1852 }, level = 60, group = "MinionDamageOnWeapon", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "damage", "minion" }, "Minions deal (67-81)% increased Damage", statOrder = { 1852 }, level = 75, group = "MinionDamageOnWeapon", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "damage", "minion" }, "Minions deal (25-34)% increased Damage", statOrder = { 1852 }, level = 30, group = "MinionDamageOnWeapon", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "damage", "minion" }, "Minions deal (35-44)% increased Damage", statOrder = { 1852 }, level = 60, group = "MinionDamageOnWeapon", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "damage", "minion" }, "Minions deal (45-54)% increased Damage", statOrder = { 1852 }, level = 75, group = "MinionDamageOnWeapon", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "damage" }, "(52-66)% increased Trap Damage", statOrder = { 1079 }, level = 50, group = "TrapDamageOnWeapon", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "damage" }, "(67-81)% increased Trap Damage", statOrder = { 1079 }, level = 68, group = "TrapDamageOnWeapon", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "damage" }, "(35-44)% increased Trap Damage", statOrder = { 1079 }, level = 50, group = "TrapDamageOnWeapon", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "damage" }, "(45-54)% increased Trap Damage", statOrder = { 1079 }, level = 68, group = "TrapDamageOnWeapon", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "damage" }, "(52-66)% increased Mine Damage", statOrder = { 1081 }, level = 50, group = "MineDamageOnWeapon", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "damage" }, "(67-81)% increased Mine Damage", statOrder = { 1081 }, level = 68, group = "MineDamageOnWeapon", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "damage" }, "(35-44)% increased Mine Damage", statOrder = { 1081 }, level = 50, group = "MineDamageOnWeapon", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "damage" }, "(45-54)% increased Mine Damage", statOrder = { 1081 }, level = 68, group = "MineDamageOnWeapon", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "speed" }, "(17-20)% increased Trap Throwing Speed", statOrder = { 1806 }, level = 50, group = "TrapThrowSpeedOnWeapon", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "speed" }, "(21-23)% increased Trap Throwing Speed", statOrder = { 1806 }, level = 68, group = "TrapThrowSpeedOnWeapon", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "speed" }, "(9-12)% increased Trap Throwing Speed", statOrder = { 1806 }, level = 50, group = "TrapThrowSpeedOnWeapon", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "speed" }, "(13-15)% increased Trap Throwing Speed", statOrder = { 1806 }, level = 68, group = "TrapThrowSpeedOnWeapon", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "speed" }, "(17-20)% increased Mine Throwing Speed", statOrder = { 1807 }, level = 50, group = "MineLayingSpeedOnWeapon", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "speed" }, "(21-23)% increased Mine Throwing Speed", statOrder = { 1807 }, level = 68, group = "MineLayingSpeedOnWeapon", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "speed" }, "(9-12)% increased Mine Throwing Speed", statOrder = { 1807 }, level = 50, group = "MineLayingSpeedOnWeapon", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "speed" }, "(13-15)% increased Mine Throwing Speed", statOrder = { 1807 }, level = 68, group = "MineLayingSpeedOnWeapon", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attack", "speed" }, "(3-5)% increased Attack Speed", statOrder = { 1294 }, level = 30, group = "IncreasedAttackSpeed", types = { ["Ring"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "caster", "speed" }, "(6-9)% increased Cast Speed", statOrder = { 1330 }, level = 30, group = "IncreasedCastSpeed", types = { ["Shield"] = true, ["Amulet"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "speed" }, "(15-20)% increased Warcry Speed", statOrder = { 3143 }, level = 30, group = "WarcrySpeed", types = { ["Amulet"] = true, }, }, - { type = "Suffix", affix = "of Control", modTags = { }, "Warcries cannot Exert Travel Skills", statOrder = { 9900 }, level = 1, group = "TravelSkillsCannotBeExerted", types = { ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "bleed", "physical", "attack", "ailment" }, "Moving while Bleeding doesn't cause you to take extra Damage", statOrder = { 3058 }, level = 30, group = "NoExtraBleedDamageWhileMoving", types = { ["Shield"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "chaos", "resistance" }, "+(31-36)% Chaos Resistance against Damage Over Time", statOrder = { 5442 }, level = 30, group = "ChaosResistanceAgainstDamageOverTime", types = { ["Belt"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "chaos", "resistance" }, "+(37-43)% Chaos Resistance against Damage Over Time", statOrder = { 5442 }, level = 60, group = "ChaosResistanceAgainstDamageOverTime", types = { ["Belt"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "bleed", "physical", "attack", "ailment" }, "(41-50)% chance to Avoid Bleeding", statOrder = { 4077 }, level = 30, group = "ChanceToAvoidBleeding", types = { ["Boots"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "bleed", "physical", "attack", "ailment" }, "(51-60)% chance to Avoid Bleeding", statOrder = { 4077 }, level = 60, group = "ChanceToAvoidBleeding", types = { ["Boots"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "fire", "ailment" }, "(41-50)% reduced Ignite Duration on you", statOrder = { 1756 }, level = 30, group = "ReducedIgniteDurationOnSelf", types = { ["Ring"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "fire", "ailment" }, "(51-60)% reduced Ignite Duration on you", statOrder = { 1756 }, level = 60, group = "ReducedIgniteDurationOnSelf", types = { ["Ring"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "cold", "ailment" }, "(41-50)% reduced Effect of Chill on you", statOrder = { 1526 }, level = 30, group = "ChillEffectivenessOnSelf", types = { ["Ring"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "cold", "ailment" }, "(51-60)% reduced Effect of Chill on you", statOrder = { 1526 }, level = 60, group = "ChillEffectivenessOnSelf", types = { ["Ring"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "lightning", "ailment" }, "(41-50)% reduced Effect of Shock on you", statOrder = { 9507 }, level = 30, group = "ReducedShockEffectOnSelf", types = { ["Ring"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "lightning", "ailment" }, "(51-60)% reduced Effect of Shock on you", statOrder = { 9507 }, level = 60, group = "ReducedShockEffectOnSelf", types = { ["Ring"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "caster", "curse" }, "(16-20)% reduced Effect of Curses on you", statOrder = { 2047 }, level = 30, group = "ReducedCurseEffect", types = { ["Ring"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "caster", "curse" }, "(21-25)% reduced Effect of Curses on you", statOrder = { 2047 }, level = 60, group = "ReducedCurseEffect", types = { ["Ring"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "cold", "ailment" }, "(11-15)% reduced Effect of Freeze on you", statOrder = { 4836 }, level = 30, group = "BaseFrozenEffectOnSelf", types = { ["Helmet"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental", "cold", "ailment" }, "(16-20)% reduced Effect of Freeze on you", statOrder = { 4836 }, level = 60, group = "BaseFrozenEffectOnSelf", types = { ["Helmet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, "Adds (9-11) to (16-21) Fire Damage to Attacks", statOrder = { 1244 }, level = 20, group = "FireDamage", types = { ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, "Adds (19-23) to (37-42) Fire Damage to Attacks", statOrder = { 1244 }, level = 40, group = "FireDamage", types = { ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, "Adds (9-11) to (16-21) Cold Damage to Attacks", statOrder = { 1253 }, level = 20, group = "ColdDamage", types = { ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, "Adds (19-23) to (37-42) Cold Damage to Attacks", statOrder = { 1253 }, level = 40, group = "ColdDamage", types = { ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, "Adds (1-4) to (32-36) Lightning Damage to Attacks", statOrder = { 1264 }, level = 20, group = "LightningDamage", types = { ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, "Adds (3-6) to (52-70) Lightning Damage to Attacks", statOrder = { 1264 }, level = 40, group = "LightningDamage", types = { ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "damage", "vaal" }, "(20-60)% increased Damage with Vaal Skills", statOrder = { 2961 }, level = 24, group = "VaalSkillDamage", types = { ["Gloves"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "flat_life_regen", "resource", "life", "mana" }, "Regenerate (12-20) Life per second", "Regenerate (1.8-3) Mana per second", statOrder = { 1456, 1464 }, level = 30, group = "LifeRegenerationAndManaRegeneration", types = { ["Amulet"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "skill", "caster", "gem" }, "Trigger a Socketed Spell when you Use a Skill, with a 8 second Cooldown", "Spells Triggered this way have 150% more Cost", statOrder = { 726, 726.1 }, level = 75, group = "TriggerSocketedSpellOnSkillUse", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "unveiled_mod", "damage", "physical", "attack" }, "(81-85)% increased Physical Damage", "(13-15)% chance to Impale Enemies on Hit with Attacks", statOrder = { 1117, 7467 }, level = 60, group = "LocalIncreasedPhysicalDamageAndImpaleChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "unveiled_mod", "damage", "physical", "attack" }, "(86-94)% increased Physical Damage", "(16-17)% chance to Impale Enemies on Hit with Attacks", statOrder = { 1117, 7467 }, level = 72, group = "LocalIncreasedPhysicalDamageAndImpaleChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "unveiled_mod", "damage", "physical", "attack" }, "(95-105)% increased Physical Damage", "(18-20)% chance to Impale Enemies on Hit with Attacks", statOrder = { 1117, 7467 }, level = 81, group = "LocalIncreasedPhysicalDamageAndImpaleChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "bleed", "unveiled_mod", "damage", "physical", "attack", "ailment" }, "(81-85)% increased Physical Damage", "(13-15)% chance to cause Bleeding on Hit", statOrder = { 1117, 2359 }, level = 60, group = "LocalIncreasedPhysicalDamageAndBleedChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "bleed", "unveiled_mod", "damage", "physical", "attack", "ailment" }, "(86-94)% increased Physical Damage", "(16-17)% chance to cause Bleeding on Hit", statOrder = { 1117, 2359 }, level = 72, group = "LocalIncreasedPhysicalDamageAndBleedChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "bleed", "unveiled_mod", "damage", "physical", "attack", "ailment" }, "(95-105)% increased Physical Damage", "(18-20)% chance to cause Bleeding on Hit", statOrder = { 1117, 2359 }, level = 81, group = "LocalIncreasedPhysicalDamageAndBleedChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "unveiled_mod", "damage", "physical", "attack" }, "(81-85)% increased Physical Damage", "(13-15)% chance to Blind Enemies on hit", statOrder = { 1117, 2140 }, level = 60, group = "LocalIncreasedPhysicalDamageAndBlindChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "unveiled_mod", "damage", "physical", "attack" }, "(86-94)% increased Physical Damage", "(16-17)% chance to Blind Enemies on hit", statOrder = { 1117, 2140 }, level = 72, group = "LocalIncreasedPhysicalDamageAndBlindChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "unveiled_mod", "damage", "physical", "attack" }, "(95-105)% increased Physical Damage", "(18-20)% chance to Blind Enemies on hit", statOrder = { 1117, 2140 }, level = 81, group = "LocalIncreasedPhysicalDamageAndBlindChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "chaos_damage", "bleed", "poison", "unveiled_mod", "damage", "physical", "chaos", "attack", "ailment" }, "(81-85)% increased Physical Damage", "(13-15)% chance to Poison on Hit", statOrder = { 1117, 7593 }, level = 60, group = "LocalIncreasedPhysicalDamageAndPoisonChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "chaos_damage", "bleed", "poison", "unveiled_mod", "damage", "physical", "chaos", "attack", "ailment" }, "(86-94)% increased Physical Damage", "(16-17)% chance to Poison on Hit", statOrder = { 1117, 7593 }, level = 72, group = "LocalIncreasedPhysicalDamageAndPoisonChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "chaos_damage", "bleed", "poison", "unveiled_mod", "damage", "physical", "chaos", "attack", "ailment" }, "(95-105)% increased Physical Damage", "(18-20)% chance to Poison on Hit", statOrder = { 1117, 7593 }, level = 81, group = "LocalIncreasedPhysicalDamageAndPoisonChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "ailment" }, "(60-64)% increased Fire Damage", "(21-24)% chance to Ignite", statOrder = { 1241, 1903 }, level = 60, group = "FireDamageAndChanceToIgnite", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "ailment" }, "(65-72)% increased Fire Damage", "(25-28)% chance to Ignite", statOrder = { 1241, 1903 }, level = 72, group = "FireDamageAndChanceToIgnite", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "ailment" }, "(73-80)% increased Fire Damage", "(29-34)% chance to Ignite", statOrder = { 1241, 1903 }, level = 81, group = "FireDamageAndChanceToIgnite", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "ailment" }, "(36-41)% increased Fire Damage", "(13-15)% chance to Ignite", statOrder = { 1241, 1903 }, level = 60, group = "FireDamageAndChanceToIgnite", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "ailment" }, "(42-50)% increased Fire Damage", "(16-17)% chance to Ignite", statOrder = { 1241, 1903 }, level = 72, group = "FireDamageAndChanceToIgnite", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "ailment" }, "(51-60)% increased Fire Damage", "(18-20)% chance to Ignite", statOrder = { 1241, 1903 }, level = 81, group = "FireDamageAndChanceToIgnite", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "cold", "ailment" }, "(60-64)% increased Cold Damage", "(21-24)% chance to Freeze", statOrder = { 1250, 1906 }, level = 60, group = "ColdDamageAndBaseChanceToFreeze", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "cold", "ailment" }, "(65-72)% increased Cold Damage", "(25-28)% chance to Freeze", statOrder = { 1250, 1906 }, level = 72, group = "ColdDamageAndBaseChanceToFreeze", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "cold", "ailment" }, "(73-80)% increased Cold Damage", "(29-34)% chance to Freeze", statOrder = { 1250, 1906 }, level = 81, group = "ColdDamageAndBaseChanceToFreeze", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "cold", "ailment" }, "(36-41)% increased Cold Damage", "(13-15)% chance to Freeze", statOrder = { 1250, 1906 }, level = 60, group = "ColdDamageAndBaseChanceToFreeze", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "cold", "ailment" }, "(42-50)% increased Cold Damage", "(16-17)% chance to Freeze", statOrder = { 1250, 1906 }, level = 72, group = "ColdDamageAndBaseChanceToFreeze", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "cold", "ailment" }, "(51-60)% increased Cold Damage", "(18-20)% chance to Freeze", statOrder = { 1250, 1906 }, level = 81, group = "ColdDamageAndBaseChanceToFreeze", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "lightning", "ailment" }, "(60-64)% increased Lightning Damage", "(21-24)% chance to Shock", statOrder = { 1261, 1910 }, level = 60, group = "LightningDamageAndChanceToShock", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "lightning", "ailment" }, "(65-72)% increased Lightning Damage", "(25-28)% chance to Shock", statOrder = { 1261, 1910 }, level = 72, group = "LightningDamageAndChanceToShock", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "lightning", "ailment" }, "(73-80)% increased Lightning Damage", "(29-34)% chance to Shock", statOrder = { 1261, 1910 }, level = 81, group = "LightningDamageAndChanceToShock", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "lightning", "ailment" }, "(36-41)% increased Lightning Damage", "(13-15)% chance to Shock", statOrder = { 1261, 1910 }, level = 60, group = "LightningDamageAndChanceToShock", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "lightning", "ailment" }, "(42-50)% increased Lightning Damage", "(16-17)% chance to Shock", statOrder = { 1261, 1910 }, level = 72, group = "LightningDamageAndChanceToShock", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "lightning", "ailment" }, "(51-60)% increased Lightning Damage", "(18-20)% chance to Shock", statOrder = { 1261, 1910 }, level = 81, group = "LightningDamageAndChanceToShock", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos" }, "(53-60)% increased Chaos Damage", "Chaos Skills have (15-17)% increased Skill Effect Duration", statOrder = { 1269, 1777 }, level = 60, group = "ChaosDamageAndChaosSkillDuration", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos" }, "(61-68)% increased Chaos Damage", "Chaos Skills have (18-20)% increased Skill Effect Duration", statOrder = { 1269, 1777 }, level = 72, group = "ChaosDamageAndChaosSkillDuration", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos" }, "(69-75)% increased Chaos Damage", "Chaos Skills have (21-23)% increased Skill Effect Duration", statOrder = { 1269, 1777 }, level = 81, group = "ChaosDamageAndChaosSkillDuration", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos" }, "(35-39)% increased Chaos Damage", "Chaos Skills have (7-8)% increased Skill Effect Duration", statOrder = { 1269, 1777 }, level = 60, group = "ChaosDamageAndChaosSkillDuration", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos" }, "(40-45)% increased Chaos Damage", "Chaos Skills have (9-10)% increased Skill Effect Duration", statOrder = { 1269, 1777 }, level = 72, group = "ChaosDamageAndChaosSkillDuration", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos" }, "(46-50)% increased Chaos Damage", "Chaos Skills have (11-12)% increased Skill Effect Duration", statOrder = { 1269, 1777 }, level = 81, group = "ChaosDamageAndChaosSkillDuration", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "resource", "unveiled_mod", "mana", "damage", "caster" }, "(60-64)% increased Spell Damage", "(16-20)% increased Mana Regeneration Rate", statOrder = { 1108, 1466 }, level = 60, group = "SpellDamageAndManaRegenerationRate", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "resource", "unveiled_mod", "mana", "damage", "caster" }, "(65-72)% increased Spell Damage", "(21-25)% increased Mana Regeneration Rate", statOrder = { 1108, 1466 }, level = 72, group = "SpellDamageAndManaRegenerationRate", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "resource", "unveiled_mod", "mana", "damage", "caster" }, "(73-80)% increased Spell Damage", "(26-30)% increased Mana Regeneration Rate", statOrder = { 1108, 1466 }, level = 81, group = "SpellDamageAndManaRegenerationRate", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "resource", "unveiled_mod", "mana", "damage", "caster" }, "(36-41)% increased Spell Damage", "(7-9)% increased Mana Regeneration Rate", statOrder = { 1108, 1466 }, level = 60, group = "SpellDamageAndManaRegenerationRate", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "resource", "unveiled_mod", "mana", "damage", "caster" }, "(42-50)% increased Spell Damage", "(10-12)% increased Mana Regeneration Rate", statOrder = { 1108, 1466 }, level = 72, group = "SpellDamageAndManaRegenerationRate", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "resource", "unveiled_mod", "mana", "damage", "caster" }, "(51-60)% increased Spell Damage", "(13-15)% increased Mana Regeneration Rate", statOrder = { 1108, 1466 }, level = 81, group = "SpellDamageAndManaRegenerationRate", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "chaos_damage", "unveiled_mod", "damage", "chaos", "caster" }, "(53-58)% increased Spell Damage", "Gain (3-4)% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 1108, 9009 }, level = 60, group = "SpellDamageAndNonChaosDamageToAddAsChaosDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "chaos_damage", "unveiled_mod", "damage", "chaos", "caster" }, "(59-66)% increased Spell Damage", "Gain (5-6)% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 1108, 9009 }, level = 72, group = "SpellDamageAndNonChaosDamageToAddAsChaosDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "chaos_damage", "unveiled_mod", "damage", "chaos", "caster" }, "(67-75)% increased Spell Damage", "Gain (7-8)% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 1108, 9009 }, level = 81, group = "SpellDamageAndNonChaosDamageToAddAsChaosDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "chaos_damage", "unveiled_mod", "damage", "chaos", "caster" }, "(38-40)% increased Spell Damage", "Gain 2% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 1108, 9009 }, level = 60, group = "SpellDamageAndNonChaosDamageToAddAsChaosDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "chaos_damage", "unveiled_mod", "damage", "chaos", "caster" }, "(41-45)% increased Spell Damage", "Gain 3% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 1108, 9009 }, level = 72, group = "SpellDamageAndNonChaosDamageToAddAsChaosDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "chaos_damage", "unveiled_mod", "damage", "chaos", "caster" }, "(46-50)% increased Spell Damage", "Gain 4% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 1108, 9009 }, level = 81, group = "SpellDamageAndNonChaosDamageToAddAsChaosDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "damage", "minion" }, "Minions have (26-32)% increased maximum Life", "Minions deal (26-32)% increased Damage", statOrder = { 1647, 1852 }, level = 60, group = "MinionDamageAndMinionMaximumLife", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "damage", "minion" }, "Minions have (33-38)% increased maximum Life", "Minions deal (33-38)% increased Damage", statOrder = { 1647, 1852 }, level = 72, group = "MinionDamageAndMinionMaximumLife", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "damage", "minion" }, "Minions have (39-45)% increased maximum Life", "Minions deal (39-45)% increased Damage", statOrder = { 1647, 1852 }, level = 81, group = "MinionDamageAndMinionMaximumLife", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "damage", "minion" }, "Minions have (16-19)% increased maximum Life", "Minions deal (16-19)% increased Damage", statOrder = { 1647, 1852 }, level = 60, group = "MinionDamageAndMinionMaximumLife", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "damage", "minion" }, "Minions have (20-24)% increased maximum Life", "Minions deal (20-24)% increased Damage", statOrder = { 1647, 1852 }, level = 72, group = "MinionDamageAndMinionMaximumLife", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "damage", "minion" }, "Minions have (25-28)% increased maximum Life", "Minions deal (25-28)% increased Damage", statOrder = { 1647, 1852 }, level = 81, group = "MinionDamageAndMinionMaximumLife", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attack", "caster", "speed", "minion" }, "Minions have (19-21)% increased Attack Speed", "Minions have (19-21)% increased Cast Speed", statOrder = { 2781, 2782 }, level = 60, group = "MinionAttackAndCastSpeedOnWeapon", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attack", "caster", "speed", "minion" }, "Minions have (22-24)% increased Attack Speed", "Minions have (22-24)% increased Cast Speed", statOrder = { 2781, 2782 }, level = 72, group = "MinionAttackAndCastSpeedOnWeapon", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attack", "caster", "speed", "minion" }, "Minions have (25-28)% increased Attack Speed", "Minions have (25-28)% increased Cast Speed", statOrder = { 2781, 2782 }, level = 81, group = "MinionAttackAndCastSpeedOnWeapon", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attack", "caster", "speed", "minion" }, "Minions have (10-11)% increased Attack Speed", "Minions have (10-11)% increased Cast Speed", statOrder = { 2781, 2782 }, level = 60, group = "MinionAttackAndCastSpeedOnWeapon", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attack", "caster", "speed", "minion" }, "Minions have (12-13)% increased Attack Speed", "Minions have (12-13)% increased Cast Speed", statOrder = { 2781, 2782 }, level = 72, group = "MinionAttackAndCastSpeedOnWeapon", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attack", "caster", "speed", "minion" }, "Minions have (14-15)% increased Attack Speed", "Minions have (14-15)% increased Cast Speed", statOrder = { 2781, 2782 }, level = 81, group = "MinionAttackAndCastSpeedOnWeapon", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "chaos_damage", "unveiled_mod", "damage", "chaos" }, "+(25-27)% to Chaos Damage over Time Multiplier", statOrder = { 1144 }, level = 60, group = "ChaosDamageOverTimeMultiplier", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "chaos_damage", "unveiled_mod", "damage", "chaos" }, "+(28-30)% to Chaos Damage over Time Multiplier", statOrder = { 1144 }, level = 72, group = "ChaosDamageOverTimeMultiplier", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "chaos_damage", "unveiled_mod", "damage", "chaos" }, "+(31-35)% to Chaos Damage over Time Multiplier", statOrder = { 1144 }, level = 81, group = "ChaosDamageOverTimeMultiplier", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "chaos_damage", "unveiled_mod", "damage", "chaos" }, "+(14-15)% to Chaos Damage over Time Multiplier", statOrder = { 1144 }, level = 60, group = "ChaosDamageOverTimeMultiplier", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "chaos_damage", "unveiled_mod", "damage", "chaos" }, "+(16-17)% to Chaos Damage over Time Multiplier", statOrder = { 1144 }, level = 72, group = "ChaosDamageOverTimeMultiplier", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "chaos_damage", "unveiled_mod", "damage", "chaos" }, "+(18-20)% to Chaos Damage over Time Multiplier", statOrder = { 1144 }, level = 81, group = "ChaosDamageOverTimeMultiplier", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "physical_damage", "unveiled_mod", "damage", "physical" }, "+(25-27)% to Physical Damage over Time Multiplier", statOrder = { 1132 }, level = 60, group = "PhysicalDamageOverTimeMultiplier", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "physical_damage", "unveiled_mod", "damage", "physical" }, "+(28-30)% to Physical Damage over Time Multiplier", statOrder = { 1132 }, level = 72, group = "PhysicalDamageOverTimeMultiplier", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "physical_damage", "unveiled_mod", "damage", "physical" }, "+(31-35)% to Physical Damage over Time Multiplier", statOrder = { 1132 }, level = 81, group = "PhysicalDamageOverTimeMultiplier", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "physical_damage", "unveiled_mod", "damage", "physical" }, "+(14-15)% to Physical Damage over Time Multiplier", statOrder = { 1132 }, level = 60, group = "PhysicalDamageOverTimeMultiplier", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "physical_damage", "unveiled_mod", "damage", "physical" }, "+(16-17)% to Physical Damage over Time Multiplier", statOrder = { 1132 }, level = 72, group = "PhysicalDamageOverTimeMultiplier", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "physical_damage", "unveiled_mod", "damage", "physical" }, "+(18-20)% to Physical Damage over Time Multiplier", statOrder = { 1132 }, level = 81, group = "PhysicalDamageOverTimeMultiplier", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "cold" }, "+(25-27)% to Cold Damage over Time Multiplier", statOrder = { 1141 }, level = 60, group = "ColdDamageOverTimeMultiplier", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "cold" }, "+(28-30)% to Cold Damage over Time Multiplier", statOrder = { 1141 }, level = 72, group = "ColdDamageOverTimeMultiplier", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "cold" }, "+(31-35)% to Cold Damage over Time Multiplier", statOrder = { 1141 }, level = 81, group = "ColdDamageOverTimeMultiplier", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "cold" }, "+(14-15)% to Cold Damage over Time Multiplier", statOrder = { 1141 }, level = 60, group = "ColdDamageOverTimeMultiplier", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "cold" }, "+(16-17)% to Cold Damage over Time Multiplier", statOrder = { 1141 }, level = 72, group = "ColdDamageOverTimeMultiplier", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "cold" }, "+(18-20)% to Cold Damage over Time Multiplier", statOrder = { 1141 }, level = 81, group = "ColdDamageOverTimeMultiplier", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "fire" }, "+(25-27)% to Fire Damage over Time Multiplier", statOrder = { 1136 }, level = 60, group = "FireDamageOverTimeMultiplier", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "fire" }, "+(28-30)% to Fire Damage over Time Multiplier", statOrder = { 1136 }, level = 72, group = "FireDamageOverTimeMultiplier", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "fire" }, "+(31-35)% to Fire Damage over Time Multiplier", statOrder = { 1136 }, level = 81, group = "FireDamageOverTimeMultiplier", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "fire" }, "+(14-15)% to Fire Damage over Time Multiplier", statOrder = { 1136 }, level = 60, group = "FireDamageOverTimeMultiplier", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "fire" }, "+(16-17)% to Fire Damage over Time Multiplier", statOrder = { 1136 }, level = 72, group = "FireDamageOverTimeMultiplier", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "fire" }, "+(18-20)% to Fire Damage over Time Multiplier", statOrder = { 1136 }, level = 81, group = "FireDamageOverTimeMultiplier", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "attack" }, "Attacks with this Weapon Penetrate (6-7)% Elemental Resistances", statOrder = { 3624 }, level = 60, group = "LocalAttackReduceEnemyElementalResistance", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "attack" }, "Attacks with this Weapon Penetrate (8-10)% Elemental Resistances", statOrder = { 3624 }, level = 72, group = "LocalAttackReduceEnemyElementalResistance", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "attack" }, "Attacks with this Weapon Penetrate (11-13)% Elemental Resistances", statOrder = { 3624 }, level = 81, group = "LocalAttackReduceEnemyElementalResistance", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos", "attack" }, "Attacks with this Weapon Penetrate (6-7)% Chaos Resistance", statOrder = { 7481 }, level = 60, group = "LocalChaosPenetration", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos", "attack" }, "Attacks with this Weapon Penetrate (8-10)% Chaos Resistance", statOrder = { 7481 }, level = 72, group = "LocalChaosPenetration", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos", "attack" }, "Attacks with this Weapon Penetrate (11-13)% Chaos Resistance", statOrder = { 7481 }, level = 81, group = "LocalChaosPenetration", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage" }, "(6-7)% chance to deal Double Damage", statOrder = { 5369 }, level = 60, group = "DoubleDamageChance", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage" }, "(8-10)% chance to deal Double Damage", statOrder = { 5369 }, level = 72, group = "DoubleDamageChance", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage" }, "3% chance to deal Double Damage", statOrder = { 5369 }, level = 60, group = "DoubleDamageChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage" }, "(4-5)% chance to deal Double Damage", statOrder = { 5369 }, level = 72, group = "DoubleDamageChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion" }, "(12-14)% increased Armour and Evasion", "+(8-9) to maximum Life", statOrder = { 1436, 1451 }, level = 60, group = "LocalIncreasedArmourAndEvasionAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion" }, "(15-17)% increased Armour and Evasion", "+(10-11) to maximum Life", statOrder = { 1436, 1451 }, level = 72, group = "LocalIncreasedArmourAndEvasionAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion" }, "(18-21)% increased Armour and Evasion", "+(12-14) to maximum Life", statOrder = { 1436, 1451 }, level = 81, group = "LocalIncreasedArmourAndEvasionAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "energy_shield" }, "(12-14)% increased Armour and Energy Shield", "+(8-9) to maximum Life", statOrder = { 1435, 1451 }, level = 60, group = "LocalIncreasedArmourAndEnergyShieldAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "energy_shield" }, "(15-17)% increased Armour and Energy Shield", "+(10-11) to maximum Life", statOrder = { 1435, 1451 }, level = 72, group = "LocalIncreasedArmourAndEnergyShieldAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "energy_shield" }, "(18-21)% increased Armour and Energy Shield", "+(12-14) to maximum Life", statOrder = { 1435, 1451 }, level = 81, group = "LocalIncreasedArmourAndEnergyShieldAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion", "energy_shield" }, "(12-14)% increased Evasion and Energy Shield", "+(8-9) to maximum Life", statOrder = { 1437, 1451 }, level = 60, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion", "energy_shield" }, "(15-17)% increased Evasion and Energy Shield", "+(10-11) to maximum Life", statOrder = { 1437, 1451 }, level = 72, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion", "energy_shield" }, "(18-21)% increased Evasion and Energy Shield", "+(12-14) to maximum Life", statOrder = { 1437, 1451 }, level = 81, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour" }, "(12-14)% increased Armour", "+(8-9) to maximum Life", statOrder = { 1425, 1451 }, level = 60, group = "LocalIncreasedArmourAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour" }, "(15-17)% increased Armour", "+(10-11) to maximum Life", statOrder = { 1425, 1451 }, level = 72, group = "LocalIncreasedArmourAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour" }, "(18-21)% increased Armour", "+(12-14) to maximum Life", statOrder = { 1425, 1451 }, level = 81, group = "LocalIncreasedArmourAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion" }, "(12-14)% increased Evasion Rating", "+(8-9) to maximum Life", statOrder = { 1433, 1451 }, level = 60, group = "LocalIncreasedEvasionAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion" }, "(15-17)% increased Evasion Rating", "+(10-11) to maximum Life", statOrder = { 1433, 1451 }, level = 72, group = "LocalIncreasedEvasionAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion" }, "(18-21)% increased Evasion Rating", "+(12-14) to maximum Life", statOrder = { 1433, 1451 }, level = 81, group = "LocalIncreasedEvasionAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "energy_shield" }, "(12-14)% increased Energy Shield", "+(8-9) to maximum Life", statOrder = { 1442, 1451 }, level = 60, group = "LocalIncreasedEnergyShieldAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "energy_shield" }, "(15-17)% increased Energy Shield", "+(10-11) to maximum Life", statOrder = { 1442, 1451 }, level = 72, group = "LocalIncreasedEnergyShieldAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "energy_shield" }, "(18-21)% increased Energy Shield", "+(12-14) to maximum Life", statOrder = { 1442, 1451 }, level = 81, group = "LocalIncreasedEnergyShieldAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion", "energy_shield" }, "(12-14)% increased Armour, Evasion and Energy Shield", "+(8-9) to maximum Life", statOrder = { 1438, 1451 }, level = 60, group = "LocalIncreasedDefencesAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion", "energy_shield" }, "(15-17)% increased Armour, Evasion and Energy Shield", "+(10-11) to maximum Life", statOrder = { 1438, 1451 }, level = 72, group = "LocalIncreasedDefencesAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion", "energy_shield" }, "(18-21)% increased Armour, Evasion and Energy Shield", "+(12-14) to maximum Life", statOrder = { 1438, 1451 }, level = 81, group = "LocalIncreasedDefencesAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion" }, "(12-14)% increased Armour and Evasion", "+(10-11) to maximum Life", statOrder = { 1436, 1451 }, level = 60, group = "LocalIncreasedArmourAndEvasionAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion" }, "(15-17)% increased Armour and Evasion", "+(12-13) to maximum Life", statOrder = { 1436, 1451 }, level = 72, group = "LocalIncreasedArmourAndEvasionAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion" }, "(18-21)% increased Armour and Evasion", "+(14-16) to maximum Life", statOrder = { 1436, 1451 }, level = 81, group = "LocalIncreasedArmourAndEvasionAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "energy_shield" }, "(12-14)% increased Armour and Energy Shield", "+(10-11) to maximum Life", statOrder = { 1435, 1451 }, level = 60, group = "LocalIncreasedArmourAndEnergyShieldAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "energy_shield" }, "(15-17)% increased Armour and Energy Shield", "+(12-13) to maximum Life", statOrder = { 1435, 1451 }, level = 72, group = "LocalIncreasedArmourAndEnergyShieldAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "energy_shield" }, "(18-21)% increased Armour and Energy Shield", "+(14-16) to maximum Life", statOrder = { 1435, 1451 }, level = 81, group = "LocalIncreasedArmourAndEnergyShieldAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion", "energy_shield" }, "(12-14)% increased Evasion and Energy Shield", "+(10-11) to maximum Life", statOrder = { 1437, 1451 }, level = 60, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion", "energy_shield" }, "(15-17)% increased Evasion and Energy Shield", "+(12-13) to maximum Life", statOrder = { 1437, 1451 }, level = 72, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion", "energy_shield" }, "(18-21)% increased Evasion and Energy Shield", "+(14-16) to maximum Life", statOrder = { 1437, 1451 }, level = 81, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour" }, "(12-14)% increased Armour", "+(10-11) to maximum Life", statOrder = { 1425, 1451 }, level = 60, group = "LocalIncreasedArmourAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour" }, "(15-17)% increased Armour", "+(12-13) to maximum Life", statOrder = { 1425, 1451 }, level = 72, group = "LocalIncreasedArmourAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour" }, "(18-21)% increased Armour", "+(14-16) to maximum Life", statOrder = { 1425, 1451 }, level = 81, group = "LocalIncreasedArmourAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion" }, "(12-14)% increased Evasion Rating", "+(10-11) to maximum Life", statOrder = { 1433, 1451 }, level = 60, group = "LocalIncreasedEvasionAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion" }, "(15-17)% increased Evasion Rating", "+(12-13) to maximum Life", statOrder = { 1433, 1451 }, level = 72, group = "LocalIncreasedEvasionAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion" }, "(18-21)% increased Evasion Rating", "+(14-16) to maximum Life", statOrder = { 1433, 1451 }, level = 81, group = "LocalIncreasedEvasionAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "energy_shield" }, "(12-14)% increased Energy Shield", "+(10-11) to maximum Life", statOrder = { 1442, 1451 }, level = 60, group = "LocalIncreasedEnergyShieldAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "energy_shield" }, "(15-17)% increased Energy Shield", "+(12-13) to maximum Life", statOrder = { 1442, 1451 }, level = 72, group = "LocalIncreasedEnergyShieldAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "energy_shield" }, "(18-21)% increased Energy Shield", "+(14-16) to maximum Life", statOrder = { 1442, 1451 }, level = 81, group = "LocalIncreasedEnergyShieldAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion", "energy_shield" }, "(12-14)% increased Armour, Evasion and Energy Shield", "+(10-11) to maximum Life", statOrder = { 1438, 1451 }, level = 60, group = "LocalIncreasedDefencesAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion", "energy_shield" }, "(15-17)% increased Armour, Evasion and Energy Shield", "+(12-13) to maximum Life", statOrder = { 1438, 1451 }, level = 72, group = "LocalIncreasedDefencesAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion", "energy_shield" }, "(18-21)% increased Armour, Evasion and Energy Shield", "+(14-16) to maximum Life", statOrder = { 1438, 1451 }, level = 81, group = "LocalIncreasedDefencesAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion" }, "(12-14)% increased Armour and Evasion", "+(13-14) to maximum Life", statOrder = { 1436, 1451 }, level = 60, group = "LocalIncreasedArmourAndEvasionAndLife", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion" }, "(15-17)% increased Armour and Evasion", "+(15-16) to maximum Life", statOrder = { 1436, 1451 }, level = 72, group = "LocalIncreasedArmourAndEvasionAndLife", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion" }, "(18-21)% increased Armour and Evasion", "+(17-19) to maximum Life", statOrder = { 1436, 1451 }, level = 81, group = "LocalIncreasedArmourAndEvasionAndLife", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "energy_shield" }, "(12-14)% increased Armour and Energy Shield", "+(13-14) to maximum Life", statOrder = { 1435, 1451 }, level = 60, group = "LocalIncreasedArmourAndEnergyShieldAndLife", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "energy_shield" }, "(15-17)% increased Armour and Energy Shield", "+(15-16) to maximum Life", statOrder = { 1435, 1451 }, level = 72, group = "LocalIncreasedArmourAndEnergyShieldAndLife", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "energy_shield" }, "(18-21)% increased Armour and Energy Shield", "+(17-19) to maximum Life", statOrder = { 1435, 1451 }, level = 81, group = "LocalIncreasedArmourAndEnergyShieldAndLife", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion", "energy_shield" }, "(12-14)% increased Evasion and Energy Shield", "+(13-14) to maximum Life", statOrder = { 1437, 1451 }, level = 60, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion", "energy_shield" }, "(15-17)% increased Evasion and Energy Shield", "+(15-16) to maximum Life", statOrder = { 1437, 1451 }, level = 72, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion", "energy_shield" }, "(18-21)% increased Evasion and Energy Shield", "+(17-19) to maximum Life", statOrder = { 1437, 1451 }, level = 81, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour" }, "(12-14)% increased Armour", "+(13-14) to maximum Life", statOrder = { 1425, 1451 }, level = 60, group = "LocalIncreasedArmourAndLife", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour" }, "(15-17)% increased Armour", "+(15-16) to maximum Life", statOrder = { 1425, 1451 }, level = 72, group = "LocalIncreasedArmourAndLife", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour" }, "(18-21)% increased Armour", "+(17-19) to maximum Life", statOrder = { 1425, 1451 }, level = 81, group = "LocalIncreasedArmourAndLife", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion" }, "(12-14)% increased Evasion Rating", "+(13-14) to maximum Life", statOrder = { 1433, 1451 }, level = 60, group = "LocalIncreasedEvasionAndLife", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion" }, "(15-17)% increased Evasion Rating", "+(15-16) to maximum Life", statOrder = { 1433, 1451 }, level = 72, group = "LocalIncreasedEvasionAndLife", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion" }, "(18-21)% increased Evasion Rating", "+(17-19) to maximum Life", statOrder = { 1433, 1451 }, level = 81, group = "LocalIncreasedEvasionAndLife", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "energy_shield" }, "(12-14)% increased Energy Shield", "+(13-14) to maximum Life", statOrder = { 1442, 1451 }, level = 60, group = "LocalIncreasedEnergyShieldAndLife", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "energy_shield" }, "(15-17)% increased Energy Shield", "+(15-16) to maximum Life", statOrder = { 1442, 1451 }, level = 72, group = "LocalIncreasedEnergyShieldAndLife", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "energy_shield" }, "(18-21)% increased Energy Shield", "+(17-19) to maximum Life", statOrder = { 1442, 1451 }, level = 81, group = "LocalIncreasedEnergyShieldAndLife", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion", "energy_shield" }, "(12-14)% increased Armour, Evasion and Energy Shield", "+(13-14) to maximum Life", statOrder = { 1438, 1451 }, level = 60, group = "LocalIncreasedDefencesAndLife", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion", "energy_shield" }, "(15-17)% increased Armour, Evasion and Energy Shield", "+(15-16) to maximum Life", statOrder = { 1438, 1451 }, level = 72, group = "LocalIncreasedDefencesAndLife", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion", "energy_shield" }, "(18-21)% increased Armour, Evasion and Energy Shield", "+(17-19) to maximum Life", statOrder = { 1438, 1451 }, level = 81, group = "LocalIncreasedDefencesAndLife", types = { ["Body Armour"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attribute" }, "+(10-15) to Strength and Dexterity", statOrder = { 1065 }, level = 60, group = "StrengthAndDexterity", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, ["Amulet"] = true, ["Belt"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attribute" }, "+(16-20) to Strength and Dexterity", statOrder = { 1065 }, level = 72, group = "StrengthAndDexterity", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, ["Amulet"] = true, ["Belt"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attribute" }, "+(21-25) to Strength and Dexterity", statOrder = { 1065 }, level = 81, group = "StrengthAndDexterity", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, ["Amulet"] = true, ["Belt"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attribute" }, "+(10-15) to Dexterity and Intelligence", statOrder = { 1067 }, level = 60, group = "DexterityAndIntelligence", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, ["Amulet"] = true, ["Belt"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attribute" }, "+(16-20) to Dexterity and Intelligence", statOrder = { 1067 }, level = 72, group = "DexterityAndIntelligence", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, ["Amulet"] = true, ["Belt"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attribute" }, "+(21-25) to Dexterity and Intelligence", statOrder = { 1067 }, level = 81, group = "DexterityAndIntelligence", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, ["Amulet"] = true, ["Belt"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attribute" }, "+(10-15) to Strength and Intelligence", statOrder = { 1066 }, level = 60, group = "StrengthAndIntelligence", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, ["Amulet"] = true, ["Belt"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attribute" }, "+(16-20) to Strength and Intelligence", statOrder = { 1066 }, level = 72, group = "StrengthAndIntelligence", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, ["Amulet"] = true, ["Belt"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attribute" }, "+(21-25) to Strength and Intelligence", statOrder = { 1066 }, level = 81, group = "StrengthAndIntelligence", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, ["Amulet"] = true, ["Belt"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "endurance_charge", "unveiled_mod" }, "+1 to Minimum Endurance Charges", statOrder = { 1684 }, level = 75, group = "MinimumEnduranceCharges", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "power_charge", "unveiled_mod" }, "+1 to Minimum Power Charges", statOrder = { 1694 }, level = 75, group = "MinimumPowerCharges", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "frenzy_charge", "unveiled_mod" }, "+1 to Minimum Frenzy Charges", statOrder = { 1689 }, level = 75, group = "MinimumFrenzyCharges", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "mana" }, "+(26-30) to maximum Mana", "Regenerate 2 Mana per second", statOrder = { 1461, 1464 }, level = 60, group = "IncreasedManaAndRegen", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "mana" }, "+(31-35) to maximum Mana", "Regenerate 3 Mana per second", statOrder = { 1461, 1464 }, level = 72, group = "IncreasedManaAndRegen", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "mana" }, "+(36-40) to maximum Mana", "Regenerate 4 Mana per second", statOrder = { 1461, 1464 }, level = 81, group = "IncreasedManaAndRegen", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "mana" }, "+(26-30) to maximum Mana", "3% reduced Mana Cost of Skills", statOrder = { 1461, 1764 }, level = 60, group = "ManaAndManaCostPercent", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "mana" }, "+(31-35) to maximum Mana", "4% reduced Mana Cost of Skills", statOrder = { 1461, 1764 }, level = 72, group = "ManaAndManaCostPercent", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "mana" }, "+(36-40) to maximum Mana", "5% reduced Mana Cost of Skills", statOrder = { 1461, 1764 }, level = 81, group = "ManaAndManaCostPercent", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "mana" }, "+(26-30) to maximum Mana", "4% of Damage taken Recouped as Mana", statOrder = { 1461, 2331 }, level = 60, group = "ManaAndDamageTakenGoesToManaPercent", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "mana" }, "+(31-35) to maximum Mana", "5% of Damage taken Recouped as Mana", statOrder = { 1461, 2331 }, level = 72, group = "ManaAndDamageTakenGoesToManaPercent", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "mana" }, "+(36-40) to maximum Mana", "6% of Damage taken Recouped as Mana", statOrder = { 1461, 2331 }, level = 81, group = "ManaAndDamageTakenGoesToManaPercent", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attack", "caster", "speed" }, "3% increased Attack and Cast Speed", statOrder = { 1923 }, level = 60, group = "AttackAndCastSpeed", types = { ["Amulet"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attack", "caster", "speed" }, "4% increased Attack and Cast Speed", statOrder = { 1923 }, level = 25, group = "AttackAndCastSpeed", types = { ["Amulet"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attack", "caster", "speed" }, "(5-6)% increased Attack and Cast Speed", statOrder = { 1923 }, level = 50, group = "AttackAndCastSpeed", types = { ["Amulet"] = true, ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "speed" }, "(13-14)% increased Movement Speed", "(6-9)% increased Movement Speed if you haven't been Hit Recently", statOrder = { 1679, 3089 }, level = 60, group = "MovementVelocityAndMovementVelocityIfNotHitRecently", types = { ["Boots"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "speed" }, "(15-17)% increased Movement Speed", "(6-9)% increased Movement Speed if you haven't been Hit Recently", statOrder = { 1679, 3089 }, level = 72, group = "MovementVelocityAndMovementVelocityIfNotHitRecently", types = { ["Boots"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "speed" }, "(18-20)% increased Movement Speed", "(6-9)% increased Movement Speed if you haven't been Hit Recently", statOrder = { 1679, 3089 }, level = 81, group = "MovementVelocityAndMovementVelocityIfNotHitRecently", types = { ["Boots"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "speed" }, "(13-14)% increased Movement Speed", "(8-12)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1679, 2865 }, level = 60, group = "MovementVelocityAndOnslaughtOnKill", types = { ["Boots"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "speed" }, "(15-17)% increased Movement Speed", "(8-12)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1679, 2865 }, level = 72, group = "MovementVelocityAndOnslaughtOnKill", types = { ["Boots"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "speed" }, "(18-20)% increased Movement Speed", "(8-12)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1679, 2865 }, level = 81, group = "MovementVelocityAndOnslaughtOnKill", types = { ["Boots"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "elemental", "cold", "speed", "ailment" }, "(13-14)% increased Movement Speed", "100% chance to Avoid being Chilled", statOrder = { 1679, 1725 }, level = 60, group = "MovementVelocityAndCannotBeChilled", types = { ["Boots"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "elemental", "cold", "speed", "ailment" }, "(15-17)% increased Movement Speed", "100% chance to Avoid being Chilled", statOrder = { 1679, 1725 }, level = 72, group = "MovementVelocityAndCannotBeChilled", types = { ["Boots"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "elemental", "cold", "speed", "ailment" }, "(18-20)% increased Movement Speed", "100% chance to Avoid being Chilled", statOrder = { 1679, 1725 }, level = 81, group = "MovementVelocityAndCannotBeChilled", types = { ["Boots"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "defences", "armour", "evasion" }, "+(105-150) to Armour and Evasion Rating", statOrder = { 4127 }, level = 60, group = "ArmourAndEvasionRating", types = { ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "defences", "armour", "evasion" }, "+(151-213) to Armour and Evasion Rating", statOrder = { 4127 }, level = 72, group = "ArmourAndEvasionRating", types = { ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "defences", "armour", "evasion" }, "+(214-285) to Armour and Evasion Rating", statOrder = { 4127 }, level = 81, group = "ArmourAndEvasionRating", types = { ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "defences", "armour", "energy_shield" }, "+(105-150) to Armour", "+(11-15) to maximum Energy Shield", statOrder = { 1422, 1440 }, level = 60, group = "ArmourAndEnergyShield", types = { ["Belt"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "defences", "armour", "energy_shield" }, "+(151-213) to Armour", "+(16-20) to maximum Energy Shield", statOrder = { 1422, 1440 }, level = 72, group = "ArmourAndEnergyShield", types = { ["Belt"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "defences", "armour", "energy_shield" }, "+(214-285) to Armour", "+(21-25) to maximum Energy Shield", statOrder = { 1422, 1440 }, level = 81, group = "ArmourAndEnergyShield", types = { ["Belt"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "defences", "evasion", "energy_shield" }, "+(105-150) to Evasion Rating", "+(11-15) to maximum Energy Shield", statOrder = { 1427, 1440 }, level = 60, group = "EvasionRatingAndEnergyShield", types = { ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "defences", "evasion", "energy_shield" }, "+(151-213) to Evasion Rating", "+(16-20) to maximum Energy Shield", statOrder = { 1427, 1440 }, level = 72, group = "EvasionRatingAndEnergyShield", types = { ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "defences", "evasion", "energy_shield" }, "+(214-285) to Evasion Rating", "+(21-25) to maximum Energy Shield", statOrder = { 1427, 1440 }, level = 81, group = "EvasionRatingAndEnergyShield", types = { ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "flask", "unveiled_mod" }, "20% reduced Flask Charges gained", "Flasks applied to you have (8-10)% increased Effect", statOrder = { 2060, 2617 }, level = 60, group = "FlaskEffectAndFlaskChargesGained", types = { ["Belt"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "flask", "unveiled_mod" }, "33% reduced Flask Charges gained", "Flasks applied to you have (11-14)% increased Effect", statOrder = { 2060, 2617 }, level = 75, group = "FlaskEffectAndFlaskChargesGained", types = { ["Belt"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod" }, "(6-8)% increased Cooldown Recovery Rate", statOrder = { 4822 }, level = 60, group = "GlobalCooldownRecovery", types = { ["Belt"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod" }, "(9-12)% increased Cooldown Recovery Rate", statOrder = { 4822 }, level = 75, group = "GlobalCooldownRecovery", types = { ["Belt"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage" }, "(5-6)% increased Damage per Endurance Charge", statOrder = { 3065 }, level = 60, group = "DamagePerEnduranceCharge", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage" }, "(3-4)% increased Damage per Endurance Charge", statOrder = { 3065 }, level = 60, group = "DamagePerEnduranceCharge", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage" }, "(5-6)% increased Damage per Frenzy Charge", statOrder = { 3152 }, level = 60, group = "DamagePerFrenzyCharge", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage" }, "(3-4)% increased Damage per Frenzy Charge", statOrder = { 3152 }, level = 60, group = "DamagePerFrenzyCharge", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage" }, "(5-6)% increased Damage per Power Charge", statOrder = { 5766 }, level = 60, group = "IncreasedDamagePerPowerCharge", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage" }, "(3-4)% increased Damage per Power Charge", statOrder = { 5766 }, level = 60, group = "IncreasedDamagePerPowerCharge", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "elemental_damage", "unveiled_mod", "damage", "physical", "elemental", "fire" }, "(20-25)% of Physical Damage Converted to Fire Damage", statOrder = { 1834 }, level = 60, group = "ConvertPhysicalToFire", types = { ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "elemental_damage", "unveiled_mod", "damage", "physical", "elemental", "cold" }, "(20-25)% of Physical Damage Converted to Cold Damage", statOrder = { 1836 }, level = 60, group = "ConvertPhysicalToCold", types = { ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "elemental_damage", "unveiled_mod", "damage", "physical", "elemental", "lightning" }, "(20-25)% of Physical Damage Converted to Lightning Damage", statOrder = { 1838 }, level = 60, group = "ConvertPhysicalToLightning", types = { ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "minion" }, "+1 to maximum number of Raised Zombies", "+1 to maximum number of Skeletons", statOrder = { 2037, 2039 }, level = 60, group = "MaximumMinionCount", types = { ["Helmet"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "ailment" }, "(16-22)% increased Effect of Non-Damaging Ailments", statOrder = { 9017 }, level = 60, group = "IncreasedAilmentEffectOnEnemies", types = { ["Boots"] = true, ["Amulet"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "ailment" }, "(23-30)% increased Effect of Non-Damaging Ailments", statOrder = { 9017 }, level = 75, group = "IncreasedAilmentEffectOnEnemies", types = { ["Boots"] = true, ["Amulet"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "caster", "curse" }, "(4-5)% increased Effect of your Curses", statOrder = { 2472 }, level = 60, group = "CurseEffectiveness", types = { ["Shield"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "caster", "curse" }, "(6-7)% increased Effect of your Curses", statOrder = { 2472 }, level = 75, group = "CurseEffectiveness", types = { ["Shield"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "elemental" }, "(6-7)% chance to Avoid Elemental Damage from Hits during Soul Gain Prevention", statOrder = { 4762 }, level = 60, group = "AvoidElementalDamageChanceDuringSoulGainPrevention", types = { ["Body Armour"] = true, ["Helmet"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "elemental" }, "(8-9)% chance to Avoid Elemental Damage from Hits during Soul Gain Prevention", statOrder = { 4762 }, level = 75, group = "AvoidElementalDamageChanceDuringSoulGainPrevention", types = { ["Body Armour"] = true, ["Helmet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "physical" }, "+(1000-1600) to Armour during Soul Gain Prevention", statOrder = { 9158 }, level = 60, group = "PhysicalDamageReductionRatingDuringSoulGainPrevention", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "physical" }, "+(1601-2200) to Armour during Soul Gain Prevention", statOrder = { 9158 }, level = 72, group = "PhysicalDamageReductionRatingDuringSoulGainPrevention", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "physical" }, "+(2201-3000) to Armour during Soul Gain Prevention", statOrder = { 9158 }, level = 81, group = "PhysicalDamageReductionRatingDuringSoulGainPrevention", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod" }, "You have Onslaught during Soul Gain Prevention", statOrder = { 6445 }, level = 50, group = "GainOnslaughtDuringSoulGainPrevention", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage" }, "(30-40)% increased Damage with Non-Vaal Skills during Soul Gain Prevention", statOrder = { 5784 }, level = 60, group = "DamageWithNonVaalSkillsDuringSoulGainPrevention", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage" }, "(41-50)% increased Damage with Non-Vaal Skills during Soul Gain Prevention", statOrder = { 5784 }, level = 72, group = "DamageWithNonVaalSkillsDuringSoulGainPrevention", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage" }, "(51-60)% increased Damage with Non-Vaal Skills during Soul Gain Prevention", statOrder = { 5784 }, level = 81, group = "DamageWithNonVaalSkillsDuringSoulGainPrevention", types = { ["Boots"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "gem" }, "+1 to Level of Socketed AoE Gems", "(8-10)% increased Area of Effect", statOrder = { 155, 1761 }, level = 60, group = "SkillAreaOfEffectPercentAndAreaOfEffectGemLevel", types = { ["Helmet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "gem" }, "+1 to Level of Socketed Projectile Gems", "Projectiles Pierce an additional Target", statOrder = { 156, 1671 }, level = 60, group = "ProjectilePierceAndProjectileGemLevel", types = { ["Helmet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "attack", "attack", "gem" }, "+1 to Level of Socketed Melee Gems", "+0.2 metres to Melee Strike Range", statOrder = { 158, 2410 }, level = 60, group = "MeleeRangeAndMeleeGemLevel", types = { ["Helmet"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage", "critical" }, "+(25-31)% Critical Strike Multiplier while a Rare or Unique Enemy is Nearby", statOrder = { 5664 }, level = 60, group = "CriticalStrikeMultiplierIfRareOrUniqueEnemyNearby", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage", "critical" }, "+(32-38)% Critical Strike Multiplier while a Rare or Unique Enemy is Nearby", statOrder = { 5664 }, level = 72, group = "CriticalStrikeMultiplierIfRareOrUniqueEnemyNearby", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage", "critical" }, "+(39-45)% Critical Strike Multiplier while a Rare or Unique Enemy is Nearby", statOrder = { 5664 }, level = 81, group = "CriticalStrikeMultiplierIfRareOrUniqueEnemyNearby", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage", "critical" }, "+(17-21)% Critical Strike Multiplier while a Rare or Unique Enemy is Nearby", statOrder = { 5664 }, level = 60, group = "CriticalStrikeMultiplierIfRareOrUniqueEnemyNearby", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage", "critical" }, "+(22-25)% Critical Strike Multiplier while a Rare or Unique Enemy is Nearby", statOrder = { 5664 }, level = 72, group = "CriticalStrikeMultiplierIfRareOrUniqueEnemyNearby", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage", "critical" }, "+(26-30)% Critical Strike Multiplier while a Rare or Unique Enemy is Nearby", statOrder = { 5664 }, level = 81, group = "CriticalStrikeMultiplierIfRareOrUniqueEnemyNearby", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attack", "speed" }, "(14-16)% increased Attack Speed while a Rare or Unique Enemy is Nearby", statOrder = { 4721 }, level = 60, group = "AttackSpeedPercentIfRareOrUniqueEnemyNearby", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attack", "speed" }, "(17-19)% increased Attack Speed while a Rare or Unique Enemy is Nearby", statOrder = { 4721 }, level = 72, group = "AttackSpeedPercentIfRareOrUniqueEnemyNearby", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attack", "speed" }, "(20-22)% increased Attack Speed while a Rare or Unique Enemy is Nearby", statOrder = { 4721 }, level = 81, group = "AttackSpeedPercentIfRareOrUniqueEnemyNearby", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attack", "speed" }, "7% increased Attack Speed while a Rare or Unique Enemy is Nearby", statOrder = { 4721 }, level = 60, group = "AttackSpeedPercentIfRareOrUniqueEnemyNearby", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attack", "speed" }, "(8-9)% increased Attack Speed while a Rare or Unique Enemy is Nearby", statOrder = { 4721 }, level = 72, group = "AttackSpeedPercentIfRareOrUniqueEnemyNearby", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attack", "speed" }, "(10-11)% increased Attack Speed while a Rare or Unique Enemy is Nearby", statOrder = { 4721 }, level = 81, group = "AttackSpeedPercentIfRareOrUniqueEnemyNearby", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "defences", "energy_shield" }, "Regenerate 90 Energy Shield per second while a Rare or Unique Enemy is Nearby", statOrder = { 6133 }, level = 60, group = "EnergyShieldRegenerationRatePerMinuteIfRareOrUniqueEnemyNearby", types = { ["Body Armour"] = true, ["Belt"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "defences", "energy_shield" }, "Regenerate 120 Energy Shield per second while a Rare or Unique Enemy is Nearby", statOrder = { 6133 }, level = 72, group = "EnergyShieldRegenerationRatePerMinuteIfRareOrUniqueEnemyNearby", types = { ["Body Armour"] = true, ["Belt"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "defences", "energy_shield" }, "Regenerate 150 Energy Shield per second while a Rare or Unique Enemy is Nearby", statOrder = { 6133 }, level = 81, group = "EnergyShieldRegenerationRatePerMinuteIfRareOrUniqueEnemyNearby", types = { ["Body Armour"] = true, ["Belt"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "frenzy_charge", "unveiled_mod", "critical" }, "(9-10)% increased Global Critical Strike Chance", "3% chance to gain a Frenzy Charge on Critical Strike", statOrder = { 1343, 6420 }, level = 60, group = "CriticalChanceAndGainFrenzyChargeOnCriticalStrikePercent", types = { ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "frenzy_charge", "unveiled_mod", "critical" }, "(11-12)% increased Global Critical Strike Chance", "4% chance to gain a Frenzy Charge on Critical Strike", statOrder = { 1343, 6420 }, level = 72, group = "CriticalChanceAndGainFrenzyChargeOnCriticalStrikePercent", types = { ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "frenzy_charge", "unveiled_mod", "critical" }, "(13-14)% increased Global Critical Strike Chance", "5% chance to gain a Frenzy Charge on Critical Strike", statOrder = { 1343, 6420 }, level = 81, group = "CriticalChanceAndGainFrenzyChargeOnCriticalStrikePercent", types = { ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "critical" }, "(11-12)% increased Global Critical Strike Chance", "(14-16)% increased Elemental Damage if you've dealt a Critical Strike Recently", statOrder = { 1343, 5991 }, level = 60, group = "CriticalChanceAndElementalDamagePercentIfHaveCritRecently", types = { ["Gloves"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "critical" }, "(13-14)% increased Global Critical Strike Chance", "(17-19)% increased Elemental Damage if you've dealt a Critical Strike Recently", statOrder = { 1343, 5991 }, level = 72, group = "CriticalChanceAndElementalDamagePercentIfHaveCritRecently", types = { ["Gloves"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "critical" }, "(15-16)% increased Global Critical Strike Chance", "(20-22)% increased Elemental Damage if you've dealt a Critical Strike Recently", statOrder = { 1343, 5991 }, level = 81, group = "CriticalChanceAndElementalDamagePercentIfHaveCritRecently", types = { ["Gloves"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos", "critical" }, "(11-12)% increased Global Critical Strike Chance", "Adds (10-11) to (14-16) Chaos Damage if you've dealt a Critical Strike Recently", statOrder = { 1343, 8766 }, level = 60, group = "CriticalChanceAndAddedChaosDamageIfHaveCritRecently", types = { ["Gloves"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos", "critical" }, "(13-14)% increased Global Critical Strike Chance", "Adds (12-13) to (17-20) Chaos Damage if you've dealt a Critical Strike Recently", statOrder = { 1343, 8766 }, level = 72, group = "CriticalChanceAndAddedChaosDamageIfHaveCritRecently", types = { ["Gloves"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos", "critical" }, "(15-16)% increased Global Critical Strike Chance", "Adds (14-16) to (21-24) Chaos Damage if you've dealt a Critical Strike Recently", statOrder = { 1343, 8766 }, level = 81, group = "CriticalChanceAndAddedChaosDamageIfHaveCritRecently", types = { ["Gloves"] = true, ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "mana" }, "+(28-33) to maximum Life", "Regenerate 2 Mana per second", statOrder = { 1451, 1464 }, level = 60, group = "BaseLifeAndManaRegen", types = { ["Helmet"] = true, ["Gloves"] = true, ["Boots"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "mana" }, "+(34-40) to maximum Life", "Regenerate 3 Mana per second", statOrder = { 1451, 1464 }, level = 72, group = "BaseLifeAndManaRegen", types = { ["Helmet"] = true, ["Gloves"] = true, ["Boots"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "mana" }, "+(41-45) to maximum Life", "Regenerate 4 Mana per second", statOrder = { 1451, 1464 }, level = 81, group = "BaseLifeAndManaRegen", types = { ["Helmet"] = true, ["Gloves"] = true, ["Boots"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "mana" }, "Regenerate 15 Life per second", "+(28-33) to maximum Mana", statOrder = { 1456, 1461 }, level = 60, group = "BaseManaAndLifeRegen", types = { ["Helmet"] = true, ["Gloves"] = true, ["Boots"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "mana" }, "Regenerate 20 Life per second", "+(34-40) to maximum Mana", statOrder = { 1456, 1461 }, level = 72, group = "BaseManaAndLifeRegen", types = { ["Helmet"] = true, ["Gloves"] = true, ["Boots"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "mana" }, "Regenerate 25 Life per second", "+(41-45) to maximum Mana", statOrder = { 1456, 1461 }, level = 81, group = "BaseManaAndLifeRegen", types = { ["Helmet"] = true, ["Gloves"] = true, ["Boots"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "speed" }, "(18-20)% increased Totem Placement speed", statOrder = { 2454 }, level = 60, group = "SummonTotemCastSpeed", types = { ["Boots"] = true, ["Amulet"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "speed" }, "(21-25)% increased Totem Placement speed", statOrder = { 2454 }, level = 72, group = "SummonTotemCastSpeed", types = { ["Boots"] = true, ["Amulet"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "speed" }, "(26-30)% increased Totem Placement speed", statOrder = { 2454 }, level = 81, group = "SummonTotemCastSpeed", types = { ["Boots"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "cold" }, "Adds (6-7) to (9-10) Fire Damage", "Adds (6-7) to (9-10) Cold Damage", statOrder = { 1243, 1252 }, level = 60, group = "AddedFireAndColdDamage", types = { ["Shield"] = true, ["Ring"] = true, ["Quiver"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "cold" }, "Adds (8-9) to (11-13) Fire Damage", "Adds (8-9) to (11-13) Cold Damage", statOrder = { 1243, 1252 }, level = 72, group = "AddedFireAndColdDamage", types = { ["Shield"] = true, ["Ring"] = true, ["Quiver"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "cold" }, "Adds (10-12) to (14-16) Fire Damage", "Adds (10-12) to (14-16) Cold Damage", statOrder = { 1243, 1252 }, level = 81, group = "AddedFireAndColdDamage", types = { ["Shield"] = true, ["Ring"] = true, ["Quiver"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "lightning" }, "Adds (6-7) to (9-10) Fire Damage", "Adds 1 to (14-16) Lightning Damage", statOrder = { 1243, 1263 }, level = 60, group = "AddedFireAndLightningDamage", types = { ["Shield"] = true, ["Ring"] = true, ["Quiver"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "lightning" }, "Adds (8-9) to (11-13) Fire Damage", "Adds 1 to (17-20) Lightning Damage", statOrder = { 1243, 1263 }, level = 72, group = "AddedFireAndLightningDamage", types = { ["Shield"] = true, ["Ring"] = true, ["Quiver"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "lightning" }, "Adds (10-12) to (14-16) Fire Damage", "Adds 1 to (21-24) Lightning Damage", statOrder = { 1243, 1263 }, level = 81, group = "AddedFireAndLightningDamage", types = { ["Shield"] = true, ["Ring"] = true, ["Quiver"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "cold", "lightning" }, "Adds (6-7) to (9-10) Cold Damage", "Adds 1 to (14-16) Lightning Damage", statOrder = { 1252, 1263 }, level = 60, group = "AddedColdAndLightningDamage", types = { ["Shield"] = true, ["Ring"] = true, ["Quiver"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "cold", "lightning" }, "Adds (8-9) to (11-13) Cold Damage", "Adds 1 to (17-20) Lightning Damage", statOrder = { 1252, 1263 }, level = 72, group = "AddedColdAndLightningDamage", types = { ["Shield"] = true, ["Ring"] = true, ["Quiver"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "cold", "lightning" }, "Adds (10-12) to (14-16) Cold Damage", "Adds 1 to (21-24) Lightning Damage", statOrder = { 1252, 1263 }, level = 81, group = "AddedColdAndLightningDamage", types = { ["Shield"] = true, ["Ring"] = true, ["Quiver"] = true, ["Amulet"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "critical" }, "Your Critical Strike Chance is Lucky while Focused", statOrder = { 6203 }, level = 72, group = "LuckyCriticalsDuringFocus", types = { ["Belt"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "defences", "evasion" }, "(16-18)% increased Evasion Rating while Focused", statOrder = { 6155 }, level = 60, group = "DodgeChanceDuringFocus", types = { ["Helmet"] = true, ["Boots"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "defences", "evasion" }, "(19-22)% increased Evasion Rating while Focused", statOrder = { 6155 }, level = 72, group = "DodgeChanceDuringFocus", types = { ["Helmet"] = true, ["Boots"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "defences", "evasion" }, "(23-25)% increased Evasion Rating while Focused", statOrder = { 6155 }, level = 81, group = "DodgeChanceDuringFocus", types = { ["Helmet"] = true, ["Boots"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "physical" }, "8% additional Physical Damage Reduction while Focused", statOrder = { 4426 }, level = 60, group = "PhysicalDamageReductionDuringFocus", types = { ["Helmet"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "physical" }, "(9-10)% additional Physical Damage Reduction while Focused", statOrder = { 4426 }, level = 72, group = "PhysicalDamageReductionDuringFocus", types = { ["Helmet"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "physical" }, "(11-12)% additional Physical Damage Reduction while Focused", statOrder = { 4426 }, level = 81, group = "PhysicalDamageReductionDuringFocus", types = { ["Helmet"] = true, ["Gloves"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "elemental", "lightning", "ailment" }, "Shock nearby Enemies for 2 Seconds when you Focus", statOrder = { 9501 }, level = 60, group = "ShockNearbyEnemiesOnFocus", types = { ["Ring"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "elemental", "lightning", "ailment" }, "Shock nearby Enemies for 3 Seconds when you Focus", statOrder = { 9501 }, level = 72, group = "ShockNearbyEnemiesOnFocus", types = { ["Ring"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "elemental", "lightning", "ailment" }, "Shock nearby Enemies for 4 Seconds when you Focus", statOrder = { 9501 }, level = 81, group = "ShockNearbyEnemiesOnFocus", types = { ["Ring"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "resource", "unveiled_mod", "life" }, "1% of Evasion Rating is Regenerated as Life per second while Focused", statOrder = { 6160 }, level = 60, group = "LifeRegenerationPerEvasionDuringFocus", types = { ["Body Armour"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "resource", "unveiled_mod", "mana", "defences", "energy_shield" }, "Recover (23-25)% of Mana and Energy Shield when you Focus", statOrder = { 9416 }, level = 60, group = "RestoreManaAndEnergyShieldOnFocus", types = { ["Body Armour"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "resource", "unveiled_mod", "mana", "defences", "energy_shield" }, "Recover (26-28)% of Mana and Energy Shield when you Focus", statOrder = { 9416 }, level = 72, group = "RestoreManaAndEnergyShieldOnFocus", types = { ["Body Armour"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "resource", "unveiled_mod", "mana", "defences", "energy_shield" }, "Recover (29-31)% of Mana and Energy Shield when you Focus", statOrder = { 9416 }, level = 81, group = "RestoreManaAndEnergyShieldOnFocus", types = { ["Body Armour"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage" }, "(16-20)% chance to deal Double Damage while Focused", statOrder = { 5376 }, level = 60, group = "ChanceToDealDoubleDamageWhileFocused", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage" }, "(21-25)% chance to deal Double Damage while Focused", statOrder = { 5376 }, level = 72, group = "ChanceToDealDoubleDamageWhileFocused", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage" }, "(26-30)% chance to deal Double Damage while Focused", statOrder = { 5376 }, level = 81, group = "ChanceToDealDoubleDamageWhileFocused", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage" }, "(7-9)% chance to deal Double Damage while Focused", statOrder = { 5376 }, level = 60, group = "ChanceToDealDoubleDamageWhileFocused", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage" }, "(10-12)% chance to deal Double Damage while Focused", statOrder = { 5376 }, level = 72, group = "ChanceToDealDoubleDamageWhileFocused", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage" }, "(13-15)% chance to deal Double Damage while Focused", statOrder = { 5376 }, level = 81, group = "ChanceToDealDoubleDamageWhileFocused", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attack", "caster", "speed" }, "(22-25)% increased Attack and Cast Speed while Focused", statOrder = { 4646 }, level = 60, group = "AttackAndCastSpeedWhileFocused", types = { ["Gloves"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attack", "caster", "speed" }, "(26-30)% increased Attack and Cast Speed while Focused", statOrder = { 4646 }, level = 72, group = "AttackAndCastSpeedWhileFocused", types = { ["Gloves"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attack", "caster", "speed" }, "(31-36)% increased Attack and Cast Speed while Focused", statOrder = { 4646 }, level = 81, group = "AttackAndCastSpeedWhileFocused", types = { ["Gloves"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "ailment" }, "(16-20)% increased Duration of Ailments you inflict while Focused", statOrder = { 9706 }, level = 60, group = "StatusAilmentsYouInflictDurationWhileFocused", types = { ["Helmet"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "ailment" }, "(21-25)% increased Duration of Ailments you inflict while Focused", statOrder = { 9706 }, level = 72, group = "StatusAilmentsYouInflictDurationWhileFocused", types = { ["Helmet"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "ailment" }, "(26-30)% increased Duration of Ailments you inflict while Focused", statOrder = { 9706 }, level = 81, group = "StatusAilmentsYouInflictDurationWhileFocused", types = { ["Helmet"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "ailment" }, "You are Immune to Ailments while Focused", statOrder = { 6866 }, level = 60, group = "ImmuneToStatusAilmentsWhileFocused", types = { ["Boots"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "resource", "unveiled_mod", "life" }, "You have Vaal Pact while Focused", "10% of Damage Leeched as Life while Focused", statOrder = { 6491, 6975 }, level = 60, group = "LifeLeechFromAnyDamagePermyriadWhileFocusedAndVaalPact", types = { ["Amulet"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod" }, "+5 to maximum Fortification while Focused", statOrder = { 8673 }, level = 60, group = "FortifyEffectWhileFocused", types = { ["Body Armour"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod" }, "+6 to maximum Fortification while Focused", statOrder = { 8673 }, level = 72, group = "FortifyEffectWhileFocused", types = { ["Body Armour"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod" }, "+7 to maximum Fortification while Focused", statOrder = { 8673 }, level = 81, group = "FortifyEffectWhileFocused", types = { ["Body Armour"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "skill", "unveiled_mod", "caster", "gem" }, "Trigger Socketed Spells when you Focus, with a 0.25 second Cooldown", statOrder = { 727 }, level = 60, group = "TriggerSocketedSpellWhenYouFocus", types = { ["Helmet"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "resource", "unveiled_mod", "life", "mana" }, "(11-15)% of Damage is taken from Mana before Life while Focused", statOrder = { 5789 }, level = 60, group = "DamageRemovedFromManaBeforeLifeWhileFocused", types = { ["Body Armour"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "resource", "unveiled_mod", "life", "minion" }, "Minions Recover 100% of their Life when you Focus", statOrder = { 8898 }, level = 60, group = "MinionsRecoverMaximumLifeWhenYouFocus", types = { ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "damage" }, "(12-14)% increased Damage", statOrder = { 1076 }, level = 72, group = "AllDamage", types = { ["Ring"] = true, ["Belt"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "damage" }, "(15-17)% increased Damage", statOrder = { 1076 }, level = 81, group = "AllDamage", types = { ["Ring"] = true, ["Belt"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "gem" }, "+1 to Level of Socketed Support Gems", statOrder = { 168 }, level = 60, group = "LocalIncreaseSocketedSupportGemLevel", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "gem" }, "+2 to Level of Socketed Support Gems", statOrder = { 168 }, level = 80, group = "LocalIncreaseSocketedSupportGemLevel", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "mana" }, "Channelling Skills have -1 to Total Mana Cost", statOrder = { 9547 }, level = 60, group = "ManaCostTotalChannelled", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "mana" }, "Channelling Skills have -2 to Total Mana Cost", statOrder = { 9547 }, level = 72, group = "ManaCostTotalChannelled", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "mana" }, "Channelling Skills have -3 to Total Mana Cost", statOrder = { 9547 }, level = 81, group = "ManaCostTotalChannelled", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "mana" }, "Non-Channelling Skills have -4 to Total Mana Cost", statOrder = { 9549 }, level = 60, group = "ManaCostTotalNonChannelled", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "mana" }, "Non-Channelling Skills have -5 to Total Mana Cost", statOrder = { 9549 }, level = 72, group = "ManaCostTotalNonChannelled", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "mana" }, "Non-Channelling Skills have -(7-6) to Total Mana Cost", statOrder = { 9549 }, level = 81, group = "ManaCostTotalNonChannelled", types = { ["Ring"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "damage" }, "(31-36)% increased Damage while Leeching", statOrder = { 2932 }, level = 72, group = "DamageWhileLeeching", types = { ["Gloves"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "damage" }, "(37-43)% increased Damage while Leeching", statOrder = { 2932 }, level = 81, group = "DamageWhileLeeching", types = { ["Gloves"] = true, ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "gem" }, "+(6-7)% to Quality of Socketed Gems", statOrder = { 182 }, level = 72, group = "SocketedGemQuality", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "gem" }, "+(7-8)% to Quality of Socketed Gems", statOrder = { 182 }, level = 81, group = "SocketedGemQuality", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "bleed", "unveiled_mod", "damage", "physical", "attack", "ailment" }, "Adds (11-13) to (16-17) Physical Damage", "35% chance to cause Bleeding on Hit", statOrder = { 1160, 2359 }, level = 72, group = "LocalAddedPhysicalDamageAndCausesBleeding", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "bleed", "unveiled_mod", "damage", "physical", "attack", "ailment" }, "Adds (14-16) to (18-20) Physical Damage", "40% chance to cause Bleeding on Hit", statOrder = { 1160, 2359 }, level = 81, group = "LocalAddedPhysicalDamageAndCausesBleeding", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "bleed", "unveiled_mod", "damage", "physical", "attack", "ailment" }, "Adds (7-8) to (10-11) Physical Damage", "35% chance to cause Bleeding on Hit", statOrder = { 1160, 2359 }, level = 72, group = "LocalAddedPhysicalDamageAndCausesBleeding", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "bleed", "unveiled_mod", "damage", "physical", "attack", "ailment" }, "Adds (9-11) to (12-14) Physical Damage", "40% chance to cause Bleeding on Hit", statOrder = { 1160, 2359 }, level = 81, group = "LocalAddedPhysicalDamageAndCausesBleeding", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "attack" }, "Hits can't be Evaded", statOrder = { 1920 }, level = 60, group = "AlwaysHits", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "flask", "unveiled_mod", "damage" }, "(19-23)% increased Damage during any Flask Effect", statOrder = { 3944 }, level = 72, group = "DamageDuringFlaskEffect", types = { ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "flask", "unveiled_mod", "damage" }, "(24-28)% increased Damage during any Flask Effect", statOrder = { 3944 }, level = 81, group = "DamageDuringFlaskEffect", types = { ["Gloves"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "drop" }, "(36-40)% increased Rarity of Items Dropped by Slain Rare or Unique Enemies", statOrder = { 9325 }, level = 72, group = "RareOrUniqueMonsterDroppedItemRarity", types = { ["Helmet"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "drop" }, "(41-45)% increased Rarity of Items Dropped by Slain Rare or Unique Enemies", statOrder = { 9325 }, level = 81, group = "RareOrUniqueMonsterDroppedItemRarity", types = { ["Helmet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "fire", "chaos" }, "Gain (11-13)% of Fire Damage as Extra Chaos Damage", statOrder = { 1820 }, level = 72, group = "FireAddedAsChaos", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "fire", "chaos" }, "Gain (14-16)% of Fire Damage as Extra Chaos Damage", statOrder = { 1820 }, level = 81, group = "FireAddedAsChaos", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "fire", "chaos" }, "Gain (5-6)% of Fire Damage as Extra Chaos Damage", statOrder = { 1820 }, level = 72, group = "FireAddedAsChaos", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "fire", "chaos" }, "Gain (7-8)% of Fire Damage as Extra Chaos Damage", statOrder = { 1820 }, level = 81, group = "FireAddedAsChaos", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "cold", "chaos" }, "Gain (11-13)% of Cold Damage as Extra Chaos Damage", statOrder = { 1819 }, level = 72, group = "ColdAddedAsChaos", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "cold", "chaos" }, "Gain (14-16)% of Cold Damage as Extra Chaos Damage", statOrder = { 1819 }, level = 81, group = "ColdAddedAsChaos", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "cold", "chaos" }, "Gain (5-6)% of Cold Damage as Extra Chaos Damage", statOrder = { 1819 }, level = 72, group = "ColdAddedAsChaos", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "cold", "chaos" }, "Gain (7-8)% of Cold Damage as Extra Chaos Damage", statOrder = { 1819 }, level = 81, group = "ColdAddedAsChaos", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "lightning", "chaos" }, "Gain (11-13)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1817 }, level = 72, group = "LightningAddedAsChaos", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "lightning", "chaos" }, "Gain (14-16)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1817 }, level = 81, group = "LightningAddedAsChaos", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "lightning", "chaos" }, "Gain (5-6)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1817 }, level = 72, group = "LightningAddedAsChaos", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "lightning", "chaos" }, "Gain (7-8)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1817 }, level = 81, group = "LightningAddedAsChaos", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "chaos_damage", "unveiled_mod", "damage", "physical", "chaos" }, "Gain (11-13)% of Physical Damage as Extra Chaos Damage", statOrder = { 1814 }, level = 72, group = "PhysicalAddedAsChaos", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "chaos_damage", "unveiled_mod", "damage", "physical", "chaos" }, "Gain (14-16)% of Physical Damage as Extra Chaos Damage", statOrder = { 1814 }, level = 81, group = "PhysicalAddedAsChaos", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "chaos_damage", "unveiled_mod", "damage", "physical", "chaos" }, "Gain (5-6)% of Physical Damage as Extra Chaos Damage", statOrder = { 1814 }, level = 72, group = "PhysicalAddedAsChaos", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Shield"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "chaos_damage", "unveiled_mod", "damage", "physical", "chaos" }, "Gain (7-8)% of Physical Damage as Extra Chaos Damage", statOrder = { 1814 }, level = 81, group = "PhysicalAddedAsChaos", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attribute" }, "5% increased Attributes", statOrder = { 1068 }, level = 72, group = "PercentageAllAttributes", types = { ["Body Armour"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attribute" }, "6% increased Attributes", statOrder = { 1068 }, level = 81, group = "PercentageAllAttributes", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "aura" }, "Banner Skills have (12-15)% increased Aura Effect", statOrder = { 3228 }, level = 72, group = "BannerEffect", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "aura" }, "Banner Skills have (16-20)% increased Aura Effect", statOrder = { 3228 }, level = 81, group = "BannerEffect", types = { ["Body Armour"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "minion" }, "Trigger Level 10 Summon Spectral Wolf on Kill", statOrder = { 687 }, level = 60, group = "SummonWolfOnKillOld", types = { ["Amulet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod" }, "(10-14)% increased Warcry Buff Effect", statOrder = { 10035 }, level = 72, group = "WarcryBuffEffect", types = { ["Helmet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod" }, "(15-18)% increased Warcry Buff Effect", statOrder = { 10035 }, level = 81, group = "WarcryBuffEffect", types = { ["Helmet"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "elemental", "cold", "ailment" }, "80% chance to Avoid being Frozen", statOrder = { 1726 }, level = 72, group = "AvoidFreeze", types = { ["Boots"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "elemental", "cold", "ailment" }, "100% chance to Avoid being Frozen", statOrder = { 1726 }, level = 81, group = "AvoidFreeze", types = { ["Boots"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage", "critical" }, "(12-13)% increased Global Critical Strike Chance", "+(18-20)% to Critical Strike Multiplier if you've Shattered an Enemy Recently", statOrder = { 1343, 5661 }, level = 72, group = "CritChanceAndCriticalStrikeMultiplierIfEnemyShatteredRecently", types = { ["Ring"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage", "critical" }, "(14-16)% increased Global Critical Strike Chance", "+(21-23)% to Critical Strike Multiplier if you've Shattered an Enemy Recently", statOrder = { 1343, 5661 }, level = 81, group = "CritChanceAndCriticalStrikeMultiplierIfEnemyShatteredRecently", types = { ["Ring"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "physical_damage", "chaos_damage", "unveiled_mod", "damage", "physical", "chaos" }, "(11-13)% increased Global Physical Damage", "(11-13)% increased Chaos Damage", statOrder = { 1116, 1269 }, level = 72, group = "IncreasedChaosAndPhysicalDamage", types = { ["Ring"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "physical_damage", "chaos_damage", "unveiled_mod", "damage", "physical", "chaos" }, "(14-16)% increased Global Physical Damage", "(14-16)% increased Chaos Damage", statOrder = { 1116, 1269 }, level = 81, group = "IncreasedChaosAndPhysicalDamage", types = { ["Ring"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "lightning" }, "(11-13)% increased Fire Damage", "(11-13)% increased Lightning Damage", statOrder = { 1241, 1261 }, level = 72, group = "IncreasedFireAndLightningDamage", types = { ["Ring"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "lightning" }, "(14-16)% increased Fire Damage", "(14-16)% increased Lightning Damage", statOrder = { 1241, 1261 }, level = 81, group = "IncreasedFireAndLightningDamage", types = { ["Ring"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "flask", "resource", "unveiled_mod", "life" }, "Regenerate 3% of Life per second during Effect", statOrder = { 882 }, level = 60, group = "LocalFlaskLifeRegenerationPerMinuteDuringFlaskEffect", types = { ["Flask"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "flask", "unveiled_mod" }, "50% Chance to Avoid being Stunned during Effect", statOrder = { 862 }, level = 60, group = "LocalFlaskAvoidStunChanceDuringFlaskEffect", types = { ["Flask"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "flask", "unveiled_mod", "drop" }, "(20-30)% increased Rarity of Items found during Effect", statOrder = { 878 }, level = 60, group = "LocalFlaskItemFoundRarityDuringFlaskEffect", types = { ["Flask"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "flask", "unveiled_mod" }, "(45-55)% reduced Reflected Damage taken during Effect", statOrder = { 888 }, level = 60, group = "FlaskReflectReductionDuringFlaskEffect", types = { ["Flask"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "flask", "resource", "unveiled_mod", "life" }, "15% of Damage Taken from Hits is Leeched as Life during Effect", statOrder = { 881 }, level = 60, group = "LocalFlaskLifeLeechOnDamageTakenPermyriadDuringFlaskEffect", types = { ["Flask"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attack", "speed", "attribute" }, "+(15-19) to Dexterity and Intelligence", "(8-10)% increased Attack Speed", statOrder = { 1067, 1297 }, level = 60, group = "LocalAttackSpeedDexterityIntelligence", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attack", "speed", "attribute" }, "+(20-24) to Dexterity and Intelligence", "(13-16)% increased Attack Speed", statOrder = { 1067, 1297 }, level = 75, group = "LocalAttackSpeedDexterityIntelligence", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attack", "critical", "attribute" }, "+(15-19) to Strength and Intelligence", "(15-20)% increased Critical Strike Chance", statOrder = { 1066, 1348 }, level = 60, group = "LocalCriticalStrikeChanceStrengthIntelligence", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attack", "critical", "attribute" }, "+(20-24) to Strength and Intelligence", "(21-25)% increased Critical Strike Chance", statOrder = { 1066, 1348 }, level = 75, group = "LocalCriticalStrikeChanceStrengthIntelligence", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attack", "attribute" }, "+(15-19) to Strength and Dexterity", "+(161-200) to Accuracy Rating", statOrder = { 1065, 1901 }, level = 60, group = "LocalAccuracyRatingStrengthDexterity", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attack", "attribute" }, "+(20-24) to Strength and Dexterity", "+(201-250) to Accuracy Rating", statOrder = { 1065, 1901 }, level = 75, group = "LocalAccuracyRatingStrengthDexterity", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attack", "speed" }, "10% chance to Trigger Level 1 Blood Rage when you Kill an Enemy", "(8-10)% increased Attack Speed", statOrder = { 688, 1297 }, level = 60, group = "LocalAttackSpeedAndLocalDisplayTriggerLevel1BloodRageOnKillChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attack", "speed" }, "10% chance to Trigger Level 1 Blood Rage when you Kill an Enemy", "(13-16)% increased Attack Speed", statOrder = { 688, 1297 }, level = 75, group = "LocalAttackSpeedAndLocalDisplayTriggerLevel1BloodRageOnKillChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "caster", "speed" }, "(12-14)% increased Cast Speed", "10% chance to gain Arcane Surge when you Kill an Enemy", statOrder = { 1330, 6395 }, level = 60, group = "CastSpeedAndGainArcaneSurgeOnKillChance", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "caster", "speed" }, "(15-18)% increased Cast Speed", "10% chance to gain Arcane Surge when you Kill an Enemy", statOrder = { 1330, 6395 }, level = 72, group = "CastSpeedAndGainArcaneSurgeOnKillChance", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "caster", "speed" }, "(19-24)% increased Cast Speed", "10% chance to gain Arcane Surge when you Kill an Enemy", statOrder = { 1330, 6395 }, level = 81, group = "CastSpeedAndGainArcaneSurgeOnKillChance", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "caster", "speed" }, "(8-9)% increased Cast Speed", "10% chance to gain Arcane Surge when you Kill an Enemy", statOrder = { 1330, 6395 }, level = 60, group = "CastSpeedAndGainArcaneSurgeOnKillChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "caster", "speed" }, "(10-12)% increased Cast Speed", "10% chance to gain Arcane Surge when you Kill an Enemy", statOrder = { 1330, 6395 }, level = 72, group = "CastSpeedAndGainArcaneSurgeOnKillChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "caster", "speed" }, "(13-16)% increased Cast Speed", "10% chance to gain Arcane Surge when you Kill an Enemy", statOrder = { 1330, 6395 }, level = 81, group = "CastSpeedAndGainArcaneSurgeOnKillChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "elemental", "fire", "chaos", "resistance" }, "+(9-10)% to Fire and Chaos Resistances", statOrder = { 6219 }, level = 60, group = "FireAndChaosDamageResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "elemental", "fire", "chaos", "resistance" }, "+(11-12)% to Fire and Chaos Resistances", statOrder = { 6219 }, level = 72, group = "FireAndChaosDamageResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "elemental", "fire", "chaos", "resistance" }, "+(13-15)% to Fire and Chaos Resistances", statOrder = { 6219 }, level = 81, group = "FireAndChaosDamageResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "elemental", "lightning", "chaos", "resistance" }, "+(9-10)% to Lightning and Chaos Resistances", statOrder = { 7047 }, level = 60, group = "LightningAndChaosDamageResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "elemental", "lightning", "chaos", "resistance" }, "+(11-12)% to Lightning and Chaos Resistances", statOrder = { 7047 }, level = 72, group = "LightningAndChaosDamageResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "elemental", "lightning", "chaos", "resistance" }, "+(13-15)% to Lightning and Chaos Resistances", statOrder = { 7047 }, level = 81, group = "LightningAndChaosDamageResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "elemental", "cold", "chaos", "resistance" }, "+(9-10)% to Cold and Chaos Resistances", statOrder = { 5507 }, level = 60, group = "ColdAndChaosDamageResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "elemental", "cold", "chaos", "resistance" }, "+(11-12)% to Cold and Chaos Resistances", statOrder = { 5507 }, level = 72, group = "ColdAndChaosDamageResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "elemental", "cold", "chaos", "resistance" }, "+(13-15)% to Cold and Chaos Resistances", statOrder = { 5507 }, level = 81, group = "ColdAndChaosDamageResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(10-15) to Strength", "(21-25)% chance to Avoid being Ignited", statOrder = { 1062, 1727 }, level = 60, group = "StrengthAndAvoidIgnite", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(16-20) to Strength", "(21-25)% chance to Avoid being Ignited", statOrder = { 1062, 1727 }, level = 72, group = "StrengthAndAvoidIgnite", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(21-25) to Strength", "(21-25)% chance to Avoid being Ignited", statOrder = { 1062, 1727 }, level = 81, group = "StrengthAndAvoidIgnite", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(10-15) to Dexterity", "(21-25)% chance to Avoid being Frozen", statOrder = { 1063, 1726 }, level = 60, group = "DexterityAndAvoidFreeze", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(16-20) to Dexterity", "(21-25)% chance to Avoid being Frozen", statOrder = { 1063, 1726 }, level = 72, group = "DexterityAndAvoidFreeze", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(21-25) to Dexterity", "(21-25)% chance to Avoid being Frozen", statOrder = { 1063, 1726 }, level = 81, group = "DexterityAndAvoidFreeze", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(10-15) to Intelligence", "(21-25)% chance to Avoid being Shocked", statOrder = { 1064, 1729 }, level = 60, group = "IntelligenceAndAvoidShock", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(16-20) to Intelligence", "(21-25)% chance to Avoid being Shocked", statOrder = { 1064, 1729 }, level = 72, group = "IntelligenceAndAvoidShock", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(21-25) to Intelligence", "(21-25)% chance to Avoid being Shocked", statOrder = { 1064, 1729 }, level = 81, group = "IntelligenceAndAvoidShock", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "speed" }, "(7-8)% increased Trap Throwing Speed", statOrder = { 1806 }, level = 60, group = "TrapThrowSpeed", types = { ["Amulet"] = true, ["Belt"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "speed" }, "(9-10)% increased Trap Throwing Speed", statOrder = { 1806 }, level = 72, group = "TrapThrowSpeed", types = { ["Amulet"] = true, ["Belt"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "speed" }, "(11-12)% increased Trap Throwing Speed", statOrder = { 1806 }, level = 81, group = "TrapThrowSpeed", types = { ["Amulet"] = true, ["Belt"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "speed" }, "(7-8)% increased Mine Throwing Speed", statOrder = { 1807 }, level = 60, group = "MineLayingSpeed", types = { ["Amulet"] = true, ["Helmet"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "speed" }, "(9-10)% increased Mine Throwing Speed", statOrder = { 1807 }, level = 72, group = "MineLayingSpeed", types = { ["Amulet"] = true, ["Helmet"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "speed" }, "(11-12)% increased Mine Throwing Speed", statOrder = { 1807 }, level = 81, group = "MineLayingSpeed", types = { ["Amulet"] = true, ["Helmet"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "caster" }, "(11-13)% increased Brand Attachment range", statOrder = { 9531 }, level = 60, group = "BrandAttachmentRange", types = { ["Amulet"] = true, ["Gloves"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "caster" }, "(14-16)% increased Brand Attachment range", statOrder = { 9531 }, level = 72, group = "BrandAttachmentRange", types = { ["Amulet"] = true, ["Gloves"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "caster" }, "(17-20)% increased Brand Attachment range", statOrder = { 9531 }, level = 81, group = "BrandAttachmentRange", types = { ["Amulet"] = true, ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "mana" }, "(5-8)% increased maximum Life", "(5-8)% increased maximum Mana", statOrder = { 1453, 1462 }, level = 60, group = "PercentageLifeAndMana", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "block", "unveiled_mod" }, "(5-7)% Chance to Block Attack Damage", statOrder = { 1027 }, level = 60, group = "BlockPercent", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "block" }, "(6-8)% Chance to Block Spell Damage", statOrder = { 1046 }, level = 60, group = "SpellBlockPercentage", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "elemental", "fire", "cold", "lightning", "ailment" }, "(20-25)% chance to Avoid Elemental Ailments", "(20-25)% chance to Avoid being Stunned", statOrder = { 1724, 1732 }, level = 60, group = "AvoidStunAndElementalStatusAilments", types = { ["Body Armour"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "damage" }, "(6-7)% increased Area of Effect", "(9-10)% increased Area Damage", statOrder = { 1761, 1912 }, level = 60, group = "AreaDamageAndAreaOfEffect", types = { ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "damage" }, "(8-9)% increased Area of Effect", "(11-13)% increased Area Damage", statOrder = { 1761, 1912 }, level = 72, group = "AreaDamageAndAreaOfEffect", types = { ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "damage" }, "(10-12)% increased Area of Effect", "(14-16)% increased Area Damage", statOrder = { 1761, 1912 }, level = 81, group = "AreaDamageAndAreaOfEffect", types = { ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "damage", "speed" }, "(10-12)% increased Projectile Speed", "(9-10)% increased Projectile Damage", statOrder = { 1677, 1873 }, level = 60, group = "ProjectileDamageAndProjectileSpeed", types = { ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "damage", "speed" }, "(13-16)% increased Projectile Speed", "(11-13)% increased Projectile Damage", statOrder = { 1677, 1873 }, level = 72, group = "ProjectileDamageAndProjectileSpeed", types = { ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "damage", "speed" }, "(17-20)% increased Projectile Speed", "(14-16)% increased Projectile Damage", statOrder = { 1677, 1873 }, level = 81, group = "ProjectileDamageAndProjectileSpeed", types = { ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "damage", "attack" }, "(9-10)% increased Melee Damage", "+0.1 metres to Melee Strike Range", statOrder = { 1119, 2410 }, level = 60, group = "MeleeDamageAndMeleeRange", types = { ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "damage", "attack" }, "(11-13)% increased Melee Damage", "+0.1 metres to Melee Strike Range", statOrder = { 1119, 2410 }, level = 72, group = "MeleeDamageAndMeleeRange", types = { ["Gloves"] = true, }, }, - { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "damage", "attack" }, "(14-16)% increased Melee Damage", "+0.1 metres to Melee Strike Range", statOrder = { 1119, 2410 }, level = 81, group = "MeleeDamageAndMeleeRange", types = { ["Gloves"] = true, }, }, - { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod" }, "Focus has (21-25)% increased Cooldown Recovery Rate", statOrder = { 6322 }, level = 60, group = "FocusCooldownRecovery", types = { ["Boots"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "block" }, "(3-4)% Chance to Block Spell Damage", statOrder = { 1072 }, level = 50, group = "SpellBlockPercentage", types = { ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "block" }, "(5-6)% Chance to Block Spell Damage", statOrder = { 1072 }, level = 68, group = "SpellBlockPercentage", types = { ["Shield"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "resource", "life" }, "(5-6)% increased Life Regeneration rate", statOrder = { 1488 }, level = 40, group = "LifeRegenerationRate", types = { ["Helmet"] = true, ["Gloves"] = true, ["Boots"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "resource", "life" }, "(7-8)% increased Life Regeneration rate", statOrder = { 1488 }, level = 60, group = "LifeRegenerationRate", types = { ["Helmet"] = true, ["Gloves"] = true, ["Boots"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "physical" }, "2% additional Physical Damage Reduction", statOrder = { 2182 }, level = 40, group = "ReducedPhysicalDamageTaken", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "physical" }, "3% additional Physical Damage Reduction", statOrder = { 2182 }, level = 60, group = "ReducedPhysicalDamageTaken", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { }, "+(3-4)% chance to Suppress Spell Damage", statOrder = { 1056 }, level = 40, group = "ChanceToSuppressSpells", types = { ["Helmet"] = true, ["Gloves"] = true, ["Boots"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { }, "+(5-6)% chance to Suppress Spell Damage", statOrder = { 1056 }, level = 60, group = "ChanceToSuppressSpells", types = { ["Helmet"] = true, ["Gloves"] = true, ["Boots"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { }, "+(5-7)% chance to Suppress Spell Damage", statOrder = { 1056 }, level = 40, group = "ChanceToSuppressSpells", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { }, "+(8-10)% chance to Suppress Spell Damage", statOrder = { 1056 }, level = 60, group = "ChanceToSuppressSpells", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "defences", "energy_shield" }, "(9-11)% increased Energy Shield Recharge Rate", statOrder = { 1476 }, level = 40, group = "EnergyShieldRegeneration", types = { ["Helmet"] = true, ["Gloves"] = true, ["Boots"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "defences", "energy_shield" }, "(12-14)% increased Energy Shield Recharge Rate", statOrder = { 1476 }, level = 60, group = "EnergyShieldRegeneration", types = { ["Helmet"] = true, ["Gloves"] = true, ["Boots"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "defences", "energy_shield" }, "(16-20)% faster start of Energy Shield Recharge", statOrder = { 1473 }, level = 40, group = "EnergyShieldDelay", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "defences", "energy_shield" }, "(21-25)% faster start of Energy Shield Recharge", statOrder = { 1473 }, level = 60, group = "EnergyShieldDelay", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "Upgraded", modTags = { "damage" }, "5% reduced Damage taken from Damage Over Time", statOrder = { 2154 }, level = 80, group = "DegenDamageTaken", types = { ["Shield"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { }, "Light Radius is based on Energy Shield instead of Life", statOrder = { 2651 }, level = 68, group = "LightRadiusScalesWithEnergyShield", types = { ["Helmet"] = true, ["Ring"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "resource", "life", "minion" }, "Minions have (11-15)% increased maximum Life", statOrder = { 1677 }, level = 40, group = "MinionLife", types = { ["Shield"] = true, ["Ring"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "resource", "life", "minion" }, "Minions have (16-20)% increased maximum Life", statOrder = { 1677 }, level = 68, group = "MinionLife", types = { ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "damage", "minion" }, "Minions deal (10-20)% increased Damage", statOrder = { 1882 }, level = 40, group = "MinionDamage", types = { ["Gloves"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "speed", "minion" }, "Minions have (13-17)% increased Movement Speed", statOrder = { 1680 }, level = 30, group = "MinionRunSpeed", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "speed", "minion" }, "Minions have (18-22)% increased Movement Speed", statOrder = { 1680 }, level = 60, group = "MinionRunSpeed", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "damage", "minion" }, "Minions deal (37-51)% increased Damage", statOrder = { 1882 }, level = 30, group = "MinionDamageOnWeapon", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "damage", "minion" }, "Minions deal (52-66)% increased Damage", statOrder = { 1882 }, level = 60, group = "MinionDamageOnWeapon", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "damage", "minion" }, "Minions deal (67-81)% increased Damage", statOrder = { 1882 }, level = 75, group = "MinionDamageOnWeapon", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "damage", "minion" }, "Minions deal (25-34)% increased Damage", statOrder = { 1882 }, level = 30, group = "MinionDamageOnWeapon", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "damage", "minion" }, "Minions deal (35-44)% increased Damage", statOrder = { 1882 }, level = 60, group = "MinionDamageOnWeapon", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "damage", "minion" }, "Minions deal (45-54)% increased Damage", statOrder = { 1882 }, level = 75, group = "MinionDamageOnWeapon", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "damage" }, "(52-66)% increased Trap Damage", statOrder = { 1106 }, level = 50, group = "TrapDamageOnWeapon", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "damage" }, "(67-81)% increased Trap Damage", statOrder = { 1106 }, level = 68, group = "TrapDamageOnWeapon", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "damage" }, "(35-44)% increased Trap Damage", statOrder = { 1106 }, level = 50, group = "TrapDamageOnWeapon", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "damage" }, "(45-54)% increased Trap Damage", statOrder = { 1106 }, level = 68, group = "TrapDamageOnWeapon", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "damage" }, "(52-66)% increased Mine Damage", statOrder = { 1108 }, level = 50, group = "MineDamageOnWeapon", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "damage" }, "(67-81)% increased Mine Damage", statOrder = { 1108 }, level = 68, group = "MineDamageOnWeapon", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "damage" }, "(35-44)% increased Mine Damage", statOrder = { 1108 }, level = 50, group = "MineDamageOnWeapon", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "damage" }, "(45-54)% increased Mine Damage", statOrder = { 1108 }, level = 68, group = "MineDamageOnWeapon", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "speed" }, "(17-20)% increased Trap Throwing Speed", statOrder = { 1836 }, level = 50, group = "TrapThrowSpeedOnWeapon", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "speed" }, "(21-23)% increased Trap Throwing Speed", statOrder = { 1836 }, level = 68, group = "TrapThrowSpeedOnWeapon", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "speed" }, "(9-12)% increased Trap Throwing Speed", statOrder = { 1836 }, level = 50, group = "TrapThrowSpeedOnWeapon", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "speed" }, "(13-15)% increased Trap Throwing Speed", statOrder = { 1836 }, level = 68, group = "TrapThrowSpeedOnWeapon", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "speed" }, "(17-20)% increased Mine Throwing Speed", statOrder = { 1837 }, level = 50, group = "MineLayingSpeedOnWeapon", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "speed" }, "(21-23)% increased Mine Throwing Speed", statOrder = { 1837 }, level = 68, group = "MineLayingSpeedOnWeapon", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "speed" }, "(9-12)% increased Mine Throwing Speed", statOrder = { 1837 }, level = 50, group = "MineLayingSpeedOnWeapon", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "speed" }, "(13-15)% increased Mine Throwing Speed", statOrder = { 1837 }, level = 68, group = "MineLayingSpeedOnWeapon", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attack", "speed" }, "(3-5)% increased Attack Speed", statOrder = { 1321 }, level = 30, group = "IncreasedAttackSpeed", types = { ["Ring"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "caster", "speed" }, "(6-9)% increased Cast Speed", statOrder = { 1357 }, level = 30, group = "IncreasedCastSpeed", types = { ["Shield"] = true, ["Amulet"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "speed" }, "(15-20)% increased Warcry Speed", statOrder = { 3185 }, level = 30, group = "WarcrySpeed", types = { ["Amulet"] = true, }, }, + { type = "Suffix", affix = "of Control", modTags = { }, "Warcries cannot Exert Travel Skills", statOrder = { 10206 }, level = 1, group = "TravelSkillsCannotBeExerted", types = { ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "bleed", "physical", "attack", "ailment" }, "Moving while Bleeding doesn't cause you to take extra Damage", statOrder = { 3100 }, level = 30, group = "NoExtraBleedDamageWhileMoving", types = { ["Shield"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "chaos", "resistance" }, "+(31-36)% Chaos Resistance against Damage Over Time", statOrder = { 5631 }, level = 30, group = "ChaosResistanceAgainstDamageOverTime", types = { ["Belt"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "chaos", "resistance" }, "+(37-43)% Chaos Resistance against Damage Over Time", statOrder = { 5631 }, level = 60, group = "ChaosResistanceAgainstDamageOverTime", types = { ["Belt"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "bleed", "physical", "attack", "ailment" }, "(41-50)% chance to Avoid Bleeding", statOrder = { 4123 }, level = 30, group = "ChanceToAvoidBleeding", types = { ["Boots"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "bleed", "physical", "attack", "ailment" }, "(51-60)% chance to Avoid Bleeding", statOrder = { 4123 }, level = 60, group = "ChanceToAvoidBleeding", types = { ["Boots"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "fire", "ailment" }, "(41-50)% reduced Ignite Duration on you", statOrder = { 1786 }, level = 30, group = "ReducedIgniteDurationOnSelf", types = { ["Ring"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "fire", "ailment" }, "(51-60)% reduced Ignite Duration on you", statOrder = { 1786 }, level = 60, group = "ReducedIgniteDurationOnSelf", types = { ["Ring"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "cold", "ailment" }, "(41-50)% reduced Effect of Chill on you", statOrder = { 1556 }, level = 30, group = "ChillEffectivenessOnSelf", types = { ["Ring"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "cold", "ailment" }, "(51-60)% reduced Effect of Chill on you", statOrder = { 1556 }, level = 60, group = "ChillEffectivenessOnSelf", types = { ["Ring"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "lightning", "ailment" }, "(41-50)% reduced Effect of Shock on you", statOrder = { 9803 }, level = 30, group = "ReducedShockEffectOnSelf", types = { ["Ring"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "lightning", "ailment" }, "(51-60)% reduced Effect of Shock on you", statOrder = { 9803 }, level = 60, group = "ReducedShockEffectOnSelf", types = { ["Ring"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "caster", "curse" }, "(16-20)% reduced Effect of Curses on you", statOrder = { 2079 }, level = 30, group = "ReducedCurseEffect", types = { ["Ring"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "caster", "curse" }, "(21-25)% reduced Effect of Curses on you", statOrder = { 2079 }, level = 60, group = "ReducedCurseEffect", types = { ["Ring"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "cold", "ailment" }, "(11-15)% reduced Effect of Freeze on you", statOrder = { 4914 }, level = 30, group = "BaseFrozenEffectOnSelf", types = { ["Helmet"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental", "cold", "ailment" }, "(16-20)% reduced Effect of Freeze on you", statOrder = { 4914 }, level = 60, group = "BaseFrozenEffectOnSelf", types = { ["Helmet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, "Adds (9-11) to (16-21) Fire Damage to Attacks", statOrder = { 1271 }, level = 20, group = "FireDamage", types = { ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, "Adds (19-23) to (37-42) Fire Damage to Attacks", statOrder = { 1271 }, level = 40, group = "FireDamage", types = { ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, "Adds (9-11) to (16-21) Cold Damage to Attacks", statOrder = { 1280 }, level = 20, group = "ColdDamage", types = { ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, "Adds (19-23) to (37-42) Cold Damage to Attacks", statOrder = { 1280 }, level = 40, group = "ColdDamage", types = { ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, "Adds (1-4) to (32-36) Lightning Damage to Attacks", statOrder = { 1291 }, level = 20, group = "LightningDamage", types = { ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, "Adds (3-6) to (52-70) Lightning Damage to Attacks", statOrder = { 1291 }, level = 40, group = "LightningDamage", types = { ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "damage", "vaal" }, "(20-60)% increased Damage with Vaal Skills", statOrder = { 3003 }, level = 24, group = "VaalSkillDamage", types = { ["Gloves"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "flat_life_regen", "resource", "life", "mana" }, "Regenerate (12-20) Life per second", "Regenerate (1.8-3) Mana per second", statOrder = { 1485, 1493 }, level = 30, group = "LifeRegenerationAndManaRegeneration", types = { ["Amulet"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "skill", "caster", "gem" }, "Trigger a Socketed Spell when you Use a Skill, with a 8 second Cooldown", "Spells Triggered this way have 150% more Cost", statOrder = { 747, 747.1 }, level = 75, group = "TriggerSocketedSpellOnSkillUse", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "unveiled_mod", "damage", "physical", "attack" }, "(81-85)% increased Physical Damage", "(13-15)% chance to Impale Enemies on Hit with Attacks", statOrder = { 1144, 7718 }, level = 60, group = "LocalIncreasedPhysicalDamageAndImpaleChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "unveiled_mod", "damage", "physical", "attack" }, "(86-94)% increased Physical Damage", "(16-17)% chance to Impale Enemies on Hit with Attacks", statOrder = { 1144, 7718 }, level = 72, group = "LocalIncreasedPhysicalDamageAndImpaleChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "unveiled_mod", "damage", "physical", "attack" }, "(95-105)% increased Physical Damage", "(18-20)% chance to Impale Enemies on Hit with Attacks", statOrder = { 1144, 7718 }, level = 81, group = "LocalIncreasedPhysicalDamageAndImpaleChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "bleed", "unveiled_mod", "damage", "physical", "attack", "ailment" }, "(81-85)% increased Physical Damage", "(13-15)% chance to cause Bleeding on Hit", statOrder = { 1144, 2392 }, level = 60, group = "LocalIncreasedPhysicalDamageAndBleedChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "bleed", "unveiled_mod", "damage", "physical", "attack", "ailment" }, "(86-94)% increased Physical Damage", "(16-17)% chance to cause Bleeding on Hit", statOrder = { 1144, 2392 }, level = 72, group = "LocalIncreasedPhysicalDamageAndBleedChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "bleed", "unveiled_mod", "damage", "physical", "attack", "ailment" }, "(95-105)% increased Physical Damage", "(18-20)% chance to cause Bleeding on Hit", statOrder = { 1144, 2392 }, level = 81, group = "LocalIncreasedPhysicalDamageAndBleedChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "unveiled_mod", "damage", "physical", "attack" }, "(81-85)% increased Physical Damage", "(13-15)% chance to Blind Enemies on hit", statOrder = { 1144, 2172 }, level = 60, group = "LocalIncreasedPhysicalDamageAndBlindChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "unveiled_mod", "damage", "physical", "attack" }, "(86-94)% increased Physical Damage", "(16-17)% chance to Blind Enemies on hit", statOrder = { 1144, 2172 }, level = 72, group = "LocalIncreasedPhysicalDamageAndBlindChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "unveiled_mod", "damage", "physical", "attack" }, "(95-105)% increased Physical Damage", "(18-20)% chance to Blind Enemies on hit", statOrder = { 1144, 2172 }, level = 81, group = "LocalIncreasedPhysicalDamageAndBlindChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "chaos_damage", "bleed", "poison", "unveiled_mod", "damage", "physical", "chaos", "attack", "ailment" }, "(81-85)% increased Physical Damage", "(13-15)% chance to Poison on Hit", statOrder = { 1144, 7849 }, level = 60, group = "LocalIncreasedPhysicalDamageAndPoisonChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "chaos_damage", "bleed", "poison", "unveiled_mod", "damage", "physical", "chaos", "attack", "ailment" }, "(86-94)% increased Physical Damage", "(16-17)% chance to Poison on Hit", statOrder = { 1144, 7849 }, level = 72, group = "LocalIncreasedPhysicalDamageAndPoisonChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "chaos_damage", "bleed", "poison", "unveiled_mod", "damage", "physical", "chaos", "attack", "ailment" }, "(95-105)% increased Physical Damage", "(18-20)% chance to Poison on Hit", statOrder = { 1144, 7849 }, level = 81, group = "LocalIncreasedPhysicalDamageAndPoisonChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "ailment" }, "(60-64)% increased Fire Damage", "(21-24)% chance to Ignite", statOrder = { 1268, 1935 }, level = 60, group = "FireDamageAndChanceToIgnite", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "ailment" }, "(65-72)% increased Fire Damage", "(25-28)% chance to Ignite", statOrder = { 1268, 1935 }, level = 72, group = "FireDamageAndChanceToIgnite", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "ailment" }, "(73-80)% increased Fire Damage", "(29-34)% chance to Ignite", statOrder = { 1268, 1935 }, level = 81, group = "FireDamageAndChanceToIgnite", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "ailment" }, "(36-41)% increased Fire Damage", "(13-15)% chance to Ignite", statOrder = { 1268, 1935 }, level = 60, group = "FireDamageAndChanceToIgnite", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "ailment" }, "(42-50)% increased Fire Damage", "(16-17)% chance to Ignite", statOrder = { 1268, 1935 }, level = 72, group = "FireDamageAndChanceToIgnite", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "ailment" }, "(51-60)% increased Fire Damage", "(18-20)% chance to Ignite", statOrder = { 1268, 1935 }, level = 81, group = "FireDamageAndChanceToIgnite", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "cold", "ailment" }, "(60-64)% increased Cold Damage", "(21-24)% chance to Freeze", statOrder = { 1277, 1938 }, level = 60, group = "ColdDamageAndBaseChanceToFreeze", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "cold", "ailment" }, "(65-72)% increased Cold Damage", "(25-28)% chance to Freeze", statOrder = { 1277, 1938 }, level = 72, group = "ColdDamageAndBaseChanceToFreeze", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "cold", "ailment" }, "(73-80)% increased Cold Damage", "(29-34)% chance to Freeze", statOrder = { 1277, 1938 }, level = 81, group = "ColdDamageAndBaseChanceToFreeze", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "cold", "ailment" }, "(36-41)% increased Cold Damage", "(13-15)% chance to Freeze", statOrder = { 1277, 1938 }, level = 60, group = "ColdDamageAndBaseChanceToFreeze", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "cold", "ailment" }, "(42-50)% increased Cold Damage", "(16-17)% chance to Freeze", statOrder = { 1277, 1938 }, level = 72, group = "ColdDamageAndBaseChanceToFreeze", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "cold", "ailment" }, "(51-60)% increased Cold Damage", "(18-20)% chance to Freeze", statOrder = { 1277, 1938 }, level = 81, group = "ColdDamageAndBaseChanceToFreeze", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "lightning", "ailment" }, "(60-64)% increased Lightning Damage", "(21-24)% chance to Shock", statOrder = { 1288, 1942 }, level = 60, group = "LightningDamageAndChanceToShock", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "lightning", "ailment" }, "(65-72)% increased Lightning Damage", "(25-28)% chance to Shock", statOrder = { 1288, 1942 }, level = 72, group = "LightningDamageAndChanceToShock", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "lightning", "ailment" }, "(73-80)% increased Lightning Damage", "(29-34)% chance to Shock", statOrder = { 1288, 1942 }, level = 81, group = "LightningDamageAndChanceToShock", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "lightning", "ailment" }, "(36-41)% increased Lightning Damage", "(13-15)% chance to Shock", statOrder = { 1288, 1942 }, level = 60, group = "LightningDamageAndChanceToShock", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "lightning", "ailment" }, "(42-50)% increased Lightning Damage", "(16-17)% chance to Shock", statOrder = { 1288, 1942 }, level = 72, group = "LightningDamageAndChanceToShock", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "lightning", "ailment" }, "(51-60)% increased Lightning Damage", "(18-20)% chance to Shock", statOrder = { 1288, 1942 }, level = 81, group = "LightningDamageAndChanceToShock", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos" }, "(53-60)% increased Chaos Damage", "Chaos Skills have (15-17)% increased Skill Effect Duration", statOrder = { 1296, 1807 }, level = 60, group = "ChaosDamageAndChaosSkillDuration", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos" }, "(61-68)% increased Chaos Damage", "Chaos Skills have (18-20)% increased Skill Effect Duration", statOrder = { 1296, 1807 }, level = 72, group = "ChaosDamageAndChaosSkillDuration", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos" }, "(69-75)% increased Chaos Damage", "Chaos Skills have (21-23)% increased Skill Effect Duration", statOrder = { 1296, 1807 }, level = 81, group = "ChaosDamageAndChaosSkillDuration", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos" }, "(35-39)% increased Chaos Damage", "Chaos Skills have (7-8)% increased Skill Effect Duration", statOrder = { 1296, 1807 }, level = 60, group = "ChaosDamageAndChaosSkillDuration", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos" }, "(40-45)% increased Chaos Damage", "Chaos Skills have (9-10)% increased Skill Effect Duration", statOrder = { 1296, 1807 }, level = 72, group = "ChaosDamageAndChaosSkillDuration", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos" }, "(46-50)% increased Chaos Damage", "Chaos Skills have (11-12)% increased Skill Effect Duration", statOrder = { 1296, 1807 }, level = 81, group = "ChaosDamageAndChaosSkillDuration", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "resource", "unveiled_mod", "mana", "damage", "caster" }, "(60-64)% increased Spell Damage", "(16-20)% increased Mana Regeneration Rate", statOrder = { 1135, 1495 }, level = 60, group = "SpellDamageAndManaRegenerationRate", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "resource", "unveiled_mod", "mana", "damage", "caster" }, "(65-72)% increased Spell Damage", "(21-25)% increased Mana Regeneration Rate", statOrder = { 1135, 1495 }, level = 72, group = "SpellDamageAndManaRegenerationRate", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "resource", "unveiled_mod", "mana", "damage", "caster" }, "(73-80)% increased Spell Damage", "(26-30)% increased Mana Regeneration Rate", statOrder = { 1135, 1495 }, level = 81, group = "SpellDamageAndManaRegenerationRate", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "resource", "unveiled_mod", "mana", "damage", "caster" }, "(36-41)% increased Spell Damage", "(7-9)% increased Mana Regeneration Rate", statOrder = { 1135, 1495 }, level = 60, group = "SpellDamageAndManaRegenerationRate", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "resource", "unveiled_mod", "mana", "damage", "caster" }, "(42-50)% increased Spell Damage", "(10-12)% increased Mana Regeneration Rate", statOrder = { 1135, 1495 }, level = 72, group = "SpellDamageAndManaRegenerationRate", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "resource", "unveiled_mod", "mana", "damage", "caster" }, "(51-60)% increased Spell Damage", "(13-15)% increased Mana Regeneration Rate", statOrder = { 1135, 1495 }, level = 81, group = "SpellDamageAndManaRegenerationRate", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "chaos_damage", "unveiled_mod", "damage", "chaos", "caster" }, "(53-58)% increased Spell Damage", "Gain (3-4)% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 1135, 9286 }, level = 60, group = "SpellDamageAndNonChaosDamageToAddAsChaosDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "chaos_damage", "unveiled_mod", "damage", "chaos", "caster" }, "(59-66)% increased Spell Damage", "Gain (5-6)% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 1135, 9286 }, level = 72, group = "SpellDamageAndNonChaosDamageToAddAsChaosDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "chaos_damage", "unveiled_mod", "damage", "chaos", "caster" }, "(67-75)% increased Spell Damage", "Gain (7-8)% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 1135, 9286 }, level = 81, group = "SpellDamageAndNonChaosDamageToAddAsChaosDamage", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "chaos_damage", "unveiled_mod", "damage", "chaos", "caster" }, "(38-40)% increased Spell Damage", "Gain 2% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 1135, 9286 }, level = 60, group = "SpellDamageAndNonChaosDamageToAddAsChaosDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "chaos_damage", "unveiled_mod", "damage", "chaos", "caster" }, "(41-45)% increased Spell Damage", "Gain 3% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 1135, 9286 }, level = 72, group = "SpellDamageAndNonChaosDamageToAddAsChaosDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "caster_damage", "chaos_damage", "unveiled_mod", "damage", "chaos", "caster" }, "(46-50)% increased Spell Damage", "Gain 4% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 1135, 9286 }, level = 81, group = "SpellDamageAndNonChaosDamageToAddAsChaosDamage", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "damage", "minion" }, "Minions have (26-32)% increased maximum Life", "Minions deal (26-32)% increased Damage", statOrder = { 1677, 1882 }, level = 60, group = "MinionDamageAndMinionMaximumLife", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "damage", "minion" }, "Minions have (33-38)% increased maximum Life", "Minions deal (33-38)% increased Damage", statOrder = { 1677, 1882 }, level = 72, group = "MinionDamageAndMinionMaximumLife", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "damage", "minion" }, "Minions have (39-45)% increased maximum Life", "Minions deal (39-45)% increased Damage", statOrder = { 1677, 1882 }, level = 81, group = "MinionDamageAndMinionMaximumLife", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "damage", "minion" }, "Minions have (16-19)% increased maximum Life", "Minions deal (16-19)% increased Damage", statOrder = { 1677, 1882 }, level = 60, group = "MinionDamageAndMinionMaximumLife", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "damage", "minion" }, "Minions have (20-24)% increased maximum Life", "Minions deal (20-24)% increased Damage", statOrder = { 1677, 1882 }, level = 72, group = "MinionDamageAndMinionMaximumLife", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "damage", "minion" }, "Minions have (25-28)% increased maximum Life", "Minions deal (25-28)% increased Damage", statOrder = { 1677, 1882 }, level = 81, group = "MinionDamageAndMinionMaximumLife", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attack", "caster", "speed", "minion" }, "Minions have (19-21)% increased Attack Speed", "Minions have (19-21)% increased Cast Speed", statOrder = { 2817, 2818 }, level = 60, group = "MinionAttackAndCastSpeedOnWeapon", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attack", "caster", "speed", "minion" }, "Minions have (22-24)% increased Attack Speed", "Minions have (22-24)% increased Cast Speed", statOrder = { 2817, 2818 }, level = 72, group = "MinionAttackAndCastSpeedOnWeapon", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attack", "caster", "speed", "minion" }, "Minions have (25-28)% increased Attack Speed", "Minions have (25-28)% increased Cast Speed", statOrder = { 2817, 2818 }, level = 81, group = "MinionAttackAndCastSpeedOnWeapon", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attack", "caster", "speed", "minion" }, "Minions have (10-11)% increased Attack Speed", "Minions have (10-11)% increased Cast Speed", statOrder = { 2817, 2818 }, level = 60, group = "MinionAttackAndCastSpeedOnWeapon", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attack", "caster", "speed", "minion" }, "Minions have (12-13)% increased Attack Speed", "Minions have (12-13)% increased Cast Speed", statOrder = { 2817, 2818 }, level = 72, group = "MinionAttackAndCastSpeedOnWeapon", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attack", "caster", "speed", "minion" }, "Minions have (14-15)% increased Attack Speed", "Minions have (14-15)% increased Cast Speed", statOrder = { 2817, 2818 }, level = 81, group = "MinionAttackAndCastSpeedOnWeapon", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "chaos_damage", "unveiled_mod", "damage", "chaos" }, "+(25-27)% to Chaos Damage over Time Multiplier", statOrder = { 1171 }, level = 60, group = "ChaosDamageOverTimeMultiplier", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "chaos_damage", "unveiled_mod", "damage", "chaos" }, "+(28-30)% to Chaos Damage over Time Multiplier", statOrder = { 1171 }, level = 72, group = "ChaosDamageOverTimeMultiplier", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "chaos_damage", "unveiled_mod", "damage", "chaos" }, "+(31-35)% to Chaos Damage over Time Multiplier", statOrder = { 1171 }, level = 81, group = "ChaosDamageOverTimeMultiplier", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "chaos_damage", "unveiled_mod", "damage", "chaos" }, "+(14-15)% to Chaos Damage over Time Multiplier", statOrder = { 1171 }, level = 60, group = "ChaosDamageOverTimeMultiplier", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "chaos_damage", "unveiled_mod", "damage", "chaos" }, "+(16-17)% to Chaos Damage over Time Multiplier", statOrder = { 1171 }, level = 72, group = "ChaosDamageOverTimeMultiplier", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "chaos_damage", "unveiled_mod", "damage", "chaos" }, "+(18-20)% to Chaos Damage over Time Multiplier", statOrder = { 1171 }, level = 81, group = "ChaosDamageOverTimeMultiplier", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "physical_damage", "unveiled_mod", "damage", "physical" }, "+(25-27)% to Physical Damage over Time Multiplier", statOrder = { 1159 }, level = 60, group = "PhysicalDamageOverTimeMultiplier", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "physical_damage", "unveiled_mod", "damage", "physical" }, "+(28-30)% to Physical Damage over Time Multiplier", statOrder = { 1159 }, level = 72, group = "PhysicalDamageOverTimeMultiplier", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "physical_damage", "unveiled_mod", "damage", "physical" }, "+(31-35)% to Physical Damage over Time Multiplier", statOrder = { 1159 }, level = 81, group = "PhysicalDamageOverTimeMultiplier", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "physical_damage", "unveiled_mod", "damage", "physical" }, "+(14-15)% to Physical Damage over Time Multiplier", statOrder = { 1159 }, level = 60, group = "PhysicalDamageOverTimeMultiplier", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "physical_damage", "unveiled_mod", "damage", "physical" }, "+(16-17)% to Physical Damage over Time Multiplier", statOrder = { 1159 }, level = 72, group = "PhysicalDamageOverTimeMultiplier", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "physical_damage", "unveiled_mod", "damage", "physical" }, "+(18-20)% to Physical Damage over Time Multiplier", statOrder = { 1159 }, level = 81, group = "PhysicalDamageOverTimeMultiplier", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "cold" }, "+(25-27)% to Cold Damage over Time Multiplier", statOrder = { 1168 }, level = 60, group = "ColdDamageOverTimeMultiplier", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "cold" }, "+(28-30)% to Cold Damage over Time Multiplier", statOrder = { 1168 }, level = 72, group = "ColdDamageOverTimeMultiplier", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "cold" }, "+(31-35)% to Cold Damage over Time Multiplier", statOrder = { 1168 }, level = 81, group = "ColdDamageOverTimeMultiplier", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "cold" }, "+(14-15)% to Cold Damage over Time Multiplier", statOrder = { 1168 }, level = 60, group = "ColdDamageOverTimeMultiplier", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "cold" }, "+(16-17)% to Cold Damage over Time Multiplier", statOrder = { 1168 }, level = 72, group = "ColdDamageOverTimeMultiplier", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "cold" }, "+(18-20)% to Cold Damage over Time Multiplier", statOrder = { 1168 }, level = 81, group = "ColdDamageOverTimeMultiplier", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "fire" }, "+(25-27)% to Fire Damage over Time Multiplier", statOrder = { 1163 }, level = 60, group = "FireDamageOverTimeMultiplier", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "fire" }, "+(28-30)% to Fire Damage over Time Multiplier", statOrder = { 1163 }, level = 72, group = "FireDamageOverTimeMultiplier", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "fire" }, "+(31-35)% to Fire Damage over Time Multiplier", statOrder = { 1163 }, level = 81, group = "FireDamageOverTimeMultiplier", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "fire" }, "+(14-15)% to Fire Damage over Time Multiplier", statOrder = { 1163 }, level = 60, group = "FireDamageOverTimeMultiplier", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "fire" }, "+(16-17)% to Fire Damage over Time Multiplier", statOrder = { 1163 }, level = 72, group = "FireDamageOverTimeMultiplier", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "fire" }, "+(18-20)% to Fire Damage over Time Multiplier", statOrder = { 1163 }, level = 81, group = "FireDamageOverTimeMultiplier", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "attack" }, "Attacks with this Weapon Penetrate (6-7)% Elemental Resistances", statOrder = { 3669 }, level = 60, group = "LocalAttackReduceEnemyElementalResistance", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "attack" }, "Attacks with this Weapon Penetrate (8-10)% Elemental Resistances", statOrder = { 3669 }, level = 72, group = "LocalAttackReduceEnemyElementalResistance", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "attack" }, "Attacks with this Weapon Penetrate (11-13)% Elemental Resistances", statOrder = { 3669 }, level = 81, group = "LocalAttackReduceEnemyElementalResistance", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos", "attack" }, "Attacks with this Weapon Penetrate (6-7)% Chaos Resistance", statOrder = { 7732 }, level = 60, group = "LocalChaosPenetration", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos", "attack" }, "Attacks with this Weapon Penetrate (8-10)% Chaos Resistance", statOrder = { 7732 }, level = 72, group = "LocalChaosPenetration", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos", "attack" }, "Attacks with this Weapon Penetrate (11-13)% Chaos Resistance", statOrder = { 7732 }, level = 81, group = "LocalChaosPenetration", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage" }, "(6-7)% chance to deal Double Damage", statOrder = { 5557 }, level = 60, group = "DoubleDamageChance", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage" }, "(8-10)% chance to deal Double Damage", statOrder = { 5557 }, level = 72, group = "DoubleDamageChance", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage" }, "3% chance to deal Double Damage", statOrder = { 5557 }, level = 60, group = "DoubleDamageChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage" }, "(4-5)% chance to deal Double Damage", statOrder = { 5557 }, level = 72, group = "DoubleDamageChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion" }, "(12-14)% increased Armour and Evasion", "+(8-9) to maximum Life", statOrder = { 1464, 1480 }, level = 60, group = "LocalIncreasedArmourAndEvasionAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion" }, "(15-17)% increased Armour and Evasion", "+(10-11) to maximum Life", statOrder = { 1464, 1480 }, level = 72, group = "LocalIncreasedArmourAndEvasionAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion" }, "(18-21)% increased Armour and Evasion", "+(12-14) to maximum Life", statOrder = { 1464, 1480 }, level = 81, group = "LocalIncreasedArmourAndEvasionAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "energy_shield" }, "(12-14)% increased Armour and Energy Shield", "+(8-9) to maximum Life", statOrder = { 1463, 1480 }, level = 60, group = "LocalIncreasedArmourAndEnergyShieldAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "energy_shield" }, "(15-17)% increased Armour and Energy Shield", "+(10-11) to maximum Life", statOrder = { 1463, 1480 }, level = 72, group = "LocalIncreasedArmourAndEnergyShieldAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "energy_shield" }, "(18-21)% increased Armour and Energy Shield", "+(12-14) to maximum Life", statOrder = { 1463, 1480 }, level = 81, group = "LocalIncreasedArmourAndEnergyShieldAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion", "energy_shield" }, "(12-14)% increased Evasion and Energy Shield", "+(8-9) to maximum Life", statOrder = { 1465, 1480 }, level = 60, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion", "energy_shield" }, "(15-17)% increased Evasion and Energy Shield", "+(10-11) to maximum Life", statOrder = { 1465, 1480 }, level = 72, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion", "energy_shield" }, "(18-21)% increased Evasion and Energy Shield", "+(12-14) to maximum Life", statOrder = { 1465, 1480 }, level = 81, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour" }, "(12-14)% increased Armour", "+(8-9) to maximum Life", statOrder = { 1453, 1480 }, level = 60, group = "LocalIncreasedArmourAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour" }, "(15-17)% increased Armour", "+(10-11) to maximum Life", statOrder = { 1453, 1480 }, level = 72, group = "LocalIncreasedArmourAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour" }, "(18-21)% increased Armour", "+(12-14) to maximum Life", statOrder = { 1453, 1480 }, level = 81, group = "LocalIncreasedArmourAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion" }, "(12-14)% increased Evasion Rating", "+(8-9) to maximum Life", statOrder = { 1461, 1480 }, level = 60, group = "LocalIncreasedEvasionAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion" }, "(15-17)% increased Evasion Rating", "+(10-11) to maximum Life", statOrder = { 1461, 1480 }, level = 72, group = "LocalIncreasedEvasionAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion" }, "(18-21)% increased Evasion Rating", "+(12-14) to maximum Life", statOrder = { 1461, 1480 }, level = 81, group = "LocalIncreasedEvasionAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "energy_shield" }, "(12-14)% increased Energy Shield", "+(8-9) to maximum Life", statOrder = { 1471, 1480 }, level = 60, group = "LocalIncreasedEnergyShieldAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "energy_shield" }, "(15-17)% increased Energy Shield", "+(10-11) to maximum Life", statOrder = { 1471, 1480 }, level = 72, group = "LocalIncreasedEnergyShieldAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "energy_shield" }, "(18-21)% increased Energy Shield", "+(12-14) to maximum Life", statOrder = { 1471, 1480 }, level = 81, group = "LocalIncreasedEnergyShieldAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion", "energy_shield" }, "(12-14)% increased Armour, Evasion and Energy Shield", "+(8-9) to maximum Life", statOrder = { 1466, 1480 }, level = 60, group = "LocalIncreasedDefencesAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion", "energy_shield" }, "(15-17)% increased Armour, Evasion and Energy Shield", "+(10-11) to maximum Life", statOrder = { 1466, 1480 }, level = 72, group = "LocalIncreasedDefencesAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion", "energy_shield" }, "(18-21)% increased Armour, Evasion and Energy Shield", "+(12-14) to maximum Life", statOrder = { 1466, 1480 }, level = 81, group = "LocalIncreasedDefencesAndLife", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion" }, "(12-14)% increased Armour and Evasion", "+(10-11) to maximum Life", statOrder = { 1464, 1480 }, level = 60, group = "LocalIncreasedArmourAndEvasionAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion" }, "(15-17)% increased Armour and Evasion", "+(12-13) to maximum Life", statOrder = { 1464, 1480 }, level = 72, group = "LocalIncreasedArmourAndEvasionAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion" }, "(18-21)% increased Armour and Evasion", "+(14-16) to maximum Life", statOrder = { 1464, 1480 }, level = 81, group = "LocalIncreasedArmourAndEvasionAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "energy_shield" }, "(12-14)% increased Armour and Energy Shield", "+(10-11) to maximum Life", statOrder = { 1463, 1480 }, level = 60, group = "LocalIncreasedArmourAndEnergyShieldAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "energy_shield" }, "(15-17)% increased Armour and Energy Shield", "+(12-13) to maximum Life", statOrder = { 1463, 1480 }, level = 72, group = "LocalIncreasedArmourAndEnergyShieldAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "energy_shield" }, "(18-21)% increased Armour and Energy Shield", "+(14-16) to maximum Life", statOrder = { 1463, 1480 }, level = 81, group = "LocalIncreasedArmourAndEnergyShieldAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion", "energy_shield" }, "(12-14)% increased Evasion and Energy Shield", "+(10-11) to maximum Life", statOrder = { 1465, 1480 }, level = 60, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion", "energy_shield" }, "(15-17)% increased Evasion and Energy Shield", "+(12-13) to maximum Life", statOrder = { 1465, 1480 }, level = 72, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion", "energy_shield" }, "(18-21)% increased Evasion and Energy Shield", "+(14-16) to maximum Life", statOrder = { 1465, 1480 }, level = 81, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour" }, "(12-14)% increased Armour", "+(10-11) to maximum Life", statOrder = { 1453, 1480 }, level = 60, group = "LocalIncreasedArmourAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour" }, "(15-17)% increased Armour", "+(12-13) to maximum Life", statOrder = { 1453, 1480 }, level = 72, group = "LocalIncreasedArmourAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour" }, "(18-21)% increased Armour", "+(14-16) to maximum Life", statOrder = { 1453, 1480 }, level = 81, group = "LocalIncreasedArmourAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion" }, "(12-14)% increased Evasion Rating", "+(10-11) to maximum Life", statOrder = { 1461, 1480 }, level = 60, group = "LocalIncreasedEvasionAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion" }, "(15-17)% increased Evasion Rating", "+(12-13) to maximum Life", statOrder = { 1461, 1480 }, level = 72, group = "LocalIncreasedEvasionAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion" }, "(18-21)% increased Evasion Rating", "+(14-16) to maximum Life", statOrder = { 1461, 1480 }, level = 81, group = "LocalIncreasedEvasionAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "energy_shield" }, "(12-14)% increased Energy Shield", "+(10-11) to maximum Life", statOrder = { 1471, 1480 }, level = 60, group = "LocalIncreasedEnergyShieldAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "energy_shield" }, "(15-17)% increased Energy Shield", "+(12-13) to maximum Life", statOrder = { 1471, 1480 }, level = 72, group = "LocalIncreasedEnergyShieldAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "energy_shield" }, "(18-21)% increased Energy Shield", "+(14-16) to maximum Life", statOrder = { 1471, 1480 }, level = 81, group = "LocalIncreasedEnergyShieldAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion", "energy_shield" }, "(12-14)% increased Armour, Evasion and Energy Shield", "+(10-11) to maximum Life", statOrder = { 1466, 1480 }, level = 60, group = "LocalIncreasedDefencesAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion", "energy_shield" }, "(15-17)% increased Armour, Evasion and Energy Shield", "+(12-13) to maximum Life", statOrder = { 1466, 1480 }, level = 72, group = "LocalIncreasedDefencesAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion", "energy_shield" }, "(18-21)% increased Armour, Evasion and Energy Shield", "+(14-16) to maximum Life", statOrder = { 1466, 1480 }, level = 81, group = "LocalIncreasedDefencesAndLife", types = { ["Helmet"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion" }, "(12-14)% increased Armour and Evasion", "+(13-14) to maximum Life", statOrder = { 1464, 1480 }, level = 60, group = "LocalIncreasedArmourAndEvasionAndLife", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion" }, "(15-17)% increased Armour and Evasion", "+(15-16) to maximum Life", statOrder = { 1464, 1480 }, level = 72, group = "LocalIncreasedArmourAndEvasionAndLife", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion" }, "(18-21)% increased Armour and Evasion", "+(17-19) to maximum Life", statOrder = { 1464, 1480 }, level = 81, group = "LocalIncreasedArmourAndEvasionAndLife", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "energy_shield" }, "(12-14)% increased Armour and Energy Shield", "+(13-14) to maximum Life", statOrder = { 1463, 1480 }, level = 60, group = "LocalIncreasedArmourAndEnergyShieldAndLife", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "energy_shield" }, "(15-17)% increased Armour and Energy Shield", "+(15-16) to maximum Life", statOrder = { 1463, 1480 }, level = 72, group = "LocalIncreasedArmourAndEnergyShieldAndLife", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "energy_shield" }, "(18-21)% increased Armour and Energy Shield", "+(17-19) to maximum Life", statOrder = { 1463, 1480 }, level = 81, group = "LocalIncreasedArmourAndEnergyShieldAndLife", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion", "energy_shield" }, "(12-14)% increased Evasion and Energy Shield", "+(13-14) to maximum Life", statOrder = { 1465, 1480 }, level = 60, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion", "energy_shield" }, "(15-17)% increased Evasion and Energy Shield", "+(15-16) to maximum Life", statOrder = { 1465, 1480 }, level = 72, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion", "energy_shield" }, "(18-21)% increased Evasion and Energy Shield", "+(17-19) to maximum Life", statOrder = { 1465, 1480 }, level = 81, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour" }, "(12-14)% increased Armour", "+(13-14) to maximum Life", statOrder = { 1453, 1480 }, level = 60, group = "LocalIncreasedArmourAndLife", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour" }, "(15-17)% increased Armour", "+(15-16) to maximum Life", statOrder = { 1453, 1480 }, level = 72, group = "LocalIncreasedArmourAndLife", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour" }, "(18-21)% increased Armour", "+(17-19) to maximum Life", statOrder = { 1453, 1480 }, level = 81, group = "LocalIncreasedArmourAndLife", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion" }, "(12-14)% increased Evasion Rating", "+(13-14) to maximum Life", statOrder = { 1461, 1480 }, level = 60, group = "LocalIncreasedEvasionAndLife", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion" }, "(15-17)% increased Evasion Rating", "+(15-16) to maximum Life", statOrder = { 1461, 1480 }, level = 72, group = "LocalIncreasedEvasionAndLife", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "evasion" }, "(18-21)% increased Evasion Rating", "+(17-19) to maximum Life", statOrder = { 1461, 1480 }, level = 81, group = "LocalIncreasedEvasionAndLife", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "energy_shield" }, "(12-14)% increased Energy Shield", "+(13-14) to maximum Life", statOrder = { 1471, 1480 }, level = 60, group = "LocalIncreasedEnergyShieldAndLife", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "energy_shield" }, "(15-17)% increased Energy Shield", "+(15-16) to maximum Life", statOrder = { 1471, 1480 }, level = 72, group = "LocalIncreasedEnergyShieldAndLife", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "energy_shield" }, "(18-21)% increased Energy Shield", "+(17-19) to maximum Life", statOrder = { 1471, 1480 }, level = 81, group = "LocalIncreasedEnergyShieldAndLife", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion", "energy_shield" }, "(12-14)% increased Armour, Evasion and Energy Shield", "+(13-14) to maximum Life", statOrder = { 1466, 1480 }, level = 60, group = "LocalIncreasedDefencesAndLife", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion", "energy_shield" }, "(15-17)% increased Armour, Evasion and Energy Shield", "+(15-16) to maximum Life", statOrder = { 1466, 1480 }, level = 72, group = "LocalIncreasedDefencesAndLife", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion", "energy_shield" }, "(18-21)% increased Armour, Evasion and Energy Shield", "+(17-19) to maximum Life", statOrder = { 1466, 1480 }, level = 81, group = "LocalIncreasedDefencesAndLife", types = { ["Body Armour"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attribute" }, "+(10-15) to Strength and Dexterity", statOrder = { 1092 }, level = 60, group = "StrengthAndDexterity", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, ["Amulet"] = true, ["Belt"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attribute" }, "+(16-20) to Strength and Dexterity", statOrder = { 1092 }, level = 72, group = "StrengthAndDexterity", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, ["Amulet"] = true, ["Belt"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attribute" }, "+(21-25) to Strength and Dexterity", statOrder = { 1092 }, level = 81, group = "StrengthAndDexterity", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, ["Amulet"] = true, ["Belt"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attribute" }, "+(10-15) to Dexterity and Intelligence", statOrder = { 1094 }, level = 60, group = "DexterityAndIntelligence", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, ["Amulet"] = true, ["Belt"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attribute" }, "+(16-20) to Dexterity and Intelligence", statOrder = { 1094 }, level = 72, group = "DexterityAndIntelligence", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, ["Amulet"] = true, ["Belt"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attribute" }, "+(21-25) to Dexterity and Intelligence", statOrder = { 1094 }, level = 81, group = "DexterityAndIntelligence", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, ["Amulet"] = true, ["Belt"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attribute" }, "+(10-15) to Strength and Intelligence", statOrder = { 1093 }, level = 60, group = "StrengthAndIntelligence", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, ["Amulet"] = true, ["Belt"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attribute" }, "+(16-20) to Strength and Intelligence", statOrder = { 1093 }, level = 72, group = "StrengthAndIntelligence", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, ["Amulet"] = true, ["Belt"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attribute" }, "+(21-25) to Strength and Intelligence", statOrder = { 1093 }, level = 81, group = "StrengthAndIntelligence", types = { ["Body Armour"] = true, ["Boots"] = true, ["Gloves"] = true, ["Helmet"] = true, ["Shield"] = true, ["Amulet"] = true, ["Belt"] = true, ["Ring"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "endurance_charge", "unveiled_mod" }, "+1 to Minimum Endurance Charges", statOrder = { 1714 }, level = 75, group = "MinimumEnduranceCharges", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "power_charge", "unveiled_mod" }, "+1 to Minimum Power Charges", statOrder = { 1724 }, level = 75, group = "MinimumPowerCharges", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "frenzy_charge", "unveiled_mod" }, "+1 to Minimum Frenzy Charges", statOrder = { 1719 }, level = 75, group = "MinimumFrenzyCharges", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "mana" }, "+(26-30) to maximum Mana", "Regenerate 2 Mana per second", statOrder = { 1490, 1493 }, level = 60, group = "IncreasedManaAndRegen", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "mana" }, "+(31-35) to maximum Mana", "Regenerate 3 Mana per second", statOrder = { 1490, 1493 }, level = 72, group = "IncreasedManaAndRegen", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "mana" }, "+(36-40) to maximum Mana", "Regenerate 4 Mana per second", statOrder = { 1490, 1493 }, level = 81, group = "IncreasedManaAndRegen", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "mana" }, "+(26-30) to maximum Mana", "3% reduced Mana Cost of Skills", statOrder = { 1490, 1794 }, level = 60, group = "ManaAndManaCostPercent", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "mana" }, "+(31-35) to maximum Mana", "4% reduced Mana Cost of Skills", statOrder = { 1490, 1794 }, level = 72, group = "ManaAndManaCostPercent", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "mana" }, "+(36-40) to maximum Mana", "5% reduced Mana Cost of Skills", statOrder = { 1490, 1794 }, level = 81, group = "ManaAndManaCostPercent", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "mana" }, "+(26-30) to maximum Mana", "4% of Damage taken Recouped as Mana", statOrder = { 1490, 2364 }, level = 60, group = "ManaAndDamageTakenGoesToManaPercent", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "mana" }, "+(31-35) to maximum Mana", "5% of Damage taken Recouped as Mana", statOrder = { 1490, 2364 }, level = 72, group = "ManaAndDamageTakenGoesToManaPercent", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "mana" }, "+(36-40) to maximum Mana", "6% of Damage taken Recouped as Mana", statOrder = { 1490, 2364 }, level = 81, group = "ManaAndDamageTakenGoesToManaPercent", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attack", "caster", "speed" }, "3% increased Attack and Cast Speed", statOrder = { 1955 }, level = 60, group = "AttackAndCastSpeed", types = { ["Amulet"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attack", "caster", "speed" }, "4% increased Attack and Cast Speed", statOrder = { 1955 }, level = 25, group = "AttackAndCastSpeed", types = { ["Amulet"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attack", "caster", "speed" }, "(5-6)% increased Attack and Cast Speed", statOrder = { 1955 }, level = 50, group = "AttackAndCastSpeed", types = { ["Amulet"] = true, ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "speed" }, "(13-14)% increased Movement Speed", "(6-9)% increased Movement Speed if you haven't been Hit Recently", statOrder = { 1709, 3131 }, level = 60, group = "MovementVelocityAndMovementVelocityIfNotHitRecently", types = { ["Boots"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "speed" }, "(15-17)% increased Movement Speed", "(6-9)% increased Movement Speed if you haven't been Hit Recently", statOrder = { 1709, 3131 }, level = 72, group = "MovementVelocityAndMovementVelocityIfNotHitRecently", types = { ["Boots"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "speed" }, "(18-20)% increased Movement Speed", "(6-9)% increased Movement Speed if you haven't been Hit Recently", statOrder = { 1709, 3131 }, level = 81, group = "MovementVelocityAndMovementVelocityIfNotHitRecently", types = { ["Boots"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "speed" }, "(13-14)% increased Movement Speed", "(8-12)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1709, 2902 }, level = 60, group = "MovementVelocityAndOnslaughtOnKill", types = { ["Boots"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "speed" }, "(15-17)% increased Movement Speed", "(8-12)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1709, 2902 }, level = 72, group = "MovementVelocityAndOnslaughtOnKill", types = { ["Boots"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "speed" }, "(18-20)% increased Movement Speed", "(8-12)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1709, 2902 }, level = 81, group = "MovementVelocityAndOnslaughtOnKill", types = { ["Boots"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "elemental", "cold", "speed", "ailment" }, "(13-14)% increased Movement Speed", "100% chance to Avoid being Chilled", statOrder = { 1709, 1755 }, level = 60, group = "MovementVelocityAndCannotBeChilled", types = { ["Boots"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "elemental", "cold", "speed", "ailment" }, "(15-17)% increased Movement Speed", "100% chance to Avoid being Chilled", statOrder = { 1709, 1755 }, level = 72, group = "MovementVelocityAndCannotBeChilled", types = { ["Boots"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "elemental", "cold", "speed", "ailment" }, "(18-20)% increased Movement Speed", "100% chance to Avoid being Chilled", statOrder = { 1709, 1755 }, level = 81, group = "MovementVelocityAndCannotBeChilled", types = { ["Boots"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "defences", "armour", "evasion" }, "+(105-150) to Armour and Evasion Rating", statOrder = { 4173 }, level = 60, group = "ArmourAndEvasionRating", types = { ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "defences", "armour", "evasion" }, "+(151-213) to Armour and Evasion Rating", statOrder = { 4173 }, level = 72, group = "ArmourAndEvasionRating", types = { ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "defences", "armour", "evasion" }, "+(214-285) to Armour and Evasion Rating", statOrder = { 4173 }, level = 81, group = "ArmourAndEvasionRating", types = { ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "defences", "armour", "energy_shield" }, "+(105-150) to Armour", "+(11-15) to maximum Energy Shield", statOrder = { 1450, 1469 }, level = 60, group = "ArmourAndEnergyShield", types = { ["Belt"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "defences", "armour", "energy_shield" }, "+(151-213) to Armour", "+(16-20) to maximum Energy Shield", statOrder = { 1450, 1469 }, level = 72, group = "ArmourAndEnergyShield", types = { ["Belt"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "defences", "armour", "energy_shield" }, "+(214-285) to Armour", "+(21-25) to maximum Energy Shield", statOrder = { 1450, 1469 }, level = 81, group = "ArmourAndEnergyShield", types = { ["Belt"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "defences", "evasion", "energy_shield" }, "+(105-150) to Evasion Rating", "+(11-15) to maximum Energy Shield", statOrder = { 1455, 1469 }, level = 60, group = "EvasionRatingAndEnergyShield", types = { ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "defences", "evasion", "energy_shield" }, "+(151-213) to Evasion Rating", "+(16-20) to maximum Energy Shield", statOrder = { 1455, 1469 }, level = 72, group = "EvasionRatingAndEnergyShield", types = { ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "defences", "evasion", "energy_shield" }, "+(214-285) to Evasion Rating", "+(21-25) to maximum Energy Shield", statOrder = { 1455, 1469 }, level = 81, group = "EvasionRatingAndEnergyShield", types = { ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "flask", "unveiled_mod" }, "20% reduced Flask Charges gained", "Flasks applied to you have (8-10)% increased Effect", statOrder = { 2092, 2652 }, level = 60, group = "FlaskEffectAndFlaskChargesGained", types = { ["Belt"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "flask", "unveiled_mod" }, "33% reduced Flask Charges gained", "Flasks applied to you have (11-14)% increased Effect", statOrder = { 2092, 2652 }, level = 75, group = "FlaskEffectAndFlaskChargesGained", types = { ["Belt"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod" }, "(6-8)% increased Cooldown Recovery Rate", statOrder = { 4899 }, level = 60, group = "GlobalCooldownRecovery", types = { ["Belt"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod" }, "(9-12)% increased Cooldown Recovery Rate", statOrder = { 4899 }, level = 75, group = "GlobalCooldownRecovery", types = { ["Belt"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage" }, "(5-6)% increased Damage per Endurance Charge", statOrder = { 3107 }, level = 60, group = "DamagePerEnduranceCharge", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage" }, "(3-4)% increased Damage per Endurance Charge", statOrder = { 3107 }, level = 60, group = "DamagePerEnduranceCharge", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage" }, "(5-6)% increased Damage per Frenzy Charge", statOrder = { 3194 }, level = 60, group = "DamagePerFrenzyCharge", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage" }, "(3-4)% increased Damage per Frenzy Charge", statOrder = { 3194 }, level = 60, group = "DamagePerFrenzyCharge", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage" }, "(5-6)% increased Damage per Power Charge", statOrder = { 5961 }, level = 60, group = "IncreasedDamagePerPowerCharge", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage" }, "(3-4)% increased Damage per Power Charge", statOrder = { 5961 }, level = 60, group = "IncreasedDamagePerPowerCharge", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "elemental_damage", "unveiled_mod", "damage", "physical", "elemental", "fire" }, "(20-25)% of Physical Damage Converted to Fire Damage", statOrder = { 1864 }, level = 60, group = "ConvertPhysicalToFire", types = { ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "elemental_damage", "unveiled_mod", "damage", "physical", "elemental", "cold" }, "(20-25)% of Physical Damage Converted to Cold Damage", statOrder = { 1866 }, level = 60, group = "ConvertPhysicalToCold", types = { ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "elemental_damage", "unveiled_mod", "damage", "physical", "elemental", "lightning" }, "(20-25)% of Physical Damage Converted to Lightning Damage", statOrder = { 1868 }, level = 60, group = "ConvertPhysicalToLightning", types = { ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "minion" }, "+1 to maximum number of Raised Zombies", "+1 to maximum number of Skeletons", statOrder = { 2069, 2071 }, level = 60, group = "MaximumMinionCount", types = { ["Helmet"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "ailment" }, "(16-22)% increased Effect of Non-Damaging Ailments", statOrder = { 9296 }, level = 60, group = "IncreasedAilmentEffectOnEnemies", types = { ["Boots"] = true, ["Amulet"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "ailment" }, "(23-30)% increased Effect of Non-Damaging Ailments", statOrder = { 9296 }, level = 75, group = "IncreasedAilmentEffectOnEnemies", types = { ["Boots"] = true, ["Amulet"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "caster", "curse" }, "(4-5)% increased Effect of your Curses", statOrder = { 2505 }, level = 60, group = "CurseEffectiveness", types = { ["Shield"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "caster", "curse" }, "(6-7)% increased Effect of your Curses", statOrder = { 2505 }, level = 75, group = "CurseEffectiveness", types = { ["Shield"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "elemental" }, "(6-7)% chance to Avoid Elemental Damage from Hits during Soul Gain Prevention", statOrder = { 4839 }, level = 60, group = "AvoidElementalDamageChanceDuringSoulGainPrevention", types = { ["Body Armour"] = true, ["Helmet"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "elemental" }, "(8-9)% chance to Avoid Elemental Damage from Hits during Soul Gain Prevention", statOrder = { 4839 }, level = 75, group = "AvoidElementalDamageChanceDuringSoulGainPrevention", types = { ["Body Armour"] = true, ["Helmet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "physical" }, "+(1000-1600) to Armour during Soul Gain Prevention", statOrder = { 9439 }, level = 60, group = "PhysicalDamageReductionRatingDuringSoulGainPrevention", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "physical" }, "+(1601-2200) to Armour during Soul Gain Prevention", statOrder = { 9439 }, level = 72, group = "PhysicalDamageReductionRatingDuringSoulGainPrevention", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "physical" }, "+(2201-3000) to Armour during Soul Gain Prevention", statOrder = { 9439 }, level = 81, group = "PhysicalDamageReductionRatingDuringSoulGainPrevention", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod" }, "You have Onslaught during Soul Gain Prevention", statOrder = { 6665 }, level = 50, group = "GainOnslaughtDuringSoulGainPrevention", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage" }, "(30-40)% increased Damage with Non-Vaal Skills during Soul Gain Prevention", statOrder = { 5979 }, level = 60, group = "DamageWithNonVaalSkillsDuringSoulGainPrevention", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage" }, "(41-50)% increased Damage with Non-Vaal Skills during Soul Gain Prevention", statOrder = { 5979 }, level = 72, group = "DamageWithNonVaalSkillsDuringSoulGainPrevention", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage" }, "(51-60)% increased Damage with Non-Vaal Skills during Soul Gain Prevention", statOrder = { 5979 }, level = 81, group = "DamageWithNonVaalSkillsDuringSoulGainPrevention", types = { ["Boots"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "gem" }, "+1 to Level of Socketed AoE Gems", "(8-10)% increased Area of Effect", statOrder = { 156, 1791 }, level = 60, group = "SkillAreaOfEffectPercentAndAreaOfEffectGemLevel", types = { ["Helmet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "gem" }, "+1 to Level of Socketed Projectile Gems", "Projectiles Pierce an additional Target", statOrder = { 157, 1701 }, level = 60, group = "ProjectilePierceAndProjectileGemLevel", types = { ["Helmet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "attack", "attack", "gem" }, "+1 to Level of Socketed Melee Gems", "+0.2 metres to Melee Strike Range", statOrder = { 159, 2443 }, level = 60, group = "MeleeRangeAndMeleeGemLevel", types = { ["Helmet"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage", "critical" }, "+(25-31)% Critical Strike Multiplier while a Rare or Unique Enemy is Nearby", statOrder = { 5858 }, level = 60, group = "CriticalStrikeMultiplierIfRareOrUniqueEnemyNearby", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage", "critical" }, "+(32-38)% Critical Strike Multiplier while a Rare or Unique Enemy is Nearby", statOrder = { 5858 }, level = 72, group = "CriticalStrikeMultiplierIfRareOrUniqueEnemyNearby", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage", "critical" }, "+(39-45)% Critical Strike Multiplier while a Rare or Unique Enemy is Nearby", statOrder = { 5858 }, level = 81, group = "CriticalStrikeMultiplierIfRareOrUniqueEnemyNearby", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage", "critical" }, "+(17-21)% Critical Strike Multiplier while a Rare or Unique Enemy is Nearby", statOrder = { 5858 }, level = 60, group = "CriticalStrikeMultiplierIfRareOrUniqueEnemyNearby", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage", "critical" }, "+(22-25)% Critical Strike Multiplier while a Rare or Unique Enemy is Nearby", statOrder = { 5858 }, level = 72, group = "CriticalStrikeMultiplierIfRareOrUniqueEnemyNearby", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage", "critical" }, "+(26-30)% Critical Strike Multiplier while a Rare or Unique Enemy is Nearby", statOrder = { 5858 }, level = 81, group = "CriticalStrikeMultiplierIfRareOrUniqueEnemyNearby", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attack", "speed" }, "(14-16)% increased Attack Speed while a Rare or Unique Enemy is Nearby", statOrder = { 4797 }, level = 60, group = "AttackSpeedPercentIfRareOrUniqueEnemyNearby", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attack", "speed" }, "(17-19)% increased Attack Speed while a Rare or Unique Enemy is Nearby", statOrder = { 4797 }, level = 72, group = "AttackSpeedPercentIfRareOrUniqueEnemyNearby", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attack", "speed" }, "(20-22)% increased Attack Speed while a Rare or Unique Enemy is Nearby", statOrder = { 4797 }, level = 81, group = "AttackSpeedPercentIfRareOrUniqueEnemyNearby", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attack", "speed" }, "7% increased Attack Speed while a Rare or Unique Enemy is Nearby", statOrder = { 4797 }, level = 60, group = "AttackSpeedPercentIfRareOrUniqueEnemyNearby", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attack", "speed" }, "(8-9)% increased Attack Speed while a Rare or Unique Enemy is Nearby", statOrder = { 4797 }, level = 72, group = "AttackSpeedPercentIfRareOrUniqueEnemyNearby", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attack", "speed" }, "(10-11)% increased Attack Speed while a Rare or Unique Enemy is Nearby", statOrder = { 4797 }, level = 81, group = "AttackSpeedPercentIfRareOrUniqueEnemyNearby", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "defences", "energy_shield" }, "Regenerate 90 Energy Shield per second while a Rare or Unique Enemy is Nearby", statOrder = { 6343 }, level = 60, group = "EnergyShieldRegenerationRatePerMinuteIfRareOrUniqueEnemyNearby", types = { ["Body Armour"] = true, ["Belt"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "defences", "energy_shield" }, "Regenerate 120 Energy Shield per second while a Rare or Unique Enemy is Nearby", statOrder = { 6343 }, level = 72, group = "EnergyShieldRegenerationRatePerMinuteIfRareOrUniqueEnemyNearby", types = { ["Body Armour"] = true, ["Belt"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "defences", "energy_shield" }, "Regenerate 150 Energy Shield per second while a Rare or Unique Enemy is Nearby", statOrder = { 6343 }, level = 81, group = "EnergyShieldRegenerationRatePerMinuteIfRareOrUniqueEnemyNearby", types = { ["Body Armour"] = true, ["Belt"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "frenzy_charge", "unveiled_mod", "critical" }, "(9-10)% increased Global Critical Strike Chance", "3% chance to gain a Frenzy Charge on Critical Strike", statOrder = { 1370, 6640 }, level = 60, group = "CriticalChanceAndGainFrenzyChargeOnCriticalStrikePercent", types = { ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "frenzy_charge", "unveiled_mod", "critical" }, "(11-12)% increased Global Critical Strike Chance", "4% chance to gain a Frenzy Charge on Critical Strike", statOrder = { 1370, 6640 }, level = 72, group = "CriticalChanceAndGainFrenzyChargeOnCriticalStrikePercent", types = { ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "frenzy_charge", "unveiled_mod", "critical" }, "(13-14)% increased Global Critical Strike Chance", "5% chance to gain a Frenzy Charge on Critical Strike", statOrder = { 1370, 6640 }, level = 81, group = "CriticalChanceAndGainFrenzyChargeOnCriticalStrikePercent", types = { ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "critical" }, "(11-12)% increased Global Critical Strike Chance", "(14-16)% increased Elemental Damage if you've dealt a Critical Strike Recently", statOrder = { 1370, 6196 }, level = 60, group = "CriticalChanceAndElementalDamagePercentIfHaveCritRecently", types = { ["Gloves"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "critical" }, "(13-14)% increased Global Critical Strike Chance", "(17-19)% increased Elemental Damage if you've dealt a Critical Strike Recently", statOrder = { 1370, 6196 }, level = 72, group = "CriticalChanceAndElementalDamagePercentIfHaveCritRecently", types = { ["Gloves"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "critical" }, "(15-16)% increased Global Critical Strike Chance", "(20-22)% increased Elemental Damage if you've dealt a Critical Strike Recently", statOrder = { 1370, 6196 }, level = 81, group = "CriticalChanceAndElementalDamagePercentIfHaveCritRecently", types = { ["Gloves"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos", "critical" }, "(11-12)% increased Global Critical Strike Chance", "Adds (10-11) to (14-16) Chaos Damage if you've dealt a Critical Strike Recently", statOrder = { 1370, 9035 }, level = 60, group = "CriticalChanceAndAddedChaosDamageIfHaveCritRecently", types = { ["Gloves"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos", "critical" }, "(13-14)% increased Global Critical Strike Chance", "Adds (12-13) to (17-20) Chaos Damage if you've dealt a Critical Strike Recently", statOrder = { 1370, 9035 }, level = 72, group = "CriticalChanceAndAddedChaosDamageIfHaveCritRecently", types = { ["Gloves"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos", "critical" }, "(15-16)% increased Global Critical Strike Chance", "Adds (14-16) to (21-24) Chaos Damage if you've dealt a Critical Strike Recently", statOrder = { 1370, 9035 }, level = 81, group = "CriticalChanceAndAddedChaosDamageIfHaveCritRecently", types = { ["Gloves"] = true, ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "mana" }, "+(28-33) to maximum Life", "Regenerate 2 Mana per second", statOrder = { 1480, 1493 }, level = 60, group = "BaseLifeAndManaRegen", types = { ["Helmet"] = true, ["Gloves"] = true, ["Boots"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "mana" }, "+(34-40) to maximum Life", "Regenerate 3 Mana per second", statOrder = { 1480, 1493 }, level = 72, group = "BaseLifeAndManaRegen", types = { ["Helmet"] = true, ["Gloves"] = true, ["Boots"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "mana" }, "+(41-45) to maximum Life", "Regenerate 4 Mana per second", statOrder = { 1480, 1493 }, level = 81, group = "BaseLifeAndManaRegen", types = { ["Helmet"] = true, ["Gloves"] = true, ["Boots"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "mana" }, "Regenerate 15 Life per second", "+(28-33) to maximum Mana", statOrder = { 1485, 1490 }, level = 60, group = "BaseManaAndLifeRegen", types = { ["Helmet"] = true, ["Gloves"] = true, ["Boots"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "mana" }, "Regenerate 20 Life per second", "+(34-40) to maximum Mana", statOrder = { 1485, 1490 }, level = 72, group = "BaseManaAndLifeRegen", types = { ["Helmet"] = true, ["Gloves"] = true, ["Boots"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "mana" }, "Regenerate 25 Life per second", "+(41-45) to maximum Mana", statOrder = { 1485, 1490 }, level = 81, group = "BaseManaAndLifeRegen", types = { ["Helmet"] = true, ["Gloves"] = true, ["Boots"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "speed" }, "(18-20)% increased Totem Placement speed", statOrder = { 2487 }, level = 60, group = "SummonTotemCastSpeed", types = { ["Boots"] = true, ["Amulet"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "speed" }, "(21-25)% increased Totem Placement speed", statOrder = { 2487 }, level = 72, group = "SummonTotemCastSpeed", types = { ["Boots"] = true, ["Amulet"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "speed" }, "(26-30)% increased Totem Placement speed", statOrder = { 2487 }, level = 81, group = "SummonTotemCastSpeed", types = { ["Boots"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "cold" }, "Adds (6-7) to (9-10) Fire Damage", "Adds (6-7) to (9-10) Cold Damage", statOrder = { 1270, 1279 }, level = 60, group = "AddedFireAndColdDamage", types = { ["Shield"] = true, ["Ring"] = true, ["Quiver"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "cold" }, "Adds (8-9) to (11-13) Fire Damage", "Adds (8-9) to (11-13) Cold Damage", statOrder = { 1270, 1279 }, level = 72, group = "AddedFireAndColdDamage", types = { ["Shield"] = true, ["Ring"] = true, ["Quiver"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "cold" }, "Adds (10-12) to (14-16) Fire Damage", "Adds (10-12) to (14-16) Cold Damage", statOrder = { 1270, 1279 }, level = 81, group = "AddedFireAndColdDamage", types = { ["Shield"] = true, ["Ring"] = true, ["Quiver"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "lightning" }, "Adds (6-7) to (9-10) Fire Damage", "Adds 1 to (14-16) Lightning Damage", statOrder = { 1270, 1290 }, level = 60, group = "AddedFireAndLightningDamage", types = { ["Shield"] = true, ["Ring"] = true, ["Quiver"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "lightning" }, "Adds (8-9) to (11-13) Fire Damage", "Adds 1 to (17-20) Lightning Damage", statOrder = { 1270, 1290 }, level = 72, group = "AddedFireAndLightningDamage", types = { ["Shield"] = true, ["Ring"] = true, ["Quiver"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "lightning" }, "Adds (10-12) to (14-16) Fire Damage", "Adds 1 to (21-24) Lightning Damage", statOrder = { 1270, 1290 }, level = 81, group = "AddedFireAndLightningDamage", types = { ["Shield"] = true, ["Ring"] = true, ["Quiver"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "cold", "lightning" }, "Adds (6-7) to (9-10) Cold Damage", "Adds 1 to (14-16) Lightning Damage", statOrder = { 1279, 1290 }, level = 60, group = "AddedColdAndLightningDamage", types = { ["Shield"] = true, ["Ring"] = true, ["Quiver"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "cold", "lightning" }, "Adds (8-9) to (11-13) Cold Damage", "Adds 1 to (17-20) Lightning Damage", statOrder = { 1279, 1290 }, level = 72, group = "AddedColdAndLightningDamage", types = { ["Shield"] = true, ["Ring"] = true, ["Quiver"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "cold", "lightning" }, "Adds (10-12) to (14-16) Cold Damage", "Adds 1 to (21-24) Lightning Damage", statOrder = { 1279, 1290 }, level = 81, group = "AddedColdAndLightningDamage", types = { ["Shield"] = true, ["Ring"] = true, ["Quiver"] = true, ["Amulet"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "critical" }, "Your Critical Strike Chance is Lucky while Focused", statOrder = { 6416 }, level = 72, group = "LuckyCriticalsDuringFocus", types = { ["Belt"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "defences", "evasion" }, "(16-18)% increased Evasion Rating while Focused", statOrder = { 6365 }, level = 60, group = "DodgeChanceDuringFocus", types = { ["Helmet"] = true, ["Boots"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "defences", "evasion" }, "(19-22)% increased Evasion Rating while Focused", statOrder = { 6365 }, level = 72, group = "DodgeChanceDuringFocus", types = { ["Helmet"] = true, ["Boots"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "defences", "evasion" }, "(23-25)% increased Evasion Rating while Focused", statOrder = { 6365 }, level = 81, group = "DodgeChanceDuringFocus", types = { ["Helmet"] = true, ["Boots"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "physical" }, "8% additional Physical Damage Reduction while Focused", statOrder = { 4477 }, level = 60, group = "PhysicalDamageReductionDuringFocus", types = { ["Helmet"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "physical" }, "(9-10)% additional Physical Damage Reduction while Focused", statOrder = { 4477 }, level = 72, group = "PhysicalDamageReductionDuringFocus", types = { ["Helmet"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "physical" }, "(11-12)% additional Physical Damage Reduction while Focused", statOrder = { 4477 }, level = 81, group = "PhysicalDamageReductionDuringFocus", types = { ["Helmet"] = true, ["Gloves"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "elemental", "lightning", "ailment" }, "Shock nearby Enemies for 2 Seconds when you Focus", statOrder = { 9797 }, level = 60, group = "ShockNearbyEnemiesOnFocus", types = { ["Ring"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "elemental", "lightning", "ailment" }, "Shock nearby Enemies for 3 Seconds when you Focus", statOrder = { 9797 }, level = 72, group = "ShockNearbyEnemiesOnFocus", types = { ["Ring"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "elemental", "lightning", "ailment" }, "Shock nearby Enemies for 4 Seconds when you Focus", statOrder = { 9797 }, level = 81, group = "ShockNearbyEnemiesOnFocus", types = { ["Ring"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "resource", "unveiled_mod", "life" }, "1% of Evasion Rating is Regenerated as Life per second while Focused", statOrder = { 6373 }, level = 60, group = "LifeRegenerationPerEvasionDuringFocus", types = { ["Body Armour"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "resource", "unveiled_mod", "mana", "defences", "energy_shield" }, "Recover (23-25)% of Mana and Energy Shield when you Focus", statOrder = { 9710 }, level = 60, group = "RestoreManaAndEnergyShieldOnFocus", types = { ["Body Armour"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "resource", "unveiled_mod", "mana", "defences", "energy_shield" }, "Recover (26-28)% of Mana and Energy Shield when you Focus", statOrder = { 9710 }, level = 72, group = "RestoreManaAndEnergyShieldOnFocus", types = { ["Body Armour"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "resource", "unveiled_mod", "mana", "defences", "energy_shield" }, "Recover (29-31)% of Mana and Energy Shield when you Focus", statOrder = { 9710 }, level = 81, group = "RestoreManaAndEnergyShieldOnFocus", types = { ["Body Armour"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage" }, "(16-20)% chance to deal Double Damage while Focused", statOrder = { 5564 }, level = 60, group = "ChanceToDealDoubleDamageWhileFocused", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage" }, "(21-25)% chance to deal Double Damage while Focused", statOrder = { 5564 }, level = 72, group = "ChanceToDealDoubleDamageWhileFocused", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage" }, "(26-30)% chance to deal Double Damage while Focused", statOrder = { 5564 }, level = 81, group = "ChanceToDealDoubleDamageWhileFocused", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage" }, "(7-9)% chance to deal Double Damage while Focused", statOrder = { 5564 }, level = 60, group = "ChanceToDealDoubleDamageWhileFocused", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage" }, "(10-12)% chance to deal Double Damage while Focused", statOrder = { 5564 }, level = 72, group = "ChanceToDealDoubleDamageWhileFocused", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage" }, "(13-15)% chance to deal Double Damage while Focused", statOrder = { 5564 }, level = 81, group = "ChanceToDealDoubleDamageWhileFocused", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attack", "caster", "speed" }, "(22-25)% increased Attack and Cast Speed while Focused", statOrder = { 4720 }, level = 60, group = "AttackAndCastSpeedWhileFocused", types = { ["Gloves"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attack", "caster", "speed" }, "(26-30)% increased Attack and Cast Speed while Focused", statOrder = { 4720 }, level = 72, group = "AttackAndCastSpeedWhileFocused", types = { ["Gloves"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attack", "caster", "speed" }, "(31-36)% increased Attack and Cast Speed while Focused", statOrder = { 4720 }, level = 81, group = "AttackAndCastSpeedWhileFocused", types = { ["Gloves"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "ailment" }, "(16-20)% increased Duration of Ailments you inflict while Focused", statOrder = { 10008 }, level = 60, group = "StatusAilmentsYouInflictDurationWhileFocused", types = { ["Helmet"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "ailment" }, "(21-25)% increased Duration of Ailments you inflict while Focused", statOrder = { 10008 }, level = 72, group = "StatusAilmentsYouInflictDurationWhileFocused", types = { ["Helmet"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "ailment" }, "(26-30)% increased Duration of Ailments you inflict while Focused", statOrder = { 10008 }, level = 81, group = "StatusAilmentsYouInflictDurationWhileFocused", types = { ["Helmet"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "ailment" }, "You are Immune to Ailments while Focused", statOrder = { 7104 }, level = 60, group = "ImmuneToStatusAilmentsWhileFocused", types = { ["Boots"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "resource", "unveiled_mod", "life" }, "You have Vaal Pact while Focused", "10% of Damage Leeched as Life while Focused", statOrder = { 6713, 7222 }, level = 60, group = "LifeLeechFromAnyDamagePermyriadWhileFocusedAndVaalPact", types = { ["Amulet"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod" }, "+5 to maximum Fortification while Focused", statOrder = { 8937 }, level = 60, group = "FortifyEffectWhileFocused", types = { ["Body Armour"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod" }, "+6 to maximum Fortification while Focused", statOrder = { 8937 }, level = 72, group = "FortifyEffectWhileFocused", types = { ["Body Armour"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod" }, "+7 to maximum Fortification while Focused", statOrder = { 8937 }, level = 81, group = "FortifyEffectWhileFocused", types = { ["Body Armour"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "skill", "unveiled_mod", "caster", "gem" }, "Trigger Socketed Spells when you Focus, with a 0.25 second Cooldown", statOrder = { 748 }, level = 60, group = "TriggerSocketedSpellWhenYouFocus", types = { ["Helmet"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "resource", "unveiled_mod", "life", "mana" }, "(11-15)% of Damage is taken from Mana before Life while Focused", statOrder = { 5984 }, level = 60, group = "DamageRemovedFromManaBeforeLifeWhileFocused", types = { ["Body Armour"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "resource", "unveiled_mod", "life", "minion" }, "Minions Recover 100% of their Life when you Focus", statOrder = { 9172 }, level = 60, group = "MinionsRecoverMaximumLifeWhenYouFocus", types = { ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "damage" }, "(12-14)% increased Damage", statOrder = { 1103 }, level = 72, group = "AllDamage", types = { ["Ring"] = true, ["Belt"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "damage" }, "(15-17)% increased Damage", statOrder = { 1103 }, level = 81, group = "AllDamage", types = { ["Ring"] = true, ["Belt"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "gem" }, "+1 to Level of Socketed Support Gems", statOrder = { 169 }, level = 60, group = "LocalIncreaseSocketedSupportGemLevel", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "gem" }, "+2 to Level of Socketed Support Gems", statOrder = { 169 }, level = 80, group = "LocalIncreaseSocketedSupportGemLevel", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "mana" }, "Channelling Skills have -1 to Total Mana Cost", statOrder = { 9844 }, level = 60, group = "ManaCostTotalChannelled", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "mana" }, "Channelling Skills have -2 to Total Mana Cost", statOrder = { 9844 }, level = 72, group = "ManaCostTotalChannelled", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "mana" }, "Channelling Skills have -3 to Total Mana Cost", statOrder = { 9844 }, level = 81, group = "ManaCostTotalChannelled", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "mana" }, "Non-Channelling Skills have -4 to Total Mana Cost", statOrder = { 9846 }, level = 60, group = "ManaCostTotalNonChannelled", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "mana" }, "Non-Channelling Skills have -5 to Total Mana Cost", statOrder = { 9846 }, level = 72, group = "ManaCostTotalNonChannelled", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "mana" }, "Non-Channelling Skills have -(7-6) to Total Mana Cost", statOrder = { 9846 }, level = 81, group = "ManaCostTotalNonChannelled", types = { ["Ring"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "damage" }, "(31-36)% increased Damage while Leeching", statOrder = { 2971 }, level = 72, group = "DamageWhileLeeching", types = { ["Gloves"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "damage" }, "(37-43)% increased Damage while Leeching", statOrder = { 2971 }, level = 81, group = "DamageWhileLeeching", types = { ["Gloves"] = true, ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "gem" }, "+(6-7)% to Quality of Socketed Gems", statOrder = { 183 }, level = 72, group = "SocketedGemQuality", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "gem" }, "+(7-8)% to Quality of Socketed Gems", statOrder = { 183 }, level = 81, group = "SocketedGemQuality", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "bleed", "unveiled_mod", "damage", "physical", "attack", "ailment" }, "Adds (11-13) to (16-17) Physical Damage", "35% chance to cause Bleeding on Hit", statOrder = { 1187, 2392 }, level = 72, group = "LocalAddedPhysicalDamageAndCausesBleeding", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "bleed", "unveiled_mod", "damage", "physical", "attack", "ailment" }, "Adds (14-16) to (18-20) Physical Damage", "40% chance to cause Bleeding on Hit", statOrder = { 1187, 2392 }, level = 81, group = "LocalAddedPhysicalDamageAndCausesBleeding", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "bleed", "unveiled_mod", "damage", "physical", "attack", "ailment" }, "Adds (7-8) to (10-11) Physical Damage", "35% chance to cause Bleeding on Hit", statOrder = { 1187, 2392 }, level = 72, group = "LocalAddedPhysicalDamageAndCausesBleeding", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "bleed", "unveiled_mod", "damage", "physical", "attack", "ailment" }, "Adds (9-11) to (12-14) Physical Damage", "40% chance to cause Bleeding on Hit", statOrder = { 1187, 2392 }, level = 81, group = "LocalAddedPhysicalDamageAndCausesBleeding", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "attack" }, "Hits can't be Evaded", statOrder = { 1952 }, level = 60, group = "AlwaysHits", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "flask", "unveiled_mod", "damage" }, "(19-23)% increased Damage during any Flask Effect", statOrder = { 3990 }, level = 72, group = "DamageDuringFlaskEffect", types = { ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "flask", "unveiled_mod", "damage" }, "(24-28)% increased Damage during any Flask Effect", statOrder = { 3990 }, level = 81, group = "DamageDuringFlaskEffect", types = { ["Gloves"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "drop" }, "(36-40)% increased Rarity of Items Dropped by Slain Rare or Unique Enemies", statOrder = { 9617 }, level = 72, group = "RareOrUniqueMonsterDroppedItemRarity", types = { ["Helmet"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "drop" }, "(41-45)% increased Rarity of Items Dropped by Slain Rare or Unique Enemies", statOrder = { 9617 }, level = 81, group = "RareOrUniqueMonsterDroppedItemRarity", types = { ["Helmet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "fire", "chaos" }, "Gain (11-13)% of Fire Damage as Extra Chaos Damage", statOrder = { 1850 }, level = 72, group = "FireAddedAsChaos", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "fire", "chaos" }, "Gain (14-16)% of Fire Damage as Extra Chaos Damage", statOrder = { 1850 }, level = 81, group = "FireAddedAsChaos", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "fire", "chaos" }, "Gain (5-6)% of Fire Damage as Extra Chaos Damage", statOrder = { 1850 }, level = 72, group = "FireAddedAsChaos", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "fire", "chaos" }, "Gain (7-8)% of Fire Damage as Extra Chaos Damage", statOrder = { 1850 }, level = 81, group = "FireAddedAsChaos", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "cold", "chaos" }, "Gain (11-13)% of Cold Damage as Extra Chaos Damage", statOrder = { 1849 }, level = 72, group = "ColdAddedAsChaos", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "cold", "chaos" }, "Gain (14-16)% of Cold Damage as Extra Chaos Damage", statOrder = { 1849 }, level = 81, group = "ColdAddedAsChaos", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "cold", "chaos" }, "Gain (5-6)% of Cold Damage as Extra Chaos Damage", statOrder = { 1849 }, level = 72, group = "ColdAddedAsChaos", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "cold", "chaos" }, "Gain (7-8)% of Cold Damage as Extra Chaos Damage", statOrder = { 1849 }, level = 81, group = "ColdAddedAsChaos", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "lightning", "chaos" }, "Gain (11-13)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1847 }, level = 72, group = "LightningAddedAsChaos", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "lightning", "chaos" }, "Gain (14-16)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1847 }, level = 81, group = "LightningAddedAsChaos", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "lightning", "chaos" }, "Gain (5-6)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1847 }, level = 72, group = "LightningAddedAsChaos", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "lightning", "chaos" }, "Gain (7-8)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1847 }, level = 81, group = "LightningAddedAsChaos", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "chaos_damage", "unveiled_mod", "damage", "physical", "chaos" }, "Gain (11-13)% of Physical Damage as Extra Chaos Damage", statOrder = { 1844 }, level = 72, group = "PhysicalAddedAsChaos", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "chaos_damage", "unveiled_mod", "damage", "physical", "chaos" }, "Gain (14-16)% of Physical Damage as Extra Chaos Damage", statOrder = { 1844 }, level = 81, group = "PhysicalAddedAsChaos", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "chaos_damage", "unveiled_mod", "damage", "physical", "chaos" }, "Gain (5-6)% of Physical Damage as Extra Chaos Damage", statOrder = { 1844 }, level = 72, group = "PhysicalAddedAsChaos", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Shield"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "physical_damage", "chaos_damage", "unveiled_mod", "damage", "physical", "chaos" }, "Gain (7-8)% of Physical Damage as Extra Chaos Damage", statOrder = { 1844 }, level = 81, group = "PhysicalAddedAsChaos", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attribute" }, "5% increased Attributes", statOrder = { 1095 }, level = 72, group = "PercentageAllAttributes", types = { ["Body Armour"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attribute" }, "6% increased Attributes", statOrder = { 1095 }, level = 81, group = "PercentageAllAttributes", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "aura" }, "Banner Skills have (12-15)% increased Aura Effect", statOrder = { 3270 }, level = 72, group = "BannerEffect", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "aura" }, "Banner Skills have (16-20)% increased Aura Effect", statOrder = { 3270 }, level = 81, group = "BannerEffect", types = { ["Body Armour"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "minion" }, "Trigger Level 10 Summon Spectral Wolf on Kill", statOrder = { 705 }, level = 60, group = "SummonWolfOnKillOld", types = { ["Amulet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod" }, "(10-14)% increased Warcry Buff Effect", statOrder = { 10348 }, level = 72, group = "WarcryBuffEffect", types = { ["Helmet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod" }, "(15-18)% increased Warcry Buff Effect", statOrder = { 10348 }, level = 81, group = "WarcryBuffEffect", types = { ["Helmet"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "elemental", "cold", "ailment" }, "80% chance to Avoid being Frozen", statOrder = { 1756 }, level = 72, group = "AvoidFreeze", types = { ["Boots"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "elemental", "cold", "ailment" }, "100% chance to Avoid being Frozen", statOrder = { 1756 }, level = 81, group = "AvoidFreeze", types = { ["Boots"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage", "critical" }, "(12-13)% increased Global Critical Strike Chance", "+(18-20)% to Critical Strike Multiplier if you've Shattered an Enemy Recently", statOrder = { 1370, 5855 }, level = 72, group = "CritChanceAndCriticalStrikeMultiplierIfEnemyShatteredRecently", types = { ["Ring"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "damage", "critical" }, "(14-16)% increased Global Critical Strike Chance", "+(21-23)% to Critical Strike Multiplier if you've Shattered an Enemy Recently", statOrder = { 1370, 5855 }, level = 81, group = "CritChanceAndCriticalStrikeMultiplierIfEnemyShatteredRecently", types = { ["Ring"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "physical_damage", "chaos_damage", "unveiled_mod", "damage", "physical", "chaos" }, "(11-13)% increased Global Physical Damage", "(11-13)% increased Chaos Damage", statOrder = { 1143, 1296 }, level = 72, group = "IncreasedChaosAndPhysicalDamage", types = { ["Ring"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "physical_damage", "chaos_damage", "unveiled_mod", "damage", "physical", "chaos" }, "(14-16)% increased Global Physical Damage", "(14-16)% increased Chaos Damage", statOrder = { 1143, 1296 }, level = 81, group = "IncreasedChaosAndPhysicalDamage", types = { ["Ring"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "lightning" }, "(11-13)% increased Fire Damage", "(11-13)% increased Lightning Damage", statOrder = { 1268, 1288 }, level = 72, group = "IncreasedFireAndLightningDamage", types = { ["Ring"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "lightning" }, "(14-16)% increased Fire Damage", "(14-16)% increased Lightning Damage", statOrder = { 1268, 1288 }, level = 81, group = "IncreasedFireAndLightningDamage", types = { ["Ring"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "flask", "resource", "unveiled_mod", "life" }, "Regenerate 3% of Life per second during Effect", statOrder = { 906 }, level = 60, group = "LocalFlaskLifeRegenerationPerMinuteDuringFlaskEffect", types = { ["Flask"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "flask", "unveiled_mod" }, "50% Chance to Avoid being Stunned during Effect", statOrder = { 885 }, level = 60, group = "LocalFlaskAvoidStunChanceDuringFlaskEffect", types = { ["Flask"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "flask", "unveiled_mod", "drop" }, "(20-30)% increased Rarity of Items found during Effect", statOrder = { 902 }, level = 60, group = "LocalFlaskItemFoundRarityDuringFlaskEffect", types = { ["Flask"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "flask", "unveiled_mod" }, "(45-55)% reduced Reflected Damage taken during Effect", statOrder = { 912 }, level = 60, group = "FlaskReflectReductionDuringFlaskEffect", types = { ["Flask"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "flask", "resource", "unveiled_mod", "life" }, "15% of Damage Taken from Hits is Leeched as Life during Effect", statOrder = { 905 }, level = 60, group = "LocalFlaskLifeLeechOnDamageTakenPermyriadDuringFlaskEffect", types = { ["Flask"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attack", "speed", "attribute" }, "+(15-19) to Dexterity and Intelligence", "(8-10)% increased Attack Speed", statOrder = { 1094, 1324 }, level = 60, group = "LocalAttackSpeedDexterityIntelligence", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attack", "speed", "attribute" }, "+(20-24) to Dexterity and Intelligence", "(13-16)% increased Attack Speed", statOrder = { 1094, 1324 }, level = 75, group = "LocalAttackSpeedDexterityIntelligence", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attack", "critical", "attribute" }, "+(15-19) to Strength and Intelligence", "(15-20)% increased Critical Strike Chance", statOrder = { 1093, 1375 }, level = 60, group = "LocalCriticalStrikeChanceStrengthIntelligence", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attack", "critical", "attribute" }, "+(20-24) to Strength and Intelligence", "(21-25)% increased Critical Strike Chance", statOrder = { 1093, 1375 }, level = 75, group = "LocalCriticalStrikeChanceStrengthIntelligence", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attack", "attribute" }, "+(15-19) to Strength and Dexterity", "+(161-200) to Accuracy Rating", statOrder = { 1092, 1933 }, level = 60, group = "LocalAccuracyRatingStrengthDexterity", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attack", "attribute" }, "+(20-24) to Strength and Dexterity", "+(201-250) to Accuracy Rating", statOrder = { 1092, 1933 }, level = 75, group = "LocalAccuracyRatingStrengthDexterity", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attack", "speed" }, "10% chance to Trigger Level 1 Blood Rage when you Kill an Enemy", "(8-10)% increased Attack Speed", statOrder = { 706, 1324 }, level = 60, group = "LocalAttackSpeedAndLocalDisplayTriggerLevel1BloodRageOnKillChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "attack", "speed" }, "10% chance to Trigger Level 1 Blood Rage when you Kill an Enemy", "(13-16)% increased Attack Speed", statOrder = { 706, 1324 }, level = 75, group = "LocalAttackSpeedAndLocalDisplayTriggerLevel1BloodRageOnKillChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "caster", "speed" }, "(12-14)% increased Cast Speed", "10% chance to gain Arcane Surge when you Kill an Enemy", statOrder = { 1357, 6615 }, level = 60, group = "CastSpeedAndGainArcaneSurgeOnKillChance", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "caster", "speed" }, "(15-18)% increased Cast Speed", "10% chance to gain Arcane Surge when you Kill an Enemy", statOrder = { 1357, 6615 }, level = 72, group = "CastSpeedAndGainArcaneSurgeOnKillChance", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "caster", "speed" }, "(19-24)% increased Cast Speed", "10% chance to gain Arcane Surge when you Kill an Enemy", statOrder = { 1357, 6615 }, level = 81, group = "CastSpeedAndGainArcaneSurgeOnKillChance", types = { ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Bow"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "caster", "speed" }, "(8-9)% increased Cast Speed", "10% chance to gain Arcane Surge when you Kill an Enemy", statOrder = { 1357, 6615 }, level = 60, group = "CastSpeedAndGainArcaneSurgeOnKillChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "caster", "speed" }, "(10-12)% increased Cast Speed", "10% chance to gain Arcane Surge when you Kill an Enemy", statOrder = { 1357, 6615 }, level = 72, group = "CastSpeedAndGainArcaneSurgeOnKillChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "caster", "speed" }, "(13-16)% increased Cast Speed", "10% chance to gain Arcane Surge when you Kill an Enemy", statOrder = { 1357, 6615 }, level = 81, group = "CastSpeedAndGainArcaneSurgeOnKillChance", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Wand"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "elemental", "fire", "chaos", "resistance" }, "+(9-10)% to Fire and Chaos Resistances", statOrder = { 6435 }, level = 60, group = "FireAndChaosDamageResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "elemental", "fire", "chaos", "resistance" }, "+(11-12)% to Fire and Chaos Resistances", statOrder = { 6435 }, level = 72, group = "FireAndChaosDamageResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "elemental", "fire", "chaos", "resistance" }, "+(13-15)% to Fire and Chaos Resistances", statOrder = { 6435 }, level = 81, group = "FireAndChaosDamageResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "elemental", "lightning", "chaos", "resistance" }, "+(9-10)% to Lightning and Chaos Resistances", statOrder = { 7295 }, level = 60, group = "LightningAndChaosDamageResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "elemental", "lightning", "chaos", "resistance" }, "+(11-12)% to Lightning and Chaos Resistances", statOrder = { 7295 }, level = 72, group = "LightningAndChaosDamageResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "elemental", "lightning", "chaos", "resistance" }, "+(13-15)% to Lightning and Chaos Resistances", statOrder = { 7295 }, level = 81, group = "LightningAndChaosDamageResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "elemental", "cold", "chaos", "resistance" }, "+(9-10)% to Cold and Chaos Resistances", statOrder = { 5697 }, level = 60, group = "ColdAndChaosDamageResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "elemental", "cold", "chaos", "resistance" }, "+(11-12)% to Cold and Chaos Resistances", statOrder = { 5697 }, level = 72, group = "ColdAndChaosDamageResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "elemental", "cold", "chaos", "resistance" }, "+(13-15)% to Cold and Chaos Resistances", statOrder = { 5697 }, level = 81, group = "ColdAndChaosDamageResistance", types = { ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(10-15) to Strength", "(21-25)% chance to Avoid being Ignited", statOrder = { 1089, 1757 }, level = 60, group = "StrengthAndAvoidIgnite", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(16-20) to Strength", "(21-25)% chance to Avoid being Ignited", statOrder = { 1089, 1757 }, level = 72, group = "StrengthAndAvoidIgnite", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(21-25) to Strength", "(21-25)% chance to Avoid being Ignited", statOrder = { 1089, 1757 }, level = 81, group = "StrengthAndAvoidIgnite", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(10-15) to Dexterity", "(21-25)% chance to Avoid being Frozen", statOrder = { 1090, 1756 }, level = 60, group = "DexterityAndAvoidFreeze", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(16-20) to Dexterity", "(21-25)% chance to Avoid being Frozen", statOrder = { 1090, 1756 }, level = 72, group = "DexterityAndAvoidFreeze", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(21-25) to Dexterity", "(21-25)% chance to Avoid being Frozen", statOrder = { 1090, 1756 }, level = 81, group = "DexterityAndAvoidFreeze", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(10-15) to Intelligence", "(21-25)% chance to Avoid being Shocked", statOrder = { 1091, 1759 }, level = 60, group = "IntelligenceAndAvoidShock", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(16-20) to Intelligence", "(21-25)% chance to Avoid being Shocked", statOrder = { 1091, 1759 }, level = 72, group = "IntelligenceAndAvoidShock", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "attribute" }, "+(21-25) to Intelligence", "(21-25)% chance to Avoid being Shocked", statOrder = { 1091, 1759 }, level = 81, group = "IntelligenceAndAvoidShock", types = { ["Body Armour"] = true, ["Shield"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "speed" }, "(7-8)% increased Trap Throwing Speed", statOrder = { 1836 }, level = 60, group = "TrapThrowSpeed", types = { ["Amulet"] = true, ["Belt"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "speed" }, "(9-10)% increased Trap Throwing Speed", statOrder = { 1836 }, level = 72, group = "TrapThrowSpeed", types = { ["Amulet"] = true, ["Belt"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "speed" }, "(11-12)% increased Trap Throwing Speed", statOrder = { 1836 }, level = 81, group = "TrapThrowSpeed", types = { ["Amulet"] = true, ["Belt"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "speed" }, "(7-8)% increased Mine Throwing Speed", statOrder = { 1837 }, level = 60, group = "MineLayingSpeed", types = { ["Amulet"] = true, ["Helmet"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "speed" }, "(9-10)% increased Mine Throwing Speed", statOrder = { 1837 }, level = 72, group = "MineLayingSpeed", types = { ["Amulet"] = true, ["Helmet"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "speed" }, "(11-12)% increased Mine Throwing Speed", statOrder = { 1837 }, level = 81, group = "MineLayingSpeed", types = { ["Amulet"] = true, ["Helmet"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "caster" }, "(11-13)% increased Brand Attachment range", statOrder = { 9827 }, level = 60, group = "BrandAttachmentRange", types = { ["Amulet"] = true, ["Gloves"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "caster" }, "(14-16)% increased Brand Attachment range", statOrder = { 9827 }, level = 72, group = "BrandAttachmentRange", types = { ["Amulet"] = true, ["Gloves"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod", "caster" }, "(17-20)% increased Brand Attachment range", statOrder = { 9827 }, level = 81, group = "BrandAttachmentRange", types = { ["Amulet"] = true, ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "resource", "unveiled_mod", "life", "mana" }, "(5-8)% increased maximum Life", "(5-8)% increased maximum Mana", statOrder = { 1482, 1491 }, level = 60, group = "PercentageLifeAndMana", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "block", "unveiled_mod" }, "(5-7)% Chance to Block Attack Damage", statOrder = { 1051 }, level = 60, group = "BlockPercent", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "block" }, "(6-8)% Chance to Block Spell Damage", statOrder = { 1072 }, level = 60, group = "SpellBlockPercentage", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "elemental", "fire", "cold", "lightning", "ailment" }, "(20-25)% chance to Avoid Elemental Ailments", "(20-25)% chance to Avoid being Stunned", statOrder = { 1754, 1762 }, level = 60, group = "AvoidStunAndElementalStatusAilments", types = { ["Body Armour"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "damage" }, "(6-7)% increased Area of Effect", "(9-10)% increased Area Damage", statOrder = { 1791, 1944 }, level = 60, group = "AreaDamageAndAreaOfEffect", types = { ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "damage" }, "(8-9)% increased Area of Effect", "(11-13)% increased Area Damage", statOrder = { 1791, 1944 }, level = 72, group = "AreaDamageAndAreaOfEffect", types = { ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "damage" }, "(10-12)% increased Area of Effect", "(14-16)% increased Area Damage", statOrder = { 1791, 1944 }, level = 81, group = "AreaDamageAndAreaOfEffect", types = { ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "damage", "speed" }, "(10-12)% increased Projectile Speed", "(9-10)% increased Projectile Damage", statOrder = { 1707, 1905 }, level = 60, group = "ProjectileDamageAndProjectileSpeed", types = { ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "damage", "speed" }, "(13-16)% increased Projectile Speed", "(11-13)% increased Projectile Damage", statOrder = { 1707, 1905 }, level = 72, group = "ProjectileDamageAndProjectileSpeed", types = { ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "damage", "speed" }, "(17-20)% increased Projectile Speed", "(14-16)% increased Projectile Damage", statOrder = { 1707, 1905 }, level = 81, group = "ProjectileDamageAndProjectileSpeed", types = { ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "damage", "attack" }, "(9-10)% increased Melee Damage", "+0.1 metres to Melee Strike Range", statOrder = { 1146, 2443 }, level = 60, group = "MeleeDamageAndMeleeRange", types = { ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "damage", "attack" }, "(11-13)% increased Melee Damage", "+0.1 metres to Melee Strike Range", statOrder = { 1146, 2443 }, level = 72, group = "MeleeDamageAndMeleeRange", types = { ["Gloves"] = true, }, }, + { type = "Prefix", affix = "Upgraded", modTags = { "unveiled_mod", "damage", "attack" }, "(14-16)% increased Melee Damage", "+0.1 metres to Melee Strike Range", statOrder = { 1146, 2443 }, level = 81, group = "MeleeDamageAndMeleeRange", types = { ["Gloves"] = true, }, }, + { type = "Suffix", affix = "of Craft", modTags = { "unveiled_mod" }, "Focus has (21-25)% increased Cooldown Recovery Rate", statOrder = { 6539 }, level = 60, group = "FocusCooldownRecovery", types = { ["Boots"] = true, }, }, { type = "Suffix", affix = "of Prefixes", modTags = { }, "Prefixes Cannot Be Changed", statOrder = { 12 }, level = 1, group = "ItemGenerationCannotChangePrefixes", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, { type = "Prefix", affix = "Suffixed", modTags = { }, "Suffixes Cannot Be Changed", statOrder = { 14 }, level = 1, group = "ItemGenerationCannotChangeSuffixes", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, { type = "Suffix", affix = "of Crafting", modTags = { }, "Can have up to 3 Crafted Modifiers", statOrder = { 17 }, level = 1, group = "ItemGenerationCanHaveMultipleCraftedMods", types = { ["Dagger"] = true, ["One Handed Axe"] = true, ["One Handed Mace"] = true, ["One Handed Sword"] = true, ["Claw"] = true, ["Sceptre"] = true, ["Thrusting One Handed Sword"] = true, ["Two Handed Axe"] = true, ["Two Handed Mace"] = true, ["Two Handed Sword"] = true, ["Staff"] = true, ["Wand"] = true, ["Bow"] = true, ["Body Armour"] = true, ["Gloves"] = true, ["Boots"] = true, ["Helmet"] = true, ["Shield"] = true, ["Ring"] = true, ["Amulet"] = true, ["Belt"] = true, ["Quiver"] = true, }, }, diff --git a/src/Data/ModNecropolis.lua b/src/Data/ModNecropolis.lua index c1b09f0c6b..01992a56ed 100644 --- a/src/Data/ModNecropolis.lua +++ b/src/Data/ModNecropolis.lua @@ -2,55 +2,55 @@ -- Item data (c) Grinding Gear Games return { - ["NecropolisCraftingAllResistancesWithChaos"] = { type = "Suffix", affix = "of Haunting", "+(12-16)% to All Resistances", statOrder = { 9414 }, level = 12, group = "AllResistancesWithChaos", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "resistance" }, }, - ["NecropolisCraftingFireResistanceCannotBePenetrated"] = { type = "Suffix", affix = "of Haunting", "Fire Resistance cannot be Penetrated", statOrder = { 6253 }, level = 68, group = "FireResistanceCannotBePenetrated", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "fire", "resistance" }, }, - ["NecropolisCraftingColdResistanceCannotBePenetrated"] = { type = "Suffix", affix = "of Haunting", "Cold Resistance cannot be Penetrated", statOrder = { 5540 }, level = 68, group = "ColdResistanceCannotBePenetrated", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "cold", "resistance" }, }, - ["NecropolisCraftingLightningResistanceCannotBePenetrated"] = { type = "Suffix", affix = "of Haunting", "Lightning Resistance cannot be Penetrated", statOrder = { 7074 }, level = 68, group = "LightningResistanceCannotBePenetrated", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "lightning", "resistance" }, }, - ["NecropolisCraftingLocalNoAttributeRequirements"] = { type = "Suffix", affix = "of Haunting", "Has no Attribute Requirements", statOrder = { 971 }, level = 50, group = "LocalNoAttributeRequirements", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod" }, }, - ["NecropolisCraftingDamageTakenGainedAsLife"] = { type = "Suffix", affix = "of Haunting", "(25-35)% of Damage taken Recouped as Life", statOrder = { 5803 }, level = 45, group = "DamageTakenGainedAsLife", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 350, 0 }, modTags = { "resource", "necropolis_exclusive_mod", "life" }, }, - ["NecropolisCraftingPercentDamageGoesToMana"] = { type = "Suffix", affix = "of Haunting", "(25-35)% of Damage taken Recouped as Mana", statOrder = { 2331 }, level = 45, group = "PercentDamageGoesToMana", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 350, 0 }, modTags = { "resource", "necropolis_exclusive_mod", "mana" }, }, + ["NecropolisCraftingAllResistancesWithChaos"] = { type = "Suffix", affix = "of Haunting", "+(12-16)% to All Resistances", statOrder = { 9708 }, level = 12, group = "AllResistancesWithChaos", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "resistance" }, }, + ["NecropolisCraftingFireResistanceCannotBePenetrated"] = { type = "Suffix", affix = "of Haunting", "Fire Resistance cannot be Penetrated", statOrder = { 6470 }, level = 68, group = "FireResistanceCannotBePenetrated", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "fire", "resistance" }, }, + ["NecropolisCraftingColdResistanceCannotBePenetrated"] = { type = "Suffix", affix = "of Haunting", "Cold Resistance cannot be Penetrated", statOrder = { 5731 }, level = 68, group = "ColdResistanceCannotBePenetrated", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "cold", "resistance" }, }, + ["NecropolisCraftingLightningResistanceCannotBePenetrated"] = { type = "Suffix", affix = "of Haunting", "Lightning Resistance cannot be Penetrated", statOrder = { 7322 }, level = 68, group = "LightningResistanceCannotBePenetrated", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "lightning", "resistance" }, }, + ["NecropolisCraftingLocalNoAttributeRequirements"] = { type = "Suffix", affix = "of Haunting", "Has no Attribute Requirements", statOrder = { 995 }, level = 50, group = "LocalNoAttributeRequirements", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod" }, }, + ["NecropolisCraftingDamageTakenGainedAsLife"] = { type = "Suffix", affix = "of Haunting", "(25-35)% of Damage taken Recouped as Life", statOrder = { 6000 }, level = 45, group = "DamageTakenGainedAsLife", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 350, 0 }, modTags = { "resource", "necropolis_exclusive_mod", "life" }, }, + ["NecropolisCraftingPercentDamageGoesToMana"] = { type = "Suffix", affix = "of Haunting", "(25-35)% of Damage taken Recouped as Mana", statOrder = { 2364 }, level = 45, group = "PercentDamageGoesToMana", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 350, 0 }, modTags = { "resource", "necropolis_exclusive_mod", "mana" }, }, ["NecropolisCraftingLocalCanSocketIgnoringColour"] = { type = "Suffix", affix = "of Haunting", "Gems can be Socketed in this Item ignoring Socket Colour", statOrder = { 71 }, level = 1, group = "LocalCanSocketIgnoringColour", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod" }, }, - ["NecropolisCraftingReducedExtraDamageFromCrits"] = { type = "Suffix", affix = "of Haunting", "You take (40-60)% reduced Extra Damage from Critical Strikes", statOrder = { 1395 }, level = 24, group = "ReducedExtraDamageFromCrits", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod", "damage", "critical" }, }, - ["NecropolisCraftingManaReservationEfficiency"] = { type = "Suffix", affix = "of Haunting", "(10-15)% increased Mana Reservation Efficiency of Skills", statOrder = { 2105 }, level = 24, group = "ManaReservationEfficiency", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "necropolis_exclusive_mod", "mana" }, }, - ["NecropolisCraftingLifeReservationEfficiency"] = { type = "Suffix", affix = "of Haunting", "(20-30)% increased Life Reservation Efficiency of Skills", statOrder = { 2103 }, level = 34, group = "LifeReservationEfficiency", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "necropolis_exclusive_mod", "life" }, }, - ["NecropolisCraftingCorruptedBloodImmunity"] = { type = "Suffix", affix = "of Haunting", "Corrupted Blood cannot be inflicted on you", statOrder = { 5116 }, level = 60, group = "CorruptedBloodImmunity", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 250, 0 }, modTags = { "bleed", "necropolis_exclusive_mod", "physical", "ailment" }, }, - ["NecropolisCraftingIncreasedStunThreshold"] = { type = "Suffix", affix = "of Haunting", "(80-120)% increased Stun Threshold", statOrder = { 3138 }, level = 1, group = "IncreasedStunThreshold", weightKey = { "necropolis_boots", "default", }, weightVal = { 750, 0 }, modTags = { "necropolis_exclusive_mod" }, }, - ["NecropolisCraftingCannotBeKnockedBack"] = { type = "Prefix", affix = "Haunted", "Cannot be Knocked Back", statOrder = { 1404 }, level = 50, group = "CannotBeKnockedBack", weightKey = { "necropolis_boots", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod" }, }, - ["NecropolisCraftingMaximumEnduranceCharges"] = { type = "Prefix", affix = "Haunted", "+1 to Maximum Endurance Charges", statOrder = { 1685 }, level = 16, group = "MaximumEnduranceCharges", weightKey = { "necropolis_boots", "default", }, weightVal = { 250, 0 }, modTags = { "endurance_charge", "necropolis_exclusive_mod" }, }, - ["NecropolisCraftingNoExtraBleedDamageWhileMoving"] = { type = "Suffix", affix = "of Haunting", "Moving while Bleeding doesn't cause you to take extra Damage", statOrder = { 3058 }, level = 34, group = "NoExtraBleedDamageWhileMoving", weightKey = { "necropolis_boots", "default", }, weightVal = { 250, 0 }, modTags = { "bleed", "necropolis_exclusive_mod", "physical", "attack", "ailment" }, }, - ["NecropolisCraftingAvoidIgnite"] = { type = "Suffix", affix = "of Haunting", "(60-75)% chance to Avoid being Ignited", statOrder = { 1727 }, level = 16, group = "AvoidIgnite", weightKey = { "necropolis_boots", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "fire", "ailment" }, }, - ["NecropolisCraftingAvoidFreeze"] = { type = "Suffix", affix = "of Haunting", "(60-75)% chance to Avoid being Frozen", statOrder = { 1726 }, level = 16, group = "AvoidFreeze", weightKey = { "necropolis_boots", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "cold", "ailment" }, }, - ["NecropolisCraftingAvoidShock"] = { type = "Suffix", affix = "of Haunting", "(60-75)% chance to Avoid being Shocked", statOrder = { 1729 }, level = 16, group = "AvoidShock", weightKey = { "necropolis_boots", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "lightning", "ailment" }, }, - ["NecropolisCraftingReducedBleedDuration"] = { type = "Suffix", affix = "of Haunting", "(60-75)% reduced Bleed Duration on you", statOrder = { 9458 }, level = 24, group = "ReducedBleedDuration", weightKey = { "necropolis_boots", "default", }, weightVal = { 350, 0 }, modTags = { "bleed", "necropolis_exclusive_mod", "physical", "ailment" }, }, - ["NecropolisCraftingReducedPoisonDuration"] = { type = "Suffix", affix = "of Haunting", "(60-75)% reduced Poison Duration on you", statOrder = { 9467 }, level = 24, group = "ReducedPoisonDuration", weightKey = { "necropolis_boots", "default", }, weightVal = { 350, 0 }, modTags = { "poison", "necropolis_exclusive_mod", "chaos", "ailment" }, }, - ["NecropolisCraftingBurningGroundEffectEffectiveness"] = { type = "Prefix", affix = "Haunted", "Unaffected by Burning Ground", statOrder = { 9931 }, level = 68, group = "BurningGroundEffectEffectiveness", weightKey = { "necropolis_boots", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "fire" }, }, - ["NecropolisCraftingShockedGroundEffectEffectiveness"] = { type = "Prefix", affix = "Haunted", "Unaffected by Shocked Ground", statOrder = { 9956 }, level = 68, group = "ShockedGroundEffectEffectiveness", weightKey = { "necropolis_boots", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "lightning", "ailment" }, }, - ["NecropolisCraftingChilledGroundEffectEffectiveness"] = { type = "Prefix", affix = "Haunted", "Unaffected by Chilled Ground", statOrder = { 9936 }, level = 68, group = "ChilledGroundEffectEffectiveness", weightKey = { "necropolis_boots", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "cold", "ailment" }, }, - ["NecropolisCraftingDesecratedGroundEffectEffectiveness"] = { type = "Prefix", affix = "Haunted", "Unaffected by Desecrated Ground", statOrder = { 9942 }, level = 68, group = "DesecratedGroundEffectEffectiveness", weightKey = { "necropolis_boots", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "chaos" }, }, - ["NecropolisCraftingMovementCannotBeSlowedBelowBase"] = { type = "Prefix", affix = "Haunted", "Movement Speed cannot be modified to below Base Value", statOrder = { 3062 }, level = 45, group = "MovementCannotBeSlowedBelowBase", weightKey = { "necropolis_boots", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "speed" }, }, - ["NecropolisCraftingWarcriesOpenChests"] = { type = "Prefix", affix = "Haunted", "Your Warcries open Chests", statOrder = { 9071 }, level = 24, group = "WarcriesOpenChests", weightKey = { "necropolis_helmet", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod" }, }, - ["NecropolisCraftingIncreasedMaximumPowerCharges"] = { type = "Prefix", affix = "Haunted", "+1 to Maximum Power Charges", statOrder = { 1695 }, level = 16, group = "IncreasedMaximumPowerCharges", weightKey = { "necropolis_helmet", "default", }, weightVal = { 250, 0 }, modTags = { "power_charge", "necropolis_exclusive_mod" }, }, - ["NecropolisCraftingCriticalStrikeChance"] = { type = "Suffix", affix = "of Haunting", "(30-50)% increased Global Critical Strike Chance", statOrder = { 1343 }, level = 1, group = "CriticalStrikeChance", weightKey = { "necropolis_helmet", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod", "critical" }, }, - ["NecropolisCraftingManaRegeneration"] = { type = "Suffix", affix = "of Haunting", "(40-60)% increased Mana Regeneration Rate", statOrder = { 1466 }, level = 1, group = "ManaRegeneration", weightKey = { "necropolis_helmet", "default", }, weightVal = { 750, 0 }, modTags = { "resource", "necropolis_exclusive_mod", "mana" }, }, - ["NecropolisCraftingImmunityToBlind"] = { type = "Suffix", affix = "of Haunting", "Cannot be Blinded", statOrder = { 2846 }, level = 38, group = "ImmunityToBlind", weightKey = { "necropolis_helmet", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod" }, }, - ["NecropolisCraftingManaPer2Intelligence"] = { type = "Prefix", affix = "Haunted", "+1 to maximum Mana per 2 Intelligence", statOrder = { 8718 }, level = 68, group = "ManaPer2Intelligence", weightKey = { "necropolis_helmet", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "necropolis_exclusive_mod", "mana" }, }, - ["NecropolisCraftingAccuracyPer2Dexterity"] = { type = "Suffix", affix = "of Haunting", "+2 to Accuracy Rating per 2 Dexterity", statOrder = { 4374 }, level = 68, group = "AccuracyPer2Dexterity", weightKey = { "necropolis_helmet", "default", }, weightVal = { 100, 0 }, modTags = { "necropolis_exclusive_mod", "attack" }, }, - ["NecropolisCraftingSpellDamage"] = { type = "Prefix", affix = "Haunted", "(20-30)% increased Spell Damage", statOrder = { 1108 }, level = 1, group = "SpellDamage", weightKey = { "necropolis_helmet", "default", }, weightVal = { 750, 0 }, modTags = { "caster_damage", "necropolis_exclusive_mod", "damage", "caster" }, }, - ["NecropolisCraftingIncreasedCastSpeed"] = { type = "Suffix", affix = "of Haunting", "(8-12)% increased Cast Speed", statOrder = { 1330 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "necropolis_helmet", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod", "caster", "speed" }, }, - ["NecropolisCraftingArcaneSurgeOnSpendingMana"] = { type = "Suffix", affix = "of Haunting", "Gain Arcane Surge after Spending a total of 400 Mana", statOrder = { 6775 }, level = 34, group = "ArcaneSurgeOnSpendingMana", weightKey = { "necropolis_helmet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "necropolis_exclusive_mod", "mana" }, }, - ["NecropolisCraftingAreaOfEffect"] = { type = "Suffix", affix = "of Haunting", "(15-25)% increased Area of Effect", statOrder = { 1761 }, level = 12, group = "AreaOfEffect", weightKey = { "necropolis_helmet", "default", }, weightVal = { 750, 0 }, modTags = { "necropolis_exclusive_mod" }, }, - ["NecropolisCraftingCurseEffectiveness"] = { type = "Suffix", affix = "of Haunting", "(5-8)% increased Effect of your Curses", statOrder = { 2472 }, level = 24, group = "CurseEffectiveness", weightKey = { "necropolis_helmet", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "caster", "curse" }, }, - ["NecropolisCraftingMaximumFrenzyCharges"] = { type = "Prefix", affix = "Haunted", "+1 to Maximum Frenzy Charges", statOrder = { 1690 }, level = 16, group = "MaximumFrenzyCharges", weightKey = { "necropolis_gloves", "default", }, weightVal = { 250, 0 }, modTags = { "frenzy_charge", "necropolis_exclusive_mod" }, }, - ["NecropolisCraftingChaosDamage"] = { type = "Prefix", affix = "Haunted", "Adds (13-17) to (23-29) Chaos Damage to Attacks", statOrder = { 1271 }, level = 1, group = "ChaosDamage", weightKey = { "necropolis_gloves", "default", }, weightVal = { 750, 0 }, modTags = { "chaos_damage", "necropolis_exclusive_mod", "damage", "chaos", "attack" }, }, - ["NecropolisCraftingCriticalStrikeMultiplier"] = { type = "Suffix", affix = "of Haunting", "+(15-25)% to Global Critical Strike Multiplier", statOrder = { 1372 }, level = 24, group = "CriticalStrikeMultiplier", weightKey = { "necropolis_gloves", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod", "damage", "critical" }, }, - ["NecropolisCraftingPoisonOnHit"] = { type = "Suffix", affix = "of Haunting", "(15-25)% chance to Poison on Hit", statOrder = { 3039 }, level = 16, group = "PoisonOnHit", weightKey = { "necropolis_gloves", "default", }, weightVal = { 500, 0 }, modTags = { "poison", "necropolis_exclusive_mod", "chaos", "ailment" }, }, - ["NecropolisCraftingPoisonDuration"] = { type = "Suffix", affix = "of Haunting", "(12-20)% increased Poison Duration", statOrder = { 3036 }, level = 38, group = "PoisonDuration", weightKey = { "necropolis_gloves", "default", }, weightVal = { 250, 0 }, modTags = { "poison", "necropolis_exclusive_mod", "chaos", "ailment" }, }, - ["NecropolisCraftingChanceToBleed"] = { type = "Suffix", affix = "of Haunting", "Attacks have (15-25)% chance to cause Bleeding", statOrder = { 2365 }, level = 16, group = "ChanceToBleed", weightKey = { "necropolis_gloves", "default", }, weightVal = { 500, 0 }, modTags = { "bleed", "necropolis_exclusive_mod", "physical", "attack", "ailment" }, }, - ["NecropolisCraftingFasterBleedDamage"] = { type = "Suffix", affix = "of Haunting", "Bleeding you inflict deals Damage (12-20)% faster", statOrder = { 6214 }, level = 38, group = "FasterBleedDamage", weightKey = { "necropolis_gloves", "default", }, weightVal = { 250, 0 }, modTags = { "physical_damage", "bleed", "necropolis_exclusive_mod", "damage", "physical", "attack", "ailment" }, }, - ["NecropolisCraftingGlobalChanceToBlindOnHit"] = { type = "Suffix", affix = "of Haunting", "(15-25)% Global chance to Blind Enemies on hit", statOrder = { 2830 }, level = 16, group = "GlobalChanceToBlindOnHit", weightKey = { "necropolis_gloves", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod" }, }, - ["NecropolisCraftingGlobalMaimOnHit"] = { type = "Suffix", affix = "of Haunting", "Attacks have (15-25)% chance to Maim on Hit", statOrder = { 7728 }, level = 34, group = "GlobalMaimOnHit", weightKey = { "necropolis_gloves", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod", "attack" }, }, - ["NecropolisCraftingSpellsHinderOnHitChance"] = { type = "Suffix", affix = "of Haunting", "(15-25)% chance to Hinder Enemies on Hit with Spells", statOrder = { 9670 }, level = 34, group = "SpellsHinderOnHitChance", weightKey = { "necropolis_gloves", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod", "caster" }, }, - ["NecropolisCraftingMeleeKnockback"] = { type = "Suffix", affix = "of Haunting", "Melee Attacks Knock Enemies Back on Hit", statOrder = { 8736 }, level = 45, group = "MeleeKnockback", weightKey = { "necropolis_gloves", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "attack" }, }, - ["NecropolisCraftingIntimidateOnHit"] = { type = "Suffix", affix = "of Haunting", "(15-25)% chance to Intimidate Enemies for 4 seconds on Hit with Attacks", statOrder = { 4741 }, level = 38, group = "IntimidateOnHit", weightKey = { "necropolis_gloves", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "attack" }, }, - ["NecropolisCraftingSpellUnnerveOnHit"] = { type = "Suffix", affix = "of Haunting", "(15-25)% chance to Unnerve Enemies for 4 seconds on Hit with Spells", statOrder = { 5435 }, level = 38, group = "SpellUnnerveOnHit", weightKey = { "necropolis_gloves", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "caster" }, }, + ["NecropolisCraftingReducedExtraDamageFromCrits"] = { type = "Suffix", affix = "of Haunting", "You take (40-60)% reduced Extra Damage from Critical Strikes", statOrder = { 1423 }, level = 24, group = "ReducedExtraDamageFromCrits", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod", "damage", "critical" }, }, + ["NecropolisCraftingManaReservationEfficiency"] = { type = "Suffix", affix = "of Haunting", "(10-15)% increased Mana Reservation Efficiency of Skills", statOrder = { 2137 }, level = 24, group = "ManaReservationEfficiency", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "necropolis_exclusive_mod", "mana" }, }, + ["NecropolisCraftingLifeReservationEfficiency"] = { type = "Suffix", affix = "of Haunting", "(20-30)% increased Life Reservation Efficiency of Skills", statOrder = { 2135 }, level = 34, group = "LifeReservationEfficiency", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "necropolis_exclusive_mod", "life" }, }, + ["NecropolisCraftingCorruptedBloodImmunity"] = { type = "Suffix", affix = "of Haunting", "Corrupted Blood cannot be inflicted on you", statOrder = { 5301 }, level = 60, group = "CorruptedBloodImmunity", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 250, 0 }, modTags = { "bleed", "necropolis_exclusive_mod", "physical", "ailment" }, }, + ["NecropolisCraftingIncreasedStunThreshold"] = { type = "Suffix", affix = "of Haunting", "(80-120)% increased Stun Threshold", statOrder = { 3180 }, level = 1, group = "IncreasedStunThreshold", weightKey = { "necropolis_boots", "default", }, weightVal = { 750, 0 }, modTags = { "necropolis_exclusive_mod" }, }, + ["NecropolisCraftingCannotBeKnockedBack"] = { type = "Prefix", affix = "Haunted", "Cannot be Knocked Back", statOrder = { 1432 }, level = 50, group = "CannotBeKnockedBack", weightKey = { "necropolis_boots", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod" }, }, + ["NecropolisCraftingMaximumEnduranceCharges"] = { type = "Prefix", affix = "Haunted", "+1 to Maximum Endurance Charges", statOrder = { 1715 }, level = 16, group = "MaximumEnduranceCharges", weightKey = { "necropolis_boots", "default", }, weightVal = { 250, 0 }, modTags = { "endurance_charge", "necropolis_exclusive_mod" }, }, + ["NecropolisCraftingNoExtraBleedDamageWhileMoving"] = { type = "Suffix", affix = "of Haunting", "Moving while Bleeding doesn't cause you to take extra Damage", statOrder = { 3100 }, level = 34, group = "NoExtraBleedDamageWhileMoving", weightKey = { "necropolis_boots", "default", }, weightVal = { 250, 0 }, modTags = { "bleed", "necropolis_exclusive_mod", "physical", "attack", "ailment" }, }, + ["NecropolisCraftingAvoidIgnite"] = { type = "Suffix", affix = "of Haunting", "(60-75)% chance to Avoid being Ignited", statOrder = { 1757 }, level = 16, group = "AvoidIgnite", weightKey = { "necropolis_boots", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "fire", "ailment" }, }, + ["NecropolisCraftingAvoidFreeze"] = { type = "Suffix", affix = "of Haunting", "(60-75)% chance to Avoid being Frozen", statOrder = { 1756 }, level = 16, group = "AvoidFreeze", weightKey = { "necropolis_boots", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "cold", "ailment" }, }, + ["NecropolisCraftingAvoidShock"] = { type = "Suffix", affix = "of Haunting", "(60-75)% chance to Avoid being Shocked", statOrder = { 1759 }, level = 16, group = "AvoidShock", weightKey = { "necropolis_boots", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "lightning", "ailment" }, }, + ["NecropolisCraftingReducedBleedDuration"] = { type = "Suffix", affix = "of Haunting", "(60-75)% reduced Bleed Duration on you", statOrder = { 9753 }, level = 24, group = "ReducedBleedDuration", weightKey = { "necropolis_boots", "default", }, weightVal = { 350, 0 }, modTags = { "bleed", "necropolis_exclusive_mod", "physical", "ailment" }, }, + ["NecropolisCraftingReducedPoisonDuration"] = { type = "Suffix", affix = "of Haunting", "(60-75)% reduced Poison Duration on you", statOrder = { 9762 }, level = 24, group = "ReducedPoisonDuration", weightKey = { "necropolis_boots", "default", }, weightVal = { 350, 0 }, modTags = { "poison", "necropolis_exclusive_mod", "chaos", "ailment" }, }, + ["NecropolisCraftingBurningGroundEffectEffectiveness"] = { type = "Prefix", affix = "Haunted", "Unaffected by Burning Ground", statOrder = { 10239 }, level = 68, group = "BurningGroundEffectEffectiveness", weightKey = { "necropolis_boots", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "fire" }, }, + ["NecropolisCraftingShockedGroundEffectEffectiveness"] = { type = "Prefix", affix = "Haunted", "Unaffected by Shocked Ground", statOrder = { 10264 }, level = 68, group = "ShockedGroundEffectEffectiveness", weightKey = { "necropolis_boots", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "lightning", "ailment" }, }, + ["NecropolisCraftingChilledGroundEffectEffectiveness"] = { type = "Prefix", affix = "Haunted", "Unaffected by Chilled Ground", statOrder = { 10244 }, level = 68, group = "ChilledGroundEffectEffectiveness", weightKey = { "necropolis_boots", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "cold", "ailment" }, }, + ["NecropolisCraftingDesecratedGroundEffectEffectiveness"] = { type = "Prefix", affix = "Haunted", "Unaffected by Desecrated Ground", statOrder = { 10250 }, level = 68, group = "DesecratedGroundEffectEffectiveness", weightKey = { "necropolis_boots", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "chaos" }, }, + ["NecropolisCraftingMovementCannotBeSlowedBelowBase"] = { type = "Prefix", affix = "Haunted", "Movement Speed cannot be modified to below Base Value", statOrder = { 3104 }, level = 45, group = "MovementCannotBeSlowedBelowBase", weightKey = { "necropolis_boots", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "speed" }, }, + ["NecropolisCraftingWarcriesOpenChests"] = { type = "Prefix", affix = "Haunted", "Your Warcries open Chests", statOrder = { 9352 }, level = 24, group = "WarcriesOpenChests", weightKey = { "necropolis_helmet", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod" }, }, + ["NecropolisCraftingIncreasedMaximumPowerCharges"] = { type = "Prefix", affix = "Haunted", "+1 to Maximum Power Charges", statOrder = { 1725 }, level = 16, group = "IncreasedMaximumPowerCharges", weightKey = { "necropolis_helmet", "default", }, weightVal = { 250, 0 }, modTags = { "power_charge", "necropolis_exclusive_mod" }, }, + ["NecropolisCraftingCriticalStrikeChance"] = { type = "Suffix", affix = "of Haunting", "(30-50)% increased Global Critical Strike Chance", statOrder = { 1370 }, level = 1, group = "CriticalStrikeChance", weightKey = { "necropolis_helmet", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod", "critical" }, }, + ["NecropolisCraftingManaRegeneration"] = { type = "Suffix", affix = "of Haunting", "(40-60)% increased Mana Regeneration Rate", statOrder = { 1495 }, level = 1, group = "ManaRegeneration", weightKey = { "necropolis_helmet", "default", }, weightVal = { 750, 0 }, modTags = { "resource", "necropolis_exclusive_mod", "mana" }, }, + ["NecropolisCraftingImmunityToBlind"] = { type = "Suffix", affix = "of Haunting", "Cannot be Blinded", statOrder = { 2883 }, level = 38, group = "ImmunityToBlind", weightKey = { "necropolis_helmet", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod" }, }, + ["NecropolisCraftingManaPer2Intelligence"] = { type = "Prefix", affix = "Haunted", "+1 to maximum Mana per 2 Intelligence", statOrder = { 8984 }, level = 68, group = "ManaPer2Intelligence", weightKey = { "necropolis_helmet", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "necropolis_exclusive_mod", "mana" }, }, + ["NecropolisCraftingAccuracyPer2Dexterity"] = { type = "Suffix", affix = "of Haunting", "+2 to Accuracy Rating per 2 Dexterity", statOrder = { 4421 }, level = 68, group = "AccuracyPer2Dexterity", weightKey = { "necropolis_helmet", "default", }, weightVal = { 100, 0 }, modTags = { "necropolis_exclusive_mod", "attack" }, }, + ["NecropolisCraftingSpellDamage"] = { type = "Prefix", affix = "Haunted", "(20-30)% increased Spell Damage", statOrder = { 1135 }, level = 1, group = "SpellDamage", weightKey = { "necropolis_helmet", "default", }, weightVal = { 750, 0 }, modTags = { "caster_damage", "necropolis_exclusive_mod", "damage", "caster" }, }, + ["NecropolisCraftingIncreasedCastSpeed"] = { type = "Suffix", affix = "of Haunting", "(8-12)% increased Cast Speed", statOrder = { 1357 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "necropolis_helmet", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod", "caster", "speed" }, }, + ["NecropolisCraftingArcaneSurgeOnSpendingMana"] = { type = "Suffix", affix = "of Haunting", "Gain Arcane Surge after Spending a total of 400 Mana", statOrder = { 7008 }, level = 34, group = "ArcaneSurgeOnSpendingMana", weightKey = { "necropolis_helmet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "necropolis_exclusive_mod", "mana" }, }, + ["NecropolisCraftingAreaOfEffect"] = { type = "Suffix", affix = "of Haunting", "(15-25)% increased Area of Effect", statOrder = { 1791 }, level = 12, group = "AreaOfEffect", weightKey = { "necropolis_helmet", "default", }, weightVal = { 750, 0 }, modTags = { "necropolis_exclusive_mod" }, }, + ["NecropolisCraftingCurseEffectiveness"] = { type = "Suffix", affix = "of Haunting", "(5-8)% increased Effect of your Curses", statOrder = { 2505 }, level = 24, group = "CurseEffectiveness", weightKey = { "necropolis_helmet", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "caster", "curse" }, }, + ["NecropolisCraftingMaximumFrenzyCharges"] = { type = "Prefix", affix = "Haunted", "+1 to Maximum Frenzy Charges", statOrder = { 1720 }, level = 16, group = "MaximumFrenzyCharges", weightKey = { "necropolis_gloves", "default", }, weightVal = { 250, 0 }, modTags = { "frenzy_charge", "necropolis_exclusive_mod" }, }, + ["NecropolisCraftingChaosDamage"] = { type = "Prefix", affix = "Haunted", "Adds (13-17) to (23-29) Chaos Damage to Attacks", statOrder = { 1298 }, level = 1, group = "ChaosDamage", weightKey = { "necropolis_gloves", "default", }, weightVal = { 750, 0 }, modTags = { "chaos_damage", "necropolis_exclusive_mod", "damage", "chaos", "attack" }, }, + ["NecropolisCraftingCriticalStrikeMultiplier"] = { type = "Suffix", affix = "of Haunting", "+(15-25)% to Global Critical Strike Multiplier", statOrder = { 1399 }, level = 24, group = "CriticalStrikeMultiplier", weightKey = { "necropolis_gloves", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod", "damage", "critical" }, }, + ["NecropolisCraftingPoisonOnHit"] = { type = "Suffix", affix = "of Haunting", "(15-25)% chance to Poison on Hit", statOrder = { 3081 }, level = 16, group = "PoisonOnHit", weightKey = { "necropolis_gloves", "default", }, weightVal = { 500, 0 }, modTags = { "poison", "necropolis_exclusive_mod", "chaos", "ailment" }, }, + ["NecropolisCraftingPoisonDuration"] = { type = "Suffix", affix = "of Haunting", "(12-20)% increased Poison Duration", statOrder = { 3078 }, level = 38, group = "PoisonDuration", weightKey = { "necropolis_gloves", "default", }, weightVal = { 250, 0 }, modTags = { "poison", "necropolis_exclusive_mod", "chaos", "ailment" }, }, + ["NecropolisCraftingChanceToBleed"] = { type = "Suffix", affix = "of Haunting", "Attacks have (15-25)% chance to cause Bleeding", statOrder = { 2398 }, level = 16, group = "ChanceToBleed", weightKey = { "necropolis_gloves", "default", }, weightVal = { 500, 0 }, modTags = { "bleed", "necropolis_exclusive_mod", "physical", "attack", "ailment" }, }, + ["NecropolisCraftingFasterBleedDamage"] = { type = "Suffix", affix = "of Haunting", "Bleeding you inflict deals Damage (12-20)% faster", statOrder = { 6430 }, level = 38, group = "FasterBleedDamage", weightKey = { "necropolis_gloves", "default", }, weightVal = { 250, 0 }, modTags = { "physical_damage", "bleed", "necropolis_exclusive_mod", "damage", "physical", "attack", "ailment" }, }, + ["NecropolisCraftingGlobalChanceToBlindOnHit"] = { type = "Suffix", affix = "of Haunting", "(15-25)% Global chance to Blind Enemies on hit", statOrder = { 2867 }, level = 16, group = "GlobalChanceToBlindOnHit", weightKey = { "necropolis_gloves", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod" }, }, + ["NecropolisCraftingGlobalMaimOnHit"] = { type = "Suffix", affix = "of Haunting", "Attacks have (15-25)% chance to Maim on Hit", statOrder = { 7987 }, level = 34, group = "GlobalMaimOnHit", weightKey = { "necropolis_gloves", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod", "attack" }, }, + ["NecropolisCraftingSpellsHinderOnHitChance"] = { type = "Suffix", affix = "of Haunting", "(15-25)% chance to Hinder Enemies on Hit with Spells", statOrder = { 9972 }, level = 34, group = "SpellsHinderOnHitChance", weightKey = { "necropolis_gloves", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod", "caster" }, }, + ["NecropolisCraftingMeleeKnockback"] = { type = "Suffix", affix = "of Haunting", "Melee Attacks Knock Enemies Back on Hit", statOrder = { 9005 }, level = 45, group = "MeleeKnockback", weightKey = { "necropolis_gloves", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "attack" }, }, + ["NecropolisCraftingIntimidateOnHit"] = { type = "Suffix", affix = "of Haunting", "(15-25)% chance to Intimidate Enemies for 4 seconds on Hit with Attacks", statOrder = { 4817 }, level = 38, group = "IntimidateOnHit", weightKey = { "necropolis_gloves", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "attack" }, }, + ["NecropolisCraftingSpellUnnerveOnHit"] = { type = "Suffix", affix = "of Haunting", "(15-25)% chance to Unnerve Enemies for 4 seconds on Hit with Spells", statOrder = { 5623 }, level = 38, group = "SpellUnnerveOnHit", weightKey = { "necropolis_gloves", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "caster" }, }, } \ No newline at end of file diff --git a/src/Data/ModTincture.lua b/src/Data/ModTincture.lua index b96fee72c7..919ec78a48 100644 --- a/src/Data/ModTincture.lua +++ b/src/Data/ModTincture.lua @@ -2,70 +2,70 @@ -- Item data (c) Grinding Gear Games return { - ["TinctureEffect1"] = { type = "Prefix", affix = "Herbal", "(11-13)% increased effect", statOrder = { 10345 }, level = 1, group = "TinctureEffect", weightKey = { "tincture", "default", }, weightVal = { 600, 0 }, modTags = { }, }, - ["TinctureEffect2"] = { type = "Prefix", affix = "Natural", "(14-16)% increased effect", statOrder = { 10345 }, level = 35, group = "TinctureEffect", weightKey = { "tincture", "default", }, weightVal = { 600, 0 }, modTags = { }, }, - ["TinctureEffect3"] = { type = "Prefix", affix = "Medicinal", "(17-19)% increased effect", statOrder = { 10345 }, level = 64, group = "TinctureEffect", weightKey = { "tincture", "default", }, weightVal = { 600, 0 }, modTags = { }, }, - ["TinctureEffect4"] = { type = "Prefix", affix = "Horticultural", "(20-22)% increased effect", statOrder = { 10345 }, level = 85, group = "TinctureEffect", weightKey = { "tincture", "default", }, weightVal = { 600, 0 }, modTags = { }, }, - ["TinctureToxicityRate1"] = { type = "Prefix", affix = "Sustained", "(15-17)% reduced Mana Burn rate", statOrder = { 10346 }, level = 1, group = "TinctureToxicityRate", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["TinctureToxicityRate2"] = { type = "Prefix", affix = "Tenacious", "(18-20)% reduced Mana Burn rate", statOrder = { 10346 }, level = 30, group = "TinctureToxicityRate", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["TinctureToxicityRate3"] = { type = "Prefix", affix = "Persistent", "(21-23)% reduced Mana Burn rate", statOrder = { 10346 }, level = 58, group = "TinctureToxicityRate", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["TinctureToxicityRate4"] = { type = "Prefix", affix = "Persevering", "(24-26)% reduced Mana Burn rate", statOrder = { 10346 }, level = 80, group = "TinctureToxicityRate", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["TinctureCooldownRecovery1"] = { type = "Prefix", affix = "Lucid", "(13-17)% increased Cooldown Recovery Rate", statOrder = { 10344 }, level = 1, group = "TinctureCooldownRecovery", weightKey = { "tincture", "default", }, weightVal = { 800, 0 }, modTags = { }, }, - ["TinctureCooldownRecovery2"] = { type = "Prefix", affix = "Perceptive", "(18-22)% increased Cooldown Recovery Rate", statOrder = { 10344 }, level = 30, group = "TinctureCooldownRecovery", weightKey = { "tincture", "default", }, weightVal = { 800, 0 }, modTags = { }, }, - ["TinctureCooldownRecovery3"] = { type = "Prefix", affix = "Insightful", "(23-27)% increased Cooldown Recovery Rate", statOrder = { 10344 }, level = 58, group = "TinctureCooldownRecovery", weightKey = { "tincture", "default", }, weightVal = { 800, 0 }, modTags = { }, }, - ["TinctureCooldownRecovery4"] = { type = "Prefix", affix = "Astute", "(28-32)% increased Cooldown Recovery Rate", statOrder = { 10344 }, level = 82, group = "TinctureCooldownRecovery", weightKey = { "tincture", "default", }, weightVal = { 800, 0 }, modTags = { }, }, - ["TinctureEffectFasterToxicity1"] = { type = "Prefix", affix = "Potent", "35% increased effect", "(47-51)% increased Mana Burn rate", statOrder = { 10345, 10346 }, level = 1, group = "TinctureEffectFasterToxicity", weightKey = { "tincture", "default", }, weightVal = { 400, 0 }, modTags = { }, }, - ["TinctureEffectFasterToxicity2"] = { type = "Prefix", affix = "Concentrated", "35% increased effect", "(42-46)% increased Mana Burn rate", statOrder = { 10345, 10346 }, level = 49, group = "TinctureEffectFasterToxicity", weightKey = { "tincture", "default", }, weightVal = { 400, 0 }, modTags = { }, }, - ["TinctureEffectFasterToxicity3"] = { type = "Prefix", affix = "Enriched", "35% increased effect", "(37-41)% increased Mana Burn rate", statOrder = { 10345, 10346 }, level = 84, group = "TinctureEffectFasterToxicity", weightKey = { "tincture", "default", }, weightVal = { 400, 0 }, modTags = { }, }, - ["TinctureEffectSlowerToxicity1"] = { type = "Prefix", affix = "Thin", "(31-35)% reduced effect", "50% reduced Mana Burn rate", statOrder = { 10345, 10346 }, level = 1, group = "TinctureEffectSlowerToxicity", weightKey = { "tincture", "default", }, weightVal = { 400, 0 }, modTags = { }, }, - ["TinctureEffectSlowerToxicity2"] = { type = "Prefix", affix = "Diluted", "(26-30)% reduced effect", "50% reduced Mana Burn rate", statOrder = { 10345, 10346 }, level = 49, group = "TinctureEffectSlowerToxicity", weightKey = { "tincture", "default", }, weightVal = { 400, 0 }, modTags = { }, }, - ["TinctureEffectSlowerToxicity3"] = { type = "Prefix", affix = "Measured", "(21-25)% reduced effect", "50% reduced Mana Burn rate", statOrder = { 10345, 10346 }, level = 84, group = "TinctureEffectSlowerToxicity", weightKey = { "tincture", "default", }, weightVal = { 400, 0 }, modTags = { }, }, - ["TinctureIncreasedAilmentDuration1"] = { type = "Suffix", affix = "of the Wild", "(25-35)% increased Duration of Elemental Ailments from Melee Weapon Attacks", statOrder = { 10365 }, level = 1, group = "TinctureIncreasedAilmentDuration", weightKey = { "tincture", "default", }, weightVal = { 700, 0 }, modTags = { "elemental", "attack", "ailment" }, }, - ["TinctureIncreasedAilmentDuration2"] = { type = "Suffix", affix = "of the Untamed", "(36-45)% increased Duration of Elemental Ailments from Melee Weapon Attacks", statOrder = { 10365 }, level = 42, group = "TinctureIncreasedAilmentDuration", weightKey = { "tincture", "default", }, weightVal = { 700, 0 }, modTags = { "elemental", "attack", "ailment" }, }, - ["TinctureIncreasedAilmentDuration3"] = { type = "Suffix", affix = "of the Savage", "(46-55)% increased Duration of Elemental Ailments from Melee Weapon Attacks", statOrder = { 10365 }, level = 60, group = "TinctureIncreasedAilmentDuration", weightKey = { "tincture", "default", }, weightVal = { 700, 0 }, modTags = { "elemental", "attack", "ailment" }, }, - ["TinctureIncreasedAilmentDuration4"] = { type = "Suffix", affix = "of the Beast", "(56-65)% increased Duration of Elemental Ailments from Melee Weapon Attacks", statOrder = { 10365 }, level = 82, group = "TinctureIncreasedAilmentDuration", weightKey = { "tincture", "default", }, weightVal = { 700, 0 }, modTags = { "elemental", "attack", "ailment" }, }, - ["TinctureDamageOverTimeMultiplier1"] = { type = "Suffix", affix = "of Acrimony", "+(9-13)% to Damage over Time Multiplier with Melee Weapon Attacks", statOrder = { 10364 }, level = 1, group = "TinctureDamageOverTimeMultiplier", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "attack" }, }, - ["TinctureDamageOverTimeMultiplier2"] = { type = "Suffix", affix = "of Dispersion", "+(14-18)% to Damage over Time Multiplier with Melee Weapon Attacks", statOrder = { 10364 }, level = 34, group = "TinctureDamageOverTimeMultiplier", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "attack" }, }, - ["TinctureDamageOverTimeMultiplier3"] = { type = "Suffix", affix = "of Liquefaction", "+(19-23)% to Damage over Time Multiplier with Melee Weapon Attacks", statOrder = { 10364 }, level = 58, group = "TinctureDamageOverTimeMultiplier", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "attack" }, }, - ["TinctureDamageOverTimeMultiplier4"] = { type = "Suffix", affix = "of Melting", "+(24-28)% to Damage over Time Multiplier with Melee Weapon Attacks", statOrder = { 10364 }, level = 70, group = "TinctureDamageOverTimeMultiplier", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "attack" }, }, - ["TinctureDamageOverTimeMultiplier5"] = { type = "Suffix", affix = "of Dissolution", "+(29-33)% to Damage over Time Multiplier with Melee Weapon Attacks", statOrder = { 10364 }, level = 84, group = "TinctureDamageOverTimeMultiplier", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "attack" }, }, - ["TinctureElementalPenetration1"] = { type = "Suffix", affix = "of Catalysing", "Melee Weapon Damage Penetrates (5-7)% Elemental Resistances", statOrder = { 10370 }, level = 1, group = "TinctureElementalPenetration", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["TinctureElementalPenetration2"] = { type = "Suffix", affix = "of Infusing", "Melee Weapon Damage Penetrates (8-10)% Elemental Resistances", statOrder = { 10370 }, level = 32, group = "TinctureElementalPenetration", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["TinctureElementalPenetration3"] = { type = "Suffix", affix = "of Empowering", "Melee Weapon Damage Penetrates (11-13)% Elemental Resistances", statOrder = { 10370 }, level = 60, group = "TinctureElementalPenetration", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["TinctureElementalPenetration4"] = { type = "Suffix", affix = "of the Unleashed", "Melee Weapon Damage Penetrates (14-16)% Elemental Resistances", statOrder = { 10370 }, level = 73, group = "TinctureElementalPenetration", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["TinctureElementalPenetration5"] = { type = "Suffix", affix = "of Overpowering", "Melee Weapon Damage Penetrates (17-19)% Elemental Resistances", statOrder = { 10370 }, level = 85, group = "TinctureElementalPenetration", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["TinctureCriticalStrikeMultiplier1"] = { type = "Suffix", affix = "of Ire", "+(9-13)% to Melee Weapon Critical Strike Multiplier", statOrder = { 10363 }, level = 1, group = "TinctureCriticalStrikeMultiplier", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "attack", "critical" }, }, - ["TinctureCriticalStrikeMultiplier2"] = { type = "Suffix", affix = "of Anger", "+(14-18)% to Melee Weapon Critical Strike Multiplier", statOrder = { 10363 }, level = 32, group = "TinctureCriticalStrikeMultiplier", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "attack", "critical" }, }, - ["TinctureCriticalStrikeMultiplier3"] = { type = "Suffix", affix = "of Rage", "+(19-23)% to Melee Weapon Critical Strike Multiplier", statOrder = { 10363 }, level = 60, group = "TinctureCriticalStrikeMultiplier", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "attack", "critical" }, }, - ["TinctureCriticalStrikeMultiplier4"] = { type = "Suffix", affix = "of Fury", "+(24-28)% to Melee Weapon Critical Strike Multiplier", statOrder = { 10363 }, level = 73, group = "TinctureCriticalStrikeMultiplier", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "attack", "critical" }, }, - ["TinctureCriticalStrikeMultiplier5"] = { type = "Suffix", affix = "of Ferocity", "+(29-33)% to Melee Weapon Critical Strike Multiplier", statOrder = { 10363 }, level = 85, group = "TinctureCriticalStrikeMultiplier", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "attack", "critical" }, }, - ["TinctureIncreasedAttackSpeed1"] = { type = "Suffix", affix = "of Skill", "(15-19)% increased Melee Weapon Attack Speed", statOrder = { 10361 }, level = 1, group = "TinctureIncreasedAttackSpeed", weightKey = { "tincture", "default", }, weightVal = { 800, 0 }, modTags = { "attack", "speed" }, }, - ["TinctureIncreasedAttackSpeed2"] = { type = "Suffix", affix = "of Ease", "(20-24)% increased Melee Weapon Attack Speed", statOrder = { 10361 }, level = 65, group = "TinctureIncreasedAttackSpeed", weightKey = { "tincture", "default", }, weightVal = { 800, 0 }, modTags = { "attack", "speed" }, }, - ["TinctureIncreasedAttackSpeed3"] = { type = "Suffix", affix = "of Mastery", "(25-29)% increased Melee Weapon Attack Speed", statOrder = { 10361 }, level = 85, group = "TinctureIncreasedAttackSpeed", weightKey = { "tincture", "default", }, weightVal = { 800, 0 }, modTags = { "attack", "speed" }, }, - ["TinctureDamageAgainstLowLife1"] = { type = "Suffix", affix = "of Execution", "(40-47)% increased Melee Weapon Damage against Enemies that are on Low Life", statOrder = { 10371 }, level = 1, group = "WeaponDamageVsLowLifeEnemies", weightKey = { "tincture", "default", }, weightVal = { 600, 0 }, modTags = { "damage", "attack" }, }, - ["TinctureDamageAgainstLowLife2"] = { type = "Suffix", affix = "of Elimination", "(48-55)% increased Melee Weapon Damage against Enemies that are on Low Life", statOrder = { 10371 }, level = 28, group = "WeaponDamageVsLowLifeEnemies", weightKey = { "tincture", "default", }, weightVal = { 600, 0 }, modTags = { "damage", "attack" }, }, - ["TinctureDamageAgainstLowLife3"] = { type = "Suffix", affix = "of Termination", "(56-63)% increased Melee Weapon Damage against Enemies that are on Low Life", statOrder = { 10371 }, level = 47, group = "WeaponDamageVsLowLifeEnemies", weightKey = { "tincture", "default", }, weightVal = { 600, 0 }, modTags = { "damage", "attack" }, }, - ["TinctureDamageAgainstLowLife4"] = { type = "Suffix", affix = "of Extermination", "(64-71)% increased Melee Weapon Damage against Enemies that are on Low Life", statOrder = { 10371 }, level = 65, group = "WeaponDamageVsLowLifeEnemies", weightKey = { "tincture", "default", }, weightVal = { 600, 0 }, modTags = { "damage", "attack" }, }, - ["TinctureDamageAgainstLowLife5"] = { type = "Suffix", affix = "of Assassination", "(72-79)% increased Melee Weapon Damage against Enemies that are on Low Life", statOrder = { 10371 }, level = 80, group = "WeaponDamageVsLowLifeEnemies", weightKey = { "tincture", "default", }, weightVal = { 600, 0 }, modTags = { "damage", "attack" }, }, - ["TinctureLifeGainedFromEnemyDeath1"] = { type = "Suffix", affix = "of Success", "Gain (11-15) Life per Enemy Killed with Melee Weapons", statOrder = { 10368 }, level = 1, group = "TinctureLifeGainedFromEnemyDeath", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life", "attack" }, }, - ["TinctureLifeGainedFromEnemyDeath2"] = { type = "Suffix", affix = "of Victory", "Gain (16-20) Life per Enemy Killed with Melee Weapons", statOrder = { 10368 }, level = 35, group = "TinctureLifeGainedFromEnemyDeath", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life", "attack" }, }, - ["TinctureLifeGainedFromEnemyDeath3"] = { type = "Suffix", affix = "of Triumph", "Gain (21-25) Life per Enemy Killed with Melee Weapons", statOrder = { 10368 }, level = 62, group = "TinctureLifeGainedFromEnemyDeath", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life", "attack" }, }, - ["TinctureLifeGainedFromEnemyDeath4"] = { type = "Suffix", affix = "of Conquest", "Gain (26-30) Life per Enemy Killed with Melee Weapons", statOrder = { 10368 }, level = 80, group = "TinctureLifeGainedFromEnemyDeath", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life", "attack" }, }, - ["TinctureManaGainedFromEnemyDeath1"] = { type = "Suffix", affix = "of Absorption", "Gain (2-3) Mana per Enemy Killed with Melee Weapons", statOrder = { 10362 }, level = 38, group = "ManaGainedOnWeaponKill", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["TinctureManaGainedFromEnemyDeath2"] = { type = "Suffix", affix = "of Osmosis", "Gain (4-5) Mana per Enemy Killed with Melee Weapons", statOrder = { 10362 }, level = 50, group = "ManaGainedOnWeaponKill", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["TinctureManaGainedFromEnemyDeath3"] = { type = "Suffix", affix = "of Consumption", "Gain (6-8) Mana per Enemy Killed with Melee Weapons", statOrder = { 10362 }, level = 68, group = "ManaGainedOnWeaponKill", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["TinctureManaGainedFromEnemyDeath4"] = { type = "Suffix", affix = "of Assimilation", "Gain (9-11) Mana per Enemy Killed with Melee Weapons", statOrder = { 10362 }, level = 82, group = "ManaGainedOnWeaponKill", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["TinctureLifeGainPerTarget1"] = { type = "Suffix", affix = "of Rejuvenation", "Gain (2-3) Life per Enemy Hit with Melee Weapons", statOrder = { 10367 }, level = 1, group = "TinctureLifeGainPerTarget", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life", "attack" }, }, - ["TinctureLifeGainPerTarget2"] = { type = "Suffix", affix = "of Restoration", "Gain (3-4) Life per Enemy Hit with Melee Weapons", statOrder = { 10367 }, level = 50, group = "TinctureLifeGainPerTarget", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life", "attack" }, }, - ["TinctureLifeGainPerTarget3"] = { type = "Suffix", affix = "of Regrowth", "Gain (5-7) Life per Enemy Hit with Melee Weapons", statOrder = { 10367 }, level = 77, group = "TinctureLifeGainPerTarget", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life", "attack" }, }, - ["TinctureManaGainPerTarget1"] = { type = "Suffix", affix = "of Enveloping", "Gain 1 Mana per Enemy Hit with Melee Weapons", statOrder = { 10369 }, level = 45, group = "TinctureManaGainPerTarget", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "mana", "attack" }, }, - ["TinctureManaGainPerTarget2"] = { type = "Suffix", affix = "of Siphoning", "Gain 2 Mana per Enemy Hit with Melee Weapons", statOrder = { 10369 }, level = 68, group = "TinctureManaGainPerTarget", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "mana", "attack" }, }, - ["TinctureManaGainPerTarget3"] = { type = "Suffix", affix = "of Devouring", "Gain 3 Mana per Enemy Hit with Melee Weapons", statOrder = { 10369 }, level = 84, group = "TinctureManaGainPerTarget", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "mana", "attack" }, }, - ["TinctureFlaskChargeIncrease1"] = { type = "Suffix", affix = "of Restocking", "(11-15)% increased Flask Charges gained from Kills with Melee Weapons", statOrder = { 10366 }, level = 1, group = "FlaskChargesFromWeaponKills", weightKey = { "tincture", "default", }, weightVal = { 800, 0 }, modTags = { }, }, - ["TinctureFlaskChargeIncrease2"] = { type = "Suffix", affix = "of Replenishing", "(16-20)% increased Flask Charges gained from Kills with Melee Weapons", statOrder = { 10366 }, level = 40, group = "FlaskChargesFromWeaponKills", weightKey = { "tincture", "default", }, weightVal = { 800, 0 }, modTags = { }, }, - ["TinctureFlaskChargeIncrease3"] = { type = "Suffix", affix = "of Pouring", "(21-25)% increased Flask Charges gained from Kills with Melee Weapons", statOrder = { 10366 }, level = 72, group = "FlaskChargesFromWeaponKills", weightKey = { "tincture", "default", }, weightVal = { 800, 0 }, modTags = { }, }, - ["TinctureFlaskChargeIncrease4"] = { type = "Suffix", affix = "of Overflowing", "(26-30)% increased Flask Charges gained from Kills with Melee Weapons", statOrder = { 10366 }, level = 85, group = "FlaskChargesFromWeaponKills", weightKey = { "tincture", "default", }, weightVal = { 800, 0 }, modTags = { }, }, - ["TinctureIgnorePhysDR1"] = { type = "Suffix", affix = "of Battering", "Melee Weapon Hits have (30-39)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 10332 }, level = 40, group = "TinctureIgnorePhysDR", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["TinctureIgnorePhysDR2"] = { type = "Suffix", affix = "of Crushing", "Melee Weapon Hits have (40-49)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 10332 }, level = 62, group = "TinctureIgnorePhysDR", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["TinctureIgnorePhysDR3"] = { type = "Suffix", affix = "of Overwhelming", "Melee Weapon Hits have (50-60)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 10332 }, level = 80, group = "TinctureIgnorePhysDR", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["TinctureEffect1"] = { type = "Prefix", affix = "Herbal", "(11-13)% increased effect", statOrder = { 10674 }, level = 1, group = "TinctureEffect", weightKey = { "tincture", "default", }, weightVal = { 600, 0 }, modTags = { }, }, + ["TinctureEffect2"] = { type = "Prefix", affix = "Natural", "(14-16)% increased effect", statOrder = { 10674 }, level = 35, group = "TinctureEffect", weightKey = { "tincture", "default", }, weightVal = { 600, 0 }, modTags = { }, }, + ["TinctureEffect3"] = { type = "Prefix", affix = "Medicinal", "(17-19)% increased effect", statOrder = { 10674 }, level = 64, group = "TinctureEffect", weightKey = { "tincture", "default", }, weightVal = { 600, 0 }, modTags = { }, }, + ["TinctureEffect4"] = { type = "Prefix", affix = "Horticultural", "(20-22)% increased effect", statOrder = { 10674 }, level = 85, group = "TinctureEffect", weightKey = { "tincture", "default", }, weightVal = { 600, 0 }, modTags = { }, }, + ["TinctureToxicityRate1"] = { type = "Prefix", affix = "Sustained", "(15-17)% reduced Mana Burn rate", statOrder = { 10675 }, level = 1, group = "TinctureToxicityRate", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["TinctureToxicityRate2"] = { type = "Prefix", affix = "Tenacious", "(18-20)% reduced Mana Burn rate", statOrder = { 10675 }, level = 30, group = "TinctureToxicityRate", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["TinctureToxicityRate3"] = { type = "Prefix", affix = "Persistent", "(21-23)% reduced Mana Burn rate", statOrder = { 10675 }, level = 58, group = "TinctureToxicityRate", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["TinctureToxicityRate4"] = { type = "Prefix", affix = "Persevering", "(24-26)% reduced Mana Burn rate", statOrder = { 10675 }, level = 80, group = "TinctureToxicityRate", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["TinctureCooldownRecovery1"] = { type = "Prefix", affix = "Lucid", "(13-17)% increased Cooldown Recovery Rate", statOrder = { 10673 }, level = 1, group = "TinctureCooldownRecovery", weightKey = { "tincture", "default", }, weightVal = { 800, 0 }, modTags = { }, }, + ["TinctureCooldownRecovery2"] = { type = "Prefix", affix = "Perceptive", "(18-22)% increased Cooldown Recovery Rate", statOrder = { 10673 }, level = 30, group = "TinctureCooldownRecovery", weightKey = { "tincture", "default", }, weightVal = { 800, 0 }, modTags = { }, }, + ["TinctureCooldownRecovery3"] = { type = "Prefix", affix = "Insightful", "(23-27)% increased Cooldown Recovery Rate", statOrder = { 10673 }, level = 58, group = "TinctureCooldownRecovery", weightKey = { "tincture", "default", }, weightVal = { 800, 0 }, modTags = { }, }, + ["TinctureCooldownRecovery4"] = { type = "Prefix", affix = "Astute", "(28-32)% increased Cooldown Recovery Rate", statOrder = { 10673 }, level = 82, group = "TinctureCooldownRecovery", weightKey = { "tincture", "default", }, weightVal = { 800, 0 }, modTags = { }, }, + ["TinctureEffectFasterToxicity1"] = { type = "Prefix", affix = "Potent", "35% increased effect", "(47-51)% increased Mana Burn rate", statOrder = { 10674, 10675 }, level = 1, group = "TinctureEffectFasterToxicity", weightKey = { "tincture", "default", }, weightVal = { 400, 0 }, modTags = { }, }, + ["TinctureEffectFasterToxicity2"] = { type = "Prefix", affix = "Concentrated", "35% increased effect", "(42-46)% increased Mana Burn rate", statOrder = { 10674, 10675 }, level = 49, group = "TinctureEffectFasterToxicity", weightKey = { "tincture", "default", }, weightVal = { 400, 0 }, modTags = { }, }, + ["TinctureEffectFasterToxicity3"] = { type = "Prefix", affix = "Enriched", "35% increased effect", "(37-41)% increased Mana Burn rate", statOrder = { 10674, 10675 }, level = 84, group = "TinctureEffectFasterToxicity", weightKey = { "tincture", "default", }, weightVal = { 400, 0 }, modTags = { }, }, + ["TinctureEffectSlowerToxicity1"] = { type = "Prefix", affix = "Thin", "(31-35)% reduced effect", "50% reduced Mana Burn rate", statOrder = { 10674, 10675 }, level = 1, group = "TinctureEffectSlowerToxicity", weightKey = { "tincture", "default", }, weightVal = { 400, 0 }, modTags = { }, }, + ["TinctureEffectSlowerToxicity2"] = { type = "Prefix", affix = "Diluted", "(26-30)% reduced effect", "50% reduced Mana Burn rate", statOrder = { 10674, 10675 }, level = 49, group = "TinctureEffectSlowerToxicity", weightKey = { "tincture", "default", }, weightVal = { 400, 0 }, modTags = { }, }, + ["TinctureEffectSlowerToxicity3"] = { type = "Prefix", affix = "Measured", "(21-25)% reduced effect", "50% reduced Mana Burn rate", statOrder = { 10674, 10675 }, level = 84, group = "TinctureEffectSlowerToxicity", weightKey = { "tincture", "default", }, weightVal = { 400, 0 }, modTags = { }, }, + ["TinctureIncreasedAilmentDuration1"] = { type = "Suffix", affix = "of the Wild", "(25-35)% increased Duration of Elemental Ailments from Melee Weapon Attacks", statOrder = { 10694 }, level = 1, group = "TinctureIncreasedAilmentDuration", weightKey = { "tincture", "default", }, weightVal = { 700, 0 }, modTags = { "elemental", "attack", "ailment" }, }, + ["TinctureIncreasedAilmentDuration2"] = { type = "Suffix", affix = "of the Untamed", "(36-45)% increased Duration of Elemental Ailments from Melee Weapon Attacks", statOrder = { 10694 }, level = 42, group = "TinctureIncreasedAilmentDuration", weightKey = { "tincture", "default", }, weightVal = { 700, 0 }, modTags = { "elemental", "attack", "ailment" }, }, + ["TinctureIncreasedAilmentDuration3"] = { type = "Suffix", affix = "of the Savage", "(46-55)% increased Duration of Elemental Ailments from Melee Weapon Attacks", statOrder = { 10694 }, level = 60, group = "TinctureIncreasedAilmentDuration", weightKey = { "tincture", "default", }, weightVal = { 700, 0 }, modTags = { "elemental", "attack", "ailment" }, }, + ["TinctureIncreasedAilmentDuration4"] = { type = "Suffix", affix = "of the Beast", "(56-65)% increased Duration of Elemental Ailments from Melee Weapon Attacks", statOrder = { 10694 }, level = 82, group = "TinctureIncreasedAilmentDuration", weightKey = { "tincture", "default", }, weightVal = { 700, 0 }, modTags = { "elemental", "attack", "ailment" }, }, + ["TinctureDamageOverTimeMultiplier1"] = { type = "Suffix", affix = "of Acrimony", "+(9-13)% to Damage over Time Multiplier with Melee Weapon Attacks", statOrder = { 10693 }, level = 1, group = "TinctureDamageOverTimeMultiplier", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "attack" }, }, + ["TinctureDamageOverTimeMultiplier2"] = { type = "Suffix", affix = "of Dispersion", "+(14-18)% to Damage over Time Multiplier with Melee Weapon Attacks", statOrder = { 10693 }, level = 34, group = "TinctureDamageOverTimeMultiplier", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "attack" }, }, + ["TinctureDamageOverTimeMultiplier3"] = { type = "Suffix", affix = "of Liquefaction", "+(19-23)% to Damage over Time Multiplier with Melee Weapon Attacks", statOrder = { 10693 }, level = 58, group = "TinctureDamageOverTimeMultiplier", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "attack" }, }, + ["TinctureDamageOverTimeMultiplier4"] = { type = "Suffix", affix = "of Melting", "+(24-28)% to Damage over Time Multiplier with Melee Weapon Attacks", statOrder = { 10693 }, level = 70, group = "TinctureDamageOverTimeMultiplier", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "attack" }, }, + ["TinctureDamageOverTimeMultiplier5"] = { type = "Suffix", affix = "of Dissolution", "+(29-33)% to Damage over Time Multiplier with Melee Weapon Attacks", statOrder = { 10693 }, level = 84, group = "TinctureDamageOverTimeMultiplier", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "attack" }, }, + ["TinctureElementalPenetration1"] = { type = "Suffix", affix = "of Catalysing", "Melee Weapon Damage Penetrates (5-7)% Elemental Resistances", statOrder = { 10699 }, level = 1, group = "TinctureElementalPenetration", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["TinctureElementalPenetration2"] = { type = "Suffix", affix = "of Infusing", "Melee Weapon Damage Penetrates (8-10)% Elemental Resistances", statOrder = { 10699 }, level = 32, group = "TinctureElementalPenetration", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["TinctureElementalPenetration3"] = { type = "Suffix", affix = "of Empowering", "Melee Weapon Damage Penetrates (11-13)% Elemental Resistances", statOrder = { 10699 }, level = 60, group = "TinctureElementalPenetration", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["TinctureElementalPenetration4"] = { type = "Suffix", affix = "of the Unleashed", "Melee Weapon Damage Penetrates (14-16)% Elemental Resistances", statOrder = { 10699 }, level = 73, group = "TinctureElementalPenetration", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["TinctureElementalPenetration5"] = { type = "Suffix", affix = "of Overpowering", "Melee Weapon Damage Penetrates (17-19)% Elemental Resistances", statOrder = { 10699 }, level = 85, group = "TinctureElementalPenetration", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["TinctureCriticalStrikeMultiplier1"] = { type = "Suffix", affix = "of Ire", "+(9-13)% to Melee Weapon Critical Strike Multiplier", statOrder = { 10692 }, level = 1, group = "TinctureCriticalStrikeMultiplier", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "attack", "critical" }, }, + ["TinctureCriticalStrikeMultiplier2"] = { type = "Suffix", affix = "of Anger", "+(14-18)% to Melee Weapon Critical Strike Multiplier", statOrder = { 10692 }, level = 32, group = "TinctureCriticalStrikeMultiplier", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "attack", "critical" }, }, + ["TinctureCriticalStrikeMultiplier3"] = { type = "Suffix", affix = "of Rage", "+(19-23)% to Melee Weapon Critical Strike Multiplier", statOrder = { 10692 }, level = 60, group = "TinctureCriticalStrikeMultiplier", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "attack", "critical" }, }, + ["TinctureCriticalStrikeMultiplier4"] = { type = "Suffix", affix = "of Fury", "+(24-28)% to Melee Weapon Critical Strike Multiplier", statOrder = { 10692 }, level = 73, group = "TinctureCriticalStrikeMultiplier", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "attack", "critical" }, }, + ["TinctureCriticalStrikeMultiplier5"] = { type = "Suffix", affix = "of Ferocity", "+(29-33)% to Melee Weapon Critical Strike Multiplier", statOrder = { 10692 }, level = 85, group = "TinctureCriticalStrikeMultiplier", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "attack", "critical" }, }, + ["TinctureIncreasedAttackSpeed1"] = { type = "Suffix", affix = "of Skill", "(15-19)% increased Melee Weapon Attack Speed", statOrder = { 10690 }, level = 1, group = "TinctureIncreasedAttackSpeed", weightKey = { "tincture", "default", }, weightVal = { 800, 0 }, modTags = { "attack", "speed" }, }, + ["TinctureIncreasedAttackSpeed2"] = { type = "Suffix", affix = "of Ease", "(20-24)% increased Melee Weapon Attack Speed", statOrder = { 10690 }, level = 65, group = "TinctureIncreasedAttackSpeed", weightKey = { "tincture", "default", }, weightVal = { 800, 0 }, modTags = { "attack", "speed" }, }, + ["TinctureIncreasedAttackSpeed3"] = { type = "Suffix", affix = "of Mastery", "(25-29)% increased Melee Weapon Attack Speed", statOrder = { 10690 }, level = 85, group = "TinctureIncreasedAttackSpeed", weightKey = { "tincture", "default", }, weightVal = { 800, 0 }, modTags = { "attack", "speed" }, }, + ["TinctureDamageAgainstLowLife1"] = { type = "Suffix", affix = "of Execution", "(40-47)% increased Melee Weapon Damage against Enemies that are on Low Life", statOrder = { 10700 }, level = 1, group = "WeaponDamageVsLowLifeEnemies", weightKey = { "tincture", "default", }, weightVal = { 600, 0 }, modTags = { "damage", "attack" }, }, + ["TinctureDamageAgainstLowLife2"] = { type = "Suffix", affix = "of Elimination", "(48-55)% increased Melee Weapon Damage against Enemies that are on Low Life", statOrder = { 10700 }, level = 28, group = "WeaponDamageVsLowLifeEnemies", weightKey = { "tincture", "default", }, weightVal = { 600, 0 }, modTags = { "damage", "attack" }, }, + ["TinctureDamageAgainstLowLife3"] = { type = "Suffix", affix = "of Termination", "(56-63)% increased Melee Weapon Damage against Enemies that are on Low Life", statOrder = { 10700 }, level = 47, group = "WeaponDamageVsLowLifeEnemies", weightKey = { "tincture", "default", }, weightVal = { 600, 0 }, modTags = { "damage", "attack" }, }, + ["TinctureDamageAgainstLowLife4"] = { type = "Suffix", affix = "of Extermination", "(64-71)% increased Melee Weapon Damage against Enemies that are on Low Life", statOrder = { 10700 }, level = 65, group = "WeaponDamageVsLowLifeEnemies", weightKey = { "tincture", "default", }, weightVal = { 600, 0 }, modTags = { "damage", "attack" }, }, + ["TinctureDamageAgainstLowLife5"] = { type = "Suffix", affix = "of Assassination", "(72-79)% increased Melee Weapon Damage against Enemies that are on Low Life", statOrder = { 10700 }, level = 80, group = "WeaponDamageVsLowLifeEnemies", weightKey = { "tincture", "default", }, weightVal = { 600, 0 }, modTags = { "damage", "attack" }, }, + ["TinctureLifeGainedFromEnemyDeath1"] = { type = "Suffix", affix = "of Success", "Gain (11-15) Life per Enemy Killed with Melee Weapons", statOrder = { 10697 }, level = 1, group = "TinctureLifeGainedFromEnemyDeath", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life", "attack" }, }, + ["TinctureLifeGainedFromEnemyDeath2"] = { type = "Suffix", affix = "of Victory", "Gain (16-20) Life per Enemy Killed with Melee Weapons", statOrder = { 10697 }, level = 35, group = "TinctureLifeGainedFromEnemyDeath", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life", "attack" }, }, + ["TinctureLifeGainedFromEnemyDeath3"] = { type = "Suffix", affix = "of Triumph", "Gain (21-25) Life per Enemy Killed with Melee Weapons", statOrder = { 10697 }, level = 62, group = "TinctureLifeGainedFromEnemyDeath", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life", "attack" }, }, + ["TinctureLifeGainedFromEnemyDeath4"] = { type = "Suffix", affix = "of Conquest", "Gain (26-30) Life per Enemy Killed with Melee Weapons", statOrder = { 10697 }, level = 80, group = "TinctureLifeGainedFromEnemyDeath", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life", "attack" }, }, + ["TinctureManaGainedFromEnemyDeath1"] = { type = "Suffix", affix = "of Absorption", "Gain (2-3) Mana per Enemy Killed with Melee Weapons", statOrder = { 10691 }, level = 38, group = "ManaGainedOnWeaponKill", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["TinctureManaGainedFromEnemyDeath2"] = { type = "Suffix", affix = "of Osmosis", "Gain (4-5) Mana per Enemy Killed with Melee Weapons", statOrder = { 10691 }, level = 50, group = "ManaGainedOnWeaponKill", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["TinctureManaGainedFromEnemyDeath3"] = { type = "Suffix", affix = "of Consumption", "Gain (6-8) Mana per Enemy Killed with Melee Weapons", statOrder = { 10691 }, level = 68, group = "ManaGainedOnWeaponKill", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["TinctureManaGainedFromEnemyDeath4"] = { type = "Suffix", affix = "of Assimilation", "Gain (9-11) Mana per Enemy Killed with Melee Weapons", statOrder = { 10691 }, level = 82, group = "ManaGainedOnWeaponKill", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["TinctureLifeGainPerTarget1"] = { type = "Suffix", affix = "of Rejuvenation", "Gain (2-3) Life per Enemy Hit with Melee Weapons", statOrder = { 10696 }, level = 1, group = "TinctureLifeGainPerTarget", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life", "attack" }, }, + ["TinctureLifeGainPerTarget2"] = { type = "Suffix", affix = "of Restoration", "Gain (3-4) Life per Enemy Hit with Melee Weapons", statOrder = { 10696 }, level = 50, group = "TinctureLifeGainPerTarget", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life", "attack" }, }, + ["TinctureLifeGainPerTarget3"] = { type = "Suffix", affix = "of Regrowth", "Gain (5-7) Life per Enemy Hit with Melee Weapons", statOrder = { 10696 }, level = 77, group = "TinctureLifeGainPerTarget", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life", "attack" }, }, + ["TinctureManaGainPerTarget1"] = { type = "Suffix", affix = "of Enveloping", "Gain 1 Mana per Enemy Hit with Melee Weapons", statOrder = { 10698 }, level = 45, group = "TinctureManaGainPerTarget", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "mana", "attack" }, }, + ["TinctureManaGainPerTarget2"] = { type = "Suffix", affix = "of Siphoning", "Gain 2 Mana per Enemy Hit with Melee Weapons", statOrder = { 10698 }, level = 68, group = "TinctureManaGainPerTarget", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "mana", "attack" }, }, + ["TinctureManaGainPerTarget3"] = { type = "Suffix", affix = "of Devouring", "Gain 3 Mana per Enemy Hit with Melee Weapons", statOrder = { 10698 }, level = 84, group = "TinctureManaGainPerTarget", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "mana", "attack" }, }, + ["TinctureFlaskChargeIncrease1"] = { type = "Suffix", affix = "of Restocking", "(11-15)% increased Flask Charges gained from Kills with Melee Weapons", statOrder = { 10695 }, level = 1, group = "FlaskChargesFromWeaponKills", weightKey = { "tincture", "default", }, weightVal = { 800, 0 }, modTags = { }, }, + ["TinctureFlaskChargeIncrease2"] = { type = "Suffix", affix = "of Replenishing", "(16-20)% increased Flask Charges gained from Kills with Melee Weapons", statOrder = { 10695 }, level = 40, group = "FlaskChargesFromWeaponKills", weightKey = { "tincture", "default", }, weightVal = { 800, 0 }, modTags = { }, }, + ["TinctureFlaskChargeIncrease3"] = { type = "Suffix", affix = "of Pouring", "(21-25)% increased Flask Charges gained from Kills with Melee Weapons", statOrder = { 10695 }, level = 72, group = "FlaskChargesFromWeaponKills", weightKey = { "tincture", "default", }, weightVal = { 800, 0 }, modTags = { }, }, + ["TinctureFlaskChargeIncrease4"] = { type = "Suffix", affix = "of Overflowing", "(26-30)% increased Flask Charges gained from Kills with Melee Weapons", statOrder = { 10695 }, level = 85, group = "FlaskChargesFromWeaponKills", weightKey = { "tincture", "default", }, weightVal = { 800, 0 }, modTags = { }, }, + ["TinctureIgnorePhysDR1"] = { type = "Suffix", affix = "of Battering", "Melee Weapon Hits have (30-39)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 10661 }, level = 40, group = "TinctureIgnorePhysDR", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["TinctureIgnorePhysDR2"] = { type = "Suffix", affix = "of Crushing", "Melee Weapon Hits have (40-49)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 10661 }, level = 62, group = "TinctureIgnorePhysDR", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["TinctureIgnorePhysDR3"] = { type = "Suffix", affix = "of Overwhelming", "Melee Weapon Hits have (50-60)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 10661 }, level = 80, group = "TinctureIgnorePhysDR", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, } \ No newline at end of file diff --git a/src/Data/ModVeiled.lua b/src/Data/ModVeiled.lua index 695aa494de..788e154dd6 100644 --- a/src/Data/ModVeiled.lua +++ b/src/Data/ModVeiled.lua @@ -2,261 +2,261 @@ -- Item data (c) Grinding Gear Games return { - ["JunMasterAvoidStunAndElementalStatusAilments1"] = { type = "Prefix", affix = "Chosen", "(20-25)% chance to Avoid Elemental Ailments", "(20-25)% chance to Avoid being Stunned", statOrder = { 1724, 1732 }, level = 1, group = "AvoidStunAndElementalStatusAilments", weightKey = { "body_armour", "default", }, weightVal = { 0, 0 }, modTags = { "unveiled_mod", "elemental", "fire", "cold", "lightning", "ailment" }, }, - ["JunMasterVeiledLocalIncreasedPhysicalDamageAndImpaleCrafted"] = { type = "Prefix", affix = "Chosen", "(120-139)% increased Physical Damage", "(21-25)% chance to Impale Enemies on Hit with Attacks", statOrder = { 1117, 7467 }, level = 60, group = "LocalIncreasedPhysicalDamageAndImpaleChance", weightKey = { "wand", "sceptre", "dagger", "weapon", "default", }, weightVal = { 500, 500, 500, 1000, 0 }, modTags = { "physical_damage", "unveiled_mod", "damage", "physical", "attack" }, }, - ["JunMasterVeiledLocalIncreasedPhysicalDamageAndBleedChanceCrafted_"] = { type = "Prefix", affix = "Chosen", "(120-139)% increased Physical Damage", "(21-25)% chance to cause Bleeding on Hit", statOrder = { 1117, 2359 }, level = 60, group = "LocalIncreasedPhysicalDamageAndBleedChance", weightKey = { "wand", "sceptre", "dagger", "weapon", "default", }, weightVal = { 500, 500, 500, 1000, 0 }, modTags = { "physical_damage", "bleed", "unveiled_mod", "damage", "physical", "attack", "ailment" }, }, - ["JunMasterVeiledLocalIncreasedPhysicalDamageAndBlindChanceCrafted_"] = { type = "Prefix", affix = "Chosen", "(120-139)% increased Physical Damage", "(21-25)% chance to Blind Enemies on hit", statOrder = { 1117, 2140 }, level = 60, group = "LocalIncreasedPhysicalDamageAndBlindChance", weightKey = { "wand", "sceptre", "dagger", "weapon", "default", }, weightVal = { 500, 500, 500, 1000, 0 }, modTags = { "physical_damage", "unveiled_mod", "damage", "physical", "attack" }, }, - ["JunMasterVeiledLocalIncreasedPhysicalDamageAndPoisonChanceCrafted_"] = { type = "Prefix", affix = "Chosen", "(120-139)% increased Physical Damage", "(21-25)% chance to Poison on Hit", statOrder = { 1117, 7593 }, level = 60, group = "LocalIncreasedPhysicalDamageAndPoisonChance", weightKey = { "wand", "sceptre", "dagger", "weapon", "default", }, weightVal = { 500, 500, 500, 1000, 0 }, modTags = { "physical_damage", "chaos_damage", "bleed", "poison", "unveiled_mod", "damage", "physical", "chaos", "attack", "ailment" }, }, - ["JunMasterVeiledElementalPenetrationWithAttacks_"] = { type = "Prefix", affix = "Chosen", "Attacks with this Weapon Penetrate (14-16)% Elemental Resistances", statOrder = { 3624 }, level = 60, group = "LocalAttackReduceEnemyElementalResistance", weightKey = { "wand", "dagger", "weapon", "default", }, weightVal = { 500, 500, 1000, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "attack" }, }, - ["JunMasterVeiledChaosPenetrationWithAttacks__"] = { type = "Prefix", affix = "Chosen", "Attacks with this Weapon Penetrate (14-16)% Chaos Resistance", statOrder = { 7481 }, level = 60, group = "LocalChaosPenetration", weightKey = { "wand", "dagger", "weapon", "default", }, weightVal = { 500, 500, 1000, 0 }, modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos", "attack" }, }, - ["JunMasterVeiledDoubleDamageChance2h_"] = { type = "Suffix", affix = "of the Order", "(12-14)% chance to deal Double Damage", statOrder = { 5369 }, level = 60, group = "DoubleDamageChance", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "damage" }, }, - ["JunMasterVeiledDoubleDamageChance1h"] = { type = "Suffix", affix = "of the Order", "(6-7)% chance to deal Double Damage", statOrder = { 5369 }, level = 60, group = "DoubleDamageChance", weightKey = { "shield", "one_hand_weapon", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "unveiled_mod", "damage" }, }, - ["JunMasterVeiledAreaDamageAndAreaOfEffect"] = { type = "Prefix", affix = "Chosen", "(14-16)% increased Area of Effect", "(17-20)% increased Area Damage", statOrder = { 1761, 1912 }, level = 60, group = "AreaDamageAndAreaOfEffect", weightKey = { "gloves", "default", }, weightVal = { 750, 0 }, modTags = { "unveiled_mod", "damage" }, }, - ["JunMasterVeiledProjectileDamageAndProjectileSpeed"] = { type = "Prefix", affix = "Chosen", "(23-25)% increased Projectile Speed", "(17-20)% increased Projectile Damage", statOrder = { 1677, 1873 }, level = 60, group = "ProjectileDamageAndProjectileSpeed", weightKey = { "gloves", "default", }, weightVal = { 750, 0 }, modTags = { "unveiled_mod", "damage", "speed" }, }, - ["JunMasterVeiledMeleeDamageAndMeleeRange"] = { type = "Prefix", affix = "Chosen", "(17-20)% increased Melee Damage", "+0.2 metres to Melee Strike Range", statOrder = { 1119, 2410 }, level = 60, group = "MeleeDamageAndMeleeRange", weightKey = { "gloves", "default", }, weightVal = { 750, 0 }, modTags = { "unveiled_mod", "damage", "attack" }, }, - ["JunMasterVeiledFireDamageAndChanceToIgnite1h"] = { type = "Prefix", affix = "Chosen", "(70-79)% increased Fire Damage", "(21-23)% chance to Ignite", statOrder = { 1241, 1903 }, level = 60, group = "FireDamageAndChanceToIgnite", weightKey = { "two_hand_weapon", "wand", "dagger", "sceptre", "weapon", "default", }, weightVal = { 0, 1000, 1000, 1000, 100, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "ailment" }, }, - ["JunMasterVeiledFireDamageAndChanceToIgnite2h"] = { type = "Prefix", affix = "Chosen", "(100-109)% increased Fire Damage", "(35-40)% chance to Ignite", statOrder = { 1241, 1903 }, level = 60, group = "FireDamageAndChanceToIgnite", weightKey = { "one_hand_weapon", "bow", "staff", "weapon", "default", }, weightVal = { 0, 0, 1000, 100, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "ailment" }, }, - ["JunMasterVeiledColdDamageAndBaseChanceToFreeze1h"] = { type = "Prefix", affix = "Chosen", "(70-79)% increased Cold Damage", "(21-23)% chance to Freeze", statOrder = { 1250, 1906 }, level = 60, group = "ColdDamageAndBaseChanceToFreeze", weightKey = { "two_hand_weapon", "wand", "dagger", "sceptre", "weapon", "default", }, weightVal = { 0, 1000, 1000, 1000, 100, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "cold", "ailment" }, }, - ["JunMasterVeiledColdDamageAndBaseChanceToFreeze2h__"] = { type = "Prefix", affix = "Chosen", "(100-109)% increased Cold Damage", "(35-40)% chance to Freeze", statOrder = { 1250, 1906 }, level = 60, group = "ColdDamageAndBaseChanceToFreeze", weightKey = { "one_hand_weapon", "bow", "staff", "weapon", "default", }, weightVal = { 0, 0, 1000, 100, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "cold", "ailment" }, }, - ["JunMasterVeiledLightningDamageAndChanceToShock1h_"] = { type = "Prefix", affix = "Chosen", "(70-79)% increased Lightning Damage", "(21-23)% chance to Shock", statOrder = { 1261, 1910 }, level = 60, group = "LightningDamageAndChanceToShock", weightKey = { "two_hand_weapon", "wand", "dagger", "sceptre", "weapon", "default", }, weightVal = { 0, 1000, 1000, 1000, 100, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "lightning", "ailment" }, }, - ["JunMasterVeiledLightningDamageAndChanceToShock2h"] = { type = "Prefix", affix = "Chosen", "(100-109)% increased Lightning Damage", "(35-40)% chance to Shock", statOrder = { 1261, 1910 }, level = 60, group = "LightningDamageAndChanceToShock", weightKey = { "one_hand_weapon", "bow", "staff", "weapon", "default", }, weightVal = { 0, 0, 1000, 100, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "lightning", "ailment" }, }, - ["JunMasterVeiledChaosDamageAndChaosSkillDuration1h"] = { type = "Prefix", affix = "Chosen", "(60-69)% increased Chaos Damage", "Chaos Skills have (13-15)% increased Skill Effect Duration", statOrder = { 1269, 1777 }, level = 60, group = "ChaosDamageAndChaosSkillDuration", weightKey = { "two_hand_weapon", "wand", "dagger", "sceptre", "weapon", "default", }, weightVal = { 0, 1000, 1000, 1000, 100, 0 }, modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos" }, }, - ["JunMasterVeiledChaosDamageAndChaosSkillDuration2h_"] = { type = "Prefix", affix = "Chosen", "(90-99)% increased Chaos Damage", "Chaos Skills have (26-30)% increased Skill Effect Duration", statOrder = { 1269, 1777 }, level = 60, group = "ChaosDamageAndChaosSkillDuration", weightKey = { "one_hand_weapon", "bow", "staff", "weapon", "default", }, weightVal = { 0, 0, 1000, 100, 0 }, modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos" }, }, - ["JunMasterVeiledSpellDamageAndManaRegenerationRate1h"] = { type = "Prefix", affix = "Chosen", "(70-79)% increased Spell Damage", "(18-20)% increased Mana Regeneration Rate", statOrder = { 1108, 1466 }, level = 60, group = "SpellDamageAndManaRegenerationRate", weightKey = { "two_hand_weapon", "wand", "dagger", "sceptre", "weapon", "default", }, weightVal = { 0, 1000, 1000, 1000, 100, 0 }, modTags = { "caster_damage", "resource", "unveiled_mod", "mana", "damage", "caster" }, }, - ["JunMasterVeiledSpellDamageAndManaRegenerationRate2h"] = { type = "Prefix", affix = "Chosen", "(100-109)% increased Spell Damage", "(36-40)% increased Mana Regeneration Rate", statOrder = { 1108, 1466 }, level = 60, group = "SpellDamageAndManaRegenerationRate", weightKey = { "bow", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 100, 0 }, modTags = { "caster_damage", "resource", "unveiled_mod", "mana", "damage", "caster" }, }, - ["JunMasterVeiledSpellDamageAndNonChaosDamageToAddAsChaosDamage1h"] = { type = "Prefix", affix = "Chosen", "(60-69)% increased Spell Damage", "Gain 5% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 1108, 9009 }, level = 60, group = "SpellDamageAndNonChaosDamageToAddAsChaosDamage", weightKey = { "two_hand_weapon", "wand", "dagger", "sceptre", "weapon", "default", }, weightVal = { 0, 1000, 1000, 1000, 100, 0 }, modTags = { "caster_damage", "chaos_damage", "unveiled_mod", "damage", "chaos", "caster" }, }, - ["JunMasterVeiledSpellDamageAndNonChaosDamageToAddAsChaosDamage2h"] = { type = "Prefix", affix = "Chosen", "(90-99)% increased Spell Damage", "Gain (9-10)% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 1108, 9009 }, level = 60, group = "SpellDamageAndNonChaosDamageToAddAsChaosDamage", weightKey = { "bow", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 100, 0 }, modTags = { "caster_damage", "chaos_damage", "unveiled_mod", "damage", "chaos", "caster" }, }, - ["JunMasterVeiledMinionDamageAndMinionMaximumLife1h"] = { type = "Prefix", affix = "Chosen", "Minions have (34-38)% increased maximum Life", "Minions deal (34-38)% increased Damage", statOrder = { 1647, 1852 }, level = 60, group = "MinionDamageAndMinionMaximumLife", weightKey = { "two_hand_weapon", "wand", "dagger", "sceptre", "weapon", "default", }, weightVal = { 0, 1000, 1000, 1000, 400, 0 }, modTags = { "resource", "unveiled_mod", "life", "damage", "minion" }, }, - ["JunMasterVeiledMinionDamageAndMinionMaximumLife2h__"] = { type = "Prefix", affix = "Chosen", "Minions have (50-59)% increased maximum Life", "Minions deal (50-59)% increased Damage", statOrder = { 1647, 1852 }, level = 60, group = "MinionDamageAndMinionMaximumLife", weightKey = { "one_hand_weapon", "staff", "weapon", "default", }, weightVal = { 0, 1000, 400, 0 }, modTags = { "resource", "unveiled_mod", "life", "damage", "minion" }, }, - ["JunMasterVeiledMinionAttackAndCastSpeedOnWeapon1h"] = { type = "Suffix", affix = "of the Order", "Minions have (18-20)% increased Attack Speed", "Minions have (18-20)% increased Cast Speed", statOrder = { 2781, 2782 }, level = 60, group = "MinionAttackAndCastSpeedOnWeapon", weightKey = { "two_hand_weapon", "wand", "dagger", "sceptre", "weapon", "default", }, weightVal = { 0, 1000, 1000, 1000, 400, 0 }, modTags = { "unveiled_mod", "attack", "caster", "speed", "minion" }, }, - ["JunMasterVeiledMinionAttackAndCastSpeedOnWeapon2h"] = { type = "Suffix", affix = "of the Order", "Minions have (34-38)% increased Attack Speed", "Minions have (34-38)% increased Cast Speed", statOrder = { 2781, 2782 }, level = 60, group = "MinionAttackAndCastSpeedOnWeapon", weightKey = { "one_hand_weapon", "staff", "weapon", "default", }, weightVal = { 0, 1000, 400, 0 }, modTags = { "unveiled_mod", "attack", "caster", "speed", "minion" }, }, - ["JunMasterVeiledChaosNonAilmentDamageOverTimeMultiplier2h"] = { type = "Prefix", affix = "Chosen", "+(44-48)% to Chaos Damage over Time Multiplier", statOrder = { 1144 }, level = 60, group = "ChaosDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "chaos_damage", "unveiled_mod", "damage", "chaos" }, }, - ["JunMasterVeiledChaosNonAilmentDamageOverTimeMultiplier1h"] = { type = "Prefix", affix = "Chosen", "+(24-28)% to Chaos Damage over Time Multiplier", statOrder = { 1144 }, level = 60, group = "ChaosDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "chaos_damage", "unveiled_mod", "damage", "chaos" }, }, - ["JunMasterVeiledPhysicalDamageOverTimeMultiplier2h_"] = { type = "Prefix", affix = "Chosen", "+(44-48)% to Physical Damage over Time Multiplier", statOrder = { 1132 }, level = 60, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "physical_damage", "unveiled_mod", "damage", "physical" }, }, - ["JunMasterVeiledPhysicalDamageOverTimeMultiplier1h"] = { type = "Prefix", affix = "Chosen", "+(24-28)% to Physical Damage over Time Multiplier", statOrder = { 1132 }, level = 60, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "physical_damage", "unveiled_mod", "damage", "physical" }, }, - ["JunMasterVeiledColdDamageOverTimeMultiplier2h_"] = { type = "Prefix", affix = "Chosen", "+(44-48)% to Cold Damage over Time Multiplier", statOrder = { 1141 }, level = 60, group = "ColdDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "cold" }, }, - ["JunMasterVeiledColdDamageOverTimeMultiplier1h"] = { type = "Prefix", affix = "Chosen", "+(24-28)% to Cold Damage over Time Multiplier", statOrder = { 1141 }, level = 60, group = "ColdDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "cold" }, }, - ["JunMasterVeiledFireDamageOverTimeMultiplier2h_"] = { type = "Prefix", affix = "Chosen", "+(44-48)% to Fire Damage over Time Multiplier", statOrder = { 1136 }, level = 60, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "fire" }, }, - ["JunMasterVeiledFireDamageOverTimeMultiplier1h"] = { type = "Prefix", affix = "Chosen", "+(24-28)% to Fire Damage over Time Multiplier", statOrder = { 1136 }, level = 60, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "fire" }, }, - ["JunMasterVeiledChaosDamageOverTimeMultiplierTwoHand"] = { type = "Suffix", affix = "of the Order", "+(44-48)% to Chaos Damage over Time Multiplier", statOrder = { 1144 }, level = 60, group = "ChaosDamageOverTimeMultiplier", weightKey = { "one_hand_weapon", "bow", "staff", "weapon", "default", }, weightVal = { 0, 0, 1000, 100, 0 }, modTags = { "dot_multi", "chaos_damage", "unveiled_mod", "damage", "chaos" }, }, - ["JunMasterVeiledChaosDamageOverTimeMultiplier__"] = { type = "Suffix", affix = "of the Order", "+(24-28)% to Chaos Damage over Time Multiplier", statOrder = { 1144 }, level = 60, group = "ChaosDamageOverTimeMultiplier", weightKey = { "bow", "two_hand_weapon", "wand", "dagger", "sceptre", "weapon", "default", }, weightVal = { 1000, 0, 1000, 1000, 600, 100, 0 }, modTags = { "dot_multi", "chaos_damage", "unveiled_mod", "damage", "chaos" }, }, - ["JunMasterVeiledPhysicalDamageOverTimeMultiplierTwoHand_"] = { type = "Suffix", affix = "of the Order", "+(44-48)% to Physical Damage over Time Multiplier", statOrder = { 1132 }, level = 60, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "one_hand_weapon", "bow", "staff", "weapon", "default", }, weightVal = { 0, 0, 1000, 400, 0 }, modTags = { "dot_multi", "physical_damage", "unveiled_mod", "damage", "physical" }, }, - ["JunMasterVeiledPhysicalDamageOverTimeMultiplier"] = { type = "Suffix", affix = "of the Order", "+(24-28)% to Physical Damage over Time Multiplier", statOrder = { 1132 }, level = 60, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "bow", "two_hand_weapon", "wand", "weapon", "default", }, weightVal = { 400, 0, 1000, 400, 0 }, modTags = { "dot_multi", "physical_damage", "unveiled_mod", "damage", "physical" }, }, - ["JunMasterVeiledColdDamageOverTimeMultiplierTwoHand"] = { type = "Suffix", affix = "of the Order", "+(44-48)% to Cold Damage over Time Multiplier", statOrder = { 1141 }, level = 60, group = "ColdDamageOverTimeMultiplier", weightKey = { "bow", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 400, 0 }, modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "cold" }, }, - ["JunMasterVeiledColdDamageOverTimeMultiplier___"] = { type = "Suffix", affix = "of the Order", "+(24-28)% to Cold Damage over Time Multiplier", statOrder = { 1141 }, level = 60, group = "ColdDamageOverTimeMultiplier", weightKey = { "two_hand_weapon", "wand", "dagger", "sceptre", "weapon", "default", }, weightVal = { 0, 1000, 1000, 600, 400, 0 }, modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "cold" }, }, - ["JunMasterVeiledFireDamageOverTimeMultiplierTwoHand"] = { type = "Suffix", affix = "of the Order", "+(44-48)% to Fire Damage over Time Multiplier", statOrder = { 1136 }, level = 60, group = "FireDamageOverTimeMultiplier", weightKey = { "bow", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 400, 0 }, modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "fire" }, }, - ["JunMasterVeiledFireDamageOverTimeMultiplier"] = { type = "Suffix", affix = "of the Order", "+(24-28)% to Fire Damage over Time Multiplier", statOrder = { 1136 }, level = 60, group = "FireDamageOverTimeMultiplier", weightKey = { "bow", "two_hand_weapon", "wand", "dagger", "sceptre", "weapon", "default", }, weightVal = { 100, 0, 1000, 1000, 600, 400, 0 }, modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "fire" }, }, - ["JunMasterVeiledLocalIncreasedArmourAndEvasionAndLife"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Armour and Evasion", "+(17-19) to maximum Life", statOrder = { 1436, 1451 }, level = 60, group = "LocalIncreasedArmourAndEvasionAndLife", weightKey = { "body_armour", "shield", "helmet", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion" }, }, - ["JunMasterVeiledLocalIncreasedArmourAndEnergyShieldAndLife"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Armour and Energy Shield", "+(17-19) to maximum Life", statOrder = { 1435, 1451 }, level = 60, group = "LocalIncreasedArmourAndEnergyShieldAndLife", weightKey = { "body_armour", "shield", "helmet", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "energy_shield" }, }, - ["JunMasterVeiledLocalIncreasedEvasionAndEnergyShieldAndLife"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Evasion and Energy Shield", "+(17-19) to maximum Life", statOrder = { 1437, 1451 }, level = 60, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", weightKey = { "body_armour", "shield", "helmet", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "evasion", "energy_shield" }, }, - ["JunMasterVeiledLocalIncreasedArmourAndLife_"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Armour", "+(17-19) to maximum Life", statOrder = { 1425, 1451 }, level = 60, group = "LocalIncreasedArmourAndLife", weightKey = { "body_armour", "shield", "helmet", "str_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "armour" }, }, - ["JunMasterVeiledLocalIncreasedEvasionAndLife__"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Evasion Rating", "+(17-19) to maximum Life", statOrder = { 1433, 1451 }, level = 60, group = "LocalIncreasedEvasionAndLife", weightKey = { "body_armour", "shield", "helmet", "dex_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "evasion" }, }, - ["JunMasterVeiledLocalIncreasedEnergyShieldAndLife_"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Energy Shield", "+(17-19) to maximum Life", statOrder = { 1442, 1451 }, level = 60, group = "LocalIncreasedEnergyShieldAndLife", weightKey = { "body_armour", "shield", "helmet", "int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "energy_shield" }, }, - ["JunMasterVeiledLocalIncreasedDefencesAndLife"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Armour, Evasion and Energy Shield", "+(17-19) to maximum Life", statOrder = { 1438, 1451 }, level = 60, group = "LocalIncreasedDefencesAndLife", weightKey = { "body_armour", "shield", "helmet", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion", "energy_shield" }, }, - ["JunMasterVeiledLocalIncreasedArmourAndEvasionAndLifeMed"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Armour and Evasion", "+(19-22) to maximum Life", statOrder = { 1436, 1451 }, level = 60, group = "LocalIncreasedArmourAndEvasionAndLife", weightKey = { "body_armour", "gloves", "boots", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion" }, }, - ["JunMasterVeiledLocalIncreasedArmourAndEnergyShieldAndLifeMed"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Armour and Energy Shield", "+(19-22) to maximum Life", statOrder = { 1435, 1451 }, level = 60, group = "LocalIncreasedArmourAndEnergyShieldAndLife", weightKey = { "body_armour", "gloves", "boots", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "energy_shield" }, }, - ["JunMasterVeiledLocalIncreasedEvasionAndEnergyShieldAndLifeMed"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Evasion and Energy Shield", "+(19-22) to maximum Life", statOrder = { 1437, 1451 }, level = 60, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", weightKey = { "body_armour", "gloves", "boots", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "evasion", "energy_shield" }, }, - ["JunMasterVeiledLocalIncreasedArmourAndLifeMed___"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Armour", "+(19-22) to maximum Life", statOrder = { 1425, 1451 }, level = 60, group = "LocalIncreasedArmourAndLife", weightKey = { "body_armour", "gloves", "boots", "str_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "armour" }, }, - ["JunMasterVeiledLocalIncreasedEvasionAndLifeMed___"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Evasion Rating", "+(19-22) to maximum Life", statOrder = { 1433, 1451 }, level = 60, group = "LocalIncreasedEvasionAndLife", weightKey = { "body_armour", "gloves", "boots", "dex_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "evasion" }, }, - ["JunMasterVeiledLocalIncreasedEnergyShieldAndLifeMed"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Energy Shield", "+(19-22) to maximum Life", statOrder = { 1442, 1451 }, level = 60, group = "LocalIncreasedEnergyShieldAndLife", weightKey = { "body_armour", "gloves", "boots", "int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "energy_shield" }, }, - ["JunMasterVeiledLocalIncreasedDefencesAndLifeMed"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Armour, Evasion and Energy Shield", "+(19-22) to maximum Life", statOrder = { 1438, 1451 }, level = 60, group = "LocalIncreasedDefencesAndLife", weightKey = { "body_armour", "gloves", "boots", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion", "energy_shield" }, }, - ["JunMasterVeiledLocalIncreasedArmourAndEvasionAndLifeHigh"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Armour and Evasion", "+(23-26) to maximum Life", statOrder = { 1436, 1451 }, level = 60, group = "LocalIncreasedArmourAndEvasionAndLife", weightKey = { "shield", "helmet", "gloves", "boots", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion" }, }, - ["JunMasterVeiledLocalIncreasedArmourAndEnergyShieldAndLifeHigh"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Armour and Energy Shield", "+(23-26) to maximum Life", statOrder = { 1435, 1451 }, level = 60, group = "LocalIncreasedArmourAndEnergyShieldAndLife", weightKey = { "shield", "helmet", "gloves", "boots", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "energy_shield" }, }, - ["JunMasterVeiledLocalIncreasedEvasionAndEnergyShieldAndLifeHigh"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Evasion and Energy Shield", "+(23-26) to maximum Life", statOrder = { 1437, 1451 }, level = 60, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", weightKey = { "shield", "helmet", "gloves", "boots", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "evasion", "energy_shield" }, }, - ["JunMasterVeiledLocalIncreasedArmourAndLifeHigh"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Armour", "+(23-26) to maximum Life", statOrder = { 1425, 1451 }, level = 60, group = "LocalIncreasedArmourAndLife", weightKey = { "shield", "helmet", "gloves", "boots", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "armour" }, }, - ["JunMasterVeiledLocalIncreasedEvasionAndLifeHigh_"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Evasion Rating", "+(23-26) to maximum Life", statOrder = { 1433, 1451 }, level = 60, group = "LocalIncreasedEvasionAndLife", weightKey = { "shield", "helmet", "gloves", "boots", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "evasion" }, }, - ["JunMasterVeiledLocalIncreasedEnergyShieldAndLifeHigh"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Energy Shield", "+(23-26) to maximum Life", statOrder = { 1442, 1451 }, level = 60, group = "LocalIncreasedEnergyShieldAndLife", weightKey = { "shield", "helmet", "gloves", "boots", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "energy_shield" }, }, - ["JunMasterVeiledLocalIncreasedDefencesAndLifeHigh__"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Armour, Evasion and Energy Shield", "+(23-26) to maximum Life", statOrder = { 1438, 1451 }, level = 60, group = "LocalIncreasedDefencesAndLife", weightKey = { "shield", "helmet", "gloves", "boots", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion", "energy_shield" }, }, - ["JunMasterVeiledStrengthAndDexterity"] = { type = "Suffix", affix = "of the Order", "+(31-35) to Strength and Dexterity", statOrder = { 1065 }, level = 60, group = "StrengthAndDexterity", weightKey = { "body_armour", "boots", "gloves", "helmet", "amulet", "ring", "belt", "shield", "quiver", "default", }, weightVal = { 600, 600, 600, 600, 600, 600, 600, 600, 600, 0 }, modTags = { "unveiled_mod", "attribute" }, }, - ["JunMasterVeiledDexterityAndIntelligence"] = { type = "Suffix", affix = "of the Order", "+(31-35) to Dexterity and Intelligence", statOrder = { 1067 }, level = 60, group = "DexterityAndIntelligence", weightKey = { "body_armour", "boots", "gloves", "helmet", "amulet", "ring", "belt", "shield", "quiver", "default", }, weightVal = { 600, 600, 600, 600, 600, 600, 600, 600, 600, 0 }, modTags = { "unveiled_mod", "attribute" }, }, - ["JunMasterVeiledStrengthAndIntelligence"] = { type = "Suffix", affix = "of the Order", "+(31-35) to Strength and Intelligence", statOrder = { 1066 }, level = 60, group = "StrengthAndIntelligence", weightKey = { "body_armour", "boots", "gloves", "helmet", "amulet", "ring", "belt", "shield", "quiver", "default", }, weightVal = { 600, 600, 600, 600, 600, 600, 600, 600, 600, 0 }, modTags = { "unveiled_mod", "attribute" }, }, - ["JunMasterVeiledMinimumEnduranceCharges_"] = { type = "Suffix", affix = "of the Order", "+1 to Minimum Endurance Charges", "(3-4)% chance to gain an Endurance Charge on Kill", statOrder = { 1684, 2504 }, level = 60, group = "MinimumEnduranceChargesAndOnKillChance", weightKey = { "ring", "amulet", "default", }, weightVal = { 1500, 1500, 0 }, modTags = { "endurance_charge", "unveiled_mod" }, }, - ["JunMasterVeiledMinimumPowerCharges"] = { type = "Suffix", affix = "of the Order", "+1 to Minimum Power Charges", "(3-4)% chance to gain a Power Charge on Kill", statOrder = { 1694, 2508 }, level = 60, group = "MinimumPowerChargesAndOnKillChance", weightKey = { "ring", "amulet", "default", }, weightVal = { 1500, 1500, 0 }, modTags = { "power_charge", "unveiled_mod" }, }, - ["JunMasterVeiledMinimumFrenzyCharges___"] = { type = "Suffix", affix = "of the Order", "+1 to Minimum Frenzy Charges", "(3-4)% chance to gain a Frenzy Charge on Kill", statOrder = { 1689, 2506 }, level = 60, group = "MinimumFrenzyChargesAndOnKillChance", weightKey = { "ring", "amulet", "default", }, weightVal = { 1500, 1500, 0 }, modTags = { "frenzy_charge", "unveiled_mod" }, }, - ["JunMasterVeiledIncreasedManaAndRegen"] = { type = "Prefix", affix = "Chosen", "+(51-55) to maximum Mana", "Regenerate 5.3 Mana per second", statOrder = { 1461, 1464 }, level = 60, group = "IncreasedManaAndRegen", weightKey = { "ring", "amulet", "default", }, weightVal = { 600, 600, 0 }, modTags = { "resource", "unveiled_mod", "mana" }, }, - ["JunMasterVeiledManaAndManaCostPercent"] = { type = "Prefix", affix = "Chosen", "+(51-55) to maximum Mana", "(6-7)% reduced Mana Cost of Skills", statOrder = { 1461, 1764 }, level = 60, group = "ManaAndManaCostPercent", weightKey = { "ring", "amulet", "default", }, weightVal = { 600, 600, 0 }, modTags = { "resource", "unveiled_mod", "mana" }, }, - ["JunMasterVeiledManaAndDamageTakenGoesToManaPercent"] = { type = "Prefix", affix = "Chosen", "+(51-55) to maximum Mana", "(7-8)% of Damage taken Recouped as Mana", statOrder = { 1461, 2331 }, level = 60, group = "ManaAndDamageTakenGoesToManaPercent", weightKey = { "ring", "amulet", "default", }, weightVal = { 600, 600, 0 }, modTags = { "resource", "unveiled_mod", "mana" }, }, - ["JunMasterVeiledAttackAndCastSpeed_"] = { type = "Suffix", affix = "of the Order", "(7-8)% increased Attack and Cast Speed", statOrder = { 1923 }, level = 60, group = "AttackAndCastSpeed", weightKey = { "amulet", "quiver", "default", }, weightVal = { 1500, 1500, 0 }, modTags = { "unveiled_mod", "attack", "caster", "speed" }, }, - ["JunMasterVeiledMovementVelocityAndMovementVelocityIfNotHitRecently"] = { type = "Prefix", affix = "Chosen", "(25-30)% increased Movement Speed", "(10-12)% increased Movement Speed if you haven't been Hit Recently", statOrder = { 1679, 3089 }, level = 60, group = "MovementVelocityAndMovementVelocityIfNotHitRecently", weightKey = { "boots", "default", }, weightVal = { 1500, 0 }, modTags = { "unveiled_mod", "speed" }, }, - ["JunMasterVeiledMovementVelocityAndOnslaughtOnKill"] = { type = "Prefix", affix = "Chosen", "(25-30)% increased Movement Speed", "(13-16)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1679, 2865 }, level = 60, group = "MovementVelocityAndOnslaughtOnKill", weightKey = { "boots", "default", }, weightVal = { 1500, 0 }, modTags = { "unveiled_mod", "speed" }, }, - ["JunMasterVeiledMovementVelocityAndCannotBeChilled__"] = { type = "Prefix", affix = "Chosen", "(25-30)% increased Movement Speed", "100% chance to Avoid being Chilled", statOrder = { 1679, 1725 }, level = 60, group = "MovementVelocityAndCannotBeChilled", weightKey = { "boots", "default", }, weightVal = { 1500, 0 }, modTags = { "unveiled_mod", "elemental", "cold", "speed", "ailment" }, }, - ["JunMasterVeiledArmourAndEvasionRating"] = { type = "Prefix", affix = "Chosen", "+(365-400) to Armour and Evasion Rating", statOrder = { 4127 }, level = 60, group = "ArmourAndEvasionRating", weightKey = { "belt", "quiver", "default", }, weightVal = { 1500, 1500, 0 }, modTags = { "unveiled_mod", "defences", "armour", "evasion" }, }, - ["JunMasterVeiledArmourAndEnergyShield"] = { type = "Prefix", affix = "Chosen", "+(365-400) to Armour", "+(31-35) to maximum Energy Shield", statOrder = { 1422, 1440 }, level = 60, group = "ArmourAndEnergyShield", weightKey = { "belt", "default", }, weightVal = { 1500, 0 }, modTags = { "unveiled_mod", "defences", "armour", "energy_shield" }, }, - ["JunMasterVeiledEvasionRatingAndEnergyShield"] = { type = "Prefix", affix = "Chosen", "+(365-400) to Evasion Rating", "+(31-35) to maximum Energy Shield", statOrder = { 1427, 1440 }, level = 60, group = "EvasionRatingAndEnergyShield", weightKey = { "belt", "quiver", "default", }, weightVal = { 1500, 1500, 0 }, modTags = { "unveiled_mod", "defences", "evasion", "energy_shield" }, }, - ["JunMasterVeiledFlaskEffect"] = { type = "Prefix", affix = "Chosen", "Flasks applied to you have (9-10)% increased Effect", statOrder = { 2617 }, level = 60, group = "FlaskEffect", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "unveiled_mod" }, }, - ["JunMasterVeiledChanceToNotConsumeFlaskCharges"] = { type = "Prefix", affix = "Chosen", "(9-10)% chance for Flasks you use to not consume Charges", statOrder = { 4091 }, level = 60, group = "FlaskChanceToNotConsumeCharges", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "unveiled_mod" }, }, - ["JunMasterVeiledFlaskEffectAndFlaskChargesGained"] = { type = "Prefix", affix = "Chosen", "33% reduced Flask Charges gained", "Flasks applied to you have (15-18)% increased Effect", statOrder = { 2060, 2617 }, level = 60, group = "FlaskEffectAndFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1500, 0 }, modTags = { "flask", "unveiled_mod" }, }, - ["JunMasterVeiledFlaskEffectAndFlaskChargesGainedNew"] = { type = "Suffix", affix = "of the Order", "33% reduced Flask Charges gained", "Flasks applied to you have (15-18)% increased Effect", statOrder = { 2060, 2617 }, level = 60, group = "FlaskEffectAndFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "unveiled_mod" }, }, - ["JunMasterVeiledGlobalCooldownRecovery"] = { type = "Suffix", affix = "of the Order", "(13-16)% increased Cooldown Recovery Rate", statOrder = { 4822 }, level = 60, group = "GlobalCooldownRecovery", weightKey = { "belt", "default", }, weightVal = { 1500, 0 }, modTags = { "unveiled_mod" }, }, - ["JunMasterVeiledDamagePerEnduranceCharge1h"] = { type = "Suffix", affix = "of the Order", "(5-6)% increased Damage per Endurance Charge", statOrder = { 3065 }, level = 60, group = "DamagePerEnduranceCharge", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "damage" }, }, - ["JunMasterVeiledDamagePerEnduranceCharge2h"] = { type = "Suffix", affix = "of the Order", "(7-8)% increased Damage per Endurance Charge", statOrder = { 3065 }, level = 60, group = "DamagePerEnduranceCharge", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "damage" }, }, - ["JunMasterVeiledDamagePerFrenzyCharge1h"] = { type = "Suffix", affix = "of the Order", "(5-6)% increased Damage per Frenzy Charge", statOrder = { 3152 }, level = 60, group = "DamagePerFrenzyCharge", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "damage" }, }, - ["JunMasterVeiledDamagePerFrenzyCharge2h__"] = { type = "Suffix", affix = "of the Order", "(7-8)% increased Damage per Frenzy Charge", statOrder = { 3152 }, level = 60, group = "DamagePerFrenzyCharge", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "damage" }, }, - ["JunMasterVeiledDamagePerPowerCharge1h_"] = { type = "Suffix", affix = "of the Order", "(5-6)% increased Damage per Power Charge", statOrder = { 5766 }, level = 60, group = "IncreasedDamagePerPowerCharge", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "damage" }, }, - ["JunMasterVeiledDamagePerPowerCharge2h"] = { type = "Suffix", affix = "of the Order", "(7-8)% increased Damage per Power Charge", statOrder = { 5766 }, level = 60, group = "IncreasedDamagePerPowerCharge", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "damage" }, }, - ["JunMasterVeiledPhysicalDamageConvertedToFire_"] = { type = "Prefix", affix = "Chosen", "(30-35)% of Physical Damage Converted to Fire Damage", statOrder = { 1834 }, level = 60, group = "ConvertPhysicalToFire", weightKey = { "gloves", "default", }, weightVal = { 2000, 0 }, modTags = { "physical_damage", "elemental_damage", "unveiled_mod", "damage", "physical", "elemental", "fire" }, }, - ["JunMasterVeiledPhysicalDamageConvertedToCold"] = { type = "Prefix", affix = "Chosen", "(30-35)% of Physical Damage Converted to Cold Damage", statOrder = { 1836 }, level = 60, group = "ConvertPhysicalToCold", weightKey = { "gloves", "default", }, weightVal = { 2000, 0 }, modTags = { "physical_damage", "elemental_damage", "unveiled_mod", "damage", "physical", "elemental", "cold" }, }, - ["JunMasterVeiledPhysicalDamageConvertedToLightning"] = { type = "Prefix", affix = "Chosen", "(30-35)% of Physical Damage Converted to Lightning Damage", statOrder = { 1838 }, level = 60, group = "ConvertPhysicalToLightning", weightKey = { "gloves", "default", }, weightVal = { 2000, 0 }, modTags = { "physical_damage", "elemental_damage", "unveiled_mod", "damage", "physical", "elemental", "lightning" }, }, - ["JunMasterVeiledMaximumZombieAndSkeleton"] = { type = "Prefix", affix = "Chosen", "Minions have (8-10)% increased maximum Life", "+1 to maximum number of Raised Zombies", "+1 to maximum number of Skeletons", statOrder = { 1647, 2037, 2039 }, level = 60, group = "MaximumMinionCountAndMinionLife", weightKey = { "helmet", "body_armour", "default", }, weightVal = { 2000, 0, 0 }, modTags = { "unveiled_mod", "minion" }, }, - ["JunMasterVeiledEffectOfAilments__"] = { type = "Suffix", affix = "of the Order", "(33-40)% increased Effect of Non-Damaging Ailments", statOrder = { 9017 }, level = 60, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "boots", "amulet", "default", }, weightVal = { 1500, 1500, 0 }, modTags = { "unveiled_mod", "ailment" }, }, - ["JunMasterVeiledMaximumCurse"] = { type = "Prefix", affix = "Chosen", "You can apply an additional Curse", statOrder = { 2045 }, level = 60, group = "AdditionalCurseOnEnemies", weightKey = { "body_armour", "default", }, weightVal = { 0, 0 }, modTags = { "unveiled_mod", "caster", "curse" }, }, - ["JunMasterVeiledCurseEffect"] = { type = "Suffix", affix = "of the Order", "(8-10)% increased Effect of your Curses", statOrder = { 2472 }, level = 60, group = "CurseEffectiveness", weightKey = { "shield", "default", }, weightVal = { 3000, 0 }, modTags = { "unveiled_mod", "caster", "curse" }, }, - ["JunMasterVeiledLifeRegeneration"] = { type = "Suffix", affix = "of the Order", "Regenerate (1.03-1.33)% of Life per second", statOrder = { 1823 }, level = 60, group = "LifeRegenerationRatePercentage", weightKey = { "shield", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "unveiled_mod", "life" }, }, - ["JunMasterVeiledAvoidElementalDamageChanceDuringSoulGainPrevention"] = { type = "Suffix", affix = "of the Order", "(10-12)% chance to Avoid Elemental Damage from Hits during Soul Gain Prevention", statOrder = { 4762 }, level = 60, group = "AvoidElementalDamageChanceDuringSoulGainPrevention", weightKey = { "helmet", "body_armour", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "unveiled_mod", "elemental" }, }, - ["JunMasterVeiledPhysicalDamageReductionRatingDuringSoulGainPrevention"] = { type = "Prefix", affix = "Chosen", "+(3201-4000) to Armour during Soul Gain Prevention", statOrder = { 9158 }, level = 60, group = "PhysicalDamageReductionRatingDuringSoulGainPrevention", weightKey = { "shield", "body_armour", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "unveiled_mod", "physical" }, }, - ["JunMasterVeiledGainOnslaughtDuringSoulGainPrevention"] = { type = "Suffix", affix = "of the Order", "You have Onslaught during Soul Gain Prevention", statOrder = { 6445 }, level = 60, group = "GainOnslaughtDuringSoulGainPrevention", weightKey = { "gloves", "boots", "default", }, weightVal = { 1500, 1500, 0 }, modTags = { "unveiled_mod" }, }, - ["JunMasterVeiledDamageWithNonVaalSkillsDuringSoulGainPrevention_"] = { type = "Suffix", affix = "of the Order", "(71-80)% increased Damage with Non-Vaal Skills during Soul Gain Prevention", statOrder = { 5784 }, level = 60, group = "DamageWithNonVaalSkillsDuringSoulGainPrevention", weightKey = { "gloves", "boots", "default", }, weightVal = { 1500, 1500, 0 }, modTags = { "unveiled_mod", "damage" }, }, - ["JunMasterVeiledSkillAreaOfEffectPercentAndAreaOfEffectGemLevel"] = { type = "Prefix", affix = "Chosen", "+2 to Level of Socketed AoE Gems", "(8-10)% increased Area of Effect", statOrder = { 155, 1761 }, level = 60, group = "SkillAreaOfEffectPercentAndAreaOfEffectGemLevel", weightKey = { "helmet", "default", }, weightVal = { 1500, 0 }, modTags = { "unveiled_mod", "gem" }, }, - ["JunMasterVeiledProjectilePierceAndProjectileGemLevel"] = { type = "Prefix", affix = "Chosen", "+2 to Level of Socketed Projectile Gems", "Projectiles Pierce an additional Target", statOrder = { 156, 1671 }, level = 60, group = "ProjectilePierceAndProjectileGemLevel", weightKey = { "helmet", "default", }, weightVal = { 1500, 0 }, modTags = { "unveiled_mod", "gem" }, }, - ["JunMasterVeiledMeleeRangeAndMeleeGemLevel"] = { type = "Prefix", affix = "Chosen", "+2 to Level of Socketed Melee Gems", "+0.2 metres to Melee Strike Range", statOrder = { 158, 2410 }, level = 60, group = "MeleeRangeAndMeleeGemLevel", weightKey = { "helmet", "default", }, weightVal = { 1500, 0 }, modTags = { "unveiled_mod", "attack", "attack", "gem" }, }, - ["JunMasterVeiledCriticalStrikeMultiplierIfRareOrUniqueEnemyNearby1h"] = { type = "Suffix", affix = "of the Order", "+(36-40)% Critical Strike Multiplier while a Rare or Unique Enemy is Nearby", statOrder = { 5664 }, level = 60, group = "CriticalStrikeMultiplierIfRareOrUniqueEnemyNearby", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "damage", "critical" }, }, - ["JunMasterVeiledCriticalStrikeMultiplierIfRareOrUniqueEnemyNearby2h"] = { type = "Suffix", affix = "of the Order", "+(54-60)% Critical Strike Multiplier while a Rare or Unique Enemy is Nearby", statOrder = { 5664 }, level = 60, group = "CriticalStrikeMultiplierIfRareOrUniqueEnemyNearby", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "damage", "critical" }, }, - ["JunMasterVeiledAttackSpeedPercentIfRareOrUniqueEnemyNearby1h"] = { type = "Suffix", affix = "of the Order", "(12-15)% increased Attack Speed while a Rare or Unique Enemy is Nearby", statOrder = { 4721 }, level = 60, group = "AttackSpeedPercentIfRareOrUniqueEnemyNearby", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "attack", "speed" }, }, - ["JunMasterVeiledAttackSpeedPercentIfRareOrUniqueEnemyNearby2h"] = { type = "Suffix", affix = "of the Order", "(27-30)% increased Attack Speed while a Rare or Unique Enemy is Nearby", statOrder = { 4721 }, level = 60, group = "AttackSpeedPercentIfRareOrUniqueEnemyNearby", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "attack", "speed" }, }, - ["JunMasterVeiledEnergyShieldRegenerationRatePerMinuteIfRareOrUniqueEnemyNearby"] = { type = "Suffix", affix = "of the Order", "Regenerate 200 Energy Shield per second while a Rare or Unique Enemy is Nearby", statOrder = { 6133 }, level = 60, group = "EnergyShieldRegenerationRatePerMinuteIfRareOrUniqueEnemyNearby", weightKey = { "body_armour", "belt", "default", }, weightVal = { 1500, 1500, 0 }, modTags = { "unveiled_mod", "defences", "energy_shield" }, }, - ["JunMasterVeiledCriticalChanceAndGainFrenzyChargeOnCriticalStrikePercent"] = { type = "Suffix", affix = "of the Order", "(18-20)% increased Global Critical Strike Chance", "(6-7)% chance to gain a Frenzy Charge on Critical Strike", statOrder = { 1343, 6420 }, level = 60, group = "CriticalChanceAndGainFrenzyChargeOnCriticalStrikePercent", weightKey = { "quiver", "default", }, weightVal = { 1500, 0 }, modTags = { "frenzy_charge", "unveiled_mod", "critical" }, }, - ["JunMasterVeiledCriticalChanceAndElementalDamagePercentIfHaveCritRecently"] = { type = "Suffix", affix = "of the Order", "(20-22)% increased Global Critical Strike Chance", "(27-30)% increased Elemental Damage if you've dealt a Critical Strike Recently", statOrder = { 1343, 5991 }, level = 60, group = "CriticalChanceAndElementalDamagePercentIfHaveCritRecently", weightKey = { "gloves", "quiver", "default", }, weightVal = { 1500, 1500, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "critical" }, }, - ["JunMasterVeiledCriticalChanceAndAddedChaosDamageIfHaveCritRecently_"] = { type = "Suffix", affix = "of the Order", "(20-22)% increased Global Critical Strike Chance", "Adds (22-25) to (28-32) Chaos Damage if you've dealt a Critical Strike Recently", statOrder = { 1343, 8766 }, level = 60, group = "CriticalChanceAndAddedChaosDamageIfHaveCritRecently", weightKey = { "gloves", "quiver", "default", }, weightVal = { 1500, 1500, 0 }, modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos", "critical" }, }, - ["JunMasterVeiledBaseLifeAndMana_"] = { type = "Prefix", affix = "Chosen", "+(55-60) to maximum Life", "+(55-60) to maximum Mana", statOrder = { 1451, 1461 }, level = 60, group = "BaseLifeAndMana", weightKey = { "helmet", "boots", "gloves", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "resource", "unveiled_mod", "life", "mana" }, }, - ["JunMasterVeiledBaseLifeAndManaRegen_"] = { type = "Prefix", affix = "Chosen", "+(55-60) to maximum Life", "Regenerate 5.3 Mana per second", statOrder = { 1451, 1464 }, level = 60, group = "BaseLifeAndManaRegen", weightKey = { "helmet", "boots", "gloves", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "mana" }, }, - ["JunMasterVeiledBaseManaAndLifeRegen__"] = { type = "Prefix", affix = "Chosen", "Regenerate 33.3 Life per second", "+(55-60) to maximum Mana", statOrder = { 1456, 1461 }, level = 60, group = "BaseManaAndLifeRegen", weightKey = { "helmet", "boots", "gloves", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "mana" }, }, - ["JunMasterVeiledSummonTotemCastSpeed_"] = { type = "Suffix", affix = "of the Order", "(36-40)% increased Totem Placement speed", statOrder = { 2454 }, level = 60, group = "SummonTotemCastSpeed", weightKey = { "boots", "amulet", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "unveiled_mod", "speed" }, }, - ["JunMasterVeiledTrapThrowSpeed_"] = { type = "Suffix", affix = "of the Order", "(14-16)% increased Trap Throwing Speed", statOrder = { 1806 }, level = 60, group = "TrapThrowSpeed", weightKey = { "amulet", "belt", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "unveiled_mod", "speed" }, }, - ["JunMasterVeiledMineLayingSpeed"] = { type = "Suffix", affix = "of the Order", "(14-16)% increased Mine Throwing Speed", statOrder = { 1807 }, level = 60, group = "MineLayingSpeed", weightKey = { "amulet", "helmet", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "unveiled_mod", "speed" }, }, - ["JunMasterVeiledBrandAttachmentRange"] = { type = "Suffix", affix = "of the Order", "(25-28)% increased Brand Attachment range", statOrder = { 9531 }, level = 60, group = "BrandAttachmentRange", weightKey = { "amulet", "gloves", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "unveiled_mod", "caster" }, }, - ["JunMasterVeiledAddedFireAndColdDamage"] = { type = "Prefix", affix = "Chosen", "Adds (14-16) to (20-22) Fire Damage", "Adds (14-16) to (20-22) Cold Damage", statOrder = { 1243, 1252 }, level = 60, group = "AddedFireAndColdDamage", weightKey = { "shield", "ring", "quiver", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "cold" }, }, - ["JunMasterVeiledAddedFireAndColdDamageQuiver_"] = { type = "Prefix", affix = "Chosen", "Adds (9-10) to (13-14) Fire Damage", "Adds (9-10) to (13-14) Cold Damage", statOrder = { 1243, 1252 }, level = 60, group = "AddedFireAndColdDamage", weightKey = { "quiver", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "cold" }, }, - ["JunMasterVeiledAddedFireAndLightningDamage"] = { type = "Prefix", affix = "Chosen", "Adds (14-16) to (20-22) Fire Damage", "Adds (14-16) to (20-22) Lightning Damage", statOrder = { 1243, 1263 }, level = 60, group = "AddedFireAndLightningDamage", weightKey = { "shield", "ring", "quiver", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "lightning" }, }, - ["JunMasterVeiledAddedFireAndLightningDamageQuiver_"] = { type = "Prefix", affix = "Chosen", "Adds (9-10) to (13-14) Fire Damage", "Adds (9-10) to (13-14) Lightning Damage", statOrder = { 1243, 1263 }, level = 60, group = "AddedFireAndLightningDamage", weightKey = { "quiver", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "lightning" }, }, - ["JunMasterVeiledAddedColdAndLightningDamage"] = { type = "Prefix", affix = "Chosen", "Adds (14-16) to (20-22) Cold Damage", "Adds (14-16) to (20-22) Lightning Damage", statOrder = { 1252, 1263 }, level = 60, group = "AddedColdAndLightningDamage", weightKey = { "shield", "ring", "quiver", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "cold", "lightning" }, }, - ["JunMasterVeiledAddedColdAndLightningDamageQuiver"] = { type = "Prefix", affix = "Chosen", "Adds (9-10) to (13-14) Cold Damage", "Adds (9-10) to (13-14) Lightning Damage", statOrder = { 1252, 1263 }, level = 60, group = "AddedColdAndLightningDamage", weightKey = { "quiver", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "cold", "lightning" }, }, - ["JunMasterVeiledLuckyCriticalsDuringFocus"] = { type = "Suffix", affix = "of the Order", "Your Critical Strike Chance is Lucky while Focused", "Focus has (5-8)% increased Cooldown Recovery Rate", statOrder = { 6203, 6322 }, level = 60, group = "LuckyCriticalsDuringFocusCDR", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "critical" }, }, - ["JunMasterVeiledDodgeChanceDuringFocus_"] = { type = "Prefix", affix = "Chosen", "(30-32)% increased Evasion Rating while Focused", statOrder = { 6155 }, level = 60, group = "DodgeChanceDuringFocus", weightKey = { "helmet", "boots", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "unveiled_mod", "defences", "evasion" }, }, - ["JunMasterVeiledPhysicalDamageReductionDuringFocus_"] = { type = "Prefix", affix = "Chosen", "(13-15)% additional Physical Damage Reduction while Focused", statOrder = { 4426 }, level = 60, group = "PhysicalDamageReductionDuringFocus", weightKey = { "helmet", "gloves", "default", }, weightVal = { 1500, 1500, 0 }, modTags = { "unveiled_mod", "physical" }, }, - ["JunMasterVeiledShockNearbyEnemiesOnFocus"] = { type = "Suffix", affix = "of the Order", "Focus has (5-8)% increased Cooldown Recovery Rate", "Shock nearby Enemies for 4 Seconds when you Focus", statOrder = { 6322, 9501 }, level = 60, group = "ShockNearbyEnemiesOnFocusCDR", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "elemental", "lightning", "ailment" }, }, - ["JunMasterVeiledLifeRegenerationPerEvasionDuringFocus"] = { type = "Suffix", affix = "of the Order", "1.5% of Evasion Rating is Regenerated as Life per second while Focused", statOrder = { 6160 }, level = 60, group = "LifeRegenerationPerEvasionDuringFocus", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "unveiled_mod", "life" }, }, - ["JunMasterVeiledRestoreManaAndEnergyShieldOnFocus"] = { type = "Suffix", affix = "of the Order", "Recover (37-40)% of Mana and Energy Shield when you Focus", statOrder = { 9416 }, level = 60, group = "RestoreManaAndEnergyShieldOnFocus", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "unveiled_mod", "mana", "defences", "energy_shield" }, }, - ["JunMasterVeiledChanceToDealDoubleDamageWhileFocused2h_"] = { type = "Suffix", affix = "of the Order", "(36-40)% chance to deal Double Damage while Focused", statOrder = { 5376 }, level = 60, group = "ChanceToDealDoubleDamageWhileFocused", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "damage" }, }, - ["JunMasterVeiledChanceToDealDoubleDamageWhileFocused1h"] = { type = "Suffix", affix = "of the Order", "(18-20)% chance to deal Double Damage while Focused", statOrder = { 5376 }, level = 60, group = "ChanceToDealDoubleDamageWhileFocused", weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "unveiled_mod", "damage" }, }, - ["JunMasterVeiledAttackAndCastSpeedWhileFocused_"] = { type = "Suffix", affix = "of the Order", "(45-50)% increased Attack and Cast Speed while Focused", statOrder = { 4646 }, level = 60, group = "AttackAndCastSpeedWhileFocused", weightKey = { "gloves", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod", "attack", "caster", "speed" }, }, - ["JunMasterVeiledStatusAilmentsYouInflictDurationWhileFocused_"] = { type = "Suffix", affix = "of the Order", "(36-40)% increased Duration of Ailments you inflict while Focused", statOrder = { 9706 }, level = 60, group = "StatusAilmentsYouInflictDurationWhileFocused", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "ailment" }, }, - ["JunMasterVeiledImmuneToStatusAilmentsWhileFocused"] = { type = "Suffix", affix = "of the Order", "Focus has (5-8)% increased Cooldown Recovery Rate", "You are Immune to Ailments while Focused", statOrder = { 6322, 6866 }, level = 60, group = "ImmuneToStatusAilmentsWhileFocusedCDR", weightKey = { "boots", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod", "ailment" }, }, - ["JunMasterVeiledFocusCooldownRecovery_"] = { type = "Suffix", affix = "of the Order", "Focus has (31-35)% increased Cooldown Recovery Rate", statOrder = { 6322 }, level = 60, group = "FocusCooldownRecovery", weightKey = { "boots", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod" }, }, - ["JunMasterVeiledLifeLeechFromAnyDamageAndVaalPactWhileFocused"] = { type = "Suffix", affix = "of the Order", "You have Vaal Pact while Focused", "15% of Damage Leeched as Life while Focused", statOrder = { 6491, 6975 }, level = 60, group = "LifeLeechFromAnyDamagePermyriadWhileFocusedAndVaalPact", weightKey = { "amulet", "default", }, weightVal = { 3000, 0 }, modTags = { "resource", "unveiled_mod", "life" }, }, - ["JunMasterVeiledFortifyEffectWhileFocused_"] = { type = "Suffix", affix = "of the Order", "+10 to maximum Fortification while Focused", statOrder = { 8673 }, level = 60, group = "FortifyEffectWhileFocused", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod" }, }, - ["JunMasterVeiledTriggerSocketedSpellWhenYouFocus"] = { type = "Suffix", affix = "of the Order", "Trigger Socketed Spells when you Focus, with a 0.25 second Cooldown", "Focus has (5-8)% increased Cooldown Recovery Rate", statOrder = { 727, 6322 }, level = 60, group = "TriggerSocketedSpellWhenYouFocusCDR", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { "skill", "unveiled_mod", "caster", "gem" }, }, - ["JunMasterVeiledDamageRemovedFromManaBeforeLifeWhileFocused"] = { type = "Suffix", affix = "of the Order", "(18-22)% of Damage is taken from Mana before Life while Focused", statOrder = { 5789 }, level = 60, group = "DamageRemovedFromManaBeforeLifeWhileFocused", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "mana" }, }, - ["JunMasterVeiledMinionsRecoverMaximumLifeWhenYouFocus_"] = { type = "Suffix", affix = "of the Order", "Focus has (5-8)% increased Cooldown Recovery Rate", "Minions Recover 100% of their Life when you Focus", statOrder = { 6322, 8898 }, level = 60, group = "MinionsRecoverMaximumLifeWhenYouFocusCDR", weightKey = { "gloves", "default", }, weightVal = { 2000, 0 }, modTags = { "resource", "unveiled_mod", "life", "minion" }, }, - ["JunMasterVeiledGainVaalPactWhileFocused"] = { type = "Suffix", affix = "of the Order", "You have Vaal Pact while Focused", statOrder = { 6491 }, level = 60, group = "GainVaalPactWhileFocused", weightKey = { "ring", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "unveiled_mod", "life" }, }, - ["JunMasterVeiledSkillsCostNoManaWhileFocused"] = { type = "Suffix", affix = "of the Order", "Focus has (5-8)% increased Cooldown Recovery Rate", "Non-Aura Skills Cost no Mana or Life while Focused", statOrder = { 6322, 9552 }, level = 60, group = "SkillsCostNoManaWhileFocusedCDR", weightKey = { "amulet", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "unveiled_mod", "mana" }, }, - ["JunMasterVeiledAllDamage"] = { type = "Prefix", affix = "Leo's", "(20-23)% increased Damage", statOrder = { 1076 }, level = 60, group = "AllDamage", weightKey = { "leo_veiled_prefix", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod", "damage" }, }, - ["JunMasterVeiledLocalIncreaseSocketedSupportGemLevel"] = { type = "Prefix", affix = "Catarina's", "+2 to Level of Socketed Support Gems", "+(5-8)% to Quality of Socketed Support Gems", statOrder = { 168, 183 }, level = 60, group = "LocalIncreaseSocketedSupportGemLevelAndQuality", weightKey = { "helmet", "quiver", "flask", "shield", "body_armour", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod", "gem" }, }, - ["JunMasterVeiledChaosExplosionOnKill"] = { type = "Prefix", affix = "Catarina's", "Enemies you Kill have a (15-25)% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage", statOrder = { 3171 }, level = 60, group = "ObliterationExplodeOnKillChaos", weightKey = { "helmet", "quiver", "flask", "shield", "body_armour", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos" }, }, - ["JunMasterVeiledSupportedByCastOnCritAndSpellDamage"] = { type = "Prefix", affix = "Catarina's", "Socketed Gems are supported by Level 1 Cast On Critical Strike", "(80-89)% increased Spell Damage", statOrder = { 392, 1108 }, level = 60, group = "CastOnCritAndSpellDamage", weightKey = { "helmet", "quiver", "flask", "shield", "body_armour", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "support_gem", "caster_damage", "unveiled_mod", "damage", "caster", "critical" }, }, - ["JunMasterVeiledSupportedByCastWhileChannelingAndSpellDamage"] = { type = "Prefix", affix = "Catarina's", "Socketed Gems are Supported by Level 1 Cast While Channelling", "(80-89)% increased Spell Damage", statOrder = { 216, 1108 }, level = 60, group = "CastWhileChannelingAndSpellDamage", weightKey = { "helmet", "quiver", "flask", "shield", "body_armour", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "support_gem", "caster_damage", "unveiled_mod", "damage", "caster" }, }, - ["JunMasterVeiledSupportedByArcaneSurgeAndSpellDamage"] = { type = "Prefix", affix = "Catarina's", "Socketed Gems are Supported by Level 1 Arcane Surge", "(80-89)% increased Spell Damage", statOrder = { 203, 1108 }, level = 60, group = "ArcaneSurgeAndSpellDamage", weightKey = { "helmet", "quiver", "flask", "shield", "body_armour", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "support_gem", "caster_damage", "unveiled_mod", "damage", "caster" }, }, - ["JunMasterVeiledReduceGlobalFlatManaCost"] = { type = "Prefix", affix = "Elreon's", "-(10-9) to Total Mana Cost of Skills", statOrder = { 1772 }, level = 60, group = "IncreaseManaCostFlat", weightKey = { "elreon_veiled_prefix", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "unveiled_mod", "mana" }, }, - ["JunMasterVeiledReduceGlobalFlatManaCostChannelling_"] = { type = "Prefix", affix = "Elreon's", "Channelling Skills have -4 to Total Mana Cost", statOrder = { 9547 }, level = 60, group = "ManaCostTotalChannelled", weightKey = { "elreon_veiled_prefix", "default", }, weightVal = { 2000, 0 }, modTags = { "resource", "unveiled_mod", "mana" }, }, - ["JunMasterVeiledReduceGlobalFlatManaCostNonChannelling"] = { type = "Prefix", affix = "Elreon's", "Non-Channelling Skills have -(10-9) to Total Mana Cost", statOrder = { 9549 }, level = 60, group = "ManaCostTotalNonChannelled", weightKey = { "elreon_veiled_prefix", "default", }, weightVal = { 2000, 0 }, modTags = { "resource", "unveiled_mod", "mana" }, }, - ["JunMasterVeiledDamageWhileLeeching"] = { type = "Prefix", affix = "Vorici's", "(54-60)% increased Damage while Leeching", statOrder = { 2932 }, level = 60, group = "DamageWhileLeeching", weightKey = { "vorici_veiled_prefix", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod", "damage" }, }, - ["JunMasterVeiledSocketedGemQuality"] = { type = "Prefix", affix = "Haku's", "+(9-10)% to Quality of Socketed Gems", statOrder = { 182 }, level = 60, group = "SocketedGemQuality", weightKey = { "haku_veiled_prefix", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod", "gem" }, }, - ["JunMasterVeiledBleedOnHitGained1h"] = { type = "Prefix", affix = "Tora's", "Adds (12-14) to (18-20) Physical Damage", "40% chance to cause Bleeding on Hit", statOrder = { 1160, 2359 }, level = 60, group = "LocalAddedPhysicalDamageAndCausesBleeding", weightKey = { "tora_veiled_prefix", "default", }, weightVal = { 2000, 0 }, modTags = { "physical_damage", "bleed", "unveiled_mod", "damage", "physical", "attack", "ailment" }, }, - ["JunMasterVeiledBleedOnHitGained2h"] = { type = "Prefix", affix = "Tora's", "Adds (17-20) to (26-28) Physical Damage", "40% chance to cause Bleeding on Hit", statOrder = { 1160, 2359 }, level = 60, group = "LocalAddedPhysicalDamageAndCausesBleeding", weightKey = { "tora_veiled_prefix", "default", }, weightVal = { 2000, 0 }, modTags = { "physical_damage", "bleed", "unveiled_mod", "damage", "physical", "attack", "ailment" }, }, - ["JunMasterVeiledAlwaysHits"] = { type = "Prefix", affix = "Vagan's", "Hits can't be Evaded", statOrder = { 1920 }, level = 60, group = "AlwaysHits", weightKey = { "vagan_veiled_prefix", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod", "attack" }, }, - ["JunMasterVeiledDamageDuringFlaskEffect"] = { type = "Prefix", affix = "Brinerot", "(36-40)% increased Damage during any Flask Effect", statOrder = { 3944 }, level = 60, group = "DamageDuringFlaskEffect", weightKey = { "brinerot_veiled_prefix", "default", }, weightVal = { 2000, 0 }, modTags = { "flask", "unveiled_mod", "damage" }, }, - ["JunMasterVeiledItemRarityFromRareAndUniqueEnemies_"] = { type = "Suffix", affix = "of Janus", "(55-60)% increased Rarity of Items Dropped by Slain Rare or Unique Enemies", statOrder = { 9325 }, level = 60, group = "RareOrUniqueMonsterDroppedItemRarity", weightKey = { "janus_veiled_suffix", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod", "drop" }, }, - ["JunMasterVeiledFireAddedAsChaos1h_"] = { type = "Prefix", affix = "It's", "Gain (9-10)% of Fire Damage as Extra Chaos Damage", statOrder = { 1820 }, level = 60, group = "FireAddedAsChaos", weightKey = { "two_hand_weapon", "it_veiled_prefix", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "fire", "chaos" }, }, - ["JunMasterVeiledColdAddedAsChaos1h"] = { type = "Prefix", affix = "It's", "Gain (9-10)% of Cold Damage as Extra Chaos Damage", statOrder = { 1819 }, level = 60, group = "ColdAddedAsChaos", weightKey = { "two_hand_weapon", "it_veiled_prefix", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "cold", "chaos" }, }, - ["JunMasterVeiledLightningAddedAsChaos1h"] = { type = "Prefix", affix = "It's", "Gain (9-10)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1817 }, level = 60, group = "LightningAddedAsChaos", weightKey = { "two_hand_weapon", "it_veiled_prefix", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "lightning", "chaos" }, }, - ["JunMasterVeiledPhysicalAddedAsChaos1h"] = { type = "Prefix", affix = "It's", "Gain (9-10)% of Physical Damage as Extra Chaos Damage", statOrder = { 1814 }, level = 60, group = "PhysicalAddedAsChaos", weightKey = { "two_hand_weapon", "it_veiled_prefix", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "physical_damage", "chaos_damage", "unveiled_mod", "damage", "physical", "chaos" }, }, - ["JunMasterVeiledFireAddedAsChaos2h_"] = { type = "Prefix", affix = "It's", "Gain (18-20)% of Fire Damage as Extra Chaos Damage", statOrder = { 1820 }, level = 60, group = "FireAddedAsChaos", weightKey = { "one_hand_weapon", "shield", "it_veiled_prefix", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "fire", "chaos" }, }, - ["JunMasterVeiledColdAddedAsChaos2h_"] = { type = "Prefix", affix = "It's", "Gain (18-20)% of Cold Damage as Extra Chaos Damage", statOrder = { 1819 }, level = 60, group = "ColdAddedAsChaos", weightKey = { "one_hand_weapon", "shield", "it_veiled_prefix", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "cold", "chaos" }, }, - ["JunMasterVeiledLightningAddedAsChaos2h__"] = { type = "Prefix", affix = "It's", "Gain (18-20)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1817 }, level = 60, group = "LightningAddedAsChaos", weightKey = { "one_hand_weapon", "shield", "it_veiled_prefix", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "lightning", "chaos" }, }, - ["JunMasterVeiledPhysicalAddedAsChaos2h_"] = { type = "Prefix", affix = "It's", "Gain (18-20)% of Physical Damage as Extra Chaos Damage", statOrder = { 1814 }, level = 60, group = "PhysicalAddedAsChaos", weightKey = { "one_hand_weapon", "shield", "it_veiled_prefix", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical_damage", "chaos_damage", "unveiled_mod", "damage", "physical", "chaos" }, }, - ["JunMasterVeiledPercentageAllAttributes"] = { type = "Suffix", affix = "of Hillock", "(7-8)% increased Attributes", statOrder = { 1068 }, level = 60, group = "PercentageAllAttributes", weightKey = { "hillock_veiled_suffix", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod", "attribute" }, }, - ["JunMasterVeiledLifeAddedAsEnergyShield"] = { type = "Prefix", affix = "Gravicius'", "Gain (12-14)% of Maximum Life as Extra Maximum Energy Shield", statOrder = { 8708 }, level = 60, group = "LifeAddedAsEnergyShield", weightKey = { "gravicius_veiled_prefix", "default", }, weightVal = { 0, 0 }, modTags = { "unveiled_mod", "defences", "energy_shield" }, }, - ["JunMasterVeiledPhysicalTakenAsFireAndLightning"] = { type = "Prefix", affix = "Gravicius'", "(8-9)% of Physical Damage from Hits taken as Fire Damage", "(8-9)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2323, 2325 }, level = 60, group = "PhysicalDamageTakenAsFireAndLightningPercent", weightKey = { "gravicius_veiled_prefix", "default", }, weightVal = { 0, 0 }, modTags = { "unveiled_mod", "physical", "elemental", "fire", "lightning" }, }, - ["JunMasterVeiledBannerEffect"] = { type = "Prefix", affix = "Gravicius'", "Banner Skills have (26-35)% increased Aura Effect", statOrder = { 3228 }, level = 60, group = "BannerEffect", weightKey = { "gravicius_veiled_prefix", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod", "aura" }, }, - ["JunMasterVeiledWolfOnKill___"] = { type = "Suffix", affix = "Jorgin's", "Trigger Level 10 Summon Spectral Wolf on Kill", statOrder = { 687 }, level = 60, group = "SummonWolfOnKillOld", weightKey = { "jorgin_veiled_suffix", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod", "minion" }, }, - ["JunMasterVeiledPhysicalDamageTakenAsFirePercent__"] = { type = "Prefix", affix = "Korell's", "(9-10)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2323 }, level = 60, group = "PhysicalDamageTakenAsFirePercent", weightKey = { "keema_veiled_prefix", "default", }, weightVal = { 0, 0 }, modTags = { "unveiled_mod", "physical", "elemental", "fire" }, }, - ["JunMasterVeiledWarcryBuffEffect"] = { type = "Prefix", affix = "Korell's", "(20-25)% increased Warcry Buff Effect", statOrder = { 10035 }, level = 60, group = "WarcryBuffEffect", weightKey = { "keema_veiled_prefix", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod" }, }, - ["JunMasterVeiledAvoidFreeze_"] = { type = "Prefix", affix = "Rin's", "(20-30)% chance to Avoid being Chilled", "100% chance to Avoid being Frozen", statOrder = { 1725, 1726 }, level = 60, group = "AvoidFreezeAndChill", weightKey = { "rin_veiled_prefix", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod", "elemental", "cold", "ailment" }, }, - ["JunMasterVeiledCriticalMultiplierOnShatter_"] = { type = "Suffix", affix = "of Cameria", "(20-22)% increased Global Critical Strike Chance", "+(27-30)% to Critical Strike Multiplier if you've Shattered an Enemy Recently", statOrder = { 1343, 5661 }, level = 60, group = "CritChanceAndCriticalStrikeMultiplierIfEnemyShatteredRecently", weightKey = { "cameria_veiled_suffix", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod", "damage", "critical" }, }, - ["JunMasterVeiledIncreasedChaosAndPhysicalDamage"] = { type = "Suffix", affix = "of Aisling", "(20-22)% increased Global Physical Damage", "(18-20)% increased Chaos Damage", statOrder = { 1116, 1269 }, level = 60, group = "IncreasedChaosAndPhysicalDamage", weightKey = { "aislin_veiled_suffix", "default", }, weightVal = { 2000, 0 }, modTags = { "physical_damage", "chaos_damage", "unveiled_mod", "damage", "physical", "chaos" }, }, - ["JunMasterVeiledIncreasedFireAndLightningDamage"] = { type = "Suffix", affix = "of Riker", "(18-20)% increased Fire Damage", "(20-22)% increased Lightning Damage", statOrder = { 1241, 1261 }, level = 60, group = "IncreasedFireAndLightningDamage", weightKey = { "riker_veiled_suffix", "default", }, weightVal = { 2000, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "lightning" }, }, - ["JunMasterVeiledLocalFlaskLifeRegenerationPerMinuteDuringFlaskEffect"] = { type = "Prefix", affix = "of the Order", "Regenerate 3% of Life per second during Effect", statOrder = { 882 }, level = 60, group = "LocalFlaskLifeRegenerationPerMinuteDuringFlaskEffect", weightKey = { "flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "resource", "unveiled_mod", "life" }, }, - ["JunMasterVeiledLocalFlaskAvoidStunChanceAndMovementSpeedDuringFlaskEffect"] = { type = "Prefix", affix = "of the Order", "50% Chance to Avoid being Stunned during Effect", statOrder = { 862 }, level = 60, group = "LocalFlaskAvoidStunChanceAndMovementSpeedDuringFlaskEffect", weightKey = { "flask", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "unveiled_mod", "speed" }, }, - ["JunMasterVeiledLocalFlaskAvoidStunChanceDuringFlaskEffect"] = { type = "Prefix", affix = "of the Order", "50% Chance to Avoid being Stunned during Effect", statOrder = { 862 }, level = 60, group = "LocalFlaskAvoidStunChanceDuringFlaskEffect", weightKey = { "flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "unveiled_mod" }, }, - ["JunMasterVeiledLocalFlaskSkillManaCostDuringFlaskEffect"] = { type = "Prefix", affix = "of the Order", "(20-25)% reduced Mana Cost of Skills during Effect", statOrder = { 889 }, level = 60, group = "LocalFlaskSkillManaCostDuringFlaskEffect", weightKey = { "flask", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "resource", "unveiled_mod", "mana" }, }, - ["JunMasterVeiledLocalFlaskItemFoundRarityDuringFlaskEffect"] = { type = "Prefix", affix = "of the Order", "(20-30)% increased Rarity of Items found during Effect", statOrder = { 878 }, level = 60, group = "LocalFlaskItemFoundRarityDuringFlaskEffect", weightKey = { "flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "unveiled_mod", "drop" }, }, - ["JunMasterVeiledLocalFlaskCriticalStrikeChanceDuringFlaskEffect_"] = { type = "Prefix", affix = "of the Order", "(40-60)% increased Critical Strike Chance during Effect", statOrder = { 866 }, level = 60, group = "LocalFlaskCriticalStrikeChanceDuringFlaskEffect", weightKey = { "flask", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "unveiled_mod", "critical" }, }, - ["JunMasterVeiledLocalFlaskLifeLeechOnDamageTakenPermyriadDuringFlaskEffect"] = { type = "Prefix", affix = "of the Order", "15% of Damage Taken from Hits is Leeched as Life during Effect", statOrder = { 881 }, level = 60, group = "LocalFlaskLifeLeechOnDamageTakenPermyriadDuringFlaskEffect", weightKey = { "flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "resource", "unveiled_mod", "life" }, }, - ["JunMasterVeiledLocalAttackSpeedAndLocalItemQuality"] = { type = "Suffix", affix = "of the Order", "(18-22)% increased Attack Speed", "+(13-18)% to Quality", statOrder = { 1297, 7547 }, level = 60, group = "LocalAttackSpeedAndLocalItemQuality", weightKey = { "default", }, weightVal = { 0 }, modTags = { "unveiled_mod", "attack", "speed" }, }, - ["JunMasterVeiledLocalAttackSpeedAndLocalItemQualityRangedWeapon"] = { type = "Suffix", affix = "of the Order", "(12-15)% increased Attack Speed", "+(13-18)% to Quality", statOrder = { 1297, 7547 }, level = 60, group = "LocalAttackSpeedAndLocalItemQuality", weightKey = { "default", }, weightVal = { 0 }, modTags = { "unveiled_mod", "attack", "speed" }, }, - ["JunMasterVeiledLocalCriticalStrikeChanceAndLocalItemQuality"] = { type = "Suffix", affix = "of the Order", "(28-32)% increased Critical Strike Chance", "+(13-18)% to Quality", statOrder = { 1348, 7547 }, level = 60, group = "LocalCriticalStrikeChanceAndLocalItemQuality", weightKey = { "default", }, weightVal = { 0 }, modTags = { "unveiled_mod", "attack", "critical" }, }, - ["JunMasterVeiledLocalAccuracyRatingAndLocalItemQuality"] = { type = "Suffix", affix = "of the Order", "+(311-350) to Accuracy Rating", "+(16-18)% to Quality", statOrder = { 1901, 7547 }, level = 60, group = "LocalAccuracyRatingAndLocalItemQuality", weightKey = { "default", }, weightVal = { 0 }, modTags = { "unveiled_mod", "attack" }, }, - ["JunMasterVeiledLocalAttackSpeedDexterityIntelligence"] = { type = "Suffix", affix = "of the Order", "+(25-28) to Dexterity and Intelligence", "(18-22)% increased Attack Speed", statOrder = { 1067, 1297 }, level = 60, group = "LocalAttackSpeedDexterityIntelligence", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "unveiled_mod", "attack", "speed", "attribute" }, }, - ["JunMasterVeiledLocalAttackSpeedDexterityIntelligenceRanged"] = { type = "Suffix", affix = "of the Order", "+(25-28) to Dexterity and Intelligence", "(12-15)% increased Attack Speed", statOrder = { 1067, 1297 }, level = 60, group = "LocalAttackSpeedDexterityIntelligence", weightKey = { "wand", "bow", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "unveiled_mod", "attack", "speed", "attribute" }, }, - ["JunMasterVeiledLocalCriticalStrikeChanceStrengthIntelligence__"] = { type = "Suffix", affix = "of the Order", "+(25-28) to Strength and Intelligence", "(28-32)% increased Critical Strike Chance", statOrder = { 1066, 1348 }, level = 60, group = "LocalCriticalStrikeChanceStrengthIntelligence", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "attack", "critical", "attribute" }, }, - ["JunMasterVeiledLocalAccuracyRatingStrengthDexterity_"] = { type = "Suffix", affix = "of the Order", "+(25-28) to Strength and Dexterity", "+(311-350) to Accuracy Rating", statOrder = { 1065, 1901 }, level = 60, group = "LocalAccuracyRatingStrengthDexterity", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "attack", "attribute" }, }, - ["JunMasterVeiledLocalAttackSpeedAndLocalDisplayTriggerLevel1BloodRageOnKillChance_"] = { type = "Suffix", affix = "of the Order", "15% chance to Trigger Level 1 Blood Rage when you Kill an Enemy", "(18-22)% increased Attack Speed", statOrder = { 688, 1297 }, level = 60, group = "LocalAttackSpeedAndLocalDisplayTriggerLevel1BloodRageOnKillChance", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "unveiled_mod", "attack", "speed" }, }, - ["JunMasterVeiledLocalAttackSpeedAndLocalDisplayTriggerLevel1BloodRageOnKillChanceRangedWeapon"] = { type = "Suffix", affix = "of the Order", "15% chance to Trigger Level 1 Blood Rage when you Kill an Enemy", "(12-15)% increased Attack Speed", statOrder = { 688, 1297 }, level = 60, group = "LocalAttackSpeedAndLocalDisplayTriggerLevel1BloodRageOnKillChance", weightKey = { "bow", "wand", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "unveiled_mod", "attack", "speed" }, }, - ["JunMasterVeiledCastSpeedAndGainArcaneSurgeOnKillChance1h__"] = { type = "Suffix", affix = "of the Order", "(18-22)% increased Cast Speed", "15% chance to gain Arcane Surge when you Kill an Enemy", statOrder = { 1330, 6395 }, level = 60, group = "CastSpeedAndGainArcaneSurgeOnKillChance", weightKey = { "wand", "dagger", "sceptre", "one_hand_weapon", "default", }, weightVal = { 1000, 1000, 1000, 100, 0 }, modTags = { "unveiled_mod", "caster", "speed" }, }, - ["JunMasterVeiledCastSpeedAndGainArcaneSurgeOnKillChance2h_"] = { type = "Suffix", affix = "of the Order", "(26-31)% increased Cast Speed", "15% chance to gain Arcane Surge when you Kill an Enemy", statOrder = { 1330, 6395 }, level = 60, group = "CastSpeedAndGainArcaneSurgeOnKillChance", weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 1000, 100, 0 }, modTags = { "unveiled_mod", "caster", "speed" }, }, - ["JunMasterVeiledTriggerSocketedSpellOnSkillUse_"] = { type = "Suffix", affix = "of the Order", "Trigger a Socketed Spell on Using a Skill, with a 4 second Cooldown", "Spells Triggered this way have 150% more Cost", statOrder = { 725, 725.1 }, level = 60, group = "TriggerSocketedSpellOnSkillUseFourSeconds", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "skill", "unveiled_mod", "caster", "gem" }, }, - ["JunMasterVeiledFireAndChaosDamageResistance"] = { type = "Suffix", affix = "of the Order", "+(16-20)% to Fire and Chaos Resistances", statOrder = { 6219 }, level = 60, group = "FireAndChaosDamageResistance", weightKey = { "body_armour", "boots", "gloves", "helmet", "shield", "amulet", "ring", "belt", "quiver", "default", }, weightVal = { 600, 600, 600, 600, 600, 600, 600, 600, 600, 0 }, modTags = { "unveiled_mod", "elemental", "fire", "chaos", "resistance" }, }, - ["JunMasterVeiledLightningAndChaosDamageResistance"] = { type = "Suffix", affix = "of the Order", "+(16-20)% to Lightning and Chaos Resistances", statOrder = { 7047 }, level = 60, group = "LightningAndChaosDamageResistance", weightKey = { "body_armour", "boots", "gloves", "helmet", "shield", "amulet", "ring", "belt", "quiver", "default", }, weightVal = { 600, 600, 600, 600, 600, 600, 600, 600, 600, 0 }, modTags = { "unveiled_mod", "elemental", "lightning", "chaos", "resistance" }, }, - ["JunMasterVeiledColdAndChaosDamageResistance"] = { type = "Suffix", affix = "of the Order", "+(16-20)% to Cold and Chaos Resistances", statOrder = { 5507 }, level = 60, group = "ColdAndChaosDamageResistance", weightKey = { "body_armour", "boots", "gloves", "helmet", "shield", "amulet", "ring", "belt", "quiver", "default", }, weightVal = { 600, 600, 600, 600, 600, 600, 600, 600, 600, 0 }, modTags = { "unveiled_mod", "elemental", "cold", "chaos", "resistance" }, }, - ["JunMasterVeiledStrengthAndLocalItemQuality"] = { type = "Suffix", affix = "of the Order", "+(31-35) to Strength", "+(15-18)% to Quality", statOrder = { 1062, 7547 }, level = 60, group = "StrengthAndLocalItemQuality", weightKey = { "body_armour", "shield", "default", }, weightVal = { 0, 0, 0 }, modTags = { "unveiled_mod", "attribute" }, }, - ["JunMasterVeiledDexterityAndLocalItemQuality"] = { type = "Suffix", affix = "of the Order", "+(31-35) to Dexterity", "+(15-18)% to Quality", statOrder = { 1063, 7547 }, level = 60, group = "DexterityAndLocalItemQuality", weightKey = { "body_armour", "shield", "default", }, weightVal = { 0, 0, 0 }, modTags = { "unveiled_mod", "attribute" }, }, - ["JunMasterVeiledIntelligenceAndLocalItemQuality"] = { type = "Suffix", affix = "of the Order", "+(31-35) to Intelligence", "+(15-18)% to Quality", statOrder = { 1064, 7547 }, level = 60, group = "IntelligenceAndLocalItemQuality", weightKey = { "body_armour", "shield", "default", }, weightVal = { 0, 0, 0 }, modTags = { "unveiled_mod", "attribute" }, }, - ["JunMasterVeiledStrengthAndAvoidIgnite"] = { type = "Suffix", affix = "of the Order", "+(31-35) to Strength", "(21-25)% chance to Avoid being Ignited", statOrder = { 1062, 1727 }, level = 60, group = "StrengthAndAvoidIgnite", weightKey = { "body_armour", "shield", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "unveiled_mod", "attribute" }, }, - ["JunMasterVeiledDexterityAndAvoidFreeze"] = { type = "Suffix", affix = "of the Order", "+(31-35) to Dexterity", "(21-25)% chance to Avoid being Frozen", statOrder = { 1063, 1726 }, level = 60, group = "DexterityAndAvoidFreeze", weightKey = { "body_armour", "shield", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "unveiled_mod", "attribute" }, }, - ["JunMasterVeiledIntelligenceAndAvoidShock"] = { type = "Suffix", affix = "of the Order", "+(31-35) to Intelligence", "(21-25)% chance to Avoid being Shocked", statOrder = { 1064, 1729 }, level = 60, group = "IntelligenceAndAvoidShock", weightKey = { "body_armour", "shield", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "unveiled_mod", "attribute" }, }, - ["JunMasterVeiledLifeRegenerationRatePerMinuteWhileUsingFlask"] = { type = "Suffix", affix = "of the Order", "Regenerate 3% of Life per second during any Flask Effect", statOrder = { 7038 }, level = 60, group = "LifeRegenerationRatePerMinuteWhileUsingFlask", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "resource", "unveiled_mod", "life" }, }, - ["JunMasterVeiledPercentageLifeAndMana"] = { type = "Prefix", affix = "Chosen", "(9-10)% increased maximum Life", "(9-10)% increased maximum Mana", statOrder = { 1453, 1462 }, level = 60, group = "PercentageLifeAndMana", weightKey = { "body_armour", "default", }, weightVal = { 2000, 0 }, modTags = { "resource", "unveiled_mod", "life", "mana" }, }, - ["JunMasterVeiledBlockPercent"] = { type = "Prefix", affix = "Chosen", "(8-9)% Chance to Block Attack Damage", statOrder = { 1027 }, level = 60, group = "BlockPercent", weightKey = { "body_armour", "default", }, weightVal = { 2000, 0 }, modTags = { "block", "unveiled_mod" }, }, - ["JunMasterVeiledSpellBlockPercent____"] = { type = "Prefix", affix = "Chosen", "(9-10)% Chance to Block Spell Damage", statOrder = { 1046 }, level = 60, group = "SpellBlockPercentage", weightKey = { "body_armour", "default", }, weightVal = { 2000, 0 }, modTags = { "block", "unveiled_mod" }, }, - ["JunMasterVeiledSpellDodgePercentage__"] = { type = "Prefix", affix = "Chosen", "+(18-21)% chance to Suppress Spell Damage", statOrder = { 1031 }, level = 60, group = "ChanceToSuppressSpellsOld", weightKey = { "body_armour", "default", }, weightVal = { 0, 0 }, modTags = { "unveiled_mod" }, }, - ["JunMasterVeiledAvoidStunAndElementalStatusAilments"] = { type = "Prefix", affix = "Chosen", "(30-35)% chance to Avoid Elemental Ailments", "(30-35)% chance to Avoid being Stunned", statOrder = { 1724, 1732 }, level = 60, group = "AvoidStunAndElementalStatusAilments", weightKey = { "body_armour", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod", "elemental", "fire", "cold", "lightning", "ailment" }, }, - ["JunMasterVeiledLocalFlaskReducedReflectDuringEffect"] = { type = "Prefix", affix = "of the Order", "(60-80)% reduced Reflected Damage taken during Effect", statOrder = { 888 }, level = 60, group = "FlaskReflectReductionDuringFlaskEffect", weightKey = { "flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "unveiled_mod" }, }, - ["JunMasterVeiledMinimumEnduranceChargesInverted"] = { type = "Suffix", affix = "of the Order", "+1 to Minimum Endurance Charges", "(3-4)% chance to lose an Endurance Charge on Kill", statOrder = { 1684, 2505 }, level = 60, group = "MinimumEnduranceChargesAndOnKillLose", weightKey = { "default", }, weightVal = { 0 }, modTags = { "endurance_charge", "unveiled_mod" }, }, - ["JunMasterVeiledMinimumPowerChargesInverted"] = { type = "Suffix", affix = "of the Order", "+1 to Minimum Power Charges", "(3-4)% chance to lose a Power Charge on Kill", statOrder = { 1694, 2509 }, level = 60, group = "MinimumPowerChargesAndOnKillLose", weightKey = { "default", }, weightVal = { 0 }, modTags = { "power_charge", "unveiled_mod" }, }, - ["JunMasterVeiledMinimumFrenzyChargesInverted"] = { type = "Suffix", affix = "of the Order", "+1 to Minimum Frenzy Charges", "(3-4)% chance to lose a Frenzy Charge on Kill", statOrder = { 1689, 2507 }, level = 60, group = "MinimumFrenzyChargesAndOnKillLose", weightKey = { "default", }, weightVal = { 0 }, modTags = { "frenzy_charge", "unveiled_mod" }, }, - ["JunMasterVeiledAddedFireAndColdDamageInverted"] = { type = "Prefix", affix = "Chosen", "Adds (14-16) to (20-22) Fire Damage to Hits against you", "Adds (14-16) to (20-22) Cold Damage to Hits against you", statOrder = { 1242, 1251 }, level = 60, group = "SelfFireAndColdDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "cold" }, }, - ["JunMasterVeiledAddedFireAndLightningDamageInverted"] = { type = "Prefix", affix = "Chosen", "Adds (14-16) to (20-22) Fire Damage to Hits against you", "Adds (14-16) to (20-22) Lightning Damage to Hits against you", statOrder = { 1242, 1262 }, level = 60, group = "SelfFireAndLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "lightning" }, }, - ["JunMasterVeiledAddedColdAndLightningDamageInverted"] = { type = "Prefix", affix = "Chosen", "Adds (14-16) to (20-22) Cold Damage to Hits against you", "Adds (14-16) to (20-22) Lightning Damage to Hits against you", statOrder = { 1251, 1262 }, level = 60, group = "SelfColdAndLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "lightning" }, }, - ["JunMasterVeiledLifeLeechFromAnyDamageAndVaalPactWhileFocusedInverted"] = { type = "Suffix", affix = "of the Order", "You have Vaal Pact while Focused", "15% of Damage Leeched by Enemy as Life while Focused", statOrder = { 6491, 6976 }, level = 60, group = "EnemyLifeLeechPermyriadWhileFocusedAndVaalPact", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "unveiled_mod", "life" }, }, - ["JunMasterVeiledIncreasedManaAndRegenInverted"] = { type = "Prefix", affix = "Chosen", "+(51-55) to maximum Mana", "Lose 5.3 Mana per second", statOrder = { 1461, 1465 }, level = 60, group = "IncreasedManaAndDegenGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "unveiled_mod", "mana" }, }, - ["JunMasterVeiledBaseLifeAndManaRegenInverted"] = { type = "Prefix", affix = "Chosen", "+(55-60) to maximum Life", "Lose 5.3 Mana per second", statOrder = { 1451, 1465 }, level = 60, group = "BaseLifeAndManaDegenGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "unveiled_mod", "life", "mana" }, }, - ["JunMasterVeiledBaseManaAndLifeRegenInverted"] = { type = "Prefix", affix = "Chosen", "Lose 33.3 Life per second", "+(55-60) to maximum Mana", statOrder = { 1457, 1461 }, level = 60, group = "BaseManaAndLifeDegenGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "unveiled_mod", "life", "mana" }, }, - ["JunMasterVeiledReduceGlobalFlatManaCostChannellingInverted"] = { type = "Prefix", affix = "Elreon's", "Channelling Skills Cost -4 Mana", statOrder = { 9548 }, level = 60, group = "ManaCostBaseChannelled", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "unveiled_mod", "mana" }, }, - ["JunMasterVeiledReduceGlobalFlatManaCostNonChannellingInverted"] = { type = "Prefix", affix = "Elreon's", "Non-Channelling Skills Cost -(10-9) Mana", statOrder = { 9550 }, level = 60, group = "ManaCostBaseNonChannelled", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "unveiled_mod", "mana" }, }, - ["JunMasterVeiledShockNearbyEnemiesOnFocusInverted"] = { type = "Suffix", affix = "of the Order", "Focus has (5-8)% reduced Cooldown Recovery Rate", "Shock yourself for 4 Seconds when you Focus", statOrder = { 6322, 9500 }, level = 60, group = "ShockYourselfOnFocusCDR", weightKey = { "default", }, weightVal = { 0 }, modTags = { "unveiled_mod", "elemental", "lightning", "ailment" }, }, - ["JunMasterVeiledMinionLargerAggroRadius"] = { type = "Prefix", affix = "Catarina's", "Minions are Aggressive", statOrder = { 10207 }, level = 60, group = "MinionLargerAggroRadius", weightKey = { "body_armour", "helmet", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod", "minion" }, }, - ["JunMasterVeiledMinionDamageAlsoAffectsYou"] = { type = "Prefix", affix = "Catarina's", "Increases and Reductions to Minion Damage also affect you", statOrder = { 3613 }, level = 60, group = "MinionDamageAlsoAffectsYou", weightKey = { "body_armour", "helmet", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, }, - ["JunMasterVeiledMinionAttackSpeedAlsoAffectsYou"] = { type = "Prefix", affix = "Catarina's", "Increases and Reductions to Minion Attack Speed also affect you", statOrder = { 3615 }, level = 60, group = "MinionAttackSpeedAlsoAffectsYou", weightKey = { "body_armour", "helmet", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, }, - ["JunMasterVeiledMinionCastSpeedAlsoAffectsYou"] = { type = "Prefix", affix = "Catarina's", "Increases and Reductions to Minion Cast Speed also affect you", statOrder = { 3616 }, level = 60, group = "MinionCastSpeedAlsoAffectsYou", weightKey = { "body_armour", "helmet", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, }, - ["JunMasterVeiledMinionSkillCastSpeed"] = { type = "Prefix", affix = "Catarina's", "(20-40)% increased Cast Speed with Minion Skills", statOrder = { 5169 }, level = 60, group = "MinionSkillCastSpeed", weightKey = { "body_armour", "helmet", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, }, - ["JunMasterVeiledMaximumSpectreCount"] = { type = "Prefix", affix = "Catarina's", "+1 to maximum number of Spectres", statOrder = { 2038 }, level = 60, group = "MaximumSpectreCount", weightKey = { "weapon", "helmet", "quiver", "flask", "body_armour", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod", "minion" }, }, - ["JunMasterVeiledSpectresBaseMaximumAllResistance"] = { type = "Prefix", affix = "Catarina's", "Raised Spectres have +(5-10)% to all maximum Resistances", statOrder = { 9602 }, level = 60, group = "SpectresBaseMaximumAllResistance", weightKey = { "weapon", "helmet", "quiver", "flask", "body_armour", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, }, - ["JunMasterVeiledSpectresAdditionalProjectiles"] = { type = "Prefix", affix = "Catarina's", "Raised Spectres fire 2 additional Projectiles", statOrder = { 9608 }, level = 60, group = "SpectresAdditionalProjectiles", weightKey = { "weapon", "helmet", "quiver", "flask", "body_armour", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, }, - ["JunMasterVeiledSpectresAdditionalBaseCriticalChance"] = { type = "Prefix", affix = "Catarina's", "Raised Spectres have +(3-5)% to Critical Strike Chance", statOrder = { 9600 }, level = 60, group = "SpectresAdditionalBaseCriticalChance", weightKey = { "weapon", "helmet", "quiver", "flask", "body_armour", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, }, - ["JunMasterVeiledSpectresAreaOfEffect"] = { type = "Prefix", affix = "Catarina's", "Raised Spectres have (30-50)% increased Area of Effect", statOrder = { 9603 }, level = 60, group = "SpectresAreaOfEffect", weightKey = { "weapon", "helmet", "quiver", "flask", "body_armour", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, }, - ["JunMasterVeiledLocalIncreaseSocketedGemLevel"] = { type = "Prefix", affix = "Catarina's", "+2 to Level of Socketed Gems", statOrder = { 141 }, level = 60, group = "LocalIncreaseSocketedGemLevel", weightKey = { "body_armour", "quiver", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod", "gem" }, }, - ["JunMasterVeiledDamageIfConsumedCorpse"] = { type = "Prefix", affix = "Catarina's", "20% increased Damage if you have Consumed a corpse Recently", statOrder = { 4114 }, level = 60, group = "DamageIfConsumedCorpse", weightKey = { "body_armour", "quiver", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod", "damage" }, }, - ["JunMasterVeiledCorpseLife"] = { type = "Prefix", affix = "Catarina's", "Corpses you Spawn have 20% increased Maximum Life", statOrder = { 8710 }, level = 60, group = "CorpseLife", weightKey = { "body_armour", "quiver", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, }, - ["JunMasterVeiledAttackAndCastSpeedIfCorpseConsumedRecently"] = { type = "Prefix", affix = "Catarina's", "20% increased Attack and Cast Speed if you've Consumed a Corpse Recently", statOrder = { 4631 }, level = 60, group = "AttackAndCastSpeedIfCorpseConsumedRecently", weightKey = { "body_armour", "quiver", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, }, - ["JunMasterVeiledTakeNoExtraDamageFromCriticalStrikesIfEnergyShieldRechargeStartedRecently"] = { type = "Prefix", affix = "Catarina's", "Take no Extra Damage from Critical Strikes if Energy Shield Recharge started Recently", statOrder = { 9468 }, level = 60, group = "TakeNoExtraDamageFromCriticalStrikesIfEnergyShieldRechargeStartedRecently", weightKey = { "body_armour", "quiver", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, }, - ["JunMasterVeiledOfferingEffect"] = { type = "Prefix", affix = "Catarina's", "20% increased effect of Offerings", statOrder = { 3925 }, level = 60, group = "OfferingEffect", weightKey = { "helmet", "quiver", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, }, - ["JunMasterVeiledOfferingDuration"] = { type = "Prefix", affix = "Catarina's", "Offering Skills have 20% increased Duration", statOrder = { 9065 }, level = 60, group = "OfferingDuration", weightKey = { "helmet", "quiver", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, }, - ["JunMasterVeiledLifeRegenerationRatePercentageIfCorpseConsumedRecently"] = { type = "Prefix", affix = "Catarina's", "Regenerate 2% of Life per second if you've Consumed a corpse Recently", statOrder = { 7025 }, level = 60, group = "LifeRegenerationRatePercentageIfCorpseConsumedRecently", weightKey = { "helmet", "quiver", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, }, - ["JunMasterVeiledManaRegenerationRatePercentageIfCorpseConsumedRecently"] = { type = "Prefix", affix = "Catarina's", "Regenerate 2% of Mana per second if you've Consumed a corpse Recently", statOrder = { 7766 }, level = 60, group = "ManaRegenerationRatePercentageIfCorpseConsumedRecently", weightKey = { "helmet", "quiver", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, }, - ["JunMasterVeiledEnergyShieldRegenerationRatePercentageIfCorpseConsumedRecently"] = { type = "Prefix", affix = "Catarina's", "Regenerate 2% of Energy Shield per second if you've Consumed a Corpse Recently", statOrder = { 6132 }, level = 60, group = "EnergyShieldRegenerationRatePercentageIfCorpseConsumedRecently", weightKey = { "helmet", "quiver", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, }, - ["JunMasterVeiledAllow2Offerings"] = { type = "Prefix", affix = "Catarina's", "You can have two Offerings of different types", statOrder = { 4478 }, level = 60, group = "Allow2Offerings", weightKey = { "helmet", "quiver", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, }, - ["JunMasterVeiledLocalFlaskPhysicalDamageCanIgnite"] = { type = "Prefix", affix = "Catarina's", "Your Physical Damage can Ignite during Effect", statOrder = { 887 }, level = 60, group = "LocalFlaskPhysicalDamageCanIgnite", weightKey = { "helmet", "quiver", "body_armour", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, }, - ["JunMasterVeiledLocalFlaskIgnitedEnemiesHaveMalediction"] = { type = "Prefix", affix = "Catarina's", "Enemies Ignited by you during Effect have Malediction", statOrder = { 871 }, level = 60, group = "LocalFlaskIgnitedEnemiesHaveMalediction", weightKey = { "helmet", "quiver", "body_armour", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, }, - ["JunMasterVeiledLocalFlaskAdditionalCurseOnEnemies"] = { type = "Prefix", affix = "Catarina's", "You can apply an additional Curse during Effect", statOrder = { 885 }, level = 60, group = "LocalFlaskAdditionalCurseOnEnemies", weightKey = { "helmet", "quiver", "body_armour", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, }, - ["JunMasterVeiledLocalFlaskIgniteProlif"] = { type = "Prefix", affix = "Catarina's", "Ignites you inflict during Effect spread to other Enemies within 1.5 metres", statOrder = { 870 }, level = 60, group = "LocalFlaskIgniteProlif", weightKey = { "helmet", "quiver", "body_armour", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, }, - ["JunMasterVeiledLocalFlaskIgniteDamageLifeLeech"] = { type = "Prefix", affix = "Catarina's", "Leech 1.5% of Expected Ignite Damage as Life when you Ignite an Enemy during Effect", statOrder = { 879 }, level = 60, group = "LocalFlaskIgniteDamageLifeLeech", weightKey = { "helmet", "quiver", "body_armour", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, }, + ["JunMasterAvoidStunAndElementalStatusAilments1"] = { type = "Prefix", affix = "Chosen", "(20-25)% chance to Avoid Elemental Ailments", "(20-25)% chance to Avoid being Stunned", statOrder = { 1754, 1762 }, level = 1, group = "AvoidStunAndElementalStatusAilments", weightKey = { "body_armour", "default", }, weightVal = { 0, 0 }, modTags = { "unveiled_mod", "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["JunMasterVeiledLocalIncreasedPhysicalDamageAndImpaleCrafted"] = { type = "Prefix", affix = "Chosen", "(120-139)% increased Physical Damage", "(21-25)% chance to Impale Enemies on Hit with Attacks", statOrder = { 1144, 7718 }, level = 60, group = "LocalIncreasedPhysicalDamageAndImpaleChance", weightKey = { "wand", "sceptre", "dagger", "weapon", "default", }, weightVal = { 500, 500, 500, 1000, 0 }, modTags = { "physical_damage", "unveiled_mod", "damage", "physical", "attack" }, }, + ["JunMasterVeiledLocalIncreasedPhysicalDamageAndBleedChanceCrafted_"] = { type = "Prefix", affix = "Chosen", "(120-139)% increased Physical Damage", "(21-25)% chance to cause Bleeding on Hit", statOrder = { 1144, 2392 }, level = 60, group = "LocalIncreasedPhysicalDamageAndBleedChance", weightKey = { "wand", "sceptre", "dagger", "weapon", "default", }, weightVal = { 500, 500, 500, 1000, 0 }, modTags = { "physical_damage", "bleed", "unveiled_mod", "damage", "physical", "attack", "ailment" }, }, + ["JunMasterVeiledLocalIncreasedPhysicalDamageAndBlindChanceCrafted_"] = { type = "Prefix", affix = "Chosen", "(120-139)% increased Physical Damage", "(21-25)% chance to Blind Enemies on hit", statOrder = { 1144, 2172 }, level = 60, group = "LocalIncreasedPhysicalDamageAndBlindChance", weightKey = { "wand", "sceptre", "dagger", "weapon", "default", }, weightVal = { 500, 500, 500, 1000, 0 }, modTags = { "physical_damage", "unveiled_mod", "damage", "physical", "attack" }, }, + ["JunMasterVeiledLocalIncreasedPhysicalDamageAndPoisonChanceCrafted_"] = { type = "Prefix", affix = "Chosen", "(120-139)% increased Physical Damage", "(21-25)% chance to Poison on Hit", statOrder = { 1144, 7849 }, level = 60, group = "LocalIncreasedPhysicalDamageAndPoisonChance", weightKey = { "wand", "sceptre", "dagger", "weapon", "default", }, weightVal = { 500, 500, 500, 1000, 0 }, modTags = { "physical_damage", "chaos_damage", "bleed", "poison", "unveiled_mod", "damage", "physical", "chaos", "attack", "ailment" }, }, + ["JunMasterVeiledElementalPenetrationWithAttacks_"] = { type = "Prefix", affix = "Chosen", "Attacks with this Weapon Penetrate (14-16)% Elemental Resistances", statOrder = { 3669 }, level = 60, group = "LocalAttackReduceEnemyElementalResistance", weightKey = { "wand", "dagger", "weapon", "default", }, weightVal = { 500, 500, 1000, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "attack" }, }, + ["JunMasterVeiledChaosPenetrationWithAttacks__"] = { type = "Prefix", affix = "Chosen", "Attacks with this Weapon Penetrate (14-16)% Chaos Resistance", statOrder = { 7732 }, level = 60, group = "LocalChaosPenetration", weightKey = { "wand", "dagger", "weapon", "default", }, weightVal = { 500, 500, 1000, 0 }, modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos", "attack" }, }, + ["JunMasterVeiledDoubleDamageChance2h_"] = { type = "Suffix", affix = "of the Order", "(12-14)% chance to deal Double Damage", statOrder = { 5557 }, level = 60, group = "DoubleDamageChance", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "damage" }, }, + ["JunMasterVeiledDoubleDamageChance1h"] = { type = "Suffix", affix = "of the Order", "(6-7)% chance to deal Double Damage", statOrder = { 5557 }, level = 60, group = "DoubleDamageChance", weightKey = { "shield", "one_hand_weapon", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "unveiled_mod", "damage" }, }, + ["JunMasterVeiledAreaDamageAndAreaOfEffect"] = { type = "Prefix", affix = "Chosen", "(14-16)% increased Area of Effect", "(17-20)% increased Area Damage", statOrder = { 1791, 1944 }, level = 60, group = "AreaDamageAndAreaOfEffect", weightKey = { "gloves", "default", }, weightVal = { 750, 0 }, modTags = { "unveiled_mod", "damage" }, }, + ["JunMasterVeiledProjectileDamageAndProjectileSpeed"] = { type = "Prefix", affix = "Chosen", "(23-25)% increased Projectile Speed", "(17-20)% increased Projectile Damage", statOrder = { 1707, 1905 }, level = 60, group = "ProjectileDamageAndProjectileSpeed", weightKey = { "gloves", "default", }, weightVal = { 750, 0 }, modTags = { "unveiled_mod", "damage", "speed" }, }, + ["JunMasterVeiledMeleeDamageAndMeleeRange"] = { type = "Prefix", affix = "Chosen", "(17-20)% increased Melee Damage", "+0.2 metres to Melee Strike Range", statOrder = { 1146, 2443 }, level = 60, group = "MeleeDamageAndMeleeRange", weightKey = { "gloves", "default", }, weightVal = { 750, 0 }, modTags = { "unveiled_mod", "damage", "attack" }, }, + ["JunMasterVeiledFireDamageAndChanceToIgnite1h"] = { type = "Prefix", affix = "Chosen", "(70-79)% increased Fire Damage", "(21-23)% chance to Ignite", statOrder = { 1268, 1935 }, level = 60, group = "FireDamageAndChanceToIgnite", weightKey = { "two_hand_weapon", "wand", "dagger", "sceptre", "weapon", "default", }, weightVal = { 0, 1000, 1000, 1000, 100, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "ailment" }, }, + ["JunMasterVeiledFireDamageAndChanceToIgnite2h"] = { type = "Prefix", affix = "Chosen", "(100-109)% increased Fire Damage", "(35-40)% chance to Ignite", statOrder = { 1268, 1935 }, level = 60, group = "FireDamageAndChanceToIgnite", weightKey = { "one_hand_weapon", "bow", "staff", "weapon", "default", }, weightVal = { 0, 0, 1000, 100, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "ailment" }, }, + ["JunMasterVeiledColdDamageAndBaseChanceToFreeze1h"] = { type = "Prefix", affix = "Chosen", "(70-79)% increased Cold Damage", "(21-23)% chance to Freeze", statOrder = { 1277, 1938 }, level = 60, group = "ColdDamageAndBaseChanceToFreeze", weightKey = { "two_hand_weapon", "wand", "dagger", "sceptre", "weapon", "default", }, weightVal = { 0, 1000, 1000, 1000, 100, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "cold", "ailment" }, }, + ["JunMasterVeiledColdDamageAndBaseChanceToFreeze2h__"] = { type = "Prefix", affix = "Chosen", "(100-109)% increased Cold Damage", "(35-40)% chance to Freeze", statOrder = { 1277, 1938 }, level = 60, group = "ColdDamageAndBaseChanceToFreeze", weightKey = { "one_hand_weapon", "bow", "staff", "weapon", "default", }, weightVal = { 0, 0, 1000, 100, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "cold", "ailment" }, }, + ["JunMasterVeiledLightningDamageAndChanceToShock1h_"] = { type = "Prefix", affix = "Chosen", "(70-79)% increased Lightning Damage", "(21-23)% chance to Shock", statOrder = { 1288, 1942 }, level = 60, group = "LightningDamageAndChanceToShock", weightKey = { "two_hand_weapon", "wand", "dagger", "sceptre", "weapon", "default", }, weightVal = { 0, 1000, 1000, 1000, 100, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "lightning", "ailment" }, }, + ["JunMasterVeiledLightningDamageAndChanceToShock2h"] = { type = "Prefix", affix = "Chosen", "(100-109)% increased Lightning Damage", "(35-40)% chance to Shock", statOrder = { 1288, 1942 }, level = 60, group = "LightningDamageAndChanceToShock", weightKey = { "one_hand_weapon", "bow", "staff", "weapon", "default", }, weightVal = { 0, 0, 1000, 100, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "lightning", "ailment" }, }, + ["JunMasterVeiledChaosDamageAndChaosSkillDuration1h"] = { type = "Prefix", affix = "Chosen", "(60-69)% increased Chaos Damage", "Chaos Skills have (13-15)% increased Skill Effect Duration", statOrder = { 1296, 1807 }, level = 60, group = "ChaosDamageAndChaosSkillDuration", weightKey = { "two_hand_weapon", "wand", "dagger", "sceptre", "weapon", "default", }, weightVal = { 0, 1000, 1000, 1000, 100, 0 }, modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos" }, }, + ["JunMasterVeiledChaosDamageAndChaosSkillDuration2h_"] = { type = "Prefix", affix = "Chosen", "(90-99)% increased Chaos Damage", "Chaos Skills have (26-30)% increased Skill Effect Duration", statOrder = { 1296, 1807 }, level = 60, group = "ChaosDamageAndChaosSkillDuration", weightKey = { "one_hand_weapon", "bow", "staff", "weapon", "default", }, weightVal = { 0, 0, 1000, 100, 0 }, modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos" }, }, + ["JunMasterVeiledSpellDamageAndManaRegenerationRate1h"] = { type = "Prefix", affix = "Chosen", "(70-79)% increased Spell Damage", "(18-20)% increased Mana Regeneration Rate", statOrder = { 1135, 1495 }, level = 60, group = "SpellDamageAndManaRegenerationRate", weightKey = { "two_hand_weapon", "wand", "dagger", "sceptre", "weapon", "default", }, weightVal = { 0, 1000, 1000, 1000, 100, 0 }, modTags = { "caster_damage", "resource", "unveiled_mod", "mana", "damage", "caster" }, }, + ["JunMasterVeiledSpellDamageAndManaRegenerationRate2h"] = { type = "Prefix", affix = "Chosen", "(100-109)% increased Spell Damage", "(36-40)% increased Mana Regeneration Rate", statOrder = { 1135, 1495 }, level = 60, group = "SpellDamageAndManaRegenerationRate", weightKey = { "bow", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 100, 0 }, modTags = { "caster_damage", "resource", "unveiled_mod", "mana", "damage", "caster" }, }, + ["JunMasterVeiledSpellDamageAndNonChaosDamageToAddAsChaosDamage1h"] = { type = "Prefix", affix = "Chosen", "(60-69)% increased Spell Damage", "Gain 5% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 1135, 9286 }, level = 60, group = "SpellDamageAndNonChaosDamageToAddAsChaosDamage", weightKey = { "two_hand_weapon", "wand", "dagger", "sceptre", "weapon", "default", }, weightVal = { 0, 1000, 1000, 1000, 100, 0 }, modTags = { "caster_damage", "chaos_damage", "unveiled_mod", "damage", "chaos", "caster" }, }, + ["JunMasterVeiledSpellDamageAndNonChaosDamageToAddAsChaosDamage2h"] = { type = "Prefix", affix = "Chosen", "(90-99)% increased Spell Damage", "Gain (9-10)% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 1135, 9286 }, level = 60, group = "SpellDamageAndNonChaosDamageToAddAsChaosDamage", weightKey = { "bow", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 100, 0 }, modTags = { "caster_damage", "chaos_damage", "unveiled_mod", "damage", "chaos", "caster" }, }, + ["JunMasterVeiledMinionDamageAndMinionMaximumLife1h"] = { type = "Prefix", affix = "Chosen", "Minions have (34-38)% increased maximum Life", "Minions deal (34-38)% increased Damage", statOrder = { 1677, 1882 }, level = 60, group = "MinionDamageAndMinionMaximumLife", weightKey = { "two_hand_weapon", "wand", "dagger", "sceptre", "weapon", "default", }, weightVal = { 0, 1000, 1000, 1000, 400, 0 }, modTags = { "resource", "unveiled_mod", "life", "damage", "minion" }, }, + ["JunMasterVeiledMinionDamageAndMinionMaximumLife2h__"] = { type = "Prefix", affix = "Chosen", "Minions have (50-59)% increased maximum Life", "Minions deal (50-59)% increased Damage", statOrder = { 1677, 1882 }, level = 60, group = "MinionDamageAndMinionMaximumLife", weightKey = { "one_hand_weapon", "staff", "weapon", "default", }, weightVal = { 0, 1000, 400, 0 }, modTags = { "resource", "unveiled_mod", "life", "damage", "minion" }, }, + ["JunMasterVeiledMinionAttackAndCastSpeedOnWeapon1h"] = { type = "Suffix", affix = "of the Order", "Minions have (18-20)% increased Attack Speed", "Minions have (18-20)% increased Cast Speed", statOrder = { 2817, 2818 }, level = 60, group = "MinionAttackAndCastSpeedOnWeapon", weightKey = { "two_hand_weapon", "wand", "dagger", "sceptre", "weapon", "default", }, weightVal = { 0, 1000, 1000, 1000, 400, 0 }, modTags = { "unveiled_mod", "attack", "caster", "speed", "minion" }, }, + ["JunMasterVeiledMinionAttackAndCastSpeedOnWeapon2h"] = { type = "Suffix", affix = "of the Order", "Minions have (34-38)% increased Attack Speed", "Minions have (34-38)% increased Cast Speed", statOrder = { 2817, 2818 }, level = 60, group = "MinionAttackAndCastSpeedOnWeapon", weightKey = { "one_hand_weapon", "staff", "weapon", "default", }, weightVal = { 0, 1000, 400, 0 }, modTags = { "unveiled_mod", "attack", "caster", "speed", "minion" }, }, + ["JunMasterVeiledChaosNonAilmentDamageOverTimeMultiplier2h"] = { type = "Prefix", affix = "Chosen", "+(44-48)% to Chaos Damage over Time Multiplier", statOrder = { 1171 }, level = 60, group = "ChaosDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "chaos_damage", "unveiled_mod", "damage", "chaos" }, }, + ["JunMasterVeiledChaosNonAilmentDamageOverTimeMultiplier1h"] = { type = "Prefix", affix = "Chosen", "+(24-28)% to Chaos Damage over Time Multiplier", statOrder = { 1171 }, level = 60, group = "ChaosDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "chaos_damage", "unveiled_mod", "damage", "chaos" }, }, + ["JunMasterVeiledPhysicalDamageOverTimeMultiplier2h_"] = { type = "Prefix", affix = "Chosen", "+(44-48)% to Physical Damage over Time Multiplier", statOrder = { 1159 }, level = 60, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "physical_damage", "unveiled_mod", "damage", "physical" }, }, + ["JunMasterVeiledPhysicalDamageOverTimeMultiplier1h"] = { type = "Prefix", affix = "Chosen", "+(24-28)% to Physical Damage over Time Multiplier", statOrder = { 1159 }, level = 60, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "physical_damage", "unveiled_mod", "damage", "physical" }, }, + ["JunMasterVeiledColdDamageOverTimeMultiplier2h_"] = { type = "Prefix", affix = "Chosen", "+(44-48)% to Cold Damage over Time Multiplier", statOrder = { 1168 }, level = 60, group = "ColdDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "cold" }, }, + ["JunMasterVeiledColdDamageOverTimeMultiplier1h"] = { type = "Prefix", affix = "Chosen", "+(24-28)% to Cold Damage over Time Multiplier", statOrder = { 1168 }, level = 60, group = "ColdDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "cold" }, }, + ["JunMasterVeiledFireDamageOverTimeMultiplier2h_"] = { type = "Prefix", affix = "Chosen", "+(44-48)% to Fire Damage over Time Multiplier", statOrder = { 1163 }, level = 60, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "fire" }, }, + ["JunMasterVeiledFireDamageOverTimeMultiplier1h"] = { type = "Prefix", affix = "Chosen", "+(24-28)% to Fire Damage over Time Multiplier", statOrder = { 1163 }, level = 60, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "fire" }, }, + ["JunMasterVeiledChaosDamageOverTimeMultiplierTwoHand"] = { type = "Suffix", affix = "of the Order", "+(44-48)% to Chaos Damage over Time Multiplier", statOrder = { 1171 }, level = 60, group = "ChaosDamageOverTimeMultiplier", weightKey = { "one_hand_weapon", "bow", "staff", "weapon", "default", }, weightVal = { 0, 0, 1000, 100, 0 }, modTags = { "dot_multi", "chaos_damage", "unveiled_mod", "damage", "chaos" }, }, + ["JunMasterVeiledChaosDamageOverTimeMultiplier__"] = { type = "Suffix", affix = "of the Order", "+(24-28)% to Chaos Damage over Time Multiplier", statOrder = { 1171 }, level = 60, group = "ChaosDamageOverTimeMultiplier", weightKey = { "bow", "two_hand_weapon", "wand", "dagger", "sceptre", "weapon", "default", }, weightVal = { 1000, 0, 1000, 1000, 600, 100, 0 }, modTags = { "dot_multi", "chaos_damage", "unveiled_mod", "damage", "chaos" }, }, + ["JunMasterVeiledPhysicalDamageOverTimeMultiplierTwoHand_"] = { type = "Suffix", affix = "of the Order", "+(44-48)% to Physical Damage over Time Multiplier", statOrder = { 1159 }, level = 60, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "one_hand_weapon", "bow", "staff", "weapon", "default", }, weightVal = { 0, 0, 1000, 400, 0 }, modTags = { "dot_multi", "physical_damage", "unveiled_mod", "damage", "physical" }, }, + ["JunMasterVeiledPhysicalDamageOverTimeMultiplier"] = { type = "Suffix", affix = "of the Order", "+(24-28)% to Physical Damage over Time Multiplier", statOrder = { 1159 }, level = 60, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "bow", "two_hand_weapon", "wand", "weapon", "default", }, weightVal = { 400, 0, 1000, 400, 0 }, modTags = { "dot_multi", "physical_damage", "unveiled_mod", "damage", "physical" }, }, + ["JunMasterVeiledColdDamageOverTimeMultiplierTwoHand"] = { type = "Suffix", affix = "of the Order", "+(44-48)% to Cold Damage over Time Multiplier", statOrder = { 1168 }, level = 60, group = "ColdDamageOverTimeMultiplier", weightKey = { "bow", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 400, 0 }, modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "cold" }, }, + ["JunMasterVeiledColdDamageOverTimeMultiplier___"] = { type = "Suffix", affix = "of the Order", "+(24-28)% to Cold Damage over Time Multiplier", statOrder = { 1168 }, level = 60, group = "ColdDamageOverTimeMultiplier", weightKey = { "two_hand_weapon", "wand", "dagger", "sceptre", "weapon", "default", }, weightVal = { 0, 1000, 1000, 600, 400, 0 }, modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "cold" }, }, + ["JunMasterVeiledFireDamageOverTimeMultiplierTwoHand"] = { type = "Suffix", affix = "of the Order", "+(44-48)% to Fire Damage over Time Multiplier", statOrder = { 1163 }, level = 60, group = "FireDamageOverTimeMultiplier", weightKey = { "bow", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 400, 0 }, modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "fire" }, }, + ["JunMasterVeiledFireDamageOverTimeMultiplier"] = { type = "Suffix", affix = "of the Order", "+(24-28)% to Fire Damage over Time Multiplier", statOrder = { 1163 }, level = 60, group = "FireDamageOverTimeMultiplier", weightKey = { "bow", "two_hand_weapon", "wand", "dagger", "sceptre", "weapon", "default", }, weightVal = { 100, 0, 1000, 1000, 600, 400, 0 }, modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "fire" }, }, + ["JunMasterVeiledLocalIncreasedArmourAndEvasionAndLife"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Armour and Evasion", "+(17-19) to maximum Life", statOrder = { 1464, 1480 }, level = 60, group = "LocalIncreasedArmourAndEvasionAndLife", weightKey = { "body_armour", "shield", "helmet", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion" }, }, + ["JunMasterVeiledLocalIncreasedArmourAndEnergyShieldAndLife"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Armour and Energy Shield", "+(17-19) to maximum Life", statOrder = { 1463, 1480 }, level = 60, group = "LocalIncreasedArmourAndEnergyShieldAndLife", weightKey = { "body_armour", "shield", "helmet", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "energy_shield" }, }, + ["JunMasterVeiledLocalIncreasedEvasionAndEnergyShieldAndLife"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Evasion and Energy Shield", "+(17-19) to maximum Life", statOrder = { 1465, 1480 }, level = 60, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", weightKey = { "body_armour", "shield", "helmet", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "evasion", "energy_shield" }, }, + ["JunMasterVeiledLocalIncreasedArmourAndLife_"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Armour", "+(17-19) to maximum Life", statOrder = { 1453, 1480 }, level = 60, group = "LocalIncreasedArmourAndLife", weightKey = { "body_armour", "shield", "helmet", "str_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "armour" }, }, + ["JunMasterVeiledLocalIncreasedEvasionAndLife__"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Evasion Rating", "+(17-19) to maximum Life", statOrder = { 1461, 1480 }, level = 60, group = "LocalIncreasedEvasionAndLife", weightKey = { "body_armour", "shield", "helmet", "dex_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "evasion" }, }, + ["JunMasterVeiledLocalIncreasedEnergyShieldAndLife_"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Energy Shield", "+(17-19) to maximum Life", statOrder = { 1471, 1480 }, level = 60, group = "LocalIncreasedEnergyShieldAndLife", weightKey = { "body_armour", "shield", "helmet", "int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "energy_shield" }, }, + ["JunMasterVeiledLocalIncreasedDefencesAndLife"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Armour, Evasion and Energy Shield", "+(17-19) to maximum Life", statOrder = { 1466, 1480 }, level = 60, group = "LocalIncreasedDefencesAndLife", weightKey = { "body_armour", "shield", "helmet", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion", "energy_shield" }, }, + ["JunMasterVeiledLocalIncreasedArmourAndEvasionAndLifeMed"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Armour and Evasion", "+(19-22) to maximum Life", statOrder = { 1464, 1480 }, level = 60, group = "LocalIncreasedArmourAndEvasionAndLife", weightKey = { "body_armour", "gloves", "boots", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion" }, }, + ["JunMasterVeiledLocalIncreasedArmourAndEnergyShieldAndLifeMed"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Armour and Energy Shield", "+(19-22) to maximum Life", statOrder = { 1463, 1480 }, level = 60, group = "LocalIncreasedArmourAndEnergyShieldAndLife", weightKey = { "body_armour", "gloves", "boots", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "energy_shield" }, }, + ["JunMasterVeiledLocalIncreasedEvasionAndEnergyShieldAndLifeMed"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Evasion and Energy Shield", "+(19-22) to maximum Life", statOrder = { 1465, 1480 }, level = 60, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", weightKey = { "body_armour", "gloves", "boots", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "evasion", "energy_shield" }, }, + ["JunMasterVeiledLocalIncreasedArmourAndLifeMed___"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Armour", "+(19-22) to maximum Life", statOrder = { 1453, 1480 }, level = 60, group = "LocalIncreasedArmourAndLife", weightKey = { "body_armour", "gloves", "boots", "str_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "armour" }, }, + ["JunMasterVeiledLocalIncreasedEvasionAndLifeMed___"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Evasion Rating", "+(19-22) to maximum Life", statOrder = { 1461, 1480 }, level = 60, group = "LocalIncreasedEvasionAndLife", weightKey = { "body_armour", "gloves", "boots", "dex_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "evasion" }, }, + ["JunMasterVeiledLocalIncreasedEnergyShieldAndLifeMed"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Energy Shield", "+(19-22) to maximum Life", statOrder = { 1471, 1480 }, level = 60, group = "LocalIncreasedEnergyShieldAndLife", weightKey = { "body_armour", "gloves", "boots", "int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "energy_shield" }, }, + ["JunMasterVeiledLocalIncreasedDefencesAndLifeMed"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Armour, Evasion and Energy Shield", "+(19-22) to maximum Life", statOrder = { 1466, 1480 }, level = 60, group = "LocalIncreasedDefencesAndLife", weightKey = { "body_armour", "gloves", "boots", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion", "energy_shield" }, }, + ["JunMasterVeiledLocalIncreasedArmourAndEvasionAndLifeHigh"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Armour and Evasion", "+(23-26) to maximum Life", statOrder = { 1464, 1480 }, level = 60, group = "LocalIncreasedArmourAndEvasionAndLife", weightKey = { "shield", "helmet", "gloves", "boots", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion" }, }, + ["JunMasterVeiledLocalIncreasedArmourAndEnergyShieldAndLifeHigh"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Armour and Energy Shield", "+(23-26) to maximum Life", statOrder = { 1463, 1480 }, level = 60, group = "LocalIncreasedArmourAndEnergyShieldAndLife", weightKey = { "shield", "helmet", "gloves", "boots", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "energy_shield" }, }, + ["JunMasterVeiledLocalIncreasedEvasionAndEnergyShieldAndLifeHigh"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Evasion and Energy Shield", "+(23-26) to maximum Life", statOrder = { 1465, 1480 }, level = 60, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", weightKey = { "shield", "helmet", "gloves", "boots", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "evasion", "energy_shield" }, }, + ["JunMasterVeiledLocalIncreasedArmourAndLifeHigh"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Armour", "+(23-26) to maximum Life", statOrder = { 1453, 1480 }, level = 60, group = "LocalIncreasedArmourAndLife", weightKey = { "shield", "helmet", "gloves", "boots", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "armour" }, }, + ["JunMasterVeiledLocalIncreasedEvasionAndLifeHigh_"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Evasion Rating", "+(23-26) to maximum Life", statOrder = { 1461, 1480 }, level = 60, group = "LocalIncreasedEvasionAndLife", weightKey = { "shield", "helmet", "gloves", "boots", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "evasion" }, }, + ["JunMasterVeiledLocalIncreasedEnergyShieldAndLifeHigh"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Energy Shield", "+(23-26) to maximum Life", statOrder = { 1471, 1480 }, level = 60, group = "LocalIncreasedEnergyShieldAndLife", weightKey = { "shield", "helmet", "gloves", "boots", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "energy_shield" }, }, + ["JunMasterVeiledLocalIncreasedDefencesAndLifeHigh__"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Armour, Evasion and Energy Shield", "+(23-26) to maximum Life", statOrder = { 1466, 1480 }, level = 60, group = "LocalIncreasedDefencesAndLife", weightKey = { "shield", "helmet", "gloves", "boots", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion", "energy_shield" }, }, + ["JunMasterVeiledStrengthAndDexterity"] = { type = "Suffix", affix = "of the Order", "+(31-35) to Strength and Dexterity", statOrder = { 1092 }, level = 60, group = "StrengthAndDexterity", weightKey = { "body_armour", "boots", "gloves", "helmet", "amulet", "ring", "belt", "shield", "quiver", "default", }, weightVal = { 600, 600, 600, 600, 600, 600, 600, 600, 600, 0 }, modTags = { "unveiled_mod", "attribute" }, }, + ["JunMasterVeiledDexterityAndIntelligence"] = { type = "Suffix", affix = "of the Order", "+(31-35) to Dexterity and Intelligence", statOrder = { 1094 }, level = 60, group = "DexterityAndIntelligence", weightKey = { "body_armour", "boots", "gloves", "helmet", "amulet", "ring", "belt", "shield", "quiver", "default", }, weightVal = { 600, 600, 600, 600, 600, 600, 600, 600, 600, 0 }, modTags = { "unveiled_mod", "attribute" }, }, + ["JunMasterVeiledStrengthAndIntelligence"] = { type = "Suffix", affix = "of the Order", "+(31-35) to Strength and Intelligence", statOrder = { 1093 }, level = 60, group = "StrengthAndIntelligence", weightKey = { "body_armour", "boots", "gloves", "helmet", "amulet", "ring", "belt", "shield", "quiver", "default", }, weightVal = { 600, 600, 600, 600, 600, 600, 600, 600, 600, 0 }, modTags = { "unveiled_mod", "attribute" }, }, + ["JunMasterVeiledMinimumEnduranceCharges_"] = { type = "Suffix", affix = "of the Order", "+1 to Minimum Endurance Charges", "(3-4)% chance to gain an Endurance Charge on Kill", statOrder = { 1714, 2537 }, level = 60, group = "MinimumEnduranceChargesAndOnKillChance", weightKey = { "ring", "amulet", "default", }, weightVal = { 1500, 1500, 0 }, modTags = { "endurance_charge", "unveiled_mod" }, }, + ["JunMasterVeiledMinimumPowerCharges"] = { type = "Suffix", affix = "of the Order", "+1 to Minimum Power Charges", "(3-4)% chance to gain a Power Charge on Kill", statOrder = { 1724, 2541 }, level = 60, group = "MinimumPowerChargesAndOnKillChance", weightKey = { "ring", "amulet", "default", }, weightVal = { 1500, 1500, 0 }, modTags = { "power_charge", "unveiled_mod" }, }, + ["JunMasterVeiledMinimumFrenzyCharges___"] = { type = "Suffix", affix = "of the Order", "+1 to Minimum Frenzy Charges", "(3-4)% chance to gain a Frenzy Charge on Kill", statOrder = { 1719, 2539 }, level = 60, group = "MinimumFrenzyChargesAndOnKillChance", weightKey = { "ring", "amulet", "default", }, weightVal = { 1500, 1500, 0 }, modTags = { "frenzy_charge", "unveiled_mod" }, }, + ["JunMasterVeiledIncreasedManaAndRegen"] = { type = "Prefix", affix = "Chosen", "+(51-55) to maximum Mana", "Regenerate 5.3 Mana per second", statOrder = { 1490, 1493 }, level = 60, group = "IncreasedManaAndRegen", weightKey = { "ring", "amulet", "default", }, weightVal = { 600, 600, 0 }, modTags = { "resource", "unveiled_mod", "mana" }, }, + ["JunMasterVeiledManaAndManaCostPercent"] = { type = "Prefix", affix = "Chosen", "+(51-55) to maximum Mana", "(6-7)% reduced Mana Cost of Skills", statOrder = { 1490, 1794 }, level = 60, group = "ManaAndManaCostPercent", weightKey = { "ring", "amulet", "default", }, weightVal = { 600, 600, 0 }, modTags = { "resource", "unveiled_mod", "mana" }, }, + ["JunMasterVeiledManaAndDamageTakenGoesToManaPercent"] = { type = "Prefix", affix = "Chosen", "+(51-55) to maximum Mana", "(7-8)% of Damage taken Recouped as Mana", statOrder = { 1490, 2364 }, level = 60, group = "ManaAndDamageTakenGoesToManaPercent", weightKey = { "ring", "amulet", "default", }, weightVal = { 600, 600, 0 }, modTags = { "resource", "unveiled_mod", "mana" }, }, + ["JunMasterVeiledAttackAndCastSpeed_"] = { type = "Suffix", affix = "of the Order", "(7-8)% increased Attack and Cast Speed", statOrder = { 1955 }, level = 60, group = "AttackAndCastSpeed", weightKey = { "amulet", "quiver", "default", }, weightVal = { 1500, 1500, 0 }, modTags = { "unveiled_mod", "attack", "caster", "speed" }, }, + ["JunMasterVeiledMovementVelocityAndMovementVelocityIfNotHitRecently"] = { type = "Prefix", affix = "Chosen", "(25-30)% increased Movement Speed", "(10-12)% increased Movement Speed if you haven't been Hit Recently", statOrder = { 1709, 3131 }, level = 60, group = "MovementVelocityAndMovementVelocityIfNotHitRecently", weightKey = { "boots", "default", }, weightVal = { 1500, 0 }, modTags = { "unveiled_mod", "speed" }, }, + ["JunMasterVeiledMovementVelocityAndOnslaughtOnKill"] = { type = "Prefix", affix = "Chosen", "(25-30)% increased Movement Speed", "(13-16)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1709, 2902 }, level = 60, group = "MovementVelocityAndOnslaughtOnKill", weightKey = { "boots", "default", }, weightVal = { 1500, 0 }, modTags = { "unveiled_mod", "speed" }, }, + ["JunMasterVeiledMovementVelocityAndCannotBeChilled__"] = { type = "Prefix", affix = "Chosen", "(25-30)% increased Movement Speed", "100% chance to Avoid being Chilled", statOrder = { 1709, 1755 }, level = 60, group = "MovementVelocityAndCannotBeChilled", weightKey = { "boots", "default", }, weightVal = { 1500, 0 }, modTags = { "unveiled_mod", "elemental", "cold", "speed", "ailment" }, }, + ["JunMasterVeiledArmourAndEvasionRating"] = { type = "Prefix", affix = "Chosen", "+(365-400) to Armour and Evasion Rating", statOrder = { 4173 }, level = 60, group = "ArmourAndEvasionRating", weightKey = { "belt", "quiver", "default", }, weightVal = { 1500, 1500, 0 }, modTags = { "unveiled_mod", "defences", "armour", "evasion" }, }, + ["JunMasterVeiledArmourAndEnergyShield"] = { type = "Prefix", affix = "Chosen", "+(365-400) to Armour", "+(31-35) to maximum Energy Shield", statOrder = { 1450, 1469 }, level = 60, group = "ArmourAndEnergyShield", weightKey = { "belt", "default", }, weightVal = { 1500, 0 }, modTags = { "unveiled_mod", "defences", "armour", "energy_shield" }, }, + ["JunMasterVeiledEvasionRatingAndEnergyShield"] = { type = "Prefix", affix = "Chosen", "+(365-400) to Evasion Rating", "+(31-35) to maximum Energy Shield", statOrder = { 1455, 1469 }, level = 60, group = "EvasionRatingAndEnergyShield", weightKey = { "belt", "quiver", "default", }, weightVal = { 1500, 1500, 0 }, modTags = { "unveiled_mod", "defences", "evasion", "energy_shield" }, }, + ["JunMasterVeiledFlaskEffect"] = { type = "Prefix", affix = "Chosen", "Flasks applied to you have (9-10)% increased Effect", statOrder = { 2652 }, level = 60, group = "FlaskEffect", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "unveiled_mod" }, }, + ["JunMasterVeiledChanceToNotConsumeFlaskCharges"] = { type = "Prefix", affix = "Chosen", "(9-10)% chance for Flasks you use to not consume Charges", statOrder = { 4137 }, level = 60, group = "FlaskChanceToNotConsumeCharges", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "unveiled_mod" }, }, + ["JunMasterVeiledFlaskEffectAndFlaskChargesGained"] = { type = "Prefix", affix = "Chosen", "33% reduced Flask Charges gained", "Flasks applied to you have (15-18)% increased Effect", statOrder = { 2092, 2652 }, level = 60, group = "FlaskEffectAndFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1500, 0 }, modTags = { "flask", "unveiled_mod" }, }, + ["JunMasterVeiledFlaskEffectAndFlaskChargesGainedNew"] = { type = "Suffix", affix = "of the Order", "33% reduced Flask Charges gained", "Flasks applied to you have (15-18)% increased Effect", statOrder = { 2092, 2652 }, level = 60, group = "FlaskEffectAndFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "unveiled_mod" }, }, + ["JunMasterVeiledGlobalCooldownRecovery"] = { type = "Suffix", affix = "of the Order", "(13-16)% increased Cooldown Recovery Rate", statOrder = { 4899 }, level = 60, group = "GlobalCooldownRecovery", weightKey = { "belt", "default", }, weightVal = { 1500, 0 }, modTags = { "unveiled_mod" }, }, + ["JunMasterVeiledDamagePerEnduranceCharge1h"] = { type = "Suffix", affix = "of the Order", "(5-6)% increased Damage per Endurance Charge", statOrder = { 3107 }, level = 60, group = "DamagePerEnduranceCharge", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "damage" }, }, + ["JunMasterVeiledDamagePerEnduranceCharge2h"] = { type = "Suffix", affix = "of the Order", "(7-8)% increased Damage per Endurance Charge", statOrder = { 3107 }, level = 60, group = "DamagePerEnduranceCharge", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "damage" }, }, + ["JunMasterVeiledDamagePerFrenzyCharge1h"] = { type = "Suffix", affix = "of the Order", "(5-6)% increased Damage per Frenzy Charge", statOrder = { 3194 }, level = 60, group = "DamagePerFrenzyCharge", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "damage" }, }, + ["JunMasterVeiledDamagePerFrenzyCharge2h__"] = { type = "Suffix", affix = "of the Order", "(7-8)% increased Damage per Frenzy Charge", statOrder = { 3194 }, level = 60, group = "DamagePerFrenzyCharge", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "damage" }, }, + ["JunMasterVeiledDamagePerPowerCharge1h_"] = { type = "Suffix", affix = "of the Order", "(5-6)% increased Damage per Power Charge", statOrder = { 5961 }, level = 60, group = "IncreasedDamagePerPowerCharge", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "damage" }, }, + ["JunMasterVeiledDamagePerPowerCharge2h"] = { type = "Suffix", affix = "of the Order", "(7-8)% increased Damage per Power Charge", statOrder = { 5961 }, level = 60, group = "IncreasedDamagePerPowerCharge", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "damage" }, }, + ["JunMasterVeiledPhysicalDamageConvertedToFire_"] = { type = "Prefix", affix = "Chosen", "(30-35)% of Physical Damage Converted to Fire Damage", statOrder = { 1864 }, level = 60, group = "ConvertPhysicalToFire", weightKey = { "gloves", "default", }, weightVal = { 2000, 0 }, modTags = { "physical_damage", "elemental_damage", "unveiled_mod", "damage", "physical", "elemental", "fire" }, }, + ["JunMasterVeiledPhysicalDamageConvertedToCold"] = { type = "Prefix", affix = "Chosen", "(30-35)% of Physical Damage Converted to Cold Damage", statOrder = { 1866 }, level = 60, group = "ConvertPhysicalToCold", weightKey = { "gloves", "default", }, weightVal = { 2000, 0 }, modTags = { "physical_damage", "elemental_damage", "unveiled_mod", "damage", "physical", "elemental", "cold" }, }, + ["JunMasterVeiledPhysicalDamageConvertedToLightning"] = { type = "Prefix", affix = "Chosen", "(30-35)% of Physical Damage Converted to Lightning Damage", statOrder = { 1868 }, level = 60, group = "ConvertPhysicalToLightning", weightKey = { "gloves", "default", }, weightVal = { 2000, 0 }, modTags = { "physical_damage", "elemental_damage", "unveiled_mod", "damage", "physical", "elemental", "lightning" }, }, + ["JunMasterVeiledMaximumZombieAndSkeleton"] = { type = "Prefix", affix = "Chosen", "Minions have (8-10)% increased maximum Life", "+1 to maximum number of Raised Zombies", "+1 to maximum number of Skeletons", statOrder = { 1677, 2069, 2071 }, level = 60, group = "MaximumMinionCountAndMinionLife", weightKey = { "helmet", "body_armour", "default", }, weightVal = { 2000, 0, 0 }, modTags = { "unveiled_mod", "minion" }, }, + ["JunMasterVeiledEffectOfAilments__"] = { type = "Suffix", affix = "of the Order", "(33-40)% increased Effect of Non-Damaging Ailments", statOrder = { 9296 }, level = 60, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "boots", "amulet", "default", }, weightVal = { 1500, 1500, 0 }, modTags = { "unveiled_mod", "ailment" }, }, + ["JunMasterVeiledMaximumCurse"] = { type = "Prefix", affix = "Chosen", "You can apply an additional Curse", statOrder = { 2077 }, level = 60, group = "AdditionalCurseOnEnemies", weightKey = { "body_armour", "default", }, weightVal = { 0, 0 }, modTags = { "unveiled_mod", "caster", "curse" }, }, + ["JunMasterVeiledCurseEffect"] = { type = "Suffix", affix = "of the Order", "(8-10)% increased Effect of your Curses", statOrder = { 2505 }, level = 60, group = "CurseEffectiveness", weightKey = { "shield", "default", }, weightVal = { 3000, 0 }, modTags = { "unveiled_mod", "caster", "curse" }, }, + ["JunMasterVeiledLifeRegeneration"] = { type = "Suffix", affix = "of the Order", "Regenerate (1.03-1.33)% of Life per second", statOrder = { 1853 }, level = 60, group = "LifeRegenerationRatePercentage", weightKey = { "shield", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "unveiled_mod", "life" }, }, + ["JunMasterVeiledAvoidElementalDamageChanceDuringSoulGainPrevention"] = { type = "Suffix", affix = "of the Order", "(10-12)% chance to Avoid Elemental Damage from Hits during Soul Gain Prevention", statOrder = { 4839 }, level = 60, group = "AvoidElementalDamageChanceDuringSoulGainPrevention", weightKey = { "helmet", "body_armour", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "unveiled_mod", "elemental" }, }, + ["JunMasterVeiledPhysicalDamageReductionRatingDuringSoulGainPrevention"] = { type = "Prefix", affix = "Chosen", "+(3201-4000) to Armour during Soul Gain Prevention", statOrder = { 9439 }, level = 60, group = "PhysicalDamageReductionRatingDuringSoulGainPrevention", weightKey = { "shield", "body_armour", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "unveiled_mod", "physical" }, }, + ["JunMasterVeiledGainOnslaughtDuringSoulGainPrevention"] = { type = "Suffix", affix = "of the Order", "You have Onslaught during Soul Gain Prevention", statOrder = { 6665 }, level = 60, group = "GainOnslaughtDuringSoulGainPrevention", weightKey = { "gloves", "boots", "default", }, weightVal = { 1500, 1500, 0 }, modTags = { "unveiled_mod" }, }, + ["JunMasterVeiledDamageWithNonVaalSkillsDuringSoulGainPrevention_"] = { type = "Suffix", affix = "of the Order", "(71-80)% increased Damage with Non-Vaal Skills during Soul Gain Prevention", statOrder = { 5979 }, level = 60, group = "DamageWithNonVaalSkillsDuringSoulGainPrevention", weightKey = { "gloves", "boots", "default", }, weightVal = { 1500, 1500, 0 }, modTags = { "unveiled_mod", "damage" }, }, + ["JunMasterVeiledSkillAreaOfEffectPercentAndAreaOfEffectGemLevel"] = { type = "Prefix", affix = "Chosen", "+2 to Level of Socketed AoE Gems", "(8-10)% increased Area of Effect", statOrder = { 156, 1791 }, level = 60, group = "SkillAreaOfEffectPercentAndAreaOfEffectGemLevel", weightKey = { "helmet", "default", }, weightVal = { 1500, 0 }, modTags = { "unveiled_mod", "gem" }, }, + ["JunMasterVeiledProjectilePierceAndProjectileGemLevel"] = { type = "Prefix", affix = "Chosen", "+2 to Level of Socketed Projectile Gems", "Projectiles Pierce an additional Target", statOrder = { 157, 1701 }, level = 60, group = "ProjectilePierceAndProjectileGemLevel", weightKey = { "helmet", "default", }, weightVal = { 1500, 0 }, modTags = { "unveiled_mod", "gem" }, }, + ["JunMasterVeiledMeleeRangeAndMeleeGemLevel"] = { type = "Prefix", affix = "Chosen", "+2 to Level of Socketed Melee Gems", "+0.2 metres to Melee Strike Range", statOrder = { 159, 2443 }, level = 60, group = "MeleeRangeAndMeleeGemLevel", weightKey = { "helmet", "default", }, weightVal = { 1500, 0 }, modTags = { "unveiled_mod", "attack", "attack", "gem" }, }, + ["JunMasterVeiledCriticalStrikeMultiplierIfRareOrUniqueEnemyNearby1h"] = { type = "Suffix", affix = "of the Order", "+(36-40)% Critical Strike Multiplier while a Rare or Unique Enemy is Nearby", statOrder = { 5858 }, level = 60, group = "CriticalStrikeMultiplierIfRareOrUniqueEnemyNearby", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "damage", "critical" }, }, + ["JunMasterVeiledCriticalStrikeMultiplierIfRareOrUniqueEnemyNearby2h"] = { type = "Suffix", affix = "of the Order", "+(54-60)% Critical Strike Multiplier while a Rare or Unique Enemy is Nearby", statOrder = { 5858 }, level = 60, group = "CriticalStrikeMultiplierIfRareOrUniqueEnemyNearby", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "damage", "critical" }, }, + ["JunMasterVeiledAttackSpeedPercentIfRareOrUniqueEnemyNearby1h"] = { type = "Suffix", affix = "of the Order", "(12-15)% increased Attack Speed while a Rare or Unique Enemy is Nearby", statOrder = { 4797 }, level = 60, group = "AttackSpeedPercentIfRareOrUniqueEnemyNearby", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "attack", "speed" }, }, + ["JunMasterVeiledAttackSpeedPercentIfRareOrUniqueEnemyNearby2h"] = { type = "Suffix", affix = "of the Order", "(27-30)% increased Attack Speed while a Rare or Unique Enemy is Nearby", statOrder = { 4797 }, level = 60, group = "AttackSpeedPercentIfRareOrUniqueEnemyNearby", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "attack", "speed" }, }, + ["JunMasterVeiledEnergyShieldRegenerationRatePerMinuteIfRareOrUniqueEnemyNearby"] = { type = "Suffix", affix = "of the Order", "Regenerate 200 Energy Shield per second while a Rare or Unique Enemy is Nearby", statOrder = { 6343 }, level = 60, group = "EnergyShieldRegenerationRatePerMinuteIfRareOrUniqueEnemyNearby", weightKey = { "body_armour", "belt", "default", }, weightVal = { 1500, 1500, 0 }, modTags = { "unveiled_mod", "defences", "energy_shield" }, }, + ["JunMasterVeiledCriticalChanceAndGainFrenzyChargeOnCriticalStrikePercent"] = { type = "Suffix", affix = "of the Order", "(18-20)% increased Global Critical Strike Chance", "(6-7)% chance to gain a Frenzy Charge on Critical Strike", statOrder = { 1370, 6640 }, level = 60, group = "CriticalChanceAndGainFrenzyChargeOnCriticalStrikePercent", weightKey = { "quiver", "default", }, weightVal = { 1500, 0 }, modTags = { "frenzy_charge", "unveiled_mod", "critical" }, }, + ["JunMasterVeiledCriticalChanceAndElementalDamagePercentIfHaveCritRecently"] = { type = "Suffix", affix = "of the Order", "(20-22)% increased Global Critical Strike Chance", "(27-30)% increased Elemental Damage if you've dealt a Critical Strike Recently", statOrder = { 1370, 6196 }, level = 60, group = "CriticalChanceAndElementalDamagePercentIfHaveCritRecently", weightKey = { "gloves", "quiver", "default", }, weightVal = { 1500, 1500, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "critical" }, }, + ["JunMasterVeiledCriticalChanceAndAddedChaosDamageIfHaveCritRecently_"] = { type = "Suffix", affix = "of the Order", "(20-22)% increased Global Critical Strike Chance", "Adds (22-25) to (28-32) Chaos Damage if you've dealt a Critical Strike Recently", statOrder = { 1370, 9035 }, level = 60, group = "CriticalChanceAndAddedChaosDamageIfHaveCritRecently", weightKey = { "gloves", "quiver", "default", }, weightVal = { 1500, 1500, 0 }, modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos", "critical" }, }, + ["JunMasterVeiledBaseLifeAndMana_"] = { type = "Prefix", affix = "Chosen", "+(55-60) to maximum Life", "+(55-60) to maximum Mana", statOrder = { 1480, 1490 }, level = 60, group = "BaseLifeAndMana", weightKey = { "helmet", "boots", "gloves", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "resource", "unveiled_mod", "life", "mana" }, }, + ["JunMasterVeiledBaseLifeAndManaRegen_"] = { type = "Prefix", affix = "Chosen", "+(55-60) to maximum Life", "Regenerate 5.3 Mana per second", statOrder = { 1480, 1493 }, level = 60, group = "BaseLifeAndManaRegen", weightKey = { "helmet", "boots", "gloves", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "mana" }, }, + ["JunMasterVeiledBaseManaAndLifeRegen__"] = { type = "Prefix", affix = "Chosen", "Regenerate 33.3 Life per second", "+(55-60) to maximum Mana", statOrder = { 1485, 1490 }, level = 60, group = "BaseManaAndLifeRegen", weightKey = { "helmet", "boots", "gloves", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "mana" }, }, + ["JunMasterVeiledSummonTotemCastSpeed_"] = { type = "Suffix", affix = "of the Order", "(36-40)% increased Totem Placement speed", statOrder = { 2487 }, level = 60, group = "SummonTotemCastSpeed", weightKey = { "boots", "amulet", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "unveiled_mod", "speed" }, }, + ["JunMasterVeiledTrapThrowSpeed_"] = { type = "Suffix", affix = "of the Order", "(14-16)% increased Trap Throwing Speed", statOrder = { 1836 }, level = 60, group = "TrapThrowSpeed", weightKey = { "amulet", "belt", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "unveiled_mod", "speed" }, }, + ["JunMasterVeiledMineLayingSpeed"] = { type = "Suffix", affix = "of the Order", "(14-16)% increased Mine Throwing Speed", statOrder = { 1837 }, level = 60, group = "MineLayingSpeed", weightKey = { "amulet", "helmet", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "unveiled_mod", "speed" }, }, + ["JunMasterVeiledBrandAttachmentRange"] = { type = "Suffix", affix = "of the Order", "(25-28)% increased Brand Attachment range", statOrder = { 9827 }, level = 60, group = "BrandAttachmentRange", weightKey = { "amulet", "gloves", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "unveiled_mod", "caster" }, }, + ["JunMasterVeiledAddedFireAndColdDamage"] = { type = "Prefix", affix = "Chosen", "Adds (14-16) to (20-22) Fire Damage", "Adds (14-16) to (20-22) Cold Damage", statOrder = { 1270, 1279 }, level = 60, group = "AddedFireAndColdDamage", weightKey = { "shield", "ring", "quiver", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "cold" }, }, + ["JunMasterVeiledAddedFireAndColdDamageQuiver_"] = { type = "Prefix", affix = "Chosen", "Adds (9-10) to (13-14) Fire Damage", "Adds (9-10) to (13-14) Cold Damage", statOrder = { 1270, 1279 }, level = 60, group = "AddedFireAndColdDamage", weightKey = { "quiver", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "cold" }, }, + ["JunMasterVeiledAddedFireAndLightningDamage"] = { type = "Prefix", affix = "Chosen", "Adds (14-16) to (20-22) Fire Damage", "Adds (14-16) to (20-22) Lightning Damage", statOrder = { 1270, 1290 }, level = 60, group = "AddedFireAndLightningDamage", weightKey = { "shield", "ring", "quiver", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "lightning" }, }, + ["JunMasterVeiledAddedFireAndLightningDamageQuiver_"] = { type = "Prefix", affix = "Chosen", "Adds (9-10) to (13-14) Fire Damage", "Adds (9-10) to (13-14) Lightning Damage", statOrder = { 1270, 1290 }, level = 60, group = "AddedFireAndLightningDamage", weightKey = { "quiver", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "lightning" }, }, + ["JunMasterVeiledAddedColdAndLightningDamage"] = { type = "Prefix", affix = "Chosen", "Adds (14-16) to (20-22) Cold Damage", "Adds (14-16) to (20-22) Lightning Damage", statOrder = { 1279, 1290 }, level = 60, group = "AddedColdAndLightningDamage", weightKey = { "shield", "ring", "quiver", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "cold", "lightning" }, }, + ["JunMasterVeiledAddedColdAndLightningDamageQuiver"] = { type = "Prefix", affix = "Chosen", "Adds (9-10) to (13-14) Cold Damage", "Adds (9-10) to (13-14) Lightning Damage", statOrder = { 1279, 1290 }, level = 60, group = "AddedColdAndLightningDamage", weightKey = { "quiver", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "cold", "lightning" }, }, + ["JunMasterVeiledLuckyCriticalsDuringFocus"] = { type = "Suffix", affix = "of the Order", "Your Critical Strike Chance is Lucky while Focused", "Focus has (5-8)% increased Cooldown Recovery Rate", statOrder = { 6416, 6539 }, level = 60, group = "LuckyCriticalsDuringFocusCDR", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "critical" }, }, + ["JunMasterVeiledDodgeChanceDuringFocus_"] = { type = "Prefix", affix = "Chosen", "(30-32)% increased Evasion Rating while Focused", statOrder = { 6365 }, level = 60, group = "DodgeChanceDuringFocus", weightKey = { "helmet", "boots", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "unveiled_mod", "defences", "evasion" }, }, + ["JunMasterVeiledPhysicalDamageReductionDuringFocus_"] = { type = "Prefix", affix = "Chosen", "(13-15)% additional Physical Damage Reduction while Focused", statOrder = { 4477 }, level = 60, group = "PhysicalDamageReductionDuringFocus", weightKey = { "helmet", "gloves", "default", }, weightVal = { 1500, 1500, 0 }, modTags = { "unveiled_mod", "physical" }, }, + ["JunMasterVeiledShockNearbyEnemiesOnFocus"] = { type = "Suffix", affix = "of the Order", "Focus has (5-8)% increased Cooldown Recovery Rate", "Shock nearby Enemies for 4 Seconds when you Focus", statOrder = { 6539, 9797 }, level = 60, group = "ShockNearbyEnemiesOnFocusCDR", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "elemental", "lightning", "ailment" }, }, + ["JunMasterVeiledLifeRegenerationPerEvasionDuringFocus"] = { type = "Suffix", affix = "of the Order", "1.5% of Evasion Rating is Regenerated as Life per second while Focused", statOrder = { 6373 }, level = 60, group = "LifeRegenerationPerEvasionDuringFocus", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "unveiled_mod", "life" }, }, + ["JunMasterVeiledRestoreManaAndEnergyShieldOnFocus"] = { type = "Suffix", affix = "of the Order", "Recover (37-40)% of Mana and Energy Shield when you Focus", statOrder = { 9710 }, level = 60, group = "RestoreManaAndEnergyShieldOnFocus", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "unveiled_mod", "mana", "defences", "energy_shield" }, }, + ["JunMasterVeiledChanceToDealDoubleDamageWhileFocused2h_"] = { type = "Suffix", affix = "of the Order", "(36-40)% chance to deal Double Damage while Focused", statOrder = { 5564 }, level = 60, group = "ChanceToDealDoubleDamageWhileFocused", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "damage" }, }, + ["JunMasterVeiledChanceToDealDoubleDamageWhileFocused1h"] = { type = "Suffix", affix = "of the Order", "(18-20)% chance to deal Double Damage while Focused", statOrder = { 5564 }, level = 60, group = "ChanceToDealDoubleDamageWhileFocused", weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "unveiled_mod", "damage" }, }, + ["JunMasterVeiledAttackAndCastSpeedWhileFocused_"] = { type = "Suffix", affix = "of the Order", "(45-50)% increased Attack and Cast Speed while Focused", statOrder = { 4720 }, level = 60, group = "AttackAndCastSpeedWhileFocused", weightKey = { "gloves", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod", "attack", "caster", "speed" }, }, + ["JunMasterVeiledStatusAilmentsYouInflictDurationWhileFocused_"] = { type = "Suffix", affix = "of the Order", "(36-40)% increased Duration of Ailments you inflict while Focused", statOrder = { 10008 }, level = 60, group = "StatusAilmentsYouInflictDurationWhileFocused", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "ailment" }, }, + ["JunMasterVeiledImmuneToStatusAilmentsWhileFocused"] = { type = "Suffix", affix = "of the Order", "Focus has (5-8)% increased Cooldown Recovery Rate", "You are Immune to Ailments while Focused", statOrder = { 6539, 7104 }, level = 60, group = "ImmuneToStatusAilmentsWhileFocusedCDR", weightKey = { "boots", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod", "ailment" }, }, + ["JunMasterVeiledFocusCooldownRecovery_"] = { type = "Suffix", affix = "of the Order", "Focus has (31-35)% increased Cooldown Recovery Rate", statOrder = { 6539 }, level = 60, group = "FocusCooldownRecovery", weightKey = { "boots", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod" }, }, + ["JunMasterVeiledLifeLeechFromAnyDamageAndVaalPactWhileFocused"] = { type = "Suffix", affix = "of the Order", "You have Vaal Pact while Focused", "15% of Damage Leeched as Life while Focused", statOrder = { 6713, 7222 }, level = 60, group = "LifeLeechFromAnyDamagePermyriadWhileFocusedAndVaalPact", weightKey = { "amulet", "default", }, weightVal = { 3000, 0 }, modTags = { "resource", "unveiled_mod", "life" }, }, + ["JunMasterVeiledFortifyEffectWhileFocused_"] = { type = "Suffix", affix = "of the Order", "+10 to maximum Fortification while Focused", statOrder = { 8937 }, level = 60, group = "FortifyEffectWhileFocused", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod" }, }, + ["JunMasterVeiledTriggerSocketedSpellWhenYouFocus"] = { type = "Suffix", affix = "of the Order", "Trigger Socketed Spells when you Focus, with a 0.25 second Cooldown", "Focus has (5-8)% increased Cooldown Recovery Rate", statOrder = { 748, 6539 }, level = 60, group = "TriggerSocketedSpellWhenYouFocusCDR", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { "skill", "unveiled_mod", "caster", "gem" }, }, + ["JunMasterVeiledDamageRemovedFromManaBeforeLifeWhileFocused"] = { type = "Suffix", affix = "of the Order", "(18-22)% of Damage is taken from Mana before Life while Focused", statOrder = { 5984 }, level = 60, group = "DamageRemovedFromManaBeforeLifeWhileFocused", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "mana" }, }, + ["JunMasterVeiledMinionsRecoverMaximumLifeWhenYouFocus_"] = { type = "Suffix", affix = "of the Order", "Focus has (5-8)% increased Cooldown Recovery Rate", "Minions Recover 100% of their Life when you Focus", statOrder = { 6539, 9172 }, level = 60, group = "MinionsRecoverMaximumLifeWhenYouFocusCDR", weightKey = { "gloves", "default", }, weightVal = { 2000, 0 }, modTags = { "resource", "unveiled_mod", "life", "minion" }, }, + ["JunMasterVeiledGainVaalPactWhileFocused"] = { type = "Suffix", affix = "of the Order", "You have Vaal Pact while Focused", statOrder = { 6713 }, level = 60, group = "GainVaalPactWhileFocused", weightKey = { "ring", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "unveiled_mod", "life" }, }, + ["JunMasterVeiledSkillsCostNoManaWhileFocused"] = { type = "Suffix", affix = "of the Order", "Focus has (5-8)% increased Cooldown Recovery Rate", "Non-Aura Skills Cost no Mana or Life while Focused", statOrder = { 6539, 9849 }, level = 60, group = "SkillsCostNoManaWhileFocusedCDR", weightKey = { "amulet", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "unveiled_mod", "mana" }, }, + ["JunMasterVeiledAllDamage"] = { type = "Prefix", affix = "Leo's", "(20-23)% increased Damage", statOrder = { 1103 }, level = 60, group = "AllDamage", weightKey = { "leo_veiled_prefix", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod", "damage" }, }, + ["JunMasterVeiledLocalIncreaseSocketedSupportGemLevel"] = { type = "Prefix", affix = "Catarina's", "+2 to Level of Socketed Support Gems", "+(5-8)% to Quality of Socketed Support Gems", statOrder = { 169, 184 }, level = 60, group = "LocalIncreaseSocketedSupportGemLevelAndQuality", weightKey = { "helmet", "quiver", "flask", "shield", "body_armour", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod", "gem" }, }, + ["JunMasterVeiledChaosExplosionOnKill"] = { type = "Prefix", affix = "Catarina's", "Enemies you Kill have a (15-25)% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage", statOrder = { 3213 }, level = 60, group = "ObliterationExplodeOnKillChaos", weightKey = { "helmet", "quiver", "flask", "shield", "body_armour", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos" }, }, + ["JunMasterVeiledSupportedByCastOnCritAndSpellDamage"] = { type = "Prefix", affix = "Catarina's", "Socketed Gems are supported by Level 1 Cast On Critical Strike", "(80-89)% increased Spell Damage", statOrder = { 399, 1135 }, level = 60, group = "CastOnCritAndSpellDamage", weightKey = { "helmet", "quiver", "flask", "shield", "body_armour", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "support_gem", "caster_damage", "unveiled_mod", "damage", "caster", "critical" }, }, + ["JunMasterVeiledSupportedByCastWhileChannelingAndSpellDamage"] = { type = "Prefix", affix = "Catarina's", "Socketed Gems are Supported by Level 1 Cast While Channelling", "(80-89)% increased Spell Damage", statOrder = { 217, 1135 }, level = 60, group = "CastWhileChannelingAndSpellDamage", weightKey = { "helmet", "quiver", "flask", "shield", "body_armour", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "support_gem", "caster_damage", "unveiled_mod", "damage", "caster" }, }, + ["JunMasterVeiledSupportedByArcaneSurgeAndSpellDamage"] = { type = "Prefix", affix = "Catarina's", "Socketed Gems are Supported by Level 1 Arcane Surge", "(80-89)% increased Spell Damage", statOrder = { 204, 1135 }, level = 60, group = "ArcaneSurgeAndSpellDamage", weightKey = { "helmet", "quiver", "flask", "shield", "body_armour", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "support_gem", "caster_damage", "unveiled_mod", "damage", "caster" }, }, + ["JunMasterVeiledReduceGlobalFlatManaCost"] = { type = "Prefix", affix = "Elreon's", "-(10-9) to Total Mana Cost of Skills", statOrder = { 1802 }, level = 60, group = "IncreaseManaCostFlat", weightKey = { "elreon_veiled_prefix", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "unveiled_mod", "mana" }, }, + ["JunMasterVeiledReduceGlobalFlatManaCostChannelling_"] = { type = "Prefix", affix = "Elreon's", "Channelling Skills have -4 to Total Mana Cost", statOrder = { 9844 }, level = 60, group = "ManaCostTotalChannelled", weightKey = { "elreon_veiled_prefix", "default", }, weightVal = { 2000, 0 }, modTags = { "resource", "unveiled_mod", "mana" }, }, + ["JunMasterVeiledReduceGlobalFlatManaCostNonChannelling"] = { type = "Prefix", affix = "Elreon's", "Non-Channelling Skills have -(10-9) to Total Mana Cost", statOrder = { 9846 }, level = 60, group = "ManaCostTotalNonChannelled", weightKey = { "elreon_veiled_prefix", "default", }, weightVal = { 2000, 0 }, modTags = { "resource", "unveiled_mod", "mana" }, }, + ["JunMasterVeiledDamageWhileLeeching"] = { type = "Prefix", affix = "Vorici's", "(54-60)% increased Damage while Leeching", statOrder = { 2971 }, level = 60, group = "DamageWhileLeeching", weightKey = { "vorici_veiled_prefix", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod", "damage" }, }, + ["JunMasterVeiledSocketedGemQuality"] = { type = "Prefix", affix = "Haku's", "+(9-10)% to Quality of Socketed Gems", statOrder = { 183 }, level = 60, group = "SocketedGemQuality", weightKey = { "haku_veiled_prefix", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod", "gem" }, }, + ["JunMasterVeiledBleedOnHitGained1h"] = { type = "Prefix", affix = "Tora's", "Adds (12-14) to (18-20) Physical Damage", "40% chance to cause Bleeding on Hit", statOrder = { 1187, 2392 }, level = 60, group = "LocalAddedPhysicalDamageAndCausesBleeding", weightKey = { "tora_veiled_prefix", "default", }, weightVal = { 2000, 0 }, modTags = { "physical_damage", "bleed", "unveiled_mod", "damage", "physical", "attack", "ailment" }, }, + ["JunMasterVeiledBleedOnHitGained2h"] = { type = "Prefix", affix = "Tora's", "Adds (17-20) to (26-28) Physical Damage", "40% chance to cause Bleeding on Hit", statOrder = { 1187, 2392 }, level = 60, group = "LocalAddedPhysicalDamageAndCausesBleeding", weightKey = { "tora_veiled_prefix", "default", }, weightVal = { 2000, 0 }, modTags = { "physical_damage", "bleed", "unveiled_mod", "damage", "physical", "attack", "ailment" }, }, + ["JunMasterVeiledAlwaysHits"] = { type = "Prefix", affix = "Vagan's", "Hits can't be Evaded", statOrder = { 1952 }, level = 60, group = "AlwaysHits", weightKey = { "vagan_veiled_prefix", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod", "attack" }, }, + ["JunMasterVeiledDamageDuringFlaskEffect"] = { type = "Prefix", affix = "Brinerot", "(36-40)% increased Damage during any Flask Effect", statOrder = { 3990 }, level = 60, group = "DamageDuringFlaskEffect", weightKey = { "brinerot_veiled_prefix", "default", }, weightVal = { 2000, 0 }, modTags = { "flask", "unveiled_mod", "damage" }, }, + ["JunMasterVeiledItemRarityFromRareAndUniqueEnemies_"] = { type = "Suffix", affix = "of Janus", "(55-60)% increased Rarity of Items Dropped by Slain Rare or Unique Enemies", statOrder = { 9617 }, level = 60, group = "RareOrUniqueMonsterDroppedItemRarity", weightKey = { "janus_veiled_suffix", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod", "drop" }, }, + ["JunMasterVeiledFireAddedAsChaos1h_"] = { type = "Prefix", affix = "It's", "Gain (9-10)% of Fire Damage as Extra Chaos Damage", statOrder = { 1850 }, level = 60, group = "FireAddedAsChaos", weightKey = { "two_hand_weapon", "it_veiled_prefix", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "fire", "chaos" }, }, + ["JunMasterVeiledColdAddedAsChaos1h"] = { type = "Prefix", affix = "It's", "Gain (9-10)% of Cold Damage as Extra Chaos Damage", statOrder = { 1849 }, level = 60, group = "ColdAddedAsChaos", weightKey = { "two_hand_weapon", "it_veiled_prefix", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "cold", "chaos" }, }, + ["JunMasterVeiledLightningAddedAsChaos1h"] = { type = "Prefix", affix = "It's", "Gain (9-10)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1847 }, level = 60, group = "LightningAddedAsChaos", weightKey = { "two_hand_weapon", "it_veiled_prefix", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "lightning", "chaos" }, }, + ["JunMasterVeiledPhysicalAddedAsChaos1h"] = { type = "Prefix", affix = "It's", "Gain (9-10)% of Physical Damage as Extra Chaos Damage", statOrder = { 1844 }, level = 60, group = "PhysicalAddedAsChaos", weightKey = { "two_hand_weapon", "it_veiled_prefix", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "physical_damage", "chaos_damage", "unveiled_mod", "damage", "physical", "chaos" }, }, + ["JunMasterVeiledFireAddedAsChaos2h_"] = { type = "Prefix", affix = "It's", "Gain (18-20)% of Fire Damage as Extra Chaos Damage", statOrder = { 1850 }, level = 60, group = "FireAddedAsChaos", weightKey = { "one_hand_weapon", "shield", "it_veiled_prefix", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "fire", "chaos" }, }, + ["JunMasterVeiledColdAddedAsChaos2h_"] = { type = "Prefix", affix = "It's", "Gain (18-20)% of Cold Damage as Extra Chaos Damage", statOrder = { 1849 }, level = 60, group = "ColdAddedAsChaos", weightKey = { "one_hand_weapon", "shield", "it_veiled_prefix", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "cold", "chaos" }, }, + ["JunMasterVeiledLightningAddedAsChaos2h__"] = { type = "Prefix", affix = "It's", "Gain (18-20)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1847 }, level = 60, group = "LightningAddedAsChaos", weightKey = { "one_hand_weapon", "shield", "it_veiled_prefix", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "lightning", "chaos" }, }, + ["JunMasterVeiledPhysicalAddedAsChaos2h_"] = { type = "Prefix", affix = "It's", "Gain (18-20)% of Physical Damage as Extra Chaos Damage", statOrder = { 1844 }, level = 60, group = "PhysicalAddedAsChaos", weightKey = { "one_hand_weapon", "shield", "it_veiled_prefix", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical_damage", "chaos_damage", "unveiled_mod", "damage", "physical", "chaos" }, }, + ["JunMasterVeiledPercentageAllAttributes"] = { type = "Suffix", affix = "of Hillock", "(7-8)% increased Attributes", statOrder = { 1095 }, level = 60, group = "PercentageAllAttributes", weightKey = { "hillock_veiled_suffix", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod", "attribute" }, }, + ["JunMasterVeiledLifeAddedAsEnergyShield"] = { type = "Prefix", affix = "Gravicius'", "Gain (12-14)% of Maximum Life as Extra Maximum Energy Shield", statOrder = { 8974 }, level = 60, group = "LifeAddedAsEnergyShield", weightKey = { "gravicius_veiled_prefix", "default", }, weightVal = { 0, 0 }, modTags = { "unveiled_mod", "defences", "energy_shield" }, }, + ["JunMasterVeiledPhysicalTakenAsFireAndLightning"] = { type = "Prefix", affix = "Gravicius'", "(8-9)% of Physical Damage from Hits taken as Fire Damage", "(8-9)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2356, 2358 }, level = 60, group = "PhysicalDamageTakenAsFireAndLightningPercent", weightKey = { "gravicius_veiled_prefix", "default", }, weightVal = { 0, 0 }, modTags = { "unveiled_mod", "physical", "elemental", "fire", "lightning" }, }, + ["JunMasterVeiledBannerEffect"] = { type = "Prefix", affix = "Gravicius'", "Banner Skills have (26-35)% increased Aura Effect", statOrder = { 3270 }, level = 60, group = "BannerEffect", weightKey = { "gravicius_veiled_prefix", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod", "aura" }, }, + ["JunMasterVeiledWolfOnKill___"] = { type = "Suffix", affix = "Jorgin's", "Trigger Level 10 Summon Spectral Wolf on Kill", statOrder = { 705 }, level = 60, group = "SummonWolfOnKillOld", weightKey = { "jorgin_veiled_suffix", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod", "minion" }, }, + ["JunMasterVeiledPhysicalDamageTakenAsFirePercent__"] = { type = "Prefix", affix = "Korell's", "(9-10)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2356 }, level = 60, group = "PhysicalDamageTakenAsFirePercent", weightKey = { "keema_veiled_prefix", "default", }, weightVal = { 0, 0 }, modTags = { "unveiled_mod", "physical", "elemental", "fire" }, }, + ["JunMasterVeiledWarcryBuffEffect"] = { type = "Prefix", affix = "Korell's", "(20-25)% increased Warcry Buff Effect", statOrder = { 10348 }, level = 60, group = "WarcryBuffEffect", weightKey = { "keema_veiled_prefix", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod" }, }, + ["JunMasterVeiledAvoidFreeze_"] = { type = "Prefix", affix = "Rin's", "(20-30)% chance to Avoid being Chilled", "100% chance to Avoid being Frozen", statOrder = { 1755, 1756 }, level = 60, group = "AvoidFreezeAndChill", weightKey = { "rin_veiled_prefix", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod", "elemental", "cold", "ailment" }, }, + ["JunMasterVeiledCriticalMultiplierOnShatter_"] = { type = "Suffix", affix = "of Cameria", "(20-22)% increased Global Critical Strike Chance", "+(27-30)% to Critical Strike Multiplier if you've Shattered an Enemy Recently", statOrder = { 1370, 5855 }, level = 60, group = "CritChanceAndCriticalStrikeMultiplierIfEnemyShatteredRecently", weightKey = { "cameria_veiled_suffix", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod", "damage", "critical" }, }, + ["JunMasterVeiledIncreasedChaosAndPhysicalDamage"] = { type = "Suffix", affix = "of Aisling", "(20-22)% increased Global Physical Damage", "(18-20)% increased Chaos Damage", statOrder = { 1143, 1296 }, level = 60, group = "IncreasedChaosAndPhysicalDamage", weightKey = { "aislin_veiled_suffix", "default", }, weightVal = { 2000, 0 }, modTags = { "physical_damage", "chaos_damage", "unveiled_mod", "damage", "physical", "chaos" }, }, + ["JunMasterVeiledIncreasedFireAndLightningDamage"] = { type = "Suffix", affix = "of Riker", "(18-20)% increased Fire Damage", "(20-22)% increased Lightning Damage", statOrder = { 1268, 1288 }, level = 60, group = "IncreasedFireAndLightningDamage", weightKey = { "riker_veiled_suffix", "default", }, weightVal = { 2000, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "lightning" }, }, + ["JunMasterVeiledLocalFlaskLifeRegenerationPerMinuteDuringFlaskEffect"] = { type = "Prefix", affix = "of the Order", "Regenerate 3% of Life per second during Effect", statOrder = { 906 }, level = 60, group = "LocalFlaskLifeRegenerationPerMinuteDuringFlaskEffect", weightKey = { "flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "resource", "unveiled_mod", "life" }, }, + ["JunMasterVeiledLocalFlaskAvoidStunChanceAndMovementSpeedDuringFlaskEffect"] = { type = "Prefix", affix = "of the Order", "50% Chance to Avoid being Stunned during Effect", statOrder = { 885 }, level = 60, group = "LocalFlaskAvoidStunChanceAndMovementSpeedDuringFlaskEffect", weightKey = { "flask", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "unveiled_mod", "speed" }, }, + ["JunMasterVeiledLocalFlaskAvoidStunChanceDuringFlaskEffect"] = { type = "Prefix", affix = "of the Order", "50% Chance to Avoid being Stunned during Effect", statOrder = { 885 }, level = 60, group = "LocalFlaskAvoidStunChanceDuringFlaskEffect", weightKey = { "flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "unveiled_mod" }, }, + ["JunMasterVeiledLocalFlaskSkillManaCostDuringFlaskEffect"] = { type = "Prefix", affix = "of the Order", "(20-25)% reduced Mana Cost of Skills during Effect", statOrder = { 913 }, level = 60, group = "LocalFlaskSkillManaCostDuringFlaskEffect", weightKey = { "flask", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "resource", "unveiled_mod", "mana" }, }, + ["JunMasterVeiledLocalFlaskItemFoundRarityDuringFlaskEffect"] = { type = "Prefix", affix = "of the Order", "(20-30)% increased Rarity of Items found during Effect", statOrder = { 902 }, level = 60, group = "LocalFlaskItemFoundRarityDuringFlaskEffect", weightKey = { "flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "unveiled_mod", "drop" }, }, + ["JunMasterVeiledLocalFlaskCriticalStrikeChanceDuringFlaskEffect_"] = { type = "Prefix", affix = "of the Order", "(40-60)% increased Critical Strike Chance during Effect", statOrder = { 889 }, level = 60, group = "LocalFlaskCriticalStrikeChanceDuringFlaskEffect", weightKey = { "flask", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "unveiled_mod", "critical" }, }, + ["JunMasterVeiledLocalFlaskLifeLeechOnDamageTakenPermyriadDuringFlaskEffect"] = { type = "Prefix", affix = "of the Order", "15% of Damage Taken from Hits is Leeched as Life during Effect", statOrder = { 905 }, level = 60, group = "LocalFlaskLifeLeechOnDamageTakenPermyriadDuringFlaskEffect", weightKey = { "flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "resource", "unveiled_mod", "life" }, }, + ["JunMasterVeiledLocalAttackSpeedAndLocalItemQuality"] = { type = "Suffix", affix = "of the Order", "(18-22)% increased Attack Speed", "+(13-18)% to Quality", statOrder = { 1324, 7800 }, level = 60, group = "LocalAttackSpeedAndLocalItemQuality", weightKey = { "default", }, weightVal = { 0 }, modTags = { "unveiled_mod", "attack", "speed" }, }, + ["JunMasterVeiledLocalAttackSpeedAndLocalItemQualityRangedWeapon"] = { type = "Suffix", affix = "of the Order", "(12-15)% increased Attack Speed", "+(13-18)% to Quality", statOrder = { 1324, 7800 }, level = 60, group = "LocalAttackSpeedAndLocalItemQuality", weightKey = { "default", }, weightVal = { 0 }, modTags = { "unveiled_mod", "attack", "speed" }, }, + ["JunMasterVeiledLocalCriticalStrikeChanceAndLocalItemQuality"] = { type = "Suffix", affix = "of the Order", "(28-32)% increased Critical Strike Chance", "+(13-18)% to Quality", statOrder = { 1375, 7800 }, level = 60, group = "LocalCriticalStrikeChanceAndLocalItemQuality", weightKey = { "default", }, weightVal = { 0 }, modTags = { "unveiled_mod", "attack", "critical" }, }, + ["JunMasterVeiledLocalAccuracyRatingAndLocalItemQuality"] = { type = "Suffix", affix = "of the Order", "+(311-350) to Accuracy Rating", "+(16-18)% to Quality", statOrder = { 1933, 7800 }, level = 60, group = "LocalAccuracyRatingAndLocalItemQuality", weightKey = { "default", }, weightVal = { 0 }, modTags = { "unveiled_mod", "attack" }, }, + ["JunMasterVeiledLocalAttackSpeedDexterityIntelligence"] = { type = "Suffix", affix = "of the Order", "+(25-28) to Dexterity and Intelligence", "(18-22)% increased Attack Speed", statOrder = { 1094, 1324 }, level = 60, group = "LocalAttackSpeedDexterityIntelligence", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "unveiled_mod", "attack", "speed", "attribute" }, }, + ["JunMasterVeiledLocalAttackSpeedDexterityIntelligenceRanged"] = { type = "Suffix", affix = "of the Order", "+(25-28) to Dexterity and Intelligence", "(12-15)% increased Attack Speed", statOrder = { 1094, 1324 }, level = 60, group = "LocalAttackSpeedDexterityIntelligence", weightKey = { "wand", "bow", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "unveiled_mod", "attack", "speed", "attribute" }, }, + ["JunMasterVeiledLocalCriticalStrikeChanceStrengthIntelligence__"] = { type = "Suffix", affix = "of the Order", "+(25-28) to Strength and Intelligence", "(28-32)% increased Critical Strike Chance", statOrder = { 1093, 1375 }, level = 60, group = "LocalCriticalStrikeChanceStrengthIntelligence", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "attack", "critical", "attribute" }, }, + ["JunMasterVeiledLocalAccuracyRatingStrengthDexterity_"] = { type = "Suffix", affix = "of the Order", "+(25-28) to Strength and Dexterity", "+(311-350) to Accuracy Rating", statOrder = { 1092, 1933 }, level = 60, group = "LocalAccuracyRatingStrengthDexterity", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "attack", "attribute" }, }, + ["JunMasterVeiledLocalAttackSpeedAndLocalDisplayTriggerLevel1BloodRageOnKillChance_"] = { type = "Suffix", affix = "of the Order", "15% chance to Trigger Level 1 Blood Rage when you Kill an Enemy", "(18-22)% increased Attack Speed", statOrder = { 706, 1324 }, level = 60, group = "LocalAttackSpeedAndLocalDisplayTriggerLevel1BloodRageOnKillChance", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "unveiled_mod", "attack", "speed" }, }, + ["JunMasterVeiledLocalAttackSpeedAndLocalDisplayTriggerLevel1BloodRageOnKillChanceRangedWeapon"] = { type = "Suffix", affix = "of the Order", "15% chance to Trigger Level 1 Blood Rage when you Kill an Enemy", "(12-15)% increased Attack Speed", statOrder = { 706, 1324 }, level = 60, group = "LocalAttackSpeedAndLocalDisplayTriggerLevel1BloodRageOnKillChance", weightKey = { "bow", "wand", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "unveiled_mod", "attack", "speed" }, }, + ["JunMasterVeiledCastSpeedAndGainArcaneSurgeOnKillChance1h__"] = { type = "Suffix", affix = "of the Order", "(18-22)% increased Cast Speed", "15% chance to gain Arcane Surge when you Kill an Enemy", statOrder = { 1357, 6615 }, level = 60, group = "CastSpeedAndGainArcaneSurgeOnKillChance", weightKey = { "wand", "dagger", "sceptre", "one_hand_weapon", "default", }, weightVal = { 1000, 1000, 1000, 100, 0 }, modTags = { "unveiled_mod", "caster", "speed" }, }, + ["JunMasterVeiledCastSpeedAndGainArcaneSurgeOnKillChance2h_"] = { type = "Suffix", affix = "of the Order", "(26-31)% increased Cast Speed", "15% chance to gain Arcane Surge when you Kill an Enemy", statOrder = { 1357, 6615 }, level = 60, group = "CastSpeedAndGainArcaneSurgeOnKillChance", weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 1000, 100, 0 }, modTags = { "unveiled_mod", "caster", "speed" }, }, + ["JunMasterVeiledTriggerSocketedSpellOnSkillUse_"] = { type = "Suffix", affix = "of the Order", "Trigger a Socketed Spell on Using a Skill, with a 4 second Cooldown", "Spells Triggered this way have 150% more Cost", statOrder = { 746, 746.1 }, level = 60, group = "TriggerSocketedSpellOnSkillUseFourSeconds", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "skill", "unveiled_mod", "caster", "gem" }, }, + ["JunMasterVeiledFireAndChaosDamageResistance"] = { type = "Suffix", affix = "of the Order", "+(16-20)% to Fire and Chaos Resistances", statOrder = { 6435 }, level = 60, group = "FireAndChaosDamageResistance", weightKey = { "body_armour", "boots", "gloves", "helmet", "shield", "amulet", "ring", "belt", "quiver", "default", }, weightVal = { 600, 600, 600, 600, 600, 600, 600, 600, 600, 0 }, modTags = { "unveiled_mod", "elemental", "fire", "chaos", "resistance" }, }, + ["JunMasterVeiledLightningAndChaosDamageResistance"] = { type = "Suffix", affix = "of the Order", "+(16-20)% to Lightning and Chaos Resistances", statOrder = { 7295 }, level = 60, group = "LightningAndChaosDamageResistance", weightKey = { "body_armour", "boots", "gloves", "helmet", "shield", "amulet", "ring", "belt", "quiver", "default", }, weightVal = { 600, 600, 600, 600, 600, 600, 600, 600, 600, 0 }, modTags = { "unveiled_mod", "elemental", "lightning", "chaos", "resistance" }, }, + ["JunMasterVeiledColdAndChaosDamageResistance"] = { type = "Suffix", affix = "of the Order", "+(16-20)% to Cold and Chaos Resistances", statOrder = { 5697 }, level = 60, group = "ColdAndChaosDamageResistance", weightKey = { "body_armour", "boots", "gloves", "helmet", "shield", "amulet", "ring", "belt", "quiver", "default", }, weightVal = { 600, 600, 600, 600, 600, 600, 600, 600, 600, 0 }, modTags = { "unveiled_mod", "elemental", "cold", "chaos", "resistance" }, }, + ["JunMasterVeiledStrengthAndLocalItemQuality"] = { type = "Suffix", affix = "of the Order", "+(31-35) to Strength", "+(15-18)% to Quality", statOrder = { 1089, 7800 }, level = 60, group = "StrengthAndLocalItemQuality", weightKey = { "body_armour", "shield", "default", }, weightVal = { 0, 0, 0 }, modTags = { "unveiled_mod", "attribute" }, }, + ["JunMasterVeiledDexterityAndLocalItemQuality"] = { type = "Suffix", affix = "of the Order", "+(31-35) to Dexterity", "+(15-18)% to Quality", statOrder = { 1090, 7800 }, level = 60, group = "DexterityAndLocalItemQuality", weightKey = { "body_armour", "shield", "default", }, weightVal = { 0, 0, 0 }, modTags = { "unveiled_mod", "attribute" }, }, + ["JunMasterVeiledIntelligenceAndLocalItemQuality"] = { type = "Suffix", affix = "of the Order", "+(31-35) to Intelligence", "+(15-18)% to Quality", statOrder = { 1091, 7800 }, level = 60, group = "IntelligenceAndLocalItemQuality", weightKey = { "body_armour", "shield", "default", }, weightVal = { 0, 0, 0 }, modTags = { "unveiled_mod", "attribute" }, }, + ["JunMasterVeiledStrengthAndAvoidIgnite"] = { type = "Suffix", affix = "of the Order", "+(31-35) to Strength", "(21-25)% chance to Avoid being Ignited", statOrder = { 1089, 1757 }, level = 60, group = "StrengthAndAvoidIgnite", weightKey = { "body_armour", "shield", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "unveiled_mod", "attribute" }, }, + ["JunMasterVeiledDexterityAndAvoidFreeze"] = { type = "Suffix", affix = "of the Order", "+(31-35) to Dexterity", "(21-25)% chance to Avoid being Frozen", statOrder = { 1090, 1756 }, level = 60, group = "DexterityAndAvoidFreeze", weightKey = { "body_armour", "shield", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "unveiled_mod", "attribute" }, }, + ["JunMasterVeiledIntelligenceAndAvoidShock"] = { type = "Suffix", affix = "of the Order", "+(31-35) to Intelligence", "(21-25)% chance to Avoid being Shocked", statOrder = { 1091, 1759 }, level = 60, group = "IntelligenceAndAvoidShock", weightKey = { "body_armour", "shield", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "unveiled_mod", "attribute" }, }, + ["JunMasterVeiledLifeRegenerationRatePerMinuteWhileUsingFlask"] = { type = "Suffix", affix = "of the Order", "Regenerate 3% of Life per second during any Flask Effect", statOrder = { 7286 }, level = 60, group = "LifeRegenerationRatePerMinuteWhileUsingFlask", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "resource", "unveiled_mod", "life" }, }, + ["JunMasterVeiledPercentageLifeAndMana"] = { type = "Prefix", affix = "Chosen", "(9-10)% increased maximum Life", "(9-10)% increased maximum Mana", statOrder = { 1482, 1491 }, level = 60, group = "PercentageLifeAndMana", weightKey = { "body_armour", "default", }, weightVal = { 2000, 0 }, modTags = { "resource", "unveiled_mod", "life", "mana" }, }, + ["JunMasterVeiledBlockPercent"] = { type = "Prefix", affix = "Chosen", "(8-9)% Chance to Block Attack Damage", statOrder = { 1051 }, level = 60, group = "BlockPercent", weightKey = { "body_armour", "default", }, weightVal = { 2000, 0 }, modTags = { "block", "unveiled_mod" }, }, + ["JunMasterVeiledSpellBlockPercent____"] = { type = "Prefix", affix = "Chosen", "(9-10)% Chance to Block Spell Damage", statOrder = { 1072 }, level = 60, group = "SpellBlockPercentage", weightKey = { "body_armour", "default", }, weightVal = { 2000, 0 }, modTags = { "block", "unveiled_mod" }, }, + ["JunMasterVeiledSpellDodgePercentage__"] = { type = "Prefix", affix = "Chosen", "+(18-21)% chance to Suppress Spell Damage", statOrder = { 1055 }, level = 60, group = "ChanceToSuppressSpellsOld", weightKey = { "body_armour", "default", }, weightVal = { 0, 0 }, modTags = { "unveiled_mod" }, }, + ["JunMasterVeiledAvoidStunAndElementalStatusAilments"] = { type = "Prefix", affix = "Chosen", "(30-35)% chance to Avoid Elemental Ailments", "(30-35)% chance to Avoid being Stunned", statOrder = { 1754, 1762 }, level = 60, group = "AvoidStunAndElementalStatusAilments", weightKey = { "body_armour", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod", "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["JunMasterVeiledLocalFlaskReducedReflectDuringEffect"] = { type = "Prefix", affix = "of the Order", "(60-80)% reduced Reflected Damage taken during Effect", statOrder = { 912 }, level = 60, group = "FlaskReflectReductionDuringFlaskEffect", weightKey = { "flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "unveiled_mod" }, }, + ["JunMasterVeiledMinimumEnduranceChargesInverted"] = { type = "Suffix", affix = "of the Order", "+1 to Minimum Endurance Charges", "(3-4)% chance to lose an Endurance Charge on Kill", statOrder = { 1714, 2538 }, level = 60, group = "MinimumEnduranceChargesAndOnKillLose", weightKey = { "default", }, weightVal = { 0 }, modTags = { "endurance_charge", "unveiled_mod" }, }, + ["JunMasterVeiledMinimumPowerChargesInverted"] = { type = "Suffix", affix = "of the Order", "+1 to Minimum Power Charges", "(3-4)% chance to lose a Power Charge on Kill", statOrder = { 1724, 2542 }, level = 60, group = "MinimumPowerChargesAndOnKillLose", weightKey = { "default", }, weightVal = { 0 }, modTags = { "power_charge", "unveiled_mod" }, }, + ["JunMasterVeiledMinimumFrenzyChargesInverted"] = { type = "Suffix", affix = "of the Order", "+1 to Minimum Frenzy Charges", "(3-4)% chance to lose a Frenzy Charge on Kill", statOrder = { 1719, 2540 }, level = 60, group = "MinimumFrenzyChargesAndOnKillLose", weightKey = { "default", }, weightVal = { 0 }, modTags = { "frenzy_charge", "unveiled_mod" }, }, + ["JunMasterVeiledAddedFireAndColdDamageInverted"] = { type = "Prefix", affix = "Chosen", "Adds (14-16) to (20-22) Fire Damage to Hits against you", "Adds (14-16) to (20-22) Cold Damage to Hits against you", statOrder = { 1269, 1278 }, level = 60, group = "SelfFireAndColdDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "cold" }, }, + ["JunMasterVeiledAddedFireAndLightningDamageInverted"] = { type = "Prefix", affix = "Chosen", "Adds (14-16) to (20-22) Fire Damage to Hits against you", "Adds (14-16) to (20-22) Lightning Damage to Hits against you", statOrder = { 1269, 1289 }, level = 60, group = "SelfFireAndLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "lightning" }, }, + ["JunMasterVeiledAddedColdAndLightningDamageInverted"] = { type = "Prefix", affix = "Chosen", "Adds (14-16) to (20-22) Cold Damage to Hits against you", "Adds (14-16) to (20-22) Lightning Damage to Hits against you", statOrder = { 1278, 1289 }, level = 60, group = "SelfColdAndLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "lightning" }, }, + ["JunMasterVeiledLifeLeechFromAnyDamageAndVaalPactWhileFocusedInverted"] = { type = "Suffix", affix = "of the Order", "You have Vaal Pact while Focused", "15% of Damage Leeched by Enemy as Life while Focused", statOrder = { 6713, 7223 }, level = 60, group = "EnemyLifeLeechPermyriadWhileFocusedAndVaalPact", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "unveiled_mod", "life" }, }, + ["JunMasterVeiledIncreasedManaAndRegenInverted"] = { type = "Prefix", affix = "Chosen", "+(51-55) to maximum Mana", "Lose 5.3 Mana per second", statOrder = { 1490, 1494 }, level = 60, group = "IncreasedManaAndDegenGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "unveiled_mod", "mana" }, }, + ["JunMasterVeiledBaseLifeAndManaRegenInverted"] = { type = "Prefix", affix = "Chosen", "+(55-60) to maximum Life", "Lose 5.3 Mana per second", statOrder = { 1480, 1494 }, level = 60, group = "BaseLifeAndManaDegenGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "unveiled_mod", "life", "mana" }, }, + ["JunMasterVeiledBaseManaAndLifeRegenInverted"] = { type = "Prefix", affix = "Chosen", "Lose 33.3 Life per second", "+(55-60) to maximum Mana", statOrder = { 1486, 1490 }, level = 60, group = "BaseManaAndLifeDegenGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "unveiled_mod", "life", "mana" }, }, + ["JunMasterVeiledReduceGlobalFlatManaCostChannellingInverted"] = { type = "Prefix", affix = "Elreon's", "Channelling Skills Cost -4 Mana", statOrder = { 9845 }, level = 60, group = "ManaCostBaseChannelled", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "unveiled_mod", "mana" }, }, + ["JunMasterVeiledReduceGlobalFlatManaCostNonChannellingInverted"] = { type = "Prefix", affix = "Elreon's", "Non-Channelling Skills Cost -(10-9) Mana", statOrder = { 9847 }, level = 60, group = "ManaCostBaseNonChannelled", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "unveiled_mod", "mana" }, }, + ["JunMasterVeiledShockNearbyEnemiesOnFocusInverted"] = { type = "Suffix", affix = "of the Order", "Focus has (5-8)% reduced Cooldown Recovery Rate", "Shock yourself for 4 Seconds when you Focus", statOrder = { 6539, 9796 }, level = 60, group = "ShockYourselfOnFocusCDR", weightKey = { "default", }, weightVal = { 0 }, modTags = { "unveiled_mod", "elemental", "lightning", "ailment" }, }, + ["JunMasterVeiledMinionLargerAggroRadius"] = { type = "Prefix", affix = "Catarina's", "Minions are Aggressive", statOrder = { 10533 }, level = 60, group = "MinionLargerAggroRadius", weightKey = { "body_armour", "helmet", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod", "minion" }, }, + ["JunMasterVeiledMinionDamageAlsoAffectsYou"] = { type = "Prefix", affix = "Catarina's", "Increases and Reductions to Minion Damage also affect you", statOrder = { 3658 }, level = 60, group = "MinionDamageAlsoAffectsYou", weightKey = { "body_armour", "helmet", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, }, + ["JunMasterVeiledMinionAttackSpeedAlsoAffectsYou"] = { type = "Prefix", affix = "Catarina's", "Increases and Reductions to Minion Attack Speed also affect you", statOrder = { 3660 }, level = 60, group = "MinionAttackSpeedAlsoAffectsYou", weightKey = { "body_armour", "helmet", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, }, + ["JunMasterVeiledMinionCastSpeedAlsoAffectsYou"] = { type = "Prefix", affix = "Catarina's", "Increases and Reductions to Minion Cast Speed also affect you", statOrder = { 3661 }, level = 60, group = "MinionCastSpeedAlsoAffectsYou", weightKey = { "body_armour", "helmet", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, }, + ["JunMasterVeiledMinionSkillCastSpeed"] = { type = "Prefix", affix = "Catarina's", "(20-40)% increased Cast Speed with Minion Skills", statOrder = { 5357 }, level = 60, group = "MinionSkillCastSpeed", weightKey = { "body_armour", "helmet", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, }, + ["JunMasterVeiledMaximumSpectreCount"] = { type = "Prefix", affix = "Catarina's", "+1 to maximum number of Spectres", statOrder = { 2070 }, level = 60, group = "MaximumSpectreCount", weightKey = { "weapon", "helmet", "quiver", "flask", "body_armour", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod", "minion" }, }, + ["JunMasterVeiledSpectresBaseMaximumAllResistance"] = { type = "Prefix", affix = "Catarina's", "Raised Spectres have +(5-10)% to all maximum Resistances", statOrder = { 9901 }, level = 60, group = "SpectresBaseMaximumAllResistance", weightKey = { "weapon", "helmet", "quiver", "flask", "body_armour", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, }, + ["JunMasterVeiledSpectresAdditionalProjectiles"] = { type = "Prefix", affix = "Catarina's", "Raised Spectres fire 2 additional Projectiles", statOrder = { 9907 }, level = 60, group = "SpectresAdditionalProjectiles", weightKey = { "weapon", "helmet", "quiver", "flask", "body_armour", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, }, + ["JunMasterVeiledSpectresAdditionalBaseCriticalChance"] = { type = "Prefix", affix = "Catarina's", "Raised Spectres have +(3-5)% to Critical Strike Chance", statOrder = { 9899 }, level = 60, group = "SpectresAdditionalBaseCriticalChance", weightKey = { "weapon", "helmet", "quiver", "flask", "body_armour", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, }, + ["JunMasterVeiledSpectresAreaOfEffect"] = { type = "Prefix", affix = "Catarina's", "Raised Spectres have (30-50)% increased Area of Effect", statOrder = { 9902 }, level = 60, group = "SpectresAreaOfEffect", weightKey = { "weapon", "helmet", "quiver", "flask", "body_armour", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, }, + ["JunMasterVeiledLocalIncreaseSocketedGemLevel"] = { type = "Prefix", affix = "Catarina's", "+2 to Level of Socketed Gems", statOrder = { 142 }, level = 60, group = "LocalIncreaseSocketedGemLevel", weightKey = { "body_armour", "quiver", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod", "gem" }, }, + ["JunMasterVeiledDamageIfConsumedCorpse"] = { type = "Prefix", affix = "Catarina's", "20% increased Damage if you have Consumed a corpse Recently", statOrder = { 4160 }, level = 60, group = "DamageIfConsumedCorpse", weightKey = { "body_armour", "quiver", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod", "damage" }, }, + ["JunMasterVeiledCorpseLife"] = { type = "Prefix", affix = "Catarina's", "Corpses you Spawn have 20% increased Maximum Life", statOrder = { 8976 }, level = 60, group = "CorpseLife", weightKey = { "body_armour", "quiver", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, }, + ["JunMasterVeiledAttackAndCastSpeedIfCorpseConsumedRecently"] = { type = "Prefix", affix = "Catarina's", "20% increased Attack and Cast Speed if you've Consumed a Corpse Recently", statOrder = { 4705 }, level = 60, group = "AttackAndCastSpeedIfCorpseConsumedRecently", weightKey = { "body_armour", "quiver", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, }, + ["JunMasterVeiledTakeNoExtraDamageFromCriticalStrikesIfEnergyShieldRechargeStartedRecently"] = { type = "Prefix", affix = "Catarina's", "Take no Extra Damage from Critical Strikes if Energy Shield Recharge started Recently", statOrder = { 9763 }, level = 60, group = "TakeNoExtraDamageFromCriticalStrikesIfEnergyShieldRechargeStartedRecently", weightKey = { "body_armour", "quiver", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, }, + ["JunMasterVeiledOfferingEffect"] = { type = "Prefix", affix = "Catarina's", "20% increased effect of Offerings", statOrder = { 3971 }, level = 60, group = "OfferingEffect", weightKey = { "helmet", "quiver", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, }, + ["JunMasterVeiledOfferingDuration"] = { type = "Prefix", affix = "Catarina's", "Offering Skills have 20% increased Duration", statOrder = { 9345 }, level = 60, group = "OfferingDuration", weightKey = { "helmet", "quiver", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, }, + ["JunMasterVeiledLifeRegenerationRatePercentageIfCorpseConsumedRecently"] = { type = "Prefix", affix = "Catarina's", "Regenerate 2% of Life per second if you've Consumed a corpse Recently", statOrder = { 7273 }, level = 60, group = "LifeRegenerationRatePercentageIfCorpseConsumedRecently", weightKey = { "helmet", "quiver", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, }, + ["JunMasterVeiledManaRegenerationRatePercentageIfCorpseConsumedRecently"] = { type = "Prefix", affix = "Catarina's", "Regenerate 2% of Mana per second if you've Consumed a corpse Recently", statOrder = { 8027 }, level = 60, group = "ManaRegenerationRatePercentageIfCorpseConsumedRecently", weightKey = { "helmet", "quiver", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, }, + ["JunMasterVeiledEnergyShieldRegenerationRatePercentageIfCorpseConsumedRecently"] = { type = "Prefix", affix = "Catarina's", "Regenerate 2% of Energy Shield per second if you've Consumed a Corpse Recently", statOrder = { 6342 }, level = 60, group = "EnergyShieldRegenerationRatePercentageIfCorpseConsumedRecently", weightKey = { "helmet", "quiver", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, }, + ["JunMasterVeiledAllow2Offerings"] = { type = "Prefix", affix = "Catarina's", "You can have two Offerings of different types", statOrder = { 4537 }, level = 60, group = "Allow2Offerings", weightKey = { "helmet", "quiver", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, }, + ["JunMasterVeiledLocalFlaskPhysicalDamageCanIgnite"] = { type = "Prefix", affix = "Catarina's", "Your Physical Damage can Ignite during Effect", statOrder = { 911 }, level = 60, group = "LocalFlaskPhysicalDamageCanIgnite", weightKey = { "helmet", "quiver", "body_armour", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, }, + ["JunMasterVeiledLocalFlaskIgnitedEnemiesHaveMalediction"] = { type = "Prefix", affix = "Catarina's", "Enemies Ignited by you during Effect have Malediction", statOrder = { 895 }, level = 60, group = "LocalFlaskIgnitedEnemiesHaveMalediction", weightKey = { "helmet", "quiver", "body_armour", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, }, + ["JunMasterVeiledLocalFlaskAdditionalCurseOnEnemies"] = { type = "Prefix", affix = "Catarina's", "You can apply an additional Curse during Effect", statOrder = { 909 }, level = 60, group = "LocalFlaskAdditionalCurseOnEnemies", weightKey = { "helmet", "quiver", "body_armour", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, }, + ["JunMasterVeiledLocalFlaskIgniteProlif"] = { type = "Prefix", affix = "Catarina's", "Ignites you inflict during Effect spread to other Enemies within 1.5 metres", statOrder = { 894 }, level = 60, group = "LocalFlaskIgniteProlif", weightKey = { "helmet", "quiver", "body_armour", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, }, + ["JunMasterVeiledLocalFlaskIgniteDamageLifeLeech"] = { type = "Prefix", affix = "Catarina's", "Leech 1.5% of Expected Ignite Damage as Life when you Ignite an Enemy during Effect", statOrder = { 903 }, level = 60, group = "LocalFlaskIgniteDamageLifeLeech", weightKey = { "helmet", "quiver", "body_armour", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, }, } \ No newline at end of file diff --git a/src/Data/Pantheons.lua b/src/Data/Pantheons.lua index 134b35dbf7..7b84a4b237 100644 --- a/src/Data/Pantheons.lua +++ b/src/Data/Pantheons.lua @@ -17,7 +17,7 @@ return { [1] = { line = "30% increased Stun and Block Recovery", value = { 30 }, }, }, }, - [3] = { name = "Captain Tanner Lightfoot", + [3] = { name = "Merveil, the Returned", mods = { -- base_avoid_freeze_% [1] = { line = "100% chance to Avoid being Frozen", value = { 100 }, }, @@ -46,13 +46,13 @@ return { [1] = { line = "20% increased Recovery rate of Life and Energy Shield if you've stopped taking Damage Over Time Recently", value = { 20 }, }, }, }, - [3] = { name = "Legius Garhall", + [3] = { name = "Enticer of Rot", mods = { -- debuff_time_passed_+% [1] = { line = "Debuffs on you expire 20% faster", value = { 20 }, }, }, }, - [4] = { name = "Armala, the Widow", + [4] = { name = "Hybrid Widow", mods = { -- additional_chaos_resistance_against_damage_over_time_% [1] = { line = "+40% Chaos Resistance against Damage Over Time", value = { 40 }, }, @@ -71,7 +71,7 @@ return { [2] = { line = "20% chance to take 50% less Area Damage from Hits", value = { 20 }, }, }, }, - [2] = { name = "Woad, Mockery of Man", + [2] = { name = "Fire and Fury", mods = { -- elemental_damage_taken_+%_if_not_hit_recently [1] = { line = "8% reduced Elemental Damage taken if you haven't been Hit Recently", value = { -8 }, }, @@ -108,13 +108,13 @@ return { [1] = { line = "10% chance to avoid Projectiles", value = { 10 }, }, }, }, - [3] = { name = "Fragment of Winter", + [3] = { name = "The Winged Death", mods = { -- elemental_damage_taken_+%_if_been_hit_recently [1] = { line = "6% reduced Elemental Damage taken if you have been Hit Recently", value = { -6 }, }, }, }, - [4] = { name = "Khor, Sister of Shadows", + [4] = { name = "Ormud, Fiend of the Flood", mods = { -- avoid_chained_projectile_%_chance [1] = { line = "Avoid Projectiles that have Chained", value = { 100 }, }, @@ -131,7 +131,7 @@ return { [1] = { line = "60% less Duration of Ignite on You", value = { -60 }, }, }, }, - [2] = { name = "Sumter the Twisted", + [2] = { name = "Mephod, the Earth Scorcher", mods = { -- unaffected_by_burning_ground [1] = { line = "Unaffected by Burning Ground", value = { 1 }, }, @@ -169,7 +169,7 @@ return { [2] = { line = "50% chance to Reflect Hexes", value = { 50 }, }, }, }, - [2] = { name = "Varhesh, Shimmering Aberration", + [2] = { name = "Oriath's Vigil", mods = { -- curse_effect_on_self_+% [1] = { line = "30% reduced Effect of Curses on you", value = { -30 }, }, @@ -207,7 +207,7 @@ return { [1] = { line = "3% additional Physical Damage Reduction per second you've been stationary, up to a maximum of 9%", value = { 3 }, }, }, }, - [2] = { name = "Tahsin, Warmaker", + [2] = { name = "Sumter the Twisted", mods = { -- life_regeneration_rate_per_minute_%_while_stationary [1] = { line = "Regenerate 2% of Life per second while stationary", value = { 120 }, }, @@ -243,7 +243,7 @@ return { [1] = { line = "60% reduced Effect of Shock on you", value = { -60 }, }, }, }, - [2] = { name = "Stalker of the Endless Dunes", + [2] = { name = "Preethi, Eye-Pecker", mods = { -- cannot_be_blinded [1] = { line = "Cannot be Blinded", value = { 1 }, }, @@ -264,7 +264,7 @@ return { [2] = { line = "60% increased Life Recovery from Flasks used when on Low Life", value = { 60 }, }, }, }, - [2] = { name = "Arachnoxia", + [2] = { name = "Gorulis, Will-Thief", mods = { -- enemy_life_regeneration_rate_+%_for_4_seconds_on_hit [1] = { line = "Enemies you've Hit Recently have 50% reduced Life Regeneration rate", value = { -50 }, }, diff --git a/src/Data/SkillStatMap.lua b/src/Data/SkillStatMap.lua index 1a71917902..165ab21fc6 100644 --- a/src/Data/SkillStatMap.lua +++ b/src/Data/SkillStatMap.lua @@ -752,7 +752,7 @@ return { ["damage_+%_vs_frozen_enemies"] = { mod("Damage", "INC", nil, ModFlag.Hit, 0, { type = "ActorCondition", actor = "enemy", var = "Frozen" }), }, -["damage_+%_final_vs_stunned_enemies"] = { +["active_skill_damage_+%_final_vs_stunned_enemies"] = { mod("Damage", "MORE", nil, 0, 0, { type = "ActorCondition", actor = "enemy", var = "Stunned" }), }, ["base_reduce_enemy_fire_resistance_%"] = { @@ -1841,6 +1841,9 @@ return { ["minion_cast_speed_+%"] = { mod("MinionModifier", "LIST", { mod = mod("Speed", "INC", nil, ModFlag.Cast) }), }, +["minion_base_physical_damage_%_to_convert_to_lightning"] = { + mod("MinionModifier", "LIST", { mod = mod("PhysicalDamageConvertToLightning", "BASE", nil) }), +}, ["minion_elemental_resistance_%"] = { mod("MinionModifier", "LIST", { mod = mod("ElementalResist", "BASE", nil) }), }, @@ -1908,6 +1911,9 @@ return { ["base_number_of_void_spawns_allowed"] = { mod("ActiveVoidSpawnLimit", "BASE", nil), }, +["base_number_of_living_lightning_allowed"] = { + mod("ActiveLivingLightningLimit", "BASE", nil), +}, ["active_skill_minion_damage_+%_final"] = { mod("MinionModifier", "LIST", { mod = mod("Damage", "MORE", nil) }), }, diff --git a/src/Data/Skills/act_dex.lua b/src/Data/Skills/act_dex.lua index c02729bb84..d3f05bfa8a 100644 --- a/src/Data/Skills/act_dex.lua +++ b/src/Data/Skills/act_dex.lua @@ -1045,7 +1045,7 @@ skills["Barrage"] = { baseTypeName = "Barrage", color = 2, description = "After a short preparation time, you fire individual projectiles repeatedly with a Bow or Wand. These projectiles have a small randomised spread. This skill cannot be Triggered.", - skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.MirageArcherCanUse] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.MirageArcherCanUse] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.WandAttack] = true, }, weaponTypes = { ["Bow"] = true, ["Wand"] = true, @@ -1088,46 +1088,46 @@ skills["Barrage"] = { "quality_display_base_number_of_projectiles_is_gem", }, levels = { - [1] = { baseMultiplier = 0.47, damageEffectiveness = 0.47, levelRequirement = 12, cost = { Mana = 6, }, }, - [2] = { baseMultiplier = 0.474, damageEffectiveness = 0.47, levelRequirement = 15, cost = { Mana = 6, }, }, - [3] = { baseMultiplier = 0.478, damageEffectiveness = 0.48, levelRequirement = 19, cost = { Mana = 7, }, }, - [4] = { baseMultiplier = 0.482, damageEffectiveness = 0.48, levelRequirement = 23, cost = { Mana = 7, }, }, - [5] = { baseMultiplier = 0.486, damageEffectiveness = 0.49, levelRequirement = 27, cost = { Mana = 7, }, }, - [6] = { baseMultiplier = 0.49, damageEffectiveness = 0.49, levelRequirement = 31, cost = { Mana = 8, }, }, - [7] = { baseMultiplier = 0.494, damageEffectiveness = 0.49, levelRequirement = 35, cost = { Mana = 8, }, }, - [8] = { baseMultiplier = 0.498, damageEffectiveness = 0.5, levelRequirement = 38, cost = { Mana = 8, }, }, - [9] = { baseMultiplier = 0.502, damageEffectiveness = 0.5, levelRequirement = 41, cost = { Mana = 8, }, }, - [10] = { baseMultiplier = 0.506, damageEffectiveness = 0.51, levelRequirement = 44, cost = { Mana = 8, }, }, - [11] = { baseMultiplier = 0.51, damageEffectiveness = 0.51, levelRequirement = 47, cost = { Mana = 9, }, }, - [12] = { baseMultiplier = 0.514, damageEffectiveness = 0.51, levelRequirement = 50, cost = { Mana = 9, }, }, - [13] = { baseMultiplier = 0.518, damageEffectiveness = 0.52, levelRequirement = 53, cost = { Mana = 9, }, }, - [14] = { baseMultiplier = 0.522, damageEffectiveness = 0.52, levelRequirement = 56, cost = { Mana = 9, }, }, - [15] = { baseMultiplier = 0.526, damageEffectiveness = 0.53, levelRequirement = 59, cost = { Mana = 9, }, }, - [16] = { baseMultiplier = 0.53, damageEffectiveness = 0.53, levelRequirement = 62, cost = { Mana = 10, }, }, - [17] = { baseMultiplier = 0.534, damageEffectiveness = 0.53, levelRequirement = 64, cost = { Mana = 10, }, }, - [18] = { baseMultiplier = 0.538, damageEffectiveness = 0.54, levelRequirement = 66, cost = { Mana = 10, }, }, - [19] = { baseMultiplier = 0.542, damageEffectiveness = 0.54, levelRequirement = 68, cost = { Mana = 10, }, }, - [20] = { baseMultiplier = 0.546, damageEffectiveness = 0.55, levelRequirement = 70, cost = { Mana = 10, }, }, - [21] = { baseMultiplier = 0.55, damageEffectiveness = 0.55, levelRequirement = 72, cost = { Mana = 10, }, }, - [22] = { baseMultiplier = 0.554, damageEffectiveness = 0.55, levelRequirement = 74, cost = { Mana = 10, }, }, - [23] = { baseMultiplier = 0.558, damageEffectiveness = 0.56, levelRequirement = 76, cost = { Mana = 10, }, }, - [24] = { baseMultiplier = 0.562, damageEffectiveness = 0.56, levelRequirement = 78, cost = { Mana = 11, }, }, - [25] = { baseMultiplier = 0.566, damageEffectiveness = 0.57, levelRequirement = 80, cost = { Mana = 11, }, }, - [26] = { baseMultiplier = 0.57, damageEffectiveness = 0.57, levelRequirement = 82, cost = { Mana = 11, }, }, - [27] = { baseMultiplier = 0.574, damageEffectiveness = 0.57, levelRequirement = 84, cost = { Mana = 11, }, }, - [28] = { baseMultiplier = 0.578, damageEffectiveness = 0.58, levelRequirement = 86, cost = { Mana = 11, }, }, - [29] = { baseMultiplier = 0.582, damageEffectiveness = 0.58, levelRequirement = 88, cost = { Mana = 11, }, }, - [30] = { baseMultiplier = 0.586, damageEffectiveness = 0.59, levelRequirement = 90, cost = { Mana = 11, }, }, - [31] = { baseMultiplier = 0.588, damageEffectiveness = 0.59, levelRequirement = 91, cost = { Mana = 11, }, }, - [32] = { baseMultiplier = 0.59, damageEffectiveness = 0.59, levelRequirement = 92, cost = { Mana = 11, }, }, - [33] = { baseMultiplier = 0.592, damageEffectiveness = 0.59, levelRequirement = 93, cost = { Mana = 12, }, }, - [34] = { baseMultiplier = 0.594, damageEffectiveness = 0.59, levelRequirement = 94, cost = { Mana = 12, }, }, - [35] = { baseMultiplier = 0.596, damageEffectiveness = 0.6, levelRequirement = 95, cost = { Mana = 12, }, }, - [36] = { baseMultiplier = 0.598, damageEffectiveness = 0.6, levelRequirement = 96, cost = { Mana = 12, }, }, - [37] = { baseMultiplier = 0.6, damageEffectiveness = 0.6, levelRequirement = 97, cost = { Mana = 12, }, }, - [38] = { baseMultiplier = 0.602, damageEffectiveness = 0.6, levelRequirement = 98, cost = { Mana = 12, }, }, - [39] = { baseMultiplier = 0.604, damageEffectiveness = 0.6, levelRequirement = 99, cost = { Mana = 12, }, }, - [40] = { baseMultiplier = 0.606, damageEffectiveness = 0.61, levelRequirement = 100, cost = { Mana = 12, }, }, + [1] = { attackSpeedMultiplier = 15, baseMultiplier = 0.47, damageEffectiveness = 0.47, levelRequirement = 12, cost = { Mana = 5, }, }, + [2] = { attackSpeedMultiplier = 15, baseMultiplier = 0.474, damageEffectiveness = 0.47, levelRequirement = 15, cost = { Mana = 5, }, }, + [3] = { attackSpeedMultiplier = 15, baseMultiplier = 0.478, damageEffectiveness = 0.48, levelRequirement = 19, cost = { Mana = 6, }, }, + [4] = { attackSpeedMultiplier = 15, baseMultiplier = 0.482, damageEffectiveness = 0.48, levelRequirement = 23, cost = { Mana = 6, }, }, + [5] = { attackSpeedMultiplier = 15, baseMultiplier = 0.486, damageEffectiveness = 0.49, levelRequirement = 27, cost = { Mana = 6, }, }, + [6] = { attackSpeedMultiplier = 15, baseMultiplier = 0.49, damageEffectiveness = 0.49, levelRequirement = 31, cost = { Mana = 7, }, }, + [7] = { attackSpeedMultiplier = 15, baseMultiplier = 0.494, damageEffectiveness = 0.49, levelRequirement = 35, cost = { Mana = 7, }, }, + [8] = { attackSpeedMultiplier = 15, baseMultiplier = 0.498, damageEffectiveness = 0.5, levelRequirement = 38, cost = { Mana = 7, }, }, + [9] = { attackSpeedMultiplier = 15, baseMultiplier = 0.502, damageEffectiveness = 0.5, levelRequirement = 41, cost = { Mana = 7, }, }, + [10] = { attackSpeedMultiplier = 15, baseMultiplier = 0.506, damageEffectiveness = 0.51, levelRequirement = 44, cost = { Mana = 7, }, }, + [11] = { attackSpeedMultiplier = 15, baseMultiplier = 0.51, damageEffectiveness = 0.51, levelRequirement = 47, cost = { Mana = 8, }, }, + [12] = { attackSpeedMultiplier = 15, baseMultiplier = 0.514, damageEffectiveness = 0.51, levelRequirement = 50, cost = { Mana = 8, }, }, + [13] = { attackSpeedMultiplier = 15, baseMultiplier = 0.518, damageEffectiveness = 0.52, levelRequirement = 53, cost = { Mana = 8, }, }, + [14] = { attackSpeedMultiplier = 15, baseMultiplier = 0.522, damageEffectiveness = 0.52, levelRequirement = 56, cost = { Mana = 8, }, }, + [15] = { attackSpeedMultiplier = 15, baseMultiplier = 0.526, damageEffectiveness = 0.53, levelRequirement = 59, cost = { Mana = 8, }, }, + [16] = { attackSpeedMultiplier = 15, baseMultiplier = 0.53, damageEffectiveness = 0.53, levelRequirement = 62, cost = { Mana = 9, }, }, + [17] = { attackSpeedMultiplier = 15, baseMultiplier = 0.534, damageEffectiveness = 0.53, levelRequirement = 64, cost = { Mana = 9, }, }, + [18] = { attackSpeedMultiplier = 15, baseMultiplier = 0.538, damageEffectiveness = 0.54, levelRequirement = 66, cost = { Mana = 9, }, }, + [19] = { attackSpeedMultiplier = 15, baseMultiplier = 0.542, damageEffectiveness = 0.54, levelRequirement = 68, cost = { Mana = 9, }, }, + [20] = { attackSpeedMultiplier = 15, baseMultiplier = 0.546, damageEffectiveness = 0.55, levelRequirement = 70, cost = { Mana = 9, }, }, + [21] = { attackSpeedMultiplier = 15, baseMultiplier = 0.55, damageEffectiveness = 0.55, levelRequirement = 72, cost = { Mana = 9, }, }, + [22] = { attackSpeedMultiplier = 15, baseMultiplier = 0.554, damageEffectiveness = 0.55, levelRequirement = 74, cost = { Mana = 9, }, }, + [23] = { attackSpeedMultiplier = 15, baseMultiplier = 0.558, damageEffectiveness = 0.56, levelRequirement = 76, cost = { Mana = 9, }, }, + [24] = { attackSpeedMultiplier = 15, baseMultiplier = 0.562, damageEffectiveness = 0.56, levelRequirement = 78, cost = { Mana = 9, }, }, + [25] = { attackSpeedMultiplier = 15, baseMultiplier = 0.566, damageEffectiveness = 0.57, levelRequirement = 80, cost = { Mana = 9, }, }, + [26] = { attackSpeedMultiplier = 15, baseMultiplier = 0.57, damageEffectiveness = 0.57, levelRequirement = 82, cost = { Mana = 9, }, }, + [27] = { attackSpeedMultiplier = 15, baseMultiplier = 0.574, damageEffectiveness = 0.57, levelRequirement = 84, cost = { Mana = 9, }, }, + [28] = { attackSpeedMultiplier = 15, baseMultiplier = 0.578, damageEffectiveness = 0.58, levelRequirement = 86, cost = { Mana = 9, }, }, + [29] = { attackSpeedMultiplier = 15, baseMultiplier = 0.582, damageEffectiveness = 0.58, levelRequirement = 88, cost = { Mana = 9, }, }, + [30] = { attackSpeedMultiplier = 15, baseMultiplier = 0.586, damageEffectiveness = 0.59, levelRequirement = 90, cost = { Mana = 9, }, }, + [31] = { attackSpeedMultiplier = 15, baseMultiplier = 0.588, damageEffectiveness = 0.59, levelRequirement = 91, cost = { Mana = 9, }, }, + [32] = { attackSpeedMultiplier = 15, baseMultiplier = 0.59, damageEffectiveness = 0.59, levelRequirement = 92, cost = { Mana = 9, }, }, + [33] = { attackSpeedMultiplier = 15, baseMultiplier = 0.592, damageEffectiveness = 0.59, levelRequirement = 93, cost = { Mana = 10, }, }, + [34] = { attackSpeedMultiplier = 15, baseMultiplier = 0.594, damageEffectiveness = 0.59, levelRequirement = 94, cost = { Mana = 10, }, }, + [35] = { attackSpeedMultiplier = 15, baseMultiplier = 0.596, damageEffectiveness = 0.6, levelRequirement = 95, cost = { Mana = 10, }, }, + [36] = { attackSpeedMultiplier = 15, baseMultiplier = 0.598, damageEffectiveness = 0.6, levelRequirement = 96, cost = { Mana = 10, }, }, + [37] = { attackSpeedMultiplier = 15, baseMultiplier = 0.6, damageEffectiveness = 0.6, levelRequirement = 97, cost = { Mana = 10, }, }, + [38] = { attackSpeedMultiplier = 15, baseMultiplier = 0.602, damageEffectiveness = 0.6, levelRequirement = 98, cost = { Mana = 10, }, }, + [39] = { attackSpeedMultiplier = 15, baseMultiplier = 0.604, damageEffectiveness = 0.6, levelRequirement = 99, cost = { Mana = 10, }, }, + [40] = { attackSpeedMultiplier = 15, baseMultiplier = 0.606, damageEffectiveness = 0.61, levelRequirement = 100, cost = { Mana = 10, }, }, }, } skills["BarrageAltX"] = { @@ -1135,7 +1135,7 @@ skills["BarrageAltX"] = { baseTypeName = "Barrage of Volley Fire", color = 2, description = "After a short preparation time, you fire projectiles repeatedly with a Bow or Wand. These projectiles have a small randomised spread. This skill cannot be Triggered.", - skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.MirageArcherCanUse] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.MirageArcherCanUse] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.WandAttack] = true, }, weaponTypes = { ["Bow"] = true, ["Wand"] = true, @@ -1179,46 +1179,46 @@ skills["BarrageAltX"] = { "quality_display_base_number_of_projectiles_is_gem", }, levels = { - [1] = { baseMultiplier = 0.5, damageEffectiveness = 0.5, levelRequirement = 12, cost = { Mana = 6, }, }, - [2] = { baseMultiplier = 0.505, damageEffectiveness = 0.505, levelRequirement = 15, cost = { Mana = 6, }, }, - [3] = { baseMultiplier = 0.511, damageEffectiveness = 0.511, levelRequirement = 19, cost = { Mana = 7, }, }, - [4] = { baseMultiplier = 0.516, damageEffectiveness = 0.516, levelRequirement = 23, cost = { Mana = 7, }, }, - [5] = { baseMultiplier = 0.521, damageEffectiveness = 0.521, levelRequirement = 27, cost = { Mana = 7, }, }, - [6] = { baseMultiplier = 0.526, damageEffectiveness = 0.526, levelRequirement = 31, cost = { Mana = 8, }, }, - [7] = { baseMultiplier = 0.532, damageEffectiveness = 0.532, levelRequirement = 35, cost = { Mana = 8, }, }, - [8] = { baseMultiplier = 0.537, damageEffectiveness = 0.537, levelRequirement = 38, cost = { Mana = 8, }, }, - [9] = { baseMultiplier = 0.542, damageEffectiveness = 0.542, levelRequirement = 41, cost = { Mana = 8, }, }, - [10] = { baseMultiplier = 0.547, damageEffectiveness = 0.547, levelRequirement = 44, cost = { Mana = 8, }, }, - [11] = { baseMultiplier = 0.553, damageEffectiveness = 0.553, levelRequirement = 47, cost = { Mana = 9, }, }, - [12] = { baseMultiplier = 0.558, damageEffectiveness = 0.558, levelRequirement = 50, cost = { Mana = 9, }, }, - [13] = { baseMultiplier = 0.563, damageEffectiveness = 0.563, levelRequirement = 53, cost = { Mana = 9, }, }, - [14] = { baseMultiplier = 0.568, damageEffectiveness = 0.568, levelRequirement = 56, cost = { Mana = 9, }, }, - [15] = { baseMultiplier = 0.574, damageEffectiveness = 0.574, levelRequirement = 59, cost = { Mana = 9, }, }, - [16] = { baseMultiplier = 0.579, damageEffectiveness = 0.579, levelRequirement = 62, cost = { Mana = 10, }, }, - [17] = { baseMultiplier = 0.584, damageEffectiveness = 0.584, levelRequirement = 64, cost = { Mana = 10, }, }, - [18] = { baseMultiplier = 0.589, damageEffectiveness = 0.589, levelRequirement = 66, cost = { Mana = 10, }, }, - [19] = { baseMultiplier = 0.595, damageEffectiveness = 0.595, levelRequirement = 68, cost = { Mana = 10, }, }, - [20] = { baseMultiplier = 0.6, damageEffectiveness = 0.6, levelRequirement = 70, cost = { Mana = 10, }, }, - [21] = { baseMultiplier = 0.605, damageEffectiveness = 0.605, levelRequirement = 72, cost = { Mana = 10, }, }, - [22] = { baseMultiplier = 0.611, damageEffectiveness = 0.611, levelRequirement = 74, cost = { Mana = 10, }, }, - [23] = { baseMultiplier = 0.616, damageEffectiveness = 0.616, levelRequirement = 76, cost = { Mana = 10, }, }, - [24] = { baseMultiplier = 0.621, damageEffectiveness = 0.621, levelRequirement = 78, cost = { Mana = 11, }, }, - [25] = { baseMultiplier = 0.626, damageEffectiveness = 0.626, levelRequirement = 80, cost = { Mana = 11, }, }, - [26] = { baseMultiplier = 0.632, damageEffectiveness = 0.632, levelRequirement = 82, cost = { Mana = 11, }, }, - [27] = { baseMultiplier = 0.637, damageEffectiveness = 0.637, levelRequirement = 84, cost = { Mana = 11, }, }, - [28] = { baseMultiplier = 0.642, damageEffectiveness = 0.642, levelRequirement = 86, cost = { Mana = 11, }, }, - [29] = { baseMultiplier = 0.647, damageEffectiveness = 0.647, levelRequirement = 88, cost = { Mana = 11, }, }, - [30] = { baseMultiplier = 0.653, damageEffectiveness = 0.653, levelRequirement = 90, cost = { Mana = 11, }, }, - [31] = { baseMultiplier = 0.655, damageEffectiveness = 0.655, levelRequirement = 91, cost = { Mana = 11, }, }, - [32] = { baseMultiplier = 0.658, damageEffectiveness = 0.658, levelRequirement = 92, cost = { Mana = 11, }, }, - [33] = { baseMultiplier = 0.661, damageEffectiveness = 0.661, levelRequirement = 93, cost = { Mana = 12, }, }, - [34] = { baseMultiplier = 0.663, damageEffectiveness = 0.663, levelRequirement = 94, cost = { Mana = 12, }, }, - [35] = { baseMultiplier = 0.666, damageEffectiveness = 0.666, levelRequirement = 95, cost = { Mana = 12, }, }, - [36] = { baseMultiplier = 0.668, damageEffectiveness = 0.668, levelRequirement = 96, cost = { Mana = 12, }, }, - [37] = { baseMultiplier = 0.671, damageEffectiveness = 0.671, levelRequirement = 97, cost = { Mana = 12, }, }, - [38] = { baseMultiplier = 0.674, damageEffectiveness = 0.674, levelRequirement = 98, cost = { Mana = 12, }, }, - [39] = { baseMultiplier = 0.676, damageEffectiveness = 0.676, levelRequirement = 99, cost = { Mana = 12, }, }, - [40] = { baseMultiplier = 0.679, damageEffectiveness = 0.679, levelRequirement = 100, cost = { Mana = 12, }, }, + [1] = { attackSpeedMultiplier = 15, baseMultiplier = 0.5, damageEffectiveness = 0.5, levelRequirement = 12, cost = { Mana = 5, }, }, + [2] = { attackSpeedMultiplier = 15, baseMultiplier = 0.505, damageEffectiveness = 0.505, levelRequirement = 15, cost = { Mana = 5, }, }, + [3] = { attackSpeedMultiplier = 15, baseMultiplier = 0.511, damageEffectiveness = 0.511, levelRequirement = 19, cost = { Mana = 6, }, }, + [4] = { attackSpeedMultiplier = 15, baseMultiplier = 0.516, damageEffectiveness = 0.516, levelRequirement = 23, cost = { Mana = 6, }, }, + [5] = { attackSpeedMultiplier = 15, baseMultiplier = 0.521, damageEffectiveness = 0.521, levelRequirement = 27, cost = { Mana = 6, }, }, + [6] = { attackSpeedMultiplier = 15, baseMultiplier = 0.526, damageEffectiveness = 0.526, levelRequirement = 31, cost = { Mana = 7, }, }, + [7] = { attackSpeedMultiplier = 15, baseMultiplier = 0.532, damageEffectiveness = 0.532, levelRequirement = 35, cost = { Mana = 7, }, }, + [8] = { attackSpeedMultiplier = 15, baseMultiplier = 0.537, damageEffectiveness = 0.537, levelRequirement = 38, cost = { Mana = 7, }, }, + [9] = { attackSpeedMultiplier = 15, baseMultiplier = 0.542, damageEffectiveness = 0.542, levelRequirement = 41, cost = { Mana = 7, }, }, + [10] = { attackSpeedMultiplier = 15, baseMultiplier = 0.547, damageEffectiveness = 0.547, levelRequirement = 44, cost = { Mana = 7, }, }, + [11] = { attackSpeedMultiplier = 15, baseMultiplier = 0.553, damageEffectiveness = 0.553, levelRequirement = 47, cost = { Mana = 8, }, }, + [12] = { attackSpeedMultiplier = 15, baseMultiplier = 0.558, damageEffectiveness = 0.558, levelRequirement = 50, cost = { Mana = 8, }, }, + [13] = { attackSpeedMultiplier = 15, baseMultiplier = 0.563, damageEffectiveness = 0.563, levelRequirement = 53, cost = { Mana = 8, }, }, + [14] = { attackSpeedMultiplier = 15, baseMultiplier = 0.568, damageEffectiveness = 0.568, levelRequirement = 56, cost = { Mana = 8, }, }, + [15] = { attackSpeedMultiplier = 15, baseMultiplier = 0.574, damageEffectiveness = 0.574, levelRequirement = 59, cost = { Mana = 8, }, }, + [16] = { attackSpeedMultiplier = 15, baseMultiplier = 0.579, damageEffectiveness = 0.579, levelRequirement = 62, cost = { Mana = 9, }, }, + [17] = { attackSpeedMultiplier = 15, baseMultiplier = 0.584, damageEffectiveness = 0.584, levelRequirement = 64, cost = { Mana = 9, }, }, + [18] = { attackSpeedMultiplier = 15, baseMultiplier = 0.589, damageEffectiveness = 0.589, levelRequirement = 66, cost = { Mana = 9, }, }, + [19] = { attackSpeedMultiplier = 15, baseMultiplier = 0.595, damageEffectiveness = 0.595, levelRequirement = 68, cost = { Mana = 9, }, }, + [20] = { attackSpeedMultiplier = 15, baseMultiplier = 0.6, damageEffectiveness = 0.6, levelRequirement = 70, cost = { Mana = 9, }, }, + [21] = { attackSpeedMultiplier = 15, baseMultiplier = 0.605, damageEffectiveness = 0.605, levelRequirement = 72, cost = { Mana = 9, }, }, + [22] = { attackSpeedMultiplier = 15, baseMultiplier = 0.611, damageEffectiveness = 0.611, levelRequirement = 74, cost = { Mana = 9, }, }, + [23] = { attackSpeedMultiplier = 15, baseMultiplier = 0.616, damageEffectiveness = 0.616, levelRequirement = 76, cost = { Mana = 9, }, }, + [24] = { attackSpeedMultiplier = 15, baseMultiplier = 0.621, damageEffectiveness = 0.621, levelRequirement = 78, cost = { Mana = 9, }, }, + [25] = { attackSpeedMultiplier = 15, baseMultiplier = 0.626, damageEffectiveness = 0.626, levelRequirement = 80, cost = { Mana = 9, }, }, + [26] = { attackSpeedMultiplier = 15, baseMultiplier = 0.632, damageEffectiveness = 0.632, levelRequirement = 82, cost = { Mana = 9, }, }, + [27] = { attackSpeedMultiplier = 15, baseMultiplier = 0.637, damageEffectiveness = 0.637, levelRequirement = 84, cost = { Mana = 9, }, }, + [28] = { attackSpeedMultiplier = 15, baseMultiplier = 0.642, damageEffectiveness = 0.642, levelRequirement = 86, cost = { Mana = 9, }, }, + [29] = { attackSpeedMultiplier = 15, baseMultiplier = 0.647, damageEffectiveness = 0.647, levelRequirement = 88, cost = { Mana = 9, }, }, + [30] = { attackSpeedMultiplier = 15, baseMultiplier = 0.653, damageEffectiveness = 0.653, levelRequirement = 90, cost = { Mana = 9, }, }, + [31] = { attackSpeedMultiplier = 15, baseMultiplier = 0.655, damageEffectiveness = 0.655, levelRequirement = 91, cost = { Mana = 9, }, }, + [32] = { attackSpeedMultiplier = 15, baseMultiplier = 0.658, damageEffectiveness = 0.658, levelRequirement = 92, cost = { Mana = 9, }, }, + [33] = { attackSpeedMultiplier = 15, baseMultiplier = 0.661, damageEffectiveness = 0.661, levelRequirement = 93, cost = { Mana = 10, }, }, + [34] = { attackSpeedMultiplier = 15, baseMultiplier = 0.663, damageEffectiveness = 0.663, levelRequirement = 94, cost = { Mana = 10, }, }, + [35] = { attackSpeedMultiplier = 15, baseMultiplier = 0.666, damageEffectiveness = 0.666, levelRequirement = 95, cost = { Mana = 10, }, }, + [36] = { attackSpeedMultiplier = 15, baseMultiplier = 0.668, damageEffectiveness = 0.668, levelRequirement = 96, cost = { Mana = 10, }, }, + [37] = { attackSpeedMultiplier = 15, baseMultiplier = 0.671, damageEffectiveness = 0.671, levelRequirement = 97, cost = { Mana = 10, }, }, + [38] = { attackSpeedMultiplier = 15, baseMultiplier = 0.674, damageEffectiveness = 0.674, levelRequirement = 98, cost = { Mana = 10, }, }, + [39] = { attackSpeedMultiplier = 15, baseMultiplier = 0.676, damageEffectiveness = 0.676, levelRequirement = 99, cost = { Mana = 10, }, }, + [40] = { attackSpeedMultiplier = 15, baseMultiplier = 0.679, damageEffectiveness = 0.679, levelRequirement = 100, cost = { Mana = 10, }, }, }, } skills["BearTrap"] = { @@ -2633,46 +2633,46 @@ skills["Bladefall"] = { "spell_maximum_base_physical_damage", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 28, statInterpolation = { 3, 3, }, cost = { Mana = 12, }, }, - [2] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 31, statInterpolation = { 3, 3, }, cost = { Mana = 13, }, }, - [3] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 34, statInterpolation = { 3, 3, }, cost = { Mana = 14, }, }, - [4] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 37, statInterpolation = { 3, 3, }, cost = { Mana = 15, }, }, - [5] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 40, statInterpolation = { 3, 3, }, cost = { Mana = 15, }, }, - [6] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 42, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, - [7] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 44, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, - [8] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 46, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, - [9] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 48, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, - [10] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 50, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, - [11] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 52, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, - [12] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 54, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, - [13] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 56, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, - [14] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 58, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, - [15] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 60, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, - [16] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 62, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, - [17] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 64, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, - [18] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 66, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, - [19] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 68, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, - [20] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 70, statInterpolation = { 3, 3, }, cost = { Mana = 23, }, }, - [21] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 72, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, - [22] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 74, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, - [23] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 76, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, - [24] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 78, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, - [25] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 80, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, - [26] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 82, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, - [27] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 84, statInterpolation = { 3, 3, }, cost = { Mana = 27, }, }, - [28] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 86, statInterpolation = { 3, 3, }, cost = { Mana = 27, }, }, - [29] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 88, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, - [30] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 90, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, - [31] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 91, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, - [32] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 92, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, - [33] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 93, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, - [34] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 94, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, - [35] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 95, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, - [36] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 96, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, - [37] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 97, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, - [38] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 98, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, - [39] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 99, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, - [40] = { 0.80000001192093, 1.2000000476837, critChance = 6, damageEffectiveness = 1.4, levelRequirement = 100, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, + [1] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 28, statInterpolation = { 3, 3, }, cost = { Mana = 12, }, }, + [2] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 31, statInterpolation = { 3, 3, }, cost = { Mana = 13, }, }, + [3] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 34, statInterpolation = { 3, 3, }, cost = { Mana = 14, }, }, + [4] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 37, statInterpolation = { 3, 3, }, cost = { Mana = 15, }, }, + [5] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 40, statInterpolation = { 3, 3, }, cost = { Mana = 15, }, }, + [6] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 42, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, + [7] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 44, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, + [8] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 46, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, + [9] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 48, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, + [10] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 50, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, + [11] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 52, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, + [12] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 54, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, + [13] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 56, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, + [14] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 58, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, + [15] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 60, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, + [16] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 62, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, + [17] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 64, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, + [18] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 66, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, + [19] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 68, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, + [20] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 70, statInterpolation = { 3, 3, }, cost = { Mana = 23, }, }, + [21] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 72, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, + [22] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 74, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, + [23] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 76, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, + [24] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 78, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, + [25] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 80, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, + [26] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 82, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, + [27] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 84, statInterpolation = { 3, 3, }, cost = { Mana = 27, }, }, + [28] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 86, statInterpolation = { 3, 3, }, cost = { Mana = 27, }, }, + [29] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 88, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, + [30] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 90, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, + [31] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 91, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, + [32] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 92, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, + [33] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 93, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, + [34] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 94, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, + [35] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 95, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, + [36] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 96, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, + [37] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 97, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, + [38] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 98, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, + [39] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 99, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, + [40] = { 0.80000001192093, 1.2000000476837, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 100, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, }, } skills["BladefallAltX"] = { @@ -2724,46 +2724,46 @@ skills["BladefallAltX"] = { "spell_maximum_base_physical_damage", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, critChance = 6, levelRequirement = 28, statInterpolation = { 3, 3, }, cost = { Mana = 12, }, }, - [2] = { 0.80000001192093, 1.2000000476837, critChance = 6, levelRequirement = 31, statInterpolation = { 3, 3, }, cost = { Mana = 13, }, }, - [3] = { 0.80000001192093, 1.2000000476837, critChance = 6, levelRequirement = 34, statInterpolation = { 3, 3, }, cost = { Mana = 14, }, }, - [4] = { 0.80000001192093, 1.2000000476837, critChance = 6, levelRequirement = 37, statInterpolation = { 3, 3, }, cost = { Mana = 15, }, }, - [5] = { 0.80000001192093, 1.2000000476837, critChance = 6, levelRequirement = 40, statInterpolation = { 3, 3, }, cost = { Mana = 15, }, }, - [6] = { 0.80000001192093, 1.2000000476837, critChance = 6, levelRequirement = 42, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, - [7] = { 0.80000001192093, 1.2000000476837, critChance = 6, levelRequirement = 44, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, - [8] = { 0.80000001192093, 1.2000000476837, critChance = 6, levelRequirement = 46, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, - [9] = { 0.80000001192093, 1.2000000476837, critChance = 6, levelRequirement = 48, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, - [10] = { 0.80000001192093, 1.2000000476837, critChance = 6, levelRequirement = 50, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, - [11] = { 0.80000001192093, 1.2000000476837, critChance = 6, levelRequirement = 52, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, - [12] = { 0.80000001192093, 1.2000000476837, critChance = 6, levelRequirement = 54, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, - [13] = { 0.80000001192093, 1.2000000476837, critChance = 6, levelRequirement = 56, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, - [14] = { 0.80000001192093, 1.2000000476837, critChance = 6, levelRequirement = 58, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, - [15] = { 0.80000001192093, 1.2000000476837, critChance = 6, levelRequirement = 60, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, - [16] = { 0.80000001192093, 1.2000000476837, critChance = 6, levelRequirement = 62, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, - [17] = { 0.80000001192093, 1.2000000476837, critChance = 6, levelRequirement = 64, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, - [18] = { 0.80000001192093, 1.2000000476837, critChance = 6, levelRequirement = 66, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, - [19] = { 0.80000001192093, 1.2000000476837, critChance = 6, levelRequirement = 68, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, - [20] = { 0.80000001192093, 1.2000000476837, critChance = 6, levelRequirement = 70, statInterpolation = { 3, 3, }, cost = { Mana = 23, }, }, - [21] = { 0.80000001192093, 1.2000000476837, critChance = 6, levelRequirement = 72, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, - [22] = { 0.80000001192093, 1.2000000476837, critChance = 6, levelRequirement = 74, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, - [23] = { 0.80000001192093, 1.2000000476837, critChance = 6, levelRequirement = 76, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, - [24] = { 0.80000001192093, 1.2000000476837, critChance = 6, levelRequirement = 78, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, - [25] = { 0.80000001192093, 1.2000000476837, critChance = 6, levelRequirement = 80, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, - [26] = { 0.80000001192093, 1.2000000476837, critChance = 6, levelRequirement = 82, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, - [27] = { 0.80000001192093, 1.2000000476837, critChance = 6, levelRequirement = 84, statInterpolation = { 3, 3, }, cost = { Mana = 27, }, }, - [28] = { 0.80000001192093, 1.2000000476837, critChance = 6, levelRequirement = 86, statInterpolation = { 3, 3, }, cost = { Mana = 27, }, }, - [29] = { 0.80000001192093, 1.2000000476837, critChance = 6, levelRequirement = 88, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, - [30] = { 0.80000001192093, 1.2000000476837, critChance = 6, levelRequirement = 90, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, - [31] = { 0.80000001192093, 1.2000000476837, critChance = 6, levelRequirement = 91, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, - [32] = { 0.80000001192093, 1.2000000476837, critChance = 6, levelRequirement = 92, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, - [33] = { 0.80000001192093, 1.2000000476837, critChance = 6, levelRequirement = 93, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, - [34] = { 0.80000001192093, 1.2000000476837, critChance = 6, levelRequirement = 94, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, - [35] = { 0.80000001192093, 1.2000000476837, critChance = 6, levelRequirement = 95, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, - [36] = { 0.80000001192093, 1.2000000476837, critChance = 6, levelRequirement = 96, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, - [37] = { 0.80000001192093, 1.2000000476837, critChance = 6, levelRequirement = 97, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, - [38] = { 0.80000001192093, 1.2000000476837, critChance = 6, levelRequirement = 98, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, - [39] = { 0.80000001192093, 1.2000000476837, critChance = 6, levelRequirement = 99, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, - [40] = { 0.80000001192093, 1.2000000476837, critChance = 6, levelRequirement = 100, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, + [1] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 28, statInterpolation = { 3, 3, }, cost = { Mana = 12, }, }, + [2] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 31, statInterpolation = { 3, 3, }, cost = { Mana = 13, }, }, + [3] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 34, statInterpolation = { 3, 3, }, cost = { Mana = 14, }, }, + [4] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 37, statInterpolation = { 3, 3, }, cost = { Mana = 15, }, }, + [5] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 40, statInterpolation = { 3, 3, }, cost = { Mana = 15, }, }, + [6] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 42, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, + [7] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 44, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, + [8] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 46, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, + [9] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 48, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, + [10] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 50, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, + [11] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 52, statInterpolation = { 3, 3, }, cost = { Mana = 18, }, }, + [12] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 54, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, + [13] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 56, statInterpolation = { 3, 3, }, cost = { Mana = 19, }, }, + [14] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 58, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, + [15] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 60, statInterpolation = { 3, 3, }, cost = { Mana = 20, }, }, + [16] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 62, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, + [17] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 64, statInterpolation = { 3, 3, }, cost = { Mana = 21, }, }, + [18] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 66, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, + [19] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 68, statInterpolation = { 3, 3, }, cost = { Mana = 22, }, }, + [20] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 70, statInterpolation = { 3, 3, }, cost = { Mana = 23, }, }, + [21] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 72, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, + [22] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 74, statInterpolation = { 3, 3, }, cost = { Mana = 24, }, }, + [23] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 76, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, + [24] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 78, statInterpolation = { 3, 3, }, cost = { Mana = 25, }, }, + [25] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 80, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, + [26] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 82, statInterpolation = { 3, 3, }, cost = { Mana = 26, }, }, + [27] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 84, statInterpolation = { 3, 3, }, cost = { Mana = 27, }, }, + [28] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 86, statInterpolation = { 3, 3, }, cost = { Mana = 27, }, }, + [29] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 88, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, + [30] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 90, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, + [31] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 91, statInterpolation = { 3, 3, }, cost = { Mana = 28, }, }, + [32] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 92, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, + [33] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 93, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, + [34] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 94, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, + [35] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 95, statInterpolation = { 3, 3, }, cost = { Mana = 29, }, }, + [36] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 96, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, + [37] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 97, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, + [38] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 98, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, + [39] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 99, statInterpolation = { 3, 3, }, cost = { Mana = 30, }, }, + [40] = { 0.80000001192093, 1.2000000476837, critChance = 10, levelRequirement = 100, statInterpolation = { 3, 3, }, cost = { Mana = 31, }, }, }, } skills["BladefallAltY"] = { @@ -2807,53 +2807,53 @@ skills["BladefallAltY"] = { "spell_maximum_base_physical_damage", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, 50, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 28, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, - [2] = { 0.80000001192093, 1.2000000476837, 53, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 31, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, - [3] = { 0.80000001192093, 1.2000000476837, 56, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 34, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, - [4] = { 0.80000001192093, 1.2000000476837, 59, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 37, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, - [5] = { 0.80000001192093, 1.2000000476837, 62, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 40, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, - [6] = { 0.80000001192093, 1.2000000476837, 65, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 42, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, - [7] = { 0.80000001192093, 1.2000000476837, 68, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, - [8] = { 0.80000001192093, 1.2000000476837, 71, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 46, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, - [9] = { 0.80000001192093, 1.2000000476837, 74, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 48, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, - [10] = { 0.80000001192093, 1.2000000476837, 77, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 50, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, - [11] = { 0.80000001192093, 1.2000000476837, 80, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 52, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, - [12] = { 0.80000001192093, 1.2000000476837, 83, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 54, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, - [13] = { 0.80000001192093, 1.2000000476837, 86, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, - [14] = { 0.80000001192093, 1.2000000476837, 89, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 58, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, - [15] = { 0.80000001192093, 1.2000000476837, 92, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 60, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, - [16] = { 0.80000001192093, 1.2000000476837, 95, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 62, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [17] = { 0.80000001192093, 1.2000000476837, 98, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [18] = { 0.80000001192093, 1.2000000476837, 101, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, - [19] = { 0.80000001192093, 1.2000000476837, 104, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, - [20] = { 0.80000001192093, 1.2000000476837, 107, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, - [21] = { 0.80000001192093, 1.2000000476837, 110, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, - [22] = { 0.80000001192093, 1.2000000476837, 113, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, - [23] = { 0.80000001192093, 1.2000000476837, 116, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, - [24] = { 0.80000001192093, 1.2000000476837, 119, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, - [25] = { 0.80000001192093, 1.2000000476837, 122, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, - [26] = { 0.80000001192093, 1.2000000476837, 125, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, - [27] = { 0.80000001192093, 1.2000000476837, 128, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, - [28] = { 0.80000001192093, 1.2000000476837, 131, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, - [29] = { 0.80000001192093, 1.2000000476837, 134, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, - [30] = { 0.80000001192093, 1.2000000476837, 137, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, - [31] = { 0.80000001192093, 1.2000000476837, 138, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, - [32] = { 0.80000001192093, 1.2000000476837, 140, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, - [33] = { 0.80000001192093, 1.2000000476837, 141, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, - [34] = { 0.80000001192093, 1.2000000476837, 143, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, - [35] = { 0.80000001192093, 1.2000000476837, 144, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, - [36] = { 0.80000001192093, 1.2000000476837, 146, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [37] = { 0.80000001192093, 1.2000000476837, 147, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [38] = { 0.80000001192093, 1.2000000476837, 149, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [39] = { 0.80000001192093, 1.2000000476837, 150, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [40] = { 0.80000001192093, 1.2000000476837, 152, critChance = 10, damageEffectiveness = 1.4, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, + [1] = { 0.80000001192093, 1.2000000476837, 50, critChance = 15, damageEffectiveness = 1.4, levelRequirement = 28, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, + [2] = { 0.80000001192093, 1.2000000476837, 53, critChance = 15, damageEffectiveness = 1.4, levelRequirement = 31, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, + [3] = { 0.80000001192093, 1.2000000476837, 56, critChance = 15, damageEffectiveness = 1.4, levelRequirement = 34, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, + [4] = { 0.80000001192093, 1.2000000476837, 59, critChance = 15, damageEffectiveness = 1.4, levelRequirement = 37, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, + [5] = { 0.80000001192093, 1.2000000476837, 62, critChance = 15, damageEffectiveness = 1.4, levelRequirement = 40, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, + [6] = { 0.80000001192093, 1.2000000476837, 65, critChance = 15, damageEffectiveness = 1.4, levelRequirement = 42, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, + [7] = { 0.80000001192093, 1.2000000476837, 68, critChance = 15, damageEffectiveness = 1.4, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, + [8] = { 0.80000001192093, 1.2000000476837, 71, critChance = 15, damageEffectiveness = 1.4, levelRequirement = 46, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, + [9] = { 0.80000001192093, 1.2000000476837, 74, critChance = 15, damageEffectiveness = 1.4, levelRequirement = 48, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, + [10] = { 0.80000001192093, 1.2000000476837, 77, critChance = 15, damageEffectiveness = 1.4, levelRequirement = 50, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, + [11] = { 0.80000001192093, 1.2000000476837, 80, critChance = 15, damageEffectiveness = 1.4, levelRequirement = 52, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, + [12] = { 0.80000001192093, 1.2000000476837, 83, critChance = 15, damageEffectiveness = 1.4, levelRequirement = 54, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, + [13] = { 0.80000001192093, 1.2000000476837, 86, critChance = 15, damageEffectiveness = 1.4, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, + [14] = { 0.80000001192093, 1.2000000476837, 89, critChance = 15, damageEffectiveness = 1.4, levelRequirement = 58, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, + [15] = { 0.80000001192093, 1.2000000476837, 92, critChance = 15, damageEffectiveness = 1.4, levelRequirement = 60, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, + [16] = { 0.80000001192093, 1.2000000476837, 95, critChance = 15, damageEffectiveness = 1.4, levelRequirement = 62, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [17] = { 0.80000001192093, 1.2000000476837, 98, critChance = 15, damageEffectiveness = 1.4, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [18] = { 0.80000001192093, 1.2000000476837, 101, critChance = 15, damageEffectiveness = 1.4, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, + [19] = { 0.80000001192093, 1.2000000476837, 104, critChance = 15, damageEffectiveness = 1.4, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, + [20] = { 0.80000001192093, 1.2000000476837, 107, critChance = 15, damageEffectiveness = 1.4, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, + [21] = { 0.80000001192093, 1.2000000476837, 110, critChance = 15, damageEffectiveness = 1.4, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, + [22] = { 0.80000001192093, 1.2000000476837, 113, critChance = 15, damageEffectiveness = 1.4, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, + [23] = { 0.80000001192093, 1.2000000476837, 116, critChance = 15, damageEffectiveness = 1.4, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [24] = { 0.80000001192093, 1.2000000476837, 119, critChance = 15, damageEffectiveness = 1.4, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [25] = { 0.80000001192093, 1.2000000476837, 122, critChance = 15, damageEffectiveness = 1.4, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [26] = { 0.80000001192093, 1.2000000476837, 125, critChance = 15, damageEffectiveness = 1.4, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [27] = { 0.80000001192093, 1.2000000476837, 128, critChance = 15, damageEffectiveness = 1.4, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, + [28] = { 0.80000001192093, 1.2000000476837, 131, critChance = 15, damageEffectiveness = 1.4, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, + [29] = { 0.80000001192093, 1.2000000476837, 134, critChance = 15, damageEffectiveness = 1.4, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, + [30] = { 0.80000001192093, 1.2000000476837, 137, critChance = 15, damageEffectiveness = 1.4, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, + [31] = { 0.80000001192093, 1.2000000476837, 138, critChance = 15, damageEffectiveness = 1.4, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, + [32] = { 0.80000001192093, 1.2000000476837, 140, critChance = 15, damageEffectiveness = 1.4, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, + [33] = { 0.80000001192093, 1.2000000476837, 141, critChance = 15, damageEffectiveness = 1.4, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, + [34] = { 0.80000001192093, 1.2000000476837, 143, critChance = 15, damageEffectiveness = 1.4, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, + [35] = { 0.80000001192093, 1.2000000476837, 144, critChance = 15, damageEffectiveness = 1.4, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, + [36] = { 0.80000001192093, 1.2000000476837, 146, critChance = 15, damageEffectiveness = 1.4, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, + [37] = { 0.80000001192093, 1.2000000476837, 147, critChance = 15, damageEffectiveness = 1.4, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, + [38] = { 0.80000001192093, 1.2000000476837, 149, critChance = 15, damageEffectiveness = 1.4, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, + [39] = { 0.80000001192093, 1.2000000476837, 150, critChance = 15, damageEffectiveness = 1.4, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, + [40] = { 0.80000001192093, 1.2000000476837, 152, critChance = 15, damageEffectiveness = 1.4, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, }, } skills["BladefallAltZ"] = { name = "Bladefall of Trarthus", baseTypeName = "Bladefall of Trarthus", color = 2, - baseEffectiveness = 0.72079998254776, + baseEffectiveness = 1.081200003624, incrementalEffectiveness = 0.045499999076128, description = "Once activated, continuously spends mana to cause volleys of ethereal weapons rain from the sky around you, dealing damage to enemies they impact. Each Blade will target a separate enemy in the volley area if possible. Each enemy can only be hit once by each volley, even if multiple blades land near them. This skill cannot be triggered or used by Totems, Traps, or Mines.", skillTypes = { [SkillType.Spell] = true, [SkillType.Area] = true, [SkillType.Damage] = true, [SkillType.Physical] = true, [SkillType.Cooldown] = true, [SkillType.InstantShiftAttackForLeftMouse] = true, [SkillType.InstantNoRepeatWhenHeld] = true, [SkillType.Instant] = true, [SkillType.Arcane] = true, [SkillType.Duration] = true, }, @@ -2906,46 +2906,46 @@ skills["BladefallAltZ"] = { "spell_maximum_base_physical_damage", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 28, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, - [2] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 31, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, - [3] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 34, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, - [4] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 37, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, - [5] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 40, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, - [6] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 42, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, - [7] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 44, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, - [8] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 46, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, - [9] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 48, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, - [10] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 50, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, - [11] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 52, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, - [12] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 54, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, - [13] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 56, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, - [14] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 58, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, - [15] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 60, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, - [16] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 62, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, - [17] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 64, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, - [18] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 66, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, - [19] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 68, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, - [20] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 70, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, - [21] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 72, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, - [22] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 74, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, - [23] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 76, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, - [24] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 78, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, - [25] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 80, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, - [26] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 82, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, - [27] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 84, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, - [28] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 86, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, - [29] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 88, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, - [30] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 90, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, - [31] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 91, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, - [32] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 92, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, - [33] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 93, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, - [34] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 94, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, - [35] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 95, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, - [36] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 96, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, - [37] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 97, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, - [38] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 98, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, - [39] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 99, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, - [40] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 6, damageEffectiveness = 1.2, levelRequirement = 100, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, + [1] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 28, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, + [2] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 31, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, + [3] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 34, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, + [4] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 37, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, + [5] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 40, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, + [6] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 42, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, + [7] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 44, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, + [8] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 46, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, + [9] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 48, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, + [10] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 50, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, + [11] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 52, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, + [12] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 54, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, + [13] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 56, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, + [14] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 58, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, + [15] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 60, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, + [16] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 62, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, + [17] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 64, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, + [18] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 66, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, + [19] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 68, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, + [20] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 70, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, + [21] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 72, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, + [22] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 74, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, + [23] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 76, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, + [24] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 78, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, + [25] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 80, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, + [26] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 82, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, + [27] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 84, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, + [28] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 86, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, + [29] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 88, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, + [30] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 90, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, + [31] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 91, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, + [32] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 92, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, + [33] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 93, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, + [34] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 94, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, + [35] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 95, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, + [36] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 96, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, + [37] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 97, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, + [38] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 98, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, + [39] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 99, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, + [40] = { 0.80000001192093, 1.2000000476837, cooldown = 0.3, critChance = 10, damageEffectiveness = 1.2, levelRequirement = 100, storedUses = 1, statInterpolation = { 3, 3, }, cost = { ManaPercentPerMinute = 300, }, }, }, } skills["BlastRain"] = { @@ -3070,7 +3070,7 @@ skills["BlastRainAltX"] = { { "blast_rain_arrow_delay_ms", 80 }, { "active_skill_base_area_of_effect_radius", 10 }, { "base_skill_effect_duration", 4000 }, - { "active_skill_base_secondary_area_of_effect_radius", 35 }, + { "active_skill_base_secondary_area_of_effect_radius", 40 }, }, stats = { "base_fire_damage_to_deal_per_minute", @@ -3085,46 +3085,46 @@ skills["BlastRainAltX"] = { "base_fire_damage_to_deal_per_minute", }, levels = { - [1] = { 53.833334854494, attackSpeedMultiplier = -20, baseMultiplier = 0.9, damageEffectiveness = 0.9, levelRequirement = 28, statInterpolation = { 3, }, cost = { Mana = 9, }, }, - [2] = { 53.833334854494, attackSpeedMultiplier = -20, baseMultiplier = 0.908, damageEffectiveness = 0.908, levelRequirement = 31, statInterpolation = { 3, }, cost = { Mana = 9, }, }, - [3] = { 53.833334854494, attackSpeedMultiplier = -20, baseMultiplier = 0.916, damageEffectiveness = 0.916, levelRequirement = 34, statInterpolation = { 3, }, cost = { Mana = 9, }, }, - [4] = { 53.833334854494, attackSpeedMultiplier = -20, baseMultiplier = 0.924, damageEffectiveness = 0.924, levelRequirement = 37, statInterpolation = { 3, }, cost = { Mana = 9, }, }, - [5] = { 53.833334854494, attackSpeedMultiplier = -20, baseMultiplier = 0.932, damageEffectiveness = 0.932, levelRequirement = 40, statInterpolation = { 3, }, cost = { Mana = 10, }, }, - [6] = { 53.833334854494, attackSpeedMultiplier = -20, baseMultiplier = 0.939, damageEffectiveness = 0.939, levelRequirement = 42, statInterpolation = { 3, }, cost = { Mana = 10, }, }, - [7] = { 53.833334854494, attackSpeedMultiplier = -20, baseMultiplier = 0.947, damageEffectiveness = 0.947, levelRequirement = 44, statInterpolation = { 3, }, cost = { Mana = 10, }, }, - [8] = { 53.833334854494, attackSpeedMultiplier = -20, baseMultiplier = 0.955, damageEffectiveness = 0.955, levelRequirement = 46, statInterpolation = { 3, }, cost = { Mana = 10, }, }, - [9] = { 53.833334854494, attackSpeedMultiplier = -20, baseMultiplier = 0.963, damageEffectiveness = 0.963, levelRequirement = 48, statInterpolation = { 3, }, cost = { Mana = 10, }, }, - [10] = { 53.833334854494, attackSpeedMultiplier = -20, baseMultiplier = 0.971, damageEffectiveness = 0.971, levelRequirement = 50, statInterpolation = { 3, }, cost = { Mana = 11, }, }, - [11] = { 53.833334854494, attackSpeedMultiplier = -20, baseMultiplier = 0.979, damageEffectiveness = 0.979, levelRequirement = 52, statInterpolation = { 3, }, cost = { Mana = 11, }, }, - [12] = { 53.833334854494, attackSpeedMultiplier = -20, baseMultiplier = 0.987, damageEffectiveness = 0.987, levelRequirement = 54, statInterpolation = { 3, }, cost = { Mana = 11, }, }, - [13] = { 53.833334854494, attackSpeedMultiplier = -20, baseMultiplier = 0.995, damageEffectiveness = 0.995, levelRequirement = 56, statInterpolation = { 3, }, cost = { Mana = 11, }, }, - [14] = { 53.833334854494, attackSpeedMultiplier = -20, baseMultiplier = 1.003, damageEffectiveness = 1.003, levelRequirement = 58, statInterpolation = { 3, }, cost = { Mana = 11, }, }, - [15] = { 53.833334854494, attackSpeedMultiplier = -20, baseMultiplier = 1.011, damageEffectiveness = 1.011, levelRequirement = 60, statInterpolation = { 3, }, cost = { Mana = 12, }, }, - [16] = { 53.833334854494, attackSpeedMultiplier = -20, baseMultiplier = 1.018, damageEffectiveness = 1.018, levelRequirement = 62, statInterpolation = { 3, }, cost = { Mana = 12, }, }, - [17] = { 53.833334854494, attackSpeedMultiplier = -20, baseMultiplier = 1.026, damageEffectiveness = 1.026, levelRequirement = 64, statInterpolation = { 3, }, cost = { Mana = 12, }, }, - [18] = { 53.833334854494, attackSpeedMultiplier = -20, baseMultiplier = 1.034, damageEffectiveness = 1.034, levelRequirement = 66, statInterpolation = { 3, }, cost = { Mana = 12, }, }, - [19] = { 53.833334854494, attackSpeedMultiplier = -20, baseMultiplier = 1.042, damageEffectiveness = 1.042, levelRequirement = 68, statInterpolation = { 3, }, cost = { Mana = 12, }, }, - [20] = { 53.833334854494, attackSpeedMultiplier = -20, baseMultiplier = 1.05, damageEffectiveness = 1.05, levelRequirement = 70, statInterpolation = { 3, }, cost = { Mana = 13, }, }, - [21] = { 53.833334854494, attackSpeedMultiplier = -20, baseMultiplier = 1.058, damageEffectiveness = 1.058, levelRequirement = 72, statInterpolation = { 3, }, cost = { Mana = 13, }, }, - [22] = { 53.833334854494, attackSpeedMultiplier = -20, baseMultiplier = 1.066, damageEffectiveness = 1.066, levelRequirement = 74, statInterpolation = { 3, }, cost = { Mana = 13, }, }, - [23] = { 53.833334854494, attackSpeedMultiplier = -20, baseMultiplier = 1.074, damageEffectiveness = 1.074, levelRequirement = 76, statInterpolation = { 3, }, cost = { Mana = 13, }, }, - [24] = { 53.833334854494, attackSpeedMultiplier = -20, baseMultiplier = 1.082, damageEffectiveness = 1.082, levelRequirement = 78, statInterpolation = { 3, }, cost = { Mana = 13, }, }, - [25] = { 53.833334854494, attackSpeedMultiplier = -20, baseMultiplier = 1.089, damageEffectiveness = 1.089, levelRequirement = 80, statInterpolation = { 3, }, cost = { Mana = 14, }, }, - [26] = { 53.833334854494, attackSpeedMultiplier = -20, baseMultiplier = 1.097, damageEffectiveness = 1.097, levelRequirement = 82, statInterpolation = { 3, }, cost = { Mana = 14, }, }, - [27] = { 53.833334854494, attackSpeedMultiplier = -20, baseMultiplier = 1.105, damageEffectiveness = 1.105, levelRequirement = 84, statInterpolation = { 3, }, cost = { Mana = 14, }, }, - [28] = { 53.833334854494, attackSpeedMultiplier = -20, baseMultiplier = 1.113, damageEffectiveness = 1.113, levelRequirement = 86, statInterpolation = { 3, }, cost = { Mana = 14, }, }, - [29] = { 53.833334854494, attackSpeedMultiplier = -20, baseMultiplier = 1.121, damageEffectiveness = 1.121, levelRequirement = 88, statInterpolation = { 3, }, cost = { Mana = 14, }, }, - [30] = { 53.833334854494, attackSpeedMultiplier = -20, baseMultiplier = 1.129, damageEffectiveness = 1.129, levelRequirement = 90, statInterpolation = { 3, }, cost = { Mana = 15, }, }, - [31] = { 53.833334854494, attackSpeedMultiplier = -20, baseMultiplier = 1.133, damageEffectiveness = 1.133, levelRequirement = 91, statInterpolation = { 3, }, cost = { Mana = 15, }, }, - [32] = { 53.833334854494, attackSpeedMultiplier = -20, baseMultiplier = 1.137, damageEffectiveness = 1.137, levelRequirement = 92, statInterpolation = { 3, }, cost = { Mana = 15, }, }, - [33] = { 53.833334854494, attackSpeedMultiplier = -20, baseMultiplier = 1.141, damageEffectiveness = 1.141, levelRequirement = 93, statInterpolation = { 3, }, cost = { Mana = 15, }, }, - [34] = { 53.833334854494, attackSpeedMultiplier = -20, baseMultiplier = 1.145, damageEffectiveness = 1.145, levelRequirement = 94, statInterpolation = { 3, }, cost = { Mana = 15, }, }, - [35] = { 53.833334854494, attackSpeedMultiplier = -20, baseMultiplier = 1.149, damageEffectiveness = 1.149, levelRequirement = 95, statInterpolation = { 3, }, cost = { Mana = 15, }, }, - [36] = { 53.833334854494, attackSpeedMultiplier = -20, baseMultiplier = 1.153, damageEffectiveness = 1.153, levelRequirement = 96, statInterpolation = { 3, }, cost = { Mana = 15, }, }, - [37] = { 53.833334854494, attackSpeedMultiplier = -20, baseMultiplier = 1.157, damageEffectiveness = 1.157, levelRequirement = 97, statInterpolation = { 3, }, cost = { Mana = 15, }, }, - [38] = { 53.833334854494, attackSpeedMultiplier = -20, baseMultiplier = 1.161, damageEffectiveness = 1.161, levelRequirement = 98, statInterpolation = { 3, }, cost = { Mana = 15, }, }, - [39] = { 53.833334854494, attackSpeedMultiplier = -20, baseMultiplier = 1.164, damageEffectiveness = 1.164, levelRequirement = 99, statInterpolation = { 3, }, cost = { Mana = 15, }, }, - [40] = { 53.833334854494, attackSpeedMultiplier = -20, baseMultiplier = 1.168, damageEffectiveness = 1.168, levelRequirement = 100, statInterpolation = { 3, }, cost = { Mana = 16, }, }, + [1] = { 64.666670019428, attackSpeedMultiplier = -20, baseMultiplier = 0.9, damageEffectiveness = 0.9, levelRequirement = 28, statInterpolation = { 3, }, cost = { Mana = 9, }, }, + [2] = { 64.666670019428, attackSpeedMultiplier = -20, baseMultiplier = 0.908, damageEffectiveness = 0.908, levelRequirement = 31, statInterpolation = { 3, }, cost = { Mana = 9, }, }, + [3] = { 64.666670019428, attackSpeedMultiplier = -20, baseMultiplier = 0.916, damageEffectiveness = 0.916, levelRequirement = 34, statInterpolation = { 3, }, cost = { Mana = 9, }, }, + [4] = { 64.666670019428, attackSpeedMultiplier = -20, baseMultiplier = 0.924, damageEffectiveness = 0.924, levelRequirement = 37, statInterpolation = { 3, }, cost = { Mana = 9, }, }, + [5] = { 64.666670019428, attackSpeedMultiplier = -20, baseMultiplier = 0.932, damageEffectiveness = 0.932, levelRequirement = 40, statInterpolation = { 3, }, cost = { Mana = 10, }, }, + [6] = { 64.666670019428, attackSpeedMultiplier = -20, baseMultiplier = 0.939, damageEffectiveness = 0.939, levelRequirement = 42, statInterpolation = { 3, }, cost = { Mana = 10, }, }, + [7] = { 64.666670019428, attackSpeedMultiplier = -20, baseMultiplier = 0.947, damageEffectiveness = 0.947, levelRequirement = 44, statInterpolation = { 3, }, cost = { Mana = 10, }, }, + [8] = { 64.666670019428, attackSpeedMultiplier = -20, baseMultiplier = 0.955, damageEffectiveness = 0.955, levelRequirement = 46, statInterpolation = { 3, }, cost = { Mana = 10, }, }, + [9] = { 64.666670019428, attackSpeedMultiplier = -20, baseMultiplier = 0.963, damageEffectiveness = 0.963, levelRequirement = 48, statInterpolation = { 3, }, cost = { Mana = 10, }, }, + [10] = { 64.666670019428, attackSpeedMultiplier = -20, baseMultiplier = 0.971, damageEffectiveness = 0.971, levelRequirement = 50, statInterpolation = { 3, }, cost = { Mana = 11, }, }, + [11] = { 64.666670019428, attackSpeedMultiplier = -20, baseMultiplier = 0.979, damageEffectiveness = 0.979, levelRequirement = 52, statInterpolation = { 3, }, cost = { Mana = 11, }, }, + [12] = { 64.666670019428, attackSpeedMultiplier = -20, baseMultiplier = 0.987, damageEffectiveness = 0.987, levelRequirement = 54, statInterpolation = { 3, }, cost = { Mana = 11, }, }, + [13] = { 64.666670019428, attackSpeedMultiplier = -20, baseMultiplier = 0.995, damageEffectiveness = 0.995, levelRequirement = 56, statInterpolation = { 3, }, cost = { Mana = 11, }, }, + [14] = { 64.666670019428, attackSpeedMultiplier = -20, baseMultiplier = 1.003, damageEffectiveness = 1.003, levelRequirement = 58, statInterpolation = { 3, }, cost = { Mana = 11, }, }, + [15] = { 64.666670019428, attackSpeedMultiplier = -20, baseMultiplier = 1.011, damageEffectiveness = 1.011, levelRequirement = 60, statInterpolation = { 3, }, cost = { Mana = 12, }, }, + [16] = { 64.666670019428, attackSpeedMultiplier = -20, baseMultiplier = 1.018, damageEffectiveness = 1.018, levelRequirement = 62, statInterpolation = { 3, }, cost = { Mana = 12, }, }, + [17] = { 64.666670019428, attackSpeedMultiplier = -20, baseMultiplier = 1.026, damageEffectiveness = 1.026, levelRequirement = 64, statInterpolation = { 3, }, cost = { Mana = 12, }, }, + [18] = { 64.666670019428, attackSpeedMultiplier = -20, baseMultiplier = 1.034, damageEffectiveness = 1.034, levelRequirement = 66, statInterpolation = { 3, }, cost = { Mana = 12, }, }, + [19] = { 64.666670019428, attackSpeedMultiplier = -20, baseMultiplier = 1.042, damageEffectiveness = 1.042, levelRequirement = 68, statInterpolation = { 3, }, cost = { Mana = 12, }, }, + [20] = { 64.666670019428, attackSpeedMultiplier = -20, baseMultiplier = 1.05, damageEffectiveness = 1.05, levelRequirement = 70, statInterpolation = { 3, }, cost = { Mana = 13, }, }, + [21] = { 64.666670019428, attackSpeedMultiplier = -20, baseMultiplier = 1.058, damageEffectiveness = 1.058, levelRequirement = 72, statInterpolation = { 3, }, cost = { Mana = 13, }, }, + [22] = { 64.666670019428, attackSpeedMultiplier = -20, baseMultiplier = 1.066, damageEffectiveness = 1.066, levelRequirement = 74, statInterpolation = { 3, }, cost = { Mana = 13, }, }, + [23] = { 64.666670019428, attackSpeedMultiplier = -20, baseMultiplier = 1.074, damageEffectiveness = 1.074, levelRequirement = 76, statInterpolation = { 3, }, cost = { Mana = 13, }, }, + [24] = { 64.666670019428, attackSpeedMultiplier = -20, baseMultiplier = 1.082, damageEffectiveness = 1.082, levelRequirement = 78, statInterpolation = { 3, }, cost = { Mana = 13, }, }, + [25] = { 64.666670019428, attackSpeedMultiplier = -20, baseMultiplier = 1.089, damageEffectiveness = 1.089, levelRequirement = 80, statInterpolation = { 3, }, cost = { Mana = 14, }, }, + [26] = { 64.666670019428, attackSpeedMultiplier = -20, baseMultiplier = 1.097, damageEffectiveness = 1.097, levelRequirement = 82, statInterpolation = { 3, }, cost = { Mana = 14, }, }, + [27] = { 64.666670019428, attackSpeedMultiplier = -20, baseMultiplier = 1.105, damageEffectiveness = 1.105, levelRequirement = 84, statInterpolation = { 3, }, cost = { Mana = 14, }, }, + [28] = { 64.666670019428, attackSpeedMultiplier = -20, baseMultiplier = 1.113, damageEffectiveness = 1.113, levelRequirement = 86, statInterpolation = { 3, }, cost = { Mana = 14, }, }, + [29] = { 64.666670019428, attackSpeedMultiplier = -20, baseMultiplier = 1.121, damageEffectiveness = 1.121, levelRequirement = 88, statInterpolation = { 3, }, cost = { Mana = 14, }, }, + [30] = { 64.666670019428, attackSpeedMultiplier = -20, baseMultiplier = 1.129, damageEffectiveness = 1.129, levelRequirement = 90, statInterpolation = { 3, }, cost = { Mana = 15, }, }, + [31] = { 64.666670019428, attackSpeedMultiplier = -20, baseMultiplier = 1.133, damageEffectiveness = 1.133, levelRequirement = 91, statInterpolation = { 3, }, cost = { Mana = 15, }, }, + [32] = { 64.666670019428, attackSpeedMultiplier = -20, baseMultiplier = 1.137, damageEffectiveness = 1.137, levelRequirement = 92, statInterpolation = { 3, }, cost = { Mana = 15, }, }, + [33] = { 64.666670019428, attackSpeedMultiplier = -20, baseMultiplier = 1.141, damageEffectiveness = 1.141, levelRequirement = 93, statInterpolation = { 3, }, cost = { Mana = 15, }, }, + [34] = { 64.666670019428, attackSpeedMultiplier = -20, baseMultiplier = 1.145, damageEffectiveness = 1.145, levelRequirement = 94, statInterpolation = { 3, }, cost = { Mana = 15, }, }, + [35] = { 64.666670019428, attackSpeedMultiplier = -20, baseMultiplier = 1.149, damageEffectiveness = 1.149, levelRequirement = 95, statInterpolation = { 3, }, cost = { Mana = 15, }, }, + [36] = { 64.666670019428, attackSpeedMultiplier = -20, baseMultiplier = 1.153, damageEffectiveness = 1.153, levelRequirement = 96, statInterpolation = { 3, }, cost = { Mana = 15, }, }, + [37] = { 64.666670019428, attackSpeedMultiplier = -20, baseMultiplier = 1.157, damageEffectiveness = 1.157, levelRequirement = 97, statInterpolation = { 3, }, cost = { Mana = 15, }, }, + [38] = { 64.666670019428, attackSpeedMultiplier = -20, baseMultiplier = 1.161, damageEffectiveness = 1.161, levelRequirement = 98, statInterpolation = { 3, }, cost = { Mana = 15, }, }, + [39] = { 64.666670019428, attackSpeedMultiplier = -20, baseMultiplier = 1.164, damageEffectiveness = 1.164, levelRequirement = 99, statInterpolation = { 3, }, cost = { Mana = 15, }, }, + [40] = { 64.666670019428, attackSpeedMultiplier = -20, baseMultiplier = 1.168, damageEffectiveness = 1.168, levelRequirement = 100, statInterpolation = { 3, }, cost = { Mana = 16, }, }, }, } skills["BlinkArrow"] = { @@ -3245,7 +3245,7 @@ skills["BlinkArrowAltX"] = { }, }, constantStats = { - { "base_skill_effect_duration", 20000 }, + { "base_skill_effect_duration", 5000 }, { "number_of_monsters_to_summon", 1 }, { "display_minion_monster_type", 25 }, { "base_number_of_blink_mirror_arrow_rain_of_arrows_clones", 3 }, @@ -3332,7 +3332,7 @@ skills["BlinkArrowAltY"] = { }, }, constantStats = { - { "base_skill_effect_duration", 20000 }, + { "base_skill_effect_duration", 5000 }, { "number_of_monsters_to_summon", 1 }, { "display_minion_monster_type", 25 }, { "base_number_of_blink_mirror_arrow_elemental_hit_clones", 3 }, @@ -4213,6 +4213,117 @@ skills["CobraLash"] = { [40] = { 7, attackSpeedMultiplier = 20, baseMultiplier = 2.682, damageEffectiveness = 2.682, levelRequirement = 100, statInterpolation = { 1, }, cost = { Mana = 10, }, }, }, } +skills["Conflagration"] = { + name = "Conflagration", + baseTypeName = "Conflagration", + color = 2, + baseEffectiveness = 3.3840000629425, + incrementalEffectiveness = 0.054000001400709, + description = "Fire arrows into the air that rain down around the targeted area, dealing area damage on impact and leaving the arrows stuck in the ground for a duration. If you move close to a stuck arrow, it will explode, dealing area damage and applying a fire damage over time debuff, as well as causing other stuck arrows in range to also explode.", + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Fire] = true, [SkillType.MirageArcherCanUse] = true, [SkillType.Area] = true, [SkillType.ProjectileSpeed] = true, [SkillType.ProjectileNumber] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Triggerable] = true, [SkillType.Rain] = true, [SkillType.Duration] = true, }, + weaponTypes = { + ["Bow"] = true, + }, + statDescriptionScope = "secondary_debuff_skill_stat_descriptions", + castTime = 1, + parts = { + { + name = "Projectile", + }, + { + name = "Explosion", + }, + }, + statMap = { + ["napalm_arrow_detonation_hit_damage_+%_final"] = { + mod("Damage", "MORE", nil, 0, bit.bor(KeywordFlag.Hit, KeywordFlag.Ailment), { type = "SkillPart", skillPart = 2 } ) + }, + ["base_fire_damage_to_deal_per_minute"] = { + skill("FireDot", nil, { type = "SkillPart", skillPart = 2 }), + div = 60, + }, + }, + baseFlags = { + attack = true, + projectile = true, + area = true, + duration = true, + }, + qualityStats = { + Default = { + { "napalm_arrow_detonation_hit_damage_+%_final", 1.5 }, + }, + }, + constantStats = { + { "base_skill_effect_duration", 6000 }, + { "active_skill_area_of_effect_description_mode", 7 }, + { "active_skill_base_area_of_effect_radius", 30 }, + { "active_skill_secondary_area_of_effect_description_mode", 7 }, + { "active_skill_base_secondary_area_of_effect_radius", 10 }, + { "active_skill_tertiary_area_of_effect_description_mode", 1 }, + { "napalm_arrow_detonation_hit_damage_+%_final", 50 }, + { "napalm_arrow_maximum_number_of_unprimed_arrows_allowed", 20 }, + { "skill_physical_damage_%_to_convert_to_fire", 100 }, + { "base_secondary_skill_effect_duration", 4000 }, + { "blast_rain_arrow_delay_ms", 90 }, + { "base_number_of_projectiles", 3 }, + }, + stats = { + "base_fire_damage_to_deal_per_minute", + "active_skill_base_tertiary_area_of_effect_radius", + "base_is_projectile", + "is_area_damage", + "skill_can_fire_arrows", + "base_skill_show_average_damage_instead_of_dps", + "quality_display_base_number_of_projectiles_is_gem", + "projectile_damage_modifiers_apply_to_skill_dot", + }, + notMinionStat = { + "base_fire_damage_to_deal_per_minute", + }, + levels = { + [1] = { 49.500001583248, 15, baseMultiplier = 0.3, damageEffectiveness = 0.3, levelRequirement = 28, statInterpolation = { 3, 1, }, cost = { Mana = 9, }, }, + [2] = { 49.500001583248, 15, baseMultiplier = 0.303, damageEffectiveness = 0.3, levelRequirement = 31, statInterpolation = { 3, 1, }, cost = { Mana = 9, }, }, + [3] = { 49.500001583248, 16, baseMultiplier = 0.306, damageEffectiveness = 0.31, levelRequirement = 34, statInterpolation = { 3, 1, }, cost = { Mana = 10, }, }, + [4] = { 49.500001583248, 16, baseMultiplier = 0.309, damageEffectiveness = 0.31, levelRequirement = 37, statInterpolation = { 3, 1, }, cost = { Mana = 10, }, }, + [5] = { 49.500001583248, 16, baseMultiplier = 0.312, damageEffectiveness = 0.31, levelRequirement = 40, statInterpolation = { 3, 1, }, cost = { Mana = 10, }, }, + [6] = { 49.500001583248, 16, baseMultiplier = 0.315, damageEffectiveness = 0.31, levelRequirement = 42, statInterpolation = { 3, 1, }, cost = { Mana = 10, }, }, + [7] = { 49.500001583248, 17, baseMultiplier = 0.318, damageEffectiveness = 0.32, levelRequirement = 44, statInterpolation = { 3, 1, }, cost = { Mana = 10, }, }, + [8] = { 49.500001583248, 17, baseMultiplier = 0.321, damageEffectiveness = 0.32, levelRequirement = 46, statInterpolation = { 3, 1, }, cost = { Mana = 11, }, }, + [9] = { 49.500001583248, 17, baseMultiplier = 0.324, damageEffectiveness = 0.32, levelRequirement = 48, statInterpolation = { 3, 1, }, cost = { Mana = 11, }, }, + [10] = { 49.500001583248, 17, baseMultiplier = 0.327, damageEffectiveness = 0.33, levelRequirement = 50, statInterpolation = { 3, 1, }, cost = { Mana = 11, }, }, + [11] = { 49.500001583248, 18, baseMultiplier = 0.329, damageEffectiveness = 0.33, levelRequirement = 52, statInterpolation = { 3, 1, }, cost = { Mana = 11, }, }, + [12] = { 49.500001583248, 18, baseMultiplier = 0.332, damageEffectiveness = 0.33, levelRequirement = 54, statInterpolation = { 3, 1, }, cost = { Mana = 11, }, }, + [13] = { 49.500001583248, 18, baseMultiplier = 0.335, damageEffectiveness = 0.34, levelRequirement = 56, statInterpolation = { 3, 1, }, cost = { Mana = 11, }, }, + [14] = { 49.500001583248, 18, baseMultiplier = 0.338, damageEffectiveness = 0.34, levelRequirement = 58, statInterpolation = { 3, 1, }, cost = { Mana = 12, }, }, + [15] = { 49.500001583248, 19, baseMultiplier = 0.341, damageEffectiveness = 0.34, levelRequirement = 60, statInterpolation = { 3, 1, }, cost = { Mana = 12, }, }, + [16] = { 49.500001583248, 19, baseMultiplier = 0.344, damageEffectiveness = 0.34, levelRequirement = 62, statInterpolation = { 3, 1, }, cost = { Mana = 12, }, }, + [17] = { 49.500001583248, 19, baseMultiplier = 0.347, damageEffectiveness = 0.35, levelRequirement = 64, statInterpolation = { 3, 1, }, cost = { Mana = 12, }, }, + [18] = { 49.500001583248, 19, baseMultiplier = 0.35, damageEffectiveness = 0.35, levelRequirement = 66, statInterpolation = { 3, 1, }, cost = { Mana = 12, }, }, + [19] = { 49.500001583248, 20, baseMultiplier = 0.353, damageEffectiveness = 0.35, levelRequirement = 68, statInterpolation = { 3, 1, }, cost = { Mana = 12, }, }, + [20] = { 49.500001583248, 20, baseMultiplier = 0.356, damageEffectiveness = 0.36, levelRequirement = 70, statInterpolation = { 3, 1, }, cost = { Mana = 13, }, }, + [21] = { 49.500001583248, 20, baseMultiplier = 0.359, damageEffectiveness = 0.36, levelRequirement = 72, statInterpolation = { 3, 1, }, cost = { Mana = 13, }, }, + [22] = { 49.500001583248, 20, baseMultiplier = 0.362, damageEffectiveness = 0.36, levelRequirement = 74, statInterpolation = { 3, 1, }, cost = { Mana = 13, }, }, + [23] = { 49.500001583248, 21, baseMultiplier = 0.365, damageEffectiveness = 0.36, levelRequirement = 76, statInterpolation = { 3, 1, }, cost = { Mana = 13, }, }, + [24] = { 49.500001583248, 21, baseMultiplier = 0.368, damageEffectiveness = 0.37, levelRequirement = 78, statInterpolation = { 3, 1, }, cost = { Mana = 13, }, }, + [25] = { 49.500001583248, 21, baseMultiplier = 0.371, damageEffectiveness = 0.37, levelRequirement = 80, statInterpolation = { 3, 1, }, cost = { Mana = 13, }, }, + [26] = { 49.500001583248, 21, baseMultiplier = 0.374, damageEffectiveness = 0.37, levelRequirement = 82, statInterpolation = { 3, 1, }, cost = { Mana = 14, }, }, + [27] = { 49.500001583248, 22, baseMultiplier = 0.377, damageEffectiveness = 0.38, levelRequirement = 84, statInterpolation = { 3, 1, }, cost = { Mana = 14, }, }, + [28] = { 49.500001583248, 22, baseMultiplier = 0.38, damageEffectiveness = 0.38, levelRequirement = 86, statInterpolation = { 3, 1, }, cost = { Mana = 14, }, }, + [29] = { 49.500001583248, 22, baseMultiplier = 0.383, damageEffectiveness = 0.38, levelRequirement = 88, statInterpolation = { 3, 1, }, cost = { Mana = 14, }, }, + [30] = { 49.500001583248, 22, baseMultiplier = 0.385, damageEffectiveness = 0.39, levelRequirement = 90, statInterpolation = { 3, 1, }, cost = { Mana = 14, }, }, + [31] = { 49.500001583248, 23, baseMultiplier = 0.387, damageEffectiveness = 0.39, levelRequirement = 91, statInterpolation = { 3, 1, }, cost = { Mana = 14, }, }, + [32] = { 49.500001583248, 23, baseMultiplier = 0.388, damageEffectiveness = 0.39, levelRequirement = 92, statInterpolation = { 3, 1, }, cost = { Mana = 14, }, }, + [33] = { 49.500001583248, 23, baseMultiplier = 0.39, damageEffectiveness = 0.39, levelRequirement = 93, statInterpolation = { 3, 1, }, cost = { Mana = 14, }, }, + [34] = { 49.500001583248, 23, baseMultiplier = 0.391, damageEffectiveness = 0.39, levelRequirement = 94, statInterpolation = { 3, 1, }, cost = { Mana = 15, }, }, + [35] = { 49.500001583248, 24, baseMultiplier = 0.393, damageEffectiveness = 0.39, levelRequirement = 95, statInterpolation = { 3, 1, }, cost = { Mana = 15, }, }, + [36] = { 49.500001583248, 24, baseMultiplier = 0.394, damageEffectiveness = 0.39, levelRequirement = 96, statInterpolation = { 3, 1, }, cost = { Mana = 15, }, }, + [37] = { 49.500001583248, 24, baseMultiplier = 0.396, damageEffectiveness = 0.4, levelRequirement = 97, statInterpolation = { 3, 1, }, cost = { Mana = 15, }, }, + [38] = { 49.500001583248, 24, baseMultiplier = 0.397, damageEffectiveness = 0.4, levelRequirement = 98, statInterpolation = { 3, 1, }, cost = { Mana = 15, }, }, + [39] = { 49.500001583248, 25, baseMultiplier = 0.399, damageEffectiveness = 0.4, levelRequirement = 99, statInterpolation = { 3, 1, }, cost = { Mana = 15, }, }, + [40] = { 49.500001583248, 25, baseMultiplier = 0.4, damageEffectiveness = 0.4, levelRequirement = 100, statInterpolation = { 3, 1, }, cost = { Mana = 15, }, }, + }, +} skills["Cremation"] = { name = "Cremation", baseTypeName = "Cremation", @@ -4621,46 +4732,46 @@ skills["Cyclone"] = { "skill_can_add_multiple_charges_per_action", }, levels = { - [1] = { -30, PvPDamageMultiplier = -30, attackSpeedMultiplier = 200, baseMultiplier = 0.682, damageEffectiveness = 0.682, levelRequirement = 28, statInterpolation = { 1, }, cost = { Mana = 2, }, }, - [2] = { -29, PvPDamageMultiplier = -30, attackSpeedMultiplier = 200, baseMultiplier = 0.704, damageEffectiveness = 0.704, levelRequirement = 31, statInterpolation = { 1, }, cost = { Mana = 3, }, }, - [3] = { -29, PvPDamageMultiplier = -30, attackSpeedMultiplier = 200, baseMultiplier = 0.728, damageEffectiveness = 0.728, levelRequirement = 34, statInterpolation = { 1, }, cost = { Mana = 3, }, }, - [4] = { -28, PvPDamageMultiplier = -30, attackSpeedMultiplier = 200, baseMultiplier = 0.754, damageEffectiveness = 0.754, levelRequirement = 37, statInterpolation = { 1, }, cost = { Mana = 3, }, }, - [5] = { -28, PvPDamageMultiplier = -30, attackSpeedMultiplier = 200, baseMultiplier = 0.78, damageEffectiveness = 0.78, levelRequirement = 40, statInterpolation = { 1, }, cost = { Mana = 3, }, }, - [6] = { -27, PvPDamageMultiplier = -30, attackSpeedMultiplier = 200, baseMultiplier = 0.803, damageEffectiveness = 0.803, levelRequirement = 42, statInterpolation = { 1, }, cost = { Mana = 3, }, }, - [7] = { -27, PvPDamageMultiplier = -30, attackSpeedMultiplier = 200, baseMultiplier = 0.829, damageEffectiveness = 0.829, levelRequirement = 44, statInterpolation = { 1, }, cost = { Mana = 3, }, }, - [8] = { -26, PvPDamageMultiplier = -30, attackSpeedMultiplier = 200, baseMultiplier = 0.857, damageEffectiveness = 0.857, levelRequirement = 46, statInterpolation = { 1, }, cost = { Mana = 3, }, }, - [9] = { -26, PvPDamageMultiplier = -30, attackSpeedMultiplier = 200, baseMultiplier = 0.884, damageEffectiveness = 0.884, levelRequirement = 48, statInterpolation = { 1, }, cost = { Mana = 3, }, }, - [10] = { -25, PvPDamageMultiplier = -30, attackSpeedMultiplier = 200, baseMultiplier = 0.912, damageEffectiveness = 0.912, levelRequirement = 50, statInterpolation = { 1, }, cost = { Mana = 3, }, }, - [11] = { -25, PvPDamageMultiplier = -30, attackSpeedMultiplier = 200, baseMultiplier = 0.942, damageEffectiveness = 0.942, levelRequirement = 52, statInterpolation = { 1, }, cost = { Mana = 3, }, }, - [12] = { -24, PvPDamageMultiplier = -30, attackSpeedMultiplier = 200, baseMultiplier = 0.972, damageEffectiveness = 0.972, levelRequirement = 54, statInterpolation = { 1, }, cost = { Mana = 3, }, }, - [13] = { -24, PvPDamageMultiplier = -30, attackSpeedMultiplier = 200, baseMultiplier = 1.002, damageEffectiveness = 1.002, levelRequirement = 56, statInterpolation = { 1, }, cost = { Mana = 3, }, }, - [14] = { -23, PvPDamageMultiplier = -30, attackSpeedMultiplier = 200, baseMultiplier = 1.035, damageEffectiveness = 1.035, levelRequirement = 58, statInterpolation = { 1, }, cost = { Mana = 3, }, }, - [15] = { -23, PvPDamageMultiplier = -30, attackSpeedMultiplier = 200, baseMultiplier = 1.068, damageEffectiveness = 1.068, levelRequirement = 60, statInterpolation = { 1, }, cost = { Mana = 3, }, }, - [16] = { -22, PvPDamageMultiplier = -30, attackSpeedMultiplier = 200, baseMultiplier = 1.103, damageEffectiveness = 1.103, levelRequirement = 62, statInterpolation = { 1, }, cost = { Mana = 3, }, }, - [17] = { -22, PvPDamageMultiplier = -30, attackSpeedMultiplier = 200, baseMultiplier = 1.139, damageEffectiveness = 1.139, levelRequirement = 64, statInterpolation = { 1, }, cost = { Mana = 3, }, }, - [18] = { -21, PvPDamageMultiplier = -30, attackSpeedMultiplier = 200, baseMultiplier = 1.175, damageEffectiveness = 1.175, levelRequirement = 66, statInterpolation = { 1, }, cost = { Mana = 3, }, }, - [19] = { -21, PvPDamageMultiplier = -30, attackSpeedMultiplier = 200, baseMultiplier = 1.213, damageEffectiveness = 1.213, levelRequirement = 68, statInterpolation = { 1, }, cost = { Mana = 3, }, }, - [20] = { -20, PvPDamageMultiplier = -30, attackSpeedMultiplier = 200, baseMultiplier = 1.251, damageEffectiveness = 1.251, levelRequirement = 70, statInterpolation = { 1, }, cost = { Mana = 3, }, }, - [21] = { -20, PvPDamageMultiplier = -30, attackSpeedMultiplier = 200, baseMultiplier = 1.29, damageEffectiveness = 1.29, levelRequirement = 72, statInterpolation = { 1, }, cost = { Mana = 3, }, }, - [22] = { -19, PvPDamageMultiplier = -30, attackSpeedMultiplier = 200, baseMultiplier = 1.333, damageEffectiveness = 1.333, levelRequirement = 74, statInterpolation = { 1, }, cost = { Mana = 3, }, }, - [23] = { -19, PvPDamageMultiplier = -30, attackSpeedMultiplier = 200, baseMultiplier = 1.375, damageEffectiveness = 1.375, levelRequirement = 76, statInterpolation = { 1, }, cost = { Mana = 3, }, }, - [24] = { -18, PvPDamageMultiplier = -30, attackSpeedMultiplier = 200, baseMultiplier = 1.419, damageEffectiveness = 1.419, levelRequirement = 78, statInterpolation = { 1, }, cost = { Mana = 4, }, }, - [25] = { -18, PvPDamageMultiplier = -30, attackSpeedMultiplier = 200, baseMultiplier = 1.465, damageEffectiveness = 1.465, levelRequirement = 80, statInterpolation = { 1, }, cost = { Mana = 4, }, }, - [26] = { -17, PvPDamageMultiplier = -30, attackSpeedMultiplier = 200, baseMultiplier = 1.511, damageEffectiveness = 1.511, levelRequirement = 82, statInterpolation = { 1, }, cost = { Mana = 4, }, }, - [27] = { -17, PvPDamageMultiplier = -30, attackSpeedMultiplier = 200, baseMultiplier = 1.56, damageEffectiveness = 1.56, levelRequirement = 84, statInterpolation = { 1, }, cost = { Mana = 4, }, }, - [28] = { -16, PvPDamageMultiplier = -30, attackSpeedMultiplier = 200, baseMultiplier = 1.609, damageEffectiveness = 1.609, levelRequirement = 86, statInterpolation = { 1, }, cost = { Mana = 4, }, }, - [29] = { -16, PvPDamageMultiplier = -30, attackSpeedMultiplier = 200, baseMultiplier = 1.662, damageEffectiveness = 1.662, levelRequirement = 88, statInterpolation = { 1, }, cost = { Mana = 4, }, }, - [30] = { -15, PvPDamageMultiplier = -30, attackSpeedMultiplier = 200, baseMultiplier = 1.713, damageEffectiveness = 1.713, levelRequirement = 90, statInterpolation = { 1, }, cost = { Mana = 4, }, }, - [31] = { -15, PvPDamageMultiplier = -30, attackSpeedMultiplier = 200, baseMultiplier = 1.791, damageEffectiveness = 1.791, levelRequirement = 91, statInterpolation = { 1, }, cost = { Mana = 4, }, }, - [32] = { -14, PvPDamageMultiplier = -30, attackSpeedMultiplier = 200, baseMultiplier = 1.819, damageEffectiveness = 1.819, levelRequirement = 92, statInterpolation = { 1, }, cost = { Mana = 4, }, }, - [33] = { -14, PvPDamageMultiplier = -30, attackSpeedMultiplier = 200, baseMultiplier = 1.848, damageEffectiveness = 1.848, levelRequirement = 93, statInterpolation = { 1, }, cost = { Mana = 4, }, }, - [34] = { -13, PvPDamageMultiplier = -30, attackSpeedMultiplier = 200, baseMultiplier = 1.878, damageEffectiveness = 1.878, levelRequirement = 94, statInterpolation = { 1, }, cost = { Mana = 4, }, }, - [35] = { -13, PvPDamageMultiplier = -30, attackSpeedMultiplier = 200, baseMultiplier = 1.908, damageEffectiveness = 1.908, levelRequirement = 95, statInterpolation = { 1, }, cost = { Mana = 4, }, }, - [36] = { -12, PvPDamageMultiplier = -30, attackSpeedMultiplier = 200, baseMultiplier = 1.937, damageEffectiveness = 1.937, levelRequirement = 96, statInterpolation = { 1, }, cost = { Mana = 4, }, }, - [37] = { -12, PvPDamageMultiplier = -30, attackSpeedMultiplier = 200, baseMultiplier = 1.969, damageEffectiveness = 1.969, levelRequirement = 97, statInterpolation = { 1, }, cost = { Mana = 4, }, }, - [38] = { -11, PvPDamageMultiplier = -30, attackSpeedMultiplier = 200, baseMultiplier = 2.001, damageEffectiveness = 2.001, levelRequirement = 98, statInterpolation = { 1, }, cost = { Mana = 4, }, }, - [39] = { -11, PvPDamageMultiplier = -30, attackSpeedMultiplier = 200, baseMultiplier = 2.032, damageEffectiveness = 2.032, levelRequirement = 99, statInterpolation = { 1, }, cost = { Mana = 4, }, }, - [40] = { -10, PvPDamageMultiplier = -30, attackSpeedMultiplier = 200, baseMultiplier = 2.064, damageEffectiveness = 2.064, levelRequirement = 100, statInterpolation = { 1, }, cost = { Mana = 4, }, }, + [1] = { -30, PvPDamageMultiplier = -30, attackSpeedMultiplier = 200, baseMultiplier = 0.816, damageEffectiveness = 0.816, levelRequirement = 28, statInterpolation = { 1, }, cost = { Mana = 2, }, }, + [2] = { -29, PvPDamageMultiplier = -30, attackSpeedMultiplier = 200, baseMultiplier = 0.852, damageEffectiveness = 0.852, levelRequirement = 31, statInterpolation = { 1, }, cost = { Mana = 3, }, }, + [3] = { -29, PvPDamageMultiplier = -30, attackSpeedMultiplier = 200, baseMultiplier = 0.888, damageEffectiveness = 0.888, levelRequirement = 34, statInterpolation = { 1, }, cost = { Mana = 3, }, }, + [4] = { -28, PvPDamageMultiplier = -30, attackSpeedMultiplier = 200, baseMultiplier = 0.924, damageEffectiveness = 0.924, levelRequirement = 37, statInterpolation = { 1, }, cost = { Mana = 3, }, }, + [5] = { -28, PvPDamageMultiplier = -30, attackSpeedMultiplier = 200, baseMultiplier = 0.96, damageEffectiveness = 0.96, levelRequirement = 40, statInterpolation = { 1, }, cost = { Mana = 3, }, }, + [6] = { -27, PvPDamageMultiplier = -30, attackSpeedMultiplier = 200, baseMultiplier = 0.996, damageEffectiveness = 0.996, levelRequirement = 42, statInterpolation = { 1, }, cost = { Mana = 3, }, }, + [7] = { -27, PvPDamageMultiplier = -30, attackSpeedMultiplier = 200, baseMultiplier = 1.032, damageEffectiveness = 1.032, levelRequirement = 44, statInterpolation = { 1, }, cost = { Mana = 3, }, }, + [8] = { -26, PvPDamageMultiplier = -30, attackSpeedMultiplier = 200, baseMultiplier = 1.068, damageEffectiveness = 1.068, levelRequirement = 46, statInterpolation = { 1, }, cost = { Mana = 3, }, }, + [9] = { -26, PvPDamageMultiplier = -30, attackSpeedMultiplier = 200, baseMultiplier = 1.104, damageEffectiveness = 1.104, levelRequirement = 48, statInterpolation = { 1, }, cost = { Mana = 3, }, }, + [10] = { -25, PvPDamageMultiplier = -30, attackSpeedMultiplier = 200, baseMultiplier = 1.14, damageEffectiveness = 1.14, levelRequirement = 50, statInterpolation = { 1, }, cost = { Mana = 3, }, }, + [11] = { -25, PvPDamageMultiplier = -30, attackSpeedMultiplier = 200, baseMultiplier = 1.176, damageEffectiveness = 1.176, levelRequirement = 52, statInterpolation = { 1, }, cost = { Mana = 3, }, }, + [12] = { -24, PvPDamageMultiplier = -30, attackSpeedMultiplier = 200, baseMultiplier = 1.212, damageEffectiveness = 1.212, levelRequirement = 54, statInterpolation = { 1, }, cost = { Mana = 3, }, }, + [13] = { -24, PvPDamageMultiplier = -30, attackSpeedMultiplier = 200, baseMultiplier = 1.248, damageEffectiveness = 1.248, levelRequirement = 56, statInterpolation = { 1, }, cost = { Mana = 3, }, }, + [14] = { -23, PvPDamageMultiplier = -30, attackSpeedMultiplier = 200, baseMultiplier = 1.284, damageEffectiveness = 1.284, levelRequirement = 58, statInterpolation = { 1, }, cost = { Mana = 3, }, }, + [15] = { -23, PvPDamageMultiplier = -30, attackSpeedMultiplier = 200, baseMultiplier = 1.32, damageEffectiveness = 1.32, levelRequirement = 60, statInterpolation = { 1, }, cost = { Mana = 3, }, }, + [16] = { -22, PvPDamageMultiplier = -30, attackSpeedMultiplier = 200, baseMultiplier = 1.356, damageEffectiveness = 1.356, levelRequirement = 62, statInterpolation = { 1, }, cost = { Mana = 3, }, }, + [17] = { -22, PvPDamageMultiplier = -30, attackSpeedMultiplier = 200, baseMultiplier = 1.392, damageEffectiveness = 1.392, levelRequirement = 64, statInterpolation = { 1, }, cost = { Mana = 3, }, }, + [18] = { -21, PvPDamageMultiplier = -30, attackSpeedMultiplier = 200, baseMultiplier = 1.428, damageEffectiveness = 1.428, levelRequirement = 66, statInterpolation = { 1, }, cost = { Mana = 3, }, }, + [19] = { -21, PvPDamageMultiplier = -30, attackSpeedMultiplier = 200, baseMultiplier = 1.464, damageEffectiveness = 1.464, levelRequirement = 68, statInterpolation = { 1, }, cost = { Mana = 3, }, }, + [20] = { -20, PvPDamageMultiplier = -30, attackSpeedMultiplier = 200, baseMultiplier = 1.5, damageEffectiveness = 1.5, levelRequirement = 70, statInterpolation = { 1, }, cost = { Mana = 3, }, }, + [21] = { -20, PvPDamageMultiplier = -30, attackSpeedMultiplier = 200, baseMultiplier = 1.536, damageEffectiveness = 1.536, levelRequirement = 72, statInterpolation = { 1, }, cost = { Mana = 3, }, }, + [22] = { -19, PvPDamageMultiplier = -30, attackSpeedMultiplier = 200, baseMultiplier = 1.572, damageEffectiveness = 1.572, levelRequirement = 74, statInterpolation = { 1, }, cost = { Mana = 3, }, }, + [23] = { -19, PvPDamageMultiplier = -30, attackSpeedMultiplier = 200, baseMultiplier = 1.608, damageEffectiveness = 1.608, levelRequirement = 76, statInterpolation = { 1, }, cost = { Mana = 3, }, }, + [24] = { -18, PvPDamageMultiplier = -30, attackSpeedMultiplier = 200, baseMultiplier = 1.644, damageEffectiveness = 1.644, levelRequirement = 78, statInterpolation = { 1, }, cost = { Mana = 4, }, }, + [25] = { -18, PvPDamageMultiplier = -30, attackSpeedMultiplier = 200, baseMultiplier = 1.68, damageEffectiveness = 1.68, levelRequirement = 80, statInterpolation = { 1, }, cost = { Mana = 4, }, }, + [26] = { -17, PvPDamageMultiplier = -30, attackSpeedMultiplier = 200, baseMultiplier = 1.716, damageEffectiveness = 1.716, levelRequirement = 82, statInterpolation = { 1, }, cost = { Mana = 4, }, }, + [27] = { -17, PvPDamageMultiplier = -30, attackSpeedMultiplier = 200, baseMultiplier = 1.752, damageEffectiveness = 1.752, levelRequirement = 84, statInterpolation = { 1, }, cost = { Mana = 4, }, }, + [28] = { -16, PvPDamageMultiplier = -30, attackSpeedMultiplier = 200, baseMultiplier = 1.788, damageEffectiveness = 1.788, levelRequirement = 86, statInterpolation = { 1, }, cost = { Mana = 4, }, }, + [29] = { -16, PvPDamageMultiplier = -30, attackSpeedMultiplier = 200, baseMultiplier = 1.824, damageEffectiveness = 1.824, levelRequirement = 88, statInterpolation = { 1, }, cost = { Mana = 4, }, }, + [30] = { -15, PvPDamageMultiplier = -30, attackSpeedMultiplier = 200, baseMultiplier = 1.86, damageEffectiveness = 1.86, levelRequirement = 90, statInterpolation = { 1, }, cost = { Mana = 4, }, }, + [31] = { -15, PvPDamageMultiplier = -30, attackSpeedMultiplier = 200, baseMultiplier = 1.878, damageEffectiveness = 1.878, levelRequirement = 91, statInterpolation = { 1, }, cost = { Mana = 4, }, }, + [32] = { -14, PvPDamageMultiplier = -30, attackSpeedMultiplier = 200, baseMultiplier = 1.896, damageEffectiveness = 1.896, levelRequirement = 92, statInterpolation = { 1, }, cost = { Mana = 4, }, }, + [33] = { -14, PvPDamageMultiplier = -30, attackSpeedMultiplier = 200, baseMultiplier = 1.914, damageEffectiveness = 1.914, levelRequirement = 93, statInterpolation = { 1, }, cost = { Mana = 4, }, }, + [34] = { -13, PvPDamageMultiplier = -30, attackSpeedMultiplier = 200, baseMultiplier = 1.932, damageEffectiveness = 1.932, levelRequirement = 94, statInterpolation = { 1, }, cost = { Mana = 4, }, }, + [35] = { -13, PvPDamageMultiplier = -30, attackSpeedMultiplier = 200, baseMultiplier = 1.95, damageEffectiveness = 1.95, levelRequirement = 95, statInterpolation = { 1, }, cost = { Mana = 4, }, }, + [36] = { -12, PvPDamageMultiplier = -30, attackSpeedMultiplier = 200, baseMultiplier = 1.968, damageEffectiveness = 1.968, levelRequirement = 96, statInterpolation = { 1, }, cost = { Mana = 4, }, }, + [37] = { -12, PvPDamageMultiplier = -30, attackSpeedMultiplier = 200, baseMultiplier = 1.986, damageEffectiveness = 1.986, levelRequirement = 97, statInterpolation = { 1, }, cost = { Mana = 4, }, }, + [38] = { -11, PvPDamageMultiplier = -30, attackSpeedMultiplier = 200, baseMultiplier = 2.004, damageEffectiveness = 2.004, levelRequirement = 98, statInterpolation = { 1, }, cost = { Mana = 4, }, }, + [39] = { -11, PvPDamageMultiplier = -30, attackSpeedMultiplier = 200, baseMultiplier = 2.022, damageEffectiveness = 2.022, levelRequirement = 99, statInterpolation = { 1, }, cost = { Mana = 4, }, }, + [40] = { -10, PvPDamageMultiplier = -30, attackSpeedMultiplier = 200, baseMultiplier = 2.04, damageEffectiveness = 2.04, levelRequirement = 100, statInterpolation = { 1, }, cost = { Mana = 4, }, }, }, } skills["CycloneAltX"] = { @@ -4743,46 +4854,46 @@ skills["CycloneAltX"] = { "skill_can_add_multiple_charges_per_action", }, levels = { - [1] = { 400, 5, PvPDamageMultiplier = -30, attackSpeedMultiplier = 80, baseMultiplier = 0.682, damageEffectiveness = 0.682, levelRequirement = 28, statInterpolation = { 1, 1, }, cost = { Mana = 4, }, }, - [2] = { 400, 5, PvPDamageMultiplier = -30, attackSpeedMultiplier = 80, baseMultiplier = 0.704, damageEffectiveness = 0.704, levelRequirement = 31, statInterpolation = { 1, 1, }, cost = { Mana = 4, }, }, - [3] = { 400, 5, PvPDamageMultiplier = -30, attackSpeedMultiplier = 80, baseMultiplier = 0.728, damageEffectiveness = 0.728, levelRequirement = 34, statInterpolation = { 1, 1, }, cost = { Mana = 4, }, }, - [4] = { 400, 5, PvPDamageMultiplier = -30, attackSpeedMultiplier = 80, baseMultiplier = 0.754, damageEffectiveness = 0.754, levelRequirement = 37, statInterpolation = { 1, 1, }, cost = { Mana = 4, }, }, - [5] = { 400, 5, PvPDamageMultiplier = -30, attackSpeedMultiplier = 80, baseMultiplier = 0.78, damageEffectiveness = 0.78, levelRequirement = 40, statInterpolation = { 1, 1, }, cost = { Mana = 4, }, }, - [6] = { 400, 5, PvPDamageMultiplier = -30, attackSpeedMultiplier = 80, baseMultiplier = 0.803, damageEffectiveness = 0.803, levelRequirement = 42, statInterpolation = { 1, 1, }, cost = { Mana = 4, }, }, - [7] = { 400, 5, PvPDamageMultiplier = -30, attackSpeedMultiplier = 80, baseMultiplier = 0.829, damageEffectiveness = 0.829, levelRequirement = 44, statInterpolation = { 1, 1, }, cost = { Mana = 4, }, }, - [8] = { 400, 5, PvPDamageMultiplier = -30, attackSpeedMultiplier = 80, baseMultiplier = 0.857, damageEffectiveness = 0.857, levelRequirement = 46, statInterpolation = { 1, 1, }, cost = { Mana = 4, }, }, - [9] = { 400, 5, PvPDamageMultiplier = -30, attackSpeedMultiplier = 80, baseMultiplier = 0.884, damageEffectiveness = 0.884, levelRequirement = 48, statInterpolation = { 1, 1, }, cost = { Mana = 4, }, }, - [10] = { 400, 5, PvPDamageMultiplier = -30, attackSpeedMultiplier = 80, baseMultiplier = 0.912, damageEffectiveness = 0.912, levelRequirement = 50, statInterpolation = { 1, 1, }, cost = { Mana = 4, }, }, - [11] = { 400, 5, PvPDamageMultiplier = -30, attackSpeedMultiplier = 80, baseMultiplier = 0.942, damageEffectiveness = 0.942, levelRequirement = 52, statInterpolation = { 1, 1, }, cost = { Mana = 5, }, }, - [12] = { 400, 5, PvPDamageMultiplier = -30, attackSpeedMultiplier = 80, baseMultiplier = 0.972, damageEffectiveness = 0.972, levelRequirement = 54, statInterpolation = { 1, 1, }, cost = { Mana = 5, }, }, - [13] = { 400, 5, PvPDamageMultiplier = -30, attackSpeedMultiplier = 80, baseMultiplier = 1.002, damageEffectiveness = 1.002, levelRequirement = 56, statInterpolation = { 1, 1, }, cost = { Mana = 5, }, }, - [14] = { 400, 5, PvPDamageMultiplier = -30, attackSpeedMultiplier = 80, baseMultiplier = 1.035, damageEffectiveness = 1.035, levelRequirement = 58, statInterpolation = { 1, 1, }, cost = { Mana = 5, }, }, - [15] = { 400, 5, PvPDamageMultiplier = -30, attackSpeedMultiplier = 80, baseMultiplier = 1.068, damageEffectiveness = 1.068, levelRequirement = 60, statInterpolation = { 1, 1, }, cost = { Mana = 5, }, }, - [16] = { 400, 5, PvPDamageMultiplier = -30, attackSpeedMultiplier = 80, baseMultiplier = 1.103, damageEffectiveness = 1.103, levelRequirement = 62, statInterpolation = { 1, 1, }, cost = { Mana = 5, }, }, - [17] = { 400, 5, PvPDamageMultiplier = -30, attackSpeedMultiplier = 80, baseMultiplier = 1.139, damageEffectiveness = 1.139, levelRequirement = 64, statInterpolation = { 1, 1, }, cost = { Mana = 5, }, }, - [18] = { 400, 5, PvPDamageMultiplier = -30, attackSpeedMultiplier = 80, baseMultiplier = 1.175, damageEffectiveness = 1.175, levelRequirement = 66, statInterpolation = { 1, 1, }, cost = { Mana = 5, }, }, - [19] = { 400, 5, PvPDamageMultiplier = -30, attackSpeedMultiplier = 80, baseMultiplier = 1.213, damageEffectiveness = 1.213, levelRequirement = 68, statInterpolation = { 1, 1, }, cost = { Mana = 5, }, }, - [20] = { 400, 5, PvPDamageMultiplier = -30, attackSpeedMultiplier = 80, baseMultiplier = 1.251, damageEffectiveness = 1.251, levelRequirement = 70, statInterpolation = { 1, 1, }, cost = { Mana = 5, }, }, - [21] = { 400, 5, PvPDamageMultiplier = -30, attackSpeedMultiplier = 80, baseMultiplier = 1.29, damageEffectiveness = 1.29, levelRequirement = 72, statInterpolation = { 1, 1, }, cost = { Mana = 5, }, }, - [22] = { 400, 5, PvPDamageMultiplier = -30, attackSpeedMultiplier = 80, baseMultiplier = 1.333, damageEffectiveness = 1.333, levelRequirement = 74, statInterpolation = { 1, 1, }, cost = { Mana = 5, }, }, - [23] = { 400, 5, PvPDamageMultiplier = -30, attackSpeedMultiplier = 80, baseMultiplier = 1.375, damageEffectiveness = 1.375, levelRequirement = 76, statInterpolation = { 1, 1, }, cost = { Mana = 6, }, }, - [24] = { 400, 5, PvPDamageMultiplier = -30, attackSpeedMultiplier = 80, baseMultiplier = 1.419, damageEffectiveness = 1.419, levelRequirement = 78, statInterpolation = { 1, 1, }, cost = { Mana = 6, }, }, - [25] = { 400, 5, PvPDamageMultiplier = -30, attackSpeedMultiplier = 80, baseMultiplier = 1.465, damageEffectiveness = 1.465, levelRequirement = 80, statInterpolation = { 1, 1, }, cost = { Mana = 6, }, }, - [26] = { 400, 5, PvPDamageMultiplier = -30, attackSpeedMultiplier = 80, baseMultiplier = 1.511, damageEffectiveness = 1.511, levelRequirement = 82, statInterpolation = { 1, 1, }, cost = { Mana = 6, }, }, - [27] = { 400, 5, PvPDamageMultiplier = -30, attackSpeedMultiplier = 80, baseMultiplier = 1.56, damageEffectiveness = 1.56, levelRequirement = 84, statInterpolation = { 1, 1, }, cost = { Mana = 6, }, }, - [28] = { 400, 5, PvPDamageMultiplier = -30, attackSpeedMultiplier = 80, baseMultiplier = 1.609, damageEffectiveness = 1.609, levelRequirement = 86, statInterpolation = { 1, 1, }, cost = { Mana = 6, }, }, - [29] = { 400, 5, PvPDamageMultiplier = -30, attackSpeedMultiplier = 80, baseMultiplier = 1.662, damageEffectiveness = 1.662, levelRequirement = 88, statInterpolation = { 1, 1, }, cost = { Mana = 6, }, }, - [30] = { 400, 5, PvPDamageMultiplier = -30, attackSpeedMultiplier = 80, baseMultiplier = 1.713, damageEffectiveness = 1.713, levelRequirement = 90, statInterpolation = { 1, 1, }, cost = { Mana = 6, }, }, - [31] = { 400, 5, PvPDamageMultiplier = -30, attackSpeedMultiplier = 80, baseMultiplier = 1.791, damageEffectiveness = 1.791, levelRequirement = 91, statInterpolation = { 1, 1, }, cost = { Mana = 6, }, }, - [32] = { 400, 5, PvPDamageMultiplier = -30, attackSpeedMultiplier = 80, baseMultiplier = 1.819, damageEffectiveness = 1.819, levelRequirement = 92, statInterpolation = { 1, 1, }, cost = { Mana = 6, }, }, - [33] = { 400, 5, PvPDamageMultiplier = -30, attackSpeedMultiplier = 80, baseMultiplier = 1.848, damageEffectiveness = 1.848, levelRequirement = 93, statInterpolation = { 1, 1, }, cost = { Mana = 6, }, }, - [34] = { 400, 5, PvPDamageMultiplier = -30, attackSpeedMultiplier = 80, baseMultiplier = 1.878, damageEffectiveness = 1.878, levelRequirement = 94, statInterpolation = { 1, 1, }, cost = { Mana = 6, }, }, - [35] = { 400, 5, PvPDamageMultiplier = -30, attackSpeedMultiplier = 80, baseMultiplier = 1.908, damageEffectiveness = 1.908, levelRequirement = 95, statInterpolation = { 1, 1, }, cost = { Mana = 6, }, }, - [36] = { 400, 5, PvPDamageMultiplier = -30, attackSpeedMultiplier = 80, baseMultiplier = 1.937, damageEffectiveness = 1.937, levelRequirement = 96, statInterpolation = { 1, 1, }, cost = { Mana = 6, }, }, - [37] = { 400, 5, PvPDamageMultiplier = -30, attackSpeedMultiplier = 80, baseMultiplier = 1.969, damageEffectiveness = 1.969, levelRequirement = 97, statInterpolation = { 1, 1, }, cost = { Mana = 6, }, }, - [38] = { 400, 5, PvPDamageMultiplier = -30, attackSpeedMultiplier = 80, baseMultiplier = 2.001, damageEffectiveness = 2.001, levelRequirement = 98, statInterpolation = { 1, 1, }, cost = { Mana = 6, }, }, - [39] = { 400, 5, PvPDamageMultiplier = -30, attackSpeedMultiplier = 80, baseMultiplier = 2.032, damageEffectiveness = 2.032, levelRequirement = 99, statInterpolation = { 1, 1, }, cost = { Mana = 6, }, }, - [40] = { 400, 5, PvPDamageMultiplier = -30, attackSpeedMultiplier = 80, baseMultiplier = 2.064, damageEffectiveness = 2.064, levelRequirement = 100, statInterpolation = { 1, 1, }, cost = { Mana = 7, }, }, + [1] = { 400, 5, PvPDamageMultiplier = -30, attackSpeedMultiplier = 80, baseMultiplier = 0.816, damageEffectiveness = 0.816, levelRequirement = 28, statInterpolation = { 1, 1, }, cost = { Mana = 4, }, }, + [2] = { 400, 5, PvPDamageMultiplier = -30, attackSpeedMultiplier = 80, baseMultiplier = 0.852, damageEffectiveness = 0.852, levelRequirement = 31, statInterpolation = { 1, 1, }, cost = { Mana = 4, }, }, + [3] = { 400, 5, PvPDamageMultiplier = -30, attackSpeedMultiplier = 80, baseMultiplier = 0.888, damageEffectiveness = 0.888, levelRequirement = 34, statInterpolation = { 1, 1, }, cost = { Mana = 4, }, }, + [4] = { 400, 5, PvPDamageMultiplier = -30, attackSpeedMultiplier = 80, baseMultiplier = 0.924, damageEffectiveness = 0.924, levelRequirement = 37, statInterpolation = { 1, 1, }, cost = { Mana = 4, }, }, + [5] = { 400, 5, PvPDamageMultiplier = -30, attackSpeedMultiplier = 80, baseMultiplier = 0.96, damageEffectiveness = 0.96, levelRequirement = 40, statInterpolation = { 1, 1, }, cost = { Mana = 4, }, }, + [6] = { 400, 5, PvPDamageMultiplier = -30, attackSpeedMultiplier = 80, baseMultiplier = 0.996, damageEffectiveness = 0.996, levelRequirement = 42, statInterpolation = { 1, 1, }, cost = { Mana = 4, }, }, + [7] = { 400, 5, PvPDamageMultiplier = -30, attackSpeedMultiplier = 80, baseMultiplier = 1.032, damageEffectiveness = 1.032, levelRequirement = 44, statInterpolation = { 1, 1, }, cost = { Mana = 4, }, }, + [8] = { 400, 5, PvPDamageMultiplier = -30, attackSpeedMultiplier = 80, baseMultiplier = 1.068, damageEffectiveness = 1.068, levelRequirement = 46, statInterpolation = { 1, 1, }, cost = { Mana = 4, }, }, + [9] = { 400, 5, PvPDamageMultiplier = -30, attackSpeedMultiplier = 80, baseMultiplier = 1.104, damageEffectiveness = 1.104, levelRequirement = 48, statInterpolation = { 1, 1, }, cost = { Mana = 4, }, }, + [10] = { 400, 5, PvPDamageMultiplier = -30, attackSpeedMultiplier = 80, baseMultiplier = 1.14, damageEffectiveness = 1.14, levelRequirement = 50, statInterpolation = { 1, 1, }, cost = { Mana = 4, }, }, + [11] = { 400, 5, PvPDamageMultiplier = -30, attackSpeedMultiplier = 80, baseMultiplier = 1.176, damageEffectiveness = 1.176, levelRequirement = 52, statInterpolation = { 1, 1, }, cost = { Mana = 5, }, }, + [12] = { 400, 5, PvPDamageMultiplier = -30, attackSpeedMultiplier = 80, baseMultiplier = 1.212, damageEffectiveness = 1.212, levelRequirement = 54, statInterpolation = { 1, 1, }, cost = { Mana = 5, }, }, + [13] = { 400, 5, PvPDamageMultiplier = -30, attackSpeedMultiplier = 80, baseMultiplier = 1.248, damageEffectiveness = 1.248, levelRequirement = 56, statInterpolation = { 1, 1, }, cost = { Mana = 5, }, }, + [14] = { 400, 5, PvPDamageMultiplier = -30, attackSpeedMultiplier = 80, baseMultiplier = 1.284, damageEffectiveness = 1.284, levelRequirement = 58, statInterpolation = { 1, 1, }, cost = { Mana = 5, }, }, + [15] = { 400, 5, PvPDamageMultiplier = -30, attackSpeedMultiplier = 80, baseMultiplier = 1.32, damageEffectiveness = 1.32, levelRequirement = 60, statInterpolation = { 1, 1, }, cost = { Mana = 5, }, }, + [16] = { 400, 5, PvPDamageMultiplier = -30, attackSpeedMultiplier = 80, baseMultiplier = 1.356, damageEffectiveness = 1.356, levelRequirement = 62, statInterpolation = { 1, 1, }, cost = { Mana = 5, }, }, + [17] = { 400, 5, PvPDamageMultiplier = -30, attackSpeedMultiplier = 80, baseMultiplier = 1.392, damageEffectiveness = 1.392, levelRequirement = 64, statInterpolation = { 1, 1, }, cost = { Mana = 5, }, }, + [18] = { 400, 5, PvPDamageMultiplier = -30, attackSpeedMultiplier = 80, baseMultiplier = 1.428, damageEffectiveness = 1.428, levelRequirement = 66, statInterpolation = { 1, 1, }, cost = { Mana = 5, }, }, + [19] = { 400, 5, PvPDamageMultiplier = -30, attackSpeedMultiplier = 80, baseMultiplier = 1.464, damageEffectiveness = 1.464, levelRequirement = 68, statInterpolation = { 1, 1, }, cost = { Mana = 5, }, }, + [20] = { 400, 5, PvPDamageMultiplier = -30, attackSpeedMultiplier = 80, baseMultiplier = 1.5, damageEffectiveness = 1.5, levelRequirement = 70, statInterpolation = { 1, 1, }, cost = { Mana = 5, }, }, + [21] = { 400, 5, PvPDamageMultiplier = -30, attackSpeedMultiplier = 80, baseMultiplier = 1.536, damageEffectiveness = 1.536, levelRequirement = 72, statInterpolation = { 1, 1, }, cost = { Mana = 5, }, }, + [22] = { 400, 5, PvPDamageMultiplier = -30, attackSpeedMultiplier = 80, baseMultiplier = 1.572, damageEffectiveness = 1.572, levelRequirement = 74, statInterpolation = { 1, 1, }, cost = { Mana = 5, }, }, + [23] = { 400, 5, PvPDamageMultiplier = -30, attackSpeedMultiplier = 80, baseMultiplier = 1.608, damageEffectiveness = 1.608, levelRequirement = 76, statInterpolation = { 1, 1, }, cost = { Mana = 6, }, }, + [24] = { 400, 5, PvPDamageMultiplier = -30, attackSpeedMultiplier = 80, baseMultiplier = 1.644, damageEffectiveness = 1.644, levelRequirement = 78, statInterpolation = { 1, 1, }, cost = { Mana = 6, }, }, + [25] = { 400, 5, PvPDamageMultiplier = -30, attackSpeedMultiplier = 80, baseMultiplier = 1.68, damageEffectiveness = 1.68, levelRequirement = 80, statInterpolation = { 1, 1, }, cost = { Mana = 6, }, }, + [26] = { 400, 5, PvPDamageMultiplier = -30, attackSpeedMultiplier = 80, baseMultiplier = 1.716, damageEffectiveness = 1.716, levelRequirement = 82, statInterpolation = { 1, 1, }, cost = { Mana = 6, }, }, + [27] = { 400, 5, PvPDamageMultiplier = -30, attackSpeedMultiplier = 80, baseMultiplier = 1.752, damageEffectiveness = 1.752, levelRequirement = 84, statInterpolation = { 1, 1, }, cost = { Mana = 6, }, }, + [28] = { 400, 5, PvPDamageMultiplier = -30, attackSpeedMultiplier = 80, baseMultiplier = 1.788, damageEffectiveness = 1.788, levelRequirement = 86, statInterpolation = { 1, 1, }, cost = { Mana = 6, }, }, + [29] = { 400, 5, PvPDamageMultiplier = -30, attackSpeedMultiplier = 80, baseMultiplier = 1.824, damageEffectiveness = 1.824, levelRequirement = 88, statInterpolation = { 1, 1, }, cost = { Mana = 6, }, }, + [30] = { 400, 5, PvPDamageMultiplier = -30, attackSpeedMultiplier = 80, baseMultiplier = 1.86, damageEffectiveness = 1.86, levelRequirement = 90, statInterpolation = { 1, 1, }, cost = { Mana = 6, }, }, + [31] = { 400, 5, PvPDamageMultiplier = -30, attackSpeedMultiplier = 80, baseMultiplier = 1.878, damageEffectiveness = 1.878, levelRequirement = 91, statInterpolation = { 1, 1, }, cost = { Mana = 6, }, }, + [32] = { 400, 5, PvPDamageMultiplier = -30, attackSpeedMultiplier = 80, baseMultiplier = 1.896, damageEffectiveness = 1.896, levelRequirement = 92, statInterpolation = { 1, 1, }, cost = { Mana = 6, }, }, + [33] = { 400, 5, PvPDamageMultiplier = -30, attackSpeedMultiplier = 80, baseMultiplier = 1.914, damageEffectiveness = 1.914, levelRequirement = 93, statInterpolation = { 1, 1, }, cost = { Mana = 6, }, }, + [34] = { 400, 5, PvPDamageMultiplier = -30, attackSpeedMultiplier = 80, baseMultiplier = 1.932, damageEffectiveness = 1.932, levelRequirement = 94, statInterpolation = { 1, 1, }, cost = { Mana = 6, }, }, + [35] = { 400, 5, PvPDamageMultiplier = -30, attackSpeedMultiplier = 80, baseMultiplier = 1.95, damageEffectiveness = 1.95, levelRequirement = 95, statInterpolation = { 1, 1, }, cost = { Mana = 6, }, }, + [36] = { 400, 5, PvPDamageMultiplier = -30, attackSpeedMultiplier = 80, baseMultiplier = 1.968, damageEffectiveness = 1.968, levelRequirement = 96, statInterpolation = { 1, 1, }, cost = { Mana = 6, }, }, + [37] = { 400, 5, PvPDamageMultiplier = -30, attackSpeedMultiplier = 80, baseMultiplier = 1.986, damageEffectiveness = 1.986, levelRequirement = 97, statInterpolation = { 1, 1, }, cost = { Mana = 6, }, }, + [38] = { 400, 5, PvPDamageMultiplier = -30, attackSpeedMultiplier = 80, baseMultiplier = 2.004, damageEffectiveness = 2.004, levelRequirement = 98, statInterpolation = { 1, 1, }, cost = { Mana = 6, }, }, + [39] = { 400, 5, PvPDamageMultiplier = -30, attackSpeedMultiplier = 80, baseMultiplier = 2.022, damageEffectiveness = 2.022, levelRequirement = 99, statInterpolation = { 1, 1, }, cost = { Mana = 6, }, }, + [40] = { 400, 5, PvPDamageMultiplier = -30, attackSpeedMultiplier = 80, baseMultiplier = 2.04, damageEffectiveness = 2.04, levelRequirement = 100, statInterpolation = { 1, 1, }, cost = { Mana = 7, }, }, }, } skills["VaalCyclone"] = { @@ -4854,46 +4965,46 @@ skills["VaalCyclone"] = { "skill_cannot_be_stunned_before_contact_point", }, levels = { - [1] = { attackSpeedMultiplier = 200, baseMultiplier = 1.081, damageEffectiveness = 1.081, levelRequirement = 28, soulPreventionDuration = 5, vaalStoredUses = 1, cost = { Soul = 25, }, }, - [2] = { attackSpeedMultiplier = 200, baseMultiplier = 1.112, damageEffectiveness = 1.112, levelRequirement = 31, soulPreventionDuration = 5, vaalStoredUses = 1, cost = { Soul = 25, }, }, - [3] = { attackSpeedMultiplier = 200, baseMultiplier = 1.144, damageEffectiveness = 1.144, levelRequirement = 34, soulPreventionDuration = 5, vaalStoredUses = 1, cost = { Soul = 25, }, }, - [4] = { attackSpeedMultiplier = 200, baseMultiplier = 1.177, damageEffectiveness = 1.177, levelRequirement = 37, soulPreventionDuration = 5, vaalStoredUses = 1, cost = { Soul = 25, }, }, - [5] = { attackSpeedMultiplier = 200, baseMultiplier = 1.211, damageEffectiveness = 1.211, levelRequirement = 40, soulPreventionDuration = 5, vaalStoredUses = 1, cost = { Soul = 25, }, }, - [6] = { attackSpeedMultiplier = 200, baseMultiplier = 1.245, damageEffectiveness = 1.245, levelRequirement = 42, soulPreventionDuration = 5, vaalStoredUses = 1, cost = { Soul = 25, }, }, - [7] = { attackSpeedMultiplier = 200, baseMultiplier = 1.281, damageEffectiveness = 1.281, levelRequirement = 44, soulPreventionDuration = 5, vaalStoredUses = 1, cost = { Soul = 25, }, }, - [8] = { attackSpeedMultiplier = 200, baseMultiplier = 1.318, damageEffectiveness = 1.318, levelRequirement = 46, soulPreventionDuration = 5, vaalStoredUses = 1, cost = { Soul = 25, }, }, - [9] = { attackSpeedMultiplier = 200, baseMultiplier = 1.355, damageEffectiveness = 1.355, levelRequirement = 48, soulPreventionDuration = 5, vaalStoredUses = 1, cost = { Soul = 25, }, }, - [10] = { attackSpeedMultiplier = 200, baseMultiplier = 1.394, damageEffectiveness = 1.394, levelRequirement = 50, soulPreventionDuration = 5, vaalStoredUses = 1, cost = { Soul = 25, }, }, - [11] = { attackSpeedMultiplier = 200, baseMultiplier = 1.434, damageEffectiveness = 1.434, levelRequirement = 52, soulPreventionDuration = 5, vaalStoredUses = 1, cost = { Soul = 25, }, }, - [12] = { attackSpeedMultiplier = 200, baseMultiplier = 1.475, damageEffectiveness = 1.475, levelRequirement = 54, soulPreventionDuration = 5, vaalStoredUses = 1, cost = { Soul = 25, }, }, - [13] = { attackSpeedMultiplier = 200, baseMultiplier = 1.517, damageEffectiveness = 1.517, levelRequirement = 56, soulPreventionDuration = 5, vaalStoredUses = 1, cost = { Soul = 25, }, }, - [14] = { attackSpeedMultiplier = 200, baseMultiplier = 1.561, damageEffectiveness = 1.561, levelRequirement = 58, soulPreventionDuration = 5, vaalStoredUses = 1, cost = { Soul = 25, }, }, - [15] = { attackSpeedMultiplier = 200, baseMultiplier = 1.606, damageEffectiveness = 1.606, levelRequirement = 60, soulPreventionDuration = 5, vaalStoredUses = 1, cost = { Soul = 25, }, }, - [16] = { attackSpeedMultiplier = 200, baseMultiplier = 1.652, damageEffectiveness = 1.652, levelRequirement = 62, soulPreventionDuration = 5, vaalStoredUses = 1, cost = { Soul = 25, }, }, - [17] = { attackSpeedMultiplier = 200, baseMultiplier = 1.699, damageEffectiveness = 1.699, levelRequirement = 64, soulPreventionDuration = 5, vaalStoredUses = 1, cost = { Soul = 25, }, }, - [18] = { attackSpeedMultiplier = 200, baseMultiplier = 1.748, damageEffectiveness = 1.748, levelRequirement = 66, soulPreventionDuration = 5, vaalStoredUses = 1, cost = { Soul = 25, }, }, - [19] = { attackSpeedMultiplier = 200, baseMultiplier = 1.798, damageEffectiveness = 1.798, levelRequirement = 68, soulPreventionDuration = 5, vaalStoredUses = 1, cost = { Soul = 25, }, }, - [20] = { attackSpeedMultiplier = 200, baseMultiplier = 1.849, damageEffectiveness = 1.849, levelRequirement = 70, soulPreventionDuration = 5, vaalStoredUses = 1, cost = { Soul = 25, }, }, - [21] = { attackSpeedMultiplier = 200, baseMultiplier = 1.902, damageEffectiveness = 1.902, levelRequirement = 72, soulPreventionDuration = 5, vaalStoredUses = 1, cost = { Soul = 25, }, }, - [22] = { attackSpeedMultiplier = 200, baseMultiplier = 1.957, damageEffectiveness = 1.957, levelRequirement = 74, soulPreventionDuration = 5, vaalStoredUses = 1, cost = { Soul = 25, }, }, - [23] = { attackSpeedMultiplier = 200, baseMultiplier = 2.013, damageEffectiveness = 2.013, levelRequirement = 76, soulPreventionDuration = 5, vaalStoredUses = 1, cost = { Soul = 25, }, }, - [24] = { attackSpeedMultiplier = 200, baseMultiplier = 2.07, damageEffectiveness = 2.07, levelRequirement = 78, soulPreventionDuration = 5, vaalStoredUses = 1, cost = { Soul = 25, }, }, - [25] = { attackSpeedMultiplier = 200, baseMultiplier = 2.13, damageEffectiveness = 2.13, levelRequirement = 80, soulPreventionDuration = 5, vaalStoredUses = 1, cost = { Soul = 25, }, }, - [26] = { attackSpeedMultiplier = 200, baseMultiplier = 2.191, damageEffectiveness = 2.191, levelRequirement = 82, soulPreventionDuration = 5, vaalStoredUses = 1, cost = { Soul = 25, }, }, - [27] = { attackSpeedMultiplier = 200, baseMultiplier = 2.253, damageEffectiveness = 2.253, levelRequirement = 84, soulPreventionDuration = 5, vaalStoredUses = 1, cost = { Soul = 25, }, }, - [28] = { attackSpeedMultiplier = 200, baseMultiplier = 2.318, damageEffectiveness = 2.318, levelRequirement = 86, soulPreventionDuration = 5, vaalStoredUses = 1, cost = { Soul = 25, }, }, - [29] = { attackSpeedMultiplier = 200, baseMultiplier = 2.384, damageEffectiveness = 2.384, levelRequirement = 88, soulPreventionDuration = 5, vaalStoredUses = 1, cost = { Soul = 25, }, }, - [30] = { attackSpeedMultiplier = 200, baseMultiplier = 2.453, damageEffectiveness = 2.453, levelRequirement = 90, soulPreventionDuration = 5, vaalStoredUses = 1, cost = { Soul = 25, }, }, - [31] = { attackSpeedMultiplier = 200, baseMultiplier = 2.559, damageEffectiveness = 2.559, levelRequirement = 91, soulPreventionDuration = 5, vaalStoredUses = 1, cost = { Soul = 25, }, }, - [32] = { attackSpeedMultiplier = 200, baseMultiplier = 2.596, damageEffectiveness = 2.596, levelRequirement = 92, soulPreventionDuration = 5, vaalStoredUses = 1, cost = { Soul = 25, }, }, - [33] = { attackSpeedMultiplier = 200, baseMultiplier = 2.633, damageEffectiveness = 2.633, levelRequirement = 93, soulPreventionDuration = 5, vaalStoredUses = 1, cost = { Soul = 25, }, }, - [34] = { attackSpeedMultiplier = 200, baseMultiplier = 2.671, damageEffectiveness = 2.671, levelRequirement = 94, soulPreventionDuration = 5, vaalStoredUses = 1, cost = { Soul = 25, }, }, - [35] = { attackSpeedMultiplier = 200, baseMultiplier = 2.709, damageEffectiveness = 2.709, levelRequirement = 95, soulPreventionDuration = 5, vaalStoredUses = 1, cost = { Soul = 25, }, }, - [36] = { attackSpeedMultiplier = 200, baseMultiplier = 2.748, damageEffectiveness = 2.748, levelRequirement = 96, soulPreventionDuration = 5, vaalStoredUses = 1, cost = { Soul = 25, }, }, - [37] = { attackSpeedMultiplier = 200, baseMultiplier = 2.787, damageEffectiveness = 2.787, levelRequirement = 97, soulPreventionDuration = 5, vaalStoredUses = 1, cost = { Soul = 25, }, }, - [38] = { attackSpeedMultiplier = 200, baseMultiplier = 2.827, damageEffectiveness = 2.827, levelRequirement = 98, soulPreventionDuration = 5, vaalStoredUses = 1, cost = { Soul = 25, }, }, - [39] = { attackSpeedMultiplier = 200, baseMultiplier = 2.868, damageEffectiveness = 2.868, levelRequirement = 99, soulPreventionDuration = 5, vaalStoredUses = 1, cost = { Soul = 25, }, }, - [40] = { attackSpeedMultiplier = 200, baseMultiplier = 2.909, damageEffectiveness = 2.909, levelRequirement = 100, soulPreventionDuration = 5, vaalStoredUses = 1, cost = { Soul = 25, }, }, + [1] = { attackSpeedMultiplier = 200, baseMultiplier = 1.296, damageEffectiveness = 1.296, levelRequirement = 28, soulPreventionDuration = 5, vaalStoredUses = 1, cost = { Soul = 25, }, }, + [2] = { attackSpeedMultiplier = 200, baseMultiplier = 1.344, damageEffectiveness = 1.344, levelRequirement = 31, soulPreventionDuration = 5, vaalStoredUses = 1, cost = { Soul = 25, }, }, + [3] = { attackSpeedMultiplier = 200, baseMultiplier = 1.392, damageEffectiveness = 1.392, levelRequirement = 34, soulPreventionDuration = 5, vaalStoredUses = 1, cost = { Soul = 25, }, }, + [4] = { attackSpeedMultiplier = 200, baseMultiplier = 1.44, damageEffectiveness = 1.44, levelRequirement = 37, soulPreventionDuration = 5, vaalStoredUses = 1, cost = { Soul = 25, }, }, + [5] = { attackSpeedMultiplier = 200, baseMultiplier = 1.488, damageEffectiveness = 1.488, levelRequirement = 40, soulPreventionDuration = 5, vaalStoredUses = 1, cost = { Soul = 25, }, }, + [6] = { attackSpeedMultiplier = 200, baseMultiplier = 1.536, damageEffectiveness = 1.536, levelRequirement = 42, soulPreventionDuration = 5, vaalStoredUses = 1, cost = { Soul = 25, }, }, + [7] = { attackSpeedMultiplier = 200, baseMultiplier = 1.584, damageEffectiveness = 1.584, levelRequirement = 44, soulPreventionDuration = 5, vaalStoredUses = 1, cost = { Soul = 25, }, }, + [8] = { attackSpeedMultiplier = 200, baseMultiplier = 1.632, damageEffectiveness = 1.632, levelRequirement = 46, soulPreventionDuration = 5, vaalStoredUses = 1, cost = { Soul = 25, }, }, + [9] = { attackSpeedMultiplier = 200, baseMultiplier = 1.68, damageEffectiveness = 1.68, levelRequirement = 48, soulPreventionDuration = 5, vaalStoredUses = 1, cost = { Soul = 25, }, }, + [10] = { attackSpeedMultiplier = 200, baseMultiplier = 1.728, damageEffectiveness = 1.728, levelRequirement = 50, soulPreventionDuration = 5, vaalStoredUses = 1, cost = { Soul = 25, }, }, + [11] = { attackSpeedMultiplier = 200, baseMultiplier = 1.776, damageEffectiveness = 1.776, levelRequirement = 52, soulPreventionDuration = 5, vaalStoredUses = 1, cost = { Soul = 25, }, }, + [12] = { attackSpeedMultiplier = 200, baseMultiplier = 1.824, damageEffectiveness = 1.824, levelRequirement = 54, soulPreventionDuration = 5, vaalStoredUses = 1, cost = { Soul = 25, }, }, + [13] = { attackSpeedMultiplier = 200, baseMultiplier = 1.872, damageEffectiveness = 1.872, levelRequirement = 56, soulPreventionDuration = 5, vaalStoredUses = 1, cost = { Soul = 25, }, }, + [14] = { attackSpeedMultiplier = 200, baseMultiplier = 1.92, damageEffectiveness = 1.92, levelRequirement = 58, soulPreventionDuration = 5, vaalStoredUses = 1, cost = { Soul = 25, }, }, + [15] = { attackSpeedMultiplier = 200, baseMultiplier = 1.968, damageEffectiveness = 1.968, levelRequirement = 60, soulPreventionDuration = 5, vaalStoredUses = 1, cost = { Soul = 25, }, }, + [16] = { attackSpeedMultiplier = 200, baseMultiplier = 2.016, damageEffectiveness = 2.016, levelRequirement = 62, soulPreventionDuration = 5, vaalStoredUses = 1, cost = { Soul = 25, }, }, + [17] = { attackSpeedMultiplier = 200, baseMultiplier = 2.064, damageEffectiveness = 2.064, levelRequirement = 64, soulPreventionDuration = 5, vaalStoredUses = 1, cost = { Soul = 25, }, }, + [18] = { attackSpeedMultiplier = 200, baseMultiplier = 2.112, damageEffectiveness = 2.112, levelRequirement = 66, soulPreventionDuration = 5, vaalStoredUses = 1, cost = { Soul = 25, }, }, + [19] = { attackSpeedMultiplier = 200, baseMultiplier = 2.16, damageEffectiveness = 2.16, levelRequirement = 68, soulPreventionDuration = 5, vaalStoredUses = 1, cost = { Soul = 25, }, }, + [20] = { attackSpeedMultiplier = 200, baseMultiplier = 2.208, damageEffectiveness = 2.208, levelRequirement = 70, soulPreventionDuration = 5, vaalStoredUses = 1, cost = { Soul = 25, }, }, + [21] = { attackSpeedMultiplier = 200, baseMultiplier = 2.256, damageEffectiveness = 2.256, levelRequirement = 72, soulPreventionDuration = 5, vaalStoredUses = 1, cost = { Soul = 25, }, }, + [22] = { attackSpeedMultiplier = 200, baseMultiplier = 2.304, damageEffectiveness = 2.304, levelRequirement = 74, soulPreventionDuration = 5, vaalStoredUses = 1, cost = { Soul = 25, }, }, + [23] = { attackSpeedMultiplier = 200, baseMultiplier = 2.352, damageEffectiveness = 2.352, levelRequirement = 76, soulPreventionDuration = 5, vaalStoredUses = 1, cost = { Soul = 25, }, }, + [24] = { attackSpeedMultiplier = 200, baseMultiplier = 2.4, damageEffectiveness = 2.4, levelRequirement = 78, soulPreventionDuration = 5, vaalStoredUses = 1, cost = { Soul = 25, }, }, + [25] = { attackSpeedMultiplier = 200, baseMultiplier = 2.448, damageEffectiveness = 2.448, levelRequirement = 80, soulPreventionDuration = 5, vaalStoredUses = 1, cost = { Soul = 25, }, }, + [26] = { attackSpeedMultiplier = 200, baseMultiplier = 2.496, damageEffectiveness = 2.496, levelRequirement = 82, soulPreventionDuration = 5, vaalStoredUses = 1, cost = { Soul = 25, }, }, + [27] = { attackSpeedMultiplier = 200, baseMultiplier = 2.544, damageEffectiveness = 2.544, levelRequirement = 84, soulPreventionDuration = 5, vaalStoredUses = 1, cost = { Soul = 25, }, }, + [28] = { attackSpeedMultiplier = 200, baseMultiplier = 2.592, damageEffectiveness = 2.592, levelRequirement = 86, soulPreventionDuration = 5, vaalStoredUses = 1, cost = { Soul = 25, }, }, + [29] = { attackSpeedMultiplier = 200, baseMultiplier = 2.64, damageEffectiveness = 2.64, levelRequirement = 88, soulPreventionDuration = 5, vaalStoredUses = 1, cost = { Soul = 25, }, }, + [30] = { attackSpeedMultiplier = 200, baseMultiplier = 2.688, damageEffectiveness = 2.688, levelRequirement = 90, soulPreventionDuration = 5, vaalStoredUses = 1, cost = { Soul = 25, }, }, + [31] = { attackSpeedMultiplier = 200, baseMultiplier = 2.712, damageEffectiveness = 2.712, levelRequirement = 91, soulPreventionDuration = 5, vaalStoredUses = 1, cost = { Soul = 25, }, }, + [32] = { attackSpeedMultiplier = 200, baseMultiplier = 2.736, damageEffectiveness = 2.736, levelRequirement = 92, soulPreventionDuration = 5, vaalStoredUses = 1, cost = { Soul = 25, }, }, + [33] = { attackSpeedMultiplier = 200, baseMultiplier = 2.76, damageEffectiveness = 2.76, levelRequirement = 93, soulPreventionDuration = 5, vaalStoredUses = 1, cost = { Soul = 25, }, }, + [34] = { attackSpeedMultiplier = 200, baseMultiplier = 2.784, damageEffectiveness = 2.784, levelRequirement = 94, soulPreventionDuration = 5, vaalStoredUses = 1, cost = { Soul = 25, }, }, + [35] = { attackSpeedMultiplier = 200, baseMultiplier = 2.808, damageEffectiveness = 2.808, levelRequirement = 95, soulPreventionDuration = 5, vaalStoredUses = 1, cost = { Soul = 25, }, }, + [36] = { attackSpeedMultiplier = 200, baseMultiplier = 2.832, damageEffectiveness = 2.832, levelRequirement = 96, soulPreventionDuration = 5, vaalStoredUses = 1, cost = { Soul = 25, }, }, + [37] = { attackSpeedMultiplier = 200, baseMultiplier = 2.856, damageEffectiveness = 2.856, levelRequirement = 97, soulPreventionDuration = 5, vaalStoredUses = 1, cost = { Soul = 25, }, }, + [38] = { attackSpeedMultiplier = 200, baseMultiplier = 2.88, damageEffectiveness = 2.88, levelRequirement = 98, soulPreventionDuration = 5, vaalStoredUses = 1, cost = { Soul = 25, }, }, + [39] = { attackSpeedMultiplier = 200, baseMultiplier = 2.904, damageEffectiveness = 2.904, levelRequirement = 99, soulPreventionDuration = 5, vaalStoredUses = 1, cost = { Soul = 25, }, }, + [40] = { attackSpeedMultiplier = 200, baseMultiplier = 2.928, damageEffectiveness = 2.928, levelRequirement = 100, soulPreventionDuration = 5, vaalStoredUses = 1, cost = { Soul = 25, }, }, }, } skills["Dash"] = { @@ -6036,7 +6147,7 @@ skills["ElementalHit"] = { }, constantStats = { { "elemental_hit_damage_+%_final_per_enemy_elemental_ailment", 10 }, - { "active_skill_base_area_of_effect_radius", 10 }, + { "active_skill_base_area_of_effect_radius", 14 }, }, stats = { "attack_minimum_added_fire_damage", @@ -6052,46 +6163,46 @@ skills["ElementalHit"] = { "quality_display_elemental_hit_is_gem", }, levels = { - [1] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 30, levelRequirement = 12, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 6, }, }, - [2] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 31, levelRequirement = 15, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 6, }, }, - [3] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 32, levelRequirement = 19, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 7, }, }, - [4] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 33, levelRequirement = 23, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 7, }, }, - [5] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 34, levelRequirement = 27, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 7, }, }, - [6] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 35, levelRequirement = 31, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 8, }, }, - [7] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 36, levelRequirement = 35, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 8, }, }, - [8] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 37, levelRequirement = 38, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 8, }, }, - [9] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 38, levelRequirement = 41, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 8, }, }, - [10] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 39, levelRequirement = 44, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 8, }, }, - [11] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 40, levelRequirement = 47, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 9, }, }, - [12] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 41, levelRequirement = 50, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 9, }, }, - [13] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 42, levelRequirement = 53, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 9, }, }, - [14] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 43, levelRequirement = 56, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 9, }, }, - [15] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 44, levelRequirement = 59, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 9, }, }, - [16] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 45, levelRequirement = 62, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 10, }, }, - [17] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 46, levelRequirement = 64, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 10, }, }, - [18] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 47, levelRequirement = 66, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 10, }, }, - [19] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 48, levelRequirement = 68, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 10, }, }, - [20] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 49, levelRequirement = 70, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 10, }, }, - [21] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 50, levelRequirement = 72, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 10, }, }, - [22] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 51, levelRequirement = 74, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 10, }, }, - [23] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 52, levelRequirement = 76, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 10, }, }, - [24] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 53, levelRequirement = 78, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 11, }, }, - [25] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 54, levelRequirement = 80, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 11, }, }, - [26] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 55, levelRequirement = 82, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 11, }, }, - [27] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 56, levelRequirement = 84, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 11, }, }, - [28] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 57, levelRequirement = 86, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 11, }, }, - [29] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 58, levelRequirement = 88, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 11, }, }, - [30] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 59, levelRequirement = 90, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 11, }, }, - [31] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 59, levelRequirement = 91, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 11, }, }, - [32] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 60, levelRequirement = 92, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 11, }, }, - [33] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 60, levelRequirement = 93, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 12, }, }, - [34] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 61, levelRequirement = 94, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 12, }, }, - [35] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 61, levelRequirement = 95, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 12, }, }, - [36] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 62, levelRequirement = 96, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 12, }, }, - [37] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 62, levelRequirement = 97, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 12, }, }, - [38] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 63, levelRequirement = 98, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 12, }, }, - [39] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 63, levelRequirement = 99, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 12, }, }, - [40] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 64, levelRequirement = 100, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 12, }, }, + [1] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 30, attackSpeedMultiplier = 20, levelRequirement = 12, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 5, }, }, + [2] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 31, attackSpeedMultiplier = 20, levelRequirement = 15, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 5, }, }, + [3] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 32, attackSpeedMultiplier = 20, levelRequirement = 19, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 5, }, }, + [4] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 33, attackSpeedMultiplier = 20, levelRequirement = 23, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 5, }, }, + [5] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 34, attackSpeedMultiplier = 20, levelRequirement = 27, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 6, }, }, + [6] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 35, attackSpeedMultiplier = 20, levelRequirement = 31, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 6, }, }, + [7] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 36, attackSpeedMultiplier = 20, levelRequirement = 35, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 6, }, }, + [8] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 37, attackSpeedMultiplier = 20, levelRequirement = 38, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 6, }, }, + [9] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 38, attackSpeedMultiplier = 20, levelRequirement = 41, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 6, }, }, + [10] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 39, attackSpeedMultiplier = 20, levelRequirement = 44, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 6, }, }, + [11] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 40, attackSpeedMultiplier = 20, levelRequirement = 47, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 7, }, }, + [12] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 41, attackSpeedMultiplier = 20, levelRequirement = 50, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 7, }, }, + [13] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 42, attackSpeedMultiplier = 20, levelRequirement = 53, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 7, }, }, + [14] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 43, attackSpeedMultiplier = 20, levelRequirement = 56, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 7, }, }, + [15] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 44, attackSpeedMultiplier = 20, levelRequirement = 59, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 7, }, }, + [16] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 45, attackSpeedMultiplier = 20, levelRequirement = 62, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 7, }, }, + [17] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 46, attackSpeedMultiplier = 20, levelRequirement = 64, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 8, }, }, + [18] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 47, attackSpeedMultiplier = 20, levelRequirement = 66, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 8, }, }, + [19] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 48, attackSpeedMultiplier = 20, levelRequirement = 68, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 8, }, }, + [20] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 49, attackSpeedMultiplier = 20, levelRequirement = 70, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 8, }, }, + [21] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 50, attackSpeedMultiplier = 20, levelRequirement = 72, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 8, }, }, + [22] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 51, attackSpeedMultiplier = 20, levelRequirement = 74, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 8, }, }, + [23] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 52, attackSpeedMultiplier = 20, levelRequirement = 76, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 8, }, }, + [24] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 53, attackSpeedMultiplier = 20, levelRequirement = 78, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 9, }, }, + [25] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 54, attackSpeedMultiplier = 20, levelRequirement = 80, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 9, }, }, + [26] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 55, attackSpeedMultiplier = 20, levelRequirement = 82, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 9, }, }, + [27] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 56, attackSpeedMultiplier = 20, levelRequirement = 84, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 9, }, }, + [28] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 57, attackSpeedMultiplier = 20, levelRequirement = 86, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 9, }, }, + [29] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 58, attackSpeedMultiplier = 20, levelRequirement = 88, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 9, }, }, + [30] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 59, attackSpeedMultiplier = 20, levelRequirement = 90, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 10, }, }, + [31] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 59, attackSpeedMultiplier = 20, levelRequirement = 91, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 10, }, }, + [32] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 60, attackSpeedMultiplier = 20, levelRequirement = 92, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 10, }, }, + [33] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 60, attackSpeedMultiplier = 20, levelRequirement = 93, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 10, }, }, + [34] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 61, attackSpeedMultiplier = 20, levelRequirement = 94, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 10, }, }, + [35] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 61, attackSpeedMultiplier = 20, levelRequirement = 95, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 10, }, }, + [36] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 62, attackSpeedMultiplier = 20, levelRequirement = 96, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 11, }, }, + [37] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 62, attackSpeedMultiplier = 20, levelRequirement = 97, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 11, }, }, + [38] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 63, attackSpeedMultiplier = 20, levelRequirement = 98, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 11, }, }, + [39] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 63, attackSpeedMultiplier = 20, levelRequirement = 99, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 11, }, }, + [40] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 64, attackSpeedMultiplier = 20, levelRequirement = 100, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 11, }, }, }, } skills["ElementalHitAltX"] = { @@ -6101,7 +6212,7 @@ skills["ElementalHitAltX"] = { baseEffectiveness = 0.98000001907349, incrementalEffectiveness = 0.032699998468161, description = "Fires a projectile with a wand or bow that deals fire, cold and lightning damage. If the projectile hits an enemy, it will deal damage in an area around them.", - skillTypes = { [SkillType.Attack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Fire] = true, [SkillType.Cold] = true, [SkillType.Lightning] = true, [SkillType.RangedAttack] = true, [SkillType.MirageArcherCanUse] = true, [SkillType.Area] = true, [SkillType.Triggerable] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Fire] = true, [SkillType.Cold] = true, [SkillType.Lightning] = true, [SkillType.RangedAttack] = true, [SkillType.MirageArcherCanUse] = true, [SkillType.Area] = true, [SkillType.Triggerable] = true, [SkillType.WandAttack] = true, }, weaponTypes = { ["Bow"] = true, ["Wand"] = true, @@ -6175,44 +6286,44 @@ skills["ElementalHitAltX"] = { levels = { [1] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 30, levelRequirement = 12, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 6, }, }, [2] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 31, levelRequirement = 15, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 6, }, }, - [3] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 32, levelRequirement = 19, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 7, }, }, + [3] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 32, levelRequirement = 19, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 6, }, }, [4] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 33, levelRequirement = 23, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 7, }, }, [5] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 34, levelRequirement = 27, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 7, }, }, - [6] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 35, levelRequirement = 31, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 8, }, }, - [7] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 36, levelRequirement = 35, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 8, }, }, - [8] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 37, levelRequirement = 38, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 8, }, }, + [6] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 35, levelRequirement = 31, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 7, }, }, + [7] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 36, levelRequirement = 35, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 7, }, }, + [8] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 37, levelRequirement = 38, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 7, }, }, [9] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 38, levelRequirement = 41, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 8, }, }, [10] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 39, levelRequirement = 44, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 8, }, }, - [11] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 40, levelRequirement = 47, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 9, }, }, - [12] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 41, levelRequirement = 50, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 9, }, }, + [11] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 40, levelRequirement = 47, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 8, }, }, + [12] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 41, levelRequirement = 50, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 8, }, }, [13] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 42, levelRequirement = 53, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 9, }, }, [14] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 43, levelRequirement = 56, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 9, }, }, [15] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 44, levelRequirement = 59, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 9, }, }, - [16] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 45, levelRequirement = 62, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 10, }, }, - [17] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 46, levelRequirement = 64, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 10, }, }, + [16] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 45, levelRequirement = 62, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 9, }, }, + [17] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 46, levelRequirement = 64, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 9, }, }, [18] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 47, levelRequirement = 66, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 10, }, }, [19] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 48, levelRequirement = 68, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 10, }, }, [20] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 49, levelRequirement = 70, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 10, }, }, [21] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 50, levelRequirement = 72, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 10, }, }, [22] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 51, levelRequirement = 74, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 10, }, }, - [23] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 52, levelRequirement = 76, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 10, }, }, + [23] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 52, levelRequirement = 76, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 11, }, }, [24] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 53, levelRequirement = 78, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 11, }, }, [25] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 54, levelRequirement = 80, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 11, }, }, [26] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 55, levelRequirement = 82, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 11, }, }, [27] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 56, levelRequirement = 84, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 11, }, }, - [28] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 57, levelRequirement = 86, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 11, }, }, - [29] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 58, levelRequirement = 88, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 11, }, }, - [30] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 59, levelRequirement = 90, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 11, }, }, - [31] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 59, levelRequirement = 91, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 11, }, }, - [32] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 60, levelRequirement = 92, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 11, }, }, - [33] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 60, levelRequirement = 93, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 12, }, }, - [34] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 61, levelRequirement = 94, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 12, }, }, - [35] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 61, levelRequirement = 95, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 12, }, }, - [36] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 62, levelRequirement = 96, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 12, }, }, - [37] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 62, levelRequirement = 97, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 12, }, }, - [38] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 63, levelRequirement = 98, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 12, }, }, - [39] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 63, levelRequirement = 99, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 12, }, }, - [40] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 64, levelRequirement = 100, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 12, }, }, + [28] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 57, levelRequirement = 86, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 12, }, }, + [29] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 58, levelRequirement = 88, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 12, }, }, + [30] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 59, levelRequirement = 90, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 12, }, }, + [31] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 59, levelRequirement = 91, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 12, }, }, + [32] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 60, levelRequirement = 92, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 13, }, }, + [33] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 60, levelRequirement = 93, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 13, }, }, + [34] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 61, levelRequirement = 94, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 13, }, }, + [35] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 61, levelRequirement = 95, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 13, }, }, + [36] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 62, levelRequirement = 96, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 13, }, }, + [37] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 62, levelRequirement = 97, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 14, }, }, + [38] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 63, levelRequirement = 98, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 14, }, }, + [39] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 63, levelRequirement = 99, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 14, }, }, + [40] = { 0.69999998807907, 1.2999999523163, 0.56999999284744, 1.0599999427795, 0.10999999940395, 2.1400001049042, 64, levelRequirement = 100, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 14, }, }, }, } skills["EnsnaringArrow"] = { @@ -6749,8 +6860,8 @@ skills["ExplosiveConcoction"] = { name = "Explosive Concoction", baseTypeName = "Explosive Concoction", color = 2, - baseEffectiveness = 3.8099999427795, - incrementalEffectiveness = 0.038699999451637, + baseEffectiveness = 4.8000001907349, + incrementalEffectiveness = 0.043000001460314, description = "Throws a bottle that explodes to deal unarmed attack damage in an area. Can consume charges from your Ruby, Sapphire, and Topaz flasks to add further damage. Requires an empty main hand, and no off-hand weapon.", skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Area] = true, [SkillType.Triggerable] = true, [SkillType.Fire] = true, [SkillType.Cold] = true, [SkillType.Lightning] = true, [SkillType.Damage] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.RequiresOffHandNotWeapon] = true, }, weaponTypes = { @@ -6831,54 +6942,54 @@ skills["ExplosiveConcoction"] = { "explosive_concoction_attach_flask_visual_buff", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, 0.31000000238419, 0.46999999880791, 0.070000000298023, 0.72000002861023, 60, attackSpeedMultiplier = 15, levelRequirement = 28, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 6, }, }, - [2] = { 0.80000001192093, 1.2000000476837, 0.31000000238419, 0.46999999880791, 0.070000000298023, 0.72000002861023, 62, attackSpeedMultiplier = 15, levelRequirement = 31, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 7, }, }, - [3] = { 0.80000001192093, 1.2000000476837, 0.31000000238419, 0.46999999880791, 0.070000000298023, 0.72000002861023, 64, attackSpeedMultiplier = 15, levelRequirement = 34, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 7, }, }, - [4] = { 0.80000001192093, 1.2000000476837, 0.31000000238419, 0.46999999880791, 0.070000000298023, 0.72000002861023, 66, attackSpeedMultiplier = 15, levelRequirement = 37, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 7, }, }, - [5] = { 0.80000001192093, 1.2000000476837, 0.31000000238419, 0.46999999880791, 0.070000000298023, 0.72000002861023, 68, attackSpeedMultiplier = 15, levelRequirement = 40, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 7, }, }, - [6] = { 0.80000001192093, 1.2000000476837, 0.31000000238419, 0.46999999880791, 0.070000000298023, 0.72000002861023, 70, attackSpeedMultiplier = 15, levelRequirement = 42, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 7, }, }, - [7] = { 0.80000001192093, 1.2000000476837, 0.31000000238419, 0.46999999880791, 0.070000000298023, 0.72000002861023, 72, attackSpeedMultiplier = 15, levelRequirement = 44, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 7, }, }, - [8] = { 0.80000001192093, 1.2000000476837, 0.31000000238419, 0.46999999880791, 0.070000000298023, 0.72000002861023, 74, attackSpeedMultiplier = 15, levelRequirement = 46, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 7, }, }, - [9] = { 0.80000001192093, 1.2000000476837, 0.31000000238419, 0.46999999880791, 0.070000000298023, 0.72000002861023, 76, attackSpeedMultiplier = 15, levelRequirement = 48, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 7, }, }, - [10] = { 0.80000001192093, 1.2000000476837, 0.31000000238419, 0.46999999880791, 0.070000000298023, 0.72000002861023, 78, attackSpeedMultiplier = 15, levelRequirement = 50, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 8, }, }, - [11] = { 0.80000001192093, 1.2000000476837, 0.31000000238419, 0.46999999880791, 0.070000000298023, 0.72000002861023, 80, attackSpeedMultiplier = 15, levelRequirement = 52, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 8, }, }, - [12] = { 0.80000001192093, 1.2000000476837, 0.31000000238419, 0.46999999880791, 0.070000000298023, 0.72000002861023, 82, attackSpeedMultiplier = 15, levelRequirement = 54, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 8, }, }, - [13] = { 0.80000001192093, 1.2000000476837, 0.31000000238419, 0.46999999880791, 0.070000000298023, 0.72000002861023, 84, attackSpeedMultiplier = 15, levelRequirement = 56, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 8, }, }, - [14] = { 0.80000001192093, 1.2000000476837, 0.31000000238419, 0.46999999880791, 0.070000000298023, 0.72000002861023, 86, attackSpeedMultiplier = 15, levelRequirement = 58, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 8, }, }, - [15] = { 0.80000001192093, 1.2000000476837, 0.31000000238419, 0.46999999880791, 0.070000000298023, 0.72000002861023, 88, attackSpeedMultiplier = 15, levelRequirement = 60, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 8, }, }, - [16] = { 0.80000001192093, 1.2000000476837, 0.31000000238419, 0.46999999880791, 0.070000000298023, 0.72000002861023, 90, attackSpeedMultiplier = 15, levelRequirement = 62, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 8, }, }, - [17] = { 0.80000001192093, 1.2000000476837, 0.31000000238419, 0.46999999880791, 0.070000000298023, 0.72000002861023, 92, attackSpeedMultiplier = 15, levelRequirement = 64, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 8, }, }, - [18] = { 0.80000001192093, 1.2000000476837, 0.31000000238419, 0.46999999880791, 0.070000000298023, 0.72000002861023, 94, attackSpeedMultiplier = 15, levelRequirement = 66, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 9, }, }, - [19] = { 0.80000001192093, 1.2000000476837, 0.31000000238419, 0.46999999880791, 0.070000000298023, 0.72000002861023, 96, attackSpeedMultiplier = 15, levelRequirement = 68, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 9, }, }, - [20] = { 0.80000001192093, 1.2000000476837, 0.31000000238419, 0.46999999880791, 0.070000000298023, 0.72000002861023, 98, attackSpeedMultiplier = 15, levelRequirement = 70, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 9, }, }, - [21] = { 0.80000001192093, 1.2000000476837, 0.31000000238419, 0.46999999880791, 0.070000000298023, 0.72000002861023, 100, attackSpeedMultiplier = 15, levelRequirement = 72, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 9, }, }, - [22] = { 0.80000001192093, 1.2000000476837, 0.31000000238419, 0.46999999880791, 0.070000000298023, 0.72000002861023, 102, attackSpeedMultiplier = 15, levelRequirement = 74, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 9, }, }, - [23] = { 0.80000001192093, 1.2000000476837, 0.31000000238419, 0.46999999880791, 0.070000000298023, 0.72000002861023, 104, attackSpeedMultiplier = 15, levelRequirement = 76, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 9, }, }, - [24] = { 0.80000001192093, 1.2000000476837, 0.31000000238419, 0.46999999880791, 0.070000000298023, 0.72000002861023, 106, attackSpeedMultiplier = 15, levelRequirement = 78, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 9, }, }, - [25] = { 0.80000001192093, 1.2000000476837, 0.31000000238419, 0.46999999880791, 0.070000000298023, 0.72000002861023, 108, attackSpeedMultiplier = 15, levelRequirement = 80, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 9, }, }, - [26] = { 0.80000001192093, 1.2000000476837, 0.31000000238419, 0.46999999880791, 0.070000000298023, 0.72000002861023, 110, attackSpeedMultiplier = 15, levelRequirement = 82, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 9, }, }, - [27] = { 0.80000001192093, 1.2000000476837, 0.31000000238419, 0.46999999880791, 0.070000000298023, 0.72000002861023, 112, attackSpeedMultiplier = 15, levelRequirement = 84, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 10, }, }, - [28] = { 0.80000001192093, 1.2000000476837, 0.31000000238419, 0.46999999880791, 0.070000000298023, 0.72000002861023, 114, attackSpeedMultiplier = 15, levelRequirement = 86, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 10, }, }, - [29] = { 0.80000001192093, 1.2000000476837, 0.31000000238419, 0.46999999880791, 0.070000000298023, 0.72000002861023, 116, attackSpeedMultiplier = 15, levelRequirement = 88, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 10, }, }, - [30] = { 0.80000001192093, 1.2000000476837, 0.31000000238419, 0.46999999880791, 0.070000000298023, 0.72000002861023, 118, attackSpeedMultiplier = 15, levelRequirement = 90, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 10, }, }, - [31] = { 0.80000001192093, 1.2000000476837, 0.31000000238419, 0.46999999880791, 0.070000000298023, 0.72000002861023, 119, attackSpeedMultiplier = 15, levelRequirement = 91, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 10, }, }, - [32] = { 0.80000001192093, 1.2000000476837, 0.31000000238419, 0.46999999880791, 0.070000000298023, 0.72000002861023, 120, attackSpeedMultiplier = 15, levelRequirement = 92, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 10, }, }, - [33] = { 0.80000001192093, 1.2000000476837, 0.31000000238419, 0.46999999880791, 0.070000000298023, 0.72000002861023, 121, attackSpeedMultiplier = 15, levelRequirement = 93, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 10, }, }, - [34] = { 0.80000001192093, 1.2000000476837, 0.31000000238419, 0.46999999880791, 0.070000000298023, 0.72000002861023, 122, attackSpeedMultiplier = 15, levelRequirement = 94, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 10, }, }, - [35] = { 0.80000001192093, 1.2000000476837, 0.31000000238419, 0.46999999880791, 0.070000000298023, 0.72000002861023, 123, attackSpeedMultiplier = 15, levelRequirement = 95, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 10, }, }, - [36] = { 0.80000001192093, 1.2000000476837, 0.31000000238419, 0.46999999880791, 0.070000000298023, 0.72000002861023, 124, attackSpeedMultiplier = 15, levelRequirement = 96, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 10, }, }, - [37] = { 0.80000001192093, 1.2000000476837, 0.31000000238419, 0.46999999880791, 0.070000000298023, 0.72000002861023, 125, attackSpeedMultiplier = 15, levelRequirement = 97, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 10, }, }, - [38] = { 0.80000001192093, 1.2000000476837, 0.31000000238419, 0.46999999880791, 0.070000000298023, 0.72000002861023, 126, attackSpeedMultiplier = 15, levelRequirement = 98, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 10, }, }, - [39] = { 0.80000001192093, 1.2000000476837, 0.31000000238419, 0.46999999880791, 0.070000000298023, 0.72000002861023, 127, attackSpeedMultiplier = 15, levelRequirement = 99, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 10, }, }, - [40] = { 0.80000001192093, 1.2000000476837, 0.31000000238419, 0.46999999880791, 0.070000000298023, 0.72000002861023, 128, attackSpeedMultiplier = 15, levelRequirement = 100, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 10, }, }, + [1] = { 0.31999999284744, 0.47999998927116, 0.28000000119209, 0.41999998688698, 0.059999998658895, 0.69999998807907, 120, attackSpeedMultiplier = 15, levelRequirement = 28, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 6, }, }, + [2] = { 0.31999999284744, 0.47999998927116, 0.28000000119209, 0.41999998688698, 0.059999998658895, 0.69999998807907, 124, attackSpeedMultiplier = 15, levelRequirement = 31, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 7, }, }, + [3] = { 0.31999999284744, 0.47999998927116, 0.28000000119209, 0.41999998688698, 0.059999998658895, 0.69999998807907, 128, attackSpeedMultiplier = 15, levelRequirement = 34, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 7, }, }, + [4] = { 0.31999999284744, 0.47999998927116, 0.28000000119209, 0.41999998688698, 0.059999998658895, 0.69999998807907, 132, attackSpeedMultiplier = 15, levelRequirement = 37, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 7, }, }, + [5] = { 0.31999999284744, 0.47999998927116, 0.28000000119209, 0.41999998688698, 0.059999998658895, 0.69999998807907, 136, attackSpeedMultiplier = 15, levelRequirement = 40, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 7, }, }, + [6] = { 0.31999999284744, 0.47999998927116, 0.28000000119209, 0.41999998688698, 0.059999998658895, 0.69999998807907, 140, attackSpeedMultiplier = 15, levelRequirement = 42, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 7, }, }, + [7] = { 0.31999999284744, 0.47999998927116, 0.28000000119209, 0.41999998688698, 0.059999998658895, 0.69999998807907, 144, attackSpeedMultiplier = 15, levelRequirement = 44, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 7, }, }, + [8] = { 0.31999999284744, 0.47999998927116, 0.28000000119209, 0.41999998688698, 0.059999998658895, 0.69999998807907, 148, attackSpeedMultiplier = 15, levelRequirement = 46, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 7, }, }, + [9] = { 0.31999999284744, 0.47999998927116, 0.28000000119209, 0.41999998688698, 0.059999998658895, 0.69999998807907, 152, attackSpeedMultiplier = 15, levelRequirement = 48, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 7, }, }, + [10] = { 0.31999999284744, 0.47999998927116, 0.28000000119209, 0.41999998688698, 0.059999998658895, 0.69999998807907, 156, attackSpeedMultiplier = 15, levelRequirement = 50, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 8, }, }, + [11] = { 0.31999999284744, 0.47999998927116, 0.28000000119209, 0.41999998688698, 0.059999998658895, 0.69999998807907, 160, attackSpeedMultiplier = 15, levelRequirement = 52, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 8, }, }, + [12] = { 0.31999999284744, 0.47999998927116, 0.28000000119209, 0.41999998688698, 0.059999998658895, 0.69999998807907, 164, attackSpeedMultiplier = 15, levelRequirement = 54, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 8, }, }, + [13] = { 0.31999999284744, 0.47999998927116, 0.28000000119209, 0.41999998688698, 0.059999998658895, 0.69999998807907, 168, attackSpeedMultiplier = 15, levelRequirement = 56, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 8, }, }, + [14] = { 0.31999999284744, 0.47999998927116, 0.28000000119209, 0.41999998688698, 0.059999998658895, 0.69999998807907, 172, attackSpeedMultiplier = 15, levelRequirement = 58, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 8, }, }, + [15] = { 0.31999999284744, 0.47999998927116, 0.28000000119209, 0.41999998688698, 0.059999998658895, 0.69999998807907, 176, attackSpeedMultiplier = 15, levelRequirement = 60, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 8, }, }, + [16] = { 0.31999999284744, 0.47999998927116, 0.28000000119209, 0.41999998688698, 0.059999998658895, 0.69999998807907, 180, attackSpeedMultiplier = 15, levelRequirement = 62, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 8, }, }, + [17] = { 0.31999999284744, 0.47999998927116, 0.28000000119209, 0.41999998688698, 0.059999998658895, 0.69999998807907, 184, attackSpeedMultiplier = 15, levelRequirement = 64, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 8, }, }, + [18] = { 0.31999999284744, 0.47999998927116, 0.28000000119209, 0.41999998688698, 0.059999998658895, 0.69999998807907, 188, attackSpeedMultiplier = 15, levelRequirement = 66, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 9, }, }, + [19] = { 0.31999999284744, 0.47999998927116, 0.28000000119209, 0.41999998688698, 0.059999998658895, 0.69999998807907, 192, attackSpeedMultiplier = 15, levelRequirement = 68, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 9, }, }, + [20] = { 0.31999999284744, 0.47999998927116, 0.28000000119209, 0.41999998688698, 0.059999998658895, 0.69999998807907, 196, attackSpeedMultiplier = 15, levelRequirement = 70, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 9, }, }, + [21] = { 0.31999999284744, 0.47999998927116, 0.28000000119209, 0.41999998688698, 0.059999998658895, 0.69999998807907, 200, attackSpeedMultiplier = 15, levelRequirement = 72, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 9, }, }, + [22] = { 0.31999999284744, 0.47999998927116, 0.28000000119209, 0.41999998688698, 0.059999998658895, 0.69999998807907, 204, attackSpeedMultiplier = 15, levelRequirement = 74, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 9, }, }, + [23] = { 0.31999999284744, 0.47999998927116, 0.28000000119209, 0.41999998688698, 0.059999998658895, 0.69999998807907, 208, attackSpeedMultiplier = 15, levelRequirement = 76, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 9, }, }, + [24] = { 0.31999999284744, 0.47999998927116, 0.28000000119209, 0.41999998688698, 0.059999998658895, 0.69999998807907, 212, attackSpeedMultiplier = 15, levelRequirement = 78, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 9, }, }, + [25] = { 0.31999999284744, 0.47999998927116, 0.28000000119209, 0.41999998688698, 0.059999998658895, 0.69999998807907, 216, attackSpeedMultiplier = 15, levelRequirement = 80, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 9, }, }, + [26] = { 0.31999999284744, 0.47999998927116, 0.28000000119209, 0.41999998688698, 0.059999998658895, 0.69999998807907, 220, attackSpeedMultiplier = 15, levelRequirement = 82, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 9, }, }, + [27] = { 0.31999999284744, 0.47999998927116, 0.28000000119209, 0.41999998688698, 0.059999998658895, 0.69999998807907, 224, attackSpeedMultiplier = 15, levelRequirement = 84, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 10, }, }, + [28] = { 0.31999999284744, 0.47999998927116, 0.28000000119209, 0.41999998688698, 0.059999998658895, 0.69999998807907, 228, attackSpeedMultiplier = 15, levelRequirement = 86, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 10, }, }, + [29] = { 0.31999999284744, 0.47999998927116, 0.28000000119209, 0.41999998688698, 0.059999998658895, 0.69999998807907, 232, attackSpeedMultiplier = 15, levelRequirement = 88, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 10, }, }, + [30] = { 0.31999999284744, 0.47999998927116, 0.28000000119209, 0.41999998688698, 0.059999998658895, 0.69999998807907, 236, attackSpeedMultiplier = 15, levelRequirement = 90, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 10, }, }, + [31] = { 0.31999999284744, 0.47999998927116, 0.28000000119209, 0.41999998688698, 0.059999998658895, 0.69999998807907, 240, attackSpeedMultiplier = 15, levelRequirement = 91, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 10, }, }, + [32] = { 0.31999999284744, 0.47999998927116, 0.28000000119209, 0.41999998688698, 0.059999998658895, 0.69999998807907, 244, attackSpeedMultiplier = 15, levelRequirement = 92, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 10, }, }, + [33] = { 0.31999999284744, 0.47999998927116, 0.28000000119209, 0.41999998688698, 0.059999998658895, 0.69999998807907, 248, attackSpeedMultiplier = 15, levelRequirement = 93, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 10, }, }, + [34] = { 0.31999999284744, 0.47999998927116, 0.28000000119209, 0.41999998688698, 0.059999998658895, 0.69999998807907, 252, attackSpeedMultiplier = 15, levelRequirement = 94, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 10, }, }, + [35] = { 0.31999999284744, 0.47999998927116, 0.28000000119209, 0.41999998688698, 0.059999998658895, 0.69999998807907, 256, attackSpeedMultiplier = 15, levelRequirement = 95, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 10, }, }, + [36] = { 0.31999999284744, 0.47999998927116, 0.28000000119209, 0.41999998688698, 0.059999998658895, 0.69999998807907, 260, attackSpeedMultiplier = 15, levelRequirement = 96, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 10, }, }, + [37] = { 0.31999999284744, 0.47999998927116, 0.28000000119209, 0.41999998688698, 0.059999998658895, 0.69999998807907, 264, attackSpeedMultiplier = 15, levelRequirement = 97, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 10, }, }, + [38] = { 0.31999999284744, 0.47999998927116, 0.28000000119209, 0.41999998688698, 0.059999998658895, 0.69999998807907, 268, attackSpeedMultiplier = 15, levelRequirement = 98, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 10, }, }, + [39] = { 0.31999999284744, 0.47999998927116, 0.28000000119209, 0.41999998688698, 0.059999998658895, 0.69999998807907, 272, attackSpeedMultiplier = 15, levelRequirement = 99, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 10, }, }, + [40] = { 0.31999999284744, 0.47999998927116, 0.28000000119209, 0.41999998688698, 0.059999998658895, 0.69999998807907, 276, attackSpeedMultiplier = 15, levelRequirement = 100, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 10, }, }, }, } skills["ExplosiveConcoctionAltX"] = { name = "Explosive Concoction of Destruction", baseTypeName = "Explosive Concoction of Destruction", color = 2, - baseEffectiveness = 3.039999961853, - incrementalEffectiveness = 0.038699999451637, + baseEffectiveness = 4.25, + incrementalEffectiveness = 0.043000001460314, description = "Throws a bottle that explodes to deal unarmed attack damage in an area. Can consume charges from your Ruby, Sapphire, and Topaz flasks to add further damage. Requires an empty main hand, and no off-hand weapon.", skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Area] = true, [SkillType.Triggerable] = true, [SkillType.Fire] = true, [SkillType.Cold] = true, [SkillType.Lightning] = true, [SkillType.Damage] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.RequiresOffHandNotWeapon] = true, }, weaponTypes = { @@ -6959,46 +7070,46 @@ skills["ExplosiveConcoctionAltX"] = { "explosive_concoction_attach_flask_visual_buff", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, 0.31000000238419, 0.46999999880791, 0.070000000298023, 0.72000002861023, 60, attackSpeedMultiplier = 15, levelRequirement = 28, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 6, }, }, - [2] = { 0.80000001192093, 1.2000000476837, 0.31000000238419, 0.46999999880791, 0.070000000298023, 0.72000002861023, 62, attackSpeedMultiplier = 15, levelRequirement = 31, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 7, }, }, - [3] = { 0.80000001192093, 1.2000000476837, 0.31000000238419, 0.46999999880791, 0.070000000298023, 0.72000002861023, 64, attackSpeedMultiplier = 15, levelRequirement = 34, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 7, }, }, - [4] = { 0.80000001192093, 1.2000000476837, 0.31000000238419, 0.46999999880791, 0.070000000298023, 0.72000002861023, 66, attackSpeedMultiplier = 15, levelRequirement = 37, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 7, }, }, - [5] = { 0.80000001192093, 1.2000000476837, 0.31000000238419, 0.46999999880791, 0.070000000298023, 0.72000002861023, 68, attackSpeedMultiplier = 15, levelRequirement = 40, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 7, }, }, - [6] = { 0.80000001192093, 1.2000000476837, 0.31000000238419, 0.46999999880791, 0.070000000298023, 0.72000002861023, 70, attackSpeedMultiplier = 15, levelRequirement = 42, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 7, }, }, - [7] = { 0.80000001192093, 1.2000000476837, 0.31000000238419, 0.46999999880791, 0.070000000298023, 0.72000002861023, 72, attackSpeedMultiplier = 15, levelRequirement = 44, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 7, }, }, - [8] = { 0.80000001192093, 1.2000000476837, 0.31000000238419, 0.46999999880791, 0.070000000298023, 0.72000002861023, 74, attackSpeedMultiplier = 15, levelRequirement = 46, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 7, }, }, - [9] = { 0.80000001192093, 1.2000000476837, 0.31000000238419, 0.46999999880791, 0.070000000298023, 0.72000002861023, 76, attackSpeedMultiplier = 15, levelRequirement = 48, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 7, }, }, - [10] = { 0.80000001192093, 1.2000000476837, 0.31000000238419, 0.46999999880791, 0.070000000298023, 0.72000002861023, 78, attackSpeedMultiplier = 15, levelRequirement = 50, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 8, }, }, - [11] = { 0.80000001192093, 1.2000000476837, 0.31000000238419, 0.46999999880791, 0.070000000298023, 0.72000002861023, 80, attackSpeedMultiplier = 15, levelRequirement = 52, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 8, }, }, - [12] = { 0.80000001192093, 1.2000000476837, 0.31000000238419, 0.46999999880791, 0.070000000298023, 0.72000002861023, 82, attackSpeedMultiplier = 15, levelRequirement = 54, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 8, }, }, - [13] = { 0.80000001192093, 1.2000000476837, 0.31000000238419, 0.46999999880791, 0.070000000298023, 0.72000002861023, 84, attackSpeedMultiplier = 15, levelRequirement = 56, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 8, }, }, - [14] = { 0.80000001192093, 1.2000000476837, 0.31000000238419, 0.46999999880791, 0.070000000298023, 0.72000002861023, 86, attackSpeedMultiplier = 15, levelRequirement = 58, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 8, }, }, - [15] = { 0.80000001192093, 1.2000000476837, 0.31000000238419, 0.46999999880791, 0.070000000298023, 0.72000002861023, 88, attackSpeedMultiplier = 15, levelRequirement = 60, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 8, }, }, - [16] = { 0.80000001192093, 1.2000000476837, 0.31000000238419, 0.46999999880791, 0.070000000298023, 0.72000002861023, 90, attackSpeedMultiplier = 15, levelRequirement = 62, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 8, }, }, - [17] = { 0.80000001192093, 1.2000000476837, 0.31000000238419, 0.46999999880791, 0.070000000298023, 0.72000002861023, 92, attackSpeedMultiplier = 15, levelRequirement = 64, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 8, }, }, - [18] = { 0.80000001192093, 1.2000000476837, 0.31000000238419, 0.46999999880791, 0.070000000298023, 0.72000002861023, 94, attackSpeedMultiplier = 15, levelRequirement = 66, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 9, }, }, - [19] = { 0.80000001192093, 1.2000000476837, 0.31000000238419, 0.46999999880791, 0.070000000298023, 0.72000002861023, 96, attackSpeedMultiplier = 15, levelRequirement = 68, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 9, }, }, - [20] = { 0.80000001192093, 1.2000000476837, 0.31000000238419, 0.46999999880791, 0.070000000298023, 0.72000002861023, 98, attackSpeedMultiplier = 15, levelRequirement = 70, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 9, }, }, - [21] = { 0.80000001192093, 1.2000000476837, 0.31000000238419, 0.46999999880791, 0.070000000298023, 0.72000002861023, 100, attackSpeedMultiplier = 15, levelRequirement = 72, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 9, }, }, - [22] = { 0.80000001192093, 1.2000000476837, 0.31000000238419, 0.46999999880791, 0.070000000298023, 0.72000002861023, 102, attackSpeedMultiplier = 15, levelRequirement = 74, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 9, }, }, - [23] = { 0.80000001192093, 1.2000000476837, 0.31000000238419, 0.46999999880791, 0.070000000298023, 0.72000002861023, 104, attackSpeedMultiplier = 15, levelRequirement = 76, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 9, }, }, - [24] = { 0.80000001192093, 1.2000000476837, 0.31000000238419, 0.46999999880791, 0.070000000298023, 0.72000002861023, 106, attackSpeedMultiplier = 15, levelRequirement = 78, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 9, }, }, - [25] = { 0.80000001192093, 1.2000000476837, 0.31000000238419, 0.46999999880791, 0.070000000298023, 0.72000002861023, 108, attackSpeedMultiplier = 15, levelRequirement = 80, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 9, }, }, - [26] = { 0.80000001192093, 1.2000000476837, 0.31000000238419, 0.46999999880791, 0.070000000298023, 0.72000002861023, 110, attackSpeedMultiplier = 15, levelRequirement = 82, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 9, }, }, - [27] = { 0.80000001192093, 1.2000000476837, 0.31000000238419, 0.46999999880791, 0.070000000298023, 0.72000002861023, 112, attackSpeedMultiplier = 15, levelRequirement = 84, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 10, }, }, - [28] = { 0.80000001192093, 1.2000000476837, 0.31000000238419, 0.46999999880791, 0.070000000298023, 0.72000002861023, 114, attackSpeedMultiplier = 15, levelRequirement = 86, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 10, }, }, - [29] = { 0.80000001192093, 1.2000000476837, 0.31000000238419, 0.46999999880791, 0.070000000298023, 0.72000002861023, 116, attackSpeedMultiplier = 15, levelRequirement = 88, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 10, }, }, - [30] = { 0.80000001192093, 1.2000000476837, 0.31000000238419, 0.46999999880791, 0.070000000298023, 0.72000002861023, 118, attackSpeedMultiplier = 15, levelRequirement = 90, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 10, }, }, - [31] = { 0.80000001192093, 1.2000000476837, 0.31000000238419, 0.46999999880791, 0.070000000298023, 0.72000002861023, 119, attackSpeedMultiplier = 15, levelRequirement = 91, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 10, }, }, - [32] = { 0.80000001192093, 1.2000000476837, 0.31000000238419, 0.46999999880791, 0.070000000298023, 0.72000002861023, 120, attackSpeedMultiplier = 15, levelRequirement = 92, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 10, }, }, - [33] = { 0.80000001192093, 1.2000000476837, 0.31000000238419, 0.46999999880791, 0.070000000298023, 0.72000002861023, 121, attackSpeedMultiplier = 15, levelRequirement = 93, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 10, }, }, - [34] = { 0.80000001192093, 1.2000000476837, 0.31000000238419, 0.46999999880791, 0.070000000298023, 0.72000002861023, 122, attackSpeedMultiplier = 15, levelRequirement = 94, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 10, }, }, - [35] = { 0.80000001192093, 1.2000000476837, 0.31000000238419, 0.46999999880791, 0.070000000298023, 0.72000002861023, 123, attackSpeedMultiplier = 15, levelRequirement = 95, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 10, }, }, - [36] = { 0.80000001192093, 1.2000000476837, 0.31000000238419, 0.46999999880791, 0.070000000298023, 0.72000002861023, 124, attackSpeedMultiplier = 15, levelRequirement = 96, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 10, }, }, - [37] = { 0.80000001192093, 1.2000000476837, 0.31000000238419, 0.46999999880791, 0.070000000298023, 0.72000002861023, 125, attackSpeedMultiplier = 15, levelRequirement = 97, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 10, }, }, - [38] = { 0.80000001192093, 1.2000000476837, 0.31000000238419, 0.46999999880791, 0.070000000298023, 0.72000002861023, 126, attackSpeedMultiplier = 15, levelRequirement = 98, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 10, }, }, - [39] = { 0.80000001192093, 1.2000000476837, 0.31000000238419, 0.46999999880791, 0.070000000298023, 0.72000002861023, 127, attackSpeedMultiplier = 15, levelRequirement = 99, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 10, }, }, - [40] = { 0.80000001192093, 1.2000000476837, 0.31000000238419, 0.46999999880791, 0.070000000298023, 0.72000002861023, 128, attackSpeedMultiplier = 15, levelRequirement = 100, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 10, }, }, + [1] = { 0.31999999284744, 0.47999998927116, 0.28000000119209, 0.41999998688698, 0.059999998658895, 0.69999998807907, 120, attackSpeedMultiplier = 15, levelRequirement = 28, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 6, }, }, + [2] = { 0.31999999284744, 0.47999998927116, 0.28000000119209, 0.41999998688698, 0.059999998658895, 0.69999998807907, 124, attackSpeedMultiplier = 15, levelRequirement = 31, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 7, }, }, + [3] = { 0.31999999284744, 0.47999998927116, 0.28000000119209, 0.41999998688698, 0.059999998658895, 0.69999998807907, 128, attackSpeedMultiplier = 15, levelRequirement = 34, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 7, }, }, + [4] = { 0.31999999284744, 0.47999998927116, 0.28000000119209, 0.41999998688698, 0.059999998658895, 0.69999998807907, 132, attackSpeedMultiplier = 15, levelRequirement = 37, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 7, }, }, + [5] = { 0.31999999284744, 0.47999998927116, 0.28000000119209, 0.41999998688698, 0.059999998658895, 0.69999998807907, 136, attackSpeedMultiplier = 15, levelRequirement = 40, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 7, }, }, + [6] = { 0.31999999284744, 0.47999998927116, 0.28000000119209, 0.41999998688698, 0.059999998658895, 0.69999998807907, 140, attackSpeedMultiplier = 15, levelRequirement = 42, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 7, }, }, + [7] = { 0.31999999284744, 0.47999998927116, 0.28000000119209, 0.41999998688698, 0.059999998658895, 0.69999998807907, 144, attackSpeedMultiplier = 15, levelRequirement = 44, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 7, }, }, + [8] = { 0.31999999284744, 0.47999998927116, 0.28000000119209, 0.41999998688698, 0.059999998658895, 0.69999998807907, 148, attackSpeedMultiplier = 15, levelRequirement = 46, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 7, }, }, + [9] = { 0.31999999284744, 0.47999998927116, 0.28000000119209, 0.41999998688698, 0.059999998658895, 0.69999998807907, 152, attackSpeedMultiplier = 15, levelRequirement = 48, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 7, }, }, + [10] = { 0.31999999284744, 0.47999998927116, 0.28000000119209, 0.41999998688698, 0.059999998658895, 0.69999998807907, 156, attackSpeedMultiplier = 15, levelRequirement = 50, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 8, }, }, + [11] = { 0.31999999284744, 0.47999998927116, 0.28000000119209, 0.41999998688698, 0.059999998658895, 0.69999998807907, 160, attackSpeedMultiplier = 15, levelRequirement = 52, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 8, }, }, + [12] = { 0.31999999284744, 0.47999998927116, 0.28000000119209, 0.41999998688698, 0.059999998658895, 0.69999998807907, 164, attackSpeedMultiplier = 15, levelRequirement = 54, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 8, }, }, + [13] = { 0.31999999284744, 0.47999998927116, 0.28000000119209, 0.41999998688698, 0.059999998658895, 0.69999998807907, 168, attackSpeedMultiplier = 15, levelRequirement = 56, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 8, }, }, + [14] = { 0.31999999284744, 0.47999998927116, 0.28000000119209, 0.41999998688698, 0.059999998658895, 0.69999998807907, 172, attackSpeedMultiplier = 15, levelRequirement = 58, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 8, }, }, + [15] = { 0.31999999284744, 0.47999998927116, 0.28000000119209, 0.41999998688698, 0.059999998658895, 0.69999998807907, 176, attackSpeedMultiplier = 15, levelRequirement = 60, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 8, }, }, + [16] = { 0.31999999284744, 0.47999998927116, 0.28000000119209, 0.41999998688698, 0.059999998658895, 0.69999998807907, 180, attackSpeedMultiplier = 15, levelRequirement = 62, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 8, }, }, + [17] = { 0.31999999284744, 0.47999998927116, 0.28000000119209, 0.41999998688698, 0.059999998658895, 0.69999998807907, 184, attackSpeedMultiplier = 15, levelRequirement = 64, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 8, }, }, + [18] = { 0.31999999284744, 0.47999998927116, 0.28000000119209, 0.41999998688698, 0.059999998658895, 0.69999998807907, 188, attackSpeedMultiplier = 15, levelRequirement = 66, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 9, }, }, + [19] = { 0.31999999284744, 0.47999998927116, 0.28000000119209, 0.41999998688698, 0.059999998658895, 0.69999998807907, 192, attackSpeedMultiplier = 15, levelRequirement = 68, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 9, }, }, + [20] = { 0.31999999284744, 0.47999998927116, 0.28000000119209, 0.41999998688698, 0.059999998658895, 0.69999998807907, 196, attackSpeedMultiplier = 15, levelRequirement = 70, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 9, }, }, + [21] = { 0.31999999284744, 0.47999998927116, 0.28000000119209, 0.41999998688698, 0.059999998658895, 0.69999998807907, 200, attackSpeedMultiplier = 15, levelRequirement = 72, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 9, }, }, + [22] = { 0.31999999284744, 0.47999998927116, 0.28000000119209, 0.41999998688698, 0.059999998658895, 0.69999998807907, 204, attackSpeedMultiplier = 15, levelRequirement = 74, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 9, }, }, + [23] = { 0.31999999284744, 0.47999998927116, 0.28000000119209, 0.41999998688698, 0.059999998658895, 0.69999998807907, 208, attackSpeedMultiplier = 15, levelRequirement = 76, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 9, }, }, + [24] = { 0.31999999284744, 0.47999998927116, 0.28000000119209, 0.41999998688698, 0.059999998658895, 0.69999998807907, 212, attackSpeedMultiplier = 15, levelRequirement = 78, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 9, }, }, + [25] = { 0.31999999284744, 0.47999998927116, 0.28000000119209, 0.41999998688698, 0.059999998658895, 0.69999998807907, 216, attackSpeedMultiplier = 15, levelRequirement = 80, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 9, }, }, + [26] = { 0.31999999284744, 0.47999998927116, 0.28000000119209, 0.41999998688698, 0.059999998658895, 0.69999998807907, 220, attackSpeedMultiplier = 15, levelRequirement = 82, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 9, }, }, + [27] = { 0.31999999284744, 0.47999998927116, 0.28000000119209, 0.41999998688698, 0.059999998658895, 0.69999998807907, 224, attackSpeedMultiplier = 15, levelRequirement = 84, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 10, }, }, + [28] = { 0.31999999284744, 0.47999998927116, 0.28000000119209, 0.41999998688698, 0.059999998658895, 0.69999998807907, 228, attackSpeedMultiplier = 15, levelRequirement = 86, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 10, }, }, + [29] = { 0.31999999284744, 0.47999998927116, 0.28000000119209, 0.41999998688698, 0.059999998658895, 0.69999998807907, 232, attackSpeedMultiplier = 15, levelRequirement = 88, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 10, }, }, + [30] = { 0.31999999284744, 0.47999998927116, 0.28000000119209, 0.41999998688698, 0.059999998658895, 0.69999998807907, 236, attackSpeedMultiplier = 15, levelRequirement = 90, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 10, }, }, + [31] = { 0.31999999284744, 0.47999998927116, 0.28000000119209, 0.41999998688698, 0.059999998658895, 0.69999998807907, 240, attackSpeedMultiplier = 15, levelRequirement = 91, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 10, }, }, + [32] = { 0.31999999284744, 0.47999998927116, 0.28000000119209, 0.41999998688698, 0.059999998658895, 0.69999998807907, 244, attackSpeedMultiplier = 15, levelRequirement = 92, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 10, }, }, + [33] = { 0.31999999284744, 0.47999998927116, 0.28000000119209, 0.41999998688698, 0.059999998658895, 0.69999998807907, 248, attackSpeedMultiplier = 15, levelRequirement = 93, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 10, }, }, + [34] = { 0.31999999284744, 0.47999998927116, 0.28000000119209, 0.41999998688698, 0.059999998658895, 0.69999998807907, 252, attackSpeedMultiplier = 15, levelRequirement = 94, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 10, }, }, + [35] = { 0.31999999284744, 0.47999998927116, 0.28000000119209, 0.41999998688698, 0.059999998658895, 0.69999998807907, 256, attackSpeedMultiplier = 15, levelRequirement = 95, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 10, }, }, + [36] = { 0.31999999284744, 0.47999998927116, 0.28000000119209, 0.41999998688698, 0.059999998658895, 0.69999998807907, 260, attackSpeedMultiplier = 15, levelRequirement = 96, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 10, }, }, + [37] = { 0.31999999284744, 0.47999998927116, 0.28000000119209, 0.41999998688698, 0.059999998658895, 0.69999998807907, 264, attackSpeedMultiplier = 15, levelRequirement = 97, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 10, }, }, + [38] = { 0.31999999284744, 0.47999998927116, 0.28000000119209, 0.41999998688698, 0.059999998658895, 0.69999998807907, 268, attackSpeedMultiplier = 15, levelRequirement = 98, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 10, }, }, + [39] = { 0.31999999284744, 0.47999998927116, 0.28000000119209, 0.41999998688698, 0.059999998658895, 0.69999998807907, 272, attackSpeedMultiplier = 15, levelRequirement = 99, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 10, }, }, + [40] = { 0.31999999284744, 0.47999998927116, 0.28000000119209, 0.41999998688698, 0.059999998658895, 0.69999998807907, 276, attackSpeedMultiplier = 15, levelRequirement = 100, statInterpolation = { 3, 3, 3, 3, 3, 3, 1, }, cost = { Mana = 10, }, }, }, } skills["ExplosiveTrap"] = { @@ -7971,7 +8082,7 @@ skills["Frenzy"] = { color = 2, baseEffectiveness = 0, description = "Performs an attack with a ranged weapon that gives the character a frenzy charge if it hits. Frenzy charges increase your attack speed.", - skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.MirageArcherCanUse] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Triggerable] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.MirageArcherCanUse] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Triggerable] = true, [SkillType.WandAttack] = true, }, weaponTypes = { ["Bow"] = true, ["Wand"] = true, @@ -10946,7 +11057,7 @@ skills["MirrorArrowAltX"] = { }, }, constantStats = { - { "base_skill_effect_duration", 20000 }, + { "base_skill_effect_duration", 5000 }, { "number_of_monsters_to_summon", 1 }, { "display_minion_monster_type", 25 }, { "base_number_of_blink_mirror_arrow_rain_of_arrows_clones", 3 }, @@ -11033,7 +11144,7 @@ skills["MirrorArrowAltY"] = { }, }, constantStats = { - { "base_skill_effect_duration", 20000 }, + { "base_skill_effect_duration", 5000 }, { "number_of_monsters_to_summon", 1 }, { "display_minion_monster_type", 25 }, { "base_number_of_blink_mirror_arrow_elemental_hit_clones", 3 }, @@ -11750,13 +11861,14 @@ skills["StormRainAltX"] = { }, qualityStats = { Default = { - { "storm_rain_pulse_count", 0.05 }, + { "storm_rain_pulse_count", 0.1 }, }, }, constantStats = { { "skill_physical_damage_%_to_convert_to_lightning", 50 }, - { "storm_rain_pulse_count", 4 }, + { "storm_rain_pulse_count", 6 }, { "number_of_allowed_storm_arrows", 10 }, + { "prismatic_rain_beam_base_frequency_ms", 300 }, }, stats = { "prismatic_rain_beam_base_frequency_ms", @@ -11769,46 +11881,46 @@ skills["StormRainAltX"] = { "quality_display_storm_rain_is_gem", }, levels = { - [1] = { 500, baseMultiplier = 0.65, damageEffectiveness = 0.65, levelRequirement = 28, statInterpolation = { 1, }, cost = { Mana = 7, }, }, - [2] = { 500, baseMultiplier = 0.663, damageEffectiveness = 0.663, levelRequirement = 31, statInterpolation = { 1, }, cost = { Mana = 8, }, }, - [3] = { 490, baseMultiplier = 0.676, damageEffectiveness = 0.676, levelRequirement = 34, statInterpolation = { 1, }, cost = { Mana = 8, }, }, - [4] = { 490, baseMultiplier = 0.689, damageEffectiveness = 0.689, levelRequirement = 37, statInterpolation = { 1, }, cost = { Mana = 8, }, }, - [5] = { 480, baseMultiplier = 0.703, damageEffectiveness = 0.703, levelRequirement = 40, statInterpolation = { 1, }, cost = { Mana = 8, }, }, - [6] = { 480, baseMultiplier = 0.716, damageEffectiveness = 0.716, levelRequirement = 42, statInterpolation = { 1, }, cost = { Mana = 8, }, }, - [7] = { 470, baseMultiplier = 0.729, damageEffectiveness = 0.729, levelRequirement = 44, statInterpolation = { 1, }, cost = { Mana = 8, }, }, - [8] = { 470, baseMultiplier = 0.742, damageEffectiveness = 0.742, levelRequirement = 46, statInterpolation = { 1, }, cost = { Mana = 8, }, }, - [9] = { 460, baseMultiplier = 0.755, damageEffectiveness = 0.755, levelRequirement = 48, statInterpolation = { 1, }, cost = { Mana = 9, }, }, - [10] = { 460, baseMultiplier = 0.768, damageEffectiveness = 0.768, levelRequirement = 50, statInterpolation = { 1, }, cost = { Mana = 9, }, }, - [11] = { 450, baseMultiplier = 0.782, damageEffectiveness = 0.782, levelRequirement = 52, statInterpolation = { 1, }, cost = { Mana = 9, }, }, - [12] = { 450, baseMultiplier = 0.795, damageEffectiveness = 0.795, levelRequirement = 54, statInterpolation = { 1, }, cost = { Mana = 9, }, }, - [13] = { 440, baseMultiplier = 0.808, damageEffectiveness = 0.808, levelRequirement = 56, statInterpolation = { 1, }, cost = { Mana = 9, }, }, - [14] = { 440, baseMultiplier = 0.821, damageEffectiveness = 0.821, levelRequirement = 58, statInterpolation = { 1, }, cost = { Mana = 9, }, }, - [15] = { 430, baseMultiplier = 0.834, damageEffectiveness = 0.834, levelRequirement = 60, statInterpolation = { 1, }, cost = { Mana = 9, }, }, - [16] = { 430, baseMultiplier = 0.847, damageEffectiveness = 0.847, levelRequirement = 62, statInterpolation = { 1, }, cost = { Mana = 10, }, }, - [17] = { 420, baseMultiplier = 0.861, damageEffectiveness = 0.861, levelRequirement = 64, statInterpolation = { 1, }, cost = { Mana = 10, }, }, - [18] = { 420, baseMultiplier = 0.874, damageEffectiveness = 0.874, levelRequirement = 66, statInterpolation = { 1, }, cost = { Mana = 10, }, }, - [19] = { 410, baseMultiplier = 0.887, damageEffectiveness = 0.887, levelRequirement = 68, statInterpolation = { 1, }, cost = { Mana = 10, }, }, - [20] = { 410, baseMultiplier = 0.9, damageEffectiveness = 0.9, levelRequirement = 70, statInterpolation = { 1, }, cost = { Mana = 10, }, }, - [21] = { 400, baseMultiplier = 0.913, damageEffectiveness = 0.913, levelRequirement = 72, statInterpolation = { 1, }, cost = { Mana = 10, }, }, - [22] = { 400, baseMultiplier = 0.926, damageEffectiveness = 0.926, levelRequirement = 74, statInterpolation = { 1, }, cost = { Mana = 10, }, }, - [23] = { 390, baseMultiplier = 0.939, damageEffectiveness = 0.939, levelRequirement = 76, statInterpolation = { 1, }, cost = { Mana = 10, }, }, - [24] = { 390, baseMultiplier = 0.953, damageEffectiveness = 0.953, levelRequirement = 78, statInterpolation = { 1, }, cost = { Mana = 11, }, }, - [25] = { 380, baseMultiplier = 0.966, damageEffectiveness = 0.966, levelRequirement = 80, statInterpolation = { 1, }, cost = { Mana = 11, }, }, - [26] = { 380, baseMultiplier = 0.979, damageEffectiveness = 0.979, levelRequirement = 82, statInterpolation = { 1, }, cost = { Mana = 11, }, }, - [27] = { 370, baseMultiplier = 0.992, damageEffectiveness = 0.992, levelRequirement = 84, statInterpolation = { 1, }, cost = { Mana = 11, }, }, - [28] = { 370, baseMultiplier = 1.005, damageEffectiveness = 1.005, levelRequirement = 86, statInterpolation = { 1, }, cost = { Mana = 11, }, }, - [29] = { 360, baseMultiplier = 1.018, damageEffectiveness = 1.018, levelRequirement = 88, statInterpolation = { 1, }, cost = { Mana = 11, }, }, - [30] = { 360, baseMultiplier = 1.032, damageEffectiveness = 1.032, levelRequirement = 90, statInterpolation = { 1, }, cost = { Mana = 11, }, }, - [31] = { 350, baseMultiplier = 1.038, damageEffectiveness = 1.038, levelRequirement = 91, statInterpolation = { 1, }, cost = { Mana = 11, }, }, - [32] = { 350, baseMultiplier = 1.045, damageEffectiveness = 1.045, levelRequirement = 92, statInterpolation = { 1, }, cost = { Mana = 11, }, }, - [33] = { 350, baseMultiplier = 1.051, damageEffectiveness = 1.051, levelRequirement = 93, statInterpolation = { 1, }, cost = { Mana = 12, }, }, - [34] = { 350, baseMultiplier = 1.058, damageEffectiveness = 1.058, levelRequirement = 94, statInterpolation = { 1, }, cost = { Mana = 12, }, }, - [35] = { 340, baseMultiplier = 1.064, damageEffectiveness = 1.064, levelRequirement = 95, statInterpolation = { 1, }, cost = { Mana = 12, }, }, - [36] = { 340, baseMultiplier = 1.071, damageEffectiveness = 1.071, levelRequirement = 96, statInterpolation = { 1, }, cost = { Mana = 12, }, }, - [37] = { 340, baseMultiplier = 1.078, damageEffectiveness = 1.078, levelRequirement = 97, statInterpolation = { 1, }, cost = { Mana = 12, }, }, - [38] = { 340, baseMultiplier = 1.084, damageEffectiveness = 1.084, levelRequirement = 98, statInterpolation = { 1, }, cost = { Mana = 12, }, }, - [39] = { 330, baseMultiplier = 1.091, damageEffectiveness = 1.091, levelRequirement = 99, statInterpolation = { 1, }, cost = { Mana = 12, }, }, - [40] = { 530, baseMultiplier = 1.097, damageEffectiveness = 1.097, levelRequirement = 100, statInterpolation = { 1, }, cost = { Mana = 12, }, }, + [1] = { baseMultiplier = 0.65, damageEffectiveness = 0.65, levelRequirement = 28, cost = { Mana = 7, }, }, + [2] = { baseMultiplier = 0.663, damageEffectiveness = 0.663, levelRequirement = 31, cost = { Mana = 8, }, }, + [3] = { baseMultiplier = 0.676, damageEffectiveness = 0.676, levelRequirement = 34, cost = { Mana = 8, }, }, + [4] = { baseMultiplier = 0.689, damageEffectiveness = 0.689, levelRequirement = 37, cost = { Mana = 8, }, }, + [5] = { baseMultiplier = 0.703, damageEffectiveness = 0.703, levelRequirement = 40, cost = { Mana = 8, }, }, + [6] = { baseMultiplier = 0.716, damageEffectiveness = 0.716, levelRequirement = 42, cost = { Mana = 8, }, }, + [7] = { baseMultiplier = 0.729, damageEffectiveness = 0.729, levelRequirement = 44, cost = { Mana = 8, }, }, + [8] = { baseMultiplier = 0.742, damageEffectiveness = 0.742, levelRequirement = 46, cost = { Mana = 8, }, }, + [9] = { baseMultiplier = 0.755, damageEffectiveness = 0.755, levelRequirement = 48, cost = { Mana = 9, }, }, + [10] = { baseMultiplier = 0.768, damageEffectiveness = 0.768, levelRequirement = 50, cost = { Mana = 9, }, }, + [11] = { baseMultiplier = 0.782, damageEffectiveness = 0.782, levelRequirement = 52, cost = { Mana = 9, }, }, + [12] = { baseMultiplier = 0.795, damageEffectiveness = 0.795, levelRequirement = 54, cost = { Mana = 9, }, }, + [13] = { baseMultiplier = 0.808, damageEffectiveness = 0.808, levelRequirement = 56, cost = { Mana = 9, }, }, + [14] = { baseMultiplier = 0.821, damageEffectiveness = 0.821, levelRequirement = 58, cost = { Mana = 9, }, }, + [15] = { baseMultiplier = 0.834, damageEffectiveness = 0.834, levelRequirement = 60, cost = { Mana = 9, }, }, + [16] = { baseMultiplier = 0.847, damageEffectiveness = 0.847, levelRequirement = 62, cost = { Mana = 10, }, }, + [17] = { baseMultiplier = 0.861, damageEffectiveness = 0.861, levelRequirement = 64, cost = { Mana = 10, }, }, + [18] = { baseMultiplier = 0.874, damageEffectiveness = 0.874, levelRequirement = 66, cost = { Mana = 10, }, }, + [19] = { baseMultiplier = 0.887, damageEffectiveness = 0.887, levelRequirement = 68, cost = { Mana = 10, }, }, + [20] = { baseMultiplier = 0.9, damageEffectiveness = 0.9, levelRequirement = 70, cost = { Mana = 10, }, }, + [21] = { baseMultiplier = 0.913, damageEffectiveness = 0.913, levelRequirement = 72, cost = { Mana = 10, }, }, + [22] = { baseMultiplier = 0.926, damageEffectiveness = 0.926, levelRequirement = 74, cost = { Mana = 10, }, }, + [23] = { baseMultiplier = 0.939, damageEffectiveness = 0.939, levelRequirement = 76, cost = { Mana = 10, }, }, + [24] = { baseMultiplier = 0.953, damageEffectiveness = 0.953, levelRequirement = 78, cost = { Mana = 11, }, }, + [25] = { baseMultiplier = 0.966, damageEffectiveness = 0.966, levelRequirement = 80, cost = { Mana = 11, }, }, + [26] = { baseMultiplier = 0.979, damageEffectiveness = 0.979, levelRequirement = 82, cost = { Mana = 11, }, }, + [27] = { baseMultiplier = 0.992, damageEffectiveness = 0.992, levelRequirement = 84, cost = { Mana = 11, }, }, + [28] = { baseMultiplier = 1.005, damageEffectiveness = 1.005, levelRequirement = 86, cost = { Mana = 11, }, }, + [29] = { baseMultiplier = 1.018, damageEffectiveness = 1.018, levelRequirement = 88, cost = { Mana = 11, }, }, + [30] = { baseMultiplier = 1.032, damageEffectiveness = 1.032, levelRequirement = 90, cost = { Mana = 11, }, }, + [31] = { baseMultiplier = 1.038, damageEffectiveness = 1.038, levelRequirement = 91, cost = { Mana = 11, }, }, + [32] = { baseMultiplier = 1.045, damageEffectiveness = 1.045, levelRequirement = 92, cost = { Mana = 11, }, }, + [33] = { baseMultiplier = 1.051, damageEffectiveness = 1.051, levelRequirement = 93, cost = { Mana = 12, }, }, + [34] = { baseMultiplier = 1.058, damageEffectiveness = 1.058, levelRequirement = 94, cost = { Mana = 12, }, }, + [35] = { baseMultiplier = 1.064, damageEffectiveness = 1.064, levelRequirement = 95, cost = { Mana = 12, }, }, + [36] = { baseMultiplier = 1.071, damageEffectiveness = 1.071, levelRequirement = 96, cost = { Mana = 12, }, }, + [37] = { baseMultiplier = 1.078, damageEffectiveness = 1.078, levelRequirement = 97, cost = { Mana = 12, }, }, + [38] = { baseMultiplier = 1.084, damageEffectiveness = 1.084, levelRequirement = 98, cost = { Mana = 12, }, }, + [39] = { baseMultiplier = 1.091, damageEffectiveness = 1.091, levelRequirement = 99, cost = { Mana = 12, }, }, + [40] = { 150, baseMultiplier = 1.097, damageEffectiveness = 1.097, levelRequirement = 100, statInterpolation = { 1, }, cost = { Mana = 12, }, }, }, } skills["StormRainAltY"] = { @@ -11859,12 +11971,12 @@ skills["StormRainAltY"] = { }, qualityStats = { Default = { - { "storm_rain_pulse_count", 0.1 }, + { "storm_rain_pulse_count", 0.2 }, }, }, constantStats = { { "skill_physical_damage_%_to_convert_to_lightning", 50 }, - { "storm_rain_pulse_count", 14 }, + { "storm_rain_pulse_count", 20 }, { "number_of_allowed_storm_arrows", 2 }, { "base_stun_threshold_reduction_+%", 50 }, }, @@ -11880,46 +11992,46 @@ skills["StormRainAltY"] = { "modifiers_to_projectile_count_do_not_apply", }, levels = { - [1] = { 200, baseMultiplier = 1.1, damageEffectiveness = 1.1, levelRequirement = 28, statInterpolation = { 1, }, cost = { Mana = 7, }, }, - [2] = { 200, baseMultiplier = 1.132, damageEffectiveness = 1.132, levelRequirement = 31, statInterpolation = { 1, }, cost = { Mana = 8, }, }, - [3] = { 200, baseMultiplier = 1.163, damageEffectiveness = 1.163, levelRequirement = 34, statInterpolation = { 1, }, cost = { Mana = 8, }, }, - [4] = { 200, baseMultiplier = 1.195, damageEffectiveness = 1.195, levelRequirement = 37, statInterpolation = { 1, }, cost = { Mana = 8, }, }, - [5] = { 200, baseMultiplier = 1.226, damageEffectiveness = 1.226, levelRequirement = 40, statInterpolation = { 1, }, cost = { Mana = 8, }, }, - [6] = { 200, baseMultiplier = 1.258, damageEffectiveness = 1.258, levelRequirement = 42, statInterpolation = { 1, }, cost = { Mana = 8, }, }, - [7] = { 200, baseMultiplier = 1.289, damageEffectiveness = 1.289, levelRequirement = 44, statInterpolation = { 1, }, cost = { Mana = 8, }, }, - [8] = { 200, baseMultiplier = 1.321, damageEffectiveness = 1.321, levelRequirement = 46, statInterpolation = { 1, }, cost = { Mana = 8, }, }, - [9] = { 200, baseMultiplier = 1.353, damageEffectiveness = 1.353, levelRequirement = 48, statInterpolation = { 1, }, cost = { Mana = 9, }, }, - [10] = { 200, baseMultiplier = 1.384, damageEffectiveness = 1.384, levelRequirement = 50, statInterpolation = { 1, }, cost = { Mana = 9, }, }, - [11] = { 200, baseMultiplier = 1.416, damageEffectiveness = 1.416, levelRequirement = 52, statInterpolation = { 1, }, cost = { Mana = 9, }, }, - [12] = { 200, baseMultiplier = 1.447, damageEffectiveness = 1.447, levelRequirement = 54, statInterpolation = { 1, }, cost = { Mana = 9, }, }, - [13] = { 200, baseMultiplier = 1.479, damageEffectiveness = 1.479, levelRequirement = 56, statInterpolation = { 1, }, cost = { Mana = 9, }, }, - [14] = { 200, baseMultiplier = 1.511, damageEffectiveness = 1.511, levelRequirement = 58, statInterpolation = { 1, }, cost = { Mana = 9, }, }, - [15] = { 200, baseMultiplier = 1.542, damageEffectiveness = 1.542, levelRequirement = 60, statInterpolation = { 1, }, cost = { Mana = 9, }, }, - [16] = { 200, baseMultiplier = 1.574, damageEffectiveness = 1.574, levelRequirement = 62, statInterpolation = { 1, }, cost = { Mana = 10, }, }, - [17] = { 200, baseMultiplier = 1.605, damageEffectiveness = 1.605, levelRequirement = 64, statInterpolation = { 1, }, cost = { Mana = 10, }, }, - [18] = { 200, baseMultiplier = 1.637, damageEffectiveness = 1.637, levelRequirement = 66, statInterpolation = { 1, }, cost = { Mana = 10, }, }, - [19] = { 200, baseMultiplier = 1.668, damageEffectiveness = 1.668, levelRequirement = 68, statInterpolation = { 1, }, cost = { Mana = 10, }, }, - [20] = { 200, baseMultiplier = 1.7, damageEffectiveness = 1.7, levelRequirement = 70, statInterpolation = { 1, }, cost = { Mana = 10, }, }, - [21] = { 200, baseMultiplier = 1.732, damageEffectiveness = 1.732, levelRequirement = 72, statInterpolation = { 1, }, cost = { Mana = 10, }, }, - [22] = { 200, baseMultiplier = 1.763, damageEffectiveness = 1.763, levelRequirement = 74, statInterpolation = { 1, }, cost = { Mana = 10, }, }, - [23] = { 200, baseMultiplier = 1.795, damageEffectiveness = 1.795, levelRequirement = 76, statInterpolation = { 1, }, cost = { Mana = 10, }, }, - [24] = { 200, baseMultiplier = 1.826, damageEffectiveness = 1.826, levelRequirement = 78, statInterpolation = { 1, }, cost = { Mana = 11, }, }, - [25] = { 200, baseMultiplier = 1.858, damageEffectiveness = 1.858, levelRequirement = 80, statInterpolation = { 1, }, cost = { Mana = 11, }, }, - [26] = { 200, baseMultiplier = 1.889, damageEffectiveness = 1.889, levelRequirement = 82, statInterpolation = { 1, }, cost = { Mana = 11, }, }, - [27] = { 200, baseMultiplier = 1.921, damageEffectiveness = 1.921, levelRequirement = 84, statInterpolation = { 1, }, cost = { Mana = 11, }, }, - [28] = { 200, baseMultiplier = 1.953, damageEffectiveness = 1.953, levelRequirement = 86, statInterpolation = { 1, }, cost = { Mana = 11, }, }, - [29] = { 200, baseMultiplier = 1.984, damageEffectiveness = 1.984, levelRequirement = 88, statInterpolation = { 1, }, cost = { Mana = 11, }, }, - [30] = { 200, baseMultiplier = 2.016, damageEffectiveness = 2.016, levelRequirement = 90, statInterpolation = { 1, }, cost = { Mana = 11, }, }, - [31] = { 200, baseMultiplier = 2.032, damageEffectiveness = 2.032, levelRequirement = 91, statInterpolation = { 1, }, cost = { Mana = 11, }, }, - [32] = { 200, baseMultiplier = 2.047, damageEffectiveness = 2.047, levelRequirement = 92, statInterpolation = { 1, }, cost = { Mana = 11, }, }, - [33] = { 200, baseMultiplier = 2.063, damageEffectiveness = 2.063, levelRequirement = 93, statInterpolation = { 1, }, cost = { Mana = 12, }, }, - [34] = { 200, baseMultiplier = 2.079, damageEffectiveness = 2.079, levelRequirement = 94, statInterpolation = { 1, }, cost = { Mana = 12, }, }, - [35] = { 200, baseMultiplier = 2.095, damageEffectiveness = 2.095, levelRequirement = 95, statInterpolation = { 1, }, cost = { Mana = 12, }, }, - [36] = { 200, baseMultiplier = 2.111, damageEffectiveness = 2.111, levelRequirement = 96, statInterpolation = { 1, }, cost = { Mana = 12, }, }, - [37] = { 200, baseMultiplier = 2.126, damageEffectiveness = 2.126, levelRequirement = 97, statInterpolation = { 1, }, cost = { Mana = 12, }, }, - [38] = { 200, baseMultiplier = 2.142, damageEffectiveness = 2.142, levelRequirement = 98, statInterpolation = { 1, }, cost = { Mana = 12, }, }, - [39] = { 200, baseMultiplier = 2.158, damageEffectiveness = 2.158, levelRequirement = 99, statInterpolation = { 1, }, cost = { Mana = 12, }, }, - [40] = { 200, baseMultiplier = 2.174, damageEffectiveness = 2.174, levelRequirement = 100, statInterpolation = { 1, }, cost = { Mana = 12, }, }, + [1] = { 150, baseMultiplier = 1.1, damageEffectiveness = 1.1, levelRequirement = 28, statInterpolation = { 1, }, cost = { Mana = 7, }, }, + [2] = { 150, baseMultiplier = 1.132, damageEffectiveness = 1.132, levelRequirement = 31, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [3] = { 150, baseMultiplier = 1.163, damageEffectiveness = 1.163, levelRequirement = 34, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [4] = { 150, baseMultiplier = 1.195, damageEffectiveness = 1.195, levelRequirement = 37, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [5] = { 150, baseMultiplier = 1.226, damageEffectiveness = 1.226, levelRequirement = 40, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [6] = { 150, baseMultiplier = 1.258, damageEffectiveness = 1.258, levelRequirement = 42, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [7] = { 150, baseMultiplier = 1.289, damageEffectiveness = 1.289, levelRequirement = 44, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [8] = { 150, baseMultiplier = 1.321, damageEffectiveness = 1.321, levelRequirement = 46, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [9] = { 150, baseMultiplier = 1.353, damageEffectiveness = 1.353, levelRequirement = 48, statInterpolation = { 1, }, cost = { Mana = 9, }, }, + [10] = { 150, baseMultiplier = 1.384, damageEffectiveness = 1.384, levelRequirement = 50, statInterpolation = { 1, }, cost = { Mana = 9, }, }, + [11] = { 150, baseMultiplier = 1.416, damageEffectiveness = 1.416, levelRequirement = 52, statInterpolation = { 1, }, cost = { Mana = 9, }, }, + [12] = { 150, baseMultiplier = 1.447, damageEffectiveness = 1.447, levelRequirement = 54, statInterpolation = { 1, }, cost = { Mana = 9, }, }, + [13] = { 150, baseMultiplier = 1.479, damageEffectiveness = 1.479, levelRequirement = 56, statInterpolation = { 1, }, cost = { Mana = 9, }, }, + [14] = { 150, baseMultiplier = 1.511, damageEffectiveness = 1.511, levelRequirement = 58, statInterpolation = { 1, }, cost = { Mana = 9, }, }, + [15] = { 150, baseMultiplier = 1.542, damageEffectiveness = 1.542, levelRequirement = 60, statInterpolation = { 1, }, cost = { Mana = 9, }, }, + [16] = { 150, baseMultiplier = 1.574, damageEffectiveness = 1.574, levelRequirement = 62, statInterpolation = { 1, }, cost = { Mana = 10, }, }, + [17] = { 150, baseMultiplier = 1.605, damageEffectiveness = 1.605, levelRequirement = 64, statInterpolation = { 1, }, cost = { Mana = 10, }, }, + [18] = { 150, baseMultiplier = 1.637, damageEffectiveness = 1.637, levelRequirement = 66, statInterpolation = { 1, }, cost = { Mana = 10, }, }, + [19] = { 150, baseMultiplier = 1.668, damageEffectiveness = 1.668, levelRequirement = 68, statInterpolation = { 1, }, cost = { Mana = 10, }, }, + [20] = { 150, baseMultiplier = 1.7, damageEffectiveness = 1.7, levelRequirement = 70, statInterpolation = { 1, }, cost = { Mana = 10, }, }, + [21] = { 150, baseMultiplier = 1.732, damageEffectiveness = 1.732, levelRequirement = 72, statInterpolation = { 1, }, cost = { Mana = 10, }, }, + [22] = { 150, baseMultiplier = 1.763, damageEffectiveness = 1.763, levelRequirement = 74, statInterpolation = { 1, }, cost = { Mana = 10, }, }, + [23] = { 150, baseMultiplier = 1.795, damageEffectiveness = 1.795, levelRequirement = 76, statInterpolation = { 1, }, cost = { Mana = 10, }, }, + [24] = { 150, baseMultiplier = 1.826, damageEffectiveness = 1.826, levelRequirement = 78, statInterpolation = { 1, }, cost = { Mana = 11, }, }, + [25] = { 150, baseMultiplier = 1.858, damageEffectiveness = 1.858, levelRequirement = 80, statInterpolation = { 1, }, cost = { Mana = 11, }, }, + [26] = { 150, baseMultiplier = 1.889, damageEffectiveness = 1.889, levelRequirement = 82, statInterpolation = { 1, }, cost = { Mana = 11, }, }, + [27] = { 150, baseMultiplier = 1.921, damageEffectiveness = 1.921, levelRequirement = 84, statInterpolation = { 1, }, cost = { Mana = 11, }, }, + [28] = { 150, baseMultiplier = 1.953, damageEffectiveness = 1.953, levelRequirement = 86, statInterpolation = { 1, }, cost = { Mana = 11, }, }, + [29] = { 150, baseMultiplier = 1.984, damageEffectiveness = 1.984, levelRequirement = 88, statInterpolation = { 1, }, cost = { Mana = 11, }, }, + [30] = { 150, baseMultiplier = 2.016, damageEffectiveness = 2.016, levelRequirement = 90, statInterpolation = { 1, }, cost = { Mana = 11, }, }, + [31] = { 150, baseMultiplier = 2.032, damageEffectiveness = 2.032, levelRequirement = 91, statInterpolation = { 1, }, cost = { Mana = 11, }, }, + [32] = { 150, baseMultiplier = 2.047, damageEffectiveness = 2.047, levelRequirement = 92, statInterpolation = { 1, }, cost = { Mana = 11, }, }, + [33] = { 150, baseMultiplier = 2.063, damageEffectiveness = 2.063, levelRequirement = 93, statInterpolation = { 1, }, cost = { Mana = 12, }, }, + [34] = { 150, baseMultiplier = 2.079, damageEffectiveness = 2.079, levelRequirement = 94, statInterpolation = { 1, }, cost = { Mana = 12, }, }, + [35] = { 150, baseMultiplier = 2.095, damageEffectiveness = 2.095, levelRequirement = 95, statInterpolation = { 1, }, cost = { Mana = 12, }, }, + [36] = { 150, baseMultiplier = 2.111, damageEffectiveness = 2.111, levelRequirement = 96, statInterpolation = { 1, }, cost = { Mana = 12, }, }, + [37] = { 150, baseMultiplier = 2.126, damageEffectiveness = 2.126, levelRequirement = 97, statInterpolation = { 1, }, cost = { Mana = 12, }, }, + [38] = { 150, baseMultiplier = 2.142, damageEffectiveness = 2.142, levelRequirement = 98, statInterpolation = { 1, }, cost = { Mana = 12, }, }, + [39] = { 150, baseMultiplier = 2.158, damageEffectiveness = 2.158, levelRequirement = 99, statInterpolation = { 1, }, cost = { Mana = 12, }, }, + [40] = { 150, baseMultiplier = 2.174, damageEffectiveness = 2.174, levelRequirement = 100, statInterpolation = { 1, }, cost = { Mana = 12, }, }, }, } skills["Puncture"] = { @@ -14074,46 +14186,46 @@ skills["SiegeBallistaAltY"] = { "totem_fire_in_formation", }, levels = { - [1] = { 6, 0, 3, levelRequirement = 12, statInterpolation = { 1, 1, 1, }, cost = { Mana = 8, }, }, - [2] = { 6, 0, 3, baseMultiplier = 1.013, damageEffectiveness = 1.013, levelRequirement = 15, statInterpolation = { 1, 1, 1, }, cost = { Mana = 8, }, }, - [3] = { 6, 0, 3, baseMultiplier = 1.026, damageEffectiveness = 1.026, levelRequirement = 19, statInterpolation = { 1, 1, 1, }, cost = { Mana = 8, }, }, - [4] = { 6, 0, 3, baseMultiplier = 1.039, damageEffectiveness = 1.039, levelRequirement = 23, statInterpolation = { 1, 1, 1, }, cost = { Mana = 9, }, }, - [5] = { 6, 1, 4, baseMultiplier = 1.053, damageEffectiveness = 1.053, levelRequirement = 27, statInterpolation = { 1, 1, 1, }, cost = { Mana = 9, }, }, - [6] = { 7, 1, 4, baseMultiplier = 1.066, damageEffectiveness = 1.066, levelRequirement = 31, statInterpolation = { 1, 1, 1, }, cost = { Mana = 9, }, }, - [7] = { 7, 1, 4, baseMultiplier = 1.079, damageEffectiveness = 1.079, levelRequirement = 35, statInterpolation = { 1, 1, 1, }, cost = { Mana = 10, }, }, - [8] = { 7, 1, 4, baseMultiplier = 1.092, damageEffectiveness = 1.092, levelRequirement = 38, statInterpolation = { 1, 1, 1, }, cost = { Mana = 10, }, }, - [9] = { 7, 1, 4, baseMultiplier = 1.105, damageEffectiveness = 1.105, levelRequirement = 41, statInterpolation = { 1, 1, 1, }, cost = { Mana = 10, }, }, - [10] = { 7, 2, 5, baseMultiplier = 1.118, damageEffectiveness = 1.118, levelRequirement = 44, statInterpolation = { 1, 1, 1, }, cost = { Mana = 10, }, }, - [11] = { 8, 2, 5, baseMultiplier = 1.132, damageEffectiveness = 1.132, levelRequirement = 47, statInterpolation = { 1, 1, 1, }, cost = { Mana = 11, }, }, - [12] = { 8, 2, 5, baseMultiplier = 1.145, damageEffectiveness = 1.145, levelRequirement = 50, statInterpolation = { 1, 1, 1, }, cost = { Mana = 11, }, }, - [13] = { 8, 2, 5, baseMultiplier = 1.158, damageEffectiveness = 1.158, levelRequirement = 53, statInterpolation = { 1, 1, 1, }, cost = { Mana = 11, }, }, - [14] = { 8, 2, 5, baseMultiplier = 1.171, damageEffectiveness = 1.171, levelRequirement = 56, statInterpolation = { 1, 1, 1, }, cost = { Mana = 11, }, }, - [15] = { 8, 3, 6, baseMultiplier = 1.184, damageEffectiveness = 1.184, levelRequirement = 59, statInterpolation = { 1, 1, 1, }, cost = { Mana = 12, }, }, - [16] = { 9, 3, 6, baseMultiplier = 1.197, damageEffectiveness = 1.197, levelRequirement = 62, statInterpolation = { 1, 1, 1, }, cost = { Mana = 12, }, }, - [17] = { 9, 3, 6, baseMultiplier = 1.211, damageEffectiveness = 1.211, levelRequirement = 64, statInterpolation = { 1, 1, 1, }, cost = { Mana = 12, }, }, - [18] = { 9, 3, 6, baseMultiplier = 1.224, damageEffectiveness = 1.224, levelRequirement = 66, statInterpolation = { 1, 1, 1, }, cost = { Mana = 12, }, }, - [19] = { 9, 3, 6, baseMultiplier = 1.237, damageEffectiveness = 1.237, levelRequirement = 68, statInterpolation = { 1, 1, 1, }, cost = { Mana = 12, }, }, - [20] = { 9, 4, 7, baseMultiplier = 1.25, damageEffectiveness = 1.25, levelRequirement = 70, statInterpolation = { 1, 1, 1, }, cost = { Mana = 13, }, }, - [21] = { 10, 4, 7, baseMultiplier = 1.263, damageEffectiveness = 1.263, levelRequirement = 72, statInterpolation = { 1, 1, 1, }, cost = { Mana = 13, }, }, - [22] = { 10, 4, 7, baseMultiplier = 1.276, damageEffectiveness = 1.276, levelRequirement = 74, statInterpolation = { 1, 1, 1, }, cost = { Mana = 13, }, }, - [23] = { 10, 4, 7, baseMultiplier = 1.289, damageEffectiveness = 1.289, levelRequirement = 76, statInterpolation = { 1, 1, 1, }, cost = { Mana = 13, }, }, - [24] = { 10, 4, 7, baseMultiplier = 1.303, damageEffectiveness = 1.303, levelRequirement = 78, statInterpolation = { 1, 1, 1, }, cost = { Mana = 13, }, }, - [25] = { 10, 5, 8, baseMultiplier = 1.316, damageEffectiveness = 1.316, levelRequirement = 80, statInterpolation = { 1, 1, 1, }, cost = { Mana = 13, }, }, - [26] = { 11, 5, 8, baseMultiplier = 1.329, damageEffectiveness = 1.329, levelRequirement = 82, statInterpolation = { 1, 1, 1, }, cost = { Mana = 14, }, }, - [27] = { 11, 5, 8, baseMultiplier = 1.342, damageEffectiveness = 1.342, levelRequirement = 84, statInterpolation = { 1, 1, 1, }, cost = { Mana = 14, }, }, - [28] = { 11, 5, 8, baseMultiplier = 1.355, damageEffectiveness = 1.355, levelRequirement = 86, statInterpolation = { 1, 1, 1, }, cost = { Mana = 14, }, }, - [29] = { 11, 5, 8, baseMultiplier = 1.368, damageEffectiveness = 1.368, levelRequirement = 88, statInterpolation = { 1, 1, 1, }, cost = { Mana = 14, }, }, - [30] = { 11, 6, 9, baseMultiplier = 1.382, damageEffectiveness = 1.382, levelRequirement = 90, statInterpolation = { 1, 1, 1, }, cost = { Mana = 14, }, }, - [31] = { 11, 6, 9, baseMultiplier = 1.388, damageEffectiveness = 1.388, levelRequirement = 91, statInterpolation = { 1, 1, 1, }, cost = { Mana = 14, }, }, - [32] = { 12, 6, 9, baseMultiplier = 1.395, damageEffectiveness = 1.395, levelRequirement = 92, statInterpolation = { 1, 1, 1, }, cost = { Mana = 14, }, }, - [33] = { 12, 6, 9, baseMultiplier = 1.401, damageEffectiveness = 1.401, levelRequirement = 93, statInterpolation = { 1, 1, 1, }, cost = { Mana = 14, }, }, - [34] = { 12, 6, 9, baseMultiplier = 1.408, damageEffectiveness = 1.408, levelRequirement = 94, statInterpolation = { 1, 1, 1, }, cost = { Mana = 15, }, }, - [35] = { 12, 7, 10, baseMultiplier = 1.414, damageEffectiveness = 1.414, levelRequirement = 95, statInterpolation = { 1, 1, 1, }, cost = { Mana = 15, }, }, - [36] = { 12, 7, 10, baseMultiplier = 1.421, damageEffectiveness = 1.421, levelRequirement = 96, statInterpolation = { 1, 1, 1, }, cost = { Mana = 15, }, }, - [37] = { 12, 7, 10, baseMultiplier = 1.428, damageEffectiveness = 1.428, levelRequirement = 97, statInterpolation = { 1, 1, 1, }, cost = { Mana = 15, }, }, - [38] = { 12, 7, 10, baseMultiplier = 1.434, damageEffectiveness = 1.434, levelRequirement = 98, statInterpolation = { 1, 1, 1, }, cost = { Mana = 15, }, }, - [39] = { 12, 7, 10, baseMultiplier = 1.441, damageEffectiveness = 1.441, levelRequirement = 99, statInterpolation = { 1, 1, 1, }, cost = { Mana = 15, }, }, - [40] = { 12, 8, 11, baseMultiplier = 1.447, damageEffectiveness = 1.447, levelRequirement = 100, statInterpolation = { 1, 1, 1, }, cost = { Mana = 15, }, }, + [1] = { 6, 0, 3, baseMultiplier = 1.35, damageEffectiveness = 1.35, levelRequirement = 12, statInterpolation = { 1, 1, 1, }, cost = { Mana = 8, }, }, + [2] = { 6, 0, 3, baseMultiplier = 1.368, damageEffectiveness = 1.368, levelRequirement = 15, statInterpolation = { 1, 1, 1, }, cost = { Mana = 8, }, }, + [3] = { 6, 0, 3, baseMultiplier = 1.386, damageEffectiveness = 1.386, levelRequirement = 19, statInterpolation = { 1, 1, 1, }, cost = { Mana = 8, }, }, + [4] = { 6, 0, 3, baseMultiplier = 1.403, damageEffectiveness = 1.403, levelRequirement = 23, statInterpolation = { 1, 1, 1, }, cost = { Mana = 9, }, }, + [5] = { 6, 1, 4, baseMultiplier = 1.421, damageEffectiveness = 1.421, levelRequirement = 27, statInterpolation = { 1, 1, 1, }, cost = { Mana = 9, }, }, + [6] = { 7, 1, 4, baseMultiplier = 1.439, damageEffectiveness = 1.439, levelRequirement = 31, statInterpolation = { 1, 1, 1, }, cost = { Mana = 9, }, }, + [7] = { 7, 1, 4, baseMultiplier = 1.457, damageEffectiveness = 1.457, levelRequirement = 35, statInterpolation = { 1, 1, 1, }, cost = { Mana = 10, }, }, + [8] = { 7, 1, 4, baseMultiplier = 1.474, damageEffectiveness = 1.474, levelRequirement = 38, statInterpolation = { 1, 1, 1, }, cost = { Mana = 10, }, }, + [9] = { 7, 1, 4, baseMultiplier = 1.492, damageEffectiveness = 1.492, levelRequirement = 41, statInterpolation = { 1, 1, 1, }, cost = { Mana = 10, }, }, + [10] = { 7, 2, 5, baseMultiplier = 1.51, damageEffectiveness = 1.51, levelRequirement = 44, statInterpolation = { 1, 1, 1, }, cost = { Mana = 10, }, }, + [11] = { 8, 2, 5, baseMultiplier = 1.528, damageEffectiveness = 1.528, levelRequirement = 47, statInterpolation = { 1, 1, 1, }, cost = { Mana = 11, }, }, + [12] = { 8, 2, 5, baseMultiplier = 1.545, damageEffectiveness = 1.545, levelRequirement = 50, statInterpolation = { 1, 1, 1, }, cost = { Mana = 11, }, }, + [13] = { 8, 2, 5, baseMultiplier = 1.563, damageEffectiveness = 1.563, levelRequirement = 53, statInterpolation = { 1, 1, 1, }, cost = { Mana = 11, }, }, + [14] = { 8, 2, 5, baseMultiplier = 1.581, damageEffectiveness = 1.581, levelRequirement = 56, statInterpolation = { 1, 1, 1, }, cost = { Mana = 11, }, }, + [15] = { 8, 3, 6, baseMultiplier = 1.599, damageEffectiveness = 1.599, levelRequirement = 59, statInterpolation = { 1, 1, 1, }, cost = { Mana = 12, }, }, + [16] = { 9, 3, 6, baseMultiplier = 1.616, damageEffectiveness = 1.616, levelRequirement = 62, statInterpolation = { 1, 1, 1, }, cost = { Mana = 12, }, }, + [17] = { 9, 3, 6, baseMultiplier = 1.634, damageEffectiveness = 1.634, levelRequirement = 64, statInterpolation = { 1, 1, 1, }, cost = { Mana = 12, }, }, + [18] = { 9, 3, 6, baseMultiplier = 1.652, damageEffectiveness = 1.652, levelRequirement = 66, statInterpolation = { 1, 1, 1, }, cost = { Mana = 12, }, }, + [19] = { 9, 3, 6, baseMultiplier = 1.67, damageEffectiveness = 1.67, levelRequirement = 68, statInterpolation = { 1, 1, 1, }, cost = { Mana = 12, }, }, + [20] = { 9, 4, 7, baseMultiplier = 1.688, damageEffectiveness = 1.688, levelRequirement = 70, statInterpolation = { 1, 1, 1, }, cost = { Mana = 13, }, }, + [21] = { 10, 4, 7, baseMultiplier = 1.705, damageEffectiveness = 1.705, levelRequirement = 72, statInterpolation = { 1, 1, 1, }, cost = { Mana = 13, }, }, + [22] = { 10, 4, 7, baseMultiplier = 1.723, damageEffectiveness = 1.723, levelRequirement = 74, statInterpolation = { 1, 1, 1, }, cost = { Mana = 13, }, }, + [23] = { 10, 4, 7, baseMultiplier = 1.741, damageEffectiveness = 1.741, levelRequirement = 76, statInterpolation = { 1, 1, 1, }, cost = { Mana = 13, }, }, + [24] = { 10, 4, 7, baseMultiplier = 1.759, damageEffectiveness = 1.759, levelRequirement = 78, statInterpolation = { 1, 1, 1, }, cost = { Mana = 13, }, }, + [25] = { 10, 5, 8, baseMultiplier = 1.776, damageEffectiveness = 1.776, levelRequirement = 80, statInterpolation = { 1, 1, 1, }, cost = { Mana = 13, }, }, + [26] = { 11, 5, 8, baseMultiplier = 1.794, damageEffectiveness = 1.794, levelRequirement = 82, statInterpolation = { 1, 1, 1, }, cost = { Mana = 14, }, }, + [27] = { 11, 5, 8, baseMultiplier = 1.812, damageEffectiveness = 1.812, levelRequirement = 84, statInterpolation = { 1, 1, 1, }, cost = { Mana = 14, }, }, + [28] = { 11, 5, 8, baseMultiplier = 1.83, damageEffectiveness = 1.83, levelRequirement = 86, statInterpolation = { 1, 1, 1, }, cost = { Mana = 14, }, }, + [29] = { 11, 5, 8, baseMultiplier = 1.847, damageEffectiveness = 1.847, levelRequirement = 88, statInterpolation = { 1, 1, 1, }, cost = { Mana = 14, }, }, + [30] = { 11, 6, 9, baseMultiplier = 1.865, damageEffectiveness = 1.865, levelRequirement = 90, statInterpolation = { 1, 1, 1, }, cost = { Mana = 14, }, }, + [31] = { 11, 6, 9, baseMultiplier = 1.874, damageEffectiveness = 1.874, levelRequirement = 91, statInterpolation = { 1, 1, 1, }, cost = { Mana = 14, }, }, + [32] = { 12, 6, 9, baseMultiplier = 1.883, damageEffectiveness = 1.883, levelRequirement = 92, statInterpolation = { 1, 1, 1, }, cost = { Mana = 14, }, }, + [33] = { 12, 6, 9, baseMultiplier = 1.892, damageEffectiveness = 1.892, levelRequirement = 93, statInterpolation = { 1, 1, 1, }, cost = { Mana = 14, }, }, + [34] = { 12, 6, 9, baseMultiplier = 1.901, damageEffectiveness = 1.901, levelRequirement = 94, statInterpolation = { 1, 1, 1, }, cost = { Mana = 15, }, }, + [35] = { 12, 7, 10, baseMultiplier = 1.91, damageEffectiveness = 1.91, levelRequirement = 95, statInterpolation = { 1, 1, 1, }, cost = { Mana = 15, }, }, + [36] = { 12, 7, 10, baseMultiplier = 1.918, damageEffectiveness = 1.918, levelRequirement = 96, statInterpolation = { 1, 1, 1, }, cost = { Mana = 15, }, }, + [37] = { 12, 7, 10, baseMultiplier = 1.927, damageEffectiveness = 1.927, levelRequirement = 97, statInterpolation = { 1, 1, 1, }, cost = { Mana = 15, }, }, + [38] = { 12, 7, 10, baseMultiplier = 1.936, damageEffectiveness = 1.936, levelRequirement = 98, statInterpolation = { 1, 1, 1, }, cost = { Mana = 15, }, }, + [39] = { 12, 7, 10, baseMultiplier = 1.945, damageEffectiveness = 1.945, levelRequirement = 99, statInterpolation = { 1, 1, 1, }, cost = { Mana = 15, }, }, + [40] = { 12, 8, 11, baseMultiplier = 1.954, damageEffectiveness = 1.954, levelRequirement = 100, statInterpolation = { 1, 1, 1, }, cost = { Mana = 15, }, }, }, } skills["SmokeMine"] = { @@ -14526,7 +14638,7 @@ skills["SpectralThrow"] = { }, qualityStats = { Default = { - { "projectile_damage_+%_final_if_pierced_enemy", 0.5 }, + { "projectile_damage_+%_final_if_pierced_enemy", 1 }, }, }, constantStats = { @@ -14536,46 +14648,46 @@ skills["SpectralThrow"] = { "base_is_projectile", }, levels = { - [1] = { attackSpeedMultiplier = 10, levelRequirement = 1, cost = { Mana = 5, }, }, - [2] = { attackSpeedMultiplier = 10, baseMultiplier = 1.026, damageEffectiveness = 1.026, levelRequirement = 2, cost = { Mana = 5, }, }, - [3] = { attackSpeedMultiplier = 10, baseMultiplier = 1.053, damageEffectiveness = 1.053, levelRequirement = 4, cost = { Mana = 5, }, }, - [4] = { attackSpeedMultiplier = 10, baseMultiplier = 1.079, damageEffectiveness = 1.079, levelRequirement = 7, cost = { Mana = 5, }, }, - [5] = { attackSpeedMultiplier = 10, baseMultiplier = 1.105, damageEffectiveness = 1.105, levelRequirement = 11, cost = { Mana = 6, }, }, - [6] = { attackSpeedMultiplier = 10, baseMultiplier = 1.132, damageEffectiveness = 1.132, levelRequirement = 16, cost = { Mana = 6, }, }, - [7] = { attackSpeedMultiplier = 10, baseMultiplier = 1.158, damageEffectiveness = 1.158, levelRequirement = 20, cost = { Mana = 6, }, }, - [8] = { attackSpeedMultiplier = 10, baseMultiplier = 1.184, damageEffectiveness = 1.184, levelRequirement = 24, cost = { Mana = 6, }, }, - [9] = { attackSpeedMultiplier = 10, baseMultiplier = 1.211, damageEffectiveness = 1.211, levelRequirement = 28, cost = { Mana = 7, }, }, - [10] = { attackSpeedMultiplier = 10, baseMultiplier = 1.237, damageEffectiveness = 1.237, levelRequirement = 32, cost = { Mana = 7, }, }, - [11] = { attackSpeedMultiplier = 10, baseMultiplier = 1.263, damageEffectiveness = 1.263, levelRequirement = 36, cost = { Mana = 7, }, }, - [12] = { attackSpeedMultiplier = 10, baseMultiplier = 1.289, damageEffectiveness = 1.289, levelRequirement = 40, cost = { Mana = 7, }, }, - [13] = { attackSpeedMultiplier = 10, baseMultiplier = 1.316, damageEffectiveness = 1.316, levelRequirement = 44, cost = { Mana = 8, }, }, - [14] = { attackSpeedMultiplier = 10, baseMultiplier = 1.342, damageEffectiveness = 1.342, levelRequirement = 48, cost = { Mana = 8, }, }, - [15] = { attackSpeedMultiplier = 10, baseMultiplier = 1.368, damageEffectiveness = 1.368, levelRequirement = 52, cost = { Mana = 8, }, }, - [16] = { attackSpeedMultiplier = 10, baseMultiplier = 1.395, damageEffectiveness = 1.395, levelRequirement = 56, cost = { Mana = 8, }, }, - [17] = { attackSpeedMultiplier = 10, baseMultiplier = 1.421, damageEffectiveness = 1.421, levelRequirement = 60, cost = { Mana = 9, }, }, - [18] = { attackSpeedMultiplier = 10, baseMultiplier = 1.447, damageEffectiveness = 1.447, levelRequirement = 64, cost = { Mana = 9, }, }, - [19] = { attackSpeedMultiplier = 10, baseMultiplier = 1.474, damageEffectiveness = 1.474, levelRequirement = 67, cost = { Mana = 9, }, }, - [20] = { attackSpeedMultiplier = 10, baseMultiplier = 1.5, damageEffectiveness = 1.5, levelRequirement = 70, cost = { Mana = 9, }, }, - [21] = { attackSpeedMultiplier = 10, baseMultiplier = 1.526, damageEffectiveness = 1.526, levelRequirement = 72, cost = { Mana = 9, }, }, - [22] = { attackSpeedMultiplier = 10, baseMultiplier = 1.553, damageEffectiveness = 1.553, levelRequirement = 74, cost = { Mana = 9, }, }, - [23] = { attackSpeedMultiplier = 10, baseMultiplier = 1.579, damageEffectiveness = 1.579, levelRequirement = 76, cost = { Mana = 9, }, }, - [24] = { attackSpeedMultiplier = 10, baseMultiplier = 1.605, damageEffectiveness = 1.605, levelRequirement = 78, cost = { Mana = 10, }, }, - [25] = { attackSpeedMultiplier = 10, baseMultiplier = 1.632, damageEffectiveness = 1.632, levelRequirement = 80, cost = { Mana = 10, }, }, - [26] = { attackSpeedMultiplier = 10, baseMultiplier = 1.658, damageEffectiveness = 1.658, levelRequirement = 82, cost = { Mana = 10, }, }, - [27] = { attackSpeedMultiplier = 10, baseMultiplier = 1.684, damageEffectiveness = 1.684, levelRequirement = 84, cost = { Mana = 10, }, }, - [28] = { attackSpeedMultiplier = 10, baseMultiplier = 1.711, damageEffectiveness = 1.711, levelRequirement = 86, cost = { Mana = 10, }, }, - [29] = { attackSpeedMultiplier = 10, baseMultiplier = 1.737, damageEffectiveness = 1.737, levelRequirement = 88, cost = { Mana = 10, }, }, - [30] = { attackSpeedMultiplier = 10, baseMultiplier = 1.763, damageEffectiveness = 1.763, levelRequirement = 90, cost = { Mana = 10, }, }, - [31] = { attackSpeedMultiplier = 10, baseMultiplier = 1.776, damageEffectiveness = 1.776, levelRequirement = 91, cost = { Mana = 10, }, }, - [32] = { attackSpeedMultiplier = 10, baseMultiplier = 1.789, damageEffectiveness = 1.789, levelRequirement = 92, cost = { Mana = 10, }, }, - [33] = { attackSpeedMultiplier = 10, baseMultiplier = 1.803, damageEffectiveness = 1.803, levelRequirement = 93, cost = { Mana = 10, }, }, - [34] = { attackSpeedMultiplier = 10, baseMultiplier = 1.816, damageEffectiveness = 1.816, levelRequirement = 94, cost = { Mana = 11, }, }, - [35] = { attackSpeedMultiplier = 10, baseMultiplier = 1.829, damageEffectiveness = 1.829, levelRequirement = 95, cost = { Mana = 11, }, }, - [36] = { attackSpeedMultiplier = 10, baseMultiplier = 1.842, damageEffectiveness = 1.842, levelRequirement = 96, cost = { Mana = 11, }, }, - [37] = { attackSpeedMultiplier = 10, baseMultiplier = 1.855, damageEffectiveness = 1.855, levelRequirement = 97, cost = { Mana = 11, }, }, - [38] = { attackSpeedMultiplier = 10, baseMultiplier = 1.868, damageEffectiveness = 1.868, levelRequirement = 98, cost = { Mana = 11, }, }, - [39] = { attackSpeedMultiplier = 10, baseMultiplier = 1.882, damageEffectiveness = 1.882, levelRequirement = 99, cost = { Mana = 11, }, }, - [40] = { attackSpeedMultiplier = 10, baseMultiplier = 1.895, damageEffectiveness = 1.895, levelRequirement = 100, cost = { Mana = 11, }, }, + [1] = { attackSpeedMultiplier = 20, levelRequirement = 1, cost = { Mana = 5, }, }, + [2] = { attackSpeedMultiplier = 20, baseMultiplier = 1.026, damageEffectiveness = 1.026, levelRequirement = 2, cost = { Mana = 5, }, }, + [3] = { attackSpeedMultiplier = 20, baseMultiplier = 1.053, damageEffectiveness = 1.053, levelRequirement = 4, cost = { Mana = 5, }, }, + [4] = { attackSpeedMultiplier = 20, baseMultiplier = 1.079, damageEffectiveness = 1.079, levelRequirement = 7, cost = { Mana = 5, }, }, + [5] = { attackSpeedMultiplier = 20, baseMultiplier = 1.105, damageEffectiveness = 1.105, levelRequirement = 11, cost = { Mana = 6, }, }, + [6] = { attackSpeedMultiplier = 20, baseMultiplier = 1.132, damageEffectiveness = 1.132, levelRequirement = 16, cost = { Mana = 6, }, }, + [7] = { attackSpeedMultiplier = 20, baseMultiplier = 1.158, damageEffectiveness = 1.158, levelRequirement = 20, cost = { Mana = 6, }, }, + [8] = { attackSpeedMultiplier = 20, baseMultiplier = 1.184, damageEffectiveness = 1.184, levelRequirement = 24, cost = { Mana = 6, }, }, + [9] = { attackSpeedMultiplier = 20, baseMultiplier = 1.211, damageEffectiveness = 1.211, levelRequirement = 28, cost = { Mana = 7, }, }, + [10] = { attackSpeedMultiplier = 20, baseMultiplier = 1.237, damageEffectiveness = 1.237, levelRequirement = 32, cost = { Mana = 7, }, }, + [11] = { attackSpeedMultiplier = 20, baseMultiplier = 1.263, damageEffectiveness = 1.263, levelRequirement = 36, cost = { Mana = 7, }, }, + [12] = { attackSpeedMultiplier = 20, baseMultiplier = 1.289, damageEffectiveness = 1.289, levelRequirement = 40, cost = { Mana = 7, }, }, + [13] = { attackSpeedMultiplier = 20, baseMultiplier = 1.316, damageEffectiveness = 1.316, levelRequirement = 44, cost = { Mana = 8, }, }, + [14] = { attackSpeedMultiplier = 20, baseMultiplier = 1.342, damageEffectiveness = 1.342, levelRequirement = 48, cost = { Mana = 8, }, }, + [15] = { attackSpeedMultiplier = 20, baseMultiplier = 1.368, damageEffectiveness = 1.368, levelRequirement = 52, cost = { Mana = 8, }, }, + [16] = { attackSpeedMultiplier = 20, baseMultiplier = 1.395, damageEffectiveness = 1.395, levelRequirement = 56, cost = { Mana = 8, }, }, + [17] = { attackSpeedMultiplier = 20, baseMultiplier = 1.421, damageEffectiveness = 1.421, levelRequirement = 60, cost = { Mana = 9, }, }, + [18] = { attackSpeedMultiplier = 20, baseMultiplier = 1.447, damageEffectiveness = 1.447, levelRequirement = 64, cost = { Mana = 9, }, }, + [19] = { attackSpeedMultiplier = 20, baseMultiplier = 1.474, damageEffectiveness = 1.474, levelRequirement = 67, cost = { Mana = 9, }, }, + [20] = { attackSpeedMultiplier = 20, baseMultiplier = 1.5, damageEffectiveness = 1.5, levelRequirement = 70, cost = { Mana = 9, }, }, + [21] = { attackSpeedMultiplier = 20, baseMultiplier = 1.526, damageEffectiveness = 1.526, levelRequirement = 72, cost = { Mana = 9, }, }, + [22] = { attackSpeedMultiplier = 20, baseMultiplier = 1.553, damageEffectiveness = 1.553, levelRequirement = 74, cost = { Mana = 9, }, }, + [23] = { attackSpeedMultiplier = 20, baseMultiplier = 1.579, damageEffectiveness = 1.579, levelRequirement = 76, cost = { Mana = 9, }, }, + [24] = { attackSpeedMultiplier = 20, baseMultiplier = 1.605, damageEffectiveness = 1.605, levelRequirement = 78, cost = { Mana = 10, }, }, + [25] = { attackSpeedMultiplier = 20, baseMultiplier = 1.632, damageEffectiveness = 1.632, levelRequirement = 80, cost = { Mana = 10, }, }, + [26] = { attackSpeedMultiplier = 20, baseMultiplier = 1.658, damageEffectiveness = 1.658, levelRequirement = 82, cost = { Mana = 10, }, }, + [27] = { attackSpeedMultiplier = 20, baseMultiplier = 1.684, damageEffectiveness = 1.684, levelRequirement = 84, cost = { Mana = 10, }, }, + [28] = { attackSpeedMultiplier = 20, baseMultiplier = 1.711, damageEffectiveness = 1.711, levelRequirement = 86, cost = { Mana = 10, }, }, + [29] = { attackSpeedMultiplier = 20, baseMultiplier = 1.737, damageEffectiveness = 1.737, levelRequirement = 88, cost = { Mana = 10, }, }, + [30] = { attackSpeedMultiplier = 20, baseMultiplier = 1.763, damageEffectiveness = 1.763, levelRequirement = 90, cost = { Mana = 10, }, }, + [31] = { attackSpeedMultiplier = 20, baseMultiplier = 1.776, damageEffectiveness = 1.776, levelRequirement = 91, cost = { Mana = 10, }, }, + [32] = { attackSpeedMultiplier = 20, baseMultiplier = 1.789, damageEffectiveness = 1.789, levelRequirement = 92, cost = { Mana = 10, }, }, + [33] = { attackSpeedMultiplier = 20, baseMultiplier = 1.803, damageEffectiveness = 1.803, levelRequirement = 93, cost = { Mana = 10, }, }, + [34] = { attackSpeedMultiplier = 20, baseMultiplier = 1.816, damageEffectiveness = 1.816, levelRequirement = 94, cost = { Mana = 11, }, }, + [35] = { attackSpeedMultiplier = 20, baseMultiplier = 1.829, damageEffectiveness = 1.829, levelRequirement = 95, cost = { Mana = 11, }, }, + [36] = { attackSpeedMultiplier = 20, baseMultiplier = 1.842, damageEffectiveness = 1.842, levelRequirement = 96, cost = { Mana = 11, }, }, + [37] = { attackSpeedMultiplier = 20, baseMultiplier = 1.855, damageEffectiveness = 1.855, levelRequirement = 97, cost = { Mana = 11, }, }, + [38] = { attackSpeedMultiplier = 20, baseMultiplier = 1.868, damageEffectiveness = 1.868, levelRequirement = 98, cost = { Mana = 11, }, }, + [39] = { attackSpeedMultiplier = 20, baseMultiplier = 1.882, damageEffectiveness = 1.882, levelRequirement = 99, cost = { Mana = 11, }, }, + [40] = { attackSpeedMultiplier = 20, baseMultiplier = 1.895, damageEffectiveness = 1.895, levelRequirement = 100, cost = { Mana = 11, }, }, }, } skills["SpectralThrowAltX"] = { @@ -14608,7 +14720,7 @@ skills["SpectralThrowAltX"] = { }, qualityStats = { Default = { - { "projectile_damage_+%_final_if_pierced_enemy", 0.5 }, + { "projectile_damage_+%_final_if_pierced_enemy", 1 }, }, }, constantStats = { @@ -14619,46 +14731,46 @@ skills["SpectralThrowAltX"] = { "base_is_projectile", }, levels = { - [1] = { attackSpeedMultiplier = 10, baseMultiplier = 2.4, damageEffectiveness = 2.4, levelRequirement = 1, cost = { Mana = 5, }, }, - [2] = { attackSpeedMultiplier = 10, baseMultiplier = 2.453, damageEffectiveness = 2.453, levelRequirement = 2, cost = { Mana = 5, }, }, - [3] = { attackSpeedMultiplier = 10, baseMultiplier = 2.505, damageEffectiveness = 2.505, levelRequirement = 4, cost = { Mana = 5, }, }, - [4] = { attackSpeedMultiplier = 10, baseMultiplier = 2.558, damageEffectiveness = 2.558, levelRequirement = 7, cost = { Mana = 5, }, }, - [5] = { attackSpeedMultiplier = 10, baseMultiplier = 2.611, damageEffectiveness = 2.611, levelRequirement = 11, cost = { Mana = 6, }, }, - [6] = { attackSpeedMultiplier = 10, baseMultiplier = 2.663, damageEffectiveness = 2.663, levelRequirement = 16, cost = { Mana = 6, }, }, - [7] = { attackSpeedMultiplier = 10, baseMultiplier = 2.716, damageEffectiveness = 2.716, levelRequirement = 20, cost = { Mana = 6, }, }, - [8] = { attackSpeedMultiplier = 10, baseMultiplier = 2.768, damageEffectiveness = 2.768, levelRequirement = 24, cost = { Mana = 6, }, }, - [9] = { attackSpeedMultiplier = 10, baseMultiplier = 2.821, damageEffectiveness = 2.821, levelRequirement = 28, cost = { Mana = 7, }, }, - [10] = { attackSpeedMultiplier = 10, baseMultiplier = 2.874, damageEffectiveness = 2.874, levelRequirement = 32, cost = { Mana = 7, }, }, - [11] = { attackSpeedMultiplier = 10, baseMultiplier = 2.926, damageEffectiveness = 2.926, levelRequirement = 36, cost = { Mana = 7, }, }, - [12] = { attackSpeedMultiplier = 10, baseMultiplier = 2.979, damageEffectiveness = 2.979, levelRequirement = 40, cost = { Mana = 7, }, }, - [13] = { attackSpeedMultiplier = 10, baseMultiplier = 3.032, damageEffectiveness = 3.032, levelRequirement = 44, cost = { Mana = 8, }, }, - [14] = { attackSpeedMultiplier = 10, baseMultiplier = 3.084, damageEffectiveness = 3.084, levelRequirement = 48, cost = { Mana = 8, }, }, - [15] = { attackSpeedMultiplier = 10, baseMultiplier = 3.137, damageEffectiveness = 3.137, levelRequirement = 52, cost = { Mana = 8, }, }, - [16] = { attackSpeedMultiplier = 10, baseMultiplier = 3.189, damageEffectiveness = 3.189, levelRequirement = 56, cost = { Mana = 8, }, }, - [17] = { attackSpeedMultiplier = 10, baseMultiplier = 3.242, damageEffectiveness = 3.242, levelRequirement = 60, cost = { Mana = 9, }, }, - [18] = { attackSpeedMultiplier = 10, baseMultiplier = 3.295, damageEffectiveness = 3.295, levelRequirement = 64, cost = { Mana = 9, }, }, - [19] = { attackSpeedMultiplier = 10, baseMultiplier = 3.347, damageEffectiveness = 3.347, levelRequirement = 67, cost = { Mana = 9, }, }, - [20] = { attackSpeedMultiplier = 10, baseMultiplier = 3.4, damageEffectiveness = 3.4, levelRequirement = 70, cost = { Mana = 9, }, }, - [21] = { attackSpeedMultiplier = 10, baseMultiplier = 3.453, damageEffectiveness = 3.453, levelRequirement = 72, cost = { Mana = 9, }, }, - [22] = { attackSpeedMultiplier = 10, baseMultiplier = 3.505, damageEffectiveness = 3.505, levelRequirement = 74, cost = { Mana = 9, }, }, - [23] = { attackSpeedMultiplier = 10, baseMultiplier = 3.558, damageEffectiveness = 3.558, levelRequirement = 76, cost = { Mana = 9, }, }, - [24] = { attackSpeedMultiplier = 10, baseMultiplier = 3.611, damageEffectiveness = 3.611, levelRequirement = 78, cost = { Mana = 10, }, }, - [25] = { attackSpeedMultiplier = 10, baseMultiplier = 3.663, damageEffectiveness = 3.663, levelRequirement = 80, cost = { Mana = 10, }, }, - [26] = { attackSpeedMultiplier = 10, baseMultiplier = 3.716, damageEffectiveness = 3.716, levelRequirement = 82, cost = { Mana = 10, }, }, - [27] = { attackSpeedMultiplier = 10, baseMultiplier = 3.768, damageEffectiveness = 3.768, levelRequirement = 84, cost = { Mana = 10, }, }, - [28] = { attackSpeedMultiplier = 10, baseMultiplier = 3.821, damageEffectiveness = 3.821, levelRequirement = 86, cost = { Mana = 10, }, }, - [29] = { attackSpeedMultiplier = 10, baseMultiplier = 3.874, damageEffectiveness = 3.874, levelRequirement = 88, cost = { Mana = 10, }, }, - [30] = { attackSpeedMultiplier = 10, baseMultiplier = 3.926, damageEffectiveness = 3.926, levelRequirement = 90, cost = { Mana = 10, }, }, - [31] = { attackSpeedMultiplier = 10, baseMultiplier = 3.953, damageEffectiveness = 3.953, levelRequirement = 91, cost = { Mana = 10, }, }, - [32] = { attackSpeedMultiplier = 10, baseMultiplier = 3.979, damageEffectiveness = 3.979, levelRequirement = 92, cost = { Mana = 10, }, }, - [33] = { attackSpeedMultiplier = 10, baseMultiplier = 4.005, damageEffectiveness = 4.005, levelRequirement = 93, cost = { Mana = 10, }, }, - [34] = { attackSpeedMultiplier = 10, baseMultiplier = 4.032, damageEffectiveness = 4.032, levelRequirement = 94, cost = { Mana = 11, }, }, - [35] = { attackSpeedMultiplier = 10, baseMultiplier = 4.058, damageEffectiveness = 4.058, levelRequirement = 95, cost = { Mana = 11, }, }, - [36] = { attackSpeedMultiplier = 10, baseMultiplier = 4.084, damageEffectiveness = 4.084, levelRequirement = 96, cost = { Mana = 11, }, }, - [37] = { attackSpeedMultiplier = 10, baseMultiplier = 4.111, damageEffectiveness = 4.111, levelRequirement = 97, cost = { Mana = 11, }, }, - [38] = { attackSpeedMultiplier = 10, baseMultiplier = 4.137, damageEffectiveness = 4.137, levelRequirement = 98, cost = { Mana = 11, }, }, - [39] = { attackSpeedMultiplier = 10, baseMultiplier = 4.163, damageEffectiveness = 4.163, levelRequirement = 99, cost = { Mana = 11, }, }, - [40] = { attackSpeedMultiplier = 10, baseMultiplier = 4.189, damageEffectiveness = 4.189, levelRequirement = 100, cost = { Mana = 11, }, }, + [1] = { attackSpeedMultiplier = 20, baseMultiplier = 2.4, damageEffectiveness = 2.4, levelRequirement = 1, cost = { Mana = 5, }, }, + [2] = { attackSpeedMultiplier = 20, baseMultiplier = 2.453, damageEffectiveness = 2.453, levelRequirement = 2, cost = { Mana = 5, }, }, + [3] = { attackSpeedMultiplier = 20, baseMultiplier = 2.505, damageEffectiveness = 2.505, levelRequirement = 4, cost = { Mana = 5, }, }, + [4] = { attackSpeedMultiplier = 20, baseMultiplier = 2.558, damageEffectiveness = 2.558, levelRequirement = 7, cost = { Mana = 5, }, }, + [5] = { attackSpeedMultiplier = 20, baseMultiplier = 2.611, damageEffectiveness = 2.611, levelRequirement = 11, cost = { Mana = 6, }, }, + [6] = { attackSpeedMultiplier = 20, baseMultiplier = 2.663, damageEffectiveness = 2.663, levelRequirement = 16, cost = { Mana = 6, }, }, + [7] = { attackSpeedMultiplier = 20, baseMultiplier = 2.716, damageEffectiveness = 2.716, levelRequirement = 20, cost = { Mana = 6, }, }, + [8] = { attackSpeedMultiplier = 20, baseMultiplier = 2.768, damageEffectiveness = 2.768, levelRequirement = 24, cost = { Mana = 6, }, }, + [9] = { attackSpeedMultiplier = 20, baseMultiplier = 2.821, damageEffectiveness = 2.821, levelRequirement = 28, cost = { Mana = 7, }, }, + [10] = { attackSpeedMultiplier = 20, baseMultiplier = 2.874, damageEffectiveness = 2.874, levelRequirement = 32, cost = { Mana = 7, }, }, + [11] = { attackSpeedMultiplier = 20, baseMultiplier = 2.926, damageEffectiveness = 2.926, levelRequirement = 36, cost = { Mana = 7, }, }, + [12] = { attackSpeedMultiplier = 20, baseMultiplier = 2.979, damageEffectiveness = 2.979, levelRequirement = 40, cost = { Mana = 7, }, }, + [13] = { attackSpeedMultiplier = 20, baseMultiplier = 3.032, damageEffectiveness = 3.032, levelRequirement = 44, cost = { Mana = 8, }, }, + [14] = { attackSpeedMultiplier = 20, baseMultiplier = 3.084, damageEffectiveness = 3.084, levelRequirement = 48, cost = { Mana = 8, }, }, + [15] = { attackSpeedMultiplier = 20, baseMultiplier = 3.137, damageEffectiveness = 3.137, levelRequirement = 52, cost = { Mana = 8, }, }, + [16] = { attackSpeedMultiplier = 20, baseMultiplier = 3.189, damageEffectiveness = 3.189, levelRequirement = 56, cost = { Mana = 8, }, }, + [17] = { attackSpeedMultiplier = 20, baseMultiplier = 3.242, damageEffectiveness = 3.242, levelRequirement = 60, cost = { Mana = 9, }, }, + [18] = { attackSpeedMultiplier = 20, baseMultiplier = 3.295, damageEffectiveness = 3.295, levelRequirement = 64, cost = { Mana = 9, }, }, + [19] = { attackSpeedMultiplier = 20, baseMultiplier = 3.347, damageEffectiveness = 3.347, levelRequirement = 67, cost = { Mana = 9, }, }, + [20] = { attackSpeedMultiplier = 20, baseMultiplier = 3.4, damageEffectiveness = 3.4, levelRequirement = 70, cost = { Mana = 9, }, }, + [21] = { attackSpeedMultiplier = 20, baseMultiplier = 3.453, damageEffectiveness = 3.453, levelRequirement = 72, cost = { Mana = 9, }, }, + [22] = { attackSpeedMultiplier = 20, baseMultiplier = 3.505, damageEffectiveness = 3.505, levelRequirement = 74, cost = { Mana = 9, }, }, + [23] = { attackSpeedMultiplier = 20, baseMultiplier = 3.558, damageEffectiveness = 3.558, levelRequirement = 76, cost = { Mana = 9, }, }, + [24] = { attackSpeedMultiplier = 20, baseMultiplier = 3.611, damageEffectiveness = 3.611, levelRequirement = 78, cost = { Mana = 10, }, }, + [25] = { attackSpeedMultiplier = 20, baseMultiplier = 3.663, damageEffectiveness = 3.663, levelRequirement = 80, cost = { Mana = 10, }, }, + [26] = { attackSpeedMultiplier = 20, baseMultiplier = 3.716, damageEffectiveness = 3.716, levelRequirement = 82, cost = { Mana = 10, }, }, + [27] = { attackSpeedMultiplier = 20, baseMultiplier = 3.768, damageEffectiveness = 3.768, levelRequirement = 84, cost = { Mana = 10, }, }, + [28] = { attackSpeedMultiplier = 20, baseMultiplier = 3.821, damageEffectiveness = 3.821, levelRequirement = 86, cost = { Mana = 10, }, }, + [29] = { attackSpeedMultiplier = 20, baseMultiplier = 3.874, damageEffectiveness = 3.874, levelRequirement = 88, cost = { Mana = 10, }, }, + [30] = { attackSpeedMultiplier = 20, baseMultiplier = 3.926, damageEffectiveness = 3.926, levelRequirement = 90, cost = { Mana = 10, }, }, + [31] = { attackSpeedMultiplier = 20, baseMultiplier = 3.953, damageEffectiveness = 3.953, levelRequirement = 91, cost = { Mana = 10, }, }, + [32] = { attackSpeedMultiplier = 20, baseMultiplier = 3.979, damageEffectiveness = 3.979, levelRequirement = 92, cost = { Mana = 10, }, }, + [33] = { attackSpeedMultiplier = 20, baseMultiplier = 4.005, damageEffectiveness = 4.005, levelRequirement = 93, cost = { Mana = 10, }, }, + [34] = { attackSpeedMultiplier = 20, baseMultiplier = 4.032, damageEffectiveness = 4.032, levelRequirement = 94, cost = { Mana = 11, }, }, + [35] = { attackSpeedMultiplier = 20, baseMultiplier = 4.058, damageEffectiveness = 4.058, levelRequirement = 95, cost = { Mana = 11, }, }, + [36] = { attackSpeedMultiplier = 20, baseMultiplier = 4.084, damageEffectiveness = 4.084, levelRequirement = 96, cost = { Mana = 11, }, }, + [37] = { attackSpeedMultiplier = 20, baseMultiplier = 4.111, damageEffectiveness = 4.111, levelRequirement = 97, cost = { Mana = 11, }, }, + [38] = { attackSpeedMultiplier = 20, baseMultiplier = 4.137, damageEffectiveness = 4.137, levelRequirement = 98, cost = { Mana = 11, }, }, + [39] = { attackSpeedMultiplier = 20, baseMultiplier = 4.163, damageEffectiveness = 4.163, levelRequirement = 99, cost = { Mana = 11, }, }, + [40] = { attackSpeedMultiplier = 20, baseMultiplier = 4.189, damageEffectiveness = 4.189, levelRequirement = 100, cost = { Mana = 11, }, }, }, } skills["SpectralThrowAltY"] = { @@ -14692,7 +14804,7 @@ skills["SpectralThrowAltY"] = { }, qualityStats = { Default = { - { "projectile_damage_+%_final_if_pierced_enemy", 0.5 }, + { "projectile_damage_+%_final_if_pierced_enemy", 1 }, }, }, constantStats = { @@ -14710,46 +14822,46 @@ skills["SpectralThrowAltY"] = { "base_skill_show_average_damage_instead_of_dps", }, levels = { - [1] = { 3, baseMultiplier = 0.92, damageEffectiveness = 0.92, levelRequirement = 1, statInterpolation = { 1, }, cost = { Mana = 5, }, }, - [2] = { 3, baseMultiplier = 0.944, damageEffectiveness = 0.944, levelRequirement = 2, statInterpolation = { 1, }, cost = { Mana = 5, }, }, - [3] = { 3, baseMultiplier = 0.968, damageEffectiveness = 0.968, levelRequirement = 4, statInterpolation = { 1, }, cost = { Mana = 5, }, }, - [4] = { 3, baseMultiplier = 0.993, damageEffectiveness = 0.993, levelRequirement = 7, statInterpolation = { 1, }, cost = { Mana = 5, }, }, - [5] = { 3, baseMultiplier = 1.017, damageEffectiveness = 1.017, levelRequirement = 11, statInterpolation = { 1, }, cost = { Mana = 6, }, }, - [6] = { 3, baseMultiplier = 1.041, damageEffectiveness = 1.041, levelRequirement = 16, statInterpolation = { 1, }, cost = { Mana = 6, }, }, - [7] = { 3, baseMultiplier = 1.065, damageEffectiveness = 1.065, levelRequirement = 20, statInterpolation = { 1, }, cost = { Mana = 6, }, }, - [8] = { 3, baseMultiplier = 1.089, damageEffectiveness = 1.089, levelRequirement = 24, statInterpolation = { 1, }, cost = { Mana = 6, }, }, - [9] = { 3, baseMultiplier = 1.114, damageEffectiveness = 1.114, levelRequirement = 28, statInterpolation = { 1, }, cost = { Mana = 7, }, }, - [10] = { 4, baseMultiplier = 1.138, damageEffectiveness = 1.138, levelRequirement = 32, statInterpolation = { 1, }, cost = { Mana = 7, }, }, - [11] = { 4, baseMultiplier = 1.162, damageEffectiveness = 1.162, levelRequirement = 36, statInterpolation = { 1, }, cost = { Mana = 7, }, }, - [12] = { 4, baseMultiplier = 1.186, damageEffectiveness = 1.186, levelRequirement = 40, statInterpolation = { 1, }, cost = { Mana = 7, }, }, - [13] = { 4, baseMultiplier = 1.211, damageEffectiveness = 1.211, levelRequirement = 44, statInterpolation = { 1, }, cost = { Mana = 8, }, }, - [14] = { 4, baseMultiplier = 1.235, damageEffectiveness = 1.235, levelRequirement = 48, statInterpolation = { 1, }, cost = { Mana = 8, }, }, - [15] = { 4, baseMultiplier = 1.259, damageEffectiveness = 1.259, levelRequirement = 52, statInterpolation = { 1, }, cost = { Mana = 8, }, }, - [16] = { 4, baseMultiplier = 1.283, damageEffectiveness = 1.283, levelRequirement = 56, statInterpolation = { 1, }, cost = { Mana = 8, }, }, - [17] = { 4, baseMultiplier = 1.307, damageEffectiveness = 1.307, levelRequirement = 60, statInterpolation = { 1, }, cost = { Mana = 9, }, }, - [18] = { 4, baseMultiplier = 1.332, damageEffectiveness = 1.332, levelRequirement = 64, statInterpolation = { 1, }, cost = { Mana = 9, }, }, - [19] = { 4, baseMultiplier = 1.356, damageEffectiveness = 1.356, levelRequirement = 67, statInterpolation = { 1, }, cost = { Mana = 9, }, }, - [20] = { 5, baseMultiplier = 1.38, damageEffectiveness = 1.38, levelRequirement = 70, statInterpolation = { 1, }, cost = { Mana = 9, }, }, - [21] = { 5, baseMultiplier = 1.404, damageEffectiveness = 1.404, levelRequirement = 72, statInterpolation = { 1, }, cost = { Mana = 9, }, }, - [22] = { 5, baseMultiplier = 1.428, damageEffectiveness = 1.428, levelRequirement = 74, statInterpolation = { 1, }, cost = { Mana = 9, }, }, - [23] = { 5, baseMultiplier = 1.453, damageEffectiveness = 1.453, levelRequirement = 76, statInterpolation = { 1, }, cost = { Mana = 9, }, }, - [24] = { 5, baseMultiplier = 1.477, damageEffectiveness = 1.477, levelRequirement = 78, statInterpolation = { 1, }, cost = { Mana = 10, }, }, - [25] = { 5, baseMultiplier = 1.501, damageEffectiveness = 1.501, levelRequirement = 80, statInterpolation = { 1, }, cost = { Mana = 10, }, }, - [26] = { 5, baseMultiplier = 1.525, damageEffectiveness = 1.525, levelRequirement = 82, statInterpolation = { 1, }, cost = { Mana = 10, }, }, - [27] = { 5, baseMultiplier = 1.549, damageEffectiveness = 1.549, levelRequirement = 84, statInterpolation = { 1, }, cost = { Mana = 10, }, }, - [28] = { 5, baseMultiplier = 1.574, damageEffectiveness = 1.574, levelRequirement = 86, statInterpolation = { 1, }, cost = { Mana = 10, }, }, - [29] = { 5, baseMultiplier = 1.598, damageEffectiveness = 1.598, levelRequirement = 88, statInterpolation = { 1, }, cost = { Mana = 10, }, }, - [30] = { 6, baseMultiplier = 1.622, damageEffectiveness = 1.622, levelRequirement = 90, statInterpolation = { 1, }, cost = { Mana = 10, }, }, - [31] = { 6, baseMultiplier = 1.634, damageEffectiveness = 1.634, levelRequirement = 91, statInterpolation = { 1, }, cost = { Mana = 10, }, }, - [32] = { 6, baseMultiplier = 1.646, damageEffectiveness = 1.646, levelRequirement = 92, statInterpolation = { 1, }, cost = { Mana = 10, }, }, - [33] = { 6, baseMultiplier = 1.658, damageEffectiveness = 1.658, levelRequirement = 93, statInterpolation = { 1, }, cost = { Mana = 10, }, }, - [34] = { 6, baseMultiplier = 1.671, damageEffectiveness = 1.671, levelRequirement = 94, statInterpolation = { 1, }, cost = { Mana = 11, }, }, - [35] = { 6, baseMultiplier = 1.683, damageEffectiveness = 1.683, levelRequirement = 95, statInterpolation = { 1, }, cost = { Mana = 11, }, }, - [36] = { 6, baseMultiplier = 1.695, damageEffectiveness = 1.695, levelRequirement = 96, statInterpolation = { 1, }, cost = { Mana = 11, }, }, - [37] = { 6, baseMultiplier = 1.707, damageEffectiveness = 1.707, levelRequirement = 97, statInterpolation = { 1, }, cost = { Mana = 11, }, }, - [38] = { 6, baseMultiplier = 1.719, damageEffectiveness = 1.719, levelRequirement = 98, statInterpolation = { 1, }, cost = { Mana = 11, }, }, - [39] = { 6, baseMultiplier = 1.731, damageEffectiveness = 1.731, levelRequirement = 99, statInterpolation = { 1, }, cost = { Mana = 11, }, }, - [40] = { 7, baseMultiplier = 1.743, damageEffectiveness = 1.743, levelRequirement = 100, statInterpolation = { 1, }, cost = { Mana = 11, }, }, + [1] = { 3, attackSpeedMultiplier = 20, baseMultiplier = 0.92, damageEffectiveness = 0.92, levelRequirement = 1, statInterpolation = { 1, }, cost = { Mana = 5, }, }, + [2] = { 3, attackSpeedMultiplier = 20, baseMultiplier = 0.944, damageEffectiveness = 0.944, levelRequirement = 2, statInterpolation = { 1, }, cost = { Mana = 5, }, }, + [3] = { 3, attackSpeedMultiplier = 20, baseMultiplier = 0.968, damageEffectiveness = 0.968, levelRequirement = 4, statInterpolation = { 1, }, cost = { Mana = 5, }, }, + [4] = { 3, attackSpeedMultiplier = 20, baseMultiplier = 0.993, damageEffectiveness = 0.993, levelRequirement = 7, statInterpolation = { 1, }, cost = { Mana = 5, }, }, + [5] = { 3, attackSpeedMultiplier = 20, baseMultiplier = 1.017, damageEffectiveness = 1.017, levelRequirement = 11, statInterpolation = { 1, }, cost = { Mana = 6, }, }, + [6] = { 3, attackSpeedMultiplier = 20, baseMultiplier = 1.041, damageEffectiveness = 1.041, levelRequirement = 16, statInterpolation = { 1, }, cost = { Mana = 6, }, }, + [7] = { 3, attackSpeedMultiplier = 20, baseMultiplier = 1.065, damageEffectiveness = 1.065, levelRequirement = 20, statInterpolation = { 1, }, cost = { Mana = 6, }, }, + [8] = { 3, attackSpeedMultiplier = 20, baseMultiplier = 1.089, damageEffectiveness = 1.089, levelRequirement = 24, statInterpolation = { 1, }, cost = { Mana = 6, }, }, + [9] = { 3, attackSpeedMultiplier = 20, baseMultiplier = 1.114, damageEffectiveness = 1.114, levelRequirement = 28, statInterpolation = { 1, }, cost = { Mana = 7, }, }, + [10] = { 4, attackSpeedMultiplier = 20, baseMultiplier = 1.138, damageEffectiveness = 1.138, levelRequirement = 32, statInterpolation = { 1, }, cost = { Mana = 7, }, }, + [11] = { 4, attackSpeedMultiplier = 20, baseMultiplier = 1.162, damageEffectiveness = 1.162, levelRequirement = 36, statInterpolation = { 1, }, cost = { Mana = 7, }, }, + [12] = { 4, attackSpeedMultiplier = 20, baseMultiplier = 1.186, damageEffectiveness = 1.186, levelRequirement = 40, statInterpolation = { 1, }, cost = { Mana = 7, }, }, + [13] = { 4, attackSpeedMultiplier = 20, baseMultiplier = 1.211, damageEffectiveness = 1.211, levelRequirement = 44, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [14] = { 4, attackSpeedMultiplier = 20, baseMultiplier = 1.235, damageEffectiveness = 1.235, levelRequirement = 48, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [15] = { 4, attackSpeedMultiplier = 20, baseMultiplier = 1.259, damageEffectiveness = 1.259, levelRequirement = 52, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [16] = { 4, attackSpeedMultiplier = 20, baseMultiplier = 1.283, damageEffectiveness = 1.283, levelRequirement = 56, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [17] = { 4, attackSpeedMultiplier = 20, baseMultiplier = 1.307, damageEffectiveness = 1.307, levelRequirement = 60, statInterpolation = { 1, }, cost = { Mana = 9, }, }, + [18] = { 4, attackSpeedMultiplier = 20, baseMultiplier = 1.332, damageEffectiveness = 1.332, levelRequirement = 64, statInterpolation = { 1, }, cost = { Mana = 9, }, }, + [19] = { 4, attackSpeedMultiplier = 20, baseMultiplier = 1.356, damageEffectiveness = 1.356, levelRequirement = 67, statInterpolation = { 1, }, cost = { Mana = 9, }, }, + [20] = { 5, attackSpeedMultiplier = 20, baseMultiplier = 1.38, damageEffectiveness = 1.38, levelRequirement = 70, statInterpolation = { 1, }, cost = { Mana = 9, }, }, + [21] = { 5, attackSpeedMultiplier = 20, baseMultiplier = 1.404, damageEffectiveness = 1.404, levelRequirement = 72, statInterpolation = { 1, }, cost = { Mana = 9, }, }, + [22] = { 5, attackSpeedMultiplier = 20, baseMultiplier = 1.428, damageEffectiveness = 1.428, levelRequirement = 74, statInterpolation = { 1, }, cost = { Mana = 9, }, }, + [23] = { 5, attackSpeedMultiplier = 20, baseMultiplier = 1.453, damageEffectiveness = 1.453, levelRequirement = 76, statInterpolation = { 1, }, cost = { Mana = 9, }, }, + [24] = { 5, attackSpeedMultiplier = 20, baseMultiplier = 1.477, damageEffectiveness = 1.477, levelRequirement = 78, statInterpolation = { 1, }, cost = { Mana = 10, }, }, + [25] = { 5, attackSpeedMultiplier = 20, baseMultiplier = 1.501, damageEffectiveness = 1.501, levelRequirement = 80, statInterpolation = { 1, }, cost = { Mana = 10, }, }, + [26] = { 5, attackSpeedMultiplier = 20, baseMultiplier = 1.525, damageEffectiveness = 1.525, levelRequirement = 82, statInterpolation = { 1, }, cost = { Mana = 10, }, }, + [27] = { 5, attackSpeedMultiplier = 20, baseMultiplier = 1.549, damageEffectiveness = 1.549, levelRequirement = 84, statInterpolation = { 1, }, cost = { Mana = 10, }, }, + [28] = { 5, attackSpeedMultiplier = 20, baseMultiplier = 1.574, damageEffectiveness = 1.574, levelRequirement = 86, statInterpolation = { 1, }, cost = { Mana = 10, }, }, + [29] = { 5, attackSpeedMultiplier = 20, baseMultiplier = 1.598, damageEffectiveness = 1.598, levelRequirement = 88, statInterpolation = { 1, }, cost = { Mana = 10, }, }, + [30] = { 6, attackSpeedMultiplier = 20, baseMultiplier = 1.622, damageEffectiveness = 1.622, levelRequirement = 90, statInterpolation = { 1, }, cost = { Mana = 10, }, }, + [31] = { 6, attackSpeedMultiplier = 20, baseMultiplier = 1.634, damageEffectiveness = 1.634, levelRequirement = 91, statInterpolation = { 1, }, cost = { Mana = 10, }, }, + [32] = { 6, attackSpeedMultiplier = 20, baseMultiplier = 1.646, damageEffectiveness = 1.646, levelRequirement = 92, statInterpolation = { 1, }, cost = { Mana = 10, }, }, + [33] = { 6, attackSpeedMultiplier = 20, baseMultiplier = 1.658, damageEffectiveness = 1.658, levelRequirement = 93, statInterpolation = { 1, }, cost = { Mana = 10, }, }, + [34] = { 6, attackSpeedMultiplier = 20, baseMultiplier = 1.671, damageEffectiveness = 1.671, levelRequirement = 94, statInterpolation = { 1, }, cost = { Mana = 11, }, }, + [35] = { 6, attackSpeedMultiplier = 20, baseMultiplier = 1.683, damageEffectiveness = 1.683, levelRequirement = 95, statInterpolation = { 1, }, cost = { Mana = 11, }, }, + [36] = { 6, attackSpeedMultiplier = 20, baseMultiplier = 1.695, damageEffectiveness = 1.695, levelRequirement = 96, statInterpolation = { 1, }, cost = { Mana = 11, }, }, + [37] = { 6, attackSpeedMultiplier = 20, baseMultiplier = 1.707, damageEffectiveness = 1.707, levelRequirement = 97, statInterpolation = { 1, }, cost = { Mana = 11, }, }, + [38] = { 6, attackSpeedMultiplier = 20, baseMultiplier = 1.719, damageEffectiveness = 1.719, levelRequirement = 98, statInterpolation = { 1, }, cost = { Mana = 11, }, }, + [39] = { 6, attackSpeedMultiplier = 20, baseMultiplier = 1.731, damageEffectiveness = 1.731, levelRequirement = 99, statInterpolation = { 1, }, cost = { Mana = 11, }, }, + [40] = { 7, attackSpeedMultiplier = 20, baseMultiplier = 1.743, damageEffectiveness = 1.743, levelRequirement = 100, statInterpolation = { 1, }, cost = { Mana = 11, }, }, }, } skills["VaalSpectralThrow"] = { @@ -14785,7 +14897,7 @@ skills["VaalSpectralThrow"] = { }, qualityStats = { Default = { - { "projectile_damage_+%_final_if_pierced_enemy", 0.5 }, + { "projectile_damage_+%_final_if_pierced_enemy", 1 }, }, }, constantStats = { @@ -14804,46 +14916,46 @@ skills["VaalSpectralThrow"] = { "skill_cannot_be_stunned_before_contact_point", }, levels = { - [1] = { attackSpeedMultiplier = 10, baseMultiplier = 0.85, damageEffectiveness = 0.85, levelRequirement = 1, soulPreventionDuration = 4, vaalStoredUses = 1, cost = { Soul = 15, }, }, - [2] = { attackSpeedMultiplier = 10, baseMultiplier = 0.876, damageEffectiveness = 0.876, levelRequirement = 2, soulPreventionDuration = 4, vaalStoredUses = 1, cost = { Soul = 15, }, }, - [3] = { attackSpeedMultiplier = 10, baseMultiplier = 0.903, damageEffectiveness = 0.903, levelRequirement = 4, soulPreventionDuration = 4, vaalStoredUses = 1, cost = { Soul = 15, }, }, - [4] = { attackSpeedMultiplier = 10, baseMultiplier = 0.929, damageEffectiveness = 0.929, levelRequirement = 7, soulPreventionDuration = 4, vaalStoredUses = 1, cost = { Soul = 15, }, }, - [5] = { attackSpeedMultiplier = 10, baseMultiplier = 0.955, damageEffectiveness = 0.955, levelRequirement = 11, soulPreventionDuration = 4, vaalStoredUses = 1, cost = { Soul = 15, }, }, - [6] = { attackSpeedMultiplier = 10, baseMultiplier = 0.982, damageEffectiveness = 0.982, levelRequirement = 16, soulPreventionDuration = 4, vaalStoredUses = 1, cost = { Soul = 15, }, }, - [7] = { attackSpeedMultiplier = 10, baseMultiplier = 1.008, damageEffectiveness = 1.008, levelRequirement = 20, soulPreventionDuration = 4, vaalStoredUses = 1, cost = { Soul = 15, }, }, - [8] = { attackSpeedMultiplier = 10, baseMultiplier = 1.034, damageEffectiveness = 1.034, levelRequirement = 24, soulPreventionDuration = 4, vaalStoredUses = 1, cost = { Soul = 15, }, }, - [9] = { attackSpeedMultiplier = 10, baseMultiplier = 1.061, damageEffectiveness = 1.061, levelRequirement = 28, soulPreventionDuration = 4, vaalStoredUses = 1, cost = { Soul = 15, }, }, - [10] = { attackSpeedMultiplier = 10, baseMultiplier = 1.087, damageEffectiveness = 1.087, levelRequirement = 32, soulPreventionDuration = 4, vaalStoredUses = 1, cost = { Soul = 15, }, }, - [11] = { attackSpeedMultiplier = 10, baseMultiplier = 1.113, damageEffectiveness = 1.113, levelRequirement = 36, soulPreventionDuration = 4, vaalStoredUses = 1, cost = { Soul = 15, }, }, - [12] = { attackSpeedMultiplier = 10, baseMultiplier = 1.139, damageEffectiveness = 1.139, levelRequirement = 40, soulPreventionDuration = 4, vaalStoredUses = 1, cost = { Soul = 15, }, }, - [13] = { attackSpeedMultiplier = 10, baseMultiplier = 1.166, damageEffectiveness = 1.166, levelRequirement = 44, soulPreventionDuration = 4, vaalStoredUses = 1, cost = { Soul = 15, }, }, - [14] = { attackSpeedMultiplier = 10, baseMultiplier = 1.192, damageEffectiveness = 1.192, levelRequirement = 48, soulPreventionDuration = 4, vaalStoredUses = 1, cost = { Soul = 15, }, }, - [15] = { attackSpeedMultiplier = 10, baseMultiplier = 1.218, damageEffectiveness = 1.218, levelRequirement = 52, soulPreventionDuration = 4, vaalStoredUses = 1, cost = { Soul = 15, }, }, - [16] = { attackSpeedMultiplier = 10, baseMultiplier = 1.245, damageEffectiveness = 1.245, levelRequirement = 56, soulPreventionDuration = 4, vaalStoredUses = 1, cost = { Soul = 15, }, }, - [17] = { attackSpeedMultiplier = 10, baseMultiplier = 1.271, damageEffectiveness = 1.271, levelRequirement = 60, soulPreventionDuration = 4, vaalStoredUses = 1, cost = { Soul = 15, }, }, - [18] = { attackSpeedMultiplier = 10, baseMultiplier = 1.297, damageEffectiveness = 1.297, levelRequirement = 64, soulPreventionDuration = 4, vaalStoredUses = 1, cost = { Soul = 15, }, }, - [19] = { attackSpeedMultiplier = 10, baseMultiplier = 1.324, damageEffectiveness = 1.324, levelRequirement = 67, soulPreventionDuration = 4, vaalStoredUses = 1, cost = { Soul = 15, }, }, - [20] = { attackSpeedMultiplier = 10, baseMultiplier = 1.35, damageEffectiveness = 1.35, levelRequirement = 70, soulPreventionDuration = 4, vaalStoredUses = 1, cost = { Soul = 15, }, }, - [21] = { attackSpeedMultiplier = 10, baseMultiplier = 1.376, damageEffectiveness = 1.376, levelRequirement = 72, soulPreventionDuration = 4, vaalStoredUses = 1, cost = { Soul = 15, }, }, - [22] = { attackSpeedMultiplier = 10, baseMultiplier = 1.403, damageEffectiveness = 1.403, levelRequirement = 74, soulPreventionDuration = 4, vaalStoredUses = 1, cost = { Soul = 15, }, }, - [23] = { attackSpeedMultiplier = 10, baseMultiplier = 1.429, damageEffectiveness = 1.429, levelRequirement = 76, soulPreventionDuration = 4, vaalStoredUses = 1, cost = { Soul = 15, }, }, - [24] = { attackSpeedMultiplier = 10, baseMultiplier = 1.455, damageEffectiveness = 1.455, levelRequirement = 78, soulPreventionDuration = 4, vaalStoredUses = 1, cost = { Soul = 15, }, }, - [25] = { attackSpeedMultiplier = 10, baseMultiplier = 1.482, damageEffectiveness = 1.482, levelRequirement = 80, soulPreventionDuration = 4, vaalStoredUses = 1, cost = { Soul = 15, }, }, - [26] = { attackSpeedMultiplier = 10, baseMultiplier = 1.508, damageEffectiveness = 1.508, levelRequirement = 82, soulPreventionDuration = 4, vaalStoredUses = 1, cost = { Soul = 15, }, }, - [27] = { attackSpeedMultiplier = 10, baseMultiplier = 1.534, damageEffectiveness = 1.534, levelRequirement = 84, soulPreventionDuration = 4, vaalStoredUses = 1, cost = { Soul = 15, }, }, - [28] = { attackSpeedMultiplier = 10, baseMultiplier = 1.561, damageEffectiveness = 1.561, levelRequirement = 86, soulPreventionDuration = 4, vaalStoredUses = 1, cost = { Soul = 15, }, }, - [29] = { attackSpeedMultiplier = 10, baseMultiplier = 1.587, damageEffectiveness = 1.587, levelRequirement = 88, soulPreventionDuration = 4, vaalStoredUses = 1, cost = { Soul = 15, }, }, - [30] = { attackSpeedMultiplier = 10, baseMultiplier = 1.613, damageEffectiveness = 1.613, levelRequirement = 90, soulPreventionDuration = 4, vaalStoredUses = 1, cost = { Soul = 15, }, }, - [31] = { attackSpeedMultiplier = 10, baseMultiplier = 1.626, damageEffectiveness = 1.626, levelRequirement = 91, soulPreventionDuration = 4, vaalStoredUses = 1, cost = { Soul = 15, }, }, - [32] = { attackSpeedMultiplier = 10, baseMultiplier = 1.639, damageEffectiveness = 1.639, levelRequirement = 92, soulPreventionDuration = 4, vaalStoredUses = 1, cost = { Soul = 15, }, }, - [33] = { attackSpeedMultiplier = 10, baseMultiplier = 1.653, damageEffectiveness = 1.653, levelRequirement = 93, soulPreventionDuration = 4, vaalStoredUses = 1, cost = { Soul = 15, }, }, - [34] = { attackSpeedMultiplier = 10, baseMultiplier = 1.666, damageEffectiveness = 1.666, levelRequirement = 94, soulPreventionDuration = 4, vaalStoredUses = 1, cost = { Soul = 15, }, }, - [35] = { attackSpeedMultiplier = 10, baseMultiplier = 1.679, damageEffectiveness = 1.679, levelRequirement = 95, soulPreventionDuration = 4, vaalStoredUses = 1, cost = { Soul = 15, }, }, - [36] = { attackSpeedMultiplier = 10, baseMultiplier = 1.692, damageEffectiveness = 1.692, levelRequirement = 96, soulPreventionDuration = 4, vaalStoredUses = 1, cost = { Soul = 15, }, }, - [37] = { attackSpeedMultiplier = 10, baseMultiplier = 1.705, damageEffectiveness = 1.705, levelRequirement = 97, soulPreventionDuration = 4, vaalStoredUses = 1, cost = { Soul = 15, }, }, - [38] = { attackSpeedMultiplier = 10, baseMultiplier = 1.718, damageEffectiveness = 1.718, levelRequirement = 98, soulPreventionDuration = 4, vaalStoredUses = 1, cost = { Soul = 15, }, }, - [39] = { attackSpeedMultiplier = 10, baseMultiplier = 1.732, damageEffectiveness = 1.732, levelRequirement = 99, soulPreventionDuration = 4, vaalStoredUses = 1, cost = { Soul = 15, }, }, - [40] = { attackSpeedMultiplier = 10, baseMultiplier = 1.745, damageEffectiveness = 1.745, levelRequirement = 100, soulPreventionDuration = 4, vaalStoredUses = 1, cost = { Soul = 15, }, }, + [1] = { attackSpeedMultiplier = 20, levelRequirement = 1, soulPreventionDuration = 4, vaalStoredUses = 1, cost = { Soul = 15, }, }, + [2] = { attackSpeedMultiplier = 20, baseMultiplier = 1.026, damageEffectiveness = 1.026, levelRequirement = 2, soulPreventionDuration = 4, vaalStoredUses = 1, cost = { Soul = 15, }, }, + [3] = { attackSpeedMultiplier = 20, baseMultiplier = 1.053, damageEffectiveness = 1.053, levelRequirement = 4, soulPreventionDuration = 4, vaalStoredUses = 1, cost = { Soul = 15, }, }, + [4] = { attackSpeedMultiplier = 20, baseMultiplier = 1.079, damageEffectiveness = 1.079, levelRequirement = 7, soulPreventionDuration = 4, vaalStoredUses = 1, cost = { Soul = 15, }, }, + [5] = { attackSpeedMultiplier = 20, baseMultiplier = 1.105, damageEffectiveness = 1.105, levelRequirement = 11, soulPreventionDuration = 4, vaalStoredUses = 1, cost = { Soul = 15, }, }, + [6] = { attackSpeedMultiplier = 20, baseMultiplier = 1.132, damageEffectiveness = 1.132, levelRequirement = 16, soulPreventionDuration = 4, vaalStoredUses = 1, cost = { Soul = 15, }, }, + [7] = { attackSpeedMultiplier = 20, baseMultiplier = 1.158, damageEffectiveness = 1.158, levelRequirement = 20, soulPreventionDuration = 4, vaalStoredUses = 1, cost = { Soul = 15, }, }, + [8] = { attackSpeedMultiplier = 20, baseMultiplier = 1.184, damageEffectiveness = 1.184, levelRequirement = 24, soulPreventionDuration = 4, vaalStoredUses = 1, cost = { Soul = 15, }, }, + [9] = { attackSpeedMultiplier = 20, baseMultiplier = 1.211, damageEffectiveness = 1.211, levelRequirement = 28, soulPreventionDuration = 4, vaalStoredUses = 1, cost = { Soul = 15, }, }, + [10] = { attackSpeedMultiplier = 20, baseMultiplier = 1.237, damageEffectiveness = 1.237, levelRequirement = 32, soulPreventionDuration = 4, vaalStoredUses = 1, cost = { Soul = 15, }, }, + [11] = { attackSpeedMultiplier = 20, baseMultiplier = 1.263, damageEffectiveness = 1.263, levelRequirement = 36, soulPreventionDuration = 4, vaalStoredUses = 1, cost = { Soul = 15, }, }, + [12] = { attackSpeedMultiplier = 20, baseMultiplier = 1.289, damageEffectiveness = 1.289, levelRequirement = 40, soulPreventionDuration = 4, vaalStoredUses = 1, cost = { Soul = 15, }, }, + [13] = { attackSpeedMultiplier = 20, baseMultiplier = 1.316, damageEffectiveness = 1.316, levelRequirement = 44, soulPreventionDuration = 4, vaalStoredUses = 1, cost = { Soul = 15, }, }, + [14] = { attackSpeedMultiplier = 20, baseMultiplier = 1.342, damageEffectiveness = 1.342, levelRequirement = 48, soulPreventionDuration = 4, vaalStoredUses = 1, cost = { Soul = 15, }, }, + [15] = { attackSpeedMultiplier = 20, baseMultiplier = 1.368, damageEffectiveness = 1.368, levelRequirement = 52, soulPreventionDuration = 4, vaalStoredUses = 1, cost = { Soul = 15, }, }, + [16] = { attackSpeedMultiplier = 20, baseMultiplier = 1.395, damageEffectiveness = 1.395, levelRequirement = 56, soulPreventionDuration = 4, vaalStoredUses = 1, cost = { Soul = 15, }, }, + [17] = { attackSpeedMultiplier = 20, baseMultiplier = 1.421, damageEffectiveness = 1.421, levelRequirement = 60, soulPreventionDuration = 4, vaalStoredUses = 1, cost = { Soul = 15, }, }, + [18] = { attackSpeedMultiplier = 20, baseMultiplier = 1.447, damageEffectiveness = 1.447, levelRequirement = 64, soulPreventionDuration = 4, vaalStoredUses = 1, cost = { Soul = 15, }, }, + [19] = { attackSpeedMultiplier = 20, baseMultiplier = 1.474, damageEffectiveness = 1.474, levelRequirement = 67, soulPreventionDuration = 4, vaalStoredUses = 1, cost = { Soul = 15, }, }, + [20] = { attackSpeedMultiplier = 20, baseMultiplier = 1.5, damageEffectiveness = 1.5, levelRequirement = 70, soulPreventionDuration = 4, vaalStoredUses = 1, cost = { Soul = 15, }, }, + [21] = { attackSpeedMultiplier = 20, baseMultiplier = 1.526, damageEffectiveness = 1.526, levelRequirement = 72, soulPreventionDuration = 4, vaalStoredUses = 1, cost = { Soul = 15, }, }, + [22] = { attackSpeedMultiplier = 20, baseMultiplier = 1.553, damageEffectiveness = 1.553, levelRequirement = 74, soulPreventionDuration = 4, vaalStoredUses = 1, cost = { Soul = 15, }, }, + [23] = { attackSpeedMultiplier = 20, baseMultiplier = 1.579, damageEffectiveness = 1.579, levelRequirement = 76, soulPreventionDuration = 4, vaalStoredUses = 1, cost = { Soul = 15, }, }, + [24] = { attackSpeedMultiplier = 20, baseMultiplier = 1.605, damageEffectiveness = 1.605, levelRequirement = 78, soulPreventionDuration = 4, vaalStoredUses = 1, cost = { Soul = 15, }, }, + [25] = { attackSpeedMultiplier = 20, baseMultiplier = 1.632, damageEffectiveness = 1.632, levelRequirement = 80, soulPreventionDuration = 4, vaalStoredUses = 1, cost = { Soul = 15, }, }, + [26] = { attackSpeedMultiplier = 20, baseMultiplier = 1.658, damageEffectiveness = 1.658, levelRequirement = 82, soulPreventionDuration = 4, vaalStoredUses = 1, cost = { Soul = 15, }, }, + [27] = { attackSpeedMultiplier = 20, baseMultiplier = 1.684, damageEffectiveness = 1.684, levelRequirement = 84, soulPreventionDuration = 4, vaalStoredUses = 1, cost = { Soul = 15, }, }, + [28] = { attackSpeedMultiplier = 20, baseMultiplier = 1.711, damageEffectiveness = 1.711, levelRequirement = 86, soulPreventionDuration = 4, vaalStoredUses = 1, cost = { Soul = 15, }, }, + [29] = { attackSpeedMultiplier = 20, baseMultiplier = 1.737, damageEffectiveness = 1.737, levelRequirement = 88, soulPreventionDuration = 4, vaalStoredUses = 1, cost = { Soul = 15, }, }, + [30] = { attackSpeedMultiplier = 20, baseMultiplier = 1.763, damageEffectiveness = 1.763, levelRequirement = 90, soulPreventionDuration = 4, vaalStoredUses = 1, cost = { Soul = 15, }, }, + [31] = { attackSpeedMultiplier = 20, baseMultiplier = 1.776, damageEffectiveness = 1.776, levelRequirement = 91, soulPreventionDuration = 4, vaalStoredUses = 1, cost = { Soul = 15, }, }, + [32] = { attackSpeedMultiplier = 20, baseMultiplier = 1.789, damageEffectiveness = 1.789, levelRequirement = 92, soulPreventionDuration = 4, vaalStoredUses = 1, cost = { Soul = 15, }, }, + [33] = { attackSpeedMultiplier = 20, baseMultiplier = 1.803, damageEffectiveness = 1.803, levelRequirement = 93, soulPreventionDuration = 4, vaalStoredUses = 1, cost = { Soul = 15, }, }, + [34] = { attackSpeedMultiplier = 20, baseMultiplier = 1.816, damageEffectiveness = 1.816, levelRequirement = 94, soulPreventionDuration = 4, vaalStoredUses = 1, cost = { Soul = 15, }, }, + [35] = { attackSpeedMultiplier = 20, baseMultiplier = 1.829, damageEffectiveness = 1.829, levelRequirement = 95, soulPreventionDuration = 4, vaalStoredUses = 1, cost = { Soul = 15, }, }, + [36] = { attackSpeedMultiplier = 20, baseMultiplier = 1.842, damageEffectiveness = 1.842, levelRequirement = 96, soulPreventionDuration = 4, vaalStoredUses = 1, cost = { Soul = 15, }, }, + [37] = { attackSpeedMultiplier = 20, baseMultiplier = 1.855, damageEffectiveness = 1.855, levelRequirement = 97, soulPreventionDuration = 4, vaalStoredUses = 1, cost = { Soul = 15, }, }, + [38] = { attackSpeedMultiplier = 20, baseMultiplier = 1.868, damageEffectiveness = 1.868, levelRequirement = 98, soulPreventionDuration = 4, vaalStoredUses = 1, cost = { Soul = 15, }, }, + [39] = { attackSpeedMultiplier = 20, baseMultiplier = 1.882, damageEffectiveness = 1.882, levelRequirement = 99, soulPreventionDuration = 4, vaalStoredUses = 1, cost = { Soul = 15, }, }, + [40] = { attackSpeedMultiplier = 20, baseMultiplier = 1.895, damageEffectiveness = 1.895, levelRequirement = 100, soulPreventionDuration = 4, vaalStoredUses = 1, cost = { Soul = 15, }, }, }, } skills["ToxicRain"] = { @@ -15166,7 +15278,7 @@ skills["SpectralHelix"] = { }, qualityStats = { Default = { - { "projectile_damage_+%_final_if_pierced_enemy", 0.5 }, + { "projectile_damage_+%_final_if_pierced_enemy", 1 }, }, }, constantStats = { @@ -15177,48 +15289,49 @@ skills["SpectralHelix"] = { "projectiles_nova", "base_is_projectile", "skill_display_single_base_projectile", + "projectiles_ignore_wall_of_force", }, levels = { - [1] = { attackSpeedMultiplier = 10, baseMultiplier = 1.2, damageEffectiveness = 1.2, levelRequirement = 12, cost = { Mana = 6, }, }, - [2] = { attackSpeedMultiplier = 10, baseMultiplier = 1.232, damageEffectiveness = 1.232, levelRequirement = 15, cost = { Mana = 6, }, }, - [3] = { attackSpeedMultiplier = 10, baseMultiplier = 1.263, damageEffectiveness = 1.263, levelRequirement = 19, cost = { Mana = 6, }, }, - [4] = { attackSpeedMultiplier = 10, baseMultiplier = 1.295, damageEffectiveness = 1.295, levelRequirement = 23, cost = { Mana = 6, }, }, - [5] = { attackSpeedMultiplier = 10, baseMultiplier = 1.326, damageEffectiveness = 1.326, levelRequirement = 27, cost = { Mana = 7, }, }, - [6] = { attackSpeedMultiplier = 10, baseMultiplier = 1.358, damageEffectiveness = 1.358, levelRequirement = 31, cost = { Mana = 7, }, }, - [7] = { attackSpeedMultiplier = 10, baseMultiplier = 1.389, damageEffectiveness = 1.389, levelRequirement = 35, cost = { Mana = 7, }, }, - [8] = { attackSpeedMultiplier = 10, baseMultiplier = 1.421, damageEffectiveness = 1.421, levelRequirement = 38, cost = { Mana = 7, }, }, - [9] = { attackSpeedMultiplier = 10, baseMultiplier = 1.453, damageEffectiveness = 1.453, levelRequirement = 41, cost = { Mana = 7, }, }, - [10] = { attackSpeedMultiplier = 10, baseMultiplier = 1.484, damageEffectiveness = 1.484, levelRequirement = 44, cost = { Mana = 8, }, }, - [11] = { attackSpeedMultiplier = 10, baseMultiplier = 1.516, damageEffectiveness = 1.516, levelRequirement = 47, cost = { Mana = 8, }, }, - [12] = { attackSpeedMultiplier = 10, baseMultiplier = 1.547, damageEffectiveness = 1.547, levelRequirement = 50, cost = { Mana = 8, }, }, - [13] = { attackSpeedMultiplier = 10, baseMultiplier = 1.579, damageEffectiveness = 1.579, levelRequirement = 53, cost = { Mana = 8, }, }, - [14] = { attackSpeedMultiplier = 10, baseMultiplier = 1.611, damageEffectiveness = 1.611, levelRequirement = 56, cost = { Mana = 8, }, }, - [15] = { attackSpeedMultiplier = 10, baseMultiplier = 1.642, damageEffectiveness = 1.642, levelRequirement = 59, cost = { Mana = 8, }, }, - [16] = { attackSpeedMultiplier = 10, baseMultiplier = 1.674, damageEffectiveness = 1.674, levelRequirement = 62, cost = { Mana = 9, }, }, - [17] = { attackSpeedMultiplier = 10, baseMultiplier = 1.705, damageEffectiveness = 1.705, levelRequirement = 64, cost = { Mana = 9, }, }, - [18] = { attackSpeedMultiplier = 10, baseMultiplier = 1.737, damageEffectiveness = 1.737, levelRequirement = 66, cost = { Mana = 9, }, }, - [19] = { attackSpeedMultiplier = 10, baseMultiplier = 1.768, damageEffectiveness = 1.768, levelRequirement = 68, cost = { Mana = 9, }, }, - [20] = { attackSpeedMultiplier = 10, baseMultiplier = 1.8, damageEffectiveness = 1.8, levelRequirement = 70, cost = { Mana = 9, }, }, - [21] = { attackSpeedMultiplier = 10, baseMultiplier = 1.832, damageEffectiveness = 1.832, levelRequirement = 72, cost = { Mana = 9, }, }, - [22] = { attackSpeedMultiplier = 10, baseMultiplier = 1.863, damageEffectiveness = 1.863, levelRequirement = 74, cost = { Mana = 9, }, }, - [23] = { attackSpeedMultiplier = 10, baseMultiplier = 1.895, damageEffectiveness = 1.895, levelRequirement = 76, cost = { Mana = 9, }, }, - [24] = { attackSpeedMultiplier = 10, baseMultiplier = 1.926, damageEffectiveness = 1.926, levelRequirement = 78, cost = { Mana = 10, }, }, - [25] = { attackSpeedMultiplier = 10, baseMultiplier = 1.958, damageEffectiveness = 1.958, levelRequirement = 80, cost = { Mana = 10, }, }, - [26] = { attackSpeedMultiplier = 10, baseMultiplier = 1.989, damageEffectiveness = 1.989, levelRequirement = 82, cost = { Mana = 10, }, }, - [27] = { attackSpeedMultiplier = 10, baseMultiplier = 2.021, damageEffectiveness = 2.021, levelRequirement = 84, cost = { Mana = 10, }, }, - [28] = { attackSpeedMultiplier = 10, baseMultiplier = 2.053, damageEffectiveness = 2.053, levelRequirement = 86, cost = { Mana = 10, }, }, - [29] = { attackSpeedMultiplier = 10, baseMultiplier = 2.084, damageEffectiveness = 2.084, levelRequirement = 88, cost = { Mana = 10, }, }, - [30] = { attackSpeedMultiplier = 10, baseMultiplier = 2.116, damageEffectiveness = 2.116, levelRequirement = 90, cost = { Mana = 10, }, }, - [31] = { attackSpeedMultiplier = 10, baseMultiplier = 2.132, damageEffectiveness = 2.132, levelRequirement = 91, cost = { Mana = 10, }, }, - [32] = { attackSpeedMultiplier = 10, baseMultiplier = 2.147, damageEffectiveness = 2.147, levelRequirement = 92, cost = { Mana = 10, }, }, - [33] = { attackSpeedMultiplier = 10, baseMultiplier = 2.163, damageEffectiveness = 2.163, levelRequirement = 93, cost = { Mana = 10, }, }, - [34] = { attackSpeedMultiplier = 10, baseMultiplier = 2.179, damageEffectiveness = 2.179, levelRequirement = 94, cost = { Mana = 11, }, }, - [35] = { attackSpeedMultiplier = 10, baseMultiplier = 2.195, damageEffectiveness = 2.195, levelRequirement = 95, cost = { Mana = 11, }, }, - [36] = { attackSpeedMultiplier = 10, baseMultiplier = 2.211, damageEffectiveness = 2.211, levelRequirement = 96, cost = { Mana = 11, }, }, - [37] = { attackSpeedMultiplier = 10, baseMultiplier = 2.226, damageEffectiveness = 2.226, levelRequirement = 97, cost = { Mana = 11, }, }, - [38] = { attackSpeedMultiplier = 10, baseMultiplier = 2.242, damageEffectiveness = 2.242, levelRequirement = 98, cost = { Mana = 11, }, }, - [39] = { attackSpeedMultiplier = 10, baseMultiplier = 2.258, damageEffectiveness = 2.258, levelRequirement = 99, cost = { Mana = 11, }, }, - [40] = { attackSpeedMultiplier = 10, baseMultiplier = 2.274, damageEffectiveness = 2.274, levelRequirement = 100, cost = { Mana = 11, }, }, + [1] = { attackSpeedMultiplier = 20, baseMultiplier = 1.2, damageEffectiveness = 1.2, levelRequirement = 12, cost = { Mana = 6, }, }, + [2] = { attackSpeedMultiplier = 20, baseMultiplier = 1.232, damageEffectiveness = 1.232, levelRequirement = 15, cost = { Mana = 6, }, }, + [3] = { attackSpeedMultiplier = 20, baseMultiplier = 1.263, damageEffectiveness = 1.263, levelRequirement = 19, cost = { Mana = 6, }, }, + [4] = { attackSpeedMultiplier = 20, baseMultiplier = 1.295, damageEffectiveness = 1.295, levelRequirement = 23, cost = { Mana = 6, }, }, + [5] = { attackSpeedMultiplier = 20, baseMultiplier = 1.326, damageEffectiveness = 1.326, levelRequirement = 27, cost = { Mana = 7, }, }, + [6] = { attackSpeedMultiplier = 20, baseMultiplier = 1.358, damageEffectiveness = 1.358, levelRequirement = 31, cost = { Mana = 7, }, }, + [7] = { attackSpeedMultiplier = 20, baseMultiplier = 1.389, damageEffectiveness = 1.389, levelRequirement = 35, cost = { Mana = 7, }, }, + [8] = { attackSpeedMultiplier = 20, baseMultiplier = 1.421, damageEffectiveness = 1.421, levelRequirement = 38, cost = { Mana = 7, }, }, + [9] = { attackSpeedMultiplier = 20, baseMultiplier = 1.453, damageEffectiveness = 1.453, levelRequirement = 41, cost = { Mana = 7, }, }, + [10] = { attackSpeedMultiplier = 20, baseMultiplier = 1.484, damageEffectiveness = 1.484, levelRequirement = 44, cost = { Mana = 8, }, }, + [11] = { attackSpeedMultiplier = 20, baseMultiplier = 1.516, damageEffectiveness = 1.516, levelRequirement = 47, cost = { Mana = 8, }, }, + [12] = { attackSpeedMultiplier = 20, baseMultiplier = 1.547, damageEffectiveness = 1.547, levelRequirement = 50, cost = { Mana = 8, }, }, + [13] = { attackSpeedMultiplier = 20, baseMultiplier = 1.579, damageEffectiveness = 1.579, levelRequirement = 53, cost = { Mana = 8, }, }, + [14] = { attackSpeedMultiplier = 20, baseMultiplier = 1.611, damageEffectiveness = 1.611, levelRequirement = 56, cost = { Mana = 8, }, }, + [15] = { attackSpeedMultiplier = 20, baseMultiplier = 1.642, damageEffectiveness = 1.642, levelRequirement = 59, cost = { Mana = 8, }, }, + [16] = { attackSpeedMultiplier = 20, baseMultiplier = 1.674, damageEffectiveness = 1.674, levelRequirement = 62, cost = { Mana = 9, }, }, + [17] = { attackSpeedMultiplier = 20, baseMultiplier = 1.705, damageEffectiveness = 1.705, levelRequirement = 64, cost = { Mana = 9, }, }, + [18] = { attackSpeedMultiplier = 20, baseMultiplier = 1.737, damageEffectiveness = 1.737, levelRequirement = 66, cost = { Mana = 9, }, }, + [19] = { attackSpeedMultiplier = 20, baseMultiplier = 1.768, damageEffectiveness = 1.768, levelRequirement = 68, cost = { Mana = 9, }, }, + [20] = { attackSpeedMultiplier = 20, baseMultiplier = 1.8, damageEffectiveness = 1.8, levelRequirement = 70, cost = { Mana = 9, }, }, + [21] = { attackSpeedMultiplier = 20, baseMultiplier = 1.832, damageEffectiveness = 1.832, levelRequirement = 72, cost = { Mana = 9, }, }, + [22] = { attackSpeedMultiplier = 20, baseMultiplier = 1.863, damageEffectiveness = 1.863, levelRequirement = 74, cost = { Mana = 9, }, }, + [23] = { attackSpeedMultiplier = 20, baseMultiplier = 1.895, damageEffectiveness = 1.895, levelRequirement = 76, cost = { Mana = 9, }, }, + [24] = { attackSpeedMultiplier = 20, baseMultiplier = 1.926, damageEffectiveness = 1.926, levelRequirement = 78, cost = { Mana = 10, }, }, + [25] = { attackSpeedMultiplier = 20, baseMultiplier = 1.958, damageEffectiveness = 1.958, levelRequirement = 80, cost = { Mana = 10, }, }, + [26] = { attackSpeedMultiplier = 20, baseMultiplier = 1.989, damageEffectiveness = 1.989, levelRequirement = 82, cost = { Mana = 10, }, }, + [27] = { attackSpeedMultiplier = 20, baseMultiplier = 2.021, damageEffectiveness = 2.021, levelRequirement = 84, cost = { Mana = 10, }, }, + [28] = { attackSpeedMultiplier = 20, baseMultiplier = 2.053, damageEffectiveness = 2.053, levelRequirement = 86, cost = { Mana = 10, }, }, + [29] = { attackSpeedMultiplier = 20, baseMultiplier = 2.084, damageEffectiveness = 2.084, levelRequirement = 88, cost = { Mana = 10, }, }, + [30] = { attackSpeedMultiplier = 20, baseMultiplier = 2.116, damageEffectiveness = 2.116, levelRequirement = 90, cost = { Mana = 10, }, }, + [31] = { attackSpeedMultiplier = 20, baseMultiplier = 2.132, damageEffectiveness = 2.132, levelRequirement = 91, cost = { Mana = 10, }, }, + [32] = { attackSpeedMultiplier = 20, baseMultiplier = 2.147, damageEffectiveness = 2.147, levelRequirement = 92, cost = { Mana = 10, }, }, + [33] = { attackSpeedMultiplier = 20, baseMultiplier = 2.163, damageEffectiveness = 2.163, levelRequirement = 93, cost = { Mana = 10, }, }, + [34] = { attackSpeedMultiplier = 20, baseMultiplier = 2.179, damageEffectiveness = 2.179, levelRequirement = 94, cost = { Mana = 11, }, }, + [35] = { attackSpeedMultiplier = 20, baseMultiplier = 2.195, damageEffectiveness = 2.195, levelRequirement = 95, cost = { Mana = 11, }, }, + [36] = { attackSpeedMultiplier = 20, baseMultiplier = 2.211, damageEffectiveness = 2.211, levelRequirement = 96, cost = { Mana = 11, }, }, + [37] = { attackSpeedMultiplier = 20, baseMultiplier = 2.226, damageEffectiveness = 2.226, levelRequirement = 97, cost = { Mana = 11, }, }, + [38] = { attackSpeedMultiplier = 20, baseMultiplier = 2.242, damageEffectiveness = 2.242, levelRequirement = 98, cost = { Mana = 11, }, }, + [39] = { attackSpeedMultiplier = 20, baseMultiplier = 2.258, damageEffectiveness = 2.258, levelRequirement = 99, cost = { Mana = 11, }, }, + [40] = { attackSpeedMultiplier = 20, baseMultiplier = 2.274, damageEffectiveness = 2.274, levelRequirement = 100, cost = { Mana = 11, }, }, }, } skills["SpectralHelixAltY"] = { @@ -15259,7 +15372,7 @@ skills["SpectralHelixAltY"] = { }, qualityStats = { Default = { - { "projectile_damage_+%_final_if_pierced_enemy", 0.5 }, + { "projectile_damage_+%_final_if_pierced_enemy", 1 }, }, }, constantStats = { @@ -15273,52 +15386,53 @@ skills["SpectralHelixAltY"] = { "projectiles_nova", "base_is_projectile", "skill_display_single_base_projectile", + "projectiles_ignore_wall_of_force", "is_trap", "base_skill_is_trapped", "quality_display_trap_duration_is_gem", "base_skill_show_average_damage_instead_of_dps", }, levels = { - [1] = { baseMultiplier = 1.2, damageEffectiveness = 1.2, levelRequirement = 12, cost = { Mana = 6, }, }, - [2] = { baseMultiplier = 1.232, damageEffectiveness = 1.232, levelRequirement = 15, cost = { Mana = 6, }, }, - [3] = { baseMultiplier = 1.263, damageEffectiveness = 1.263, levelRequirement = 19, cost = { Mana = 6, }, }, - [4] = { baseMultiplier = 1.295, damageEffectiveness = 1.295, levelRequirement = 23, cost = { Mana = 6, }, }, - [5] = { baseMultiplier = 1.326, damageEffectiveness = 1.326, levelRequirement = 27, cost = { Mana = 7, }, }, - [6] = { baseMultiplier = 1.358, damageEffectiveness = 1.358, levelRequirement = 31, cost = { Mana = 7, }, }, - [7] = { baseMultiplier = 1.389, damageEffectiveness = 1.389, levelRequirement = 35, cost = { Mana = 7, }, }, - [8] = { baseMultiplier = 1.421, damageEffectiveness = 1.421, levelRequirement = 38, cost = { Mana = 7, }, }, - [9] = { baseMultiplier = 1.453, damageEffectiveness = 1.453, levelRequirement = 41, cost = { Mana = 7, }, }, - [10] = { baseMultiplier = 1.484, damageEffectiveness = 1.484, levelRequirement = 44, cost = { Mana = 8, }, }, - [11] = { baseMultiplier = 1.516, damageEffectiveness = 1.516, levelRequirement = 47, cost = { Mana = 8, }, }, - [12] = { baseMultiplier = 1.547, damageEffectiveness = 1.547, levelRequirement = 50, cost = { Mana = 8, }, }, - [13] = { baseMultiplier = 1.579, damageEffectiveness = 1.579, levelRequirement = 53, cost = { Mana = 8, }, }, - [14] = { baseMultiplier = 1.611, damageEffectiveness = 1.611, levelRequirement = 56, cost = { Mana = 8, }, }, - [15] = { baseMultiplier = 1.642, damageEffectiveness = 1.642, levelRequirement = 59, cost = { Mana = 8, }, }, - [16] = { baseMultiplier = 1.674, damageEffectiveness = 1.674, levelRequirement = 62, cost = { Mana = 9, }, }, - [17] = { baseMultiplier = 1.705, damageEffectiveness = 1.705, levelRequirement = 64, cost = { Mana = 9, }, }, - [18] = { baseMultiplier = 1.737, damageEffectiveness = 1.737, levelRequirement = 66, cost = { Mana = 9, }, }, - [19] = { baseMultiplier = 1.768, damageEffectiveness = 1.768, levelRequirement = 68, cost = { Mana = 9, }, }, - [20] = { baseMultiplier = 1.8, damageEffectiveness = 1.8, levelRequirement = 70, cost = { Mana = 9, }, }, - [21] = { baseMultiplier = 1.832, damageEffectiveness = 1.832, levelRequirement = 72, cost = { Mana = 9, }, }, - [22] = { baseMultiplier = 1.863, damageEffectiveness = 1.863, levelRequirement = 74, cost = { Mana = 9, }, }, - [23] = { baseMultiplier = 1.895, damageEffectiveness = 1.895, levelRequirement = 76, cost = { Mana = 9, }, }, - [24] = { baseMultiplier = 1.926, damageEffectiveness = 1.926, levelRequirement = 78, cost = { Mana = 10, }, }, - [25] = { baseMultiplier = 1.958, damageEffectiveness = 1.958, levelRequirement = 80, cost = { Mana = 10, }, }, - [26] = { baseMultiplier = 1.989, damageEffectiveness = 1.989, levelRequirement = 82, cost = { Mana = 10, }, }, - [27] = { baseMultiplier = 2.021, damageEffectiveness = 2.021, levelRequirement = 84, cost = { Mana = 10, }, }, - [28] = { baseMultiplier = 2.053, damageEffectiveness = 2.053, levelRequirement = 86, cost = { Mana = 10, }, }, - [29] = { baseMultiplier = 2.084, damageEffectiveness = 2.084, levelRequirement = 88, cost = { Mana = 10, }, }, - [30] = { baseMultiplier = 2.116, damageEffectiveness = 2.116, levelRequirement = 90, cost = { Mana = 10, }, }, - [31] = { baseMultiplier = 2.132, damageEffectiveness = 2.132, levelRequirement = 91, cost = { Mana = 10, }, }, - [32] = { baseMultiplier = 2.147, damageEffectiveness = 2.147, levelRequirement = 92, cost = { Mana = 10, }, }, - [33] = { baseMultiplier = 2.163, damageEffectiveness = 2.163, levelRequirement = 93, cost = { Mana = 10, }, }, - [34] = { baseMultiplier = 2.179, damageEffectiveness = 2.179, levelRequirement = 94, cost = { Mana = 11, }, }, - [35] = { baseMultiplier = 2.195, damageEffectiveness = 2.195, levelRequirement = 95, cost = { Mana = 11, }, }, - [36] = { baseMultiplier = 2.211, damageEffectiveness = 2.211, levelRequirement = 96, cost = { Mana = 11, }, }, - [37] = { baseMultiplier = 2.226, damageEffectiveness = 2.226, levelRequirement = 97, cost = { Mana = 11, }, }, - [38] = { baseMultiplier = 2.242, damageEffectiveness = 2.242, levelRequirement = 98, cost = { Mana = 11, }, }, - [39] = { baseMultiplier = 2.258, damageEffectiveness = 2.258, levelRequirement = 99, cost = { Mana = 11, }, }, - [40] = { baseMultiplier = 2.274, damageEffectiveness = 2.274, levelRequirement = 100, cost = { Mana = 11, }, }, + [1] = { baseMultiplier = 1.5, damageEffectiveness = 1.5, levelRequirement = 12, cost = { Mana = 6, }, }, + [2] = { baseMultiplier = 1.537, damageEffectiveness = 1.537, levelRequirement = 15, cost = { Mana = 6, }, }, + [3] = { baseMultiplier = 1.574, damageEffectiveness = 1.574, levelRequirement = 19, cost = { Mana = 6, }, }, + [4] = { baseMultiplier = 1.611, damageEffectiveness = 1.611, levelRequirement = 23, cost = { Mana = 6, }, }, + [5] = { baseMultiplier = 1.647, damageEffectiveness = 1.647, levelRequirement = 27, cost = { Mana = 7, }, }, + [6] = { baseMultiplier = 1.684, damageEffectiveness = 1.684, levelRequirement = 31, cost = { Mana = 7, }, }, + [7] = { baseMultiplier = 1.721, damageEffectiveness = 1.721, levelRequirement = 35, cost = { Mana = 7, }, }, + [8] = { baseMultiplier = 1.758, damageEffectiveness = 1.758, levelRequirement = 38, cost = { Mana = 7, }, }, + [9] = { baseMultiplier = 1.795, damageEffectiveness = 1.795, levelRequirement = 41, cost = { Mana = 7, }, }, + [10] = { baseMultiplier = 1.832, damageEffectiveness = 1.832, levelRequirement = 44, cost = { Mana = 8, }, }, + [11] = { baseMultiplier = 1.868, damageEffectiveness = 1.868, levelRequirement = 47, cost = { Mana = 8, }, }, + [12] = { baseMultiplier = 1.905, damageEffectiveness = 1.905, levelRequirement = 50, cost = { Mana = 8, }, }, + [13] = { baseMultiplier = 1.942, damageEffectiveness = 1.942, levelRequirement = 53, cost = { Mana = 8, }, }, + [14] = { baseMultiplier = 1.979, damageEffectiveness = 1.979, levelRequirement = 56, cost = { Mana = 8, }, }, + [15] = { baseMultiplier = 2.016, damageEffectiveness = 2.016, levelRequirement = 59, cost = { Mana = 8, }, }, + [16] = { baseMultiplier = 2.053, damageEffectiveness = 2.053, levelRequirement = 62, cost = { Mana = 9, }, }, + [17] = { baseMultiplier = 2.089, damageEffectiveness = 2.089, levelRequirement = 64, cost = { Mana = 9, }, }, + [18] = { baseMultiplier = 2.126, damageEffectiveness = 2.126, levelRequirement = 66, cost = { Mana = 9, }, }, + [19] = { baseMultiplier = 2.163, damageEffectiveness = 2.163, levelRequirement = 68, cost = { Mana = 9, }, }, + [20] = { baseMultiplier = 2.2, damageEffectiveness = 2.2, levelRequirement = 70, cost = { Mana = 9, }, }, + [21] = { baseMultiplier = 2.237, damageEffectiveness = 2.237, levelRequirement = 72, cost = { Mana = 9, }, }, + [22] = { baseMultiplier = 2.274, damageEffectiveness = 2.274, levelRequirement = 74, cost = { Mana = 9, }, }, + [23] = { baseMultiplier = 2.311, damageEffectiveness = 2.311, levelRequirement = 76, cost = { Mana = 9, }, }, + [24] = { baseMultiplier = 2.347, damageEffectiveness = 2.347, levelRequirement = 78, cost = { Mana = 10, }, }, + [25] = { baseMultiplier = 2.384, damageEffectiveness = 2.384, levelRequirement = 80, cost = { Mana = 10, }, }, + [26] = { baseMultiplier = 2.421, damageEffectiveness = 2.421, levelRequirement = 82, cost = { Mana = 10, }, }, + [27] = { baseMultiplier = 2.458, damageEffectiveness = 2.458, levelRequirement = 84, cost = { Mana = 10, }, }, + [28] = { baseMultiplier = 2.495, damageEffectiveness = 2.495, levelRequirement = 86, cost = { Mana = 10, }, }, + [29] = { baseMultiplier = 2.532, damageEffectiveness = 2.532, levelRequirement = 88, cost = { Mana = 10, }, }, + [30] = { baseMultiplier = 2.568, damageEffectiveness = 2.568, levelRequirement = 90, cost = { Mana = 10, }, }, + [31] = { baseMultiplier = 2.587, damageEffectiveness = 2.587, levelRequirement = 91, cost = { Mana = 10, }, }, + [32] = { baseMultiplier = 2.605, damageEffectiveness = 2.605, levelRequirement = 92, cost = { Mana = 10, }, }, + [33] = { baseMultiplier = 2.624, damageEffectiveness = 2.624, levelRequirement = 93, cost = { Mana = 10, }, }, + [34] = { baseMultiplier = 2.642, damageEffectiveness = 2.642, levelRequirement = 94, cost = { Mana = 11, }, }, + [35] = { baseMultiplier = 2.661, damageEffectiveness = 2.661, levelRequirement = 95, cost = { Mana = 11, }, }, + [36] = { baseMultiplier = 2.679, damageEffectiveness = 2.679, levelRequirement = 96, cost = { Mana = 11, }, }, + [37] = { baseMultiplier = 2.697, damageEffectiveness = 2.697, levelRequirement = 97, cost = { Mana = 11, }, }, + [38] = { baseMultiplier = 2.716, damageEffectiveness = 2.716, levelRequirement = 98, cost = { Mana = 11, }, }, + [39] = { baseMultiplier = 2.734, damageEffectiveness = 2.734, levelRequirement = 99, cost = { Mana = 11, }, }, + [40] = { baseMultiplier = 2.753, damageEffectiveness = 2.753, levelRequirement = 100, cost = { Mana = 11, }, }, }, } skills["SplitArrow"] = { @@ -16604,7 +16718,7 @@ skills["VolatileDead"] = { name = "Volatile Dead", baseTypeName = "Volatile Dead", color = 2, - baseEffectiveness = 2.0460000038147, + baseEffectiveness = 2.5499999523163, incrementalEffectiveness = 0.041000001132488, description = "Corpses near the targeted location explode, dealing damage in a small area and creating an orb which moves towards nearby enemies before dealing spell damage in a larger area. The explosion of the corpse is not affected by modifiers to spell damage, and cannot be reflected.", 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.Fire] = true, [SkillType.Cascadable] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, @@ -16663,46 +16777,46 @@ skills["VolatileDead"] = { "spell_maximum_base_fire_damage", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, 30, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 12, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, - [2] = { 0.80000001192093, 1.2000000476837, 31, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 15, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, - [3] = { 0.80000001192093, 1.2000000476837, 31, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 19, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, - [4] = { 0.80000001192093, 1.2000000476837, 32, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 23, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, - [5] = { 0.80000001192093, 1.2000000476837, 32, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 27, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, - [6] = { 0.80000001192093, 1.2000000476837, 33, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 31, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, - [7] = { 0.80000001192093, 1.2000000476837, 33, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 35, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, - [8] = { 0.80000001192093, 1.2000000476837, 34, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 38, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, - [9] = { 0.80000001192093, 1.2000000476837, 34, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 41, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, - [10] = { 0.80000001192093, 1.2000000476837, 35, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, - [11] = { 0.80000001192093, 1.2000000476837, 35, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 47, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, - [12] = { 0.80000001192093, 1.2000000476837, 36, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 50, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, - [13] = { 0.80000001192093, 1.2000000476837, 36, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 53, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [14] = { 0.80000001192093, 1.2000000476837, 37, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, - [15] = { 0.80000001192093, 1.2000000476837, 37, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 59, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, - [16] = { 0.80000001192093, 1.2000000476837, 38, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 62, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, - [17] = { 0.80000001192093, 1.2000000476837, 38, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, - [18] = { 0.80000001192093, 1.2000000476837, 39, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, - [19] = { 0.80000001192093, 1.2000000476837, 39, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, - [20] = { 0.80000001192093, 1.2000000476837, 40, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, - [21] = { 0.80000001192093, 1.2000000476837, 40, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, - [22] = { 0.80000001192093, 1.2000000476837, 41, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, - [23] = { 0.80000001192093, 1.2000000476837, 41, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, - [24] = { 0.80000001192093, 1.2000000476837, 42, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, - [25] = { 0.80000001192093, 1.2000000476837, 42, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, - [26] = { 0.80000001192093, 1.2000000476837, 43, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [27] = { 0.80000001192093, 1.2000000476837, 43, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [28] = { 0.80000001192093, 1.2000000476837, 44, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, - [29] = { 0.80000001192093, 1.2000000476837, 44, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 32, }, }, - [30] = { 0.80000001192093, 1.2000000476837, 45, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 32, }, }, - [31] = { 0.80000001192093, 1.2000000476837, 45, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 32, }, }, - [32] = { 0.80000001192093, 1.2000000476837, 45, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 33, }, }, - [33] = { 0.80000001192093, 1.2000000476837, 45, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 33, }, }, - [34] = { 0.80000001192093, 1.2000000476837, 46, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 33, }, }, - [35] = { 0.80000001192093, 1.2000000476837, 46, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 34, }, }, - [36] = { 0.80000001192093, 1.2000000476837, 46, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 34, }, }, - [37] = { 0.80000001192093, 1.2000000476837, 46, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 34, }, }, - [38] = { 0.80000001192093, 1.2000000476837, 47, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 34, }, }, - [39] = { 0.80000001192093, 1.2000000476837, 47, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 35, }, }, - [40] = { 0.80000001192093, 1.2000000476837, 47, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 35, }, }, + [1] = { 0.80000001192093, 1.2000000476837, 30, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 2.1, levelRequirement = 12, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [2] = { 0.80000001192093, 1.2000000476837, 31, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 2.1, levelRequirement = 15, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [3] = { 0.80000001192093, 1.2000000476837, 31, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 2.1, levelRequirement = 19, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, + [4] = { 0.80000001192093, 1.2000000476837, 32, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 2.1, levelRequirement = 23, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, + [5] = { 0.80000001192093, 1.2000000476837, 32, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 2.1, levelRequirement = 27, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, + [6] = { 0.80000001192093, 1.2000000476837, 33, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 2.1, levelRequirement = 31, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, + [7] = { 0.80000001192093, 1.2000000476837, 33, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 2.1, levelRequirement = 35, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, + [8] = { 0.80000001192093, 1.2000000476837, 34, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 2.1, levelRequirement = 38, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, + [9] = { 0.80000001192093, 1.2000000476837, 34, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 2.1, levelRequirement = 41, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, + [10] = { 0.80000001192093, 1.2000000476837, 35, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 2.1, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, + [11] = { 0.80000001192093, 1.2000000476837, 35, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 2.1, levelRequirement = 47, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, + [12] = { 0.80000001192093, 1.2000000476837, 36, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 2.1, levelRequirement = 50, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, + [13] = { 0.80000001192093, 1.2000000476837, 36, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 2.1, levelRequirement = 53, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [14] = { 0.80000001192093, 1.2000000476837, 37, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 2.1, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, + [15] = { 0.80000001192093, 1.2000000476837, 37, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 2.1, levelRequirement = 59, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, + [16] = { 0.80000001192093, 1.2000000476837, 38, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 2.1, levelRequirement = 62, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, + [17] = { 0.80000001192093, 1.2000000476837, 38, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 2.1, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [18] = { 0.80000001192093, 1.2000000476837, 39, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 2.1, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [19] = { 0.80000001192093, 1.2000000476837, 39, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 2.1, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [20] = { 0.80000001192093, 1.2000000476837, 40, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 2.1, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [21] = { 0.80000001192093, 1.2000000476837, 40, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 2.1, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, + [22] = { 0.80000001192093, 1.2000000476837, 41, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 2.1, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, + [23] = { 0.80000001192093, 1.2000000476837, 41, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 2.1, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, + [24] = { 0.80000001192093, 1.2000000476837, 42, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 2.1, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, + [25] = { 0.80000001192093, 1.2000000476837, 42, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 2.1, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, + [26] = { 0.80000001192093, 1.2000000476837, 43, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 2.1, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, + [27] = { 0.80000001192093, 1.2000000476837, 43, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 2.1, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, + [28] = { 0.80000001192093, 1.2000000476837, 44, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 2.1, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, + [29] = { 0.80000001192093, 1.2000000476837, 44, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 2.1, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 32, }, }, + [30] = { 0.80000001192093, 1.2000000476837, 45, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 2.1, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 32, }, }, + [31] = { 0.80000001192093, 1.2000000476837, 45, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 2.1, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 32, }, }, + [32] = { 0.80000001192093, 1.2000000476837, 45, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 2.1, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 33, }, }, + [33] = { 0.80000001192093, 1.2000000476837, 45, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 2.1, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 33, }, }, + [34] = { 0.80000001192093, 1.2000000476837, 46, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 2.1, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 33, }, }, + [35] = { 0.80000001192093, 1.2000000476837, 46, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 2.1, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 34, }, }, + [36] = { 0.80000001192093, 1.2000000476837, 46, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 2.1, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 34, }, }, + [37] = { 0.80000001192093, 1.2000000476837, 46, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 2.1, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 34, }, }, + [38] = { 0.80000001192093, 1.2000000476837, 47, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 2.1, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 34, }, }, + [39] = { 0.80000001192093, 1.2000000476837, 47, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 2.1, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 35, }, }, + [40] = { 0.80000001192093, 1.2000000476837, 47, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 2.1, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 35, }, }, }, } skills["VolatileDeadAltX"] = { @@ -16753,7 +16867,7 @@ skills["VolatileDeadAltX"] = { { "volatile_dead_base_number_of_corpses_to_consume", 3 }, { "volatile_dead_max_cores_allowed", 60 }, { "active_skill_base_area_of_effect_radius", 28 }, - { "active_skill_base_secondary_area_of_effect_radius", 15 }, + { "active_skill_base_secondary_area_of_effect_radius", 20 }, { "active_skill_secondary_area_of_effect_description_mode", 1 }, { "base_skill_effect_duration", 1500 }, }, @@ -16815,7 +16929,7 @@ skills["VolatileDeadAltY"] = { name = "Volatile Dead of Seething", baseTypeName = "Volatile Dead of Seething", color = 2, - baseEffectiveness = 2.0460000038147, + baseEffectiveness = 2.5499999523163, incrementalEffectiveness = 0.041000001132488, description = "Corpses near the targeted location explode, dealing damage in a small area and creating an orb which moves towards nearby enemies before dealing spell damage in a larger area. The explosion of the corpse is not affected by modifiers to spell damage, and cannot be reflected.", 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.Fire] = true, [SkillType.Cascadable] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, @@ -16874,46 +16988,46 @@ skills["VolatileDeadAltY"] = { "spell_maximum_base_fire_damage", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, 30, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 12, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, - [2] = { 0.80000001192093, 1.2000000476837, 31, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 15, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, - [3] = { 0.80000001192093, 1.2000000476837, 31, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 19, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, - [4] = { 0.80000001192093, 1.2000000476837, 32, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 23, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, - [5] = { 0.80000001192093, 1.2000000476837, 32, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 27, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, - [6] = { 0.80000001192093, 1.2000000476837, 33, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 31, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, - [7] = { 0.80000001192093, 1.2000000476837, 33, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 35, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, - [8] = { 0.80000001192093, 1.2000000476837, 34, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 38, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, - [9] = { 0.80000001192093, 1.2000000476837, 34, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 41, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, - [10] = { 0.80000001192093, 1.2000000476837, 35, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, - [11] = { 0.80000001192093, 1.2000000476837, 35, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 47, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, - [12] = { 0.80000001192093, 1.2000000476837, 36, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 50, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, - [13] = { 0.80000001192093, 1.2000000476837, 36, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 53, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [14] = { 0.80000001192093, 1.2000000476837, 37, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, - [15] = { 0.80000001192093, 1.2000000476837, 37, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 59, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, - [16] = { 0.80000001192093, 1.2000000476837, 38, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 62, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, - [17] = { 0.80000001192093, 1.2000000476837, 38, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, - [18] = { 0.80000001192093, 1.2000000476837, 39, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, - [19] = { 0.80000001192093, 1.2000000476837, 39, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, - [20] = { 0.80000001192093, 1.2000000476837, 40, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, - [21] = { 0.80000001192093, 1.2000000476837, 40, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, - [22] = { 0.80000001192093, 1.2000000476837, 41, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, - [23] = { 0.80000001192093, 1.2000000476837, 41, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, - [24] = { 0.80000001192093, 1.2000000476837, 42, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, - [25] = { 0.80000001192093, 1.2000000476837, 42, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, - [26] = { 0.80000001192093, 1.2000000476837, 43, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [27] = { 0.80000001192093, 1.2000000476837, 43, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, - [28] = { 0.80000001192093, 1.2000000476837, 44, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, - [29] = { 0.80000001192093, 1.2000000476837, 44, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 32, }, }, - [30] = { 0.80000001192093, 1.2000000476837, 45, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 32, }, }, - [31] = { 0.80000001192093, 1.2000000476837, 45, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 32, }, }, - [32] = { 0.80000001192093, 1.2000000476837, 45, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 33, }, }, - [33] = { 0.80000001192093, 1.2000000476837, 45, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 33, }, }, - [34] = { 0.80000001192093, 1.2000000476837, 46, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 33, }, }, - [35] = { 0.80000001192093, 1.2000000476837, 46, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 34, }, }, - [36] = { 0.80000001192093, 1.2000000476837, 46, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 34, }, }, - [37] = { 0.80000001192093, 1.2000000476837, 46, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 34, }, }, - [38] = { 0.80000001192093, 1.2000000476837, 47, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 34, }, }, - [39] = { 0.80000001192093, 1.2000000476837, 47, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 35, }, }, - [40] = { 0.80000001192093, 1.2000000476837, 47, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 1.7, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 35, }, }, + [1] = { 0.80000001192093, 1.2000000476837, 30, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 2.1, levelRequirement = 12, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [2] = { 0.80000001192093, 1.2000000476837, 31, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 2.1, levelRequirement = 15, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [3] = { 0.80000001192093, 1.2000000476837, 31, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 2.1, levelRequirement = 19, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, + [4] = { 0.80000001192093, 1.2000000476837, 32, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 2.1, levelRequirement = 23, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, + [5] = { 0.80000001192093, 1.2000000476837, 32, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 2.1, levelRequirement = 27, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, + [6] = { 0.80000001192093, 1.2000000476837, 33, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 2.1, levelRequirement = 31, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, + [7] = { 0.80000001192093, 1.2000000476837, 33, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 2.1, levelRequirement = 35, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, + [8] = { 0.80000001192093, 1.2000000476837, 34, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 2.1, levelRequirement = 38, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, + [9] = { 0.80000001192093, 1.2000000476837, 34, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 2.1, levelRequirement = 41, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, + [10] = { 0.80000001192093, 1.2000000476837, 35, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 2.1, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, + [11] = { 0.80000001192093, 1.2000000476837, 35, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 2.1, levelRequirement = 47, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, + [12] = { 0.80000001192093, 1.2000000476837, 36, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 2.1, levelRequirement = 50, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, + [13] = { 0.80000001192093, 1.2000000476837, 36, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 2.1, levelRequirement = 53, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [14] = { 0.80000001192093, 1.2000000476837, 37, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 2.1, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, + [15] = { 0.80000001192093, 1.2000000476837, 37, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 2.1, levelRequirement = 59, statInterpolation = { 3, 3, 1, }, cost = { Mana = 23, }, }, + [16] = { 0.80000001192093, 1.2000000476837, 38, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 2.1, levelRequirement = 62, statInterpolation = { 3, 3, 1, }, cost = { Mana = 24, }, }, + [17] = { 0.80000001192093, 1.2000000476837, 38, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 2.1, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [18] = { 0.80000001192093, 1.2000000476837, 39, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 2.1, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Mana = 25, }, }, + [19] = { 0.80000001192093, 1.2000000476837, 39, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 2.1, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [20] = { 0.80000001192093, 1.2000000476837, 40, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 2.1, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 26, }, }, + [21] = { 0.80000001192093, 1.2000000476837, 40, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 2.1, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, + [22] = { 0.80000001192093, 1.2000000476837, 41, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 2.1, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 27, }, }, + [23] = { 0.80000001192093, 1.2000000476837, 41, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 2.1, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 28, }, }, + [24] = { 0.80000001192093, 1.2000000476837, 42, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 2.1, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, + [25] = { 0.80000001192093, 1.2000000476837, 42, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 2.1, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 29, }, }, + [26] = { 0.80000001192093, 1.2000000476837, 43, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 2.1, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, + [27] = { 0.80000001192093, 1.2000000476837, 43, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 2.1, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 30, }, }, + [28] = { 0.80000001192093, 1.2000000476837, 44, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 2.1, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 31, }, }, + [29] = { 0.80000001192093, 1.2000000476837, 44, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 2.1, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 32, }, }, + [30] = { 0.80000001192093, 1.2000000476837, 45, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 2.1, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 32, }, }, + [31] = { 0.80000001192093, 1.2000000476837, 45, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 2.1, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 32, }, }, + [32] = { 0.80000001192093, 1.2000000476837, 45, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 2.1, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 33, }, }, + [33] = { 0.80000001192093, 1.2000000476837, 45, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 2.1, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 33, }, }, + [34] = { 0.80000001192093, 1.2000000476837, 46, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 2.1, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 33, }, }, + [35] = { 0.80000001192093, 1.2000000476837, 46, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 2.1, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 34, }, }, + [36] = { 0.80000001192093, 1.2000000476837, 46, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 2.1, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 34, }, }, + [37] = { 0.80000001192093, 1.2000000476837, 46, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 2.1, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 34, }, }, + [38] = { 0.80000001192093, 1.2000000476837, 47, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 2.1, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 34, }, }, + [39] = { 0.80000001192093, 1.2000000476837, 47, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 2.1, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 35, }, }, + [40] = { 0.80000001192093, 1.2000000476837, 47, PvPDamageMultiplier = -80, critChance = 5, damageEffectiveness = 2.1, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 35, }, }, }, } skills["WhirlingBlades"] = { @@ -17373,7 +17487,7 @@ skills["PoisonousConcoction"] = { name = "Poisonous Concoction", baseTypeName = "Poisonous Concoction", color = 2, - baseEffectiveness = 3.289999961853, + baseEffectiveness = 2.4700000286102, incrementalEffectiveness = 0.033100001513958, description = "Throws a bottle that explodes to deal unarmed attack damage in an area and has a chance to poison. Can consume charges from a Life flask to add further damage. Requires an empty main hand, and no off-hand weapon.", skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Area] = true, [SkillType.Triggerable] = true, [SkillType.Chaos] = true, [SkillType.Damage] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.RequiresOffHandNotWeapon] = true, }, @@ -17430,53 +17544,53 @@ skills["PoisonousConcoction"] = { "poisonous_concoction_attach_flask_visual_buff", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, 3, attackSpeedMultiplier = 15, levelRequirement = 12, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, - [2] = { 0.80000001192093, 1.2000000476837, 3, attackSpeedMultiplier = 15, levelRequirement = 15, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [3] = { 0.80000001192093, 1.2000000476837, 3, attackSpeedMultiplier = 15, levelRequirement = 19, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [4] = { 0.80000001192093, 1.2000000476837, 5, attackSpeedMultiplier = 15, levelRequirement = 23, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [5] = { 0.80000001192093, 1.2000000476837, 5, attackSpeedMultiplier = 15, levelRequirement = 27, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [6] = { 0.80000001192093, 1.2000000476837, 5, attackSpeedMultiplier = 15, levelRequirement = 31, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, - [7] = { 0.80000001192093, 1.2000000476837, 6, attackSpeedMultiplier = 15, levelRequirement = 35, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, - [8] = { 0.80000001192093, 1.2000000476837, 6, attackSpeedMultiplier = 15, levelRequirement = 38, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, - [9] = { 0.80000001192093, 1.2000000476837, 6, attackSpeedMultiplier = 15, levelRequirement = 41, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, - [10] = { 0.80000001192093, 1.2000000476837, 7, attackSpeedMultiplier = 15, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, - [11] = { 0.80000001192093, 1.2000000476837, 7, attackSpeedMultiplier = 15, levelRequirement = 47, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, - [12] = { 0.80000001192093, 1.2000000476837, 7, attackSpeedMultiplier = 15, levelRequirement = 50, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, - [13] = { 0.80000001192093, 1.2000000476837, 9, attackSpeedMultiplier = 15, levelRequirement = 53, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, - [14] = { 0.80000001192093, 1.2000000476837, 9, attackSpeedMultiplier = 15, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, - [15] = { 0.80000001192093, 1.2000000476837, 9, attackSpeedMultiplier = 15, levelRequirement = 59, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, - [16] = { 0.80000001192093, 1.2000000476837, 10, attackSpeedMultiplier = 15, levelRequirement = 62, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, - [17] = { 0.80000001192093, 1.2000000476837, 10, attackSpeedMultiplier = 15, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, - [18] = { 0.80000001192093, 1.2000000476837, 10, attackSpeedMultiplier = 15, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, - [19] = { 0.80000001192093, 1.2000000476837, 11, attackSpeedMultiplier = 15, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, - [20] = { 0.80000001192093, 1.2000000476837, 11, attackSpeedMultiplier = 15, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, - [21] = { 0.80000001192093, 1.2000000476837, 11, attackSpeedMultiplier = 15, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, - [22] = { 0.80000001192093, 1.2000000476837, 13, attackSpeedMultiplier = 15, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, - [23] = { 0.80000001192093, 1.2000000476837, 13, attackSpeedMultiplier = 15, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, - [24] = { 0.80000001192093, 1.2000000476837, 13, attackSpeedMultiplier = 15, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, - [25] = { 0.80000001192093, 1.2000000476837, 14, attackSpeedMultiplier = 15, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, - [26] = { 0.80000001192093, 1.2000000476837, 14, attackSpeedMultiplier = 15, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, - [27] = { 0.80000001192093, 1.2000000476837, 14, attackSpeedMultiplier = 15, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, - [28] = { 0.80000001192093, 1.2000000476837, 15, attackSpeedMultiplier = 15, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, - [29] = { 0.80000001192093, 1.2000000476837, 15, attackSpeedMultiplier = 15, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, - [30] = { 0.80000001192093, 1.2000000476837, 15, attackSpeedMultiplier = 15, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, - [31] = { 0.80000001192093, 1.2000000476837, 16, attackSpeedMultiplier = 15, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, - [32] = { 0.80000001192093, 1.2000000476837, 16, attackSpeedMultiplier = 15, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, - [33] = { 0.80000001192093, 1.2000000476837, 16, attackSpeedMultiplier = 15, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, - [34] = { 0.80000001192093, 1.2000000476837, 16, attackSpeedMultiplier = 15, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, - [35] = { 0.80000001192093, 1.2000000476837, 16, attackSpeedMultiplier = 15, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, - [36] = { 0.80000001192093, 1.2000000476837, 16, attackSpeedMultiplier = 15, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, - [37] = { 0.80000001192093, 1.2000000476837, 18, attackSpeedMultiplier = 15, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, - [38] = { 0.80000001192093, 1.2000000476837, 18, attackSpeedMultiplier = 15, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, - [39] = { 0.80000001192093, 1.2000000476837, 18, attackSpeedMultiplier = 15, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, - [40] = { 0.80000001192093, 1.2000000476837, 18, attackSpeedMultiplier = 15, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [1] = { 0.80000001192093, 1.2000000476837, 4, attackSpeedMultiplier = 15, levelRequirement = 12, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [2] = { 0.80000001192093, 1.2000000476837, 5, attackSpeedMultiplier = 15, levelRequirement = 15, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [3] = { 0.80000001192093, 1.2000000476837, 5, attackSpeedMultiplier = 15, levelRequirement = 19, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [4] = { 0.80000001192093, 1.2000000476837, 6, attackSpeedMultiplier = 15, levelRequirement = 23, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [5] = { 0.80000001192093, 1.2000000476837, 6, attackSpeedMultiplier = 15, levelRequirement = 27, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [6] = { 0.80000001192093, 1.2000000476837, 7, attackSpeedMultiplier = 15, levelRequirement = 31, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, + [7] = { 0.80000001192093, 1.2000000476837, 8, attackSpeedMultiplier = 15, levelRequirement = 35, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, + [8] = { 0.80000001192093, 1.2000000476837, 8, attackSpeedMultiplier = 15, levelRequirement = 38, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, + [9] = { 0.80000001192093, 1.2000000476837, 9, attackSpeedMultiplier = 15, levelRequirement = 41, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, + [10] = { 0.80000001192093, 1.2000000476837, 10, attackSpeedMultiplier = 15, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, + [11] = { 0.80000001192093, 1.2000000476837, 10, attackSpeedMultiplier = 15, levelRequirement = 47, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, + [12] = { 0.80000001192093, 1.2000000476837, 11, attackSpeedMultiplier = 15, levelRequirement = 50, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [13] = { 0.80000001192093, 1.2000000476837, 11, attackSpeedMultiplier = 15, levelRequirement = 53, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [14] = { 0.80000001192093, 1.2000000476837, 12, attackSpeedMultiplier = 15, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [15] = { 0.80000001192093, 1.2000000476837, 13, attackSpeedMultiplier = 15, levelRequirement = 59, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [16] = { 0.80000001192093, 1.2000000476837, 13, attackSpeedMultiplier = 15, levelRequirement = 62, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [17] = { 0.80000001192093, 1.2000000476837, 14, attackSpeedMultiplier = 15, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [18] = { 0.80000001192093, 1.2000000476837, 14, attackSpeedMultiplier = 15, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [19] = { 0.80000001192093, 1.2000000476837, 15, attackSpeedMultiplier = 15, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [20] = { 0.80000001192093, 1.2000000476837, 16, attackSpeedMultiplier = 15, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [21] = { 0.80000001192093, 1.2000000476837, 16, attackSpeedMultiplier = 15, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [22] = { 0.80000001192093, 1.2000000476837, 17, attackSpeedMultiplier = 15, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [23] = { 0.80000001192093, 1.2000000476837, 18, attackSpeedMultiplier = 15, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [24] = { 0.80000001192093, 1.2000000476837, 18, attackSpeedMultiplier = 15, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [25] = { 0.80000001192093, 1.2000000476837, 19, attackSpeedMultiplier = 15, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [26] = { 0.80000001192093, 1.2000000476837, 19, attackSpeedMultiplier = 15, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [27] = { 0.80000001192093, 1.2000000476837, 20, attackSpeedMultiplier = 15, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [28] = { 0.80000001192093, 1.2000000476837, 21, attackSpeedMultiplier = 15, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [29] = { 0.80000001192093, 1.2000000476837, 21, attackSpeedMultiplier = 15, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [30] = { 0.80000001192093, 1.2000000476837, 22, attackSpeedMultiplier = 15, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [31] = { 0.80000001192093, 1.2000000476837, 22, attackSpeedMultiplier = 15, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [32] = { 0.80000001192093, 1.2000000476837, 22, attackSpeedMultiplier = 15, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [33] = { 0.80000001192093, 1.2000000476837, 23, attackSpeedMultiplier = 15, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [34] = { 0.80000001192093, 1.2000000476837, 23, attackSpeedMultiplier = 15, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [35] = { 0.80000001192093, 1.2000000476837, 23, attackSpeedMultiplier = 15, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [36] = { 0.80000001192093, 1.2000000476837, 24, attackSpeedMultiplier = 15, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [37] = { 0.80000001192093, 1.2000000476837, 24, attackSpeedMultiplier = 15, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [38] = { 0.80000001192093, 1.2000000476837, 24, attackSpeedMultiplier = 15, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [39] = { 0.80000001192093, 1.2000000476837, 25, attackSpeedMultiplier = 15, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [40] = { 0.80000001192093, 1.2000000476837, 25, attackSpeedMultiplier = 15, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, }, } skills["PoisonousConcoctionAltX"] = { name = "Poisonous Concoction of Bouncing", baseTypeName = "Poisonous Concoction of Bouncing", color = 2, - baseEffectiveness = 3.289999961853, + baseEffectiveness = 2.4700000286102, incrementalEffectiveness = 0.033100001513958, description = "Throws a single bottle that releases a burst when it hits the ground, dealing unarmed attack damage in an area with a chance to poison. The skill chains, bouncing randomly to deal damage multiple times. Can consume charges from a Life flask to add further damage. Requires an empty main hand, and no off-hand weapon.", skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Area] = true, [SkillType.Triggerable] = true, [SkillType.Chaos] = true, [SkillType.Damage] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.RequiresOffHandNotWeapon] = true, [SkillType.Chains] = true, }, @@ -17538,46 +17652,46 @@ skills["PoisonousConcoctionAltX"] = { "modifiers_to_number_of_projectiles_instead_apply_to_chaining", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, 5, levelRequirement = 12, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [2] = { 0.80000001192093, 1.2000000476837, 6, levelRequirement = 15, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [3] = { 0.80000001192093, 1.2000000476837, 6, levelRequirement = 19, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, - [4] = { 0.80000001192093, 1.2000000476837, 7, levelRequirement = 23, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, - [5] = { 0.80000001192093, 1.2000000476837, 7, levelRequirement = 27, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, - [6] = { 0.80000001192093, 1.2000000476837, 8, levelRequirement = 31, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, - [7] = { 0.80000001192093, 1.2000000476837, 8, levelRequirement = 35, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, - [8] = { 0.80000001192093, 1.2000000476837, 9, levelRequirement = 38, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, - [9] = { 0.80000001192093, 1.2000000476837, 9, levelRequirement = 41, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, - [10] = { 0.80000001192093, 1.2000000476837, 10, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, - [11] = { 0.80000001192093, 1.2000000476837, 10, levelRequirement = 47, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, - [12] = { 0.80000001192093, 1.2000000476837, 11, levelRequirement = 50, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, - [13] = { 0.80000001192093, 1.2000000476837, 11, levelRequirement = 53, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, - [14] = { 0.80000001192093, 1.2000000476837, 12, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, - [15] = { 0.80000001192093, 1.2000000476837, 12, levelRequirement = 59, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, - [16] = { 0.80000001192093, 1.2000000476837, 13, levelRequirement = 62, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, - [17] = { 0.80000001192093, 1.2000000476837, 13, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, - [18] = { 0.80000001192093, 1.2000000476837, 14, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, - [19] = { 0.80000001192093, 1.2000000476837, 14, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, - [20] = { 0.80000001192093, 1.2000000476837, 15, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, - [21] = { 0.80000001192093, 1.2000000476837, 16, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, - [22] = { 0.80000001192093, 1.2000000476837, 16, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, - [23] = { 0.80000001192093, 1.2000000476837, 17, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, - [24] = { 0.80000001192093, 1.2000000476837, 17, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, - [25] = { 0.80000001192093, 1.2000000476837, 18, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, - [26] = { 0.80000001192093, 1.2000000476837, 18, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, - [27] = { 0.80000001192093, 1.2000000476837, 19, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, - [28] = { 0.80000001192093, 1.2000000476837, 19, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, - [29] = { 0.80000001192093, 1.2000000476837, 20, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, - [30] = { 0.80000001192093, 1.2000000476837, 20, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, - [31] = { 0.80000001192093, 1.2000000476837, 21, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, - [32] = { 0.80000001192093, 1.2000000476837, 21, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, - [33] = { 0.80000001192093, 1.2000000476837, 21, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, - [34] = { 0.80000001192093, 1.2000000476837, 21, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, - [35] = { 0.80000001192093, 1.2000000476837, 22, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, - [36] = { 0.80000001192093, 1.2000000476837, 22, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, - [37] = { 0.80000001192093, 1.2000000476837, 22, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, - [38] = { 0.80000001192093, 1.2000000476837, 22, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, - [39] = { 0.80000001192093, 1.2000000476837, 23, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, - [40] = { 0.80000001192093, 1.2000000476837, 23, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, + [1] = { 0.80000001192093, 1.2000000476837, 6, levelRequirement = 12, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [2] = { 0.80000001192093, 1.2000000476837, 7, levelRequirement = 15, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [3] = { 0.80000001192093, 1.2000000476837, 7, levelRequirement = 19, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, + [4] = { 0.80000001192093, 1.2000000476837, 8, levelRequirement = 23, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, + [5] = { 0.80000001192093, 1.2000000476837, 8, levelRequirement = 27, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, + [6] = { 0.80000001192093, 1.2000000476837, 9, levelRequirement = 31, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [7] = { 0.80000001192093, 1.2000000476837, 10, levelRequirement = 35, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [8] = { 0.80000001192093, 1.2000000476837, 10, levelRequirement = 38, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [9] = { 0.80000001192093, 1.2000000476837, 11, levelRequirement = 41, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [10] = { 0.80000001192093, 1.2000000476837, 12, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [11] = { 0.80000001192093, 1.2000000476837, 12, levelRequirement = 47, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [12] = { 0.80000001192093, 1.2000000476837, 13, levelRequirement = 50, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [13] = { 0.80000001192093, 1.2000000476837, 13, levelRequirement = 53, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [14] = { 0.80000001192093, 1.2000000476837, 14, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [15] = { 0.80000001192093, 1.2000000476837, 15, levelRequirement = 59, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [16] = { 0.80000001192093, 1.2000000476837, 15, levelRequirement = 62, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [17] = { 0.80000001192093, 1.2000000476837, 16, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [18] = { 0.80000001192093, 1.2000000476837, 16, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [19] = { 0.80000001192093, 1.2000000476837, 17, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [20] = { 0.80000001192093, 1.2000000476837, 18, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [21] = { 0.80000001192093, 1.2000000476837, 18, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [22] = { 0.80000001192093, 1.2000000476837, 19, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [23] = { 0.80000001192093, 1.2000000476837, 20, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [24] = { 0.80000001192093, 1.2000000476837, 20, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, + [25] = { 0.80000001192093, 1.2000000476837, 21, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, + [26] = { 0.80000001192093, 1.2000000476837, 21, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, + [27] = { 0.80000001192093, 1.2000000476837, 22, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, + [28] = { 0.80000001192093, 1.2000000476837, 23, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, + [29] = { 0.80000001192093, 1.2000000476837, 23, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, + [30] = { 0.80000001192093, 1.2000000476837, 24, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, + [31] = { 0.80000001192093, 1.2000000476837, 24, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, + [32] = { 0.80000001192093, 1.2000000476837, 24, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, + [33] = { 0.80000001192093, 1.2000000476837, 25, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, + [34] = { 0.80000001192093, 1.2000000476837, 25, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, + [35] = { 0.80000001192093, 1.2000000476837, 25, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, + [36] = { 0.80000001192093, 1.2000000476837, 26, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, + [37] = { 0.80000001192093, 1.2000000476837, 26, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, + [38] = { 0.80000001192093, 1.2000000476837, 26, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, + [39] = { 0.80000001192093, 1.2000000476837, 27, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, + [40] = { 0.80000001192093, 1.2000000476837, 27, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, }, } skills["Snipe"] = { @@ -17671,7 +17785,7 @@ skills["ChannelledSnipeSupport"] = { support = true, requireSkillTypes = { SkillType.RangedAttack, SkillType.ThresholdJewelRangedAttack, SkillType.OR, SkillType.Triggerable, SkillType.AND, }, addSkillTypes = { SkillType.Triggered, SkillType.Cooldown, }, - excludeSkillTypes = { SkillType.SummonsTotem, SkillType.Trapped, SkillType.RemoteMined, SkillType.HasReservation, SkillType.Vaal, SkillType.Instant, SkillType.Channel, }, + excludeSkillTypes = { SkillType.SummonsTotem, SkillType.Trapped, SkillType.RemoteMined, SkillType.HasReservation, SkillType.Vaal, SkillType.Instant, SkillType.Channel, SkillType.InbuiltTrigger, }, isTrigger = true, ignoreMinionTypes = true, weaponTypes = { @@ -17688,6 +17802,7 @@ skills["ChannelledSnipeSupport"] = { }, constantStats = { { "snipe_triggered_skill_damage_+%_final", -40 }, + { "base_number_of_projectiles", 3 }, }, stats = { "snipe_triggered_skill_ailment_damage_+%_final_per_stage", @@ -17811,6 +17926,201 @@ skills["TemporalRift"] = { [40] = { 68, cooldown = 5, levelRequirement = 100, manaReservationPercent = 10, storedUses = 1, statInterpolation = { 1, }, }, }, } +skills["Thunderstorm"] = { + name = "Thunderstorm", + baseTypeName = "Thunderstorm", + color = 2, + description = "Fires an arrow into the air to land at a targeted location. On impact, deals area damage and creates a thunderstorm which blinds enemies within it. Entering the thunderstorm will cause it to gain stages, and leaving it will cause it to dissipate. Leaving the storm while it is at maximum stages will cause it to explode, dealing damage and triggering Thunderburst. You must use this skill yourself, it cannot be used by Totems, Traps, Mines, or other objects that use skills for you.", + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.RangedAttack] = true, [SkillType.Duration] = true, [SkillType.Lightning] = true, [SkillType.Rain] = true, [SkillType.ProjectileSpeed] = true, [SkillType.ProjectilesNotFired] = true, }, + weaponTypes = { + ["Bow"] = true, + }, + statDescriptionScope = "skill_stat_descriptions", + castTime = 1, + parts = { + { + name = "Projectile", + }, + { + name = "Storm Explosion", + stages = true, + }, + }, + statMap = { + ["windstorm_storm_hit_damage_+%_final_on_detonation"] = { + mod("Damage", "MORE", nil, 0, bit.bor(KeywordFlag.Hit, KeywordFlag.Ailment), { type = "SkillPart", skillPart = 2 } ) + }, + ["windstorm_storm_maximum_stages"] = { + mod("Multiplier:ThunderstormMaxStages", "BASE", nil, 0, 0, { type = "SkillPart", skillPart = 2 }), + }, + ["windstorm_storm_area_of_effect_+%_final_per_stage"] = { + mod("AreaOfEffect", "MORE", nil, 0, 0, { type = "Multiplier", var = "ThunderstormStage" }, { type = "SkillPart", skillPart = 2 }), + }, + ["base_windstorm_storm_stage_gained_per_X_ms"] = { + skill("hitTimeOverride", nil, { type = "Multiplier", var = "ThunderstormStage" }, { type = "SkillPart", skillPart = 2 }), + div = 1000, + }, + ["base_skill_show_average_damage_instead_of_dps"] = { + skill("showAverage", true, { type = "SkillPart", skillPart = 2 }), + }, + }, + baseFlags = { + attack = true, + projectile = true, + area = true, + duration = true, + }, + constantStats = { + { "base_number_of_arrows", 1 }, + { "windstorm_storm_maximum_stages", 4 }, + { "windstorm_storm_perfect_timing_window_escape_time_ms", 1500 }, + { "base_skill_effect_duration", 10000 }, + { "skill_physical_damage_%_to_convert_to_lightning", 60 }, + { "windstorm_storm_limit", 3 }, + { "windstorm_storm_hit_damage_+%_final_on_detonation", 300 }, + { "base_windstorm_storm_stage_gained_per_X_ms", 250 }, + { "windstorm_storm_area_of_effect_+%_final_per_stage", 30 }, + }, + stats = { + "active_skill_base_area_of_effect_radius", + "base_is_projectile", + "is_area_damage", + "quality_display_base_additional_arrows_is_gem", + "modifiers_to_projectile_count_do_not_apply", + "base_skill_show_average_damage_instead_of_dps", + "skill_can_fire_arrows", + }, + levels = { + [1] = { 18, baseMultiplier = 1.12, damageEffectiveness = 1.12, levelRequirement = 28, statInterpolation = { 1, }, cost = { Mana = 7, }, }, + [2] = { 18, baseMultiplier = 1.127, damageEffectiveness = 1.127, levelRequirement = 31, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [3] = { 19, baseMultiplier = 1.134, damageEffectiveness = 1.134, levelRequirement = 34, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [4] = { 19, baseMultiplier = 1.141, damageEffectiveness = 1.141, levelRequirement = 37, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [5] = { 19, baseMultiplier = 1.147, damageEffectiveness = 1.147, levelRequirement = 40, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [6] = { 19, baseMultiplier = 1.154, damageEffectiveness = 1.154, levelRequirement = 42, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [7] = { 20, baseMultiplier = 1.161, damageEffectiveness = 1.161, levelRequirement = 44, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [8] = { 20, baseMultiplier = 1.168, damageEffectiveness = 1.168, levelRequirement = 46, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [9] = { 20, baseMultiplier = 1.175, damageEffectiveness = 1.175, levelRequirement = 48, statInterpolation = { 1, }, cost = { Mana = 9, }, }, + [10] = { 21, baseMultiplier = 1.182, damageEffectiveness = 1.182, levelRequirement = 50, statInterpolation = { 1, }, cost = { Mana = 9, }, }, + [11] = { 21, baseMultiplier = 1.188, damageEffectiveness = 1.188, levelRequirement = 52, statInterpolation = { 1, }, cost = { Mana = 9, }, }, + [12] = { 21, baseMultiplier = 1.195, damageEffectiveness = 1.195, levelRequirement = 54, statInterpolation = { 1, }, cost = { Mana = 9, }, }, + [13] = { 21, baseMultiplier = 1.202, damageEffectiveness = 1.202, levelRequirement = 56, statInterpolation = { 1, }, cost = { Mana = 9, }, }, + [14] = { 22, baseMultiplier = 1.209, damageEffectiveness = 1.209, levelRequirement = 58, statInterpolation = { 1, }, cost = { Mana = 9, }, }, + [15] = { 22, baseMultiplier = 1.216, damageEffectiveness = 1.216, levelRequirement = 60, statInterpolation = { 1, }, cost = { Mana = 9, }, }, + [16] = { 22, baseMultiplier = 1.223, damageEffectiveness = 1.223, levelRequirement = 62, statInterpolation = { 1, }, cost = { Mana = 10, }, }, + [17] = { 22, baseMultiplier = 1.229, damageEffectiveness = 1.229, levelRequirement = 64, statInterpolation = { 1, }, cost = { Mana = 10, }, }, + [18] = { 23, baseMultiplier = 1.236, damageEffectiveness = 1.236, levelRequirement = 66, statInterpolation = { 1, }, cost = { Mana = 10, }, }, + [19] = { 23, baseMultiplier = 1.243, damageEffectiveness = 1.243, levelRequirement = 68, statInterpolation = { 1, }, cost = { Mana = 10, }, }, + [20] = { 23, baseMultiplier = 1.25, damageEffectiveness = 1.25, levelRequirement = 70, statInterpolation = { 1, }, cost = { Mana = 10, }, }, + [21] = { 24, baseMultiplier = 1.257, damageEffectiveness = 1.257, levelRequirement = 72, statInterpolation = { 1, }, cost = { Mana = 10, }, }, + [22] = { 24, baseMultiplier = 1.264, damageEffectiveness = 1.264, levelRequirement = 74, statInterpolation = { 1, }, cost = { Mana = 10, }, }, + [23] = { 24, baseMultiplier = 1.271, damageEffectiveness = 1.271, levelRequirement = 76, statInterpolation = { 1, }, cost = { Mana = 10, }, }, + [24] = { 24, baseMultiplier = 1.277, damageEffectiveness = 1.277, levelRequirement = 78, statInterpolation = { 1, }, cost = { Mana = 11, }, }, + [25] = { 25, baseMultiplier = 1.284, damageEffectiveness = 1.284, levelRequirement = 80, statInterpolation = { 1, }, cost = { Mana = 11, }, }, + [26] = { 25, baseMultiplier = 1.291, damageEffectiveness = 1.291, levelRequirement = 82, statInterpolation = { 1, }, cost = { Mana = 11, }, }, + [27] = { 25, baseMultiplier = 1.298, damageEffectiveness = 1.298, levelRequirement = 84, statInterpolation = { 1, }, cost = { Mana = 11, }, }, + [28] = { 26, baseMultiplier = 1.305, damageEffectiveness = 1.305, levelRequirement = 86, statInterpolation = { 1, }, cost = { Mana = 11, }, }, + [29] = { 26, baseMultiplier = 1.312, damageEffectiveness = 1.312, levelRequirement = 88, statInterpolation = { 1, }, cost = { Mana = 11, }, }, + [30] = { 26, baseMultiplier = 1.318, damageEffectiveness = 1.318, levelRequirement = 90, statInterpolation = { 1, }, cost = { Mana = 11, }, }, + [31] = { 26, baseMultiplier = 1.322, damageEffectiveness = 1.322, levelRequirement = 91, statInterpolation = { 1, }, cost = { Mana = 11, }, }, + [32] = { 27, baseMultiplier = 1.325, damageEffectiveness = 1.325, levelRequirement = 92, statInterpolation = { 1, }, cost = { Mana = 11, }, }, + [33] = { 27, baseMultiplier = 1.329, damageEffectiveness = 1.329, levelRequirement = 93, statInterpolation = { 1, }, cost = { Mana = 12, }, }, + [34] = { 27, baseMultiplier = 1.332, damageEffectiveness = 1.332, levelRequirement = 94, statInterpolation = { 1, }, cost = { Mana = 12, }, }, + [35] = { 28, baseMultiplier = 1.336, damageEffectiveness = 1.336, levelRequirement = 95, statInterpolation = { 1, }, cost = { Mana = 12, }, }, + [36] = { 28, baseMultiplier = 1.339, damageEffectiveness = 1.339, levelRequirement = 96, statInterpolation = { 1, }, cost = { Mana = 12, }, }, + [37] = { 28, baseMultiplier = 1.342, damageEffectiveness = 1.342, levelRequirement = 97, statInterpolation = { 1, }, cost = { Mana = 12, }, }, + [38] = { 28, baseMultiplier = 1.346, damageEffectiveness = 1.346, levelRequirement = 98, statInterpolation = { 1, }, cost = { Mana = 12, }, }, + [39] = { 29, baseMultiplier = 1.349, damageEffectiveness = 1.349, levelRequirement = 99, statInterpolation = { 1, }, cost = { Mana = 12, }, }, + [40] = { 29, baseMultiplier = 1.353, damageEffectiveness = 1.353, levelRequirement = 100, statInterpolation = { 1, }, cost = { Mana = 12, }, }, + }, +} +skills["ThunderstormMiniTornados"] = { + name = "Thunderburst", + baseTypeName = "Thunderburst", + color = 2, + description = "Fires projectiles from the targeted location that move randomly and damage enemies they pierce through. They explode after a duration, dealing area damage.", + skillTypes = { [SkillType.Attack] = true, [SkillType.Projectile] = true, [SkillType.Triggerable] = true, [SkillType.Duration] = true, [SkillType.RangedAttack] = true, [SkillType.InbuiltTrigger] = true, [SkillType.Triggered] = true, [SkillType.Lightning] = true, [SkillType.ProjectilesNotFromUser] = true, [SkillType.Area] = true, }, + weaponTypes = { + ["Bow"] = true, + }, + statDescriptionScope = "skill_stat_descriptions", + castTime = 1, + parts = { + { + name = "Projectile", + projectile = true, + }, + { + name = "Explosion", + area = true, + }, + }, + baseFlags = { + attack = true, + duration = true, + }, + qualityStats = { + Default = { + { "base_number_of_projectiles", 0.1 }, + }, + }, + constantStats = { + { "base_skill_effect_duration", 3000 }, + { "active_skill_base_area_of_effect_radius", 15 }, + { "skill_physical_damage_%_to_convert_to_lightning", 60 }, + { "active_skill_area_damage_+%_final", 40 }, + { "base_number_of_projectiles", 5 }, + }, + stats = { + "base_is_projectile", + "quality_display_base_number_of_projectiles_is_gem", + "projectiles_nova", + "triggered_by_windstorm", + "always_pierce", + "quality_display_active_skill_area_damage_is_gem", + }, + levels = { + [1] = { baseMultiplier = 1.18, damageEffectiveness = 1.18, levelRequirement = 28, }, + [2] = { baseMultiplier = 1.191, damageEffectiveness = 1.191, levelRequirement = 31, }, + [3] = { baseMultiplier = 1.202, damageEffectiveness = 1.202, levelRequirement = 34, }, + [4] = { baseMultiplier = 1.213, damageEffectiveness = 1.213, levelRequirement = 37, }, + [5] = { baseMultiplier = 1.224, damageEffectiveness = 1.224, levelRequirement = 40, }, + [6] = { baseMultiplier = 1.235, damageEffectiveness = 1.235, levelRequirement = 42, }, + [7] = { baseMultiplier = 1.246, damageEffectiveness = 1.246, levelRequirement = 44, }, + [8] = { baseMultiplier = 1.257, damageEffectiveness = 1.257, levelRequirement = 46, }, + [9] = { baseMultiplier = 1.268, damageEffectiveness = 1.268, levelRequirement = 48, }, + [10] = { baseMultiplier = 1.279, damageEffectiveness = 1.279, levelRequirement = 50, }, + [11] = { baseMultiplier = 1.291, damageEffectiveness = 1.291, levelRequirement = 52, }, + [12] = { baseMultiplier = 1.302, damageEffectiveness = 1.302, levelRequirement = 54, }, + [13] = { baseMultiplier = 1.313, damageEffectiveness = 1.313, levelRequirement = 56, }, + [14] = { baseMultiplier = 1.324, damageEffectiveness = 1.324, levelRequirement = 58, }, + [15] = { baseMultiplier = 1.335, damageEffectiveness = 1.335, levelRequirement = 60, }, + [16] = { baseMultiplier = 1.346, damageEffectiveness = 1.346, levelRequirement = 62, }, + [17] = { baseMultiplier = 1.357, damageEffectiveness = 1.357, levelRequirement = 64, }, + [18] = { baseMultiplier = 1.368, damageEffectiveness = 1.368, levelRequirement = 66, }, + [19] = { baseMultiplier = 1.379, damageEffectiveness = 1.379, levelRequirement = 68, }, + [20] = { baseMultiplier = 1.39, damageEffectiveness = 1.39, levelRequirement = 70, }, + [21] = { baseMultiplier = 1.401, damageEffectiveness = 1.401, levelRequirement = 72, }, + [22] = { baseMultiplier = 1.412, damageEffectiveness = 1.412, levelRequirement = 74, }, + [23] = { baseMultiplier = 1.423, damageEffectiveness = 1.423, levelRequirement = 76, }, + [24] = { baseMultiplier = 1.434, damageEffectiveness = 1.434, levelRequirement = 78, }, + [25] = { baseMultiplier = 1.445, damageEffectiveness = 1.445, levelRequirement = 80, }, + [26] = { baseMultiplier = 1.456, damageEffectiveness = 1.456, levelRequirement = 82, }, + [27] = { baseMultiplier = 1.467, damageEffectiveness = 1.467, levelRequirement = 84, }, + [28] = { baseMultiplier = 1.478, damageEffectiveness = 1.478, levelRequirement = 86, }, + [29] = { baseMultiplier = 1.489, damageEffectiveness = 1.489, levelRequirement = 88, }, + [30] = { baseMultiplier = 1.501, damageEffectiveness = 1.501, levelRequirement = 90, }, + [31] = { baseMultiplier = 1.506, damageEffectiveness = 1.506, levelRequirement = 91, }, + [32] = { baseMultiplier = 1.512, damageEffectiveness = 1.512, levelRequirement = 92, }, + [33] = { baseMultiplier = 1.517, damageEffectiveness = 1.517, levelRequirement = 93, }, + [34] = { baseMultiplier = 1.523, damageEffectiveness = 1.523, levelRequirement = 94, }, + [35] = { baseMultiplier = 1.528, damageEffectiveness = 1.528, levelRequirement = 95, }, + [36] = { baseMultiplier = 1.534, damageEffectiveness = 1.534, levelRequirement = 96, }, + [37] = { baseMultiplier = 1.539, damageEffectiveness = 1.539, levelRequirement = 97, }, + [38] = { baseMultiplier = 1.545, damageEffectiveness = 1.545, levelRequirement = 98, }, + [39] = { baseMultiplier = 1.55, damageEffectiveness = 1.55, levelRequirement = 99, }, + [40] = { baseMultiplier = 1.556, damageEffectiveness = 1.556, levelRequirement = 100, }, + }, +} skills["Tornado"] = { name = "Tornado", baseTypeName = "Tornado", diff --git a/src/Data/Skills/act_int.lua b/src/Data/Skills/act_int.lua index c5077123d6..2a813cbf00 100644 --- a/src/Data/Skills/act_int.lua +++ b/src/Data/Skills/act_int.lua @@ -3621,54 +3621,6 @@ skills["ConversionTrap"] = { [40] = { 13800, cooldown = 8, levelRequirement = 100, storedUses = 3, statInterpolation = { 1, }, cost = { Mana = 33, }, }, }, } -skills["Convocation"] = { - name = "Convocation", - baseTypeName = "Convocation", - color = 3, - description = "Recalls all minions that are following you to your location, and grants them a temporary life regeneration effect.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.Duration] = true, [SkillType.Triggerable] = true, [SkillType.Minion] = true, [SkillType.Instant] = true, [SkillType.Cooldown] = true, }, - statDescriptionScope = "buff_skill_stat_descriptions", - castTime = 0, - statMap = { - ["base_life_regeneration_rate_per_minute"] = { - mod("LifeRegen", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff" }), - div = 60, - }, - }, - baseFlags = { - spell = true, - duration = true, - }, - baseMods = { - skill("buffMinions", true), - skill("buffNotPlayer", true), - }, - qualityStats = { - Default = { - { "skill_effect_duration_+%", 1 }, - { "base_cooldown_speed_+%", 1 }, - }, - }, - constantStats = { - { "base_skill_effect_duration", 2000 }, - { "life_regeneration_rate_per_minute_%", 120 }, - }, - stats = { - "base_deal_no_damage", - }, - levels = { - [1] = { cooldown = 3, levelRequirement = 31, storedUses = 1, cost = { Mana = 6, }, }, - [2] = { cooldown = 3, levelRequirement = 31, storedUses = 1, cost = { Mana = 6, }, }, - [3] = { cooldown = 3, levelRequirement = 31, storedUses = 1, cost = { Mana = 6, }, }, - [4] = { cooldown = 3, levelRequirement = 31, storedUses = 1, cost = { Mana = 6, }, }, - [5] = { cooldown = 3, levelRequirement = 31, storedUses = 1, cost = { Mana = 6, }, }, - [6] = { cooldown = 3, levelRequirement = 31, storedUses = 1, cost = { Mana = 6, }, }, - [7] = { cooldown = 3, levelRequirement = 31, storedUses = 1, cost = { Mana = 6, }, }, - [8] = { cooldown = 3, levelRequirement = 31, storedUses = 1, cost = { Mana = 6, }, }, - [9] = { cooldown = 3, levelRequirement = 31, storedUses = 1, cost = { Mana = 6, }, }, - [10] = { cooldown = 3, levelRequirement = 31, storedUses = 1, cost = { Mana = 6, }, }, - }, -} skills["CracklingLance"] = { name = "Crackling Lance", baseTypeName = "Crackling Lance", @@ -3977,7 +3929,7 @@ skills["DarkPact"] = { }, }, constantStats = { - { "skeletal_chains_aoe_%_health_dealt_as_chaos_damage", 8 }, + { "skeletal_chains_aoe_%_health_dealt_as_chaos_damage", 12 }, { "number_of_chains", 2 }, }, stats = { @@ -3993,46 +3945,46 @@ skills["DarkPact"] = { "spell_maximum_base_chaos_damage", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, 56, critChance = 5, levelRequirement = 28, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, - [2] = { 0.80000001192093, 1.2000000476837, 60, critChance = 5, levelRequirement = 31, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, - [3] = { 0.80000001192093, 1.2000000476837, 64, critChance = 5, levelRequirement = 34, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, - [4] = { 0.80000001192093, 1.2000000476837, 69, critChance = 5, levelRequirement = 37, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, - [5] = { 0.80000001192093, 1.2000000476837, 73, critChance = 5, levelRequirement = 40, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, - [6] = { 0.80000001192093, 1.2000000476837, 77, critChance = 5, levelRequirement = 42, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, - [7] = { 0.80000001192093, 1.2000000476837, 81, critChance = 5, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, - [8] = { 0.80000001192093, 1.2000000476837, 85, critChance = 5, levelRequirement = 46, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, - [9] = { 0.80000001192093, 1.2000000476837, 90, critChance = 5, levelRequirement = 48, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, - [10] = { 0.80000001192093, 1.2000000476837, 94, critChance = 5, levelRequirement = 50, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, - [11] = { 0.80000001192093, 1.2000000476837, 98, critChance = 5, levelRequirement = 52, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, - [12] = { 0.80000001192093, 1.2000000476837, 102, critChance = 5, levelRequirement = 54, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, - [13] = { 0.80000001192093, 1.2000000476837, 106, critChance = 5, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, - [14] = { 0.80000001192093, 1.2000000476837, 111, critChance = 5, levelRequirement = 58, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, - [15] = { 0.80000001192093, 1.2000000476837, 115, critChance = 5, levelRequirement = 60, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, - [16] = { 0.80000001192093, 1.2000000476837, 119, critChance = 5, levelRequirement = 62, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, - [17] = { 0.80000001192093, 1.2000000476837, 123, critChance = 5, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, - [18] = { 0.80000001192093, 1.2000000476837, 127, critChance = 5, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, - [19] = { 0.80000001192093, 1.2000000476837, 132, critChance = 5, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, - [20] = { 0.80000001192093, 1.2000000476837, 136, critChance = 5, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, - [21] = { 0.80000001192093, 1.2000000476837, 140, critChance = 5, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, - [22] = { 0.80000001192093, 1.2000000476837, 144, critChance = 5, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, - [23] = { 0.80000001192093, 1.2000000476837, 148, critChance = 5, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, - [24] = { 0.80000001192093, 1.2000000476837, 153, critChance = 5, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, - [25] = { 0.80000001192093, 1.2000000476837, 157, critChance = 5, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, - [26] = { 0.80000001192093, 1.2000000476837, 161, critChance = 5, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, - [27] = { 0.80000001192093, 1.2000000476837, 165, critChance = 5, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, - [28] = { 0.80000001192093, 1.2000000476837, 169, critChance = 5, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, - [29] = { 0.80000001192093, 1.2000000476837, 174, critChance = 5, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, - [30] = { 0.80000001192093, 1.2000000476837, 178, critChance = 5, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, - [31] = { 0.80000001192093, 1.2000000476837, 181, critChance = 5, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, - [32] = { 0.80000001192093, 1.2000000476837, 182, critChance = 5, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, - [33] = { 0.80000001192093, 1.2000000476837, 185, critChance = 5, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, - [34] = { 0.80000001192093, 1.2000000476837, 186, critChance = 5, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, - [35] = { 0.80000001192093, 1.2000000476837, 189, critChance = 5, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, - [36] = { 0.80000001192093, 1.2000000476837, 190, critChance = 5, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, - [37] = { 0.80000001192093, 1.2000000476837, 193, critChance = 5, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, - [38] = { 0.80000001192093, 1.2000000476837, 195, critChance = 5, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, - [39] = { 0.80000001192093, 1.2000000476837, 197, critChance = 5, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, - [40] = { 0.80000001192093, 1.2000000476837, 199, critChance = 5, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, + [1] = { 0.80000001192093, 1.2000000476837, 56, critChance = 7, levelRequirement = 28, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, + [2] = { 0.80000001192093, 1.2000000476837, 60, critChance = 7, levelRequirement = 31, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, + [3] = { 0.80000001192093, 1.2000000476837, 64, critChance = 7, levelRequirement = 34, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [4] = { 0.80000001192093, 1.2000000476837, 69, critChance = 7, levelRequirement = 37, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [5] = { 0.80000001192093, 1.2000000476837, 73, critChance = 7, levelRequirement = 40, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [6] = { 0.80000001192093, 1.2000000476837, 77, critChance = 7, levelRequirement = 42, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [7] = { 0.80000001192093, 1.2000000476837, 81, critChance = 7, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [8] = { 0.80000001192093, 1.2000000476837, 85, critChance = 7, levelRequirement = 46, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [9] = { 0.80000001192093, 1.2000000476837, 90, critChance = 7, levelRequirement = 48, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [10] = { 0.80000001192093, 1.2000000476837, 94, critChance = 7, levelRequirement = 50, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [11] = { 0.80000001192093, 1.2000000476837, 98, critChance = 7, levelRequirement = 52, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, + [12] = { 0.80000001192093, 1.2000000476837, 102, critChance = 7, levelRequirement = 54, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, + [13] = { 0.80000001192093, 1.2000000476837, 106, critChance = 7, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, + [14] = { 0.80000001192093, 1.2000000476837, 111, critChance = 7, levelRequirement = 58, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, + [15] = { 0.80000001192093, 1.2000000476837, 115, critChance = 7, levelRequirement = 60, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, + [16] = { 0.80000001192093, 1.2000000476837, 119, critChance = 7, levelRequirement = 62, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, + [17] = { 0.80000001192093, 1.2000000476837, 123, critChance = 7, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, + [18] = { 0.80000001192093, 1.2000000476837, 127, critChance = 7, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, + [19] = { 0.80000001192093, 1.2000000476837, 132, critChance = 7, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, + [20] = { 0.80000001192093, 1.2000000476837, 136, critChance = 7, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, + [21] = { 0.80000001192093, 1.2000000476837, 140, critChance = 7, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, + [22] = { 0.80000001192093, 1.2000000476837, 144, critChance = 7, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, + [23] = { 0.80000001192093, 1.2000000476837, 148, critChance = 7, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, + [24] = { 0.80000001192093, 1.2000000476837, 153, critChance = 7, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, + [25] = { 0.80000001192093, 1.2000000476837, 157, critChance = 7, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, + [26] = { 0.80000001192093, 1.2000000476837, 161, critChance = 7, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, + [27] = { 0.80000001192093, 1.2000000476837, 165, critChance = 7, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, + [28] = { 0.80000001192093, 1.2000000476837, 169, critChance = 7, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, + [29] = { 0.80000001192093, 1.2000000476837, 174, critChance = 7, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, + [30] = { 0.80000001192093, 1.2000000476837, 178, critChance = 7, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, + [31] = { 0.80000001192093, 1.2000000476837, 181, critChance = 7, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, + [32] = { 0.80000001192093, 1.2000000476837, 182, critChance = 7, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, + [33] = { 0.80000001192093, 1.2000000476837, 185, critChance = 7, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, + [34] = { 0.80000001192093, 1.2000000476837, 186, critChance = 7, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, + [35] = { 0.80000001192093, 1.2000000476837, 189, critChance = 7, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, + [36] = { 0.80000001192093, 1.2000000476837, 190, critChance = 7, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, + [37] = { 0.80000001192093, 1.2000000476837, 193, critChance = 7, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, + [38] = { 0.80000001192093, 1.2000000476837, 195, critChance = 7, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, + [39] = { 0.80000001192093, 1.2000000476837, 197, critChance = 7, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, + [40] = { 0.80000001192093, 1.2000000476837, 199, critChance = 7, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, }, } skills["DarkPactAltX"] = { @@ -4096,7 +4048,7 @@ skills["DarkPactAltX"] = { }, constantStats = { { "dark_pact_sacrifice_%_life_from_max_ruin", 50 }, - { "dark_pact_chaos_damage_added_from_sacrifice_+%", 400 }, + { "dark_pact_chaos_damage_added_from_sacrifice_+%", 500 }, { "active_skill_ailment_damage_+%_final", -50 }, }, stats = { @@ -4109,46 +4061,46 @@ skills["DarkPactAltX"] = { "spell_maximum_base_chaos_damage", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, critChance = 5, levelRequirement = 28, statInterpolation = { 3, 3, }, cost = { Mana = 7, }, }, - [2] = { 0.80000001192093, 1.2000000476837, critChance = 5, levelRequirement = 31, statInterpolation = { 3, 3, }, cost = { Mana = 7, }, }, - [3] = { 0.80000001192093, 1.2000000476837, critChance = 5, levelRequirement = 34, statInterpolation = { 3, 3, }, cost = { Mana = 8, }, }, - [4] = { 0.80000001192093, 1.2000000476837, critChance = 5, levelRequirement = 37, statInterpolation = { 3, 3, }, cost = { Mana = 8, }, }, - [5] = { 0.80000001192093, 1.2000000476837, critChance = 5, levelRequirement = 40, statInterpolation = { 3, 3, }, cost = { Mana = 9, }, }, - [6] = { 0.80000001192093, 1.2000000476837, critChance = 5, levelRequirement = 42, statInterpolation = { 3, 3, }, cost = { Mana = 9, }, }, - [7] = { 0.80000001192093, 1.2000000476837, critChance = 5, levelRequirement = 44, statInterpolation = { 3, 3, }, cost = { Mana = 9, }, }, - [8] = { 0.80000001192093, 1.2000000476837, critChance = 5, levelRequirement = 46, statInterpolation = { 3, 3, }, cost = { Mana = 10, }, }, - [9] = { 0.80000001192093, 1.2000000476837, critChance = 5, levelRequirement = 48, statInterpolation = { 3, 3, }, cost = { Mana = 10, }, }, - [10] = { 0.80000001192093, 1.2000000476837, critChance = 5, levelRequirement = 50, statInterpolation = { 3, 3, }, cost = { Mana = 10, }, }, - [11] = { 0.80000001192093, 1.2000000476837, critChance = 5, levelRequirement = 52, statInterpolation = { 3, 3, }, cost = { Mana = 11, }, }, - [12] = { 0.80000001192093, 1.2000000476837, critChance = 5, levelRequirement = 54, statInterpolation = { 3, 3, }, cost = { Mana = 11, }, }, - [13] = { 0.80000001192093, 1.2000000476837, critChance = 5, levelRequirement = 56, statInterpolation = { 3, 3, }, cost = { Mana = 11, }, }, - [14] = { 0.80000001192093, 1.2000000476837, critChance = 5, levelRequirement = 58, statInterpolation = { 3, 3, }, cost = { Mana = 11, }, }, - [15] = { 0.80000001192093, 1.2000000476837, critChance = 5, levelRequirement = 60, statInterpolation = { 3, 3, }, cost = { Mana = 12, }, }, - [16] = { 0.80000001192093, 1.2000000476837, critChance = 5, levelRequirement = 62, statInterpolation = { 3, 3, }, cost = { Mana = 12, }, }, - [17] = { 0.80000001192093, 1.2000000476837, critChance = 5, levelRequirement = 64, statInterpolation = { 3, 3, }, cost = { Mana = 12, }, }, - [18] = { 0.80000001192093, 1.2000000476837, critChance = 5, levelRequirement = 66, statInterpolation = { 3, 3, }, cost = { Mana = 13, }, }, - [19] = { 0.80000001192093, 1.2000000476837, critChance = 5, levelRequirement = 68, statInterpolation = { 3, 3, }, cost = { Mana = 13, }, }, - [20] = { 0.80000001192093, 1.2000000476837, critChance = 5, levelRequirement = 70, statInterpolation = { 3, 3, }, cost = { Mana = 13, }, }, - [21] = { 0.80000001192093, 1.2000000476837, critChance = 5, levelRequirement = 72, statInterpolation = { 3, 3, }, cost = { Mana = 13, }, }, - [22] = { 0.80000001192093, 1.2000000476837, critChance = 5, levelRequirement = 74, statInterpolation = { 3, 3, }, cost = { Mana = 14, }, }, - [23] = { 0.80000001192093, 1.2000000476837, critChance = 5, levelRequirement = 76, statInterpolation = { 3, 3, }, cost = { Mana = 14, }, }, - [24] = { 0.80000001192093, 1.2000000476837, critChance = 5, levelRequirement = 78, statInterpolation = { 3, 3, }, cost = { Mana = 14, }, }, - [25] = { 0.80000001192093, 1.2000000476837, critChance = 5, levelRequirement = 80, statInterpolation = { 3, 3, }, cost = { Mana = 15, }, }, - [26] = { 0.80000001192093, 1.2000000476837, critChance = 5, levelRequirement = 82, statInterpolation = { 3, 3, }, cost = { Mana = 15, }, }, - [27] = { 0.80000001192093, 1.2000000476837, critChance = 5, levelRequirement = 84, statInterpolation = { 3, 3, }, cost = { Mana = 15, }, }, - [28] = { 0.80000001192093, 1.2000000476837, critChance = 5, levelRequirement = 86, statInterpolation = { 3, 3, }, cost = { Mana = 15, }, }, - [29] = { 0.80000001192093, 1.2000000476837, critChance = 5, levelRequirement = 88, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, - [30] = { 0.80000001192093, 1.2000000476837, critChance = 5, levelRequirement = 90, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, - [31] = { 0.80000001192093, 1.2000000476837, critChance = 5, levelRequirement = 91, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, - [32] = { 0.80000001192093, 1.2000000476837, critChance = 5, levelRequirement = 92, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, - [33] = { 0.80000001192093, 1.2000000476837, critChance = 5, levelRequirement = 93, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, - [34] = { 0.80000001192093, 1.2000000476837, critChance = 5, levelRequirement = 94, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, - [35] = { 0.80000001192093, 1.2000000476837, critChance = 5, levelRequirement = 95, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, - [36] = { 0.80000001192093, 1.2000000476837, critChance = 5, levelRequirement = 96, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, - [37] = { 0.80000001192093, 1.2000000476837, critChance = 5, levelRequirement = 97, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, - [38] = { 0.80000001192093, 1.2000000476837, critChance = 5, levelRequirement = 98, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, - [39] = { 0.80000001192093, 1.2000000476837, critChance = 5, levelRequirement = 99, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, - [40] = { 0.80000001192093, 1.2000000476837, critChance = 5, levelRequirement = 100, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, + [1] = { 0.80000001192093, 1.2000000476837, critChance = 7, levelRequirement = 28, statInterpolation = { 3, 3, }, cost = { Mana = 7, }, }, + [2] = { 0.80000001192093, 1.2000000476837, critChance = 7, levelRequirement = 31, statInterpolation = { 3, 3, }, cost = { Mana = 7, }, }, + [3] = { 0.80000001192093, 1.2000000476837, critChance = 7, levelRequirement = 34, statInterpolation = { 3, 3, }, cost = { Mana = 8, }, }, + [4] = { 0.80000001192093, 1.2000000476837, critChance = 7, levelRequirement = 37, statInterpolation = { 3, 3, }, cost = { Mana = 8, }, }, + [5] = { 0.80000001192093, 1.2000000476837, critChance = 7, levelRequirement = 40, statInterpolation = { 3, 3, }, cost = { Mana = 9, }, }, + [6] = { 0.80000001192093, 1.2000000476837, critChance = 7, levelRequirement = 42, statInterpolation = { 3, 3, }, cost = { Mana = 9, }, }, + [7] = { 0.80000001192093, 1.2000000476837, critChance = 7, levelRequirement = 44, statInterpolation = { 3, 3, }, cost = { Mana = 9, }, }, + [8] = { 0.80000001192093, 1.2000000476837, critChance = 7, levelRequirement = 46, statInterpolation = { 3, 3, }, cost = { Mana = 10, }, }, + [9] = { 0.80000001192093, 1.2000000476837, critChance = 7, levelRequirement = 48, statInterpolation = { 3, 3, }, cost = { Mana = 10, }, }, + [10] = { 0.80000001192093, 1.2000000476837, critChance = 7, levelRequirement = 50, statInterpolation = { 3, 3, }, cost = { Mana = 10, }, }, + [11] = { 0.80000001192093, 1.2000000476837, critChance = 7, levelRequirement = 52, statInterpolation = { 3, 3, }, cost = { Mana = 11, }, }, + [12] = { 0.80000001192093, 1.2000000476837, critChance = 7, levelRequirement = 54, statInterpolation = { 3, 3, }, cost = { Mana = 11, }, }, + [13] = { 0.80000001192093, 1.2000000476837, critChance = 7, levelRequirement = 56, statInterpolation = { 3, 3, }, cost = { Mana = 11, }, }, + [14] = { 0.80000001192093, 1.2000000476837, critChance = 7, levelRequirement = 58, statInterpolation = { 3, 3, }, cost = { Mana = 11, }, }, + [15] = { 0.80000001192093, 1.2000000476837, critChance = 7, levelRequirement = 60, statInterpolation = { 3, 3, }, cost = { Mana = 12, }, }, + [16] = { 0.80000001192093, 1.2000000476837, critChance = 7, levelRequirement = 62, statInterpolation = { 3, 3, }, cost = { Mana = 12, }, }, + [17] = { 0.80000001192093, 1.2000000476837, critChance = 7, levelRequirement = 64, statInterpolation = { 3, 3, }, cost = { Mana = 12, }, }, + [18] = { 0.80000001192093, 1.2000000476837, critChance = 7, levelRequirement = 66, statInterpolation = { 3, 3, }, cost = { Mana = 13, }, }, + [19] = { 0.80000001192093, 1.2000000476837, critChance = 7, levelRequirement = 68, statInterpolation = { 3, 3, }, cost = { Mana = 13, }, }, + [20] = { 0.80000001192093, 1.2000000476837, critChance = 7, levelRequirement = 70, statInterpolation = { 3, 3, }, cost = { Mana = 13, }, }, + [21] = { 0.80000001192093, 1.2000000476837, critChance = 7, levelRequirement = 72, statInterpolation = { 3, 3, }, cost = { Mana = 13, }, }, + [22] = { 0.80000001192093, 1.2000000476837, critChance = 7, levelRequirement = 74, statInterpolation = { 3, 3, }, cost = { Mana = 14, }, }, + [23] = { 0.80000001192093, 1.2000000476837, critChance = 7, levelRequirement = 76, statInterpolation = { 3, 3, }, cost = { Mana = 14, }, }, + [24] = { 0.80000001192093, 1.2000000476837, critChance = 7, levelRequirement = 78, statInterpolation = { 3, 3, }, cost = { Mana = 14, }, }, + [25] = { 0.80000001192093, 1.2000000476837, critChance = 7, levelRequirement = 80, statInterpolation = { 3, 3, }, cost = { Mana = 15, }, }, + [26] = { 0.80000001192093, 1.2000000476837, critChance = 7, levelRequirement = 82, statInterpolation = { 3, 3, }, cost = { Mana = 15, }, }, + [27] = { 0.80000001192093, 1.2000000476837, critChance = 7, levelRequirement = 84, statInterpolation = { 3, 3, }, cost = { Mana = 15, }, }, + [28] = { 0.80000001192093, 1.2000000476837, critChance = 7, levelRequirement = 86, statInterpolation = { 3, 3, }, cost = { Mana = 15, }, }, + [29] = { 0.80000001192093, 1.2000000476837, critChance = 7, levelRequirement = 88, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, + [30] = { 0.80000001192093, 1.2000000476837, critChance = 7, levelRequirement = 90, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, + [31] = { 0.80000001192093, 1.2000000476837, critChance = 7, levelRequirement = 91, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, + [32] = { 0.80000001192093, 1.2000000476837, critChance = 7, levelRequirement = 92, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, + [33] = { 0.80000001192093, 1.2000000476837, critChance = 7, levelRequirement = 93, statInterpolation = { 3, 3, }, cost = { Mana = 16, }, }, + [34] = { 0.80000001192093, 1.2000000476837, critChance = 7, levelRequirement = 94, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, + [35] = { 0.80000001192093, 1.2000000476837, critChance = 7, levelRequirement = 95, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, + [36] = { 0.80000001192093, 1.2000000476837, critChance = 7, levelRequirement = 96, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, + [37] = { 0.80000001192093, 1.2000000476837, critChance = 7, levelRequirement = 97, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, + [38] = { 0.80000001192093, 1.2000000476837, critChance = 7, levelRequirement = 98, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, + [39] = { 0.80000001192093, 1.2000000476837, critChance = 7, levelRequirement = 99, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, + [40] = { 0.80000001192093, 1.2000000476837, critChance = 7, levelRequirement = 100, statInterpolation = { 3, 3, }, cost = { Mana = 17, }, }, }, } skills["Despair"] = { @@ -9283,8 +9235,8 @@ skills["Hexblast"] = { }, }, constantStats = { - { "hexblast_hit_damage_+%_final_if_hexed", 150 }, - { "hexblast_ailment_damage_+%_final_if_hexed", 60 }, + { "hexblast_hit_damage_+%_final_if_hexed", 200 }, + { "hexblast_ailment_damage_+%_final_if_hexed", 90 }, { "active_skill_base_area_of_effect_radius", 32 }, }, stats = { @@ -9388,8 +9340,8 @@ skills["HexblastAltX"] = { }, }, constantStats = { - { "hexblast_hit_damage_+%_final_if_hexed", 240 }, - { "hexblast_ailment_damage_+%_final_if_hexed", 90 }, + { "hexblast_hit_damage_+%_final_if_hexed", 300 }, + { "hexblast_ailment_damage_+%_final_if_hexed", 120 }, { "active_skill_base_area_of_effect_radius", 32 }, }, stats = { @@ -10851,7 +10803,7 @@ skills["KineticBlast"] = { baseTypeName = "Kinetic Blast", color = 3, description = "Fires a projectile from a Wand that causes a series of area explosions in a secondary radius around its point of impact, each damaging enemies.", - skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Area] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Totemable] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Area] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Totemable] = true, [SkillType.WandAttack] = true, }, weaponTypes = { ["Wand"] = true, }, @@ -10991,46 +10943,46 @@ skills["KineticBlastAltX"] = { "projectiles_cannot_split", }, levels = { - [1] = { 8, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 28, statInterpolation = { 1, }, cost = { Mana = 6, }, }, - [2] = { 8, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 31, statInterpolation = { 1, }, cost = { Mana = 7, }, }, - [3] = { 9, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 34, statInterpolation = { 1, }, cost = { Mana = 7, }, }, - [4] = { 9, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 37, statInterpolation = { 1, }, cost = { Mana = 7, }, }, - [5] = { 10, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 40, statInterpolation = { 1, }, cost = { Mana = 7, }, }, - [6] = { 10, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 42, statInterpolation = { 1, }, cost = { Mana = 7, }, }, - [7] = { 10, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 44, statInterpolation = { 1, }, cost = { Mana = 7, }, }, - [8] = { 11, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 46, statInterpolation = { 1, }, cost = { Mana = 7, }, }, - [9] = { 11, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 48, statInterpolation = { 1, }, cost = { Mana = 7, }, }, - [10] = { 11, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 50, statInterpolation = { 1, }, cost = { Mana = 8, }, }, - [11] = { 12, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 52, statInterpolation = { 1, }, cost = { Mana = 8, }, }, - [12] = { 12, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 54, statInterpolation = { 1, }, cost = { Mana = 8, }, }, - [13] = { 13, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 56, statInterpolation = { 1, }, cost = { Mana = 8, }, }, - [14] = { 13, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 58, statInterpolation = { 1, }, cost = { Mana = 8, }, }, - [15] = { 13, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 60, statInterpolation = { 1, }, cost = { Mana = 8, }, }, - [16] = { 14, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 62, statInterpolation = { 1, }, cost = { Mana = 8, }, }, - [17] = { 14, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 64, statInterpolation = { 1, }, cost = { Mana = 8, }, }, - [18] = { 15, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 66, statInterpolation = { 1, }, cost = { Mana = 9, }, }, - [19] = { 15, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 68, statInterpolation = { 1, }, cost = { Mana = 9, }, }, - [20] = { 15, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 70, statInterpolation = { 1, }, cost = { Mana = 9, }, }, - [21] = { 16, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 72, statInterpolation = { 1, }, cost = { Mana = 9, }, }, - [22] = { 16, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 74, statInterpolation = { 1, }, cost = { Mana = 9, }, }, - [23] = { 16, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 76, statInterpolation = { 1, }, cost = { Mana = 9, }, }, - [24] = { 17, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 78, statInterpolation = { 1, }, cost = { Mana = 9, }, }, - [25] = { 17, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 80, statInterpolation = { 1, }, cost = { Mana = 9, }, }, - [26] = { 18, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 82, statInterpolation = { 1, }, cost = { Mana = 9, }, }, - [27] = { 18, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 84, statInterpolation = { 1, }, cost = { Mana = 10, }, }, - [28] = { 18, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 86, statInterpolation = { 1, }, cost = { Mana = 10, }, }, - [29] = { 19, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 88, statInterpolation = { 1, }, cost = { Mana = 10, }, }, - [30] = { 19, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 90, statInterpolation = { 1, }, cost = { Mana = 10, }, }, - [31] = { 19, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 91, statInterpolation = { 1, }, cost = { Mana = 10, }, }, - [32] = { 20, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 92, statInterpolation = { 1, }, cost = { Mana = 10, }, }, - [33] = { 20, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 93, statInterpolation = { 1, }, cost = { Mana = 10, }, }, - [34] = { 20, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 94, statInterpolation = { 1, }, cost = { Mana = 10, }, }, - [35] = { 20, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 95, statInterpolation = { 1, }, cost = { Mana = 10, }, }, - [36] = { 20, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 96, statInterpolation = { 1, }, cost = { Mana = 10, }, }, - [37] = { 20, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 97, statInterpolation = { 1, }, cost = { Mana = 10, }, }, - [38] = { 21, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 98, statInterpolation = { 1, }, cost = { Mana = 10, }, }, - [39] = { 21, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 99, statInterpolation = { 1, }, cost = { Mana = 10, }, }, - [40] = { 21, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 100, statInterpolation = { 1, }, cost = { Mana = 10, }, }, + [1] = { 10, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 28, statInterpolation = { 1, }, cost = { Mana = 6, }, }, + [2] = { 10, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 31, statInterpolation = { 1, }, cost = { Mana = 7, }, }, + [3] = { 11, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 34, statInterpolation = { 1, }, cost = { Mana = 7, }, }, + [4] = { 11, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 37, statInterpolation = { 1, }, cost = { Mana = 7, }, }, + [5] = { 12, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 40, statInterpolation = { 1, }, cost = { Mana = 7, }, }, + [6] = { 12, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 42, statInterpolation = { 1, }, cost = { Mana = 7, }, }, + [7] = { 12, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 44, statInterpolation = { 1, }, cost = { Mana = 7, }, }, + [8] = { 13, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 46, statInterpolation = { 1, }, cost = { Mana = 7, }, }, + [9] = { 13, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 48, statInterpolation = { 1, }, cost = { Mana = 7, }, }, + [10] = { 13, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 50, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [11] = { 14, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 52, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [12] = { 14, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 54, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [13] = { 15, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 56, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [14] = { 15, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 58, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [15] = { 15, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 60, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [16] = { 16, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 62, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [17] = { 16, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 64, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [18] = { 17, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 66, statInterpolation = { 1, }, cost = { Mana = 9, }, }, + [19] = { 17, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 68, statInterpolation = { 1, }, cost = { Mana = 9, }, }, + [20] = { 17, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 70, statInterpolation = { 1, }, cost = { Mana = 9, }, }, + [21] = { 18, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 72, statInterpolation = { 1, }, cost = { Mana = 9, }, }, + [22] = { 18, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 74, statInterpolation = { 1, }, cost = { Mana = 9, }, }, + [23] = { 18, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 76, statInterpolation = { 1, }, cost = { Mana = 9, }, }, + [24] = { 19, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 78, statInterpolation = { 1, }, cost = { Mana = 9, }, }, + [25] = { 19, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 80, statInterpolation = { 1, }, cost = { Mana = 9, }, }, + [26] = { 20, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 82, statInterpolation = { 1, }, cost = { Mana = 9, }, }, + [27] = { 20, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 84, statInterpolation = { 1, }, cost = { Mana = 10, }, }, + [28] = { 20, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 86, statInterpolation = { 1, }, cost = { Mana = 10, }, }, + [29] = { 21, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 88, statInterpolation = { 1, }, cost = { Mana = 10, }, }, + [30] = { 21, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 90, statInterpolation = { 1, }, cost = { Mana = 10, }, }, + [31] = { 21, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 91, statInterpolation = { 1, }, cost = { Mana = 10, }, }, + [32] = { 22, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 92, statInterpolation = { 1, }, cost = { Mana = 10, }, }, + [33] = { 22, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 93, statInterpolation = { 1, }, cost = { Mana = 10, }, }, + [34] = { 22, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 94, statInterpolation = { 1, }, cost = { Mana = 10, }, }, + [35] = { 22, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 95, statInterpolation = { 1, }, cost = { Mana = 10, }, }, + [36] = { 22, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 96, statInterpolation = { 1, }, cost = { Mana = 10, }, }, + [37] = { 22, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 97, statInterpolation = { 1, }, cost = { Mana = 10, }, }, + [38] = { 23, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 98, statInterpolation = { 1, }, cost = { Mana = 10, }, }, + [39] = { 23, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 99, statInterpolation = { 1, }, cost = { Mana = 10, }, }, + [40] = { 23, PvPDamageMultiplier = -30, attackSpeedMultiplier = 15, levelRequirement = 100, statInterpolation = { 1, }, cost = { Mana = 10, }, }, }, } skills["KineticBolt"] = { @@ -11038,7 +10990,7 @@ skills["KineticBolt"] = { baseTypeName = "Kinetic Bolt", color = 3, description = "Fire a projectile from your wand that changes direction in a zig-zag pattern at regular intervals or when hitting enemies. Each time it changes direction, a secondary projectile breaks off, flying in the direction it changed away from.", - skillTypes = { [SkillType.Attack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Totemable] = true, [SkillType.RangedAttack] = true, [SkillType.Triggerable] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Totemable] = true, [SkillType.RangedAttack] = true, [SkillType.Triggerable] = true, [SkillType.WandAttack] = true, }, weaponTypes = { ["Wand"] = true, }, @@ -11111,7 +11063,7 @@ skills["KineticBoltAltX"] = { baseTypeName = "Kinetic Bolt of Fragmentation", color = 3, description = "Fire a projectile from your wand that changes direction in a zig-zag pattern at regular intervals or when hitting enemies. Each time it changes direction, a secondary projectile breaks off, flying in the direction it changed away from. Multiple of these projectiles can hit the same target.", - skillTypes = { [SkillType.Attack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Totemable] = true, [SkillType.RangedAttack] = true, [SkillType.Triggerable] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Totemable] = true, [SkillType.RangedAttack] = true, [SkillType.Triggerable] = true, [SkillType.WandAttack] = true, }, weaponTypes = { ["Wand"] = true, }, @@ -11127,7 +11079,7 @@ skills["KineticBoltAltX"] = { }, }, constantStats = { - { "kinetic_wand_base_number_of_zig_zags", 2 }, + { "kinetic_wand_base_number_of_zig_zags", 3 }, { "number_of_additional_projectiles", 2 }, }, stats = { @@ -11137,46 +11089,362 @@ skills["KineticBoltAltX"] = { "projectiles_can_shotgun", }, levels = { - [1] = { attackSpeedMultiplier = 15, baseMultiplier = 0.6, damageEffectiveness = 0.6, levelRequirement = 1, cost = { Mana = 5, }, }, - [2] = { attackSpeedMultiplier = 15, baseMultiplier = 0.613, damageEffectiveness = 0.613, levelRequirement = 2, cost = { Mana = 5, }, }, - [3] = { attackSpeedMultiplier = 15, baseMultiplier = 0.626, damageEffectiveness = 0.626, levelRequirement = 4, cost = { Mana = 5, }, }, - [4] = { attackSpeedMultiplier = 15, baseMultiplier = 0.639, damageEffectiveness = 0.639, levelRequirement = 7, cost = { Mana = 5, }, }, - [5] = { attackSpeedMultiplier = 15, baseMultiplier = 0.653, damageEffectiveness = 0.653, levelRequirement = 11, cost = { Mana = 5, }, }, - [6] = { attackSpeedMultiplier = 15, baseMultiplier = 0.666, damageEffectiveness = 0.666, levelRequirement = 16, cost = { Mana = 6, }, }, - [7] = { attackSpeedMultiplier = 15, baseMultiplier = 0.679, damageEffectiveness = 0.679, levelRequirement = 20, cost = { Mana = 6, }, }, - [8] = { attackSpeedMultiplier = 15, baseMultiplier = 0.692, damageEffectiveness = 0.692, levelRequirement = 24, cost = { Mana = 6, }, }, - [9] = { attackSpeedMultiplier = 15, baseMultiplier = 0.705, damageEffectiveness = 0.705, levelRequirement = 28, cost = { Mana = 6, }, }, - [10] = { attackSpeedMultiplier = 15, baseMultiplier = 0.718, damageEffectiveness = 0.718, levelRequirement = 32, cost = { Mana = 7, }, }, - [11] = { attackSpeedMultiplier = 15, baseMultiplier = 0.732, damageEffectiveness = 0.732, levelRequirement = 36, cost = { Mana = 7, }, }, - [12] = { attackSpeedMultiplier = 15, baseMultiplier = 0.745, damageEffectiveness = 0.745, levelRequirement = 40, cost = { Mana = 7, }, }, - [13] = { attackSpeedMultiplier = 15, baseMultiplier = 0.758, damageEffectiveness = 0.758, levelRequirement = 44, cost = { Mana = 7, }, }, - [14] = { attackSpeedMultiplier = 15, baseMultiplier = 0.771, damageEffectiveness = 0.771, levelRequirement = 48, cost = { Mana = 7, }, }, - [15] = { attackSpeedMultiplier = 15, baseMultiplier = 0.784, damageEffectiveness = 0.784, levelRequirement = 52, cost = { Mana = 8, }, }, - [16] = { attackSpeedMultiplier = 15, baseMultiplier = 0.797, damageEffectiveness = 0.797, levelRequirement = 56, cost = { Mana = 8, }, }, - [17] = { attackSpeedMultiplier = 15, baseMultiplier = 0.811, damageEffectiveness = 0.811, levelRequirement = 60, cost = { Mana = 8, }, }, - [18] = { attackSpeedMultiplier = 15, baseMultiplier = 0.824, damageEffectiveness = 0.824, levelRequirement = 64, cost = { Mana = 8, }, }, - [19] = { attackSpeedMultiplier = 15, baseMultiplier = 0.837, damageEffectiveness = 0.837, levelRequirement = 67, cost = { Mana = 9, }, }, - [20] = { attackSpeedMultiplier = 15, baseMultiplier = 0.85, damageEffectiveness = 0.85, levelRequirement = 70, cost = { Mana = 9, }, }, - [21] = { attackSpeedMultiplier = 15, baseMultiplier = 0.863, damageEffectiveness = 0.863, levelRequirement = 72, cost = { Mana = 9, }, }, - [22] = { attackSpeedMultiplier = 15, baseMultiplier = 0.876, damageEffectiveness = 0.876, levelRequirement = 74, cost = { Mana = 9, }, }, - [23] = { attackSpeedMultiplier = 15, baseMultiplier = 0.889, damageEffectiveness = 0.889, levelRequirement = 76, cost = { Mana = 9, }, }, - [24] = { attackSpeedMultiplier = 15, baseMultiplier = 0.903, damageEffectiveness = 0.903, levelRequirement = 78, cost = { Mana = 9, }, }, - [25] = { attackSpeedMultiplier = 15, baseMultiplier = 0.916, damageEffectiveness = 0.916, levelRequirement = 80, cost = { Mana = 9, }, }, - [26] = { attackSpeedMultiplier = 15, baseMultiplier = 0.929, damageEffectiveness = 0.929, levelRequirement = 82, cost = { Mana = 9, }, }, - [27] = { attackSpeedMultiplier = 15, baseMultiplier = 0.942, damageEffectiveness = 0.942, levelRequirement = 84, cost = { Mana = 10, }, }, - [28] = { attackSpeedMultiplier = 15, baseMultiplier = 0.955, damageEffectiveness = 0.955, levelRequirement = 86, cost = { Mana = 10, }, }, - [29] = { attackSpeedMultiplier = 15, baseMultiplier = 0.968, damageEffectiveness = 0.968, levelRequirement = 88, cost = { Mana = 10, }, }, - [30] = { attackSpeedMultiplier = 15, baseMultiplier = 0.982, damageEffectiveness = 0.982, levelRequirement = 90, cost = { Mana = 10, }, }, - [31] = { attackSpeedMultiplier = 15, baseMultiplier = 0.988, damageEffectiveness = 0.988, levelRequirement = 91, cost = { Mana = 10, }, }, - [32] = { attackSpeedMultiplier = 15, baseMultiplier = 0.995, damageEffectiveness = 0.995, levelRequirement = 92, cost = { Mana = 10, }, }, - [33] = { attackSpeedMultiplier = 15, baseMultiplier = 1.001, damageEffectiveness = 1.001, levelRequirement = 93, cost = { Mana = 10, }, }, - [34] = { attackSpeedMultiplier = 15, baseMultiplier = 1.008, damageEffectiveness = 1.008, levelRequirement = 94, cost = { Mana = 10, }, }, - [35] = { attackSpeedMultiplier = 15, baseMultiplier = 1.014, damageEffectiveness = 1.014, levelRequirement = 95, cost = { Mana = 10, }, }, - [36] = { attackSpeedMultiplier = 15, baseMultiplier = 1.021, damageEffectiveness = 1.021, levelRequirement = 96, cost = { Mana = 10, }, }, - [37] = { attackSpeedMultiplier = 15, baseMultiplier = 1.028, damageEffectiveness = 1.028, levelRequirement = 97, cost = { Mana = 10, }, }, - [38] = { attackSpeedMultiplier = 15, baseMultiplier = 1.034, damageEffectiveness = 1.034, levelRequirement = 98, cost = { Mana = 10, }, }, - [39] = { attackSpeedMultiplier = 15, baseMultiplier = 1.041, damageEffectiveness = 1.041, levelRequirement = 99, cost = { Mana = 10, }, }, - [40] = { attackSpeedMultiplier = 15, baseMultiplier = 1.047, damageEffectiveness = 1.047, levelRequirement = 100, cost = { Mana = 10, }, }, + [1] = { attackSpeedMultiplier = 15, baseMultiplier = 0.7, damageEffectiveness = 0.7, levelRequirement = 1, cost = { Mana = 5, }, }, + [2] = { attackSpeedMultiplier = 15, baseMultiplier = 0.713, damageEffectiveness = 0.713, levelRequirement = 2, cost = { Mana = 5, }, }, + [3] = { attackSpeedMultiplier = 15, baseMultiplier = 0.726, damageEffectiveness = 0.726, levelRequirement = 4, cost = { Mana = 5, }, }, + [4] = { attackSpeedMultiplier = 15, baseMultiplier = 0.739, damageEffectiveness = 0.739, levelRequirement = 7, cost = { Mana = 5, }, }, + [5] = { attackSpeedMultiplier = 15, baseMultiplier = 0.753, damageEffectiveness = 0.753, levelRequirement = 11, cost = { Mana = 5, }, }, + [6] = { attackSpeedMultiplier = 15, baseMultiplier = 0.766, damageEffectiveness = 0.766, levelRequirement = 16, cost = { Mana = 6, }, }, + [7] = { attackSpeedMultiplier = 15, baseMultiplier = 0.779, damageEffectiveness = 0.779, levelRequirement = 20, cost = { Mana = 6, }, }, + [8] = { attackSpeedMultiplier = 15, baseMultiplier = 0.792, damageEffectiveness = 0.792, levelRequirement = 24, cost = { Mana = 6, }, }, + [9] = { attackSpeedMultiplier = 15, baseMultiplier = 0.805, damageEffectiveness = 0.805, levelRequirement = 28, cost = { Mana = 6, }, }, + [10] = { attackSpeedMultiplier = 15, baseMultiplier = 0.818, damageEffectiveness = 0.818, levelRequirement = 32, cost = { Mana = 7, }, }, + [11] = { attackSpeedMultiplier = 15, baseMultiplier = 0.832, damageEffectiveness = 0.832, levelRequirement = 36, cost = { Mana = 7, }, }, + [12] = { attackSpeedMultiplier = 15, baseMultiplier = 0.845, damageEffectiveness = 0.845, levelRequirement = 40, cost = { Mana = 7, }, }, + [13] = { attackSpeedMultiplier = 15, baseMultiplier = 0.858, damageEffectiveness = 0.858, levelRequirement = 44, cost = { Mana = 7, }, }, + [14] = { attackSpeedMultiplier = 15, baseMultiplier = 0.871, damageEffectiveness = 0.871, levelRequirement = 48, cost = { Mana = 7, }, }, + [15] = { attackSpeedMultiplier = 15, baseMultiplier = 0.884, damageEffectiveness = 0.884, levelRequirement = 52, cost = { Mana = 8, }, }, + [16] = { attackSpeedMultiplier = 15, baseMultiplier = 0.897, damageEffectiveness = 0.897, levelRequirement = 56, cost = { Mana = 8, }, }, + [17] = { attackSpeedMultiplier = 15, baseMultiplier = 0.911, damageEffectiveness = 0.911, levelRequirement = 60, cost = { Mana = 8, }, }, + [18] = { attackSpeedMultiplier = 15, baseMultiplier = 0.924, damageEffectiveness = 0.924, levelRequirement = 64, cost = { Mana = 8, }, }, + [19] = { attackSpeedMultiplier = 15, baseMultiplier = 0.937, damageEffectiveness = 0.937, levelRequirement = 67, cost = { Mana = 9, }, }, + [20] = { attackSpeedMultiplier = 15, baseMultiplier = 0.95, damageEffectiveness = 0.95, levelRequirement = 70, cost = { Mana = 9, }, }, + [21] = { attackSpeedMultiplier = 15, baseMultiplier = 0.963, damageEffectiveness = 0.963, levelRequirement = 72, cost = { Mana = 9, }, }, + [22] = { attackSpeedMultiplier = 15, baseMultiplier = 0.976, damageEffectiveness = 0.976, levelRequirement = 74, cost = { Mana = 9, }, }, + [23] = { attackSpeedMultiplier = 15, baseMultiplier = 0.989, damageEffectiveness = 0.989, levelRequirement = 76, cost = { Mana = 9, }, }, + [24] = { attackSpeedMultiplier = 15, baseMultiplier = 1.003, damageEffectiveness = 1.003, levelRequirement = 78, cost = { Mana = 9, }, }, + [25] = { attackSpeedMultiplier = 15, baseMultiplier = 1.016, damageEffectiveness = 1.016, levelRequirement = 80, cost = { Mana = 9, }, }, + [26] = { attackSpeedMultiplier = 15, baseMultiplier = 1.029, damageEffectiveness = 1.029, levelRequirement = 82, cost = { Mana = 9, }, }, + [27] = { attackSpeedMultiplier = 15, baseMultiplier = 1.042, damageEffectiveness = 1.042, levelRequirement = 84, cost = { Mana = 10, }, }, + [28] = { attackSpeedMultiplier = 15, baseMultiplier = 1.055, damageEffectiveness = 1.055, levelRequirement = 86, cost = { Mana = 10, }, }, + [29] = { attackSpeedMultiplier = 15, baseMultiplier = 1.068, damageEffectiveness = 1.068, levelRequirement = 88, cost = { Mana = 10, }, }, + [30] = { attackSpeedMultiplier = 15, baseMultiplier = 1.082, damageEffectiveness = 1.082, levelRequirement = 90, cost = { Mana = 10, }, }, + [31] = { attackSpeedMultiplier = 15, baseMultiplier = 1.088, damageEffectiveness = 1.088, levelRequirement = 91, cost = { Mana = 10, }, }, + [32] = { attackSpeedMultiplier = 15, baseMultiplier = 1.095, damageEffectiveness = 1.095, levelRequirement = 92, cost = { Mana = 10, }, }, + [33] = { attackSpeedMultiplier = 15, baseMultiplier = 1.101, damageEffectiveness = 1.101, levelRequirement = 93, cost = { Mana = 10, }, }, + [34] = { attackSpeedMultiplier = 15, baseMultiplier = 1.108, damageEffectiveness = 1.108, levelRequirement = 94, cost = { Mana = 10, }, }, + [35] = { attackSpeedMultiplier = 15, baseMultiplier = 1.114, damageEffectiveness = 1.114, levelRequirement = 95, cost = { Mana = 10, }, }, + [36] = { attackSpeedMultiplier = 15, baseMultiplier = 1.121, damageEffectiveness = 1.121, levelRequirement = 96, cost = { Mana = 10, }, }, + [37] = { attackSpeedMultiplier = 15, baseMultiplier = 1.128, damageEffectiveness = 1.128, levelRequirement = 97, cost = { Mana = 10, }, }, + [38] = { attackSpeedMultiplier = 15, baseMultiplier = 1.134, damageEffectiveness = 1.134, levelRequirement = 98, cost = { Mana = 10, }, }, + [39] = { attackSpeedMultiplier = 15, baseMultiplier = 1.141, damageEffectiveness = 1.141, levelRequirement = 99, cost = { Mana = 10, }, }, + [40] = { attackSpeedMultiplier = 15, baseMultiplier = 1.147, damageEffectiveness = 1.147, levelRequirement = 100, cost = { Mana = 10, }, }, + }, +} +skills["KineticFusillade"] = { + name = "Kinetic Fusillade", + baseTypeName = "Kinetic Fusillade", + color = 3, + description = "Wave your wand to create a hovering kinetic projectile. After a short duration, the projectile is fired at an enemy, dealing area damage on impact and chaining to further targets. Using this attack again will reset the duration for all hovering projectiles. Multiple projectiles fired in sequence will attempt to target different enemies. Cannot be directly used by traps or mines.", + skillTypes = { [SkillType.Attack] = true, [SkillType.Triggerable] = true, [SkillType.Projectile] = true, [SkillType.RangedAttack] = true, [SkillType.WandAttack] = true, [SkillType.Duration] = true, [SkillType.Totemable] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Area] = true, }, + weaponTypes = { + ["Wand"] = true, + }, + statDescriptionScope = "skill_stat_descriptions", + castTime = 1, + baseFlags = { + attack = true, + projectile = true, + area = true, + duration = true, + }, + qualityStats = { + Default = { + { "kinetic_fusillade_damage_+%_final_per_projectile_fired", 0.2 }, + }, + }, + constantStats = { + { "base_skill_effect_duration", 700 }, + { "number_of_chains", 3 }, + { "kinetic_fusillade_base_delay_between_projectiles_ms", 50 }, + { "kinetic_fusillade_subsequent_targeting_radius", 30 }, + { "kinetic_fusillade_maximum_floating_projectiles", 12 }, + { "active_skill_additive_spell_damage_modifiers_apply_to_attack_damage_at_%_value", 150 }, + { "active_skill_base_area_of_effect_radius", 12 }, + }, + stats = { + "kinetic_fusillade_damage_+%_final_per_projectile_fired", + "skill_can_fire_wand_projectiles", + "is_area_damage", + "projectile_uses_contact_position", + "quality_display_spell_damage_to_attack_damage_is_gem", + "quality_display_kinetic_fusillade_is_gem", + }, + levels = { + [1] = { 3, attackSpeedMultiplier = 100, baseMultiplier = 0.935, damageEffectiveness = 0.935, levelRequirement = 12, statInterpolation = { 1, }, cost = { Mana = 4, }, }, + [2] = { 3, attackSpeedMultiplier = 100, baseMultiplier = 0.942, damageEffectiveness = 0.942, levelRequirement = 15, statInterpolation = { 1, }, cost = { Mana = 4, }, }, + [3] = { 3, attackSpeedMultiplier = 100, baseMultiplier = 0.949, damageEffectiveness = 0.949, levelRequirement = 19, statInterpolation = { 1, }, cost = { Mana = 4, }, }, + [4] = { 4, attackSpeedMultiplier = 100, baseMultiplier = 0.956, damageEffectiveness = 0.956, levelRequirement = 23, statInterpolation = { 1, }, cost = { Mana = 4, }, }, + [5] = { 4, attackSpeedMultiplier = 100, baseMultiplier = 0.963, damageEffectiveness = 0.963, levelRequirement = 27, statInterpolation = { 1, }, cost = { Mana = 4, }, }, + [6] = { 4, attackSpeedMultiplier = 100, baseMultiplier = 0.971, damageEffectiveness = 0.971, levelRequirement = 31, statInterpolation = { 1, }, cost = { Mana = 4, }, }, + [7] = { 4, attackSpeedMultiplier = 100, baseMultiplier = 0.978, damageEffectiveness = 0.978, levelRequirement = 35, statInterpolation = { 1, }, cost = { Mana = 4, }, }, + [8] = { 5, attackSpeedMultiplier = 100, baseMultiplier = 0.985, damageEffectiveness = 0.985, levelRequirement = 38, statInterpolation = { 1, }, cost = { Mana = 5, }, }, + [9] = { 5, attackSpeedMultiplier = 100, baseMultiplier = 0.992, damageEffectiveness = 0.992, levelRequirement = 41, statInterpolation = { 1, }, cost = { Mana = 5, }, }, + [10] = { 5, attackSpeedMultiplier = 100, baseMultiplier = 0.999, damageEffectiveness = 0.999, levelRequirement = 44, statInterpolation = { 1, }, cost = { Mana = 5, }, }, + [11] = { 5, attackSpeedMultiplier = 100, baseMultiplier = 1.006, damageEffectiveness = 1.006, levelRequirement = 47, statInterpolation = { 1, }, cost = { Mana = 5, }, }, + [12] = { 6, attackSpeedMultiplier = 100, baseMultiplier = 1.013, damageEffectiveness = 1.013, levelRequirement = 50, statInterpolation = { 1, }, cost = { Mana = 5, }, }, + [13] = { 6, attackSpeedMultiplier = 100, baseMultiplier = 1.02, damageEffectiveness = 1.02, levelRequirement = 53, statInterpolation = { 1, }, cost = { Mana = 5, }, }, + [14] = { 6, attackSpeedMultiplier = 100, baseMultiplier = 1.027, damageEffectiveness = 1.027, levelRequirement = 56, statInterpolation = { 1, }, cost = { Mana = 5, }, }, + [15] = { 6, attackSpeedMultiplier = 100, baseMultiplier = 1.034, damageEffectiveness = 1.034, levelRequirement = 59, statInterpolation = { 1, }, cost = { Mana = 6, }, }, + [16] = { 7, attackSpeedMultiplier = 100, baseMultiplier = 1.042, damageEffectiveness = 1.042, levelRequirement = 62, statInterpolation = { 1, }, cost = { Mana = 6, }, }, + [17] = { 7, attackSpeedMultiplier = 100, baseMultiplier = 1.049, damageEffectiveness = 1.049, levelRequirement = 64, statInterpolation = { 1, }, cost = { Mana = 6, }, }, + [18] = { 7, attackSpeedMultiplier = 100, baseMultiplier = 1.056, damageEffectiveness = 1.056, levelRequirement = 66, statInterpolation = { 1, }, cost = { Mana = 6, }, }, + [19] = { 7, attackSpeedMultiplier = 100, baseMultiplier = 1.063, damageEffectiveness = 1.063, levelRequirement = 68, statInterpolation = { 1, }, cost = { Mana = 6, }, }, + [20] = { 8, attackSpeedMultiplier = 100, baseMultiplier = 1.07, damageEffectiveness = 1.07, levelRequirement = 70, statInterpolation = { 1, }, cost = { Mana = 6, }, }, + [21] = { 8, attackSpeedMultiplier = 100, baseMultiplier = 1.077, damageEffectiveness = 1.077, levelRequirement = 72, statInterpolation = { 1, }, cost = { Mana = 6, }, }, + [22] = { 8, attackSpeedMultiplier = 100, baseMultiplier = 1.084, damageEffectiveness = 1.084, levelRequirement = 74, statInterpolation = { 1, }, cost = { Mana = 7, }, }, + [23] = { 8, attackSpeedMultiplier = 100, baseMultiplier = 1.091, damageEffectiveness = 1.091, levelRequirement = 76, statInterpolation = { 1, }, cost = { Mana = 7, }, }, + [24] = { 9, attackSpeedMultiplier = 100, baseMultiplier = 1.098, damageEffectiveness = 1.098, levelRequirement = 78, statInterpolation = { 1, }, cost = { Mana = 7, }, }, + [25] = { 9, attackSpeedMultiplier = 100, baseMultiplier = 1.106, damageEffectiveness = 1.106, levelRequirement = 80, statInterpolation = { 1, }, cost = { Mana = 7, }, }, + [26] = { 9, attackSpeedMultiplier = 100, baseMultiplier = 1.113, damageEffectiveness = 1.113, levelRequirement = 82, statInterpolation = { 1, }, cost = { Mana = 7, }, }, + [27] = { 9, attackSpeedMultiplier = 100, baseMultiplier = 1.12, damageEffectiveness = 1.12, levelRequirement = 84, statInterpolation = { 1, }, cost = { Mana = 7, }, }, + [28] = { 9, attackSpeedMultiplier = 100, baseMultiplier = 1.127, damageEffectiveness = 1.127, levelRequirement = 86, statInterpolation = { 1, }, cost = { Mana = 7, }, }, + [29] = { 10, attackSpeedMultiplier = 100, baseMultiplier = 1.134, damageEffectiveness = 1.134, levelRequirement = 88, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [30] = { 10, attackSpeedMultiplier = 100, baseMultiplier = 1.141, damageEffectiveness = 1.141, levelRequirement = 90, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [31] = { 10, attackSpeedMultiplier = 100, baseMultiplier = 1.145, damageEffectiveness = 1.145, levelRequirement = 91, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [32] = { 10, attackSpeedMultiplier = 100, baseMultiplier = 1.148, damageEffectiveness = 1.148, levelRequirement = 92, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [33] = { 11, attackSpeedMultiplier = 100, baseMultiplier = 1.152, damageEffectiveness = 1.152, levelRequirement = 93, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [34] = { 11, attackSpeedMultiplier = 100, baseMultiplier = 1.155, damageEffectiveness = 1.155, levelRequirement = 94, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [35] = { 11, attackSpeedMultiplier = 100, baseMultiplier = 1.159, damageEffectiveness = 1.159, levelRequirement = 95, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [36] = { 11, attackSpeedMultiplier = 100, baseMultiplier = 1.162, damageEffectiveness = 1.162, levelRequirement = 96, statInterpolation = { 1, }, cost = { Mana = 9, }, }, + [37] = { 12, attackSpeedMultiplier = 100, baseMultiplier = 1.166, damageEffectiveness = 1.166, levelRequirement = 97, statInterpolation = { 1, }, cost = { Mana = 9, }, }, + [38] = { 12, attackSpeedMultiplier = 100, baseMultiplier = 1.169, damageEffectiveness = 1.169, levelRequirement = 98, statInterpolation = { 1, }, cost = { Mana = 9, }, }, + [39] = { 12, attackSpeedMultiplier = 100, baseMultiplier = 1.173, damageEffectiveness = 1.173, levelRequirement = 99, statInterpolation = { 1, }, cost = { Mana = 9, }, }, + [40] = { 12, attackSpeedMultiplier = 100, baseMultiplier = 1.177, damageEffectiveness = 1.177, levelRequirement = 100, statInterpolation = { 1, }, cost = { Mana = 9, }, }, + }, +} +skills["KineticRain"] = { + name = "Kinetic Rain", + baseTypeName = "Kinetic Rain", + color = 3, + description = "Swing your wand to cause a number of projectiles to rain down within a large area in front of you, directly targeting the locations of enemies in the area. The locations where each projectile will land are shown with markers before they fall. Each projectile explodes when hitting the ground, dealing area damage and triggering Kinetic Anomaly. Cannot be used by Totems, Traps, or Mines.", + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Projectile] = true, [SkillType.WandAttack] = true, [SkillType.RangedAttack] = true, [SkillType.Rain] = true, }, + weaponTypes = { + ["Wand"] = true, + }, + statDescriptionScope = "skill_stat_descriptions", + castTime = 1, + baseFlags = { + attack = true, + projectile = true, + area = true, + }, + qualityStats = { + Default = { + { "base_number_of_projectiles", 0.1 }, + }, + }, + constantStats = { + { "active_skill_base_area_of_effect_radius", 90 }, + { "active_skill_area_of_effect_description_mode", 8 }, + { "active_skill_base_secondary_area_of_effect_radius", 45 }, + { "active_skill_secondary_area_of_effect_description_mode", 8 }, + { "active_skill_base_tertiary_area_of_effect_radius", 12 }, + { "active_skill_tertiary_area_of_effect_description_mode", 1 }, + { "active_skill_additive_spell_damage_modifiers_apply_to_attack_damage_at_%_value", 150 }, + }, + stats = { + "base_number_of_projectiles", + "is_area_damage", + "base_is_projectile", + "quality_display_base_number_of_projectiles_is_gem", + "skill_can_fire_wand_projectiles", + "quality_display_spell_damage_to_attack_damage_is_gem", + }, + levels = { + [1] = { 8, baseMultiplier = 0.2, damageEffectiveness = 0.2, levelRequirement = 28, statInterpolation = { 1, }, cost = { Mana = 7, }, }, + [2] = { 8, baseMultiplier = 0.203, damageEffectiveness = 0.203, levelRequirement = 31, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [3] = { 8, baseMultiplier = 0.205, damageEffectiveness = 0.205, levelRequirement = 34, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [4] = { 8, baseMultiplier = 0.208, damageEffectiveness = 0.208, levelRequirement = 37, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [5] = { 8, baseMultiplier = 0.211, damageEffectiveness = 0.211, levelRequirement = 40, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [6] = { 8, baseMultiplier = 0.213, damageEffectiveness = 0.213, levelRequirement = 42, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [7] = { 8, baseMultiplier = 0.216, damageEffectiveness = 0.216, levelRequirement = 44, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [8] = { 8, baseMultiplier = 0.218, damageEffectiveness = 0.218, levelRequirement = 46, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [9] = { 8, baseMultiplier = 0.221, damageEffectiveness = 0.221, levelRequirement = 48, statInterpolation = { 1, }, cost = { Mana = 9, }, }, + [10] = { 8, baseMultiplier = 0.224, damageEffectiveness = 0.224, levelRequirement = 50, statInterpolation = { 1, }, cost = { Mana = 9, }, }, + [11] = { 8, baseMultiplier = 0.226, damageEffectiveness = 0.226, levelRequirement = 52, statInterpolation = { 1, }, cost = { Mana = 9, }, }, + [12] = { 8, baseMultiplier = 0.229, damageEffectiveness = 0.229, levelRequirement = 54, statInterpolation = { 1, }, cost = { Mana = 9, }, }, + [13] = { 8, baseMultiplier = 0.232, damageEffectiveness = 0.232, levelRequirement = 56, statInterpolation = { 1, }, cost = { Mana = 9, }, }, + [14] = { 8, baseMultiplier = 0.234, damageEffectiveness = 0.234, levelRequirement = 58, statInterpolation = { 1, }, cost = { Mana = 9, }, }, + [15] = { 8, baseMultiplier = 0.237, damageEffectiveness = 0.237, levelRequirement = 60, statInterpolation = { 1, }, cost = { Mana = 9, }, }, + [16] = { 8, baseMultiplier = 0.239, damageEffectiveness = 0.239, levelRequirement = 62, statInterpolation = { 1, }, cost = { Mana = 10, }, }, + [17] = { 8, baseMultiplier = 0.242, damageEffectiveness = 0.242, levelRequirement = 64, statInterpolation = { 1, }, cost = { Mana = 10, }, }, + [18] = { 8, baseMultiplier = 0.245, damageEffectiveness = 0.245, levelRequirement = 66, statInterpolation = { 1, }, cost = { Mana = 10, }, }, + [19] = { 8, baseMultiplier = 0.247, damageEffectiveness = 0.247, levelRequirement = 68, statInterpolation = { 1, }, cost = { Mana = 10, }, }, + [20] = { 8, baseMultiplier = 0.25, damageEffectiveness = 0.25, levelRequirement = 70, statInterpolation = { 1, }, cost = { Mana = 10, }, }, + [21] = { 8, baseMultiplier = 0.253, damageEffectiveness = 0.253, levelRequirement = 72, statInterpolation = { 1, }, cost = { Mana = 10, }, }, + [22] = { 8, baseMultiplier = 0.255, damageEffectiveness = 0.255, levelRequirement = 74, statInterpolation = { 1, }, cost = { Mana = 10, }, }, + [23] = { 8, baseMultiplier = 0.258, damageEffectiveness = 0.258, levelRequirement = 76, statInterpolation = { 1, }, cost = { Mana = 10, }, }, + [24] = { 8, baseMultiplier = 0.261, damageEffectiveness = 0.261, levelRequirement = 78, statInterpolation = { 1, }, cost = { Mana = 11, }, }, + [25] = { 8, baseMultiplier = 0.263, damageEffectiveness = 0.263, levelRequirement = 80, statInterpolation = { 1, }, cost = { Mana = 11, }, }, + [26] = { 8, baseMultiplier = 0.266, damageEffectiveness = 0.266, levelRequirement = 82, statInterpolation = { 1, }, cost = { Mana = 11, }, }, + [27] = { 8, baseMultiplier = 0.268, damageEffectiveness = 0.268, levelRequirement = 84, statInterpolation = { 1, }, cost = { Mana = 11, }, }, + [28] = { 8, baseMultiplier = 0.271, damageEffectiveness = 0.271, levelRequirement = 86, statInterpolation = { 1, }, cost = { Mana = 11, }, }, + [29] = { 8, baseMultiplier = 0.274, damageEffectiveness = 0.274, levelRequirement = 88, statInterpolation = { 1, }, cost = { Mana = 11, }, }, + [30] = { 8, baseMultiplier = 0.276, damageEffectiveness = 0.276, levelRequirement = 90, statInterpolation = { 1, }, cost = { Mana = 11, }, }, + [31] = { 8, baseMultiplier = 0.278, damageEffectiveness = 0.278, levelRequirement = 91, statInterpolation = { 1, }, cost = { Mana = 11, }, }, + [32] = { 8, baseMultiplier = 0.279, damageEffectiveness = 0.279, levelRequirement = 92, statInterpolation = { 1, }, cost = { Mana = 11, }, }, + [33] = { 8, baseMultiplier = 0.28, damageEffectiveness = 0.28, levelRequirement = 93, statInterpolation = { 1, }, cost = { Mana = 12, }, }, + [34] = { 8, baseMultiplier = 0.282, damageEffectiveness = 0.282, levelRequirement = 94, statInterpolation = { 1, }, cost = { Mana = 12, }, }, + [35] = { 8, baseMultiplier = 0.283, damageEffectiveness = 0.283, levelRequirement = 95, statInterpolation = { 1, }, cost = { Mana = 12, }, }, + [36] = { 8, baseMultiplier = 0.284, damageEffectiveness = 0.284, levelRequirement = 96, statInterpolation = { 1, }, cost = { Mana = 12, }, }, + [37] = { 8, baseMultiplier = 0.286, damageEffectiveness = 0.286, levelRequirement = 97, statInterpolation = { 1, }, cost = { Mana = 12, }, }, + [38] = { 8, baseMultiplier = 0.287, damageEffectiveness = 0.287, levelRequirement = 98, statInterpolation = { 1, }, cost = { Mana = 12, }, }, + [39] = { 8, baseMultiplier = 0.288, damageEffectiveness = 0.288, levelRequirement = 99, statInterpolation = { 1, }, cost = { Mana = 12, }, }, + [40] = { 8, baseMultiplier = 0.289, damageEffectiveness = 0.289, levelRequirement = 100, statInterpolation = { 1, }, cost = { Mana = 12, }, }, + }, +} +skills["KineticRainKineticInstability"] = { + name = "Kinetic Anomaly", + baseTypeName = "Kinetic Anomaly", + color = 3, + description = "Gathers kinetic energy into an anomaly at the targeted location, which will explode when enemies are near it, dealing your wand's damage in an area. The anomaly will dissipate after a duration.", + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Triggerable] = true, [SkillType.Duration] = true, [SkillType.WandAttack] = true, [SkillType.InbuiltTrigger] = true, [SkillType.Triggered] = true, }, + weaponTypes = { + ["Wand"] = true, + }, + statDescriptionScope = "skill_stat_descriptions", + castTime = 1, + baseFlags = { + attack = true, + area = true, + duration = true, + }, + constantStats = { + { "active_skill_base_area_of_effect_radius", 12 }, + { "active_skill_area_of_effect_description_mode", 1 }, + { "base_skill_effect_duration", 6000 }, + { "kinetic_instability_maximum_number_of_instability_orbs_allowed", 30 }, + { "active_skill_additive_spell_damage_modifiers_apply_to_attack_damage_at_%_value", 150 }, + }, + stats = { + "is_area_damage", + "triggered_by_kinetic_rain", + "quality_display_spell_damage_to_attack_damage_is_gem", + }, + levels = { + [1] = { baseMultiplier = 1.32, damageEffectiveness = 1.32, levelRequirement = 28, }, + [2] = { baseMultiplier = 1.329, damageEffectiveness = 1.329, levelRequirement = 31, }, + [3] = { baseMultiplier = 1.339, damageEffectiveness = 1.339, levelRequirement = 34, }, + [4] = { baseMultiplier = 1.348, damageEffectiveness = 1.348, levelRequirement = 37, }, + [5] = { baseMultiplier = 1.358, damageEffectiveness = 1.358, levelRequirement = 40, }, + [6] = { baseMultiplier = 1.367, damageEffectiveness = 1.367, levelRequirement = 42, }, + [7] = { baseMultiplier = 1.377, damageEffectiveness = 1.377, levelRequirement = 44, }, + [8] = { baseMultiplier = 1.386, damageEffectiveness = 1.386, levelRequirement = 46, }, + [9] = { baseMultiplier = 1.396, damageEffectiveness = 1.396, levelRequirement = 48, }, + [10] = { baseMultiplier = 1.405, damageEffectiveness = 1.405, levelRequirement = 50, }, + [11] = { baseMultiplier = 1.415, damageEffectiveness = 1.415, levelRequirement = 52, }, + [12] = { baseMultiplier = 1.424, damageEffectiveness = 1.424, levelRequirement = 54, }, + [13] = { baseMultiplier = 1.434, damageEffectiveness = 1.434, levelRequirement = 56, }, + [14] = { baseMultiplier = 1.443, damageEffectiveness = 1.443, levelRequirement = 58, }, + [15] = { baseMultiplier = 1.453, damageEffectiveness = 1.453, levelRequirement = 60, }, + [16] = { baseMultiplier = 1.462, damageEffectiveness = 1.462, levelRequirement = 62, }, + [17] = { baseMultiplier = 1.472, damageEffectiveness = 1.472, levelRequirement = 64, }, + [18] = { baseMultiplier = 1.481, damageEffectiveness = 1.481, levelRequirement = 66, }, + [19] = { baseMultiplier = 1.491, damageEffectiveness = 1.491, levelRequirement = 68, }, + [20] = { baseMultiplier = 1.5, damageEffectiveness = 1.5, levelRequirement = 70, }, + [21] = { baseMultiplier = 1.509, damageEffectiveness = 1.509, levelRequirement = 72, }, + [22] = { baseMultiplier = 1.519, damageEffectiveness = 1.519, levelRequirement = 74, }, + [23] = { baseMultiplier = 1.528, damageEffectiveness = 1.528, levelRequirement = 76, }, + [24] = { baseMultiplier = 1.538, damageEffectiveness = 1.538, levelRequirement = 78, }, + [25] = { baseMultiplier = 1.547, damageEffectiveness = 1.547, levelRequirement = 80, }, + [26] = { baseMultiplier = 1.557, damageEffectiveness = 1.557, levelRequirement = 82, }, + [27] = { baseMultiplier = 1.566, damageEffectiveness = 1.566, levelRequirement = 84, }, + [28] = { baseMultiplier = 1.576, damageEffectiveness = 1.576, levelRequirement = 86, }, + [29] = { baseMultiplier = 1.585, damageEffectiveness = 1.585, levelRequirement = 88, }, + [30] = { baseMultiplier = 1.595, damageEffectiveness = 1.595, levelRequirement = 90, }, + [31] = { baseMultiplier = 1.599, damageEffectiveness = 1.599, levelRequirement = 91, }, + [32] = { baseMultiplier = 1.604, damageEffectiveness = 1.604, levelRequirement = 92, }, + [33] = { baseMultiplier = 1.609, damageEffectiveness = 1.609, levelRequirement = 93, }, + [34] = { baseMultiplier = 1.614, damageEffectiveness = 1.614, levelRequirement = 94, }, + [35] = { baseMultiplier = 1.618, damageEffectiveness = 1.618, levelRequirement = 95, }, + [36] = { baseMultiplier = 1.623, damageEffectiveness = 1.623, levelRequirement = 96, }, + [37] = { baseMultiplier = 1.628, damageEffectiveness = 1.628, levelRequirement = 97, }, + [38] = { baseMultiplier = 1.633, damageEffectiveness = 1.633, levelRequirement = 98, }, + [39] = { baseMultiplier = 1.637, damageEffectiveness = 1.637, levelRequirement = 99, }, + [40] = { baseMultiplier = 1.642, damageEffectiveness = 1.642, levelRequirement = 100, }, + }, +} +skills["KineticRainAltX"] = { + name = "Kinetic Rain of Impact", + baseTypeName = "Kinetic Rain of Impact", + color = 3, + description = "Swing your wand to cause a number of projectiles to rain down within a large area in front of you, directly targeting the locations of enemies in the area. The locations where each projectile will land are shown with markers before they fall. Each projectile explodes when hitting the ground, dealing area damage.", + skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Projectile] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Triggerable] = true, [SkillType.Totemable] = true, [SkillType.WandAttack] = true, [SkillType.RangedAttack] = true, [SkillType.Rain] = true, }, + weaponTypes = { + ["Wand"] = true, + }, + statDescriptionScope = "skill_stat_descriptions", + skillTotemId = 19, + castTime = 1, + baseFlags = { + attack = true, + projectile = true, + area = true, + }, + qualityStats = { + Default = { + { "base_number_of_projectiles", 0.1 }, + }, + }, + constantStats = { + { "active_skill_base_area_of_effect_radius", 90 }, + { "active_skill_area_of_effect_description_mode", 8 }, + { "active_skill_base_secondary_area_of_effect_radius", 45 }, + { "active_skill_secondary_area_of_effect_description_mode", 8 }, + { "active_skill_base_tertiary_area_of_effect_radius", 12 }, + { "active_skill_tertiary_area_of_effect_description_mode", 1 }, + { "active_skill_additive_spell_damage_modifiers_apply_to_attack_damage_at_%_value", 150 }, + }, + stats = { + "base_number_of_projectiles", + "is_area_damage", + "base_is_projectile", + "quality_display_base_number_of_projectiles_is_gem", + "skill_can_fire_wand_projectiles", + "quality_display_spell_damage_to_attack_damage_is_gem", + }, + levels = { + [1] = { 10, attackSpeedMultiplier = 20, baseMultiplier = 1.2, damageEffectiveness = 1.2, levelRequirement = 28, statInterpolation = { 1, }, cost = { Mana = 6, }, }, + [2] = { 10, attackSpeedMultiplier = 20, baseMultiplier = 1.208, damageEffectiveness = 1.208, levelRequirement = 31, statInterpolation = { 1, }, cost = { Mana = 7, }, }, + [3] = { 10, attackSpeedMultiplier = 20, baseMultiplier = 1.216, damageEffectiveness = 1.216, levelRequirement = 34, statInterpolation = { 1, }, cost = { Mana = 7, }, }, + [4] = { 10, attackSpeedMultiplier = 20, baseMultiplier = 1.224, damageEffectiveness = 1.224, levelRequirement = 37, statInterpolation = { 1, }, cost = { Mana = 7, }, }, + [5] = { 10, attackSpeedMultiplier = 20, baseMultiplier = 1.232, damageEffectiveness = 1.232, levelRequirement = 40, statInterpolation = { 1, }, cost = { Mana = 7, }, }, + [6] = { 10, attackSpeedMultiplier = 20, baseMultiplier = 1.239, damageEffectiveness = 1.239, levelRequirement = 42, statInterpolation = { 1, }, cost = { Mana = 7, }, }, + [7] = { 10, attackSpeedMultiplier = 20, baseMultiplier = 1.247, damageEffectiveness = 1.247, levelRequirement = 44, statInterpolation = { 1, }, cost = { Mana = 7, }, }, + [8] = { 10, attackSpeedMultiplier = 20, baseMultiplier = 1.255, damageEffectiveness = 1.255, levelRequirement = 46, statInterpolation = { 1, }, cost = { Mana = 7, }, }, + [9] = { 10, attackSpeedMultiplier = 20, baseMultiplier = 1.263, damageEffectiveness = 1.263, levelRequirement = 48, statInterpolation = { 1, }, cost = { Mana = 7, }, }, + [10] = { 10, attackSpeedMultiplier = 20, baseMultiplier = 1.271, damageEffectiveness = 1.271, levelRequirement = 50, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [11] = { 10, attackSpeedMultiplier = 20, baseMultiplier = 1.279, damageEffectiveness = 1.279, levelRequirement = 52, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [12] = { 10, attackSpeedMultiplier = 20, baseMultiplier = 1.287, damageEffectiveness = 1.287, levelRequirement = 54, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [13] = { 10, attackSpeedMultiplier = 20, baseMultiplier = 1.295, damageEffectiveness = 1.295, levelRequirement = 56, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [14] = { 10, attackSpeedMultiplier = 20, baseMultiplier = 1.303, damageEffectiveness = 1.303, levelRequirement = 58, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [15] = { 10, attackSpeedMultiplier = 20, baseMultiplier = 1.311, damageEffectiveness = 1.311, levelRequirement = 60, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [16] = { 10, attackSpeedMultiplier = 20, baseMultiplier = 1.318, damageEffectiveness = 1.318, levelRequirement = 62, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [17] = { 10, attackSpeedMultiplier = 20, baseMultiplier = 1.326, damageEffectiveness = 1.326, levelRequirement = 64, statInterpolation = { 1, }, cost = { Mana = 8, }, }, + [18] = { 10, attackSpeedMultiplier = 20, baseMultiplier = 1.334, damageEffectiveness = 1.334, levelRequirement = 66, statInterpolation = { 1, }, cost = { Mana = 9, }, }, + [19] = { 10, attackSpeedMultiplier = 20, baseMultiplier = 1.342, damageEffectiveness = 1.342, levelRequirement = 68, statInterpolation = { 1, }, cost = { Mana = 9, }, }, + [20] = { 10, attackSpeedMultiplier = 20, baseMultiplier = 1.35, damageEffectiveness = 1.35, levelRequirement = 70, statInterpolation = { 1, }, cost = { Mana = 9, }, }, + [21] = { 10, attackSpeedMultiplier = 20, baseMultiplier = 1.358, damageEffectiveness = 1.358, levelRequirement = 72, statInterpolation = { 1, }, cost = { Mana = 9, }, }, + [22] = { 10, attackSpeedMultiplier = 20, baseMultiplier = 1.366, damageEffectiveness = 1.366, levelRequirement = 74, statInterpolation = { 1, }, cost = { Mana = 9, }, }, + [23] = { 10, attackSpeedMultiplier = 20, baseMultiplier = 1.374, damageEffectiveness = 1.374, levelRequirement = 76, statInterpolation = { 1, }, cost = { Mana = 9, }, }, + [24] = { 10, attackSpeedMultiplier = 20, baseMultiplier = 1.382, damageEffectiveness = 1.382, levelRequirement = 78, statInterpolation = { 1, }, cost = { Mana = 9, }, }, + [25] = { 10, attackSpeedMultiplier = 20, baseMultiplier = 1.389, damageEffectiveness = 1.389, levelRequirement = 80, statInterpolation = { 1, }, cost = { Mana = 9, }, }, + [26] = { 10, attackSpeedMultiplier = 20, baseMultiplier = 1.397, damageEffectiveness = 1.397, levelRequirement = 82, statInterpolation = { 1, }, cost = { Mana = 9, }, }, + [27] = { 10, attackSpeedMultiplier = 20, baseMultiplier = 1.405, damageEffectiveness = 1.405, levelRequirement = 84, statInterpolation = { 1, }, cost = { Mana = 10, }, }, + [28] = { 10, attackSpeedMultiplier = 20, baseMultiplier = 1.413, damageEffectiveness = 1.413, levelRequirement = 86, statInterpolation = { 1, }, cost = { Mana = 10, }, }, + [29] = { 10, attackSpeedMultiplier = 20, baseMultiplier = 1.421, damageEffectiveness = 1.421, levelRequirement = 88, statInterpolation = { 1, }, cost = { Mana = 10, }, }, + [30] = { 10, attackSpeedMultiplier = 20, baseMultiplier = 1.429, damageEffectiveness = 1.429, levelRequirement = 90, statInterpolation = { 1, }, cost = { Mana = 10, }, }, + [31] = { 10, attackSpeedMultiplier = 20, baseMultiplier = 1.433, damageEffectiveness = 1.433, levelRequirement = 91, statInterpolation = { 1, }, cost = { Mana = 10, }, }, + [32] = { 10, attackSpeedMultiplier = 20, baseMultiplier = 1.437, damageEffectiveness = 1.437, levelRequirement = 92, statInterpolation = { 1, }, cost = { Mana = 10, }, }, + [33] = { 10, attackSpeedMultiplier = 20, baseMultiplier = 1.441, damageEffectiveness = 1.441, levelRequirement = 93, statInterpolation = { 1, }, cost = { Mana = 10, }, }, + [34] = { 10, attackSpeedMultiplier = 20, baseMultiplier = 1.445, damageEffectiveness = 1.445, levelRequirement = 94, statInterpolation = { 1, }, cost = { Mana = 10, }, }, + [35] = { 10, attackSpeedMultiplier = 20, baseMultiplier = 1.449, damageEffectiveness = 1.449, levelRequirement = 95, statInterpolation = { 1, }, cost = { Mana = 10, }, }, + [36] = { 10, attackSpeedMultiplier = 20, baseMultiplier = 1.453, damageEffectiveness = 1.453, levelRequirement = 96, statInterpolation = { 1, }, cost = { Mana = 10, }, }, + [37] = { 10, attackSpeedMultiplier = 20, baseMultiplier = 1.457, damageEffectiveness = 1.457, levelRequirement = 97, statInterpolation = { 1, }, cost = { Mana = 10, }, }, + [38] = { 10, attackSpeedMultiplier = 20, baseMultiplier = 1.461, damageEffectiveness = 1.461, levelRequirement = 98, statInterpolation = { 1, }, cost = { Mana = 10, }, }, + [39] = { 10, attackSpeedMultiplier = 20, baseMultiplier = 1.464, damageEffectiveness = 1.464, levelRequirement = 99, statInterpolation = { 1, }, cost = { Mana = 10, }, }, + [40] = { 10, attackSpeedMultiplier = 20, baseMultiplier = 1.468, damageEffectiveness = 1.468, levelRequirement = 100, statInterpolation = { 1, }, cost = { Mana = 10, }, }, }, } skills["LightningSpireTrap"] = { @@ -13476,7 +13744,7 @@ skills["PowerSiphon"] = { baseTypeName = "Power Siphon", color = 3, description = "Fires your wand to fire a single projectile each at a number of nearby enemies, granting you a power charge if an enemy is killed by, or soon after, the hit.", - skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.WandAttack] = true, }, weaponTypes = { ["Wand"] = true, }, @@ -13644,7 +13912,7 @@ skills["VaalPowerSiphon"] = { baseTypeName = "Vaal Power Siphon", color = 3, description = "Fires your wand simultaneously at all nearby enemies, culling those close to death and granting you a power charge for each. Cannot be supported by Volley.", - skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Vaal] = true, [SkillType.ProjectilesNotFromUser] = true, }, + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Vaal] = true, [SkillType.ProjectilesNotFromUser] = true, [SkillType.WandAttack] = true, }, weaponTypes = { ["Wand"] = true, }, @@ -14192,24 +14460,16 @@ skills["PyroclastMine"] = { name = "Pyroclast Mine", baseTypeName = "Pyroclast Mine", color = 3, - baseEffectiveness = 0.90490001440048, + baseEffectiveness = 1.2216000556946, incrementalEffectiveness = 0.036100000143051, - description = "Throws a mine that deals damage in an area when detonated, then launches fiery projectiles that rain down around it, each exploding to deal damage in a smaller area.", + description = "Throws a mine that deals damage in an area when detonated, then launches fiery projectiles that rain down around it, each exploding to deal damage in a smaller area. Placed mines apply a fire exposure aura to nearby enemies.", skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Projectile] = true, [SkillType.Fire] = true, [SkillType.RemoteMined] = true, [SkillType.Area] = true, [SkillType.HasReservation] = true, [SkillType.Aura] = true, [SkillType.AuraAffectsEnemies] = true, [SkillType.ProjectilesNotFromUser] = true, [SkillType.Nova] = true, [SkillType.AuraNotOnCaster] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.18, statMap = { - ["mortar_barrage_mine_minimum_added_fire_damage_taken"] = { - mod("SelfFireMin", "BASE", nil, 0, 0, { type = "Limit", limitVar = "PyroclastSelfFireMinLimit" }, { type = "GlobalEffect", effectType = "AuraDebuff", effectStackVar = "ActiveMineCount" }), - }, - ["mortar_barrage_mine_maximum_added_fire_damage_taken"] = { - mod("SelfFireMax", "BASE", nil, 0, 0, { type = "Limit", limitVar = "PyroclastSelfFireMaxLimit" }, { type = "GlobalEffect", effectType = "AuraDebuff", effectStackVar = "ActiveMineCount" }), - }, - ["mortar_barrage_mine_minimum_added_fire_damage_taken_limit"] = { - mod("Multiplier:PyroclastSelfFireMinLimit", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "AuraDebuff", unscalable = true, effectName = "Pyroclast Mine Limit" }), - }, - ["mortar_barrage_mine_maximum_added_fire_damage_taken_limit"] = { - mod("Multiplier:PyroclastSelfFireMaxLimit", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "AuraDebuff", unscalable = true, effectName = "Pyroclast Mine Limit" }), + ["pyroclast_mine_aura_fire_exposure_%_to_apply"] = { + mod("FireExposure", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "AuraDebuff", unscalable = true, effectName = "Pyroclast Mine Fire Exposure" }), + mult = -1, }, }, baseFlags = { @@ -14235,92 +14495,82 @@ skills["PyroclastMine"] = { { "base_mine_duration", 5000 }, { "base_mine_detonation_time_ms", 350 }, { "base_number_of_projectiles", 3 }, + { "pyroclast_mine_aura_fire_exposure_%_to_apply", -15 }, }, stats = { "spell_minimum_base_fire_damage", "spell_maximum_base_fire_damage", - "mortar_barrage_mine_minimum_added_fire_damage_taken", - "mortar_barrage_mine_maximum_added_fire_damage_taken", - "mortar_barrage_mine_minimum_added_fire_damage_taken_limit", - "mortar_barrage_mine_maximum_added_fire_damage_taken_limit", "base_skill_is_mined", "base_skill_show_average_damage_instead_of_dps", "is_remote_mine", "is_area_damage", "base_is_projectile", - "display_additional_projectile_per_4_mines_in_detonation_sequence", + "display_additional_projectile_per_3_mines_in_detonation_sequence", "projectile_behaviour_only_explode", "quality_display_base_number_of_projectiles_is_gem", + "exposure_uses_aura_effect_+%_instead_of_effect_+%", }, notMinionStat = { "spell_minimum_base_fire_damage", "spell_maximum_base_fire_damage", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, 0.03999999910593, 0.059999998658895, 2, 3, PvPDamageMultiplier = -30, critChance = 5.5, damageEffectiveness = 0.8, levelRequirement = 28, manaReservationFlat = 4, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 4, }, }, - [2] = { 0.80000001192093, 1.2000000476837, 0.03999999910593, 0.059999998658895, 2, 3, PvPDamageMultiplier = -30, critChance = 5.5, damageEffectiveness = 0.8, levelRequirement = 31, manaReservationFlat = 4, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 4, }, }, - [3] = { 0.80000001192093, 1.2000000476837, 0.03999999910593, 0.059999998658895, 2, 3, PvPDamageMultiplier = -30, critChance = 5.5, damageEffectiveness = 0.8, levelRequirement = 34, manaReservationFlat = 4, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 4, }, }, - [4] = { 0.80000001192093, 1.2000000476837, 0.03999999910593, 0.059999998658895, 2, 3, PvPDamageMultiplier = -30, critChance = 5.5, damageEffectiveness = 0.8, levelRequirement = 37, manaReservationFlat = 4, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 4, }, }, - [5] = { 0.80000001192093, 1.2000000476837, 0.03999999910593, 0.059999998658895, 2, 3, PvPDamageMultiplier = -30, critChance = 5.5, damageEffectiveness = 0.8, levelRequirement = 40, manaReservationFlat = 4, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 4, }, }, - [6] = { 0.80000001192093, 1.2000000476837, 0.03999999910593, 0.059999998658895, 2, 3, PvPDamageMultiplier = -30, critChance = 5.5, damageEffectiveness = 0.8, levelRequirement = 42, manaReservationFlat = 4, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 4, }, }, - [7] = { 0.80000001192093, 1.2000000476837, 0.03999999910593, 0.059999998658895, 2, 3, PvPDamageMultiplier = -30, critChance = 5.5, damageEffectiveness = 0.8, levelRequirement = 44, manaReservationFlat = 5, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 5, }, }, - [8] = { 0.80000001192093, 1.2000000476837, 0.03999999910593, 0.059999998658895, 2, 3, PvPDamageMultiplier = -30, critChance = 5.5, damageEffectiveness = 0.8, levelRequirement = 46, manaReservationFlat = 5, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 5, }, }, - [9] = { 0.80000001192093, 1.2000000476837, 0.03999999910593, 0.059999998658895, 2, 3, PvPDamageMultiplier = -30, critChance = 5.5, damageEffectiveness = 0.8, levelRequirement = 48, manaReservationFlat = 5, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 5, }, }, - [10] = { 0.80000001192093, 1.2000000476837, 0.03999999910593, 0.059999998658895, 2, 3, PvPDamageMultiplier = -30, critChance = 5.5, damageEffectiveness = 0.8, levelRequirement = 50, manaReservationFlat = 5, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 5, }, }, - [11] = { 0.80000001192093, 1.2000000476837, 0.03999999910593, 0.059999998658895, 2, 3, PvPDamageMultiplier = -30, critChance = 5.5, damageEffectiveness = 0.8, levelRequirement = 52, manaReservationFlat = 5, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 5, }, }, - [12] = { 0.80000001192093, 1.2000000476837, 0.03999999910593, 0.059999998658895, 2, 3, PvPDamageMultiplier = -30, critChance = 5.5, damageEffectiveness = 0.8, levelRequirement = 54, manaReservationFlat = 5, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 5, }, }, - [13] = { 0.80000001192093, 1.2000000476837, 0.03999999910593, 0.059999998658895, 2, 3, PvPDamageMultiplier = -30, critChance = 5.5, damageEffectiveness = 0.8, levelRequirement = 56, manaReservationFlat = 5, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 5, }, }, - [14] = { 0.80000001192093, 1.2000000476837, 0.03999999910593, 0.059999998658895, 2, 3, PvPDamageMultiplier = -30, critChance = 5.5, damageEffectiveness = 0.8, levelRequirement = 58, manaReservationFlat = 5, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 5, }, }, - [15] = { 0.80000001192093, 1.2000000476837, 0.03999999910593, 0.059999998658895, 2, 3, PvPDamageMultiplier = -30, critChance = 5.5, damageEffectiveness = 0.8, levelRequirement = 60, manaReservationFlat = 5, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 5, }, }, - [16] = { 0.80000001192093, 1.2000000476837, 0.03999999910593, 0.059999998658895, 2, 3, PvPDamageMultiplier = -30, critChance = 5.5, damageEffectiveness = 0.8, levelRequirement = 62, manaReservationFlat = 5, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 5, }, }, - [17] = { 0.80000001192093, 1.2000000476837, 0.03999999910593, 0.059999998658895, 2, 3, PvPDamageMultiplier = -30, critChance = 5.5, damageEffectiveness = 0.8, levelRequirement = 64, manaReservationFlat = 6, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 6, }, }, - [18] = { 0.80000001192093, 1.2000000476837, 0.03999999910593, 0.059999998658895, 2, 3, PvPDamageMultiplier = -30, critChance = 5.5, damageEffectiveness = 0.8, levelRequirement = 66, manaReservationFlat = 6, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 6, }, }, - [19] = { 0.80000001192093, 1.2000000476837, 0.03999999910593, 0.059999998658895, 2, 3, PvPDamageMultiplier = -30, critChance = 5.5, damageEffectiveness = 0.8, levelRequirement = 68, manaReservationFlat = 6, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 6, }, }, - [20] = { 0.80000001192093, 1.2000000476837, 0.03999999910593, 0.059999998658895, 2, 3, PvPDamageMultiplier = -30, critChance = 5.5, damageEffectiveness = 0.8, levelRequirement = 70, manaReservationFlat = 6, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 6, }, }, - [21] = { 0.80000001192093, 1.2000000476837, 0.03999999910593, 0.059999998658895, 2, 3, PvPDamageMultiplier = -30, critChance = 5.5, damageEffectiveness = 0.8, levelRequirement = 72, manaReservationFlat = 6, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 6, }, }, - [22] = { 0.80000001192093, 1.2000000476837, 0.03999999910593, 0.059999998658895, 2, 3, PvPDamageMultiplier = -30, critChance = 5.5, damageEffectiveness = 0.8, levelRequirement = 74, manaReservationFlat = 6, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 6, }, }, - [23] = { 0.80000001192093, 1.2000000476837, 0.03999999910593, 0.059999998658895, 2, 3, PvPDamageMultiplier = -30, critChance = 5.5, damageEffectiveness = 0.8, levelRequirement = 76, manaReservationFlat = 6, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 6, }, }, - [24] = { 0.80000001192093, 1.2000000476837, 0.03999999910593, 0.059999998658895, 2, 3, PvPDamageMultiplier = -30, critChance = 5.5, damageEffectiveness = 0.8, levelRequirement = 78, manaReservationFlat = 6, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 6, }, }, - [25] = { 0.80000001192093, 1.2000000476837, 0.03999999910593, 0.059999998658895, 2, 3, PvPDamageMultiplier = -30, critChance = 5.5, damageEffectiveness = 0.8, levelRequirement = 80, manaReservationFlat = 6, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 6, }, }, - [26] = { 0.80000001192093, 1.2000000476837, 0.03999999910593, 0.059999998658895, 2, 3, PvPDamageMultiplier = -30, critChance = 5.5, damageEffectiveness = 0.8, levelRequirement = 82, manaReservationFlat = 6, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 6, }, }, - [27] = { 0.80000001192093, 1.2000000476837, 0.03999999910593, 0.059999998658895, 2, 3, PvPDamageMultiplier = -30, critChance = 5.5, damageEffectiveness = 0.8, levelRequirement = 84, manaReservationFlat = 6, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 6, }, }, - [28] = { 0.80000001192093, 1.2000000476837, 0.03999999910593, 0.059999998658895, 2, 3, PvPDamageMultiplier = -30, critChance = 5.5, damageEffectiveness = 0.8, levelRequirement = 86, manaReservationFlat = 7, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 7, }, }, - [29] = { 0.80000001192093, 1.2000000476837, 0.03999999910593, 0.059999998658895, 2, 3, PvPDamageMultiplier = -30, critChance = 5.5, damageEffectiveness = 0.8, levelRequirement = 88, manaReservationFlat = 7, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 7, }, }, - [30] = { 0.80000001192093, 1.2000000476837, 0.03999999910593, 0.059999998658895, 2, 3, PvPDamageMultiplier = -30, critChance = 5.5, damageEffectiveness = 0.8, levelRequirement = 90, manaReservationFlat = 7, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 7, }, }, - [31] = { 0.80000001192093, 1.2000000476837, 0.03999999910593, 0.059999998658895, 2, 3, PvPDamageMultiplier = -30, critChance = 5.5, damageEffectiveness = 0.8, levelRequirement = 91, manaReservationFlat = 7, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 7, }, }, - [32] = { 0.80000001192093, 1.2000000476837, 0.03999999910593, 0.059999998658895, 2, 3, PvPDamageMultiplier = -30, critChance = 5.5, damageEffectiveness = 0.8, levelRequirement = 92, manaReservationFlat = 7, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 7, }, }, - [33] = { 0.80000001192093, 1.2000000476837, 0.03999999910593, 0.059999998658895, 2, 3, PvPDamageMultiplier = -30, critChance = 5.5, damageEffectiveness = 0.8, levelRequirement = 93, manaReservationFlat = 7, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 7, }, }, - [34] = { 0.80000001192093, 1.2000000476837, 0.03999999910593, 0.059999998658895, 2, 3, PvPDamageMultiplier = -30, critChance = 5.5, damageEffectiveness = 0.8, levelRequirement = 94, manaReservationFlat = 7, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 7, }, }, - [35] = { 0.80000001192093, 1.2000000476837, 0.03999999910593, 0.059999998658895, 2, 3, PvPDamageMultiplier = -30, critChance = 5.5, damageEffectiveness = 0.8, levelRequirement = 95, manaReservationFlat = 7, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 7, }, }, - [36] = { 0.80000001192093, 1.2000000476837, 0.03999999910593, 0.059999998658895, 2, 3, PvPDamageMultiplier = -30, critChance = 5.5, damageEffectiveness = 0.8, levelRequirement = 96, manaReservationFlat = 7, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 7, }, }, - [37] = { 0.80000001192093, 1.2000000476837, 0.03999999910593, 0.059999998658895, 2, 3, PvPDamageMultiplier = -30, critChance = 5.5, damageEffectiveness = 0.8, levelRequirement = 97, manaReservationFlat = 7, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 7, }, }, - [38] = { 0.80000001192093, 1.2000000476837, 0.03999999910593, 0.059999998658895, 2, 3, PvPDamageMultiplier = -30, critChance = 5.5, damageEffectiveness = 0.8, levelRequirement = 98, manaReservationFlat = 7, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 7, }, }, - [39] = { 0.80000001192093, 1.2000000476837, 0.03999999910593, 0.059999998658895, 2, 3, PvPDamageMultiplier = -30, critChance = 5.5, damageEffectiveness = 0.8, levelRequirement = 99, manaReservationFlat = 7, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 7, }, }, - [40] = { 0.80000001192093, 1.2000000476837, 0.03999999910593, 0.059999998658895, 2, 3, PvPDamageMultiplier = -30, critChance = 5.5, damageEffectiveness = 0.8, levelRequirement = 100, manaReservationFlat = 7, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 7, }, }, + [1] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -30, critChance = 5.5, damageEffectiveness = 1.1, levelRequirement = 28, manaReservationFlat = 4, statInterpolation = { 3, 3, }, cost = { Mana = 4, }, }, + [2] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -30, critChance = 5.5, damageEffectiveness = 1.1, levelRequirement = 31, manaReservationFlat = 4, statInterpolation = { 3, 3, }, cost = { Mana = 4, }, }, + [3] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -30, critChance = 5.5, damageEffectiveness = 1.1, levelRequirement = 34, manaReservationFlat = 4, statInterpolation = { 3, 3, }, cost = { Mana = 4, }, }, + [4] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -30, critChance = 5.5, damageEffectiveness = 1.1, levelRequirement = 37, manaReservationFlat = 4, statInterpolation = { 3, 3, }, cost = { Mana = 4, }, }, + [5] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -30, critChance = 5.5, damageEffectiveness = 1.1, levelRequirement = 40, manaReservationFlat = 4, statInterpolation = { 3, 3, }, cost = { Mana = 4, }, }, + [6] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -30, critChance = 5.5, damageEffectiveness = 1.1, levelRequirement = 42, manaReservationFlat = 4, statInterpolation = { 3, 3, }, cost = { Mana = 4, }, }, + [7] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -30, critChance = 5.5, damageEffectiveness = 1.1, levelRequirement = 44, manaReservationFlat = 5, statInterpolation = { 3, 3, }, cost = { Mana = 5, }, }, + [8] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -30, critChance = 5.5, damageEffectiveness = 1.1, levelRequirement = 46, manaReservationFlat = 5, statInterpolation = { 3, 3, }, cost = { Mana = 5, }, }, + [9] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -30, critChance = 5.5, damageEffectiveness = 1.1, levelRequirement = 48, manaReservationFlat = 5, statInterpolation = { 3, 3, }, cost = { Mana = 5, }, }, + [10] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -30, critChance = 5.5, damageEffectiveness = 1.1, levelRequirement = 50, manaReservationFlat = 5, statInterpolation = { 3, 3, }, cost = { Mana = 5, }, }, + [11] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -30, critChance = 5.5, damageEffectiveness = 1.1, levelRequirement = 52, manaReservationFlat = 5, statInterpolation = { 3, 3, }, cost = { Mana = 5, }, }, + [12] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -30, critChance = 5.5, damageEffectiveness = 1.1, levelRequirement = 54, manaReservationFlat = 5, statInterpolation = { 3, 3, }, cost = { Mana = 5, }, }, + [13] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -30, critChance = 5.5, damageEffectiveness = 1.1, levelRequirement = 56, manaReservationFlat = 5, statInterpolation = { 3, 3, }, cost = { Mana = 5, }, }, + [14] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -30, critChance = 5.5, damageEffectiveness = 1.1, levelRequirement = 58, manaReservationFlat = 5, statInterpolation = { 3, 3, }, cost = { Mana = 5, }, }, + [15] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -30, critChance = 5.5, damageEffectiveness = 1.1, levelRequirement = 60, manaReservationFlat = 5, statInterpolation = { 3, 3, }, cost = { Mana = 5, }, }, + [16] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -30, critChance = 5.5, damageEffectiveness = 1.1, levelRequirement = 62, manaReservationFlat = 5, statInterpolation = { 3, 3, }, cost = { Mana = 5, }, }, + [17] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -30, critChance = 5.5, damageEffectiveness = 1.1, levelRequirement = 64, manaReservationFlat = 6, statInterpolation = { 3, 3, }, cost = { Mana = 6, }, }, + [18] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -30, critChance = 5.5, damageEffectiveness = 1.1, levelRequirement = 66, manaReservationFlat = 6, statInterpolation = { 3, 3, }, cost = { Mana = 6, }, }, + [19] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -30, critChance = 5.5, damageEffectiveness = 1.1, levelRequirement = 68, manaReservationFlat = 6, statInterpolation = { 3, 3, }, cost = { Mana = 6, }, }, + [20] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -30, critChance = 5.5, damageEffectiveness = 1.1, levelRequirement = 70, manaReservationFlat = 6, statInterpolation = { 3, 3, }, cost = { Mana = 6, }, }, + [21] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -30, critChance = 5.5, damageEffectiveness = 1.1, levelRequirement = 72, manaReservationFlat = 6, statInterpolation = { 3, 3, }, cost = { Mana = 6, }, }, + [22] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -30, critChance = 5.5, damageEffectiveness = 1.1, levelRequirement = 74, manaReservationFlat = 6, statInterpolation = { 3, 3, }, cost = { Mana = 6, }, }, + [23] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -30, critChance = 5.5, damageEffectiveness = 1.1, levelRequirement = 76, manaReservationFlat = 6, statInterpolation = { 3, 3, }, cost = { Mana = 6, }, }, + [24] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -30, critChance = 5.5, damageEffectiveness = 1.1, levelRequirement = 78, manaReservationFlat = 6, statInterpolation = { 3, 3, }, cost = { Mana = 6, }, }, + [25] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -30, critChance = 5.5, damageEffectiveness = 1.1, levelRequirement = 80, manaReservationFlat = 6, statInterpolation = { 3, 3, }, cost = { Mana = 6, }, }, + [26] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -30, critChance = 5.5, damageEffectiveness = 1.1, levelRequirement = 82, manaReservationFlat = 6, statInterpolation = { 3, 3, }, cost = { Mana = 6, }, }, + [27] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -30, critChance = 5.5, damageEffectiveness = 1.1, levelRequirement = 84, manaReservationFlat = 6, statInterpolation = { 3, 3, }, cost = { Mana = 6, }, }, + [28] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -30, critChance = 5.5, damageEffectiveness = 1.1, levelRequirement = 86, manaReservationFlat = 7, statInterpolation = { 3, 3, }, cost = { Mana = 7, }, }, + [29] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -30, critChance = 5.5, damageEffectiveness = 1.1, levelRequirement = 88, manaReservationFlat = 7, statInterpolation = { 3, 3, }, cost = { Mana = 7, }, }, + [30] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -30, critChance = 5.5, damageEffectiveness = 1.1, levelRequirement = 90, manaReservationFlat = 7, statInterpolation = { 3, 3, }, cost = { Mana = 7, }, }, + [31] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -30, critChance = 5.5, damageEffectiveness = 1.1, levelRequirement = 91, manaReservationFlat = 7, statInterpolation = { 3, 3, }, cost = { Mana = 7, }, }, + [32] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -30, critChance = 5.5, damageEffectiveness = 1.1, levelRequirement = 92, manaReservationFlat = 7, statInterpolation = { 3, 3, }, cost = { Mana = 7, }, }, + [33] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -30, critChance = 5.5, damageEffectiveness = 1.1, levelRequirement = 93, manaReservationFlat = 7, statInterpolation = { 3, 3, }, cost = { Mana = 7, }, }, + [34] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -30, critChance = 5.5, damageEffectiveness = 1.1, levelRequirement = 94, manaReservationFlat = 7, statInterpolation = { 3, 3, }, cost = { Mana = 7, }, }, + [35] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -30, critChance = 5.5, damageEffectiveness = 1.1, levelRequirement = 95, manaReservationFlat = 7, statInterpolation = { 3, 3, }, cost = { Mana = 7, }, }, + [36] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -30, critChance = 5.5, damageEffectiveness = 1.1, levelRequirement = 96, manaReservationFlat = 7, statInterpolation = { 3, 3, }, cost = { Mana = 7, }, }, + [37] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -30, critChance = 5.5, damageEffectiveness = 1.1, levelRequirement = 97, manaReservationFlat = 7, statInterpolation = { 3, 3, }, cost = { Mana = 7, }, }, + [38] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -30, critChance = 5.5, damageEffectiveness = 1.1, levelRequirement = 98, manaReservationFlat = 7, statInterpolation = { 3, 3, }, cost = { Mana = 7, }, }, + [39] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -30, critChance = 5.5, damageEffectiveness = 1.1, levelRequirement = 99, manaReservationFlat = 7, statInterpolation = { 3, 3, }, cost = { Mana = 7, }, }, + [40] = { 0.80000001192093, 1.2000000476837, PvPDamageMultiplier = -30, critChance = 5.5, damageEffectiveness = 1.1, levelRequirement = 100, manaReservationFlat = 7, statInterpolation = { 3, 3, }, cost = { Mana = 7, }, }, }, } skills["PyroclastMineAltX"] = { name = "Pyroclast Mine of Sabotage", baseTypeName = "Pyroclast Mine of Sabotage", color = 3, - baseEffectiveness = 0.23499999940395, + baseEffectiveness = 0.31729999184608, incrementalEffectiveness = 0.036100000143051, - description = "Throws a mine that deals damage in an area when detonated, then launches fiery projectiles that rain down around it, each exploding to deal damage in a smaller area.", + description = "Throws a mine that deals damage in an area when detonated, then launches fiery projectiles that rain down around it, each exploding to deal damage in a smaller area. Placed mines apply a fire exposure aura to nearby enemies.", skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Projectile] = true, [SkillType.Fire] = true, [SkillType.RemoteMined] = true, [SkillType.Area] = true, [SkillType.HasReservation] = true, [SkillType.Aura] = true, [SkillType.AuraAffectsEnemies] = true, [SkillType.ProjectilesNotFromUser] = true, [SkillType.Nova] = true, [SkillType.AuraNotOnCaster] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0.18, statMap = { - ["mortar_barrage_mine_minimum_added_fire_damage_taken"] = { - mod("SelfFireMin", "BASE", nil, 0, 0, { type = "Limit", limitVar = "PyroclastSelfFireMinLimit" }, { type = "GlobalEffect", effectType = "AuraDebuff", effectStackVar = "ActiveMineCount" }), - }, - ["mortar_barrage_mine_maximum_added_fire_damage_taken"] = { - mod("SelfFireMax", "BASE", nil, 0, 0, { type = "Limit", limitVar = "PyroclastSelfFireMaxLimit" }, { type = "GlobalEffect", effectType = "AuraDebuff", effectStackVar = "ActiveMineCount" }), - }, - ["mortar_barrage_mine_minimum_added_fire_damage_taken_limit"] = { - mod("Multiplier:PyroclastSelfFireMinLimit", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "AuraDebuff", unscalable = true, effectName = "Pyroclast Mine Limit" }), - }, - ["mortar_barrage_mine_maximum_added_fire_damage_taken_limit"] = { - mod("Multiplier:PyroclastSelfFireMaxLimit", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "AuraDebuff", unscalable = true, effectName = "Pyroclast Mine Limit" }), + ["pyroclast_mine_aura_fire_exposure_%_to_apply"] = { + mod("FireExposure", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "AuraDebuff", unscalable = true, effectName = "Pyroclast Mine Fire Exposure" }), + mult = -1, }, }, baseFlags = { @@ -14346,68 +14596,70 @@ skills["PyroclastMineAltX"] = { { "base_mine_duration", 5000 }, { "base_mine_detonation_time_ms", 350 }, { "base_number_of_projectiles", 3 }, + { "pyroclast_mine_aura_fire_exposure_%_to_apply", -25 }, }, stats = { "spell_minimum_base_fire_damage", "spell_maximum_base_fire_damage", - "mortar_barrage_mine_minimum_added_fire_damage_taken", - "mortar_barrage_mine_maximum_added_fire_damage_taken", - "mortar_barrage_mine_minimum_added_fire_damage_taken_limit", - "mortar_barrage_mine_maximum_added_fire_damage_taken_limit", + "spell_minimum_base_fire_damage", + "spell_maximum_base_fire_damage", "base_skill_is_mined", "base_skill_show_average_damage_instead_of_dps", "is_remote_mine", "is_area_damage", "base_is_projectile", - "display_additional_projectile_per_4_mines_in_detonation_sequence", + "display_additional_projectile_per_3_mines_in_detonation_sequence", "projectile_behaviour_only_explode", "quality_display_base_number_of_projectiles_is_gem", + "exposure_uses_aura_effect_+%_instead_of_effect_+%", }, notMinionStat = { "spell_minimum_base_fire_damage", "spell_maximum_base_fire_damage", + "spell_minimum_base_fire_damage", + "spell_maximum_base_fire_damage", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, 0.47999998927116, 0.72000002861023, 16, 24, PvPDamageMultiplier = -30, critChance = 5.5, levelRequirement = 28, manaReservationFlat = 16, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 4, }, }, - [2] = { 0.80000001192093, 1.2000000476837, 0.47999998927116, 0.72000002861023, 16, 24, PvPDamageMultiplier = -30, critChance = 5.5, levelRequirement = 31, manaReservationFlat = 16, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 4, }, }, - [3] = { 0.80000001192093, 1.2000000476837, 0.47999998927116, 0.72000002861023, 16, 24, PvPDamageMultiplier = -30, critChance = 5.5, levelRequirement = 34, manaReservationFlat = 17, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 4, }, }, - [4] = { 0.80000001192093, 1.2000000476837, 0.47999998927116, 0.72000002861023, 16, 24, PvPDamageMultiplier = -30, critChance = 5.5, levelRequirement = 37, manaReservationFlat = 17, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 4, }, }, - [5] = { 0.80000001192093, 1.2000000476837, 0.47999998927116, 0.72000002861023, 16, 24, PvPDamageMultiplier = -30, critChance = 5.5, levelRequirement = 40, manaReservationFlat = 18, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 4, }, }, - [6] = { 0.80000001192093, 1.2000000476837, 0.47999998927116, 0.72000002861023, 16, 24, PvPDamageMultiplier = -30, critChance = 5.5, levelRequirement = 42, manaReservationFlat = 18, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 4, }, }, - [7] = { 0.80000001192093, 1.2000000476837, 0.47999998927116, 0.72000002861023, 16, 24, PvPDamageMultiplier = -30, critChance = 5.5, levelRequirement = 44, manaReservationFlat = 19, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 5, }, }, - [8] = { 0.80000001192093, 1.2000000476837, 0.47999998927116, 0.72000002861023, 16, 24, PvPDamageMultiplier = -30, critChance = 5.5, levelRequirement = 46, manaReservationFlat = 19, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 5, }, }, - [9] = { 0.80000001192093, 1.2000000476837, 0.47999998927116, 0.72000002861023, 16, 24, PvPDamageMultiplier = -30, critChance = 5.5, levelRequirement = 48, manaReservationFlat = 19, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 5, }, }, - [10] = { 0.80000001192093, 1.2000000476837, 0.47999998927116, 0.72000002861023, 16, 24, PvPDamageMultiplier = -30, critChance = 5.5, levelRequirement = 50, manaReservationFlat = 20, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 5, }, }, - [11] = { 0.80000001192093, 1.2000000476837, 0.47999998927116, 0.72000002861023, 16, 24, PvPDamageMultiplier = -30, critChance = 5.5, levelRequirement = 52, manaReservationFlat = 20, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 5, }, }, - [12] = { 0.80000001192093, 1.2000000476837, 0.47999998927116, 0.72000002861023, 16, 24, PvPDamageMultiplier = -30, critChance = 5.5, levelRequirement = 54, manaReservationFlat = 21, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 5, }, }, - [13] = { 0.80000001192093, 1.2000000476837, 0.47999998927116, 0.72000002861023, 16, 24, PvPDamageMultiplier = -30, critChance = 5.5, levelRequirement = 56, manaReservationFlat = 21, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 5, }, }, - [14] = { 0.80000001192093, 1.2000000476837, 0.47999998927116, 0.72000002861023, 16, 24, PvPDamageMultiplier = -30, critChance = 5.5, levelRequirement = 58, manaReservationFlat = 21, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 5, }, }, - [15] = { 0.80000001192093, 1.2000000476837, 0.47999998927116, 0.72000002861023, 16, 24, PvPDamageMultiplier = -30, critChance = 5.5, levelRequirement = 60, manaReservationFlat = 22, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 5, }, }, - [16] = { 0.80000001192093, 1.2000000476837, 0.47999998927116, 0.72000002861023, 16, 24, PvPDamageMultiplier = -30, critChance = 5.5, levelRequirement = 62, manaReservationFlat = 22, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 5, }, }, - [17] = { 0.80000001192093, 1.2000000476837, 0.47999998927116, 0.72000002861023, 16, 24, PvPDamageMultiplier = -30, critChance = 5.5, levelRequirement = 64, manaReservationFlat = 23, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 6, }, }, - [18] = { 0.80000001192093, 1.2000000476837, 0.47999998927116, 0.72000002861023, 16, 24, PvPDamageMultiplier = -30, critChance = 5.5, levelRequirement = 66, manaReservationFlat = 23, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 6, }, }, - [19] = { 0.80000001192093, 1.2000000476837, 0.47999998927116, 0.72000002861023, 16, 24, PvPDamageMultiplier = -30, critChance = 5.5, levelRequirement = 68, manaReservationFlat = 24, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 6, }, }, - [20] = { 0.80000001192093, 1.2000000476837, 0.47999998927116, 0.72000002861023, 16, 24, PvPDamageMultiplier = -30, critChance = 5.5, levelRequirement = 70, manaReservationFlat = 24, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 6, }, }, - [21] = { 0.80000001192093, 1.2000000476837, 0.47999998927116, 0.72000002861023, 16, 24, PvPDamageMultiplier = -30, critChance = 5.5, levelRequirement = 72, manaReservationFlat = 24, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 6, }, }, - [22] = { 0.80000001192093, 1.2000000476837, 0.47999998927116, 0.72000002861023, 16, 24, PvPDamageMultiplier = -30, critChance = 5.5, levelRequirement = 74, manaReservationFlat = 25, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 6, }, }, - [23] = { 0.80000001192093, 1.2000000476837, 0.47999998927116, 0.72000002861023, 16, 24, PvPDamageMultiplier = -30, critChance = 5.5, levelRequirement = 76, manaReservationFlat = 25, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 6, }, }, - [24] = { 0.80000001192093, 1.2000000476837, 0.47999998927116, 0.72000002861023, 16, 24, PvPDamageMultiplier = -30, critChance = 5.5, levelRequirement = 78, manaReservationFlat = 26, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 6, }, }, - [25] = { 0.80000001192093, 1.2000000476837, 0.47999998927116, 0.72000002861023, 16, 24, PvPDamageMultiplier = -30, critChance = 5.5, levelRequirement = 80, manaReservationFlat = 26, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 6, }, }, - [26] = { 0.80000001192093, 1.2000000476837, 0.47999998927116, 0.72000002861023, 16, 24, PvPDamageMultiplier = -30, critChance = 5.5, levelRequirement = 82, manaReservationFlat = 27, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 6, }, }, - [27] = { 0.80000001192093, 1.2000000476837, 0.47999998927116, 0.72000002861023, 16, 24, PvPDamageMultiplier = -30, critChance = 5.5, levelRequirement = 84, manaReservationFlat = 27, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 6, }, }, - [28] = { 0.80000001192093, 1.2000000476837, 0.47999998927116, 0.72000002861023, 16, 24, PvPDamageMultiplier = -30, critChance = 5.5, levelRequirement = 86, manaReservationFlat = 27, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 7, }, }, - [29] = { 0.80000001192093, 1.2000000476837, 0.47999998927116, 0.72000002861023, 16, 24, PvPDamageMultiplier = -30, critChance = 5.5, levelRequirement = 88, manaReservationFlat = 28, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 7, }, }, - [30] = { 0.80000001192093, 1.2000000476837, 0.47999998927116, 0.72000002861023, 16, 24, PvPDamageMultiplier = -30, critChance = 5.5, levelRequirement = 90, manaReservationFlat = 28, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 7, }, }, - [31] = { 0.80000001192093, 1.2000000476837, 0.47999998927116, 0.72000002861023, 16, 24, PvPDamageMultiplier = -30, critChance = 5.5, levelRequirement = 91, manaReservationFlat = 28, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 7, }, }, - [32] = { 0.80000001192093, 1.2000000476837, 0.47999998927116, 0.72000002861023, 16, 24, PvPDamageMultiplier = -30, critChance = 5.5, levelRequirement = 92, manaReservationFlat = 29, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 7, }, }, - [33] = { 0.80000001192093, 1.2000000476837, 0.47999998927116, 0.72000002861023, 16, 24, PvPDamageMultiplier = -30, critChance = 5.5, levelRequirement = 93, manaReservationFlat = 29, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 7, }, }, - [34] = { 0.80000001192093, 1.2000000476837, 0.47999998927116, 0.72000002861023, 16, 24, PvPDamageMultiplier = -30, critChance = 5.5, levelRequirement = 94, manaReservationFlat = 29, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 7, }, }, - [35] = { 0.80000001192093, 1.2000000476837, 0.47999998927116, 0.72000002861023, 16, 24, PvPDamageMultiplier = -30, critChance = 5.5, levelRequirement = 95, manaReservationFlat = 29, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 7, }, }, - [36] = { 0.80000001192093, 1.2000000476837, 0.47999998927116, 0.72000002861023, 16, 24, PvPDamageMultiplier = -30, critChance = 5.5, levelRequirement = 96, manaReservationFlat = 29, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 7, }, }, - [37] = { 0.80000001192093, 1.2000000476837, 0.47999998927116, 0.72000002861023, 16, 24, PvPDamageMultiplier = -30, critChance = 5.5, levelRequirement = 97, manaReservationFlat = 30, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 7, }, }, - [38] = { 0.80000001192093, 1.2000000476837, 0.47999998927116, 0.72000002861023, 16, 24, PvPDamageMultiplier = -30, critChance = 5.5, levelRequirement = 98, manaReservationFlat = 30, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 7, }, }, - [39] = { 0.80000001192093, 1.2000000476837, 0.47999998927116, 0.72000002861023, 16, 24, PvPDamageMultiplier = -30, critChance = 5.5, levelRequirement = 99, manaReservationFlat = 30, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 7, }, }, - [40] = { 0.80000001192093, 1.2000000476837, 0.47999998927116, 0.72000002861023, 16, 24, PvPDamageMultiplier = -30, critChance = 5.5, levelRequirement = 100, manaReservationFlat = 30, statInterpolation = { 3, 3, 3, 3, 3, 3, }, cost = { Mana = 7, }, }, + [1] = { 0.80000001192093, 1.2000000476837, 0.47999998927116, 0.72000002861023, PvPDamageMultiplier = -30, critChance = 5.5, levelRequirement = 28, manaReservationFlat = 16, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 4, }, }, + [2] = { 0.80000001192093, 1.2000000476837, 0.47999998927116, 0.72000002861023, PvPDamageMultiplier = -30, critChance = 5.5, levelRequirement = 31, manaReservationFlat = 16, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 4, }, }, + [3] = { 0.80000001192093, 1.2000000476837, 0.47999998927116, 0.72000002861023, PvPDamageMultiplier = -30, critChance = 5.5, levelRequirement = 34, manaReservationFlat = 17, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 4, }, }, + [4] = { 0.80000001192093, 1.2000000476837, 0.47999998927116, 0.72000002861023, PvPDamageMultiplier = -30, critChance = 5.5, levelRequirement = 37, manaReservationFlat = 17, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 4, }, }, + [5] = { 0.80000001192093, 1.2000000476837, 0.47999998927116, 0.72000002861023, PvPDamageMultiplier = -30, critChance = 5.5, levelRequirement = 40, manaReservationFlat = 18, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 4, }, }, + [6] = { 0.80000001192093, 1.2000000476837, 0.47999998927116, 0.72000002861023, PvPDamageMultiplier = -30, critChance = 5.5, levelRequirement = 42, manaReservationFlat = 18, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 4, }, }, + [7] = { 0.80000001192093, 1.2000000476837, 0.47999998927116, 0.72000002861023, PvPDamageMultiplier = -30, critChance = 5.5, levelRequirement = 44, manaReservationFlat = 19, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 5, }, }, + [8] = { 0.80000001192093, 1.2000000476837, 0.47999998927116, 0.72000002861023, PvPDamageMultiplier = -30, critChance = 5.5, levelRequirement = 46, manaReservationFlat = 19, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 5, }, }, + [9] = { 0.80000001192093, 1.2000000476837, 0.47999998927116, 0.72000002861023, PvPDamageMultiplier = -30, critChance = 5.5, levelRequirement = 48, manaReservationFlat = 19, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 5, }, }, + [10] = { 0.80000001192093, 1.2000000476837, 0.47999998927116, 0.72000002861023, PvPDamageMultiplier = -30, critChance = 5.5, levelRequirement = 50, manaReservationFlat = 20, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 5, }, }, + [11] = { 0.80000001192093, 1.2000000476837, 0.47999998927116, 0.72000002861023, PvPDamageMultiplier = -30, critChance = 5.5, levelRequirement = 52, manaReservationFlat = 20, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 5, }, }, + [12] = { 0.80000001192093, 1.2000000476837, 0.47999998927116, 0.72000002861023, PvPDamageMultiplier = -30, critChance = 5.5, levelRequirement = 54, manaReservationFlat = 21, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 5, }, }, + [13] = { 0.80000001192093, 1.2000000476837, 0.47999998927116, 0.72000002861023, PvPDamageMultiplier = -30, critChance = 5.5, levelRequirement = 56, manaReservationFlat = 21, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 5, }, }, + [14] = { 0.80000001192093, 1.2000000476837, 0.47999998927116, 0.72000002861023, PvPDamageMultiplier = -30, critChance = 5.5, levelRequirement = 58, manaReservationFlat = 21, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 5, }, }, + [15] = { 0.80000001192093, 1.2000000476837, 0.47999998927116, 0.72000002861023, PvPDamageMultiplier = -30, critChance = 5.5, levelRequirement = 60, manaReservationFlat = 22, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 5, }, }, + [16] = { 0.80000001192093, 1.2000000476837, 0.47999998927116, 0.72000002861023, PvPDamageMultiplier = -30, critChance = 5.5, levelRequirement = 62, manaReservationFlat = 22, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 5, }, }, + [17] = { 0.80000001192093, 1.2000000476837, 0.47999998927116, 0.72000002861023, PvPDamageMultiplier = -30, critChance = 5.5, levelRequirement = 64, manaReservationFlat = 23, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 6, }, }, + [18] = { 0.80000001192093, 1.2000000476837, 0.47999998927116, 0.72000002861023, PvPDamageMultiplier = -30, critChance = 5.5, levelRequirement = 66, manaReservationFlat = 23, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 6, }, }, + [19] = { 0.80000001192093, 1.2000000476837, 0.47999998927116, 0.72000002861023, PvPDamageMultiplier = -30, critChance = 5.5, levelRequirement = 68, manaReservationFlat = 24, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 6, }, }, + [20] = { 0.80000001192093, 1.2000000476837, 0.47999998927116, 0.72000002861023, PvPDamageMultiplier = -30, critChance = 5.5, levelRequirement = 70, manaReservationFlat = 24, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 6, }, }, + [21] = { 0.80000001192093, 1.2000000476837, 0.47999998927116, 0.72000002861023, PvPDamageMultiplier = -30, critChance = 5.5, levelRequirement = 72, manaReservationFlat = 24, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 6, }, }, + [22] = { 0.80000001192093, 1.2000000476837, 0.47999998927116, 0.72000002861023, PvPDamageMultiplier = -30, critChance = 5.5, levelRequirement = 74, manaReservationFlat = 25, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 6, }, }, + [23] = { 0.80000001192093, 1.2000000476837, 0.47999998927116, 0.72000002861023, PvPDamageMultiplier = -30, critChance = 5.5, levelRequirement = 76, manaReservationFlat = 25, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 6, }, }, + [24] = { 0.80000001192093, 1.2000000476837, 0.47999998927116, 0.72000002861023, PvPDamageMultiplier = -30, critChance = 5.5, levelRequirement = 78, manaReservationFlat = 26, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 6, }, }, + [25] = { 0.80000001192093, 1.2000000476837, 0.47999998927116, 0.72000002861023, PvPDamageMultiplier = -30, critChance = 5.5, levelRequirement = 80, manaReservationFlat = 26, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 6, }, }, + [26] = { 0.80000001192093, 1.2000000476837, 0.47999998927116, 0.72000002861023, PvPDamageMultiplier = -30, critChance = 5.5, levelRequirement = 82, manaReservationFlat = 27, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 6, }, }, + [27] = { 0.80000001192093, 1.2000000476837, 0.47999998927116, 0.72000002861023, PvPDamageMultiplier = -30, critChance = 5.5, levelRequirement = 84, manaReservationFlat = 27, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 6, }, }, + [28] = { 0.80000001192093, 1.2000000476837, 0.47999998927116, 0.72000002861023, PvPDamageMultiplier = -30, critChance = 5.5, levelRequirement = 86, manaReservationFlat = 27, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 7, }, }, + [29] = { 0.80000001192093, 1.2000000476837, 0.47999998927116, 0.72000002861023, PvPDamageMultiplier = -30, critChance = 5.5, levelRequirement = 88, manaReservationFlat = 28, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 7, }, }, + [30] = { 0.80000001192093, 1.2000000476837, 0.47999998927116, 0.72000002861023, PvPDamageMultiplier = -30, critChance = 5.5, levelRequirement = 90, manaReservationFlat = 28, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 7, }, }, + [31] = { 0.80000001192093, 1.2000000476837, 0.47999998927116, 0.72000002861023, PvPDamageMultiplier = -30, critChance = 5.5, levelRequirement = 91, manaReservationFlat = 28, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 7, }, }, + [32] = { 0.80000001192093, 1.2000000476837, 0.47999998927116, 0.72000002861023, PvPDamageMultiplier = -30, critChance = 5.5, levelRequirement = 92, manaReservationFlat = 29, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 7, }, }, + [33] = { 0.80000001192093, 1.2000000476837, 0.47999998927116, 0.72000002861023, PvPDamageMultiplier = -30, critChance = 5.5, levelRequirement = 93, manaReservationFlat = 29, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 7, }, }, + [34] = { 0.80000001192093, 1.2000000476837, 0.47999998927116, 0.72000002861023, PvPDamageMultiplier = -30, critChance = 5.5, levelRequirement = 94, manaReservationFlat = 29, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 7, }, }, + [35] = { 0.80000001192093, 1.2000000476837, 0.47999998927116, 0.72000002861023, PvPDamageMultiplier = -30, critChance = 5.5, levelRequirement = 95, manaReservationFlat = 29, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 7, }, }, + [36] = { 0.80000001192093, 1.2000000476837, 0.47999998927116, 0.72000002861023, PvPDamageMultiplier = -30, critChance = 5.5, levelRequirement = 96, manaReservationFlat = 29, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 7, }, }, + [37] = { 0.80000001192093, 1.2000000476837, 0.47999998927116, 0.72000002861023, PvPDamageMultiplier = -30, critChance = 5.5, levelRequirement = 97, manaReservationFlat = 30, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 7, }, }, + [38] = { 0.80000001192093, 1.2000000476837, 0.47999998927116, 0.72000002861023, PvPDamageMultiplier = -30, critChance = 5.5, levelRequirement = 98, manaReservationFlat = 30, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 7, }, }, + [39] = { 0.80000001192093, 1.2000000476837, 0.47999998927116, 0.72000002861023, PvPDamageMultiplier = -30, critChance = 5.5, levelRequirement = 99, manaReservationFlat = 30, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 7, }, }, + [40] = { 0.80000001192093, 1.2000000476837, 0.47999998927116, 0.72000002861023, PvPDamageMultiplier = -30, critChance = 5.5, levelRequirement = 100, manaReservationFlat = 30, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 7, }, }, }, } skills["RaiseSpectre"] = { @@ -14423,9 +14675,6 @@ skills["RaiseSpectre"] = { minionList = { }, statMap = { - ["accuracy_rating"] = { - mod("MinionModifier", "LIST", { mod = mod("Accuracy", "BASE", nil) }) - }, ["raised_spectre_level"] = { skill("minionLevel", nil), }, @@ -14450,50 +14699,49 @@ skills["RaiseSpectre"] = { stats = { "base_number_of_spectres_allowed", "raised_spectre_level", - "accuracy_rating", "infinite_minion_duration", }, levels = { - [1] = { 1, 28, 105, levelRequirement = 28, statInterpolation = { 1, 1, 1, }, cost = { Mana = 15, }, }, - [2] = { 1, 31, 119, levelRequirement = 31, statInterpolation = { 1, 1, 1, }, cost = { Mana = 16, }, }, - [3] = { 1, 34, 136, levelRequirement = 34, statInterpolation = { 1, 1, 1, }, cost = { Mana = 17, }, }, - [4] = { 1, 37, 155, levelRequirement = 37, statInterpolation = { 1, 1, 1, }, cost = { Mana = 18, }, }, - [5] = { 1, 40, 183, levelRequirement = 40, statInterpolation = { 1, 1, 1, }, cost = { Mana = 19, }, }, - [6] = { 1, 42, 200, levelRequirement = 42, statInterpolation = { 1, 1, 1, }, cost = { Mana = 19, }, }, - [7] = { 1, 44, 227, levelRequirement = 44, statInterpolation = { 1, 1, 1, }, cost = { Mana = 20, }, }, - [8] = { 1, 46, 245, levelRequirement = 46, statInterpolation = { 1, 1, 1, }, cost = { Mana = 21, }, }, - [9] = { 1, 48, 267, levelRequirement = 48, statInterpolation = { 1, 1, 1, }, cost = { Mana = 21, }, }, - [10] = { 1, 50, 301, levelRequirement = 50, statInterpolation = { 1, 1, 1, }, cost = { Mana = 22, }, }, - [11] = { 1, 52, 328, levelRequirement = 52, statInterpolation = { 1, 1, 1, }, cost = { Mana = 22, }, }, - [12] = { 1, 54, 370, levelRequirement = 54, statInterpolation = { 1, 1, 1, }, cost = { Mana = 23, }, }, - [13] = { 2, 56, 400, levelRequirement = 56, statInterpolation = { 1, 1, 1, }, cost = { Mana = 24, }, }, - [14] = { 2, 58, 432, levelRequirement = 58, statInterpolation = { 1, 1, 1, }, cost = { Mana = 24, }, }, - [15] = { 2, 60, 487, levelRequirement = 60, statInterpolation = { 1, 1, 1, }, cost = { Mana = 25, }, }, - [16] = { 2, 62, 528, levelRequirement = 62, statInterpolation = { 1, 1, 1, }, cost = { Mana = 25, }, }, - [17] = { 2, 64, 592, levelRequirement = 64, statInterpolation = { 1, 1, 1, }, cost = { Mana = 26, }, }, - [18] = { 2, 66, 640, levelRequirement = 66, statInterpolation = { 1, 1, 1, }, cost = { Mana = 27, }, }, - [19] = { 2, 68, 692, levelRequirement = 68, statInterpolation = { 1, 1, 1, }, cost = { Mana = 27, }, }, - [20] = { 2, 70, 776, levelRequirement = 70, statInterpolation = { 1, 1, 1, }, cost = { Mana = 28, }, }, - [21] = { 2, 72, 806, levelRequirement = 72, statInterpolation = { 1, 1, 1, }, cost = { Mana = 29, }, }, - [22] = { 2, 73, 839, levelRequirement = 74, statInterpolation = { 1, 1, 1, }, cost = { Mana = 29, }, }, - [23] = { 2, 74, 870, levelRequirement = 76, statInterpolation = { 1, 1, 1, }, cost = { Mana = 30, }, }, - [24] = { 2, 75, 904, levelRequirement = 78, statInterpolation = { 1, 1, 1, }, cost = { Mana = 30, }, }, - [25] = { 3, 76, 939, levelRequirement = 80, statInterpolation = { 1, 1, 1, }, cost = { Mana = 31, }, }, - [26] = { 3, 77, 974, levelRequirement = 82, statInterpolation = { 1, 1, 1, }, cost = { Mana = 32, }, }, - [27] = { 3, 78, 1013, levelRequirement = 84, statInterpolation = { 1, 1, 1, }, cost = { Mana = 32, }, }, - [28] = { 3, 79, 1051, levelRequirement = 86, statInterpolation = { 1, 1, 1, }, cost = { Mana = 33, }, }, - [29] = { 3, 80, 1092, levelRequirement = 88, statInterpolation = { 1, 1, 1, }, cost = { Mana = 33, }, }, - [30] = { 3, 81, 1134, levelRequirement = 90, statInterpolation = { 1, 1, 1, }, cost = { Mana = 34, }, }, - [31] = { 3, 82, 1177, levelRequirement = 91, statInterpolation = { 1, 1, 1, }, cost = { Mana = 34, }, }, - [32] = { 3, 83, 1223, levelRequirement = 92, statInterpolation = { 1, 1, 1, }, cost = { Mana = 35, }, }, - [33] = { 3, 84, 1268, levelRequirement = 93, statInterpolation = { 1, 1, 1, }, cost = { Mana = 35, }, }, - [34] = { 3, 85, 1317, levelRequirement = 94, statInterpolation = { 1, 1, 1, }, cost = { Mana = 35, }, }, - [35] = { 3, 86, 1368, levelRequirement = 95, statInterpolation = { 1, 1, 1, }, cost = { Mana = 36, }, }, - [36] = { 3, 87, 1420, levelRequirement = 96, statInterpolation = { 1, 1, 1, }, cost = { Mana = 36, }, }, - [37] = { 3, 88, 1474, levelRequirement = 97, statInterpolation = { 1, 1, 1, }, cost = { Mana = 36, }, }, - [38] = { 3, 89, 1529, levelRequirement = 98, statInterpolation = { 1, 1, 1, }, cost = { Mana = 37, }, }, - [39] = { 3, 90, 1588, levelRequirement = 99, statInterpolation = { 1, 1, 1, }, cost = { Mana = 37, }, }, - [40] = { 3, 91, 1646, levelRequirement = 100, statInterpolation = { 1, 1, 1, }, cost = { Mana = 37, }, }, + [1] = { 1, 28, levelRequirement = 28, statInterpolation = { 1, 1, }, cost = { Mana = 15, }, }, + [2] = { 1, 31, levelRequirement = 31, statInterpolation = { 1, 1, }, cost = { Mana = 16, }, }, + [3] = { 1, 34, levelRequirement = 34, statInterpolation = { 1, 1, }, cost = { Mana = 17, }, }, + [4] = { 1, 37, levelRequirement = 37, statInterpolation = { 1, 1, }, cost = { Mana = 18, }, }, + [5] = { 1, 40, levelRequirement = 40, statInterpolation = { 1, 1, }, cost = { Mana = 19, }, }, + [6] = { 1, 42, levelRequirement = 42, statInterpolation = { 1, 1, }, cost = { Mana = 19, }, }, + [7] = { 1, 44, levelRequirement = 44, statInterpolation = { 1, 1, }, cost = { Mana = 20, }, }, + [8] = { 1, 46, levelRequirement = 46, statInterpolation = { 1, 1, }, cost = { Mana = 21, }, }, + [9] = { 1, 48, levelRequirement = 48, statInterpolation = { 1, 1, }, cost = { Mana = 21, }, }, + [10] = { 1, 50, levelRequirement = 50, statInterpolation = { 1, 1, }, cost = { Mana = 22, }, }, + [11] = { 1, 52, levelRequirement = 52, statInterpolation = { 1, 1, }, cost = { Mana = 22, }, }, + [12] = { 1, 54, levelRequirement = 54, statInterpolation = { 1, 1, }, cost = { Mana = 23, }, }, + [13] = { 2, 56, levelRequirement = 56, statInterpolation = { 1, 1, }, cost = { Mana = 24, }, }, + [14] = { 2, 58, levelRequirement = 58, statInterpolation = { 1, 1, }, cost = { Mana = 24, }, }, + [15] = { 2, 60, levelRequirement = 60, statInterpolation = { 1, 1, }, cost = { Mana = 25, }, }, + [16] = { 2, 62, levelRequirement = 62, statInterpolation = { 1, 1, }, cost = { Mana = 25, }, }, + [17] = { 2, 64, levelRequirement = 64, statInterpolation = { 1, 1, }, cost = { Mana = 26, }, }, + [18] = { 2, 66, levelRequirement = 66, statInterpolation = { 1, 1, }, cost = { Mana = 27, }, }, + [19] = { 2, 68, levelRequirement = 68, statInterpolation = { 1, 1, }, cost = { Mana = 27, }, }, + [20] = { 2, 70, levelRequirement = 70, statInterpolation = { 1, 1, }, cost = { Mana = 28, }, }, + [21] = { 2, 72, levelRequirement = 72, statInterpolation = { 1, 1, }, cost = { Mana = 29, }, }, + [22] = { 2, 73, levelRequirement = 74, statInterpolation = { 1, 1, }, cost = { Mana = 29, }, }, + [23] = { 2, 74, levelRequirement = 76, statInterpolation = { 1, 1, }, cost = { Mana = 30, }, }, + [24] = { 2, 75, levelRequirement = 78, statInterpolation = { 1, 1, }, cost = { Mana = 30, }, }, + [25] = { 3, 76, levelRequirement = 80, statInterpolation = { 1, 1, }, cost = { Mana = 31, }, }, + [26] = { 3, 77, levelRequirement = 82, statInterpolation = { 1, 1, }, cost = { Mana = 32, }, }, + [27] = { 3, 78, levelRequirement = 84, statInterpolation = { 1, 1, }, cost = { Mana = 32, }, }, + [28] = { 3, 79, levelRequirement = 86, statInterpolation = { 1, 1, }, cost = { Mana = 33, }, }, + [29] = { 3, 80, levelRequirement = 88, statInterpolation = { 1, 1, }, cost = { Mana = 33, }, }, + [30] = { 3, 81, levelRequirement = 90, statInterpolation = { 1, 1, }, cost = { Mana = 34, }, }, + [31] = { 3, 82, levelRequirement = 91, statInterpolation = { 1, 1, }, cost = { Mana = 34, }, }, + [32] = { 3, 83, levelRequirement = 92, statInterpolation = { 1, 1, }, cost = { Mana = 35, }, }, + [33] = { 3, 84, levelRequirement = 93, statInterpolation = { 1, 1, }, cost = { Mana = 35, }, }, + [34] = { 3, 85, levelRequirement = 94, statInterpolation = { 1, 1, }, cost = { Mana = 35, }, }, + [35] = { 3, 86, levelRequirement = 95, statInterpolation = { 1, 1, }, cost = { Mana = 36, }, }, + [36] = { 3, 87, levelRequirement = 96, statInterpolation = { 1, 1, }, cost = { Mana = 36, }, }, + [37] = { 3, 88, levelRequirement = 97, statInterpolation = { 1, 1, }, cost = { Mana = 36, }, }, + [38] = { 3, 89, levelRequirement = 98, statInterpolation = { 1, 1, }, cost = { Mana = 37, }, }, + [39] = { 3, 90, levelRequirement = 99, statInterpolation = { 1, 1, }, cost = { Mana = 37, }, }, + [40] = { 3, 91, levelRequirement = 100, statInterpolation = { 1, 1, }, cost = { Mana = 37, }, }, }, } skills["RaiseSpectreAltX"] = { @@ -14509,9 +14757,6 @@ skills["RaiseSpectreAltX"] = { minionList = { }, statMap = { - ["accuracy_rating"] = { - mod("MinionModifier", "LIST", { mod = mod("Accuracy", "BASE", nil) }) - }, ["raised_spectre_level"] = { skill("minionLevel", nil), }, @@ -14539,52 +14784,51 @@ skills["RaiseSpectreAltX"] = { }, stats = { "raised_spectre_level", - "accuracy_rating", "base_number_of_spectres_allowed", "minion_critical_strike_chance_+%", "cannot_use_spectre_corpses", }, levels = { - [1] = { 28, 105, 4, 800, levelRequirement = 28, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 11, }, }, - [2] = { 31, 119, 4, 820, levelRequirement = 31, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 12, }, }, - [3] = { 34, 136, 4, 840, levelRequirement = 34, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 12, }, }, - [4] = { 37, 155, 4, 860, levelRequirement = 37, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 13, }, }, - [5] = { 40, 183, 4, 880, levelRequirement = 40, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 13, }, }, - [6] = { 42, 200, 4, 900, levelRequirement = 42, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 14, }, }, - [7] = { 44, 227, 4, 920, levelRequirement = 44, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 14, }, }, - [8] = { 46, 245, 4, 940, levelRequirement = 46, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 15, }, }, - [9] = { 48, 267, 4, 960, levelRequirement = 48, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 15, }, }, - [10] = { 50, 301, 4, 980, levelRequirement = 50, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 16, }, }, - [11] = { 52, 328, 5, 1000, levelRequirement = 52, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 16, }, }, - [12] = { 54, 370, 5, 1020, levelRequirement = 54, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 17, }, }, - [13] = { 56, 400, 5, 1040, levelRequirement = 56, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 17, }, }, - [14] = { 58, 432, 5, 1060, levelRequirement = 58, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 18, }, }, - [15] = { 60, 487, 5, 1080, levelRequirement = 60, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 18, }, }, - [16] = { 62, 528, 5, 1100, levelRequirement = 62, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 18, }, }, - [17] = { 64, 592, 5, 1120, levelRequirement = 64, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 18, }, }, - [18] = { 66, 640, 5, 1140, levelRequirement = 66, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 19, }, }, - [19] = { 68, 692, 5, 1160, levelRequirement = 68, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 19, }, }, - [20] = { 70, 776, 6, 1180, levelRequirement = 70, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 20, }, }, - [21] = { 72, 806, 6, 1200, levelRequirement = 72, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 21, }, }, - [22] = { 73, 839, 6, 1220, levelRequirement = 74, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 21, }, }, - [23] = { 74, 870, 6, 1240, levelRequirement = 76, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 22, }, }, - [24] = { 75, 904, 6, 1260, levelRequirement = 78, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 22, }, }, - [25] = { 76, 939, 6, 1280, levelRequirement = 80, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 23, }, }, - [26] = { 77, 974, 6, 1300, levelRequirement = 82, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 23, }, }, - [27] = { 78, 1013, 6, 1320, levelRequirement = 84, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 24, }, }, - [28] = { 79, 1051, 6, 1340, levelRequirement = 86, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 24, }, }, - [29] = { 80, 1092, 7, 1360, levelRequirement = 88, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 24, }, }, - [30] = { 81, 1134, 7, 1380, levelRequirement = 90, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 24, }, }, - [31] = { 82, 1177, 7, 1400, levelRequirement = 91, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 24, }, }, - [32] = { 83, 1223, 7, 1420, levelRequirement = 92, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 25, }, }, - [33] = { 84, 1268, 7, 1440, levelRequirement = 93, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 25, }, }, - [34] = { 85, 1317, 7, 1460, levelRequirement = 94, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 25, }, }, - [35] = { 86, 1368, 7, 1480, levelRequirement = 95, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 25, }, }, - [36] = { 87, 1420, 7, 1500, levelRequirement = 96, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 26, }, }, - [37] = { 88, 1474, 7, 1520, levelRequirement = 97, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 26, }, }, - [38] = { 89, 1529, 7, 1540, levelRequirement = 98, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 26, }, }, - [39] = { 90, 1588, 7, 1560, levelRequirement = 99, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 26, }, }, - [40] = { 91, 1646, 7, 1580, levelRequirement = 100, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 27, }, }, + [1] = { 28, 4, 800, levelRequirement = 28, statInterpolation = { 1, 1, 1, }, cost = { Mana = 11, }, }, + [2] = { 31, 4, 820, levelRequirement = 31, statInterpolation = { 1, 1, 1, }, cost = { Mana = 12, }, }, + [3] = { 34, 4, 840, levelRequirement = 34, statInterpolation = { 1, 1, 1, }, cost = { Mana = 12, }, }, + [4] = { 37, 4, 860, levelRequirement = 37, statInterpolation = { 1, 1, 1, }, cost = { Mana = 13, }, }, + [5] = { 40, 4, 880, levelRequirement = 40, statInterpolation = { 1, 1, 1, }, cost = { Mana = 13, }, }, + [6] = { 42, 4, 900, levelRequirement = 42, statInterpolation = { 1, 1, 1, }, cost = { Mana = 14, }, }, + [7] = { 44, 4, 920, levelRequirement = 44, statInterpolation = { 1, 1, 1, }, cost = { Mana = 14, }, }, + [8] = { 46, 4, 940, levelRequirement = 46, statInterpolation = { 1, 1, 1, }, cost = { Mana = 15, }, }, + [9] = { 48, 4, 960, levelRequirement = 48, statInterpolation = { 1, 1, 1, }, cost = { Mana = 15, }, }, + [10] = { 50, 4, 980, levelRequirement = 50, statInterpolation = { 1, 1, 1, }, cost = { Mana = 16, }, }, + [11] = { 52, 5, 1000, levelRequirement = 52, statInterpolation = { 1, 1, 1, }, cost = { Mana = 16, }, }, + [12] = { 54, 5, 1020, levelRequirement = 54, statInterpolation = { 1, 1, 1, }, cost = { Mana = 17, }, }, + [13] = { 56, 5, 1040, levelRequirement = 56, statInterpolation = { 1, 1, 1, }, cost = { Mana = 17, }, }, + [14] = { 58, 5, 1060, levelRequirement = 58, statInterpolation = { 1, 1, 1, }, cost = { Mana = 18, }, }, + [15] = { 60, 5, 1080, levelRequirement = 60, statInterpolation = { 1, 1, 1, }, cost = { Mana = 18, }, }, + [16] = { 62, 5, 1100, levelRequirement = 62, statInterpolation = { 1, 1, 1, }, cost = { Mana = 18, }, }, + [17] = { 64, 5, 1120, levelRequirement = 64, statInterpolation = { 1, 1, 1, }, cost = { Mana = 18, }, }, + [18] = { 66, 5, 1140, levelRequirement = 66, statInterpolation = { 1, 1, 1, }, cost = { Mana = 19, }, }, + [19] = { 68, 5, 1160, levelRequirement = 68, statInterpolation = { 1, 1, 1, }, cost = { Mana = 19, }, }, + [20] = { 70, 6, 1180, levelRequirement = 70, statInterpolation = { 1, 1, 1, }, cost = { Mana = 20, }, }, + [21] = { 72, 6, 1200, levelRequirement = 72, statInterpolation = { 1, 1, 1, }, cost = { Mana = 21, }, }, + [22] = { 73, 6, 1220, levelRequirement = 74, statInterpolation = { 1, 1, 1, }, cost = { Mana = 21, }, }, + [23] = { 74, 6, 1240, levelRequirement = 76, statInterpolation = { 1, 1, 1, }, cost = { Mana = 22, }, }, + [24] = { 75, 6, 1260, levelRequirement = 78, statInterpolation = { 1, 1, 1, }, cost = { Mana = 22, }, }, + [25] = { 76, 6, 1280, levelRequirement = 80, statInterpolation = { 1, 1, 1, }, cost = { Mana = 23, }, }, + [26] = { 77, 6, 1300, levelRequirement = 82, statInterpolation = { 1, 1, 1, }, cost = { Mana = 23, }, }, + [27] = { 78, 6, 1320, levelRequirement = 84, statInterpolation = { 1, 1, 1, }, cost = { Mana = 24, }, }, + [28] = { 79, 6, 1340, levelRequirement = 86, statInterpolation = { 1, 1, 1, }, cost = { Mana = 24, }, }, + [29] = { 80, 7, 1360, levelRequirement = 88, statInterpolation = { 1, 1, 1, }, cost = { Mana = 24, }, }, + [30] = { 81, 7, 1380, levelRequirement = 90, statInterpolation = { 1, 1, 1, }, cost = { Mana = 24, }, }, + [31] = { 82, 7, 1400, levelRequirement = 91, statInterpolation = { 1, 1, 1, }, cost = { Mana = 24, }, }, + [32] = { 83, 7, 1420, levelRequirement = 92, statInterpolation = { 1, 1, 1, }, cost = { Mana = 25, }, }, + [33] = { 84, 7, 1440, levelRequirement = 93, statInterpolation = { 1, 1, 1, }, cost = { Mana = 25, }, }, + [34] = { 85, 7, 1460, levelRequirement = 94, statInterpolation = { 1, 1, 1, }, cost = { Mana = 25, }, }, + [35] = { 86, 7, 1480, levelRequirement = 95, statInterpolation = { 1, 1, 1, }, cost = { Mana = 25, }, }, + [36] = { 87, 7, 1500, levelRequirement = 96, statInterpolation = { 1, 1, 1, }, cost = { Mana = 26, }, }, + [37] = { 88, 7, 1520, levelRequirement = 97, statInterpolation = { 1, 1, 1, }, cost = { Mana = 26, }, }, + [38] = { 89, 7, 1540, levelRequirement = 98, statInterpolation = { 1, 1, 1, }, cost = { Mana = 26, }, }, + [39] = { 90, 7, 1560, levelRequirement = 99, statInterpolation = { 1, 1, 1, }, cost = { Mana = 26, }, }, + [40] = { 91, 7, 1580, levelRequirement = 100, statInterpolation = { 1, 1, 1, }, cost = { Mana = 27, }, }, }, } skills["RaiseZombie"] = { @@ -14676,7 +14920,7 @@ skills["RaiseZombieAltX"] = { baseTypeName = "Raise Zombie of Slamming", color = 3, baseEffectiveness = 0, - description = "Raises a zombie minion from a corpse, which will follow you and attack enemies with a melee strike and an area of effect slam which cannot be evaded.", + description = "Raises a zombie minion from a corpse, which will follow you and attack enemies with a melee strike and an area of effect slam.", skillTypes = { [SkillType.Spell] = true, [SkillType.Minion] = true, [SkillType.MinionsCanExplode] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.CanRapidFire] = true, [SkillType.CreatesMinion] = true, }, minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Multistrikeable] = true, }, statDescriptionScope = "minion_spell_skill_stat_descriptions", @@ -14765,7 +15009,7 @@ skills["RaiseZombieAltY"] = { baseTypeName = "Raise Zombie of Falling", color = 3, baseEffectiveness = 0, - description = "Raises necromantic energies into the sky above a targeted location, where they coalesce into a zombie minion. The minion then attacks by falling to the ground, causing an impact that deals damage in an area and kills the zombie.", + description = "Raises necromantic energies into the sky above a targeted location, where they coalesce into a zombie minion. The minion then attacks by falling to the ground, causing an impact that deals damage in an area. The zombie cannot survive the impact.", skillTypes = { [SkillType.Spell] = true, [SkillType.Minion] = true, [SkillType.MinionsCanExplode] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.CanRapidFire] = true, [SkillType.CreatesMinion] = true, }, minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, }, statDescriptionScope = "minion_spell_skill_stat_descriptions", @@ -14803,7 +15047,6 @@ skills["RaiseZombieAltY"] = { "infinite_minion_duration", "quality_display_raise_zombie_is_gem", "raise_zombie_does_not_use_corpses", - "minion_global_always_hit", }, levels = { [1] = { 1, levelRequirement = 1, statInterpolation = { 1, }, cost = { Mana = 6, }, }, @@ -15644,6 +15887,98 @@ skills["SiphoningTrap"] = { [40] = { 16.666667039196, 3438, 157, 34396, 1578, cooldown = 4, levelRequirement = 100, storedUses = 1, statInterpolation = { 3, 1, 1, 1, 1, }, cost = { Mana = 37, }, }, }, } +skills["SomaticShell"] = { + name = "Somatic Shell", + baseTypeName = "Somatic Shell", + color = 3, + description = "Fire a damaging projectile from your wand which aims itself towards an enemy and applies a shell to the first enemy struck. Damage from hits against that target is taken from the shell first. If fully depleted, the shell will explode, dealing area damage and firing a projectile at another target to apply a new shell to it. If multiple projectiles are fired by an exploding shell, only the first one to hit a target can apply a shell.", + skillTypes = { [SkillType.Duration] = true, [SkillType.Physical] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Totemable] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Attack] = true, [SkillType.WandAttack] = true, [SkillType.Area] = true, [SkillType.Projectile] = true, [SkillType.RangedAttack] = true, }, + weaponTypes = { + ["Wand"] = true, + }, + statDescriptionScope = "skill_stat_descriptions", + castTime = 0.6, + parts = { + { + name = "Projectile", + projectile = true, + }, + { + name = "Explosion", + area = true, + }, + }, + baseFlags = { + attack = true, + }, + qualityStats = { + Default = { + { "active_skill_base_area_of_effect_radius", 0.15 }, + }, + }, + constantStats = { + { "kinetic_shell_hit_damage_absorbed_%", 100 }, + { "base_skill_effect_duration", 5000 }, + { "active_skill_additive_spell_damage_modifiers_apply_to_attack_damage_at_%_value", 150 }, + { "active_skill_base_area_of_effect_radius", 15 }, + { "active_skill_area_of_effect_description_mode", 1 }, + { "kinetic_shell_immunity_after_explosion_ms", 200 }, + { "kinetic_shell_transfer_to_X_targets_on_projectile_hit", 1 }, + { "active_skill_area_damage_+%_final", 750 }, + }, + stats = { + "kinetic_shell_maximum_damage_absorbed_from_hits", + "kinetic_shell_number_of_active_buffs_allowed", + "skill_can_fire_wand_projectiles", + "damage_cannot_break_kinetic_shells", + "base_skill_show_average_damage_instead_of_dps", + "quality_display_active_skill_area_damage_is_gem", + "quality_display_base_number_of_projectiles_is_gem", + "quality_display_spell_damage_to_attack_damage_is_gem", + }, + levels = { + [1] = { 168, 3, baseMultiplier = 0.2, damageEffectiveness = 0.2, levelRequirement = 28, statInterpolation = { 1, 1, }, cost = { Mana = 7, }, }, + [2] = { 325, 3, baseMultiplier = 0.216, damageEffectiveness = 0.216, levelRequirement = 31, statInterpolation = { 1, 1, }, cost = { Mana = 8, }, }, + [3] = { 500, 3, baseMultiplier = 0.232, damageEffectiveness = 0.232, levelRequirement = 34, statInterpolation = { 1, 1, }, cost = { Mana = 8, }, }, + [4] = { 817, 4, baseMultiplier = 0.247, damageEffectiveness = 0.247, levelRequirement = 37, statInterpolation = { 1, 1, }, cost = { Mana = 8, }, }, + [5] = { 1038, 4, baseMultiplier = 0.263, damageEffectiveness = 0.263, levelRequirement = 40, statInterpolation = { 1, 1, }, cost = { Mana = 8, }, }, + [6] = { 1287, 4, baseMultiplier = 0.279, damageEffectiveness = 0.279, levelRequirement = 42, statInterpolation = { 1, 1, }, cost = { Mana = 8, }, }, + [7] = { 1547, 4, baseMultiplier = 0.295, damageEffectiveness = 0.295, levelRequirement = 44, statInterpolation = { 1, 1, }, cost = { Mana = 8, }, }, + [8] = { 1821, 4, baseMultiplier = 0.311, damageEffectiveness = 0.311, levelRequirement = 46, statInterpolation = { 1, 1, }, cost = { Mana = 8, }, }, + [9] = { 2176, 4, baseMultiplier = 0.326, damageEffectiveness = 0.326, levelRequirement = 48, statInterpolation = { 1, 1, }, cost = { Mana = 9, }, }, + [10] = { 2657, 5, baseMultiplier = 0.342, damageEffectiveness = 0.342, levelRequirement = 50, statInterpolation = { 1, 1, }, cost = { Mana = 9, }, }, + [11] = { 2945, 5, baseMultiplier = 0.358, damageEffectiveness = 0.358, levelRequirement = 52, statInterpolation = { 1, 1, }, cost = { Mana = 9, }, }, + [12] = { 3095, 5, baseMultiplier = 0.374, damageEffectiveness = 0.374, levelRequirement = 54, statInterpolation = { 1, 1, }, cost = { Mana = 9, }, }, + [13] = { 3515, 5, baseMultiplier = 0.389, damageEffectiveness = 0.389, levelRequirement = 56, statInterpolation = { 1, 1, }, cost = { Mana = 9, }, }, + [14] = { 3935, 5, baseMultiplier = 0.405, damageEffectiveness = 0.405, levelRequirement = 58, statInterpolation = { 1, 1, }, cost = { Mana = 9, }, }, + [15] = { 4580, 6, baseMultiplier = 0.421, damageEffectiveness = 0.421, levelRequirement = 60, statInterpolation = { 1, 1, }, cost = { Mana = 9, }, }, + [16] = { 4934, 6, baseMultiplier = 0.437, damageEffectiveness = 0.437, levelRequirement = 62, statInterpolation = { 1, 1, }, cost = { Mana = 10, }, }, + [17] = { 5545, 6, baseMultiplier = 0.453, damageEffectiveness = 0.453, levelRequirement = 64, statInterpolation = { 1, 1, }, cost = { Mana = 10, }, }, + [18] = { 5762, 6, baseMultiplier = 0.468, damageEffectiveness = 0.468, levelRequirement = 66, statInterpolation = { 1, 1, }, cost = { Mana = 10, }, }, + [19] = { 5983, 6, baseMultiplier = 0.484, damageEffectiveness = 0.484, levelRequirement = 68, statInterpolation = { 1, 1, }, cost = { Mana = 10, }, }, + [20] = { 6214, 6, baseMultiplier = 0.5, damageEffectiveness = 0.5, levelRequirement = 70, statInterpolation = { 1, 1, }, cost = { Mana = 10, }, }, + [21] = { 6447, 7, baseMultiplier = 0.516, damageEffectiveness = 0.516, levelRequirement = 72, statInterpolation = { 1, 1, }, cost = { Mana = 10, }, }, + [22] = { 6685, 7, baseMultiplier = 0.532, damageEffectiveness = 0.532, levelRequirement = 74, statInterpolation = { 1, 1, }, cost = { Mana = 10, }, }, + [23] = { 6929, 7, baseMultiplier = 0.547, damageEffectiveness = 0.547, levelRequirement = 76, statInterpolation = { 1, 1, }, cost = { Mana = 10, }, }, + [24] = { 7179, 7, baseMultiplier = 0.563, damageEffectiveness = 0.563, levelRequirement = 78, statInterpolation = { 1, 1, }, cost = { Mana = 11, }, }, + [25] = { 7438, 7, baseMultiplier = 0.579, damageEffectiveness = 0.579, levelRequirement = 80, statInterpolation = { 1, 1, }, cost = { Mana = 11, }, }, + [26] = { 7699, 8, baseMultiplier = 0.595, damageEffectiveness = 0.595, levelRequirement = 82, statInterpolation = { 1, 1, }, cost = { Mana = 11, }, }, + [27] = { 7966, 8, baseMultiplier = 0.611, damageEffectiveness = 0.611, levelRequirement = 84, statInterpolation = { 1, 1, }, cost = { Mana = 11, }, }, + [28] = { 8240, 8, baseMultiplier = 0.626, damageEffectiveness = 0.626, levelRequirement = 86, statInterpolation = { 1, 1, }, cost = { Mana = 11, }, }, + [29] = { 8520, 8, baseMultiplier = 0.642, damageEffectiveness = 0.642, levelRequirement = 88, statInterpolation = { 1, 1, }, cost = { Mana = 11, }, }, + [30] = { 8807, 8, baseMultiplier = 0.658, damageEffectiveness = 0.658, levelRequirement = 90, statInterpolation = { 1, 1, }, cost = { Mana = 11, }, }, + [31] = { 9098, 8, baseMultiplier = 0.666, damageEffectiveness = 0.666, levelRequirement = 91, statInterpolation = { 1, 1, }, cost = { Mana = 11, }, }, + [32] = { 9395, 9, baseMultiplier = 0.674, damageEffectiveness = 0.674, levelRequirement = 92, statInterpolation = { 1, 1, }, cost = { Mana = 11, }, }, + [33] = { 9700, 9, baseMultiplier = 0.682, damageEffectiveness = 0.682, levelRequirement = 93, statInterpolation = { 1, 1, }, cost = { Mana = 12, }, }, + [34] = { 10014, 9, baseMultiplier = 0.689, damageEffectiveness = 0.689, levelRequirement = 94, statInterpolation = { 1, 1, }, cost = { Mana = 12, }, }, + [35] = { 10339, 9, baseMultiplier = 0.697, damageEffectiveness = 0.697, levelRequirement = 95, statInterpolation = { 1, 1, }, cost = { Mana = 12, }, }, + [36] = { 10674, 9, baseMultiplier = 0.705, damageEffectiveness = 0.705, levelRequirement = 96, statInterpolation = { 1, 1, }, cost = { Mana = 12, }, }, + [37] = { 11020, 9, baseMultiplier = 0.713, damageEffectiveness = 0.713, levelRequirement = 97, statInterpolation = { 1, 1, }, cost = { Mana = 12, }, }, + [38] = { 11377, 10, baseMultiplier = 0.721, damageEffectiveness = 0.721, levelRequirement = 98, statInterpolation = { 1, 1, }, cost = { Mana = 12, }, }, + [39] = { 11746, 10, baseMultiplier = 0.729, damageEffectiveness = 0.729, levelRequirement = 99, statInterpolation = { 1, 1, }, cost = { Mana = 12, }, }, + [40] = { 12126, 10, baseMultiplier = 0.737, damageEffectiveness = 0.737, levelRequirement = 100, statInterpolation = { 1, 1, }, cost = { Mana = 12, }, }, + }, +} skills["Soulrend"] = { name = "Soulrend", baseTypeName = "Soulrend", @@ -16366,46 +16701,46 @@ skills["SupportSpellslinger"] = { "base_cooldown_speed_+%", }, levels = { - [1] = { 60, 0, -37, PvPDamageMultiplier = -50, cooldown = 0.6, levelRequirement = 24, manaReservationPercent = 20, storedUses = 1, statInterpolation = { 1, 1, 1, }, }, - [2] = { 66, 2, -37, PvPDamageMultiplier = -50, cooldown = 0.6, levelRequirement = 27, manaReservationPercent = 20, storedUses = 1, statInterpolation = { 1, 1, 1, }, }, - [3] = { 72, 4, -37, PvPDamageMultiplier = -50, cooldown = 0.6, levelRequirement = 30, manaReservationPercent = 20, storedUses = 1, statInterpolation = { 1, 1, 1, }, }, - [4] = { 78, 6, -36, PvPDamageMultiplier = -50, cooldown = 0.6, levelRequirement = 33, manaReservationPercent = 20, storedUses = 1, statInterpolation = { 1, 1, 1, }, }, - [5] = { 84, 8, -36, PvPDamageMultiplier = -50, cooldown = 0.6, levelRequirement = 36, manaReservationPercent = 20, storedUses = 1, statInterpolation = { 1, 1, 1, }, }, - [6] = { 90, 10, -36, PvPDamageMultiplier = -50, cooldown = 0.6, levelRequirement = 39, manaReservationPercent = 20, storedUses = 1, statInterpolation = { 1, 1, 1, }, }, - [7] = { 96, 12, -35, PvPDamageMultiplier = -50, cooldown = 0.6, levelRequirement = 42, manaReservationPercent = 20, storedUses = 1, statInterpolation = { 1, 1, 1, }, }, - [8] = { 102, 14, -35, PvPDamageMultiplier = -50, cooldown = 0.6, levelRequirement = 45, manaReservationPercent = 20, storedUses = 1, statInterpolation = { 1, 1, 1, }, }, - [9] = { 108, 16, -35, PvPDamageMultiplier = -50, cooldown = 0.6, levelRequirement = 48, manaReservationPercent = 20, storedUses = 1, statInterpolation = { 1, 1, 1, }, }, - [10] = { 114, 18, -34, PvPDamageMultiplier = -50, cooldown = 0.6, levelRequirement = 50, manaReservationPercent = 20, storedUses = 1, statInterpolation = { 1, 1, 1, }, }, - [11] = { 120, 20, -34, PvPDamageMultiplier = -50, cooldown = 0.6, levelRequirement = 52, manaReservationPercent = 20, storedUses = 1, statInterpolation = { 1, 1, 1, }, }, - [12] = { 126, 22, -34, PvPDamageMultiplier = -50, cooldown = 0.6, levelRequirement = 54, manaReservationPercent = 20, storedUses = 1, statInterpolation = { 1, 1, 1, }, }, - [13] = { 132, 24, -33, PvPDamageMultiplier = -50, cooldown = 0.6, levelRequirement = 56, manaReservationPercent = 20, storedUses = 1, statInterpolation = { 1, 1, 1, }, }, - [14] = { 138, 26, -33, PvPDamageMultiplier = -50, cooldown = 0.6, levelRequirement = 58, manaReservationPercent = 20, storedUses = 1, statInterpolation = { 1, 1, 1, }, }, - [15] = { 144, 28, -33, PvPDamageMultiplier = -50, cooldown = 0.6, levelRequirement = 60, manaReservationPercent = 20, storedUses = 1, statInterpolation = { 1, 1, 1, }, }, - [16] = { 150, 30, -32, PvPDamageMultiplier = -50, cooldown = 0.6, levelRequirement = 62, manaReservationPercent = 20, storedUses = 1, statInterpolation = { 1, 1, 1, }, }, - [17] = { 156, 32, -32, PvPDamageMultiplier = -50, cooldown = 0.6, levelRequirement = 64, manaReservationPercent = 20, storedUses = 1, statInterpolation = { 1, 1, 1, }, }, - [18] = { 162, 34, -32, PvPDamageMultiplier = -50, cooldown = 0.6, levelRequirement = 66, manaReservationPercent = 20, storedUses = 1, statInterpolation = { 1, 1, 1, }, }, - [19] = { 168, 36, -31, PvPDamageMultiplier = -50, cooldown = 0.6, levelRequirement = 68, manaReservationPercent = 20, storedUses = 1, statInterpolation = { 1, 1, 1, }, }, - [20] = { 174, 38, -31, PvPDamageMultiplier = -50, cooldown = 0.6, levelRequirement = 70, manaReservationPercent = 20, storedUses = 1, statInterpolation = { 1, 1, 1, }, }, - [21] = { 180, 40, -31, PvPDamageMultiplier = -50, cooldown = 0.6, levelRequirement = 72, manaReservationPercent = 20, storedUses = 1, statInterpolation = { 1, 1, 1, }, }, - [22] = { 186, 42, -30, PvPDamageMultiplier = -50, cooldown = 0.6, levelRequirement = 74, manaReservationPercent = 20, storedUses = 1, statInterpolation = { 1, 1, 1, }, }, - [23] = { 192, 44, -30, PvPDamageMultiplier = -50, cooldown = 0.6, levelRequirement = 76, manaReservationPercent = 20, storedUses = 1, statInterpolation = { 1, 1, 1, }, }, - [24] = { 198, 46, -30, PvPDamageMultiplier = -50, cooldown = 0.6, levelRequirement = 78, manaReservationPercent = 20, storedUses = 1, statInterpolation = { 1, 1, 1, }, }, - [25] = { 204, 48, -29, PvPDamageMultiplier = -50, cooldown = 0.6, levelRequirement = 80, manaReservationPercent = 20, storedUses = 1, statInterpolation = { 1, 1, 1, }, }, - [26] = { 210, 50, -29, PvPDamageMultiplier = -50, cooldown = 0.6, levelRequirement = 82, manaReservationPercent = 20, storedUses = 1, statInterpolation = { 1, 1, 1, }, }, - [27] = { 216, 52, -29, PvPDamageMultiplier = -50, cooldown = 0.6, levelRequirement = 84, manaReservationPercent = 20, storedUses = 1, statInterpolation = { 1, 1, 1, }, }, - [28] = { 222, 54, -28, PvPDamageMultiplier = -50, cooldown = 0.6, levelRequirement = 86, manaReservationPercent = 20, storedUses = 1, statInterpolation = { 1, 1, 1, }, }, - [29] = { 228, 56, -28, PvPDamageMultiplier = -50, cooldown = 0.6, levelRequirement = 88, manaReservationPercent = 20, storedUses = 1, statInterpolation = { 1, 1, 1, }, }, - [30] = { 234, 58, -28, PvPDamageMultiplier = -50, cooldown = 0.6, levelRequirement = 90, manaReservationPercent = 20, storedUses = 1, statInterpolation = { 1, 1, 1, }, }, - [31] = { 237, 59, -27, PvPDamageMultiplier = -50, cooldown = 0.6, levelRequirement = 91, manaReservationPercent = 20, storedUses = 1, statInterpolation = { 1, 1, 1, }, }, - [32] = { 240, 60, -27, PvPDamageMultiplier = -50, cooldown = 0.6, levelRequirement = 92, manaReservationPercent = 20, storedUses = 1, statInterpolation = { 1, 1, 1, }, }, - [33] = { 243, 61, -27, PvPDamageMultiplier = -50, cooldown = 0.6, levelRequirement = 93, manaReservationPercent = 20, storedUses = 1, statInterpolation = { 1, 1, 1, }, }, - [34] = { 246, 62, -26, PvPDamageMultiplier = -50, cooldown = 0.6, levelRequirement = 94, manaReservationPercent = 20, storedUses = 1, statInterpolation = { 1, 1, 1, }, }, - [35] = { 249, 63, -26, PvPDamageMultiplier = -50, cooldown = 0.6, levelRequirement = 95, manaReservationPercent = 20, storedUses = 1, statInterpolation = { 1, 1, 1, }, }, - [36] = { 252, 64, -26, PvPDamageMultiplier = -50, cooldown = 0.6, levelRequirement = 96, manaReservationPercent = 20, storedUses = 1, statInterpolation = { 1, 1, 1, }, }, - [37] = { 255, 65, -25, PvPDamageMultiplier = -50, cooldown = 0.6, levelRequirement = 97, manaReservationPercent = 20, storedUses = 1, statInterpolation = { 1, 1, 1, }, }, - [38] = { 258, 66, -25, PvPDamageMultiplier = -50, cooldown = 0.6, levelRequirement = 98, manaReservationPercent = 20, storedUses = 1, statInterpolation = { 1, 1, 1, }, }, - [39] = { 261, 67, -25, PvPDamageMultiplier = -50, cooldown = 0.6, levelRequirement = 99, manaReservationPercent = 20, storedUses = 1, statInterpolation = { 1, 1, 1, }, }, - [40] = { 264, 68, -24, PvPDamageMultiplier = -50, cooldown = 0.6, levelRequirement = 100, manaReservationPercent = 20, storedUses = 1, statInterpolation = { 1, 1, 1, }, }, + [1] = { 60, 0, -30, PvPDamageMultiplier = -50, cooldown = 0.6, levelRequirement = 24, manaReservationPercent = 20, storedUses = 1, statInterpolation = { 1, 1, 1, }, }, + [2] = { 66, 2, -29, PvPDamageMultiplier = -50, cooldown = 0.6, levelRequirement = 27, manaReservationPercent = 20, storedUses = 1, statInterpolation = { 1, 1, 1, }, }, + [3] = { 72, 4, -29, PvPDamageMultiplier = -50, cooldown = 0.6, levelRequirement = 30, manaReservationPercent = 20, storedUses = 1, statInterpolation = { 1, 1, 1, }, }, + [4] = { 78, 6, -28, PvPDamageMultiplier = -50, cooldown = 0.6, levelRequirement = 33, manaReservationPercent = 20, storedUses = 1, statInterpolation = { 1, 1, 1, }, }, + [5] = { 84, 8, -28, PvPDamageMultiplier = -50, cooldown = 0.6, levelRequirement = 36, manaReservationPercent = 20, storedUses = 1, statInterpolation = { 1, 1, 1, }, }, + [6] = { 90, 10, -27, PvPDamageMultiplier = -50, cooldown = 0.6, levelRequirement = 39, manaReservationPercent = 20, storedUses = 1, statInterpolation = { 1, 1, 1, }, }, + [7] = { 96, 12, -27, PvPDamageMultiplier = -50, cooldown = 0.6, levelRequirement = 42, manaReservationPercent = 20, storedUses = 1, statInterpolation = { 1, 1, 1, }, }, + [8] = { 102, 14, -26, PvPDamageMultiplier = -50, cooldown = 0.6, levelRequirement = 45, manaReservationPercent = 20, storedUses = 1, statInterpolation = { 1, 1, 1, }, }, + [9] = { 108, 16, -26, PvPDamageMultiplier = -50, cooldown = 0.6, levelRequirement = 48, manaReservationPercent = 20, storedUses = 1, statInterpolation = { 1, 1, 1, }, }, + [10] = { 114, 18, -25, PvPDamageMultiplier = -50, cooldown = 0.6, levelRequirement = 50, manaReservationPercent = 20, storedUses = 1, statInterpolation = { 1, 1, 1, }, }, + [11] = { 120, 20, -25, PvPDamageMultiplier = -50, cooldown = 0.6, levelRequirement = 52, manaReservationPercent = 20, storedUses = 1, statInterpolation = { 1, 1, 1, }, }, + [12] = { 126, 22, -24, PvPDamageMultiplier = -50, cooldown = 0.6, levelRequirement = 54, manaReservationPercent = 20, storedUses = 1, statInterpolation = { 1, 1, 1, }, }, + [13] = { 132, 24, -24, PvPDamageMultiplier = -50, cooldown = 0.6, levelRequirement = 56, manaReservationPercent = 20, storedUses = 1, statInterpolation = { 1, 1, 1, }, }, + [14] = { 138, 26, -23, PvPDamageMultiplier = -50, cooldown = 0.6, levelRequirement = 58, manaReservationPercent = 20, storedUses = 1, statInterpolation = { 1, 1, 1, }, }, + [15] = { 144, 28, -23, PvPDamageMultiplier = -50, cooldown = 0.6, levelRequirement = 60, manaReservationPercent = 20, storedUses = 1, statInterpolation = { 1, 1, 1, }, }, + [16] = { 150, 30, -22, PvPDamageMultiplier = -50, cooldown = 0.6, levelRequirement = 62, manaReservationPercent = 20, storedUses = 1, statInterpolation = { 1, 1, 1, }, }, + [17] = { 156, 32, -22, PvPDamageMultiplier = -50, cooldown = 0.6, levelRequirement = 64, manaReservationPercent = 20, storedUses = 1, statInterpolation = { 1, 1, 1, }, }, + [18] = { 162, 34, -21, PvPDamageMultiplier = -50, cooldown = 0.6, levelRequirement = 66, manaReservationPercent = 20, storedUses = 1, statInterpolation = { 1, 1, 1, }, }, + [19] = { 168, 36, -21, PvPDamageMultiplier = -50, cooldown = 0.6, levelRequirement = 68, manaReservationPercent = 20, storedUses = 1, statInterpolation = { 1, 1, 1, }, }, + [20] = { 174, 38, -20, PvPDamageMultiplier = -50, cooldown = 0.6, levelRequirement = 70, manaReservationPercent = 20, storedUses = 1, statInterpolation = { 1, 1, 1, }, }, + [21] = { 180, 40, -20, PvPDamageMultiplier = -50, cooldown = 0.6, levelRequirement = 72, manaReservationPercent = 20, storedUses = 1, statInterpolation = { 1, 1, 1, }, }, + [22] = { 186, 42, -19, PvPDamageMultiplier = -50, cooldown = 0.6, levelRequirement = 74, manaReservationPercent = 20, storedUses = 1, statInterpolation = { 1, 1, 1, }, }, + [23] = { 192, 44, -19, PvPDamageMultiplier = -50, cooldown = 0.6, levelRequirement = 76, manaReservationPercent = 20, storedUses = 1, statInterpolation = { 1, 1, 1, }, }, + [24] = { 198, 46, -18, PvPDamageMultiplier = -50, cooldown = 0.6, levelRequirement = 78, manaReservationPercent = 20, storedUses = 1, statInterpolation = { 1, 1, 1, }, }, + [25] = { 204, 48, -18, PvPDamageMultiplier = -50, cooldown = 0.6, levelRequirement = 80, manaReservationPercent = 20, storedUses = 1, statInterpolation = { 1, 1, 1, }, }, + [26] = { 210, 50, -17, PvPDamageMultiplier = -50, cooldown = 0.6, levelRequirement = 82, manaReservationPercent = 20, storedUses = 1, statInterpolation = { 1, 1, 1, }, }, + [27] = { 216, 52, -17, PvPDamageMultiplier = -50, cooldown = 0.6, levelRequirement = 84, manaReservationPercent = 20, storedUses = 1, statInterpolation = { 1, 1, 1, }, }, + [28] = { 222, 54, -16, PvPDamageMultiplier = -50, cooldown = 0.6, levelRequirement = 86, manaReservationPercent = 20, storedUses = 1, statInterpolation = { 1, 1, 1, }, }, + [29] = { 228, 56, -16, PvPDamageMultiplier = -50, cooldown = 0.6, levelRequirement = 88, manaReservationPercent = 20, storedUses = 1, statInterpolation = { 1, 1, 1, }, }, + [30] = { 234, 58, -15, PvPDamageMultiplier = -50, cooldown = 0.6, levelRequirement = 90, manaReservationPercent = 20, storedUses = 1, statInterpolation = { 1, 1, 1, }, }, + [31] = { 237, 59, -15, PvPDamageMultiplier = -50, cooldown = 0.6, levelRequirement = 91, manaReservationPercent = 20, storedUses = 1, statInterpolation = { 1, 1, 1, }, }, + [32] = { 240, 60, -15, PvPDamageMultiplier = -50, cooldown = 0.6, levelRequirement = 92, manaReservationPercent = 20, storedUses = 1, statInterpolation = { 1, 1, 1, }, }, + [33] = { 243, 61, -15, PvPDamageMultiplier = -50, cooldown = 0.6, levelRequirement = 93, manaReservationPercent = 20, storedUses = 1, statInterpolation = { 1, 1, 1, }, }, + [34] = { 246, 62, -14, PvPDamageMultiplier = -50, cooldown = 0.6, levelRequirement = 94, manaReservationPercent = 20, storedUses = 1, statInterpolation = { 1, 1, 1, }, }, + [35] = { 249, 63, -14, PvPDamageMultiplier = -50, cooldown = 0.6, levelRequirement = 95, manaReservationPercent = 20, storedUses = 1, statInterpolation = { 1, 1, 1, }, }, + [36] = { 252, 64, -14, PvPDamageMultiplier = -50, cooldown = 0.6, levelRequirement = 96, manaReservationPercent = 20, storedUses = 1, statInterpolation = { 1, 1, 1, }, }, + [37] = { 255, 65, -14, PvPDamageMultiplier = -50, cooldown = 0.6, levelRequirement = 97, manaReservationPercent = 20, storedUses = 1, statInterpolation = { 1, 1, 1, }, }, + [38] = { 258, 66, -13, PvPDamageMultiplier = -50, cooldown = 0.6, levelRequirement = 98, manaReservationPercent = 20, storedUses = 1, statInterpolation = { 1, 1, 1, }, }, + [39] = { 261, 67, -13, PvPDamageMultiplier = -50, cooldown = 0.6, levelRequirement = 99, manaReservationPercent = 20, storedUses = 1, statInterpolation = { 1, 1, 1, }, }, + [40] = { 264, 68, -13, PvPDamageMultiplier = -50, cooldown = 0.6, levelRequirement = 100, manaReservationPercent = 20, storedUses = 1, statInterpolation = { 1, 1, 1, }, }, }, } skills["SoulLink"] = { @@ -17483,46 +17818,46 @@ skills["StormCallAltX"] = { "active_skill_base_radius_+", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, 100.66666828096, 0, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 12, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 13, }, }, - [2] = { 0.80000001192093, 1.2000000476837, 98.499999658515, 0, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 15, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 14, }, }, - [3] = { 0.80000001192093, 1.2000000476837, 96.50000152116, 1, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 19, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 17, }, }, - [4] = { 0.80000001192093, 1.2000000476837, 94.333332898716, 1, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 23, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 18, }, }, - [5] = { 0.80000001192093, 1.2000000476837, 92.333334761361, 1, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 27, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 20, }, }, - [6] = { 0.80000001192093, 1.2000000476837, 91.000002669791, 2, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 31, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 21, }, }, - [7] = { 0.80000001192093, 1.2000000476837, 89.666670578222, 2, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 35, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 22, }, }, - [8] = { 0.80000001192093, 1.2000000476837, 88.333338486652, 2, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 38, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 24, }, }, - [9] = { 0.80000001192093, 1.2000000476837, 87.166668932885, 3, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 41, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 26, }, }, - [10] = { 0.80000001192093, 1.2000000476837, 85.833336841315, 3, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 44, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 26, }, }, - [11] = { 0.80000001192093, 1.2000000476837, 84.666667287548, 3, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 47, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 27, }, }, - [12] = { 0.80000001192093, 1.2000000476837, 83.500005681068, 4, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 50, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 28, }, }, - [13] = { 0.80000001192093, 1.2000000476837, 82.333336127301, 4, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 53, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 30, }, }, - [14] = { 0.80000001192093, 1.2000000476837, 81.166666573534, 4, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 56, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 31, }, }, - [15] = { 0.80000001192093, 1.2000000476837, 80.000004967054, 5, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 59, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 32, }, }, - [16] = { 0.80000001192093, 1.2000000476837, 78.833335413287, 5, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 62, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 34, }, }, - [17] = { 0.80000001192093, 1.2000000476837, 77.500003321717, 5, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 64, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 34, }, }, - [18] = { 0.80000001192093, 1.2000000476837, 76.166671230147, 6, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 66, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 35, }, }, - [19] = { 0.80000001192093, 1.2000000476837, 75.500005184362, 6, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 68, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 36, }, }, - [20] = { 0.80000001192093, 1.2000000476837, 74.499998168399, 6, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 70, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 37, }, }, - [21] = { 0.80000001192093, 1.2000000476837, 73.499999099721, 7, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 72, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 38, }, }, - [22] = { 0.80000001192093, 1.2000000476837, 72.333337493241, 7, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 74, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 38, }, }, - [23] = { 0.80000001192093, 1.2000000476837, 71.333338424564, 7, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 76, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 39, }, }, - [24] = { 0.80000001192093, 1.2000000476837, 70.3333314086, 8, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 78, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 40, }, }, - [25] = { 0.80000001192093, 1.2000000476837, 69.333332339923, 8, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 80, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 41, }, }, - [26] = { 0.80000001192093, 1.2000000476837, 68.333333271245, 8, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 82, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 42, }, }, - [27] = { 0.80000001192093, 1.2000000476837, 67.333334202568, 9, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 84, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 42, }, }, - [28] = { 0.80000001192093, 1.2000000476837, 66.500001645337, 9, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 86, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 43, }, }, - [29] = { 0.80000001192093, 1.2000000476837, 65.500002576659, 9, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 88, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 44, }, }, - [30] = { 0.80000001192093, 1.2000000476837, 64.499999534339, 10, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 90, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 45, }, }, - [31] = { 0.80000001192093, 1.2000000476837, 64, 10, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 91, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 46, }, }, - [32] = { 0.80000001192093, 1.2000000476837, 63.666666977108, 10, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 92, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 46, }, }, - [33] = { 0.80000001192093, 1.2000000476837, 63.166667442769, 10, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 93, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 46, }, }, - [34] = { 0.80000001192093, 1.2000000476837, 62.66666790843, 10, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 94, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 47, }, }, - [35] = { 0.80000001192093, 1.2000000476837, 62.333334885538, 10, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 95, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 47, }, }, - [36] = { 0.80000001192093, 1.2000000476837, 61.833335351199, 11, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 96, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 48, }, }, - [37] = { 0.80000001192093, 1.2000000476837, 61.33333581686, 11, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 97, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 48, }, }, - [38] = { 0.80000001192093, 1.2000000476837, 61.000002793968, 11, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 98, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 48, }, }, - [39] = { 0.80000001192093, 1.2000000476837, 60.500003259629, 11, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 99, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 49, }, }, - [40] = { 0.80000001192093, 1.2000000476837, 59.999999751647, 11, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 100, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 49, }, }, + [1] = { 0.80000001192093, 1.2000000476837, 115.76667090729, 0, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 12, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 13, }, }, + [2] = { 0.80000001192093, 1.2000000476837, 113.27500596512, 0, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 15, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 14, }, }, + [3] = { 0.80000001192093, 1.2000000476837, 110.97500572298, 1, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 19, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 17, }, }, + [4] = { 0.80000001192093, 1.2000000476837, 108.48333283352, 1, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 23, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 18, }, }, + [5] = { 0.80000001192093, 1.2000000476837, 106.18333259138, 1, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 27, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 20, }, }, + [6] = { 0.80000001192093, 1.2000000476837, 104.64999909662, 2, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 31, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 21, }, }, + [7] = { 0.80000001192093, 1.2000000476837, 103.11666560185, 2, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 35, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 22, }, }, + [8] = { 0.80000001192093, 1.2000000476837, 101.58333210709, 2, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 38, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 24, }, }, + [9] = { 0.80000001192093, 1.2000000476837, 100.24167125964, 3, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 41, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 26, }, }, + [10] = { 0.80000001192093, 1.2000000476837, 98.708337764877, 3, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 44, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 26, }, }, + [11] = { 0.80000001192093, 1.2000000476837, 97.366668970138, 3, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 47, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 27, }, }, + [12] = { 0.80000001192093, 1.2000000476837, 96.025000175399, 4, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 50, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 28, }, }, + [13] = { 0.80000001192093, 1.2000000476837, 94.683339327946, 4, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 53, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 30, }, }, + [14] = { 0.80000001192093, 1.2000000476837, 93.341670533208, 4, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 56, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 31, }, }, + [15] = { 0.80000001192093, 1.2000000476837, 92.000001738469, 5, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 59, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 32, }, }, + [16] = { 0.80000001192093, 1.2000000476837, 90.65833294373, 5, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 62, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 34, }, }, + [17] = { 0.80000001192093, 1.2000000476837, 89.124999448967, 5, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 64, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 34, }, }, + [18] = { 0.80000001192093, 1.2000000476837, 87.591665954205, 6, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 66, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 35, }, }, + [19] = { 0.80000001192093, 1.2000000476837, 86.824999206824, 6, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 68, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 36, }, }, + [20] = { 0.80000001192093, 1.2000000476837, 85.675003059395, 6, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 70, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 37, }, }, + [21] = { 0.80000001192093, 1.2000000476837, 84.52499896468, 7, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 72, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 38, }, }, + [22] = { 0.80000001192093, 1.2000000476837, 83.183338117227, 7, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 74, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 38, }, }, + [23] = { 0.80000001192093, 1.2000000476837, 82.033334022512, 7, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 76, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 39, }, }, + [24] = { 0.80000001192093, 1.2000000476837, 80.883337875083, 8, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 78, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 40, }, }, + [25] = { 0.80000001192093, 1.2000000476837, 79.733333780368, 8, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 80, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 41, }, }, + [26] = { 0.80000001192093, 1.2000000476837, 78.583337632939, 8, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 82, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 42, }, }, + [27] = { 0.80000001192093, 1.2000000476837, 77.433333538224, 9, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 84, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 42, }, }, + [28] = { 0.80000001192093, 1.2000000476837, 76.475002090819, 9, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 86, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 43, }, }, + [29] = { 0.80000001192093, 1.2000000476837, 75.324997996104, 9, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 88, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 44, }, }, + [30] = { 0.80000001192093, 1.2000000476837, 74.175001848675, 10, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 90, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 45, }, }, + [31] = { 0.80000001192093, 1.2000000476837, 73.599999801318, 10, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 91, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 46, }, }, + [32] = { 0.80000001192093, 1.2000000476837, 73.21667040127, 10, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 92, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 46, }, }, + [33] = { 0.80000001192093, 1.2000000476837, 72.641668353913, 10, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 93, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 46, }, }, + [34] = { 0.80000001192093, 1.2000000476837, 72.066666306555, 10, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 94, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 47, }, }, + [35] = { 0.80000001192093, 1.2000000476837, 71.683336906508, 10, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 95, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 47, }, }, + [36] = { 0.80000001192093, 1.2000000476837, 71.10833485915, 11, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 96, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 48, }, }, + [37] = { 0.80000001192093, 1.2000000476837, 70.533332811793, 11, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 97, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 48, }, }, + [38] = { 0.80000001192093, 1.2000000476837, 70.150003411745, 11, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 98, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 48, }, }, + [39] = { 0.80000001192093, 1.2000000476837, 69.575001364388, 11, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 99, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 49, }, }, + [40] = { 0.80000001192093, 1.2000000476837, 68.99999931703, 11, critChance = 6, damageEffectiveness = 2.35, levelRequirement = 100, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 49, }, }, }, } skills["VaalStormCall"] = { @@ -19609,7 +19944,7 @@ skills["VoltaxicBurst"] = { description = "Each cast of this spell waits for a short duration, releasing a burst of lightning and chaos spell damage in an area around you when that duration ends. Enemies killed by this damage, or shortly after, will explode. The explosions of the corpses are not affected by modifiers to spell damage, and cannot be reflected.", 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.Chaos] = true, [SkillType.Lightning] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, [SkillType.Nova] = true, [SkillType.Duration] = true, }, statDescriptionScope = "skill_stat_descriptions", - castTime = 0.5, + castTime = 0.4, preDamageFunc = function(activeSkill, output) local duration = math.floor(activeSkill.skillData.duration * output.DurationMod * 10) activeSkill.skillModList:NewMod("Damage", "INC", activeSkill.skillModList:Sum("INC", activeSkill.skillCfg, "VoltaxicDurationIncDamage") * duration, "Skill:VoltaxicBurst") @@ -19656,46 +19991,46 @@ skills["VoltaxicBurst"] = { "active_skill_base_radius_+", }, levels = { - [1] = { 0.69999998807907, 1.2999999523163, 0, critChance = 6.5, damageEffectiveness = 2.1, levelRequirement = 12, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [2] = { 0.69999998807907, 1.2999999523163, 0, critChance = 6.5, damageEffectiveness = 2.1, levelRequirement = 15, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, - [3] = { 0.69999998807907, 1.2999999523163, 0, critChance = 6.5, damageEffectiveness = 2.1, levelRequirement = 19, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, - [4] = { 0.69999998807907, 1.2999999523163, 0, critChance = 6.5, damageEffectiveness = 2.1, levelRequirement = 23, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, - [5] = { 0.69999998807907, 1.2999999523163, 0, critChance = 6.5, damageEffectiveness = 2.1, levelRequirement = 27, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, - [6] = { 0.69999998807907, 1.2999999523163, 0, critChance = 6.5, damageEffectiveness = 2.2, levelRequirement = 31, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, - [7] = { 0.69999998807907, 1.2999999523163, 1, critChance = 6.5, damageEffectiveness = 2.2, levelRequirement = 35, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, - [8] = { 0.69999998807907, 1.2999999523163, 1, critChance = 6.5, damageEffectiveness = 2.2, levelRequirement = 38, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, - [9] = { 0.69999998807907, 1.2999999523163, 1, critChance = 6.5, damageEffectiveness = 2.2, levelRequirement = 41, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, - [10] = { 0.69999998807907, 1.2999999523163, 1, critChance = 6.5, damageEffectiveness = 2.2, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, - [11] = { 0.69999998807907, 1.2999999523163, 1, critChance = 6.5, damageEffectiveness = 2.2, levelRequirement = 47, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, - [12] = { 0.69999998807907, 1.2999999523163, 1, critChance = 6.5, damageEffectiveness = 2.2, levelRequirement = 50, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, - [13] = { 0.69999998807907, 1.2999999523163, 2, critChance = 6.5, damageEffectiveness = 2.2, levelRequirement = 53, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, - [14] = { 0.69999998807907, 1.2999999523163, 2, critChance = 6.5, damageEffectiveness = 2.3, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, - [15] = { 0.69999998807907, 1.2999999523163, 2, critChance = 6.5, damageEffectiveness = 2.3, levelRequirement = 59, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, - [16] = { 0.69999998807907, 1.2999999523163, 2, critChance = 6.5, damageEffectiveness = 2.3, levelRequirement = 62, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, - [17] = { 0.69999998807907, 1.2999999523163, 2, critChance = 6.5, damageEffectiveness = 2.3, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, - [18] = { 0.69999998807907, 1.2999999523163, 2, critChance = 6.5, damageEffectiveness = 2.3, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, - [19] = { 0.69999998807907, 1.2999999523163, 3, critChance = 6.5, damageEffectiveness = 2.3, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, - [20] = { 0.69999998807907, 1.2999999523163, 3, critChance = 6.5, damageEffectiveness = 2.3, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, - [21] = { 0.69999998807907, 1.2999999523163, 3, critChance = 6.5, damageEffectiveness = 2.3, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, - [22] = { 0.69999998807907, 1.2999999523163, 3, critChance = 6.5, damageEffectiveness = 2.3, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, - [23] = { 0.69999998807907, 1.2999999523163, 3, critChance = 6.5, damageEffectiveness = 2.3, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, - [24] = { 0.69999998807907, 1.2999999523163, 3, critChance = 6.5, damageEffectiveness = 2.3, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, - [25] = { 0.69999998807907, 1.2999999523163, 4, critChance = 6.5, damageEffectiveness = 2.3, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, - [26] = { 0.69999998807907, 1.2999999523163, 4, critChance = 6.5, damageEffectiveness = 2.3, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, - [27] = { 0.69999998807907, 1.2999999523163, 4, critChance = 6.5, damageEffectiveness = 2.3, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, - [28] = { 0.69999998807907, 1.2999999523163, 4, critChance = 6.5, damageEffectiveness = 2.3, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, - [29] = { 0.69999998807907, 1.2999999523163, 4, critChance = 6.5, damageEffectiveness = 2.3, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, - [30] = { 0.69999998807907, 1.2999999523163, 4, critChance = 6.5, damageEffectiveness = 2.3, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, - [31] = { 0.69999998807907, 1.2999999523163, 5, critChance = 6.5, damageEffectiveness = 2.3, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, - [32] = { 0.69999998807907, 1.2999999523163, 5, critChance = 6.5, damageEffectiveness = 2.3, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, - [33] = { 0.69999998807907, 1.2999999523163, 5, critChance = 6.5, damageEffectiveness = 2.3, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [34] = { 0.69999998807907, 1.2999999523163, 5, critChance = 6.5, damageEffectiveness = 2.3, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [35] = { 0.69999998807907, 1.2999999523163, 5, critChance = 6.5, damageEffectiveness = 2.3, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [36] = { 0.69999998807907, 1.2999999523163, 5, critChance = 6.5, damageEffectiveness = 2.3, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [37] = { 0.69999998807907, 1.2999999523163, 5, critChance = 6.5, damageEffectiveness = 2.3, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, - [38] = { 0.69999998807907, 1.2999999523163, 5, critChance = 6.5, damageEffectiveness = 2.3, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, - [39] = { 0.69999998807907, 1.2999999523163, 5, critChance = 6.5, damageEffectiveness = 2.3, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, - [40] = { 0.69999998807907, 1.2999999523163, 5, critChance = 6.5, damageEffectiveness = 2.3, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 22, }, }, + [1] = { 0.69999998807907, 1.2999999523163, 0, critChance = 6.5, damageEffectiveness = 2.1, levelRequirement = 12, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [2] = { 0.69999998807907, 1.2999999523163, 0, critChance = 6.5, damageEffectiveness = 2.1, levelRequirement = 15, statInterpolation = { 3, 3, 1, }, cost = { Mana = 5, }, }, + [3] = { 0.69999998807907, 1.2999999523163, 0, critChance = 6.5, damageEffectiveness = 2.1, levelRequirement = 19, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [4] = { 0.69999998807907, 1.2999999523163, 0, critChance = 6.5, damageEffectiveness = 2.1, levelRequirement = 23, statInterpolation = { 3, 3, 1, }, cost = { Mana = 6, }, }, + [5] = { 0.69999998807907, 1.2999999523163, 0, critChance = 6.5, damageEffectiveness = 2.1, levelRequirement = 27, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, + [6] = { 0.69999998807907, 1.2999999523163, 0, critChance = 6.5, damageEffectiveness = 2.2, levelRequirement = 31, statInterpolation = { 3, 3, 1, }, cost = { Mana = 7, }, }, + [7] = { 0.69999998807907, 1.2999999523163, 1, critChance = 6.5, damageEffectiveness = 2.2, levelRequirement = 35, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [8] = { 0.69999998807907, 1.2999999523163, 1, critChance = 6.5, damageEffectiveness = 2.2, levelRequirement = 38, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [9] = { 0.69999998807907, 1.2999999523163, 1, critChance = 6.5, damageEffectiveness = 2.2, levelRequirement = 41, statInterpolation = { 3, 3, 1, }, cost = { Mana = 8, }, }, + [10] = { 0.69999998807907, 1.2999999523163, 1, critChance = 6.5, damageEffectiveness = 2.2, levelRequirement = 44, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [11] = { 0.69999998807907, 1.2999999523163, 1, critChance = 6.5, damageEffectiveness = 2.2, levelRequirement = 47, statInterpolation = { 3, 3, 1, }, cost = { Mana = 9, }, }, + [12] = { 0.69999998807907, 1.2999999523163, 1, critChance = 6.5, damageEffectiveness = 2.2, levelRequirement = 50, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [13] = { 0.69999998807907, 1.2999999523163, 2, critChance = 6.5, damageEffectiveness = 2.2, levelRequirement = 53, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [14] = { 0.69999998807907, 1.2999999523163, 2, critChance = 6.5, damageEffectiveness = 2.3, levelRequirement = 56, statInterpolation = { 3, 3, 1, }, cost = { Mana = 10, }, }, + [15] = { 0.69999998807907, 1.2999999523163, 2, critChance = 6.5, damageEffectiveness = 2.3, levelRequirement = 59, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, + [16] = { 0.69999998807907, 1.2999999523163, 2, critChance = 6.5, damageEffectiveness = 2.3, levelRequirement = 62, statInterpolation = { 3, 3, 1, }, cost = { Mana = 11, }, }, + [17] = { 0.69999998807907, 1.2999999523163, 2, critChance = 6.5, damageEffectiveness = 2.3, levelRequirement = 64, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, + [18] = { 0.69999998807907, 1.2999999523163, 2, critChance = 6.5, damageEffectiveness = 2.3, levelRequirement = 66, statInterpolation = { 3, 3, 1, }, cost = { Mana = 12, }, }, + [19] = { 0.69999998807907, 1.2999999523163, 3, critChance = 6.5, damageEffectiveness = 2.3, levelRequirement = 68, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, + [20] = { 0.69999998807907, 1.2999999523163, 3, critChance = 6.5, damageEffectiveness = 2.3, levelRequirement = 70, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, + [21] = { 0.69999998807907, 1.2999999523163, 3, critChance = 6.5, damageEffectiveness = 2.3, levelRequirement = 72, statInterpolation = { 3, 3, 1, }, cost = { Mana = 13, }, }, + [22] = { 0.69999998807907, 1.2999999523163, 3, critChance = 6.5, damageEffectiveness = 2.3, levelRequirement = 74, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, + [23] = { 0.69999998807907, 1.2999999523163, 3, critChance = 6.5, damageEffectiveness = 2.3, levelRequirement = 76, statInterpolation = { 3, 3, 1, }, cost = { Mana = 14, }, }, + [24] = { 0.69999998807907, 1.2999999523163, 3, critChance = 6.5, damageEffectiveness = 2.3, levelRequirement = 78, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, + [25] = { 0.69999998807907, 1.2999999523163, 4, critChance = 6.5, damageEffectiveness = 2.3, levelRequirement = 80, statInterpolation = { 3, 3, 1, }, cost = { Mana = 15, }, }, + [26] = { 0.69999998807907, 1.2999999523163, 4, critChance = 6.5, damageEffectiveness = 2.3, levelRequirement = 82, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, + [27] = { 0.69999998807907, 1.2999999523163, 4, critChance = 6.5, damageEffectiveness = 2.3, levelRequirement = 84, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, + [28] = { 0.69999998807907, 1.2999999523163, 4, critChance = 6.5, damageEffectiveness = 2.3, levelRequirement = 86, statInterpolation = { 3, 3, 1, }, cost = { Mana = 16, }, }, + [29] = { 0.69999998807907, 1.2999999523163, 4, critChance = 6.5, damageEffectiveness = 2.3, levelRequirement = 88, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, + [30] = { 0.69999998807907, 1.2999999523163, 4, critChance = 6.5, damageEffectiveness = 2.3, levelRequirement = 90, statInterpolation = { 3, 3, 1, }, cost = { Mana = 17, }, }, + [31] = { 0.69999998807907, 1.2999999523163, 5, critChance = 6.5, damageEffectiveness = 2.3, levelRequirement = 91, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, + [32] = { 0.69999998807907, 1.2999999523163, 5, critChance = 6.5, damageEffectiveness = 2.3, levelRequirement = 92, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, + [33] = { 0.69999998807907, 1.2999999523163, 5, critChance = 6.5, damageEffectiveness = 2.3, levelRequirement = 93, statInterpolation = { 3, 3, 1, }, cost = { Mana = 18, }, }, + [34] = { 0.69999998807907, 1.2999999523163, 5, critChance = 6.5, damageEffectiveness = 2.3, levelRequirement = 94, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, + [35] = { 0.69999998807907, 1.2999999523163, 5, critChance = 6.5, damageEffectiveness = 2.3, levelRequirement = 95, statInterpolation = { 3, 3, 1, }, cost = { Mana = 19, }, }, + [36] = { 0.69999998807907, 1.2999999523163, 5, critChance = 6.5, damageEffectiveness = 2.3, levelRequirement = 96, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, + [37] = { 0.69999998807907, 1.2999999523163, 5, critChance = 6.5, damageEffectiveness = 2.3, levelRequirement = 97, statInterpolation = { 3, 3, 1, }, cost = { Mana = 20, }, }, + [38] = { 0.69999998807907, 1.2999999523163, 5, critChance = 6.5, damageEffectiveness = 2.3, levelRequirement = 98, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [39] = { 0.69999998807907, 1.2999999523163, 5, critChance = 6.5, damageEffectiveness = 2.3, levelRequirement = 99, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, + [40] = { 0.69999998807907, 1.2999999523163, 5, critChance = 6.5, damageEffectiveness = 2.3, levelRequirement = 100, statInterpolation = { 3, 3, 1, }, cost = { Mana = 21, }, }, }, } skills["Vortex"] = { @@ -19883,6 +20218,78 @@ skills["VortexAltX"] = { [40] = { 0.80000001192093, 1.2000000476837, 166.16667483126, -83.166664710889, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 100, statInterpolation = { 3, 3, 3, 3, }, cost = { Mana = 33, }, }, }, } +skills["WallOfForce"] = { + name = "Wall of Force", + baseTypeName = "Wall of Force", + color = 3, + description = "Creates a wall of force which allies and enemies can pass through, but allied projectiles which can collide with enemies will also collide with this wall, and can chain from it to other targets. Projectiles can only collide with a single Wall of Force, and no more than once.", + skillTypes = { [SkillType.Spell] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Triggerable] = true, [SkillType.Cooldown] = true, }, + statDescriptionScope = "skill_stat_descriptions", + castTime = 0.5, + baseFlags = { + spell = true, + duration = true, + }, + qualityStats = { + Default = { + { "base_cooldown_speed_+%", 1 }, + }, + }, + stats = { + "base_skill_effect_duration", + "wall_maximum_length", + "kinetic_wall_damage_+%_final_for_projectiles_chaining_off_wall", + "kinetic_wall_maximum_number_of_hits", + "base_deal_no_damage", + "quality_display_wall_length_is_gem", + "display_wall_of_force_restrictions", + }, + notMinionStat = { + "base_skill_effect_duration", + }, + levels = { + [1] = { 5100, 45, -30, 11, cooldown = 9, levelRequirement = 16, storedUses = 1, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 9, }, }, + [2] = { 5200, 46, -29, 11, cooldown = 9, levelRequirement = 20, storedUses = 1, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 10, }, }, + [3] = { 5300, 47, -29, 12, cooldown = 9, levelRequirement = 24, storedUses = 1, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 11, }, }, + [4] = { 5400, 47, -28, 12, cooldown = 9, levelRequirement = 28, storedUses = 1, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 12, }, }, + [5] = { 5500, 48, -28, 12, cooldown = 9, levelRequirement = 31, storedUses = 1, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 13, }, }, + [6] = { 5600, 49, -27, 13, cooldown = 9, levelRequirement = 34, storedUses = 1, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 15, }, }, + [7] = { 5700, 50, -27, 13, cooldown = 9, levelRequirement = 37, storedUses = 1, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 16, }, }, + [8] = { 5800, 51, -26, 13, cooldown = 9, levelRequirement = 40, storedUses = 1, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 18, }, }, + [9] = { 5900, 51, -26, 13, cooldown = 9, levelRequirement = 43, storedUses = 1, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 19, }, }, + [10] = { 6000, 52, -25, 14, cooldown = 9, levelRequirement = 46, storedUses = 1, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 21, }, }, + [11] = { 6100, 53, -25, 14, cooldown = 9, levelRequirement = 49, storedUses = 1, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 22, }, }, + [12] = { 6200, 54, -24, 14, cooldown = 9, levelRequirement = 52, storedUses = 1, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 23, }, }, + [13] = { 6300, 55, -23, 15, cooldown = 9, levelRequirement = 55, storedUses = 1, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 25, }, }, + [14] = { 6400, 55, -23, 15, cooldown = 9, levelRequirement = 58, storedUses = 1, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 26, }, }, + [15] = { 6500, 56, -22, 15, cooldown = 9, levelRequirement = 60, storedUses = 1, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 27, }, }, + [16] = { 6600, 57, -22, 16, cooldown = 9, levelRequirement = 62, storedUses = 1, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 29, }, }, + [17] = { 6700, 58, -21, 16, cooldown = 9, levelRequirement = 64, storedUses = 1, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 30, }, }, + [18] = { 6800, 59, -21, 16, cooldown = 9, levelRequirement = 66, storedUses = 1, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 31, }, }, + [19] = { 6900, 59, -20, 16, cooldown = 9, levelRequirement = 68, storedUses = 1, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 32, }, }, + [20] = { 7000, 60, -20, 17, cooldown = 9, levelRequirement = 70, storedUses = 1, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 33, }, }, + [21] = { 7100, 61, -19, 17, cooldown = 9, levelRequirement = 72, storedUses = 1, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 34, }, }, + [22] = { 7200, 62, -18, 17, cooldown = 9, levelRequirement = 74, storedUses = 1, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 34, }, }, + [23] = { 7300, 63, -18, 18, cooldown = 9, levelRequirement = 76, storedUses = 1, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 35, }, }, + [24] = { 7400, 63, -17, 18, cooldown = 9, levelRequirement = 78, storedUses = 1, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 36, }, }, + [25] = { 7500, 64, -17, 18, cooldown = 9, levelRequirement = 80, storedUses = 1, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 36, }, }, + [26] = { 7600, 65, -16, 19, cooldown = 9, levelRequirement = 82, storedUses = 1, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 37, }, }, + [27] = { 7700, 66, -16, 19, cooldown = 9, levelRequirement = 84, storedUses = 1, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 38, }, }, + [28] = { 7800, 67, -15, 19, cooldown = 9, levelRequirement = 86, storedUses = 1, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 39, }, }, + [29] = { 7900, 67, -15, 19, cooldown = 9, levelRequirement = 88, storedUses = 1, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 39, }, }, + [30] = { 8000, 68, -14, 20, cooldown = 9, levelRequirement = 90, storedUses = 1, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 40, }, }, + [31] = { 8100, 69, -14, 20, cooldown = 9, levelRequirement = 91, storedUses = 1, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 40, }, }, + [32] = { 8200, 70, -13, 20, cooldown = 9, levelRequirement = 92, storedUses = 1, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 41, }, }, + [33] = { 8300, 71, -12, 21, cooldown = 9, levelRequirement = 93, storedUses = 1, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 41, }, }, + [34] = { 8400, 71, -12, 21, cooldown = 9, levelRequirement = 94, storedUses = 1, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 42, }, }, + [35] = { 8500, 72, -11, 21, cooldown = 9, levelRequirement = 95, storedUses = 1, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 42, }, }, + [36] = { 8600, 73, -11, 22, cooldown = 9, levelRequirement = 96, storedUses = 1, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 42, }, }, + [37] = { 8700, 74, -10, 22, cooldown = 9, levelRequirement = 97, storedUses = 1, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 43, }, }, + [38] = { 8800, 75, -10, 22, cooldown = 9, levelRequirement = 98, storedUses = 1, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 43, }, }, + [39] = { 8900, 75, -9, 22, cooldown = 9, levelRequirement = 99, storedUses = 1, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 43, }, }, + [40] = { 9000, 76, -9, 23, cooldown = 9, levelRequirement = 100, storedUses = 1, statInterpolation = { 1, 1, 1, 1, }, cost = { Mana = 44, }, }, + }, +} skills["WaveOfConviction"] = { name = "Wave of Conviction", baseTypeName = "Wave of Conviction", @@ -20132,12 +20539,12 @@ skills["WinterOrb"] = { }, constantStats = { { "frost_fury_max_number_of_stages", 8 }, - { "frost_fury_base_fire_interval_ms", 1600 }, + { "frost_fury_base_fire_interval_ms", 1200 }, { "frost_fury_duration_+%_per_stage", 30 }, { "frost_fury_fire_speed_+%_per_stage", 20 }, { "additional_projectiles_fired_with_distance_offset", 100 }, { "projectile_spread_radius", 100 }, - { "frost_fury_fire_speed_+%_final_while_channelling", 125 }, + { "frost_fury_fire_speed_+%_final_while_channelling", 80 }, { "base_skill_effect_duration", 1600 }, }, stats = { diff --git a/src/Data/Skills/act_str.lua b/src/Data/Skills/act_str.lua index 990d001a2b..741898d028 100644 --- a/src/Data/Skills/act_str.lua +++ b/src/Data/Skills/act_str.lua @@ -1396,46 +1396,46 @@ skills["Boneshatter"] = { "trauma_strike_self_damage_per_trauma", }, levels = { - [1] = { 0.60000002384186, 1.1200000047684, 1.6799999475479, 2, attackSpeedMultiplier = -15, baseMultiplier = 2.31, damageEffectiveness = 2.31, levelRequirement = 28, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 9, }, }, - [2] = { 0.60000002384186, 1.1039999723434, 1.6560000181198, 2, attackSpeedMultiplier = -15, baseMultiplier = 2.366, damageEffectiveness = 2.366, levelRequirement = 31, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 9, }, }, - [3] = { 0.60000002384186, 1.0880000591278, 1.6319999694824, 2, attackSpeedMultiplier = -15, baseMultiplier = 2.423, damageEffectiveness = 2.423, levelRequirement = 34, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 9, }, }, - [4] = { 0.60000002384186, 1.0720000267029, 1.6080000400543, 2, attackSpeedMultiplier = -15, baseMultiplier = 2.481, damageEffectiveness = 2.481, levelRequirement = 37, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 9, }, }, - [5] = { 0.60000002384186, 1.055999994278, 1.5839999914169, 2, attackSpeedMultiplier = -15, baseMultiplier = 2.539, damageEffectiveness = 2.539, levelRequirement = 40, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 10, }, }, - [6] = { 0.60000002384186, 1.039999961853, 1.5599999427795, 2, attackSpeedMultiplier = -15, baseMultiplier = 2.594, damageEffectiveness = 2.594, levelRequirement = 42, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 10, }, }, - [7] = { 0.60000002384186, 1.0240000486374, 1.5360000133514, 2, attackSpeedMultiplier = -15, baseMultiplier = 2.648, damageEffectiveness = 2.648, levelRequirement = 44, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 10, }, }, - [8] = { 0.80000001192093, 1.0080000162125, 1.5119999647141, 3, attackSpeedMultiplier = -15, baseMultiplier = 2.703, damageEffectiveness = 2.703, levelRequirement = 46, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 10, }, }, - [9] = { 0.80000001192093, 0.99199998378754, 1.4880000352859, 3, attackSpeedMultiplier = -15, baseMultiplier = 2.758, damageEffectiveness = 2.758, levelRequirement = 48, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 10, }, }, - [10] = { 0.80000001192093, 0.97600001096725, 1.4639999866486, 3, attackSpeedMultiplier = -15, baseMultiplier = 2.813, damageEffectiveness = 2.813, levelRequirement = 50, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 10, }, }, - [11] = { 0.80000001192093, 0.95999997854233, 1.4400000572205, 3, attackSpeedMultiplier = -15, baseMultiplier = 2.868, damageEffectiveness = 2.868, levelRequirement = 52, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 10, }, }, - [12] = { 0.80000001192093, 0.94400000572205, 1.4160000085831, 3, attackSpeedMultiplier = -15, baseMultiplier = 2.924, damageEffectiveness = 2.924, levelRequirement = 54, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 11, }, }, - [13] = { 0.80000001192093, 0.92799997329712, 1.3919999599457, 3, attackSpeedMultiplier = -15, baseMultiplier = 2.98, damageEffectiveness = 2.98, levelRequirement = 56, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 11, }, }, - [14] = { 0.80000001192093, 0.91200000047684, 1.3680000305176, 3, attackSpeedMultiplier = -15, baseMultiplier = 3.037, damageEffectiveness = 3.037, levelRequirement = 58, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 11, }, }, - [15] = { 0.80000001192093, 0.89600002765656, 1.3439999818802, 3, attackSpeedMultiplier = -15, baseMultiplier = 3.093, damageEffectiveness = 3.093, levelRequirement = 60, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 11, }, }, - [16] = { 0.80000001192093, 0.87999999523163, 1.3200000524521, 3, attackSpeedMultiplier = -15, baseMultiplier = 3.152, damageEffectiveness = 3.152, levelRequirement = 62, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 11, }, }, - [17] = { 0.80000001192093, 0.86400002241135, 1.2960000038147, 3, attackSpeedMultiplier = -15, baseMultiplier = 3.209, damageEffectiveness = 3.209, levelRequirement = 64, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 11, }, }, - [18] = { 0.80000001192093, 0.84799998998642, 1.2719999551773, 3, attackSpeedMultiplier = -15, baseMultiplier = 3.267, damageEffectiveness = 3.267, levelRequirement = 66, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 12, }, }, - [19] = { 0.80000001192093, 0.83200001716614, 1.2480000257492, 3, attackSpeedMultiplier = -15, baseMultiplier = 3.325, damageEffectiveness = 3.325, levelRequirement = 68, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 12, }, }, - [20] = { 1, 0.81599998474121, 1.2239999771118, 4, attackSpeedMultiplier = -15, baseMultiplier = 3.383, damageEffectiveness = 3.383, levelRequirement = 70, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 12, }, }, - [21] = { 1, 0.80000001192093, 1.2000000476837, 4, attackSpeedMultiplier = -15, baseMultiplier = 3.442, damageEffectiveness = 3.442, levelRequirement = 72, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 12, }, }, - [22] = { 1, 0.783999979496, 1.1759999990463, 4, attackSpeedMultiplier = -15, baseMultiplier = 3.5, damageEffectiveness = 3.5, levelRequirement = 74, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 12, }, }, - [23] = { 1, 0.76800000667572, 1.1519999504089, 4, attackSpeedMultiplier = -15, baseMultiplier = 3.56, damageEffectiveness = 3.56, levelRequirement = 76, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 12, }, }, - [24] = { 1, 0.75199997425079, 1.1280000209808, 4, attackSpeedMultiplier = -15, baseMultiplier = 3.619, damageEffectiveness = 3.619, levelRequirement = 78, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 12, }, }, - [25] = { 1, 0.73600000143051, 1.1039999723434, 4, attackSpeedMultiplier = -15, baseMultiplier = 3.68, damageEffectiveness = 3.68, levelRequirement = 80, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 13, }, }, - [26] = { 1, 0.72000002861023, 1.0800000429153, 4, attackSpeedMultiplier = -15, baseMultiplier = 3.74, damageEffectiveness = 3.74, levelRequirement = 82, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 13, }, }, - [27] = { 1, 0.7039999961853, 1.055999994278, 4, attackSpeedMultiplier = -15, baseMultiplier = 3.801, damageEffectiveness = 3.801, levelRequirement = 84, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 13, }, }, - [28] = { 1, 0.68800002336502, 1.0319999456406, 4, attackSpeedMultiplier = -15, baseMultiplier = 3.862, damageEffectiveness = 3.862, levelRequirement = 86, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 13, }, }, - [29] = { 1, 0.67199999094009, 1.0080000162125, 4, attackSpeedMultiplier = -15, baseMultiplier = 3.923, damageEffectiveness = 3.923, levelRequirement = 88, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 13, }, }, - [30] = { 1, 0.65600001811981, 0.98400002717972, 4, attackSpeedMultiplier = -15, baseMultiplier = 3.984, damageEffectiveness = 3.984, levelRequirement = 90, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 13, }, }, - [31] = { 1, 0.64800000190735, 0.97200000286102, 4, attackSpeedMultiplier = -15, baseMultiplier = 4.015, damageEffectiveness = 4.015, levelRequirement = 91, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 13, }, }, - [32] = { 1, 0.63999998569489, 0.95999997854233, 4, attackSpeedMultiplier = -15, baseMultiplier = 4.046, damageEffectiveness = 4.046, levelRequirement = 92, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 14, }, }, - [33] = { 1, 0.63200002908707, 0.94800001382828, 4, attackSpeedMultiplier = -15, baseMultiplier = 4.077, damageEffectiveness = 4.077, levelRequirement = 93, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 14, }, }, - [34] = { 1, 0.6240000128746, 0.93599998950958, 4, attackSpeedMultiplier = -15, baseMultiplier = 4.108, damageEffectiveness = 4.108, levelRequirement = 94, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 14, }, }, - [35] = { 1, 0.61599999666214, 0.92400002479553, 4, attackSpeedMultiplier = -15, baseMultiplier = 4.139, damageEffectiveness = 4.139, levelRequirement = 95, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 14, }, }, - [36] = { 1.2000000476837, 0.60799998044968, 0.91200000047684, 5, attackSpeedMultiplier = -15, baseMultiplier = 4.17, damageEffectiveness = 4.17, levelRequirement = 96, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 14, }, }, - [37] = { 1.2000000476837, 0.60000002384186, 0.89999997615814, 5, attackSpeedMultiplier = -15, baseMultiplier = 4.202, damageEffectiveness = 4.202, levelRequirement = 97, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 14, }, }, - [38] = { 1.2000000476837, 0.59200000762939, 0.88800001144409, 5, attackSpeedMultiplier = -15, baseMultiplier = 4.233, damageEffectiveness = 4.233, levelRequirement = 98, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 14, }, }, - [39] = { 1.2000000476837, 0.58399999141693, 0.8759999871254, 5, attackSpeedMultiplier = -15, baseMultiplier = 4.266, damageEffectiveness = 4.266, levelRequirement = 99, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 14, }, }, - [40] = { 1.2000000476837, 0.57599997520447, 0.86400002241135, 5, attackSpeedMultiplier = -15, baseMultiplier = 4.297, damageEffectiveness = 4.297, levelRequirement = 100, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 14, }, }, + [1] = { 0.60000002384186, 1.1200000047684, 1.6799999475479, 3, attackSpeedMultiplier = -15, baseMultiplier = 2.31, damageEffectiveness = 2.31, levelRequirement = 28, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 9, }, }, + [2] = { 0.60000002384186, 1.1039999723434, 1.6560000181198, 3, attackSpeedMultiplier = -15, baseMultiplier = 2.366, damageEffectiveness = 2.366, levelRequirement = 31, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 9, }, }, + [3] = { 0.60000002384186, 1.0880000591278, 1.6319999694824, 3, attackSpeedMultiplier = -15, baseMultiplier = 2.423, damageEffectiveness = 2.423, levelRequirement = 34, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 9, }, }, + [4] = { 0.60000002384186, 1.0720000267029, 1.6080000400543, 3, attackSpeedMultiplier = -15, baseMultiplier = 2.481, damageEffectiveness = 2.481, levelRequirement = 37, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 9, }, }, + [5] = { 0.60000002384186, 1.055999994278, 1.5839999914169, 4, attackSpeedMultiplier = -15, baseMultiplier = 2.539, damageEffectiveness = 2.539, levelRequirement = 40, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 10, }, }, + [6] = { 0.60000002384186, 1.039999961853, 1.5599999427795, 4, attackSpeedMultiplier = -15, baseMultiplier = 2.594, damageEffectiveness = 2.594, levelRequirement = 42, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 10, }, }, + [7] = { 0.60000002384186, 1.0240000486374, 1.5360000133514, 4, attackSpeedMultiplier = -15, baseMultiplier = 2.648, damageEffectiveness = 2.648, levelRequirement = 44, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 10, }, }, + [8] = { 0.80000001192093, 1.0080000162125, 1.5119999647141, 4, attackSpeedMultiplier = -15, baseMultiplier = 2.703, damageEffectiveness = 2.703, levelRequirement = 46, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 10, }, }, + [9] = { 0.80000001192093, 0.99199998378754, 1.4880000352859, 4, attackSpeedMultiplier = -15, baseMultiplier = 2.758, damageEffectiveness = 2.758, levelRequirement = 48, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 10, }, }, + [10] = { 0.80000001192093, 0.97600001096725, 1.4639999866486, 4, attackSpeedMultiplier = -15, baseMultiplier = 2.813, damageEffectiveness = 2.813, levelRequirement = 50, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 10, }, }, + [11] = { 0.80000001192093, 0.95999997854233, 1.4400000572205, 5, attackSpeedMultiplier = -15, baseMultiplier = 2.868, damageEffectiveness = 2.868, levelRequirement = 52, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 10, }, }, + [12] = { 0.80000001192093, 0.94400000572205, 1.4160000085831, 5, attackSpeedMultiplier = -15, baseMultiplier = 2.924, damageEffectiveness = 2.924, levelRequirement = 54, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 11, }, }, + [13] = { 0.80000001192093, 0.92799997329712, 1.3919999599457, 5, attackSpeedMultiplier = -15, baseMultiplier = 2.98, damageEffectiveness = 2.98, levelRequirement = 56, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 11, }, }, + [14] = { 0.80000001192093, 0.91200000047684, 1.3680000305176, 5, attackSpeedMultiplier = -15, baseMultiplier = 3.037, damageEffectiveness = 3.037, levelRequirement = 58, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 11, }, }, + [15] = { 0.80000001192093, 0.89600002765656, 1.3439999818802, 5, attackSpeedMultiplier = -15, baseMultiplier = 3.093, damageEffectiveness = 3.093, levelRequirement = 60, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 11, }, }, + [16] = { 0.80000001192093, 0.87999999523163, 1.3200000524521, 5, attackSpeedMultiplier = -15, baseMultiplier = 3.152, damageEffectiveness = 3.152, levelRequirement = 62, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 11, }, }, + [17] = { 0.80000001192093, 0.86400002241135, 1.2960000038147, 6, attackSpeedMultiplier = -15, baseMultiplier = 3.209, damageEffectiveness = 3.209, levelRequirement = 64, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 11, }, }, + [18] = { 0.80000001192093, 0.84799998998642, 1.2719999551773, 6, attackSpeedMultiplier = -15, baseMultiplier = 3.267, damageEffectiveness = 3.267, levelRequirement = 66, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 12, }, }, + [19] = { 0.80000001192093, 0.83200001716614, 1.2480000257492, 6, attackSpeedMultiplier = -15, baseMultiplier = 3.325, damageEffectiveness = 3.325, levelRequirement = 68, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 12, }, }, + [20] = { 1, 0.81599998474121, 1.2239999771118, 6, attackSpeedMultiplier = -15, baseMultiplier = 3.383, damageEffectiveness = 3.383, levelRequirement = 70, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 12, }, }, + [21] = { 1, 0.80000001192093, 1.2000000476837, 6, attackSpeedMultiplier = -15, baseMultiplier = 3.442, damageEffectiveness = 3.442, levelRequirement = 72, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 12, }, }, + [22] = { 1, 0.783999979496, 1.1759999990463, 6, attackSpeedMultiplier = -15, baseMultiplier = 3.5, damageEffectiveness = 3.5, levelRequirement = 74, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 12, }, }, + [23] = { 1, 0.76800000667572, 1.1519999504089, 6, attackSpeedMultiplier = -15, baseMultiplier = 3.56, damageEffectiveness = 3.56, levelRequirement = 76, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 12, }, }, + [24] = { 1, 0.75199997425079, 1.1280000209808, 7, attackSpeedMultiplier = -15, baseMultiplier = 3.619, damageEffectiveness = 3.619, levelRequirement = 78, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 12, }, }, + [25] = { 1, 0.73600000143051, 1.1039999723434, 7, attackSpeedMultiplier = -15, baseMultiplier = 3.68, damageEffectiveness = 3.68, levelRequirement = 80, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 13, }, }, + [26] = { 1, 0.72000002861023, 1.0800000429153, 7, attackSpeedMultiplier = -15, baseMultiplier = 3.74, damageEffectiveness = 3.74, levelRequirement = 82, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 13, }, }, + [27] = { 1, 0.7039999961853, 1.055999994278, 7, attackSpeedMultiplier = -15, baseMultiplier = 3.801, damageEffectiveness = 3.801, levelRequirement = 84, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 13, }, }, + [28] = { 1, 0.68800002336502, 1.0319999456406, 7, attackSpeedMultiplier = -15, baseMultiplier = 3.862, damageEffectiveness = 3.862, levelRequirement = 86, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 13, }, }, + [29] = { 1, 0.67199999094009, 1.0080000162125, 7, attackSpeedMultiplier = -15, baseMultiplier = 3.923, damageEffectiveness = 3.923, levelRequirement = 88, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 13, }, }, + [30] = { 1, 0.65600001811981, 0.98400002717972, 8, attackSpeedMultiplier = -15, baseMultiplier = 3.984, damageEffectiveness = 3.984, levelRequirement = 90, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 13, }, }, + [31] = { 1, 0.64800000190735, 0.97200000286102, 8, attackSpeedMultiplier = -15, baseMultiplier = 4.015, damageEffectiveness = 4.015, levelRequirement = 91, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 13, }, }, + [32] = { 1, 0.63999998569489, 0.95999997854233, 8, attackSpeedMultiplier = -15, baseMultiplier = 4.046, damageEffectiveness = 4.046, levelRequirement = 92, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 14, }, }, + [33] = { 1, 0.63200002908707, 0.94800001382828, 8, attackSpeedMultiplier = -15, baseMultiplier = 4.077, damageEffectiveness = 4.077, levelRequirement = 93, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 14, }, }, + [34] = { 1, 0.6240000128746, 0.93599998950958, 8, attackSpeedMultiplier = -15, baseMultiplier = 4.108, damageEffectiveness = 4.108, levelRequirement = 94, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 14, }, }, + [35] = { 1, 0.61599999666214, 0.92400002479553, 8, attackSpeedMultiplier = -15, baseMultiplier = 4.139, damageEffectiveness = 4.139, levelRequirement = 95, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 14, }, }, + [36] = { 1.2000000476837, 0.60799998044968, 0.91200000047684, 8, attackSpeedMultiplier = -15, baseMultiplier = 4.17, damageEffectiveness = 4.17, levelRequirement = 96, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 14, }, }, + [37] = { 1.2000000476837, 0.60000002384186, 0.89999997615814, 8, attackSpeedMultiplier = -15, baseMultiplier = 4.202, damageEffectiveness = 4.202, levelRequirement = 97, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 14, }, }, + [38] = { 1.2000000476837, 0.59200000762939, 0.88800001144409, 8, attackSpeedMultiplier = -15, baseMultiplier = 4.233, damageEffectiveness = 4.233, levelRequirement = 98, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 14, }, }, + [39] = { 1.2000000476837, 0.58399999141693, 0.8759999871254, 8, attackSpeedMultiplier = -15, baseMultiplier = 4.266, damageEffectiveness = 4.266, levelRequirement = 99, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 14, }, }, + [40] = { 1.2000000476837, 0.57599997520447, 0.86400002241135, 8, attackSpeedMultiplier = -15, baseMultiplier = 4.297, damageEffectiveness = 4.297, levelRequirement = 100, statInterpolation = { 3, 3, 3, 1, }, cost = { Mana = 14, }, }, }, } skills["BoneshatterAltX"] = { @@ -1592,7 +1592,7 @@ skills["BoneshatterAltY"] = { }, qualityStats = { Default = { - { "damage_+%_final_vs_stunned_enemies", 1 }, + { "active_skill_damage_+%_final_vs_stunned_enemies", 1 }, }, }, constantStats = { @@ -1776,55 +1776,55 @@ skills["ChainHookAltY"] = { }, constantStats = { { "chain_strike_cone_radius_+_per_x_rage", 5 }, - { "chain_hook_attaches_to_X_targets", 6 }, + { "chain_hook_attaches_to_X_targets", 8 }, { "chain_hook_attachment_range", 60 }, { "chain_hook_attachment_rage_to_gain_per_hit", 1 }, - { "chain_hook_max_attached_targets", 12 }, + { "chain_hook_max_attached_targets", 16 }, }, stats = { "is_area_damage", }, levels = { - [1] = { attackSpeedMultiplier = 20, baseMultiplier = 1.711, damageEffectiveness = 1.711, levelRequirement = 12, cost = { Mana = 5, }, }, - [2] = { attackSpeedMultiplier = 20, baseMultiplier = 1.788, damageEffectiveness = 1.788, levelRequirement = 15, cost = { Mana = 5, }, }, - [3] = { attackSpeedMultiplier = 20, baseMultiplier = 1.871, damageEffectiveness = 1.871, levelRequirement = 19, cost = { Mana = 6, }, }, - [4] = { attackSpeedMultiplier = 20, baseMultiplier = 1.959, damageEffectiveness = 1.959, levelRequirement = 23, cost = { Mana = 6, }, }, - [5] = { attackSpeedMultiplier = 20, baseMultiplier = 2.05, damageEffectiveness = 2.05, levelRequirement = 27, cost = { Mana = 6, }, }, - [6] = { attackSpeedMultiplier = 20, baseMultiplier = 2.146, damageEffectiveness = 2.146, levelRequirement = 31, cost = { Mana = 6, }, }, - [7] = { attackSpeedMultiplier = 20, baseMultiplier = 2.246, damageEffectiveness = 2.246, levelRequirement = 35, cost = { Mana = 6, }, }, - [8] = { attackSpeedMultiplier = 20, baseMultiplier = 2.346, damageEffectiveness = 2.346, levelRequirement = 38, cost = { Mana = 7, }, }, - [9] = { attackSpeedMultiplier = 20, baseMultiplier = 2.451, damageEffectiveness = 2.451, levelRequirement = 41, cost = { Mana = 7, }, }, - [10] = { attackSpeedMultiplier = 20, baseMultiplier = 2.561, damageEffectiveness = 2.561, levelRequirement = 44, cost = { Mana = 7, }, }, - [11] = { attackSpeedMultiplier = 20, baseMultiplier = 2.675, damageEffectiveness = 2.675, levelRequirement = 47, cost = { Mana = 7, }, }, - [12] = { attackSpeedMultiplier = 20, baseMultiplier = 2.794, damageEffectiveness = 2.794, levelRequirement = 50, cost = { Mana = 7, }, }, - [13] = { attackSpeedMultiplier = 20, baseMultiplier = 2.918, damageEffectiveness = 2.918, levelRequirement = 53, cost = { Mana = 7, }, }, - [14] = { attackSpeedMultiplier = 20, baseMultiplier = 3.049, damageEffectiveness = 3.049, levelRequirement = 56, cost = { Mana = 8, }, }, - [15] = { attackSpeedMultiplier = 20, baseMultiplier = 3.185, damageEffectiveness = 3.185, levelRequirement = 59, cost = { Mana = 8, }, }, - [16] = { attackSpeedMultiplier = 20, baseMultiplier = 3.325, damageEffectiveness = 3.325, levelRequirement = 62, cost = { Mana = 8, }, }, - [17] = { attackSpeedMultiplier = 20, baseMultiplier = 3.468, damageEffectiveness = 3.468, levelRequirement = 64, cost = { Mana = 8, }, }, - [18] = { attackSpeedMultiplier = 20, baseMultiplier = 3.616, damageEffectiveness = 3.616, levelRequirement = 66, cost = { Mana = 8, }, }, - [19] = { attackSpeedMultiplier = 20, baseMultiplier = 3.771, damageEffectiveness = 3.771, levelRequirement = 68, cost = { Mana = 8, }, }, - [20] = { attackSpeedMultiplier = 20, baseMultiplier = 3.931, damageEffectiveness = 3.931, levelRequirement = 70, cost = { Mana = 8, }, }, - [21] = { attackSpeedMultiplier = 20, baseMultiplier = 4.099, damageEffectiveness = 4.099, levelRequirement = 72, cost = { Mana = 8, }, }, - [22] = { attackSpeedMultiplier = 20, baseMultiplier = 4.273, damageEffectiveness = 4.273, levelRequirement = 74, cost = { Mana = 9, }, }, - [23] = { attackSpeedMultiplier = 20, baseMultiplier = 4.456, damageEffectiveness = 4.456, levelRequirement = 76, cost = { Mana = 9, }, }, - [24] = { attackSpeedMultiplier = 20, baseMultiplier = 4.646, damageEffectiveness = 4.646, levelRequirement = 78, cost = { Mana = 9, }, }, - [25] = { attackSpeedMultiplier = 20, baseMultiplier = 4.845, damageEffectiveness = 4.845, levelRequirement = 80, cost = { Mana = 9, }, }, - [26] = { attackSpeedMultiplier = 20, baseMultiplier = 5.051, damageEffectiveness = 5.051, levelRequirement = 82, cost = { Mana = 9, }, }, - [27] = { attackSpeedMultiplier = 20, baseMultiplier = 5.266, damageEffectiveness = 5.266, levelRequirement = 84, cost = { Mana = 9, }, }, - [28] = { attackSpeedMultiplier = 20, baseMultiplier = 5.49, damageEffectiveness = 5.49, levelRequirement = 86, cost = { Mana = 9, }, }, - [29] = { attackSpeedMultiplier = 20, baseMultiplier = 5.725, damageEffectiveness = 5.725, levelRequirement = 88, cost = { Mana = 9, }, }, - [30] = { attackSpeedMultiplier = 20, baseMultiplier = 5.968, damageEffectiveness = 5.968, levelRequirement = 90, cost = { Mana = 9, }, }, - [31] = { attackSpeedMultiplier = 20, baseMultiplier = 6.334, damageEffectiveness = 6.334, levelRequirement = 91, cost = { Mana = 10, }, }, - [32] = { attackSpeedMultiplier = 20, baseMultiplier = 6.469, damageEffectiveness = 6.469, levelRequirement = 92, cost = { Mana = 10, }, }, - [33] = { attackSpeedMultiplier = 20, baseMultiplier = 6.607, damageEffectiveness = 6.607, levelRequirement = 93, cost = { Mana = 10, }, }, - [34] = { attackSpeedMultiplier = 20, baseMultiplier = 6.746, damageEffectiveness = 6.746, levelRequirement = 94, cost = { Mana = 10, }, }, - [35] = { attackSpeedMultiplier = 20, baseMultiplier = 6.89, damageEffectiveness = 6.89, levelRequirement = 95, cost = { Mana = 10, }, }, - [36] = { attackSpeedMultiplier = 20, baseMultiplier = 7.037, damageEffectiveness = 7.037, levelRequirement = 96, cost = { Mana = 10, }, }, - [37] = { attackSpeedMultiplier = 20, baseMultiplier = 7.186, damageEffectiveness = 7.186, levelRequirement = 97, cost = { Mana = 10, }, }, - [38] = { attackSpeedMultiplier = 20, baseMultiplier = 7.339, damageEffectiveness = 7.339, levelRequirement = 98, cost = { Mana = 10, }, }, - [39] = { attackSpeedMultiplier = 20, baseMultiplier = 7.494, damageEffectiveness = 7.494, levelRequirement = 99, cost = { Mana = 10, }, }, - [40] = { attackSpeedMultiplier = 20, baseMultiplier = 7.654, damageEffectiveness = 7.654, levelRequirement = 100, cost = { Mana = 10, }, }, + [1] = { attackSpeedMultiplier = 20, baseMultiplier = 2.138, damageEffectiveness = 2.138, levelRequirement = 12, cost = { Mana = 5, }, }, + [2] = { attackSpeedMultiplier = 20, baseMultiplier = 2.284, damageEffectiveness = 2.284, levelRequirement = 15, cost = { Mana = 5, }, }, + [3] = { attackSpeedMultiplier = 20, baseMultiplier = 2.43, damageEffectiveness = 2.43, levelRequirement = 19, cost = { Mana = 6, }, }, + [4] = { attackSpeedMultiplier = 20, baseMultiplier = 2.576, damageEffectiveness = 2.576, levelRequirement = 23, cost = { Mana = 6, }, }, + [5] = { attackSpeedMultiplier = 20, baseMultiplier = 2.722, damageEffectiveness = 2.722, levelRequirement = 27, cost = { Mana = 6, }, }, + [6] = { attackSpeedMultiplier = 20, baseMultiplier = 2.868, damageEffectiveness = 2.868, levelRequirement = 31, cost = { Mana = 6, }, }, + [7] = { attackSpeedMultiplier = 20, baseMultiplier = 3.014, damageEffectiveness = 3.014, levelRequirement = 35, cost = { Mana = 6, }, }, + [8] = { attackSpeedMultiplier = 20, baseMultiplier = 3.16, damageEffectiveness = 3.16, levelRequirement = 38, cost = { Mana = 7, }, }, + [9] = { attackSpeedMultiplier = 20, baseMultiplier = 3.306, damageEffectiveness = 3.306, levelRequirement = 41, cost = { Mana = 7, }, }, + [10] = { attackSpeedMultiplier = 20, baseMultiplier = 3.452, damageEffectiveness = 3.452, levelRequirement = 44, cost = { Mana = 7, }, }, + [11] = { attackSpeedMultiplier = 20, baseMultiplier = 3.598, damageEffectiveness = 3.598, levelRequirement = 47, cost = { Mana = 7, }, }, + [12] = { attackSpeedMultiplier = 20, baseMultiplier = 3.744, damageEffectiveness = 3.744, levelRequirement = 50, cost = { Mana = 7, }, }, + [13] = { attackSpeedMultiplier = 20, baseMultiplier = 3.89, damageEffectiveness = 3.89, levelRequirement = 53, cost = { Mana = 7, }, }, + [14] = { attackSpeedMultiplier = 20, baseMultiplier = 4.036, damageEffectiveness = 4.036, levelRequirement = 56, cost = { Mana = 8, }, }, + [15] = { attackSpeedMultiplier = 20, baseMultiplier = 4.182, damageEffectiveness = 4.182, levelRequirement = 59, cost = { Mana = 8, }, }, + [16] = { attackSpeedMultiplier = 20, baseMultiplier = 4.328, damageEffectiveness = 4.328, levelRequirement = 62, cost = { Mana = 8, }, }, + [17] = { attackSpeedMultiplier = 20, baseMultiplier = 4.474, damageEffectiveness = 4.474, levelRequirement = 64, cost = { Mana = 8, }, }, + [18] = { attackSpeedMultiplier = 20, baseMultiplier = 4.62, damageEffectiveness = 4.62, levelRequirement = 66, cost = { Mana = 8, }, }, + [19] = { attackSpeedMultiplier = 20, baseMultiplier = 4.766, damageEffectiveness = 4.766, levelRequirement = 68, cost = { Mana = 8, }, }, + [20] = { attackSpeedMultiplier = 20, baseMultiplier = 4.913, damageEffectiveness = 4.913, levelRequirement = 70, cost = { Mana = 8, }, }, + [21] = { attackSpeedMultiplier = 20, baseMultiplier = 5.059, damageEffectiveness = 5.059, levelRequirement = 72, cost = { Mana = 8, }, }, + [22] = { attackSpeedMultiplier = 20, baseMultiplier = 5.205, damageEffectiveness = 5.205, levelRequirement = 74, cost = { Mana = 9, }, }, + [23] = { attackSpeedMultiplier = 20, baseMultiplier = 5.351, damageEffectiveness = 5.351, levelRequirement = 76, cost = { Mana = 9, }, }, + [24] = { attackSpeedMultiplier = 20, baseMultiplier = 5.497, damageEffectiveness = 5.497, levelRequirement = 78, cost = { Mana = 9, }, }, + [25] = { attackSpeedMultiplier = 20, baseMultiplier = 5.643, damageEffectiveness = 5.643, levelRequirement = 80, cost = { Mana = 9, }, }, + [26] = { attackSpeedMultiplier = 20, baseMultiplier = 5.789, damageEffectiveness = 5.789, levelRequirement = 82, cost = { Mana = 9, }, }, + [27] = { attackSpeedMultiplier = 20, baseMultiplier = 5.935, damageEffectiveness = 5.935, levelRequirement = 84, cost = { Mana = 9, }, }, + [28] = { attackSpeedMultiplier = 20, baseMultiplier = 6.081, damageEffectiveness = 6.081, levelRequirement = 86, cost = { Mana = 9, }, }, + [29] = { attackSpeedMultiplier = 20, baseMultiplier = 6.227, damageEffectiveness = 6.227, levelRequirement = 88, cost = { Mana = 9, }, }, + [30] = { attackSpeedMultiplier = 20, baseMultiplier = 6.373, damageEffectiveness = 6.373, levelRequirement = 90, cost = { Mana = 9, }, }, + [31] = { attackSpeedMultiplier = 20, baseMultiplier = 6.446, damageEffectiveness = 6.446, levelRequirement = 91, cost = { Mana = 10, }, }, + [32] = { attackSpeedMultiplier = 20, baseMultiplier = 6.519, damageEffectiveness = 6.519, levelRequirement = 92, cost = { Mana = 10, }, }, + [33] = { attackSpeedMultiplier = 20, baseMultiplier = 6.592, damageEffectiveness = 6.592, levelRequirement = 93, cost = { Mana = 10, }, }, + [34] = { attackSpeedMultiplier = 20, baseMultiplier = 6.665, damageEffectiveness = 6.665, levelRequirement = 94, cost = { Mana = 10, }, }, + [35] = { attackSpeedMultiplier = 20, baseMultiplier = 6.738, damageEffectiveness = 6.738, levelRequirement = 95, cost = { Mana = 10, }, }, + [36] = { attackSpeedMultiplier = 20, baseMultiplier = 6.811, damageEffectiveness = 6.811, levelRequirement = 96, cost = { Mana = 10, }, }, + [37] = { attackSpeedMultiplier = 20, baseMultiplier = 6.884, damageEffectiveness = 6.884, levelRequirement = 97, cost = { Mana = 10, }, }, + [38] = { attackSpeedMultiplier = 20, baseMultiplier = 6.957, damageEffectiveness = 6.957, levelRequirement = 98, cost = { Mana = 10, }, }, + [39] = { attackSpeedMultiplier = 20, baseMultiplier = 7.03, damageEffectiveness = 7.03, levelRequirement = 99, cost = { Mana = 10, }, }, + [40] = { attackSpeedMultiplier = 20, baseMultiplier = 7.103, damageEffectiveness = 7.103, levelRequirement = 100, cost = { Mana = 10, }, }, }, } skills["Cleave"] = { @@ -4036,46 +4036,46 @@ skills["Exsanguinate"] = { "spell_maximum_base_physical_damage", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, 67.163333804583, 7, critChance = 6, damageEffectiveness = 1.5, levelRequirement = 12, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 16, }, }, - [2] = { 0.80000001192093, 1.2000000476837, 66.453335181077, 7, critChance = 6, damageEffectiveness = 1.5, levelRequirement = 15, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 18, }, }, - [3] = { 0.80000001192093, 1.2000000476837, 65.293333400389, 7, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 19, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 21, }, }, - [4] = { 0.80000001192093, 1.2000000476837, 64.146667165856, 7, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 23, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 23, }, }, - [5] = { 0.80000001192093, 1.2000000476837, 63.015001433926, 7, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 27, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 25, }, }, - [6] = { 0.80000001192093, 1.2000000476837, 61.900001161049, 7, critChance = 6, damageEffectiveness = 1.8, levelRequirement = 31, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 26, }, }, - [7] = { 0.80000001192093, 1.2000000476837, 60.796667504236, 7, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 35, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 28, }, }, - [8] = { 0.80000001192093, 1.2000000476837, 60.118334842386, 8, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 38, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 30, }, }, - [9] = { 0.80000001192093, 1.2000000476837, 59.443336067076, 8, critChance = 6, damageEffectiveness = 2, levelRequirement = 41, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 32, }, }, - [10] = { 0.80000001192093, 1.2000000476837, 58.771667204661, 8, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 44, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 33, }, }, - [11] = { 0.80000001192093, 1.2000000476837, 58.101667272337, 8, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 47, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 34, }, }, - [12] = { 0.80000001192093, 1.2000000476837, 57.435001226552, 8, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 50, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 35, }, }, - [13] = { 0.80000001192093, 1.2000000476837, 56.771669067306, 8, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 53, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 37, }, }, - [14] = { 0.80000001192093, 1.2000000476837, 56.110001864508, 8, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 56, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 39, }, }, - [15] = { 0.80000001192093, 1.2000000476837, 55.453333504697, 9, critChance = 6, damageEffectiveness = 2.4, levelRequirement = 59, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 40, }, }, - [16] = { 0.80000001192093, 1.2000000476837, 54.800003005068, 9, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 62, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 42, }, }, - [17] = { 0.80000001192093, 1.2000000476837, 54.52166917596, 9, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 64, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 43, }, }, - [18] = { 0.80000001192093, 1.2000000476837, 54.243335346853, 9, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 66, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 44, }, }, - [19] = { 0.80000001192093, 1.2000000476837, 53.960002674758, 9, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 68, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 45, }, }, - [20] = { 0.80000001192093, 1.2000000476837, 53.675001072573, 9, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 70, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 46, }, }, - [21] = { 0.80000001192093, 1.2000000476837, 53.38833451394, 9, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 72, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 47, }, }, - [22] = { 0.80000001192093, 1.2000000476837, 53.098334068768, 10, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 74, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 48, }, }, - [23] = { 0.80000001192093, 1.2000000476837, 52.808333623596, 10, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 76, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 49, }, }, - [24] = { 0.80000001192093, 1.2000000476837, 52.514999291884, 10, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 78, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 50, }, }, - [25] = { 0.80000001192093, 1.2000000476837, 52.220000003725, 10, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 80, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 51, }, }, - [26] = { 0.80000001192093, 1.2000000476837, 51.923335759118, 10, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 82, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 52, }, }, - [27] = { 0.80000001192093, 1.2000000476837, 51.626667540868, 10, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 84, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 53, }, }, - [28] = { 0.80000001192093, 1.2000000476837, 51.325000479631, 10, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 86, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 54, }, }, - [29] = { 0.80000001192093, 1.2000000476837, 51.025002348485, 11, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 88, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 55, }, }, - [30] = { 0.80000001192093, 1.2000000476837, 50.723335287248, 11, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 90, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 56, }, }, - [31] = { 0.80000001192093, 1.2000000476837, 50.76500290852, 11, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 91, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 57, }, }, - [32] = { 0.80000001192093, 1.2000000476837, 50.80666655615, 11, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 92, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 58, }, }, - [33] = { 0.80000001192093, 1.2000000476837, 50.845000290883, 11, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 93, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 58, }, }, - [34] = { 0.80000001192093, 1.2000000476837, 50.87833518263, 11, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 94, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 59, }, }, - [35] = { 0.80000001192093, 1.2000000476837, 50.911666100733, 11, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 95, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 59, }, }, - [36] = { 0.80000001192093, 1.2000000476837, 50.940002149493, 11, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 96, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 60, }, }, - [37] = { 0.80000001192093, 1.2000000476837, 50.966669268161, 11, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 97, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 60, }, }, - [38] = { 0.80000001192093, 1.2000000476837, 50.9883335702, 11, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 98, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 60, }, }, - [39] = { 0.80000001192093, 1.2000000476837, 51.010001845881, 11, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 99, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 61, }, }, - [40] = { 0.80000001192093, 1.2000000476837, 51.030001191472, 11, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 100, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 61, }, }, + [1] = { 0.80000001192093, 1.2000000476837, 77.238338925305, 7, critChance = 6, damageEffectiveness = 1.5, levelRequirement = 12, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 16, }, }, + [2] = { 0.80000001192093, 1.2000000476837, 76.421667853482, 7, critChance = 6, damageEffectiveness = 1.5, levelRequirement = 15, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 18, }, }, + [3] = { 0.80000001192093, 1.2000000476837, 75.086666831821, 7, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 19, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 21, }, }, + [4] = { 0.80000001192093, 1.2000000476837, 73.768331269212, 7, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 23, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 23, }, }, + [5] = { 0.80000001192093, 1.2000000476837, 72.466669112941, 7, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 27, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 25, }, }, + [6] = { 0.80000001192093, 1.2000000476837, 71.185002328617, 7, critChance = 6, damageEffectiveness = 1.8, levelRequirement = 31, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 26, }, }, + [7] = { 0.80000001192093, 1.2000000476837, 69.916671090449, 7, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 35, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 28, }, }, + [8] = { 0.80000001192093, 1.2000000476837, 69.136668796912, 8, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 38, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 30, }, }, + [9] = { 0.80000001192093, 1.2000000476837, 68.360004363557, 8, critChance = 6, damageEffectiveness = 2, levelRequirement = 41, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 32, }, }, + [10] = { 0.80000001192093, 1.2000000476837, 67.586669843098, 8, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 44, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 33, }, }, + [11] = { 0.80000001192093, 1.2000000476837, 66.816665235534, 8, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 47, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 34, }, }, + [12] = { 0.80000001192093, 1.2000000476837, 66.050002461796, 8, critChance = 6, damageEffectiveness = 2.2, levelRequirement = 50, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 35, }, }, + [13] = { 0.80000001192093, 1.2000000476837, 65.286669600954, 8, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 53, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 37, }, }, + [14] = { 0.80000001192093, 1.2000000476837, 64.526666653007, 8, critChance = 6, damageEffectiveness = 2.3, levelRequirement = 56, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 39, }, }, + [15] = { 0.80000001192093, 1.2000000476837, 63.771666521691, 9, critChance = 6, damageEffectiveness = 2.4, levelRequirement = 59, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 40, }, }, + [16] = { 0.80000001192093, 1.2000000476837, 63.020000276913, 9, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 62, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 42, }, }, + [17] = { 0.80000001192093, 1.2000000476837, 62.700002800177, 9, critChance = 6, damageEffectiveness = 2.5, levelRequirement = 64, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 43, }, }, + [18] = { 0.80000001192093, 1.2000000476837, 62.380001349797, 9, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 66, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 44, }, }, + [19] = { 0.80000001192093, 1.2000000476837, 62.053336099982, 9, critChance = 6, damageEffectiveness = 2.6, levelRequirement = 68, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 45, }, }, + [20] = { 0.80000001192093, 1.2000000476837, 61.726666876525, 9, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 70, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 46, }, }, + [21] = { 0.80000001192093, 1.2000000476837, 61.396667740171, 9, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 72, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 47, }, }, + [22] = { 0.80000001192093, 1.2000000476837, 61.063334717279, 10, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 74, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 48, }, }, + [23] = { 0.80000001192093, 1.2000000476837, 60.730001694386, 10, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 76, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 49, }, }, + [24] = { 0.80000001192093, 1.2000000476837, 60.391669828507, 10, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 78, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 50, }, }, + [25] = { 0.80000001192093, 1.2000000476837, 60.053333988984, 10, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 80, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 51, }, }, + [26] = { 0.80000001192093, 1.2000000476837, 59.711668236566, 10, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 82, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 52, }, }, + [27] = { 0.80000001192093, 1.2000000476837, 59.370002484148, 10, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 84, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 53, }, }, + [28] = { 0.80000001192093, 1.2000000476837, 59.0233339151, 10, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 86, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 54, }, }, + [29] = { 0.80000001192093, 1.2000000476837, 58.678334276142, 11, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 88, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 55, }, }, + [30] = { 0.80000001192093, 1.2000000476837, 58.331669680737, 11, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 90, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 56, }, }, + [31] = { 0.80000001192093, 1.2000000476837, 58.380001101444, 11, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 91, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 57, }, }, + [32] = { 0.80000001192093, 1.2000000476837, 58.428336495794, 11, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 92, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 58, }, }, + [33] = { 0.80000001192093, 1.2000000476837, 58.471669073515, 11, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 93, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 58, }, }, + [34] = { 0.80000001192093, 1.2000000476837, 58.510002808248, 11, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 94, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 59, }, }, + [35] = { 0.80000001192093, 1.2000000476837, 58.548336542981, 11, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 95, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 59, }, }, + [36] = { 0.80000001192093, 1.2000000476837, 58.581667461085, 11, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 96, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 60, }, }, + [37] = { 0.80000001192093, 1.2000000476837, 58.611668466292, 11, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 97, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 60, }, }, + [38] = { 0.80000001192093, 1.2000000476837, 58.63666665487, 11, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 98, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 60, }, }, + [39] = { 0.80000001192093, 1.2000000476837, 58.661668817091, 11, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 99, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 61, }, }, + [40] = { 0.80000001192093, 1.2000000476837, 58.68500204922, 11, critChance = 6, damageEffectiveness = 2.7, levelRequirement = 100, statInterpolation = { 3, 3, 3, 1, }, cost = { Life = 61, }, }, }, } skills["ExsanguinateAltX"] = { @@ -4132,46 +4132,46 @@ skills["ExsanguinateAltX"] = { "spell_maximum_base_physical_damage", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, 67.163333804583, -0.63999998569489, -0.95999997854233, 6, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 12, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 16, }, }, - [2] = { 0.80000001192093, 1.2000000476837, 66.453335181077, -0.63999998569489, -0.95999997854233, 6, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 15, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 18, }, }, - [3] = { 0.80000001192093, 1.2000000476837, 65.293333400389, -0.63999998569489, -0.95999997854233, 6, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 19, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 21, }, }, - [4] = { 0.80000001192093, 1.2000000476837, 64.146667165856, -0.63999998569489, -0.95999997854233, 7, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 23, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 23, }, }, - [5] = { 0.80000001192093, 1.2000000476837, 63.015001433926, -0.63999998569489, -0.95999997854233, 7, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 27, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 25, }, }, - [6] = { 0.80000001192093, 1.2000000476837, 61.900001161049, -0.63999998569489, -0.95999997854233, 7, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 31, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 26, }, }, - [7] = { 0.80000001192093, 1.2000000476837, 60.796667504236, -0.63999998569489, -0.95999997854233, 7, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 35, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 28, }, }, - [8] = { 0.80000001192093, 1.2000000476837, 60.118334842386, -0.63999998569489, -0.95999997854233, 7, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 38, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 30, }, }, - [9] = { 0.80000001192093, 1.2000000476837, 59.443336067076, -0.63999998569489, -0.95999997854233, 8, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 41, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 32, }, }, - [10] = { 0.80000001192093, 1.2000000476837, 58.771667204661, -0.63999998569489, -0.95999997854233, 8, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 44, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 33, }, }, - [11] = { 0.80000001192093, 1.2000000476837, 58.101667272337, -0.63999998569489, -0.95999997854233, 8, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 47, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 34, }, }, - [12] = { 0.80000001192093, 1.2000000476837, 57.435001226552, -0.63999998569489, -0.95999997854233, 8, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 50, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 35, }, }, - [13] = { 0.80000001192093, 1.2000000476837, 56.771669067306, -0.63999998569489, -0.95999997854233, 9, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 53, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 37, }, }, - [14] = { 0.80000001192093, 1.2000000476837, 56.110001864508, -0.63999998569489, -0.95999997854233, 9, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 56, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 39, }, }, - [15] = { 0.80000001192093, 1.2000000476837, 55.453333504697, -0.63999998569489, -0.95999997854233, 9, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 59, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 40, }, }, - [16] = { 0.80000001192093, 1.2000000476837, 54.800003005068, -0.63999998569489, -0.95999997854233, 9, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 62, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 42, }, }, - [17] = { 0.80000001192093, 1.2000000476837, 54.52166917596, -0.63999998569489, -0.95999997854233, 9, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 64, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 43, }, }, - [18] = { 0.80000001192093, 1.2000000476837, 54.243335346853, -0.63999998569489, -0.95999997854233, 10, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 66, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 44, }, }, - [19] = { 0.80000001192093, 1.2000000476837, 53.960002674758, -0.63999998569489, -0.95999997854233, 10, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 68, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 45, }, }, - [20] = { 0.80000001192093, 1.2000000476837, 53.675001072573, -0.63999998569489, -0.95999997854233, 10, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 70, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 46, }, }, - [21] = { 0.80000001192093, 1.2000000476837, 53.38833451394, -0.63999998569489, -0.95999997854233, 10, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 72, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 47, }, }, - [22] = { 0.80000001192093, 1.2000000476837, 53.098334068768, -0.63999998569489, -0.95999997854233, 10, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 74, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 48, }, }, - [23] = { 0.80000001192093, 1.2000000476837, 52.808333623596, -0.63999998569489, -0.95999997854233, 11, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 76, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 49, }, }, - [24] = { 0.80000001192093, 1.2000000476837, 52.514999291884, -0.63999998569489, -0.95999997854233, 11, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 78, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 50, }, }, - [25] = { 0.80000001192093, 1.2000000476837, 52.220000003725, -0.63999998569489, -0.95999997854233, 11, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 80, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 51, }, }, - [26] = { 0.80000001192093, 1.2000000476837, 51.923335759118, -0.63999998569489, -0.95999997854233, 11, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 82, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 52, }, }, - [27] = { 0.80000001192093, 1.2000000476837, 51.626667540868, -0.63999998569489, -0.95999997854233, 11, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 84, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 53, }, }, - [28] = { 0.80000001192093, 1.2000000476837, 51.325000479631, -0.63999998569489, -0.95999997854233, 12, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 86, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 54, }, }, - [29] = { 0.80000001192093, 1.2000000476837, 51.025002348485, -0.63999998569489, -0.95999997854233, 12, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 88, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 55, }, }, - [30] = { 0.80000001192093, 1.2000000476837, 50.723335287248, -0.63999998569489, -0.95999997854233, 12, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 90, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 56, }, }, - [31] = { 0.80000001192093, 1.2000000476837, 50.76500290852, -0.63999998569489, -0.95999997854233, 12, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 91, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 57, }, }, - [32] = { 0.80000001192093, 1.2000000476837, 50.80666655615, -0.63999998569489, -0.95999997854233, 12, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 92, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 58, }, }, - [33] = { 0.80000001192093, 1.2000000476837, 50.845000290883, -0.63999998569489, -0.95999997854233, 12, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 93, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 58, }, }, - [34] = { 0.80000001192093, 1.2000000476837, 50.87833518263, -0.63999998569489, -0.95999997854233, 13, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 94, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 59, }, }, - [35] = { 0.80000001192093, 1.2000000476837, 50.911666100733, -0.63999998569489, -0.95999997854233, 13, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 95, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 59, }, }, - [36] = { 0.80000001192093, 1.2000000476837, 50.940002149493, -0.63999998569489, -0.95999997854233, 13, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 96, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 60, }, }, - [37] = { 0.80000001192093, 1.2000000476837, 50.966669268161, -0.63999998569489, -0.95999997854233, 13, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 97, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 60, }, }, - [38] = { 0.80000001192093, 1.2000000476837, 50.9883335702, -0.63999998569489, -0.95999997854233, 13, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 98, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 60, }, }, - [39] = { 0.80000001192093, 1.2000000476837, 51.010001845881, -0.63999998569489, -0.95999997854233, 13, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 99, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 61, }, }, - [40] = { 0.80000001192093, 1.2000000476837, 51.030001191472, -0.63999998569489, -0.95999997854233, 13, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 100, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 61, }, }, + [1] = { 0.80000001192093, 1.2000000476837, 77.238338925305, -0.63999998569489, -0.95999997854233, 6, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 12, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 16, }, }, + [2] = { 0.80000001192093, 1.2000000476837, 76.421667853482, -0.63999998569489, -0.95999997854233, 6, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 15, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 18, }, }, + [3] = { 0.80000001192093, 1.2000000476837, 75.086666831821, -0.63999998569489, -0.95999997854233, 6, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 19, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 21, }, }, + [4] = { 0.80000001192093, 1.2000000476837, 73.768331269212, -0.63999998569489, -0.95999997854233, 7, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 23, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 23, }, }, + [5] = { 0.80000001192093, 1.2000000476837, 72.466669112941, -0.63999998569489, -0.95999997854233, 7, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 27, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 25, }, }, + [6] = { 0.80000001192093, 1.2000000476837, 71.185002328617, -0.63999998569489, -0.95999997854233, 7, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 31, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 26, }, }, + [7] = { 0.80000001192093, 1.2000000476837, 69.916671090449, -0.63999998569489, -0.95999997854233, 7, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 35, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 28, }, }, + [8] = { 0.80000001192093, 1.2000000476837, 69.136668796912, -0.63999998569489, -0.95999997854233, 7, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 38, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 30, }, }, + [9] = { 0.80000001192093, 1.2000000476837, 68.360004363557, -0.63999998569489, -0.95999997854233, 8, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 41, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 32, }, }, + [10] = { 0.80000001192093, 1.2000000476837, 67.586669843098, -0.63999998569489, -0.95999997854233, 8, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 44, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 33, }, }, + [11] = { 0.80000001192093, 1.2000000476837, 66.816665235534, -0.63999998569489, -0.95999997854233, 8, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 47, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 34, }, }, + [12] = { 0.80000001192093, 1.2000000476837, 66.050002461796, -0.63999998569489, -0.95999997854233, 8, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 50, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 35, }, }, + [13] = { 0.80000001192093, 1.2000000476837, 65.286669600954, -0.63999998569489, -0.95999997854233, 9, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 53, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 37, }, }, + [14] = { 0.80000001192093, 1.2000000476837, 64.526666653007, -0.63999998569489, -0.95999997854233, 9, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 56, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 39, }, }, + [15] = { 0.80000001192093, 1.2000000476837, 63.771666521691, -0.63999998569489, -0.95999997854233, 9, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 59, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 40, }, }, + [16] = { 0.80000001192093, 1.2000000476837, 63.020000276913, -0.63999998569489, -0.95999997854233, 9, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 62, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 42, }, }, + [17] = { 0.80000001192093, 1.2000000476837, 62.700002800177, -0.63999998569489, -0.95999997854233, 9, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 64, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 43, }, }, + [18] = { 0.80000001192093, 1.2000000476837, 62.380001349797, -0.63999998569489, -0.95999997854233, 10, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 66, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 44, }, }, + [19] = { 0.80000001192093, 1.2000000476837, 62.053336099982, -0.63999998569489, -0.95999997854233, 10, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 68, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 45, }, }, + [20] = { 0.80000001192093, 1.2000000476837, 61.726666876525, -0.63999998569489, -0.95999997854233, 10, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 70, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 46, }, }, + [21] = { 0.80000001192093, 1.2000000476837, 61.396667740171, -0.63999998569489, -0.95999997854233, 10, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 72, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 47, }, }, + [22] = { 0.80000001192093, 1.2000000476837, 61.063334717279, -0.63999998569489, -0.95999997854233, 10, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 74, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 48, }, }, + [23] = { 0.80000001192093, 1.2000000476837, 60.730001694386, -0.63999998569489, -0.95999997854233, 11, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 76, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 49, }, }, + [24] = { 0.80000001192093, 1.2000000476837, 60.391669828507, -0.63999998569489, -0.95999997854233, 11, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 78, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 50, }, }, + [25] = { 0.80000001192093, 1.2000000476837, 60.053333988984, -0.63999998569489, -0.95999997854233, 11, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 80, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 51, }, }, + [26] = { 0.80000001192093, 1.2000000476837, 59.711668236566, -0.63999998569489, -0.95999997854233, 11, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 82, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 52, }, }, + [27] = { 0.80000001192093, 1.2000000476837, 59.370002484148, -0.63999998569489, -0.95999997854233, 11, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 84, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 53, }, }, + [28] = { 0.80000001192093, 1.2000000476837, 59.0233339151, -0.63999998569489, -0.95999997854233, 12, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 86, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 54, }, }, + [29] = { 0.80000001192093, 1.2000000476837, 58.678334276142, -0.63999998569489, -0.95999997854233, 12, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 88, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 55, }, }, + [30] = { 0.80000001192093, 1.2000000476837, 58.331669680737, -0.63999998569489, -0.95999997854233, 12, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 90, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 56, }, }, + [31] = { 0.80000001192093, 1.2000000476837, 58.380001101444, -0.63999998569489, -0.95999997854233, 12, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 91, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 57, }, }, + [32] = { 0.80000001192093, 1.2000000476837, 58.428336495794, -0.63999998569489, -0.95999997854233, 12, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 92, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 58, }, }, + [33] = { 0.80000001192093, 1.2000000476837, 58.471669073515, -0.63999998569489, -0.95999997854233, 12, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 93, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 58, }, }, + [34] = { 0.80000001192093, 1.2000000476837, 58.510002808248, -0.63999998569489, -0.95999997854233, 13, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 94, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 59, }, }, + [35] = { 0.80000001192093, 1.2000000476837, 58.548336542981, -0.63999998569489, -0.95999997854233, 13, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 95, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 59, }, }, + [36] = { 0.80000001192093, 1.2000000476837, 58.581667461085, -0.63999998569489, -0.95999997854233, 13, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 96, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 60, }, }, + [37] = { 0.80000001192093, 1.2000000476837, 58.611668466292, -0.63999998569489, -0.95999997854233, 13, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 97, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 60, }, }, + [38] = { 0.80000001192093, 1.2000000476837, 58.63666665487, -0.63999998569489, -0.95999997854233, 13, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 98, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 60, }, }, + [39] = { 0.80000001192093, 1.2000000476837, 58.661668817091, -0.63999998569489, -0.95999997854233, 13, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 99, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 61, }, }, + [40] = { 0.80000001192093, 1.2000000476837, 58.68500204922, -0.63999998569489, -0.95999997854233, 13, critChance = 6, damageEffectiveness = 0.6, levelRequirement = 100, statInterpolation = { 3, 3, 3, 3, 3, 1, }, cost = { Life = 61, }, }, }, } skills["FlameLink"] = { @@ -5887,7 +5887,7 @@ skills["HolyFlameTotemAltX"] = { }, qualityStats = { Default = { - { "consecrated_ground_area_+%", 2 }, + { "holy_flame_totem_consecrated_ground_area_+%", 2 }, }, }, constantStats = { @@ -9382,46 +9382,46 @@ skills["ShieldCrushAltX"] = { "console_skill_dont_chase", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, 8, 12, 50, attackTime = 900, critChance = 5, levelRequirement = 1, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 8, }, }, - [2] = { 0.80000001192093, 1.2000000476837, 8, 12, 52, attackTime = 900, critChance = 5, levelRequirement = 2, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 8, }, }, - [3] = { 0.80000001192093, 1.2000000476837, 8, 13, 54, attackTime = 900, critChance = 5, levelRequirement = 4, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 8, }, }, - [4] = { 0.80000001192093, 1.2000000476837, 9, 13, 56, attackTime = 900, critChance = 5, levelRequirement = 7, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 8, }, }, - [5] = { 0.80000001192093, 1.2000000476837, 9, 14, 58, attackTime = 900, critChance = 5, levelRequirement = 11, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 9, }, }, - [6] = { 0.80000001192093, 1.2000000476837, 10, 14, 60, attackTime = 900, critChance = 5, levelRequirement = 16, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 9, }, }, - [7] = { 0.80000001192093, 1.2000000476837, 10, 15, 62, attackTime = 900, critChance = 5, levelRequirement = 20, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 9, }, }, - [8] = { 0.80000001192093, 1.2000000476837, 11, 16, 64, attackTime = 900, critChance = 5, levelRequirement = 24, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 10, }, }, - [9] = { 0.80000001192093, 1.2000000476837, 11, 17, 66, attackTime = 900, critChance = 5, levelRequirement = 28, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 10, }, }, - [10] = { 0.80000001192093, 1.2000000476837, 12, 17, 68, attackTime = 900, critChance = 5, levelRequirement = 32, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 11, }, }, - [11] = { 0.80000001192093, 1.2000000476837, 12, 18, 70, attackTime = 900, critChance = 5, levelRequirement = 36, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 11, }, }, - [12] = { 0.80000001192093, 1.2000000476837, 13, 18, 72, attackTime = 900, critChance = 5, levelRequirement = 40, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 11, }, }, - [13] = { 0.80000001192093, 1.2000000476837, 13, 19, 74, attackTime = 900, critChance = 5, levelRequirement = 44, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 12, }, }, - [14] = { 0.80000001192093, 1.2000000476837, 13, 20, 76, attackTime = 900, critChance = 5, levelRequirement = 48, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 12, }, }, - [15] = { 0.80000001192093, 1.2000000476837, 14, 21, 78, attackTime = 900, critChance = 5, levelRequirement = 52, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 13, }, }, - [16] = { 0.80000001192093, 1.2000000476837, 15, 22, 80, attackTime = 900, critChance = 5, levelRequirement = 56, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 13, }, }, - [17] = { 0.80000001192093, 1.2000000476837, 15, 23, 82, attackTime = 900, critChance = 5, levelRequirement = 60, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 13, }, }, - [18] = { 0.80000001192093, 1.2000000476837, 16, 23, 84, attackTime = 900, critChance = 5, levelRequirement = 64, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 14, }, }, - [19] = { 0.80000001192093, 1.2000000476837, 16, 24, 86, attackTime = 900, critChance = 5, levelRequirement = 67, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 14, }, }, - [20] = { 0.80000001192093, 1.2000000476837, 16, 24, 88, attackTime = 900, critChance = 5, levelRequirement = 70, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 14, }, }, - [21] = { 0.80000001192093, 1.2000000476837, 16, 25, 90, attackTime = 900, critChance = 5, levelRequirement = 72, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 14, }, }, - [22] = { 0.80000001192093, 1.2000000476837, 17, 25, 92, attackTime = 900, critChance = 5, levelRequirement = 74, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 14, }, }, - [23] = { 0.80000001192093, 1.2000000476837, 17, 26, 94, attackTime = 900, critChance = 5, levelRequirement = 76, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 14, }, }, - [24] = { 0.80000001192093, 1.2000000476837, 18, 26, 96, attackTime = 900, critChance = 5, levelRequirement = 78, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 14, }, }, - [25] = { 0.80000001192093, 1.2000000476837, 19, 28, 98, attackTime = 900, critChance = 5, levelRequirement = 80, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 14, }, }, - [26] = { 0.80000001192093, 1.2000000476837, 19, 29, 100, attackTime = 900, critChance = 5, levelRequirement = 82, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 15, }, }, - [27] = { 0.80000001192093, 1.2000000476837, 19, 29, 102, attackTime = 900, critChance = 5, levelRequirement = 84, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 15, }, }, - [28] = { 0.80000001192093, 1.2000000476837, 20, 30, 104, attackTime = 900, critChance = 5, levelRequirement = 86, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 15, }, }, - [29] = { 0.80000001192093, 1.2000000476837, 20, 30, 106, attackTime = 900, critChance = 5, levelRequirement = 88, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 15, }, }, - [30] = { 0.80000001192093, 1.2000000476837, 21, 31, 108, attackTime = 900, critChance = 5, levelRequirement = 90, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 15, }, }, - [31] = { 0.80000001192093, 1.2000000476837, 22, 31, 109, attackTime = 900, critChance = 5, levelRequirement = 91, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 16, }, }, - [32] = { 0.80000001192093, 1.2000000476837, 22, 31, 110, attackTime = 900, critChance = 5, levelRequirement = 92, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 16, }, }, - [33] = { 0.80000001192093, 1.2000000476837, 22, 32, 111, attackTime = 900, critChance = 5, levelRequirement = 93, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 16, }, }, - [34] = { 0.80000001192093, 1.2000000476837, 22, 32, 112, attackTime = 900, critChance = 5, levelRequirement = 94, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 16, }, }, - [35] = { 0.80000001192093, 1.2000000476837, 22, 32, 113, attackTime = 900, critChance = 5, levelRequirement = 95, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 16, }, }, - [36] = { 0.80000001192093, 1.2000000476837, 23, 32, 114, attackTime = 900, critChance = 5, levelRequirement = 96, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 16, }, }, - [37] = { 0.80000001192093, 1.2000000476837, 23, 33, 115, attackTime = 900, critChance = 5, levelRequirement = 97, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 16, }, }, - [38] = { 0.80000001192093, 1.2000000476837, 24, 33, 116, attackTime = 900, critChance = 5, levelRequirement = 98, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 16, }, }, - [39] = { 0.80000001192093, 1.2000000476837, 24, 34, 117, attackTime = 900, critChance = 5, levelRequirement = 99, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 16, }, }, - [40] = { 0.80000001192093, 1.2000000476837, 24, 34, 118, attackTime = 900, critChance = 5, levelRequirement = 100, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 16, }, }, + [1] = { 0.80000001192093, 1.2000000476837, 8, 12, 50, attackTime = 900, critChance = 5, levelRequirement = 1, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 7, }, }, + [2] = { 0.80000001192093, 1.2000000476837, 8, 12, 52, attackTime = 900, critChance = 5, levelRequirement = 2, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 7, }, }, + [3] = { 0.80000001192093, 1.2000000476837, 8, 13, 54, attackTime = 900, critChance = 5, levelRequirement = 4, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 7, }, }, + [4] = { 0.80000001192093, 1.2000000476837, 9, 13, 56, attackTime = 900, critChance = 5, levelRequirement = 7, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 7, }, }, + [5] = { 0.80000001192093, 1.2000000476837, 9, 14, 58, attackTime = 900, critChance = 5, levelRequirement = 11, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 8, }, }, + [6] = { 0.80000001192093, 1.2000000476837, 10, 14, 60, attackTime = 900, critChance = 5, levelRequirement = 16, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 8, }, }, + [7] = { 0.80000001192093, 1.2000000476837, 10, 15, 62, attackTime = 900, critChance = 5, levelRequirement = 20, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 8, }, }, + [8] = { 0.80000001192093, 1.2000000476837, 11, 16, 64, attackTime = 900, critChance = 5, levelRequirement = 24, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 9, }, }, + [9] = { 0.80000001192093, 1.2000000476837, 11, 17, 66, attackTime = 900, critChance = 5, levelRequirement = 28, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 9, }, }, + [10] = { 0.80000001192093, 1.2000000476837, 12, 17, 68, attackTime = 900, critChance = 5, levelRequirement = 32, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 9, }, }, + [11] = { 0.80000001192093, 1.2000000476837, 12, 18, 70, attackTime = 900, critChance = 5, levelRequirement = 36, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 9, }, }, + [12] = { 0.80000001192093, 1.2000000476837, 13, 18, 72, attackTime = 900, critChance = 5, levelRequirement = 40, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 9, }, }, + [13] = { 0.80000001192093, 1.2000000476837, 13, 19, 74, attackTime = 900, critChance = 5, levelRequirement = 44, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 10, }, }, + [14] = { 0.80000001192093, 1.2000000476837, 13, 20, 76, attackTime = 900, critChance = 5, levelRequirement = 48, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 10, }, }, + [15] = { 0.80000001192093, 1.2000000476837, 14, 21, 78, attackTime = 900, critChance = 5, levelRequirement = 52, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 11, }, }, + [16] = { 0.80000001192093, 1.2000000476837, 15, 22, 80, attackTime = 900, critChance = 5, levelRequirement = 56, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 11, }, }, + [17] = { 0.80000001192093, 1.2000000476837, 15, 23, 82, attackTime = 900, critChance = 5, levelRequirement = 60, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 11, }, }, + [18] = { 0.80000001192093, 1.2000000476837, 16, 23, 84, attackTime = 900, critChance = 5, levelRequirement = 64, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 12, }, }, + [19] = { 0.80000001192093, 1.2000000476837, 16, 24, 86, attackTime = 900, critChance = 5, levelRequirement = 67, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 12, }, }, + [20] = { 0.80000001192093, 1.2000000476837, 16, 24, 88, attackTime = 900, critChance = 5, levelRequirement = 70, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 12, }, }, + [21] = { 0.80000001192093, 1.2000000476837, 16, 25, 90, attackTime = 900, critChance = 5, levelRequirement = 72, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 12, }, }, + [22] = { 0.80000001192093, 1.2000000476837, 17, 25, 92, attackTime = 900, critChance = 5, levelRequirement = 74, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 12, }, }, + [23] = { 0.80000001192093, 1.2000000476837, 17, 26, 94, attackTime = 900, critChance = 5, levelRequirement = 76, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 12, }, }, + [24] = { 0.80000001192093, 1.2000000476837, 18, 26, 96, attackTime = 900, critChance = 5, levelRequirement = 78, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 12, }, }, + [25] = { 0.80000001192093, 1.2000000476837, 19, 28, 98, attackTime = 900, critChance = 5, levelRequirement = 80, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 12, }, }, + [26] = { 0.80000001192093, 1.2000000476837, 19, 29, 100, attackTime = 900, critChance = 5, levelRequirement = 82, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 13, }, }, + [27] = { 0.80000001192093, 1.2000000476837, 19, 29, 102, attackTime = 900, critChance = 5, levelRequirement = 84, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 13, }, }, + [28] = { 0.80000001192093, 1.2000000476837, 20, 30, 104, attackTime = 900, critChance = 5, levelRequirement = 86, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 13, }, }, + [29] = { 0.80000001192093, 1.2000000476837, 20, 30, 106, attackTime = 900, critChance = 5, levelRequirement = 88, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 13, }, }, + [30] = { 0.80000001192093, 1.2000000476837, 21, 31, 108, attackTime = 900, critChance = 5, levelRequirement = 90, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 13, }, }, + [31] = { 0.80000001192093, 1.2000000476837, 22, 31, 109, attackTime = 900, critChance = 5, levelRequirement = 91, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 14, }, }, + [32] = { 0.80000001192093, 1.2000000476837, 22, 31, 110, attackTime = 900, critChance = 5, levelRequirement = 92, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 14, }, }, + [33] = { 0.80000001192093, 1.2000000476837, 22, 32, 111, attackTime = 900, critChance = 5, levelRequirement = 93, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 14, }, }, + [34] = { 0.80000001192093, 1.2000000476837, 22, 32, 112, attackTime = 900, critChance = 5, levelRequirement = 94, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 14, }, }, + [35] = { 0.80000001192093, 1.2000000476837, 22, 32, 113, attackTime = 900, critChance = 5, levelRequirement = 95, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 14, }, }, + [36] = { 0.80000001192093, 1.2000000476837, 23, 32, 114, attackTime = 900, critChance = 5, levelRequirement = 96, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 14, }, }, + [37] = { 0.80000001192093, 1.2000000476837, 23, 33, 115, attackTime = 900, critChance = 5, levelRequirement = 97, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 14, }, }, + [38] = { 0.80000001192093, 1.2000000476837, 24, 33, 116, attackTime = 900, critChance = 5, levelRequirement = 98, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 14, }, }, + [39] = { 0.80000001192093, 1.2000000476837, 24, 34, 117, attackTime = 900, critChance = 5, levelRequirement = 99, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 14, }, }, + [40] = { 0.80000001192093, 1.2000000476837, 24, 34, 118, attackTime = 900, critChance = 5, levelRequirement = 100, statInterpolation = { 3, 3, 1, 1, 1, }, cost = { Mana = 14, }, }, }, } skills["ShockwaveTotem"] = { @@ -10209,46 +10209,46 @@ skills["Reap"] = { "spell_maximum_base_physical_damage", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, 100.66666828096, critChance = 6, damageEffectiveness = 1.5, levelRequirement = 28, statInterpolation = { 3, 3, 3, }, cost = { Life = 25, }, }, - [2] = { 0.80000001192093, 1.2000000476837, 99.485002198232, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 31, statInterpolation = { 3, 3, 3, }, cost = { Life = 26, }, }, - [3] = { 0.80000001192093, 1.2000000476837, 98.429999962126, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 34, statInterpolation = { 3, 3, 3, }, cost = { Life = 28, }, }, - [4] = { 0.80000001192093, 1.2000000476837, 97.163337654049, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 37, statInterpolation = { 3, 3, 3, }, cost = { Life = 30, }, }, - [5] = { 0.80000001192093, 1.2000000476837, 96.02666910549, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 40, statInterpolation = { 3, 3, 3, }, cost = { Life = 31, }, }, - [6] = { 0.80000001192093, 1.2000000476837, 95.549998829638, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 42, statInterpolation = { 3, 3, 3, }, cost = { Life = 32, }, }, - [7] = { 0.80000001192093, 1.2000000476837, 95.04666540876, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 44, statInterpolation = { 3, 3, 3, }, cost = { Life = 33, }, }, - [8] = { 0.80000001192093, 1.2000000476837, 94.516668842857, critChance = 6, damageEffectiveness = 1.8, levelRequirement = 46, statInterpolation = { 3, 3, 3, }, cost = { Life = 34, }, }, - [9] = { 0.80000001192093, 1.2000000476837, 94.139999268601, critChance = 6, damageEffectiveness = 1.8, levelRequirement = 48, statInterpolation = { 3, 3, 3, }, cost = { Life = 35, }, }, - [10] = { 0.80000001192093, 1.2000000476837, 93.558337395452, critChance = 6, damageEffectiveness = 1.8, levelRequirement = 50, statInterpolation = { 3, 3, 3, }, cost = { Life = 36, }, }, - [11] = { 0.80000001192093, 1.2000000476837, 93.133332426846, critChance = 6, damageEffectiveness = 1.8, levelRequirement = 52, statInterpolation = { 3, 3, 3, }, cost = { Life = 37, }, }, - [12] = { 0.80000001192093, 1.2000000476837, 92.685002173396, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 54, statInterpolation = { 3, 3, 3, }, cost = { Life = 38, }, }, - [13] = { 0.80000001192093, 1.2000000476837, 92.213338687817, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 56, statInterpolation = { 3, 3, 3, }, cost = { Life = 39, }, }, - [14] = { 0.80000001192093, 1.2000000476837, 91.718334022822, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 58, statInterpolation = { 3, 3, 3, }, cost = { Life = 40, }, }, - [15] = { 0.80000001192093, 1.2000000476837, 91.200004072984, critChance = 6, damageEffectiveness = 2, levelRequirement = 60, statInterpolation = { 3, 3, 3, }, cost = { Life = 41, }, }, - [16] = { 0.80000001192093, 1.2000000476837, 90.65833294373, critChance = 6, damageEffectiveness = 2, levelRequirement = 62, statInterpolation = { 3, 3, 3, }, cost = { Life = 42, }, }, - [17] = { 0.80000001192093, 1.2000000476837, 89.900002899518, critChance = 6, damageEffectiveness = 2, levelRequirement = 64, statInterpolation = { 3, 3, 3, }, cost = { Life = 43, }, }, - [18] = { 0.80000001192093, 1.2000000476837, 89.115001762994, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 66, statInterpolation = { 3, 3, 3, }, cost = { Life = 44, }, }, - [19] = { 0.80000001192093, 1.2000000476837, 89.089999600773, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 68, statInterpolation = { 3, 3, 3, }, cost = { Life = 45, }, }, - [20] = { 0.80000001192093, 1.2000000476837, 88.655004893479, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 70, statInterpolation = { 3, 3, 3, }, cost = { Life = 46, }, }, - [21] = { 0.80000001192093, 1.2000000476837, 88.199998919666, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 72, statInterpolation = { 3, 3, 3, }, cost = { Life = 47, }, }, - [22] = { 0.80000001192093, 1.2000000476837, 87.523335187907, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 74, statInterpolation = { 3, 3, 3, }, cost = { Life = 48, }, }, - [23] = { 0.80000001192093, 1.2000000476837, 87.026669540107, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 76, statInterpolation = { 3, 3, 3, }, cost = { Life = 49, }, }, - [24] = { 0.80000001192093, 1.2000000476837, 86.510000573074, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 78, statInterpolation = { 3, 3, 3, }, cost = { Life = 50, }, }, - [25] = { 0.80000001192093, 1.2000000476837, 85.973336234093, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 80, statInterpolation = { 3, 3, 3, }, cost = { Life = 51, }, }, - [26] = { 0.80000001192093, 1.2000000476837, 85.416668575878, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 82, statInterpolation = { 3, 3, 3, }, cost = { Life = 52, }, }, - [27] = { 0.80000001192093, 1.2000000476837, 84.840005545716, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 84, statInterpolation = { 3, 3, 3, }, cost = { Life = 53, }, }, - [28] = { 0.80000001192093, 1.2000000476837, 84.454999268291, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 86, statInterpolation = { 3, 3, 3, }, cost = { Life = 54, }, }, - [29] = { 0.80000001192093, 1.2000000476837, 83.839998529752, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 88, statInterpolation = { 3, 3, 3, }, cost = { Life = 55, }, }, - [30] = { 0.80000001192093, 1.2000000476837, 83.205002419266, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 90, statInterpolation = { 3, 3, 3, }, cost = { Life = 56, }, }, - [31] = { 0.80000001192093, 1.2000000476837, 83.200003576279, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 91, statInterpolation = { 3, 3, 3, }, cost = { Life = 57, }, }, - [32] = { 0.80000001192093, 1.2000000476837, 83.403334892367, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 92, statInterpolation = { 3, 3, 3, }, cost = { Life = 58, }, }, - [33] = { 0.80000001192093, 1.2000000476837, 83.380001660238, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 93, statInterpolation = { 3, 3, 3, }, cost = { Life = 58, }, }, - [34] = { 0.80000001192093, 1.2000000476837, 83.346670742134, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 94, statInterpolation = { 3, 3, 3, }, cost = { Life = 58, }, }, - [35] = { 0.80000001192093, 1.2000000476837, 83.526668826093, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 95, statInterpolation = { 3, 3, 3, }, cost = { Life = 60, }, }, - [36] = { 0.80000001192093, 1.2000000476837, 83.475003518847, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 96, statInterpolation = { 3, 3, 3, }, cost = { Life = 60, }, }, - [37] = { 0.80000001192093, 1.2000000476837, 83.413332578341, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 97, statInterpolation = { 3, 3, 3, }, cost = { Life = 60, }, }, - [38] = { 0.80000001192093, 1.2000000476837, 83.570005377457, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 98, statInterpolation = { 3, 3, 3, }, cost = { Life = 60, }, }, - [39] = { 0.80000001192093, 1.2000000476837, 83.490000047808, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 99, statInterpolation = { 3, 3, 3, }, cost = { Life = 61, }, }, - [40] = { 0.80000001192093, 1.2000000476837, 83.400004979471, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 100, statInterpolation = { 3, 3, 3, }, cost = { Life = 61, }, }, + [1] = { 0.80000001192093, 1.2000000476837, 115.76667090729, critChance = 6, damageEffectiveness = 1.5, levelRequirement = 28, statInterpolation = { 3, 3, 3, }, cost = { Life = 25, }, }, + [2] = { 0.80000001192093, 1.2000000476837, 114.4083366535, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 31, statInterpolation = { 3, 3, 3, }, cost = { Life = 26, }, }, + [3] = { 0.80000001192093, 1.2000000476837, 113.19500063547, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 34, statInterpolation = { 3, 3, 3, }, cost = { Life = 28, }, }, + [4] = { 0.80000001192093, 1.2000000476837, 111.73833461018, critChance = 6, damageEffectiveness = 1.6, levelRequirement = 37, statInterpolation = { 3, 3, 3, }, cost = { Life = 30, }, }, + [5] = { 0.80000001192093, 1.2000000476837, 110.43000468083, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 40, statInterpolation = { 3, 3, 3, }, cost = { Life = 31, }, }, + [6] = { 0.80000001192093, 1.2000000476837, 109.88333470859, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 42, statInterpolation = { 3, 3, 3, }, cost = { Life = 32, }, }, + [7] = { 0.80000001192093, 1.2000000476837, 109.30333381824, critChance = 6, damageEffectiveness = 1.7, levelRequirement = 44, statInterpolation = { 3, 3, 3, }, cost = { Life = 33, }, }, + [8] = { 0.80000001192093, 1.2000000476837, 108.69500085278, critChance = 6, damageEffectiveness = 1.8, levelRequirement = 46, statInterpolation = { 3, 3, 3, }, cost = { Life = 34, }, }, + [9] = { 0.80000001192093, 1.2000000476837, 108.26166712829, critChance = 6, damageEffectiveness = 1.8, levelRequirement = 48, statInterpolation = { 3, 3, 3, }, cost = { Life = 35, }, }, + [10] = { 0.80000001192093, 1.2000000476837, 107.59167116961, critChance = 6, damageEffectiveness = 1.8, levelRequirement = 50, statInterpolation = { 3, 3, 3, }, cost = { Life = 36, }, }, + [11] = { 0.80000001192093, 1.2000000476837, 107.10333427769, critChance = 6, damageEffectiveness = 1.8, levelRequirement = 52, statInterpolation = { 3, 3, 3, }, cost = { Life = 37, }, }, + [12] = { 0.80000001192093, 1.2000000476837, 106.58833424075, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 54, statInterpolation = { 3, 3, 3, }, cost = { Life = 38, }, }, + [13] = { 0.80000001192093, 1.2000000476837, 106.04500212869, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 56, statInterpolation = { 3, 3, 3, }, cost = { Life = 39, }, }, + [14] = { 0.80000001192093, 1.2000000476837, 105.47666785441, critChance = 6, damageEffectiveness = 1.9, levelRequirement = 58, statInterpolation = { 3, 3, 3, }, cost = { Life = 40, }, }, + [15] = { 0.80000001192093, 1.2000000476837, 104.88000150502, critChance = 6, damageEffectiveness = 2, levelRequirement = 60, statInterpolation = { 3, 3, 3, }, cost = { Life = 41, }, }, + [16] = { 0.80000001192093, 1.2000000476837, 104.2566720106, critChance = 6, damageEffectiveness = 2, levelRequirement = 62, statInterpolation = { 3, 3, 3, }, cost = { Life = 42, }, }, + [17] = { 0.80000001192093, 1.2000000476837, 103.38500571863, critChance = 6, damageEffectiveness = 2, levelRequirement = 64, statInterpolation = { 3, 3, 3, }, cost = { Life = 43, }, }, + [18] = { 0.80000001192093, 1.2000000476837, 102.48166949137, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 66, statInterpolation = { 3, 3, 3, }, cost = { Life = 44, }, }, + [19] = { 0.80000001192093, 1.2000000476837, 102.45333741625, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 68, statInterpolation = { 3, 3, 3, }, cost = { Life = 45, }, }, + [20] = { 0.80000001192093, 1.2000000476837, 101.95333390827, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 70, statInterpolation = { 3, 3, 3, }, cost = { Life = 46, }, }, + [21] = { 0.80000001192093, 1.2000000476837, 101.43000511544, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 72, statInterpolation = { 3, 3, 3, }, cost = { Life = 47, }, }, + [22] = { 0.80000001192093, 1.2000000476837, 100.651671752, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 74, statInterpolation = { 3, 3, 3, }, cost = { Life = 48, }, }, + [23] = { 0.80000001192093, 1.2000000476837, 100.07999961754, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 76, statInterpolation = { 3, 3, 3, }, cost = { Life = 49, }, }, + [24] = { 0.80000001192093, 1.2000000476837, 99.486671128323, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 78, statInterpolation = { 3, 3, 3, }, cost = { Life = 50, }, }, + [25] = { 0.80000001192093, 1.2000000476837, 98.870001459693, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 80, statInterpolation = { 3, 3, 3, }, cost = { Life = 51, }, }, + [26] = { 0.80000001192093, 1.2000000476837, 98.229998558934, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 82, statInterpolation = { 3, 3, 3, }, cost = { Life = 52, }, }, + [27] = { 0.80000001192093, 1.2000000476837, 97.566670373331, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 84, statInterpolation = { 3, 3, 3, }, cost = { Life = 53, }, }, + [28] = { 0.80000001192093, 1.2000000476837, 97.123338962868, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 86, statInterpolation = { 3, 3, 3, }, cost = { Life = 54, }, }, + [29] = { 0.80000001192093, 1.2000000476837, 96.416666278616, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 88, statInterpolation = { 3, 3, 3, }, cost = { Life = 55, }, }, + [30] = { 0.80000001192093, 1.2000000476837, 95.684999379429, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 90, statInterpolation = { 3, 3, 3, }, cost = { Life = 56, }, }, + [31] = { 0.80000001192093, 1.2000000476837, 95.680000536442, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 91, statInterpolation = { 3, 3, 3, }, cost = { Life = 57, }, }, + [32] = { 0.80000001192093, 1.2000000476837, 95.913332857738, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 92, statInterpolation = { 3, 3, 3, }, cost = { Life = 58, }, }, + [33] = { 0.80000001192093, 1.2000000476837, 95.886669712712, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 93, statInterpolation = { 3, 3, 3, }, cost = { Life = 58, }, }, + [34] = { 0.80000001192093, 1.2000000476837, 95.848332004336, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 94, statInterpolation = { 3, 3, 3, }, cost = { Life = 58, }, }, + [35] = { 0.80000001192093, 1.2000000476837, 96.055001180607, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 95, statInterpolation = { 3, 3, 3, }, cost = { Life = 60, }, }, + [36] = { 0.80000001192093, 1.2000000476837, 95.996668100283, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 96, statInterpolation = { 3, 3, 3, }, cost = { Life = 60, }, }, + [37] = { 0.80000001192093, 1.2000000476837, 95.924999473803, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 97, statInterpolation = { 3, 3, 3, }, cost = { Life = 60, }, }, + [38] = { 0.80000001192093, 1.2000000476837, 96.105005505048, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 98, statInterpolation = { 3, 3, 3, }, cost = { Life = 60, }, }, + [39] = { 0.80000001192093, 1.2000000476837, 96.013333559334, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 99, statInterpolation = { 3, 3, 3, }, cost = { Life = 61, }, }, + [40] = { 0.80000001192093, 1.2000000476837, 95.910002944842, critChance = 6, damageEffectiveness = 2.1, levelRequirement = 100, statInterpolation = { 3, 3, 3, }, cost = { Life = 61, }, }, }, } skills["VaalReap"] = { @@ -10310,46 +10310,46 @@ skills["VaalReap"] = { "spell_maximum_base_physical_damage", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, 75.000001676381, critChance = 6, damageEffectiveness = 3, levelRequirement = 28, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, - [2] = { 0.80000001192093, 1.2000000476837, 75.000001676381, critChance = 6, damageEffectiveness = 3.1, levelRequirement = 31, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, - [3] = { 0.80000001192093, 1.2000000476837, 75.000001676381, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 34, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, - [4] = { 0.80000001192093, 1.2000000476837, 75.000001676381, critChance = 6, damageEffectiveness = 3.4, levelRequirement = 37, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, - [5] = { 0.80000001192093, 1.2000000476837, 75.000001676381, critChance = 6, damageEffectiveness = 3.5, levelRequirement = 40, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, - [6] = { 0.80000001192093, 1.2000000476837, 75.000001676381, critChance = 6, damageEffectiveness = 3.6, levelRequirement = 42, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, - [7] = { 0.80000001192093, 1.2000000476837, 75.000001676381, critChance = 6, damageEffectiveness = 3.6, levelRequirement = 44, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, - [8] = { 0.80000001192093, 1.2000000476837, 75.000001676381, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 46, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, - [9] = { 0.80000001192093, 1.2000000476837, 75.000001676381, critChance = 6, damageEffectiveness = 3.8, levelRequirement = 48, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, - [10] = { 0.80000001192093, 1.2000000476837, 75.000001676381, critChance = 6, damageEffectiveness = 3.9, levelRequirement = 50, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, - [11] = { 0.80000001192093, 1.2000000476837, 75.000001676381, critChance = 6, damageEffectiveness = 4, levelRequirement = 52, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, - [12] = { 0.80000001192093, 1.2000000476837, 75.000001676381, critChance = 6, damageEffectiveness = 4.1, levelRequirement = 54, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, - [13] = { 0.80000001192093, 1.2000000476837, 75.000001676381, critChance = 6, damageEffectiveness = 4.2, levelRequirement = 56, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, - [14] = { 0.80000001192093, 1.2000000476837, 75.000001676381, critChance = 6, damageEffectiveness = 4.2, levelRequirement = 58, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, - [15] = { 0.80000001192093, 1.2000000476837, 75.000001676381, critChance = 6, damageEffectiveness = 4.3, levelRequirement = 60, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, - [16] = { 0.80000001192093, 1.2000000476837, 75.000001676381, critChance = 6, damageEffectiveness = 4.4, levelRequirement = 62, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, - [17] = { 0.80000001192093, 1.2000000476837, 75.000001676381, critChance = 6, damageEffectiveness = 4.5, levelRequirement = 64, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, - [18] = { 0.80000001192093, 1.2000000476837, 75.000001676381, critChance = 6, damageEffectiveness = 4.6, levelRequirement = 66, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, - [19] = { 0.80000001192093, 1.2000000476837, 75.000001676381, critChance = 6, damageEffectiveness = 4.7, levelRequirement = 68, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, - [20] = { 0.80000001192093, 1.2000000476837, 75.000001676381, critChance = 6, damageEffectiveness = 4.8, levelRequirement = 70, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, - [21] = { 0.80000001192093, 1.2000000476837, 75.000001676381, critChance = 6, damageEffectiveness = 4.8, levelRequirement = 72, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, - [22] = { 0.80000001192093, 1.2000000476837, 75.000001676381, critChance = 6, damageEffectiveness = 4.8, levelRequirement = 74, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, - [23] = { 0.80000001192093, 1.2000000476837, 75.000001676381, critChance = 6, damageEffectiveness = 4.8, levelRequirement = 76, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, - [24] = { 0.80000001192093, 1.2000000476837, 75.000001676381, critChance = 6, damageEffectiveness = 4.8, levelRequirement = 78, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, - [25] = { 0.80000001192093, 1.2000000476837, 75.000001676381, critChance = 6, damageEffectiveness = 4.8, levelRequirement = 80, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, - [26] = { 0.80000001192093, 1.2000000476837, 75.000001676381, critChance = 6, damageEffectiveness = 4.8, levelRequirement = 82, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, - [27] = { 0.80000001192093, 1.2000000476837, 75.000001676381, critChance = 6, damageEffectiveness = 4.8, levelRequirement = 84, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, - [28] = { 0.80000001192093, 1.2000000476837, 75.000001676381, critChance = 6, damageEffectiveness = 4.8, levelRequirement = 86, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, - [29] = { 0.80000001192093, 1.2000000476837, 75.000001676381, critChance = 6, damageEffectiveness = 4.8, levelRequirement = 88, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, - [30] = { 0.80000001192093, 1.2000000476837, 75.000001676381, critChance = 6, damageEffectiveness = 4.8, levelRequirement = 90, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, - [31] = { 0.80000001192093, 1.2000000476837, 75.000001676381, critChance = 6, damageEffectiveness = 4.8, levelRequirement = 91, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, - [32] = { 0.80000001192093, 1.2000000476837, 75.000001676381, critChance = 6, damageEffectiveness = 4.8, levelRequirement = 92, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, - [33] = { 0.80000001192093, 1.2000000476837, 75.000001676381, critChance = 6, damageEffectiveness = 4.8, levelRequirement = 93, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, - [34] = { 0.80000001192093, 1.2000000476837, 75.000001676381, critChance = 6, damageEffectiveness = 4.8, levelRequirement = 94, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, - [35] = { 0.80000001192093, 1.2000000476837, 75.000001676381, critChance = 6, damageEffectiveness = 4.8, levelRequirement = 95, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, - [36] = { 0.80000001192093, 1.2000000476837, 75.000001676381, critChance = 6, damageEffectiveness = 4.8, levelRequirement = 96, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, - [37] = { 0.80000001192093, 1.2000000476837, 75.000001676381, critChance = 6, damageEffectiveness = 4.8, levelRequirement = 97, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, - [38] = { 0.80000001192093, 1.2000000476837, 75.000001676381, critChance = 6, damageEffectiveness = 4.8, levelRequirement = 98, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, - [39] = { 0.80000001192093, 1.2000000476837, 75.000001676381, critChance = 6, damageEffectiveness = 4.8, levelRequirement = 99, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, - [40] = { 0.80000001192093, 1.2000000476837, 75.000001676381, critChance = 6, damageEffectiveness = 4.8, levelRequirement = 100, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [1] = { 0.80000001192093, 1.2000000476837, 86.250005106752, critChance = 6, damageEffectiveness = 3, levelRequirement = 28, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [2] = { 0.80000001192093, 1.2000000476837, 86.250005106752, critChance = 6, damageEffectiveness = 3.1, levelRequirement = 31, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [3] = { 0.80000001192093, 1.2000000476837, 86.250005106752, critChance = 6, damageEffectiveness = 3.3, levelRequirement = 34, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [4] = { 0.80000001192093, 1.2000000476837, 86.250005106752, critChance = 6, damageEffectiveness = 3.4, levelRequirement = 37, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [5] = { 0.80000001192093, 1.2000000476837, 86.250005106752, critChance = 6, damageEffectiveness = 3.5, levelRequirement = 40, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [6] = { 0.80000001192093, 1.2000000476837, 86.250005106752, critChance = 6, damageEffectiveness = 3.6, levelRequirement = 42, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [7] = { 0.80000001192093, 1.2000000476837, 86.250005106752, critChance = 6, damageEffectiveness = 3.6, levelRequirement = 44, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [8] = { 0.80000001192093, 1.2000000476837, 86.250005106752, critChance = 6, damageEffectiveness = 3.7, levelRequirement = 46, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [9] = { 0.80000001192093, 1.2000000476837, 86.250005106752, critChance = 6, damageEffectiveness = 3.8, levelRequirement = 48, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [10] = { 0.80000001192093, 1.2000000476837, 86.250005106752, critChance = 6, damageEffectiveness = 3.9, levelRequirement = 50, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [11] = { 0.80000001192093, 1.2000000476837, 86.250005106752, critChance = 6, damageEffectiveness = 4, levelRequirement = 52, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [12] = { 0.80000001192093, 1.2000000476837, 86.250005106752, critChance = 6, damageEffectiveness = 4.1, levelRequirement = 54, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [13] = { 0.80000001192093, 1.2000000476837, 86.250005106752, critChance = 6, damageEffectiveness = 4.2, levelRequirement = 56, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [14] = { 0.80000001192093, 1.2000000476837, 86.250005106752, critChance = 6, damageEffectiveness = 4.2, levelRequirement = 58, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [15] = { 0.80000001192093, 1.2000000476837, 86.250005106752, critChance = 6, damageEffectiveness = 4.3, levelRequirement = 60, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [16] = { 0.80000001192093, 1.2000000476837, 86.250005106752, critChance = 6, damageEffectiveness = 4.4, levelRequirement = 62, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [17] = { 0.80000001192093, 1.2000000476837, 86.250005106752, critChance = 6, damageEffectiveness = 4.5, levelRequirement = 64, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [18] = { 0.80000001192093, 1.2000000476837, 86.250005106752, critChance = 6, damageEffectiveness = 4.6, levelRequirement = 66, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [19] = { 0.80000001192093, 1.2000000476837, 86.250005106752, critChance = 6, damageEffectiveness = 4.7, levelRequirement = 68, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [20] = { 0.80000001192093, 1.2000000476837, 86.250005106752, critChance = 6, damageEffectiveness = 4.8, levelRequirement = 70, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [21] = { 0.80000001192093, 1.2000000476837, 86.250005106752, critChance = 6, damageEffectiveness = 4.8, levelRequirement = 72, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [22] = { 0.80000001192093, 1.2000000476837, 86.250005106752, critChance = 6, damageEffectiveness = 4.8, levelRequirement = 74, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [23] = { 0.80000001192093, 1.2000000476837, 86.250005106752, critChance = 6, damageEffectiveness = 4.8, levelRequirement = 76, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [24] = { 0.80000001192093, 1.2000000476837, 86.250005106752, critChance = 6, damageEffectiveness = 4.8, levelRequirement = 78, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [25] = { 0.80000001192093, 1.2000000476837, 86.250005106752, critChance = 6, damageEffectiveness = 4.8, levelRequirement = 80, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [26] = { 0.80000001192093, 1.2000000476837, 86.250005106752, critChance = 6, damageEffectiveness = 4.8, levelRequirement = 82, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [27] = { 0.80000001192093, 1.2000000476837, 86.250005106752, critChance = 6, damageEffectiveness = 4.8, levelRequirement = 84, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [28] = { 0.80000001192093, 1.2000000476837, 86.250005106752, critChance = 6, damageEffectiveness = 4.8, levelRequirement = 86, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [29] = { 0.80000001192093, 1.2000000476837, 86.250005106752, critChance = 6, damageEffectiveness = 4.8, levelRequirement = 88, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [30] = { 0.80000001192093, 1.2000000476837, 86.250005106752, critChance = 6, damageEffectiveness = 4.8, levelRequirement = 90, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [31] = { 0.80000001192093, 1.2000000476837, 86.250005106752, critChance = 6, damageEffectiveness = 4.8, levelRequirement = 91, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [32] = { 0.80000001192093, 1.2000000476837, 86.250005106752, critChance = 6, damageEffectiveness = 4.8, levelRequirement = 92, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [33] = { 0.80000001192093, 1.2000000476837, 86.250005106752, critChance = 6, damageEffectiveness = 4.8, levelRequirement = 93, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [34] = { 0.80000001192093, 1.2000000476837, 86.250005106752, critChance = 6, damageEffectiveness = 4.8, levelRequirement = 94, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [35] = { 0.80000001192093, 1.2000000476837, 86.250005106752, critChance = 6, damageEffectiveness = 4.8, levelRequirement = 95, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [36] = { 0.80000001192093, 1.2000000476837, 86.250005106752, critChance = 6, damageEffectiveness = 4.8, levelRequirement = 96, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [37] = { 0.80000001192093, 1.2000000476837, 86.250005106752, critChance = 6, damageEffectiveness = 4.8, levelRequirement = 97, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [38] = { 0.80000001192093, 1.2000000476837, 86.250005106752, critChance = 6, damageEffectiveness = 4.8, levelRequirement = 98, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [39] = { 0.80000001192093, 1.2000000476837, 86.250005106752, critChance = 6, damageEffectiveness = 4.8, levelRequirement = 99, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, + [40] = { 0.80000001192093, 1.2000000476837, 86.250005106752, critChance = 6, damageEffectiveness = 4.8, levelRequirement = 100, soulPreventionDuration = 8, vaalStoredUses = 1, statInterpolation = { 3, 3, 3, }, cost = { Soul = 25, }, }, }, } skills["SummonFlameGolem"] = { @@ -11136,7 +11136,7 @@ skills["SunderAltY"] = { { "sunder_wave_max_steps", 4 }, { "sunder_wave_min_steps", 2 }, { "sunder_shockwave_limit_per_cascade", 5 }, - { "sunder_number_of_fake_chains", 2 }, + { "sunder_number_of_fake_chains", 3 }, }, stats = { "active_skill_area_of_effect_+%_final", @@ -11844,7 +11844,6 @@ skills["VolcanicFissureAltX"] = { constantStats = { { "skill_physical_damage_%_to_convert_to_fire", 60 }, { "vaal_volcanic_fissure_crack_repeat_count", 2 }, - { "active_skill_area_of_effect_+%_final", 50 }, }, stats = { "is_area_damage", diff --git a/src/Data/Skills/minion.lua b/src/Data/Skills/minion.lua index 24331da089..677897f91a 100644 --- a/src/Data/Skills/minion.lua +++ b/src/Data/Skills/minion.lua @@ -738,7 +738,6 @@ skills["ZombieSlam"] = { }, stats = { "is_area_damage", - "global_always_hit", }, levels = { [1] = { baseMultiplier = 1.5, cooldown = 6, damageEffectiveness = 1.5, levelRequirement = 1, storedUses = 1, }, @@ -1980,7 +1979,7 @@ skills["RainOfArrowsCloneShot"] = { "cannot_pierce", }, levels = { - [1] = { baseMultiplier = 1.5, damageEffectiveness = 1.5, levelRequirement = 0, }, + [1] = { levelRequirement = 0, }, }, } skills["ElementalHitCloneShot"] = { @@ -2005,7 +2004,7 @@ skills["ElementalHitCloneShot"] = { "skill_can_fire_wand_projectiles", }, levels = { - [1] = { baseMultiplier = 6.8, damageEffectiveness = 6.8, levelRequirement = 0, }, + [1] = { baseMultiplier = 5.4, damageEffectiveness = 5.4, levelRequirement = 0, }, }, } skills["SumonRagingSpiritMelee"] = { @@ -2064,15 +2063,15 @@ skills["AnimateGuardianSmite"] = { "visual_hit_effect_elemental_is_holy", }, levels = { - [1] = { baseMultiplier = 3.25, damageEffectiveness = 3.25, levelRequirement = 1, }, + [1] = { baseMultiplier = 2.0313, levelRequirement = 1, }, }, } skills["ElderTentacleMinionProjectileDeepcaller"] = { name = "Projectile Spell", hidden = true, color = 4, - baseEffectiveness = 5.5, - incrementalEffectiveness = 0.029999999329448, + baseEffectiveness = 5, + incrementalEffectiveness = 0.041000001132488, skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Triggerable] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 1.17, @@ -2098,4 +2097,26 @@ skills["ElderTentacleMinionProjectileDeepcaller"] = { levels = { [1] = { 0.5, 1.5, critChance = 5, levelRequirement = 1, statInterpolation = { 3, 3, }, }, }, +} +skills["SummonedLivingLightningZap"] = { + name = "Living Lightning Zap", + hidden = true, + color = 4, + description = "Jolt through an enemy, causing chaining Lightning Damage.", + skillTypes = { [SkillType.Attack] = true, [SkillType.Lightning] = true, [SkillType.Chains] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, }, + statDescriptionScope = "skill_stat_descriptions", + castTime = 1, + baseFlags = { + attack = true, + melee = true, + }, + constantStats = { + { "additional_base_critical_strike_chance", 800 }, + }, + stats = { + "supress_weapon_surges", + }, + levels = { + [1] = { cooldown = 0.25, levelRequirement = 0, storedUses = 1, }, + }, } \ No newline at end of file diff --git a/src/Data/Skills/other.lua b/src/Data/Skills/other.lua index 8017ed13ef..3112bd5ddd 100644 --- a/src/Data/Skills/other.lua +++ b/src/Data/Skills/other.lua @@ -166,7 +166,7 @@ skills["Barkskin"] = { hidden = true, color = 2, description = "Adopt the power of the forest, gradually covering your body in bark. Getting hit by enemy attacks causes bark to be removed. You take reduced damage from physical attack hits the more bark builds up, but higher chance to evade when less covered in bark.", - skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.HasReservation] = true, [SkillType.Instant] = true, [SkillType.Cooldown] = true, [SkillType.InstantNoRepeatWhenHeld] = true, [SkillType.InstantShiftAttackForLeftMouse] = true, }, + skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.HasReservation] = true, [SkillType.Instant] = true, [SkillType.Cooldown] = true, [SkillType.InstantNoRepeatWhenHeld] = true, [SkillType.InstantShiftAttackForLeftMouse] = true, [SkillType.ZeroReservation] = true, }, statDescriptionScope = "skill_stat_descriptions", castTime = 0, fromTree = true, @@ -195,8 +195,8 @@ skills["Barkskin"] = { "chance_to_evade_attacks_+%_final_per_missing_barkskin_stack", }, levels = { - [20] = { -30, 2, cooldown = 10, levelRequirement = 70, manaReservationPercent = 10, storedUses = 1, statInterpolation = { 1, 1, }, }, - [30] = { -60, 3, cooldown = 10, levelRequirement = 90, manaReservationPercent = 10, storedUses = 1, statInterpolation = { 1, 1, }, }, + [20] = { -30, 2, cooldown = 10, levelRequirement = 70, storedUses = 1, statInterpolation = { 1, 1, }, }, + [30] = { -60, 3, cooldown = 10, levelRequirement = 90, storedUses = 1, statInterpolation = { 1, 1, }, }, }, } skills["AilmentBearer"] = { @@ -732,6 +732,54 @@ skills["CreateFungalGroundOnKill"] = { [10] = { cooldown = 1, levelRequirement = 1, storedUses = 1, }, }, } +skills["Convocation"] = { + name = "Convocation", + baseTypeName = "Convocation", + color = 4, + description = "Recalls all minions that are following you to your location, and grants them a temporary life regeneration effect.", + skillTypes = { [SkillType.Spell] = true, [SkillType.Buff] = true, [SkillType.Duration] = true, [SkillType.Triggerable] = true, [SkillType.Minion] = true, [SkillType.Instant] = true, [SkillType.Cooldown] = true, }, + statDescriptionScope = "buff_skill_stat_descriptions", + castTime = 0, + statMap = { + ["base_life_regeneration_rate_per_minute"] = { + mod("LifeRegen", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff" }), + div = 60, + }, + }, + baseFlags = { + spell = true, + duration = true, + }, + baseMods = { + skill("buffMinions", true), + skill("buffNotPlayer", true), + }, + qualityStats = { + Default = { + { "skill_effect_duration_+%", 1 }, + { "base_cooldown_speed_+%", 1 }, + }, + }, + constantStats = { + { "base_skill_effect_duration", 2000 }, + { "life_regeneration_rate_per_minute_%", 120 }, + }, + stats = { + "base_deal_no_damage", + }, + levels = { + [1] = { cooldown = 3, levelRequirement = 31, storedUses = 1, cost = { Mana = 6, }, }, + [2] = { cooldown = 3, levelRequirement = 31, storedUses = 1, cost = { Mana = 6, }, }, + [3] = { cooldown = 3, levelRequirement = 31, storedUses = 1, cost = { Mana = 6, }, }, + [4] = { cooldown = 3, levelRequirement = 31, storedUses = 1, cost = { Mana = 6, }, }, + [5] = { cooldown = 3, levelRequirement = 31, storedUses = 1, cost = { Mana = 6, }, }, + [6] = { cooldown = 3, levelRequirement = 31, storedUses = 1, cost = { Mana = 6, }, }, + [7] = { cooldown = 3, levelRequirement = 31, storedUses = 1, cost = { Mana = 6, }, }, + [8] = { cooldown = 3, levelRequirement = 31, storedUses = 1, cost = { Mana = 6, }, }, + [9] = { cooldown = 3, levelRequirement = 31, storedUses = 1, cost = { Mana = 6, }, }, + [10] = { cooldown = 3, levelRequirement = 31, storedUses = 1, cost = { Mana = 6, }, }, + }, +} skills["CorpseWalk"] = { name = "Corpse Walk", hidden = true, @@ -1430,7 +1478,7 @@ skills["EmbraceMadness"] = { }, constantStats = { { "embrace_madness_amount_of_cooldown_to_gain_ms", 8000 }, - { "glorious_madness_timer_ms", 1000 }, + { "glorious_madness_timer_ms", 2000 }, }, stats = { }, @@ -1642,8 +1690,8 @@ skills["AtziriUniqueStaffFlameblast"] = { skill("triggerSource", "Queen's Demand"), }, constantStats = { - { "base_chance_to_ignite_%", 50 }, - { "base_reduce_enemy_fire_resistance_%", 25 }, + { "base_chance_to_ignite_%", 100 }, + { "base_reduce_enemy_fire_resistance_%", 50 }, { "base_skill_effect_duration", 2000 }, }, stats = { @@ -3024,10 +3072,10 @@ skills["AtziriUniqueStaffStormCall"] = { skill("triggerSource", "Queen's Demand"), }, constantStats = { - { "base_chance_to_shock_%", 50 }, + { "base_chance_to_shock_%", 100 }, { "atziri_unique_staff_storm_call_number_of_markers_to_place", 12 }, { "shock_effect_+%", 50 }, - { "base_reduce_enemy_lightning_resistance_%", 25 }, + { "base_reduce_enemy_lightning_resistance_%", 50 }, { "base_skill_effect_duration", 2000 }, }, stats = { @@ -3081,7 +3129,7 @@ skills["SummonBeastialRhoa"] = { name = "Summon Bestial Rhoa", hidden = true, color = 3, - description = "Summons a Bestial Rhoa. In addition to its melee attack, the Bestial Rhoa uses a charge and has an aura that intimidates enemies. This minion's hits cannot be evaded. Enemies will not engage this minion directly, and they are immune to damage.", + description = "Summons a Bestial Rhoa. In addition to its melee attack, the Bestial Rhoa uses a charge and has an aura that intimidates enemies. Enemies will not engage this minion directly, and they are immune to damage.", skillTypes = { [SkillType.Triggerable] = true, [SkillType.Mineable] = true, [SkillType.Minion] = true, [SkillType.MinionsCanExplode] = true, [SkillType.MinionsAreUndamageable] = true, [SkillType.Multicastable] = true, [SkillType.Spell] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.CreatesMinion] = true, [SkillType.Cooldown] = true, }, minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Multistrikeable] = true, }, statDescriptionScope = "minion_spell_skill_stat_descriptions", @@ -3120,7 +3168,7 @@ skills["SummonBeastialSnake"] = { name = "Summon Bestial Snake", hidden = true, color = 3, - description = "Summons a Bestial Snake. The Bestial Snake fires powerful chaos projectile attacks. This minion's hits cannot be evaded. Enemies will not engage this minion directly, and they are immune to damage.", + description = "Summons a Bestial Snake. The Bestial Snake fires powerful chaos projectile attacks. Enemies will not engage this minion directly, and they are immune to damage.", skillTypes = { [SkillType.Triggerable] = true, [SkillType.Mineable] = true, [SkillType.Minion] = true, [SkillType.MinionsCanExplode] = true, [SkillType.MinionsAreUndamageable] = true, [SkillType.Multicastable] = true, [SkillType.Spell] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.CreatesMinion] = true, [SkillType.Cooldown] = true, }, minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Multistrikeable] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Chains] = true, [SkillType.RangedAttack] = true, }, statDescriptionScope = "minion_spell_skill_stat_descriptions", @@ -3160,7 +3208,7 @@ skills["SummonBeastialUrsa"] = { name = "Summon Bestial Ursa", hidden = true, color = 3, - description = "Summons a Bestial Ursa. In addition to its melee attack, the Bestial Ursa uses a powerful Ground Slam and Rallying Cry. This minion's hits cannot be evaded. Enemies will not engage this minion directly, and they are immune to damage.", + description = "Summons a Bestial Ursa. In addition to its melee attack, the Bestial Ursa uses a powerful Ground Slam and Rallying Cry. Enemies will not engage this minion directly, and they are immune to damage.", skillTypes = { [SkillType.Triggerable] = true, [SkillType.Mineable] = true, [SkillType.Minion] = true, [SkillType.MinionsCanExplode] = true, [SkillType.MinionsAreUndamageable] = true, [SkillType.Multicastable] = true, [SkillType.Spell] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.CreatesMinion] = true, [SkillType.Cooldown] = true, }, minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Melee] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Multistrikeable] = true, }, statDescriptionScope = "minion_spell_skill_stat_descriptions", diff --git a/src/Data/Skills/spectre.lua b/src/Data/Skills/spectre.lua index fcb92a36ac..c48616c0d8 100644 --- a/src/Data/Skills/spectre.lua +++ b/src/Data/Skills/spectre.lua @@ -165,7 +165,7 @@ skills["BanditChampionBlastRainSpectre"] = { "skill_can_fire_arrows", }, levels = { - [1] = { baseMultiplier = 0.5, damageEffectiveness = 0.5, levelRequirement = 15, }, + [1] = { baseMultiplier = 0.3125, levelRequirement = 15, }, }, } skills["GABeastCleave"] = { @@ -305,7 +305,7 @@ skills["BreachCleave"] = { "action_attack_or_cast_time_uses_animation_length", }, levels = { - [1] = { levelRequirement = 1, }, + [1] = { baseMultiplier = 0.625, levelRequirement = 1, }, }, } skills["BullCharge"] = { @@ -596,7 +596,6 @@ skills["ElementalHitSkeletonKnight"] = { { "active_skill_base_area_of_effect_radius", 10 }, }, stats = { - "active_skill_damage_+%_final", "skill_can_fire_arrows", "skill_can_fire_wand_projectiles", "action_attack_or_cast_time_uses_animation_length", @@ -604,13 +603,10 @@ skills["ElementalHitSkeletonKnight"] = { "use_scaled_contact_offset", "is_area_damage", }, - notMinionStat = { - "active_skill_damage_+%_final", - }, levels = { - [1] = { 150, baseMultiplier = 1.5, levelRequirement = 1, statInterpolation = { 2, }, }, - [3] = { 300, baseMultiplier = 1.5, levelRequirement = 45, statInterpolation = { 2, }, }, - [4] = { 400, baseMultiplier = 1.5, levelRequirement = 84, statInterpolation = { 2, }, }, + [1] = { baseMultiplier = 1.5, levelRequirement = 1, }, + [3] = { baseMultiplier = 1.5, levelRequirement = 45, }, + [4] = { baseMultiplier = 1.5, levelRequirement = 84, }, }, } skills["ElementalHitSkeletonKnightIncursion"] = { @@ -631,7 +627,6 @@ skills["ElementalHitSkeletonKnightIncursion"] = { { "active_skill_base_area_of_effect_radius", 10 }, }, stats = { - "active_skill_damage_+%_final", "skill_can_fire_arrows", "skill_can_fire_wand_projectiles", "action_attack_or_cast_time_uses_animation_length", @@ -639,13 +634,10 @@ skills["ElementalHitSkeletonKnightIncursion"] = { "use_scaled_contact_offset", "is_area_damage", }, - notMinionStat = { - "active_skill_damage_+%_final", - }, levels = { - [1] = { 0, baseMultiplier = 1.5, levelRequirement = 1, statInterpolation = { 2, }, }, - [3] = { 1, baseMultiplier = 1.5, levelRequirement = 45, statInterpolation = { 2, }, }, - [4] = { 200, baseMultiplier = 1.5, levelRequirement = 84, statInterpolation = { 2, }, }, + [1] = { baseMultiplier = 1.5, levelRequirement = 1, }, + [3] = { baseMultiplier = 1.5, levelRequirement = 45, }, + [4] = { baseMultiplier = 1.5, levelRequirement = 84, }, }, } skills["ExperimenterDetonateDead"] = { @@ -1238,7 +1230,7 @@ skills["IguanaProjectileChrome"] = { "base_is_projectile", }, levels = { - [1] = { cooldown = 3.5, levelRequirement = 1, storedUses = 3, }, + [1] = { baseMultiplier = 0.625, cooldown = 3.5, levelRequirement = 1, storedUses = 3, }, }, } skills["IncaMinionProjectile"] = { @@ -1481,7 +1473,7 @@ skills["KaomWarriorMoltenStrike"] = { "base_is_projectile", }, levels = { - [1] = { cooldown = 3, levelRequirement = 2, storedUses = 1, }, + [1] = { baseMultiplier = 0.55, cooldown = 3, levelRequirement = 2, storedUses = 1, }, }, } skills["KitavaDemonLeapSlam"] = { @@ -2196,8 +2188,8 @@ skills["MonsterIceShot"] = { "use_scaled_contact_offset", }, levels = { - [1] = { 15, levelRequirement = 1, statInterpolation = { 1, }, }, - [2] = { 50, levelRequirement = 68, statInterpolation = { 2, }, }, + [1] = { 15, baseMultiplier = 0.625, levelRequirement = 1, statInterpolation = { 1, }, }, + [2] = { 50, baseMultiplier = 0.625, levelRequirement = 68, statInterpolation = { 2, }, }, }, } skills["MountainGoatmanIceSpear"] = { @@ -2376,7 +2368,7 @@ skills["MonsterLightningArrow"] = { name = "Lightning Arrow", hidden = true, color = 2, - baseEffectiveness = 1.0199999809265, + baseEffectiveness = 0.63800001144409, incrementalEffectiveness = 0.019999999552965, description = "Fires a charged arrow which damages enemies by causing them to be struck by a bolt of lightning, which also damages a number of surrounding enemies.", skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.MirageArcherCanUse] = true, [SkillType.Area] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Lightning] = true, [SkillType.Triggerable] = true, }, @@ -2407,7 +2399,7 @@ skills["SkeletonArcherLightningArrow"] = { name = "Lightning Arrow", hidden = true, color = 2, - baseEffectiveness = 1.0199999809265, + baseEffectiveness = 0.63800001144409, incrementalEffectiveness = 0.019999999552965, description = "Fires a charged arrow which damages enemies by causing them to be struck by a bolt of lightning, which also damages a number of surrounding enemies.", skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.MirageArcherCanUse] = true, [SkillType.Area] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Lightning] = true, [SkillType.Triggerable] = true, }, @@ -2431,7 +2423,7 @@ skills["SkeletonArcherLightningArrow"] = { "base_is_projectile", }, levels = { - [1] = { baseMultiplier = 1.25, levelRequirement = 9, }, + [1] = { baseMultiplier = 0.7812, levelRequirement = 9, }, }, } skills["MonsterLightningThorns"] = { @@ -4047,7 +4039,7 @@ skills["WickerManMoltenStrike"] = { "base_is_projectile", }, levels = { - [1] = { levelRequirement = 10, }, + [1] = { baseMultiplier = 0.55, levelRequirement = 10, }, }, } skills["VaalincursionMortar"] = { @@ -4183,20 +4175,16 @@ skills["MeleeEyrieArrow"] = { { "arrow_projectile_variation", 26 }, }, stats = { - "active_skill_damage_+%_final", "skill_can_fire_arrows", "skill_can_fire_wand_projectiles", "use_scaled_contact_offset", "projectile_uses_contact_position", }, - notMinionStat = { - "active_skill_damage_+%_final", - }, levels = { - [1] = { 0, baseMultiplier = 0.75, levelRequirement = 1, statInterpolation = { 2, }, }, - [2] = { 0, baseMultiplier = 0.75, levelRequirement = 19, statInterpolation = { 2, }, }, - [3] = { 1, baseMultiplier = 0.75, levelRequirement = 20, statInterpolation = { 2, }, }, - [4] = { 200, baseMultiplier = 0.75, levelRequirement = 84, statInterpolation = { 2, }, }, + [1] = { baseMultiplier = 0.75, levelRequirement = 1, }, + [2] = { baseMultiplier = 0.75, levelRequirement = 19, }, + [3] = { baseMultiplier = 0.75, levelRequirement = 20, }, + [4] = { baseMultiplier = 0.75, levelRequirement = 84, }, }, } skills["AtlasEyrieArcherMortar"] = { @@ -4250,20 +4238,16 @@ skills["AtlasEyrieArcherSnipe"] = { { "skill_physical_damage_%_to_convert_to_cold", 75 }, }, stats = { - "active_skill_damage_+%_final", "base_is_projectile", "projectile_uses_contact_position", "use_scaled_contact_offset", "always_pierce", }, - notMinionStat = { - "active_skill_damage_+%_final", - }, levels = { - [1] = { 0, levelRequirement = 1, statInterpolation = { 2, }, }, - [2] = { 0, levelRequirement = 19, statInterpolation = { 2, }, }, - [3] = { 1, levelRequirement = 20, statInterpolation = { 2, }, }, - [4] = { 200, levelRequirement = 84, statInterpolation = { 2, }, }, + [1] = { levelRequirement = 1, }, + [2] = { levelRequirement = 19, }, + [3] = { levelRequirement = 20, }, + [4] = { levelRequirement = 84, }, }, } skills["AtlasEyrieArcherCrystalImpact"] = { @@ -4692,18 +4676,14 @@ skills["MeleeCold"] = { { "skill_physical_damage_%_to_convert_to_cold", 75 }, }, stats = { - "active_skill_damage_+%_final", "skill_can_fire_arrows", "skill_can_fire_wand_projectiles", }, - notMinionStat = { - "active_skill_damage_+%_final", - }, levels = { - [1] = { 0, baseMultiplier = 0.75, levelRequirement = 1, statInterpolation = { 2, }, }, - [2] = { 0, baseMultiplier = 0.75, levelRequirement = 19, statInterpolation = { 2, }, }, - [3] = { 1, baseMultiplier = 0.75, levelRequirement = 20, statInterpolation = { 2, }, }, - [4] = { 200, baseMultiplier = 0.75, levelRequirement = 84, statInterpolation = { 2, }, }, + [1] = { baseMultiplier = 0.75, levelRequirement = 1, }, + [2] = { baseMultiplier = 0.75, levelRequirement = 19, }, + [3] = { baseMultiplier = 0.75, levelRequirement = 20, }, + [4] = { baseMultiplier = 0.75, levelRequirement = 84, }, }, } skills["AtlasCrusaderJudgeBallLightning"] = { @@ -4801,12 +4781,8 @@ skills["GAHarvestCrabDashSlam"] = { { "skill_physical_damage_%_to_convert_to_cold", 50 }, }, stats = { - "active_skill_damage_+%_final", "is_area_damage", }, - notMinionStat = { - "active_skill_damage_+%_final", - }, } skills["HarvestCrabAbyssSlam"] = { name = "Slam Attack", @@ -4831,17 +4807,13 @@ skills["HarvestCrabAbyssSlam"] = { { "skill_physical_damage_%_to_convert_to_cold", 50 }, }, stats = { - "active_skill_damage_+%_final", "is_area_damage", }, - notMinionStat = { - "active_skill_damage_+%_final", - }, levels = { - [1] = { -30, baseMultiplier = 0.75, cooldown = 10, levelRequirement = 1, storedUses = 1, statInterpolation = { 2, }, }, - [2] = { 0, baseMultiplier = 0.75, cooldown = 10, levelRequirement = 19, storedUses = 1, statInterpolation = { 2, }, }, - [3] = { 1, baseMultiplier = 0.75, cooldown = 10, levelRequirement = 20, storedUses = 1, statInterpolation = { 2, }, }, - [4] = { 60, baseMultiplier = 0.75, cooldown = 10, levelRequirement = 84, storedUses = 1, statInterpolation = { 2, }, }, + [1] = { baseMultiplier = 0.75, cooldown = 10, levelRequirement = 1, storedUses = 1, }, + [2] = { baseMultiplier = 0.75, cooldown = 10, levelRequirement = 19, storedUses = 1, }, + [3] = { baseMultiplier = 0.75, cooldown = 10, levelRequirement = 20, storedUses = 1, }, + [4] = { baseMultiplier = 0.75, cooldown = 10, levelRequirement = 84, storedUses = 1, }, }, } skills["HarvestNessaCrabScreech"] = { @@ -4917,18 +4889,14 @@ skills["HarvestRhexLeapSlam"] = { { "active_skill_base_area_of_effect_radius", 15 }, }, stats = { - "active_skill_damage_+%_final", "is_area_damage", "cast_time_overrides_attack_duration", }, - notMinionStat = { - "active_skill_damage_+%_final", - }, levels = { - [1] = { 0, cooldown = 10, levelRequirement = 1, storedUses = 1, statInterpolation = { 2, }, }, - [2] = { 0, cooldown = 10, levelRequirement = 19, storedUses = 1, statInterpolation = { 2, }, }, - [3] = { 1, cooldown = 10, levelRequirement = 20, storedUses = 1, statInterpolation = { 2, }, }, - [4] = { 150, cooldown = 10, levelRequirement = 84, storedUses = 1, statInterpolation = { 2, }, }, + [1] = { cooldown = 10, levelRequirement = 1, storedUses = 1, }, + [2] = { cooldown = 10, levelRequirement = 19, storedUses = 1, }, + [3] = { cooldown = 10, levelRequirement = 20, storedUses = 1, }, + [4] = { cooldown = 10, levelRequirement = 84, storedUses = 1, }, }, } skills["GAHarvestRhexDashSlash"] = { @@ -4957,12 +4925,8 @@ skills["GAHarvestRhexDashSlash"] = { { "skill_physical_damage_%_to_convert_to_lightning", 50 }, }, stats = { - "active_skill_damage_+%_final", "is_area_damage", }, - notMinionStat = { - "active_skill_damage_+%_final", - }, } skills["GSHarvestRhexScreech"] = { name = "Screech", @@ -5021,7 +4985,7 @@ skills["LegionTemplarJudgeBallLightning"] = { name = "Ball Lightning", hidden = true, color = 3, - baseEffectiveness = 0.51560002565384, + baseEffectiveness = 0.20600000023842, incrementalEffectiveness = 0.045000001788139, description = "Fires a slow-moving projectile that damages each enemy in an area around it repeatedly with bolts of lightning.", skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Area] = true, [SkillType.Totemable] = true, [SkillType.Trappable] = true, [SkillType.Mineable] = true, [SkillType.Multicastable] = true, [SkillType.Triggerable] = true, [SkillType.Lightning] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, @@ -5058,7 +5022,7 @@ skills["LegionTemplarJudgeStormCall"] = { name = "Storm Call", hidden = true, color = 3, - baseEffectiveness = 3, + baseEffectiveness = 1.6499999761581, incrementalEffectiveness = 0.031199999153614, description = "Sets a marker at a location. After a short duration, lightning strikes the marker, dealing damage around it and causing lightning strikes at any other markers you've cast.", skillTypes = { [SkillType.Spell] = true, [SkillType.Damage] = true, [SkillType.Area] = true, [SkillType.Duration] = true, [SkillType.Trappable] = true, [SkillType.Totemable] = true, [SkillType.Mineable] = true, [SkillType.Triggerable] = true, [SkillType.Multicastable] = true, [SkillType.Lightning] = true, [SkillType.Cascadable] = true, [SkillType.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, @@ -5107,21 +5071,17 @@ skills["MPWHeistThugRangedBurningArrow"] = { { "spell_maximum_action_distance_+%", -50 }, }, stats = { - "active_skill_damage_+%_final", "base_is_projectile", "use_scaled_contact_offset", "projectile_uses_contact_position", "maintain_projectile_direction_when_using_contact_position", "always_ignite", }, - notMinionStat = { - "active_skill_damage_+%_final", - }, levels = { - [1] = { -30, levelRequirement = 1, statInterpolation = { 2, }, }, - [2] = { 0, levelRequirement = 19, statInterpolation = { 2, }, }, - [3] = { 1, levelRequirement = 20, statInterpolation = { 2, }, }, - [4] = { 60, levelRequirement = 84, statInterpolation = { 2, }, }, + [1] = { levelRequirement = 1, }, + [2] = { levelRequirement = 19, }, + [3] = { levelRequirement = 20, }, + [4] = { levelRequirement = 84, }, }, } skills["MPSHeistRobotClockworkGolemBasicProjectile"] = { @@ -5398,7 +5358,7 @@ skills["GAHeistThugRangedArrowShotgun"] = { "cast_time_overrides_attack_duration", }, levels = { - [1] = { cooldown = 10, levelRequirement = 1, storedUses = 1, }, + [1] = { baseMultiplier = 0.625, cooldown = 10, levelRequirement = 1, storedUses = 1, }, }, } skills["GAHeistThugRangedShotgun"] = { @@ -5418,18 +5378,14 @@ skills["GAHeistThugRangedShotgun"] = { { "skill_physical_damage_%_to_convert_to_fire", 50 }, }, stats = { - "active_skill_damage_+%_final", "is_area_damage", "cast_time_overrides_attack_duration", }, - notMinionStat = { - "active_skill_damage_+%_final", - }, levels = { - [1] = { -30, baseMultiplier = 1.3, levelRequirement = 1, statInterpolation = { 2, }, }, - [2] = { 0, baseMultiplier = 1.3, levelRequirement = 19, statInterpolation = { 2, }, }, - [3] = { 1, baseMultiplier = 1.3, levelRequirement = 20, statInterpolation = { 2, }, }, - [4] = { 60, baseMultiplier = 1.3, levelRequirement = 84, statInterpolation = { 2, }, }, + [1] = { baseMultiplier = 1.3, levelRequirement = 1, }, + [2] = { baseMultiplier = 1.3, levelRequirement = 19, }, + [3] = { baseMultiplier = 1.3, levelRequirement = 20, }, + [4] = { baseMultiplier = 1.3, levelRequirement = 84, }, }, } skills["GSHeistRobotPyreBeamBlast"] = { @@ -5566,20 +5522,16 @@ skills["MeleeEyrieBird"] = { { "base_knockback_speed_+%", 100 }, }, stats = { - "active_skill_damage_+%_final", "skill_can_fire_arrows", "skill_can_fire_wand_projectiles", "global_knockback", "determine_knockback_direction_from_melee_pattern", }, - notMinionStat = { - "active_skill_damage_+%_final", - }, levels = { - [1] = { 0, attackSpeedMultiplier = -38, baseMultiplier = 0.75, cooldown = 8, levelRequirement = 1, storedUses = 1, statInterpolation = { 2, }, }, - [2] = { 0, attackSpeedMultiplier = -38, baseMultiplier = 0.75, cooldown = 8, levelRequirement = 19, storedUses = 1, statInterpolation = { 2, }, }, - [3] = { 1, attackSpeedMultiplier = -38, baseMultiplier = 0.75, cooldown = 8, levelRequirement = 20, storedUses = 1, statInterpolation = { 2, }, }, - [4] = { 200, attackSpeedMultiplier = -38, baseMultiplier = 0.75, cooldown = 8, levelRequirement = 84, storedUses = 1, statInterpolation = { 2, }, }, + [1] = { attackSpeedMultiplier = -38, baseMultiplier = 0.75, cooldown = 8, levelRequirement = 1, storedUses = 1, }, + [2] = { attackSpeedMultiplier = -38, baseMultiplier = 0.75, cooldown = 8, levelRequirement = 19, storedUses = 1, }, + [3] = { attackSpeedMultiplier = -38, baseMultiplier = 0.75, cooldown = 8, levelRequirement = 20, storedUses = 1, }, + [4] = { attackSpeedMultiplier = -38, baseMultiplier = 0.75, cooldown = 8, levelRequirement = 84, storedUses = 1, }, }, } skills["AtlasEyrieBirdBreath"] = { @@ -5693,18 +5645,14 @@ skills["UltimatumGuardMeleeCold"] = { { "arrow_projectile_variation", 34 }, }, stats = { - "active_skill_damage_+%_final", "skill_can_fire_arrows", "skill_can_fire_wand_projectiles", "action_attack_or_cast_time_uses_animation_length", "use_scaled_contact_offset", }, - notMinionStat = { - "active_skill_damage_+%_final", - }, levels = { - [1] = { -50, levelRequirement = 1, statInterpolation = { 2, }, }, - [2] = { 0, levelRequirement = 68, statInterpolation = { 2, }, }, + [1] = { levelRequirement = 1, }, + [2] = { levelRequirement = 68, }, }, } skills["UltimatumGuardConeArrowCold"] = { @@ -5724,15 +5672,11 @@ skills["UltimatumGuardConeArrowCold"] = { { "skill_physical_damage_%_to_convert_to_cold", 100 }, }, stats = { - "active_skill_damage_+%_final", "is_area_damage", }, - notMinionStat = { - "active_skill_damage_+%_final", - }, levels = { - [1] = { 0, cooldown = 8, levelRequirement = 1, storedUses = 1, statInterpolation = { 2, }, }, - [2] = { 250, cooldown = 8, levelRequirement = 83, storedUses = 1, statInterpolation = { 2, }, }, + [1] = { cooldown = 8, levelRequirement = 1, storedUses = 1, }, + [2] = { cooldown = 8, levelRequirement = 83, storedUses = 1, }, }, } skills["MPWVaalGuardBarrage"] = { @@ -5753,18 +5697,14 @@ skills["MPWVaalGuardBarrage"] = { { "projectile_random_angle_based_on_distance_to_target_location_%", 60 }, }, stats = { - "active_skill_damage_+%_final", "base_is_projectile", "projectile_uses_contact_position", "use_scaled_contact_offset", "maintain_projectile_direction_when_using_contact_position", }, - notMinionStat = { - "active_skill_damage_+%_final", - }, levels = { - [1] = { -70, levelRequirement = 1, statInterpolation = { 2, }, }, - [2] = { 0, levelRequirement = 83, statInterpolation = { 2, }, }, + [1] = { baseMultiplier = 0.5, levelRequirement = 1, }, + [2] = { baseMultiplier = 0.5, levelRequirement = 83, }, }, } skills["MeleeAtAnimationSpeed"] = { @@ -5811,17 +5751,13 @@ skills["MeleeKaruiArcher"] = { { "skill_physical_damage_%_to_convert_to_cold", 75 }, }, stats = { - "active_skill_damage_+%_final", "skill_can_fire_arrows", }, - notMinionStat = { - "active_skill_damage_+%_final", - }, levels = { - [1] = { 0, levelRequirement = 1, statInterpolation = { 2, }, }, - [2] = { 0, levelRequirement = 19, statInterpolation = { 2, }, }, - [3] = { 1, levelRequirement = 20, statInterpolation = { 2, }, }, - [4] = { 200, levelRequirement = 84, statInterpolation = { 2, }, }, + [1] = { levelRequirement = 1, }, + [2] = { levelRequirement = 19, }, + [3] = { levelRequirement = 20, }, + [4] = { levelRequirement = 84, }, }, } skills["LegionKaruiArcherSnipe"] = { @@ -5842,19 +5778,15 @@ skills["LegionKaruiArcherSnipe"] = { { "monster_projectile_variation", 69 }, }, stats = { - "active_skill_damage_+%_final", "base_is_projectile", "always_pierce", "skill_can_fire_arrows", }, - notMinionStat = { - "active_skill_damage_+%_final", - }, levels = { - [1] = { 0, baseMultiplier = 1.65, cooldown = 10, levelRequirement = 1, storedUses = 1, statInterpolation = { 2, }, }, - [2] = { 0, baseMultiplier = 1.65, cooldown = 10, levelRequirement = 20, storedUses = 1, statInterpolation = { 2, }, }, - [3] = { 1, baseMultiplier = 1.65, cooldown = 10, levelRequirement = 21, storedUses = 1, statInterpolation = { 2, }, }, - [4] = { 200, baseMultiplier = 1.65, cooldown = 10, levelRequirement = 84, storedUses = 1, statInterpolation = { 2, }, }, + [1] = { baseMultiplier = 1.65, cooldown = 10, levelRequirement = 1, storedUses = 1, }, + [2] = { baseMultiplier = 1.65, cooldown = 10, levelRequirement = 20, storedUses = 1, }, + [3] = { baseMultiplier = 1.65, cooldown = 10, levelRequirement = 21, storedUses = 1, }, + [4] = { baseMultiplier = 1.65, cooldown = 10, levelRequirement = 84, storedUses = 1, }, }, } skills["MeleeAtAnimationSpeedFire"] = { @@ -5875,21 +5807,17 @@ skills["MeleeAtAnimationSpeedFire"] = { { "skill_physical_damage_%_to_convert_to_fire", 75 }, }, stats = { - "active_skill_damage_+%_final", "skill_can_fire_arrows", "skill_can_fire_wand_projectiles", "action_attack_or_cast_time_uses_animation_length", "projectile_uses_contact_position", "use_scaled_contact_offset", }, - notMinionStat = { - "active_skill_damage_+%_final", - }, levels = { - [1] = { 0, baseMultiplier = 0.75, levelRequirement = 1, statInterpolation = { 2, }, }, - [2] = { 0, baseMultiplier = 0.75, levelRequirement = 19, statInterpolation = { 2, }, }, - [3] = { 1, baseMultiplier = 0.75, levelRequirement = 20, statInterpolation = { 2, }, }, - [4] = { 200, baseMultiplier = 0.75, levelRequirement = 84, statInterpolation = { 2, }, }, + [1] = { baseMultiplier = 0.75, levelRequirement = 1, }, + [2] = { baseMultiplier = 0.75, levelRequirement = 19, }, + [3] = { baseMultiplier = 0.75, levelRequirement = 20, }, + [4] = { baseMultiplier = 0.75, levelRequirement = 84, }, }, } skills["GAHellscapeDemonElite1DashSlash"] = { @@ -5909,17 +5837,13 @@ skills["GAHellscapeDemonElite1DashSlash"] = { { "skill_physical_damage_%_to_convert_to_fire", 50 }, }, stats = { - "active_skill_damage_+%_final", "is_area_damage", }, - notMinionStat = { - "active_skill_damage_+%_final", - }, levels = { - [1] = { -30, levelRequirement = 1, statInterpolation = { 2, }, }, - [2] = { 0, levelRequirement = 19, statInterpolation = { 2, }, }, - [3] = { 1, levelRequirement = 20, statInterpolation = { 2, }, }, - [4] = { 60, levelRequirement = 84, statInterpolation = { 2, }, }, + [1] = { levelRequirement = 1, }, + [2] = { levelRequirement = 19, }, + [3] = { levelRequirement = 20, }, + [4] = { levelRequirement = 84, }, }, } skills["GSHellscapeDemonElite1Screech"] = { @@ -6072,7 +5996,6 @@ skills["MMSHellscapeDemonEliteTripleMortar"] = { stats = { "spell_minimum_base_physical_damage", "spell_maximum_base_physical_damage", - "active_skill_damage_+%_final", "is_area_damage", "base_is_projectile", "projectile_uses_contact_position", @@ -6081,13 +6004,12 @@ skills["MMSHellscapeDemonEliteTripleMortar"] = { notMinionStat = { "spell_minimum_base_physical_damage", "spell_maximum_base_physical_damage", - "active_skill_damage_+%_final", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, -30, critChance = 5, levelRequirement = 1, statInterpolation = { 3, 3, 2, }, }, - [2] = { 0.80000001192093, 1.2000000476837, 0, critChance = 5, levelRequirement = 19, statInterpolation = { 3, 3, 2, }, }, - [3] = { 0.80000001192093, 1.2000000476837, 1, critChance = 5, levelRequirement = 20, statInterpolation = { 3, 3, 2, }, }, - [4] = { 0.80000001192093, 1.2000000476837, 24, critChance = 5, levelRequirement = 84, statInterpolation = { 3, 3, 2, }, }, + [1] = { 0.80000001192093, 1.2000000476837, critChance = 5, levelRequirement = 1, statInterpolation = { 3, 3, }, }, + [2] = { 0.80000001192093, 1.2000000476837, critChance = 5, levelRequirement = 19, statInterpolation = { 3, 3, }, }, + [3] = { 0.80000001192093, 1.2000000476837, critChance = 5, levelRequirement = 20, statInterpolation = { 3, 3, }, }, + [4] = { 0.80000001192093, 1.2000000476837, critChance = 5, levelRequirement = 84, statInterpolation = { 3, 3, }, }, }, } skills["MMSHellscapeDemonEliteVomitMortar"] = { @@ -6115,7 +6037,6 @@ skills["MMSHellscapeDemonEliteVomitMortar"] = { stats = { "spell_minimum_base_physical_damage", "spell_maximum_base_physical_damage", - "active_skill_damage_+%_final", "is_area_damage", "base_is_projectile", "projectile_uses_contact_position", @@ -6124,13 +6045,12 @@ skills["MMSHellscapeDemonEliteVomitMortar"] = { notMinionStat = { "spell_minimum_base_physical_damage", "spell_maximum_base_physical_damage", - "active_skill_damage_+%_final", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, -30, critChance = 5, levelRequirement = 1, statInterpolation = { 3, 3, 2, }, }, - [2] = { 0.80000001192093, 1.2000000476837, 0, critChance = 5, levelRequirement = 19, statInterpolation = { 3, 3, 2, }, }, - [3] = { 0.80000001192093, 1.2000000476837, 1, critChance = 5, levelRequirement = 20, statInterpolation = { 3, 3, 2, }, }, - [4] = { 0.80000001192093, 1.2000000476837, 24, critChance = 5, levelRequirement = 84, statInterpolation = { 3, 3, 2, }, }, + [1] = { 0.80000001192093, 1.2000000476837, critChance = 5, levelRequirement = 1, statInterpolation = { 3, 3, }, }, + [2] = { 0.80000001192093, 1.2000000476837, critChance = 5, levelRequirement = 19, statInterpolation = { 3, 3, }, }, + [3] = { 0.80000001192093, 1.2000000476837, critChance = 5, levelRequirement = 20, statInterpolation = { 3, 3, }, }, + [4] = { 0.80000001192093, 1.2000000476837, critChance = 5, levelRequirement = 84, statInterpolation = { 3, 3, }, }, }, } skills["GSHellscapeDemonEliteBeamNuke"] = { @@ -6155,19 +6075,17 @@ skills["GSHellscapeDemonEliteBeamNuke"] = { stats = { "spell_minimum_base_physical_damage", "spell_maximum_base_physical_damage", - "active_skill_damage_+%_final", "is_area_damage", }, notMinionStat = { "spell_minimum_base_physical_damage", "spell_maximum_base_physical_damage", - "active_skill_damage_+%_final", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, -30, cooldown = 7, critChance = 5, levelRequirement = 1, storedUses = 1, statInterpolation = { 3, 3, 2, }, }, - [2] = { 0.80000001192093, 1.2000000476837, 0, cooldown = 7, critChance = 5, levelRequirement = 19, storedUses = 1, statInterpolation = { 3, 3, 2, }, }, - [3] = { 0.80000001192093, 1.2000000476837, 1, cooldown = 7, critChance = 5, levelRequirement = 20, storedUses = 1, statInterpolation = { 3, 3, 2, }, }, - [4] = { 0.80000001192093, 1.2000000476837, 24, cooldown = 7, critChance = 5, levelRequirement = 84, storedUses = 1, statInterpolation = { 3, 3, 2, }, }, + [1] = { 0.80000001192093, 1.2000000476837, cooldown = 7, critChance = 5, levelRequirement = 1, storedUses = 1, statInterpolation = { 3, 3, }, }, + [2] = { 0.80000001192093, 1.2000000476837, cooldown = 7, critChance = 5, levelRequirement = 19, storedUses = 1, statInterpolation = { 3, 3, }, }, + [3] = { 0.80000001192093, 1.2000000476837, cooldown = 7, critChance = 5, levelRequirement = 20, storedUses = 1, statInterpolation = { 3, 3, }, }, + [4] = { 0.80000001192093, 1.2000000476837, cooldown = 7, critChance = 5, levelRequirement = 84, storedUses = 1, statInterpolation = { 3, 3, }, }, }, } skills["DTTHellscapeStabWeb"] = { @@ -6780,7 +6698,7 @@ skills["AzmeriHailrakeGlacialCascade"] = { name = "Glacial Cascade", hidden = true, color = 3, - baseEffectiveness = 2.25, + baseEffectiveness = 0.56300002336502, incrementalEffectiveness = 0.039500001817942, description = "Icicles emerge from the ground in a series of small bursts, each damaging enemies caught in the area.", 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.CanRapidFire] = true, [SkillType.AreaSpell] = true, }, @@ -6865,7 +6783,7 @@ skills["AzmeriHailrakeGlacialHammer"] = { "action_attack_or_cast_time_uses_animation_length", }, levels = { - [1] = { baseMultiplier = 1.25, damageEffectiveness = 1.25, levelRequirement = 1, }, + [1] = { baseMultiplier = 0.7812, levelRequirement = 1, }, }, } skills["GSAzmeriHailrakeIceNova"] = { @@ -6935,7 +6853,7 @@ skills["IceCrashAzmeriHailrake"] = { "is_area_damage", }, levels = { - [1] = { levelRequirement = 0, }, + [1] = { baseMultiplier = 0.625, levelRequirement = 0, }, }, } skills["AzmeriHailrakeColdResistAura"] = { @@ -7012,7 +6930,7 @@ skills["AzmeriFireFuryMoltenStrike"] = { "base_is_projectile", }, levels = { - [1] = { baseMultiplier = 1.125, damageEffectiveness = 1.125, levelRequirement = 0, }, + [1] = { baseMultiplier = 0.6187, levelRequirement = 0, }, }, } skills["FemaleCannibalBossFireStorm"] = { @@ -7201,7 +7119,7 @@ skills["AzmeriHydraDoomArrow"] = { "base_is_projectile", }, levels = { - [1] = { cooldown = 3, levelRequirement = 83, storedUses = 1, }, + [1] = { baseMultiplier = 0.625, cooldown = 3, levelRequirement = 83, storedUses = 1, }, }, } skills["AzmeriHydraBarrage"] = { @@ -7228,7 +7146,7 @@ skills["AzmeriHydraBarrage"] = { "always_pierce", }, levels = { - [1] = { cooldown = 3, levelRequirement = 83, storedUses = 1, }, + [1] = { baseMultiplier = 0.625, cooldown = 3, levelRequirement = 83, storedUses = 1, }, }, } skills["AzmeriHydraForkArrow"] = { @@ -7253,7 +7171,7 @@ skills["AzmeriHydraForkArrow"] = { "base_is_projectile", }, levels = { - [1] = { cooldown = 8, levelRequirement = 83, storedUses = 1, }, + [1] = { baseMultiplier = 0.625, cooldown = 8, levelRequirement = 83, storedUses = 1, }, }, } skills["AzmeriHydraHatred"] = { @@ -7549,21 +7467,17 @@ skills["MeleeAtAnimationSpeedCold"] = { { "skill_physical_damage_%_to_convert_to_cold", 75 }, }, stats = { - "active_skill_damage_+%_final", "skill_can_fire_arrows", "skill_can_fire_wand_projectiles", "action_attack_or_cast_time_uses_animation_length", "projectile_uses_contact_position", "use_scaled_contact_offset", }, - notMinionStat = { - "active_skill_damage_+%_final", - }, levels = { - [1] = { 0, baseMultiplier = 0.75, levelRequirement = 1, statInterpolation = { 2, }, }, - [2] = { 0, baseMultiplier = 0.75, levelRequirement = 19, statInterpolation = { 2, }, }, - [3] = { 1, baseMultiplier = 0.75, levelRequirement = 20, statInterpolation = { 2, }, }, - [4] = { 200, baseMultiplier = 0.75, levelRequirement = 84, statInterpolation = { 2, }, }, + [1] = { baseMultiplier = 0.75, levelRequirement = 1, }, + [2] = { baseMultiplier = 0.75, levelRequirement = 19, }, + [3] = { baseMultiplier = 0.75, levelRequirement = 20, }, + [4] = { baseMultiplier = 0.75, levelRequirement = 84, }, }, } skills["AzmeriAdmiralDoubleStrikeTriggered"] = { @@ -7580,14 +7494,10 @@ skills["AzmeriAdmiralDoubleStrikeTriggered"] = { { "skill_physical_damage_%_to_convert_to_cold", 75 }, }, stats = { - "active_skill_damage_+%_final", "is_area_damage", }, - notMinionStat = { - "active_skill_damage_+%_final", - }, levels = { - [1] = { 0, baseMultiplier = 0.7, damageEffectiveness = 0.7, levelRequirement = 1, statInterpolation = { 2, }, }, + [1] = { baseMultiplier = 0.7, damageEffectiveness = 0.7, levelRequirement = 1, }, }, } skills["AzmeriAdmiralDashThrustTriggered"] = { @@ -7605,15 +7515,11 @@ skills["AzmeriAdmiralDashThrustTriggered"] = { { "active_skill_area_of_effect_radius_+%_final", 50 }, }, stats = { - "active_skill_damage_+%_final", "is_area_damage", "always_freeze", }, - notMinionStat = { - "active_skill_damage_+%_final", - }, levels = { - [1] = { 0, levelRequirement = 0, statInterpolation = { 2, }, }, + [1] = { levelRequirement = 0, }, }, } skills["AzmeriAdmiralGeyserDamage"] = { @@ -8571,15 +8477,15 @@ skills["GAExpeditionDeathKnightSlam"] = { "active_skill_damage_+%_final", }, levels = { - [1] = { 35, attackSpeedMultiplier = -10, baseMultiplier = 1.65, cooldown = 4, levelRequirement = 0, storedUses = 1, statInterpolation = { 2, }, }, - [2] = { 0, attackSpeedMultiplier = -10, baseMultiplier = 1.65, cooldown = 4, levelRequirement = 68, storedUses = 1, statInterpolation = { 2, }, }, + [1] = { 35, attackSpeedMultiplier = -10, baseMultiplier = 1.4025, cooldown = 4, levelRequirement = 0, storedUses = 1, statInterpolation = { 2, }, }, + [2] = { 0, attackSpeedMultiplier = -10, baseMultiplier = 1.4025, cooldown = 4, levelRequirement = 68, storedUses = 1, statInterpolation = { 2, }, }, }, } skills["GSExpeditionDeathKnightNova"] = { name = "Nova Spell", hidden = true, color = 4, - baseEffectiveness = 3.5297000408173, + baseEffectiveness = 3, incrementalEffectiveness = 0.036200001835823, skillTypes = { [SkillType.Spell] = true, [SkillType.Triggerable] = true, }, statDescriptionScope = "skill_stat_descriptions", @@ -8729,19 +8635,15 @@ skills["GAHeistRobotHoundStomp"] = { { "skill_physical_damage_%_to_convert_to_fire", 50 }, }, stats = { - "active_skill_damage_+%_final", "global_knockback", "is_area_damage", "always_stun", }, - notMinionStat = { - "active_skill_damage_+%_final", - }, levels = { - [1] = { -30, levelRequirement = 1, statInterpolation = { 2, }, }, - [2] = { 0, levelRequirement = 19, statInterpolation = { 2, }, }, - [3] = { 1, levelRequirement = 20, statInterpolation = { 2, }, }, - [4] = { 60, levelRequirement = 84, statInterpolation = { 2, }, }, + [1] = { levelRequirement = 1, }, + [2] = { levelRequirement = 19, }, + [3] = { levelRequirement = 20, }, + [4] = { levelRequirement = 84, }, }, } skills["GSRoboHoundBellyDamage"] = { @@ -8981,7 +8883,7 @@ skills["AzmeriGeofriSmite"] = { "action_attack_or_cast_time_uses_animation_length", }, levels = { - [1] = { 0.10000000149012, 1.8999999761581, baseMultiplier = 2.5, damageEffectiveness = 2.5, levelRequirement = 1, statInterpolation = { 3, 3, }, }, + [1] = { 0.10000000149012, 1.8999999761581, baseMultiplier = 1.5625, levelRequirement = 1, statInterpolation = { 3, 3, }, }, }, } skills["AzmeriGoddessSpiritMortar"] = { @@ -9202,21 +9104,17 @@ skills["MeleeAtAnimationSpeedLightning"] = { { "skill_physical_damage_%_to_convert_to_lightning", 75 }, }, stats = { - "active_skill_damage_+%_final", "skill_can_fire_arrows", "skill_can_fire_wand_projectiles", "action_attack_or_cast_time_uses_animation_length", "projectile_uses_contact_position", "use_scaled_contact_offset", }, - notMinionStat = { - "active_skill_damage_+%_final", - }, levels = { - [1] = { 0, baseMultiplier = 0.75, levelRequirement = 1, statInterpolation = { 2, }, }, - [2] = { 0, baseMultiplier = 0.75, levelRequirement = 19, statInterpolation = { 2, }, }, - [3] = { 1, baseMultiplier = 0.75, levelRequirement = 20, statInterpolation = { 2, }, }, - [4] = { 200, baseMultiplier = 0.75, levelRequirement = 84, statInterpolation = { 2, }, }, + [1] = { baseMultiplier = 0.75, levelRequirement = 1, }, + [2] = { baseMultiplier = 0.75, levelRequirement = 19, }, + [3] = { baseMultiplier = 0.75, levelRequirement = 20, }, + [4] = { baseMultiplier = 0.75, levelRequirement = 84, }, }, } skills["AzmeriBirdBeam"] = { @@ -9374,7 +9272,7 @@ skills["AzmeriLightningMelee"] = { "active_skill_damage_+%_final", }, levels = { - [1] = { 0, baseMultiplier = 0.75, levelRequirement = 1, statInterpolation = { 2, }, }, + [1] = { 0, baseMultiplier = 0.3281, levelRequirement = 1, statInterpolation = { 2, }, }, }, } skills["AzmeriPhantasmExplode"] = { @@ -9725,7 +9623,7 @@ skills["MMSAzmeriShepherdTripleMortar"] = { name = "Mortar", hidden = true, color = 4, - baseEffectiveness = 4, + baseEffectiveness = 3.25, incrementalEffectiveness = 0.037500001490116, description = "Generic monster mortar skill. Like Monster Projectile but has an impact effect.", skillTypes = { [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [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.AreaSpell] = true, }, @@ -9761,7 +9659,7 @@ skills["MMSAzmeriShepherdVomitMortar"] = { name = "Vomit Mortar", hidden = true, color = 4, - baseEffectiveness = 2.75, + baseEffectiveness = 2.2339999675751, incrementalEffectiveness = 0.037500001490116, description = "Generic monster mortar skill. Like Monster Projectile but has an impact effect.", skillTypes = { [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [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.AreaSpell] = true, }, @@ -9797,7 +9695,7 @@ skills["GSAzmeriShepherdBeamNuke"] = { name = "Beam Nuke", hidden = true, color = 4, - baseEffectiveness = 8, + baseEffectiveness = 6.5, incrementalEffectiveness = 0.043000001460314, skillTypes = { [SkillType.Spell] = true, [SkillType.Triggerable] = true, }, statDescriptionScope = "skill_stat_descriptions", @@ -10414,7 +10312,7 @@ skills["AzmeriOversoulExplosionIgnite"] = { "action_attack_or_cast_time_uses_animation_length", }, levels = { - [1] = { baseMultiplier = 2, damageEffectiveness = 2, levelRequirement = 23, }, + [1] = { baseMultiplier = 1.25, levelRequirement = 23, }, }, } skills["AzmeriOversoulLaserMaxShock"] = { @@ -10496,7 +10394,7 @@ skills["AzmeriVikingCyclone"] = { name = "Cyclone", hidden = true, color = 2, - baseEffectiveness = 4.1378002166748, + baseEffectiveness = 2.5859999656677, incrementalEffectiveness = 0.050000000745058, description = "Damage enemies around you, then perform a spinning series of attacks as you travel to a target location. Cannot be supported by Ruthless or Multistrike.", skillTypes = { [SkillType.Attack] = true, [SkillType.Area] = true, [SkillType.Melee] = true, [SkillType.Movement] = true, }, @@ -10566,7 +10464,7 @@ skills["AzmeriVikingUpheaval"] = { "base_fire_damage_to_deal_per_minute", }, levels = { - [1] = { 33.333334078391, baseMultiplier = 0.7, damageEffectiveness = 0.7, levelRequirement = 66, statInterpolation = { 3, }, }, + [1] = { 33.333334078391, baseMultiplier = 0.4375, levelRequirement = 66, statInterpolation = { 3, }, }, }, } skills["AfflictionMinionPhysSlamCircleSmall"] = { @@ -10809,7 +10707,6 @@ skills["AzmeriDemonTeethShot"] = { stats = { "spell_minimum_base_physical_damage", "spell_maximum_base_physical_damage", - "active_skill_damage_+%_final", "base_is_projectile", "projectile_uses_contact_position", "use_scaled_contact_offset", @@ -10818,10 +10715,9 @@ skills["AzmeriDemonTeethShot"] = { notMinionStat = { "spell_minimum_base_physical_damage", "spell_maximum_base_physical_damage", - "active_skill_damage_+%_final", }, levels = { - [1] = { 0.80000001192093, 1.2000000476837, -30, baseMultiplier = 0.7, critChance = 5, levelRequirement = 1, statInterpolation = { 3, 3, 2, }, }, + [1] = { 0.80000001192093, 1.2000000476837, baseMultiplier = 0.7, critChance = 5, levelRequirement = 1, statInterpolation = { 3, 3, }, }, }, } skills["GAAzmeriDemonLeapSlamDamage"] = { @@ -10850,7 +10746,7 @@ skills["GAAzmeriDemonLeapSlamDamage"] = { "active_skill_damage_+%_final", }, levels = { - [1] = { -30, baseMultiplier = 2, damageEffectiveness = 1.3, levelRequirement = 1, statInterpolation = { 2, }, }, + [1] = { -30, baseMultiplier = 1.4, levelRequirement = 1, statInterpolation = { 2, }, }, }, } skills["GAAzmeriDemonMeleeMiniSlam1"] = { @@ -10872,21 +10768,17 @@ skills["GAAzmeriDemonMeleeMiniSlam1"] = { { "corrupted_blood_on_hit_num_stacks", 1 }, }, stats = { - "active_skill_damage_+%_final", "is_area_damage", }, - notMinionStat = { - "active_skill_damage_+%_final", - }, levels = { - [1] = { -30, baseMultiplier = 1.5, levelRequirement = 1, statInterpolation = { 2, }, }, + [1] = { baseMultiplier = 1.5, levelRequirement = 1, }, }, } skills["MMSAzmeriDemonBloodVomitSmall"] = { name = "Small Vomit", hidden = true, color = 4, - baseEffectiveness = 1.1799999475479, + baseEffectiveness = 0.82599997520447, incrementalEffectiveness = 0.032000001519918, description = "Generic monster mortar skill. Like Monster Projectile but has an impact effect.", skillTypes = { [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [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.AreaSpell] = true, }, @@ -10921,7 +10813,7 @@ skills["MMSAzmeriDemonBloodVomitMedium"] = { name = "Medium Vomit", hidden = true, color = 4, - baseEffectiveness = 2.3900001049042, + baseEffectiveness = 1.6729999780655, incrementalEffectiveness = 0.032000001519918, description = "Generic monster mortar skill. Like Monster Projectile but has an impact effect.", skillTypes = { [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [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.AreaSpell] = true, }, @@ -10956,7 +10848,7 @@ skills["MMSAzmeriDemonBloodVomitLarge"] = { name = "Large Vomit", hidden = true, color = 4, - baseEffectiveness = 2.5, + baseEffectiveness = 1.75, incrementalEffectiveness = 0.032000001519918, description = "Generic monster mortar skill. Like Monster Projectile but has an impact effect.", skillTypes = { [SkillType.Projectile] = true, [SkillType.ProjectilesFromUser] = true, [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.AreaSpell] = true, }, @@ -11130,6 +11022,7 @@ skills["AzmeriGuardian4BeamGun"] = { name = "Spinning Beam", hidden = true, color = 4, + baseEffectiveness = 0.625, incrementalEffectiveness = 0.050000000745058, skillTypes = { [SkillType.Spell] = true, [SkillType.Triggerable] = true, }, statDescriptionScope = "skill_stat_descriptions", @@ -11214,14 +11107,14 @@ skills["AzmeriGolemBossWhipLeft"] = { "is_area_damage", }, levels = { - [1] = { levelRequirement = 0, }, + [1] = { baseMultiplier = 0.625, levelRequirement = 0, }, }, } skills["AzmeriBossShockRifleSingle"] = { name = "Lightning Beam", hidden = true, color = 4, - baseEffectiveness = 0.40000000596046, + baseEffectiveness = 0.25, incrementalEffectiveness = 0.03999999910593, skillTypes = { [SkillType.Spell] = true, [SkillType.Projectile] = true, [SkillType.Damage] = true, }, statDescriptionScope = "skill_stat_descriptions", @@ -11333,18 +11226,14 @@ skills["MeleeFire"] = { { "skill_physical_damage_%_to_convert_to_fire", 75 }, }, stats = { - "active_skill_damage_+%_final", "skill_can_fire_arrows", "skill_can_fire_wand_projectiles", }, - notMinionStat = { - "active_skill_damage_+%_final", - }, levels = { - [1] = { 0, baseMultiplier = 0.75, levelRequirement = 1, statInterpolation = { 2, }, }, - [2] = { 0, baseMultiplier = 0.75, levelRequirement = 19, statInterpolation = { 2, }, }, - [3] = { 1, baseMultiplier = 0.75, levelRequirement = 20, statInterpolation = { 2, }, }, - [4] = { 200, baseMultiplier = 0.75, levelRequirement = 84, statInterpolation = { 2, }, }, + [1] = { baseMultiplier = 0.75, levelRequirement = 1, }, + [2] = { baseMultiplier = 0.75, levelRequirement = 19, }, + [3] = { baseMultiplier = 0.75, levelRequirement = 20, }, + [4] = { baseMultiplier = 0.75, levelRequirement = 84, }, }, } skills["LegionKaruiMeleeLeapSlam"] = { @@ -11376,18 +11265,14 @@ skills["LegionKaruiMeleeLeapSlam"] = { { "active_skill_base_area_of_effect_radius", 15 }, }, stats = { - "active_skill_damage_+%_final", "is_area_damage", "cast_time_overrides_attack_duration", }, - notMinionStat = { - "active_skill_damage_+%_final", - }, levels = { - [1] = { 0, baseMultiplier = 0.75, cooldown = 8, levelRequirement = 1, storedUses = 1, statInterpolation = { 2, }, }, - [2] = { 0, baseMultiplier = 0.75, cooldown = 8, levelRequirement = 19, storedUses = 1, statInterpolation = { 2, }, }, - [3] = { 1, baseMultiplier = 0.75, cooldown = 8, levelRequirement = 20, storedUses = 1, statInterpolation = { 2, }, }, - [4] = { 200, baseMultiplier = 0.75, cooldown = 8, levelRequirement = 84, storedUses = 1, statInterpolation = { 2, }, }, + [1] = { baseMultiplier = 0.75, cooldown = 8, levelRequirement = 1, storedUses = 1, }, + [2] = { baseMultiplier = 0.75, cooldown = 8, levelRequirement = 19, storedUses = 1, }, + [3] = { baseMultiplier = 0.75, cooldown = 8, levelRequirement = 20, storedUses = 1, }, + [4] = { baseMultiplier = 0.75, cooldown = 8, levelRequirement = 84, storedUses = 1, }, }, } skills["LegionKaruiMeleeCombo2"] = { @@ -11556,7 +11441,7 @@ skills["DelveSpiderFlickerStrike"] = { "melee_defer_damage_prediction", }, levels = { - [1] = { attackSpeedMultiplier = 20, baseMultiplier = 0.5, cooldown = 4, levelRequirement = 1, storedUses = 1, }, + [1] = { attackSpeedMultiplier = 20, baseMultiplier = 0.35, cooldown = 4, levelRequirement = 1, storedUses = 1, }, }, } skills["MeleeAtAnimationSpeedLightning"] = { @@ -11576,21 +11461,17 @@ skills["MeleeAtAnimationSpeedLightning"] = { { "skill_physical_damage_%_to_convert_to_lightning", 75 }, }, stats = { - "active_skill_damage_+%_final", "skill_can_fire_arrows", "skill_can_fire_wand_projectiles", "action_attack_or_cast_time_uses_animation_length", "projectile_uses_contact_position", "use_scaled_contact_offset", }, - notMinionStat = { - "active_skill_damage_+%_final", - }, levels = { - [1] = { 0, baseMultiplier = 0.75, levelRequirement = 1, statInterpolation = { 2, }, }, - [2] = { 0, baseMultiplier = 0.75, levelRequirement = 19, statInterpolation = { 2, }, }, - [3] = { 1, baseMultiplier = 0.75, levelRequirement = 20, statInterpolation = { 2, }, }, - [4] = { 200, baseMultiplier = 0.75, levelRequirement = 84, statInterpolation = { 2, }, }, + [1] = { baseMultiplier = 0.75, levelRequirement = 1, }, + [2] = { baseMultiplier = 0.75, levelRequirement = 19, }, + [3] = { baseMultiplier = 0.75, levelRequirement = 20, }, + [4] = { baseMultiplier = 0.75, levelRequirement = 84, }, }, } skills["CrucibleVendigoFlickerStrike"] = { @@ -11623,16 +11504,9 @@ skills["CrucibleVendigoFlickerStrike"] = { { "skill_physical_damage_%_to_convert_to_lightning", 50 }, }, stats = { - "active_skill_damage_+%_final", "ignores_proximity_shield", }, - notMinionStat = { - "active_skill_damage_+%_final", - }, levels = { - [1] = { -30, cooldown = 3, levelRequirement = 1, storedUses = 1, statInterpolation = { 2, }, }, - [2] = { 0, cooldown = 3, levelRequirement = 19, storedUses = 1, statInterpolation = { 2, }, }, - [3] = { 1, cooldown = 3, levelRequirement = 20, storedUses = 1, statInterpolation = { 2, }, }, - [4] = { 30, cooldown = 3, levelRequirement = 84, storedUses = 1, statInterpolation = { 2, }, }, + [1] = { cooldown = 3, levelRequirement = 1, storedUses = 1, }, }, } \ No newline at end of file diff --git a/src/Data/Skills/sup_dex.lua b/src/Data/Skills/sup_dex.lua index ea4618ec11..2a44d1f8c2 100644 --- a/src/Data/Skills/sup_dex.lua +++ b/src/Data/Skills/sup_dex.lua @@ -2635,6 +2635,89 @@ skills["SupportManaLeech"] = { [40] = { 590, levelRequirement = 100, statInterpolation = { 1, }, }, }, } +skills["SupportManaforgedArrows"] = { + name = "Manaforged Arrows", + description = "Supports bow attack skills, causing them to trigger when you've spent enough mana in total on other bow attacks. Cannot modify the skills of minions. Cannot support totems, traps, mines, Vaal skills, or channelling skills", + color = 2, + support = true, + requireSkillTypes = { SkillType.Triggerable, SkillType.Attack, SkillType.AND, }, + addSkillTypes = { SkillType.Triggered, SkillType.Cooldown, }, + excludeSkillTypes = { SkillType.Trapped, SkillType.RemoteMined, SkillType.SummonsTotem, SkillType.HasReservation, SkillType.DisallowTriggerSupports, SkillType.InbuiltTrigger, }, + isTrigger = true, + ignoreMinionTypes = true, + weaponTypes = { + ["Bow"] = true, + }, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_manaforged_arrows_damage_+%_final"] = { + mod("Damage", "MORE", nil, 0, 0), + }, + ["support_manaforged_arrows_damage_+%_final_per_mana_spent"] = { + mod("Damage", "MORE", nil, 0, 0, { type = "PerStat", stat = "ManaCost" }), + }, + ["support_manaforged_arrows_mana_cost_%_threshold"] = { + skill("triggeredByManaforged", true, { type = "SkillType", skillType = SkillType.Triggerable }), + skill("ManaForgedArrowsPercentThreshold", nil), + div = 100, + }, + }, + qualityStats = { + Default = { + { "base_cooldown_speed_+%", 0.5 }, + }, + }, + constantStats = { + { "triggered_by_manaforged_arrows_support_%_chance", 100 }, + { "support_manaforged_arrows_damage_+%_final_per_mana_spent", 1 }, + { "support_manaforged_arrows_mana_cost_%_threshold", 300 }, + }, + stats = { + "support_manaforged_arrows_damage_+%_final", + }, + levels = { + [1] = { -40, cooldown = 0.5, levelRequirement = 8, manaMultiplier = 100, storedUses = 1, statInterpolation = { 1, }, }, + [2] = { -40, cooldown = 0.5, levelRequirement = 10, manaMultiplier = 100, storedUses = 1, statInterpolation = { 1, }, }, + [3] = { -39, cooldown = 0.5, levelRequirement = 13, manaMultiplier = 100, storedUses = 1, statInterpolation = { 1, }, }, + [4] = { -39, cooldown = 0.5, levelRequirement = 17, manaMultiplier = 100, storedUses = 1, statInterpolation = { 1, }, }, + [5] = { -38, cooldown = 0.5, levelRequirement = 21, manaMultiplier = 100, storedUses = 1, statInterpolation = { 1, }, }, + [6] = { -38, cooldown = 0.5, levelRequirement = 25, manaMultiplier = 100, storedUses = 1, statInterpolation = { 1, }, }, + [7] = { -37, cooldown = 0.5, levelRequirement = 29, manaMultiplier = 100, storedUses = 1, statInterpolation = { 1, }, }, + [8] = { -37, cooldown = 0.5, levelRequirement = 33, manaMultiplier = 100, storedUses = 1, statInterpolation = { 1, }, }, + [9] = { -36, cooldown = 0.5, levelRequirement = 37, manaMultiplier = 100, storedUses = 1, statInterpolation = { 1, }, }, + [10] = { -36, cooldown = 0.5, levelRequirement = 40, manaMultiplier = 100, storedUses = 1, statInterpolation = { 1, }, }, + [11] = { -35, cooldown = 0.5, levelRequirement = 43, manaMultiplier = 100, storedUses = 1, statInterpolation = { 1, }, }, + [12] = { -35, cooldown = 0.5, levelRequirement = 46, manaMultiplier = 100, storedUses = 1, statInterpolation = { 1, }, }, + [13] = { -34, cooldown = 0.5, levelRequirement = 49, manaMultiplier = 100, storedUses = 1, statInterpolation = { 1, }, }, + [14] = { -34, cooldown = 0.5, levelRequirement = 52, manaMultiplier = 100, storedUses = 1, statInterpolation = { 1, }, }, + [15] = { -33, cooldown = 0.5, levelRequirement = 55, manaMultiplier = 100, storedUses = 1, statInterpolation = { 1, }, }, + [16] = { -33, cooldown = 0.5, levelRequirement = 58, manaMultiplier = 100, storedUses = 1, statInterpolation = { 1, }, }, + [17] = { -32, cooldown = 0.5, levelRequirement = 61, manaMultiplier = 100, storedUses = 1, statInterpolation = { 1, }, }, + [18] = { -32, cooldown = 0.5, levelRequirement = 64, manaMultiplier = 100, storedUses = 1, statInterpolation = { 1, }, }, + [19] = { -31, cooldown = 0.5, levelRequirement = 67, manaMultiplier = 100, storedUses = 1, statInterpolation = { 1, }, }, + [20] = { -31, cooldown = 0.5, levelRequirement = 70, manaMultiplier = 100, storedUses = 1, statInterpolation = { 1, }, }, + [21] = { -30, cooldown = 0.5, levelRequirement = 72, manaMultiplier = 100, storedUses = 1, statInterpolation = { 1, }, }, + [22] = { -30, cooldown = 0.5, levelRequirement = 74, manaMultiplier = 100, storedUses = 1, statInterpolation = { 1, }, }, + [23] = { -29, cooldown = 0.5, levelRequirement = 76, manaMultiplier = 100, storedUses = 1, statInterpolation = { 1, }, }, + [24] = { -29, cooldown = 0.5, levelRequirement = 78, manaMultiplier = 100, storedUses = 1, statInterpolation = { 1, }, }, + [25] = { -28, cooldown = 0.5, levelRequirement = 80, manaMultiplier = 100, storedUses = 1, statInterpolation = { 1, }, }, + [26] = { -28, cooldown = 0.5, levelRequirement = 82, manaMultiplier = 100, storedUses = 1, statInterpolation = { 1, }, }, + [27] = { -27, cooldown = 0.5, levelRequirement = 84, manaMultiplier = 100, storedUses = 1, statInterpolation = { 1, }, }, + [28] = { -27, cooldown = 0.5, levelRequirement = 86, manaMultiplier = 100, storedUses = 1, statInterpolation = { 1, }, }, + [29] = { -26, cooldown = 0.5, levelRequirement = 88, manaMultiplier = 100, storedUses = 1, statInterpolation = { 1, }, }, + [30] = { -26, cooldown = 0.5, levelRequirement = 90, manaMultiplier = 100, storedUses = 1, statInterpolation = { 1, }, }, + [31] = { -26, cooldown = 0.5, levelRequirement = 91, manaMultiplier = 100, storedUses = 1, statInterpolation = { 1, }, }, + [32] = { -25, cooldown = 0.5, levelRequirement = 92, manaMultiplier = 100, storedUses = 1, statInterpolation = { 1, }, }, + [33] = { -25, cooldown = 0.5, levelRequirement = 93, manaMultiplier = 100, storedUses = 1, statInterpolation = { 1, }, }, + [34] = { -25, cooldown = 0.5, levelRequirement = 94, manaMultiplier = 100, storedUses = 1, statInterpolation = { 1, }, }, + [35] = { -25, cooldown = 0.5, levelRequirement = 95, manaMultiplier = 100, storedUses = 1, statInterpolation = { 1, }, }, + [36] = { -24, cooldown = 0.5, levelRequirement = 96, manaMultiplier = 100, storedUses = 1, statInterpolation = { 1, }, }, + [37] = { -24, cooldown = 0.5, levelRequirement = 97, manaMultiplier = 100, storedUses = 1, statInterpolation = { 1, }, }, + [38] = { -24, cooldown = 0.5, levelRequirement = 98, manaMultiplier = 100, storedUses = 1, statInterpolation = { 1, }, }, + [39] = { -24, cooldown = 0.5, levelRequirement = 99, manaMultiplier = 100, storedUses = 1, statInterpolation = { 1, }, }, + [40] = { -23, cooldown = 0.5, levelRequirement = 100, manaMultiplier = 100, storedUses = 1, statInterpolation = { 1, }, }, + }, +} skills["SupportMarkOnHit"] = { name = "Mark On Hit", description = "Supports mark curse skills.", @@ -2781,6 +2864,90 @@ skills["SupportMirageArcher"] = { [40] = { -22, PvPDamageMultiplier = -35, levelRequirement = 100, manaMultiplier = 30, statInterpolation = { 1, }, }, }, } +skills["SupportMomentum"] = { + name = "Momentum", + description = "Supports attack skills that aren't triggered.", + color = 2, + support = true, + requireSkillTypes = { SkillType.Attack, }, + addSkillTypes = { SkillType.Duration, SkillType.Buff, }, + excludeSkillTypes = { SkillType.Triggered, }, + statDescriptionScope = "gem_stat_descriptions", + statMap = { + ["support_momentum_max_stacks"] = { + mod("MomentumStacksMax", "BASE", nil, 0, 0), + }, + ["count_as_momentum_+_if_not_channelled"] = { + mod("MomentumStacksExtra", "BASE", nil, 0, 0), + }, + ["support_momentum_attack_speed_+%_per_stack"] = { + mod("Speed", "INC", nil, ModFlag.Attack, 0, { type = "Multiplier", var = "MomentumStacks" }), + }, + ["support_momentum_movement_speed_+%_per_stack_removed"] = { + mod("MovementSpeed", "INC", nil, 0, 0, { type = "Multiplier", var = "MomentumStacksRemoved" }, { type = "GlobalEffect", effectType = "Buff" }), + }, + }, + baseMods = { + flag("SupportedByMomentum"), + }, + qualityStats = { + Default = { + { "support_momentum_base_buff_duration_ms", 25 }, + }, + }, + constantStats = { + { "support_momentum_base_buff_duration_ms", 1500 }, + { "count_as_momentum_+_if_not_channelled", 1 }, + { "support_momentum_movement_speed_+%_per_stack_removed", 15 }, + }, + stats = { + "support_momentum_attack_speed_+%_per_stack", + "support_momentum_max_stacks", + "support_momentum_stack_while_channelling_base_ms", + }, + levels = { + [1] = { 15, 3, 700, levelRequirement = 1, manaMultiplier = 10, statInterpolation = { 1, 1, 1, }, }, + [2] = { 15, 3, 690, levelRequirement = 2, manaMultiplier = 10, statInterpolation = { 1, 1, 1, }, }, + [3] = { 15, 3, 680, levelRequirement = 4, manaMultiplier = 10, statInterpolation = { 1, 1, 1, }, }, + [4] = { 15, 3, 670, levelRequirement = 7, manaMultiplier = 10, statInterpolation = { 1, 1, 1, }, }, + [5] = { 16, 3, 660, levelRequirement = 11, manaMultiplier = 10, statInterpolation = { 1, 1, 1, }, }, + [6] = { 16, 3, 650, levelRequirement = 16, manaMultiplier = 10, statInterpolation = { 1, 1, 1, }, }, + [7] = { 16, 3, 640, levelRequirement = 20, manaMultiplier = 10, statInterpolation = { 1, 1, 1, }, }, + [8] = { 16, 3, 630, levelRequirement = 24, manaMultiplier = 10, statInterpolation = { 1, 1, 1, }, }, + [9] = { 17, 3, 620, levelRequirement = 28, manaMultiplier = 10, statInterpolation = { 1, 1, 1, }, }, + [10] = { 17, 4, 610, levelRequirement = 32, manaMultiplier = 10, statInterpolation = { 1, 1, 1, }, }, + [11] = { 17, 4, 600, levelRequirement = 36, manaMultiplier = 10, statInterpolation = { 1, 1, 1, }, }, + [12] = { 18, 4, 590, levelRequirement = 40, manaMultiplier = 10, statInterpolation = { 1, 1, 1, }, }, + [13] = { 18, 4, 580, levelRequirement = 44, manaMultiplier = 10, statInterpolation = { 1, 1, 1, }, }, + [14] = { 18, 4, 570, levelRequirement = 48, manaMultiplier = 10, statInterpolation = { 1, 1, 1, }, }, + [15] = { 18, 4, 560, levelRequirement = 52, manaMultiplier = 10, statInterpolation = { 1, 1, 1, }, }, + [16] = { 19, 4, 550, levelRequirement = 56, manaMultiplier = 10, statInterpolation = { 1, 1, 1, }, }, + [17] = { 19, 4, 540, levelRequirement = 60, manaMultiplier = 10, statInterpolation = { 1, 1, 1, }, }, + [18] = { 19, 4, 530, levelRequirement = 64, manaMultiplier = 10, statInterpolation = { 1, 1, 1, }, }, + [19] = { 19, 4, 520, levelRequirement = 67, manaMultiplier = 10, statInterpolation = { 1, 1, 1, }, }, + [20] = { 20, 5, 510, levelRequirement = 70, manaMultiplier = 10, statInterpolation = { 1, 1, 1, }, }, + [21] = { 20, 5, 500, levelRequirement = 72, manaMultiplier = 10, statInterpolation = { 1, 1, 1, }, }, + [22] = { 20, 5, 500, levelRequirement = 74, manaMultiplier = 10, statInterpolation = { 1, 1, 1, }, }, + [23] = { 21, 5, 490, levelRequirement = 76, manaMultiplier = 10, statInterpolation = { 1, 1, 1, }, }, + [24] = { 21, 5, 490, levelRequirement = 78, manaMultiplier = 10, statInterpolation = { 1, 1, 1, }, }, + [25] = { 21, 5, 480, levelRequirement = 80, manaMultiplier = 10, statInterpolation = { 1, 1, 1, }, }, + [26] = { 21, 5, 480, levelRequirement = 82, manaMultiplier = 10, statInterpolation = { 1, 1, 1, }, }, + [27] = { 22, 5, 470, levelRequirement = 84, manaMultiplier = 10, statInterpolation = { 1, 1, 1, }, }, + [28] = { 22, 5, 470, levelRequirement = 86, manaMultiplier = 10, statInterpolation = { 1, 1, 1, }, }, + [29] = { 22, 5, 460, levelRequirement = 88, manaMultiplier = 10, statInterpolation = { 1, 1, 1, }, }, + [30] = { 22, 6, 460, levelRequirement = 90, manaMultiplier = 10, statInterpolation = { 1, 1, 1, }, }, + [31] = { 23, 6, 450, levelRequirement = 91, manaMultiplier = 10, statInterpolation = { 1, 1, 1, }, }, + [32] = { 23, 6, 450, levelRequirement = 92, manaMultiplier = 10, statInterpolation = { 1, 1, 1, }, }, + [33] = { 23, 6, 440, levelRequirement = 93, manaMultiplier = 10, statInterpolation = { 1, 1, 1, }, }, + [34] = { 23, 6, 440, levelRequirement = 94, manaMultiplier = 10, statInterpolation = { 1, 1, 1, }, }, + [35] = { 23, 6, 430, levelRequirement = 95, manaMultiplier = 10, statInterpolation = { 1, 1, 1, }, }, + [36] = { 23, 6, 430, levelRequirement = 96, manaMultiplier = 10, statInterpolation = { 1, 1, 1, }, }, + [37] = { 23, 6, 420, levelRequirement = 97, manaMultiplier = 10, statInterpolation = { 1, 1, 1, }, }, + [38] = { 24, 6, 420, levelRequirement = 98, manaMultiplier = 10, statInterpolation = { 1, 1, 1, }, }, + [39] = { 24, 6, 410, levelRequirement = 99, manaMultiplier = 10, statInterpolation = { 1, 1, 1, }, }, + [40] = { 24, 7, 410, levelRequirement = 100, manaMultiplier = 10, statInterpolation = { 1, 1, 1, }, }, + }, +} skills["SupportMultipleTraps"] = { name = "Multiple Traps", description = "Supports traps skills, making them throw extra traps in a line.", @@ -3226,46 +3393,46 @@ skills["SupportSadism"] = { "support_faster_ailments_ailment_duration_+%_final", }, levels = { - [1] = { 60, -80, levelRequirement = 18, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, - [2] = { 61, -80, levelRequirement = 22, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, - [3] = { 62, -80, levelRequirement = 26, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, - [4] = { 63, -80, levelRequirement = 29, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, - [5] = { 64, -80, levelRequirement = 32, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, - [6] = { 65, -80, levelRequirement = 35, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, - [7] = { 66, -80, levelRequirement = 38, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, - [8] = { 67, -80, levelRequirement = 41, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, - [9] = { 68, -80, levelRequirement = 44, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, - [10] = { 69, -80, levelRequirement = 47, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, - [11] = { 70, -80, levelRequirement = 50, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, - [12] = { 71, -80, levelRequirement = 53, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, - [13] = { 72, -80, levelRequirement = 56, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, - [14] = { 73, -80, levelRequirement = 58, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, - [15] = { 74, -80, levelRequirement = 60, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, - [16] = { 75, -80, levelRequirement = 62, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, - [17] = { 76, -80, levelRequirement = 64, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, - [18] = { 77, -80, levelRequirement = 66, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, - [19] = { 78, -80, levelRequirement = 68, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, - [20] = { 79, -80, levelRequirement = 70, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, - [21] = { 80, -80, levelRequirement = 72, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, - [22] = { 81, -80, levelRequirement = 74, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, - [23] = { 82, -80, levelRequirement = 76, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, - [24] = { 83, -80, levelRequirement = 78, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, - [25] = { 84, -80, levelRequirement = 80, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, - [26] = { 85, -80, levelRequirement = 82, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, - [27] = { 86, -80, levelRequirement = 84, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, - [28] = { 87, -80, levelRequirement = 86, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, - [29] = { 88, -80, levelRequirement = 88, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, - [30] = { 89, -80, levelRequirement = 90, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, - [31] = { 89, -80, levelRequirement = 91, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, - [32] = { 90, -80, levelRequirement = 92, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, - [33] = { 90, -80, levelRequirement = 93, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, - [34] = { 91, -80, levelRequirement = 94, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, - [35] = { 91, -80, levelRequirement = 95, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, - [36] = { 92, -80, levelRequirement = 96, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, - [37] = { 92, -80, levelRequirement = 97, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, - [38] = { 93, -80, levelRequirement = 98, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, - [39] = { 93, -80, levelRequirement = 99, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, - [40] = { 94, -80, levelRequirement = 100, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + [1] = { 60, -70, levelRequirement = 18, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + [2] = { 62, -70, levelRequirement = 22, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + [3] = { 64, -70, levelRequirement = 26, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + [4] = { 66, -70, levelRequirement = 29, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + [5] = { 68, -70, levelRequirement = 32, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + [6] = { 70, -70, levelRequirement = 35, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + [7] = { 72, -70, levelRequirement = 38, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + [8] = { 74, -70, levelRequirement = 41, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + [9] = { 76, -70, levelRequirement = 44, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + [10] = { 78, -70, levelRequirement = 47, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + [11] = { 80, -70, levelRequirement = 50, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + [12] = { 82, -70, levelRequirement = 53, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + [13] = { 84, -70, levelRequirement = 56, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + [14] = { 86, -70, levelRequirement = 58, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + [15] = { 88, -70, levelRequirement = 60, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + [16] = { 90, -70, levelRequirement = 62, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + [17] = { 92, -70, levelRequirement = 64, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + [18] = { 94, -70, levelRequirement = 66, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + [19] = { 96, -70, levelRequirement = 68, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + [20] = { 98, -70, levelRequirement = 70, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + [21] = { 100, -70, levelRequirement = 72, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + [22] = { 102, -70, levelRequirement = 74, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + [23] = { 104, -70, levelRequirement = 76, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + [24] = { 106, -70, levelRequirement = 78, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + [25] = { 108, -70, levelRequirement = 80, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + [26] = { 110, -70, levelRequirement = 82, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + [27] = { 112, -70, levelRequirement = 84, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + [28] = { 114, -70, levelRequirement = 86, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + [29] = { 116, -70, levelRequirement = 88, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + [30] = { 118, -70, levelRequirement = 90, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + [31] = { 119, -70, levelRequirement = 91, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + [32] = { 120, -70, levelRequirement = 92, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + [33] = { 121, -70, levelRequirement = 93, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + [34] = { 122, -70, levelRequirement = 94, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + [35] = { 123, -70, levelRequirement = 95, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + [36] = { 124, -70, levelRequirement = 96, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + [37] = { 125, -70, levelRequirement = 97, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + [38] = { 126, -70, levelRequirement = 98, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + [39] = { 127, -70, levelRequirement = 99, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + [40] = { 128, -70, levelRequirement = 100, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, }, } skills["SupportSecondWind"] = { @@ -4265,6 +4432,151 @@ skills["SupportVolley"] = { [40] = { 5, PvPDamageMultiplier = -10, levelRequirement = 100, manaMultiplier = 30, statInterpolation = { 1, }, }, }, } +skills["SupportWindburst"] = { + name = "Windburst", + description = "Supports Attack Skills, causing them to trigger Windburst on hit after you've travelled a certain distance. Cannot support triggered skills or skills used by things other than you. Cannot modify the skills of minions.", + color = 2, + support = true, + requireSkillTypes = { SkillType.Attack, }, + addSkillTypes = { }, + excludeSkillTypes = { SkillType.SummonsTotem, SkillType.Trapped, SkillType.RemoteMined, SkillType.DisallowTriggerSupports, SkillType.Triggered, SkillType.OtherThingUsesSkill, }, + ignoreMinionTypes = true, + statDescriptionScope = "gem_stat_descriptions", + qualityStats = { + Default = { + { "projectile_damage_+%", 0.5 }, + }, + }, + constantStats = { + { "support_trigger_tornados_on_attack_hit_after_moving_X_metres", 10 }, + }, + stats = { + }, + levels = { + [1] = { levelRequirement = 31, manaMultiplier = 20, }, + [2] = { levelRequirement = 34, manaMultiplier = 20, }, + [3] = { levelRequirement = 36, manaMultiplier = 20, }, + [4] = { levelRequirement = 38, manaMultiplier = 20, }, + [5] = { levelRequirement = 40, manaMultiplier = 20, }, + [6] = { levelRequirement = 42, manaMultiplier = 20, }, + [7] = { levelRequirement = 44, manaMultiplier = 20, }, + [8] = { levelRequirement = 46, manaMultiplier = 20, }, + [9] = { levelRequirement = 48, manaMultiplier = 20, }, + [10] = { levelRequirement = 50, manaMultiplier = 20, }, + [11] = { levelRequirement = 52, manaMultiplier = 20, }, + [12] = { levelRequirement = 54, manaMultiplier = 20, }, + [13] = { levelRequirement = 56, manaMultiplier = 20, }, + [14] = { levelRequirement = 58, manaMultiplier = 20, }, + [15] = { levelRequirement = 60, manaMultiplier = 20, }, + [16] = { levelRequirement = 62, manaMultiplier = 20, }, + [17] = { levelRequirement = 64, manaMultiplier = 20, }, + [18] = { levelRequirement = 66, manaMultiplier = 20, }, + [19] = { levelRequirement = 68, manaMultiplier = 20, }, + [20] = { levelRequirement = 70, manaMultiplier = 20, }, + [21] = { levelRequirement = 72, manaMultiplier = 20, }, + [22] = { levelRequirement = 74, manaMultiplier = 20, }, + [23] = { levelRequirement = 76, manaMultiplier = 20, }, + [24] = { levelRequirement = 78, manaMultiplier = 20, }, + [25] = { levelRequirement = 80, manaMultiplier = 20, }, + [26] = { levelRequirement = 82, manaMultiplier = 20, }, + [27] = { levelRequirement = 84, manaMultiplier = 20, }, + [28] = { levelRequirement = 86, manaMultiplier = 20, }, + [29] = { levelRequirement = 88, manaMultiplier = 20, }, + [30] = { levelRequirement = 90, manaMultiplier = 20, }, + [31] = { levelRequirement = 91, manaMultiplier = 20, }, + [32] = { levelRequirement = 92, manaMultiplier = 20, }, + [33] = { levelRequirement = 93, manaMultiplier = 20, }, + [34] = { levelRequirement = 94, manaMultiplier = 20, }, + [35] = { levelRequirement = 95, manaMultiplier = 20, }, + [36] = { levelRequirement = 96, manaMultiplier = 20, }, + [37] = { levelRequirement = 97, manaMultiplier = 20, }, + [38] = { levelRequirement = 98, manaMultiplier = 20, }, + [39] = { levelRequirement = 99, manaMultiplier = 20, }, + [40] = { levelRequirement = 100, manaMultiplier = 20, }, + }, +} +skills["TriggeredSupportWindburst"] = { + name = "Windburst", + baseTypeName = "Windburst", + color = 2, + description = "Fires projectiles that move randomly and damage enemies they pierce through. They explode after a duration, dealing area damage.", + skillTypes = { [SkillType.Attack] = true, [SkillType.RangedAttack] = true, [SkillType.Projectile] = true, [SkillType.SkillGrantedBySupport] = true, [SkillType.InbuiltTrigger] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.Area] = true, [SkillType.ProjectilesFromUser] = true, [SkillType.Duration] = true, }, + statDescriptionScope = "skill_stat_descriptions", + castTime = 1, + parts = { + { + name = "Projectile", + projectile = true, + }, + { + name = "Explosion", + area = true, + }, + }, + baseFlags = { + attack = true, + projectile = true, + duration = true, + }, + baseMods = { + skill("showAverage", true), + }, + constantStats = { + { "base_skill_effect_duration", 4000 }, + { "active_skill_base_area_of_effect_radius", 15 }, + { "active_skill_area_damage_+%_final", 40 }, + }, + stats = { + "base_number_of_projectiles", + "base_is_projectile", + "triggered_by_support_movement", + "quality_display_base_number_of_projectiles_is_gem", + "always_pierce", + "quality_display_active_skill_area_damage_is_gem", + }, + levels = { + [1] = { 3, baseMultiplier = 1.18, damageEffectiveness = 1.18, levelRequirement = 31, statInterpolation = { 1, }, }, + [2] = { 3, baseMultiplier = 1.191, damageEffectiveness = 1.191, levelRequirement = 34, statInterpolation = { 1, }, }, + [3] = { 3, baseMultiplier = 1.202, damageEffectiveness = 1.202, levelRequirement = 36, statInterpolation = { 1, }, }, + [4] = { 3, baseMultiplier = 1.213, damageEffectiveness = 1.213, levelRequirement = 38, statInterpolation = { 1, }, }, + [5] = { 3, baseMultiplier = 1.224, damageEffectiveness = 1.224, levelRequirement = 40, statInterpolation = { 1, }, }, + [6] = { 3, baseMultiplier = 1.235, damageEffectiveness = 1.235, levelRequirement = 42, statInterpolation = { 1, }, }, + [7] = { 3, baseMultiplier = 1.246, damageEffectiveness = 1.246, levelRequirement = 44, statInterpolation = { 1, }, }, + [8] = { 3, baseMultiplier = 1.257, damageEffectiveness = 1.257, levelRequirement = 46, statInterpolation = { 1, }, }, + [9] = { 3, baseMultiplier = 1.268, damageEffectiveness = 1.268, levelRequirement = 48, statInterpolation = { 1, }, }, + [10] = { 3, baseMultiplier = 1.279, damageEffectiveness = 1.279, levelRequirement = 50, statInterpolation = { 1, }, }, + [11] = { 3, baseMultiplier = 1.291, damageEffectiveness = 1.291, levelRequirement = 52, statInterpolation = { 1, }, }, + [12] = { 3, baseMultiplier = 1.302, damageEffectiveness = 1.302, levelRequirement = 54, statInterpolation = { 1, }, }, + [13] = { 3, baseMultiplier = 1.313, damageEffectiveness = 1.313, levelRequirement = 56, statInterpolation = { 1, }, }, + [14] = { 3, baseMultiplier = 1.324, damageEffectiveness = 1.324, levelRequirement = 58, statInterpolation = { 1, }, }, + [15] = { 3, baseMultiplier = 1.335, damageEffectiveness = 1.335, levelRequirement = 60, statInterpolation = { 1, }, }, + [16] = { 3, baseMultiplier = 1.346, damageEffectiveness = 1.346, levelRequirement = 62, statInterpolation = { 1, }, }, + [17] = { 3, baseMultiplier = 1.357, damageEffectiveness = 1.357, levelRequirement = 64, statInterpolation = { 1, }, }, + [18] = { 3, baseMultiplier = 1.368, damageEffectiveness = 1.368, levelRequirement = 66, statInterpolation = { 1, }, }, + [19] = { 3, baseMultiplier = 1.379, damageEffectiveness = 1.379, levelRequirement = 68, statInterpolation = { 1, }, }, + [20] = { 3, baseMultiplier = 1.39, damageEffectiveness = 1.39, levelRequirement = 70, statInterpolation = { 1, }, }, + [21] = { 3, baseMultiplier = 1.401, damageEffectiveness = 1.401, levelRequirement = 72, statInterpolation = { 1, }, }, + [22] = { 3, baseMultiplier = 1.412, damageEffectiveness = 1.412, levelRequirement = 74, statInterpolation = { 1, }, }, + [23] = { 3, baseMultiplier = 1.423, damageEffectiveness = 1.423, levelRequirement = 76, statInterpolation = { 1, }, }, + [24] = { 3, baseMultiplier = 1.434, damageEffectiveness = 1.434, levelRequirement = 78, statInterpolation = { 1, }, }, + [25] = { 3, baseMultiplier = 1.445, damageEffectiveness = 1.445, levelRequirement = 80, statInterpolation = { 1, }, }, + [26] = { 3, baseMultiplier = 1.456, damageEffectiveness = 1.456, levelRequirement = 82, statInterpolation = { 1, }, }, + [27] = { 3, baseMultiplier = 1.467, damageEffectiveness = 1.467, levelRequirement = 84, statInterpolation = { 1, }, }, + [28] = { 3, baseMultiplier = 1.478, damageEffectiveness = 1.478, levelRequirement = 86, statInterpolation = { 1, }, }, + [29] = { 3, baseMultiplier = 1.489, damageEffectiveness = 1.489, levelRequirement = 88, statInterpolation = { 1, }, }, + [30] = { 3, baseMultiplier = 1.501, damageEffectiveness = 1.501, levelRequirement = 90, statInterpolation = { 1, }, }, + [31] = { 3, baseMultiplier = 1.506, damageEffectiveness = 1.506, levelRequirement = 91, statInterpolation = { 1, }, }, + [32] = { 3, baseMultiplier = 1.512, damageEffectiveness = 1.512, levelRequirement = 92, statInterpolation = { 1, }, }, + [33] = { 3, baseMultiplier = 1.517, damageEffectiveness = 1.517, levelRequirement = 93, statInterpolation = { 1, }, }, + [34] = { 3, baseMultiplier = 1.523, damageEffectiveness = 1.523, levelRequirement = 94, statInterpolation = { 1, }, }, + [35] = { 3, baseMultiplier = 1.528, damageEffectiveness = 1.528, levelRequirement = 95, statInterpolation = { 1, }, }, + [36] = { 3, baseMultiplier = 1.534, damageEffectiveness = 1.534, levelRequirement = 96, statInterpolation = { 1, }, }, + [37] = { 3, baseMultiplier = 1.539, damageEffectiveness = 1.539, levelRequirement = 97, statInterpolation = { 1, }, }, + [38] = { 3, baseMultiplier = 1.545, damageEffectiveness = 1.545, levelRequirement = 98, statInterpolation = { 1, }, }, + [39] = { 3, baseMultiplier = 1.55, damageEffectiveness = 1.55, levelRequirement = 99, statInterpolation = { 1, }, }, + [40] = { 3, baseMultiplier = 1.556, damageEffectiveness = 1.556, levelRequirement = 100, statInterpolation = { 1, }, }, + }, +} skills["SupportWitheringTouch"] = { name = "Withering Touch", description = "Supports attack skills.", @@ -4328,171 +4640,4 @@ skills["SupportWitheringTouch"] = { [39] = { 44, levelRequirement = 99, manaMultiplier = 30, statInterpolation = { 1, }, }, [40] = { 44, levelRequirement = 100, manaMultiplier = 30, statInterpolation = { 1, }, }, }, -} -skills["SupportManaforgedArrows"] = { - name = "Manaforged Arrows", - description = "Supports bow attack skills, causing them to trigger when you've spent enough mana in total on other bow attacks. Cannot modify the skills of minions. Cannot support totems, traps, mines, Vaal skills, or channelling skills", - color = 2, - support = true, - requireSkillTypes = { SkillType.Triggerable, SkillType.Attack, SkillType.AND, }, - addSkillTypes = { SkillType.Triggered, SkillType.Cooldown, }, - excludeSkillTypes = { SkillType.Trapped, SkillType.RemoteMined, SkillType.SummonsTotem, SkillType.HasReservation, SkillType.DisallowTriggerSupports, }, - isTrigger = true, - ignoreMinionTypes = true, - weaponTypes = { - ["Bow"] = true, - }, - statDescriptionScope = "gem_stat_descriptions", - statMap = { - ["support_manaforged_arrows_damage_+%_final"] = { - mod("Damage", "MORE", nil, 0, 0), - }, - ["support_manaforged_arrows_damage_+%_final_per_mana_spent"] = { - mod("Damage", "MORE", nil, 0, 0, { type = "PerStat", stat = "ManaCost" }), - }, - ["support_manaforged_arrows_mana_cost_%_threshold"] = { - skill("triggeredByManaforged", true, { type = "SkillType", skillType = SkillType.Triggerable }), - skill("ManaForgedArrowsPercentThreshold", nil), - div = 100, - }, - }, - qualityStats = { - Default = { - { "base_cooldown_speed_+%", 0.5 }, - }, - }, - constantStats = { - { "triggered_by_manaforged_arrows_support_%_chance", 100 }, - { "support_manaforged_arrows_damage_+%_final_per_mana_spent", 1 }, - { "support_manaforged_arrows_mana_cost_%_threshold", 300 }, - }, - stats = { - "support_manaforged_arrows_damage_+%_final", - }, - levels = { - [1] = { -40, cooldown = 0.5, levelRequirement = 8, manaMultiplier = 100, storedUses = 1, statInterpolation = { 1, }, }, - [2] = { -40, cooldown = 0.5, levelRequirement = 10, manaMultiplier = 100, storedUses = 1, statInterpolation = { 1, }, }, - [3] = { -39, cooldown = 0.5, levelRequirement = 13, manaMultiplier = 100, storedUses = 1, statInterpolation = { 1, }, }, - [4] = { -39, cooldown = 0.5, levelRequirement = 17, manaMultiplier = 100, storedUses = 1, statInterpolation = { 1, }, }, - [5] = { -38, cooldown = 0.5, levelRequirement = 21, manaMultiplier = 100, storedUses = 1, statInterpolation = { 1, }, }, - [6] = { -38, cooldown = 0.5, levelRequirement = 25, manaMultiplier = 100, storedUses = 1, statInterpolation = { 1, }, }, - [7] = { -37, cooldown = 0.5, levelRequirement = 29, manaMultiplier = 100, storedUses = 1, statInterpolation = { 1, }, }, - [8] = { -37, cooldown = 0.5, levelRequirement = 33, manaMultiplier = 100, storedUses = 1, statInterpolation = { 1, }, }, - [9] = { -36, cooldown = 0.5, levelRequirement = 37, manaMultiplier = 100, storedUses = 1, statInterpolation = { 1, }, }, - [10] = { -36, cooldown = 0.5, levelRequirement = 40, manaMultiplier = 100, storedUses = 1, statInterpolation = { 1, }, }, - [11] = { -35, cooldown = 0.5, levelRequirement = 43, manaMultiplier = 100, storedUses = 1, statInterpolation = { 1, }, }, - [12] = { -35, cooldown = 0.5, levelRequirement = 46, manaMultiplier = 100, storedUses = 1, statInterpolation = { 1, }, }, - [13] = { -34, cooldown = 0.5, levelRequirement = 49, manaMultiplier = 100, storedUses = 1, statInterpolation = { 1, }, }, - [14] = { -34, cooldown = 0.5, levelRequirement = 52, manaMultiplier = 100, storedUses = 1, statInterpolation = { 1, }, }, - [15] = { -33, cooldown = 0.5, levelRequirement = 55, manaMultiplier = 100, storedUses = 1, statInterpolation = { 1, }, }, - [16] = { -33, cooldown = 0.5, levelRequirement = 58, manaMultiplier = 100, storedUses = 1, statInterpolation = { 1, }, }, - [17] = { -32, cooldown = 0.5, levelRequirement = 61, manaMultiplier = 100, storedUses = 1, statInterpolation = { 1, }, }, - [18] = { -32, cooldown = 0.5, levelRequirement = 64, manaMultiplier = 100, storedUses = 1, statInterpolation = { 1, }, }, - [19] = { -31, cooldown = 0.5, levelRequirement = 67, manaMultiplier = 100, storedUses = 1, statInterpolation = { 1, }, }, - [20] = { -31, cooldown = 0.5, levelRequirement = 70, manaMultiplier = 100, storedUses = 1, statInterpolation = { 1, }, }, - [21] = { -30, cooldown = 0.5, levelRequirement = 72, manaMultiplier = 100, storedUses = 1, statInterpolation = { 1, }, }, - [22] = { -30, cooldown = 0.5, levelRequirement = 74, manaMultiplier = 100, storedUses = 1, statInterpolation = { 1, }, }, - [23] = { -29, cooldown = 0.5, levelRequirement = 76, manaMultiplier = 100, storedUses = 1, statInterpolation = { 1, }, }, - [24] = { -29, cooldown = 0.5, levelRequirement = 78, manaMultiplier = 100, storedUses = 1, statInterpolation = { 1, }, }, - [25] = { -28, cooldown = 0.5, levelRequirement = 80, manaMultiplier = 100, storedUses = 1, statInterpolation = { 1, }, }, - [26] = { -28, cooldown = 0.5, levelRequirement = 82, manaMultiplier = 100, storedUses = 1, statInterpolation = { 1, }, }, - [27] = { -27, cooldown = 0.5, levelRequirement = 84, manaMultiplier = 100, storedUses = 1, statInterpolation = { 1, }, }, - [28] = { -27, cooldown = 0.5, levelRequirement = 86, manaMultiplier = 100, storedUses = 1, statInterpolation = { 1, }, }, - [29] = { -26, cooldown = 0.5, levelRequirement = 88, manaMultiplier = 100, storedUses = 1, statInterpolation = { 1, }, }, - [30] = { -26, cooldown = 0.5, levelRequirement = 90, manaMultiplier = 100, storedUses = 1, statInterpolation = { 1, }, }, - [31] = { -26, cooldown = 0.5, levelRequirement = 91, manaMultiplier = 100, storedUses = 1, statInterpolation = { 1, }, }, - [32] = { -25, cooldown = 0.5, levelRequirement = 92, manaMultiplier = 100, storedUses = 1, statInterpolation = { 1, }, }, - [33] = { -25, cooldown = 0.5, levelRequirement = 93, manaMultiplier = 100, storedUses = 1, statInterpolation = { 1, }, }, - [34] = { -25, cooldown = 0.5, levelRequirement = 94, manaMultiplier = 100, storedUses = 1, statInterpolation = { 1, }, }, - [35] = { -25, cooldown = 0.5, levelRequirement = 95, manaMultiplier = 100, storedUses = 1, statInterpolation = { 1, }, }, - [36] = { -24, cooldown = 0.5, levelRequirement = 96, manaMultiplier = 100, storedUses = 1, statInterpolation = { 1, }, }, - [37] = { -24, cooldown = 0.5, levelRequirement = 97, manaMultiplier = 100, storedUses = 1, statInterpolation = { 1, }, }, - [38] = { -24, cooldown = 0.5, levelRequirement = 98, manaMultiplier = 100, storedUses = 1, statInterpolation = { 1, }, }, - [39] = { -24, cooldown = 0.5, levelRequirement = 99, manaMultiplier = 100, storedUses = 1, statInterpolation = { 1, }, }, - [40] = { -23, cooldown = 0.5, levelRequirement = 100, manaMultiplier = 100, storedUses = 1, statInterpolation = { 1, }, }, - }, -} -skills["SupportMomentum"] = { - name = "Momentum", - description = "Supports attack skills that aren't triggered.", - color = 2, - support = true, - requireSkillTypes = { SkillType.Attack, }, - addSkillTypes = { SkillType.Duration, SkillType.Buff, }, - excludeSkillTypes = { SkillType.Triggered, }, - statDescriptionScope = "gem_stat_descriptions", - statMap = { - ["support_momentum_max_stacks"] = { - mod("MomentumStacksMax", "BASE", nil, 0, 0), - }, - ["count_as_momentum_+_if_not_channelled"] = { - mod("MomentumStacksExtra", "BASE", nil, 0, 0), - }, - ["support_momentum_attack_speed_+%_per_stack"] = { - mod("Speed", "INC", nil, ModFlag.Attack, 0, { type = "Multiplier", var = "MomentumStacks" }), - }, - ["support_momentum_movement_speed_+%_per_stack_removed"] = { - mod("MovementSpeed", "INC", nil, 0, 0, { type = "Multiplier", var = "MomentumStacksRemoved" }, { type = "GlobalEffect", effectType = "Buff" }), - }, - }, - baseMods = { - flag("SupportedByMomentum"), - }, - qualityStats = { - Default = { - { "support_momentum_base_buff_duration_ms", 25 }, - }, - }, - constantStats = { - { "support_momentum_base_buff_duration_ms", 1500 }, - { "count_as_momentum_+_if_not_channelled", 1 }, - { "support_momentum_movement_speed_+%_per_stack_removed", 15 }, - }, - stats = { - "support_momentum_attack_speed_+%_per_stack", - "support_momentum_max_stacks", - "support_momentum_stack_while_channelling_base_ms", - }, - levels = { - [1] = { 15, 3, 700, levelRequirement = 1, manaMultiplier = 10, statInterpolation = { 1, 1, 1, }, }, - [2] = { 15, 3, 690, levelRequirement = 2, manaMultiplier = 10, statInterpolation = { 1, 1, 1, }, }, - [3] = { 15, 3, 680, levelRequirement = 4, manaMultiplier = 10, statInterpolation = { 1, 1, 1, }, }, - [4] = { 15, 3, 670, levelRequirement = 7, manaMultiplier = 10, statInterpolation = { 1, 1, 1, }, }, - [5] = { 16, 3, 660, levelRequirement = 11, manaMultiplier = 10, statInterpolation = { 1, 1, 1, }, }, - [6] = { 16, 3, 650, levelRequirement = 16, manaMultiplier = 10, statInterpolation = { 1, 1, 1, }, }, - [7] = { 16, 3, 640, levelRequirement = 20, manaMultiplier = 10, statInterpolation = { 1, 1, 1, }, }, - [8] = { 16, 3, 630, levelRequirement = 24, manaMultiplier = 10, statInterpolation = { 1, 1, 1, }, }, - [9] = { 17, 3, 620, levelRequirement = 28, manaMultiplier = 10, statInterpolation = { 1, 1, 1, }, }, - [10] = { 17, 4, 610, levelRequirement = 32, manaMultiplier = 10, statInterpolation = { 1, 1, 1, }, }, - [11] = { 17, 4, 600, levelRequirement = 36, manaMultiplier = 10, statInterpolation = { 1, 1, 1, }, }, - [12] = { 18, 4, 590, levelRequirement = 40, manaMultiplier = 10, statInterpolation = { 1, 1, 1, }, }, - [13] = { 18, 4, 580, levelRequirement = 44, manaMultiplier = 10, statInterpolation = { 1, 1, 1, }, }, - [14] = { 18, 4, 570, levelRequirement = 48, manaMultiplier = 10, statInterpolation = { 1, 1, 1, }, }, - [15] = { 18, 4, 560, levelRequirement = 52, manaMultiplier = 10, statInterpolation = { 1, 1, 1, }, }, - [16] = { 19, 4, 550, levelRequirement = 56, manaMultiplier = 10, statInterpolation = { 1, 1, 1, }, }, - [17] = { 19, 4, 540, levelRequirement = 60, manaMultiplier = 10, statInterpolation = { 1, 1, 1, }, }, - [18] = { 19, 4, 530, levelRequirement = 64, manaMultiplier = 10, statInterpolation = { 1, 1, 1, }, }, - [19] = { 19, 4, 520, levelRequirement = 67, manaMultiplier = 10, statInterpolation = { 1, 1, 1, }, }, - [20] = { 20, 5, 510, levelRequirement = 70, manaMultiplier = 10, statInterpolation = { 1, 1, 1, }, }, - [21] = { 20, 5, 500, levelRequirement = 72, manaMultiplier = 10, statInterpolation = { 1, 1, 1, }, }, - [22] = { 20, 5, 500, levelRequirement = 74, manaMultiplier = 10, statInterpolation = { 1, 1, 1, }, }, - [23] = { 21, 5, 490, levelRequirement = 76, manaMultiplier = 10, statInterpolation = { 1, 1, 1, }, }, - [24] = { 21, 5, 490, levelRequirement = 78, manaMultiplier = 10, statInterpolation = { 1, 1, 1, }, }, - [25] = { 21, 5, 480, levelRequirement = 80, manaMultiplier = 10, statInterpolation = { 1, 1, 1, }, }, - [26] = { 21, 5, 480, levelRequirement = 82, manaMultiplier = 10, statInterpolation = { 1, 1, 1, }, }, - [27] = { 22, 5, 470, levelRequirement = 84, manaMultiplier = 10, statInterpolation = { 1, 1, 1, }, }, - [28] = { 22, 5, 470, levelRequirement = 86, manaMultiplier = 10, statInterpolation = { 1, 1, 1, }, }, - [29] = { 22, 5, 460, levelRequirement = 88, manaMultiplier = 10, statInterpolation = { 1, 1, 1, }, }, - [30] = { 22, 6, 460, levelRequirement = 90, manaMultiplier = 10, statInterpolation = { 1, 1, 1, }, }, - [31] = { 23, 6, 450, levelRequirement = 91, manaMultiplier = 10, statInterpolation = { 1, 1, 1, }, }, - [32] = { 23, 6, 450, levelRequirement = 92, manaMultiplier = 10, statInterpolation = { 1, 1, 1, }, }, - [33] = { 23, 6, 440, levelRequirement = 93, manaMultiplier = 10, statInterpolation = { 1, 1, 1, }, }, - [34] = { 23, 6, 440, levelRequirement = 94, manaMultiplier = 10, statInterpolation = { 1, 1, 1, }, }, - [35] = { 23, 6, 430, levelRequirement = 95, manaMultiplier = 10, statInterpolation = { 1, 1, 1, }, }, - [36] = { 23, 6, 430, levelRequirement = 96, manaMultiplier = 10, statInterpolation = { 1, 1, 1, }, }, - [37] = { 23, 6, 420, levelRequirement = 97, manaMultiplier = 10, statInterpolation = { 1, 1, 1, }, }, - [38] = { 24, 6, 420, levelRequirement = 98, manaMultiplier = 10, statInterpolation = { 1, 1, 1, }, }, - [39] = { 24, 6, 410, levelRequirement = 99, manaMultiplier = 10, statInterpolation = { 1, 1, 1, }, }, - [40] = { 24, 7, 410, levelRequirement = 100, manaMultiplier = 10, statInterpolation = { 1, 1, 1, }, }, - }, } \ No newline at end of file diff --git a/src/Data/Skills/sup_int.lua b/src/Data/Skills/sup_int.lua index 55bf221bb8..11d29684fc 100644 --- a/src/Data/Skills/sup_int.lua +++ b/src/Data/Skills/sup_int.lua @@ -1296,6 +1296,8 @@ skills["SupportHextouch"] = { }, ["support_hextouch_curse_effect_+%_final"] = { }, + ["hextouch_support_curse_duration_+%_final"] = { + }, }, qualityStats = { Default = { @@ -1369,6 +1371,9 @@ skills["SupportCurseOnHitCurse"] = { ["support_hextouch_curse_effect_+%_final"] = { mod("CurseEffect", "MORE", nil), }, + ["hextouch_support_curse_duration_+%_final"] = { + mod("Duration", "MORE", nil, 0, KeywordFlag.Curse), + }, }, qualityStats = { Default = { @@ -1379,51 +1384,51 @@ skills["SupportCurseOnHitCurse"] = { { "support_hextouch_curse_effect_+%_final", -35 }, }, stats = { - "base_curse_duration_+%", + "hextouch_support_curse_duration_+%_final", "cannot_cast_curses", "curse_triggered_by_hextouch", }, levels = { - [1] = { -50, levelRequirement = 38, statInterpolation = { 1, }, }, - [2] = { -49, levelRequirement = 40, statInterpolation = { 1, }, }, - [3] = { -48, levelRequirement = 42, statInterpolation = { 1, }, }, - [4] = { -47, levelRequirement = 44, statInterpolation = { 1, }, }, - [5] = { -46, levelRequirement = 46, statInterpolation = { 1, }, }, - [6] = { -45, levelRequirement = 48, statInterpolation = { 1, }, }, - [7] = { -44, levelRequirement = 50, statInterpolation = { 1, }, }, - [8] = { -43, levelRequirement = 52, statInterpolation = { 1, }, }, - [9] = { -42, levelRequirement = 54, statInterpolation = { 1, }, }, - [10] = { -41, levelRequirement = 56, statInterpolation = { 1, }, }, - [11] = { -40, levelRequirement = 58, statInterpolation = { 1, }, }, - [12] = { -39, levelRequirement = 60, statInterpolation = { 1, }, }, - [13] = { -38, levelRequirement = 62, statInterpolation = { 1, }, }, - [14] = { -37, levelRequirement = 64, statInterpolation = { 1, }, }, - [15] = { -36, levelRequirement = 65, statInterpolation = { 1, }, }, - [16] = { -35, levelRequirement = 66, statInterpolation = { 1, }, }, - [17] = { -34, levelRequirement = 67, statInterpolation = { 1, }, }, - [18] = { -33, levelRequirement = 68, statInterpolation = { 1, }, }, - [19] = { -32, levelRequirement = 69, statInterpolation = { 1, }, }, - [20] = { -31, levelRequirement = 70, statInterpolation = { 1, }, }, - [21] = { -30, levelRequirement = 72, statInterpolation = { 1, }, }, - [22] = { -29, levelRequirement = 74, statInterpolation = { 1, }, }, - [23] = { -28, levelRequirement = 76, statInterpolation = { 1, }, }, - [24] = { -27, levelRequirement = 78, statInterpolation = { 1, }, }, - [25] = { -26, levelRequirement = 80, statInterpolation = { 1, }, }, - [26] = { -25, levelRequirement = 82, statInterpolation = { 1, }, }, - [27] = { -24, levelRequirement = 84, statInterpolation = { 1, }, }, - [28] = { -23, levelRequirement = 86, statInterpolation = { 1, }, }, - [29] = { -22, levelRequirement = 88, statInterpolation = { 1, }, }, + [1] = { -35, levelRequirement = 38, statInterpolation = { 1, }, }, + [2] = { -35, levelRequirement = 40, statInterpolation = { 1, }, }, + [3] = { -34, levelRequirement = 42, statInterpolation = { 1, }, }, + [4] = { -34, levelRequirement = 44, statInterpolation = { 1, }, }, + [5] = { -33, levelRequirement = 46, statInterpolation = { 1, }, }, + [6] = { -33, levelRequirement = 48, statInterpolation = { 1, }, }, + [7] = { -32, levelRequirement = 50, statInterpolation = { 1, }, }, + [8] = { -32, levelRequirement = 52, statInterpolation = { 1, }, }, + [9] = { -31, levelRequirement = 54, statInterpolation = { 1, }, }, + [10] = { -31, levelRequirement = 56, statInterpolation = { 1, }, }, + [11] = { -30, levelRequirement = 58, statInterpolation = { 1, }, }, + [12] = { -30, levelRequirement = 60, statInterpolation = { 1, }, }, + [13] = { -29, levelRequirement = 62, statInterpolation = { 1, }, }, + [14] = { -29, levelRequirement = 64, statInterpolation = { 1, }, }, + [15] = { -28, levelRequirement = 65, statInterpolation = { 1, }, }, + [16] = { -28, levelRequirement = 66, statInterpolation = { 1, }, }, + [17] = { -27, levelRequirement = 67, statInterpolation = { 1, }, }, + [18] = { -27, levelRequirement = 68, statInterpolation = { 1, }, }, + [19] = { -26, levelRequirement = 69, statInterpolation = { 1, }, }, + [20] = { -26, levelRequirement = 70, statInterpolation = { 1, }, }, + [21] = { -25, levelRequirement = 72, statInterpolation = { 1, }, }, + [22] = { -25, levelRequirement = 74, statInterpolation = { 1, }, }, + [23] = { -24, levelRequirement = 76, statInterpolation = { 1, }, }, + [24] = { -24, levelRequirement = 78, statInterpolation = { 1, }, }, + [25] = { -23, levelRequirement = 80, statInterpolation = { 1, }, }, + [26] = { -23, levelRequirement = 82, statInterpolation = { 1, }, }, + [27] = { -22, levelRequirement = 84, statInterpolation = { 1, }, }, + [28] = { -22, levelRequirement = 86, statInterpolation = { 1, }, }, + [29] = { -21, levelRequirement = 88, statInterpolation = { 1, }, }, [30] = { -21, levelRequirement = 90, statInterpolation = { 1, }, }, [31] = { -21, levelRequirement = 91, statInterpolation = { 1, }, }, [32] = { -20, levelRequirement = 92, statInterpolation = { 1, }, }, [33] = { -20, levelRequirement = 93, statInterpolation = { 1, }, }, - [34] = { -19, levelRequirement = 94, statInterpolation = { 1, }, }, - [35] = { -19, levelRequirement = 95, statInterpolation = { 1, }, }, - [36] = { -18, levelRequirement = 96, statInterpolation = { 1, }, }, - [37] = { -18, levelRequirement = 97, statInterpolation = { 1, }, }, - [38] = { -17, levelRequirement = 98, statInterpolation = { 1, }, }, - [39] = { -17, levelRequirement = 99, statInterpolation = { 1, }, }, - [40] = { -16, levelRequirement = 100, statInterpolation = { 1, }, }, + [34] = { -20, levelRequirement = 94, statInterpolation = { 1, }, }, + [35] = { -20, levelRequirement = 95, statInterpolation = { 1, }, }, + [36] = { -19, levelRequirement = 96, statInterpolation = { 1, }, }, + [37] = { -19, levelRequirement = 97, statInterpolation = { 1, }, }, + [38] = { -19, levelRequirement = 98, statInterpolation = { 1, }, }, + [39] = { -19, levelRequirement = 99, statInterpolation = { 1, }, }, + [40] = { -18, levelRequirement = 100, statInterpolation = { 1, }, }, }, } skills["SupportAwakenedHextouch"] = { @@ -1443,6 +1448,8 @@ skills["SupportAwakenedHextouch"] = { }, ["support_hextouch_curse_effect_+%_final"] = { }, + ["hextouch_support_curse_duration_+%_final"] = { + }, }, constantStats = { { "apply_linked_curses_on_hit_%", 100 }, @@ -1492,6 +1499,9 @@ skills["SupportCurseOnHitCursePlus"] = { ["support_hextouch_curse_effect_+%_final"] = { mod("CurseEffect", "MORE", nil), }, + ["hextouch_support_curse_duration_+%_final"] = { + mod("Duration", "MORE", nil, 0, KeywordFlag.Curse), + }, }, qualityStats = { Default = { @@ -1502,33 +1512,33 @@ skills["SupportCurseOnHitCursePlus"] = { { "support_hextouch_curse_effect_+%_final", -35 }, }, stats = { - "base_curse_duration_+%", + "hextouch_support_curse_duration_+%_final", "chance_to_ignore_hexproof_%", "supported_curse_skill_gem_level_+", "cannot_cast_curses", "curse_triggered_by_hextouch", }, levels = { - [1] = { -30, 10, 0, levelRequirement = 72, statInterpolation = { 1, 1, 1, }, }, - [2] = { -29, 12, 0, levelRequirement = 74, statInterpolation = { 1, 1, 1, }, }, - [3] = { -28, 14, 0, levelRequirement = 76, statInterpolation = { 1, 1, 1, }, }, - [4] = { -27, 16, 0, levelRequirement = 78, statInterpolation = { 1, 1, 1, }, }, - [5] = { -26, 18, 1, levelRequirement = 80, statInterpolation = { 1, 1, 1, }, }, - [6] = { -25, 20, 1, levelRequirement = 82, statInterpolation = { 1, 1, 1, }, }, - [7] = { -24, 21, 1, levelRequirement = 84, statInterpolation = { 1, 1, 1, }, }, - [8] = { -23, 22, 1, levelRequirement = 86, statInterpolation = { 1, 1, 1, }, }, - [9] = { -22, 23, 1, levelRequirement = 88, statInterpolation = { 1, 1, 1, }, }, - [10] = { -22, 24, 1, levelRequirement = 90, statInterpolation = { 1, 1, 1, }, }, - [11] = { -21, 25, 1, levelRequirement = 91, statInterpolation = { 1, 1, 1, }, }, - [12] = { -21, 26, 1, levelRequirement = 92, statInterpolation = { 1, 1, 1, }, }, - [13] = { -20, 27, 1, levelRequirement = 93, statInterpolation = { 1, 1, 1, }, }, - [14] = { -20, 28, 1, levelRequirement = 94, statInterpolation = { 1, 1, 1, }, }, - [15] = { -19, 29, 1, levelRequirement = 95, statInterpolation = { 1, 1, 1, }, }, - [16] = { -19, 30, 1, levelRequirement = 96, statInterpolation = { 1, 1, 1, }, }, - [17] = { -18, 31, 1, levelRequirement = 97, statInterpolation = { 1, 1, 1, }, }, - [18] = { -18, 32, 1, levelRequirement = 98, statInterpolation = { 1, 1, 1, }, }, - [19] = { -17, 33, 1, levelRequirement = 99, statInterpolation = { 1, 1, 1, }, }, - [20] = { -17, 34, 1, levelRequirement = 100, statInterpolation = { 1, 1, 1, }, }, + [1] = { -25, 10, 0, levelRequirement = 72, statInterpolation = { 1, 1, 1, }, }, + [2] = { -25, 12, 0, levelRequirement = 74, statInterpolation = { 1, 1, 1, }, }, + [3] = { -24, 14, 0, levelRequirement = 76, statInterpolation = { 1, 1, 1, }, }, + [4] = { -24, 16, 0, levelRequirement = 78, statInterpolation = { 1, 1, 1, }, }, + [5] = { -23, 18, 1, levelRequirement = 80, statInterpolation = { 1, 1, 1, }, }, + [6] = { -23, 20, 1, levelRequirement = 82, statInterpolation = { 1, 1, 1, }, }, + [7] = { -22, 21, 1, levelRequirement = 84, statInterpolation = { 1, 1, 1, }, }, + [8] = { -22, 22, 1, levelRequirement = 86, statInterpolation = { 1, 1, 1, }, }, + [9] = { -21, 23, 1, levelRequirement = 88, statInterpolation = { 1, 1, 1, }, }, + [10] = { -21, 24, 1, levelRequirement = 90, statInterpolation = { 1, 1, 1, }, }, + [11] = { -20, 25, 1, levelRequirement = 91, statInterpolation = { 1, 1, 1, }, }, + [12] = { -20, 26, 1, levelRequirement = 92, statInterpolation = { 1, 1, 1, }, }, + [13] = { -19, 27, 1, levelRequirement = 93, statInterpolation = { 1, 1, 1, }, }, + [14] = { -19, 28, 1, levelRequirement = 94, statInterpolation = { 1, 1, 1, }, }, + [15] = { -18, 29, 1, levelRequirement = 95, statInterpolation = { 1, 1, 1, }, }, + [16] = { -18, 30, 1, levelRequirement = 96, statInterpolation = { 1, 1, 1, }, }, + [17] = { -17, 31, 1, levelRequirement = 97, statInterpolation = { 1, 1, 1, }, }, + [18] = { -17, 32, 1, levelRequirement = 98, statInterpolation = { 1, 1, 1, }, }, + [19] = { -16, 33, 1, levelRequirement = 99, statInterpolation = { 1, 1, 1, }, }, + [20] = { -16, 34, 1, levelRequirement = 100, statInterpolation = { 1, 1, 1, }, }, }, } skills["SupportPredator"] = { @@ -2058,61 +2068,57 @@ skills["SupportEnergyLeech"] = { ["support_energy_shield_leech_damage_+%_on_full_energy_shield_final"] = { mod("Damage", "MORE", nil, 0, 0, { type = "Condition", var = "FullEnergyShield" }), }, - ["support_energy_shield_leech_damage_+%_while_leeching_energy_shield_final"] = { - mod("Damage", "MORE", nil, 0, 0, { type = "Condition", var = "LeechingEnergyShield" }), - }, }, qualityStats = { Default = { - { "damage_+%_while_es_leeching", 0.5 }, + { "damage_+%_while_es_leeching", 1 }, }, }, stats = { "energy_shield_leech_from_any_damage_permyriad", "support_energy_shield_leech_damage_+%_on_full_energy_shield_final", - "support_energy_shield_leech_damage_+%_while_leeching_energy_shield_final", }, levels = { - [1] = { 150, 10, 15, levelRequirement = 31, manaMultiplier = 30, statInterpolation = { 1, 1, 1, }, }, - [2] = { 150, 10, 15, levelRequirement = 34, manaMultiplier = 30, statInterpolation = { 1, 1, 1, }, }, - [3] = { 150, 10, 16, levelRequirement = 36, manaMultiplier = 30, statInterpolation = { 1, 1, 1, }, }, - [4] = { 160, 10, 16, levelRequirement = 38, manaMultiplier = 30, statInterpolation = { 1, 1, 1, }, }, - [5] = { 160, 11, 17, levelRequirement = 40, manaMultiplier = 30, statInterpolation = { 1, 1, 1, }, }, - [6] = { 160, 11, 17, levelRequirement = 42, manaMultiplier = 30, statInterpolation = { 1, 1, 1, }, }, - [7] = { 160, 11, 18, levelRequirement = 44, manaMultiplier = 30, statInterpolation = { 1, 1, 1, }, }, - [8] = { 160, 11, 18, levelRequirement = 46, manaMultiplier = 30, statInterpolation = { 1, 1, 1, }, }, - [9] = { 170, 12, 19, levelRequirement = 48, manaMultiplier = 30, statInterpolation = { 1, 1, 1, }, }, - [10] = { 170, 12, 19, levelRequirement = 50, manaMultiplier = 30, statInterpolation = { 1, 1, 1, }, }, - [11] = { 170, 12, 20, levelRequirement = 52, manaMultiplier = 30, statInterpolation = { 1, 1, 1, }, }, - [12] = { 170, 12, 20, levelRequirement = 54, manaMultiplier = 30, statInterpolation = { 1, 1, 1, }, }, - [13] = { 170, 13, 21, levelRequirement = 56, manaMultiplier = 30, statInterpolation = { 1, 1, 1, }, }, - [14] = { 180, 13, 21, levelRequirement = 58, manaMultiplier = 30, statInterpolation = { 1, 1, 1, }, }, - [15] = { 180, 13, 22, levelRequirement = 60, manaMultiplier = 30, statInterpolation = { 1, 1, 1, }, }, - [16] = { 180, 13, 22, levelRequirement = 62, manaMultiplier = 30, statInterpolation = { 1, 1, 1, }, }, - [17] = { 180, 14, 23, levelRequirement = 64, manaMultiplier = 30, statInterpolation = { 1, 1, 1, }, }, - [18] = { 180, 14, 23, levelRequirement = 66, manaMultiplier = 30, statInterpolation = { 1, 1, 1, }, }, - [19] = { 190, 14, 24, levelRequirement = 68, manaMultiplier = 30, statInterpolation = { 1, 1, 1, }, }, - [20] = { 190, 14, 24, levelRequirement = 70, manaMultiplier = 30, statInterpolation = { 1, 1, 1, }, }, - [21] = { 190, 15, 25, levelRequirement = 72, manaMultiplier = 30, statInterpolation = { 1, 1, 1, }, }, - [22] = { 190, 15, 25, levelRequirement = 74, manaMultiplier = 30, statInterpolation = { 1, 1, 1, }, }, - [23] = { 190, 15, 26, levelRequirement = 76, manaMultiplier = 30, statInterpolation = { 1, 1, 1, }, }, - [24] = { 200, 15, 26, levelRequirement = 78, manaMultiplier = 30, statInterpolation = { 1, 1, 1, }, }, - [25] = { 200, 16, 27, levelRequirement = 80, manaMultiplier = 30, statInterpolation = { 1, 1, 1, }, }, - [26] = { 200, 16, 27, levelRequirement = 82, manaMultiplier = 30, statInterpolation = { 1, 1, 1, }, }, - [27] = { 200, 16, 28, levelRequirement = 84, manaMultiplier = 30, statInterpolation = { 1, 1, 1, }, }, - [28] = { 200, 16, 28, levelRequirement = 86, manaMultiplier = 30, statInterpolation = { 1, 1, 1, }, }, - [29] = { 210, 17, 29, levelRequirement = 88, manaMultiplier = 30, statInterpolation = { 1, 1, 1, }, }, - [30] = { 210, 17, 29, levelRequirement = 90, manaMultiplier = 30, statInterpolation = { 1, 1, 1, }, }, - [31] = { 210, 17, 29, levelRequirement = 91, manaMultiplier = 30, statInterpolation = { 1, 1, 1, }, }, - [32] = { 210, 17, 30, levelRequirement = 92, manaMultiplier = 30, statInterpolation = { 1, 1, 1, }, }, - [33] = { 210, 17, 30, levelRequirement = 93, manaMultiplier = 30, statInterpolation = { 1, 1, 1, }, }, - [34] = { 210, 17, 30, levelRequirement = 94, manaMultiplier = 30, statInterpolation = { 1, 1, 1, }, }, - [35] = { 210, 17, 30, levelRequirement = 95, manaMultiplier = 30, statInterpolation = { 1, 1, 1, }, }, - [36] = { 210, 18, 31, levelRequirement = 96, manaMultiplier = 30, statInterpolation = { 1, 1, 1, }, }, - [37] = { 220, 18, 31, levelRequirement = 97, manaMultiplier = 30, statInterpolation = { 1, 1, 1, }, }, - [38] = { 220, 18, 31, levelRequirement = 98, manaMultiplier = 30, statInterpolation = { 1, 1, 1, }, }, - [39] = { 220, 18, 31, levelRequirement = 99, manaMultiplier = 30, statInterpolation = { 1, 1, 1, }, }, - [40] = { 220, 18, 32, levelRequirement = 100, manaMultiplier = 30, statInterpolation = { 1, 1, 1, }, }, + [1] = { 150, 15, levelRequirement = 31, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + [2] = { 150, 15, levelRequirement = 34, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + [3] = { 150, 16, levelRequirement = 36, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + [4] = { 160, 16, levelRequirement = 38, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + [5] = { 160, 17, levelRequirement = 40, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + [6] = { 160, 17, levelRequirement = 42, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + [7] = { 160, 18, levelRequirement = 44, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + [8] = { 160, 18, levelRequirement = 46, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + [9] = { 170, 19, levelRequirement = 48, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + [10] = { 170, 19, levelRequirement = 50, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + [11] = { 170, 20, levelRequirement = 52, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + [12] = { 170, 20, levelRequirement = 54, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + [13] = { 170, 21, levelRequirement = 56, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + [14] = { 180, 21, levelRequirement = 58, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + [15] = { 180, 22, levelRequirement = 60, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + [16] = { 180, 22, levelRequirement = 62, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + [17] = { 180, 23, levelRequirement = 64, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + [18] = { 180, 23, levelRequirement = 66, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + [19] = { 190, 24, levelRequirement = 68, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + [20] = { 190, 24, levelRequirement = 70, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + [21] = { 190, 25, levelRequirement = 72, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + [22] = { 190, 25, levelRequirement = 74, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + [23] = { 190, 26, levelRequirement = 76, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + [24] = { 200, 26, levelRequirement = 78, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + [25] = { 200, 27, levelRequirement = 80, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + [26] = { 200, 27, levelRequirement = 82, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + [27] = { 200, 28, levelRequirement = 84, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + [28] = { 200, 28, levelRequirement = 86, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + [29] = { 210, 29, levelRequirement = 88, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + [30] = { 210, 29, levelRequirement = 90, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + [31] = { 210, 29, levelRequirement = 91, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + [32] = { 210, 30, levelRequirement = 92, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + [33] = { 210, 30, levelRequirement = 93, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + [34] = { 210, 30, levelRequirement = 94, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + [35] = { 210, 30, levelRequirement = 95, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + [36] = { 210, 31, levelRequirement = 96, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + [37] = { 220, 31, levelRequirement = 97, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + [38] = { 220, 31, levelRequirement = 98, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + [39] = { 220, 31, levelRequirement = 99, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, + [40] = { 220, 32, levelRequirement = 100, manaMultiplier = 30, statInterpolation = { 1, 1, }, }, }, } skills["SupportEnlighten"] = { @@ -2347,7 +2353,7 @@ skills["SupportFocusedChannelling"] = { "support_focus_channel_damage_+%_final_per_second_channelling_up_to_60%", }, levels = { - [1] = { 15, levelRequirement = 31, statInterpolation = { 1, }, }, + [1] = { 9, levelRequirement = 31, statInterpolation = { 1, }, }, [2] = { 15, levelRequirement = 34, statInterpolation = { 1, }, }, [3] = { 16, levelRequirement = 36, statInterpolation = { 1, }, }, [4] = { 16, levelRequirement = 38, statInterpolation = { 1, }, }, @@ -3557,6 +3563,145 @@ skills["SupportItemRarity"] = { [40] = { 74, levelRequirement = 100, statInterpolation = { 1, }, }, }, } +skills["SupportKineticInstability"] = { + name = "Kinetic Instability", + description = "Supports Wand Attacks, granting them a chance to trigger Kinetic Flux on kill. Cannot support triggered skills or skills used by things other than you. Cannot modify the skills of minions.", + color = 3, + support = true, + requireSkillTypes = { SkillType.RangedAttack, }, + addSkillTypes = { }, + excludeSkillTypes = { SkillType.Trapped, SkillType.RemoteMined, SkillType.SummonsTotem, SkillType.DisallowTriggerSupports, SkillType.Minion, }, + ignoreMinionTypes = true, + weaponTypes = { + ["Wand"] = true, + }, + statDescriptionScope = "gem_stat_descriptions", + qualityStats = { + Default = { + { "attack_damage_+%", 0.5 }, + }, + }, + constantStats = { + { "support_kinetic_instability_chance_to_create_instability_on_kill_%", 100 }, + }, + stats = { + }, + levels = { + [1] = { levelRequirement = 18, manaMultiplier = 20, }, + [2] = { levelRequirement = 22, manaMultiplier = 20, }, + [3] = { levelRequirement = 26, manaMultiplier = 20, }, + [4] = { levelRequirement = 29, manaMultiplier = 20, }, + [5] = { levelRequirement = 32, manaMultiplier = 20, }, + [6] = { levelRequirement = 35, manaMultiplier = 20, }, + [7] = { levelRequirement = 38, manaMultiplier = 20, }, + [8] = { levelRequirement = 41, manaMultiplier = 20, }, + [9] = { levelRequirement = 44, manaMultiplier = 20, }, + [10] = { levelRequirement = 47, manaMultiplier = 20, }, + [11] = { levelRequirement = 50, manaMultiplier = 20, }, + [12] = { levelRequirement = 53, manaMultiplier = 20, }, + [13] = { levelRequirement = 56, manaMultiplier = 20, }, + [14] = { levelRequirement = 58, manaMultiplier = 20, }, + [15] = { levelRequirement = 60, manaMultiplier = 20, }, + [16] = { levelRequirement = 62, manaMultiplier = 20, }, + [17] = { levelRequirement = 64, manaMultiplier = 20, }, + [18] = { levelRequirement = 66, manaMultiplier = 20, }, + [19] = { levelRequirement = 68, manaMultiplier = 20, }, + [20] = { levelRequirement = 70, manaMultiplier = 20, }, + [21] = { levelRequirement = 72, manaMultiplier = 20, }, + [22] = { levelRequirement = 74, manaMultiplier = 20, }, + [23] = { levelRequirement = 76, manaMultiplier = 20, }, + [24] = { levelRequirement = 78, manaMultiplier = 20, }, + [25] = { levelRequirement = 80, manaMultiplier = 20, }, + [26] = { levelRequirement = 82, manaMultiplier = 20, }, + [27] = { levelRequirement = 84, manaMultiplier = 20, }, + [28] = { levelRequirement = 86, manaMultiplier = 20, }, + [29] = { levelRequirement = 88, manaMultiplier = 20, }, + [30] = { levelRequirement = 90, manaMultiplier = 20, }, + [31] = { levelRequirement = 91, manaMultiplier = 20, }, + [32] = { levelRequirement = 92, manaMultiplier = 20, }, + [33] = { levelRequirement = 93, manaMultiplier = 20, }, + [34] = { levelRequirement = 94, manaMultiplier = 20, }, + [35] = { levelRequirement = 95, manaMultiplier = 20, }, + [36] = { levelRequirement = 96, manaMultiplier = 20, }, + [37] = { levelRequirement = 97, manaMultiplier = 20, }, + [38] = { levelRequirement = 98, manaMultiplier = 20, }, + [39] = { levelRequirement = 99, manaMultiplier = 20, }, + [40] = { levelRequirement = 100, manaMultiplier = 20, }, + }, +} +skills["TriggeredSupportKineticInstability"] = { + name = "Kinetic Flux", + baseTypeName = "Kinetic Flux", + color = 3, + description = "Gathers kinetic energy into an anomaly at the targeted location, which will explode when enemies are near it, dealing your wand's damage in an area. The anomaly will dissipate after a duration.", + skillTypes = { [SkillType.Area] = true, [SkillType.Triggered] = true, [SkillType.Triggerable] = true, [SkillType.SkillGrantedBySupport] = true, [SkillType.InbuiltTrigger] = true, [SkillType.RangedAttack] = true, [SkillType.Attack] = true, [SkillType.Duration] = true, [SkillType.WandAttack] = true, }, + weaponTypes = { + ["Wand"] = true, + }, + statDescriptionScope = "skill_stat_descriptions", + castTime = 1, + baseFlags = { + attack = true, + area = true, + duration = true, + }, + baseMods = { + skill("showAverage", true), + }, + constantStats = { + { "active_skill_base_area_of_effect_radius", 12 }, + { "base_skill_effect_duration", 6000 }, + { "kinetic_instability_maximum_number_of_instability_orbs_allowed", 20 }, + { "active_skill_additive_spell_damage_modifiers_apply_to_attack_damage_at_%_value", 150 }, + }, + stats = { + "is_area_damage", + "triggered_by_kinetic_instability_support", + "quality_display_spell_damage_to_attack_damage_is_gem", + }, + levels = { + [1] = { baseMultiplier = 1.32, damageEffectiveness = 1.32, levelRequirement = 18, }, + [2] = { baseMultiplier = 1.329, damageEffectiveness = 1.329, levelRequirement = 22, }, + [3] = { baseMultiplier = 1.339, damageEffectiveness = 1.339, levelRequirement = 26, }, + [4] = { baseMultiplier = 1.348, damageEffectiveness = 1.348, levelRequirement = 29, }, + [5] = { baseMultiplier = 1.358, damageEffectiveness = 1.358, levelRequirement = 32, }, + [6] = { baseMultiplier = 1.367, damageEffectiveness = 1.367, levelRequirement = 35, }, + [7] = { baseMultiplier = 1.377, damageEffectiveness = 1.377, levelRequirement = 38, }, + [8] = { baseMultiplier = 1.386, damageEffectiveness = 1.386, levelRequirement = 41, }, + [9] = { baseMultiplier = 1.396, damageEffectiveness = 1.396, levelRequirement = 44, }, + [10] = { baseMultiplier = 1.405, damageEffectiveness = 1.405, levelRequirement = 47, }, + [11] = { baseMultiplier = 1.415, damageEffectiveness = 1.415, levelRequirement = 50, }, + [12] = { baseMultiplier = 1.424, damageEffectiveness = 1.424, levelRequirement = 53, }, + [13] = { baseMultiplier = 1.434, damageEffectiveness = 1.434, levelRequirement = 56, }, + [14] = { baseMultiplier = 1.443, damageEffectiveness = 1.443, levelRequirement = 58, }, + [15] = { baseMultiplier = 1.453, damageEffectiveness = 1.453, levelRequirement = 60, }, + [16] = { baseMultiplier = 1.462, damageEffectiveness = 1.462, levelRequirement = 62, }, + [17] = { baseMultiplier = 1.472, damageEffectiveness = 1.472, levelRequirement = 64, }, + [18] = { baseMultiplier = 1.481, damageEffectiveness = 1.481, levelRequirement = 66, }, + [19] = { baseMultiplier = 1.491, damageEffectiveness = 1.491, levelRequirement = 68, }, + [20] = { baseMultiplier = 1.5, damageEffectiveness = 1.5, levelRequirement = 70, }, + [21] = { baseMultiplier = 1.509, damageEffectiveness = 1.509, levelRequirement = 72, }, + [22] = { baseMultiplier = 1.519, damageEffectiveness = 1.519, levelRequirement = 74, }, + [23] = { baseMultiplier = 1.528, damageEffectiveness = 1.528, levelRequirement = 76, }, + [24] = { baseMultiplier = 1.538, damageEffectiveness = 1.538, levelRequirement = 78, }, + [25] = { baseMultiplier = 1.547, damageEffectiveness = 1.547, levelRequirement = 80, }, + [26] = { baseMultiplier = 1.557, damageEffectiveness = 1.557, levelRequirement = 82, }, + [27] = { baseMultiplier = 1.566, damageEffectiveness = 1.566, levelRequirement = 84, }, + [28] = { baseMultiplier = 1.576, damageEffectiveness = 1.576, levelRequirement = 86, }, + [29] = { baseMultiplier = 1.585, damageEffectiveness = 1.585, levelRequirement = 88, }, + [30] = { baseMultiplier = 1.595, damageEffectiveness = 1.595, levelRequirement = 90, }, + [31] = { baseMultiplier = 1.599, damageEffectiveness = 1.599, levelRequirement = 91, }, + [32] = { baseMultiplier = 1.604, damageEffectiveness = 1.604, levelRequirement = 92, }, + [33] = { baseMultiplier = 1.609, damageEffectiveness = 1.609, levelRequirement = 93, }, + [34] = { baseMultiplier = 1.614, damageEffectiveness = 1.614, levelRequirement = 94, }, + [35] = { baseMultiplier = 1.618, damageEffectiveness = 1.618, levelRequirement = 95, }, + [36] = { baseMultiplier = 1.623, damageEffectiveness = 1.623, levelRequirement = 96, }, + [37] = { baseMultiplier = 1.628, damageEffectiveness = 1.628, levelRequirement = 97, }, + [38] = { baseMultiplier = 1.633, damageEffectiveness = 1.633, levelRequirement = 98, }, + [39] = { baseMultiplier = 1.637, damageEffectiveness = 1.637, levelRequirement = 99, }, + [40] = { baseMultiplier = 1.642, damageEffectiveness = 1.642, levelRequirement = 100, }, + }, +} skills["SupportLightningPenetration"] = { name = "Lightning Penetration", description = "Supports any skill that hits enemies, making those hits penetrate enemy lightning resistance.", @@ -3617,6 +3762,144 @@ skills["SupportLightningPenetration"] = { [40] = { 45, levelRequirement = 100, manaMultiplier = 30, statInterpolation = { 1, }, }, }, } +skills["SupportLivingLightning"] = { + name = "Living Lightning", + description = "Supports Skills which cause Damaging Hits, causing them to trigger Summon Living Lightning when dealing lightning damage. Cannot support skills used by totems, traps, or mines. Cannot modify the skills of Minions.", + color = 3, + support = true, + requireSkillTypes = { SkillType.Attack, SkillType.Damage, }, + addSkillTypes = { SkillType.CreatesMinion, SkillType.MinionsCanExplode, }, + excludeSkillTypes = { SkillType.Trapped, SkillType.RemoteMined, SkillType.SummonsTotem, SkillType.DisallowTriggerSupports, }, + ignoreMinionTypes = true, + statDescriptionScope = "gem_stat_descriptions", + stats = { + "summon_living_lightning_on_lightning_hit", + }, + levels = { + [1] = { levelRequirement = 18, manaMultiplier = 20, }, + [2] = { levelRequirement = 22, manaMultiplier = 20, }, + [3] = { levelRequirement = 26, manaMultiplier = 20, }, + [4] = { levelRequirement = 29, manaMultiplier = 20, }, + [5] = { levelRequirement = 32, manaMultiplier = 20, }, + [6] = { levelRequirement = 35, manaMultiplier = 20, }, + [7] = { levelRequirement = 38, manaMultiplier = 20, }, + [8] = { levelRequirement = 41, manaMultiplier = 20, }, + [9] = { levelRequirement = 44, manaMultiplier = 20, }, + [10] = { levelRequirement = 47, manaMultiplier = 20, }, + [11] = { levelRequirement = 50, manaMultiplier = 20, }, + [12] = { levelRequirement = 53, manaMultiplier = 20, }, + [13] = { levelRequirement = 56, manaMultiplier = 20, }, + [14] = { levelRequirement = 58, manaMultiplier = 20, }, + [15] = { levelRequirement = 60, manaMultiplier = 20, }, + [16] = { levelRequirement = 62, manaMultiplier = 20, }, + [17] = { levelRequirement = 64, manaMultiplier = 20, }, + [18] = { levelRequirement = 66, manaMultiplier = 20, }, + [19] = { levelRequirement = 68, manaMultiplier = 20, }, + [20] = { levelRequirement = 70, manaMultiplier = 20, }, + [21] = { levelRequirement = 72, manaMultiplier = 20, }, + [22] = { levelRequirement = 74, manaMultiplier = 20, }, + [23] = { levelRequirement = 76, manaMultiplier = 20, }, + [24] = { levelRequirement = 78, manaMultiplier = 20, }, + [25] = { levelRequirement = 80, manaMultiplier = 20, }, + [26] = { levelRequirement = 82, manaMultiplier = 20, }, + [27] = { levelRequirement = 84, manaMultiplier = 20, }, + [28] = { levelRequirement = 86, manaMultiplier = 20, }, + [29] = { levelRequirement = 88, manaMultiplier = 20, }, + [30] = { levelRequirement = 90, manaMultiplier = 20, }, + [31] = { levelRequirement = 91, manaMultiplier = 20, }, + [32] = { levelRequirement = 92, manaMultiplier = 20, }, + [33] = { levelRequirement = 93, manaMultiplier = 20, }, + [34] = { levelRequirement = 94, manaMultiplier = 20, }, + [35] = { levelRequirement = 95, manaMultiplier = 20, }, + [36] = { levelRequirement = 96, manaMultiplier = 20, }, + [37] = { levelRequirement = 97, manaMultiplier = 20, }, + [38] = { levelRequirement = 98, manaMultiplier = 20, }, + [39] = { levelRequirement = 99, manaMultiplier = 20, }, + [40] = { levelRequirement = 100, manaMultiplier = 20, }, + }, +} +skills["TriggeredSupportLivingLightning"] = { + name = "Summon Living Lightning", + baseTypeName = "Summon Living Lightning", + color = 3, + description = "Summons Living Lightning Minions, which target nearby enemies with a number of Melee Chaining Attacks before dissipating. Enemies will not directly engage these Minions, and can pass through them.", + skillTypes = { [SkillType.Spell] = true, [SkillType.Minion] = true, [SkillType.Duration] = true, [SkillType.InbuiltTrigger] = true, [SkillType.CreatesMinion] = true, [SkillType.Triggerable] = true, [SkillType.Triggered] = true, [SkillType.Cooldown] = true, [SkillType.SkillGrantedBySupport] = true, [SkillType.MinionsAreUndamageable] = true, }, + minionSkillTypes = { [SkillType.Attack] = true, [SkillType.Lightning] = true, [SkillType.Chains] = true, [SkillType.Cooldown] = true, [SkillType.MeleeSingleTarget] = true, [SkillType.Multistrikeable] = true, [SkillType.Melee] = true, }, + statDescriptionScope = "minion_spell_skill_stat_descriptions", + castTime = 1, + addMinionList = { + "LivingLightningMinion" + }, + statMap = { + ["number_of_chains"] = { + mod("MinionModifier", "LIST", { mod = mod("ChainCountMax", "BASE", nil) }), + }, + }, + baseFlags = { + spell = true, + minion = true, + }, + qualityStats = { + Default = { + { "living_lightning_number_of_attacks", 0.1 }, + }, + }, + constantStats = { + { "base_skill_effect_duration", 5000 }, + { "living_lightning_beam_attack_time_ms", 140 }, + { "living_lightning_number_of_attacks", 3 }, + { "number_of_chains", 3 }, + { "living_lightning_number_of_minions_to_spawn", 1 }, + { "minion_base_physical_damage_%_to_convert_to_lightning", 100 }, + }, + stats = { + "base_number_of_living_lightning_allowed", + "living_lightning_triggered_on_lightning_hit", + "quality_display_living_lightning_is_gem", + }, + levels = { + [1] = { 5, cooldown = 0.2, levelRequirement = 18, storedUses = 5, statInterpolation = { 1, }, }, + [2] = { 5, cooldown = 0.2, levelRequirement = 22, storedUses = 5, statInterpolation = { 1, }, }, + [3] = { 5, cooldown = 0.2, levelRequirement = 26, storedUses = 5, statInterpolation = { 1, }, }, + [4] = { 5, cooldown = 0.2, levelRequirement = 29, storedUses = 5, statInterpolation = { 1, }, }, + [5] = { 6, cooldown = 0.2, levelRequirement = 32, storedUses = 5, statInterpolation = { 1, }, }, + [6] = { 6, cooldown = 0.2, levelRequirement = 35, storedUses = 5, statInterpolation = { 1, }, }, + [7] = { 6, cooldown = 0.2, levelRequirement = 38, storedUses = 5, statInterpolation = { 1, }, }, + [8] = { 6, cooldown = 0.2, levelRequirement = 41, storedUses = 5, statInterpolation = { 1, }, }, + [9] = { 6, cooldown = 0.2, levelRequirement = 44, storedUses = 5, statInterpolation = { 1, }, }, + [10] = { 6, cooldown = 0.2, levelRequirement = 47, storedUses = 5, statInterpolation = { 1, }, }, + [11] = { 7, cooldown = 0.2, levelRequirement = 50, storedUses = 5, statInterpolation = { 1, }, }, + [12] = { 7, cooldown = 0.2, levelRequirement = 53, storedUses = 5, statInterpolation = { 1, }, }, + [13] = { 7, cooldown = 0.2, levelRequirement = 56, storedUses = 5, statInterpolation = { 1, }, }, + [14] = { 7, cooldown = 0.2, levelRequirement = 58, storedUses = 5, statInterpolation = { 1, }, }, + [15] = { 7, cooldown = 0.2, levelRequirement = 60, storedUses = 5, statInterpolation = { 1, }, }, + [16] = { 7, cooldown = 0.2, levelRequirement = 62, storedUses = 5, statInterpolation = { 1, }, }, + [17] = { 7, cooldown = 0.2, levelRequirement = 64, storedUses = 5, statInterpolation = { 1, }, }, + [18] = { 8, cooldown = 0.2, levelRequirement = 66, storedUses = 5, statInterpolation = { 1, }, }, + [19] = { 8, cooldown = 0.2, levelRequirement = 68, storedUses = 5, statInterpolation = { 1, }, }, + [20] = { 8, cooldown = 0.2, levelRequirement = 70, storedUses = 5, statInterpolation = { 1, }, }, + [21] = { 8, cooldown = 0.2, levelRequirement = 72, storedUses = 5, statInterpolation = { 1, }, }, + [22] = { 8, cooldown = 0.2, levelRequirement = 74, storedUses = 5, statInterpolation = { 1, }, }, + [23] = { 8, cooldown = 0.2, levelRequirement = 76, storedUses = 5, statInterpolation = { 1, }, }, + [24] = { 8, cooldown = 0.2, levelRequirement = 78, storedUses = 5, statInterpolation = { 1, }, }, + [25] = { 9, cooldown = 0.2, levelRequirement = 80, storedUses = 5, statInterpolation = { 1, }, }, + [26] = { 9, cooldown = 0.2, levelRequirement = 82, storedUses = 5, statInterpolation = { 1, }, }, + [27] = { 9, cooldown = 0.2, levelRequirement = 84, storedUses = 5, statInterpolation = { 1, }, }, + [28] = { 9, cooldown = 0.2, levelRequirement = 86, storedUses = 5, statInterpolation = { 1, }, }, + [29] = { 9, cooldown = 0.2, levelRequirement = 88, storedUses = 5, statInterpolation = { 1, }, }, + [30] = { 9, cooldown = 0.2, levelRequirement = 90, storedUses = 5, statInterpolation = { 1, }, }, + [31] = { 10, cooldown = 0.2, levelRequirement = 91, storedUses = 5, statInterpolation = { 1, }, }, + [32] = { 10, cooldown = 0.2, levelRequirement = 92, storedUses = 5, statInterpolation = { 1, }, }, + [33] = { 10, cooldown = 0.2, levelRequirement = 93, storedUses = 5, statInterpolation = { 1, }, }, + [34] = { 10, cooldown = 0.2, levelRequirement = 94, storedUses = 5, statInterpolation = { 1, }, }, + [35] = { 10, cooldown = 0.2, levelRequirement = 95, storedUses = 5, statInterpolation = { 1, }, }, + [36] = { 10, cooldown = 0.2, levelRequirement = 96, storedUses = 5, statInterpolation = { 1, }, }, + [37] = { 10, cooldown = 0.2, levelRequirement = 97, storedUses = 5, statInterpolation = { 1, }, }, + [38] = { 11, cooldown = 0.2, levelRequirement = 98, storedUses = 5, statInterpolation = { 1, }, }, + [39] = { 11, cooldown = 0.2, levelRequirement = 99, storedUses = 5, statInterpolation = { 1, }, }, + [40] = { 11, cooldown = 0.2, levelRequirement = 100, storedUses = 5, statInterpolation = { 1, }, }, + }, +} skills["SupportAwakenedLightningPenetration"] = { name = "Awakened Lightning Penetration", description = "Supports any skill that hits enemies, making those hits penetrate enemy lightning resistance.", diff --git a/src/Data/Skills/sup_str.lua b/src/Data/Skills/sup_str.lua index 72fb365dde..b4f4df9474 100644 --- a/src/Data/Skills/sup_str.lua +++ b/src/Data/Skills/sup_str.lua @@ -1207,46 +1207,46 @@ skills["SupportCorruptingCry"] = { "base_skill_cost_life_instead_of_mana", }, levels = { - [1] = { 66.666668156783, 4, 1, levelRequirement = 31, manaMultiplier = 900, statInterpolation = { 3, 1, 1, }, }, - [2] = { 66.666668156783, 4, 1, levelRequirement = 34, manaMultiplier = 900, statInterpolation = { 3, 1, 1, }, }, - [3] = { 66.666668156783, 4, 1, levelRequirement = 36, manaMultiplier = 900, statInterpolation = { 3, 1, 1, }, }, - [4] = { 66.666668156783, 4, 1, levelRequirement = 38, manaMultiplier = 900, statInterpolation = { 3, 1, 1, }, }, - [5] = { 66.666668156783, 4, 1, levelRequirement = 40, manaMultiplier = 900, statInterpolation = { 3, 1, 1, }, }, - [6] = { 66.666668156783, 4, 1, levelRequirement = 42, manaMultiplier = 900, statInterpolation = { 3, 1, 1, }, }, - [7] = { 66.666668156783, 4, 1, levelRequirement = 44, manaMultiplier = 900, statInterpolation = { 3, 1, 1, }, }, - [8] = { 66.666668156783, 4, 1, levelRequirement = 46, manaMultiplier = 900, statInterpolation = { 3, 1, 1, }, }, - [9] = { 66.666668156783, 4, 1, levelRequirement = 48, manaMultiplier = 900, statInterpolation = { 3, 1, 1, }, }, - [10] = { 66.666668156783, 4, 1, levelRequirement = 50, manaMultiplier = 900, statInterpolation = { 3, 1, 1, }, }, - [11] = { 66.666668156783, 4, 1, levelRequirement = 52, manaMultiplier = 900, statInterpolation = { 3, 1, 1, }, }, - [12] = { 66.666668156783, 4, 1, levelRequirement = 54, manaMultiplier = 900, statInterpolation = { 3, 1, 1, }, }, - [13] = { 66.666668156783, 4, 1, levelRequirement = 56, manaMultiplier = 900, statInterpolation = { 3, 1, 1, }, }, - [14] = { 66.666668156783, 4, 1, levelRequirement = 58, manaMultiplier = 900, statInterpolation = { 3, 1, 1, }, }, - [15] = { 66.666668156783, 4, 1, levelRequirement = 60, manaMultiplier = 900, statInterpolation = { 3, 1, 1, }, }, - [16] = { 66.666668156783, 4, 1, levelRequirement = 62, manaMultiplier = 900, statInterpolation = { 3, 1, 1, }, }, - [17] = { 66.666668156783, 4, 1, levelRequirement = 64, manaMultiplier = 900, statInterpolation = { 3, 1, 1, }, }, - [18] = { 66.666668156783, 4, 1, levelRequirement = 66, manaMultiplier = 900, statInterpolation = { 3, 1, 1, }, }, - [19] = { 66.666668156783, 4, 1, levelRequirement = 68, manaMultiplier = 900, statInterpolation = { 3, 1, 1, }, }, - [20] = { 66.666668156783, 4, 1, levelRequirement = 70, manaMultiplier = 900, statInterpolation = { 3, 1, 1, }, }, - [21] = { 66.666668156783, 4, 1, levelRequirement = 72, manaMultiplier = 900, statInterpolation = { 3, 1, 1, }, }, - [22] = { 66.666668156783, 4, 1, levelRequirement = 74, manaMultiplier = 900, statInterpolation = { 3, 1, 1, }, }, - [23] = { 66.666668156783, 4, 1, levelRequirement = 76, manaMultiplier = 900, statInterpolation = { 3, 1, 1, }, }, - [24] = { 66.666668156783, 4, 1, levelRequirement = 78, manaMultiplier = 900, statInterpolation = { 3, 1, 1, }, }, - [25] = { 66.666668156783, 4, 1, levelRequirement = 80, manaMultiplier = 900, statInterpolation = { 3, 1, 1, }, }, - [26] = { 66.666668156783, 4, 1, levelRequirement = 82, manaMultiplier = 900, statInterpolation = { 3, 1, 1, }, }, - [27] = { 66.666668156783, 4, 1, levelRequirement = 84, manaMultiplier = 900, statInterpolation = { 3, 1, 1, }, }, - [28] = { 66.666668156783, 4, 1, levelRequirement = 86, manaMultiplier = 900, statInterpolation = { 3, 1, 1, }, }, - [29] = { 66.666668156783, 4, 1, levelRequirement = 88, manaMultiplier = 900, statInterpolation = { 3, 1, 1, }, }, - [30] = { 66.666668156783, 4, 1, levelRequirement = 90, manaMultiplier = 900, statInterpolation = { 3, 1, 1, }, }, - [31] = { 66.666668156783, 4, 1, levelRequirement = 91, manaMultiplier = 900, statInterpolation = { 3, 1, 1, }, }, - [32] = { 66.666668156783, 4, 1, levelRequirement = 92, manaMultiplier = 900, statInterpolation = { 3, 1, 1, }, }, - [33] = { 66.666668156783, 4, 1, levelRequirement = 93, manaMultiplier = 900, statInterpolation = { 3, 1, 1, }, }, - [34] = { 66.666668156783, 4, 1, levelRequirement = 94, manaMultiplier = 900, statInterpolation = { 3, 1, 1, }, }, - [35] = { 66.666668156783, 4, 1, levelRequirement = 95, manaMultiplier = 900, statInterpolation = { 3, 1, 1, }, }, - [36] = { 66.666668156783, 4, 1, levelRequirement = 96, manaMultiplier = 900, statInterpolation = { 3, 1, 1, }, }, - [37] = { 66.666668156783, 4, 1, levelRequirement = 97, manaMultiplier = 900, statInterpolation = { 3, 1, 1, }, }, - [38] = { 66.666668156783, 4, 1, levelRequirement = 98, manaMultiplier = 900, statInterpolation = { 3, 1, 1, }, }, - [39] = { 66.666668156783, 4, 1, levelRequirement = 99, manaMultiplier = 900, statInterpolation = { 3, 1, 1, }, }, - [40] = { 66.666668156783, 4, 1, levelRequirement = 100, manaMultiplier = 900, statInterpolation = { 3, 1, 1, }, }, + [1] = { 76.666666790843, 4, 1, levelRequirement = 31, manaMultiplier = 900, statInterpolation = { 3, 1, 1, }, }, + [2] = { 76.666666790843, 4, 1, levelRequirement = 34, manaMultiplier = 900, statInterpolation = { 3, 1, 1, }, }, + [3] = { 76.666666790843, 4, 1, levelRequirement = 36, manaMultiplier = 900, statInterpolation = { 3, 1, 1, }, }, + [4] = { 76.666666790843, 4, 1, levelRequirement = 38, manaMultiplier = 900, statInterpolation = { 3, 1, 1, }, }, + [5] = { 76.666666790843, 4, 1, levelRequirement = 40, manaMultiplier = 900, statInterpolation = { 3, 1, 1, }, }, + [6] = { 76.666666790843, 4, 1, levelRequirement = 42, manaMultiplier = 900, statInterpolation = { 3, 1, 1, }, }, + [7] = { 76.666666790843, 4, 1, levelRequirement = 44, manaMultiplier = 900, statInterpolation = { 3, 1, 1, }, }, + [8] = { 76.666666790843, 4, 1, levelRequirement = 46, manaMultiplier = 900, statInterpolation = { 3, 1, 1, }, }, + [9] = { 76.666666790843, 4, 1, levelRequirement = 48, manaMultiplier = 900, statInterpolation = { 3, 1, 1, }, }, + [10] = { 76.666666790843, 4, 1, levelRequirement = 50, manaMultiplier = 900, statInterpolation = { 3, 1, 1, }, }, + [11] = { 76.666666790843, 4, 1, levelRequirement = 52, manaMultiplier = 900, statInterpolation = { 3, 1, 1, }, }, + [12] = { 76.666666790843, 4, 1, levelRequirement = 54, manaMultiplier = 900, statInterpolation = { 3, 1, 1, }, }, + [13] = { 76.666666790843, 4, 1, levelRequirement = 56, manaMultiplier = 900, statInterpolation = { 3, 1, 1, }, }, + [14] = { 76.666666790843, 4, 1, levelRequirement = 58, manaMultiplier = 900, statInterpolation = { 3, 1, 1, }, }, + [15] = { 76.666666790843, 4, 1, levelRequirement = 60, manaMultiplier = 900, statInterpolation = { 3, 1, 1, }, }, + [16] = { 76.666666790843, 4, 1, levelRequirement = 62, manaMultiplier = 900, statInterpolation = { 3, 1, 1, }, }, + [17] = { 76.666666790843, 4, 1, levelRequirement = 64, manaMultiplier = 900, statInterpolation = { 3, 1, 1, }, }, + [18] = { 76.666666790843, 4, 1, levelRequirement = 66, manaMultiplier = 900, statInterpolation = { 3, 1, 1, }, }, + [19] = { 76.666666790843, 4, 1, levelRequirement = 68, manaMultiplier = 900, statInterpolation = { 3, 1, 1, }, }, + [20] = { 76.666666790843, 4, 1, levelRequirement = 70, manaMultiplier = 900, statInterpolation = { 3, 1, 1, }, }, + [21] = { 76.666666790843, 4, 1, levelRequirement = 72, manaMultiplier = 900, statInterpolation = { 3, 1, 1, }, }, + [22] = { 76.666666790843, 4, 1, levelRequirement = 74, manaMultiplier = 900, statInterpolation = { 3, 1, 1, }, }, + [23] = { 76.666666790843, 4, 1, levelRequirement = 76, manaMultiplier = 900, statInterpolation = { 3, 1, 1, }, }, + [24] = { 76.666666790843, 4, 1, levelRequirement = 78, manaMultiplier = 900, statInterpolation = { 3, 1, 1, }, }, + [25] = { 76.666666790843, 4, 1, levelRequirement = 80, manaMultiplier = 900, statInterpolation = { 3, 1, 1, }, }, + [26] = { 76.666666790843, 4, 1, levelRequirement = 82, manaMultiplier = 900, statInterpolation = { 3, 1, 1, }, }, + [27] = { 76.666666790843, 4, 1, levelRequirement = 84, manaMultiplier = 900, statInterpolation = { 3, 1, 1, }, }, + [28] = { 76.666666790843, 4, 1, levelRequirement = 86, manaMultiplier = 900, statInterpolation = { 3, 1, 1, }, }, + [29] = { 76.666666790843, 4, 1, levelRequirement = 88, manaMultiplier = 900, statInterpolation = { 3, 1, 1, }, }, + [30] = { 76.666666790843, 4, 1, levelRequirement = 90, manaMultiplier = 900, statInterpolation = { 3, 1, 1, }, }, + [31] = { 76.666666790843, 4, 1, levelRequirement = 91, manaMultiplier = 900, statInterpolation = { 3, 1, 1, }, }, + [32] = { 76.666666790843, 4, 1, levelRequirement = 92, manaMultiplier = 900, statInterpolation = { 3, 1, 1, }, }, + [33] = { 76.666666790843, 4, 1, levelRequirement = 93, manaMultiplier = 900, statInterpolation = { 3, 1, 1, }, }, + [34] = { 76.666666790843, 4, 1, levelRequirement = 94, manaMultiplier = 900, statInterpolation = { 3, 1, 1, }, }, + [35] = { 76.666666790843, 4, 1, levelRequirement = 95, manaMultiplier = 900, statInterpolation = { 3, 1, 1, }, }, + [36] = { 76.666666790843, 4, 1, levelRequirement = 96, manaMultiplier = 900, statInterpolation = { 3, 1, 1, }, }, + [37] = { 76.666666790843, 4, 1, levelRequirement = 97, manaMultiplier = 900, statInterpolation = { 3, 1, 1, }, }, + [38] = { 76.666666790843, 4, 1, levelRequirement = 98, manaMultiplier = 900, statInterpolation = { 3, 1, 1, }, }, + [39] = { 76.666666790843, 4, 1, levelRequirement = 99, manaMultiplier = 900, statInterpolation = { 3, 1, 1, }, }, + [40] = { 76.666666790843, 4, 1, levelRequirement = 100, manaMultiplier = 900, statInterpolation = { 3, 1, 1, }, }, }, } skills["SupportCruelty"] = { @@ -4269,15 +4269,15 @@ skills["SupportTrauma"] = { levels = { [1] = { 1, 2, 3, 5, 5000, levelRequirement = 38, manaMultiplier = 40, statInterpolation = { 3, 1, 1, 1, 1, }, }, [2] = { 1, 2, 4, 5, 5100, levelRequirement = 40, manaMultiplier = 40, statInterpolation = { 3, 1, 1, 1, 1, }, }, - [3] = { 1, 3, 5, 5, 5200, levelRequirement = 42, manaMultiplier = 40, statInterpolation = { 3, 1, 1, 1, 1, }, }, - [4] = { 1, 3, 6, 5, 5300, levelRequirement = 44, manaMultiplier = 40, statInterpolation = { 3, 1, 1, 1, 1, }, }, + [3] = { 1, 3, 4, 5, 5200, levelRequirement = 42, manaMultiplier = 40, statInterpolation = { 3, 1, 1, 1, 1, }, }, + [4] = { 1, 3, 5, 5, 5300, levelRequirement = 44, manaMultiplier = 40, statInterpolation = { 3, 1, 1, 1, 1, }, }, [5] = { 1, 4, 6, 5, 5400, levelRequirement = 46, manaMultiplier = 40, statInterpolation = { 3, 1, 1, 1, 1, }, }, [6] = { 1, 4, 7, 5, 5500, levelRequirement = 48, manaMultiplier = 40, statInterpolation = { 3, 1, 1, 1, 1, }, }, - [7] = { 1, 5, 8, 5, 5600, levelRequirement = 50, manaMultiplier = 40, statInterpolation = { 3, 1, 1, 1, 1, }, }, - [8] = { 1, 5, 9, 5, 5700, levelRequirement = 52, manaMultiplier = 40, statInterpolation = { 3, 1, 1, 1, 1, }, }, - [9] = { 1, 6, 9, 5, 5800, levelRequirement = 54, manaMultiplier = 40, statInterpolation = { 3, 1, 1, 1, 1, }, }, + [7] = { 1, 5, 7, 5, 5600, levelRequirement = 50, manaMultiplier = 40, statInterpolation = { 3, 1, 1, 1, 1, }, }, + [8] = { 1, 5, 8, 5, 5700, levelRequirement = 52, manaMultiplier = 40, statInterpolation = { 3, 1, 1, 1, 1, }, }, + [9] = { 1, 5, 9, 5, 5800, levelRequirement = 54, manaMultiplier = 40, statInterpolation = { 3, 1, 1, 1, 1, }, }, [10] = { 1, 6, 10, 5, 5900, levelRequirement = 56, manaMultiplier = 40, statInterpolation = { 3, 1, 1, 1, 1, }, }, - [11] = { 1, 7, 10, 5, 6000, levelRequirement = 58, manaMultiplier = 40, statInterpolation = { 3, 1, 1, 1, 1, }, }, + [11] = { 1, 6, 10, 5, 6000, levelRequirement = 58, manaMultiplier = 40, statInterpolation = { 3, 1, 1, 1, 1, }, }, [12] = { 1, 7, 11, 5, 6100, levelRequirement = 60, manaMultiplier = 40, statInterpolation = { 3, 1, 1, 1, 1, }, }, [13] = { 1, 7, 12, 5, 6200, levelRequirement = 62, manaMultiplier = 40, statInterpolation = { 3, 1, 1, 1, 1, }, }, [14] = { 1, 7, 13, 5, 6300, levelRequirement = 64, manaMultiplier = 40, statInterpolation = { 3, 1, 1, 1, 1, }, }, @@ -4294,19 +4294,19 @@ skills["SupportTrauma"] = { [25] = { 1, 12, 21, 5, 7400, levelRequirement = 80, manaMultiplier = 40, statInterpolation = { 3, 1, 1, 1, 1, }, }, [26] = { 1, 13, 21, 5, 7500, levelRequirement = 82, manaMultiplier = 40, statInterpolation = { 3, 1, 1, 1, 1, }, }, [27] = { 1, 13, 22, 5, 7600, levelRequirement = 84, manaMultiplier = 40, statInterpolation = { 3, 1, 1, 1, 1, }, }, - [28] = { 1, 14, 22, 5, 7700, levelRequirement = 86, manaMultiplier = 40, statInterpolation = { 3, 1, 1, 1, 1, }, }, - [29] = { 1, 14, 22, 5, 7800, levelRequirement = 88, manaMultiplier = 40, statInterpolation = { 3, 1, 1, 1, 1, }, }, - [30] = { 1, 14, 23, 5, 7900, levelRequirement = 90, manaMultiplier = 40, statInterpolation = { 3, 1, 1, 1, 1, }, }, - [31] = { 1, 14, 23, 5, 7950, levelRequirement = 91, manaMultiplier = 40, statInterpolation = { 3, 1, 1, 1, 1, }, }, - [32] = { 1, 14, 24, 5, 8000, levelRequirement = 92, manaMultiplier = 40, statInterpolation = { 3, 1, 1, 1, 1, }, }, - [33] = { 1, 14, 24, 5, 8050, levelRequirement = 93, manaMultiplier = 40, statInterpolation = { 3, 1, 1, 1, 1, }, }, - [34] = { 1, 15, 24, 5, 8100, levelRequirement = 94, manaMultiplier = 40, statInterpolation = { 3, 1, 1, 1, 1, }, }, - [35] = { 1, 15, 24, 5, 8150, levelRequirement = 95, manaMultiplier = 40, statInterpolation = { 3, 1, 1, 1, 1, }, }, - [36] = { 1, 15, 25, 5, 8200, levelRequirement = 96, manaMultiplier = 40, statInterpolation = { 3, 1, 1, 1, 1, }, }, - [37] = { 1, 15, 25, 5, 8250, levelRequirement = 97, manaMultiplier = 40, statInterpolation = { 3, 1, 1, 1, 1, }, }, - [38] = { 1, 15, 25, 5, 8300, levelRequirement = 98, manaMultiplier = 40, statInterpolation = { 3, 1, 1, 1, 1, }, }, - [39] = { 1, 15, 26, 5, 8350, levelRequirement = 99, manaMultiplier = 40, statInterpolation = { 3, 1, 1, 1, 1, }, }, - [40] = { 1, 15, 26, 5, 8400, levelRequirement = 100, manaMultiplier = 40, statInterpolation = { 3, 1, 1, 1, 1, }, }, + [28] = { 1, 13, 23, 5, 7700, levelRequirement = 86, manaMultiplier = 40, statInterpolation = { 3, 1, 1, 1, 1, }, }, + [29] = { 1, 14, 24, 5, 7800, levelRequirement = 88, manaMultiplier = 40, statInterpolation = { 3, 1, 1, 1, 1, }, }, + [30] = { 1, 14, 24, 5, 7900, levelRequirement = 90, manaMultiplier = 40, statInterpolation = { 3, 1, 1, 1, 1, }, }, + [31] = { 1, 14, 25, 5, 7950, levelRequirement = 91, manaMultiplier = 40, statInterpolation = { 3, 1, 1, 1, 1, }, }, + [32] = { 1, 15, 25, 5, 8000, levelRequirement = 92, manaMultiplier = 40, statInterpolation = { 3, 1, 1, 1, 1, }, }, + [33] = { 1, 15, 25, 5, 8050, levelRequirement = 93, manaMultiplier = 40, statInterpolation = { 3, 1, 1, 1, 1, }, }, + [34] = { 1, 15, 26, 5, 8100, levelRequirement = 94, manaMultiplier = 40, statInterpolation = { 3, 1, 1, 1, 1, }, }, + [35] = { 1, 15, 26, 5, 8150, levelRequirement = 95, manaMultiplier = 40, statInterpolation = { 3, 1, 1, 1, 1, }, }, + [36] = { 1, 15, 27, 5, 8200, levelRequirement = 96, manaMultiplier = 40, statInterpolation = { 3, 1, 1, 1, 1, }, }, + [37] = { 1, 16, 27, 5, 8250, levelRequirement = 97, manaMultiplier = 40, statInterpolation = { 3, 1, 1, 1, 1, }, }, + [38] = { 1, 16, 27, 5, 8300, levelRequirement = 98, manaMultiplier = 40, statInterpolation = { 3, 1, 1, 1, 1, }, }, + [39] = { 1, 16, 28, 5, 8350, levelRequirement = 99, manaMultiplier = 40, statInterpolation = { 3, 1, 1, 1, 1, }, }, + [40] = { 1, 16, 28, 5, 8400, levelRequirement = 100, manaMultiplier = 40, statInterpolation = { 3, 1, 1, 1, 1, }, }, }, } skills["SupportUrgentOrders"] = { diff --git a/src/Data/StatDescriptions/active_skill_gem_stat_descriptions.lua b/src/Data/StatDescriptions/active_skill_gem_stat_descriptions.lua index 8a23366342..e102993696 100644 --- a/src/Data/StatDescriptions/active_skill_gem_stat_descriptions.lua +++ b/src/Data/StatDescriptions/active_skill_gem_stat_descriptions.lua @@ -1677,6 +1677,35 @@ return { } }, [65]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% more Damage if Ward has not broken in the past 2 seconds" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% less Damage if Ward has not broken in the past 2 seconds" + } + }, + stats={ + [1]="active_skill_damage_+%_final_if_ward_has_not_broken_in_the_past_2_seconds" + } + }, + [66]={ [1]={ [1]={ limit={ @@ -1705,7 +1734,7 @@ return { [1]="active_skill_poison_duration_+%_final" } }, - [66]={ + [67]={ [1]={ [1]={ limit={ @@ -1734,7 +1763,7 @@ return { [1]="active_skill_quality_damage_+%_final" } }, - [67]={ + [68]={ [1]={ [1]={ limit={ @@ -1763,7 +1792,7 @@ return { [1]="active_skill_quality_duration_+%_final" } }, - [68]={ + [69]={ [1]={ [1]={ limit={ @@ -1779,7 +1808,7 @@ return { [1]="add_power_charge_on_kill_%_chance" } }, - [69]={ + [70]={ [1]={ [1]={ limit={ @@ -1795,7 +1824,7 @@ return { [1]="added_fire_damage_to_attacks_equal_to_%_maximum_life" } }, - [70]={ + [71]={ [1]={ [1]={ limit={ @@ -1811,7 +1840,7 @@ return { [1]="added_physical_damage_to_attacks_equal_to_%_maximum_mana" } }, - [71]={ + [72]={ [1]={ [1]={ [1]={ @@ -1831,7 +1860,7 @@ return { [1]="additional_base_critical_strike_chance" } }, - [72]={ + [73]={ [1]={ [1]={ [1]={ @@ -1851,7 +1880,7 @@ return { [1]="additional_weapon_base_attack_time_ms" } }, - [73]={ + [74]={ [1]={ [1]={ limit={ @@ -1867,7 +1896,7 @@ return { [1]="additive_mine_duration_modifiers_apply_to_buff_effect_duration" } }, - [74]={ + [75]={ [1]={ [1]={ limit={ @@ -1896,7 +1925,7 @@ return { [1]="ancestor_totem_buff_effect_+%" } }, - [75]={ + [76]={ [1]={ [1]={ limit={ @@ -1925,7 +1954,7 @@ return { [1]="ancestor_totem_parent_activation_range_+%" } }, - [76]={ + [77]={ [1]={ [1]={ limit={ @@ -1954,7 +1983,7 @@ return { [1]="area_damage_+%" } }, - [77]={ + [78]={ [1]={ [1]={ limit={ @@ -1983,7 +2012,48 @@ return { [1]="area_of_effect_+%_while_dead" } }, - [78]={ + [79]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="[DNT] Create a spectral arrow after spending {0} Mana on Bow Skills" + } + }, + stats={ + [1]="arrowswarm_mana_spent_to_generate_arrow" + } + }, + [80]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="[DNT] Maximum {0} spectral arrow" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="[DNT] Maximum {0} spectral arrows" + } + }, + stats={ + [1]="arrowswarm_maximum_allowed_arrows" + } + }, + [81]={ [1]={ [1]={ limit={ @@ -2012,7 +2082,7 @@ return { [1]="attack_and_cast_speed_+%" } }, - [79]={ + [82]={ [1]={ [1]={ limit={ @@ -2041,7 +2111,7 @@ return { [1]="attack_and_cast_speed_+%_during_onslaught" } }, - [80]={ + [83]={ [1]={ [1]={ limit={ @@ -2062,7 +2132,7 @@ return { [2]="attack_maximum_added_chaos_damage" } }, - [81]={ + [84]={ [1]={ [1]={ limit={ @@ -2083,7 +2153,7 @@ return { [2]="attack_maximum_added_cold_damage" } }, - [82]={ + [85]={ [1]={ [1]={ limit={ @@ -2104,7 +2174,7 @@ return { [2]="attack_maximum_added_fire_damage" } }, - [83]={ + [86]={ [1]={ [1]={ limit={ @@ -2125,7 +2195,7 @@ return { [2]="attack_maximum_added_lightning_damage" } }, - [84]={ + [87]={ [1]={ [1]={ limit={ @@ -2138,7 +2208,7 @@ return { [2]="#" } }, - text="{0} to {1} Added Attack Physical Damage" + text="{0} to {1} Physical Damage" } }, stats={ @@ -2146,7 +2216,7 @@ return { [2]="attack_maximum_added_physical_damage" } }, - [85]={ + [88]={ [1]={ [1]={ limit={ @@ -2162,7 +2232,7 @@ return { [1]="attack_skills_have_added_lightning_damage_equal_to_%_of_maximum_mana" } }, - [86]={ + [89]={ [1]={ [1]={ limit={ @@ -2191,7 +2261,7 @@ return { [1]="attack_speed_+%" } }, - [87]={ + [90]={ [1]={ [1]={ limit={ @@ -2220,7 +2290,7 @@ return { [1]="attack_speed_+%_granted_from_skill" } }, - [88]={ + [91]={ [1]={ [1]={ limit={ @@ -2245,7 +2315,7 @@ return { [1]="avoid_interruption_while_using_this_skill_%" } }, - [89]={ + [92]={ [1]={ [1]={ limit={ @@ -2270,7 +2340,7 @@ return { [1]="base_added_cooldown_count" } }, - [90]={ + [93]={ [1]={ [1]={ [1]={ @@ -2307,7 +2377,7 @@ return { [1]="base_ailment_damage_+%" } }, - [91]={ + [94]={ [1]={ [1]={ limit={ @@ -2336,7 +2406,7 @@ return { [1]="base_aura_area_of_effect_+%" } }, - [92]={ + [95]={ [1]={ [1]={ [1]={ @@ -2369,7 +2439,7 @@ return { [1]="base_blackhole_tick_rate_ms" } }, - [93]={ + [96]={ [1]={ [1]={ [1]={ @@ -2389,7 +2459,7 @@ return { [1]="base_blade_vortex_hit_rate_ms" } }, - [94]={ + [97]={ [1]={ [1]={ limit={ @@ -2418,7 +2488,7 @@ return { [1]="base_bleed_duration_+%" } }, - [95]={ + [98]={ [1]={ [1]={ limit={ @@ -2447,7 +2517,7 @@ return { [1]="base_cast_speed_+%" } }, - [96]={ + [99]={ [1]={ [1]={ [1]={ @@ -2506,7 +2576,7 @@ return { [2]="always_freeze" } }, - [97]={ + [100]={ [1]={ [1]={ [1]={ @@ -2539,7 +2609,7 @@ return { [1]="base_chance_to_ignite_%" } }, - [98]={ + [101]={ [1]={ [1]={ [1]={ @@ -2572,7 +2642,7 @@ return { [1]="base_chance_to_shock_%" } }, - [99]={ + [102]={ [1]={ [1]={ limit={ @@ -2588,7 +2658,7 @@ return { [1]="base_circle_of_power_mana_spend_per_upgrade" } }, - [100]={ + [103]={ [1]={ [1]={ limit={ @@ -2617,7 +2687,7 @@ return { [1]="base_cost_+%" } }, - [101]={ + [104]={ [1]={ [1]={ limit={ @@ -2633,7 +2703,7 @@ return { [1]="base_critical_strike_multiplier_+" } }, - [102]={ + [105]={ [1]={ [1]={ limit={ @@ -2662,7 +2732,7 @@ return { [1]="base_curse_duration_+%" } }, - [103]={ + [106]={ [1]={ [1]={ [1]={ @@ -2695,7 +2765,7 @@ return { [1]="base_galvanic_field_beam_delay_ms" } }, - [104]={ + [107]={ [1]={ [1]={ [1]={ @@ -2715,7 +2785,7 @@ return { [1]="base_global_chance_to_knockback_%" } }, - [105]={ + [108]={ [1]={ [1]={ limit={ @@ -2744,7 +2814,7 @@ return { [1]="base_killed_monster_dropped_item_rarity_+%" } }, - [106]={ + [109]={ [1]={ [1]={ limit={ @@ -2773,7 +2843,7 @@ return { [1]="base_life_cost_+%" } }, - [107]={ + [110]={ [1]={ [1]={ limit={ @@ -2802,7 +2872,7 @@ return { [1]="base_life_gain_per_target" } }, - [108]={ + [111]={ [1]={ [1]={ [1]={ @@ -2826,7 +2896,7 @@ return { [1]="base_life_leech_from_attack_damage_permyriad" } }, - [109]={ + [112]={ [1]={ [1]={ limit={ @@ -2855,7 +2925,7 @@ return { [1]="base_life_reservation_+%" } }, - [110]={ + [113]={ [1]={ [1]={ limit={ @@ -2884,7 +2954,7 @@ return { [1]="base_mana_cost_-%" } }, - [111]={ + [114]={ [1]={ [1]={ limit={ @@ -2913,7 +2983,7 @@ return { [1]="base_mana_reservation_+%" } }, - [112]={ + [115]={ [1]={ [1]={ limit={ @@ -2929,7 +2999,7 @@ return { [1]="base_max_number_of_absolution_sentinels" } }, - [113]={ + [116]={ [1]={ [1]={ [1]={ @@ -2949,7 +3019,7 @@ return { [1]="base_mine_detonation_time_ms" } }, - [114]={ + [117]={ [1]={ [1]={ limit={ @@ -3094,7 +3164,7 @@ return { [3]="artillery_ballista_number_of_arrows_is_equal_to_number_of_nearby_targets" } }, - [115]={ + [118]={ [1]={ [1]={ limit={ @@ -3119,7 +3189,23 @@ return { [1]="base_number_of_champions_of_light_allowed" } }, - [116]={ + [119]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Maximum {0} Living Lightning Minions" + } + }, + stats={ + [1]="base_number_of_living_lightning_allowed" + } + }, + [120]={ [1]={ [1]={ limit={ @@ -3179,7 +3265,7 @@ return { [2]="quality_display_base_number_of_projectiles_is_gem" } }, - [117]={ + [121]={ [1]={ [1]={ limit={ @@ -3204,7 +3290,7 @@ return { [1]="base_number_of_relics_allowed" } }, - [118]={ + [122]={ [1]={ [1]={ limit={ @@ -3220,7 +3306,7 @@ return { [1]="base_physical_damage_%_to_convert_to_lightning" } }, - [119]={ + [123]={ [1]={ [1]={ limit={ @@ -3249,7 +3335,7 @@ return { [1]="base_poison_duration_+%" } }, - [120]={ + [124]={ [1]={ [1]={ limit={ @@ -3278,7 +3364,7 @@ return { [1]="base_projectile_speed_+%" } }, - [121]={ + [125]={ [1]={ [1]={ limit={ @@ -3294,7 +3380,7 @@ return { [1]="base_reduce_enemy_cold_resistance_%" } }, - [122]={ + [126]={ [1]={ [1]={ limit={ @@ -3310,7 +3396,7 @@ return { [1]="base_reduce_enemy_fire_resistance_%" } }, - [123]={ + [127]={ [1]={ [1]={ limit={ @@ -3326,7 +3412,7 @@ return { [1]="base_reduce_enemy_lightning_resistance_%" } }, - [124]={ + [128]={ [1]={ [1]={ limit={ @@ -3355,7 +3441,7 @@ return { [1]="base_reservation_efficiency_+%" } }, - [125]={ + [129]={ [1]={ [1]={ limit={ @@ -3384,7 +3470,7 @@ return { [1]="base_reservation_+%" } }, - [126]={ + [130]={ [1]={ [1]={ limit={ @@ -3413,7 +3499,7 @@ return { [1]="base_skill_area_of_effect_+%" } }, - [127]={ + [131]={ [1]={ [1]={ limit={ @@ -3442,7 +3528,7 @@ return { [1]="base_stun_duration_+%" } }, - [128]={ + [132]={ [1]={ [1]={ limit={ @@ -3458,7 +3544,7 @@ return { [1]="base_use_life_in_place_of_mana" } }, - [129]={ + [133]={ [1]={ [1]={ limit={ @@ -3487,7 +3573,7 @@ return { [1]="base_weapon_trap_rotation_speed_+%" } }, - [130]={ + [134]={ [1]={ [1]={ [1]={ @@ -3563,7 +3649,7 @@ return { [2]="quality_display_blade_trap_is_gem" } }, - [131]={ + [135]={ [1]={ [1]={ limit={ @@ -3579,7 +3665,7 @@ return { [1]="berserk_base_rage_loss_per_second" } }, - [132]={ + [136]={ [1]={ [1]={ [1]={ @@ -3612,7 +3698,7 @@ return { [1]="bladefall_base_volley_frequency_ms" } }, - [133]={ + [137]={ [1]={ [1]={ [1]={ @@ -3645,7 +3731,7 @@ return { [1]="bladefall_blade_left_in_ground_for_every_X_volleys" } }, - [134]={ + [138]={ [1]={ [1]={ [1]={ @@ -3678,7 +3764,7 @@ return { [1]="bladefall_create_X_lingering_blades_per_volley" } }, - [135]={ + [139]={ [1]={ [1]={ limit={ @@ -3738,7 +3824,7 @@ return { [2]="quality_display_bladefall_is_gem" } }, - [136]={ + [140]={ [1]={ [1]={ limit={ @@ -3754,7 +3840,7 @@ return { [1]="bladefall_volley_frequency_+%_per_100_maximum_mana" } }, - [137]={ + [141]={ [1]={ [1]={ limit={ @@ -3783,7 +3869,7 @@ return { [1]="blades_left_in_ground_+%_final_if_not_hand_cast" } }, - [138]={ + [142]={ [1]={ [1]={ limit={ @@ -3812,7 +3898,7 @@ return { [1]="blind_duration_+%" } }, - [139]={ + [143]={ [1]={ [1]={ [1]={ @@ -3832,7 +3918,7 @@ return { [1]="blood_spears_additional_number_of_spears_if_changed_stance_recently" } }, - [140]={ + [144]={ [1]={ [1]={ limit={ @@ -3896,7 +3982,7 @@ return { [2]="quality_display_perforate_is_gem" } }, - [141]={ + [145]={ [1]={ [1]={ limit={ @@ -3925,7 +4011,7 @@ return { [1]="blood_spears_damage_+%_final_in_blood_stance" } }, - [142]={ + [146]={ [1]={ [1]={ limit={ @@ -3941,7 +4027,7 @@ return { [1]="brands_reattach_on_activation" } }, - [143]={ + [147]={ [1]={ [1]={ limit={ @@ -3970,7 +4056,7 @@ return { [1]="burn_damage_+%" } }, - [144]={ + [148]={ [1]={ [1]={ limit={ @@ -3995,7 +4081,7 @@ return { [1]="chance_%_when_poison_to_also_poison_another_enemy" } }, - [145]={ + [149]={ [1]={ [1]={ limit={ @@ -4011,7 +4097,7 @@ return { [1]="chance_to_double_stun_duration_%" } }, - [146]={ + [150]={ [1]={ [1]={ limit={ @@ -4027,7 +4113,7 @@ return { [1]="chance_to_fork_extra_projectile_%" } }, - [147]={ + [151]={ [1]={ [1]={ [1]={ @@ -4068,7 +4154,7 @@ return { [1]="chance_to_fortify_on_melee_hit_+%" } }, - [148]={ + [152]={ [1]={ [1]={ limit={ @@ -4093,7 +4179,7 @@ return { [1]="chance_to_gain_frenzy_charge_on_killing_frozen_enemy_%" } }, - [149]={ + [153]={ [1]={ [1]={ [1]={ @@ -4113,7 +4199,7 @@ return { [1]="chance_to_place_an_additional_mine_%" } }, - [150]={ + [154]={ [1]={ [1]={ [1]={ @@ -4146,7 +4232,7 @@ return { [1]="chance_to_scorch_%" } }, - [151]={ + [155]={ [1]={ [1]={ limit={ @@ -4175,7 +4261,7 @@ return { [1]="chaos_damage_+%" } }, - [152]={ + [156]={ [1]={ [1]={ limit={ @@ -4204,7 +4290,7 @@ return { [1]="chill_duration_+%" } }, - [153]={ + [157]={ [1]={ [1]={ limit={ @@ -4233,7 +4319,7 @@ return { [1]="chill_effect_+%" } }, - [154]={ + [158]={ [1]={ [1]={ limit={ @@ -4262,7 +4348,7 @@ return { [1]="circle_of_power_skill_cost_mana_cost_+%" } }, - [155]={ + [159]={ [1]={ [1]={ limit={ @@ -4291,7 +4377,7 @@ return { [1]="cobra_lash_hit_and_ailment_damage_+%_final_for_each_remaining_chain" } }, - [156]={ + [160]={ [1]={ [1]={ [1]={ @@ -4328,7 +4414,7 @@ return { [1]="cold_ailment_effect_+%" } }, - [157]={ + [161]={ [1]={ [1]={ limit={ @@ -4344,7 +4430,7 @@ return { [1]="cold_damage_%_to_add_as_fire" } }, - [158]={ + [162]={ [1]={ [1]={ limit={ @@ -4373,7 +4459,7 @@ return { [1]="cold_damage_+%" } }, - [159]={ + [163]={ [1]={ [1]={ limit={ @@ -4389,7 +4475,7 @@ return { [1]="consecrated_ground_effect_+%" } }, - [160]={ + [164]={ [1]={ [1]={ limit={ @@ -4418,7 +4504,7 @@ return { [1]="consecrated_ground_enemy_damage_taken_+%" } }, - [161]={ + [165]={ [1]={ [1]={ limit={ @@ -4447,7 +4533,7 @@ return { [1]="consecrated_ground_area_+%" } }, - [162]={ + [166]={ [1]={ [1]={ limit={ @@ -4476,7 +4562,7 @@ return { [1]="conversation_trap_converted_enemy_damage_+%" } }, - [163]={ + [167]={ [1]={ [1]={ limit={ @@ -4505,7 +4591,7 @@ return { [1]="conversion_trap_converted_enemies_chance_to_taunt_on_hit_%" } }, - [164]={ + [168]={ [1]={ [1]={ limit={ @@ -4521,7 +4607,7 @@ return { [1]="corpse_erruption_base_maximum_number_of_geyers" } }, - [165]={ + [169]={ [1]={ [1]={ limit={ @@ -4550,7 +4636,7 @@ return { [1]="cremation_fires_projectiles_faster_+%_final" } }, - [166]={ + [170]={ [1]={ [1]={ limit={ @@ -4566,7 +4652,7 @@ return { [1]="critical_ailment_dot_multiplier_+" } }, - [167]={ + [171]={ [1]={ [1]={ limit={ @@ -4582,7 +4668,7 @@ return { [1]="critical_multiplier_+%_per_100_max_es_on_shield" } }, - [168]={ + [172]={ [1]={ [1]={ limit={ @@ -4611,7 +4697,7 @@ return { [1]="critical_strike_chance_+%" } }, - [169]={ + [173]={ [1]={ [1]={ limit={ @@ -4640,7 +4726,7 @@ return { [1]="cyclone_max_stages_movement_speed_+%" } }, - [170]={ + [174]={ [1]={ [1]={ limit={ @@ -4669,7 +4755,7 @@ return { [1]="damage_over_time_+%" } }, - [171]={ + [175]={ [1]={ [1]={ limit={ @@ -4698,7 +4784,7 @@ return { [1]="damage_+%" } }, - [172]={ + [176]={ [1]={ [1]={ limit={ @@ -4727,7 +4813,7 @@ return { [1]="damage_+%_per_endurance_charge" } }, - [173]={ + [177]={ [1]={ [1]={ limit={ @@ -4756,7 +4842,7 @@ return { [1]="damage_+%_per_frenzy_charge" } }, - [174]={ + [178]={ [1]={ [1]={ limit={ @@ -4785,7 +4871,7 @@ return { [1]="damage_+%_per_power_charge" } }, - [175]={ + [179]={ [1]={ [1]={ limit={ @@ -4814,7 +4900,7 @@ return { [1]="damage_+%_vs_enemies_on_full_life" } }, - [176]={ + [180]={ [1]={ [1]={ [1]={ @@ -4851,7 +4937,7 @@ return { [1]="damage_+%_vs_enemies_per_freeze_shock_ignite" } }, - [177]={ + [181]={ [1]={ [1]={ limit={ @@ -4880,7 +4966,7 @@ return { [1]="damage_+%_vs_frozen_enemies" } }, - [178]={ + [182]={ [1]={ [1]={ limit={ @@ -4909,7 +4995,7 @@ return { [1]="damage_+%_on_full_energy_shield" } }, - [179]={ + [183]={ [1]={ [1]={ limit={ @@ -4938,7 +5024,7 @@ return { [1]="damage_+%_when_on_full_life" } }, - [180]={ + [184]={ [1]={ [1]={ [1]={ @@ -4975,7 +5061,7 @@ return { [1]="damage_+%_when_on_low_life" } }, - [181]={ + [185]={ [1]={ [1]={ limit={ @@ -5004,7 +5090,7 @@ return { [1]="damage_+%_with_hits_and_ailments" } }, - [182]={ + [186]={ [1]={ [1]={ [1]={ @@ -5041,7 +5127,7 @@ return { [1]="damage_vs_cursed_enemies_per_enemy_curse_+%" } }, - [183]={ + [187]={ [1]={ [1]={ limit={ @@ -5057,7 +5143,7 @@ return { [1]="damage_vs_enemies_on_low_life_+%" } }, - [184]={ + [188]={ [1]={ [1]={ [1]={ @@ -5077,7 +5163,7 @@ return { [1]="dash_grants_phasing_after_use_ms" } }, - [185]={ + [189]={ [1]={ [1]={ [1]={ @@ -5097,7 +5183,7 @@ return { [1]="display_base_intensity_loss" } }, - [186]={ + [190]={ [1]={ [1]={ limit={ @@ -5113,7 +5199,7 @@ return { [1]="display_fixed_area" } }, - [187]={ + [191]={ [1]={ [1]={ limit={ @@ -5129,7 +5215,7 @@ return { [1]="display_frost_fury_additive_cast_speed_modifiers_apply_to_fire_speed" } }, - [188]={ + [192]={ [1]={ [1]={ limit={ @@ -5145,7 +5231,7 @@ return { [1]="divine_tempest_base_number_of_nearby_enemies_to_zap" } }, - [189]={ + [193]={ [1]={ [1]={ limit={ @@ -5161,7 +5247,7 @@ return { [1]="dot_multiplier_+" } }, - [190]={ + [194]={ [1]={ [1]={ limit={ @@ -5190,7 +5276,7 @@ return { [1]="elemental_damage_+%" } }, - [191]={ + [195]={ [1]={ [1]={ [1]={ @@ -5210,7 +5296,7 @@ return { [1]="enemy_phys_reduction_%_penalty_vs_hit" } }, - [192]={ + [196]={ [1]={ [1]={ [1]={ @@ -5243,7 +5329,7 @@ return { [1]="ethereal_knives_blade_left_in_ground_for_every_X_projectiles" } }, - [193]={ + [197]={ [1]={ [1]={ limit={ @@ -5268,7 +5354,7 @@ return { [1]="display_eye_of_winter_projectile_modifier" } }, - [194]={ + [198]={ [1]={ [1]={ [1]={ @@ -5288,7 +5374,7 @@ return { [1]="faster_bleed_%" } }, - [195]={ + [199]={ [1]={ [1]={ [1]={ @@ -5321,7 +5407,7 @@ return { [1]="faster_burn_%" } }, - [196]={ + [200]={ [1]={ [1]={ [1]={ @@ -5345,7 +5431,7 @@ return { [1]="faster_poison_%" } }, - [197]={ + [201]={ [1]={ [1]={ limit={ @@ -5374,7 +5460,7 @@ return { [1]="fire_damage_+%" } }, - [198]={ + [202]={ [1]={ [1]={ limit={ @@ -5403,7 +5489,7 @@ return { [1]="firestorm_explosion_area_of_effect_+%" } }, - [199]={ + [203]={ [1]={ [1]={ limit={ @@ -5424,7 +5510,7 @@ return { [2]="flame_link_maximum_fire_damage" } }, - [200]={ + [204]={ [1]={ [1]={ limit={ @@ -5440,7 +5526,7 @@ return { [1]="flame_link_added_fire_damage_from_life_%" } }, - [201]={ + [205]={ [1]={ [1]={ limit={ @@ -5469,7 +5555,7 @@ return { [1]="fortify_duration_+%" } }, - [202]={ + [206]={ [1]={ [1]={ limit={ @@ -5498,7 +5584,7 @@ return { [1]="freeze_duration_+%" } }, - [203]={ + [207]={ [1]={ [1]={ [1]={ @@ -5518,7 +5604,7 @@ return { [1]="gain_%_of_base_dagger_damage_as_added_spell_damage" } }, - [204]={ + [208]={ [1]={ [1]={ limit={ @@ -5543,7 +5629,7 @@ return { [1]="galvanic_field_beam_frequency_+%" } }, - [205]={ + [209]={ [1]={ [1]={ [1]={ @@ -5563,7 +5649,7 @@ return { [1]="global_chance_to_blind_on_hit_%" } }, - [206]={ + [210]={ [1]={ [1]={ limit={ @@ -5584,7 +5670,7 @@ return { [2]="global_maximum_added_chaos_damage" } }, - [207]={ + [211]={ [1]={ [1]={ limit={ @@ -5605,7 +5691,7 @@ return { [2]="global_maximum_added_cold_damage" } }, - [208]={ + [212]={ [1]={ [1]={ limit={ @@ -5626,7 +5712,7 @@ return { [2]="global_maximum_added_fire_damage" } }, - [209]={ + [213]={ [1]={ [1]={ limit={ @@ -5647,7 +5733,7 @@ return { [2]="global_maximum_added_lightning_damage" } }, - [210]={ + [214]={ [1]={ [1]={ limit={ @@ -5668,7 +5754,7 @@ return { [2]="global_maximum_added_physical_damage" } }, - [211]={ + [215]={ [1]={ [1]={ limit={ @@ -5684,7 +5770,539 @@ return { [1]="global_reduce_enemy_block_%" } }, - [212]={ + [216]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Buff Effect" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Buff Effect" + } + }, + stats={ + [1]="golem_buff_effect_+%" + } + }, + [217]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextLucky" + }, + limit={ + [1]={ + [1]=1, + [2]="#" + }, + [2]={ + [1]=1, + [2]="#" + } + }, + text="Radiant Ground grants you and Allies {0} to {1} added Lightning Damage and causes Hit Damage to be Lucky" + } + }, + stats={ + [1]="graft_granted_minimum_base_lightning_damage", + [2]="graft_granted_maximum_base_lightning_damage" + } + }, + [218]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Jolt grants {0}% increased Damage taken" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Jolt grants {0}% reduced Damage taken" + } + }, + stats={ + [1]="graft_skill_esh_jolt_damage_taken_+%_to_grant" + } + }, + [219]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Jolt grants {0}% more Maximum Attack Damage" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Jolt grants {0}% less Maximum Attack Damage" + } + }, + stats={ + [1]="graft_skill_esh_jolt_maximum_attack_damage_+%_final_to_grant" + } + }, + [220]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="{0} lightning bolt strikes" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="{0} lightning bolts strike" + } + }, + stats={ + [1]="graft_skill_esh_lightning_bolts_number_of_bolts" + } + }, + [221]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Creates {0} Lightning-Imbued Clone" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Creates {0} Lightning-Imbued Clones" + } + }, + stats={ + [1]="graft_skill_esh_lightning_clones_number_of_clones_to_create" + } + }, + [222]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Maximum {0} Hand" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Maximum {0} Hands" + } + }, + stats={ + [1]="graft_skill_esh_lightning_hands_maximum_hands" + } + }, + [223]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Creates {0} Hand" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Creates {0} Hands" + } + }, + stats={ + [1]="graft_skill_esh_lightning_hands_number_of_hands_spawned" + } + }, + [224]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Buff can take {0} Damage" + } + }, + stats={ + [1]="graft_skill_tul_aegis_aegis_shield_amount_granted_on_applying_exposure" + } + }, + [225]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Fires mortars at up to {0} additional Chilled or Frozen target in range" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Fires mortars at up to {0} additional Chilled or Frozen targets in range" + } + }, + stats={ + [1]="graft_skill_tul_mortars_maximum_mortars_fired_per_volley" + } + }, + [226]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Maximum {0} Hiveborn" + } + }, + stats={ + [1]="graft_skill_tul_summon_maximum_allowed_demons" + } + }, + [227]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Summons {0} Hiveborn" + } + }, + stats={ + [1]="graft_skill_tul_summon_number_of_demons_to_summon" + } + }, + [228]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Maximum {0} Bone Spire" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Maximum {0} Bone Spires" + } + }, + stats={ + [1]="graft_skill_uulnet_bone_spires_max_spires_allowed" + } + }, + [229]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Creates {0} Bone Spire" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Creates {0} Bone Spires" + } + }, + stats={ + [1]="graft_skill_uulnetol_bone_spires_num_of_spires_to_create" + } + }, + [230]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Creates {0} Hand" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Creates {0} Hands" + } + }, + stats={ + [1]="graft_skill_uulnetol_hand_slam_number_of_hands_to_create" + } + }, + [231]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextImpale" + }, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Buff grants {0}% chance to inflict an additional Impale on Enemies you Impale" + } + }, + stats={ + [1]="graft_skill_uulnetol_impale_buff_%_chance_for_additional_impale_to_grant" + } + }, + [232]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Buff grants {0} additional Impale" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Buff grants {0} additional Impales" + } + }, + stats={ + [1]="graft_skill_uulnetol_impale_buff_additional_impales_to_grant" + } + }, + [233]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextImpale" + }, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Buff grants {0}% increased effect of Impale" + } + }, + stats={ + [1]="graft_skill_uulnetol_impale_buff_impale_effect_%_to_grant" + } + }, + [234]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Buff grants {0}% of Physical Damage gained as Extra Elemental Damage matching the types of the Elemental Ailments removed" + } + }, + stats={ + [1]="graft_skill_xoph_ailment_buff_%_of_physical_damage_gained_as_element_to_grant" + } + }, + [235]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Creates {0} Ashen Pillar" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Creates {0} Ashen Pillars" + } + }, + stats={ + [1]="graft_skill_xoph_flame_pillars_number_of_pillars" + } + }, + [236]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Maximum {0} geyser" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Maximum {0} geysers" + } + }, + stats={ + [1]="graft_skill_xoph_geyser_explosion_maximum_geysers" + } + }, + [237]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Creates {0} geyser" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Creates {0} geysers" + } + }, + stats={ + [1]="graft_skill_xoph_geyser_explosion_number_of_geysers_to_spawn" + } + }, + [238]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Geysers fire {0} additional projectiles when you use a Warcry" + } + }, + stats={ + [1]="graft_skill_xoph_geyser_explosion_number_of_projectiles_to_erupt" + } + }, + [239]={ [1]={ [1]={ limit={ @@ -5693,7 +6311,7 @@ return { [2]="#" } }, - text="{0}% increased Buff Effect" + text="Buff grants {0}% more Life Recovery Rate" }, [2]={ [1]={ @@ -5706,14 +6324,39 @@ return { [2]=-1 } }, - text="{0}% reduced Buff Effect" + text="Buff grants {0}% less Life Recovery Rate" } }, stats={ - [1]="golem_buff_effect_+%" + [1]="graft_uulnetol_life_recovery_rate_+%_final_to_grant_on_reaching_low_life" } }, - [213]={ + [240]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Buff grants {0} Endurance Charge when gained" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Buff grants {0} Endurance Charges when gained" + } + }, + stats={ + [1]="graft_uulnetol_number_of_endurance_charges_to_grant_on_reaching_low_life" + } + }, + [241]={ [1]={ [1]={ [1]={ @@ -5733,7 +6376,7 @@ return { [1]="herald_of_thunder_bolt_base_frequency" } }, - [214]={ + [242]={ [1]={ [1]={ limit={ @@ -5758,7 +6401,7 @@ return { [1]="herald_of_thunder_bolt_frequency_+%" } }, - [215]={ + [243]={ [1]={ [1]={ limit={ @@ -5787,7 +6430,36 @@ return { [1]="hit_damage_+%" } }, - [216]={ + [244]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Consecrated Ground Area" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Consecrated Ground Area" + } + }, + stats={ + [1]="holy_flame_totem_consecrated_ground_area_+%" + } + }, + [245]={ [1]={ [1]={ [1]={ @@ -5807,7 +6479,7 @@ return { [1]="hydro_sphere_base_pulse_frequency_ms" } }, - [217]={ + [246]={ [1]={ [1]={ limit={ @@ -5858,7 +6530,7 @@ return { [2]="quality_display_hydrosphere_is_gem" } }, - [218]={ + [247]={ [1]={ [1]={ limit={ @@ -5887,7 +6559,7 @@ return { [1]="ignite_duration_+%" } }, - [219]={ + [248]={ [1]={ [1]={ limit={ @@ -5916,7 +6588,7 @@ return { [1]="intensity_loss_frequency_while_moving_+%" } }, - [220]={ + [249]={ [1]={ [1]={ limit={ @@ -5932,7 +6604,7 @@ return { [1]="kinetic_blast_modifiers_to_number_of_projectiles_instead_apply_to_number_of_clusters" } }, - [221]={ + [250]={ [1]={ [1]={ limit={ @@ -5948,7 +6620,7 @@ return { [1]="kinetic_wand_base_number_of_zig_zags" } }, - [222]={ + [251]={ [1]={ [1]={ limit={ @@ -5977,7 +6649,7 @@ return { [1]="knockback_distance_+%" } }, - [223]={ + [252]={ [1]={ [1]={ [1]={ @@ -6001,7 +6673,7 @@ return { [1]="life_leech_from_any_damage_permyriad" } }, - [224]={ + [253]={ [1]={ [1]={ [1]={ @@ -6038,7 +6710,7 @@ return { [1]="lightning_ailment_effect_+%" } }, - [225]={ + [254]={ [1]={ [1]={ limit={ @@ -6054,7 +6726,7 @@ return { [1]="lightning_damage_%_to_add_as_chaos" } }, - [226]={ + [255]={ [1]={ [1]={ limit={ @@ -6083,7 +6755,7 @@ return { [1]="lightning_damage_+%" } }, - [227]={ + [256]={ [1]={ [1]={ [1]={ @@ -6103,7 +6775,7 @@ return { [1]="lightning_tower_trap_base_interval_duration_ms" } }, - [228]={ + [257]={ [1]={ [1]={ limit={ @@ -6119,7 +6791,7 @@ return { [1]="magma_orb_%_chance_to_big_explode_instead_of_chaining" } }, - [229]={ + [258]={ [1]={ [1]={ limit={ @@ -6148,7 +6820,7 @@ return { [1]="maim_effect_+%" } }, - [230]={ + [259]={ [1]={ [1]={ limit={ @@ -6177,7 +6849,7 @@ return { [1]="mana_gain_per_target" } }, - [231]={ + [260]={ [1]={ [1]={ [1]={ @@ -6201,7 +6873,7 @@ return { [1]="mana_leech_from_any_damage_permyriad" } }, - [232]={ + [261]={ [1]={ [1]={ limit={ @@ -6226,7 +6898,7 @@ return { [1]="base_max_number_of_dominated_magic_monsters" } }, - [233]={ + [262]={ [1]={ [1]={ limit={ @@ -6251,7 +6923,7 @@ return { [1]="base_max_number_of_dominated_normal_monsters" } }, - [234]={ + [263]={ [1]={ [1]={ limit={ @@ -6276,7 +6948,7 @@ return { [1]="base_max_number_of_dominated_rare_monsters" } }, - [235]={ + [264]={ [1]={ [1]={ limit={ @@ -6305,7 +6977,7 @@ return { [1]="maximum_energy_shield_leech_amount_per_leech_+%" } }, - [236]={ + [265]={ [1]={ [1]={ limit={ @@ -6334,7 +7006,7 @@ return { [1]="maximum_life_leech_amount_per_leech_+%" } }, - [237]={ + [266]={ [1]={ [1]={ [1]={ @@ -6371,7 +7043,7 @@ return { [1]="maximum_life_+%_for_corpses_you_create" } }, - [238]={ + [267]={ [1]={ [1]={ limit={ @@ -6396,7 +7068,7 @@ return { [1]="base_number_of_blink_mirror_arrow_elemental_hit_clones" } }, - [239]={ + [268]={ [1]={ [1]={ limit={ @@ -6421,7 +7093,7 @@ return { [1]="base_number_of_blink_mirror_arrow_rain_of_arrows_clones" } }, - [240]={ + [269]={ [1]={ [1]={ limit={ @@ -6446,7 +7118,7 @@ return { [1]="melee_attack_number_of_spirit_strikes" } }, - [241]={ + [270]={ [1]={ [1]={ limit={ @@ -6475,7 +7147,7 @@ return { [1]="melee_damage_+%" } }, - [242]={ + [271]={ [1]={ [1]={ limit={ @@ -6504,7 +7176,7 @@ return { [1]="melee_damage_vs_bleeding_enemies_+%" } }, - [243]={ + [272]={ [1]={ [1]={ limit={ @@ -6533,7 +7205,7 @@ return { [1]="melee_physical_damage_+%" } }, - [244]={ + [273]={ [1]={ [1]={ limit={ @@ -6562,7 +7234,7 @@ return { [1]="mine_detonation_radius_+%" } }, - [245]={ + [274]={ [1]={ [1]={ limit={ @@ -6591,7 +7263,7 @@ return { [1]="mine_detonation_speed_+%" } }, - [246]={ + [275]={ [1]={ [1]={ limit={ @@ -6620,7 +7292,7 @@ return { [1]="mine_duration_+%" } }, - [247]={ + [276]={ [1]={ [1]={ limit={ @@ -6649,7 +7321,7 @@ return { [1]="mine_laying_speed_+%" } }, - [248]={ + [277]={ [1]={ [1]={ limit={ @@ -6665,7 +7337,7 @@ return { [1]="minion_chance_to_deal_double_damage_%" } }, - [249]={ + [278]={ [1]={ [1]={ limit={ @@ -6681,7 +7353,7 @@ return { [1]="minion_elemental_resistance_%" } }, - [250]={ + [279]={ [1]={ [1]={ limit={ @@ -6697,7 +7369,7 @@ return { [1]="modifiers_to_number_of_projectiles_instead_apply_to_chaining" } }, - [251]={ + [280]={ [1]={ [1]={ limit={ @@ -6713,7 +7385,7 @@ return { [1]="modifiers_to_number_of_projectiles_instead_apply_to_splitting" } }, - [252]={ + [281]={ [1]={ [1]={ limit={ @@ -6729,7 +7401,7 @@ return { [1]="modifiers_to_projectile_count_do_not_apply" } }, - [253]={ + [282]={ [1]={ [1]={ limit={ @@ -6745,7 +7417,7 @@ return { [1]="modifiers_to_trap_throw_speed_apply_to_lightning_spire_trap_frequency" } }, - [254]={ + [283]={ [1]={ [1]={ limit={ @@ -6761,7 +7433,7 @@ return { [1]="modifiers_to_trap_throw_speed_apply_to_seismic_trap_frequency" } }, - [255]={ + [284]={ [1]={ [1]={ limit={ @@ -6790,7 +7462,7 @@ return { [1]="non_curse_aura_effect_+%" } }, - [256]={ + [285]={ [1]={ [1]={ limit={ @@ -6815,7 +7487,7 @@ return { [1]="number_of_additional_arrows" } }, - [257]={ + [286]={ [1]={ [1]={ limit={ @@ -6840,7 +7512,7 @@ return { [1]="number_of_additional_projectiles" } }, - [258]={ + [287]={ [1]={ [1]={ limit={ @@ -6856,7 +7528,7 @@ return { [1]="number_of_chains" } }, - [259]={ + [288]={ [1]={ [1]={ limit={ @@ -6881,7 +7553,7 @@ return { [1]="number_of_additional_remote_mines_allowed" } }, - [260]={ + [289]={ [1]={ [1]={ limit={ @@ -6906,7 +7578,7 @@ return { [1]="number_of_additional_traps_allowed" } }, - [261]={ + [290]={ [1]={ [1]={ limit={ @@ -6931,7 +7603,7 @@ return { [1]="number_of_additional_traps_to_throw" } }, - [262]={ + [291]={ [1]={ [1]={ limit={ @@ -6978,7 +7650,7 @@ return { [2]="quality_display_animate_weapon_is_gem" } }, - [263]={ + [292]={ [1]={ [1]={ limit={ @@ -7007,7 +7679,7 @@ return { [1]="number_of_projectiles_to_fire_+%_final_per_steel_ammo_consumed" } }, - [264]={ + [293]={ [1]={ [1]={ limit={ @@ -7032,7 +7704,7 @@ return { [1]="base_number_of_reapers_allowed" } }, - [265]={ + [294]={ [1]={ [1]={ limit={ @@ -7057,7 +7729,7 @@ return { [1]="base_number_of_void_spawns_allowed" } }, - [266]={ + [295]={ [1]={ [1]={ [1]={ @@ -7090,7 +7762,7 @@ return { [1]="orb_of_storms_base_bolt_frequency_ms" } }, - [267]={ + [296]={ [1]={ [1]={ [1]={ @@ -7123,7 +7795,7 @@ return { [1]="orb_of_storms_base_channelling_bolt_frequency_ms" } }, - [268]={ + [297]={ [1]={ [1]={ [1]={ @@ -7143,7 +7815,7 @@ return { [1]="phys_cascade_trap_base_interval_duration_ms" } }, - [269]={ + [298]={ [1]={ [1]={ limit={ @@ -7159,7 +7831,7 @@ return { [1]="physical_damage_%_to_add_as_fire" } }, - [270]={ + [299]={ [1]={ [1]={ limit={ @@ -7175,7 +7847,7 @@ return { [1]="physical_damage_%_to_add_as_lightning" } }, - [271]={ + [300]={ [1]={ [1]={ limit={ @@ -7204,7 +7876,7 @@ return { [1]="physical_damage_+%" } }, - [272]={ + [301]={ [1]={ [1]={ limit={ @@ -7233,7 +7905,7 @@ return { [1]="placing_traps_cooldown_recovery_+%" } }, - [273]={ + [302]={ [1]={ [1]={ limit={ @@ -7258,7 +7930,7 @@ return { [1]="power_siphon_base_fire_at_x_targets" } }, - [274]={ + [303]={ [1]={ [1]={ limit={ @@ -7287,7 +7959,7 @@ return { [1]="precision_grants_area_of_effect_+%_final" } }, - [275]={ + [304]={ [1]={ [1]={ limit={ @@ -7312,7 +7984,7 @@ return { [1]="primary_projectile_chains_+" } }, - [276]={ + [305]={ [1]={ [1]={ [1]={ @@ -7345,7 +8017,7 @@ return { [1]="prismatic_rain_beam_base_frequency_ms" } }, - [277]={ + [306]={ [1]={ [1]={ limit={ @@ -7370,7 +8042,7 @@ return { [1]="projectile_base_number_of_targets_to_pierce" } }, - [278]={ + [307]={ [1]={ [1]={ limit={ @@ -7399,7 +8071,7 @@ return { [1]="projectile_damage_+%" } }, - [279]={ + [308]={ [1]={ [1]={ limit={ @@ -7415,7 +8087,7 @@ return { [1]="projectile_number_to_split" } }, - [280]={ + [309]={ [1]={ [1]={ limit={ @@ -7462,7 +8134,7 @@ return { [2]="projectile_return_%_chance" } }, - [281]={ + [310]={ [1]={ [1]={ limit={ @@ -7483,7 +8155,7 @@ return { [2]="quick_guard_damage_absorb_limit" } }, - [282]={ + [311]={ [1]={ [1]={ limit={ @@ -7508,7 +8180,7 @@ return { [1]="rain_of_arrows_additional_sequences" } }, - [283]={ + [312]={ [1]={ [1]={ limit={ @@ -7524,7 +8196,7 @@ return { [1]="raise_zombie_does_not_use_corpses" } }, - [284]={ + [313]={ [1]={ [1]={ limit={ @@ -7540,7 +8212,7 @@ return { [1]="reave_additional_max_stacks" } }, - [285]={ + [314]={ [1]={ [1]={ limit={ @@ -7556,7 +8228,7 @@ return { [1]="reduce_enemy_chaos_resistance_%" } }, - [286]={ + [315]={ [1]={ [1]={ limit={ @@ -7572,7 +8244,7 @@ return { [1]="reduce_enemy_dodge_%" } }, - [287]={ + [316]={ [1]={ [1]={ limit={ @@ -7588,7 +8260,7 @@ return { [1]="regenerate_x_life_over_1_second_on_skill_use_or_trigger" } }, - [288]={ + [317]={ [1]={ [1]={ limit={ @@ -7617,7 +8289,7 @@ return { [1]="retaliation_use_window_duration_+%" } }, - [289]={ + [318]={ [1]={ [1]={ limit={ @@ -7646,7 +8318,7 @@ return { [1]="secondary_skill_effect_duration_+%" } }, - [290]={ + [319]={ [1]={ [1]={ limit={ @@ -7675,7 +8347,7 @@ return { [1]="seismic_trap_frequency_+%" } }, - [291]={ + [320]={ [1]={ [1]={ limit={ @@ -7704,7 +8376,7 @@ return { [1]="shock_duration_+%" } }, - [292]={ + [321]={ [1]={ [1]={ limit={ @@ -7720,7 +8392,7 @@ return { [1]="skill_base_chaos_damage_%_maximum_energy_shield" } }, - [293]={ + [322]={ [1]={ [1]={ limit={ @@ -7736,7 +8408,7 @@ return { [1]="skill_base_chaos_damage_%_maximum_life" } }, - [294]={ + [323]={ [1]={ [1]={ limit={ @@ -7752,7 +8424,7 @@ return { [1]="skill_cold_damage_%_to_convert_to_fire" } }, - [295]={ + [324]={ [1]={ [1]={ limit={ @@ -7768,7 +8440,7 @@ return { [1]="skill_fire_damage_%_to_convert_to_chaos" } }, - [296]={ + [325]={ [1]={ [1]={ limit={ @@ -7784,7 +8456,7 @@ return { [1]="skill_lightning_damage_%_to_convert_to_chaos" } }, - [297]={ + [326]={ [1]={ [1]={ limit={ @@ -7800,7 +8472,7 @@ return { [1]="skill_physical_damage_%_to_convert_to_chaos" } }, - [298]={ + [327]={ [1]={ [1]={ limit={ @@ -7821,7 +8493,7 @@ return { [2]="active_skill_display_suppress_physical_to_cold_damage_conversion" } }, - [299]={ + [328]={ [1]={ [1]={ limit={ @@ -7837,7 +8509,7 @@ return { [1]="skill_physical_damage_%_to_convert_to_fire" } }, - [300]={ + [329]={ [1]={ [1]={ limit={ @@ -7853,7 +8525,7 @@ return { [1]="snapping_adder_chance_to_release_projectile_when_hit_%" } }, - [301]={ + [330]={ [1]={ [1]={ limit={ @@ -7900,7 +8572,7 @@ return { [2]="soulfeast_take_%_maximum_energy_shield_as_chaos_damage" } }, - [302]={ + [331]={ [1]={ [1]={ limit={ @@ -7925,7 +8597,7 @@ return { [1]="spectral_spiral_weapon_base_number_of_bounces" } }, - [303]={ + [332]={ [1]={ [1]={ [1]={ @@ -7945,7 +8617,7 @@ return { [1]="spell_cast_time_added_to_cooldown_if_triggered" } }, - [304]={ + [333]={ [1]={ [1]={ limit={ @@ -7974,7 +8646,7 @@ return { [1]="spell_damage_+%" } }, - [305]={ + [334]={ [1]={ [1]={ limit={ @@ -7990,7 +8662,7 @@ return { [1]="static_strike_number_of_beam_targets" } }, - [306]={ + [335]={ [1]={ [1]={ limit={ @@ -8021,7 +8693,7 @@ return { [4]="storm_blade_maximum_lightning_damage_from_es_%" } }, - [307]={ + [336]={ [1]={ [1]={ limit={ @@ -8037,7 +8709,7 @@ return { [1]="storm_blade_damage_+%_final_with_two_hand_weapon" } }, - [308]={ + [337]={ [1]={ [1]={ limit={ @@ -8053,7 +8725,7 @@ return { [1]="active_skill_display_does_intensity_stuff" } }, - [309]={ + [338]={ [1]={ [1]={ limit={ @@ -8082,7 +8754,7 @@ return { [1]="support_trap_damage_+%_final" } }, - [310]={ + [339]={ [1]={ [1]={ limit={ @@ -8111,7 +8783,7 @@ return { [1]="tornado_only_primary_duration_+%" } }, - [311]={ + [340]={ [1]={ [1]={ limit={ @@ -8171,7 +8843,7 @@ return { [2]="quality_display_tornado_shot_is_gem" } }, - [312]={ + [341]={ [1]={ [1]={ limit={ @@ -8187,7 +8859,7 @@ return { [1]="totems_explode_on_death_for_%_life_as_physical" } }, - [313]={ + [342]={ [1]={ [1]={ [1]={ @@ -8207,7 +8879,7 @@ return { [1]="totems_regenerate_%_life_per_minute" } }, - [314]={ + [343]={ [1]={ [1]={ limit={ @@ -8236,7 +8908,7 @@ return { [1]="trap_damage_+%" } }, - [315]={ + [344]={ [1]={ [1]={ limit={ @@ -8265,7 +8937,7 @@ return { [1]="trap_duration_+%" } }, - [316]={ + [345]={ [1]={ [1]={ limit={ @@ -8294,7 +8966,7 @@ return { [1]="trap_throwing_speed_+%" } }, - [317]={ + [346]={ [1]={ [1]={ limit={ @@ -8323,7 +8995,7 @@ return { [1]="trap_trigger_radius_+%" } }, - [318]={ + [347]={ [1]={ [1]={ limit={ @@ -8339,7 +9011,7 @@ return { [1]="unearth_base_corpse_level" } }, - [319]={ + [348]={ [1]={ [1]={ limit={ @@ -8364,7 +9036,7 @@ return { [1]="vaal_lightning_arrow_number_of_redirects" } }, - [320]={ + [349]={ [1]={ [1]={ limit={ @@ -8380,7 +9052,7 @@ return { [1]="vaal_lightning_arrow_fork_and_chain_modifiers_apply_to_number_of_redirects" } }, - [321]={ + [350]={ [1]={ [1]={ [1]={ @@ -8413,7 +9085,7 @@ return { [1]="vaal_storm_call_base_delay_ms" } }, - [322]={ + [351]={ [1]={ [1]={ limit={ @@ -8438,7 +9110,7 @@ return { [1]="volatile_dead_base_number_of_corpses_to_consume" } }, - [323]={ + [352]={ [1]={ [1]={ limit={ @@ -8454,7 +9126,7 @@ return { [1]="volatile_dead_max_cores_allowed" } }, - [324]={ + [353]={ [1]={ [1]={ limit={ @@ -8483,7 +9155,7 @@ return { [1]="warcry_speed_+%" } }, - [325]={ + [354]={ [1]={ [1]={ limit={ @@ -8512,7 +9184,7 @@ return { [1]="weapon_elemental_damage_+%" } }, - [326]={ + [355]={ [1]={ [1]={ limit={ @@ -8541,7 +9213,7 @@ return { [1]="weapon_trap_rotation_speed_+%_if_dual_wielding" } }, - [327]={ + [356]={ [1]={ [1]={ [1]={ @@ -8575,252 +9247,282 @@ return { ["active_skill_cast_speed_+%_final"]=63, ["active_skill_critical_strike_chance_+%_final"]=64, ["active_skill_damage_+%_final"]=18, - ["active_skill_display_does_intensity_stuff"]=308, - ["active_skill_display_suppress_physical_to_cold_damage_conversion"]=298, + ["active_skill_damage_+%_final_if_ward_has_not_broken_in_the_past_2_seconds"]=65, + ["active_skill_display_does_intensity_stuff"]=337, + ["active_skill_display_suppress_physical_to_cold_damage_conversion"]=327, ["active_skill_hit_damage_+%_final_per_100ms_duration"]=39, ["active_skill_merged_damage_+%_final_while_dual_wielding"]=16, ["active_skill_minion_damage_+%_final"]=19, ["active_skill_minion_physical_damage_+%_final"]=20, ["active_skill_physical_damage_+%_final"]=21, - ["active_skill_poison_duration_+%_final"]=65, - ["active_skill_quality_damage_+%_final"]=66, - ["active_skill_quality_duration_+%_final"]=67, - ["add_power_charge_on_kill_%_chance"]=68, - ["added_fire_damage_to_attacks_equal_to_%_maximum_life"]=69, - ["added_physical_damage_to_attacks_equal_to_%_maximum_mana"]=70, - ["additional_base_critical_strike_chance"]=71, - ["additional_weapon_base_attack_time_ms"]=72, + ["active_skill_poison_duration_+%_final"]=66, + ["active_skill_quality_damage_+%_final"]=67, + ["active_skill_quality_duration_+%_final"]=68, + ["add_power_charge_on_kill_%_chance"]=69, + ["added_fire_damage_to_attacks_equal_to_%_maximum_life"]=70, + ["added_physical_damage_to_attacks_equal_to_%_maximum_mana"]=71, + ["additional_base_critical_strike_chance"]=72, + ["additional_weapon_base_attack_time_ms"]=73, ["additive_cast_speed_modifiers_apply_to_sigil_repeat_frequency"]=50, - ["additive_mine_duration_modifiers_apply_to_buff_effect_duration"]=73, - ["always_freeze"]=96, - ["ancestor_totem_buff_effect_+%"]=74, - ["ancestor_totem_parent_activation_range_+%"]=75, + ["additive_mine_duration_modifiers_apply_to_buff_effect_duration"]=74, + ["always_freeze"]=99, + ["ancestor_totem_buff_effect_+%"]=75, + ["ancestor_totem_parent_activation_range_+%"]=76, ["animate_item_maximum_level_requirement"]=54, - ["area_damage_+%"]=76, - ["area_of_effect_+%_while_dead"]=77, - ["artillery_ballista_number_of_arrows_is_equal_to_number_of_nearby_targets"]=114, - ["attack_and_cast_speed_+%"]=78, - ["attack_and_cast_speed_+%_during_onslaught"]=79, - ["attack_maximum_added_chaos_damage"]=80, - ["attack_maximum_added_cold_damage"]=81, - ["attack_maximum_added_fire_damage"]=82, - ["attack_maximum_added_lightning_damage"]=83, - ["attack_maximum_added_physical_damage"]=84, - ["attack_minimum_added_chaos_damage"]=80, - ["attack_minimum_added_cold_damage"]=81, - ["attack_minimum_added_fire_damage"]=82, - ["attack_minimum_added_lightning_damage"]=83, - ["attack_minimum_added_physical_damage"]=84, + ["area_damage_+%"]=77, + ["area_of_effect_+%_while_dead"]=78, + ["arrowswarm_mana_spent_to_generate_arrow"]=79, + ["arrowswarm_maximum_allowed_arrows"]=80, + ["artillery_ballista_number_of_arrows_is_equal_to_number_of_nearby_targets"]=117, + ["attack_and_cast_speed_+%"]=81, + ["attack_and_cast_speed_+%_during_onslaught"]=82, + ["attack_maximum_added_chaos_damage"]=83, + ["attack_maximum_added_cold_damage"]=84, + ["attack_maximum_added_fire_damage"]=85, + ["attack_maximum_added_lightning_damage"]=86, + ["attack_maximum_added_physical_damage"]=87, + ["attack_minimum_added_chaos_damage"]=83, + ["attack_minimum_added_cold_damage"]=84, + ["attack_minimum_added_fire_damage"]=85, + ["attack_minimum_added_lightning_damage"]=86, + ["attack_minimum_added_physical_damage"]=87, ["attack_skills_additional_ballista_totems_allowed"]=43, - ["attack_skills_have_added_lightning_damage_equal_to_%_of_maximum_mana"]=85, - ["attack_speed_+%"]=86, - ["attack_speed_+%_granted_from_skill"]=87, + ["attack_skills_have_added_lightning_damage_equal_to_%_of_maximum_mana"]=88, + ["attack_speed_+%"]=89, + ["attack_speed_+%_granted_from_skill"]=90, ["aura_effect_+%"]=28, - ["avoid_interruption_while_using_this_skill_%"]=88, - ["base_added_cooldown_count"]=89, - ["base_ailment_damage_+%"]=90, - ["base_aura_area_of_effect_+%"]=91, - ["base_blackhole_tick_rate_ms"]=92, - ["base_blade_vortex_hit_rate_ms"]=93, - ["base_bleed_duration_+%"]=94, + ["avoid_interruption_while_using_this_skill_%"]=91, + ["base_added_cooldown_count"]=92, + ["base_ailment_damage_+%"]=93, + ["base_aura_area_of_effect_+%"]=94, + ["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"]=33, ["base_can_gain_banner_resource"]=1, - ["base_cast_speed_+%"]=95, - ["base_chance_to_freeze_%"]=96, - ["base_chance_to_ignite_%"]=97, - ["base_chance_to_shock_%"]=98, - ["base_circle_of_power_mana_spend_per_upgrade"]=99, + ["base_cast_speed_+%"]=98, + ["base_chance_to_freeze_%"]=99, + ["base_chance_to_ignite_%"]=100, + ["base_chance_to_shock_%"]=101, + ["base_circle_of_power_mana_spend_per_upgrade"]=102, ["base_cold_damage_to_deal_per_minute"]=52, - ["base_cost_+%"]=100, - ["base_critical_strike_multiplier_+"]=101, - ["base_curse_duration_+%"]=102, - ["base_galvanic_field_beam_delay_ms"]=103, - ["base_global_chance_to_knockback_%"]=104, - ["base_killed_monster_dropped_item_rarity_+%"]=105, - ["base_life_cost_+%"]=106, - ["base_life_gain_per_target"]=107, - ["base_life_leech_from_attack_damage_permyriad"]=108, - ["base_life_reservation_+%"]=109, - ["base_mana_cost_-%"]=110, - ["base_mana_reservation_+%"]=111, - ["base_max_number_of_absolution_sentinels"]=112, - ["base_max_number_of_dominated_magic_monsters"]=232, - ["base_max_number_of_dominated_normal_monsters"]=233, - ["base_max_number_of_dominated_rare_monsters"]=234, + ["base_cost_+%"]=103, + ["base_critical_strike_multiplier_+"]=104, + ["base_curse_duration_+%"]=105, + ["base_galvanic_field_beam_delay_ms"]=106, + ["base_global_chance_to_knockback_%"]=107, + ["base_killed_monster_dropped_item_rarity_+%"]=108, + ["base_life_cost_+%"]=109, + ["base_life_gain_per_target"]=110, + ["base_life_leech_from_attack_damage_permyriad"]=111, + ["base_life_reservation_+%"]=112, + ["base_mana_cost_-%"]=113, + ["base_mana_reservation_+%"]=114, + ["base_max_number_of_absolution_sentinels"]=115, + ["base_max_number_of_dominated_magic_monsters"]=261, + ["base_max_number_of_dominated_normal_monsters"]=262, + ["base_max_number_of_dominated_rare_monsters"]=263, ["base_melee_attack_repeat_count"]=51, - ["base_mine_detonation_time_ms"]=113, - ["base_number_of_animated_weapons_allowed"]=262, - ["base_number_of_arrows"]=114, - ["base_number_of_blink_mirror_arrow_elemental_hit_clones"]=238, - ["base_number_of_blink_mirror_arrow_rain_of_arrows_clones"]=239, - ["base_number_of_champions_of_light_allowed"]=115, + ["base_mine_detonation_time_ms"]=116, + ["base_number_of_animated_weapons_allowed"]=291, + ["base_number_of_arrows"]=117, + ["base_number_of_blink_mirror_arrow_elemental_hit_clones"]=267, + ["base_number_of_blink_mirror_arrow_rain_of_arrows_clones"]=268, + ["base_number_of_champions_of_light_allowed"]=118, ["base_number_of_golems_allowed"]=38, - ["base_number_of_projectiles"]=116, + ["base_number_of_living_lightning_allowed"]=119, + ["base_number_of_projectiles"]=120, ["base_number_of_raging_spirits_allowed"]=26, - ["base_number_of_reapers_allowed"]=264, - ["base_number_of_relics_allowed"]=117, + ["base_number_of_reapers_allowed"]=293, + ["base_number_of_relics_allowed"]=121, ["base_number_of_skeletons_allowed"]=25, ["base_number_of_spectres_allowed"]=24, ["base_number_of_totems_allowed"]=44, - ["base_number_of_void_spawns_allowed"]=265, + ["base_number_of_void_spawns_allowed"]=294, ["base_number_of_zombies_allowed"]=23, - ["base_physical_damage_%_to_convert_to_lightning"]=118, - ["base_poison_duration_+%"]=119, - ["base_projectile_speed_+%"]=120, - ["base_reduce_enemy_cold_resistance_%"]=121, - ["base_reduce_enemy_fire_resistance_%"]=122, - ["base_reduce_enemy_lightning_resistance_%"]=123, - ["base_reservation_+%"]=125, - ["base_reservation_efficiency_+%"]=124, + ["base_physical_damage_%_to_convert_to_lightning"]=122, + ["base_poison_duration_+%"]=123, + ["base_projectile_speed_+%"]=124, + ["base_reduce_enemy_cold_resistance_%"]=125, + ["base_reduce_enemy_fire_resistance_%"]=126, + ["base_reduce_enemy_lightning_resistance_%"]=127, + ["base_reservation_+%"]=129, + ["base_reservation_efficiency_+%"]=128, ["base_secondary_skill_effect_duration"]=31, ["base_sigil_repeat_frequency_ms"]=46, - ["base_skill_area_of_effect_+%"]=126, + ["base_skill_area_of_effect_+%"]=130, ["base_skill_effect_duration"]=29, ["base_spell_repeat_count"]=37, - ["base_stun_duration_+%"]=127, - ["base_use_life_in_place_of_mana"]=128, - ["base_weapon_trap_rotation_speed_+%"]=129, - ["base_weapon_trap_total_rotation_%"]=130, - ["berserk_base_rage_loss_per_second"]=131, - ["bladefall_base_volley_frequency_ms"]=132, - ["bladefall_blade_left_in_ground_for_every_X_volleys"]=133, - ["bladefall_create_X_lingering_blades_per_volley"]=134, - ["bladefall_number_of_volleys"]=135, - ["bladefall_volley_frequency_+%_per_100_maximum_mana"]=136, - ["blades_left_in_ground_+%_final_if_not_hand_cast"]=137, - ["blind_duration_+%"]=138, - ["blood_spears_additional_number_of_spears_if_changed_stance_recently"]=139, - ["blood_spears_base_number_of_spears"]=140, - ["blood_spears_damage_+%_final_in_blood_stance"]=141, - ["brands_reattach_on_activation"]=142, + ["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_base_volley_frequency_ms"]=136, + ["bladefall_blade_left_in_ground_for_every_X_volleys"]=137, + ["bladefall_create_X_lingering_blades_per_volley"]=138, + ["bladefall_number_of_volleys"]=139, + ["bladefall_volley_frequency_+%_per_100_maximum_mana"]=140, + ["blades_left_in_ground_+%_final_if_not_hand_cast"]=141, + ["blind_duration_+%"]=142, + ["blood_spears_additional_number_of_spears_if_changed_stance_recently"]=143, + ["blood_spears_base_number_of_spears"]=144, + ["blood_spears_damage_+%_final_in_blood_stance"]=145, + ["brands_reattach_on_activation"]=146, ["buff_duration_+%"]=34, - ["burn_damage_+%"]=143, + ["burn_damage_+%"]=147, ["can_gain_banner_resource_while_banner_is_placed"]=1, - ["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, - ["cobra_lash_hit_and_ailment_damage_+%_final_for_each_remaining_chain"]=155, - ["cold_ailment_effect_+%"]=156, - ["cold_damage_%_to_add_as_fire"]=157, - ["cold_damage_+%"]=158, - ["consecrated_ground_area_+%"]=161, - ["consecrated_ground_effect_+%"]=159, - ["consecrated_ground_enemy_damage_taken_+%"]=160, - ["conversation_trap_converted_enemy_damage_+%"]=162, - ["conversion_trap_converted_enemies_chance_to_taunt_on_hit_%"]=163, - ["corpse_erruption_base_maximum_number_of_geyers"]=164, - ["cremation_fires_projectiles_faster_+%_final"]=165, - ["critical_ailment_dot_multiplier_+"]=166, - ["critical_multiplier_+%_per_100_max_es_on_shield"]=167, - ["critical_strike_chance_+%"]=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_+%_with_hits_and_ailments"]=181, - ["damage_over_time_+%"]=170, - ["damage_vs_cursed_enemies_per_enemy_curse_+%"]=182, - ["damage_vs_enemies_on_low_life_+%"]=183, - ["dash_grants_phasing_after_use_ms"]=184, - ["display_base_intensity_loss"]=185, - ["display_eye_of_winter_projectile_modifier"]=193, - ["display_fixed_area"]=186, - ["display_frost_fury_additive_cast_speed_modifiers_apply_to_fire_speed"]=187, + ["chance_%_when_poison_to_also_poison_another_enemy"]=148, + ["chance_to_double_stun_duration_%"]=149, + ["chance_to_fork_extra_projectile_%"]=150, + ["chance_to_fortify_on_melee_hit_+%"]=151, + ["chance_to_gain_frenzy_charge_on_killing_frozen_enemy_%"]=152, + ["chance_to_place_an_additional_mine_%"]=153, + ["chance_to_scorch_%"]=154, + ["chaos_damage_+%"]=155, + ["chill_duration_+%"]=156, + ["chill_effect_+%"]=157, + ["circle_of_power_skill_cost_mana_cost_+%"]=158, + ["cobra_lash_hit_and_ailment_damage_+%_final_for_each_remaining_chain"]=159, + ["cold_ailment_effect_+%"]=160, + ["cold_damage_%_to_add_as_fire"]=161, + ["cold_damage_+%"]=162, + ["consecrated_ground_area_+%"]=165, + ["consecrated_ground_effect_+%"]=163, + ["consecrated_ground_enemy_damage_taken_+%"]=164, + ["conversation_trap_converted_enemy_damage_+%"]=166, + ["conversion_trap_converted_enemies_chance_to_taunt_on_hit_%"]=167, + ["corpse_erruption_base_maximum_number_of_geyers"]=168, + ["cremation_fires_projectiles_faster_+%_final"]=169, + ["critical_ailment_dot_multiplier_+"]=170, + ["critical_multiplier_+%_per_100_max_es_on_shield"]=171, + ["critical_strike_chance_+%"]=172, + ["cyclone_max_stages_movement_speed_+%"]=173, + ["damage_+%"]=175, + ["damage_+%_on_full_energy_shield"]=182, + ["damage_+%_per_endurance_charge"]=176, + ["damage_+%_per_frenzy_charge"]=177, + ["damage_+%_per_power_charge"]=178, + ["damage_+%_vs_enemies_on_full_life"]=179, + ["damage_+%_vs_enemies_per_freeze_shock_ignite"]=180, + ["damage_+%_vs_frozen_enemies"]=181, + ["damage_+%_when_on_full_life"]=183, + ["damage_+%_when_on_low_life"]=184, + ["damage_+%_with_hits_and_ailments"]=185, + ["damage_over_time_+%"]=174, + ["damage_vs_cursed_enemies_per_enemy_curse_+%"]=186, + ["damage_vs_enemies_on_low_life_+%"]=187, + ["dash_grants_phasing_after_use_ms"]=188, + ["display_base_intensity_loss"]=189, + ["display_eye_of_winter_projectile_modifier"]=197, + ["display_fixed_area"]=190, + ["display_frost_fury_additive_cast_speed_modifiers_apply_to_fire_speed"]=191, ["display_minion_base_maximum_life"]=36, - ["divine_tempest_base_number_of_nearby_enemies_to_zap"]=188, - ["dot_multiplier_+"]=189, + ["divine_tempest_base_number_of_nearby_enemies_to_zap"]=192, + ["dot_multiplier_+"]=193, ["earthquake_skill_aftershock_ailment_damage_+%_final_per_100ms_duration"]=42, ["earthquake_skill_aftershock_area_of_effect_+%_final_per_100ms_duration"]=45, ["earthquake_skill_aftershock_hit_damage_+%_final_per_100ms_duration"]=40, - ["elemental_damage_+%"]=190, - ["enemy_phys_reduction_%_penalty_vs_hit"]=191, - ["ethereal_knives_blade_left_in_ground_for_every_X_projectiles"]=192, - ["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, - ["gain_%_of_base_dagger_damage_as_added_spell_damage"]=203, - ["galvanic_field_beam_frequency_+%"]=204, - ["global_chance_to_blind_on_hit_%"]=205, - ["global_maximum_added_chaos_damage"]=206, - ["global_maximum_added_cold_damage"]=207, - ["global_maximum_added_fire_damage"]=208, - ["global_maximum_added_lightning_damage"]=209, - ["global_maximum_added_physical_damage"]=210, - ["global_minimum_added_chaos_damage"]=206, - ["global_minimum_added_cold_damage"]=207, - ["global_minimum_added_fire_damage"]=208, - ["global_minimum_added_lightning_damage"]=209, - ["global_minimum_added_physical_damage"]=210, - ["global_reduce_enemy_block_%"]=211, - ["golem_buff_effect_+%"]=212, - ["herald_of_thunder_bolt_base_frequency"]=213, - ["herald_of_thunder_bolt_frequency_+%"]=214, - ["hit_damage_+%"]=215, - ["hydro_sphere_base_pulse_frequency_ms"]=216, - ["hydro_sphere_pulse_frequency_+%"]=217, - ["ignite_duration_+%"]=218, - ["intensity_loss_frequency_while_moving_+%"]=219, - ["kinetic_blast_modifiers_to_number_of_projectiles_instead_apply_to_number_of_clusters"]=220, - ["kinetic_wand_base_number_of_zig_zags"]=221, - ["knockback_distance_+%"]=222, - ["life_leech_from_any_damage_permyriad"]=223, - ["lightning_ailment_effect_+%"]=224, - ["lightning_damage_%_to_add_as_chaos"]=225, - ["lightning_damage_+%"]=226, - ["lightning_tower_trap_base_interval_duration_ms"]=227, - ["magma_orb_%_chance_to_big_explode_instead_of_chaining"]=228, - ["maim_effect_+%"]=229, - ["mana_gain_per_target"]=230, - ["mana_leech_from_any_damage_permyriad"]=231, - ["maximum_energy_shield_leech_amount_per_leech_+%"]=235, - ["maximum_life_+%_for_corpses_you_create"]=237, - ["maximum_life_leech_amount_per_leech_+%"]=236, - ["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_chaining"]=250, - ["modifiers_to_number_of_projectiles_instead_apply_to_splitting"]=251, - ["modifiers_to_projectile_count_do_not_apply"]=252, - ["modifiers_to_trap_throw_speed_apply_to_lightning_spire_trap_frequency"]=253, - ["modifiers_to_trap_throw_speed_apply_to_seismic_trap_frequency"]=254, - ["non_curse_aura_effect_+%"]=255, - ["number_of_additional_arrows"]=256, + ["elemental_damage_+%"]=194, + ["enemy_phys_reduction_%_penalty_vs_hit"]=195, + ["ethereal_knives_blade_left_in_ground_for_every_X_projectiles"]=196, + ["faster_bleed_%"]=198, + ["faster_burn_%"]=199, + ["faster_poison_%"]=200, + ["fire_damage_+%"]=201, + ["firestorm_explosion_area_of_effect_+%"]=202, + ["flame_link_added_fire_damage_from_life_%"]=204, + ["flame_link_maximum_fire_damage"]=203, + ["flame_link_minimum_fire_damage"]=203, + ["fortify_duration_+%"]=205, + ["freeze_duration_+%"]=206, + ["gain_%_of_base_dagger_damage_as_added_spell_damage"]=207, + ["galvanic_field_beam_frequency_+%"]=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, + ["global_reduce_enemy_block_%"]=215, + ["golem_buff_effect_+%"]=216, + ["graft_granted_maximum_base_lightning_damage"]=217, + ["graft_granted_minimum_base_lightning_damage"]=217, + ["graft_skill_esh_jolt_damage_taken_+%_to_grant"]=218, + ["graft_skill_esh_jolt_maximum_attack_damage_+%_final_to_grant"]=219, + ["graft_skill_esh_lightning_bolts_number_of_bolts"]=220, + ["graft_skill_esh_lightning_clones_number_of_clones_to_create"]=221, + ["graft_skill_esh_lightning_hands_maximum_hands"]=222, + ["graft_skill_esh_lightning_hands_number_of_hands_spawned"]=223, + ["graft_skill_tul_aegis_aegis_shield_amount_granted_on_applying_exposure"]=224, + ["graft_skill_tul_mortars_maximum_mortars_fired_per_volley"]=225, + ["graft_skill_tul_summon_maximum_allowed_demons"]=226, + ["graft_skill_tul_summon_number_of_demons_to_summon"]=227, + ["graft_skill_uulnet_bone_spires_max_spires_allowed"]=228, + ["graft_skill_uulnetol_bone_spires_num_of_spires_to_create"]=229, + ["graft_skill_uulnetol_hand_slam_number_of_hands_to_create"]=230, + ["graft_skill_uulnetol_impale_buff_%_chance_for_additional_impale_to_grant"]=231, + ["graft_skill_uulnetol_impale_buff_additional_impales_to_grant"]=232, + ["graft_skill_uulnetol_impale_buff_impale_effect_%_to_grant"]=233, + ["graft_skill_xoph_ailment_buff_%_of_physical_damage_gained_as_element_to_grant"]=234, + ["graft_skill_xoph_flame_pillars_number_of_pillars"]=235, + ["graft_skill_xoph_geyser_explosion_maximum_geysers"]=236, + ["graft_skill_xoph_geyser_explosion_number_of_geysers_to_spawn"]=237, + ["graft_skill_xoph_geyser_explosion_number_of_projectiles_to_erupt"]=238, + ["graft_uulnetol_life_recovery_rate_+%_final_to_grant_on_reaching_low_life"]=239, + ["graft_uulnetol_number_of_endurance_charges_to_grant_on_reaching_low_life"]=240, + ["herald_of_thunder_bolt_base_frequency"]=241, + ["herald_of_thunder_bolt_frequency_+%"]=242, + ["hit_damage_+%"]=243, + ["holy_flame_totem_consecrated_ground_area_+%"]=244, + ["hydro_sphere_base_pulse_frequency_ms"]=245, + ["hydro_sphere_pulse_frequency_+%"]=246, + ["ignite_duration_+%"]=247, + ["intensity_loss_frequency_while_moving_+%"]=248, + ["kinetic_blast_modifiers_to_number_of_projectiles_instead_apply_to_number_of_clusters"]=249, + ["kinetic_wand_base_number_of_zig_zags"]=250, + ["knockback_distance_+%"]=251, + ["life_leech_from_any_damage_permyriad"]=252, + ["lightning_ailment_effect_+%"]=253, + ["lightning_damage_%_to_add_as_chaos"]=254, + ["lightning_damage_+%"]=255, + ["lightning_tower_trap_base_interval_duration_ms"]=256, + ["magma_orb_%_chance_to_big_explode_instead_of_chaining"]=257, + ["maim_effect_+%"]=258, + ["mana_gain_per_target"]=259, + ["mana_leech_from_any_damage_permyriad"]=260, + ["maximum_energy_shield_leech_amount_per_leech_+%"]=264, + ["maximum_life_+%_for_corpses_you_create"]=266, + ["maximum_life_leech_amount_per_leech_+%"]=265, + ["melee_attack_number_of_spirit_strikes"]=269, + ["melee_damage_+%"]=270, + ["melee_damage_vs_bleeding_enemies_+%"]=271, + ["melee_physical_damage_+%"]=272, + ["mine_detonation_radius_+%"]=273, + ["mine_detonation_speed_+%"]=274, + ["mine_duration_+%"]=275, + ["mine_laying_speed_+%"]=276, + ["minion_chance_to_deal_double_damage_%"]=277, + ["minion_elemental_resistance_%"]=278, + ["modifiers_to_number_of_projectiles_instead_apply_to_chaining"]=279, + ["modifiers_to_number_of_projectiles_instead_apply_to_splitting"]=280, + ["modifiers_to_projectile_count_do_not_apply"]=281, + ["modifiers_to_trap_throw_speed_apply_to_lightning_spire_trap_frequency"]=282, + ["modifiers_to_trap_throw_speed_apply_to_seismic_trap_frequency"]=283, + ["non_curse_aura_effect_+%"]=284, + ["number_of_additional_arrows"]=285, ["number_of_additional_forks_base"]=48, - ["number_of_additional_projectiles"]=257, - ["number_of_additional_remote_mines_allowed"]=259, - ["number_of_additional_traps_allowed"]=260, - ["number_of_additional_traps_to_throw"]=261, - ["number_of_chains"]=258, - ["number_of_projectiles_to_fire_+%_final_per_steel_ammo_consumed"]=263, + ["number_of_additional_projectiles"]=286, + ["number_of_additional_remote_mines_allowed"]=288, + ["number_of_additional_traps_allowed"]=289, + ["number_of_additional_traps_to_throw"]=290, + ["number_of_chains"]=287, + ["number_of_projectiles_to_fire_+%_final_per_steel_ammo_consumed"]=292, ["off_hand_base_weapon_attack_duration_ms"]=8, ["off_hand_local_maximum_added_cold_damage"]=2, ["off_hand_local_maximum_added_fire_damage"]=3, @@ -8835,93 +9537,93 @@ return { ["off_hand_minimum_added_fire_damage_per_15_shield_armour"]=6, ["off_hand_minimum_added_physical_damage_per_15_shield_armour_and_evasion_rating"]=7, ["offering_skill_effect_duration_per_corpse"]=32, - ["orb_of_storms_base_bolt_frequency_ms"]=266, - ["orb_of_storms_base_channelling_bolt_frequency_ms"]=267, + ["orb_of_storms_base_bolt_frequency_ms"]=295, + ["orb_of_storms_base_channelling_bolt_frequency_ms"]=296, parent="gem_stat_descriptions", - ["phys_cascade_trap_base_interval_duration_ms"]=268, - ["physical_damage_%_to_add_as_fire"]=269, - ["physical_damage_%_to_add_as_lightning"]=270, - ["physical_damage_+%"]=271, + ["phys_cascade_trap_base_interval_duration_ms"]=297, + ["physical_damage_%_to_add_as_fire"]=298, + ["physical_damage_%_to_add_as_lightning"]=299, + ["physical_damage_+%"]=300, ["physical_damage_+%_per_frenzy_charge"]=22, - ["placing_traps_cooldown_recovery_+%"]=272, - ["power_siphon_base_fire_at_x_targets"]=273, - ["precision_grants_area_of_effect_+%_final"]=274, - ["primary_projectile_chains_+"]=275, - ["prismatic_rain_beam_base_frequency_ms"]=276, - ["projectile_base_number_of_targets_to_pierce"]=277, - ["projectile_damage_+%"]=278, - ["projectile_number_to_split"]=279, - ["projectile_return_%_chance"]=280, + ["placing_traps_cooldown_recovery_+%"]=301, + ["power_siphon_base_fire_at_x_targets"]=302, + ["precision_grants_area_of_effect_+%_final"]=303, + ["primary_projectile_chains_+"]=304, + ["prismatic_rain_beam_base_frequency_ms"]=305, + ["projectile_base_number_of_targets_to_pierce"]=306, + ["projectile_damage_+%"]=307, + ["projectile_number_to_split"]=308, + ["projectile_return_%_chance"]=309, ["projectiles_fork"]=47, - ["projectiles_return"]=280, - ["quality_display_animate_weapon_is_gem"]=262, - ["quality_display_base_additional_arrows_is_gem"]=114, + ["projectiles_return"]=309, + ["quality_display_animate_weapon_is_gem"]=291, + ["quality_display_base_additional_arrows_is_gem"]=117, ["quality_display_base_duration_is_quality"]=29, - ["quality_display_base_number_of_projectiles_is_gem"]=116, - ["quality_display_blade_trap_is_gem"]=130, - ["quality_display_bladefall_is_gem"]=135, - ["quality_display_hydrosphere_is_gem"]=217, - ["quality_display_perforate_is_gem"]=140, + ["quality_display_base_number_of_projectiles_is_gem"]=120, + ["quality_display_blade_trap_is_gem"]=134, + ["quality_display_bladefall_is_gem"]=139, + ["quality_display_hydrosphere_is_gem"]=246, + ["quality_display_perforate_is_gem"]=144, ["quality_display_raise_zombie_is_gem"]=23, ["quality_display_summon_skeleton_is_gem"]=25, - ["quality_display_tornado_shot_is_gem"]=311, - ["quick_guard_damage_absorb_limit"]=281, - ["quick_guard_damage_absorbed_%"]=281, - ["rain_of_arrows_additional_sequences"]=282, - ["raise_zombie_does_not_use_corpses"]=283, - ["reave_additional_max_stacks"]=284, - ["reduce_enemy_chaos_resistance_%"]=285, - ["reduce_enemy_dodge_%"]=286, - ["regenerate_x_life_over_1_second_on_skill_use_or_trigger"]=287, - ["retaliation_use_window_duration_+%"]=288, - ["secondary_skill_effect_duration_+%"]=289, - ["seismic_trap_frequency_+%"]=290, - ["shock_duration_+%"]=291, + ["quality_display_tornado_shot_is_gem"]=340, + ["quick_guard_damage_absorb_limit"]=310, + ["quick_guard_damage_absorbed_%"]=310, + ["rain_of_arrows_additional_sequences"]=311, + ["raise_zombie_does_not_use_corpses"]=312, + ["reave_additional_max_stacks"]=313, + ["reduce_enemy_chaos_resistance_%"]=314, + ["reduce_enemy_dodge_%"]=315, + ["regenerate_x_life_over_1_second_on_skill_use_or_trigger"]=316, + ["retaliation_use_window_duration_+%"]=317, + ["secondary_skill_effect_duration_+%"]=318, + ["seismic_trap_frequency_+%"]=319, + ["shock_duration_+%"]=320, ["sigil_repeat_frequency_+%"]=49, - ["skill_base_chaos_damage_%_maximum_energy_shield"]=292, - ["skill_base_chaos_damage_%_maximum_life"]=293, - ["skill_cold_damage_%_to_convert_to_fire"]=294, + ["skill_base_chaos_damage_%_maximum_energy_shield"]=321, + ["skill_base_chaos_damage_%_maximum_life"]=322, + ["skill_cold_damage_%_to_convert_to_fire"]=323, ["skill_effect_duration_+%"]=35, - ["skill_fire_damage_%_to_convert_to_chaos"]=295, - ["skill_lightning_damage_%_to_convert_to_chaos"]=296, - ["skill_physical_damage_%_to_convert_to_chaos"]=297, - ["skill_physical_damage_%_to_convert_to_cold"]=298, - ["skill_physical_damage_%_to_convert_to_fire"]=299, + ["skill_fire_damage_%_to_convert_to_chaos"]=324, + ["skill_lightning_damage_%_to_convert_to_chaos"]=325, + ["skill_physical_damage_%_to_convert_to_chaos"]=326, + ["skill_physical_damage_%_to_convert_to_cold"]=327, + ["skill_physical_damage_%_to_convert_to_fire"]=328, ["skill_physical_damage_%_to_convert_to_lightning"]=14, - ["snapping_adder_chance_to_release_projectile_when_hit_%"]=300, - ["soulfeast_take_%_maximum_energy_shield_as_chaos_damage"]=301, - ["soulfeast_take_%_maximum_life_as_chaos_damage"]=301, - ["spectral_spiral_weapon_base_number_of_bounces"]=302, + ["snapping_adder_chance_to_release_projectile_when_hit_%"]=329, + ["soulfeast_take_%_maximum_energy_shield_as_chaos_damage"]=330, + ["soulfeast_take_%_maximum_life_as_chaos_damage"]=330, + ["spectral_spiral_weapon_base_number_of_bounces"]=331, ["spell_base_fire_damage_%_maximum_life"]=53, - ["spell_cast_time_added_to_cooldown_if_triggered"]=303, - ["spell_damage_+%"]=304, + ["spell_cast_time_added_to_cooldown_if_triggered"]=332, + ["spell_damage_+%"]=333, ["spell_maximum_base_fire_damage"]=53, ["spell_minimum_base_fire_damage"]=53, - ["static_strike_number_of_beam_targets"]=305, - ["storm_blade_damage_+%_final_with_two_hand_weapon"]=307, - ["storm_blade_maximum_lightning_damage"]=306, - ["storm_blade_maximum_lightning_damage_from_es_%"]=306, - ["storm_blade_minimum_lightning_damage"]=306, - ["storm_blade_minimum_lightning_damage_from_es_%"]=306, - ["support_trap_damage_+%_final"]=309, + ["static_strike_number_of_beam_targets"]=334, + ["storm_blade_damage_+%_final_with_two_hand_weapon"]=336, + ["storm_blade_maximum_lightning_damage"]=335, + ["storm_blade_maximum_lightning_damage_from_es_%"]=335, + ["storm_blade_minimum_lightning_damage"]=335, + ["storm_blade_minimum_lightning_damage_from_es_%"]=335, + ["support_trap_damage_+%_final"]=338, ["tornado_maximum_number_of_hits"]=30, - ["tornado_only_primary_duration_+%"]=310, - ["tornado_shot_num_of_secondary_projectiles"]=311, - ["totems_explode_on_death_for_%_life_as_physical"]=312, - ["totems_regenerate_%_life_per_minute"]=313, - ["trap_damage_+%"]=314, - ["trap_duration_+%"]=315, - ["trap_throwing_speed_+%"]=316, - ["trap_trigger_radius_+%"]=317, - ["unearth_base_corpse_level"]=318, + ["tornado_only_primary_duration_+%"]=339, + ["tornado_shot_num_of_secondary_projectiles"]=340, + ["totems_explode_on_death_for_%_life_as_physical"]=341, + ["totems_regenerate_%_life_per_minute"]=342, + ["trap_damage_+%"]=343, + ["trap_duration_+%"]=344, + ["trap_throwing_speed_+%"]=345, + ["trap_trigger_radius_+%"]=346, + ["unearth_base_corpse_level"]=347, ["vaal_animate_weapon_minimum_level_requirement"]=54, - ["vaal_lightning_arrow_fork_and_chain_modifiers_apply_to_number_of_redirects"]=320, - ["vaal_lightning_arrow_number_of_redirects"]=319, - ["vaal_storm_call_base_delay_ms"]=321, - ["volatile_dead_base_number_of_corpses_to_consume"]=322, - ["volatile_dead_max_cores_allowed"]=323, - ["warcry_speed_+%"]=324, - ["weapon_elemental_damage_+%"]=325, - ["weapon_trap_rotation_speed_+%_if_dual_wielding"]=326, - ["weapon_trap_total_rotation_%_if_dual_wielding"]=327 + ["vaal_lightning_arrow_fork_and_chain_modifiers_apply_to_number_of_redirects"]=349, + ["vaal_lightning_arrow_number_of_redirects"]=348, + ["vaal_storm_call_base_delay_ms"]=350, + ["volatile_dead_base_number_of_corpses_to_consume"]=351, + ["volatile_dead_max_cores_allowed"]=352, + ["warcry_speed_+%"]=353, + ["weapon_elemental_damage_+%"]=354, + ["weapon_trap_rotation_speed_+%_if_dual_wielding"]=355, + ["weapon_trap_total_rotation_%_if_dual_wielding"]=356 } \ 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 f4c281328b..fc576f8da3 100644 --- a/src/Data/StatDescriptions/gem_stat_descriptions.lua +++ b/src/Data/StatDescriptions/gem_stat_descriptions.lua @@ -10414,6 +10414,35 @@ return { } }, [385]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Supported Skills have {0}% more Curse Duration" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Supported Skills have {0}% less Curse Duration" + } + }, + stats={ + [1]="hextouch_support_curse_duration_+%_final" + } + }, + [386]={ [1]={ [1]={ limit={ @@ -10442,7 +10471,7 @@ return { [1]="hit_and_poison_damage_+%" } }, - [386]={ + [387]={ [1]={ [1]={ limit={ @@ -10471,7 +10500,7 @@ return { [1]="hit_and_poison_damage_+%_per_poison_on_enemy" } }, - [387]={ + [388]={ [1]={ [1]={ limit={ @@ -10500,7 +10529,7 @@ return { [1]="hit_damage_+%" } }, - [388]={ + [389]={ [1]={ [1]={ limit={ @@ -10529,7 +10558,7 @@ return { [1]="ignite_duration_+%" } }, - [389]={ + [390]={ [1]={ [1]={ limit={ @@ -10545,7 +10574,7 @@ return { [1]="ignites_apply_fire_resistance_+" } }, - [390]={ + [391]={ [1]={ [1]={ limit={ @@ -10561,7 +10590,7 @@ return { [1]="ignore_self_damage_from_trauma_chance_%" } }, - [391]={ + [392]={ [1]={ [1]={ limit={ @@ -10590,7 +10619,7 @@ return { [1]="impale_debuff_effect_+%" } }, - [392]={ + [393]={ [1]={ [1]={ [1]={ @@ -10610,7 +10639,7 @@ return { [1]="impale_phys_reduction_%_penalty" } }, - [393]={ + [394]={ [1]={ [1]={ limit={ @@ -10626,7 +10655,7 @@ return { [1]="impale_support_physical_damage_+%_final" } }, - [394]={ + [395]={ [1]={ [1]={ limit={ @@ -10655,7 +10684,7 @@ return { [1]="inc_aoe_plus_more_area_damage_+%_final" } }, - [395]={ + [396]={ [1]={ [1]={ [1]={ @@ -10675,7 +10704,7 @@ return { [1]="infusion_grants_life_regeneration_rate_per_minute_%" } }, - [396]={ + [397]={ [1]={ [1]={ limit={ @@ -10704,7 +10733,7 @@ return { [1]="inspiration_charge_duration_+%" } }, - [397]={ + [398]={ [1]={ [1]={ limit={ @@ -10733,7 +10762,7 @@ return { [1]="intensity_loss_frequency_while_moving_+%" } }, - [398]={ + [399]={ [1]={ [1]={ limit={ @@ -10749,7 +10778,7 @@ return { [1]="number_of_warcries_exerting_this_action" } }, - [399]={ + [400]={ [1]={ [1]={ limit={ @@ -10796,7 +10825,7 @@ return { [2]="killing_blow_consumes_corpse_restore_x_mana" } }, - [400]={ + [401]={ [1]={ [1]={ [1]={ @@ -10816,7 +10845,7 @@ return { [1]="knockback_chance_%_at_close_range" } }, - [401]={ + [402]={ [1]={ [1]={ limit={ @@ -10845,7 +10874,7 @@ return { [1]="knockback_distance_+%" } }, - [402]={ + [403]={ [1]={ [1]={ [1]={ @@ -10869,7 +10898,7 @@ return { [1]="life_leech_from_any_damage_permyriad" } }, - [403]={ + [404]={ [1]={ [1]={ [1]={ @@ -10906,7 +10935,7 @@ return { [1]="lightning_ailment_effect_+%" } }, - [404]={ + [405]={ [1]={ [1]={ limit={ @@ -10935,7 +10964,7 @@ return { [1]="lightning_damage_+%" } }, - [405]={ + [406]={ [1]={ [1]={ limit={ @@ -10964,7 +10993,7 @@ return { [1]="local_gem_dex_requirement_+%" } }, - [406]={ + [407]={ [1]={ [1]={ limit={ @@ -10993,7 +11022,7 @@ return { [1]="local_gem_int_requirement_+%" } }, - [407]={ + [408]={ [1]={ [1]={ limit={ @@ -11022,7 +11051,7 @@ return { [1]="local_gem_str_requirement_+%" } }, - [408]={ + [409]={ [1]={ [1]={ limit={ @@ -11051,7 +11080,7 @@ return { [1]="maim_effect_+%" } }, - [409]={ + [410]={ [1]={ [1]={ [1]={ @@ -11084,7 +11113,7 @@ return { [1]="maim_on_hit_%" } }, - [410]={ + [411]={ [1]={ [1]={ [1]={ @@ -11108,7 +11137,7 @@ return { [1]="mana_leech_from_any_damage_permyriad" } }, - [411]={ + [412]={ [1]={ [1]={ limit={ @@ -11117,14 +11146,14 @@ return { [2]="#" } }, - text="Supported Skills have added Mana Cost equal to {0}% of Unreserved Maximum Mana" + text="Supported Skills gain Base Mana Cost equal to {0}% of Unreserved Maximum Mana" } }, stats={ [1]="manaweave_cost_equals_%_unreserved_mana" } }, - [412]={ + [413]={ [1]={ [1]={ limit={ @@ -11140,7 +11169,7 @@ return { [1]="manaweave_added_cold_damage_%_cost_if_payable" } }, - [413]={ + [414]={ [1]={ [1]={ limit={ @@ -11169,7 +11198,7 @@ return { [1]="maximum_energy_shield_leech_amount_per_leech_+%" } }, - [414]={ + [415]={ [1]={ [1]={ limit={ @@ -11185,7 +11214,7 @@ return { [1]="maximum_intensify_stacks" } }, - [415]={ + [416]={ [1]={ [1]={ limit={ @@ -11214,7 +11243,7 @@ return { [1]="maximum_life_leech_amount_per_leech_+%" } }, - [416]={ + [417]={ [1]={ [1]={ limit={ @@ -11243,7 +11272,7 @@ return { [1]="melee_damage_+%" } }, - [417]={ + [418]={ [1]={ [1]={ limit={ @@ -11272,7 +11301,7 @@ return { [1]="melee_damage_vs_bleeding_enemies_+%" } }, - [418]={ + [419]={ [1]={ [1]={ limit={ @@ -11301,7 +11330,7 @@ return { [1]="melee_physical_damage_+%" } }, - [419]={ + [420]={ [1]={ [1]={ [1]={ @@ -11342,7 +11371,7 @@ return { [1]="melee_range_+" } }, - [420]={ + [421]={ [1]={ [1]={ limit={ @@ -11371,7 +11400,7 @@ return { [1]="melee_splash_area_of_effect_+%_final" } }, - [421]={ + [422]={ [1]={ [1]={ limit={ @@ -11400,7 +11429,7 @@ return { [1]="mine_detonation_radius_+%" } }, - [422]={ + [423]={ [1]={ [1]={ limit={ @@ -11429,7 +11458,7 @@ return { [1]="mine_detonation_speed_+%" } }, - [423]={ + [424]={ [1]={ [1]={ limit={ @@ -11458,7 +11487,7 @@ return { [1]="mine_laying_speed_+%" } }, - [424]={ + [425]={ [1]={ [1]={ limit={ @@ -11487,7 +11516,7 @@ return { [1]="mine_projectile_speed_+%_per_frenzy_charge" } }, - [425]={ + [426]={ [1]={ [1]={ limit={ @@ -11508,7 +11537,7 @@ return { [2]="maximum_added_cold_damage_per_frenzy_charge" } }, - [426]={ + [427]={ [1]={ [1]={ limit={ @@ -11524,7 +11553,7 @@ return { [1]="minimum_number_of_projectiles_to_fire_is_1" } }, - [427]={ + [428]={ [1]={ [1]={ [1]={ @@ -11544,7 +11573,7 @@ return { [1]="minimum_power_from_quality" } }, - [428]={ + [429]={ [1]={ [1]={ limit={ @@ -11560,7 +11589,7 @@ return { [1]="minion_additional_physical_damage_reduction_%" } }, - [429]={ + [430]={ [1]={ [1]={ limit={ @@ -11589,7 +11618,7 @@ return { [1]="minion_ailment_damage_+%" } }, - [430]={ + [431]={ [1]={ [1]={ limit={ @@ -11618,7 +11647,7 @@ return { [1]="minion_attack_speed_+%" } }, - [431]={ + [432]={ [1]={ [1]={ limit={ @@ -11634,7 +11663,7 @@ return { [1]="minion_block_%" } }, - [432]={ + [433]={ [1]={ [1]={ limit={ @@ -11663,7 +11692,7 @@ return { [1]="minion_burning_damage_+%" } }, - [433]={ + [434]={ [1]={ [1]={ limit={ @@ -11692,7 +11721,7 @@ return { [1]="minion_cast_speed_+%" } }, - [434]={ + [435]={ [1]={ [1]={ limit={ @@ -11708,7 +11737,7 @@ return { [1]="minion_chance_to_deal_double_damage_%" } }, - [435]={ + [436]={ [1]={ [1]={ limit={ @@ -11724,7 +11753,7 @@ return { [1]="minion_chance_to_taunt_on_hit_%" } }, - [436]={ + [437]={ [1]={ [1]={ limit={ @@ -11753,7 +11782,7 @@ return { [1]="minion_cooldown_recovery_+%" } }, - [437]={ + [438]={ [1]={ [1]={ limit={ @@ -11782,7 +11811,7 @@ return { [1]="minion_critical_strike_chance_+%" } }, - [438]={ + [439]={ [1]={ [1]={ limit={ @@ -11811,7 +11840,7 @@ return { [1]="minion_damage_+%" } }, - [439]={ + [440]={ [1]={ [1]={ limit={ @@ -11840,7 +11869,7 @@ return { [1]="minion_damage_+%_on_full_life" } }, - [440]={ + [441]={ [1]={ [1]={ [1]={ @@ -11860,7 +11889,7 @@ return { [1]="minion_grant_puppet_master_buff_to_parent_on_hit_%" } }, - [441]={ + [442]={ [1]={ [1]={ [1]={ @@ -11884,7 +11913,7 @@ return { [1]="minion_life_leech_from_elemental_damage_permyriad" } }, - [442]={ + [443]={ [1]={ [1]={ limit={ @@ -11913,7 +11942,7 @@ return { [1]="minion_maximum_life_+%" } }, - [443]={ + [444]={ [1]={ [1]={ limit={ @@ -11942,7 +11971,7 @@ return { [1]="minion_movement_speed_+%" } }, - [444]={ + [445]={ [1]={ [1]={ limit={ @@ -11971,7 +12000,7 @@ return { [1]="minion_projectile_speed_+%" } }, - [445]={ + [446]={ [1]={ [1]={ limit={ @@ -11987,7 +12016,7 @@ return { [1]="minion_recover_%_maximum_life_on_hit" } }, - [446]={ + [447]={ [1]={ [1]={ limit={ @@ -12012,7 +12041,7 @@ return { [1]="minions_inflict_exposure_on_hit_%_chance" } }, - [447]={ + [448]={ [1]={ [1]={ limit={ @@ -12028,7 +12057,7 @@ return { [1]="mirage_archer_number_of_additional_projectiles" } }, - [448]={ + [449]={ [1]={ [1]={ limit={ @@ -12057,7 +12086,7 @@ return { [1]="multiple_projectiles_projectile_spread_+%" } }, - [449]={ + [450]={ [1]={ [1]={ limit={ @@ -12086,7 +12115,7 @@ return { [1]="multistrike_area_of_effect_+%_per_repeat" } }, - [450]={ + [451]={ [1]={ [1]={ limit={ @@ -12115,7 +12144,7 @@ return { [1]="multistrike_damage_+%_final_on_first_repeat" } }, - [451]={ + [452]={ [1]={ [1]={ limit={ @@ -12144,7 +12173,7 @@ return { [1]="multistrike_damage_+%_final_on_second_repeat" } }, - [452]={ + [453]={ [1]={ [1]={ limit={ @@ -12173,7 +12202,7 @@ return { [1]="multistrike_damage_+%_final_on_third_repeat" } }, - [453]={ + [454]={ [1]={ [1]={ limit={ @@ -12189,7 +12218,7 @@ return { [1]="nightblade_elusive_grants_critical_strike_multiplier_+_to_supported_skills" } }, - [454]={ + [455]={ [1]={ [1]={ limit={ @@ -12205,7 +12234,7 @@ return { [1]="no_cost" } }, - [455]={ + [456]={ [1]={ [1]={ limit={ @@ -12234,7 +12263,7 @@ return { [1]="non_curse_aura_effect_+%" } }, - [456]={ + [457]={ [1]={ [1]={ [1]={ @@ -12271,7 +12300,7 @@ return { [1]="non_damaging_ailment_effect_+%" } }, - [457]={ + [458]={ [1]={ [1]={ limit={ @@ -12296,7 +12325,7 @@ return { [1]="number_of_additional_curses_allowed" } }, - [458]={ + [459]={ [1]={ [1]={ [1]={ @@ -12329,7 +12358,7 @@ return { [1]="number_of_additional_mines_to_place" } }, - [459]={ + [460]={ [1]={ [1]={ limit={ @@ -12354,7 +12383,7 @@ return { [1]="number_of_additional_projectiles" } }, - [460]={ + [461]={ [1]={ [1]={ limit={ @@ -12379,7 +12408,7 @@ return { [1]="number_of_additional_remote_mines_allowed" } }, - [461]={ + [462]={ [1]={ [1]={ limit={ @@ -12404,7 +12433,7 @@ return { [1]="number_of_additional_traps_allowed" } }, - [462]={ + [463]={ [1]={ [1]={ limit={ @@ -12433,7 +12462,7 @@ return { [1]="number_of_projectiles_+%_final_from_locus_mine_support" } }, - [463]={ + [464]={ [1]={ [1]={ [1]={ @@ -12457,7 +12486,7 @@ return { [1]="onslaught_time_granted_on_killing_shocked_enemy_ms" } }, - [464]={ + [465]={ [1]={ [1]={ [1]={ @@ -12494,7 +12523,7 @@ return { [1]="overpowered_effect_+%" } }, - [465]={ + [466]={ [1]={ [1]={ [1]={ @@ -12514,7 +12543,7 @@ return { [1]="overwhelm_%_physical_damage_reduction_while_max_fortification" } }, - [466]={ + [467]={ [1]={ [1]={ limit={ @@ -12543,7 +12572,7 @@ return { [1]="parallel_projectile_firing_point_x_dist_+%" } }, - [467]={ + [468]={ [1]={ [1]={ limit={ @@ -12568,7 +12597,7 @@ return { [1]="%_chance_to_gain_frenzy_charge_on_mine_detonated_targeting_an_enemy" } }, - [468]={ + [469]={ [1]={ [1]={ limit={ @@ -12593,7 +12622,7 @@ return { [1]="%_chance_to_gain_frenzy_charge_on_trap_triggered_by_an_enemy" } }, - [469]={ + [470]={ [1]={ [1]={ limit={ @@ -12618,7 +12647,7 @@ return { [1]="%_chance_to_gain_power_charge_on_mine_detonated_targeting_an_enemy" } }, - [470]={ + [471]={ [1]={ [1]={ limit={ @@ -12643,7 +12672,7 @@ return { [1]="%_chance_to_gain_power_charge_on_trap_triggered_by_an_enemy" } }, - [471]={ + [472]={ [1]={ [1]={ limit={ @@ -12659,7 +12688,7 @@ return { [1]="physical_damage_%_to_add_as_chaos" } }, - [472]={ + [473]={ [1]={ [1]={ limit={ @@ -12675,7 +12704,7 @@ return { [1]="physical_damage_%_to_add_as_fire" } }, - [473]={ + [474]={ [1]={ [1]={ limit={ @@ -12691,7 +12720,7 @@ return { [1]="physical_damage_%_to_add_as_lightning" } }, - [474]={ + [475]={ [1]={ [1]={ limit={ @@ -12720,7 +12749,7 @@ return { [1]="physical_damage_+%" } }, - [475]={ + [476]={ [1]={ [1]={ limit={ @@ -12749,7 +12778,7 @@ return { [1]="placing_traps_cooldown_recovery_+%" } }, - [476]={ + [477]={ [1]={ [1]={ limit={ @@ -12774,7 +12803,7 @@ return { [1]="projectile_chance_to_not_pierce_%" } }, - [477]={ + [478]={ [1]={ [1]={ limit={ @@ -12803,7 +12832,7 @@ return { [1]="projectile_damage_+%" } }, - [478]={ + [479]={ [1]={ [1]={ limit={ @@ -12832,7 +12861,7 @@ return { [1]="projectile_damage_+%_if_pierced_enemy" } }, - [479]={ + [480]={ [1]={ [1]={ [1]={ @@ -12865,7 +12894,7 @@ return { [1]="projectile_maximum_range_override" } }, - [480]={ + [481]={ [1]={ [1]={ limit={ @@ -12894,7 +12923,7 @@ return { [1]="projectile_damage_+%_vs_nearby_enemies" } }, - [481]={ + [482]={ [1]={ [1]={ [1]={ @@ -12927,7 +12956,7 @@ return { [1]="projectiles_pierce_all_targets_in_x_range" } }, - [482]={ + [483]={ [1]={ [1]={ limit={ @@ -12943,7 +12972,7 @@ return { [1]="ranged_attack_totem_only_attacks_when_owner_attacks" } }, - [483]={ + [484]={ [1]={ [1]={ [1]={ @@ -12963,7 +12992,7 @@ return { [1]="recover_%_life_when_stunning_an_enemy_permyriad" } }, - [484]={ + [485]={ [1]={ [1]={ limit={ @@ -12979,7 +13008,7 @@ return { [1]="recover_%_maximum_life_on_cull" } }, - [485]={ + [486]={ [1]={ [1]={ [1]={ @@ -12999,7 +13028,7 @@ return { [1]="recover_permyriad_life_on_skill_use" } }, - [486]={ + [487]={ [1]={ [1]={ limit={ @@ -13015,7 +13044,7 @@ return { [1]="reduce_enemy_chaos_resistance_%" } }, - [487]={ + [488]={ [1]={ [1]={ limit={ @@ -13031,7 +13060,7 @@ return { [1]="reduce_enemy_dodge_%" } }, - [488]={ + [489]={ [1]={ [1]={ limit={ @@ -13056,7 +13085,7 @@ return { [1]="refresh_bleeding_duration_on_hit_%_chance" } }, - [489]={ + [490]={ [1]={ [1]={ limit={ @@ -13072,7 +13101,7 @@ return { [1]="regenerate_%_life_over_1_second_on_skill_use" } }, - [490]={ + [491]={ [1]={ [1]={ limit={ @@ -13088,7 +13117,7 @@ return { [1]="remote_mined_by_support" } }, - [491]={ + [492]={ [1]={ [1]={ limit={ @@ -13117,7 +13146,7 @@ return { [1]="retaliation_use_window_duration_+%" } }, - [492]={ + [493]={ [1]={ [1]={ limit={ @@ -13146,7 +13175,7 @@ return { [1]="shock_duration_+%" } }, - [493]={ + [494]={ [1]={ [1]={ limit={ @@ -13175,7 +13204,7 @@ return { [1]="shock_effect_+%_with_critical_strikes" } }, - [494]={ + [495]={ [1]={ [1]={ limit={ @@ -13204,7 +13233,7 @@ return { [1]="sigil_repeat_frequency_+%" } }, - [495]={ + [496]={ [1]={ [1]={ limit={ @@ -13220,7 +13249,7 @@ return { [1]="skill_is_blessing_skill" } }, - [496]={ + [497]={ [1]={ [1]={ limit={ @@ -13236,7 +13265,7 @@ return { [1]="skill_aura_also_disables_non_blessing_mana_reservation_skills" } }, - [497]={ + [498]={ [1]={ [1]={ limit={ @@ -13265,7 +13294,7 @@ return { [1]="skill_buff_effect_+%" } }, - [498]={ + [499]={ [1]={ [1]={ limit={ @@ -13281,7 +13310,7 @@ return { [1]="skill_can_own_mirage_archers" } }, - [499]={ + [500]={ [1]={ [1]={ limit={ @@ -13297,7 +13326,7 @@ return { [1]="skill_cold_damage_%_to_convert_to_fire" } }, - [500]={ + [501]={ [1]={ [1]={ limit={ @@ -13313,7 +13342,7 @@ return { [1]="skill_convert_%_physical_damage_to_random_element" } }, - [501]={ + [502]={ [1]={ [1]={ [1]={ @@ -13350,7 +13379,7 @@ return { [1]="skill_effect_and_damaging_ailment_duration_+%" } }, - [502]={ + [503]={ [1]={ [1]={ limit={ @@ -13379,7 +13408,7 @@ return { [1]="skill_effect_duration_+%" } }, - [503]={ + [504]={ [1]={ [1]={ limit={ @@ -13408,7 +13437,7 @@ return { [1]="skill_effect_duration_+%_while_dead" } }, - [504]={ + [505]={ [1]={ [1]={ limit={ @@ -13424,7 +13453,7 @@ return { [1]="skill_physical_damage_%_to_convert_to_chaos" } }, - [505]={ + [506]={ [1]={ [1]={ limit={ @@ -13445,7 +13474,7 @@ return { [2]="active_skill_display_suppress_physical_to_cold_damage_conversion" } }, - [506]={ + [507]={ [1]={ [1]={ limit={ @@ -13461,7 +13490,7 @@ return { [1]="skill_physical_damage_%_to_convert_to_fire" } }, - [507]={ + [508]={ [1]={ [1]={ limit={ @@ -13477,7 +13506,7 @@ return { [1]="skill_physical_damage_%_to_convert_to_lightning" } }, - [508]={ + [509]={ [1]={ [1]={ limit={ @@ -13506,7 +13535,7 @@ return { [1]="skill_used_by_sacred_wisp_damage_+%_final" } }, - [509]={ + [510]={ [1]={ [1]={ limit={ @@ -13535,7 +13564,7 @@ return { [1]="snipe_triggered_skill_damage_+%_final" } }, - [510]={ + [511]={ [1]={ [1]={ limit={ @@ -13603,7 +13632,7 @@ return { [2]="snipe_triggered_skill_hit_damage_+%_final_per_stage" } }, - [511]={ + [512]={ [1]={ [1]={ [1]={ @@ -13687,7 +13716,7 @@ return { [2]="snipe_triggered_skill_ailment_damage_+%_final_per_stage" } }, - [512]={ + [513]={ [1]={ [1]={ limit={ @@ -13716,7 +13745,7 @@ return { [1]="spell_critical_strike_chance_+%" } }, - [513]={ + [514]={ [1]={ [1]={ limit={ @@ -13745,7 +13774,7 @@ return { [1]="spell_damage_+%" } }, - [514]={ + [515]={ [1]={ [1]={ limit={ @@ -13761,7 +13790,7 @@ return { [1]="spell_echo_plus_chance_double_damage_%_final" } }, - [515]={ + [516]={ [1]={ [1]={ [1]={ @@ -13794,7 +13823,7 @@ return { [1]="static_strike_base_zap_frequency_ms" } }, - [516]={ + [517]={ [1]={ [1]={ limit={ @@ -13810,7 +13839,23 @@ return { [1]="static_strike_zap_speed_+%" } }, - [517]={ + [518]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Trigger Summon Living Lightning when a Supported\nSkill deals Lightning Damage with a Hit" + } + }, + stats={ + [1]="summon_living_lightning_on_lightning_hit" + } + }, + [519]={ [1]={ [1]={ limit={ @@ -13826,7 +13871,7 @@ return { [1]="summon_mirage_archer_on_hit" } }, - [518]={ + [520]={ [1]={ [1]={ limit={ @@ -13842,7 +13887,7 @@ return { [1]="summon_sacred_wisps_on_hit" } }, - [519]={ + [521]={ [1]={ [1]={ limit={ @@ -13871,7 +13916,7 @@ return { [1]="summon_totem_cast_speed_+%" } }, - [520]={ + [522]={ [1]={ [1]={ limit={ @@ -13896,7 +13941,7 @@ return { [1]="support_added_cooldown_count_if_not_instant" } }, - [521]={ + [523]={ [1]={ [1]={ limit={ @@ -13912,7 +13957,7 @@ return { [1]="support_additional_trap_%_chance_for_1_additional_trap" } }, - [522]={ + [524]={ [1]={ [1]={ limit={ @@ -13941,7 +13986,7 @@ return { [1]="support_ancestor_slam_totem_attack_speed_+%_final" } }, - [523]={ + [525]={ [1]={ [1]={ limit={ @@ -13970,7 +14015,7 @@ return { [1]="support_anticipation_charge_gain_frequency_+%" } }, - [524]={ + [526]={ [1]={ [1]={ limit={ @@ -13999,7 +14044,7 @@ return { [1]="support_arcane_surge_spell_damage_+%_final_while_you_have_arcane_surge" } }, - [525]={ + [527]={ [1]={ [1]={ [1]={ @@ -14019,7 +14064,7 @@ return { [1]="support_aura_duration_base_buff_duration" } }, - [526]={ + [528]={ [1]={ [1]={ limit={ @@ -14035,7 +14080,7 @@ return { [1]="support_autocast_instant_spells" } }, - [527]={ + [529]={ [1]={ [1]={ limit={ @@ -14051,7 +14096,7 @@ return { [1]="support_autocast_warcries" } }, - [528]={ + [530]={ [1]={ [1]={ limit={ @@ -14067,7 +14112,7 @@ return { [1]="support_autoexertion_base_mana_cost_override" } }, - [529]={ + [531]={ [1]={ [1]={ limit={ @@ -14096,7 +14141,7 @@ return { [1]="support_barrage_attack_time_+%_per_projectile_fired" } }, - [530]={ + [532]={ [1]={ [1]={ limit={ @@ -14125,7 +14170,7 @@ return { [1]="support_barrage_trap_and_mine_throwing_time_+%_final_per_projectile_fired" } }, - [531]={ + [533]={ [1]={ [1]={ limit={ @@ -14154,7 +14199,7 @@ return { [1]="support_blood_thirst_damage_+%_final" } }, - [532]={ + [534]={ [1]={ [1]={ limit={ @@ -14179,7 +14224,7 @@ return { [1]="support_blunt_chance_to_trigger_shockwave_on_hit_%" } }, - [533]={ + [535]={ [1]={ [1]={ limit={ @@ -14208,7 +14253,7 @@ return { [1]="support_bonechill_cold_damage_+%_final" } }, - [534]={ + [536]={ [1]={ [1]={ limit={ @@ -14237,7 +14282,7 @@ return { [1]="support_brand_area_of_effect_+%_final" } }, - [535]={ + [537]={ [1]={ [1]={ limit={ @@ -14266,7 +14311,7 @@ return { [1]="support_brand_damage_+%_final" } }, - [536]={ + [538]={ [1]={ [1]={ limit={ @@ -14295,7 +14340,7 @@ return { [1]="support_burning_damage_+%_final" } }, - [537]={ + [539]={ [1]={ [1]={ limit={ @@ -14324,7 +14369,7 @@ return { [1]="support_cast_on_crit_quality_attack_damage_+%_final" } }, - [538]={ + [540]={ [1]={ [1]={ [1]={ @@ -14361,7 +14406,7 @@ return { [1]="support_cast_while_channelling_triggered_skill_non_damaging_ailment_effect_+%" } }, - [539]={ + [541]={ [1]={ [1]={ limit={ @@ -14390,7 +14435,7 @@ return { [1]="support_chance_to_bleed_bleeding_damage_+%_final" } }, - [540]={ + [542]={ [1]={ [1]={ limit={ @@ -14419,7 +14464,7 @@ return { [1]="support_chaos_attacks_damage_+%_final" } }, - [541]={ + [543]={ [1]={ [1]={ limit={ @@ -14448,7 +14493,7 @@ return { [1]="support_clustertrap_damage_+%_final" } }, - [542]={ + [544]={ [1]={ [1]={ limit={ @@ -14464,7 +14509,7 @@ return { [1]="support_conflagration_ignites_from_stunning_melee_hits_count_as_coming_from_critical_strike" } }, - [543]={ + [545]={ [1]={ [1]={ limit={ @@ -14493,7 +14538,7 @@ return { [1]="support_conflagration_ignites_from_stunning_melee_hits_deal_damage_+%_final_per_200ms_stun" } }, - [544]={ + [546]={ [1]={ [1]={ limit={ @@ -14522,7 +14567,7 @@ return { [1]="support_conflagration_ignites_from_stunning_melee_hits_duration_+%" } }, - [545]={ + [547]={ [1]={ [1]={ limit={ @@ -14551,7 +14596,7 @@ return { [1]="support_corrupting_cry_area_of_effect_+%_final" } }, - [546]={ + [548]={ [1]={ [1]={ [1]={ @@ -14571,7 +14616,7 @@ return { [1]="support_corrupting_cry_corrupted_blood_base_physical_damage_to_deal_per_minute" } }, - [547]={ + [549]={ [1]={ [1]={ limit={ @@ -14596,7 +14641,7 @@ return { [1]="support_corrupting_cry_exerted_attack_applies_X_stacks_of_corrupted_blood_on_first_hit" } }, - [548]={ + [550]={ [1]={ [1]={ [1]={ @@ -14616,7 +14661,7 @@ return { [1]="support_corrupting_cry_warcry_and_first_exerted_attack_applies_corrupted_blood_for_X_ms" } }, - [549]={ + [551]={ [1]={ [1]={ limit={ @@ -14641,7 +14686,7 @@ return { [1]="support_corrupting_cry_warcry_applies_X_stacks_of_corrupted_blood" } }, - [550]={ + [552]={ [1]={ [1]={ limit={ @@ -14670,7 +14715,7 @@ return { [1]="support_divine_cry_damage_+%_final" } }, - [551]={ + [553]={ [1]={ [1]={ limit={ @@ -14699,7 +14744,7 @@ return { [1]="support_energy_shield_leech_damage_+%_on_full_energy_shield_final" } }, - [552]={ + [554]={ [1]={ [1]={ limit={ @@ -14728,7 +14773,7 @@ return { [1]="support_energy_shield_leech_damage_+%_while_leeching_energy_shield_final" } }, - [553]={ + [555]={ [1]={ [1]={ limit={ @@ -14757,7 +14802,7 @@ return { [1]="support_executioner_damage_vs_enemies_on_low_life_+%_final" } }, - [554]={ + [556]={ [1]={ [1]={ [1]={ @@ -14777,7 +14822,7 @@ return { [1]="support_executioner_gain_one_rare_monster_mod_on_kill_ms" } }, - [555]={ + [557]={ [1]={ [1]={ limit={ @@ -14793,7 +14838,7 @@ return { [1]="support_executioner_refresh_stolen_mod_on_hitting_rare_or_unique_monster_chance_%" } }, - [556]={ + [558]={ [1]={ [1]={ limit={ @@ -14822,7 +14867,7 @@ return { [1]="support_expert_retaliation_cooldown_speed_+%_final" } }, - [557]={ + [559]={ [1]={ [1]={ [1]={ @@ -14859,7 +14904,7 @@ return { [1]="support_faster_ailments_ailment_duration_+%_final" } }, - [558]={ + [560]={ [1]={ [1]={ limit={ @@ -14875,7 +14920,7 @@ return { [1]="support_flamewood_totems_trigger_infernal_bolt_when_hit" } }, - [559]={ + [561]={ [1]={ [1]={ limit={ @@ -14891,7 +14936,7 @@ return { [1]="support_focus_channel_damage_+%_final_per_second_channelling_up_to_60%" } }, - [560]={ + [562]={ [1]={ [1]={ limit={ @@ -14907,7 +14952,7 @@ return { [1]="support_focus_channel_cost_+%_final_per_second_channelling_up_to_100%" } }, - [561]={ + [563]={ [1]={ [1]={ limit={ @@ -14936,7 +14981,7 @@ return { [1]="support_focused_ballista_totem_attack_speed_+%_final" } }, - [562]={ + [564]={ [1]={ [1]={ limit={ @@ -14965,7 +15010,7 @@ return { [1]="support_focused_ballista_totem_damage_+%_final" } }, - [563]={ + [565]={ [1]={ [1]={ limit={ @@ -14994,7 +15039,7 @@ return { [1]="support_fortify_ailment_damage_+%_final_from_melee_hits" } }, - [564]={ + [566]={ [1]={ [1]={ limit={ @@ -15023,7 +15068,7 @@ return { [1]="support_fortify_melee_damage_+%_final" } }, - [565]={ + [567]={ [1]={ [1]={ [1]={ @@ -15043,7 +15088,7 @@ return { [1]="support_ghost_base_duration" } }, - [566]={ + [568]={ [1]={ [1]={ limit={ @@ -15072,7 +15117,7 @@ return { [1]="support_greater_projectile_intensity_projectile_damage_+%_final" } }, - [567]={ + [569]={ [1]={ [1]={ limit={ @@ -15088,7 +15133,7 @@ return { [1]="support_guardians_blessing_aura_only_enabled_while_support_minion_is_summoned" } }, - [568]={ + [570]={ [1]={ [1]={ [1]={ @@ -15108,7 +15153,7 @@ return { [1]="support_guardians_blessing_minion_physical_damage_%_of_maximum_life_and_ES_taken_per_minute" } }, - [569]={ + [571]={ [1]={ [1]={ limit={ @@ -15137,7 +15182,7 @@ return { [1]="support_hypothermia_cold_damage_over_time_+%_final" } }, - [570]={ + [572]={ [1]={ [1]={ [1]={ @@ -15174,7 +15219,7 @@ return { [1]="support_hypothermia_damage_+%_vs_chilled_enemies_final" } }, - [571]={ + [573]={ [1]={ [1]={ limit={ @@ -15199,7 +15244,32 @@ return { [1]="support_innervate_chance_to_gain_buff_on_shock_vs_unique_%" } }, - [572]={ + [574]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=99 + } + }, + text="Supported Skills have {0}% chance to trigger Kinetic Flux on Killing Blow" + }, + [2]={ + limit={ + [1]={ + [1]=100, + [2]="#" + } + }, + text="Supported Skills trigger Kinetic Flux on Killing Blow" + } + }, + stats={ + [1]="support_kinetic_instability_chance_to_create_instability_on_kill_%" + } + }, + [575]={ [1]={ [1]={ [1]={ @@ -15223,7 +15293,7 @@ return { [1]="support_lifetap_spent_life_threshold" } }, - [573]={ + [576]={ [1]={ [1]={ limit={ @@ -15252,7 +15322,7 @@ return { [1]="support_lifetap_damage_+%_final_while_buffed" } }, - [574]={ + [577]={ [1]={ [1]={ [1]={ @@ -15311,7 +15381,7 @@ return { [2]="quality_display_lifetap_is_gem" } }, - [575]={ + [578]={ [1]={ [1]={ [1]={ @@ -15331,7 +15401,7 @@ return { [1]="support_locus_mine_base_mine_duration" } }, - [576]={ + [579]={ [1]={ [1]={ [1]={ @@ -15364,7 +15434,7 @@ return { [1]="support_locus_mine_cannot_detonate_mines_within_X_units" } }, - [577]={ + [580]={ [1]={ [1]={ limit={ @@ -15393,7 +15463,7 @@ return { [1]="support_locus_mine_damage_+%_final" } }, - [578]={ + [581]={ [1]={ [1]={ limit={ @@ -15409,7 +15479,7 @@ return { [1]="support_locus_mine_mines_always_target_your_location" } }, - [579]={ + [582]={ [1]={ [1]={ limit={ @@ -15425,7 +15495,7 @@ return { [1]="support_locus_mine_throw_mines_in_an_arc" } }, - [580]={ + [583]={ [1]={ [1]={ limit={ @@ -15454,7 +15524,7 @@ return { [1]="support_maimed_enemies_physical_damage_taken_+%" } }, - [581]={ + [584]={ [1]={ [1]={ limit={ @@ -15483,7 +15553,7 @@ return { [1]="support_manaforged_arrows_damage_+%_final" } }, - [582]={ + [585]={ [1]={ [1]={ limit={ @@ -15499,7 +15569,7 @@ return { [1]="support_manaforged_arrows_damage_+%_final_per_mana_spent" } }, - [583]={ + [586]={ [1]={ [1]={ limit={ @@ -15528,7 +15598,7 @@ return { [1]="support_melee_physical_damage_attack_speed_+%_final" } }, - [584]={ + [587]={ [1]={ [1]={ limit={ @@ -15557,7 +15627,7 @@ return { [1]="support_minefield_mine_damage_+%_final" } }, - [585]={ + [588]={ [1]={ [1]={ limit={ @@ -15586,7 +15656,7 @@ return { [1]="support_minefield_mine_throwing_speed_+%_final" } }, - [586]={ + [589]={ [1]={ [1]={ limit={ @@ -15607,7 +15677,7 @@ return { [2]="global_maximum_added_fire_damage_vs_burning_enemies" } }, - [587]={ + [590]={ [1]={ [1]={ limit={ @@ -15636,7 +15706,7 @@ return { [1]="support_minion_damage_+%_final" } }, - [588]={ + [591]={ [1]={ [1]={ limit={ @@ -15665,7 +15735,7 @@ return { [1]="support_minion_damage_minion_life_+%_final" } }, - [589]={ + [592]={ [1]={ [1]={ limit={ @@ -15694,7 +15764,7 @@ return { [1]="support_minion_defensive_stance_minion_damage_+%_final_against_enemies_near_you" } }, - [590]={ + [593]={ [1]={ [1]={ limit={ @@ -15723,7 +15793,7 @@ return { [1]="support_minion_defensive_stance_minion_damage_taken_+%_final" } }, - [591]={ + [594]={ [1]={ [1]={ limit={ @@ -15752,7 +15822,7 @@ return { [1]="support_minion_focus_fire_critical_strike_chance_+%_vs_focused_target" } }, - [592]={ + [595]={ [1]={ [1]={ limit={ @@ -15768,7 +15838,7 @@ return { [1]="support_minion_focus_fire_critical_strike_multiplier_+_vs_focused_target" } }, - [593]={ + [596]={ [1]={ [1]={ limit={ @@ -15797,7 +15867,7 @@ return { [1]="support_minion_focus_fire_damage_+%_final_vs_focussed_target" } }, - [594]={ + [597]={ [1]={ [1]={ limit={ @@ -15826,7 +15896,7 @@ return { [1]="support_minion_maximum_life_+%_final" } }, - [595]={ + [598]={ [1]={ [1]={ limit={ @@ -15855,7 +15925,7 @@ return { [1]="support_minion_offensive_stance_minion_damage_+%_final_while_you_have_puppet_master" } }, - [596]={ + [599]={ [1]={ [1]={ limit={ @@ -15884,7 +15954,7 @@ return { [1]="support_minion_totem_resistance_elemental_damage_+%_final" } }, - [597]={ + [600]={ [1]={ [1]={ limit={ @@ -15900,7 +15970,7 @@ return { [1]="support_minion_use_focussed_target" } }, - [598]={ + [601]={ [1]={ [1]={ limit={ @@ -15929,7 +15999,7 @@ return { [1]="support_mirage_archer_attack_speed_+%_final" } }, - [599]={ + [602]={ [1]={ [1]={ [1]={ @@ -15949,7 +16019,7 @@ return { [1]="support_mirage_archer_base_duration" } }, - [600]={ + [603]={ [1]={ [1]={ limit={ @@ -15978,7 +16048,7 @@ return { [1]="support_mirage_archer_damage_+%_final" } }, - [601]={ + [604]={ [1]={ [1]={ [1]={ @@ -16020,7 +16090,7 @@ return { [2]="support_momentum_stack_while_channelling_ms" } }, - [602]={ + [605]={ [1]={ [1]={ limit={ @@ -16049,7 +16119,7 @@ return { [1]="support_momentum_attack_speed_+%_per_stack" } }, - [603]={ + [606]={ [1]={ [1]={ [1]={ @@ -16117,7 +16187,7 @@ return { [3]="support_momentum_max_stacks" } }, - [604]={ + [607]={ [1]={ [1]={ limit={ @@ -16146,7 +16216,7 @@ return { [1]="support_momentum_movement_speed_+%_per_stack_removed" } }, - [605]={ + [608]={ [1]={ [1]={ [1]={ @@ -16170,7 +16240,7 @@ return { [1]="support_overpowered_base_duration_ms" } }, - [606]={ + [609]={ [1]={ [1]={ limit={ @@ -16195,7 +16265,7 @@ return { [1]="support_parallel_projectile_number_of_points_per_side" } }, - [607]={ + [610]={ [1]={ [1]={ limit={ @@ -16224,7 +16294,7 @@ return { [1]="support_parallel_projectiles_damage_+%_final" } }, - [608]={ + [611]={ [1]={ [1]={ limit={ @@ -16253,7 +16323,7 @@ return { [1]="support_phys_chaos_projectile_chaos_damage_over_time_+%_final" } }, - [609]={ + [612]={ [1]={ [1]={ limit={ @@ -16282,7 +16352,7 @@ return { [1]="support_phys_chaos_projectile_physical_damage_over_time_+%_final" } }, - [610]={ + [613]={ [1]={ [1]={ limit={ @@ -16311,7 +16381,7 @@ return { [1]="support_phys_chaos_projectile_spell_physical_projectile_damage_+%_final" } }, - [611]={ + [614]={ [1]={ [1]={ limit={ @@ -16340,7 +16410,7 @@ return { [1]="support_phys_proj_attack_damage_bleeing_and_poison_damage_+%_final_from_projectile_hits" } }, - [612]={ + [615]={ [1]={ [1]={ limit={ @@ -16369,7 +16439,7 @@ return { [1]="support_pierce_projectile_damage_+%_final" } }, - [613]={ + [616]={ [1]={ [1]={ limit={ @@ -16398,7 +16468,7 @@ return { [1]="support_power_charge_on_crit_damage_+%_final_per_power_charge" } }, - [614]={ + [617]={ [1]={ [1]={ limit={ @@ -16427,7 +16497,7 @@ return { [1]="support_projectile_attack_physical_damage_+%_final" } }, - [615]={ + [618]={ [1]={ [1]={ limit={ @@ -16456,7 +16526,7 @@ return { [1]="support_projectile_attack_speed_+%_final" } }, - [616]={ + [619]={ [1]={ [1]={ limit={ @@ -16485,7 +16555,7 @@ return { [1]="support_pulverise_area_of_effect_+%_final" } }, - [617]={ + [620]={ [1]={ [1]={ limit={ @@ -16514,7 +16584,7 @@ return { [1]="support_pulverise_attack_speed_+%_final" } }, - [618]={ + [621]={ [1]={ [1]={ limit={ @@ -16543,7 +16613,7 @@ return { [1]="support_pulverise_melee_area_damage_+%_final" } }, - [619]={ + [622]={ [1]={ [1]={ limit={ @@ -16572,7 +16642,7 @@ return { [1]="support_pure_shock_damage_+%_final" } }, - [620]={ + [623]={ [1]={ [1]={ limit={ @@ -16601,7 +16671,7 @@ return { [1]="support_pure_shock_shock_as_though_damage_+%_final" } }, - [621]={ + [624]={ [1]={ [1]={ limit={ @@ -16630,7 +16700,7 @@ return { [1]="support_greater_volley_projectile_damage_+%_final" } }, - [622]={ + [625]={ [1]={ [1]={ [1]={ @@ -16654,7 +16724,7 @@ return { [1]="support_rage_gain_rage_on_melee_hit_cooldown_ms" } }, - [623]={ + [626]={ [1]={ [1]={ limit={ @@ -16683,7 +16753,7 @@ return { [1]="support_rapid_activation_brand_activation_rate_+%_final" } }, - [624]={ + [627]={ [1]={ [1]={ [1]={ @@ -16729,7 +16799,7 @@ return { [2]="support_recent_ignites_ignite_damage_per_recent_ignite_+%_final_maximum" } }, - [625]={ + [628]={ [1]={ [1]={ [1]={ @@ -16779,7 +16849,7 @@ return { [2]="support_recent_ignites_damage_per_recent_ignite_+%_final_minimum" } }, - [626]={ + [629]={ [1]={ [1]={ [1]={ @@ -16799,7 +16869,7 @@ return { [1]="support_recent_minions_life_leech_from_any_damage_permyriad_from_wakened_fury" } }, - [627]={ + [630]={ [1]={ [1]={ [1]={ @@ -16852,7 +16922,7 @@ return { [6]="support_recent_phantasms_gain_adrenaline_and_wakened_fury_when_summoned_ms" } }, - [628]={ + [631]={ [1]={ [1]={ limit={ @@ -16868,7 +16938,7 @@ return { [1]="support_reduce_enemy_block_and_spell_block_%" } }, - [629]={ + [632]={ [1]={ [1]={ limit={ @@ -16897,7 +16967,7 @@ return { [1]="critical_strike_chance_+%_per_righteous_charge" } }, - [630]={ + [633]={ [1]={ [1]={ limit={ @@ -16926,7 +16996,7 @@ return { [1]="elemental_damage_+%_final_per_righteous_charge" } }, - [631]={ + [634]={ [1]={ [1]={ [1]={ @@ -16946,7 +17016,7 @@ return { [1]="lose_all_righteous_charges_on_mana_use_threshold" } }, - [632]={ + [635]={ [1]={ [1]={ [1]={ @@ -16966,7 +17036,7 @@ return { [1]="support_remote_mine_2_base_mine_detonation_time_ms" } }, - [633]={ + [636]={ [1]={ [1]={ limit={ @@ -16995,7 +17065,7 @@ return { [1]="support_remote_mine_2_damage_+%_final" } }, - [634]={ + [637]={ [1]={ [1]={ limit={ @@ -17024,7 +17094,7 @@ return { [1]="support_remote_mine_damage_+%_final_per_mine_detonation_cascade" } }, - [635]={ + [638]={ [1]={ [1]={ limit={ @@ -17053,7 +17123,7 @@ return { [1]="support_remote_mine_hit_damage_+%_final" } }, - [636]={ + [639]={ [1]={ [1]={ [1]={ @@ -17073,7 +17143,7 @@ return { [1]="critical_strikes_that_inflict_bleeding_also_rupture" } }, - [637]={ + [640]={ [1]={ [1]={ limit={ @@ -17098,7 +17168,7 @@ return { [1]="support_rupture_bleeding_damage_taken_+%_final" } }, - [638]={ + [641]={ [1]={ [1]={ limit={ @@ -17123,7 +17193,7 @@ return { [1]="support_rupture_bleeding_time_passed_+%_final" } }, - [639]={ + [642]={ [1]={ [1]={ limit={ @@ -17157,7 +17227,7 @@ return { [2]="support_sacrifice_gain_%_of_sacrificed_life_as_added_chaos_damage" } }, - [640]={ + [643]={ [1]={ [1]={ [1]={ @@ -17194,7 +17264,7 @@ return { [1]="support_scion_onslaught_duration_+%" } }, - [641]={ + [644]={ [1]={ [1]={ [1]={ @@ -17219,7 +17289,7 @@ return { [2]="support_scion_onslaught_on_unique_hit_duration_ms" } }, - [642]={ + [645]={ [1]={ [1]={ [1]={ @@ -17253,7 +17323,7 @@ return { [3]="virtual_support_scion_onslaught_on_killing_blow_duration_ms" } }, - [643]={ + [646]={ [1]={ [1]={ [1]={ @@ -17286,7 +17356,7 @@ return { [1]="support_slashing_buff_base_duration_ms" } }, - [644]={ + [647]={ [1]={ [1]={ limit={ @@ -17315,7 +17385,7 @@ return { [1]="support_slashing_buff_attack_speed_+%_final_to_grant" } }, - [645]={ + [648]={ [1]={ [1]={ limit={ @@ -17344,7 +17414,7 @@ return { [1]="support_slower_projectiles_damage_+%_final" } }, - [646]={ + [649]={ [1]={ [1]={ limit={ @@ -17420,7 +17490,7 @@ return { [2]="support_spell_boost_area_of_effect_+%_final_per_charge" } }, - [647]={ + [650]={ [1]={ [1]={ limit={ @@ -17449,7 +17519,7 @@ return { [1]="support_spell_cascade_area_delay_+%" } }, - [648]={ + [651]={ [1]={ [1]={ limit={ @@ -17478,7 +17548,7 @@ return { [1]="support_spell_cascade_area_of_effect_+%_final" } }, - [649]={ + [652]={ [1]={ [1]={ limit={ @@ -17507,7 +17577,7 @@ return { [1]="support_spell_cascade_damage_+%_final" } }, - [650]={ + [653]={ [1]={ [1]={ limit={ @@ -17541,7 +17611,7 @@ return { [2]="support_spell_cascade_sideways" } }, - [651]={ + [654]={ [1]={ [1]={ limit={ @@ -17570,7 +17640,7 @@ return { [1]="support_spell_echo_final_repeat_damage_+%_final" } }, - [652]={ + [655]={ [1]={ [1]={ limit={ @@ -17586,7 +17656,7 @@ return { [1]="support_spell_weapon_damage_gain_%_of_one_hand_melee_weapon_damage_as_added_spell_damage" } }, - [653]={ + [656]={ [1]={ [1]={ limit={ @@ -17602,7 +17672,7 @@ return { [1]="support_spell_weapon_damage_gain_%_of_one_hand_melee_weapon_damage_as_added_spell_damage_while_wielding_two_different_weapon_types" } }, - [654]={ + [657]={ [1]={ [1]={ limit={ @@ -17631,7 +17701,7 @@ return { [1]="support_spellslinger_damage_+%_final" } }, - [655]={ + [658]={ [1]={ [1]={ limit={ @@ -17660,7 +17730,7 @@ return { [1]="support_spiritual_cry_damage_+%_final" } }, - [656]={ + [659]={ [1]={ [1]={ limit={ @@ -17689,7 +17759,7 @@ return { [1]="support_storm_barrier_damage_+%_final" } }, - [657]={ + [660]={ [1]={ [1]={ limit={ @@ -17718,7 +17788,7 @@ return { [1]="support_storm_barrier_damage_taken_when_hit_+%_final_while_channelling" } }, - [658]={ + [661]={ [1]={ [1]={ [1]={ @@ -17755,7 +17825,7 @@ return { [1]="support_swift_affliction_skill_effect_and_damaging_ailment_duration_+%_final" } }, - [659]={ + [662]={ [1]={ [1]={ limit={ @@ -17784,7 +17854,7 @@ return { [1]="support_trap_and_mine_damage_mine_throwing_speed_+%_final" } }, - [660]={ + [663]={ [1]={ [1]={ limit={ @@ -17813,7 +17883,7 @@ return { [1]="support_trap_and_mine_damage_trap_throwing_speed_+%_final" } }, - [661]={ + [664]={ [1]={ [1]={ limit={ @@ -17842,7 +17912,7 @@ return { [1]="support_trap_hit_damage_+%_final" } }, - [662]={ + [665]={ [1]={ [1]={ limit={ @@ -17871,7 +17941,7 @@ return { [1]="support_trauma_melee_damage_+%_final_per_trauma" } }, - [663]={ + [666]={ [1]={ [1]={ limit={ @@ -17900,7 +17970,32 @@ return { [1]="support_trauma_stun_duration_+%_per_trauma" } }, - [664]={ + [667]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Supported Attacks Trigger Windburst on Hit, no more than once every {0} metres moved" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Supported Attacks Trigger Windburst on Hit, no more than once every {0} metres moved" + } + }, + stats={ + [1]="support_trigger_tornados_on_attack_hit_after_moving_X_metres" + } + }, + [668]={ [1]={ [1]={ [1]={ @@ -17937,7 +18032,7 @@ return { [1]="support_unbound_ailments_ailment_damage_+%_final" } }, - [665]={ + [669]={ [1]={ [1]={ limit={ @@ -17966,7 +18061,7 @@ return { [1]="support_vicious_projectiles_physical_damage_+%_final" } }, - [666]={ + [670]={ [1]={ [1]={ limit={ @@ -17995,7 +18090,7 @@ return { [1]="support_vicious_projectiles_chaos_damage_+%_final" } }, - [667]={ + [671]={ [1]={ [1]={ limit={ @@ -18011,7 +18106,7 @@ return { [1]="supported_chaos_skill_gem_level_+" } }, - [668]={ + [672]={ [1]={ [1]={ limit={ @@ -18027,7 +18122,7 @@ return { [1]="supported_curse_skill_gem_level_+" } }, - [669]={ + [673]={ [1]={ [1]={ limit={ @@ -18043,7 +18138,7 @@ return { [1]="supported_elemental_skill_gem_level_+" } }, - [670]={ + [674]={ [1]={ [1]={ limit={ @@ -18059,7 +18154,7 @@ return { [1]="supported_minion_skill_gem_level_+" } }, - [671]={ + [675]={ [1]={ [1]={ limit={ @@ -18075,7 +18170,7 @@ return { [1]="supported_physical_skill_gem_level_+" } }, - [672]={ + [676]={ [1]={ [1]={ limit={ @@ -18091,7 +18186,7 @@ return { [1]="supported_skill_can_only_use_axe_and_sword" } }, - [673]={ + [677]={ [1]={ [1]={ limit={ @@ -18107,7 +18202,7 @@ return { [1]="skill_can_only_use_bow" } }, - [674]={ + [678]={ [1]={ [1]={ [1]={ @@ -18127,7 +18222,7 @@ return { [1]="supported_skill_can_only_use_dagger_and_claw" } }, - [675]={ + [679]={ [1]={ [1]={ [1]={ @@ -18147,7 +18242,7 @@ return { [1]="supported_skill_can_only_use_mace_and_staff" } }, - [676]={ + [680]={ [1]={ [1]={ limit={ @@ -18163,7 +18258,7 @@ return { [1]="skill_can_only_use_non_melee_weapons" } }, - [677]={ + [681]={ [1]={ [1]={ limit={ @@ -18179,7 +18274,7 @@ return { [1]="supported_skill_can_only_use_wand" } }, - [678]={ + [682]={ [1]={ [1]={ limit={ @@ -18195,7 +18290,7 @@ return { [1]="supported_strike_skill_gem_level_+" } }, - [679]={ + [683]={ [1]={ [1]={ [1]={ @@ -18228,7 +18323,7 @@ return { [1]="tornado_base_damage_interval_ms" } }, - [680]={ + [684]={ [1]={ [1]={ [1]={ @@ -18248,7 +18343,7 @@ return { [1]="transfer_hexes_to_X_nearby_enemies_on_kill" } }, - [681]={ + [685]={ [1]={ [1]={ limit={ @@ -18264,7 +18359,7 @@ return { [1]="trap_critical_strike_multiplier_+_per_power_charge" } }, - [682]={ + [686]={ [1]={ [1]={ limit={ @@ -18293,7 +18388,7 @@ return { [1]="trap_damage_+%" } }, - [683]={ + [687]={ [1]={ [1]={ limit={ @@ -18322,7 +18417,7 @@ return { [1]="trap_spread_+%" } }, - [684]={ + [688]={ [1]={ [1]={ limit={ @@ -18351,7 +18446,7 @@ return { [1]="trap_throwing_speed_+%" } }, - [685]={ + [689]={ [1]={ [1]={ limit={ @@ -18380,7 +18475,7 @@ return { [1]="trap_throwing_speed_+%_per_frenzy_charge" } }, - [686]={ + [690]={ [1]={ [1]={ limit={ @@ -18409,7 +18504,7 @@ return { [1]="trap_trigger_radius_+%" } }, - [687]={ + [691]={ [1]={ [1]={ limit={ @@ -18438,7 +18533,7 @@ return { [1]="trap_trigger_radius_+%_per_power_charge" } }, - [688]={ + [692]={ [1]={ [1]={ limit={ @@ -18467,7 +18562,7 @@ return { [1]="attack_speed_+%_per_trauma" } }, - [689]={ + [693]={ [1]={ [1]={ limit={ @@ -18648,7 +18743,7 @@ return { [4]="trauma_strike_self_damage_per_trauma" } }, - [690]={ + [694]={ [1]={ [1]={ limit={ @@ -18677,7 +18772,7 @@ return { [1]="trigger_brand_support_hit_damage_+%_final_vs_branded_enemy" } }, - [691]={ + [695]={ [1]={ [1]={ limit={ @@ -18693,7 +18788,7 @@ return { [1]="trigger_on_attack_hit_against_rare_or_unique" } }, - [692]={ + [696]={ [1]={ [1]={ limit={ @@ -18709,7 +18804,7 @@ return { [1]="trigger_on_trigger_link_target_hit" } }, - [693]={ + [697]={ [1]={ [1]={ limit={ @@ -18734,7 +18829,7 @@ return { [1]="trigger_prismatic_burst_on_hit_%_chance" } }, - [694]={ + [698]={ [1]={ [1]={ limit={ @@ -18750,7 +18845,7 @@ return { [1]="triggered_by_brand_support" } }, - [695]={ + [699]={ [1]={ [1]={ limit={ @@ -18766,7 +18861,7 @@ return { [1]="triggered_by_divine_cry" } }, - [696]={ + [700]={ [1]={ [1]={ limit={ @@ -18800,7 +18895,7 @@ return { [2]="support_manaforged_arrows_mana_cost_%_threshold" } }, - [697]={ + [701]={ [1]={ [1]={ limit={ @@ -18816,7 +18911,7 @@ return { [1]="triggered_by_spiritual_cry" } }, - [698]={ + [702]={ [1]={ [1]={ limit={ @@ -18845,7 +18940,7 @@ return { [1]="triggered_skill_damage_+%" } }, - [699]={ + [703]={ [1]={ [1]={ limit={ @@ -18874,7 +18969,7 @@ return { [1]="unleash_support_seal_gain_frequency_+%_while_channelling" } }, - [700]={ + [704]={ [1]={ [1]={ limit={ @@ -18903,7 +18998,7 @@ return { [1]="unleash_support_seal_gain_frequency_+%_while_not_channelling" } }, - [701]={ + [705]={ [1]={ [1]={ limit={ @@ -18919,7 +19014,7 @@ return { [1]="warcries_do_not_apply_buffs_to_self_or_allies" } }, - [702]={ + [706]={ [1]={ [1]={ limit={ @@ -18935,7 +19030,7 @@ return { [1]="warcry_grant_damage_+%_to_exerted_attacks" } }, - [703]={ + [707]={ [1]={ [1]={ limit={ @@ -18964,7 +19059,7 @@ return { [1]="warcry_speed_+%" } }, - [704]={ + [708]={ [1]={ [1]={ limit={ @@ -18993,7 +19088,7 @@ return { [1]="weapon_elemental_damage_+%" } }, - [705]={ + [709]={ [1]={ [1]={ limit={ @@ -19009,7 +19104,7 @@ return { [1]="wither_applies_additional_wither_%" } }, - [706]={ + [710]={ [1]={ [1]={ limit={ @@ -19038,7 +19133,7 @@ return { [1]="you_and_enemy_movement_velocity_+%_while_affected_by_ailment_you_inflicted" } }, - [707]={ + [711]={ [1]={ [1]={ [1]={ @@ -19077,7 +19172,7 @@ return { [4]="skill_max_unleash_seals" } }, - [708]={ + [712]={ [1]={ [1]={ limit={ @@ -19106,7 +19201,7 @@ return { [1]="support_spell_rapid_fire_repeat_use_damage_+%_final" } }, - [709]={ + [713]={ [1]={ [1]={ [1]={ @@ -19126,7 +19221,7 @@ return { [1]="supported_skill_can_only_use_axe_mace_and_staff" } }, - [710]={ + [714]={ [1]={ [1]={ limit={ @@ -19142,7 +19237,7 @@ return { [1]="support_remote_mine_2_chance_to_deal_double_damage_%_against_enemies_near_mines" } }, - [711]={ + [715]={ [1]={ [1]={ [1]={ @@ -19162,7 +19257,7 @@ return { [1]="minion_larger_aggro_radius" } }, - [712]={ + [716]={ [1]={ [1]={ [1]={ @@ -19182,14 +19277,14 @@ return { [1]="minions_are_defensive" } }, - ["%_chance_to_gain_frenzy_charge_on_mine_detonated_targeting_an_enemy"]=467, - ["%_chance_to_gain_frenzy_charge_on_trap_triggered_by_an_enemy"]=468, - ["%_chance_to_gain_power_charge_on_mine_detonated_targeting_an_enemy"]=469, - ["%_chance_to_gain_power_charge_on_trap_triggered_by_an_enemy"]=470, + ["%_chance_to_gain_frenzy_charge_on_mine_detonated_targeting_an_enemy"]=468, + ["%_chance_to_gain_frenzy_charge_on_trap_triggered_by_an_enemy"]=469, + ["%_chance_to_gain_power_charge_on_mine_detonated_targeting_an_enemy"]=470, + ["%_chance_to_gain_power_charge_on_trap_triggered_by_an_enemy"]=471, ["accuracy_rating"]=211, ["accuracy_rating_+%"]=212, ["active_skill_additive_spell_damage_modifiers_apply_to_attack_damage_at_%_value"]=213, - ["active_skill_display_suppress_physical_to_cold_damage_conversion"]=505, + ["active_skill_display_suppress_physical_to_cold_damage_conversion"]=506, ["active_skill_summon_X_totems_in_ring_override"]=57, ["active_skill_withered_base_duration_ms"]=170, ["add_power_charge_on_critical_strike_%"]=214, @@ -19227,7 +19322,7 @@ return { ["attack_skill_mana_leech_from_any_damage_permyriad"]=237, ["attack_skills_additional_ballista_totems_allowed"]=63, ["attack_speed_+%"]=238, - ["attack_speed_+%_per_trauma"]=688, + ["attack_speed_+%_per_trauma"]=692, ["attack_speed_+%_when_on_low_life"]=239, ["attack_speed_+%_with_at_least_10_rage"]=240, ["attack_speed_+%_with_atleast_20_rage"]=241, @@ -19309,7 +19404,7 @@ return { ["bleeding_damage_+%"]=285, ["blind_duration_+%"]=71, ["blood_price_gain_%_maximum_life_as_added_physical_damage_with_weapons_while_on_low_life"]=286, - ["boneshatter_trauma_base_duration_ms"]=689, + ["boneshatter_trauma_base_duration_ms"]=693, ["burn_damage_+%"]=287, ["cannot_cast_curses"]=126, ["cannot_cause_bleeding"]=284, @@ -19355,10 +19450,10 @@ return { ["cover_in_ash_on_hit_%"]=314, ["critical_ailment_dot_multiplier_+"]=315, ["critical_strike_chance_+%"]=72, - ["critical_strike_chance_+%_per_righteous_charge"]=629, + ["critical_strike_chance_+%_per_righteous_charge"]=632, ["critical_strike_chance_+%_vs_blinded_enemies"]=316, ["critical_strike_multiplier_+_while_affected_by_elusive"]=163, - ["critical_strikes_that_inflict_bleeding_also_rupture"]=636, + ["critical_strikes_that_inflict_bleeding_also_rupture"]=639, ["cruelty_duration_+%"]=166, ["cruelty_effect_+%"]=317, ["crush_for_2_seconds_on_hit_%_chance"]=318, @@ -19397,7 +19492,7 @@ return { ["dot_multiplier_+"]=348, ["elemental_damage_+%"]=350, ["elemental_damage_+%_final_per_5_lowest_resonance"]=199, - ["elemental_damage_+%_final_per_righteous_charge"]=630, + ["elemental_damage_+%_final_per_righteous_charge"]=633, ["elemental_damage_cannot_be_reflected"]=349, ["elemental_status_effect_aura_radius"]=45, ["elusive_effect_+%"]=351, @@ -19436,152 +19531,153 @@ return { ["global_maximum_added_chaos_damage"]=377, ["global_maximum_added_cold_damage"]=378, ["global_maximum_added_fire_damage"]=379, - ["global_maximum_added_fire_damage_vs_burning_enemies"]=586, + ["global_maximum_added_fire_damage_vs_burning_enemies"]=589, ["global_maximum_added_lightning_damage"]=380, ["global_maximum_added_physical_damage"]=381, ["global_minimum_added_chaos_damage"]=377, ["global_minimum_added_cold_damage"]=378, ["global_minimum_added_fire_damage"]=379, - ["global_minimum_added_fire_damage_vs_burning_enemies"]=586, + ["global_minimum_added_fire_damage_vs_burning_enemies"]=589, ["global_minimum_added_lightning_damage"]=380, ["global_minimum_added_physical_damage"]=381, ["global_poison_on_hit"]=158, ["global_reduce_enemy_block_%"]=382, ["greater_projectile_intensity_projectile_damage_+%_final_per_intensity"]=383, ["hex_transfer_on_death_range_+%"]=384, - ["hit_and_poison_damage_+%"]=385, - ["hit_and_poison_damage_+%_per_poison_on_enemy"]=386, - ["hit_damage_+%"]=387, + ["hextouch_support_curse_duration_+%_final"]=385, + ["hit_and_poison_damage_+%"]=386, + ["hit_and_poison_damage_+%_per_poison_on_enemy"]=387, + ["hit_damage_+%"]=388, ["hits_grant_cruelty"]=202, - ["ignite_duration_+%"]=388, - ["ignites_apply_fire_resistance_+"]=389, - ["ignore_self_damage_from_trauma_chance_%"]=390, - ["impale_debuff_effect_+%"]=391, - ["impale_phys_reduction_%_penalty"]=392, - ["impale_support_physical_damage_+%_final"]=393, - ["inc_aoe_plus_more_area_damage_+%_final"]=394, + ["ignite_duration_+%"]=389, + ["ignites_apply_fire_resistance_+"]=390, + ["ignore_self_damage_from_trauma_chance_%"]=391, + ["impale_debuff_effect_+%"]=392, + ["impale_phys_reduction_%_penalty"]=393, + ["impale_support_physical_damage_+%_final"]=394, + ["inc_aoe_plus_more_area_damage_+%_final"]=395, ["infernal_legion_minions_have_burning_effect_radius_+"]=194, - ["infusion_grants_life_regeneration_rate_per_minute_%"]=395, - ["inspiration_charge_duration_+%"]=396, - ["intensity_loss_frequency_while_moving_+%"]=397, + ["infusion_grants_life_regeneration_rate_per_minute_%"]=396, + ["inspiration_charge_duration_+%"]=397, + ["intensity_loss_frequency_while_moving_+%"]=398, ["is_ranged_attack_totem"]=57, ["is_remote_mine"]=51, - ["is_snipe_default_projectile"]=510, - ["is_snipe_default_projectile_2"]=511, + ["is_snipe_default_projectile"]=511, + ["is_snipe_default_projectile_2"]=512, ["is_totem"]=57, ["keystone_point_blank"]=47, ["keystone_strong_bowman"]=49, ["kill_enemy_on_hit_if_under_10%_life"]=46, - ["killing_blow_consumes_corpse_restore_x_life"]=399, - ["killing_blow_consumes_corpse_restore_x_mana"]=399, - ["knockback_chance_%_at_close_range"]=400, - ["knockback_distance_+%"]=401, - ["life_leech_from_any_damage_permyriad"]=402, - ["lightning_ailment_effect_+%"]=403, - ["lightning_damage_+%"]=404, + ["killing_blow_consumes_corpse_restore_x_life"]=400, + ["killing_blow_consumes_corpse_restore_x_mana"]=400, + ["knockback_chance_%_at_close_range"]=401, + ["knockback_distance_+%"]=402, + ["life_leech_from_any_damage_permyriad"]=403, + ["lightning_ailment_effect_+%"]=404, + ["lightning_damage_+%"]=405, ["link_skills_deal_cold_dot_to_enemies_in_beam_aoe"]=48, - ["local_gem_dex_requirement_+%"]=405, - ["local_gem_int_requirement_+%"]=406, - ["local_gem_str_requirement_+%"]=407, - ["lose_all_righteous_charges_on_mana_use_threshold"]=631, - ["maim_effect_+%"]=408, - ["maim_on_hit_%"]=409, + ["local_gem_dex_requirement_+%"]=406, + ["local_gem_int_requirement_+%"]=407, + ["local_gem_str_requirement_+%"]=408, + ["lose_all_righteous_charges_on_mana_use_threshold"]=634, + ["maim_effect_+%"]=409, + ["maim_on_hit_%"]=410, ["mana_gain_per_target"]=109, - ["mana_leech_from_any_damage_permyriad"]=410, - ["manaweave_added_cold_damage_%_cost_if_payable"]=412, - ["manaweave_cost_equals_%_unreserved_mana"]=411, + ["mana_leech_from_any_damage_permyriad"]=411, + ["manaweave_added_cold_damage_%_cost_if_payable"]=413, + ["manaweave_cost_equals_%_unreserved_mana"]=412, ["mark_skills_curse_effect_+%"]=209, - ["maximum_added_cold_damage_per_frenzy_charge"]=425, + ["maximum_added_cold_damage_per_frenzy_charge"]=426, ["maximum_attack_damage_+%_final_from_volatility_support"]=207, - ["maximum_energy_shield_leech_amount_per_leech_+%"]=413, - ["maximum_intensify_stacks"]=414, - ["maximum_life_leech_amount_per_leech_+%"]=415, + ["maximum_energy_shield_leech_amount_per_leech_+%"]=414, + ["maximum_intensify_stacks"]=415, + ["maximum_life_leech_amount_per_leech_+%"]=416, ["melee_attack_number_of_spirit_strikes"]=30, - ["melee_damage_+%"]=416, - ["melee_damage_vs_bleeding_enemies_+%"]=417, - ["melee_physical_damage_+%"]=418, - ["melee_range_+"]=419, + ["melee_damage_+%"]=417, + ["melee_damage_vs_bleeding_enemies_+%"]=418, + ["melee_physical_damage_+%"]=419, + ["melee_range_+"]=420, ["melee_splash"]=111, - ["melee_splash_area_of_effect_+%_final"]=420, + ["melee_splash_area_of_effect_+%_final"]=421, ["mine_critical_strike_chance_+%_per_power_charge"]=188, - ["mine_detonation_radius_+%"]=421, - ["mine_detonation_speed_+%"]=422, + ["mine_detonation_radius_+%"]=422, + ["mine_detonation_speed_+%"]=423, ["mine_duration_+%"]=69, - ["mine_laying_speed_+%"]=423, - ["mine_projectile_speed_+%_per_frenzy_charge"]=424, + ["mine_laying_speed_+%"]=424, + ["mine_projectile_speed_+%_per_frenzy_charge"]=425, ["mine_throwing_speed_+%_per_frenzy_charge"]=187, - ["minimum_added_cold_damage_per_frenzy_charge"]=425, + ["minimum_added_cold_damage_per_frenzy_charge"]=426, ["minimum_attack_damage_+%_final_from_volatility_support"]=208, - ["minimum_number_of_projectiles_to_fire_is_1"]=426, - ["minimum_power_from_quality"]=427, - ["minion_additional_physical_damage_reduction_%"]=428, - ["minion_ailment_damage_+%"]=429, - ["minion_attack_speed_+%"]=430, - ["minion_block_%"]=431, - ["minion_burning_damage_+%"]=432, - ["minion_cast_speed_+%"]=433, - ["minion_chance_to_deal_double_damage_%"]=434, - ["minion_chance_to_taunt_on_hit_%"]=435, - ["minion_cooldown_recovery_+%"]=436, - ["minion_critical_strike_chance_+%"]=437, - ["minion_damage_+%"]=438, - ["minion_damage_+%_on_full_life"]=439, + ["minimum_number_of_projectiles_to_fire_is_1"]=427, + ["minimum_power_from_quality"]=428, + ["minion_additional_physical_damage_reduction_%"]=429, + ["minion_ailment_damage_+%"]=430, + ["minion_attack_speed_+%"]=431, + ["minion_block_%"]=432, + ["minion_burning_damage_+%"]=433, + ["minion_cast_speed_+%"]=434, + ["minion_chance_to_deal_double_damage_%"]=435, + ["minion_chance_to_taunt_on_hit_%"]=436, + ["minion_cooldown_recovery_+%"]=437, + ["minion_critical_strike_chance_+%"]=438, + ["minion_damage_+%"]=439, + ["minion_damage_+%_on_full_life"]=440, ["minion_elemental_resistance_%"]=189, ["minion_fire_damage_%_of_maximum_life_taken_per_minute"]=191, ["minion_fire_damage_taken_+%"]=192, - ["minion_grant_puppet_master_buff_to_parent_on_hit_%"]=440, - ["minion_larger_aggro_radius"]=711, - ["minion_life_leech_from_elemental_damage_permyriad"]=441, + ["minion_grant_puppet_master_buff_to_parent_on_hit_%"]=441, + ["minion_larger_aggro_radius"]=715, + ["minion_life_leech_from_elemental_damage_permyriad"]=442, ["minion_life_regeneration_rate_per_minute_%"]=210, ["minion_maximum_all_elemental_resistances_%"]=190, - ["minion_maximum_life_+%"]=442, - ["minion_movement_speed_+%"]=443, - ["minion_projectile_speed_+%"]=444, - ["minion_recover_%_maximum_life_on_hit"]=445, - ["minions_are_defensive"]=712, - ["minions_inflict_exposure_on_hit_%_chance"]=446, - ["mirage_archer_number_of_additional_projectiles"]=447, - ["multiple_projectiles_projectile_spread_+%"]=448, - ["multistrike_area_of_effect_+%_per_repeat"]=449, - ["multistrike_damage_+%_final_on_first_repeat"]=450, - ["multistrike_damage_+%_final_on_second_repeat"]=451, - ["multistrike_damage_+%_final_on_third_repeat"]=452, - ["nightblade_elusive_grants_critical_strike_multiplier_+_to_supported_skills"]=453, - ["no_cost"]=454, + ["minion_maximum_life_+%"]=443, + ["minion_movement_speed_+%"]=444, + ["minion_projectile_speed_+%"]=445, + ["minion_recover_%_maximum_life_on_hit"]=446, + ["minions_are_defensive"]=716, + ["minions_inflict_exposure_on_hit_%_chance"]=447, + ["mirage_archer_number_of_additional_projectiles"]=448, + ["multiple_projectiles_projectile_spread_+%"]=449, + ["multistrike_area_of_effect_+%_per_repeat"]=450, + ["multistrike_damage_+%_final_on_first_repeat"]=451, + ["multistrike_damage_+%_final_on_second_repeat"]=452, + ["multistrike_damage_+%_final_on_third_repeat"]=453, + ["nightblade_elusive_grants_critical_strike_multiplier_+_to_supported_skills"]=454, + ["no_cost"]=455, ["no_spirit_strikes"]=31, - ["non_curse_aura_effect_+%"]=455, - ["non_damaging_ailment_effect_+%"]=456, - ["number_of_additional_curses_allowed"]=457, + ["non_curse_aura_effect_+%"]=456, + ["non_damaging_ailment_effect_+%"]=457, + ["number_of_additional_curses_allowed"]=458, ["number_of_additional_forks_base"]=82, - ["number_of_additional_mines_to_place"]=458, - ["number_of_additional_projectiles"]=459, - ["number_of_additional_remote_mines_allowed"]=460, - ["number_of_additional_traps_allowed"]=461, + ["number_of_additional_mines_to_place"]=459, + ["number_of_additional_projectiles"]=460, + ["number_of_additional_remote_mines_allowed"]=461, + ["number_of_additional_traps_allowed"]=462, ["number_of_additional_traps_to_throw"]=52, ["number_of_chains"]=79, ["number_of_mines_to_place"]=51, - ["number_of_projectiles_+%_final_from_locus_mine_support"]=462, + ["number_of_projectiles_+%_final_from_locus_mine_support"]=463, ["number_of_totems_to_summon"]=57, - ["number_of_warcries_exerting_this_action"]=398, - ["onslaught_time_granted_on_killing_shocked_enemy_ms"]=463, - ["overpowered_effect_+%"]=464, - ["overwhelm_%_physical_damage_reduction_while_max_fortification"]=465, - ["parallel_projectile_firing_point_x_dist_+%"]=466, + ["number_of_warcries_exerting_this_action"]=399, + ["onslaught_time_granted_on_killing_shocked_enemy_ms"]=464, + ["overpowered_effect_+%"]=465, + ["overwhelm_%_physical_damage_reduction_while_max_fortification"]=466, + ["parallel_projectile_firing_point_x_dist_+%"]=467, parent="stat_descriptions", - ["physical_damage_%_to_add_as_chaos"]=471, - ["physical_damage_%_to_add_as_fire"]=472, - ["physical_damage_%_to_add_as_lightning"]=473, - ["physical_damage_+%"]=474, - ["placing_traps_cooldown_recovery_+%"]=475, + ["physical_damage_%_to_add_as_chaos"]=472, + ["physical_damage_%_to_add_as_fire"]=473, + ["physical_damage_%_to_add_as_lightning"]=474, + ["physical_damage_+%"]=475, + ["placing_traps_cooldown_recovery_+%"]=476, ["power_siphon_fire_at_all_targets"]=44, ["projectile_additional_return_chance_%"]=206, ["projectile_base_number_of_targets_to_pierce"]=59, ["projectile_behaviour_only_explode"]=1, - ["projectile_chance_to_not_pierce_%"]=476, - ["projectile_damage_+%"]=477, - ["projectile_damage_+%_if_pierced_enemy"]=478, - ["projectile_damage_+%_vs_nearby_enemies"]=480, - ["projectile_maximum_range_override"]=479, + ["projectile_chance_to_not_pierce_%"]=477, + ["projectile_damage_+%"]=478, + ["projectile_damage_+%_if_pierced_enemy"]=479, + ["projectile_damage_+%_vs_nearby_enemies"]=481, + ["projectile_maximum_range_override"]=480, ["projectile_number_to_split"]=80, ["projectile_return_%_chance"]=83, ["projectile_spiral_nova_angle"]=44, @@ -19589,136 +19685,137 @@ return { ["projectiles_barrage"]=44, ["projectiles_fork"]=81, ["projectiles_nova"]=44, - ["projectiles_pierce_all_targets_in_x_range"]=481, + ["projectiles_pierce_all_targets_in_x_range"]=482, ["projectiles_rain"]=42, ["projectiles_return"]=83, - ["quality_display_lifetap_is_gem"]=574, + ["quality_display_lifetap_is_gem"]=577, ["quality_display_melee_splash_is_gem"]=112, ["quality_display_spell_damage_to_attack_damage_is_gem"]=213, ["quality_display_swiftbrand_is_gem"]=155, ["quality_display_trap_duration_is_gem"]=60, ["quality_display_wand_damage_as_added_spell_damage_is_gem"]=367, ["rain_of_arrows_sequences_to_fire"]=44, - ["ranged_attack_totem_only_attacks_when_owner_attacks"]=482, - ["recover_%_life_when_stunning_an_enemy_permyriad"]=483, - ["recover_%_maximum_life_on_cull"]=484, - ["recover_permyriad_life_on_skill_use"]=485, - ["reduce_enemy_chaos_resistance_%"]=486, - ["reduce_enemy_dodge_%"]=487, + ["ranged_attack_totem_only_attacks_when_owner_attacks"]=483, + ["recover_%_life_when_stunning_an_enemy_permyriad"]=484, + ["recover_%_maximum_life_on_cull"]=485, + ["recover_permyriad_life_on_skill_use"]=486, + ["reduce_enemy_chaos_resistance_%"]=487, + ["reduce_enemy_dodge_%"]=488, ["reduce_enemy_elemental_resistance_%"]=77, - ["refresh_bleeding_duration_on_hit_%_chance"]=488, - ["regenerate_%_life_over_1_second_on_skill_use"]=489, - ["remote_mined_by_support"]=490, - ["retaliation_use_window_duration_+%"]=491, + ["refresh_bleeding_duration_on_hit_%_chance"]=489, + ["regenerate_%_life_over_1_second_on_skill_use"]=490, + ["remote_mined_by_support"]=491, + ["retaliation_use_window_duration_+%"]=492, ["returning_projectiles_always_pierce"]=205, ["secondary_base_fire_damage_to_deal_per_minute"]=138, - ["shock_duration_+%"]=492, - ["shock_effect_+%_with_critical_strikes"]=493, - ["sigil_repeat_frequency_+%"]=494, - ["skill_aura_also_disables_non_blessing_mana_reservation_skills"]=496, - ["skill_buff_effect_+%"]=497, - ["skill_can_only_use_bow"]=673, - ["skill_can_only_use_non_melee_weapons"]=676, - ["skill_can_own_mirage_archers"]=498, - ["skill_cold_damage_%_to_convert_to_fire"]=499, - ["skill_convert_%_physical_damage_to_random_element"]=500, + ["shock_duration_+%"]=493, + ["shock_effect_+%_with_critical_strikes"]=494, + ["sigil_repeat_frequency_+%"]=495, + ["skill_aura_also_disables_non_blessing_mana_reservation_skills"]=497, + ["skill_buff_effect_+%"]=498, + ["skill_can_only_use_bow"]=677, + ["skill_can_only_use_non_melee_weapons"]=680, + ["skill_can_own_mirage_archers"]=499, + ["skill_cold_damage_%_to_convert_to_fire"]=500, + ["skill_convert_%_physical_damage_to_random_element"]=501, ["skill_display_single_base_projectile"]=44, - ["skill_effect_and_damaging_ailment_duration_+%"]=501, - ["skill_effect_duration_+%"]=502, - ["skill_effect_duration_+%_while_dead"]=503, - ["skill_is_blessing_skill"]=495, - ["skill_max_unleash_seals"]=707, - ["skill_physical_damage_%_to_convert_to_chaos"]=504, - ["skill_physical_damage_%_to_convert_to_cold"]=505, - ["skill_physical_damage_%_to_convert_to_fire"]=506, - ["skill_physical_damage_%_to_convert_to_lightning"]=507, - ["skill_used_by_sacred_wisp_damage_+%_final"]=508, - ["snipe_triggered_skill_ailment_damage_+%_final_per_stage"]=511, - ["snipe_triggered_skill_damage_+%_final"]=509, - ["snipe_triggered_skill_hit_damage_+%_final_per_stage"]=510, - ["spell_critical_strike_chance_+%"]=512, - ["spell_damage_+%"]=513, + ["skill_effect_and_damaging_ailment_duration_+%"]=502, + ["skill_effect_duration_+%"]=503, + ["skill_effect_duration_+%_while_dead"]=504, + ["skill_is_blessing_skill"]=496, + ["skill_max_unleash_seals"]=711, + ["skill_physical_damage_%_to_convert_to_chaos"]=505, + ["skill_physical_damage_%_to_convert_to_cold"]=506, + ["skill_physical_damage_%_to_convert_to_fire"]=507, + ["skill_physical_damage_%_to_convert_to_lightning"]=508, + ["skill_used_by_sacred_wisp_damage_+%_final"]=509, + ["snipe_triggered_skill_ailment_damage_+%_final_per_stage"]=512, + ["snipe_triggered_skill_damage_+%_final"]=510, + ["snipe_triggered_skill_hit_damage_+%_final_per_stage"]=511, + ["spell_critical_strike_chance_+%"]=513, + ["spell_damage_+%"]=514, ["spell_damage_modifiers_apply_to_skill_dot"]=141, - ["spell_echo_plus_chance_double_damage_%_final"]=514, + ["spell_echo_plus_chance_double_damage_%_final"]=515, ["spellslinger_trigger_on_wand_attack_%"]=132, - ["static_strike_base_zap_frequency_ms"]=515, - ["static_strike_zap_speed_+%"]=516, + ["static_strike_base_zap_frequency_ms"]=516, + ["static_strike_zap_speed_+%"]=517, ["strong_casting"]=50, ["summon_2_totems"]=65, ["summon_cold_resistance_+"]=123, ["summon_fire_resistance_+"]=122, ["summon_lightning_resistance_+"]=124, - ["summon_mirage_archer_on_hit"]=517, - ["summon_sacred_wisps_on_hit"]=518, - ["summon_totem_cast_speed_+%"]=519, - ["support_added_cooldown_count_if_not_instant"]=520, + ["summon_living_lightning_on_lightning_hit"]=518, + ["summon_mirage_archer_on_hit"]=519, + ["summon_sacred_wisps_on_hit"]=520, + ["summon_totem_cast_speed_+%"]=521, + ["support_added_cooldown_count_if_not_instant"]=522, ["support_additional_totem_damage_+%_final"]=97, - ["support_additional_trap_%_chance_for_1_additional_trap"]=521, + ["support_additional_trap_%_chance_for_1_additional_trap"]=523, ["support_additional_trap_mine_%_chance_for_1_additional_trap_mine"]=53, ["support_additional_trap_mine_%_chance_for_2_additional_trap_mine"]=54, ["support_additional_trap_mine_%_chance_for_3_additional_trap_mine"]=55, - ["support_ancestor_slam_totem_attack_speed_+%_final"]=522, + ["support_ancestor_slam_totem_attack_speed_+%_final"]=524, ["support_ancestor_slam_totem_damage_+%_final"]=5, ["support_ancestral_slam_big_hit_area_+%"]=197, ["support_ancestral_slam_big_hit_damage_with_hits_and_ailments_+%_final"]=196, - ["support_anticipation_charge_gain_frequency_+%"]=523, - ["support_anticipation_charge_gain_interval_ms"]=707, - ["support_anticipation_rapid_fire_count"]=707, + ["support_anticipation_charge_gain_frequency_+%"]=525, + ["support_anticipation_charge_gain_interval_ms"]=711, + ["support_anticipation_rapid_fire_count"]=711, ["support_arcane_surge_base_duration_ms"]=167, ["support_arcane_surge_cast_speed_+%"]=165, ["support_arcane_surge_duration_ms"]=171, ["support_arcane_surge_gain_buff_on_mana_use_threshold"]=164, ["support_arcane_surge_mana_regeneration_rate_+%"]=165, - ["support_arcane_surge_spell_damage_+%_final_while_you_have_arcane_surge"]=524, + ["support_arcane_surge_spell_damage_+%_final_while_you_have_arcane_surge"]=526, ["support_area_concentrate_area_damage_+%_final"]=14, ["support_attack_skills_elemental_damage_+%_final"]=12, ["support_attack_totem_attack_speed_+%_final"]=147, - ["support_aura_duration_base_buff_duration"]=525, - ["support_autocast_instant_spells"]=526, - ["support_autocast_warcries"]=527, - ["support_autoexertion_base_mana_cost_override"]=528, + ["support_aura_duration_base_buff_duration"]=527, + ["support_autocast_instant_spells"]=528, + ["support_autocast_warcries"]=529, + ["support_autoexertion_base_mana_cost_override"]=530, ["support_bane_curse_effect_+%_final"]=143, - ["support_barrage_attack_time_+%_per_projectile_fired"]=529, + ["support_barrage_attack_time_+%_per_projectile_fired"]=531, ["support_barrage_damage_+%_final"]=15, - ["support_barrage_trap_and_mine_throwing_time_+%_final_per_projectile_fired"]=530, + ["support_barrage_trap_and_mine_throwing_time_+%_final_per_projectile_fired"]=532, ["support_base_cruelty_duration_ms"]=168, - ["support_base_lifetap_buff_duration"]=574, + ["support_base_lifetap_buff_duration"]=577, ["support_better_ailments_ailment_damage_+%_final"]=98, ["support_better_ailments_hit_damage_+%_final"]=99, ["support_blasphemy_curse_effect_+%_final"]=144, - ["support_blood_thirst_damage_+%_final"]=531, + ["support_blood_thirst_damage_+%_final"]=533, ["support_bloodlust_melee_physical_damage_+%_final_vs_bleeding_enemies"]=150, - ["support_blunt_chance_to_trigger_shockwave_on_hit_%"]=532, - ["support_bonechill_cold_damage_+%_final"]=533, - ["support_brand_area_of_effect_+%_final"]=534, - ["support_brand_damage_+%_final"]=535, + ["support_blunt_chance_to_trigger_shockwave_on_hit_%"]=534, + ["support_bonechill_cold_damage_+%_final"]=535, + ["support_brand_area_of_effect_+%_final"]=536, + ["support_brand_damage_+%_final"]=537, ["support_brutality_physical_damage_+%_final"]=100, - ["support_burning_damage_+%_final"]=536, - ["support_cast_on_crit_quality_attack_damage_+%_final"]=537, + ["support_burning_damage_+%_final"]=538, + ["support_cast_on_crit_quality_attack_damage_+%_final"]=539, ["support_cast_on_crit_spell_damage_+%_final"]=22, ["support_cast_on_melee_kill_spell_damage_+%_final"]=23, ["support_cast_while_channelling_triggered_skill_damage_+%_final"]=24, - ["support_cast_while_channelling_triggered_skill_non_damaging_ailment_effect_+%"]=538, + ["support_cast_while_channelling_triggered_skill_non_damaging_ailment_effect_+%"]=540, ["support_chain_hit_damage_+%_final"]=84, - ["support_chance_to_bleed_bleeding_damage_+%_final"]=539, + ["support_chance_to_bleed_bleeding_damage_+%_final"]=541, ["support_chance_to_ignite_fire_damage_+%_final"]=101, - ["support_chaos_attacks_damage_+%_final"]=540, + ["support_chaos_attacks_damage_+%_final"]=542, ["support_chilling_areas_also_grant_cold_damage_taken_+%_equal_to_slow_amount"]=186, ["support_chilling_areas_also_grant_cold_damage_taken_per_minute_+%"]=185, ["support_chills_also_grant_cold_damage_taken_+%_equal_to_slow_amount"]=184, ["support_chills_also_grant_cold_damage_taken_per_minute_+%"]=183, - ["support_clustertrap_damage_+%_final"]=541, + ["support_clustertrap_damage_+%_final"]=543, ["support_concentrated_effect_skill_area_of_effect_+%_final"]=34, - ["support_conflagration_ignites_from_stunning_melee_hits_count_as_coming_from_critical_strike"]=542, - ["support_conflagration_ignites_from_stunning_melee_hits_deal_damage_+%_final_per_200ms_stun"]=543, - ["support_conflagration_ignites_from_stunning_melee_hits_duration_+%"]=544, + ["support_conflagration_ignites_from_stunning_melee_hits_count_as_coming_from_critical_strike"]=544, + ["support_conflagration_ignites_from_stunning_melee_hits_deal_damage_+%_final_per_200ms_stun"]=545, + ["support_conflagration_ignites_from_stunning_melee_hits_duration_+%"]=546, ["support_controlled_destruction_critical_strike_chance_+%_final"]=73, ["support_controlled_destruction_spell_damage_+%_final"]=93, - ["support_corrupting_cry_area_of_effect_+%_final"]=545, - ["support_corrupting_cry_corrupted_blood_base_physical_damage_to_deal_per_minute"]=546, - ["support_corrupting_cry_exerted_attack_applies_X_stacks_of_corrupted_blood_on_first_hit"]=547, - ["support_corrupting_cry_warcry_and_first_exerted_attack_applies_corrupted_blood_for_X_ms"]=548, - ["support_corrupting_cry_warcry_applies_X_stacks_of_corrupted_blood"]=549, + ["support_corrupting_cry_area_of_effect_+%_final"]=547, + ["support_corrupting_cry_corrupted_blood_base_physical_damage_to_deal_per_minute"]=548, + ["support_corrupting_cry_exerted_attack_applies_X_stacks_of_corrupted_blood_on_first_hit"]=549, + ["support_corrupting_cry_warcry_and_first_exerted_attack_applies_corrupted_blood_for_X_ms"]=550, + ["support_corrupting_cry_warcry_applies_X_stacks_of_corrupted_blood"]=551, ["support_cruelty_hit_damage_+%_final"]=102, ["support_damage_while_on_full_life_+%_final"]=9, ["support_damaging_links_base_duration_is_gem"]=140, @@ -19726,86 +19823,87 @@ return { ["support_debilitate_hit_damage_+%_final_per_poison_stack"]=88, ["support_debilitate_hit_damage_max_poison_stacks"]=88, ["support_debilitate_poison_damage_+%_final"]=89, - ["support_divine_cry_damage_+%_final"]=550, + ["support_divine_cry_damage_+%_final"]=552, ["support_echo_damage_+%_final"]=6, ["support_efficacy_damage_over_time_+%_final"]=96, ["support_efficacy_spell_damage_+%_final"]=94, ["support_elemental_proliferation_damage_+%_final"]=7, - ["support_energy_shield_leech_damage_+%_on_full_energy_shield_final"]=551, - ["support_energy_shield_leech_damage_+%_while_leeching_energy_shield_final"]=552, - ["support_executioner_damage_vs_enemies_on_low_life_+%_final"]=553, - ["support_executioner_gain_one_rare_monster_mod_on_kill_ms"]=554, - ["support_executioner_refresh_stolen_mod_on_hitting_rare_or_unique_monster_chance_%"]=555, - ["support_expert_retaliation_cooldown_speed_+%_final"]=556, - ["support_faster_ailments_ailment_duration_+%_final"]=557, - ["support_flamewood_totems_trigger_infernal_bolt_when_hit"]=558, - ["support_focus_channel_cost_+%_final_per_second_channelling_up_to_100%"]=560, - ["support_focus_channel_damage_+%_final_per_second_channelling_up_to_60%"]=559, - ["support_focused_ballista_totem_attack_speed_+%_final"]=561, - ["support_focused_ballista_totem_damage_+%_final"]=562, + ["support_energy_shield_leech_damage_+%_on_full_energy_shield_final"]=553, + ["support_energy_shield_leech_damage_+%_while_leeching_energy_shield_final"]=554, + ["support_executioner_damage_vs_enemies_on_low_life_+%_final"]=555, + ["support_executioner_gain_one_rare_monster_mod_on_kill_ms"]=556, + ["support_executioner_refresh_stolen_mod_on_hitting_rare_or_unique_monster_chance_%"]=557, + ["support_expert_retaliation_cooldown_speed_+%_final"]=558, + ["support_faster_ailments_ailment_duration_+%_final"]=559, + ["support_flamewood_totems_trigger_infernal_bolt_when_hit"]=560, + ["support_focus_channel_cost_+%_final_per_second_channelling_up_to_100%"]=562, + ["support_focus_channel_damage_+%_final_per_second_channelling_up_to_60%"]=561, + ["support_focused_ballista_totem_attack_speed_+%_final"]=563, + ["support_focused_ballista_totem_damage_+%_final"]=564, ["support_fork_projectile_damage_+%_final"]=87, - ["support_fortify_ailment_damage_+%_final_from_melee_hits"]=563, - ["support_fortify_melee_damage_+%_final"]=564, + ["support_fortify_ailment_damage_+%_final_from_melee_hits"]=565, + ["support_fortify_melee_damage_+%_final"]=566, ["support_gem_elemental_damage_+%_final"]=103, ["support_gem_mine_damage_+%_final"]=19, - ["support_ghost_base_duration"]=565, - ["support_greater_projectile_intensity_projectile_damage_+%_final"]=566, - ["support_greater_volley_projectile_damage_+%_final"]=621, - ["support_guardians_blessing_aura_only_enabled_while_support_minion_is_summoned"]=567, - ["support_guardians_blessing_minion_physical_damage_%_of_maximum_life_and_ES_taken_per_minute"]=568, + ["support_ghost_base_duration"]=567, + ["support_greater_projectile_intensity_projectile_damage_+%_final"]=568, + ["support_greater_volley_projectile_damage_+%_final"]=624, + ["support_guardians_blessing_aura_only_enabled_while_support_minion_is_summoned"]=569, + ["support_guardians_blessing_minion_physical_damage_%_of_maximum_life_and_ES_taken_per_minute"]=570, ["support_hextouch_curse_effect_+%_final"]=145, - ["support_hypothermia_cold_damage_over_time_+%_final"]=569, - ["support_hypothermia_damage_+%_vs_chilled_enemies_final"]=570, + ["support_hypothermia_cold_damage_over_time_+%_final"]=571, + ["support_hypothermia_damage_+%_vs_chilled_enemies_final"]=572, ["support_ignite_prolif_ignite_damage_+%_final"]=104, ["support_ignite_proliferation_radius"]=43, ["support_innervate_buff_base_duration_ms"]=175, - ["support_innervate_chance_to_gain_buff_on_shock_vs_unique_%"]=571, + ["support_innervate_chance_to_gain_buff_on_shock_vs_unique_%"]=573, ["support_innervate_gain_buff_on_killing_shocked_enemy"]=173, ["support_innervate_maximum_added_lightning_damage"]=174, ["support_innervate_minimum_added_lightning_damage"]=174, ["support_inspiration_mana_cost_+%_final"]=29, + ["support_kinetic_instability_chance_to_create_instability_on_kill_%"]=574, ["support_lesser_multiple_projectile_damage_+%_final"]=18, - ["support_lifetap_damage_+%_final_while_buffed"]=573, - ["support_lifetap_spent_life_threshold"]=572, - ["support_locus_mine_base_mine_duration"]=575, - ["support_locus_mine_cannot_detonate_mines_within_X_units"]=576, - ["support_locus_mine_damage_+%_final"]=577, - ["support_locus_mine_mines_always_target_your_location"]=578, - ["support_locus_mine_throw_mines_in_an_arc"]=579, + ["support_lifetap_damage_+%_final_while_buffed"]=576, + ["support_lifetap_spent_life_threshold"]=575, + ["support_locus_mine_base_mine_duration"]=578, + ["support_locus_mine_cannot_detonate_mines_within_X_units"]=579, + ["support_locus_mine_damage_+%_final"]=580, + ["support_locus_mine_mines_always_target_your_location"]=581, + ["support_locus_mine_throw_mines_in_an_arc"]=582, ["support_maim_chance_physical_damage_+%_final"]=105, - ["support_maimed_enemies_physical_damage_taken_+%"]=580, - ["support_manaforged_arrows_damage_+%_final"]=581, - ["support_manaforged_arrows_damage_+%_final_per_mana_spent"]=582, - ["support_manaforged_arrows_mana_cost_%_threshold"]=696, + ["support_maimed_enemies_physical_damage_taken_+%"]=583, + ["support_manaforged_arrows_damage_+%_final"]=584, + ["support_manaforged_arrows_damage_+%_final_per_mana_spent"]=585, + ["support_manaforged_arrows_mana_cost_%_threshold"]=700, ["support_melee_physical_damage_+%_final"]=2, - ["support_melee_physical_damage_attack_speed_+%_final"]=583, + ["support_melee_physical_damage_attack_speed_+%_final"]=586, ["support_melee_physical_damage_poison_and_bleeding_damage_+%_final_from_melee_hits"]=3, ["support_melee_splash_damage_+%_final"]=110, ["support_melee_splash_damage_+%_final_for_splash"]=112, - ["support_minefield_mine_damage_+%_final"]=584, - ["support_minefield_mine_throwing_speed_+%_final"]=585, - ["support_minion_damage_+%_final"]=587, - ["support_minion_damage_minion_life_+%_final"]=588, - ["support_minion_defensive_stance_minion_damage_+%_final_against_enemies_near_you"]=589, - ["support_minion_defensive_stance_minion_damage_taken_+%_final"]=590, - ["support_minion_focus_fire_critical_strike_chance_+%_vs_focused_target"]=591, - ["support_minion_focus_fire_critical_strike_multiplier_+_vs_focused_target"]=592, - ["support_minion_focus_fire_damage_+%_final_vs_focussed_target"]=593, + ["support_minefield_mine_damage_+%_final"]=587, + ["support_minefield_mine_throwing_speed_+%_final"]=588, + ["support_minion_damage_+%_final"]=590, + ["support_minion_damage_minion_life_+%_final"]=591, + ["support_minion_defensive_stance_minion_damage_+%_final_against_enemies_near_you"]=592, + ["support_minion_defensive_stance_minion_damage_taken_+%_final"]=593, + ["support_minion_focus_fire_critical_strike_chance_+%_vs_focused_target"]=594, + ["support_minion_focus_fire_critical_strike_multiplier_+_vs_focused_target"]=595, + ["support_minion_focus_fire_damage_+%_final_vs_focussed_target"]=596, ["support_minion_instability_minion_base_fire_area_damage_per_minute"]=193, - ["support_minion_maximum_life_+%_final"]=594, - ["support_minion_offensive_stance_minion_damage_+%_final_while_you_have_puppet_master"]=595, - ["support_minion_totem_resistance_elemental_damage_+%_final"]=596, - ["support_minion_use_focussed_target"]=597, - ["support_mirage_archer_attack_speed_+%_final"]=598, - ["support_mirage_archer_base_duration"]=599, - ["support_mirage_archer_damage_+%_final"]=600, - ["support_momentum_attack_speed_+%_per_stack"]=602, - ["support_momentum_base_buff_duration_ms"]=603, - ["support_momentum_buff_duration_ms"]=603, - ["support_momentum_max_stacks"]=603, - ["support_momentum_movement_speed_+%_per_stack_removed"]=604, - ["support_momentum_stack_while_channelling_base_ms"]=601, - ["support_momentum_stack_while_channelling_ms"]=601, + ["support_minion_maximum_life_+%_final"]=597, + ["support_minion_offensive_stance_minion_damage_+%_final_while_you_have_puppet_master"]=598, + ["support_minion_totem_resistance_elemental_damage_+%_final"]=599, + ["support_minion_use_focussed_target"]=600, + ["support_mirage_archer_attack_speed_+%_final"]=601, + ["support_mirage_archer_base_duration"]=602, + ["support_mirage_archer_damage_+%_final"]=603, + ["support_momentum_attack_speed_+%_per_stack"]=605, + ["support_momentum_base_buff_duration_ms"]=606, + ["support_momentum_buff_duration_ms"]=606, + ["support_momentum_max_stacks"]=606, + ["support_momentum_movement_speed_+%_per_stack_removed"]=607, + ["support_momentum_stack_while_channelling_base_ms"]=604, + ["support_momentum_stack_while_channelling_ms"]=604, ["support_more_duration_skill_effect_duration_+%_final"]=153, ["support_multicast_cast_speed_+%_final"]=115, ["support_multiple_attack_damage_+%_final"]=117, @@ -19815,151 +19913,152 @@ return { ["support_multithrow_damage_+%_final"]=119, ["support_overexertion_damage_+%_final_if_exerted"]=11, ["support_overexertion_damage_+%_final_per_warcry_exerting_action"]=10, - ["support_overpowered_base_duration_ms"]=605, - ["support_parallel_projectile_number_of_points_per_side"]=606, - ["support_parallel_projectiles_damage_+%_final"]=607, - ["support_phys_chaos_projectile_chaos_damage_over_time_+%_final"]=608, - ["support_phys_chaos_projectile_physical_damage_over_time_+%_final"]=609, - ["support_phys_chaos_projectile_spell_physical_projectile_damage_+%_final"]=610, - ["support_phys_proj_attack_damage_bleeing_and_poison_damage_+%_final_from_projectile_hits"]=611, - ["support_pierce_projectile_damage_+%_final"]=612, + ["support_overpowered_base_duration_ms"]=608, + ["support_parallel_projectile_number_of_points_per_side"]=609, + ["support_parallel_projectiles_damage_+%_final"]=610, + ["support_phys_chaos_projectile_chaos_damage_over_time_+%_final"]=611, + ["support_phys_chaos_projectile_physical_damage_over_time_+%_final"]=612, + ["support_phys_chaos_projectile_spell_physical_projectile_damage_+%_final"]=613, + ["support_phys_proj_attack_damage_bleeing_and_poison_damage_+%_final_from_projectile_hits"]=614, + ["support_pierce_projectile_damage_+%_final"]=615, ["support_poison_poison_damage_+%_final"]=90, - ["support_power_charge_on_crit_damage_+%_final_per_power_charge"]=613, - ["support_projectile_attack_physical_damage_+%_final"]=614, - ["support_projectile_attack_speed_+%_final"]=615, - ["support_pulverise_area_of_effect_+%_final"]=616, - ["support_pulverise_attack_speed_+%_final"]=617, - ["support_pulverise_melee_area_damage_+%_final"]=618, - ["support_pure_shock_damage_+%_final"]=619, - ["support_pure_shock_shock_as_though_damage_+%_final"]=620, - ["support_rage_gain_rage_on_melee_hit_cooldown_ms"]=622, + ["support_power_charge_on_crit_damage_+%_final_per_power_charge"]=616, + ["support_projectile_attack_physical_damage_+%_final"]=617, + ["support_projectile_attack_speed_+%_final"]=618, + ["support_pulverise_area_of_effect_+%_final"]=619, + ["support_pulverise_attack_speed_+%_final"]=620, + ["support_pulverise_melee_area_damage_+%_final"]=621, + ["support_pure_shock_damage_+%_final"]=622, + ["support_pure_shock_shock_as_though_damage_+%_final"]=623, + ["support_rage_gain_rage_on_melee_hit_cooldown_ms"]=625, ["support_rain_projectile_damage_+%_final"]=17, - ["support_rapid_activation_brand_activation_rate_+%_final"]=623, + ["support_rapid_activation_brand_activation_rate_+%_final"]=626, ["support_rapid_activation_brand_skill_only_primary_duration_+%_final"]=155, ["support_rapid_activation_brand_skill_only_secondary_duration_+%_final"]=156, ["support_rapid_decay_damage_over_time_+%_final"]=95, - ["support_recent_ignites_damage_per_recent_ignite_+%_final"]=625, - ["support_recent_ignites_damage_per_recent_ignite_+%_final_minimum"]=625, - ["support_recent_ignites_ignite_damage_per_recent_ignite_+%_final"]=624, - ["support_recent_ignites_ignite_damage_per_recent_ignite_+%_final_maximum"]=624, - ["support_recent_minions_additional_critical_strike_chance_from_wakened_fury"]=627, - ["support_recent_minions_additional_critical_strike_multiplier_from_wakened_fury"]=627, - ["support_recent_minions_effect_duration_is_%_summon_duration"]=627, - ["support_recent_minions_life_leech_from_any_damage_permyriad_from_wakened_fury"]=626, - ["support_recent_minions_max_effect_duration_ms"]=627, - ["support_recent_minions_virtual_gain_adrenaline_and_wakened_fury_when_summoned_ms"]=627, - ["support_recent_phantasms_gain_adrenaline_and_wakened_fury_when_summoned_ms"]=627, - ["support_reduce_enemy_block_and_spell_block_%"]=628, + ["support_recent_ignites_damage_per_recent_ignite_+%_final"]=628, + ["support_recent_ignites_damage_per_recent_ignite_+%_final_minimum"]=628, + ["support_recent_ignites_ignite_damage_per_recent_ignite_+%_final"]=627, + ["support_recent_ignites_ignite_damage_per_recent_ignite_+%_final_maximum"]=627, + ["support_recent_minions_additional_critical_strike_chance_from_wakened_fury"]=630, + ["support_recent_minions_additional_critical_strike_multiplier_from_wakened_fury"]=630, + ["support_recent_minions_effect_duration_is_%_summon_duration"]=630, + ["support_recent_minions_life_leech_from_any_damage_permyriad_from_wakened_fury"]=629, + ["support_recent_minions_max_effect_duration_ms"]=630, + ["support_recent_minions_virtual_gain_adrenaline_and_wakened_fury_when_summoned_ms"]=630, + ["support_recent_phantasms_gain_adrenaline_and_wakened_fury_when_summoned_ms"]=630, + ["support_reduce_enemy_block_and_spell_block_%"]=631, ["support_reduced_duration_damage_+%_final"]=152, ["support_reduced_duration_skill_effect_duration_+%_final"]=154, - ["support_remote_mine_2_base_mine_detonation_time_ms"]=632, + ["support_remote_mine_2_base_mine_detonation_time_ms"]=635, ["support_remote_mine_2_base_mine_duration"]=62, - ["support_remote_mine_2_chance_to_deal_double_damage_%_against_enemies_near_mines"]=710, - ["support_remote_mine_2_damage_+%_final"]=633, - ["support_remote_mine_damage_+%_final_per_mine_detonation_cascade"]=634, - ["support_remote_mine_hit_damage_+%_final"]=635, + ["support_remote_mine_2_chance_to_deal_double_damage_%_against_enemies_near_mines"]=714, + ["support_remote_mine_2_damage_+%_final"]=636, + ["support_remote_mine_damage_+%_final_per_mine_detonation_cascade"]=637, + ["support_remote_mine_hit_damage_+%_final"]=638, ["support_return_returning_projectiles_damage_+%_final"]=91, - ["support_rupture_bleeding_damage_taken_+%_final"]=637, - ["support_rupture_bleeding_time_passed_+%_final"]=638, + ["support_rupture_bleeding_damage_taken_+%_final"]=640, + ["support_rupture_bleeding_time_passed_+%_final"]=641, ["support_ruthless_big_hit_damage_+%_final"]=177, ["support_ruthless_big_hit_max_count"]=176, ["support_ruthless_big_hit_stun_base_duration_override_ms"]=179, ["support_ruthless_blow_ailment_damage_from_melee_hits_+%_final"]=178, - ["support_sacrifice_gain_%_of_sacrificed_life_as_added_chaos_damage"]=639, - ["support_sacrifice_sacrifice_%_of_current_life"]=639, - ["support_scion_onslaught_duration_+%"]=640, - ["support_scion_onslaught_for_3_seconds_on_hitting_unique_enemy_%_chance"]=641, - ["support_scion_onslaught_on_killing_blow_%_chance"]=642, - ["support_scion_onslaught_on_killing_blow_duration_ms"]=642, - ["support_scion_onslaught_on_unique_hit_duration_ms"]=641, - ["support_slashing_buff_attack_speed_+%_final_to_grant"]=644, - ["support_slashing_buff_base_duration_ms"]=643, + ["support_sacrifice_gain_%_of_sacrificed_life_as_added_chaos_damage"]=642, + ["support_sacrifice_sacrifice_%_of_current_life"]=642, + ["support_scion_onslaught_duration_+%"]=643, + ["support_scion_onslaught_for_3_seconds_on_hitting_unique_enemy_%_chance"]=644, + ["support_scion_onslaught_on_killing_blow_%_chance"]=645, + ["support_scion_onslaught_on_killing_blow_duration_ms"]=645, + ["support_scion_onslaught_on_unique_hit_duration_ms"]=644, + ["support_slashing_buff_attack_speed_+%_final_to_grant"]=647, + ["support_slashing_buff_base_duration_ms"]=646, ["support_slashing_damage_+%_final_from_distance"]=106, - ["support_slower_projectiles_damage_+%_final"]=645, + ["support_slower_projectiles_damage_+%_final"]=648, ["support_slower_projectiles_projectile_speed_+%_final"]=151, - ["support_spell_boost_area_damage_+%_final_per_charge"]=646, - ["support_spell_boost_area_of_effect_+%_final_per_charge"]=646, - ["support_spell_cascade_area_delay_+%"]=647, - ["support_spell_cascade_area_of_effect_+%_final"]=648, - ["support_spell_cascade_damage_+%_final"]=649, - ["support_spell_cascade_number_of_cascades_per_side"]=650, - ["support_spell_cascade_sideways"]=650, - ["support_spell_echo_final_repeat_damage_+%_final"]=651, - ["support_spell_rapid_fire_repeat_use_damage_+%_final"]=708, + ["support_spell_boost_area_damage_+%_final_per_charge"]=649, + ["support_spell_boost_area_of_effect_+%_final_per_charge"]=649, + ["support_spell_cascade_area_delay_+%"]=650, + ["support_spell_cascade_area_of_effect_+%_final"]=651, + ["support_spell_cascade_damage_+%_final"]=652, + ["support_spell_cascade_number_of_cascades_per_side"]=653, + ["support_spell_cascade_sideways"]=653, + ["support_spell_echo_final_repeat_damage_+%_final"]=654, + ["support_spell_rapid_fire_repeat_use_damage_+%_final"]=712, ["support_spell_totem_cast_speed_+%_final"]=146, - ["support_spell_weapon_damage_gain_%_of_one_hand_melee_weapon_damage_as_added_spell_damage"]=652, - ["support_spell_weapon_damage_gain_%_of_one_hand_melee_weapon_damage_as_added_spell_damage_while_wielding_two_different_weapon_types"]=653, - ["support_spellslinger_damage_+%_final"]=654, + ["support_spell_weapon_damage_gain_%_of_one_hand_melee_weapon_damage_as_added_spell_damage"]=655, + ["support_spell_weapon_damage_gain_%_of_one_hand_melee_weapon_damage_as_added_spell_damage_while_wielding_two_different_weapon_types"]=656, + ["support_spellslinger_damage_+%_final"]=657, ["support_spirit_strike_damage_+%_final"]=85, - ["support_spiritual_cry_damage_+%_final"]=655, + ["support_spiritual_cry_damage_+%_final"]=658, ["support_split_projectile_damage_+%_final"]=86, - ["support_storm_barrier_damage_+%_final"]=656, - ["support_storm_barrier_damage_taken_when_hit_+%_final_while_channelling"]=657, - ["support_swift_affliction_skill_effect_and_damaging_ailment_duration_+%_final"]=658, + ["support_storm_barrier_damage_+%_final"]=659, + ["support_storm_barrier_damage_taken_when_hit_+%_final_while_channelling"]=660, + ["support_swift_affliction_skill_effect_and_damaging_ailment_duration_+%_final"]=661, ["support_totem_damage_+%_final"]=20, ["support_trap_and_mine_damage_+%_final"]=107, - ["support_trap_and_mine_damage_mine_throwing_speed_+%_final"]=659, - ["support_trap_and_mine_damage_trap_throwing_speed_+%_final"]=660, + ["support_trap_and_mine_damage_mine_throwing_speed_+%_final"]=662, + ["support_trap_and_mine_damage_trap_throwing_speed_+%_final"]=663, ["support_trap_damage_+%_final"]=118, - ["support_trap_hit_damage_+%_final"]=661, - ["support_trauma_base_duration_ms"]=689, - ["support_trauma_melee_damage_+%_final_per_trauma"]=662, - ["support_trauma_stun_duration_+%_per_trauma"]=663, + ["support_trap_hit_damage_+%_final"]=664, + ["support_trauma_base_duration_ms"]=693, + ["support_trauma_melee_damage_+%_final_per_trauma"]=665, + ["support_trauma_stun_duration_+%_per_trauma"]=666, ["support_trigger_link_damage_+%_final"]=25, - ["support_unbound_ailments_ailment_damage_+%_final"]=664, - ["support_vicious_projectiles_chaos_damage_+%_final"]=666, - ["support_vicious_projectiles_physical_damage_+%_final"]=665, + ["support_trigger_tornados_on_attack_hit_after_moving_X_metres"]=667, + ["support_unbound_ailments_ailment_damage_+%_final"]=668, + ["support_vicious_projectiles_chaos_damage_+%_final"]=670, + ["support_vicious_projectiles_physical_damage_+%_final"]=669, ["support_void_manipulation_chaos_damage_+%_final"]=92, ["support_weapon_elemental_damage_+%_final"]=13, ["support_withered_base_duration_ms"]=172, - ["supported_chaos_skill_gem_level_+"]=667, - ["supported_curse_skill_gem_level_+"]=668, - ["supported_elemental_skill_gem_level_+"]=669, - ["supported_minion_skill_gem_level_+"]=670, - ["supported_physical_skill_gem_level_+"]=671, - ["supported_skill_can_only_use_axe_and_sword"]=672, - ["supported_skill_can_only_use_axe_mace_and_staff"]=709, - ["supported_skill_can_only_use_dagger_and_claw"]=674, - ["supported_skill_can_only_use_mace_and_staff"]=675, - ["supported_skill_can_only_use_wand"]=677, - ["supported_strike_skill_gem_level_+"]=678, + ["supported_chaos_skill_gem_level_+"]=671, + ["supported_curse_skill_gem_level_+"]=672, + ["supported_elemental_skill_gem_level_+"]=673, + ["supported_minion_skill_gem_level_+"]=674, + ["supported_physical_skill_gem_level_+"]=675, + ["supported_skill_can_only_use_axe_and_sword"]=676, + ["supported_skill_can_only_use_axe_mace_and_staff"]=713, + ["supported_skill_can_only_use_dagger_and_claw"]=678, + ["supported_skill_can_only_use_mace_and_staff"]=679, + ["supported_skill_can_only_use_wand"]=681, + ["supported_strike_skill_gem_level_+"]=682, ["throw_traps_in_circle_radius"]=56, - ["tornado_base_damage_interval_ms"]=679, + ["tornado_base_damage_interval_ms"]=683, ["total_number_of_arrows_to_fire"]=44, ["total_number_of_projectiles_to_fire"]=44, ["totem_life_+%"]=203, - ["transfer_hexes_to_X_nearby_enemies_on_kill"]=680, - ["trap_critical_strike_multiplier_+_per_power_charge"]=681, - ["trap_damage_+%"]=682, + ["transfer_hexes_to_X_nearby_enemies_on_kill"]=684, + ["trap_critical_strike_multiplier_+_per_power_charge"]=685, + ["trap_damage_+%"]=686, ["trap_duration_+%"]=68, - ["trap_spread_+%"]=683, - ["trap_throwing_speed_+%"]=684, - ["trap_throwing_speed_+%_per_frenzy_charge"]=685, - ["trap_trigger_radius_+%"]=686, - ["trap_trigger_radius_+%_per_power_charge"]=687, - ["trauma_duration_ms"]=689, - ["trauma_strike_self_damage_per_trauma"]=689, - ["trigger_brand_support_hit_damage_+%_final_vs_branded_enemy"]=690, - ["trigger_on_attack_hit_against_rare_or_unique"]=691, - ["trigger_on_trigger_link_target_hit"]=692, - ["trigger_prismatic_burst_on_hit_%_chance"]=693, + ["trap_spread_+%"]=687, + ["trap_throwing_speed_+%"]=688, + ["trap_throwing_speed_+%_per_frenzy_charge"]=689, + ["trap_trigger_radius_+%"]=690, + ["trap_trigger_radius_+%_per_power_charge"]=691, + ["trauma_duration_ms"]=693, + ["trauma_strike_self_damage_per_trauma"]=693, + ["trigger_brand_support_hit_damage_+%_final_vs_branded_enemy"]=694, + ["trigger_on_attack_hit_against_rare_or_unique"]=695, + ["trigger_on_trigger_link_target_hit"]=696, + ["trigger_prismatic_burst_on_hit_%_chance"]=697, ["trigger_vicious_hex_explosion_when_curse_ends"]=129, - ["triggered_by_brand_support"]=694, - ["triggered_by_divine_cry"]=695, - ["triggered_by_manaforged_arrows_support_%_chance"]=696, - ["triggered_by_spiritual_cry"]=697, - ["triggered_skill_damage_+%"]=698, + ["triggered_by_brand_support"]=698, + ["triggered_by_divine_cry"]=699, + ["triggered_by_manaforged_arrows_support_%_chance"]=700, + ["triggered_by_spiritual_cry"]=701, + ["triggered_skill_damage_+%"]=702, ["triggered_spell_spell_damage_+%"]=21, - ["unleash_support_seal_gain_frequency_+%_while_channelling"]=699, - ["unleash_support_seal_gain_frequency_+%_while_not_channelling"]=700, + ["unleash_support_seal_gain_frequency_+%_while_channelling"]=703, + ["unleash_support_seal_gain_frequency_+%_while_not_channelling"]=704, ["virtual_cast_when_damage_taken_threshold"]=133, - ["virtual_support_anticipation_charge_gain_interval_ms"]=707, - ["virtual_support_scion_onslaught_on_killing_blow_duration_ms"]=642, - ["warcries_do_not_apply_buffs_to_self_or_allies"]=701, - ["warcry_grant_damage_+%_to_exerted_attacks"]=702, - ["warcry_speed_+%"]=703, - ["weapon_elemental_damage_+%"]=704, - ["wither_applies_additional_wither_%"]=705, + ["virtual_support_anticipation_charge_gain_interval_ms"]=711, + ["virtual_support_scion_onslaught_on_killing_blow_duration_ms"]=645, + ["warcries_do_not_apply_buffs_to_self_or_allies"]=705, + ["warcry_grant_damage_+%_to_exerted_attacks"]=706, + ["warcry_speed_+%"]=707, + ["weapon_elemental_damage_+%"]=708, + ["wither_applies_additional_wither_%"]=709, ["withered_on_hit_chance_%"]=160, - ["you_and_enemy_movement_velocity_+%_while_affected_by_ailment_you_inflicted"]=706 + ["you_and_enemy_movement_velocity_+%_while_affected_by_ailment_you_inflicted"]=710 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/minion_skill_stat_descriptions.lua b/src/Data/StatDescriptions/minion_skill_stat_descriptions.lua index 4b0ab3a152..8a48724d0d 100644 --- a/src/Data/StatDescriptions/minion_skill_stat_descriptions.lua +++ b/src/Data/StatDescriptions/minion_skill_stat_descriptions.lua @@ -3294,7 +3294,7 @@ return { [2]="#" } }, - text="Minion's Skills Chain {0:+d} Times" + text="Minions' Skills Chain {0:+d} Times" } }, name="minion_chain_num", @@ -7159,6 +7159,32 @@ return { } }, [256]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Maximum {0} Summoned Spectral Tiger" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Maximum {0} Summoned Spectral Tigers" + } + }, + name="number_of_tigers_allowed", + stats={ + [1]="number_of_tigers_allowed" + } + }, + [257]={ [1]={ [1]={ limit={ @@ -7188,7 +7214,7 @@ return { [1]="parallel_projectile_firing_point_x_dist_+%" } }, - [257]={ + [258]={ [1]={ [1]={ limit={ @@ -7214,7 +7240,7 @@ return { [1]="%_chance_to_gain_frenzy_charge_on_mine_detonated_targeting_an_enemy" } }, - [258]={ + [259]={ [1]={ [1]={ limit={ @@ -7240,7 +7266,7 @@ return { [1]="%_chance_to_gain_frenzy_charge_on_trap_triggered_by_an_enemy" } }, - [259]={ + [260]={ [1]={ [1]={ limit={ @@ -7266,7 +7292,7 @@ return { [1]="%_chance_to_gain_power_charge_on_mine_detonated_targeting_an_enemy" } }, - [260]={ + [261]={ [1]={ [1]={ limit={ @@ -7292,7 +7318,7 @@ return { [1]="%_chance_to_gain_power_charge_on_trap_triggered_by_an_enemy" } }, - [261]={ + [262]={ [1]={ [1]={ limit={ @@ -7309,7 +7335,7 @@ return { [1]="projectile_additional_return_chance_%" } }, - [262]={ + [263]={ [1]={ [1]={ limit={ @@ -7335,7 +7361,7 @@ return { [1]="projectile_base_number_of_targets_to_pierce" } }, - [263]={ + [264]={ [1]={ [1]={ limit={ @@ -7361,7 +7387,7 @@ return { [1]="projectile_chance_to_not_pierce_%" } }, - [264]={ + [265]={ [1]={ [1]={ limit={ @@ -7391,7 +7417,7 @@ return { [1]="projectile_damage_+%_if_pierced_enemy" } }, - [265]={ + [266]={ [1]={ [1]={ limit={ @@ -7421,7 +7447,7 @@ return { [1]="projectile_damage_+%_vs_nearby_enemies" } }, - [266]={ + [267]={ [1]={ [1]={ [1]={ @@ -7455,7 +7481,7 @@ return { [1]="projectiles_pierce_all_targets_in_x_range" } }, - [267]={ + [268]={ [1]={ [1]={ [1]={ @@ -7476,7 +7502,7 @@ return { [1]="recover_%_life_when_stunning_an_enemy_permyriad" } }, - [268]={ + [269]={ [1]={ [1]={ limit={ @@ -7493,7 +7519,7 @@ return { [1]="reduce_enemy_chaos_resistance_%" } }, - [269]={ + [270]={ [1]={ [1]={ limit={ @@ -7523,7 +7549,7 @@ return { [1]="shock_effect_+%_with_critical_strikes" } }, - [270]={ + [271]={ [1]={ [1]={ [1]={ @@ -7561,7 +7587,7 @@ return { [1]="skill_effect_and_damaging_ailment_duration_+%" } }, - [271]={ + [272]={ [1]={ [1]={ limit={ @@ -7578,7 +7604,7 @@ return { [1]="skill_physical_damage_%_to_convert_to_chaos" } }, - [272]={ + [273]={ [1]={ [1]={ limit={ @@ -7600,7 +7626,7 @@ return { [2]="active_skill_display_suppress_physical_to_cold_damage_conversion" } }, - [273]={ + [274]={ [1]={ [1]={ limit={ @@ -7617,7 +7643,7 @@ return { [1]="skill_physical_damage_%_to_convert_to_fire" } }, - [274]={ + [275]={ [1]={ [1]={ limit={ @@ -7647,7 +7673,41 @@ return { [1]="skitterbots_trap_mine_damage_+%_final" } }, - [275]={ + [276]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Buff grants {0}% increased Attack and Cast Speed" + } + }, + name="tiger_speed", + stats={ + [1]="spectral_tiger_grants_attack_and_cast_speed_+%" + } + }, + [277]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Buff grants {0}% increased Critical Strike Chance" + } + }, + name="tiger_crit", + stats={ + [1]="spectral_tiger_grants_critical_strike_chance_+%" + } + }, + [278]={ [1]={ [1]={ limit={ @@ -7669,7 +7729,7 @@ return { [2]="spectral_wolf_grants_attack_maximum_added_physical_damage" } }, - [276]={ + [279]={ [1]={ [1]={ limit={ @@ -7699,7 +7759,7 @@ return { [1]="support_brutality_physical_damage_+%_final" } }, - [277]={ + [280]={ [1]={ [1]={ [1]={ @@ -7737,7 +7797,7 @@ return { [1]="support_chilling_areas_also_grant_cold_damage_taken_per_minute_+%" } }, - [278]={ + [281]={ [1]={ [1]={ [1]={ @@ -7758,7 +7818,7 @@ return { [1]="support_chilling_areas_also_grant_cold_damage_taken_+%_equal_to_slow_amount" } }, - [279]={ + [282]={ [1]={ [1]={ limit={ @@ -7788,7 +7848,7 @@ return { [1]="support_chills_also_grant_cold_damage_taken_per_minute_+%" } }, - [280]={ + [283]={ [1]={ [1]={ limit={ @@ -7805,7 +7865,7 @@ return { [1]="support_chills_also_grant_cold_damage_taken_+%_equal_to_slow_amount" } }, - [281]={ + [284]={ [1]={ [1]={ limit={ @@ -7835,7 +7895,7 @@ return { [1]="support_energy_shield_leech_damage_+%_on_full_energy_shield_final" } }, - [282]={ + [285]={ [1]={ [1]={ limit={ @@ -7865,7 +7925,7 @@ return { [1]="support_energy_shield_leech_damage_+%_while_leeching_energy_shield_final" } }, - [283]={ + [286]={ [1]={ [1]={ limit={ @@ -7895,7 +7955,7 @@ return { [1]="support_executioner_damage_vs_enemies_on_low_life_+%_final" } }, - [284]={ + [287]={ [1]={ [1]={ [1]={ @@ -7916,7 +7976,7 @@ return { [1]="support_executioner_gain_one_rare_monster_mod_on_kill_ms" } }, - [285]={ + [288]={ [1]={ [1]={ limit={ @@ -7933,7 +7993,7 @@ return { [1]="support_executioner_refresh_stolen_mod_on_hitting_rare_or_unique_monster_chance_%" } }, - [286]={ + [289]={ [1]={ [1]={ [1]={ @@ -7971,7 +8031,7 @@ return { [1]="support_faster_ailments_ailment_duration_+%_final" } }, - [287]={ + [290]={ [1]={ [1]={ limit={ @@ -8001,7 +8061,7 @@ return { [1]="support_fortify_ailment_damage_+%_final_from_melee_hits" } }, - [288]={ + [291]={ [1]={ [1]={ limit={ @@ -8031,7 +8091,7 @@ return { [1]="support_fortify_melee_damage_+%_final" } }, - [289]={ + [292]={ [1]={ [1]={ limit={ @@ -8061,7 +8121,7 @@ return { [1]="support_greater_volley_projectile_damage_+%_final" } }, - [290]={ + [293]={ [1]={ [1]={ limit={ @@ -8091,7 +8151,7 @@ return { [1]="support_hypothermia_cold_damage_over_time_+%_final" } }, - [291]={ + [294]={ [1]={ [1]={ limit={ @@ -8121,7 +8181,7 @@ return { [1]="support_more_duration_skill_effect_duration_+%_final" } }, - [292]={ + [295]={ [1]={ [1]={ limit={ @@ -8151,7 +8211,7 @@ return { [1]="support_maim_chance_physical_damage_+%_final" } }, - [293]={ + [296]={ [1]={ [1]={ limit={ @@ -8181,7 +8241,7 @@ return { [1]="support_maimed_enemies_physical_damage_taken_+%" } }, - [294]={ + [297]={ [1]={ [1]={ limit={ @@ -8203,7 +8263,7 @@ return { [2]="global_maximum_added_fire_damage_vs_burning_enemies" } }, - [295]={ + [298]={ [1]={ [1]={ limit={ @@ -8233,7 +8293,7 @@ return { [1]="support_minion_focus_fire_critical_strike_chance_+%_vs_focused_target" } }, - [296]={ + [299]={ [1]={ [1]={ limit={ @@ -8250,7 +8310,7 @@ return { [1]="support_minion_focus_fire_critical_strike_multiplier_+_vs_focused_target" } }, - [297]={ + [300]={ [1]={ [1]={ limit={ @@ -8280,7 +8340,7 @@ return { [1]="support_minion_focus_fire_damage_+%_final_vs_focussed_target" } }, - [298]={ + [301]={ [1]={ [1]={ [1]={ @@ -8301,7 +8361,7 @@ return { [1]="support_minion_instability_minion_base_fire_area_damage_per_minute" } }, - [299]={ + [302]={ [1]={ [1]={ limit={ @@ -8331,7 +8391,7 @@ return { [1]="support_minion_totem_resistance_elemental_damage_+%_final" } }, - [300]={ + [303]={ [1]={ [1]={ limit={ @@ -8348,7 +8408,7 @@ return { [1]="support_minion_use_focussed_target" } }, - [301]={ + [304]={ [1]={ [1]={ limit={ @@ -8378,7 +8438,7 @@ return { [1]="support_momentum_attack_speed_+%_per_stack" } }, - [302]={ + [305]={ [1]={ [1]={ [1]={ @@ -8409,7 +8469,7 @@ return { [3]="support_momentum_max_stacks" } }, - [303]={ + [306]={ [1]={ [1]={ [1]={ @@ -8435,7 +8495,7 @@ return { [2]="support_momentum_stack_while_channelling_ms" } }, - [304]={ + [307]={ [1]={ [1]={ [1]={ @@ -8460,7 +8520,7 @@ return { [1]="support_overpowered_base_duration_ms" } }, - [305]={ + [308]={ [1]={ [1]={ limit={ @@ -8486,7 +8546,7 @@ return { [1]="support_parallel_projectile_number_of_points_per_side" } }, - [306]={ + [309]={ [1]={ [1]={ limit={ @@ -8516,7 +8576,7 @@ return { [1]="support_parallel_projectiles_damage_+%_final" } }, - [307]={ + [310]={ [1]={ [1]={ limit={ @@ -8546,7 +8606,7 @@ return { [1]="support_power_charge_on_crit_damage_+%_final_per_power_charge" } }, - [308]={ + [311]={ [1]={ [1]={ limit={ @@ -8576,7 +8636,7 @@ return { [1]="support_pulverise_area_of_effect_+%_final" } }, - [309]={ + [312]={ [1]={ [1]={ limit={ @@ -8606,7 +8666,7 @@ return { [1]="support_pulverise_attack_speed_+%_final" } }, - [310]={ + [313]={ [1]={ [1]={ limit={ @@ -8636,7 +8696,7 @@ return { [1]="support_pulverise_melee_area_damage_+%_final" } }, - [311]={ + [314]={ [1]={ [1]={ limit={ @@ -8666,7 +8726,7 @@ return { [1]="support_pure_shock_damage_+%_final" } }, - [312]={ + [315]={ [1]={ [1]={ limit={ @@ -8696,7 +8756,7 @@ return { [1]="support_pure_shock_shock_as_though_damage_+%_final" } }, - [313]={ + [316]={ [1]={ [1]={ [1]={ @@ -8747,7 +8807,7 @@ return { [2]="support_recent_ignites_damage_per_recent_ignite_+%_final_minimum" } }, - [314]={ + [317]={ [1]={ [1]={ [1]={ @@ -8794,7 +8854,7 @@ return { [2]="support_recent_ignites_ignite_damage_per_recent_ignite_+%_final_maximum" } }, - [315]={ + [318]={ [1]={ [1]={ limit={ @@ -8811,7 +8871,7 @@ return { [1]="support_reduce_enemy_block_and_spell_block_%" } }, - [316]={ + [319]={ [1]={ [1]={ limit={ @@ -8841,7 +8901,7 @@ return { [1]="support_reduced_duration_skill_effect_duration_+%_final" } }, - [317]={ + [320]={ [1]={ [1]={ [1]={ @@ -8862,7 +8922,7 @@ return { [1]="critical_strikes_that_inflict_bleeding_also_rupture" } }, - [318]={ + [321]={ [1]={ [1]={ limit={ @@ -8888,7 +8948,7 @@ return { [1]="support_rupture_bleeding_damage_taken_+%_final" } }, - [319]={ + [322]={ [1]={ [1]={ limit={ @@ -8914,7 +8974,7 @@ return { [1]="support_rupture_bleeding_time_passed_+%_final" } }, - [320]={ + [323]={ [1]={ [1]={ [1]={ @@ -8944,7 +9004,7 @@ return { [2]="support_scion_onslaught_on_unique_hit_duration_ms" } }, - [321]={ + [324]={ [1]={ [1]={ [1]={ @@ -8979,7 +9039,7 @@ return { [3]="virtual_support_scion_onslaught_on_killing_blow_duration_ms" } }, - [322]={ + [325]={ [1]={ [1]={ limit={ @@ -8996,7 +9056,7 @@ return { [1]="support_slashing_damage_+%_final_from_distance" } }, - [323]={ + [326]={ [1]={ [1]={ limit={ @@ -9026,7 +9086,7 @@ return { [1]="support_spell_echo_final_repeat_damage_+%_final" } }, - [324]={ + [327]={ [1]={ [1]={ [1]={ @@ -9064,7 +9124,7 @@ return { [1]="support_unbound_ailments_ailment_damage_+%_final" } }, - [325]={ + [328]={ [1]={ [1]={ [1]={ @@ -9098,7 +9158,7 @@ return { [1]="support_withered_base_duration_ms" } }, - [326]={ + [329]={ [1]={ [1]={ limit={ @@ -9115,7 +9175,7 @@ return { [1]="trap_critical_strike_multiplier_+_per_power_charge" } }, - [327]={ + [330]={ [1]={ [1]={ limit={ @@ -9145,7 +9205,7 @@ return { [1]="trap_throwing_speed_+%_per_frenzy_charge" } }, - [328]={ + [331]={ [1]={ [1]={ [1]={ @@ -9179,7 +9239,7 @@ return { [1]="void_spawn_withered_base_duration_ms" } }, - [329]={ + [332]={ [1]={ [1]={ [1]={ @@ -9213,7 +9273,7 @@ return { [1]="void_spawn_withered_on_hit_chance_%" } }, - [330]={ + [333]={ [1]={ [1]={ [1]={ @@ -9247,7 +9307,7 @@ return { [1]="withered_on_hit_chance_%" } }, - [331]={ + [334]={ [1]={ [1]={ [1]={ @@ -9281,13 +9341,13 @@ return { [1]="withered_on_hit_for_2_seconds_%_chance" } }, - ["%_chance_to_gain_frenzy_charge_on_mine_detonated_targeting_an_enemy"]=257, - ["%_chance_to_gain_frenzy_charge_on_trap_triggered_by_an_enemy"]=258, - ["%_chance_to_gain_power_charge_on_mine_detonated_targeting_an_enemy"]=259, - ["%_chance_to_gain_power_charge_on_trap_triggered_by_an_enemy"]=260, + ["%_chance_to_gain_frenzy_charge_on_mine_detonated_targeting_an_enemy"]=258, + ["%_chance_to_gain_frenzy_charge_on_trap_triggered_by_an_enemy"]=259, + ["%_chance_to_gain_power_charge_on_mine_detonated_targeting_an_enemy"]=260, + ["%_chance_to_gain_power_charge_on_trap_triggered_by_an_enemy"]=261, ["accuracy_rating"]=9, ["accuracy_rating_+%"]=10, - ["active_skill_display_suppress_physical_to_cold_damage_conversion"]=272, + ["active_skill_display_suppress_physical_to_cold_damage_conversion"]=273, ["active_skill_elemental_damage_+%_final"]=51, ["active_skill_minion_added_damage_+%_final"]=174, ["active_skill_minion_attack_speed_+%_final"]=234, @@ -9364,7 +9424,7 @@ return { ["critical_strike_chance_+%"]=11, ["critical_strike_chance_+%_per_righteous_charge"]=193, ["critical_strike_chance_+%_vs_blinded_enemies"]=194, - ["critical_strikes_that_inflict_bleeding_also_rupture"]=317, + ["critical_strikes_that_inflict_bleeding_also_rupture"]=320, ["cruelty_duration_+%"]=123, ["cruelty_effect_+%"]=195, ["crush_for_2_seconds_on_hit_%_chance"]=196, @@ -9405,11 +9465,11 @@ return { ["global_hit_causes_monster_flee_%"]=25, ["global_maximum_added_chaos_damage"]=59, ["global_maximum_added_cold_damage"]=57, - ["global_maximum_added_fire_damage_vs_burning_enemies"]=294, + ["global_maximum_added_fire_damage_vs_burning_enemies"]=297, ["global_maximum_added_lightning_damage"]=58, ["global_minimum_added_chaos_damage"]=59, ["global_minimum_added_cold_damage"]=57, - ["global_minimum_added_fire_damage_vs_burning_enemies"]=294, + ["global_minimum_added_fire_damage_vs_burning_enemies"]=297, ["global_minimum_added_lightning_damage"]=58, ["global_poison_on_hit"]=163, ["guardian_relic_explode_on_death_for_%_life_as_element_damage"]=218, @@ -9479,41 +9539,44 @@ return { ["number_of_raging_spirits_allowed"]=93, ["number_of_skeletons_allowed"]=100, ["number_of_spectres_allowed"]=92, + ["number_of_tigers_allowed"]=256, ["number_of_zombies_allowed"]=91, - ["parallel_projectile_firing_point_x_dist_+%"]=256, + ["parallel_projectile_firing_point_x_dist_+%"]=257, parent="skill_stat_descriptions", ["physical_damage_%_to_add_as_chaos"]=63, ["physical_damage_%_to_add_as_fire"]=61, ["physical_damage_%_to_add_as_lightning"]=64, ["physical_damage_+%"]=49, - ["projectile_additional_return_chance_%"]=261, - ["projectile_base_number_of_targets_to_pierce"]=262, - ["projectile_chance_to_not_pierce_%"]=263, + ["projectile_additional_return_chance_%"]=262, + ["projectile_base_number_of_targets_to_pierce"]=263, + ["projectile_chance_to_not_pierce_%"]=264, ["projectile_damage_+%"]=145, - ["projectile_damage_+%_if_pierced_enemy"]=264, - ["projectile_damage_+%_vs_nearby_enemies"]=265, + ["projectile_damage_+%_if_pierced_enemy"]=265, + ["projectile_damage_+%_vs_nearby_enemies"]=266, ["projectile_number_to_split"]=115, ["projectile_return_%_chance"]=117, - ["projectiles_pierce_all_targets_in_x_range"]=266, + ["projectiles_pierce_all_targets_in_x_range"]=267, ["projectiles_return"]=117, - ["recover_%_life_when_stunning_an_enemy_permyriad"]=267, - ["reduce_enemy_chaos_resistance_%"]=268, + ["recover_%_life_when_stunning_an_enemy_permyriad"]=268, + ["reduce_enemy_chaos_resistance_%"]=269, ["reduce_enemy_elemental_resistance_%"]=112, ["returning_projectiles_always_pierce"]=118, ["shock_duration_+%"]=38, ["shock_effect_+%"]=34, - ["shock_effect_+%_with_critical_strikes"]=269, + ["shock_effect_+%_with_critical_strikes"]=270, ["skeletons_are_vaal"]=102, ["skill_cold_damage_%_to_convert_to_fire"]=62, - ["skill_effect_and_damaging_ailment_duration_+%"]=270, + ["skill_effect_and_damaging_ailment_duration_+%"]=271, ["skill_effect_duration_+%"]=139, - ["skill_physical_damage_%_to_convert_to_chaos"]=271, - ["skill_physical_damage_%_to_convert_to_cold"]=272, - ["skill_physical_damage_%_to_convert_to_fire"]=273, + ["skill_physical_damage_%_to_convert_to_chaos"]=272, + ["skill_physical_damage_%_to_convert_to_cold"]=273, + ["skill_physical_damage_%_to_convert_to_fire"]=274, ["skill_physical_damage_%_to_convert_to_lightning"]=65, - ["skitterbots_trap_mine_damage_+%_final"]=274, - ["spectral_wolf_grants_attack_maximum_added_physical_damage"]=275, - ["spectral_wolf_grants_attack_minimum_added_physical_damage"]=275, + ["skitterbots_trap_mine_damage_+%_final"]=275, + ["spectral_tiger_grants_attack_and_cast_speed_+%"]=276, + ["spectral_tiger_grants_critical_strike_chance_+%"]=277, + ["spectral_wolf_grants_attack_maximum_added_physical_damage"]=278, + ["spectral_wolf_grants_attack_minimum_added_physical_damage"]=278, ["spell_damage_+%"]=77, ["summon_fire_skitterbot"]=211, ["support_area_concentrate_area_damage_+%_final"]=54, @@ -9521,14 +9584,14 @@ return { ["support_better_ailments_ailment_damage_+%_final"]=78, ["support_better_ailments_hit_damage_+%_final"]=79, ["support_bloodlust_melee_physical_damage_+%_final_vs_bleeding_enemies"]=149, - ["support_brutality_physical_damage_+%_final"]=276, + ["support_brutality_physical_damage_+%_final"]=279, ["support_chain_hit_damage_+%_final"]=134, ["support_chance_to_bleed_bleeding_damage_+%_final"]=42, ["support_chance_to_ignite_fire_damage_+%_final"]=80, - ["support_chilling_areas_also_grant_cold_damage_taken_+%_equal_to_slow_amount"]=278, - ["support_chilling_areas_also_grant_cold_damage_taken_per_minute_+%"]=277, - ["support_chills_also_grant_cold_damage_taken_+%_equal_to_slow_amount"]=280, - ["support_chills_also_grant_cold_damage_taken_per_minute_+%"]=279, + ["support_chilling_areas_also_grant_cold_damage_taken_+%_equal_to_slow_amount"]=281, + ["support_chilling_areas_also_grant_cold_damage_taken_per_minute_+%"]=280, + ["support_chills_also_grant_cold_damage_taken_+%_equal_to_slow_amount"]=283, + ["support_chills_also_grant_cold_damage_taken_per_minute_+%"]=282, ["support_clustertrap_damage_+%_final"]=158, ["support_concentrated_effect_skill_area_of_effect_+%_final"]=27, ["support_controlled_destruction_critical_strike_chance_+%_final"]=12, @@ -9541,101 +9604,101 @@ return { ["support_echo_damage_+%_final"]=131, ["support_efficacy_damage_over_time_+%_final"]=84, ["support_efficacy_spell_damage_+%_final"]=76, - ["support_energy_shield_leech_damage_+%_on_full_energy_shield_final"]=281, - ["support_energy_shield_leech_damage_+%_while_leeching_energy_shield_final"]=282, - ["support_executioner_damage_vs_enemies_on_low_life_+%_final"]=283, - ["support_executioner_gain_one_rare_monster_mod_on_kill_ms"]=284, - ["support_executioner_refresh_stolen_mod_on_hitting_rare_or_unique_monster_chance_%"]=285, - ["support_faster_ailments_ailment_duration_+%_final"]=286, + ["support_energy_shield_leech_damage_+%_on_full_energy_shield_final"]=284, + ["support_energy_shield_leech_damage_+%_while_leeching_energy_shield_final"]=285, + ["support_executioner_damage_vs_enemies_on_low_life_+%_final"]=286, + ["support_executioner_gain_one_rare_monster_mod_on_kill_ms"]=287, + ["support_executioner_refresh_stolen_mod_on_hitting_rare_or_unique_monster_chance_%"]=288, + ["support_faster_ailments_ailment_duration_+%_final"]=289, ["support_fork_projectile_damage_+%_final"]=136, - ["support_fortify_ailment_damage_+%_final_from_melee_hits"]=287, - ["support_fortify_melee_damage_+%_final"]=288, + ["support_fortify_ailment_damage_+%_final_from_melee_hits"]=290, + ["support_fortify_melee_damage_+%_final"]=291, ["support_gem_elemental_damage_+%_final"]=161, ["support_gem_mine_damage_+%_final"]=128, - ["support_greater_volley_projectile_damage_+%_final"]=289, - ["support_hypothermia_cold_damage_over_time_+%_final"]=290, + ["support_greater_volley_projectile_damage_+%_final"]=292, + ["support_hypothermia_cold_damage_over_time_+%_final"]=293, ["support_hypothermia_damage_+%_vs_chilled_enemies_final"]=154, ["support_ignite_prolif_ignite_damage_+%_final"]=82, ["support_ignite_proliferation_radius"]=40, ["support_lesser_multiple_projectile_damage_+%_final"]=53, - ["support_maim_chance_physical_damage_+%_final"]=292, - ["support_maimed_enemies_physical_damage_taken_+%"]=293, + ["support_maim_chance_physical_damage_+%_final"]=295, + ["support_maimed_enemies_physical_damage_taken_+%"]=296, ["support_melee_physical_damage_+%_final"]=43, ["support_melee_physical_damage_poison_and_bleeding_damage_+%_final_from_melee_hits"]=44, ["support_minefield_mine_damage_+%_final"]=159, ["support_minion_damage_+%_final"]=74, - ["support_minion_focus_fire_critical_strike_chance_+%_vs_focused_target"]=295, - ["support_minion_focus_fire_critical_strike_multiplier_+_vs_focused_target"]=296, - ["support_minion_focus_fire_damage_+%_final_vs_focussed_target"]=297, - ["support_minion_instability_minion_base_fire_area_damage_per_minute"]=298, - ["support_minion_totem_resistance_elemental_damage_+%_final"]=299, - ["support_minion_use_focussed_target"]=300, - ["support_momentum_attack_speed_+%_per_stack"]=301, - ["support_momentum_base_buff_duration_ms"]=302, - ["support_momentum_buff_duration_ms"]=302, - ["support_momentum_max_stacks"]=302, - ["support_momentum_stack_while_channelling_base_ms"]=303, - ["support_momentum_stack_while_channelling_ms"]=303, - ["support_more_duration_skill_effect_duration_+%_final"]=291, + ["support_minion_focus_fire_critical_strike_chance_+%_vs_focused_target"]=298, + ["support_minion_focus_fire_critical_strike_multiplier_+_vs_focused_target"]=299, + ["support_minion_focus_fire_damage_+%_final_vs_focussed_target"]=300, + ["support_minion_instability_minion_base_fire_area_damage_per_minute"]=301, + ["support_minion_totem_resistance_elemental_damage_+%_final"]=302, + ["support_minion_use_focussed_target"]=303, + ["support_momentum_attack_speed_+%_per_stack"]=304, + ["support_momentum_base_buff_duration_ms"]=305, + ["support_momentum_buff_duration_ms"]=305, + ["support_momentum_max_stacks"]=305, + ["support_momentum_stack_while_channelling_base_ms"]=306, + ["support_momentum_stack_while_channelling_ms"]=306, + ["support_more_duration_skill_effect_duration_+%_final"]=294, ["support_multicast_cast_speed_+%_final"]=7, ["support_multiple_attack_damage_+%_final"]=126, ["support_multiple_attacks_melee_attack_speed_+%_final"]=125, ["support_multiple_projectile_damage_+%_final"]=52, ["support_multithrow_damage_+%_final"]=132, - ["support_overpowered_base_duration_ms"]=304, - ["support_parallel_projectile_number_of_points_per_side"]=305, - ["support_parallel_projectiles_damage_+%_final"]=306, + ["support_overpowered_base_duration_ms"]=307, + ["support_parallel_projectile_number_of_points_per_side"]=308, + ["support_parallel_projectiles_damage_+%_final"]=309, ["support_phys_proj_attack_damage_bleeing_and_poison_damage_+%_final_from_projectile_hits"]=142, ["support_poison_poison_damage_+%_final"]=87, - ["support_power_charge_on_crit_damage_+%_final_per_power_charge"]=307, + ["support_power_charge_on_crit_damage_+%_final_per_power_charge"]=310, ["support_projectile_attack_physical_damage_+%_final"]=143, ["support_projectile_attack_speed_+%_final"]=144, - ["support_pulverise_area_of_effect_+%_final"]=308, - ["support_pulverise_attack_speed_+%_final"]=309, - ["support_pulverise_melee_area_damage_+%_final"]=310, - ["support_pure_shock_damage_+%_final"]=311, - ["support_pure_shock_shock_as_though_damage_+%_final"]=312, + ["support_pulverise_area_of_effect_+%_final"]=311, + ["support_pulverise_attack_speed_+%_final"]=312, + ["support_pulverise_melee_area_damage_+%_final"]=313, + ["support_pure_shock_damage_+%_final"]=314, + ["support_pure_shock_shock_as_though_damage_+%_final"]=315, ["support_rapid_decay_damage_over_time_+%_final"]=83, - ["support_recent_ignites_damage_per_recent_ignite_+%_final"]=313, - ["support_recent_ignites_damage_per_recent_ignite_+%_final_minimum"]=313, - ["support_recent_ignites_ignite_damage_per_recent_ignite_+%_final"]=314, - ["support_recent_ignites_ignite_damage_per_recent_ignite_+%_final_maximum"]=314, - ["support_reduce_enemy_block_and_spell_block_%"]=315, - ["support_reduced_duration_skill_effect_duration_+%_final"]=316, + ["support_recent_ignites_damage_per_recent_ignite_+%_final"]=316, + ["support_recent_ignites_damage_per_recent_ignite_+%_final_minimum"]=316, + ["support_recent_ignites_ignite_damage_per_recent_ignite_+%_final"]=317, + ["support_recent_ignites_ignite_damage_per_recent_ignite_+%_final_maximum"]=317, + ["support_reduce_enemy_block_and_spell_block_%"]=318, + ["support_reduced_duration_skill_effect_duration_+%_final"]=319, ["support_remote_mine_2_damage_+%_final"]=129, ["support_return_returning_projectiles_damage_+%_final"]=119, - ["support_rupture_bleeding_damage_taken_+%_final"]=318, - ["support_rupture_bleeding_time_passed_+%_final"]=319, + ["support_rupture_bleeding_damage_taken_+%_final"]=321, + ["support_rupture_bleeding_time_passed_+%_final"]=322, ["support_ruthless_big_hit_damage_+%_final"]=170, ["support_ruthless_big_hit_max_count"]=169, ["support_ruthless_big_hit_stun_base_duration_override_ms"]=172, ["support_ruthless_blow_ailment_damage_from_melee_hits_+%_final"]=171, - ["support_scion_onslaught_for_3_seconds_on_hitting_unique_enemy_%_chance"]=320, - ["support_scion_onslaught_on_killing_blow_%_chance"]=321, - ["support_scion_onslaught_on_killing_blow_duration_ms"]=321, - ["support_scion_onslaught_on_unique_hit_duration_ms"]=320, - ["support_slashing_damage_+%_final_from_distance"]=322, - ["support_spell_echo_final_repeat_damage_+%_final"]=323, + ["support_scion_onslaught_for_3_seconds_on_hitting_unique_enemy_%_chance"]=323, + ["support_scion_onslaught_on_killing_blow_%_chance"]=324, + ["support_scion_onslaught_on_killing_blow_duration_ms"]=324, + ["support_scion_onslaught_on_unique_hit_duration_ms"]=323, + ["support_slashing_damage_+%_final_from_distance"]=325, + ["support_spell_echo_final_repeat_damage_+%_final"]=326, ["support_split_projectile_damage_+%_final"]=135, ["support_totem_damage_+%_final"]=130, ["support_trap_and_mine_damage_+%_final"]=157, ["support_trigger_link_damage_+%_final"]=45, - ["support_unbound_ailments_ailment_damage_+%_final"]=324, + ["support_unbound_ailments_ailment_damage_+%_final"]=327, ["support_void_manipulation_chaos_damage_+%_final"]=160, - ["support_withered_base_duration_ms"]=325, + ["support_withered_base_duration_ms"]=328, ["throw_traps_in_circle_radius"]=5, - ["trap_critical_strike_multiplier_+_per_power_charge"]=326, + ["trap_critical_strike_multiplier_+_per_power_charge"]=329, ["trap_throwing_speed_+%"]=155, - ["trap_throwing_speed_+%_per_frenzy_charge"]=327, + ["trap_throwing_speed_+%_per_frenzy_charge"]=330, ["virtual_chance_to_blind_on_hit_%"]=108, ["virtual_number_of_forks_for_projectiles_final"]=116, ["virtual_number_of_melee_skeletons_to_summon"]=102, ["virtual_number_of_spider_minions_allowed"]=101, ["virtual_number_of_wolves_allowed"]=98, - ["virtual_support_scion_onslaught_on_killing_blow_duration_ms"]=321, - ["void_spawn_withered_base_duration_ms"]=328, - ["void_spawn_withered_on_hit_chance_%"]=329, + ["virtual_support_scion_onslaught_on_killing_blow_duration_ms"]=324, + ["void_spawn_withered_base_duration_ms"]=331, + ["void_spawn_withered_on_hit_chance_%"]=332, ["weapon_elemental_damage_+%"]=72, - ["withered_on_hit_chance_%"]=330, - ["withered_on_hit_for_2_seconds_%_chance"]=331 + ["withered_on_hit_chance_%"]=333, + ["withered_on_hit_for_2_seconds_%_chance"]=334 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/secondary_debuff_skill_stat_descriptions.lua b/src/Data/StatDescriptions/secondary_debuff_skill_stat_descriptions.lua index 51c9387442..d60107e14f 100644 --- a/src/Data/StatDescriptions/secondary_debuff_skill_stat_descriptions.lua +++ b/src/Data/StatDescriptions/secondary_debuff_skill_stat_descriptions.lua @@ -23,6 +23,28 @@ return { [1]="secondary_buff_effect_duration" } }, + [2]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp", + v=1 + }, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Base Debuff Duration is {0} seconds" + } + }, + name="base_secondary_duration_identifier", + stats={ + [1]="base_secondary_skill_effect_duration" + } + }, + ["base_secondary_skill_effect_duration"]=2, parent="buff_skill_stat_descriptions", ["secondary_buff_effect_duration"]=1 } \ 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 ee4d714b53..a3bb858778 100644 --- a/src/Data/StatDescriptions/skill_stat_descriptions.lua +++ b/src/Data/StatDescriptions/skill_stat_descriptions.lua @@ -1056,6 +1056,23 @@ return { } }, [30]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Damage from this Skill cannot be taken from Shells" + } + }, + name="damage_cannot_break_kinetic_shells", + stats={ + [1]="damage_cannot_break_kinetic_shells" + } + }, + [31]={ [1]={ [1]={ [1]={ @@ -1076,7 +1093,7 @@ return { [1]="offering_skill_effect_duration_per_corpse" } }, - [31]={ + [32]={ [1]={ [1]={ limit={ @@ -1098,7 +1115,7 @@ return { [2]="spell_maximum_base_cold_damage_per_removable_frenzy_charge" } }, - [32]={ + [33]={ [1]={ [1]={ limit={ @@ -1120,7 +1137,7 @@ return { [2]="spell_maximum_base_cold_damage_+_per_10_intelligence" } }, - [33]={ + [34]={ [1]={ [1]={ limit={ @@ -1137,7 +1154,7 @@ return { [1]="corpse_explosion_monster_life_%" } }, - [34]={ + [35]={ [1]={ [1]={ limit={ @@ -1154,7 +1171,7 @@ return { [1]="corpse_explosion_monster_life_%_chaos" } }, - [35]={ + [36]={ [1]={ [1]={ limit={ @@ -1171,7 +1188,7 @@ return { [1]="corpse_explosion_monster_life_%_lightning" } }, - [36]={ + [37]={ [1]={ [1]={ [1]={ @@ -1192,7 +1209,7 @@ return { [1]="corpse_explosion_monster_life_permillage_fire" } }, - [37]={ + [38]={ [1]={ [1]={ limit={ @@ -1209,7 +1226,7 @@ return { [1]="skill_minion_explosion_life_%" } }, - [38]={ + [39]={ [1]={ [1]={ limit={ @@ -1226,7 +1243,7 @@ return { [1]="spell_damage_modifiers_apply_to_skill_dot" } }, - [39]={ + [40]={ [1]={ [1]={ limit={ @@ -1243,7 +1260,7 @@ return { [1]="projectile_damage_modifiers_apply_to_skill_dot" } }, - [40]={ + [41]={ [1]={ [1]={ limit={ @@ -1260,7 +1277,7 @@ return { [1]="light_radius_increases_apply_to_area_of_effect" } }, - [41]={ + [42]={ [1]={ [1]={ limit={ @@ -1277,7 +1294,7 @@ return { [1]="modifiers_to_skill_effect_duration_also_affect_soul_prevention_duration" } }, - [42]={ + [43]={ [1]={ [1]={ limit={ @@ -1294,7 +1311,7 @@ return { [1]="modifiers_to_totem_duration_also_affect_soul_prevention_duration" } }, - [43]={ + [44]={ [1]={ [1]={ limit={ @@ -1311,7 +1328,7 @@ return { [1]="modifiers_to_buff_effect_duration_also_affect_soul_prevention_duration" } }, - [44]={ + [45]={ [1]={ [1]={ limit={ @@ -1346,7 +1363,7 @@ return { [2]="number_of_mines_to_place" } }, - [45]={ + [46]={ [1]={ [1]={ limit={ @@ -1381,7 +1398,7 @@ return { [2]="number_of_traps_to_throw" } }, - [46]={ + [47]={ [1]={ [1]={ limit={ @@ -1398,7 +1415,7 @@ return { [1]="throw_traps_in_circle_radius" } }, - [47]={ + [48]={ [1]={ [1]={ limit={ @@ -1577,7 +1594,7 @@ return { [4]="number_of_totems_to_summon" } }, - [48]={ + [49]={ [1]={ [1]={ limit={ @@ -1607,7 +1624,7 @@ return { [1]="earthquake_aftershock_hit_damage_+%_final_from_skill_effect_duration" } }, - [49]={ + [50]={ [1]={ [1]={ limit={ @@ -1637,7 +1654,7 @@ return { [1]="trap_trigger_radius_+%" } }, - [50]={ + [51]={ [1]={ [1]={ limit={ @@ -1667,7 +1684,7 @@ return { [1]="active_skill_ailment_damage_+%_final_from_skill_effect_duration" } }, - [51]={ + [52]={ [1]={ [1]={ limit={ @@ -1697,7 +1714,7 @@ return { [1]="earthquake_aftershock_ailment_damage_+%_final_from_skill_effect_duration" } }, - [52]={ + [53]={ [1]={ [1]={ limit={ @@ -1727,7 +1744,7 @@ return { [1]="mine_detonation_radius_+%" } }, - [53]={ + [54]={ [1]={ [1]={ limit={ @@ -1744,7 +1761,7 @@ return { [1]="display_disable_melee_weapons" } }, - [54]={ + [55]={ [1]={ [1]={ limit={ @@ -1774,7 +1791,7 @@ return { [1]="earthquake_aftershock_area_of_effect_+%_final_from_skill_effect_duration" } }, - [55]={ + [56]={ [1]={ [1]={ limit={ @@ -1800,7 +1817,7 @@ return { [1]="spell_repeat_count" } }, - [56]={ + [57]={ [1]={ [1]={ limit={ @@ -1817,7 +1834,7 @@ return { [1]="damage_infusion_%" } }, - [57]={ + [58]={ [1]={ [1]={ limit={ @@ -1843,7 +1860,7 @@ return { [1]="display_fires_x_times" } }, - [58]={ + [59]={ [1]={ [1]={ limit={ @@ -3120,7 +3137,7 @@ return { [10]="skill_display_single_base_projectile" } }, - [59]={ + [60]={ [1]={ [1]={ limit={ @@ -3341,7 +3358,7 @@ return { [4]="quality_display_eye_of_winter_is_gem" } }, - [60]={ + [61]={ [1]={ [1]={ limit={ @@ -3371,7 +3388,7 @@ return { [1]="attack_speed_+%" } }, - [61]={ + [62]={ [1]={ [1]={ limit={ @@ -3401,7 +3418,7 @@ return { [1]="attack_speed_+%_granted_from_skill" } }, - [62]={ + [63]={ [1]={ [1]={ [1]={ @@ -3439,7 +3456,7 @@ return { [1]="attack_speed_+%_when_on_low_life" } }, - [63]={ + [64]={ [1]={ [1]={ limit={ @@ -3469,7 +3486,7 @@ return { [1]="melee_ancestor_totem_grant_owner_attack_speed_+%_final" } }, - [64]={ + [65]={ [1]={ [1]={ limit={ @@ -3499,7 +3516,7 @@ return { [1]="slam_ancestor_totem_grant_owner_melee_damage_+%_final" } }, - [65]={ + [66]={ [1]={ [1]={ limit={ @@ -3529,7 +3546,7 @@ return { [1]="ancestor_totem_grants_owner_area_of_effect_+%_with_melee_skills" } }, - [66]={ + [67]={ [1]={ [1]={ limit={ @@ -3546,7 +3563,7 @@ return { [1]="slash_ancestor_totem_grant_owner_physical_damage_added_as_fire_+%" } }, - [67]={ + [68]={ [1]={ [1]={ limit={ @@ -3576,7 +3593,7 @@ return { [1]="melee_ancestor_totem_grant_owner_attack_speed_+%" } }, - [68]={ + [69]={ [1]={ [1]={ limit={ @@ -3606,7 +3623,7 @@ return { [1]="slam_ancestor_totem_grant_owner_melee_damage_+%" } }, - [69]={ + [70]={ [1]={ [1]={ [1]={ @@ -3644,7 +3661,7 @@ return { [1]="cast_speed_+%_when_on_low_life" } }, - [70]={ + [71]={ [1]={ [1]={ limit={ @@ -3674,7 +3691,7 @@ return { [1]="base_cast_speed_+%" } }, - [71]={ + [72]={ [1]={ [1]={ limit={ @@ -3704,7 +3721,7 @@ return { [1]="support_multicast_cast_speed_+%_final" } }, - [72]={ + [73]={ [1]={ [1]={ [1]={ @@ -3729,7 +3746,7 @@ return { [1]="life_leech_from_any_damage_permyriad" } }, - [73]={ + [74]={ [1]={ [1]={ [1]={ @@ -3754,7 +3771,7 @@ return { [1]="life_leech_from_physical_attack_damage_permyriad" } }, - [74]={ + [75]={ [1]={ [1]={ [1]={ @@ -3779,7 +3796,7 @@ return { [1]="energy_shield_leech_from_any_damage_permyriad" } }, - [75]={ + [76]={ [1]={ [1]={ [1]={ @@ -3813,7 +3830,7 @@ return { [1]="global_chance_to_knockback_%" } }, - [76]={ + [77]={ [1]={ [1]={ limit={ @@ -3843,7 +3860,7 @@ return { [1]="knockback_distance_+%" } }, - [77]={ + [78]={ [1]={ [1]={ [1]={ @@ -3881,7 +3898,7 @@ return { [1]="base_stun_threshold_reduction_+%" } }, - [78]={ + [79]={ [1]={ [1]={ [1]={ @@ -3915,7 +3932,7 @@ return { [1]="active_skill_base_radius_+" } }, - [79]={ + [80]={ [1]={ [1]={ [1]={ @@ -3949,7 +3966,7 @@ return { [1]="active_skill_ground_consecration_radius_+" } }, - [80]={ + [81]={ [1]={ [1]={ limit={ @@ -3979,7 +3996,7 @@ return { [1]="base_skill_area_of_effect_+%" } }, - [81]={ + [82]={ [1]={ [1]={ limit={ @@ -4009,7 +4026,7 @@ return { [1]="cyclone_area_of_effect_+%_per_additional_melee_range" } }, - [82]={ + [83]={ [1]={ [1]={ limit={ @@ -4039,7 +4056,7 @@ return { [1]="virtual_cyclone_skill_area_of_effect_+%_from_melee_range" } }, - [83]={ + [84]={ [1]={ [1]={ limit={ @@ -4069,7 +4086,7 @@ return { [1]="area_of_effect_+%_while_dead" } }, - [84]={ + [85]={ [1]={ [1]={ limit={ @@ -4099,7 +4116,7 @@ return { [1]="active_skill_area_of_effect_+%_final" } }, - [85]={ + [86]={ [1]={ [1]={ limit={ @@ -4129,7 +4146,7 @@ return { [1]="support_concentrated_effect_skill_area_of_effect_+%_final" } }, - [86]={ + [87]={ [1]={ [1]={ limit={ @@ -4159,7 +4176,7 @@ return { [1]="base_aura_area_of_effect_+%" } }, - [87]={ + [88]={ [1]={ [1]={ limit={ @@ -4189,7 +4206,7 @@ return { [1]="aura_effect_+%" } }, - [88]={ + [89]={ [1]={ [1]={ limit={ @@ -4219,7 +4236,7 @@ return { [1]="base_attack_speed_+%_per_frenzy_charge" } }, - [89]={ + [90]={ [1]={ [1]={ limit={ @@ -4249,7 +4266,7 @@ return { [1]="curse_effect_duration" } }, - [90]={ + [91]={ [1]={ [1]={ [1]={ @@ -4270,7 +4287,7 @@ return { [1]="buff_effect_duration" } }, - [91]={ + [92]={ [1]={ [1]={ limit={ @@ -4300,7 +4317,7 @@ return { [1]="secondary_buff_effect_duration" } }, - [92]={ + [93]={ [1]={ [1]={ [1]={ @@ -4321,7 +4338,7 @@ return { [1]="skill_effect_duration" } }, - [93]={ + [94]={ [1]={ [1]={ limit={ @@ -4338,7 +4355,7 @@ return { [1]="tornado_maximum_number_of_hits" } }, - [94]={ + [95]={ [1]={ [1]={ [1]={ @@ -4359,7 +4376,7 @@ return { [1]="secondary_skill_effect_duration" } }, - [95]={ + [96]={ [1]={ [1]={ [1]={ @@ -4380,7 +4397,7 @@ return { [1]="projectile_ground_effect_duration" } }, - [96]={ + [97]={ [1]={ [1]={ [1]={ @@ -4405,7 +4422,7 @@ return { [1]="bleeding_skill_effect_duration" } }, - [97]={ + [98]={ [1]={ [1]={ [1]={ @@ -4430,7 +4447,7 @@ return { [1]="poison_skill_effect_duration" } }, - [98]={ + [99]={ [1]={ [1]={ [1]={ @@ -4451,7 +4468,7 @@ return { [1]="minion_duration" } }, - [99]={ + [100]={ [1]={ [1]={ [1]={ @@ -4472,7 +4489,7 @@ return { [1]="secondary_minion_duration" } }, - [100]={ + [101]={ [1]={ [1]={ [1]={ @@ -4493,7 +4510,7 @@ return { [1]="spectre_duration" } }, - [101]={ + [102]={ [1]={ [1]={ [1]={ @@ -4531,7 +4548,7 @@ return { [1]="shield_charge_scaling_stun_threshold_reduction_+%_at_maximum_range" } }, - [102]={ + [103]={ [1]={ [1]={ limit={ @@ -4561,7 +4578,7 @@ return { [1]="shield_charge_stun_duration_+%_maximum" } }, - [103]={ + [104]={ [1]={ [1]={ limit={ @@ -4591,7 +4608,7 @@ return { [1]="shield_charge_damage_+%_maximum" } }, - [104]={ + [105]={ [1]={ [1]={ limit={ @@ -4778,7 +4795,7 @@ return { [5]="arrows_always_pierce" } }, - [105]={ + [106]={ [1]={ [1]={ limit={ @@ -4804,7 +4821,7 @@ return { [1]="primary_projectile_display_targets_to_pierce" } }, - [106]={ + [107]={ [1]={ [1]={ limit={ @@ -4834,7 +4851,7 @@ return { [1]="base_projectile_speed_+%" } }, - [107]={ + [108]={ [1]={ [1]={ [1]={ @@ -4894,7 +4911,7 @@ return { [2]="always_freeze" } }, - [108]={ + [109]={ [1]={ [1]={ limit={ @@ -4911,7 +4928,7 @@ return { [1]="predict_totem_maximum_life" } }, - [109]={ + [110]={ [1]={ [1]={ [1]={ @@ -4932,7 +4949,7 @@ return { [1]="base_chance_to_shock_%" } }, - [110]={ + [111]={ [1]={ [1]={ [1]={ @@ -4953,7 +4970,7 @@ return { [1]="base_chance_to_ignite_%" } }, - [111]={ + [112]={ [1]={ [1]={ limit={ @@ -4983,7 +5000,7 @@ return { [1]="freeze_duration_+%" } }, - [112]={ + [113]={ [1]={ [1]={ limit={ @@ -5013,7 +5030,7 @@ return { [1]="chill_duration_+%" } }, - [113]={ + [114]={ [1]={ [1]={ limit={ @@ -5043,7 +5060,7 @@ return { [1]="active_skill_chill_effect_+%_final" } }, - [114]={ + [115]={ [1]={ [1]={ limit={ @@ -5073,7 +5090,7 @@ return { [1]="chill_effect_+%" } }, - [115]={ + [116]={ [1]={ [1]={ limit={ @@ -5103,7 +5120,7 @@ return { [1]="shock_duration_+%" } }, - [116]={ + [117]={ [1]={ [1]={ limit={ @@ -5133,7 +5150,7 @@ return { [1]="ignite_duration_+%" } }, - [117]={ + [118]={ [1]={ [1]={ limit={ @@ -5163,7 +5180,7 @@ return { [1]="burn_damage_+%" } }, - [118]={ + [119]={ [1]={ [1]={ limit={ @@ -5193,7 +5210,7 @@ return { [1]="base_movement_velocity_+%" } }, - [119]={ + [120]={ [1]={ [1]={ limit={ @@ -5210,7 +5227,7 @@ return { [1]="no_movement_speed" } }, - [120]={ + [121]={ [1]={ [1]={ limit={ @@ -5240,7 +5257,7 @@ return { [1]="killed_monster_dropped_item_rarity_+%" } }, - [121]={ + [122]={ [1]={ [1]={ limit={ @@ -5270,7 +5287,7 @@ return { [1]="killed_monster_dropped_item_quantity_+%" } }, - [122]={ + [123]={ [1]={ [1]={ limit={ @@ -5300,7 +5317,7 @@ return { [1]="accuracy_rating" } }, - [123]={ + [124]={ [1]={ [1]={ limit={ @@ -5330,7 +5347,7 @@ return { [1]="accuracy_rating_+%" } }, - [124]={ + [125]={ [1]={ [1]={ [1]={ @@ -5351,7 +5368,7 @@ return { [1]="base_chaos_damage_%_of_maximum_life_to_deal_per_minute" } }, - [125]={ + [126]={ [1]={ [1]={ [1]={ @@ -5372,7 +5389,7 @@ return { [1]="base_physical_damage_%_of_maximum_life_to_deal_per_minute" } }, - [126]={ + [127]={ [1]={ [1]={ [1]={ @@ -5393,7 +5410,7 @@ return { [1]="base_physical_damage_%_of_maximum_energy_shield_to_deal_per_minute" } }, - [127]={ + [128]={ [1]={ [1]={ limit={ @@ -5410,7 +5427,7 @@ return { [1]="add_frenzy_charge_on_kill" } }, - [128]={ + [129]={ [1]={ [1]={ limit={ @@ -5436,7 +5453,7 @@ return { [1]="add_frenzy_charge_on_kill_%_chance" } }, - [129]={ + [130]={ [1]={ [1]={ limit={ @@ -5466,7 +5483,7 @@ return { [1]="critical_strike_chance_+%" } }, - [130]={ + [131]={ [1]={ [1]={ limit={ @@ -5496,7 +5513,7 @@ return { [1]="skill_buff_grants_critical_strike_chance_+%" } }, - [131]={ + [132]={ [1]={ [1]={ limit={ @@ -5526,7 +5543,7 @@ return { [1]="support_controlled_destruction_critical_strike_chance_+%_final" } }, - [132]={ + [133]={ [1]={ [1]={ [1]={ @@ -5547,7 +5564,7 @@ return { [1]="max_barkskin_stacks" } }, - [133]={ + [134]={ [1]={ [1]={ limit={ @@ -5564,7 +5581,7 @@ return { [1]="physical_attack_damage_taken_+_per_barkskin_stack" } }, - [134]={ + [135]={ [1]={ [1]={ limit={ @@ -5594,7 +5611,7 @@ return { [1]="support_multiple_projectiles_critical_strike_chance_+%_final" } }, - [135]={ + [136]={ [1]={ [1]={ limit={ @@ -5624,7 +5641,7 @@ return { [1]="armour_+%_per_barkskin_stack" } }, - [136]={ + [137]={ [1]={ [1]={ limit={ @@ -5654,7 +5671,7 @@ return { [1]="chance_to_evade_attacks_+%_final_per_missing_barkskin_stack" } }, - [137]={ + [138]={ [1]={ [1]={ limit={ @@ -5671,7 +5688,7 @@ return { [1]="base_critical_strike_multiplier_+" } }, - [138]={ + [139]={ [1]={ [1]={ limit={ @@ -5688,7 +5705,7 @@ return { [1]="critical_strike_multiplier_+_while_affected_by_elusive" } }, - [139]={ + [140]={ [1]={ [1]={ [1]={ @@ -5722,7 +5739,7 @@ return { [1]="skill_withered_duration_ms" } }, - [140]={ + [141]={ [1]={ [1]={ limit={ @@ -5752,7 +5769,7 @@ return { [1]="base_life_gain_per_target" } }, - [141]={ + [142]={ [1]={ [1]={ limit={ @@ -5782,7 +5799,7 @@ return { [1]="minion_damage_+%" } }, - [142]={ + [143]={ [1]={ [1]={ limit={ @@ -5812,7 +5829,7 @@ return { [1]="doubles_have_movement_speed_+%" } }, - [143]={ + [144]={ [1]={ [1]={ limit={ @@ -5842,7 +5859,7 @@ return { [1]="minion_attack_speed_+%" } }, - [144]={ + [145]={ [1]={ [1]={ limit={ @@ -5872,7 +5889,7 @@ return { [1]="minion_cast_speed_+%" } }, - [145]={ + [146]={ [1]={ [1]={ limit={ @@ -5902,7 +5919,7 @@ return { [1]="minion_movement_speed_+%" } }, - [146]={ + [147]={ [1]={ [1]={ limit={ @@ -5932,7 +5949,7 @@ return { [1]="active_skill_minion_movement_velocity_+%_final" } }, - [147]={ + [148]={ [1]={ [1]={ limit={ @@ -6078,7 +6095,7 @@ return { [3]="lightning_tendrils_channelled_larger_pulse_always_crit" } }, - [148]={ + [149]={ [1]={ [1]={ limit={ @@ -6095,7 +6112,7 @@ return { [1]="movement_velocity_cap" } }, - [149]={ + [150]={ [1]={ [1]={ limit={ @@ -6125,7 +6142,7 @@ return { [1]="active_skill_minion_life_+%_final" } }, - [150]={ + [151]={ [1]={ [1]={ limit={ @@ -6155,7 +6172,7 @@ return { [1]="active_skill_minion_energy_shield_+%_final" } }, - [151]={ + [152]={ [1]={ [1]={ limit={ @@ -6185,7 +6202,7 @@ return { [1]="support_minion_maximum_life_+%_final" } }, - [152]={ + [153]={ [1]={ [1]={ limit={ @@ -6202,7 +6219,7 @@ return { [1]="minion_maximum_life_+%" } }, - [153]={ + [154]={ [1]={ [1]={ [1]={ @@ -6223,7 +6240,7 @@ return { [1]="keystone_minion_instability" } }, - [154]={ + [155]={ [1]={ [1]={ limit={ @@ -6253,7 +6270,7 @@ return { [1]="base_stun_duration_+%" } }, - [155]={ + [156]={ [1]={ [1]={ limit={ @@ -6270,7 +6287,7 @@ return { [1]="always_stun" } }, - [156]={ + [157]={ [1]={ [1]={ limit={ @@ -6287,7 +6304,7 @@ return { [1]="backstab_damage_+%" } }, - [157]={ + [158]={ [1]={ [1]={ [1]={ @@ -6308,7 +6325,7 @@ return { [1]="wall_expand_delay_ms" } }, - [158]={ + [159]={ [1]={ [1]={ [1]={ @@ -6351,7 +6368,7 @@ return { [2]="quality_display_wall_length_is_gem" } }, - [159]={ + [160]={ [1]={ [1]={ [1]={ @@ -6372,7 +6389,7 @@ return { [1]="base_chaos_damage_taken_per_minute_per_viper_strike_orb" } }, - [160]={ + [161]={ [1]={ [1]={ [1]={ @@ -6393,7 +6410,7 @@ return { [1]="intermediary_chaos_area_damage_to_deal_per_minute" } }, - [161]={ + [162]={ [1]={ [1]={ [1]={ @@ -6414,7 +6431,7 @@ return { [1]="intermediary_chaos_damage_to_deal_per_minute" } }, - [162]={ + [163]={ [1]={ [1]={ [1]={ @@ -6435,7 +6452,7 @@ return { [1]="intermediary_chaos_skill_dot_area_damage_to_deal_per_minute" } }, - [163]={ + [164]={ [1]={ [1]={ [1]={ @@ -6456,7 +6473,7 @@ return { [1]="intermediary_chaos_skill_dot_damage_to_deal_per_minute" } }, - [164]={ + [165]={ [1]={ [1]={ [1]={ @@ -6477,7 +6494,7 @@ return { [1]="intermediary_physical_skill_dot_area_damage_to_deal_per_minute" } }, - [165]={ + [166]={ [1]={ [1]={ [1]={ @@ -6498,7 +6515,7 @@ return { [1]="intermediary_physical_skill_dot_damage_to_deal_per_minute" } }, - [166]={ + [167]={ [1]={ [1]={ [1]={ @@ -6519,7 +6536,7 @@ return { [1]="intermediary_fire_area_damage_to_deal_per_minute" } }, - [167]={ + [168]={ [1]={ [1]={ [1]={ @@ -6540,7 +6557,7 @@ return { [1]="intermediary_fire_damage_to_deal_per_minute" } }, - [168]={ + [169]={ [1]={ [1]={ [1]={ @@ -6561,7 +6578,7 @@ return { [1]="intermediary_fire_skill_dot_area_damage_to_deal_per_minute" } }, - [169]={ + [170]={ [1]={ [1]={ [1]={ @@ -6582,7 +6599,7 @@ return { [1]="intermediary_fire_skill_dot_damage_to_deal_per_minute" } }, - [170]={ + [171]={ [1]={ [1]={ [1]={ @@ -6603,7 +6620,7 @@ return { [1]="secondary_intermediary_fire_skill_dot_damage_to_deal_per_minute" } }, - [171]={ + [172]={ [1]={ [1]={ [1]={ @@ -6624,7 +6641,7 @@ return { [1]="intermediary_cold_area_damage_to_deal_per_minute" } }, - [172]={ + [173]={ [1]={ [1]={ [1]={ @@ -6645,7 +6662,7 @@ return { [1]="intermediary_cold_damage_to_deal_per_minute" } }, - [173]={ + [174]={ [1]={ [1]={ [1]={ @@ -6666,7 +6683,7 @@ return { [1]="intermediary_cold_skill_dot_area_damage_to_deal_per_minute" } }, - [174]={ + [175]={ [1]={ [1]={ [1]={ @@ -6687,7 +6704,7 @@ return { [1]="intermediary_cold_skill_dot_damage_to_deal_per_minute" } }, - [175]={ + [176]={ [1]={ [1]={ [1]={ @@ -6708,7 +6725,7 @@ return { [1]="intermediary_lightning_skill_dot_damage_to_deal_per_minute" } }, - [176]={ + [177]={ [1]={ [1]={ [1]={ @@ -6729,7 +6746,7 @@ return { [1]="monster_response_time_ms" } }, - [177]={ + [178]={ [1]={ [1]={ limit={ @@ -6759,7 +6776,7 @@ return { [1]="phase_run_melee_physical_damage_+%_final" } }, - [178]={ + [179]={ [1]={ [1]={ limit={ @@ -6789,7 +6806,7 @@ return { [1]="melee_physical_damage_+%" } }, - [179]={ + [180]={ [1]={ [1]={ [1]={ @@ -6823,7 +6840,7 @@ return { [1]="explosive_arrow_explosion_base_damage_+permyriad" } }, - [180]={ + [181]={ [1]={ [1]={ [1]={ @@ -6857,7 +6874,7 @@ return { [1]="oil_arrow_explosion_base_damage_+permyriad" } }, - [181]={ + [182]={ [1]={ [1]={ limit={ @@ -6879,7 +6896,7 @@ return { [2]="explosive_arrow_explosion_maximum_added_fire_damage" } }, - [182]={ + [183]={ [1]={ [1]={ limit={ @@ -6901,7 +6918,7 @@ return { [2]="oil_arrow_explosion_maximum_added_fire_damage" } }, - [183]={ + [184]={ [1]={ [1]={ limit={ @@ -6923,7 +6940,7 @@ return { [2]="maximum_fire_damage_per_fuse_arrow_orb" } }, - [184]={ + [185]={ [1]={ [1]={ [1]={ @@ -7050,7 +7067,7 @@ return { [2]="explosive_arrow_maximum_bonus_explosion_radius" } }, - [185]={ + [186]={ [1]={ [1]={ [1]={ @@ -7089,7 +7106,7 @@ return { [2]="vaal_firestorm_number_of_meteors" } }, - [186]={ + [187]={ [1]={ [1]={ limit={ @@ -7119,7 +7136,7 @@ return { [1]="base_stun_recovery_+%" } }, - [187]={ + [188]={ [1]={ [1]={ limit={ @@ -7149,7 +7166,7 @@ return { [1]="energy_shield_delay_-%" } }, - [188]={ + [189]={ [1]={ [1]={ limit={ @@ -7179,7 +7196,7 @@ return { [1]="energy_shield_recharge_rate_+%" } }, - [189]={ + [190]={ [1]={ [1]={ limit={ @@ -7196,7 +7213,7 @@ return { [1]="degen_effect_+%" } }, - [190]={ + [191]={ [1]={ [1]={ [1]={ @@ -7217,7 +7234,7 @@ return { [1]="base_buff_duration_ms_+_per_removable_endurance_charge" } }, - [191]={ + [192]={ [1]={ [1]={ limit={ @@ -7234,7 +7251,7 @@ return { [1]="buff_effect_duration_+%_per_removable_endurance_charge" } }, - [192]={ + [193]={ [1]={ [1]={ limit={ @@ -7251,7 +7268,7 @@ return { [1]="buff_effect_duration_+%_per_removable_endurance_charge_limited_to_5" } }, - [193]={ + [194]={ [1]={ [1]={ limit={ @@ -7268,7 +7285,7 @@ return { [1]="skill_effect_duration_+%_per_removable_frenzy_charge" } }, - [194]={ + [195]={ [1]={ [1]={ limit={ @@ -7285,7 +7302,7 @@ return { [1]="shield_block_%" } }, - [195]={ + [196]={ [1]={ [1]={ limit={ @@ -7302,7 +7319,7 @@ return { [1]="shield_spell_block_%" } }, - [196]={ + [197]={ [1]={ [1]={ limit={ @@ -7319,7 +7336,7 @@ return { [1]="fire_shield_damage_threshold" } }, - [197]={ + [198]={ [1]={ [1]={ limit={ @@ -7349,7 +7366,7 @@ return { [1]="physical_damage_reduction_rating_+%" } }, - [198]={ + [199]={ [1]={ [1]={ limit={ @@ -7366,7 +7383,7 @@ return { [1]="base_resist_all_elements_%" } }, - [199]={ + [200]={ [1]={ [1]={ [1]={ @@ -7387,7 +7404,7 @@ return { [1]="base_righteous_fire_%_of_max_life_to_deal_to_nearby_per_minute" } }, - [200]={ + [201]={ [1]={ [1]={ [1]={ @@ -7408,7 +7425,7 @@ return { [1]="base_righteous_fire_%_of_max_energy_shield_to_deal_to_nearby_per_minute" } }, - [201]={ + [202]={ [1]={ [1]={ [1]={ @@ -7429,7 +7446,7 @@ return { [1]="base_righteous_fire_%_of_max_mana_to_deal_to_nearby_per_minute" } }, - [202]={ + [203]={ [1]={ [1]={ [1]={ @@ -7450,7 +7467,7 @@ return { [1]="base_nonlethal_fire_damage_%_of_maximum_life_taken_per_minute" } }, - [203]={ + [204]={ [1]={ [1]={ [1]={ @@ -7471,7 +7488,7 @@ return { [1]="base_nonlethal_fire_damage_%_of_maximum_energy_shield_taken_per_minute" } }, - [204]={ + [205]={ [1]={ [1]={ [1]={ @@ -7492,7 +7509,7 @@ return { [1]="base_nonlethal_fire_damage_%_of_maximum_mana_taken_per_minute" } }, - [205]={ + [206]={ [1]={ [1]={ limit={ @@ -7522,7 +7539,7 @@ return { [1]="righteous_fire_cast_speed_+%_final" } }, - [206]={ + [207]={ [1]={ [1]={ limit={ @@ -7552,7 +7569,7 @@ return { [1]="righteous_fire_spell_damage_+%_final" } }, - [207]={ + [208]={ [1]={ [1]={ limit={ @@ -7582,7 +7599,7 @@ return { [1]="vaal_righteous_fire_ignite_damage_+%_final" } }, - [208]={ + [209]={ [1]={ [1]={ limit={ @@ -7612,7 +7629,7 @@ return { [1]="vaal_righteous_fire_spell_damage_+%_final" } }, - [209]={ + [210]={ [1]={ [1]={ limit={ @@ -7642,7 +7659,7 @@ return { [1]="spell_damage_+%" } }, - [210]={ + [211]={ [1]={ [1]={ limit={ @@ -7659,7 +7676,7 @@ return { [1]="base_physical_damage_reduction_rating" } }, - [211]={ + [212]={ [1]={ [1]={ limit={ @@ -7685,7 +7702,7 @@ return { [1]="lightning_arrow_maximum_number_of_extra_targets" } }, - [212]={ + [213]={ [1]={ [1]={ [1]={ @@ -7706,7 +7723,7 @@ return { [1]="elemental_status_effect_aura_radius" } }, - [213]={ + [214]={ [1]={ [1]={ limit={ @@ -7723,7 +7740,7 @@ return { [1]="support_ignite_proliferation_radius" } }, - [214]={ + [215]={ [1]={ [1]={ [1]={ @@ -7744,7 +7761,24 @@ return { [1]="cannot_inflict_status_ailments" } }, - [215]={ + [216]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Cannot inflict Ailments" + } + }, + name="cannot_inflict_any_ailments", + stats={ + [1]="never_any_ailment" + } + }, + [217]={ [1]={ [1]={ limit={ @@ -7761,7 +7795,7 @@ return { [1]="base_use_life_in_place_of_mana" } }, - [216]={ + [218]={ [1]={ [1]={ [1]={ @@ -7782,7 +7816,7 @@ return { [1]="kill_enemy_on_hit_if_under_10%_life" } }, - [217]={ + [219]={ [1]={ [1]={ [1]={ @@ -7803,7 +7837,7 @@ return { [1]="keystone_point_blank" } }, - [218]={ + [220]={ [1]={ [1]={ limit={ @@ -7820,7 +7854,7 @@ return { [1]="virtual_skill_gains_intensity" } }, - [219]={ + [221]={ [1]={ [1]={ limit={ @@ -7837,7 +7871,7 @@ return { [1]="virtual_maximum_intensity" } }, - [220]={ + [222]={ [1]={ [1]={ [1]={ @@ -7863,7 +7897,7 @@ return { [2]="virtual_intensity_lost_on_teleport" } }, - [221]={ + [223]={ [1]={ [1]={ limit={ @@ -7880,7 +7914,7 @@ return { [1]="global_hit_causes_monster_flee_%" } }, - [222]={ + [224]={ [1]={ [1]={ [1]={ @@ -7914,7 +7948,7 @@ return { [1]="totem_range" } }, - [223]={ + [225]={ [1]={ [1]={ limit={ @@ -7940,7 +7974,7 @@ return { [1]="skill_display_number_of_totems_allowed" } }, - [224]={ + [226]={ [1]={ [1]={ limit={ @@ -7966,7 +8000,7 @@ return { [1]="skill_display_number_of_traps_allowed" } }, - [225]={ + [227]={ [1]={ [1]={ limit={ @@ -7992,7 +8026,7 @@ return { [1]="skill_display_number_of_remote_mines_allowed" } }, - [226]={ + [228]={ [1]={ [1]={ limit={ @@ -8048,7 +8082,7 @@ return { [2]="totem_fire_in_formation" } }, - [227]={ + [229]={ [1]={ [1]={ limit={ @@ -8065,7 +8099,7 @@ return { [1]="totems_cannot_evade" } }, - [228]={ + [230]={ [1]={ [1]={ [1]={ @@ -8086,7 +8120,7 @@ return { [1]="trap_duration" } }, - [229]={ + [231]={ [1]={ [1]={ limit={ @@ -8116,7 +8150,7 @@ return { [1]="trap_throwing_speed_+%" } }, - [230]={ + [232]={ [1]={ [1]={ limit={ @@ -8146,7 +8180,7 @@ return { [1]="mine_laying_speed_+%" } }, - [231]={ + [233]={ [1]={ [1]={ [1]={ @@ -8167,7 +8201,7 @@ return { [1]="mine_duration" } }, - [232]={ + [234]={ [1]={ [1]={ limit={ @@ -8184,7 +8218,7 @@ return { [1]="freeze_as_though_dealt_damage_+%" } }, - [233]={ + [235]={ [1]={ [1]={ limit={ @@ -8201,7 +8235,7 @@ return { [1]="glacial_hammer_third_hit_always_crits" } }, - [234]={ + [236]={ [1]={ [1]={ limit={ @@ -8218,7 +8252,7 @@ return { [1]="glacial_hammer_third_hit_freeze_as_though_dealt_damage_+%" } }, - [235]={ + [237]={ [1]={ [1]={ [1]={ @@ -8239,7 +8273,7 @@ return { [1]="base_life_regeneration_rate_per_minute" } }, - [236]={ + [238]={ [1]={ [1]={ [1]={ @@ -8260,7 +8294,7 @@ return { [1]="life_regeneration_rate_per_minute_%" } }, - [237]={ + [239]={ [1]={ [1]={ limit={ @@ -8290,7 +8324,7 @@ return { [1]="life_regeneration_rate_+%" } }, - [238]={ + [240]={ [1]={ [1]={ limit={ @@ -8307,7 +8341,7 @@ return { [1]="base_cold_damage_resistance_%" } }, - [239]={ + [241]={ [1]={ [1]={ limit={ @@ -8337,7 +8371,7 @@ return { [1]="ice_spear_second_form_critical_strike_chance_+%" } }, - [240]={ + [242]={ [1]={ [1]={ limit={ @@ -8354,7 +8388,7 @@ return { [1]="ice_spear_second_form_critical_strike_multiplier_+" } }, - [241]={ + [243]={ [1]={ [1]={ limit={ @@ -8384,7 +8418,7 @@ return { [1]="ice_spear_second_form_projectile_speed_+%_final" } }, - [242]={ + [244]={ [1]={ [1]={ limit={ @@ -8401,7 +8435,7 @@ return { [1]="explosive_arrow_hit_damage_+%_final_per_stack" } }, - [243]={ + [245]={ [1]={ [1]={ [1]={ @@ -8435,7 +8469,7 @@ return { [1]="virtual_chance_to_blind_on_hit_%" } }, - [244]={ + [246]={ [1]={ [1]={ limit={ @@ -8452,7 +8486,7 @@ return { [1]="explosive_arrow_ailment_damage_+%_final_per_stack" } }, - [245]={ + [247]={ [1]={ [1]={ limit={ @@ -8482,7 +8516,7 @@ return { [1]="blind_duration_+%" } }, - [246]={ + [248]={ [1]={ [1]={ limit={ @@ -8499,7 +8533,7 @@ return { [1]="base_reduce_enemy_fire_resistance_%" } }, - [247]={ + [249]={ [1]={ [1]={ limit={ @@ -8516,7 +8550,7 @@ return { [1]="base_reduce_enemy_cold_resistance_%" } }, - [248]={ + [250]={ [1]={ [1]={ limit={ @@ -8533,7 +8567,7 @@ return { [1]="base_reduce_enemy_lightning_resistance_%" } }, - [249]={ + [251]={ [1]={ [1]={ [1]={ @@ -8554,7 +8588,7 @@ return { [1]="lightning_penetration_%_while_on_low_mana" } }, - [250]={ + [252]={ [1]={ [1]={ limit={ @@ -8571,7 +8605,7 @@ return { [1]="reduce_enemy_elemental_resistance_%" } }, - [251]={ + [253]={ [1]={ [1]={ limit={ @@ -8588,7 +8622,7 @@ return { [1]="skeletal_chains_no_minions_targets_self" } }, - [252]={ + [254]={ [1]={ [1]={ [1]={ @@ -8609,7 +8643,7 @@ return { [1]="skeletal_chains_no_minions_damage_+%_final" } }, - [253]={ + [255]={ [1]={ [1]={ [1]={ @@ -8643,7 +8677,7 @@ return { [1]="skeletal_chains_no_minions_radius_+" } }, - [254]={ + [256]={ [1]={ [1]={ limit={ @@ -8669,7 +8703,7 @@ return { [1]="virtual_number_of_chains" } }, - [255]={ + [257]={ [1]={ [1]={ limit={ @@ -8695,7 +8729,7 @@ return { [1]="virtual_number_of_chains_for_beams" } }, - [256]={ + [258]={ [1]={ [1]={ limit={ @@ -8712,7 +8746,7 @@ return { [1]="virtual_projectile_number_to_split" } }, - [257]={ + [259]={ [1]={ [1]={ limit={ @@ -8738,7 +8772,7 @@ return { [1]="virtual_number_of_forks_for_projectiles_final" } }, - [258]={ + [260]={ [1]={ [1]={ limit={ @@ -8786,7 +8820,7 @@ return { [2]="projectile_return_%_chance" } }, - [259]={ + [261]={ [1]={ [1]={ [1]={ @@ -8807,7 +8841,7 @@ return { [1]="corpse_consumption_life_to_gain" } }, - [260]={ + [262]={ [1]={ [1]={ [1]={ @@ -8828,7 +8862,7 @@ return { [1]="corpse_consumption_mana_to_gain" } }, - [261]={ + [263]={ [1]={ [1]={ [1]={ @@ -8866,7 +8900,7 @@ return { [1]="flamethrower_damage_+%_per_stage_final" } }, - [262]={ + [264]={ [1]={ [1]={ limit={ @@ -8896,7 +8930,7 @@ return { [1]="incinerate_damage_+%_per_stage" } }, - [263]={ + [265]={ [1]={ [1]={ limit={ @@ -8948,7 +8982,7 @@ return { [2]="quality_display_blade_vortex_is_gem" } }, - [264]={ + [266]={ [1]={ [1]={ limit={ @@ -9017,7 +9051,7 @@ return { [2]="damage_per_blade_vortex_blade_description_mode" } }, - [265]={ + [267]={ [1]={ [1]={ [1]={ @@ -9055,7 +9089,7 @@ return { [1]="blade_vortex_ailment_damage_+%_per_blade_final" } }, - [266]={ + [268]={ [1]={ [1]={ limit={ @@ -9085,7 +9119,7 @@ return { [1]="cyclone_movement_speed_+%_final" } }, - [267]={ + [269]={ [1]={ [1]={ [1]={ @@ -9106,7 +9140,7 @@ return { [1]="mana_degeneration_per_minute" } }, - [268]={ + [270]={ [1]={ [1]={ [1]={ @@ -9127,7 +9161,7 @@ return { [1]="ice_shield_moving_mana_degeneration_per_minute" } }, - [269]={ + [271]={ [1]={ [1]={ limit={ @@ -9144,7 +9178,7 @@ return { [1]="physical_damage_taken_+" } }, - [270]={ + [272]={ [1]={ [1]={ limit={ @@ -9161,7 +9195,7 @@ return { [1]="fire_damage_taken_+" } }, - [271]={ + [273]={ [1]={ [1]={ limit={ @@ -9178,7 +9212,7 @@ return { [1]="virtual_melee_splash" } }, - [272]={ + [274]={ [1]={ [1]={ limit={ @@ -9195,7 +9229,7 @@ return { [1]="attack_repeat_count" } }, - [273]={ + [275]={ [1]={ [1]={ limit={ @@ -9221,7 +9255,7 @@ return { [1]="add_power_charge_on_critical_strike_%" } }, - [274]={ + [276]={ [1]={ [1]={ limit={ @@ -9251,7 +9285,7 @@ return { [1]="support_multiple_attacks_melee_attack_speed_+%_final" } }, - [275]={ + [277]={ [1]={ [1]={ limit={ @@ -9268,7 +9302,7 @@ return { [1]="summon_fire_resistance_+" } }, - [276]={ + [278]={ [1]={ [1]={ limit={ @@ -9285,7 +9319,7 @@ return { [1]="summon_cold_resistance_+" } }, - [277]={ + [279]={ [1]={ [1]={ limit={ @@ -9302,7 +9336,7 @@ return { [1]="summon_lightning_resistance_+" } }, - [278]={ + [280]={ [1]={ [1]={ limit={ @@ -9319,7 +9353,7 @@ return { [1]="virtual_minion_elemental_resistance_%" } }, - [279]={ + [281]={ [1]={ [1]={ limit={ @@ -9345,7 +9379,7 @@ return { [1]="apply_linked_curses_on_hit_%" } }, - [280]={ + [282]={ [1]={ [1]={ limit={ @@ -9362,7 +9396,7 @@ return { [1]="reave_area_of_effect_+%_final_per_stage" } }, - [281]={ + [283]={ [1]={ [1]={ limit={ @@ -9410,7 +9444,7 @@ return { [2]="gain_endurance_charge_on_melee_stun_%" } }, - [282]={ + [284]={ [1]={ [1]={ [1]={ @@ -9431,7 +9465,7 @@ return { [1]="freeze_mine_cold_resistance_+_while_frozen" } }, - [283]={ + [285]={ [1]={ [1]={ limit={ @@ -9457,7 +9491,7 @@ return { [1]="cast_linked_spells_on_attack_crit_%" } }, - [284]={ + [286]={ [1]={ [1]={ limit={ @@ -9483,7 +9517,7 @@ return { [1]="cast_linked_spells_on_melee_kill_%" } }, - [285]={ + [287]={ [1]={ [1]={ limit={ @@ -9509,7 +9543,7 @@ return { [1]="melee_counterattack_trigger_on_hit_%" } }, - [286]={ + [288]={ [1]={ [1]={ limit={ @@ -9535,7 +9569,7 @@ return { [1]="attack_trigger_when_critically_hit_%" } }, - [287]={ + [289]={ [1]={ [1]={ limit={ @@ -9561,7 +9595,7 @@ return { [1]="melee_counterattack_trigger_on_block_%" } }, - [288]={ + [290]={ [1]={ [1]={ limit={ @@ -9596,7 +9630,7 @@ return { [2]="animate_item_maximum_level_requirement" } }, - [289]={ + [291]={ [1]={ [1]={ limit={ @@ -9622,7 +9656,7 @@ return { [1]="attack_trigger_on_kill_%" } }, - [290]={ + [292]={ [1]={ [1]={ limit={ @@ -9648,7 +9682,7 @@ return { [1]="cast_on_attack_use_%" } }, - [291]={ + [293]={ [1]={ [1]={ limit={ @@ -9674,7 +9708,7 @@ return { [1]="cast_on_skill_use_%" } }, - [292]={ + [294]={ [1]={ [1]={ limit={ @@ -9700,7 +9734,7 @@ return { [1]="chance_to_cast_on_kill_%" } }, - [293]={ + [295]={ [1]={ [1]={ limit={ @@ -9726,7 +9760,7 @@ return { [1]="chance_to_cast_on_kill_%_target_self" } }, - [294]={ + [296]={ [1]={ [1]={ limit={ @@ -9752,7 +9786,7 @@ return { [1]="enchantment_of_war_trigger_on_kill_%" } }, - [295]={ + [297]={ [1]={ [1]={ limit={ @@ -9778,7 +9812,7 @@ return { [1]="trigger_on_skill_use_from_chest_%" } }, - [296]={ + [298]={ [1]={ [1]={ limit={ @@ -9804,7 +9838,7 @@ return { [1]="trigger_on_skill_use_%_if_you_have_a_spirit_charge" } }, - [297]={ + [299]={ [1]={ [1]={ limit={ @@ -9830,7 +9864,7 @@ return { [1]="cast_on_any_damage_taken_%" } }, - [298]={ + [300]={ [1]={ [1]={ limit={ @@ -9856,7 +9890,7 @@ return { [1]="cast_when_hit_%" } }, - [299]={ + [301]={ [1]={ [1]={ limit={ @@ -9873,7 +9907,7 @@ return { [1]="cast_on_death_%" } }, - [300]={ + [302]={ [1]={ [1]={ limit={ @@ -9890,7 +9924,7 @@ return { [1]="chance_to_cast_on_rampage_tier_%" } }, - [301]={ + [303]={ [1]={ [1]={ limit={ @@ -9907,7 +9941,7 @@ return { [1]="cast_on_stunned_%" } }, - [302]={ + [304]={ [1]={ [1]={ limit={ @@ -9933,7 +9967,7 @@ return { [1]="spellslinger_trigger_on_wand_attack_%" } }, - [303]={ + [305]={ [1]={ [1]={ limit={ @@ -9959,7 +9993,7 @@ return { [1]="cast_on_gain_avians_flight_or_avians_might_%" } }, - [304]={ + [306]={ [1]={ [1]={ limit={ @@ -9985,7 +10019,7 @@ return { [1]="cast_on_hit_%" } }, - [305]={ + [307]={ [1]={ [1]={ limit={ @@ -10011,7 +10045,7 @@ return { [1]="cast_on_hit_if_cursed_%" } }, - [306]={ + [308]={ [1]={ [1]={ limit={ @@ -10028,7 +10062,7 @@ return { [1]="cast_on_lose_cats_stealth" } }, - [307]={ + [309]={ [1]={ [1]={ limit={ @@ -10054,7 +10088,7 @@ return { [1]="cast_on_melee_hit_if_cursed_%" } }, - [308]={ + [310]={ [1]={ [1]={ limit={ @@ -10080,7 +10114,7 @@ return { [1]="attack_trigger_on_hit_%" } }, - [309]={ + [311]={ [1]={ [1]={ limit={ @@ -10106,7 +10140,7 @@ return { [1]="attack_trigger_on_melee_critical_hit_%" } }, - [310]={ + [312]={ [1]={ [1]={ limit={ @@ -10132,7 +10166,7 @@ return { [1]="attack_trigger_on_melee_hit_%" } }, - [311]={ + [313]={ [1]={ [1]={ limit={ @@ -10176,7 +10210,7 @@ return { [3]="cast_on_damage_taken_threshold" } }, - [312]={ + [314]={ [1]={ [1]={ limit={ @@ -10202,7 +10236,7 @@ return { [1]="chance_to_cast_when_your_trap_is_triggered_%" } }, - [313]={ + [315]={ [1]={ [1]={ limit={ @@ -10232,7 +10266,7 @@ return { [1]="active_skill_attack_speed_+%_final" } }, - [314]={ + [316]={ [1]={ [1]={ limit={ @@ -10262,7 +10296,7 @@ return { [1]="charged_blast_spell_damage_+%_final_per_stack" } }, - [315]={ + [317]={ [1]={ [1]={ [1]={ @@ -10300,7 +10334,7 @@ return { [1]="flameblast_ailment_damage_+%_final_per_stack" } }, - [316]={ + [318]={ [1]={ [1]={ [1]={ @@ -10321,7 +10355,7 @@ return { [1]="cast_while_channelling_time_ms" } }, - [317]={ + [319]={ [1]={ [1]={ limit={ @@ -10351,7 +10385,7 @@ return { [1]="curse_effect_+%" } }, - [318]={ + [320]={ [1]={ [1]={ limit={ @@ -10381,7 +10415,7 @@ return { [1]="curse_effect_+%_vs_players" } }, - [319]={ + [321]={ [1]={ [1]={ limit={ @@ -10411,7 +10445,7 @@ return { [1]="curse_effect_+%_final_vs_players" } }, - [320]={ + [322]={ [1]={ [1]={ limit={ @@ -10441,7 +10475,7 @@ return { [1]="curse_pillar_curse_effect_+%_final" } }, - [321]={ + [323]={ [1]={ [1]={ limit={ @@ -10471,7 +10505,7 @@ return { [1]="support_projectile_attack_speed_+%_final" } }, - [322]={ + [324]={ [1]={ [1]={ limit={ @@ -10501,7 +10535,7 @@ return { [1]="support_spell_totem_cast_speed_+%_final" } }, - [323]={ + [325]={ [1]={ [1]={ limit={ @@ -10531,7 +10565,7 @@ return { [1]="support_attack_totem_attack_speed_+%_final" } }, - [324]={ + [326]={ [1]={ [1]={ limit={ @@ -10548,7 +10582,7 @@ return { [1]="atziri_unique_staff_storm_call_number_of_markers_to_place" } }, - [325]={ + [327]={ [1]={ [1]={ limit={ @@ -10565,7 +10599,7 @@ return { [1]="desecrate_number_of_corpses_to_create" } }, - [326]={ + [328]={ [1]={ [1]={ limit={ @@ -10582,7 +10616,7 @@ return { [1]="desecrate_corpse_level" } }, - [327]={ + [329]={ [1]={ [1]={ limit={ @@ -10599,7 +10633,7 @@ return { [1]="unearth_corpse_level" } }, - [328]={ + [330]={ [1]={ [1]={ limit={ @@ -10616,7 +10650,7 @@ return { [1]="ice_nova_number_of_repeats" } }, - [329]={ + [331]={ [1]={ [1]={ limit={ @@ -10646,7 +10680,7 @@ return { [1]="ice_nova_radius_+%_per_repeat" } }, - [330]={ + [332]={ [1]={ [1]={ limit={ @@ -10676,7 +10710,7 @@ return { [1]="vaal_lightning_strike_beam_damage_+%_final" } }, - [331]={ + [333]={ [1]={ [1]={ limit={ @@ -10693,7 +10727,7 @@ return { [1]="global_always_hit" } }, - [332]={ + [334]={ [1]={ [1]={ limit={ @@ -10710,7 +10744,7 @@ return { [1]="global_reduce_enemy_block_%" } }, - [333]={ + [335]={ [1]={ [1]={ limit={ @@ -10727,7 +10761,7 @@ return { [1]="reduce_enemy_dodge_%" } }, - [334]={ + [336]={ [1]={ [1]={ limit={ @@ -10779,7 +10813,7 @@ return { [2]="quality_display_flame_whip_is_gem" } }, - [335]={ + [337]={ [1]={ [1]={ [1]={ @@ -10817,7 +10851,7 @@ return { [1]="damage_+%_vs_burning_enemies" } }, - [336]={ + [338]={ [1]={ [1]={ limit={ @@ -10834,7 +10868,7 @@ return { [1]="never_freeze" } }, - [337]={ + [339]={ [1]={ [1]={ limit={ @@ -10851,7 +10885,7 @@ return { [1]="never_ignite" } }, - [338]={ + [340]={ [1]={ [1]={ limit={ @@ -10868,7 +10902,7 @@ return { [1]="damage_cannot_be_reflected" } }, - [339]={ + [341]={ [1]={ [1]={ limit={ @@ -10885,7 +10919,7 @@ return { [1]="lightning_trap_projectiles_leave_shocking_ground" } }, - [340]={ + [342]={ [1]={ [1]={ limit={ @@ -10902,7 +10936,75 @@ return { [1]="physical_damage_%_to_add_as_fire" } }, - [341]={ + [343]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Gains {0}% of Physical Damage as Extra Fire Damage per\nRed Socket on Equipped Gloves" + } + }, + name="skill_gain_phys_as_extra_fire_per_red_socket_on_gloves", + stats={ + [1]="gain_%_of_phys_as_extra_fire_per_red_socket_on_gloves" + } + }, + [344]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Gains {0}% of Physical Damage as Extra Cold Damage per\nGreen Socket on Equipped Gloves" + } + }, + name="skill_gain_phys_as_extra_cold_per_green_socket_on_gloves", + stats={ + [1]="gain_%_of_phys_as_extra_cold_per_green_socket_on_gloves" + } + }, + [345]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Gains {0}% of Physical Damage as Extra Lightning Damage per\nBlue Socket on Equipped Gloves" + } + }, + name="skill_gain_phys_as_extra_lightning_per_blue_socket_on_gloves", + stats={ + [1]="gain_%_of_phys_as_extra_lightning_per_blue_socket_on_gloves" + } + }, + [346]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Gains {0}% of Physical Damage as Extra Chaos Damage per\nWhite Socket on Equipped Gloves" + } + }, + name="skill_gain_phys_as_extra_chaos_per_white_socket_on_gloves", + stats={ + [1]="gain_%_of_phys_as_extra_chaos_per_white_socket_on_gloves" + } + }, + [347]={ [1]={ [1]={ limit={ @@ -10919,7 +11021,7 @@ return { [1]="physical_damage_%_to_add_as_chaos" } }, - [342]={ + [348]={ [1]={ [1]={ limit={ @@ -10936,7 +11038,7 @@ return { [1]="fire_damage_+%" } }, - [343]={ + [349]={ [1]={ [1]={ limit={ @@ -10953,7 +11055,7 @@ return { [1]="cold_damage_+%" } }, - [344]={ + [350]={ [1]={ [1]={ limit={ @@ -10975,7 +11077,7 @@ return { [2]="spell_maximum_added_cold_damage" } }, - [345]={ + [351]={ [1]={ [1]={ limit={ @@ -10997,7 +11099,7 @@ return { [2]="spell_maximum_added_lightning_damage" } }, - [346]={ + [352]={ [1]={ [1]={ [1]={ @@ -11018,7 +11120,7 @@ return { [1]="elemental_hit_no_damage_of_unchosen_elemental_type" } }, - [347]={ + [353]={ [1]={ [1]={ [1]={ @@ -11039,7 +11141,7 @@ return { [1]="prismatic_burst_unchosen_type_damage_-100%_final" } }, - [348]={ + [354]={ [1]={ [1]={ [1]={ @@ -11077,7 +11179,7 @@ return { [1]="static_strike_explosion_damage_+%_final" } }, - [349]={ + [355]={ [1]={ [1]={ limit={ @@ -11107,7 +11209,7 @@ return { [1]="base_arrow_speed_+%" } }, - [350]={ + [356]={ [1]={ [1]={ limit={ @@ -11124,7 +11226,7 @@ return { [1]="virtual_kinectic_blast_number_of_clusters" } }, - [351]={ + [357]={ [1]={ [1]={ [1]={ @@ -11167,7 +11269,7 @@ return { [1]="abyssal_cry_movement_velocity_+%_per_one_hundred_nearby_enemies" } }, - [352]={ + [358]={ [1]={ [1]={ limit={ @@ -11197,7 +11299,7 @@ return { [1]="newshocknova_first_ring_damage_+%_final" } }, - [353]={ + [359]={ [1]={ [1]={ limit={ @@ -11214,7 +11316,7 @@ return { [1]="abyssal_cry_%_max_life_as_chaos_on_death" } }, - [354]={ + [360]={ [1]={ [1]={ [1]={ @@ -11256,7 +11358,7 @@ return { [1]="chance_to_fortify_on_melee_hit_+%" } }, - [355]={ + [361]={ [1]={ [1]={ limit={ @@ -11286,7 +11388,7 @@ return { [1]="fortify_duration_+%" } }, - [356]={ + [362]={ [1]={ [1]={ limit={ @@ -11303,7 +11405,7 @@ return { [1]="base_physical_damage_%_to_convert_to_cold" } }, - [357]={ + [363]={ [1]={ [1]={ limit={ @@ -11333,7 +11435,7 @@ return { [1]="ice_crash_second_hit_damage_+%_final" } }, - [358]={ + [364]={ [1]={ [1]={ limit={ @@ -11389,7 +11491,7 @@ return { [2]="quality_display_ice_crash_is_gem" } }, - [359]={ + [365]={ [1]={ [1]={ limit={ @@ -11419,7 +11521,7 @@ return { [1]="fire_golem_grants_damage_+%" } }, - [360]={ + [366]={ [1]={ [1]={ limit={ @@ -11449,7 +11551,7 @@ return { [1]="fire_golem_grants_area_of_effect_+%" } }, - [361]={ + [367]={ [1]={ [1]={ limit={ @@ -11479,7 +11581,7 @@ return { [1]="ice_golem_grants_critical_strike_chance_+%" } }, - [362]={ + [368]={ [1]={ [1]={ limit={ @@ -11509,7 +11611,7 @@ return { [1]="ice_golem_grants_accuracy_rating_+" } }, - [363]={ + [369]={ [1]={ [1]={ limit={ @@ -11526,7 +11628,7 @@ return { [1]="chaos_golem_grants_additional_physical_damage_reduction_%" } }, - [364]={ + [370]={ [1]={ [1]={ limit={ @@ -11543,7 +11645,7 @@ return { [1]="chaos_golem_grants_dot_multiplier_+" } }, - [365]={ + [371]={ [1]={ [1]={ [1]={ @@ -11564,7 +11666,7 @@ return { [1]="stone_golem_grants_base_life_regeneration_rate_per_minute" } }, - [366]={ + [372]={ [1]={ [1]={ limit={ @@ -11581,7 +11683,7 @@ return { [1]="stone_golem_grants_melee_damage_removed_from_stone_golem_before_life_or_es_%" } }, - [367]={ + [373]={ [1]={ [1]={ [1]={ @@ -11619,7 +11721,7 @@ return { [1]="stone_golem_grants_defences_+%" } }, - [368]={ + [374]={ [1]={ [1]={ limit={ @@ -11649,7 +11751,7 @@ return { [1]="lightning_golem_grants_attack_and_cast_speed_+%" } }, - [369]={ + [375]={ [1]={ [1]={ [1]={ @@ -11670,7 +11772,7 @@ return { [1]="lightning_golem_grants_base_mana_regeneration_rate_per_minute" } }, - [370]={ + [376]={ [1]={ [1]={ [1]={ @@ -11691,7 +11793,7 @@ return { [1]="virtual_firestorm_drop_burning_ground_duration_ms" } }, - [371]={ + [377]={ [1]={ [1]={ [1]={ @@ -11716,7 +11818,7 @@ return { [1]="virtual_firestorm_drop_chilled_ground_duration_ms" } }, - [372]={ + [378]={ [1]={ [1]={ limit={ @@ -11746,7 +11848,7 @@ return { [1]="inspiring_cry_damage_+%_per_one_hundred_nearby_enemies" } }, - [373]={ + [379]={ [1]={ [1]={ [1]={ @@ -11767,7 +11869,7 @@ return { [1]="base_mana_regeneration_rate_per_minute" } }, - [374]={ + [380]={ [1]={ [1]={ limit={ @@ -11784,7 +11886,7 @@ return { [1]="chaos_golem_grants_chaos_resistance_%" } }, - [375]={ + [381]={ [1]={ [1]={ limit={ @@ -11814,7 +11916,7 @@ return { [1]="damage_+%" } }, - [376]={ + [382]={ [1]={ [1]={ [1]={ @@ -11852,7 +11954,7 @@ return { [1]="fire_nova_damage_+%_per_repeat_final" } }, - [377]={ + [383]={ [1]={ [1]={ limit={ @@ -11882,7 +11984,7 @@ return { [1]="support_bloodlust_melee_physical_damage_+%_final_vs_bleeding_enemies" } }, - [378]={ + [384]={ [1]={ [1]={ limit={ @@ -11912,7 +12014,7 @@ return { [1]="melee_damage_vs_bleeding_enemies_+%" } }, - [379]={ + [385]={ [1]={ [1]={ limit={ @@ -11929,7 +12031,7 @@ return { [1]="summon_totem_cast_speed_+%" } }, - [380]={ + [386]={ [1]={ [1]={ limit={ @@ -11959,7 +12061,7 @@ return { [1]="new_arctic_armour_physical_damage_taken_when_hit_+%_final" } }, - [381]={ + [387]={ [1]={ [1]={ limit={ @@ -11989,7 +12091,7 @@ return { [1]="new_arctic_armour_fire_damage_taken_when_hit_+%_final" } }, - [382]={ + [388]={ [1]={ [1]={ [1]={ @@ -12039,7 +12141,7 @@ return { [1]="chance_to_freeze_shock_ignite_%" } }, - [383]={ + [389]={ [1]={ [1]={ [1]={ @@ -12060,7 +12162,7 @@ return { [1]="additional_chance_to_freeze_chilled_enemies_%" } }, - [384]={ + [390]={ [1]={ [1]={ limit={ @@ -12077,7 +12179,7 @@ return { [1]="elemental_strike_physical_damage_%_to_convert" } }, - [385]={ + [391]={ [1]={ [1]={ [1]={ @@ -12119,7 +12221,7 @@ return { [1]="melee_weapon_range_+" } }, - [386]={ + [392]={ [1]={ [1]={ [1]={ @@ -12161,7 +12263,7 @@ return { [1]="melee_range_+" } }, - [387]={ + [393]={ [1]={ [1]={ [1]={ @@ -12199,7 +12301,7 @@ return { [1]="support_hypothermia_damage_+%_vs_chilled_enemies_final" } }, - [388]={ + [394]={ [1]={ [1]={ [1]={ @@ -12220,7 +12322,7 @@ return { [1]="phase_through_objects" } }, - [389]={ + [395]={ [1]={ [1]={ [1]={ @@ -12258,7 +12360,7 @@ return { [1]="enemy_aggro_radius_+%" } }, - [390]={ + [396]={ [1]={ [1]={ limit={ @@ -12318,7 +12420,7 @@ return { [2]="quality_display_earthquake_is_gem" } }, - [391]={ + [397]={ [1]={ [1]={ [1]={ @@ -12361,7 +12463,7 @@ return { [2]="quality_display_essence_drain_is_gem" } }, - [392]={ + [398]={ [1]={ [1]={ limit={ @@ -12387,7 +12489,7 @@ return { [1]="maximum_number_of_spinning_blades" } }, - [393]={ + [399]={ [1]={ [1]={ limit={ @@ -12417,7 +12519,7 @@ return { [1]="chaos_damage_taken_+%" } }, - [394]={ + [400]={ [1]={ [1]={ [1]={ @@ -12451,7 +12553,7 @@ return { [1]="base_chance_to_poison_on_hit_%" } }, - [395]={ + [401]={ [1]={ [1]={ [1]={ @@ -12485,7 +12587,7 @@ return { [1]="skill_buff_grants_chance_to_poison_%" } }, - [396]={ + [402]={ [1]={ [1]={ limit={ @@ -12515,7 +12617,7 @@ return { [1]="damage_over_time_+%" } }, - [397]={ + [403]={ [1]={ [1]={ limit={ @@ -12545,7 +12647,7 @@ return { [1]="bladefall_damage_per_stage_+%_final" } }, - [398]={ + [404]={ [1]={ [1]={ [1]={ @@ -12566,7 +12668,7 @@ return { [1]="global_poison_on_hit" } }, - [399]={ + [405]={ [1]={ [1]={ limit={ @@ -12596,7 +12698,7 @@ return { [1]="base_poison_damage_+%" } }, - [400]={ + [406]={ [1]={ [1]={ limit={ @@ -12626,7 +12728,7 @@ return { [1]="base_poison_duration_+%" } }, - [401]={ + [407]={ [1]={ [1]={ limit={ @@ -12656,7 +12758,7 @@ return { [1]="melee_splash_area_of_effect_+%_final" } }, - [402]={ + [408]={ [1]={ [1]={ limit={ @@ -12686,7 +12788,7 @@ return { [1]="cyclone_first_hit_damage_+%_final" } }, - [403]={ + [409]={ [1]={ [1]={ limit={ @@ -12716,7 +12818,7 @@ return { [1]="shockwave_slam_explosion_damage_+%_final" } }, - [404]={ + [410]={ [1]={ [1]={ [1]={ @@ -12737,7 +12839,7 @@ return { [1]="additional_base_critical_strike_chance" } }, - [405]={ + [411]={ [1]={ [1]={ limit={ @@ -12767,7 +12869,7 @@ return { [1]="shock_nova_ring_damage_+%" } }, - [406]={ + [412]={ [1]={ [1]={ limit={ @@ -12797,7 +12899,7 @@ return { [1]="skill_buff_effect_+%" } }, - [407]={ + [413]={ [1]={ [1]={ limit={ @@ -12827,7 +12929,7 @@ return { [1]="blood_sand_stance_melee_skills_area_damage_+%_final_in_blood_stance" } }, - [408]={ + [414]={ [1]={ [1]={ limit={ @@ -12857,7 +12959,7 @@ return { [1]="blood_sand_stance_melee_skills_area_of_effect_+%_final_in_blood_stance" } }, - [409]={ + [415]={ [1]={ [1]={ limit={ @@ -12887,7 +12989,7 @@ return { [1]="blood_sand_stance_melee_skills_area_of_effect_+%_final_in_sand_stance" } }, - [410]={ + [416]={ [1]={ [1]={ limit={ @@ -12917,7 +13019,7 @@ return { [1]="blood_sand_stance_melee_skills_area_damage_+%_final_in_sand_stance" } }, - [411]={ + [417]={ [1]={ [1]={ limit={ @@ -12943,7 +13045,7 @@ return { [1]="projectile_chain_from_terrain_chance_%" } }, - [412]={ + [418]={ [1]={ [1]={ limit={ @@ -12960,7 +13062,7 @@ return { [1]="minion_always_crit" } }, - [413]={ + [419]={ [1]={ [1]={ limit={ @@ -12990,7 +13092,7 @@ return { [1]="corrosive_shroud_poison_damage_+%_final_while_accumulating_poison" } }, - [414]={ + [420]={ [1]={ [1]={ [1]={ @@ -13011,7 +13113,7 @@ return { [1]="corrosive_shroud_gains_%_of_damage_from_inflicted_poisons" } }, - [415]={ + [421]={ [1]={ [1]={ limit={ @@ -13028,7 +13130,7 @@ return { [1]="virtual_plague_bearer_maximum_stored_poison_damage" } }, - [416]={ + [422]={ [1]={ [1]={ limit={ @@ -13063,7 +13165,7 @@ return { [2]="quality_display_plague_bearer_is_gem" } }, - [417]={ + [423]={ [1]={ [1]={ limit={ @@ -13080,7 +13182,7 @@ return { [1]="corrosive_shroud_poison_dot_multiplier_+_while_aura_active" } }, - [418]={ + [424]={ [1]={ [1]={ limit={ @@ -13110,7 +13212,7 @@ return { [1]="active_skill_projectile_damage_+%_final" } }, - [419]={ + [425]={ [1]={ [1]={ limit={ @@ -13166,7 +13268,7 @@ return { [2]="quality_display_active_skill_returning_damage_is_gem" } }, - [420]={ + [426]={ [1]={ [1]={ limit={ @@ -13218,7 +13320,7 @@ return { [2]="quality_display_groundslam_is_gem" } }, - [421]={ + [427]={ [1]={ [1]={ limit={ @@ -13248,7 +13350,7 @@ return { [1]="snapping_adder_released_projectile_damage_+%_final" } }, - [422]={ + [428]={ [1]={ [1]={ limit={ @@ -13265,7 +13367,7 @@ return { [1]="returning_projectiles_always_pierce" } }, - [423]={ + [429]={ [1]={ [1]={ limit={ @@ -13295,7 +13397,7 @@ return { [1]="active_skill_damage_over_time_from_projectile_hits_+%_final" } }, - [424]={ + [430]={ [1]={ [1]={ [1]={ @@ -13316,7 +13418,7 @@ return { [1]="support_arcane_surge_gain_buff_on_mana_use_threshold" } }, - [425]={ + [431]={ [1]={ [1]={ limit={ @@ -13338,7 +13440,7 @@ return { [2]="support_arcane_surge_mana_regeneration_rate_+%" } }, - [426]={ + [432]={ [1]={ [1]={ [1]={ @@ -13372,7 +13474,7 @@ return { [1]="support_arcane_surge_duration_ms" } }, - [427]={ + [433]={ [1]={ [1]={ [1]={ @@ -13406,7 +13508,7 @@ return { [1]="support_cruelty_duration_ms" } }, - [428]={ + [434]={ [1]={ [1]={ limit={ @@ -13423,7 +13525,7 @@ return { [1]="support_innervate_gain_buff_on_killing_shocked_enemy" } }, - [429]={ + [435]={ [1]={ [1]={ limit={ @@ -13445,7 +13547,7 @@ return { [2]="support_innervate_maximum_added_lightning_damage" } }, - [430]={ + [436]={ [1]={ [1]={ [1]={ @@ -13479,7 +13581,7 @@ return { [1]="support_innervate_buff_duration_ms" } }, - [431]={ + [437]={ [1]={ [1]={ limit={ @@ -13496,7 +13598,7 @@ return { [1]="support_ruthless_big_hit_max_count" } }, - [432]={ + [438]={ [1]={ [1]={ limit={ @@ -13513,7 +13615,7 @@ return { [1]="support_ruthless_big_hit_damage_+%_final" } }, - [433]={ + [439]={ [1]={ [1]={ limit={ @@ -13530,7 +13632,7 @@ return { [1]="support_ruthless_blow_ailment_damage_from_melee_hits_+%_final" } }, - [434]={ + [440]={ [1]={ [1]={ [1]={ @@ -13551,7 +13653,7 @@ return { [1]="support_ruthless_big_hit_stun_base_duration_override_ms" } }, - [435]={ + [441]={ [1]={ [1]={ limit={ @@ -13568,7 +13670,7 @@ return { [1]="berserk_minimum_rage" } }, - [436]={ + [442]={ [1]={ [1]={ limit={ @@ -13598,7 +13700,7 @@ return { [1]="berserk_attack_damage_+%_final" } }, - [437]={ + [443]={ [1]={ [1]={ [1]={ @@ -13619,7 +13721,7 @@ return { [1]="berserk_rage_effect_+%" } }, - [438]={ + [444]={ [1]={ [1]={ limit={ @@ -13649,7 +13751,7 @@ return { [1]="berserk_attack_speed_+%_final" } }, - [439]={ + [445]={ [1]={ [1]={ limit={ @@ -13679,7 +13781,7 @@ return { [1]="berserk_movement_speed_+%_final" } }, - [440]={ + [446]={ [1]={ [1]={ limit={ @@ -13709,7 +13811,7 @@ return { [1]="berserk_base_damage_taken_+%_final" } }, - [441]={ + [447]={ [1]={ [1]={ [1]={ @@ -13730,7 +13832,7 @@ return { [1]="virtual_berserk_hundred_times_rage_loss_per_second" } }, - [442]={ + [448]={ [1]={ [1]={ limit={ @@ -13747,7 +13849,7 @@ return { [1]="berserk_rage_loss_+%_per_second" } }, - [443]={ + [449]={ [1]={ [1]={ [1]={ @@ -13768,7 +13870,7 @@ return { [1]="ancestral_slam_interval_duration" } }, - [444]={ + [450]={ [1]={ [1]={ limit={ @@ -13798,7 +13900,7 @@ return { [1]="support_ancestral_slam_big_hit_damage_with_hits_and_ailments_+%_final" } }, - [445]={ + [451]={ [1]={ [1]={ limit={ @@ -13828,7 +13930,7 @@ return { [1]="support_ancestral_slam_big_hit_area_+%" } }, - [446]={ + [452]={ [1]={ [1]={ limit={ @@ -13845,7 +13947,7 @@ return { [1]="tornado_damage_absorbed_%" } }, - [447]={ + [453]={ [1]={ [1]={ limit={ @@ -13862,7 +13964,7 @@ return { [1]="never_chill" } }, - [448]={ + [454]={ [1]={ [1]={ limit={ @@ -13879,7 +13981,7 @@ return { [1]="no_critical_strike_multiplier" } }, - [449]={ + [455]={ [1]={ [1]={ limit={ @@ -13909,7 +14011,7 @@ return { [1]="critical_strike_chance_+%_vs_bleeding_enemies" } }, - [450]={ + [456]={ [1]={ [1]={ limit={ @@ -13935,7 +14037,7 @@ return { [1]="barrage_final_volley_fires_x_additional_projectiles_simultaneously" } }, - [451]={ + [457]={ [1]={ [1]={ limit={ @@ -13952,7 +14054,7 @@ return { [1]="totem_%_maximum_life_inflicted_as_aoe_fire_damage_when_hit" } }, - [452]={ + [458]={ [1]={ [1]={ limit={ @@ -13978,7 +14080,7 @@ return { [1]="trap_%_chance_to_trigger_twice" } }, - [453]={ + [459]={ [1]={ [1]={ limit={ @@ -14008,7 +14110,7 @@ return { [1]="spectral_throw_projectile_deceleration_+%" } }, - [454]={ + [460]={ [1]={ [1]={ limit={ @@ -14038,7 +14140,7 @@ return { [1]="vaal_firestorm_gem_explosion_area_of_effect_+%_final" } }, - [455]={ + [461]={ [1]={ [1]={ limit={ @@ -14055,7 +14157,7 @@ return { [1]="rejuvenation_totem_%_life_regeneration_added_as_mana_regeneration" } }, - [456]={ + [462]={ [1]={ [1]={ limit={ @@ -14085,7 +14187,7 @@ return { [1]="active_skill_main_hand_weapon_damage_+%_final" } }, - [457]={ + [463]={ [1]={ [1]={ limit={ @@ -14102,7 +14204,7 @@ return { [1]="absolution_blast_chance_to_summon_on_hitting_rare_or_unique_%" } }, - [458]={ + [464]={ [1]={ [1]={ limit={ @@ -14132,7 +14234,7 @@ return { [1]="active_skill_added_damage_+%_final" } }, - [459]={ + [465]={ [1]={ [1]={ [1]={ @@ -14153,7 +14255,7 @@ return { [1]="active_skill_additional_critical_strike_chance_if_used_through_frostbolt" } }, - [460]={ + [466]={ [1]={ [1]={ [1]={ @@ -14191,7 +14293,7 @@ return { [1]="active_skill_ailment_damage_+%_final" } }, - [461]={ + [467]={ [1]={ [1]={ limit={ @@ -14315,7 +14417,7 @@ return { [3]="quality_display_active_skill_area_damage_quality_negated_from_gem" } }, - [462]={ + [468]={ [1]={ [1]={ limit={ @@ -14345,7 +14447,7 @@ return { [1]="active_skill_area_of_effect_+%_final_per_endurance_charge" } }, - [463]={ + [469]={ [1]={ [1]={ limit={ @@ -14375,7 +14477,7 @@ return { [1]="active_skill_area_of_effect_+%_final_when_cast_on_frostbolt" } }, - [464]={ + [470]={ [1]={ [1]={ [1]={ @@ -14964,6 +15066,174 @@ return { } }, text="Volley radius is {2} metres" + }, + [29]={ + [1]={ + k="locations_to_metres", + v=2 + }, + limit={ + [1]={ + [1]=7, + [2]=7 + }, + [2]={ + [1]=10, + [2]=10 + }, + [3]={ + [1]=0, + [2]=0 + } + }, + text="Arrows after the first fall within a Base radius of {1} metre" + }, + [30]={ + [1]={ + k="locations_to_metres", + v=2 + }, + limit={ + [1]={ + [1]=7, + [2]=7 + }, + [2]={ + [1]="!", + [2]=0 + }, + [3]={ + [1]=0, + [2]=0 + } + }, + text="Arrows after the first fall within a Base radius of {1} metres" + }, + [31]={ + [1]={ + k="locations_to_metres", + v=3 + }, + limit={ + [1]={ + [1]=7, + [2]=7 + }, + [2]={ + [1]="!", + [2]=0 + }, + [3]={ + [1]=10, + [2]=10 + } + }, + text="Arrows after the first fall within a radius of {2} metre" + }, + [32]={ + [1]={ + k="locations_to_metres", + v=3 + }, + limit={ + [1]={ + [1]=7, + [2]=7 + }, + [2]={ + [1]="!", + [2]=0 + }, + [3]={ + [1]=1, + [2]="#" + } + }, + text="Arrows after the first fall within a radius of {2} metres" + }, + [33]={ + [1]={ + k="locations_to_metres", + v=2 + }, + limit={ + [1]={ + [1]=8, + [2]=8 + }, + [2]={ + [1]=10, + [2]=10 + }, + [3]={ + [1]=0, + [2]=0 + } + }, + text="Base targeting area length is {1} metre" + }, + [34]={ + [1]={ + k="locations_to_metres", + v=2 + }, + limit={ + [1]={ + [1]=8, + [2]=8 + }, + [2]={ + [1]="!", + [2]=0 + }, + [3]={ + [1]=0, + [2]=0 + } + }, + text="Base targeting area length is {1} metres" + }, + [35]={ + [1]={ + k="locations_to_metres", + v=3 + }, + limit={ + [1]={ + [1]=8, + [2]=8 + }, + [2]={ + [1]="!", + [2]=0 + }, + [3]={ + [1]=10, + [2]=10 + } + }, + text="Targeting area length is {2} metre" + }, + [36]={ + [1]={ + k="locations_to_metres", + v=3 + }, + limit={ + [1]={ + [1]=8, + [2]=8 + }, + [2]={ + [1]="!", + [2]=0 + }, + [3]={ + [1]=1, + [2]="#" + } + }, + text="Targeting area length is {2} metres" } }, name="primary_radius", @@ -14973,7 +15243,7 @@ return { [3]="active_skill_area_of_effect_radius" } }, - [465]={ + [471]={ [1]={ [1]={ limit={ @@ -15003,7 +15273,7 @@ return { [1]="active_skill_attack_damage_+%_final_per_endurance_charge" } }, - [466]={ + [472]={ [1]={ [1]={ limit={ @@ -15020,7 +15290,7 @@ return { [1]="active_skill_base_area_length_+" } }, - [467]={ + [473]={ [1]={ [1]={ [1]={ @@ -15058,7 +15328,7 @@ return { [1]="active_skill_bleeding_damage_+%_final_in_blood_stance" } }, - [468]={ + [474]={ [1]={ [1]={ limit={ @@ -15127,7 +15397,7 @@ return { [2]="quality_display_active_skill_bleed_damage_final_is_gem" } }, - [469]={ + [475]={ [1]={ [1]={ limit={ @@ -15157,7 +15427,63 @@ return { [1]="active_skill_chill_as_though_damage_+%_final" } }, - [470]={ + [476]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% more Damage if Ward has not broken in the past 2 seconds" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% less Damage if Ward has not broken in the past 2 seconds" + } + }, + name="more_damage_if_ward_not_broken_2_seconds", + stats={ + [1]="active_skill_damage_+%_final_if_ward_has_not_broken_in_the_past_2_seconds" + } + }, + [477]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% more Damage against Stunned Enemies" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% less Damage against Stunned Enemies" + } + }, + name="boneshatter_damage_final_vs_stunned", + stats={ + [1]="active_skill_damage_+%_final_vs_stunned_enemies" + } + }, + [478]={ [1]={ [1]={ limit={ @@ -15187,7 +15513,7 @@ return { [1]="active_skill_damage_+%_when_cast_on_frostbolt" } }, - [471]={ + [479]={ [1]={ [1]={ limit={ @@ -15217,7 +15543,24 @@ return { [1]="active_skill_hit_ailment_damage_with_projectile_+%_final" } }, - [472]={ + [480]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% more Damage with Hits and Ailments per Curse on target" + } + }, + name="skill_deals_more_damage_per_curse_on_target", + stats={ + [1]="active_skill_hit_damage_+%_final_per_curse_on_target" + } + }, + [481]={ [1]={ [1]={ limit={ @@ -15247,7 +15590,7 @@ return { [1]="active_skill_if_used_through_frostbolt_damage_+%_final" } }, - [473]={ + [482]={ [1]={ [1]={ limit={ @@ -15299,7 +15642,7 @@ return { [2]="quality_display_active_skill_ignite_damage_is_gem" } }, - [474]={ + [483]={ [1]={ [1]={ limit={ @@ -15368,7 +15711,7 @@ return { [2]="quality_display_active_skill_poison_damage_final_is_gem" } }, - [475]={ + [484]={ [1]={ [1]={ limit={ @@ -15398,7 +15741,7 @@ return { [1]="active_skill_poison_duration_+%_final" } }, - [476]={ + [485]={ [1]={ [1]={ limit={ @@ -15428,7 +15771,7 @@ return { [1]="active_skill_projectile_damage_+%_final_for_each_remaining_chain" } }, - [477]={ + [486]={ [1]={ [1]={ limit={ @@ -15458,7 +15801,7 @@ return { [1]="active_skill_projectile_speed_+%_final" } }, - [478]={ + [487]={ [1]={ [1]={ [1]={ @@ -16047,6 +16390,174 @@ return { } }, text="Blade radius is {2} metres" + }, + [29]={ + [1]={ + k="locations_to_metres", + v=2 + }, + limit={ + [1]={ + [1]=7, + [2]=7 + }, + [2]={ + [1]=10, + [2]=10 + }, + [3]={ + [1]=0, + [2]=0 + } + }, + text="Impact Base radius is {1} metre" + }, + [30]={ + [1]={ + k="locations_to_metres", + v=2 + }, + limit={ + [1]={ + [1]=7, + [2]=7 + }, + [2]={ + [1]="!", + [2]=0 + }, + [3]={ + [1]=0, + [2]=0 + } + }, + text="Impact Base radius is {1} metres" + }, + [31]={ + [1]={ + k="locations_to_metres", + v=3 + }, + limit={ + [1]={ + [1]=7, + [2]=7 + }, + [2]={ + [1]="!", + [2]=0 + }, + [3]={ + [1]=10, + [2]=10 + } + }, + text="Impact radius is {2} metre" + }, + [32]={ + [1]={ + k="locations_to_metres", + v=3 + }, + limit={ + [1]={ + [1]=7, + [2]=7 + }, + [2]={ + [1]="!", + [2]=0 + }, + [3]={ + [1]=1, + [2]="#" + } + }, + text="Impact radius is {2} metres" + }, + [33]={ + [1]={ + k="locations_to_metres", + v=2 + }, + limit={ + [1]={ + [1]=8, + [2]=8 + }, + [2]={ + [1]=10, + [2]=10 + }, + [3]={ + [1]=0, + [2]=0 + } + }, + text="Base targeting area width is {1} metre" + }, + [34]={ + [1]={ + k="locations_to_metres", + v=2 + }, + limit={ + [1]={ + [1]=8, + [2]=8 + }, + [2]={ + [1]="!", + [2]=0 + }, + [3]={ + [1]=0, + [2]=0 + } + }, + text="Base targeting area width is {1} metres" + }, + [35]={ + [1]={ + k="locations_to_metres", + v=3 + }, + limit={ + [1]={ + [1]=8, + [2]=8 + }, + [2]={ + [1]="!", + [2]=0 + }, + [3]={ + [1]=10, + [2]=10 + } + }, + text="Targeting area width is {2} metre" + }, + [36]={ + [1]={ + k="locations_to_metres", + v=3 + }, + limit={ + [1]={ + [1]=8, + [2]=8 + }, + [2]={ + [1]="!", + [2]=0 + }, + [3]={ + [1]=1, + [2]="#" + } + }, + text="Targeting area width is {2} metres" } }, name="secondary_radius", @@ -16056,7 +16567,7 @@ return { [3]="active_skill_secondary_area_of_effect_radius" } }, - [479]={ + [488]={ [1]={ [1]={ limit={ @@ -16086,7 +16597,7 @@ return { [1]="active_skill_shock_as_though_damage_+%_final" } }, - [480]={ + [489]={ [1]={ [1]={ [1]={ @@ -16516,7 +17027,7 @@ return { [3]="active_skill_tertiary_area_of_effect_radius" } }, - [481]={ + [490]={ [1]={ [1]={ limit={ @@ -16546,7 +17057,7 @@ return { [1]="active_skill_trap_throwing_speed_+%_final" } }, - [482]={ + [491]={ [1]={ [1]={ limit={ @@ -16572,7 +17083,7 @@ return { [1]="add_endurance_charge_on_skill_hit_%" } }, - [483]={ + [492]={ [1]={ [1]={ limit={ @@ -16589,7 +17100,7 @@ return { [1]="add_frenzy_charge_on_skill_hit_%" } }, - [484]={ + [493]={ [1]={ [1]={ limit={ @@ -16606,7 +17117,7 @@ return { [1]="additional_block_chance_against_projectiles_%_per_steel_charge" } }, - [485]={ + [494]={ [1]={ [1]={ limit={ @@ -16623,7 +17134,7 @@ return { [1]="additional_chain_chance_%" } }, - [486]={ + [495]={ [1]={ [1]={ [1]={ @@ -16644,7 +17155,7 @@ return { [1]="additional_critical_strike_chance_permyriad_while_dead" } }, - [487]={ + [496]={ [1]={ [1]={ [1]={ @@ -16665,7 +17176,7 @@ return { [1]="additional_critical_strike_chance_permyriad_while_affected_by_elusive" } }, - [488]={ + [497]={ [1]={ [1]={ limit={ @@ -16713,7 +17224,7 @@ return { [1]="additional_projectiles_per_intensity" } }, - [489]={ + [498]={ [1]={ [1]={ limit={ @@ -16730,7 +17241,7 @@ return { [1]="additive_arrow_speed_modifiers_apply_to_area_of_effect" } }, - [490]={ + [499]={ [1]={ [1]={ limit={ @@ -16791,7 +17302,7 @@ return { [2]="active_skill_display_aegis_variation" } }, - [491]={ + [500]={ [1]={ [1]={ limit={ @@ -16821,7 +17332,7 @@ return { [1]="ailment_damage_+%_per_frenzy_charge" } }, - [492]={ + [501]={ [1]={ [1]={ limit={ @@ -16843,7 +17354,7 @@ return { [2]="alchemists_mark_poisoner_creates_caustic_ground_%_poison_damage" } }, - [493]={ + [502]={ [1]={ [1]={ [1]={ @@ -16872,7 +17383,7 @@ return { [1]="all_damage_can_ignite_freeze_shock" } }, - [494]={ + [503]={ [1]={ [1]={ limit={ @@ -16889,7 +17400,7 @@ return { [1]="all_damage_can_sap" } }, - [495]={ + [504]={ [1]={ [1]={ limit={ @@ -16906,7 +17417,7 @@ return { [1]="already_split_if_no_steel_shards" } }, - [496]={ + [505]={ [1]={ [1]={ limit={ @@ -16923,7 +17434,7 @@ return { [1]="always_stun_enemies_that_are_on_full_life" } }, - [497]={ + [506]={ [1]={ [1]={ limit={ @@ -16953,7 +17464,7 @@ return { [1]="ancestor_totem_buff_effect_+%" } }, - [498]={ + [507]={ [1]={ [1]={ limit={ @@ -16983,7 +17494,7 @@ return { [1]="ancestor_totem_parent_activation_range_+%" } }, - [499]={ + [508]={ [1]={ [1]={ [1]={ @@ -17017,7 +17528,7 @@ return { [1]="ancestral_buff_action_speed_+%_minimum_value" } }, - [500]={ + [509]={ [1]={ [1]={ limit={ @@ -17034,7 +17545,7 @@ return { [1]="ancestral_buff_armour_%_applies_to_all_damage_from_hits" } }, - [501]={ + [510]={ [1]={ [1]={ [1]={ @@ -17055,7 +17566,7 @@ return { [1]="ancestral_buff_base_mana_regeneration_rate_per_minute" } }, - [502]={ + [511]={ [1]={ [1]={ [1]={ @@ -17076,7 +17587,7 @@ return { [1]="ancestral_buff_base_rage_regeneration_per_minute" } }, - [503]={ + [512]={ [1]={ [1]={ [1]={ @@ -17110,7 +17621,7 @@ return { [1]="ancestral_buff_base_spell_damage_%_suppressed" } }, - [504]={ + [513]={ [1]={ [1]={ limit={ @@ -17127,7 +17638,7 @@ return { [1]="ancestral_buff_damage_removed_from_your_nearest_totem_before_life_or_es_%" } }, - [505]={ + [514]={ [1]={ [1]={ limit={ @@ -17153,7 +17664,7 @@ return { [1]="ancestral_buff_flask_charges_recovered_per_3_seconds" } }, - [506]={ + [515]={ [1]={ [1]={ limit={ @@ -17170,7 +17681,7 @@ return { [1]="ancestral_buff_leech_%_is_instant" } }, - [507]={ + [516]={ [1]={ [1]={ limit={ @@ -17187,7 +17698,7 @@ return { [1]="ancestral_buff_recover_%_of_maximum_life_mana_energy_shield_on_block" } }, - [508]={ + [517]={ [1]={ [1]={ limit={ @@ -17217,7 +17728,7 @@ return { [1]="ancestral_buff_travel_skill_cooldown_speed_+%" } }, - [509]={ + [518]={ [1]={ [1]={ limit={ @@ -17247,7 +17758,7 @@ return { [1]="ancestral_embrace_effect_+%_per_arohongui_tattoo" } }, - [510]={ + [519]={ [1]={ [1]={ limit={ @@ -17277,7 +17788,7 @@ return { [1]="ancestral_embrace_effect_+%_per_hinekora_tattoo" } }, - [511]={ + [520]={ [1]={ [1]={ limit={ @@ -17307,7 +17818,7 @@ return { [1]="ancestral_embrace_effect_+%_per_kitava_tattoo" } }, - [512]={ + [521]={ [1]={ [1]={ limit={ @@ -17337,7 +17848,7 @@ return { [1]="ancestral_embrace_effect_+%_per_ngamahu_tattoo" } }, - [513]={ + [522]={ [1]={ [1]={ limit={ @@ -17367,7 +17878,7 @@ return { [1]="ancestral_embrace_effect_+%_per_ramako_tattoo" } }, - [514]={ + [523]={ [1]={ [1]={ limit={ @@ -17397,7 +17908,7 @@ return { [1]="ancestral_embrace_effect_+%_per_rongokurai_tattoo" } }, - [515]={ + [524]={ [1]={ [1]={ limit={ @@ -17427,7 +17938,7 @@ return { [1]="ancestral_embrace_effect_+%_per_tasalio_tattoo" } }, - [516]={ + [525]={ [1]={ [1]={ limit={ @@ -17457,7 +17968,7 @@ return { [1]="ancestral_embrace_effect_+%_per_tawhoa_tattoo" } }, - [517]={ + [526]={ [1]={ [1]={ limit={ @@ -17487,7 +17998,7 @@ return { [1]="ancestral_embrace_effect_+%_per_tukohama_tattoo" } }, - [518]={ + [527]={ [1]={ [1]={ limit={ @@ -17517,7 +18028,7 @@ return { [1]="ancestral_embrace_effect_+%_per_valako_tattoo" } }, - [519]={ + [528]={ [1]={ [1]={ [1]={ @@ -17555,7 +18066,7 @@ return { [1]="ancestral_slam_stun_threshold_reduction_+%" } }, - [520]={ + [529]={ [1]={ [1]={ limit={ @@ -17572,7 +18083,7 @@ return { [1]="animate_weapon_can_only_animate_range_weapons" } }, - [521]={ + [530]={ [1]={ [1]={ limit={ @@ -17589,7 +18100,7 @@ return { [1]="animate_weapon_chance_to_create_additional_copy_%" } }, - [522]={ + [531]={ [1]={ [1]={ [1]={ @@ -17610,7 +18121,7 @@ return { [1]="animated_ethereal_blades_have_additional_critical_strike_chance" } }, - [523]={ + [532]={ [1]={ [1]={ limit={ @@ -17636,7 +18147,7 @@ return { [1]="apply_enemy_impale_damage_to_nearby_enemies_on_killing_blow_%_chance" } }, - [524]={ + [533]={ [1]={ [1]={ limit={ @@ -17653,7 +18164,7 @@ return { [1]="apply_linked_curses_with_dark_ritual" } }, - [525]={ + [534]={ [1]={ [1]={ limit={ @@ -17670,7 +18181,7 @@ return { [1]="apply_overpowered_on_enemy_block_reduced_block_and_spell_block_%" } }, - [526]={ + [535]={ [1]={ [1]={ limit={ @@ -17700,7 +18211,7 @@ return { [1]="arc_damage_+%_final_for_each_remaining_chain" } }, - [527]={ + [536]={ [1]={ [1]={ limit={ @@ -17730,7 +18241,7 @@ return { [1]="arc_damage_+%_final_per_chain" } }, - [528]={ + [537]={ [1]={ [1]={ limit={ @@ -17747,7 +18258,7 @@ return { [1]="arcane_cloak_consume_%_of_mana" } }, - [529]={ + [538]={ [1]={ [1]={ limit={ @@ -17764,7 +18275,7 @@ return { [1]="arcane_cloak_damage_absorbed_%" } }, - [530]={ + [539]={ [1]={ [1]={ [1]={ @@ -17785,7 +18296,7 @@ return { [1]="arcane_cloak_gain_%_of_consumed_mana_as_life_regenerated_per_second" } }, - [531]={ + [540]={ [1]={ [1]={ limit={ @@ -17802,7 +18313,7 @@ return { [1]="arcane_cloak_gain_%_of_consumed_mana_as_lightning_damage" } }, - [532]={ + [541]={ [1]={ [1]={ [1]={ @@ -17823,7 +18334,7 @@ return { [1]="arctic_armour_chill_when_hit_duration" } }, - [533]={ + [542]={ [1]={ [1]={ limit={ @@ -17840,7 +18351,7 @@ return { [1]="arctic_armour_freeze_enemies_when_you_are_hit_%_chance" } }, - [534]={ + [543]={ [1]={ [1]={ limit={ @@ -17866,7 +18377,7 @@ return { [1]="arctic_breath_maximum_number_of_skulls_allowed" } }, - [535]={ + [544]={ [1]={ [1]={ limit={ @@ -17896,7 +18407,7 @@ return { [1]="area_of_effect_+%_final_per_removable_power_frenzy_or_endurance_charge" } }, - [536]={ + [545]={ [1]={ [1]={ limit={ @@ -17926,7 +18437,7 @@ return { [1]="area_of_effect_+%_per_frost_fury_stage" } }, - [537]={ + [546]={ [1]={ [1]={ limit={ @@ -17956,7 +18467,7 @@ return { [1]="area_of_effect_+%_when_cast_on_frostbolt" } }, - [538]={ + [547]={ [1]={ [1]={ limit={ @@ -17986,7 +18497,7 @@ return { [1]="area_of_effect_+%_while_not_dual_wielding" } }, - [539]={ + [548]={ [1]={ [1]={ limit={ @@ -18003,7 +18514,7 @@ return { [1]="artillery_ballista_cross_strafe_pattern" } }, - [540]={ + [549]={ [1]={ [1]={ limit={ @@ -18029,7 +18540,7 @@ return { [1]="artillery_ballista_number_of_arrow_targets" } }, - [541]={ + [550]={ [1]={ [1]={ limit={ @@ -18059,7 +18570,7 @@ return { [1]="attack_and_cast_speed_+%" } }, - [542]={ + [551]={ [1]={ [1]={ limit={ @@ -18089,7 +18600,7 @@ return { [1]="attack_damage_+%" } }, - [543]={ + [552]={ [1]={ [1]={ [1]={ @@ -18135,7 +18646,7 @@ return { [1]="attack_damage_taken_+%_final_from_enemies_unaffected_by_sand_armour" } }, - [544]={ + [553]={ [1]={ [1]={ limit={ @@ -18157,7 +18668,7 @@ return { [2]="attack_maximum_added_physical_damage_with_weapons_per_trauma" } }, - [545]={ + [554]={ [1]={ [1]={ [1]={ @@ -18182,7 +18693,7 @@ return { [1]="attack_skill_mana_leech_from_any_damage_permyriad" } }, - [546]={ + [555]={ [1]={ [1]={ limit={ @@ -18212,7 +18723,7 @@ return { [1]="attack_speed_+%_per_maximum_totem" } }, - [547]={ + [556]={ [1]={ [1]={ limit={ @@ -18238,7 +18749,7 @@ return { [1]="attack_trigger_on_hitting_bleeding_enemy_%" } }, - [548]={ + [557]={ [1]={ [1]={ [1]={ @@ -18272,7 +18783,7 @@ return { [1]="attacks_impale_on_hit_%_chance" } }, - [549]={ + [558]={ [1]={ [1]={ limit={ @@ -18289,7 +18800,7 @@ return { [1]="automation_behaviour" } }, - [550]={ + [559]={ [1]={ [1]={ [1]={ @@ -18323,7 +18834,7 @@ return { [1]="avoid_damage_%" } }, - [551]={ + [560]={ [1]={ [1]={ limit={ @@ -18349,7 +18860,7 @@ return { [1]="avoid_interruption_while_using_this_skill_%" } }, - [552]={ + [561]={ [1]={ [1]={ [1]={ @@ -18370,7 +18881,7 @@ return { [1]="ball_lightning_superball_%_chance" } }, - [553]={ + [562]={ [1]={ [1]={ limit={ @@ -18400,7 +18911,7 @@ return { [1]="barrage_support_projectile_spread_+%" } }, - [554]={ + [563]={ [1]={ [1]={ limit={ @@ -18417,7 +18928,7 @@ return { [1]="base_chance_to_deal_triple_damage_%" } }, - [555]={ + [564]={ [1]={ [1]={ limit={ @@ -18434,7 +18945,7 @@ return { [1]="base_chance_to_destroy_corpse_on_kill_%_vs_ignited" } }, - [556]={ + [565]={ [1]={ [1]={ [1]={ @@ -18455,7 +18966,7 @@ return { [1]="base_cooldown_modifier_ms" } }, - [557]={ + [566]={ [1]={ [1]={ limit={ @@ -18485,7 +18996,7 @@ return { [1]="base_cooldown_speed_+%" } }, - [558]={ + [567]={ [1]={ [1]={ limit={ @@ -18515,7 +19026,7 @@ return { [1]="base_damage_taken_+%" } }, - [559]={ + [568]={ [1]={ [1]={ limit={ @@ -18532,7 +19043,7 @@ return { [1]="base_deal_no_chaos_damage" } }, - [560]={ + [569]={ [1]={ [1]={ [1]={ @@ -18557,7 +19068,7 @@ return { [1]="base_energy_shield_leech_from_spell_damage_permyriad" } }, - [561]={ + [570]={ [1]={ [1]={ limit={ @@ -18583,7 +19094,7 @@ return { [1]="base_extra_damage_rolls" } }, - [562]={ + [571]={ [1]={ [1]={ [1]={ @@ -18617,7 +19128,7 @@ return { [1]="galvanic_field_retargeting_delay_ms" } }, - [563]={ + [572]={ [1]={ [1]={ [1]={ @@ -18651,7 +19162,7 @@ return { [1]="base_inflict_cold_exposure_on_hit_%_chance" } }, - [564]={ + [573]={ [1]={ [1]={ [1]={ @@ -18685,7 +19196,7 @@ return { [1]="base_inflict_fire_exposure_on_hit_%_chance" } }, - [565]={ + [574]={ [1]={ [1]={ [1]={ @@ -18719,7 +19230,7 @@ return { [1]="base_inflict_lightning_exposure_on_hit_%_chance" } }, - [566]={ + [575]={ [1]={ [1]={ [1]={ @@ -18744,7 +19255,24 @@ return { [1]="base_life_leech_from_chaos_damage_permyriad" } }, - [567]={ + [576]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Maximum {0} Living Lightning Minions" + } + }, + name="living_lightning_max", + stats={ + [1]="base_number_of_living_lightning_allowed" + } + }, + [577]={ [1]={ [1]={ limit={ @@ -18770,7 +19298,7 @@ return { [1]="base_number_of_sacred_wisps_allowed" } }, - [568]={ + [578]={ [1]={ [1]={ limit={ @@ -18796,7 +19324,7 @@ return { [1]="number_of_support_ghosts_allowed" } }, - [569]={ + [579]={ [1]={ [1]={ [1]={ @@ -18907,7 +19435,7 @@ return { [2]="smite_lightning_target_range" } }, - [570]={ + [580]={ [1]={ [1]={ limit={ @@ -18924,7 +19452,7 @@ return { [1]="bear_and_siphoning_trap_debuff_grants_-%_cooldown_speed" } }, - [571]={ + [581]={ [1]={ [1]={ limit={ @@ -18954,7 +19482,7 @@ return { [1]="blackhole_damage_taken_+%" } }, - [572]={ + [582]={ [1]={ [1]={ [1]={ @@ -18979,7 +19507,7 @@ return { [1]="blackhole_hinder_%" } }, - [573]={ + [583]={ [1]={ [1]={ [1]={ @@ -19013,7 +19541,7 @@ return { [1]="blackhole_tick_rate_ms" } }, - [574]={ + [584]={ [1]={ [1]={ limit={ @@ -19030,7 +19558,7 @@ return { [1]="blade_blast_detonated_blades_not_removed_%_chance" } }, - [575]={ + [585]={ [1]={ [1]={ limit={ @@ -19060,7 +19588,7 @@ return { [1]="blade_burst_area_of_effect_+%_final_per_blade_vortex_blade_detonated" } }, - [576]={ + [586]={ [1]={ [1]={ limit={ @@ -19090,7 +19618,7 @@ return { [1]="blade_flurry_critical_strike_chance_per_stage_+%_final" } }, - [577]={ + [587]={ [1]={ [1]={ limit={ @@ -19107,7 +19635,7 @@ return { [1]="blade_flurry_critical_strike_multiplier_+_while_at_max_stages" } }, - [578]={ + [588]={ [1]={ [1]={ limit={ @@ -19137,7 +19665,7 @@ return { [1]="blade_flurry_damage_+%_final_while_at_max_stages" } }, - [579]={ + [589]={ [1]={ [1]={ limit={ @@ -19167,7 +19695,7 @@ return { [1]="blade_flurry_elemental_damage_+%_while_channeling" } }, - [580]={ + [590]={ [1]={ [1]={ limit={ @@ -19197,7 +19725,7 @@ return { [1]="blade_flurry_final_flurry_area_of_effect_+%" } }, - [581]={ + [591]={ [1]={ [1]={ limit={ @@ -19214,7 +19742,7 @@ return { [1]="blade_vortex_additional_blade_chance_%" } }, - [582]={ + [592]={ [1]={ [1]={ limit={ @@ -19244,7 +19772,7 @@ return { [1]="blade_vortex_critical_strike_chance_+%_per_blade" } }, - [583]={ + [593]={ [1]={ [1]={ limit={ @@ -19274,7 +19802,7 @@ return { [1]="blade_vortex_damage_+%_with_5_or_fewer_blades" } }, - [584]={ + [594]={ [1]={ [1]={ [1]={ @@ -19304,7 +19832,7 @@ return { [1]="blade_vortex_hit_rate_ms" } }, - [585]={ + [595]={ [1]={ [1]={ [1]={ @@ -19338,7 +19866,7 @@ return { [1]="bladefall_create_X_lingering_blades_per_volley" } }, - [586]={ + [596]={ [1]={ [1]={ limit={ @@ -19368,7 +19896,7 @@ return { [1]="bladefall_critical_strike_chance_+%_per_stage" } }, - [587]={ + [597]={ [1]={ [1]={ [1]={ @@ -19402,7 +19930,7 @@ return { [1]="bladefall_volley_frequency_ms" } }, - [588]={ + [598]={ [1]={ [1]={ limit={ @@ -19432,7 +19960,7 @@ return { [1]="bladefall_volley_gap_distance_+%" } }, - [589]={ + [599]={ [1]={ [1]={ [1]={ @@ -19466,7 +19994,7 @@ return { [1]="bladefall_volleys_needed_per_vestige_blade" } }, - [590]={ + [600]={ [1]={ [1]={ limit={ @@ -19483,7 +20011,7 @@ return { [1]="bladestorm_and_rage_vortex_hinders_and_unnerves_enemies_within" } }, - [591]={ + [601]={ [1]={ [1]={ limit={ @@ -19513,7 +20041,7 @@ return { [1]="bladestorm_attack_speed_+%_final_while_in_bloodstorm" } }, - [592]={ + [602]={ [1]={ [1]={ limit={ @@ -19543,7 +20071,7 @@ return { [1]="bladestorm_blood_stance_ailment_damage_+%" } }, - [593]={ + [603]={ [1]={ [1]={ limit={ @@ -19578,7 +20106,7 @@ return { [2]="quality_display_bladestorm_is_gem" } }, - [594]={ + [604]={ [1]={ [1]={ limit={ @@ -19608,7 +20136,7 @@ return { [1]="bladestorm_movement_speed_+%_while_in_sandstorm" } }, - [595]={ + [605]={ [1]={ [1]={ limit={ @@ -19638,7 +20166,7 @@ return { [1]="bladestorm_sandstorm_movement_speed_+%" } }, - [596]={ + [606]={ [1]={ [1]={ [1]={ @@ -19676,7 +20204,7 @@ return { [1]="bladestorm_storm_damage_+%_final" } }, - [597]={ + [607]={ [1]={ [1]={ limit={ @@ -19706,7 +20234,7 @@ return { [1]="blast_rain_area_of_effect_+%" } }, - [598]={ + [608]={ [1]={ [1]={ limit={ @@ -19736,7 +20264,7 @@ return { [1]="blast_rain_damage_+%_vs_distant_enemies" } }, - [599]={ + [609]={ [1]={ [1]={ limit={ @@ -19826,7 +20354,7 @@ return { [3]="cannot_cause_bleeding" } }, - [600]={ + [610]={ [1]={ [1]={ limit={ @@ -19843,7 +20371,7 @@ return { [1]="bleeding_damage_+100%_final_chance" } }, - [601]={ + [611]={ [1]={ [1]={ limit={ @@ -19873,7 +20401,7 @@ return { [1]="bleeding_damage_+%" } }, - [602]={ + [612]={ [1]={ [1]={ [1]={ @@ -19911,7 +20439,7 @@ return { [1]="blind_effect_+%" } }, - [603]={ + [613]={ [1]={ [1]={ [1]={ @@ -19949,7 +20477,7 @@ return { [1]="blood_ground_leaving_area_lasts_for_ms" } }, - [604]={ + [614]={ [1]={ [1]={ [1]={ @@ -19970,7 +20498,7 @@ return { [1]="blood_rage_life_leech_from_elemental_damage_permyriad" } }, - [605]={ + [615]={ [1]={ [1]={ limit={ @@ -20018,7 +20546,7 @@ return { [2]="reap_life_%_granted_on_death_with_debuff" } }, - [606]={ + [616]={ [1]={ [1]={ [1]={ @@ -20052,7 +20580,7 @@ return { [1]="blood_sand_triggered_blind_on_attack_chance_%" } }, - [607]={ + [617]={ [1]={ [1]={ [1]={ @@ -20086,7 +20614,7 @@ return { [1]="blood_sand_triggered_change_bleed_on_attack_chance_%" } }, - [608]={ + [618]={ [1]={ [1]={ limit={ @@ -20116,7 +20644,7 @@ return { [1]="blood_scythe_cost_+%_final_per_charge" } }, - [609]={ + [619]={ [1]={ [1]={ limit={ @@ -20168,7 +20696,7 @@ return { [2]="quality_display_reap_is_gem" } }, - [610]={ + [620]={ [1]={ [1]={ limit={ @@ -20185,7 +20713,7 @@ return { [1]="blood_surge_refresh_on_total_life_spent" } }, - [611]={ + [621]={ [1]={ [1]={ limit={ @@ -20246,7 +20774,7 @@ return { [2]="quality_display_exsanguinate_beam_targets_is_gem" } }, - [612]={ + [622]={ [1]={ [1]={ limit={ @@ -20276,7 +20804,7 @@ return { [1]="bodyswap_damage_+%_when_not_consuming_corpse" } }, - [613]={ + [623]={ [1]={ [1]={ limit={ @@ -20298,7 +20826,7 @@ return { [2]="bone_golem_damage_per_non_golem_minion_nearby_maximum_%" } }, - [614]={ + [624]={ [1]={ [1]={ limit={ @@ -20320,7 +20848,7 @@ return { [2]="bone_golem_grants_minion_maximum_added_physical_damage" } }, - [615]={ + [625]={ [1]={ [1]={ limit={ @@ -20337,7 +20865,7 @@ return { [1]="boneshatter_chance_to_gain_+1_trauma" } }, - [616]={ + [626]={ [1]={ [1]={ limit={ @@ -20354,7 +20882,7 @@ return { [1]="brand_cannot_be_recalled" } }, - [617]={ + [627]={ [1]={ [1]={ limit={ @@ -20371,7 +20899,7 @@ return { [1]="brand_detonate_faster_activation_%_per_second" } }, - [618]={ + [628]={ [1]={ [1]={ limit={ @@ -20388,7 +20916,7 @@ return { [1]="brand_detonate_faster_duration_%_per_second" } }, - [619]={ + [629]={ [1]={ [1]={ limit={ @@ -20405,7 +20933,7 @@ return { [1]="brand_recall_spend_%_of_recalled_brands_cost" } }, - [620]={ + [630]={ [1]={ [1]={ limit={ @@ -20422,7 +20950,7 @@ return { [1]="branded_enemy_explode_for_25%_life_as_chaos_on_death_chance_%" } }, - [621]={ + [631]={ [1]={ [1]={ limit={ @@ -20448,7 +20976,7 @@ return { [1]="buff_grants_smite_additional_lightning_targets" } }, - [622]={ + [632]={ [1]={ [1]={ [1]={ @@ -20474,7 +21002,7 @@ return { [2]="call_of_steel_reload_time" } }, - [623]={ + [633]={ [1]={ [1]={ limit={ @@ -20491,7 +21019,7 @@ return { [1]="call_to_arms_behaviour" } }, - [624]={ + [634]={ [1]={ [1]={ limit={ @@ -20508,7 +21036,7 @@ return { [1]="cannot_knockback" } }, - [625]={ + [635]={ [1]={ [1]={ limit={ @@ -20525,7 +21053,7 @@ return { [1]="cannot_poison_poisoned_enemies" } }, - [626]={ + [636]={ [1]={ [1]={ limit={ @@ -20551,7 +21079,7 @@ return { [1]="cast_on_crit_%" } }, - [627]={ + [637]={ [1]={ [1]={ limit={ @@ -20577,7 +21105,7 @@ return { [1]="cast_on_flask_use_%" } }, - [628]={ + [638]={ [1]={ [1]={ limit={ @@ -20594,7 +21122,7 @@ return { [1]="cast_on_gain_skill" } }, - [629]={ + [639]={ [1]={ [1]={ limit={ @@ -20620,7 +21148,7 @@ return { [1]="chain_grab_number_of_targets" } }, - [630]={ + [640]={ [1]={ [1]={ limit={ @@ -20646,7 +21174,7 @@ return { [1]="chain_hook_attaches_to_X_targets" } }, - [631]={ + [641]={ [1]={ [1]={ limit={ @@ -20663,7 +21191,7 @@ return { [1]="chain_hook_attachment_rage_to_gain_per_hit" } }, - [632]={ + [642]={ [1]={ [1]={ [1]={ @@ -20697,7 +21225,7 @@ return { [1]="chain_hook_attachment_range" } }, - [633]={ + [643]={ [1]={ [1]={ limit={ @@ -20723,7 +21251,7 @@ return { [1]="chain_hook_max_attached_targets" } }, - [634]={ + [644]={ [1]={ [1]={ limit={ @@ -20753,7 +21281,7 @@ return { [1]="chain_hook_range_+%" } }, - [635]={ + [645]={ [1]={ [1]={ limit={ @@ -20770,7 +21298,7 @@ return { [1]="chain_strike_cone_radius_+_per_x_rage" } }, - [636]={ + [646]={ [1]={ [1]={ [1]={ @@ -20821,7 +21349,7 @@ return { [2]="quality_display_chain_hook_is_gem" } }, - [637]={ + [647]={ [1]={ [1]={ limit={ @@ -20851,7 +21379,7 @@ return { [1]="chaining_range_+%" } }, - [638]={ + [648]={ [1]={ [1]={ [1]={ @@ -20872,7 +21400,7 @@ return { [1]="chance_for_extra_damage_roll_%" } }, - [639]={ + [649]={ [1]={ [1]={ limit={ @@ -20889,7 +21417,7 @@ return { [1]="chance_for_melee_skeletons_to_summon_as_archer_skeletons_%" } }, - [640]={ + [650]={ [1]={ [1]={ limit={ @@ -20915,7 +21443,7 @@ return { [1]="chance_%_when_poison_to_also_poison_another_enemy" } }, - [641]={ + [651]={ [1]={ [1]={ [1]={ @@ -20957,7 +21485,7 @@ return { [1]="chance_to_bleed_on_hit_%_chance_in_blood_stance" } }, - [642]={ + [652]={ [1]={ [1]={ [1]={ @@ -20978,7 +21506,7 @@ return { [1]="chance_to_bleed_on_hit_%_vs_maimed" } }, - [643]={ + [653]={ [1]={ [1]={ limit={ @@ -20995,7 +21523,7 @@ return { [1]="chance_to_cast_a_stance_change_on_perforate_or_lacerate_%" } }, - [644]={ + [654]={ [1]={ [1]={ limit={ @@ -21012,7 +21540,7 @@ return { [1]="chance_to_deal_double_damage_%" } }, - [645]={ + [655]={ [1]={ [1]={ limit={ @@ -21029,7 +21557,7 @@ return { [1]="chance_to_deal_double_damage_%_per_10_intelligence" } }, - [646]={ + [656]={ [1]={ [1]={ limit={ @@ -21046,7 +21574,7 @@ return { [1]="chance_to_deal_double_damage_%_vs_bleeding_enemies" } }, - [647]={ + [657]={ [1]={ [1]={ limit={ @@ -21063,7 +21591,7 @@ return { [1]="chance_to_double_stun_duration_%" } }, - [648]={ + [658]={ [1]={ [1]={ limit={ @@ -21080,7 +21608,7 @@ return { [1]="chance_to_fork_extra_projectile_%" } }, - [649]={ + [659]={ [1]={ [1]={ limit={ @@ -21226,7 +21754,7 @@ return { [3]="active_skill_cooldown_bypass_type_override_to_power_charge" } }, - [650]={ + [660]={ [1]={ [1]={ limit={ @@ -21252,7 +21780,7 @@ return { [1]="chance_to_gain_power_charge_on_rare_or_unique_enemy_hit_%" } }, - [651]={ + [661]={ [1]={ [1]={ limit={ @@ -21269,7 +21797,7 @@ return { [1]="chance_to_ignore_hexproof_%" } }, - [652]={ + [662]={ [1]={ [1]={ [1]={ @@ -21290,7 +21818,7 @@ return { [1]="chance_to_inflict_additional_impale_%" } }, - [653]={ + [663]={ [1]={ [1]={ limit={ @@ -21316,7 +21844,7 @@ return { [1]="chance_to_inflict_scorch_brittle_sap_%" } }, - [654]={ + [664]={ [1]={ [1]={ [1]={ @@ -21362,7 +21890,7 @@ return { [1]="chance_to_sap_%_vs_enemies_in_chilling_areas" } }, - [655]={ + [665]={ [1]={ [1]={ [1]={ @@ -21396,7 +21924,7 @@ return { [1]="chance_to_scorch_%" } }, - [656]={ + [666]={ [1]={ [1]={ limit={ @@ -21422,7 +21950,7 @@ return { [1]="chance_to_summon_support_ghost_on_hitting_rare_or_unique_%" } }, - [657]={ + [667]={ [1]={ [1]={ limit={ @@ -21448,7 +21976,7 @@ return { [1]="chance_to_summon_support_ghost_on_killing_blow_%" } }, - [658]={ + [668]={ [1]={ [1]={ limit={ @@ -21465,7 +21993,7 @@ return { [1]="chance_to_trigger_level_20_blink_arrow_on_attack_from_mirror_arrow_%" } }, - [659]={ + [669]={ [1]={ [1]={ limit={ @@ -21482,7 +22010,7 @@ return { [1]="chance_to_trigger_level_20_body_swap_on_detonate_dead_cast_%" } }, - [660]={ + [670]={ [1]={ [1]={ limit={ @@ -21499,7 +22027,7 @@ return { [1]="chance_to_trigger_level_20_bone_corpses_on_stun_with_heavy_strike_or_boneshatter_%" } }, - [661]={ + [671]={ [1]={ [1]={ limit={ @@ -21516,7 +22044,7 @@ return { [1]="chance_to_trigger_level_20_gravity_sphere_on_cast_with_storm_burst_or_divine_ire_%" } }, - [662]={ + [672]={ [1]={ [1]={ limit={ @@ -21533,7 +22061,7 @@ return { [1]="chance_to_trigger_level_20_hydrosphere_while_channeling_winter_orb_%" } }, - [663]={ + [673]={ [1]={ [1]={ limit={ @@ -21550,7 +22078,7 @@ return { [1]="chance_to_trigger_level_20_ice_nova_on_final_burst_of_glacial_cascade_%" } }, - [664]={ + [674]={ [1]={ [1]={ limit={ @@ -21567,7 +22095,7 @@ return { [1]="chance_to_trigger_level_20_mirror_arrow_on_attack_from_blink_arrow_%" } }, - [665]={ + [675]={ [1]={ [1]={ limit={ @@ -21584,7 +22112,7 @@ return { [1]="chance_to_trigger_level_20_tornado_on_attack_from_split_arrow_or_tornado_shot_%" } }, - [666]={ + [676]={ [1]={ [1]={ limit={ @@ -21610,7 +22138,7 @@ return { [1]="chance_to_trigger_on_animate_guardian_kill_%" } }, - [667]={ + [677]={ [1]={ [1]={ limit={ @@ -21636,7 +22164,7 @@ return { [1]="chance_to_trigger_on_animate_weapon_kill_%" } }, - [668]={ + [678]={ [1]={ [1]={ [1]={ @@ -21670,7 +22198,7 @@ return { [1]="chance_to_unnerve_on_hit_%" } }, - [669]={ + [679]={ [1]={ [1]={ limit={ @@ -21687,7 +22215,7 @@ return { [1]="chaos_damage_resisted_by_highest_resistance" } }, - [670]={ + [680]={ [1]={ [1]={ limit={ @@ -21704,7 +22232,7 @@ return { [1]="chaos_damage_resisted_by_lowest_resistance" } }, - [671]={ + [681]={ [1]={ [1]={ limit={ @@ -21764,7 +22292,7 @@ return { [2]="quality_display_charged_attack_is_gem" } }, - [672]={ + [682]={ [1]={ [1]={ limit={ @@ -21781,7 +22309,7 @@ return { [1]="charged_dash_channelling_damage_at_full_stacks_+%_final" } }, - [673]={ + [683]={ [1]={ [1]={ limit={ @@ -21798,7 +22326,7 @@ return { [1]="charged_dash_damage_+%_final_per_stack" } }, - [674]={ + [684]={ [1]={ [1]={ limit={ @@ -21837,7 +22365,7 @@ return { [2]="quality_display_chaged_dash_is_gem" } }, - [675]={ + [685]={ [1]={ [1]={ [1]={ @@ -21858,7 +22386,7 @@ return { [1]="chilled_ground_base_magnitude_override" } }, - [676]={ + [686]={ [1]={ [1]={ limit={ @@ -21888,7 +22416,7 @@ return { [1]="chilling_area_movement_velocity_+%" } }, - [677]={ + [687]={ [1]={ [1]={ limit={ @@ -21918,7 +22446,7 @@ return { [1]="chronomancer_buff_cooldown_speed_+%" } }, - [678]={ + [688]={ [1]={ [1]={ limit={ @@ -21948,7 +22476,7 @@ return { [1]="circle_of_power_critical_strike_chance_+%_per_stage" } }, - [679]={ + [689]={ [1]={ [1]={ limit={ @@ -22017,7 +22545,7 @@ return { [2]="quality_display_circle_of_power_damage_is_gem" } }, - [680]={ + [690]={ [1]={ [1]={ limit={ @@ -22034,7 +22562,7 @@ return { [1]="circle_of_power_mana_spend_per_upgrade" } }, - [681]={ + [691]={ [1]={ [1]={ limit={ @@ -22082,7 +22610,7 @@ return { [2]="quality_display_circle_of_power_is_gem" } }, - [682]={ + [692]={ [1]={ [1]={ limit={ @@ -22104,7 +22632,7 @@ return { [2]="circle_of_power_max_added_lightning_per_stage" } }, - [683]={ + [693]={ [1]={ [1]={ limit={ @@ -22134,7 +22662,7 @@ return { [1]="cleave_area_of_effect_+%_final_from_executioner" } }, - [684]={ + [694]={ [1]={ [1]={ [1]={ @@ -22172,7 +22700,7 @@ return { [1]="cleave_damage_against_enemies_on_low_life_+%_final_from_executioner" } }, - [685]={ + [695]={ [1]={ [1]={ [1]={ @@ -22193,7 +22721,7 @@ return { [1]="cleave_+1_base_radius_per_nearby_enemy_up_to_10" } }, - [686]={ + [696]={ [1]={ [1]={ [1]={ @@ -22231,7 +22759,7 @@ return { [1]="cold_ailment_duration_+%" } }, - [687]={ + [697]={ [1]={ [1]={ [1]={ @@ -22269,7 +22797,7 @@ return { [1]="cold_ailment_effect_+%" } }, - [688]={ + [698]={ [1]={ [1]={ limit={ @@ -22299,7 +22827,7 @@ return { [1]="combat_rush_effect_+%" } }, - [689]={ + [699]={ [1]={ [1]={ limit={ @@ -22316,7 +22844,7 @@ return { [1]="consecrated_ground_effect_+%" } }, - [690]={ + [700]={ [1]={ [1]={ limit={ @@ -22346,7 +22874,7 @@ return { [1]="consecrated_ground_enemy_damage_taken_+%" } }, - [691]={ + [701]={ [1]={ [1]={ limit={ @@ -22363,7 +22891,7 @@ return { [1]="consecrated_ground_immune_to_curses" } }, - [692]={ + [702]={ [1]={ [1]={ limit={ @@ -22393,7 +22921,7 @@ return { [1]="consecrated_ground_area_+%" } }, - [693]={ + [703]={ [1]={ [1]={ limit={ @@ -22467,7 +22995,7 @@ return { [2]="contagion_spread_on_hit_affected_enemy_%" } }, - [694]={ + [704]={ [1]={ [1]={ limit={ @@ -22497,7 +23025,7 @@ return { [1]="conversation_trap_converted_enemy_damage_+%" } }, - [695]={ + [705]={ [1]={ [1]={ limit={ @@ -22527,7 +23055,7 @@ return { [1]="conversion_trap_converted_enemies_chance_to_taunt_on_hit_%" } }, - [696]={ + [706]={ [1]={ [1]={ limit={ @@ -22544,7 +23072,7 @@ return { [1]="corpse_erruption_maximum_number_of_geyers" } }, - [697]={ + [707]={ [1]={ [1]={ limit={ @@ -22574,7 +23102,7 @@ return { [1]="corpse_warp_area_of_effect_+%_final_when_consuming_minion" } }, - [698]={ + [708]={ [1]={ [1]={ limit={ @@ -22604,7 +23132,7 @@ return { [1]="corpse_warp_area_of_effect_+%_final_when_consuming_corpse" } }, - [699]={ + [709]={ [1]={ [1]={ limit={ @@ -22621,7 +23149,7 @@ return { [1]="corrupting_fever_apply_additional_corrupted_blood_%" } }, - [700]={ + [710]={ [1]={ [1]={ [1]={ @@ -22655,7 +23183,7 @@ return { [1]="cover_in_ash_on_hit_%" } }, - [701]={ + [711]={ [1]={ [1]={ limit={ @@ -22690,7 +23218,7 @@ return { [2]="create_herald_of_thunder_storm_on_shocking_enemy" } }, - [702]={ + [712]={ [1]={ [1]={ limit={ @@ -22720,7 +23248,7 @@ return { [1]="created_slipstream_action_speed_+%" } }, - [703]={ + [713]={ [1]={ [1]={ limit={ @@ -22746,7 +23274,7 @@ return { [1]="cremation_chance_to_explode_nearby_corpse_when_firing_projectiles" } }, - [704]={ + [714]={ [1]={ [1]={ limit={ @@ -22776,7 +23304,7 @@ return { [1]="critical_strike_chance_+%_vs_shocked_enemies" } }, - [705]={ + [715]={ [1]={ [1]={ limit={ @@ -22793,7 +23321,7 @@ return { [1]="critical_ailment_dot_multiplier_+" } }, - [706]={ + [716]={ [1]={ [1]={ limit={ @@ -22810,7 +23338,7 @@ return { [1]="critical_poison_dot_multiplier_+" } }, - [707]={ + [717]={ [1]={ [1]={ limit={ @@ -22840,7 +23368,7 @@ return { [1]="critical_strike_chance_+%_final_per_power_charge_from_power_siphon" } }, - [708]={ + [718]={ [1]={ [1]={ limit={ @@ -22870,7 +23398,7 @@ return { [1]="critical_strike_chance_+%_per_power_charge" } }, - [709]={ + [719]={ [1]={ [1]={ limit={ @@ -22900,7 +23428,7 @@ return { [1]="critical_strike_chance_+%_per_righteous_charge" } }, - [710]={ + [720]={ [1]={ [1]={ limit={ @@ -22930,7 +23458,7 @@ return { [1]="critical_strike_chance_+%_vs_blinded_enemies" } }, - [711]={ + [721]={ [1]={ [1]={ limit={ @@ -22947,7 +23475,7 @@ return { [1]="critical_strike_multiplier_+_per_blade" } }, - [712]={ + [722]={ [1]={ [1]={ limit={ @@ -22964,7 +23492,7 @@ return { [1]="critical_strike_multiplier_+_per_power_charge" } }, - [713]={ + [723]={ [1]={ [1]={ limit={ @@ -22994,7 +23522,7 @@ return { [1]="cruelty_effect_+%" } }, - [714]={ + [724]={ [1]={ [1]={ [1]={ @@ -23028,7 +23556,7 @@ return { [1]="crush_for_2_seconds_on_hit_%_chance" } }, - [715]={ + [725]={ [1]={ [1]={ limit={ @@ -23045,7 +23573,7 @@ return { [1]="curse_pacifies_after_60%" } }, - [716]={ + [726]={ [1]={ [1]={ limit={ @@ -23075,7 +23603,7 @@ return { [1]="cyclone_attack_speed_+%_final_per_stage" } }, - [717]={ + [727]={ [1]={ [1]={ [1]={ @@ -23096,7 +23624,7 @@ return { [1]="cyclone_gain_stage_every_x_ms_while_channelling" } }, - [718]={ + [728]={ [1]={ [1]={ limit={ @@ -23113,7 +23641,7 @@ return { [1]="cyclone_max_number_of_stages" } }, - [719]={ + [729]={ [1]={ [1]={ [1]={ @@ -23147,7 +23675,7 @@ return { [1]="cyclone_melee_weapon_range_+_per_stage" } }, - [720]={ + [730]={ [1]={ [1]={ limit={ @@ -23177,7 +23705,7 @@ return { [1]="cyclone_movement_speed_+%_final_per_stage" } }, - [721]={ + [731]={ [1]={ [1]={ [1]={ @@ -23198,33 +23726,7 @@ return { [1]="cyclone_stage_decay_time_ms" } }, - [722]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]=1, - [2]="#" - } - }, - text="{0}% more Damage against Stunned Enemies" - }, - [2]={ - limit={ - [1]={ - [1]="#", - [2]=-1 - } - }, - text="{0}% less Damage against Stunned Enemies" - } - }, - name="boneshatter_damage_final_vs_stunned", - stats={ - [1]="damage_+%_final_vs_stunned_enemies" - } - }, - [723]={ + [732]={ [1]={ [1]={ [1]={ @@ -23262,7 +23764,7 @@ return { [1]="damage_+%_if_you_have_consumed_a_corpse_recently" } }, - [724]={ + [733]={ [1]={ [1]={ limit={ @@ -23292,7 +23794,7 @@ return { [1]="damage_+%_if_lost_endurance_charge_in_past_8_seconds" } }, - [725]={ + [734]={ [1]={ [1]={ limit={ @@ -23322,7 +23824,7 @@ return { [1]="damage_+%_per_200_mana_spent_recently" } }, - [726]={ + [735]={ [1]={ [1]={ limit={ @@ -23339,7 +23841,7 @@ return { [1]="damage_+%_per_chain" } }, - [727]={ + [736]={ [1]={ [1]={ limit={ @@ -23369,7 +23871,7 @@ return { [1]="damage_+%_vs_chilled_enemies" } }, - [728]={ + [737]={ [1]={ [1]={ limit={ @@ -23399,7 +23901,7 @@ return { [1]="damage_+%_vs_enemies_on_full_life" } }, - [729]={ + [738]={ [1]={ [1]={ [1]={ @@ -23437,7 +23939,7 @@ return { [1]="damage_+%_vs_enemies_per_freeze_shock_ignite" } }, - [730]={ + [739]={ [1]={ [1]={ limit={ @@ -23467,7 +23969,7 @@ return { [1]="damage_+%_while_es_leeching" } }, - [731]={ + [740]={ [1]={ [1]={ limit={ @@ -23497,7 +23999,7 @@ return { [1]="damage_+%_while_life_leeching" } }, - [732]={ + [741]={ [1]={ [1]={ limit={ @@ -23527,7 +24029,7 @@ return { [1]="damage_+%_while_mana_leeching" } }, - [733]={ + [742]={ [1]={ [1]={ limit={ @@ -23544,7 +24046,7 @@ return { [1]="damage_removed_from_radiant_sentinel_before_life_or_es_%" } }, - [734]={ + [743]={ [1]={ [1]={ limit={ @@ -23561,7 +24063,7 @@ return { [1]="vaal_rejuvenation_totem_%_damage_taken_applied_to_totem_instead" } }, - [735]={ + [744]={ [1]={ [1]={ [1]={ @@ -23599,7 +24101,7 @@ return { [1]="damage_vs_cursed_enemies_per_enemy_curse_+%" } }, - [736]={ + [745]={ [1]={ [1]={ limit={ @@ -23616,7 +24118,7 @@ return { [1]="damage_vs_enemies_on_low_life_+%" } }, - [737]={ + [746]={ [1]={ [1]={ [1]={ @@ -23641,7 +24143,7 @@ return { [1]="damaging_ailments_deal_damage_+%_faster" } }, - [738]={ + [747]={ [1]={ [1]={ limit={ @@ -23667,7 +24169,7 @@ return { [1]="dark_pact_chance_to_gain_an_additional_ruin_%" } }, - [739]={ + [748]={ [1]={ [1]={ [1]={ @@ -23693,7 +24195,7 @@ return { [2]="dark_pact_chaos_damage_added_from_sacrifice_+%" } }, - [740]={ + [749]={ [1]={ [1]={ limit={ @@ -23710,7 +24212,7 @@ return { [1]="dark_ritual_damage_+%_final_per_curse_applied" } }, - [741]={ + [750]={ [1]={ [1]={ limit={ @@ -23727,7 +24229,7 @@ return { [1]="dark_ritual_skill_effect_duration_+%_per_curse_applied" } }, - [742]={ + [751]={ [1]={ [1]={ [1]={ @@ -23748,7 +24250,7 @@ return { [1]="dash_grants_phasing_after_use_ms" } }, - [743]={ + [752]={ [1]={ [1]={ limit={ @@ -23765,7 +24267,7 @@ return { [1]="deal_no_elemental_damage" } }, - [744]={ + [753]={ [1]={ [1]={ limit={ @@ -23782,7 +24284,7 @@ return { [1]="deal_no_non_elemental_damage" } }, - [745]={ + [754]={ [1]={ [1]={ limit={ @@ -23812,7 +24314,7 @@ return { [1]="death_wish_attack_speed_+%" } }, - [746]={ + [755]={ [1]={ [1]={ limit={ @@ -23842,7 +24344,7 @@ return { [1]="death_wish_cast_speed_+%" } }, - [747]={ + [756]={ [1]={ [1]={ limit={ @@ -23872,7 +24374,7 @@ return { [1]="death_wish_hit_and_ailment_damage_+%_final_per_stage" } }, - [748]={ + [757]={ [1]={ [1]={ limit={ @@ -23889,7 +24391,7 @@ return { [1]="death_wish_max_stages" } }, - [749]={ + [758]={ [1]={ [1]={ limit={ @@ -23919,7 +24421,7 @@ return { [1]="death_wish_movement_speed_+%" } }, - [750]={ + [759]={ [1]={ [1]={ [1]={ @@ -23953,7 +24455,7 @@ return { [1]="debilitate_enemies_for_1_second_on_hit_%_chance" } }, - [751]={ + [760]={ [1]={ [1]={ limit={ @@ -23987,7 +24489,7 @@ return { [1]="debuff_time_passed_+%" } }, - [752]={ + [761]={ [1]={ [1]={ limit={ @@ -24004,7 +24506,7 @@ return { [1]="desecrate_chance_for_additional_corpse_%" } }, - [753]={ + [762]={ [1]={ [1]={ limit={ @@ -24021,7 +24523,7 @@ return { [1]="desecrate_chance_for_special_corpse_%" } }, - [754]={ + [763]={ [1]={ [1]={ limit={ @@ -24038,7 +24540,7 @@ return { [1]="desecrate_maximum_number_of_corpses" } }, - [755]={ + [764]={ [1]={ [1]={ limit={ @@ -24055,7 +24557,7 @@ return { [1]="destroy_corpses_on_kill_%_chance" } }, - [756]={ + [765]={ [1]={ [1]={ limit={ @@ -24085,7 +24587,7 @@ return { [1]="detonate_dead_damage_+%_if_corpse_ignited" } }, - [757]={ + [766]={ [1]={ [1]={ limit={ @@ -24102,7 +24604,7 @@ return { [1]="detonate_dead_%_chance_to_detonate_additional_corpse" } }, - [758]={ + [767]={ [1]={ [1]={ limit={ @@ -24119,7 +24621,7 @@ return { [1]="detonate_mines_is_triggered_while_moving" } }, - [759]={ + [768]={ [1]={ [1]={ [1]={ @@ -24140,7 +24642,7 @@ return { [1]="detonate_mines_recover_permyriad_of_life_per_mine_detonated" } }, - [760]={ + [769]={ [1]={ [1]={ limit={ @@ -24157,7 +24659,7 @@ return { [1]="disable_mine_detonation_cascade" } }, - [761]={ + [770]={ [1]={ [1]={ limit={ @@ -24183,7 +24685,7 @@ return { [1]="discharge_chance_not_to_consume_charges_%" } }, - [762]={ + [771]={ [1]={ [1]={ limit={ @@ -24213,7 +24715,7 @@ return { [1]="discharge_damage_+%_if_3_charge_types_removed" } }, - [763]={ + [772]={ [1]={ [1]={ [1]={ @@ -24247,7 +24749,7 @@ return { [1]="disintegrate_base_radius_+_per_intensify" } }, - [764]={ + [773]={ [1]={ [1]={ limit={ @@ -24299,7 +24801,7 @@ return { [2]="quality_display_disintegrate_is_gem" } }, - [765]={ + [774]={ [1]={ [1]={ limit={ @@ -24329,7 +24831,7 @@ return { [1]="disintegrate_secondary_beam_angle_+%" } }, - [766]={ + [775]={ [1]={ [1]={ limit={ @@ -24346,7 +24848,7 @@ return { [1]="display_additional_projectile_per_2_mines_in_detonation_sequence" } }, - [767]={ + [776]={ [1]={ [1]={ limit={ @@ -24355,15 +24857,15 @@ return { [2]="#" } }, - text="Fires an additional Projectile for every 4 prior Mines in Detonation Sequence" + text="Fires an additional Projectile for every 3 prior Mines in Detonation Sequence" } }, - name="additional_proj_per_4_mines_in_sequence", + name="additional_proj_per_3_mines_in_sequence", stats={ - [1]="display_additional_projectile_per_4_mines_in_detonation_sequence" + [1]="display_additional_projectile_per_3_mines_in_detonation_sequence" } }, - [768]={ + [777]={ [1]={ [1]={ limit={ @@ -24380,7 +24882,7 @@ return { [1]="display_additional_projectile_per_mine_in_detonation_sequence" } }, - [769]={ + [778]={ [1]={ [1]={ [1]={ @@ -24405,7 +24907,7 @@ return { [1]="display_brand_deonate_tag_conversion" } }, - [770]={ + [779]={ [1]={ [1]={ limit={ @@ -24435,7 +24937,7 @@ return { [1]="display_linked_curse_effect_+%" } }, - [771]={ + [780]={ [1]={ [1]={ limit={ @@ -24465,7 +24967,7 @@ return { [1]="display_linked_curse_effect_+%_final" } }, - [772]={ + [781]={ [1]={ [1]={ limit={ @@ -24482,7 +24984,7 @@ return { [1]="display_max_ailment_bearer_charges" } }, - [773]={ + [782]={ [1]={ [1]={ limit={ @@ -24499,7 +25001,7 @@ return { [1]="display_max_blight_stacks" } }, - [774]={ + [783]={ [1]={ [1]={ limit={ @@ -24525,7 +25027,7 @@ return { [1]="display_max_charged_attack_stats" } }, - [775]={ + [784]={ [1]={ [1]={ limit={ @@ -24542,7 +25044,7 @@ return { [1]="display_max_fire_beam_stacks" } }, - [776]={ + [785]={ [1]={ [1]={ limit={ @@ -24568,7 +25070,7 @@ return { [1]="display_max_upgraded_sentinels_of_absolution" } }, - [777]={ + [786]={ [1]={ [1]={ limit={ @@ -24594,7 +25096,7 @@ return { [1]="display_max_upgraded_sentinels_of_dominance" } }, - [778]={ + [787]={ [1]={ [1]={ limit={ @@ -24624,7 +25126,7 @@ return { [1]="display_mine_deontation_mechanics_detonation_speed_+%_final_per_sequence_mine" } }, - [779]={ + [788]={ [1]={ [1]={ limit={ @@ -24641,7 +25143,7 @@ return { [1]="display_mirage_warriors_no_spirit_strikes" } }, - [780]={ + [789]={ [1]={ [1]={ limit={ @@ -24658,7 +25160,7 @@ return { [1]="display_modifiers_to_melee_attack_range_apply_to_skill_radius" } }, - [781]={ + [790]={ [1]={ [1]={ limit={ @@ -24684,7 +25186,7 @@ return { [1]="display_projectiles_chain_when_impacting_ground" } }, - [782]={ + [791]={ [1]={ [1]={ limit={ @@ -24701,7 +25203,7 @@ return { [1]="queens_demand_effect" } }, - [783]={ + [792]={ [1]={ [1]={ [1]={ @@ -24722,7 +25224,7 @@ return { [1]="display_removes_and_grants_elusive_when_used" } }, - [784]={ + [793]={ [1]={ [1]={ limit={ @@ -24748,7 +25250,7 @@ return { [1]="display_shaper_memory_uses_skill_once" } }, - [785]={ + [794]={ [1]={ [1]={ limit={ @@ -24765,7 +25267,7 @@ return { [1]="display_sigil_of_power_stage_gain_delay" } }, - [786]={ + [795]={ [1]={ [1]={ limit={ @@ -24782,7 +25284,7 @@ return { [1]="display_skill_fixed_duration_buff" } }, - [787]={ + [796]={ [1]={ [1]={ [1]={ @@ -24803,7 +25305,7 @@ return { [1]="display_storm_burst_jump_time_ms" } }, - [788]={ + [797]={ [1]={ [1]={ limit={ @@ -24820,7 +25322,7 @@ return { [1]="display_this_skill_cooldown_does_not_recover_during_buff" } }, - [789]={ + [798]={ [1]={ [1]={ limit={ @@ -24837,7 +25339,7 @@ return { [1]="display_touch_of_fire" } }, - [790]={ + [799]={ [1]={ [1]={ limit={ @@ -24854,7 +25356,7 @@ return { [1]="display_trigger_link" } }, - [791]={ + [800]={ [1]={ [1]={ limit={ @@ -24871,7 +25373,7 @@ return { [1]="display_triggerbots_do_their_job" } }, - [792]={ + [801]={ [1]={ [1]={ limit={ @@ -24888,7 +25390,7 @@ return { [1]="display_unhinge_grant_insane" } }, - [793]={ + [802]={ [1]={ [1]={ limit={ @@ -24905,7 +25407,24 @@ return { [1]="display_vaal_breach_no_drops_xp" } }, - [794]={ + [803]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Projectiles cannot Split, Pierce, or Fork when colliding with the wall\nProjectiles can Chain an additional time when colliding with the wall\nProjectiles can only chain to targets on the same side of the wall" + } + }, + name="display_wall_of_force_restrictions", + stats={ + [1]="display_wall_of_force_restrictions" + } + }, + [804]={ [1]={ [1]={ limit={ @@ -24931,7 +25450,7 @@ return { [1]="divine_retribution_blasts_per_wave" } }, - [795]={ + [805]={ [1]={ [1]={ limit={ @@ -24957,7 +25476,7 @@ return { [1]="divine_retribution_num_waves" } }, - [796]={ + [806]={ [1]={ [1]={ limit={ @@ -24987,7 +25506,7 @@ return { [1]="divine_tempest_beam_width_+%" } }, - [797]={ + [807]={ [1]={ [1]={ limit={ @@ -25017,7 +25536,7 @@ return { [1]="divine_tempest_damage_+%_final_while_channelling" } }, - [798]={ + [808]={ [1]={ [1]={ limit={ @@ -25061,7 +25580,7 @@ return { [3]="divine_tempest_no_beam" } }, - [799]={ + [809]={ [1]={ [1]={ limit={ @@ -25078,7 +25597,7 @@ return { [1]="divine_tempest_stage_on_hitting_normal_magic_%_chance" } }, - [800]={ + [810]={ [1]={ [1]={ limit={ @@ -25095,7 +25614,7 @@ return { [1]="divine_tempest_stage_on_hitting_rare_unique" } }, - [801]={ + [811]={ [1]={ [1]={ [1]={ @@ -25129,7 +25648,7 @@ return { [1]="double_and_dual_strike_soul_eater_for_20_seconds_on_rare_or_unique_kill_chance_%" } }, - [802]={ + [812]={ [1]={ [1]={ limit={ @@ -25159,7 +25678,7 @@ return { [1]="double_strike_attack_speed_+%_final_per_stage" } }, - [803]={ + [813]={ [1]={ [1]={ limit={ @@ -25176,7 +25695,7 @@ return { [1]="double_strike_max_stages" } }, - [804]={ + [814]={ [1]={ [1]={ limit={ @@ -25193,7 +25712,7 @@ return { [1]="dual_strike_critical_strike_chance_+%_final_against_enemies_on_full_life" } }, - [805]={ + [815]={ [1]={ [1]={ limit={ @@ -25228,7 +25747,7 @@ return { [2]="quality_display_dual_strike_is_gem" } }, - [806]={ + [816]={ [1]={ [1]={ limit={ @@ -25245,7 +25764,7 @@ return { [1]="dual_strike_off_hand_weapon_determines_attack_time" } }, - [807]={ + [817]={ [1]={ [1]={ limit={ @@ -25267,7 +25786,7 @@ return { [2]="earthquake_aftershock_maximum_added_physical_damage" } }, - [808]={ + [818]={ [1]={ [1]={ limit={ @@ -25297,7 +25816,7 @@ return { [1]="earthquake_initial_slam_area_of_effect_+%" } }, - [809]={ + [819]={ [1]={ [1]={ limit={ @@ -25327,7 +25846,7 @@ return { [1]="earthshatter_spike_area_of_effect_+%_final" } }, - [810]={ + [820]={ [1]={ [1]={ limit={ @@ -25344,7 +25863,7 @@ return { [1]="elemental_damage_cannot_be_reflected" } }, - [811]={ + [821]={ [1]={ [1]={ limit={ @@ -25374,7 +25893,7 @@ return { [1]="elemental_damage_+%_final_per_righteous_charge" } }, - [812]={ + [822]={ [1]={ [1]={ limit={ @@ -25391,7 +25910,7 @@ return { [1]="elemental_hit_area_of_effect_+100%_final_vs_enemy_with_associated_ailment" } }, - [813]={ + [823]={ [1]={ [1]={ limit={ @@ -25439,7 +25958,7 @@ return { [2]="quality_display_elemental_hit_is_gem" } }, - [814]={ + [824]={ [1]={ [1]={ limit={ @@ -25456,7 +25975,7 @@ return { [1]="elemental_penetration_%_from_resonance" } }, - [815]={ + [825]={ [1]={ [1]={ [1]={ @@ -25494,7 +26013,7 @@ return { [1]="elusive_effect_+%" } }, - [816]={ + [826]={ [1]={ [1]={ [1]={ @@ -25515,7 +26034,7 @@ return { [1]="embrace_madness_amount_of_cooldown_to_gain_ms" } }, - [817]={ + [827]={ [1]={ [1]={ limit={ @@ -25545,7 +26064,7 @@ return { [1]="empowered_attack_damage_+%" } }, - [818]={ + [828]={ [1]={ [1]={ limit={ @@ -25614,7 +26133,7 @@ return { [2]="quality_display_alternate_tectonic_slam_is_gem" } }, - [819]={ + [829]={ [1]={ [1]={ limit={ @@ -25640,7 +26159,7 @@ return { [1]="enduring_cry_grants_x_additional_endurance_charges" } }, - [820]={ + [830]={ [1]={ [1]={ [1]={ @@ -25661,7 +26180,7 @@ return { [1]="enemies_chilled_by_bane_and_contagion" } }, - [821]={ + [831]={ [1]={ [1]={ [1]={ @@ -25682,7 +26201,7 @@ return { [1]="enemies_covered_in_frost_as_unfrozen" } }, - [822]={ + [832]={ [1]={ [1]={ [1]={ @@ -25703,7 +26222,7 @@ return { [1]="enemies_taunted_by_your_warcies_are_intimidated" } }, - [823]={ + [833]={ [1]={ [1]={ limit={ @@ -25733,7 +26252,7 @@ return { [1]="enemies_you_hinder_have_life_regeneration_rate_+%" } }, - [824]={ + [834]={ [1]={ [1]={ limit={ @@ -25763,7 +26282,7 @@ return { [1]="enemies_you_shock_movement_speed_+%" } }, - [825]={ + [835]={ [1]={ [1]={ limit={ @@ -25793,7 +26312,7 @@ return { [1]="enemies_you_shock_take_%_increased_physical_damage" } }, - [826]={ + [836]={ [1]={ [1]={ [1]={ @@ -25814,7 +26333,7 @@ return { [1]="enemy_phys_reduction_%_penalty_vs_hit" } }, - [827]={ + [837]={ [1]={ [1]={ limit={ @@ -25866,7 +26385,7 @@ return { [2]="quality_display_lightning_conduit_is_gem" } }, - [828]={ + [838]={ [1]={ [1]={ limit={ @@ -25896,7 +26415,7 @@ return { [1]="energy_shield_regeneration_rate_+%" } }, - [829]={ + [839]={ [1]={ [1]={ limit={ @@ -25926,7 +26445,7 @@ return { [1]="ensnaring_arrow_enemy_spell_damage_taken_+%" } }, - [830]={ + [840]={ [1]={ [1]={ [1]={ @@ -25947,7 +26466,7 @@ return { [1]="essence_drain_lose_life_from_damage_permyriad" } }, - [831]={ + [841]={ [1]={ [1]={ [1]={ @@ -25981,7 +26500,7 @@ return { [1]="ethereal_knives_projectiles_needed_per_vestige_blade" } }, - [832]={ + [842]={ [1]={ [1]={ limit={ @@ -26011,7 +26530,7 @@ return { [1]="evasion_and_physical_damage_reduction_rating_+%" } }, - [833]={ + [843]={ [1]={ [1]={ limit={ @@ -26028,7 +26547,7 @@ return { [1]="expanding_fire_cone_angle_+%_per_stage" } }, - [834]={ + [844]={ [1]={ [1]={ limit={ @@ -26045,7 +26564,7 @@ return { [1]="expanding_fire_cone_final_wave_always_ignite" } }, - [835]={ + [845]={ [1]={ [1]={ limit={ @@ -26093,7 +26612,7 @@ return { [2]="quality_display_incinerate_is_gem_stages" } }, - [836]={ + [846]={ [1]={ [1]={ [1]={ @@ -26186,7 +26705,7 @@ return { [2]="expanding_fire_cone_radius_limit" } }, - [837]={ + [847]={ [1]={ [1]={ limit={ @@ -26238,7 +26757,7 @@ return { [2]="quality_display_incinerate_is_gem_hit" } }, - [838]={ + [848]={ [1]={ [1]={ limit={ @@ -26286,7 +26805,7 @@ return { [2]="quality_display_explosive_arrow_is_gem" } }, - [839]={ + [849]={ [1]={ [1]={ limit={ @@ -26303,7 +26822,7 @@ return { [1]="extra_target_targeting_distance_+%" } }, - [840]={ + [850]={ [1]={ [1]={ limit={ @@ -26333,7 +26852,7 @@ return { [1]="eye_of_winter_spiral_angle_+%" } }, - [841]={ + [851]={ [1]={ [1]={ limit={ @@ -26363,7 +26882,7 @@ return { [1]="eye_of_winter_spiral_fire_frequency_+%" } }, - [842]={ + [852]={ [1]={ [1]={ [1]={ @@ -26388,7 +26907,7 @@ return { [1]="faster_bleed_%" } }, - [843]={ + [853]={ [1]={ [1]={ [1]={ @@ -26422,7 +26941,7 @@ return { [1]="faster_burn_%" } }, - [844]={ + [854]={ [1]={ [1]={ limit={ @@ -26449,7 +26968,7 @@ return { [3]="feast_of_flesh_gain_X_energy_shield_per_corpse_consumed" } }, - [845]={ + [855]={ [1]={ [1]={ limit={ @@ -26488,7 +27007,7 @@ return { [2]="quality_display_firebeam_is_gem" } }, - [846]={ + [856]={ [1]={ [1]={ limit={ @@ -26505,7 +27024,7 @@ return { [1]="fire_beam_enemy_fire_resistance_%_maximum" } }, - [847]={ + [857]={ [1]={ [1]={ limit={ @@ -26522,7 +27041,7 @@ return { [1]="fire_beam_enemy_fire_resistance_%_per_stack" } }, - [848]={ + [858]={ [1]={ [1]={ limit={ @@ -26552,7 +27071,7 @@ return { [1]="fire_beam_length_+%" } }, - [849]={ + [859]={ [1]={ [1]={ limit={ @@ -26569,7 +27088,7 @@ return { [1]="fire_dot_multiplier_+" } }, - [850]={ + [860]={ [1]={ [1]={ [1]={ @@ -26603,7 +27122,7 @@ return { [1]="fireball_base_radius_up_to_+_at_longer_ranges" } }, - [851]={ + [861]={ [1]={ [1]={ limit={ @@ -26620,7 +27139,7 @@ return { [1]="fires_1_projectile_if_no_steel_ammo" } }, - [852]={ + [862]={ [1]={ [1]={ limit={ @@ -26637,7 +27156,7 @@ return { [1]="firestorm_and_bladefall_chance_to_replay_when_finished_%" } }, - [853]={ + [863]={ [1]={ [1]={ limit={ @@ -26667,7 +27186,7 @@ return { [1]="firestorm_final_impact_damage_+%_final" } }, - [854]={ + [864]={ [1]={ [1]={ limit={ @@ -26697,7 +27216,7 @@ return { [1]="firestorm_initial_impact_area_of_effect_+%_final" } }, - [855]={ + [865]={ [1]={ [1]={ limit={ @@ -26727,7 +27246,7 @@ return { [1]="firestorm_initial_impact_damage_+%_final" } }, - [856]={ + [866]={ [1]={ [1]={ limit={ @@ -26762,7 +27281,7 @@ return { [2]="skill_is_ice_storm" } }, - [857]={ + [867]={ [1]={ [1]={ limit={ @@ -26779,7 +27298,7 @@ return { [1]="firewall_applies_%_fire_exposure" } }, - [858]={ + [868]={ [1]={ [1]={ limit={ @@ -26796,7 +27315,7 @@ return { [1]="fixed_skill_effect_duration" } }, - [859]={ + [869]={ [1]={ [1]={ limit={ @@ -26826,7 +27345,7 @@ return { [1]="flame_dash_burning_damage_+%_final" } }, - [860]={ + [870]={ [1]={ [1]={ limit={ @@ -26843,7 +27362,7 @@ return { [1]="flame_dash_repeats_target_previous_location" } }, - [861]={ + [871]={ [1]={ [1]={ [1]={ @@ -26864,7 +27383,7 @@ return { [1]="flame_surge_burning_ground_creation_cooldown_ms" } }, - [862]={ + [872]={ [1]={ [1]={ limit={ @@ -26899,7 +27418,7 @@ return { [2]="quality_display_alt_flame_whip_is_gem" } }, - [863]={ + [873]={ [1]={ [1]={ limit={ @@ -26916,7 +27435,7 @@ return { [1]="flame_surge_ignite_damage_as_burning_ground_damage_%" } }, - [864]={ + [874]={ [1]={ [1]={ [1]={ @@ -26954,7 +27473,7 @@ return { [1]="flameblast_ailment_damage_+%_final_per_10_life_reserved" } }, - [865]={ + [875]={ [1]={ [1]={ limit={ @@ -26984,7 +27503,7 @@ return { [1]="flameblast_area_+%_final_per_stage" } }, - [866]={ + [876]={ [1]={ [1]={ [1]={ @@ -27018,7 +27537,7 @@ return { [1]="flameblast_base_radius_override" } }, - [867]={ + [877]={ [1]={ [1]={ limit={ @@ -27048,7 +27567,7 @@ return { [1]="flameblast_damage_+%_final_per_10_life_reserved" } }, - [868]={ + [878]={ [1]={ [1]={ [1]={ @@ -27069,7 +27588,7 @@ return { [1]="flameblast_hundred_times_radius_+_per_1%_life_reserved" } }, - [869]={ + [879]={ [1]={ [1]={ limit={ @@ -27086,7 +27605,7 @@ return { [1]="flameblast_ignite_chance_+%_per_stage" } }, - [870]={ + [880]={ [1]={ [1]={ limit={ @@ -27121,7 +27640,7 @@ return { [2]="quality_display_flameblast_is_gem" } }, - [871]={ + [881]={ [1]={ [1]={ limit={ @@ -27138,7 +27657,7 @@ return { [1]="flameblast_starts_with_X_additional_stages" } }, - [872]={ + [882]={ [1]={ [1]={ limit={ @@ -27155,7 +27674,7 @@ return { [1]="flamethrower_tower_trap_display_cast_speed_affects_rotation" } }, - [873]={ + [883]={ [1]={ [1]={ limit={ @@ -27172,7 +27691,7 @@ return { [1]="flamethrower_tower_trap_number_of_flamethrowers" } }, - [874]={ + [884]={ [1]={ [1]={ limit={ @@ -27202,7 +27721,7 @@ return { [1]="flamethrower_trap_damage_+%_final_vs_burning_enemies" } }, - [875]={ + [885]={ [1]={ [1]={ limit={ @@ -27232,7 +27751,7 @@ return { [1]="flask_charges_used_+%" } }, - [876]={ + [886]={ [1]={ [1]={ limit={ @@ -27744,7 +28263,7 @@ return { [5]="flask_throw_charges_used_per_projectile" } }, - [877]={ + [887]={ [1]={ [1]={ limit={ @@ -27761,7 +28280,7 @@ return { [1]="flask_throw_sulphur_flask_explode_on_kill_chance" } }, - [878]={ + [888]={ [1]={ [1]={ limit={ @@ -27778,7 +28297,7 @@ return { [1]="flask_throw_added_chaos_damage_%_of_flask_life_to_recover" } }, - [879]={ + [889]={ [1]={ [1]={ limit={ @@ -27800,7 +28319,7 @@ return { [2]="flask_throw_maximum_cold_damage_if_used_sapphire_flask" } }, - [880]={ + [890]={ [1]={ [1]={ limit={ @@ -27822,7 +28341,7 @@ return { [2]="flask_throw_maximum_lightning_damage_if_used_topaz_flask" } }, - [881]={ + [891]={ [1]={ [1]={ limit={ @@ -27839,7 +28358,7 @@ return { [1]="flask_throw_ruby_flask_critical_strike_multiplier_+" } }, - [882]={ + [892]={ [1]={ [1]={ limit={ @@ -27856,7 +28375,7 @@ return { [1]="flask_throw_ruby_flask_ignite_dot_multiplier_+" } }, - [883]={ + [893]={ [1]={ [1]={ limit={ @@ -27882,7 +28401,7 @@ return { [1]="flesh_stone_blood_stance_enemies_physical_damage_taken_when_hit_+%_final_from_player_distance" } }, - [884]={ + [894]={ [1]={ [1]={ limit={ @@ -27912,7 +28431,7 @@ return { [1]="flesh_stone_sand_stance_damage_taken_+%_final_from_distance_from_enemy_hits" } }, - [885]={ + [895]={ [1]={ [1]={ limit={ @@ -27942,7 +28461,7 @@ return { [1]="flicker_strike_buff_movement_speed_+%" } }, - [886]={ + [896]={ [1]={ [1]={ limit={ @@ -27959,7 +28478,7 @@ return { [1]="flicker_strike_teleport_range_+%" } }, - [887]={ + [897]={ [1]={ [1]={ [1]={ @@ -27984,7 +28503,7 @@ return { [1]="fortify_on_hit" } }, - [888]={ + [898]={ [1]={ [1]={ [1]={ @@ -28013,7 +28532,7 @@ return { [1]="fortify_on_hit_close_range" } }, - [889]={ + [899]={ [1]={ [1]={ limit={ @@ -28030,7 +28549,7 @@ return { [1]="freeze_applies_cold_resistance_+" } }, - [890]={ + [900]={ [1]={ [1]={ limit={ @@ -28099,7 +28618,7 @@ return { [2]="quality_display_freezing_pulse_damage_at_long_range_is_gem" } }, - [891]={ + [901]={ [1]={ [1]={ [1]={ @@ -28141,7 +28660,7 @@ return { [1]="frenzy_consume_charges_to_onslaught_for_ms_per_charge" } }, - [892]={ + [902]={ [1]={ [1]={ limit={ @@ -28193,7 +28712,7 @@ return { [2]="quality_display_frenzy_is_gem" } }, - [893]={ + [903]={ [1]={ [1]={ limit={ @@ -28245,7 +28764,37 @@ return { [2]="quality_display_active_skill_attack_speed_per_frenzy_is_gem" } }, - [894]={ + [904]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Deals {0}% more Damage with Ailments" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Deals {0}% less Damage with Ailments" + } + }, + name="ward_shatter_damage_with_ailments", + stats={ + [1]="from_code_active_skill_ailment_damage_+%_final" + } + }, + [905]={ [1]={ [1]={ limit={ @@ -28262,7 +28811,7 @@ return { [1]="from_quality_brand_activation_rate_+%_final_if_75%_attached_duration_expired" } }, - [895]={ + [906]={ [1]={ [1]={ limit={ @@ -28288,7 +28837,7 @@ return { [1]="frost_bolt_nova_number_of_frost_bolts_to_detonate" } }, - [896]={ + [907]={ [1]={ [1]={ [1]={ @@ -28309,7 +28858,7 @@ return { [1]="frost_fury_added_duration_per_stage_ms" } }, - [897]={ + [908]={ [1]={ [1]={ [1]={ @@ -28330,7 +28879,7 @@ return { [1]="frost_fury_base_fire_interval_ms" } }, - [898]={ + [909]={ [1]={ [1]={ limit={ @@ -28347,7 +28896,7 @@ return { [1]="frost_fury_duration_+%_per_stage" } }, - [899]={ + [910]={ [1]={ [1]={ limit={ @@ -28364,7 +28913,7 @@ return { [1]="frost_fury_fire_speed_+%_final_while_channelling" } }, - [900]={ + [911]={ [1]={ [1]={ limit={ @@ -28381,7 +28930,7 @@ return { [1]="frost_fury_fire_speed_+%_per_stage" } }, - [901]={ + [912]={ [1]={ [1]={ limit={ @@ -28416,7 +28965,7 @@ return { [2]="quality_display_winter_orb_is_gem" } }, - [902]={ + [913]={ [1]={ [1]={ limit={ @@ -28433,7 +28982,7 @@ return { [1]="frost_globe_absorb_damage_%_enemy_in_bubble" } }, - [903]={ + [914]={ [1]={ [1]={ limit={ @@ -28450,7 +28999,7 @@ return { [1]="frost_globe_absorb_damage_%_enemy_outside_bubble" } }, - [904]={ + [915]={ [1]={ [1]={ [1]={ @@ -28471,7 +29020,7 @@ return { [1]="frost_globe_additional_spell_base_critical_strike_chance_per_stage" } }, - [905]={ + [916]={ [1]={ [1]={ limit={ @@ -28488,7 +29037,7 @@ return { [1]="frost_globe_health_per_stage" } }, - [906]={ + [917]={ [1]={ [1]={ [1]={ @@ -28509,7 +29058,7 @@ return { [1]="frost_globe_life_regeneration_rate_per_minute_%" } }, - [907]={ + [918]={ [1]={ [1]={ limit={ @@ -28526,7 +29075,7 @@ return { [1]="frost_globe_max_stages" } }, - [908]={ + [919]={ [1]={ [1]={ [1]={ @@ -28547,7 +29096,7 @@ return { [1]="frost_globe_stage_gain_interval_ms" } }, - [909]={ + [920]={ [1]={ [1]={ limit={ @@ -28573,7 +29122,7 @@ return { [1]="frostblink_damage_+%_final_per_5%_chill_effect_on_target" } }, - [910]={ + [921]={ [1]={ [1]={ limit={ @@ -28603,7 +29152,7 @@ return { [1]="frostbolt_projectile_acceleration" } }, - [911]={ + [922]={ [1]={ [1]={ limit={ @@ -28633,7 +29182,7 @@ return { [1]="frostbolt_projectile_speed_+%_final" } }, - [912]={ + [923]={ [1]={ [1]={ limit={ @@ -28650,7 +29199,7 @@ return { [1]="frozen_legion_%_chance_to_summon_additional_statue" } }, - [913]={ + [924]={ [1]={ [1]={ [1]={ @@ -28671,7 +29220,7 @@ return { [1]="gain_1_rage_on_use_%_chance" } }, - [914]={ + [925]={ [1]={ [1]={ [1]={ @@ -28705,7 +29254,7 @@ return { [1]="gain_elusive_on_crit_%_chance" } }, - [915]={ + [926]={ [1]={ [1]={ [1]={ @@ -28734,7 +29283,7 @@ return { [1]="gain_fortify_on_melee_hit_ms" } }, - [916]={ + [927]={ [1]={ [1]={ limit={ @@ -28751,7 +29300,7 @@ return { [1]="gain_frenzy_charge_on_hitting_rare_or_unique_enemy_%" } }, - [917]={ + [928]={ [1]={ [1]={ limit={ @@ -28768,7 +29317,7 @@ return { [1]="gain_frenzy_charge_on_hitting_unique_enemy_%" } }, - [918]={ + [929]={ [1]={ [1]={ limit={ @@ -28794,7 +29343,7 @@ return { [1]="gain_frenzy_charge_on_killing_blow_vs_enemies_with_5+_poisons_%" } }, - [919]={ + [930]={ [1]={ [1]={ limit={ @@ -28811,7 +29360,7 @@ return { [1]="gain_power_charge_on_kill_with_hit_%" } }, - [920]={ + [931]={ [1]={ [1]={ [1]={ @@ -28836,7 +29385,7 @@ return { [1]="gain_rage_on_hit" } }, - [921]={ + [932]={ [1]={ [1]={ [1]={ @@ -28861,7 +29410,7 @@ return { [1]="gain_rage_on_hit_%_chance" } }, - [922]={ + [933]={ [1]={ [1]={ [1]={ @@ -28882,7 +29431,7 @@ return { [1]="gain_resonance_of_majority_damage_on_hit_for_2_seconds" } }, - [923]={ + [934]={ [1]={ [1]={ [1]={ @@ -28916,7 +29465,7 @@ return { [1]="gain_righteous_charge_on_mana_spent_%" } }, - [924]={ + [935]={ [1]={ [1]={ [1]={ @@ -28941,7 +29490,7 @@ return { [1]="gain_x_rage_on_attack_hit" } }, - [925]={ + [936]={ [1]={ [1]={ [1]={ @@ -28975,7 +29524,7 @@ return { [1]="galvanic_field_beam_delay_ms" } }, - [926]={ + [937]={ [1]={ [1]={ limit={ @@ -29005,7 +29554,7 @@ return { [1]="galvanic_field_damage_+%_final_per_5%_increased_damage_taken_from_shock" } }, - [927]={ + [938]={ [1]={ [1]={ [1]={ @@ -29039,7 +29588,7 @@ return { [1]="galvanic_field_radius_+_per_10%_increased_damage_taken_from_shock" } }, - [928]={ + [939]={ [1]={ [1]={ limit={ @@ -29087,7 +29636,7 @@ return { [2]="quality_display_glacial_cascade_is_gem" } }, - [929]={ + [940]={ [1]={ [1]={ limit={ @@ -29117,7 +29666,7 @@ return { [1]="glacial_cascade_travel_speed_+%" } }, - [930]={ + [941]={ [1]={ [1]={ [1]={ @@ -29138,7 +29687,7 @@ return { [1]="global_maim_on_hit" } }, - [931]={ + [942]={ [1]={ [1]={ limit={ @@ -29160,7 +29709,7 @@ return { [2]="global_maximum_added_physical_damage_vs_bleeding_enemies" } }, - [932]={ + [943]={ [1]={ [1]={ [1]={ @@ -29194,7 +29743,7 @@ return { [1]="glorious_madness_timer_ms" } }, - [933]={ + [944]={ [1]={ [1]={ limit={ @@ -29224,7 +29773,7 @@ return { [1]="golem_buff_effect_+%" } }, - [934]={ + [945]={ [1]={ [1]={ limit={ @@ -29276,7 +29825,7 @@ return { [2]="quality_display_incinerate_is_gem_ingite" } }, - [935]={ + [946]={ [1]={ [1]={ limit={ @@ -29306,7 +29855,7 @@ return { [1]="greater_projectile_intensity_projectile_damage_+%_final_per_intensity" } }, - [936]={ + [947]={ [1]={ [1]={ limit={ @@ -29336,7 +29885,7 @@ return { [1]="ground_slam_angle_+%" } }, - [937]={ + [948]={ [1]={ [1]={ limit={ @@ -29353,7 +29902,7 @@ return { [1]="herald_of_agony_add_stack_on_poison" } }, - [938]={ + [949]={ [1]={ [1]={ limit={ @@ -29383,7 +29932,7 @@ return { [1]="herald_of_agony_poison_damage_+%_final" } }, - [939]={ + [950]={ [1]={ [1]={ [1]={ @@ -29426,7 +29975,7 @@ return { [2]="quality_display_herald_of_ash_is_gem" } }, - [940]={ + [951]={ [1]={ [1]={ limit={ @@ -29443,7 +29992,7 @@ return { [1]="herald_of_light_summon_champion_on_kill" } }, - [941]={ + [952]={ [1]={ [1]={ limit={ @@ -29469,7 +30018,7 @@ return { [1]="herald_of_light_summon_champion_on_unique_or_rare_enemy_hit_%" } }, - [942]={ + [953]={ [1]={ [1]={ limit={ @@ -29499,7 +30048,79 @@ return { [1]="herald_of_purity_physical_damage_+%_final" } }, - [943]={ + [954]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0} Maximum Otherworldly Pressure" + } + }, + name="skill_maximum_otherworldly_pressure", + stats={ + [1]="maximum_otherwordly_pressure_stacks" + } + }, + [955]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Gain 1 Otherwordly Pressure when you inflict an Ailment" + } + }, + name="herald_of_the_breach_add_otherworldly_presence", + stats={ + [1]="herald_of_the_breach_add_stack_on_inflicting_ailment" + } + }, + [956]={ + [1]={ + [1]={ + [1]={ + k="divide_by_one_thousand", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Pulses every {0} seconds" + } + }, + name="herald_of_the_breach_pulse_delay_display", + stats={ + [1]="herald_of_the_breach_pulse_delay_ms" + } + }, + [957]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% increased Pulse frequency per Otherworldly Pressure" + } + }, + name="herald_of_the_breach_pulse_frequency_per_otherwordly_presence", + stats={ + [1]="herald_of_the_breach_pulse_frequency_+%_per_otherworldly_pressure" + } + }, + [958]={ [1]={ [1]={ [1]={ @@ -29541,7 +30162,7 @@ return { [1]="hex_transfer_on_death_total_range" } }, - [944]={ + [959]={ [1]={ [1]={ limit={ @@ -29558,7 +30179,7 @@ return { [1]="hexblast_ailment_damage_+%_final_if_hexed" } }, - [945]={ + [960]={ [1]={ [1]={ limit={ @@ -29588,7 +30209,7 @@ return { [1]="hexblast_hit_damage_+%_final_if_hexed" } }, - [946]={ + [961]={ [1]={ [1]={ [1]={ @@ -29631,7 +30252,7 @@ return { [2]="hexblast_%_chance_to_not_consume_hex" } }, - [947]={ + [962]={ [1]={ [1]={ limit={ @@ -29661,7 +30282,7 @@ return { [1]="hinder_enemy_chaos_damage_+%" } }, - [948]={ + [963]={ [1]={ [1]={ limit={ @@ -29678,7 +30299,7 @@ return { [1]="hinder_enemy_chaos_damage_taken_+%" } }, - [949]={ + [964]={ [1]={ [1]={ [1]={ @@ -29699,7 +30320,7 @@ return { [1]="hits_grant_cruelty" } }, - [950]={ + [965]={ [1]={ [1]={ limit={ @@ -29716,7 +30337,7 @@ return { [1]="hits_ignore_all_enemy_monster_resistances" } }, - [951]={ + [966]={ [1]={ [1]={ limit={ @@ -29733,7 +30354,7 @@ return { [1]="hits_ignore_enemy_monster_physical_damage_reduction" } }, - [952]={ + [967]={ [1]={ [1]={ limit={ @@ -29750,7 +30371,7 @@ return { [1]="holy_and_shockwave_totem_have_physical_damage_%_to_add_as_fire_damage_when_linked_by_searing_bond" } }, - [953]={ + [968]={ [1]={ [1]={ limit={ @@ -29767,7 +30388,7 @@ return { [1]="holy_path_teleport_range_+%" } }, - [954]={ + [969]={ [1]={ [1]={ [1]={ @@ -29788,7 +30409,7 @@ return { [1]="holy_relic_nova_life_regeneration_rate_per_minute" } }, - [955]={ + [970]={ [1]={ [1]={ limit={ @@ -29805,7 +30426,7 @@ return { [1]="holy_relic_nova_minion_life_regeneration_rate_per_second" } }, - [956]={ + [971]={ [1]={ [1]={ [1]={ @@ -29826,7 +30447,7 @@ return { [1]="hydro_sphere_pulse_frequency_ms" } }, - [957]={ + [972]={ [1]={ [1]={ [1]={ @@ -29860,7 +30481,7 @@ return { [1]="hydrosphere_hit_cooldown_ms" } }, - [958]={ + [973]={ [1]={ [1]={ limit={ @@ -29890,7 +30511,7 @@ return { [1]="ice_crash_first_stage_damage_+%_final" } }, - [959]={ + [974]={ [1]={ [1]={ limit={ @@ -29933,7 +30554,7 @@ return { [2]="ice_dash_cooldown_recovery_per_nearby_rare_or_unique_enemy" } }, - [960]={ + [975]={ [1]={ [1]={ limit={ @@ -29963,7 +30584,7 @@ return { [1]="ice_nova_damage_when_cast_on_frostbolt_+%_final" } }, - [961]={ + [976]={ [1]={ [1]={ limit={ @@ -29993,7 +30614,7 @@ return { [1]="ice_nova_freeze_as_though_damage_+%_final" } }, - [962]={ + [977]={ [1]={ [1]={ limit={ @@ -30019,7 +30640,7 @@ return { [1]="ice_nova_number_of_frost_bolts_to_cast_on" } }, - [963]={ + [978]={ [1]={ [1]={ limit={ @@ -30049,7 +30670,7 @@ return { [1]="ice_spear_distance_before_form_change_+%" } }, - [964]={ + [979]={ [1]={ [1]={ limit={ @@ -30066,7 +30687,7 @@ return { [1]="ignite_damage_+100%_final_chance" } }, - [965]={ + [980]={ [1]={ [1]={ limit={ @@ -30083,7 +30704,7 @@ return { [1]="ignites_apply_fire_resistance_+" } }, - [966]={ + [981]={ [1]={ [1]={ limit={ @@ -30100,7 +30721,7 @@ return { [1]="ignition_blast_%_max_life_as_fire_on_death" } }, - [967]={ + [982]={ [1]={ [1]={ limit={ @@ -30117,7 +30738,7 @@ return { [1]="ignore_self_damage_from_trauma_chance_%" } }, - [968]={ + [983]={ [1]={ [1]={ limit={ @@ -30152,7 +30773,7 @@ return { [2]="quality_display_wintertide_brand_is_gem" } }, - [969]={ + [984]={ [1]={ [1]={ [1]={ @@ -30186,7 +30807,7 @@ return { [1]="immortal_call_elemental_damage_taken_+%_final_per_endurance_charge_consumed_permyriad" } }, - [970]={ + [985]={ [1]={ [1]={ limit={ @@ -30216,7 +30837,7 @@ return { [1]="impacting_steel_secondary_projectile_damage_+%_final" } }, - [971]={ + [986]={ [1]={ [1]={ limit={ @@ -30246,7 +30867,7 @@ return { [1]="impale_debuff_effect_+%" } }, - [972]={ + [987]={ [1]={ [1]={ limit={ @@ -30272,7 +30893,7 @@ return { [1]="impale_on_hit_%_chance" } }, - [973]={ + [988]={ [1]={ [1]={ [1]={ @@ -30293,7 +30914,7 @@ return { [1]="impale_phys_reduction_%_penalty" } }, - [974]={ + [989]={ [1]={ [1]={ limit={ @@ -30323,7 +30944,7 @@ return { [1]="impurity_cold_damage_taken_+%_final" } }, - [975]={ + [990]={ [1]={ [1]={ limit={ @@ -30353,7 +30974,7 @@ return { [1]="impurity_fire_damage_taken_+%_final" } }, - [976]={ + [991]={ [1]={ [1]={ limit={ @@ -30383,7 +31004,7 @@ return { [1]="impurity_lightning_damage_taken_+%_final" } }, - [977]={ + [992]={ [1]={ [1]={ limit={ @@ -30400,7 +31021,7 @@ return { [1]="incinerate_starts_with_X_additional_stages" } }, - [978]={ + [993]={ [1]={ [1]={ limit={ @@ -30426,7 +31047,7 @@ return { [1]="infernal_blow_explosion_applies_uncharged_debuff_on_hit_%_chance" } }, - [979]={ + [994]={ [1]={ [1]={ limit={ @@ -30461,7 +31082,7 @@ return { [2]="quality_display_infernal_blow_is_gem" } }, - [980]={ + [995]={ [1]={ [1]={ limit={ @@ -30478,7 +31099,7 @@ return { [1]="infernal_bolt_base_fire_damage_%_maximum_life" } }, - [981]={ + [996]={ [1]={ [1]={ limit={ @@ -30495,7 +31116,7 @@ return { [1]="infernal_bolt_triggered_when_totem_with_this_skill_hit_by_enemy" } }, - [982]={ + [997]={ [1]={ [1]={ [1]={ @@ -30516,7 +31137,7 @@ return { [1]="inflict_all_exposure_on_hit" } }, - [983]={ + [998]={ [1]={ [1]={ [1]={ @@ -30537,7 +31158,7 @@ return { [1]="infusion_grants_life_regeneration_rate_per_minute_%" } }, - [984]={ + [999]={ [1]={ [1]={ limit={ @@ -30567,7 +31188,7 @@ return { [1]="inspiration_charge_duration_+%" } }, - [985]={ + [1000]={ [1]={ [1]={ [1]={ @@ -30588,7 +31209,7 @@ return { [1]="intimidate_nearby_enemies_on_use_for_ms" } }, - [986]={ + [1001]={ [1]={ [1]={ limit={ @@ -30605,7 +31226,7 @@ return { [1]="number_of_warcries_exerting_this_action" } }, - [987]={ + [1002]={ [1]={ [1]={ limit={ @@ -30622,7 +31243,7 @@ return { [1]="killing_blow_consumes_corpse_restore_%_life" } }, - [988]={ + [1003]={ [1]={ [1]={ limit={ @@ -30670,7 +31291,7 @@ return { [2]="killing_blow_consumes_corpse_restore_x_mana" } }, - [989]={ + [1004]={ [1]={ [1]={ limit={ @@ -30687,7 +31308,7 @@ return { [1]="kinetic_blast_projectiles_gain_%_aoe_after_forking" } }, - [990]={ + [1005]={ [1]={ [1]={ limit={ @@ -30704,7 +31325,275 @@ return { [1]="kinetic_bolt_forks_apply_to_zig_zags" } }, - [991]={ + [1006]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + }, + [2]={ + [1]=0, + [2]=0 + } + }, + text="Projectiles deal {0:+d}% more Damage per previous Projectile fired in sequence" + }, + [2]={ + limit={ + [1]={ + [1]=1, + [2]="#" + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="Projectiles deal {0}% more Damage per previous Projectile fired in sequence" + }, + [3]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="Projectiles deal {0}% less Damage per previous Projectile fired in sequence" + } + }, + name="kinetic_fusillade_damage_in_sequence", + stats={ + [1]="kinetic_fusillade_damage_+%_final_per_projectile_fired", + [2]="quality_display_kinetic_fusillade_is_gem" + } + }, + [1007]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Maximum {0} hovering Projectile" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Maximum {0} hovering Projectiles" + } + }, + name="kinetic_fusillade_max", + stats={ + [1]="kinetic_fusillade_maximum_floating_projectiles" + } + }, + [1008]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Maximum {0} Anomaly" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Maximum {0} Anomalies" + } + }, + name="kinetic_instability_max_orbs", + stats={ + [1]="kinetic_instability_maximum_number_of_instability_orbs_allowed" + } + }, + [1009]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=99 + }, + [2]={ + [1]=1, + [2]="#" + } + }, + text="{0}% of Damage from Hits is taken from the Shell before the target's Life or Energy Shield\nShell can take {1} Damage before exploding" + }, + [2]={ + limit={ + [1]={ + [1]=100, + [2]="#" + }, + [2]={ + [1]=1, + [2]="#" + } + }, + text="Damage from Hits is taken from Shell before target's Life or Energy Shield\nShell can take {1} Damage before exploding" + } + }, + name="kinetic_shell_damage_absorb", + stats={ + [1]="kinetic_shell_hit_damage_absorbed_%", + [2]="kinetic_shell_maximum_damage_absorbed_from_hits" + } + }, + [1010]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Shell cannot be reapplied to same target for {0} seconds after explosion" + } + }, + name="kinetic_shell_immunity", + stats={ + [1]="kinetic_shell_immunity_after_explosion_ms" + } + }, + [1011]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Maximum {0} Somatic Shell" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Maximum {0} Somatic Shells" + } + }, + name="kinetic_shell_limit", + stats={ + [1]="kinetic_shell_number_of_active_buffs_allowed" + } + }, + [1012]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Projectiles fired from explosion can apply no more than {0} new Shell" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Projectiles fired from explosion can apply no more than {0} new Shells" + } + }, + name="kinetic_shell_transfer", + stats={ + [1]="kinetic_shell_transfer_to_X_targets_on_projectile_hit" + } + }, + [1013]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Projectiles which have collided with the wall deal {0}% more Damage" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Projectiles which have collided with the wall deal {0}% less Damage" + } + }, + name="kinetic_wall_damage", + stats={ + [1]="kinetic_wall_damage_+%_final_for_projectiles_chaining_off_wall" + } + }, + [1014]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Wall is destroyed after {0} Projectile collision" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Wall is destroyed after {0} Projectile collisions" + } + }, + name="kinetic_wall_max_hits", + stats={ + [1]="kinetic_wall_maximum_number_of_hits" + } + }, + [1015]={ [1]={ [1]={ [1]={ @@ -30725,7 +31614,7 @@ return { [1]="knockback_chance_%_at_close_range" } }, - [992]={ + [1016]={ [1]={ [1]={ [1]={ @@ -30763,7 +31652,7 @@ return { [1]="lacerate_hit_and_ailment_damage_+%_final_vs_bleeding_enemies" } }, - [993]={ + [1017]={ [1]={ [1]={ limit={ @@ -30793,7 +31682,7 @@ return { [1]="lancing_steel_damage_+%_at_close_range" } }, - [994]={ + [1018]={ [1]={ [1]={ limit={ @@ -30823,7 +31712,7 @@ return { [1]="lancing_steel_damage_+%_final_after_first_hit_on_target" } }, - [995]={ + [1019]={ [1]={ [1]={ limit={ @@ -30853,7 +31742,7 @@ return { [1]="lancing_steel_targeting_range_+%" } }, - [996]={ + [1020]={ [1]={ [1]={ [1]={ @@ -30891,7 +31780,7 @@ return { [1]="lightning_ailment_effect_+%" } }, - [997]={ + [1021]={ [1]={ [1]={ limit={ @@ -30917,7 +31806,7 @@ return { [1]="lightning_arrow_alt_additional_strikes" } }, - [998]={ + [1022]={ [1]={ [1]={ [1]={ @@ -30938,7 +31827,7 @@ return { [1]="lightning_arrow_alt_strike_frequency_ms" } }, - [999]={ + [1023]={ [1]={ [1]={ limit={ @@ -30964,7 +31853,7 @@ return { [1]="lightning_arrow_%_chance_to_hit_an_additional_enemy" } }, - [1000]={ + [1024]={ [1]={ [1]={ limit={ @@ -30990,7 +31879,7 @@ return { [1]="lightning_arrow_stack_limit" } }, - [1001]={ + [1025]={ [1]={ [1]={ limit={ @@ -31016,7 +31905,7 @@ return { [1]="lightning_conduit_max_num_targets" } }, - [1002]={ + [1026]={ [1]={ [1]={ [1]={ @@ -31050,7 +31939,7 @@ return { [1]="lightning_tendrils_channelled_base_radius_+_per_second_while_channelling" } }, - [1003]={ + [1027]={ [1]={ [1]={ limit={ @@ -31080,7 +31969,7 @@ return { [1]="lightning_tendrils_channelled_larger_pulse_area_of_effect_+%_final" } }, - [1004]={ + [1028]={ [1]={ [1]={ [1]={ @@ -31118,7 +32007,7 @@ return { [1]="lightning_tendrils_channelled_larger_pulse_damage_+%_final" } }, - [1005]={ + [1029]={ [1]={ [1]={ [1]={ @@ -31152,7 +32041,7 @@ return { [1]="lightning_tendrils_channelled_larger_pulse_radius_+" } }, - [1006]={ + [1030]={ [1]={ [1]={ limit={ @@ -31234,7 +32123,7 @@ return { [3]="quality_display_lightning_tower_trap_is_gem" } }, - [1007]={ + [1031]={ [1]={ [1]={ [1]={ @@ -31255,7 +32144,111 @@ return { [1]="link_skills_deal_cold_dot_to_enemies_in_beam_aoe" } }, - [1008]={ + [1032]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Summons {0} Living Lightning Minion" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Summons {0} Living Lightning Minions" + } + }, + name="living_lightning_num_to_summon", + stats={ + [1]="living_lightning_number_of_minions_to_spawn" + } + }, + [1033]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + }, + [2]={ + [1]=0, + [2]=0 + } + }, + text="Living Lightning Minions Attack {0:+d} time before dissipating" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + }, + [2]={ + [1]=0, + [2]=0 + } + }, + text="Living Lightning Minions Attack {0:+d} times before dissipating" + }, + [3]={ + limit={ + [1]={ + [1]=1, + [2]=1 + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="Living Lightning Minions Attack {0} time before dissipating" + }, + [4]={ + limit={ + [1]={ + [1]=2, + [2]="#" + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="Living Lightning Minions Attack {0} times before dissipating" + } + }, + name="living_lightning_attack_count", + stats={ + [1]="living_lightning_number_of_attacks", + [2]="quality_display_living_lightning_is_gem" + } + }, + [1034]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="This Skill is Triggered when a Supported Skill deals Lightning Damage with a Hit" + } + }, + name="living_lightning_triggered", + stats={ + [1]="living_lightning_triggered_on_lightning_hit" + } + }, + [1035]={ [1]={ [1]={ [1]={ @@ -31276,7 +32269,7 @@ return { [1]="lose_all_righteous_charges_on_mana_use_threshold" } }, - [1009]={ + [1036]={ [1]={ [1]={ limit={ @@ -31293,7 +32286,7 @@ return { [1]="lose_all_trauma_at_X_trauma" } }, - [1010]={ + [1037]={ [1]={ [1]={ limit={ @@ -31323,7 +32316,7 @@ return { [1]="magma_brand_ailment_damage_+%_final_per_additional_pustule" } }, - [1011]={ + [1038]={ [1]={ [1]={ limit={ @@ -31353,7 +32346,7 @@ return { [1]="magma_brand_hit_damage_+%_final_per_additional_pustule" } }, - [1012]={ + [1039]={ [1]={ [1]={ limit={ @@ -31370,7 +32363,7 @@ return { [1]="magma_orb_%_chance_to_big_explode_instead_of_chaining" } }, - [1013]={ + [1040]={ [1]={ [1]={ limit={ @@ -31400,7 +32393,7 @@ return { [1]="maim_effect_+%" } }, - [1014]={ + [1041]={ [1]={ [1]={ [1]={ @@ -31434,7 +32427,7 @@ return { [1]="maim_on_hit_%" } }, - [1015]={ + [1042]={ [1]={ [1]={ [1]={ @@ -31459,7 +32452,7 @@ return { [1]="mamba_strike_deal_%_of_all_poison_total_damage_per_minute" } }, - [1016]={ + [1043]={ [1]={ [1]={ limit={ @@ -31489,7 +32482,7 @@ return { [1]="mana_gain_per_target" } }, - [1017]={ + [1044]={ [1]={ [1]={ limit={ @@ -31524,7 +32517,7 @@ return { [2]="quality_display_manabond_is_gem" } }, - [1018]={ + [1045]={ [1]={ [1]={ limit={ @@ -31541,7 +32534,7 @@ return { [1]="display_manabond_length" } }, - [1019]={ + [1046]={ [1]={ [1]={ limit={ @@ -31558,7 +32551,7 @@ return { [1]="manaforged_arrows_total_mana_threshold" } }, - [1020]={ + [1047]={ [1]={ [1]={ limit={ @@ -31575,7 +32568,7 @@ return { [1]="max_crab_aspect_stacks" } }, - [1021]={ + [1048]={ [1]={ [1]={ limit={ @@ -31592,7 +32585,7 @@ return { [1]="max_number_of_absolution_sentinels" } }, - [1022]={ + [1049]={ [1]={ [1]={ limit={ @@ -31609,7 +32602,7 @@ return { [1]="max_number_of_lightning_warp_markers" } }, - [1023]={ + [1050]={ [1]={ [1]={ limit={ @@ -31626,7 +32619,7 @@ return { [1]="max_steel_ammo" } }, - [1024]={ + [1051]={ [1]={ [1]={ [1]={ @@ -31664,7 +32657,7 @@ return { [1]="maximum_life_+%_for_corpses_you_create" } }, - [1025]={ + [1052]={ [1]={ [1]={ limit={ @@ -31681,7 +32674,7 @@ return { [1]="maximum_number_of_blades_left_in_ground" } }, - [1026]={ + [1053]={ [1]={ [1]={ limit={ @@ -31707,7 +32700,7 @@ return { [1]="galvanic_field_maximum_number_of_spheres" } }, - [1027]={ + [1054]={ [1]={ [1]={ limit={ @@ -31733,7 +32726,7 @@ return { [1]="maximum_number_of_mirage_warriors" } }, - [1028]={ + [1055]={ [1]={ [1]={ limit={ @@ -31849,7 +32842,7 @@ return { [4]="quality_display_venom_gyre_is_gem" } }, - [1029]={ + [1056]={ [1]={ [1]={ limit={ @@ -31897,7 +32890,7 @@ return { [2]="quality_display_generals_cry_is_gem" } }, - [1030]={ + [1057]={ [1]={ [1]={ limit={ @@ -31923,7 +32916,7 @@ return { [1]="maximum_number_of_summoned_doubles" } }, - [1031]={ + [1058]={ [1]={ [1]={ limit={ @@ -31949,7 +32942,7 @@ return { [1]="maximum_number_of_vaal_ice_shot_mirages" } }, - [1032]={ + [1059]={ [1]={ [1]={ limit={ @@ -31984,7 +32977,7 @@ return { [2]="quality_display_herald_of_agony_is_gem" } }, - [1033]={ + [1060]={ [1]={ [1]={ limit={ @@ -32010,7 +33003,7 @@ return { [1]="virtual_number_of_spirit_strikes" } }, - [1034]={ + [1061]={ [1]={ [1]={ limit={ @@ -32027,7 +33020,7 @@ return { [1]="mine_cannot_rearm" } }, - [1035]={ + [1062]={ [1]={ [1]={ limit={ @@ -32057,7 +33050,7 @@ return { [1]="mine_critical_strike_chance_+%_per_power_charge" } }, - [1036]={ + [1063]={ [1]={ [1]={ limit={ @@ -32074,7 +33067,7 @@ return { [1]="mine_detonates_instantly" } }, - [1037]={ + [1064]={ [1]={ [1]={ limit={ @@ -32104,7 +33097,7 @@ return { [1]="mine_detonation_speed_+%" } }, - [1038]={ + [1065]={ [1]={ [1]={ limit={ @@ -32134,7 +33127,7 @@ return { [1]="mine_projectile_speed_+%_per_frenzy_charge" } }, - [1039]={ + [1066]={ [1]={ [1]={ limit={ @@ -32164,7 +33157,7 @@ return { [1]="mine_throwing_speed_+%_per_frenzy_charge" } }, - [1040]={ + [1067]={ [1]={ [1]={ limit={ @@ -32186,7 +33179,7 @@ return { [2]="maximum_added_cold_damage_per_frenzy_charge" } }, - [1041]={ + [1068]={ [1]={ [1]={ limit={ @@ -32208,7 +33201,7 @@ return { [2]="maximum_added_cold_damage_vs_chilled_enemies" } }, - [1042]={ + [1069]={ [1]={ [1]={ limit={ @@ -32230,7 +33223,7 @@ return { [2]="maximum_added_lightning_damage_from_skill" } }, - [1043]={ + [1070]={ [1]={ [1]={ [1]={ @@ -32251,7 +33244,7 @@ return { [1]="minimum_power_from_quality" } }, - [1044]={ + [1071]={ [1]={ [1]={ limit={ @@ -32273,7 +33266,7 @@ return { [2]="maximum_secondary_physical_damage_per_15_strength" } }, - [1045]={ + [1072]={ [1]={ [1]={ limit={ @@ -32290,7 +33283,7 @@ return { [1]="minion_additional_physical_damage_reduction_%" } }, - [1046]={ + [1073]={ [1]={ [1]={ [1]={ @@ -32311,7 +33304,7 @@ return { [1]="minion_aggravate_bleeding_on_attack_hit_chance_%" } }, - [1047]={ + [1074]={ [1]={ [1]={ limit={ @@ -32341,7 +33334,7 @@ return { [1]="minion_ailment_damage_+%" } }, - [1048]={ + [1075]={ [1]={ [1]={ limit={ @@ -32358,7 +33351,7 @@ return { [1]="minion_block_%" } }, - [1049]={ + [1076]={ [1]={ [1]={ limit={ @@ -32388,7 +33381,7 @@ return { [1]="minion_burning_damage_+%" } }, - [1050]={ + [1077]={ [1]={ [1]={ limit={ @@ -32405,7 +33398,7 @@ return { [1]="minion_chance_to_deal_double_damage_%" } }, - [1051]={ + [1078]={ [1]={ [1]={ limit={ @@ -32422,7 +33415,7 @@ return { [1]="minion_chance_to_taunt_on_hit_%" } }, - [1052]={ + [1079]={ [1]={ [1]={ limit={ @@ -32452,7 +33445,7 @@ return { [1]="minion_cooldown_recovery_+%" } }, - [1053]={ + [1080]={ [1]={ [1]={ limit={ @@ -32482,7 +33475,7 @@ return { [1]="minion_critical_strike_chance_+%" } }, - [1054]={ + [1081]={ [1]={ [1]={ limit={ @@ -32499,7 +33492,7 @@ return { [1]="minion_critical_strike_multiplier_+" } }, - [1055]={ + [1082]={ [1]={ [1]={ limit={ @@ -32529,7 +33522,7 @@ return { [1]="minion_damage_+%_on_full_life" } }, - [1056]={ + [1083]={ [1]={ [1]={ limit={ @@ -32559,7 +33552,7 @@ return { [1]="minion_fire_damage_taken_+%" } }, - [1057]={ + [1084]={ [1]={ [1]={ [1]={ @@ -32580,7 +33573,7 @@ return { [1]="minion_grant_puppet_master_buff_to_parent_on_hit_%" } }, - [1058]={ + [1085]={ [1]={ [1]={ [1]={ @@ -32601,7 +33594,7 @@ return { [1]="minion_life_regeneration_rate_per_minute_%" } }, - [1059]={ + [1086]={ [1]={ [1]={ [1]={ @@ -32622,7 +33615,7 @@ return { [1]="minion_maim_on_hit_%" } }, - [1060]={ + [1087]={ [1]={ [1]={ [1]={ @@ -32643,7 +33636,7 @@ return { [1]="minion_maximum_all_elemental_resistances_%" } }, - [1061]={ + [1088]={ [1]={ [1]={ limit={ @@ -32673,7 +33666,7 @@ return { [1]="minion_melee_damage_+%" } }, - [1062]={ + [1089]={ [1]={ [1]={ limit={ @@ -32699,7 +33692,7 @@ return { [1]="minion_%_chance_to_be_summoned_with_maximum_frenzy_charges" } }, - [1063]={ + [1090]={ [1]={ [1]={ limit={ @@ -32716,7 +33709,7 @@ return { [1]="minion_sacrifice_%_damage_to_regen" } }, - [1064]={ + [1091]={ [1]={ [1]={ limit={ @@ -32733,7 +33726,7 @@ return { [1]="minion_sacrifice_%_minion_life_explosion" } }, - [1065]={ + [1092]={ [1]={ [1]={ limit={ @@ -32750,7 +33743,7 @@ return { [1]="minion_sacrifice_%_minion_life_to_degen" } }, - [1066]={ + [1093]={ [1]={ [1]={ limit={ @@ -32780,7 +33773,7 @@ return { [1]="minion_skill_area_of_effect_+%" } }, - [1067]={ + [1094]={ [1]={ [1]={ limit={ @@ -32810,7 +33803,7 @@ return { [1]="minion_stun_threshold_reduction_+%" } }, - [1068]={ + [1095]={ [1]={ [1]={ [1]={ @@ -32848,7 +33841,7 @@ return { [1]="minion_withered_effect_+%" } }, - [1069]={ + [1096]={ [1]={ [1]={ [1]={ @@ -32882,7 +33875,7 @@ return { [1]="minions_cannot_be_damaged_after_summoned_ms" } }, - [1070]={ + [1097]={ [1]={ [1]={ [1]={ @@ -32916,7 +33909,7 @@ return { [1]="minions_chance_to_intimidate_on_hit_%" } }, - [1071]={ + [1098]={ [1]={ [1]={ limit={ @@ -32933,7 +33926,7 @@ return { [1]="minions_deal_%_of_physical_damage_as_additional_chaos_damage" } }, - [1072]={ + [1099]={ [1]={ [1]={ limit={ @@ -32959,7 +33952,7 @@ return { [1]="minions_inflict_exposure_on_hit_%_chance" } }, - [1073]={ + [1100]={ [1]={ [1]={ limit={ @@ -32976,7 +33969,7 @@ return { [1]="minions_take_%_of_life_as_chaos_damage_when_summoned_over_1_second" } }, - [1074]={ + [1101]={ [1]={ [1]={ limit={ @@ -32993,7 +33986,24 @@ return { [1]="mirage_archer_number_of_additional_projectiles" } }, - [1075]={ + [1102]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Reflections have {0}% of your Maximum Life" + } + }, + name="misty_reflection_life", + stats={ + [1]="misty_reflection_clone_base_maximum_life_%_of_owner_maximum_life" + } + }, + [1103]={ [1]={ [1]={ limit={ @@ -33008,6 +34018,10 @@ return { [3]={ [1]=0, [2]=0 + }, + [4]={ + [1]=0, + [2]=0 } }, text="Buff can take additional Damage equal to {1}% of your Armour" @@ -33025,19 +34039,45 @@ return { [3]={ [1]="#", [2]="#" + }, + [4]={ + [1]=0, + [2]=0 } }, text="{0}% of Damage from Hits is taken from the Buff before your Life or Energy Shield\nBuff can take Damage equal to {1}% of your Armour, up to a maximum of {2}" + }, + [3]={ + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]="#", + [2]="#" + }, + [3]={ + [1]="#", + [2]="#" + }, + [4]={ + [1]=1, + [2]="#" + } + }, + text="{0}% of Damage from Hits is taken from the Buff before your Life or Energy Shield\nBuff can take up to {3} Damage" } }, name="molten_shell_damage_buffer", stats={ [1]="molten_shell_damage_absorbed_%", [2]="molten_shell_damage_absorb_limit_%_of_armour", - [3]="molten_shell_max_damage_absorbed" + [3]="molten_shell_max_damage_absorbed", + [4]="graft_skill_xoph_molten_shell_absorb_limit" } }, - [1076]={ + [1104]={ [1]={ [1]={ limit={ @@ -33072,7 +34112,7 @@ return { [2]="display_vaal_molten_shell_alternate_description" } }, - [1077]={ + [1105]={ [1]={ [1]={ limit={ @@ -33089,7 +34129,7 @@ return { [1]="molten_shell_explosion_damage_penetrates_%_fire_resistance" } }, - [1078]={ + [1106]={ [1]={ [1]={ limit={ @@ -33115,7 +34155,7 @@ return { [1]="molten_strike_every_5th_attack_fire_X_additional_projectiles" } }, - [1079]={ + [1107]={ [1]={ [1]={ limit={ @@ -33145,7 +34185,7 @@ return { [1]="molten_strike_every_5th_attack_projectiles_damage_+%_final" } }, - [1080]={ + [1108]={ [1]={ [1]={ limit={ @@ -33162,7 +34202,7 @@ return { [1]="molten_strike_projectiles_chain_when_impacting_ground" } }, - [1081]={ + [1109]={ [1]={ [1]={ limit={ @@ -33192,7 +34232,7 @@ return { [1]="mortal_call_elemental_damage_taken_+%_final" } }, - [1082]={ + [1110]={ [1]={ [1]={ limit={ @@ -33222,7 +34262,7 @@ return { [1]="mortal_call_physical_damage_taken_+%_final" } }, - [1083]={ + [1111]={ [1]={ [1]={ [1]={ @@ -33282,7 +34322,7 @@ return { [2]="quality_display_immortal_call_is_gem" } }, - [1084]={ + [1112]={ [1]={ [1]={ limit={ @@ -33312,7 +34352,7 @@ return { [1]="multiple_projectiles_projectile_spread_+%" } }, - [1085]={ + [1113]={ [1]={ [1]={ limit={ @@ -33342,7 +34382,7 @@ return { [1]="multistrike_area_of_effect_+%_per_repeat" } }, - [1086]={ + [1114]={ [1]={ [1]={ limit={ @@ -33372,7 +34412,7 @@ return { [1]="multistrike_damage_+%_final_on_first_repeat" } }, - [1087]={ + [1115]={ [1]={ [1]={ limit={ @@ -33402,7 +34442,7 @@ return { [1]="multistrike_damage_+%_final_on_second_repeat" } }, - [1088]={ + [1116]={ [1]={ [1]={ limit={ @@ -33432,7 +34472,93 @@ return { [1]="multistrike_damage_+%_final_on_third_repeat" } }, - [1089]={ + [1117]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Explosion deals {0}% more Damage with Hits and Ailments" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Explosion deals {0}% less Damage with Hits and Ailments" + } + }, + name="napalm_arrow_hit_damage", + stats={ + [1]="napalm_arrow_detonation_hit_damage_+%_final" + } + }, + [1118]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Explosion deals {0}% more Damage with Ignite" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Explosion deals {0}% less Damage with Ignite" + } + }, + name="napalm_arrow_ignite_damage", + stats={ + [1]="napalm_arrow_ignite_damage_+%_final_with_detonation" + } + }, + [1119]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Maximum {0} stuck arrow" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Maximum {0} stuck arrows" + } + }, + name="napalm_maximum_arrows", + stats={ + [1]="napalm_arrow_maximum_number_of_unprimed_arrows_allowed" + } + }, + [1120]={ [1]={ [1]={ limit={ @@ -33449,7 +34575,7 @@ return { [1]="nightblade_elusive_grants_critical_strike_multiplier_+_to_supported_skills" } }, - [1090]={ + [1121]={ [1]={ [1]={ limit={ @@ -33466,7 +34592,7 @@ return { [1]="no_cost" } }, - [1091]={ + [1122]={ [1]={ [1]={ [1]={ @@ -33504,7 +34630,7 @@ return { [1]="non_damaging_ailment_effect_+%" } }, - [1092]={ + [1123]={ [1]={ [1]={ limit={ @@ -33565,7 +34691,7 @@ return { [2]="quality_display_firewall_is_gem" } }, - [1093]={ + [1124]={ [1]={ [1]={ limit={ @@ -33582,7 +34708,7 @@ return { [1]="number_of_allowed_storm_arrows" } }, - [1094]={ + [1125]={ [1]={ [1]={ limit={ @@ -33608,7 +34734,7 @@ return { [1]="number_of_champions_of_light_allowed" } }, - [1095]={ + [1126]={ [1]={ [1]={ limit={ @@ -33634,7 +34760,7 @@ return { [1]="number_of_corpses_to_consume" } }, - [1096]={ + [1127]={ [1]={ [1]={ limit={ @@ -33660,7 +34786,7 @@ return { [1]="base_number_of_effigies_allowed" } }, - [1097]={ + [1128]={ [1]={ [1]={ limit={ @@ -33686,7 +34812,7 @@ return { [1]="number_of_herald_scorpions_allowed" } }, - [1098]={ + [1129]={ [1]={ [1]={ limit={ @@ -33712,7 +34838,7 @@ return { [1]="number_of_mirage_archers_allowed" } }, - [1099]={ + [1130]={ [1]={ [1]={ limit={ @@ -33738,7 +34864,7 @@ return { [1]="number_of_reapers_allowed" } }, - [1100]={ + [1131]={ [1]={ [1]={ limit={ @@ -33764,7 +34890,7 @@ return { [1]="number_of_relics_allowed" } }, - [1101]={ + [1132]={ [1]={ [1]={ limit={ @@ -33790,7 +34916,7 @@ return { [1]="number_of_void_spawns_allowed" } }, - [1102]={ + [1133]={ [1]={ [1]={ [1]={ @@ -33824,7 +34950,7 @@ return { [1]="orb_of_storms_bolt_frequency_ms" } }, - [1103]={ + [1134]={ [1]={ [1]={ [1]={ @@ -33858,7 +34984,7 @@ return { [1]="orb_of_storms_channelling_bolt_frequency_ms" } }, - [1104]={ + [1135]={ [1]={ [1]={ limit={ @@ -33875,7 +35001,7 @@ return { [1]="orb_of_storms_maximum_number_of_hits" } }, - [1105]={ + [1136]={ [1]={ [1]={ limit={ @@ -33905,7 +35031,7 @@ return { [1]="overpowered_effect_+%" } }, - [1106]={ + [1137]={ [1]={ [1]={ [1]={ @@ -33926,7 +35052,7 @@ return { [1]="overwhelm_%_physical_damage_reduction_while_max_fortification" } }, - [1107]={ + [1138]={ [1]={ [1]={ limit={ @@ -33956,7 +35082,7 @@ return { [1]="parallel_projectile_firing_point_x_dist_+%" } }, - [1108]={ + [1139]={ [1]={ [1]={ limit={ @@ -33973,7 +35099,7 @@ return { [1]="penance_brand_additional_descriptions_boolean" } }, - [1109]={ + [1140]={ [1]={ [1]={ [1]={ @@ -34007,7 +35133,7 @@ return { [1]="penance_brand_base_spread_radius_+" } }, - [1110]={ + [1141]={ [1]={ [1]={ limit={ @@ -34024,7 +35150,7 @@ return { [1]="penance_brand_pulses_instead_of_explode" } }, - [1111]={ + [1142]={ [1]={ [1]={ limit={ @@ -34050,7 +35176,7 @@ return { [1]="penance_mark_summon_phantasms_when_hit" } }, - [1112]={ + [1143]={ [1]={ [1]={ [1]={ @@ -34071,7 +35197,7 @@ return { [1]="penance_mark_phantasm_duration_display" } }, - [1113]={ + [1144]={ [1]={ [1]={ limit={ @@ -34088,7 +35214,7 @@ return { [1]="penetrate_%_fire_resistance_per_100_dexterity" } }, - [1114]={ + [1145]={ [1]={ [1]={ limit={ @@ -34114,7 +35240,7 @@ return { [1]="%_chance_to_gain_frenzy_charge_on_mine_detonated_targeting_an_enemy" } }, - [1115]={ + [1146]={ [1]={ [1]={ limit={ @@ -34140,7 +35266,7 @@ return { [1]="%_chance_to_gain_frenzy_charge_on_trap_triggered_by_an_enemy" } }, - [1116]={ + [1147]={ [1]={ [1]={ limit={ @@ -34166,7 +35292,7 @@ return { [1]="%_chance_to_gain_power_charge_on_mine_detonated_targeting_an_enemy" } }, - [1117]={ + [1148]={ [1]={ [1]={ limit={ @@ -34192,7 +35318,7 @@ return { [1]="%_chance_to_gain_power_charge_on_trap_triggered_by_an_enemy" } }, - [1118]={ + [1149]={ [1]={ [1]={ limit={ @@ -34209,7 +35335,7 @@ return { [1]="petrification_statue_target_action_speed_-%" } }, - [1119]={ + [1150]={ [1]={ [1]={ limit={ @@ -34231,7 +35357,7 @@ return { [2]="phantasm_grant_buff_maximum_added_physical_damage" } }, - [1120]={ + [1151]={ [1]={ [1]={ limit={ @@ -34257,7 +35383,7 @@ return { [1]="phase_run_%_chance_to_not_replace_buff_on_skill_use" } }, - [1121]={ + [1152]={ [1]={ [1]={ limit={ @@ -34339,7 +35465,7 @@ return { [3]="quality_display_phys_cascade_trap_is_gem" } }, - [1122]={ + [1153]={ [1]={ [1]={ limit={ @@ -34356,7 +35482,7 @@ return { [1]="physical_damage_reduction_%_per_crab_aspect_stack" } }, - [1123]={ + [1154]={ [1]={ [1]={ limit={ @@ -34386,7 +35512,7 @@ return { [1]="plague_bearer_chaos_damage_taken_+%_while_incubating" } }, - [1124]={ + [1155]={ [1]={ [1]={ limit={ @@ -34416,7 +35542,7 @@ return { [1]="plague_bearer_movement_speed_+%_while_infecting" } }, - [1125]={ + [1156]={ [1]={ [1]={ limit={ @@ -34433,7 +35559,7 @@ return { [1]="poison_damage_+100%_final_chance" } }, - [1126]={ + [1157]={ [1]={ [1]={ limit={ @@ -34450,7 +35576,7 @@ return { [1]="poison_dot_multiplier_+" } }, - [1127]={ + [1158]={ [1]={ [1]={ [1]={ @@ -34471,7 +35597,7 @@ return { [1]="portal_alternate_destination_chance_permyriad" } }, - [1128]={ + [1159]={ [1]={ [1]={ limit={ @@ -34497,7 +35623,7 @@ return { [1]="power_siphon_fire_at_x_targets" } }, - [1129]={ + [1160]={ [1]={ [1]={ limit={ @@ -34523,7 +35649,7 @@ return { [1]="primary_projectile_chain_num" } }, - [1130]={ + [1161]={ [1]={ [1]={ [1]={ @@ -34557,7 +35683,7 @@ return { [1]="primary_projectile_impale_chance_%" } }, - [1131]={ + [1162]={ [1]={ [1]={ [1]={ @@ -34591,7 +35717,7 @@ return { [1]="prismatic_rain_beam_frequency_ms" } }, - [1132]={ + [1163]={ [1]={ [1]={ limit={ @@ -34608,7 +35734,7 @@ return { [1]="projectile_additional_return_chance_%" } }, - [1133]={ + [1164]={ [1]={ [1]={ limit={ @@ -34638,7 +35764,7 @@ return { [1]="projectile_attack_damage_+%_in_blood_stance" } }, - [1134]={ + [1165]={ [1]={ [1]={ limit={ @@ -34686,7 +35812,7 @@ return { [2]="projectiles_can_split_from_terrain" } }, - [1135]={ + [1166]={ [1]={ [1]={ limit={ @@ -34712,7 +35838,7 @@ return { [1]="projectile_chance_to_not_pierce_%" } }, - [1136]={ + [1167]={ [1]={ [1]={ limit={ @@ -34742,7 +35868,7 @@ return { [1]="projectile_damage_+%_final_if_pierced_enemy" } }, - [1137]={ + [1168]={ [1]={ [1]={ limit={ @@ -34772,7 +35898,7 @@ return { [1]="projectile_damage_+%_if_pierced_enemy" } }, - [1138]={ + [1169]={ [1]={ [1]={ limit={ @@ -34802,7 +35928,7 @@ return { [1]="projectile_damage_+%_per_remaining_chain" } }, - [1139]={ + [1170]={ [1]={ [1]={ [1]={ @@ -34836,7 +35962,7 @@ return { [1]="projectile_maximum_range_override" } }, - [1140]={ + [1171]={ [1]={ [1]={ limit={ @@ -34866,7 +35992,7 @@ return { [1]="projectile_speed_+%_in_sand_stance" } }, - [1141]={ + [1172]={ [1]={ [1]={ limit={ @@ -34883,7 +36009,7 @@ return { [1]="projectiles_cannot_split" } }, - [1142]={ + [1173]={ [1]={ [1]={ limit={ @@ -34913,7 +36039,7 @@ return { [1]="projectile_damage_+%_vs_nearby_enemies" } }, - [1143]={ + [1174]={ [1]={ [1]={ limit={ @@ -34930,7 +36056,7 @@ return { [1]="projectiles_fork_when_passing_a_flame_wall" } }, - [1144]={ + [1175]={ [1]={ [1]={ [1]={ @@ -34964,7 +36090,7 @@ return { [1]="projectiles_pierce_all_targets_in_x_range" } }, - [1145]={ + [1176]={ [1]={ [1]={ limit={ @@ -34981,7 +36107,7 @@ return { [1]="projectiles_rain" } }, - [1146]={ + [1177]={ [1]={ [1]={ [1]={ @@ -35015,7 +36141,7 @@ return { [1]="puppet_master_duration_ms" } }, - [1147]={ + [1178]={ [1]={ [1]={ limit={ @@ -35032,7 +36158,7 @@ return { [1]="purge_dot_multiplier_+_per_100ms_duration_expired" } }, - [1148]={ + [1179]={ [1]={ [1]={ limit={ @@ -35049,7 +36175,7 @@ return { [1]="purge_expose_resist_%_matching_highest_element_damage" } }, - [1149]={ + [1180]={ [1]={ [1]={ limit={ @@ -35075,7 +36201,24 @@ return { [1]="purifying_flame_%_chance_to_create_consecrated_ground_around_you" } }, - [1150]={ + [1181]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Fire Exposure Aura applies {0:+d}% to Fire Resistance" + } + }, + name="pyroclast_mine_fire_exposure", + stats={ + [1]="pyroclast_mine_aura_fire_exposure_%_to_apply" + } + }, + [1182]={ [1]={ [1]={ limit={ @@ -35097,7 +36240,7 @@ return { [2]="quick_guard_damage_absorb_limit" } }, - [1151]={ + [1183]={ [1]={ [1]={ [1]={ @@ -35148,7 +36291,7 @@ return { [2]="radiant_sentinel_minion_burning_effect_radius" } }, - [1152]={ + [1184]={ [1]={ [1]={ limit={ @@ -35183,7 +36326,7 @@ return { [2]="quality_display_rage_vortex_is_gem" } }, - [1153]={ + [1185]={ [1]={ [1]={ limit={ @@ -35222,7 +36365,7 @@ return { [2]="rage_slash_rage_sacrifice_per_damage_bonus" } }, - [1154]={ + [1186]={ [1]={ [1]={ [1]={ @@ -35265,7 +36408,7 @@ return { [2]="rage_slash_rage_sacrifice_per_radius_bonus" } }, - [1155]={ + [1187]={ [1]={ [1]={ limit={ @@ -35295,7 +36438,7 @@ return { [1]="rage_slash_vortex_attack_speed_+%_final" } }, - [1156]={ + [1188]={ [1]={ [1]={ limit={ @@ -35321,7 +36464,7 @@ return { [1]="rage_slash_maximum_vortices" } }, - [1157]={ + [1189]={ [1]={ [1]={ [1]={ @@ -35342,7 +36485,7 @@ return { [1]="rage_storm_scaling_rage_hundred_times_base_cost" } }, - [1158]={ + [1190]={ [1]={ [1]={ limit={ @@ -35359,7 +36502,7 @@ return { [1]="rage_storm_scaling_rage_loss_+%_per_second" } }, - [1159]={ + [1191]={ [1]={ [1]={ limit={ @@ -35389,7 +36532,7 @@ return { [1]="ragestorm_movement_speed_+%" } }, - [1160]={ + [1192]={ [1]={ [1]={ limit={ @@ -35406,7 +36549,7 @@ return { [1]="rain_of_arrows_additional_sequence_chance_%" } }, - [1161]={ + [1193]={ [1]={ [1]={ limit={ @@ -35423,7 +36566,7 @@ return { [1]="raised_spectre_level" } }, - [1162]={ + [1194]={ [1]={ [1]={ limit={ @@ -35440,7 +36583,7 @@ return { [1]="ranged_attack_totem_only_attacks_when_owner_attacks" } }, - [1163]={ + [1195]={ [1]={ [1]={ limit={ @@ -35457,7 +36600,7 @@ return { [1]="ravenous_buff_magnitude" } }, - [1164]={ + [1196]={ [1]={ [1]={ limit={ @@ -35474,7 +36617,7 @@ return { [1]="reave_additional_max_stacks" } }, - [1165]={ + [1197]={ [1]={ [1]={ limit={ @@ -35504,7 +36647,7 @@ return { [1]="recall_sigil_target_search_range_+%" } }, - [1166]={ + [1198]={ [1]={ [1]={ [1]={ @@ -35525,7 +36668,7 @@ return { [1]="recover_%_life_when_stunning_an_enemy_permyriad" } }, - [1167]={ + [1199]={ [1]={ [1]={ limit={ @@ -35542,7 +36685,7 @@ return { [1]="recover_%_maximum_life_on_cull" } }, - [1168]={ + [1200]={ [1]={ [1]={ [1]={ @@ -35563,7 +36706,7 @@ return { [1]="recover_permyriad_life_on_skill_use" } }, - [1169]={ + [1201]={ [1]={ [1]={ limit={ @@ -35580,7 +36723,7 @@ return { [1]="reduce_enemy_chaos_resistance_%" } }, - [1170]={ + [1202]={ [1]={ [1]={ limit={ @@ -35597,7 +36740,7 @@ return { [1]="refresh_bleeding_duration_on_hit_%_chance" } }, - [1171]={ + [1203]={ [1]={ [1]={ limit={ @@ -35614,7 +36757,7 @@ return { [1]="remove_chill_on_enemy_when_you_hit" } }, - [1172]={ + [1204]={ [1]={ [1]={ limit={ @@ -35631,7 +36774,7 @@ return { [1]="righteous_fire_and_fire_beam_regenerate_x_mana_per_second_while_enemies_are_within" } }, - [1173]={ + [1205]={ [1]={ [1]={ limit={ @@ -35648,7 +36791,7 @@ return { [1]="ring_of_ice_placement_distance" } }, - [1174]={ + [1206]={ [1]={ [1]={ limit={ @@ -35700,7 +36843,7 @@ return { [2]="quality_display_rune_paint_area_is_gem" } }, - [1175]={ + [1207]={ [1]={ [1]={ limit={ @@ -35730,7 +36873,7 @@ return { [1]="rune_paint_area_of_effect_+%_per_rune_level" } }, - [1176]={ + [1208]={ [1]={ [1]={ [1]={ @@ -35794,7 +36937,7 @@ return { [2]="quality_display_rune_paint_is_gem" } }, - [1177]={ + [1209]={ [1]={ [1]={ limit={ @@ -35811,7 +36954,7 @@ return { [1]="rune_paint_mana_spend_per_rune_upgrade" } }, - [1178]={ + [1210]={ [1]={ [1]={ limit={ @@ -35837,7 +36980,7 @@ return { [1]="rune_paint_max_rune_level" } }, - [1179]={ + [1211]={ [1]={ [1]={ limit={ @@ -35889,7 +37032,7 @@ return { [2]="quality_display_sanctify_is_gem" } }, - [1180]={ + [1212]={ [1]={ [1]={ limit={ @@ -35919,7 +37062,7 @@ return { [1]="scorpion_minion_attack_speed_+%" } }, - [1181]={ + [1213]={ [1]={ [1]={ limit={ @@ -35949,7 +37092,7 @@ return { [1]="scorpion_minion_physical_damage_+%" } }, - [1182]={ + [1214]={ [1]={ [1]={ limit={ @@ -35971,7 +37114,7 @@ return { [2]="scorpion_minion_maximum_added_physical_damage" } }, - [1183]={ + [1215]={ [1]={ [1]={ limit={ @@ -35997,7 +37140,7 @@ return { [1]="scourge_arrow_X_pods_per_projectile" } }, - [1184]={ + [1216]={ [1]={ [1]={ limit={ @@ -36027,7 +37170,7 @@ return { [1]="sentinel_minion_cooldown_speed_+%" } }, - [1185]={ + [1217]={ [1]={ [1]={ limit={ @@ -36053,7 +37196,7 @@ return { [1]="shaman_voodoo_pole_redirect_damage_to_player_at_%_value" } }, - [1186]={ + [1218]={ [1]={ [1]={ limit={ @@ -36079,7 +37222,7 @@ return { [1]="shaman_voodoo_pole_redirect_damage_to_pole_at_%_value" } }, - [1187]={ + [1219]={ [1]={ [1]={ limit={ @@ -36096,7 +37239,7 @@ return { [1]="shatter_on_killing_blow" } }, - [1188]={ + [1220]={ [1]={ [1]={ limit={ @@ -36122,7 +37265,7 @@ return { [1]="shattering_steel_hit_damage_+%_final_scaled_by_projectile_distance_per_ammo_consumed" } }, - [1189]={ + [1221]={ [1]={ [1]={ limit={ @@ -36152,7 +37295,7 @@ return { [1]="shield_crush_damage_+%_final_from_distance" } }, - [1190]={ + [1222]={ [1]={ [1]={ limit={ @@ -36182,7 +37325,7 @@ return { [1]="shield_crush_helmet_enchantment_aoe_+%_final" } }, - [1191]={ + [1223]={ [1]={ [1]={ limit={ @@ -36212,7 +37355,7 @@ return { [1]="shock_effect_+%" } }, - [1192]={ + [1224]={ [1]={ [1]={ limit={ @@ -36242,7 +37385,7 @@ return { [1]="shock_effect_+%_with_critical_strikes" } }, - [1193]={ + [1225]={ [1]={ [1]={ [1]={ @@ -36263,7 +37406,7 @@ return { [1]="shock_maximum_magnitude_+" } }, - [1194]={ + [1226]={ [1]={ [1]={ limit={ @@ -36289,7 +37432,7 @@ return { [1]="shock_nova_ring_chance_to_shock_+%" } }, - [1195]={ + [1227]={ [1]={ [1]={ limit={ @@ -36319,7 +37462,7 @@ return { [1]="shock_nova_ring_shocks_as_if_dealing_damage_+%_final" } }, - [1196]={ + [1228]={ [1]={ [1]={ limit={ @@ -36349,7 +37492,7 @@ return { [1]="shocked_ground_base_magnitude_override" } }, - [1197]={ + [1229]={ [1]={ [1]={ [1]={ @@ -36370,7 +37513,7 @@ return { [1]="shrapnel_shot_cone_placement_distance_+" } }, - [1198]={ + [1230]={ [1]={ [1]={ limit={ @@ -36418,7 +37561,7 @@ return { [2]="quality_display_explosive_trap_is_gem" } }, - [1199]={ + [1231]={ [1]={ [1]={ limit={ @@ -36435,7 +37578,7 @@ return { [1]="sigil_attached_target_fire_penetration_%" } }, - [1200]={ + [1232]={ [1]={ [1]={ limit={ @@ -36452,7 +37595,7 @@ return { [1]="sigil_attached_target_lightning_penetration_%" } }, - [1201]={ + [1233]={ [1]={ [1]={ [1]={ @@ -36473,7 +37616,7 @@ return { [1]="sigil_recall_extend_base_secondary_skill_effect_duration" } }, - [1202]={ + [1234]={ [1]={ [1]={ [1]={ @@ -36494,7 +37637,7 @@ return { [1]="sigil_recall_extend_base_skill_effect_duration" } }, - [1203]={ + [1235]={ [1]={ [1]={ limit={ @@ -36511,7 +37654,7 @@ return { [1]="sigils_can_target_reaper_minions" } }, - [1204]={ + [1236]={ [1]={ [1]={ [1]={ @@ -36550,7 +37693,7 @@ return { [2]="display_active_skill_forced_stance" } }, - [1205]={ + [1237]={ [1]={ [1]={ limit={ @@ -36580,7 +37723,7 @@ return { [1]="skill_area_angle_+%" } }, - [1206]={ + [1238]={ [1]={ [1]={ limit={ @@ -36606,7 +37749,7 @@ return { [1]="skill_area_of_effect_+%_final_in_sand_stance" } }, - [1207]={ + [1239]={ [1]={ [1]={ [1]={ @@ -36632,7 +37775,7 @@ return { [2]="quality_display_shock_chance_from_skill_is_gem" } }, - [1208]={ + [1240]={ [1]={ [1]={ limit={ @@ -36662,7 +37805,24 @@ return { [1]="skill_buff_grants_attack_and_cast_speed_+%" } }, - [1209]={ + [1241]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Buff grants {0}% more Damage per Herald Skill affecting you" + } + }, + name="skill_buff_more_damage_per_herald_skill_affecting_you", + stats={ + [1]="skill_buff_grants_damage_+%_final_per_herald_skill_affecting_you" + } + }, + [1242]={ [1]={ [1]={ limit={ @@ -36692,7 +37852,7 @@ return { [1]="skill_code_movement_speed_+%_final" } }, - [1210]={ + [1243]={ [1]={ [1]={ limit={ @@ -36709,7 +37869,7 @@ return { [1]="skill_convert_%_physical_damage_to_random_element" } }, - [1211]={ + [1244]={ [1]={ [1]={ limit={ @@ -36739,7 +37899,7 @@ return { [1]="skill_damage_+%_final_per_chain_from_skill_specific_stat" } }, - [1212]={ + [1245]={ [1]={ [1]={ [1]={ @@ -36777,7 +37937,7 @@ return { [1]="skill_effect_and_damaging_ailment_duration_+%" } }, - [1213]={ + [1246]={ [1]={ [1]={ [1]={ @@ -36798,7 +37958,7 @@ return { [1]="skill_effect_duration_per_100_int" } }, - [1214]={ + [1247]={ [1]={ [1]={ limit={ @@ -36828,7 +37988,7 @@ return { [1]="skill_effect_duration_+%_while_dead" } }, - [1215]={ + [1248]={ [1]={ [1]={ [1]={ @@ -36849,7 +38009,7 @@ return { [1]="skill_grant_elusive_when_used" } }, - [1216]={ + [1249]={ [1]={ [1]={ limit={ @@ -36866,7 +38026,7 @@ return { [1]="skill_has_trigger_from_unique_item" } }, - [1217]={ + [1250]={ [1]={ [1]={ limit={ @@ -36883,7 +38043,7 @@ return { [1]="skill_maximum_travel_distance_+%" } }, - [1218]={ + [1251]={ [1]={ [1]={ limit={ @@ -36909,7 +38069,7 @@ return { [1]="skill_number_of_triggers" } }, - [1219]={ + [1252]={ [1]={ [1]={ limit={ @@ -36926,7 +38086,7 @@ return { [1]="skill_travel_distance_+%" } }, - [1220]={ + [1253]={ [1]={ [1]={ limit={ @@ -36943,7 +38103,7 @@ return { [1]="skill_triggered_by_nearby_allies_kill_or_hit_rare_unique_%_chance" } }, - [1221]={ + [1254]={ [1]={ [1]={ limit={ @@ -36960,7 +38120,7 @@ return { [1]="skill_triggered_by_snipe" } }, - [1222]={ + [1255]={ [1]={ [1]={ limit={ @@ -36986,7 +38146,7 @@ return { [1]="skill_triggered_when_you_focus_chance_%" } }, - [1223]={ + [1256]={ [1]={ [1]={ limit={ @@ -37016,7 +38176,7 @@ return { [1]="skill_used_by_mirage_chieftain_damage_+%_final" } }, - [1224]={ + [1257]={ [1]={ [1]={ [1]={ @@ -37037,7 +38197,7 @@ return { [1]="skill_used_by_mirage_warrior_damage_+%_final" } }, - [1225]={ + [1258]={ [1]={ [1]={ limit={ @@ -37067,7 +38227,7 @@ return { [1]="skill_used_by_sacred_wisp_damage_+%_final" } }, - [1226]={ + [1259]={ [1]={ [1]={ limit={ @@ -37128,7 +38288,7 @@ return { [2]="quality_display_withering_step_is_gem" } }, - [1227]={ + [1260]={ [1]={ [1]={ limit={ @@ -37145,7 +38305,7 @@ return { [1]="snapping_adder_%_chance_to_retain_projectile_on_release" } }, - [1228]={ + [1261]={ [1]={ [1]={ limit={ @@ -37193,7 +38353,7 @@ return { [2]="quality_display_snipe_is_gem" } }, - [1229]={ + [1262]={ [1]={ [1]={ [1]={ @@ -37278,7 +38438,7 @@ return { [2]="snipe_triggered_skill_ailment_damage_+%_final_per_stage" } }, - [1230]={ + [1263]={ [1]={ [1]={ limit={ @@ -37347,7 +38507,7 @@ return { [2]="snipe_triggered_skill_hit_damage_+%_final_per_stage" } }, - [1231]={ + [1264]={ [1]={ [1]={ limit={ @@ -37364,7 +38524,7 @@ return { [1]="soulfeast_chaos_damage_to_self" } }, - [1232]={ + [1265]={ [1]={ [1]={ limit={ @@ -37412,7 +38572,7 @@ return { [2]="quality_display_forbidden_rite_is_gem" } }, - [1233]={ + [1266]={ [1]={ [1]={ [1]={ @@ -37433,7 +38593,7 @@ return { [1]="spectral_helix_rotations_%" } }, - [1234]={ + [1267]={ [1]={ [1]={ limit={ @@ -37459,7 +38619,7 @@ return { [1]="spectral_spiral_weapon_number_of_bounces" } }, - [1235]={ + [1268]={ [1]={ [1]={ [1]={ @@ -37480,7 +38640,7 @@ return { [1]="spectral_throw_an_spectral_helix_active_skill_projectile_speed_+%_variation_final" } }, - [1236]={ + [1269]={ [1]={ [1]={ limit={ @@ -37510,7 +38670,7 @@ return { [1]="spell_area_damage_+%_in_blood_stance" } }, - [1237]={ + [1270]={ [1]={ [1]={ limit={ @@ -37540,7 +38700,7 @@ return { [1]="spell_area_of_effect_+%_in_sand_stance" } }, - [1238]={ + [1271]={ [1]={ [1]={ limit={ @@ -37557,7 +38717,7 @@ return { [1]="spell_cast_time_cannot_be_modified" } }, - [1239]={ + [1272]={ [1]={ [1]={ limit={ @@ -37574,7 +38734,7 @@ return { [1]="spell_echo_plus_chance_double_damage_%_final" } }, - [1240]={ + [1273]={ [1]={ [1]={ limit={ @@ -37591,7 +38751,7 @@ return { [1]="spell_has_trigger_from_crafted_item_mod" } }, - [1241]={ + [1274]={ [1]={ [1]={ [1]={ @@ -37625,7 +38785,29 @@ return { [1]="spell_impale_on_crit_%_chance" } }, - [1242]={ + [1275]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="Deals {0}% to {1}% of Ward as Base Spell Physical Damage" + } + }, + name="ward_shield_damage", + stats={ + [1]="spell_minimum_base_physical_damage_%_of_ward", + [2]="spell_maximum_base_physical_damage_%_of_ward" + } + }, + [1276]={ [1]={ [1]={ limit={ @@ -37647,7 +38829,7 @@ return { [2]="spell_maximum_base_physical_damage_per_shield_quality" } }, - [1243]={ + [1277]={ [1]={ [1]={ [1]={ @@ -37681,7 +38863,7 @@ return { [1]="spells_chance_to_hinder_on_hit_%" } }, - [1244]={ + [1278]={ [1]={ [1]={ limit={ @@ -37698,7 +38880,7 @@ return { [1]="spellslinger_mana_reservation" } }, - [1245]={ + [1279]={ [1]={ [1]={ limit={ @@ -37724,7 +38906,7 @@ return { [1]="spider_aspect_max_web_count" } }, - [1246]={ + [1280]={ [1]={ [1]={ limit={ @@ -37741,7 +38923,7 @@ return { [1]="spike_slam_additional_spike_%_chance" } }, - [1247]={ + [1281]={ [1]={ [1]={ limit={ @@ -37810,7 +38992,7 @@ return { [2]="quality_display_earthshatter_spike_damage_is_gem" } }, - [1248]={ + [1282]={ [1]={ [1]={ limit={ @@ -37840,7 +39022,7 @@ return { [1]="spike_slam_fissure_damage_+%_final" } }, - [1249]={ + [1283]={ [1]={ [1]={ limit={ @@ -37870,7 +39052,7 @@ return { [1]="spike_slam_fissure_length_+%" } }, - [1250]={ + [1284]={ [1]={ [1]={ limit={ @@ -37931,7 +39113,7 @@ return { [2]="quality_display_max_spikes_is_gem" } }, - [1251]={ + [1285]={ [1]={ [1]={ limit={ @@ -37992,7 +39174,7 @@ return { [2]="quality_display_spike_slam_is_gem" } }, - [1252]={ + [1286]={ [1]={ [1]={ limit={ @@ -38022,7 +39204,7 @@ return { [1]="spike_slam_spike_damage_+%_final" } }, - [1253]={ + [1287]={ [1]={ [1]={ limit={ @@ -38052,7 +39234,7 @@ return { [1]="spirit_offering_critical_strike_chance_+%" } }, - [1254]={ + [1288]={ [1]={ [1]={ limit={ @@ -38069,7 +39251,7 @@ return { [1]="spirit_offering_critical_strike_multiplier_+" } }, - [1255]={ + [1289]={ [1]={ [1]={ limit={ @@ -38099,7 +39281,7 @@ return { [1]="spiritual_cry_double_movement_velocity_+%" } }, - [1256]={ + [1290]={ [1]={ [1]={ limit={ @@ -38129,7 +39311,7 @@ return { [1]="splitting_steel_area_+%_final_after_splitting" } }, - [1257]={ + [1291]={ [1]={ [1]={ limit={ @@ -38159,7 +39341,7 @@ return { [1]="static_strike_beam_damage_+%_final" } }, - [1258]={ + [1292]={ [1]={ [1]={ limit={ @@ -38189,7 +39371,7 @@ return { [1]="static_strike_beam_damage_+%_final_while_moving" } }, - [1259]={ + [1293]={ [1]={ [1]={ limit={ @@ -38206,7 +39388,7 @@ return { [1]="static_strike_number_of_beam_targets" } }, - [1260]={ + [1294]={ [1]={ [1]={ limit={ @@ -38232,7 +39414,7 @@ return { [1]="stationary_shield_throw_projectiles_per_interval" } }, - [1261]={ + [1295]={ [1]={ [1]={ limit={ @@ -38262,7 +39444,7 @@ return { [1]="stealth_+%" } }, - [1262]={ + [1296]={ [1]={ [1]={ limit={ @@ -38288,7 +39470,7 @@ return { [1]="steel_ammo_consumed_per_use" } }, - [1263]={ + [1297]={ [1]={ [1]={ limit={ @@ -38305,7 +39487,7 @@ return { [1]="steel_ammo_consumed_per_use_by_totem" } }, - [1264]={ + [1298]={ [1]={ [1]={ limit={ @@ -38331,7 +39513,7 @@ return { [1]="steel_skill_%_chance_to_not_consume_ammo" } }, - [1265]={ + [1299]={ [1]={ [1]={ limit={ @@ -38361,7 +39543,7 @@ return { [1]="steel_steal_area_of_effect_+%" } }, - [1266]={ + [1300]={ [1]={ [1]={ limit={ @@ -38391,7 +39573,7 @@ return { [1]="steel_steal_reflect_damage_+%" } }, - [1267]={ + [1301]={ [1]={ [1]={ limit={ @@ -38421,7 +39603,7 @@ return { [1]="storm_blade_has_local_attack_speed_+%" } }, - [1268]={ + [1302]={ [1]={ [1]={ limit={ @@ -38438,7 +39620,7 @@ return { [1]="storm_blade_has_local_lightning_penetration_%" } }, - [1269]={ + [1303]={ [1]={ [1]={ limit={ @@ -38455,7 +39637,7 @@ return { [1]="storm_blade_quality_attack_lightning_damage_%_to_convert_to_chaos" } }, - [1270]={ + [1304]={ [1]={ [1]={ limit={ @@ -38472,7 +39654,7 @@ return { [1]="storm_blade_quality_chance_to_shock_%" } }, - [1271]={ + [1305]={ [1]={ [1]={ limit={ @@ -38502,7 +39684,7 @@ return { [1]="storm_blade_quality_local_critical_strike_chance_+%" } }, - [1272]={ + [1306]={ [1]={ [1]={ limit={ @@ -38532,7 +39714,7 @@ return { [1]="storm_burst_explosion_area_of_effect_+%" } }, - [1273]={ + [1307]={ [1]={ [1]={ limit={ @@ -38549,7 +39731,7 @@ return { [1]="storm_burst_new_damage_+%_final_per_remaining_teleport_zap" } }, - [1274]={ + [1308]={ [1]={ [1]={ limit={ @@ -38579,7 +39761,7 @@ return { [1]="storm_burst_zap_area_of_effect_+%" } }, - [1275]={ + [1309]={ [1]={ [1]={ limit={ @@ -38596,7 +39778,7 @@ return { [1]="storm_call_chance_to_strike_on_cast_%" } }, - [1276]={ + [1310]={ [1]={ [1]={ limit={ @@ -38657,7 +39839,24 @@ return { [2]="quality_display_storm_rain_is_gem" } }, - [1277]={ + [1311]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Trigger Summon Living Lightning on Hit" + } + }, + name="living_lightning_on_hit", + stats={ + [1]="summon_living_lightning_on_lightning_hit" + } + }, + [1312]={ [1]={ [1]={ limit={ @@ -38674,7 +39873,7 @@ return { [1]="summon_mirage_archer_on_hit" } }, - [1278]={ + [1313]={ [1]={ [1]={ limit={ @@ -38691,7 +39890,7 @@ return { [1]="summon_mirage_warrior_on_crit" } }, - [1279]={ + [1314]={ [1]={ [1]={ limit={ @@ -38708,7 +39907,7 @@ return { [1]="summon_sacred_wisps_on_hit" } }, - [1280]={ + [1315]={ [1]={ [1]={ limit={ @@ -38734,7 +39933,7 @@ return { [1]="summoned_raging_spirit_chance_to_spawn_additional_minion_%" } }, - [1281]={ + [1316]={ [1]={ [1]={ limit={ @@ -38764,7 +39963,7 @@ return { [1]="summoned_spider_grants_attack_speed_+%" } }, - [1282]={ + [1317]={ [1]={ [1]={ limit={ @@ -38794,7 +39993,7 @@ return { [1]="summoned_spider_grants_poison_damage_+%" } }, - [1283]={ + [1318]={ [1]={ [1]={ limit={ @@ -38824,7 +40023,7 @@ return { [1]="sunder_shockwave_area_of_effect_+%" } }, - [1284]={ + [1319]={ [1]={ [1]={ limit={ @@ -38841,7 +40040,7 @@ return { [1]="sunder_shockwave_limit_per_cascade" } }, - [1285]={ + [1320]={ [1]={ [1]={ limit={ @@ -38871,7 +40070,7 @@ return { [1]="sunder_wave_area_of_effect_+%" } }, - [1286]={ + [1321]={ [1]={ [1]={ limit={ @@ -38901,7 +40100,7 @@ return { [1]="sunder_wave_delay_+%" } }, - [1287]={ + [1322]={ [1]={ [1]={ limit={ @@ -38918,7 +40117,7 @@ return { [1]="sunder_wave_max_steps" } }, - [1288]={ + [1323]={ [1]={ [1]={ limit={ @@ -38935,7 +40134,7 @@ return { [1]="sunder_wave_min_steps" } }, - [1289]={ + [1324]={ [1]={ [1]={ [1]={ @@ -39046,7 +40245,7 @@ return { [2]="sunder_number_of_fake_chains" } }, - [1290]={ + [1325]={ [1]={ [1]={ [1]={ @@ -39067,7 +40266,7 @@ return { [1]="support_additional_trap_mine_%_chance_for_1_additional_trap_mine" } }, - [1291]={ + [1326]={ [1]={ [1]={ [1]={ @@ -39088,7 +40287,7 @@ return { [1]="support_additional_trap_mine_%_chance_for_2_additional_trap_mine" } }, - [1292]={ + [1327]={ [1]={ [1]={ [1]={ @@ -39109,7 +40308,7 @@ return { [1]="support_additional_trap_mine_%_chance_for_3_additional_trap_mine" } }, - [1293]={ + [1328]={ [1]={ [1]={ limit={ @@ -39126,7 +40325,7 @@ return { [1]="support_additional_trap_%_chance_for_1_additional_trap" } }, - [1294]={ + [1329]={ [1]={ [1]={ [1]={ @@ -39147,7 +40346,7 @@ return { [1]="support_aura_duration_buff_duration" } }, - [1295]={ + [1330]={ [1]={ [1]={ limit={ @@ -39164,7 +40363,7 @@ return { [1]="support_autocast_instant_spells" } }, - [1296]={ + [1331]={ [1]={ [1]={ limit={ @@ -39181,7 +40380,7 @@ return { [1]="support_autocast_warcries" } }, - [1297]={ + [1332]={ [1]={ [1]={ [1]={ @@ -39219,7 +40418,7 @@ return { [1]="support_better_ailments_ailment_damage_+%_final" } }, - [1298]={ + [1333]={ [1]={ [1]={ limit={ @@ -39245,7 +40444,7 @@ return { [1]="support_blunt_chance_to_trigger_shockwave_on_hit_%" } }, - [1299]={ + [1334]={ [1]={ [1]={ limit={ @@ -39275,7 +40474,7 @@ return { [1]="support_chance_to_bleed_bleeding_damage_+%_final" } }, - [1300]={ + [1335]={ [1]={ [1]={ [1]={ @@ -39313,7 +40512,7 @@ return { [1]="support_chilling_areas_also_grant_cold_damage_taken_per_minute_+%" } }, - [1301]={ + [1336]={ [1]={ [1]={ [1]={ @@ -39334,7 +40533,7 @@ return { [1]="support_chilling_areas_also_grant_cold_damage_taken_+%_equal_to_slow_amount" } }, - [1302]={ + [1337]={ [1]={ [1]={ limit={ @@ -39364,7 +40563,7 @@ return { [1]="support_chills_also_grant_cold_damage_taken_per_minute_+%" } }, - [1303]={ + [1338]={ [1]={ [1]={ limit={ @@ -39381,7 +40580,7 @@ return { [1]="support_chills_also_grant_cold_damage_taken_+%_equal_to_slow_amount" } }, - [1304]={ + [1339]={ [1]={ [1]={ limit={ @@ -39398,7 +40597,7 @@ return { [1]="support_conflagration_ignites_from_stunning_melee_hits_count_as_coming_from_critical_strike" } }, - [1305]={ + [1340]={ [1]={ [1]={ limit={ @@ -39428,7 +40627,7 @@ return { [1]="support_conflagration_ignites_from_stunning_melee_hits_deal_damage_+%_final_per_200ms_stun" } }, - [1306]={ + [1341]={ [1]={ [1]={ limit={ @@ -39458,7 +40657,7 @@ return { [1]="support_conflagration_ignites_from_stunning_melee_hits_duration_+%" } }, - [1307]={ + [1342]={ [1]={ [1]={ limit={ @@ -39488,7 +40687,7 @@ return { [1]="support_corrupting_cry_area_of_effect_+%_final" } }, - [1308]={ + [1343]={ [1]={ [1]={ [1]={ @@ -39509,7 +40708,7 @@ return { [1]="support_corrupting_cry_corrupted_blood_duration_ms" } }, - [1309]={ + [1344]={ [1]={ [1]={ limit={ @@ -39535,7 +40734,7 @@ return { [1]="support_corrupting_cry_exerted_attack_applies_X_stacks_of_corrupted_blood_on_first_hit" } }, - [1310]={ + [1345]={ [1]={ [1]={ [1]={ @@ -39556,7 +40755,7 @@ return { [1]="support_corrupting_cry_physical_damage_to_deal_per_minute" } }, - [1311]={ + [1346]={ [1]={ [1]={ limit={ @@ -39582,7 +40781,7 @@ return { [1]="support_corrupting_cry_warcry_applies_X_stacks_of_corrupted_blood" } }, - [1312]={ + [1347]={ [1]={ [1]={ [1]={ @@ -39624,7 +40823,7 @@ return { [1]="support_damaging_links_duration_ms" } }, - [1313]={ + [1348]={ [1]={ [1]={ limit={ @@ -39663,7 +40862,7 @@ return { [2]="support_debilitate_hit_damage_max_poison_stacks" } }, - [1314]={ + [1349]={ [1]={ [1]={ limit={ @@ -39693,7 +40892,7 @@ return { [1]="support_energy_shield_leech_damage_+%_while_leeching_energy_shield_final" } }, - [1315]={ + [1350]={ [1]={ [1]={ [1]={ @@ -39714,7 +40913,7 @@ return { [1]="support_executioner_buff_duration_ms" } }, - [1316]={ + [1351]={ [1]={ [1]={ limit={ @@ -39744,7 +40943,7 @@ return { [1]="support_executioner_damage_vs_enemies_on_low_life_+%_final" } }, - [1317]={ + [1352]={ [1]={ [1]={ limit={ @@ -39761,7 +40960,7 @@ return { [1]="support_executioner_refresh_stolen_mod_on_hitting_rare_or_unique_monster_chance_%" } }, - [1318]={ + [1353]={ [1]={ [1]={ [1]={ @@ -39799,7 +40998,7 @@ return { [1]="support_faster_ailments_ailment_duration_+%_final" } }, - [1319]={ + [1354]={ [1]={ [1]={ limit={ @@ -39816,7 +41015,7 @@ return { [1]="support_flamewood_totems_trigger_infernal_bolt_when_hit" } }, - [1320]={ + [1355]={ [1]={ [1]={ limit={ @@ -39833,7 +41032,7 @@ return { [1]="support_focus_channel_damage_+%_final_per_second_channelling_up_to_60%" } }, - [1321]={ + [1356]={ [1]={ [1]={ limit={ @@ -39850,7 +41049,7 @@ return { [1]="support_focus_channel_cost_+%_final_per_second_channelling_up_to_100%" } }, - [1322]={ + [1357]={ [1]={ [1]={ limit={ @@ -39880,7 +41079,7 @@ return { [1]="support_focused_ballista_totem_attack_speed_+%_final" } }, - [1323]={ + [1358]={ [1]={ [1]={ [1]={ @@ -39901,7 +41100,7 @@ return { [1]="support_ghost_duration" } }, - [1324]={ + [1359]={ [1]={ [1]={ limit={ @@ -39931,7 +41130,7 @@ return { [1]="support_greater_spell_echo_area_of_effect_+%_per_repeat" } }, - [1325]={ + [1360]={ [1]={ [1]={ limit={ @@ -39961,7 +41160,7 @@ return { [1]="support_greater_spell_echo_spell_damage_+%_final_per_repeat" } }, - [1326]={ + [1361]={ [1]={ [1]={ [1]={ @@ -39982,7 +41181,7 @@ return { [1]="support_guardians_blessing_minion_physical_damage_%_of_maximum_life_and_ES_taken_per_minute" } }, - [1327]={ + [1362]={ [1]={ [1]={ limit={ @@ -40012,7 +41211,7 @@ return { [1]="support_ignite_prolif_ignite_damage_+%_final" } }, - [1328]={ + [1363]={ [1]={ [1]={ limit={ @@ -40038,7 +41237,33 @@ return { [1]="support_innervate_chance_to_gain_buff_on_shock_vs_unique_%" } }, - [1329]={ + [1364]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=99 + } + }, + text="{0}% chance to trigger Kinetic Flux on Killing Blow" + }, + [2]={ + limit={ + [1]={ + [1]=100, + [2]="#" + } + }, + text="Trigger Kinetic Flux on Killing Blow" + } + }, + name="kinetic_flux_on_kill", + stats={ + [1]="support_kinetic_instability_chance_to_create_instability_on_kill_%" + } + }, + [1365]={ [1]={ [1]={ [1]={ @@ -40072,7 +41297,7 @@ return { [1]="support_lifetap_buff_duration" } }, - [1330]={ + [1366]={ [1]={ [1]={ [1]={ @@ -40093,7 +41318,7 @@ return { [1]="support_lifetap_spent_life_threshold" } }, - [1331]={ + [1367]={ [1]={ [1]={ [1]={ @@ -40127,7 +41352,7 @@ return { [1]="support_locus_mine_cannot_detonate_mines_within_X_units" } }, - [1332]={ + [1368]={ [1]={ [1]={ limit={ @@ -40144,7 +41369,7 @@ return { [1]="support_locus_mine_mines_always_target_your_location" } }, - [1333]={ + [1369]={ [1]={ [1]={ limit={ @@ -40161,7 +41386,7 @@ return { [1]="support_locus_mine_throw_mines_in_an_arc" } }, - [1334]={ + [1370]={ [1]={ [1]={ limit={ @@ -40191,7 +41416,7 @@ return { [1]="support_maim_chance_physical_damage_+%_final" } }, - [1335]={ + [1371]={ [1]={ [1]={ limit={ @@ -40221,7 +41446,7 @@ return { [1]="support_maimed_enemies_physical_damage_taken_+%" } }, - [1336]={ + [1372]={ [1]={ [1]={ limit={ @@ -40251,7 +41476,7 @@ return { [1]="support_minefield_mine_throwing_speed_+%_final" } }, - [1337]={ + [1373]={ [1]={ [1]={ limit={ @@ -40273,7 +41498,7 @@ return { [2]="global_maximum_added_fire_damage_vs_burning_enemies" } }, - [1338]={ + [1374]={ [1]={ [1]={ limit={ @@ -40303,7 +41528,7 @@ return { [1]="support_minion_defensive_stance_minion_damage_+%_final_against_enemies_near_you" } }, - [1339]={ + [1375]={ [1]={ [1]={ limit={ @@ -40333,7 +41558,7 @@ return { [1]="support_minion_defensive_stance_minion_damage_taken_+%_final" } }, - [1340]={ + [1376]={ [1]={ [1]={ limit={ @@ -40363,7 +41588,7 @@ return { [1]="support_minion_offensive_stance_minion_damage_+%_final_while_you_have_puppet_master" } }, - [1341]={ + [1377]={ [1]={ [1]={ limit={ @@ -40393,7 +41618,7 @@ return { [1]="support_minion_totem_resistance_elemental_damage_+%_final" } }, - [1342]={ + [1378]={ [1]={ [1]={ limit={ @@ -40423,7 +41648,7 @@ return { [1]="support_mirage_archer_attack_speed_+%_final" } }, - [1343]={ + [1379]={ [1]={ [1]={ [1]={ @@ -40444,7 +41669,7 @@ return { [1]="support_mirage_archer_duration" } }, - [1344]={ + [1380]={ [1]={ [1]={ limit={ @@ -40474,7 +41699,7 @@ return { [1]="support_momentum_attack_speed_+%_per_stack" } }, - [1345]={ + [1381]={ [1]={ [1]={ limit={ @@ -40522,7 +41747,7 @@ return { [3]="support_momentum_max_stacks" } }, - [1346]={ + [1382]={ [1]={ [1]={ limit={ @@ -40552,7 +41777,7 @@ return { [1]="support_momentum_movement_speed_+%_per_stack_removed" } }, - [1347]={ + [1383]={ [1]={ [1]={ [1]={ @@ -40595,7 +41820,7 @@ return { [2]="support_momentum_stack_while_channelling_ms" } }, - [1348]={ + [1384]={ [1]={ [1]={ [1]={ @@ -40620,7 +41845,7 @@ return { [1]="support_overpowered_duration_ms" } }, - [1349]={ + [1385]={ [1]={ [1]={ limit={ @@ -40646,7 +41871,7 @@ return { [1]="support_parallel_projectile_number_of_points_per_side" } }, - [1350]={ + [1386]={ [1]={ [1]={ limit={ @@ -40676,7 +41901,7 @@ return { [1]="support_power_charge_on_crit_damage_+%_final_per_power_charge" } }, - [1351]={ + [1387]={ [1]={ [1]={ limit={ @@ -40706,7 +41931,7 @@ return { [1]="support_pulverise_area_of_effect_+%_final" } }, - [1352]={ + [1388]={ [1]={ [1]={ limit={ @@ -40736,7 +41961,7 @@ return { [1]="support_pure_shock_shock_as_though_damage_+%_final" } }, - [1353]={ + [1389]={ [1]={ [1]={ [1]={ @@ -40757,7 +41982,7 @@ return { [1]="support_rage_gain_rage_on_melee_hit_cooldown_ms" } }, - [1354]={ + [1390]={ [1]={ [1]={ [1]={ @@ -40808,7 +42033,7 @@ return { [2]="support_recent_ignites_damage_per_recent_ignite_+%_final_minimum" } }, - [1355]={ + [1391]={ [1]={ [1]={ [1]={ @@ -40855,7 +42080,7 @@ return { [2]="support_recent_ignites_ignite_damage_per_recent_ignite_+%_final_maximum" } }, - [1356]={ + [1392]={ [1]={ [1]={ [1]={ @@ -40876,7 +42101,7 @@ return { [1]="support_recent_minions_life_leech_from_any_damage_permyriad_from_wakened_fury" } }, - [1357]={ + [1393]={ [1]={ [1]={ [1]={ @@ -41012,7 +42237,7 @@ return { [6]="support_recent_phantasms_gain_adrenaline_and_wakened_fury_when_summoned_ms" } }, - [1358]={ + [1394]={ [1]={ [1]={ limit={ @@ -41029,7 +42254,7 @@ return { [1]="support_reduce_enemy_block_and_spell_block_%" } }, - [1359]={ + [1395]={ [1]={ [1]={ limit={ @@ -41059,7 +42284,7 @@ return { [1]="support_remote_mine_damage_+%_final_per_mine_detonation_cascade" } }, - [1360]={ + [1396]={ [1]={ [1]={ limit={ @@ -41089,7 +42314,7 @@ return { [1]="support_return_returning_projectiles_damage_+%_final" } }, - [1361]={ + [1397]={ [1]={ [1]={ [1]={ @@ -41110,7 +42335,7 @@ return { [1]="critical_strikes_that_inflict_bleeding_also_rupture" } }, - [1362]={ + [1398]={ [1]={ [1]={ limit={ @@ -41136,7 +42361,7 @@ return { [1]="support_rupture_bleeding_damage_taken_+%_final" } }, - [1363]={ + [1399]={ [1]={ [1]={ limit={ @@ -41162,7 +42387,7 @@ return { [1]="support_rupture_bleeding_time_passed_+%_final" } }, - [1364]={ + [1400]={ [1]={ [1]={ limit={ @@ -41179,7 +42404,7 @@ return { [1]="support_sacred_wisps_wisp_%_chance_to_attack" } }, - [1365]={ + [1401]={ [1]={ [1]={ limit={ @@ -41196,7 +42421,7 @@ return { [1]="support_sacred_wisps_wisp_additional_%_chance_to_attack_when_rare_or_unique_enemy_in_presence" } }, - [1366]={ + [1402]={ [1]={ [1]={ limit={ @@ -41231,7 +42456,7 @@ return { [2]="support_sacrifice_gain_%_of_sacrificed_life_as_added_chaos_damage" } }, - [1367]={ + [1403]={ [1]={ [1]={ [1]={ @@ -41261,7 +42486,7 @@ return { [2]="support_scion_onslaught_on_unique_hit_duration_ms" } }, - [1368]={ + [1404]={ [1]={ [1]={ [1]={ @@ -41296,7 +42521,7 @@ return { [3]="virtual_support_scion_onslaught_on_killing_blow_duration_ms" } }, - [1369]={ + [1405]={ [1]={ [1]={ [1]={ @@ -41330,7 +42555,7 @@ return { [1]="support_slashing_buff_duration_ms" } }, - [1370]={ + [1406]={ [1]={ [1]={ limit={ @@ -41360,7 +42585,7 @@ return { [1]="support_slashing_buff_attack_speed_+%_final_to_grant" } }, - [1371]={ + [1407]={ [1]={ [1]={ limit={ @@ -41377,7 +42602,7 @@ return { [1]="support_slashing_damage_+%_final_from_distance" } }, - [1372]={ + [1408]={ [1]={ [1]={ limit={ @@ -41454,7 +42679,7 @@ return { [2]="support_spell_boost_area_of_effect_+%_final_per_charge" } }, - [1373]={ + [1409]={ [1]={ [1]={ limit={ @@ -41484,7 +42709,7 @@ return { [1]="support_spell_cascade_area_delay_+%" } }, - [1374]={ + [1410]={ [1]={ [1]={ limit={ @@ -41514,7 +42739,7 @@ return { [1]="support_spell_cascade_area_of_effect_+%_final" } }, - [1375]={ + [1411]={ [1]={ [1]={ limit={ @@ -41549,7 +42774,7 @@ return { [2]="support_spell_cascade_sideways" } }, - [1376]={ + [1412]={ [1]={ [1]={ limit={ @@ -41579,7 +42804,7 @@ return { [1]="support_spell_echo_final_repeat_damage_+%_final" } }, - [1377]={ + [1413]={ [1]={ [1]={ limit={ @@ -41609,7 +42834,7 @@ return { [1]="support_storm_barrier_damage_taken_when_hit_+%_final_while_channelling" } }, - [1378]={ + [1414]={ [1]={ [1]={ [1]={ @@ -41647,7 +42872,7 @@ return { [1]="support_swift_affliction_skill_effect_and_damaging_ailment_duration_+%_final" } }, - [1379]={ + [1415]={ [1]={ [1]={ limit={ @@ -41677,7 +42902,7 @@ return { [1]="support_trauma_melee_damage_+%_final_per_trauma" } }, - [1380]={ + [1416]={ [1]={ [1]={ limit={ @@ -41707,7 +42932,33 @@ return { [1]="support_trauma_stun_duration_+%_per_trauma" } }, - [1381]={ + [1417]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Triggers Windburst on Hit, no more than once every {0} metres moved" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Triggers Windburst on Hit, no more than once every {0} metres moved" + } + }, + name="trigger_tornados_on_attack", + stats={ + [1]="support_trigger_tornados_on_attack_hit_after_moving_X_metres" + } + }, + [1418]={ [1]={ [1]={ [1]={ @@ -41745,7 +42996,7 @@ return { [1]="support_unbound_ailments_ailment_damage_+%_final" } }, - [1382]={ + [1419]={ [1]={ [1]={ limit={ @@ -41762,7 +43013,7 @@ return { [1]="supported_skill_can_only_use_axe_and_sword" } }, - [1383]={ + [1420]={ [1]={ [1]={ [1]={ @@ -41783,7 +43034,7 @@ return { [1]="supported_skill_can_only_use_axe_mace_and_staff" } }, - [1384]={ + [1421]={ [1]={ [1]={ limit={ @@ -41800,7 +43051,7 @@ return { [1]="skill_can_only_use_bow" } }, - [1385]={ + [1422]={ [1]={ [1]={ [1]={ @@ -41821,7 +43072,7 @@ return { [1]="supported_skill_can_only_use_dagger_and_claw" } }, - [1386]={ + [1423]={ [1]={ [1]={ [1]={ @@ -41842,7 +43093,7 @@ return { [1]="supported_skill_can_only_use_mace_and_staff" } }, - [1387]={ + [1424]={ [1]={ [1]={ limit={ @@ -41859,7 +43110,7 @@ return { [1]="skill_can_only_use_non_melee_weapons" } }, - [1388]={ + [1425]={ [1]={ [1]={ limit={ @@ -41876,7 +43127,7 @@ return { [1]="supported_skill_can_only_use_wand" } }, - [1389]={ + [1426]={ [1]={ [1]={ limit={ @@ -41902,7 +43153,7 @@ return { [1]="swordstorm_num_hits" } }, - [1390]={ + [1427]={ [1]={ [1]={ limit={ @@ -41932,7 +43183,7 @@ return { [1]="tectonic_slam_area_of_effect_+%_final_per_endurance_charge_consumed" } }, - [1391]={ + [1428]={ [1]={ [1]={ limit={ @@ -41949,7 +43200,7 @@ return { [1]="tectonic_slam_side_crack_additional_chance_%_per_endurance_charge_consumed" } }, - [1392]={ + [1429]={ [1]={ [1]={ [1]={ @@ -41970,7 +43221,7 @@ return { [1]="tectonic_slam_side_crack_additional_chance_1%_per_2_stat_value" } }, - [1393]={ + [1430]={ [1]={ [1]={ limit={ @@ -42005,7 +43256,7 @@ return { [2]="quality_display_tectonic_slam_is_gem" } }, - [1394]={ + [1431]={ [1]={ [1]={ limit={ @@ -42022,7 +43273,7 @@ return { [1]="tectonic_slam_side_crack_additional_chance_%_per_endurance_charge" } }, - [1395]={ + [1432]={ [1]={ [1]={ limit={ @@ -42052,7 +43303,7 @@ return { [1]="tethered_enemies_take_attack_projectile_damage_taken_+%" } }, - [1396]={ + [1433]={ [1]={ [1]={ limit={ @@ -42082,7 +43333,7 @@ return { [1]="tethered_movement_speed_+%_final_per_rope" } }, - [1397]={ + [1434]={ [1]={ [1]={ limit={ @@ -42112,7 +43363,7 @@ return { [1]="tethered_movement_speed_+%_final_per_rope_vs_rare" } }, - [1398]={ + [1435]={ [1]={ [1]={ limit={ @@ -42142,7 +43393,7 @@ return { [1]="tethered_movement_speed_+%_final_per_rope_vs_unique" } }, - [1399]={ + [1436]={ [1]={ [1]={ limit={ @@ -42159,7 +43410,7 @@ return { [1]="tethering_arrow_display_rope_limit" } }, - [1400]={ + [1437]={ [1]={ [1]={ [1]={ @@ -42193,7 +43444,7 @@ return { [1]="tornado_damage_interval_ms" } }, - [1401]={ + [1438]={ [1]={ [1]={ [1]={ @@ -42218,7 +43469,7 @@ return { [1]="tornado_hinder" } }, - [1402]={ + [1439]={ [1]={ [1]={ limit={ @@ -42248,7 +43499,7 @@ return { [1]="tornado_movement_speed_+%" } }, - [1403]={ + [1440]={ [1]={ [1]={ limit={ @@ -42274,7 +43525,7 @@ return { [1]="number_of_tornados_allowed" } }, - [1404]={ + [1441]={ [1]={ [1]={ limit={ @@ -42304,7 +43555,7 @@ return { [1]="totem_life_+%_final" } }, - [1405]={ + [1442]={ [1]={ [1]={ limit={ @@ -42321,7 +43572,7 @@ return { [1]="totems_explode_on_death_for_%_life_as_physical" } }, - [1406]={ + [1443]={ [1]={ [1]={ [1]={ @@ -42342,7 +43593,7 @@ return { [1]="totems_regenerate_%_life_per_minute" } }, - [1407]={ + [1444]={ [1]={ [1]={ [1]={ @@ -42363,7 +43614,7 @@ return { [1]="toxic_rain_spores_apply_withered" } }, - [1408]={ + [1445]={ [1]={ [1]={ limit={ @@ -42380,7 +43631,7 @@ return { [1]="trap_can_be_triggered_by_warcries" } }, - [1409]={ + [1446]={ [1]={ [1]={ limit={ @@ -42397,7 +43648,7 @@ return { [1]="trap_critical_strike_multiplier_+_per_power_charge" } }, - [1410]={ + [1447]={ [1]={ [1]={ limit={ @@ -42427,7 +43678,7 @@ return { [1]="trap_spread_+%" } }, - [1411]={ + [1448]={ [1]={ [1]={ limit={ @@ -42457,7 +43708,7 @@ return { [1]="trap_throwing_speed_+%_while_wielding_2hand" } }, - [1412]={ + [1449]={ [1]={ [1]={ limit={ @@ -42487,7 +43738,7 @@ return { [1]="trap_throwing_speed_+%_per_frenzy_charge" } }, - [1413]={ + [1450]={ [1]={ [1]={ limit={ @@ -42517,7 +43768,7 @@ return { [1]="trap_trigger_radius_+%_per_power_charge" } }, - [1414]={ + [1451]={ [1]={ [1]={ limit={ @@ -42547,7 +43798,7 @@ return { [1]="attack_speed_+%_per_trauma" } }, - [1415]={ + [1452]={ [1]={ [1]={ limit={ @@ -42729,7 +43980,7 @@ return { [4]="trauma_strike_self_damage_per_trauma" } }, - [1416]={ + [1453]={ [1]={ [1]={ limit={ @@ -42781,7 +44032,7 @@ return { [2]="quality_display_boneshatter_is_gem" } }, - [1417]={ + [1454]={ [1]={ [1]={ limit={ @@ -42811,7 +44062,7 @@ return { [1]="trauma_strike_damage_+%_final_per_trauma_capped" } }, - [1418]={ + [1455]={ [1]={ [1]={ limit={ @@ -42841,7 +44092,7 @@ return { [1]="trauma_strike_shockwave_area_of_effect_+%_per_100ms_stun_duration_up_to_400%" } }, - [1419]={ + [1456]={ [1]={ [1]={ limit={ @@ -42867,7 +44118,7 @@ return { [1]="treat_enemy_resistances_as_negated_on_elemental_damage_hit_%_chance" } }, - [1420]={ + [1457]={ [1]={ [1]={ limit={ @@ -42893,7 +44144,7 @@ return { [1]="trigger_after_spending_200_mana_%_chance" } }, - [1421]={ + [1458]={ [1]={ [1]={ limit={ @@ -42923,7 +44174,7 @@ return { [1]="trigger_brand_support_hit_damage_+%_final_vs_branded_enemy" } }, - [1422]={ + [1459]={ [1]={ [1]={ limit={ @@ -42940,7 +44191,7 @@ return { [1]="trigger_on_attack_hit_against_rare_or_unique" } }, - [1423]={ + [1460]={ [1]={ [1]={ limit={ @@ -42957,7 +44208,7 @@ return { [1]="trigger_on_block_hit_from_unique" } }, - [1424]={ + [1461]={ [1]={ [1]={ limit={ @@ -42983,7 +44234,7 @@ return { [1]="trigger_on_block_%_chance" } }, - [1425]={ + [1462]={ [1]={ [1]={ limit={ @@ -43009,7 +44260,7 @@ return { [1]="trigger_on_bow_attack_%" } }, - [1426]={ + [1463]={ [1]={ [1]={ limit={ @@ -43035,7 +44286,7 @@ return { [1]="trigger_on_corpse_consume_%_chance" } }, - [1427]={ + [1464]={ [1]={ [1]={ limit={ @@ -43052,7 +44303,7 @@ return { [1]="trigger_on_crit_by_unique_enemy" } }, - [1428]={ + [1465]={ [1]={ [1]={ limit={ @@ -43069,7 +44320,24 @@ return { [1]="trigger_on_crit_vs_marked_unique" } }, - [1429]={ + [1466]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Trigger this Skill on Attack Critical Strike against a Rare or Unique Enemy and you have no Mark" + } + }, + name="cast_on_attack_crit_rare_unique", + stats={ + [1]="trigger_on_critical_strike_against_rare_or_unique_if_no_marked_enemy" + } + }, + [1467]={ [1]={ [1]={ limit={ @@ -43086,7 +44354,7 @@ return { [1]="trigger_on_es_recharge_in_presence_of_unique" } }, - [1430]={ + [1468]={ [1]={ [1]={ limit={ @@ -43103,7 +44371,7 @@ return { [1]="trigger_on_hit_against_rare_or_unique_if_no_marked_enemy" } }, - [1431]={ + [1469]={ [1]={ [1]={ limit={ @@ -43129,7 +44397,7 @@ return { [1]="trigger_on_hit_vs_frozen_enemy_%" } }, - [1432]={ + [1470]={ [1]={ [1]={ limit={ @@ -43146,7 +44414,7 @@ return { [1]="trigger_on_ignited_enemy_death" } }, - [1433]={ + [1471]={ [1]={ [1]={ limit={ @@ -43163,7 +44431,7 @@ return { [1]="trigger_on_reaching_low_life_in_presence_of_unique" } }, - [1434]={ + [1472]={ [1]={ [1]={ limit={ @@ -43180,7 +44448,7 @@ return { [1]="trigger_on_reaching_maximum_rage_in_presence_of_unique" } }, - [1435]={ + [1473]={ [1]={ [1]={ limit={ @@ -43206,7 +44474,7 @@ return { [1]="trigger_on_skill_use_%_if_you_have_a_void_arrow" } }, - [1436]={ + [1474]={ [1]={ [1]={ limit={ @@ -43232,7 +44500,7 @@ return { [1]="trigger_on_slam_or_strike_%_chance" } }, - [1437]={ + [1475]={ [1]={ [1]={ limit={ @@ -43249,7 +44517,7 @@ return { [1]="trigger_on_suppress_hit_from_unique" } }, - [1438]={ + [1476]={ [1]={ [1]={ limit={ @@ -43266,7 +44534,7 @@ return { [1]="trigger_on_taking_savage_hit_from_unique" } }, - [1439]={ + [1477]={ [1]={ [1]={ limit={ @@ -43283,7 +44551,7 @@ return { [1]="trigger_on_totem_death_in_presence_of_unique" } }, - [1440]={ + [1478]={ [1]={ [1]={ limit={ @@ -43300,7 +44568,7 @@ return { [1]="trigger_on_travel_skill_use_in_presence_of_unique" } }, - [1441]={ + [1479]={ [1]={ [1]={ limit={ @@ -43317,7 +44585,33 @@ return { [1]="trigger_on_trigger_link_target_hit" } }, - [1442]={ + [1480]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=99 + } + }, + text="{0}% chance to Trigger this Skill when your Ward Breaks" + }, + [2]={ + limit={ + [1]={ + [1]=100, + [2]="#" + } + }, + text="Trigger this Skill when your Ward Breaks" + } + }, + name="trigger_on_ward_break", + stats={ + [1]="trigger_on_ward_break_%_chance" + } + }, + [1481]={ [1]={ [1]={ limit={ @@ -43343,7 +44637,7 @@ return { [1]="trigger_prismatic_burst_on_hit_%_chance" } }, - [1443]={ + [1482]={ [1]={ [1]={ limit={ @@ -43360,7 +44654,7 @@ return { [1]="triggered_by_brand_support" } }, - [1444]={ + [1483]={ [1]={ [1]={ limit={ @@ -43377,7 +44671,7 @@ return { [1]="triggered_by_divine_cry" } }, - [1445]={ + [1484]={ [1]={ [1]={ limit={ @@ -43394,7 +44688,7 @@ return { [1]="triggered_by_infernal_cry" } }, - [1446]={ + [1485]={ [1]={ [1]={ limit={ @@ -43411,7 +44705,41 @@ return { [1]="triggered_by_item_buff" } }, - [1447]={ + [1486]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="This Skill is Triggered by Skills Supported by Kinetic Instability" + } + }, + name="triggered_by_kinetic_instability_support", + stats={ + [1]="triggered_by_kinetic_instability_support" + } + }, + [1487]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="This Skill is Triggered when Projectiles from Kinetic Rain explode" + } + }, + name="triggered_by_kinetic_rain", + stats={ + [1]="triggered_by_kinetic_rain" + } + }, + [1488]={ [1]={ [1]={ limit={ @@ -43428,7 +44756,24 @@ return { [1]="triggered_by_spiritual_cry" } }, - [1448]={ + [1489]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="This Skill is Triggered by Supported Attack Skills" + } + }, + name="triggered_windburst", + stats={ + [1]="triggered_by_support_movement" + } + }, + [1490]={ [1]={ [1]={ limit={ @@ -43445,7 +44790,7 @@ return { [1]="triggered_vicious_hex_explosion" } }, - [1449]={ + [1491]={ [1]={ [1]={ limit={ @@ -43475,7 +44820,7 @@ return { [1]="unleash_power_movement_speed_+%_final" } }, - [1450]={ + [1492]={ [1]={ [1]={ limit={ @@ -43505,7 +44850,7 @@ return { [1]="unleash_support_seal_gain_frequency_+%_while_channelling" } }, - [1451]={ + [1493]={ [1]={ [1]={ limit={ @@ -43535,7 +44880,7 @@ return { [1]="unleash_support_seal_gain_frequency_+%_while_not_channelling" } }, - [1452]={ + [1494]={ [1]={ [1]={ limit={ @@ -43596,7 +44941,7 @@ return { [2]="quality_display_glacial_cascade_num_spikes_is_gem" } }, - [1453]={ + [1495]={ [1]={ [1]={ limit={ @@ -43613,7 +44958,7 @@ return { [1]="vaal_animate_weapon_raise_up_to_X_weapons_as_uniques" } }, - [1454]={ + [1496]={ [1]={ [1]={ limit={ @@ -43643,7 +44988,7 @@ return { [1]="vaal_arctic_armour_damage_taken_+%_final_from_hits" } }, - [1455]={ + [1497]={ [1]={ [1]={ limit={ @@ -43669,7 +45014,7 @@ return { [1]="vaal_arctic_armour_number_of_hits_absorbed" } }, - [1456]={ + [1498]={ [1]={ [1]={ limit={ @@ -43686,7 +45031,7 @@ return { [1]="vaal_blade_vortex_has_10_spinning_blades" } }, - [1457]={ + [1499]={ [1]={ [1]={ limit={ @@ -43716,7 +45061,7 @@ return { [1]="vaal_charged_attack_damage_taken_+%_final" } }, - [1458]={ + [1500]={ [1]={ [1]={ [1]={ @@ -43750,7 +45095,7 @@ return { [1]="vaal_charged_attack_radius_+_per_stage" } }, - [1459]={ + [1501]={ [1]={ [1]={ [1]={ @@ -43776,7 +45121,7 @@ return { [2]="vaal_cleave_executioner_damage_against_enemies_on_low_life_+%" } }, - [1460]={ + [1502]={ [1]={ [1]={ limit={ @@ -43793,7 +45138,7 @@ return { [1]="vaal_earthquake_maximum_aftershocks" } }, - [1461]={ + [1503]={ [1]={ [1]={ [1]={ @@ -43827,7 +45172,7 @@ return { [1]="vaal_flameblast_radius_+_per_stage" } }, - [1462]={ + [1504]={ [1]={ [1]={ limit={ @@ -43844,7 +45189,7 @@ return { [1]="vaal_ice_shot_modifiers_to_projectile_count_do_not_apply_to_mirages" } }, - [1463]={ + [1505]={ [1]={ [1]={ limit={ @@ -43861,7 +45206,7 @@ return { [1]="vaal_reap_additional_maximum_blood_charges" } }, - [1464]={ + [1506]={ [1]={ [1]={ limit={ @@ -43878,7 +45223,7 @@ return { [1]="vaal_reap_gain_maximum_blood_charges_to_on_use" } }, - [1465]={ + [1507]={ [1]={ [1]={ limit={ @@ -43895,7 +45240,7 @@ return { [1]="vaal_skill_exertable" } }, - [1466]={ + [1508]={ [1]={ [1]={ [1]={ @@ -43929,7 +45274,7 @@ return { [1]="vaal_storm_call_delay_ms" } }, - [1467]={ + [1509]={ [1]={ [1]={ limit={ @@ -43959,7 +45304,7 @@ return { [1]="vaal_upgrade_minion_damage_+%_final" } }, - [1468]={ + [1510]={ [1]={ [1]={ limit={ @@ -43989,7 +45334,7 @@ return { [1]="vaal_upgrade_minion_damage_taken_+%_final" } }, - [1469]={ + [1511]={ [1]={ [1]={ limit={ @@ -44006,7 +45351,7 @@ return { [1]="vaal_volcanic_fissure_crack_repeat_count" } }, - [1470]={ + [1512]={ [1]={ [1]={ limit={ @@ -44036,7 +45381,7 @@ return { [1]="vampiric_icon_bleeding_damage_+%_final" } }, - [1471]={ + [1513]={ [1]={ [1]={ limit={ @@ -44062,7 +45407,7 @@ return { [1]="virtual_bladefall_number_of_volleys" } }, - [1472]={ + [1514]={ [1]={ [1]={ limit={ @@ -44079,7 +45424,7 @@ return { [1]="virtual_blood_spears_total_number_of_spears" } }, - [1473]={ + [1515]={ [1]={ [1]={ limit={ @@ -44096,7 +45441,7 @@ return { [1]="virtual_chill_minimum_slow_%" } }, - [1474]={ + [1516]={ [1]={ [1]={ limit={ @@ -44113,7 +45458,7 @@ return { [1]="virtual_divine_tempest_number_of_nearby_enemies_to_zap" } }, - [1475]={ + [1517]={ [1]={ [1]={ [1]={ @@ -44134,7 +45479,7 @@ return { [1]="virtual_herald_of_thunder_bolt_base_frequency" } }, - [1476]={ + [1518]={ [1]={ [1]={ [1]={ @@ -44168,7 +45513,7 @@ return { [1]="virtual_hex_zone_skill_duration_ms" } }, - [1477]={ + [1519]={ [1]={ [1]={ [1]={ @@ -44189,7 +45534,7 @@ return { [1]="virtual_mine_detonation_time_ms" } }, - [1478]={ + [1520]={ [1]={ [1]={ limit={ @@ -44215,7 +45560,7 @@ return { [1]="virtual_number_of_additional_curses_allowed" } }, - [1479]={ + [1521]={ [1]={ [1]={ limit={ @@ -44250,7 +45595,7 @@ return { [2]="display_hide_projectile_chain_num" } }, - [1480]={ + [1522]={ [1]={ [1]={ [1]={ @@ -44284,7 +45629,7 @@ return { [1]="virtual_onslaught_on_hit_%_chance" } }, - [1481]={ + [1523]={ [1]={ [1]={ limit={ @@ -44301,7 +45646,7 @@ return { [1]="virtual_regenerate_x_life_over_1_second_on_skill_use_or_trigger" } }, - [1482]={ + [1524]={ [1]={ [1]={ [1]={ @@ -44326,7 +45671,7 @@ return { [1]="virtual_spider_aspect_web_interval_ms" } }, - [1483]={ + [1525]={ [1]={ [1]={ [1]={ @@ -44360,7 +45705,7 @@ return { [1]="virtual_static_strike_base_zap_frequency_ms" } }, - [1484]={ + [1526]={ [1]={ [1]={ limit={ @@ -44382,7 +45727,7 @@ return { [2]="virtual_steelskin_damage_limit" } }, - [1485]={ + [1527]={ [1]={ [1]={ limit={ @@ -44399,7 +45744,7 @@ return { [1]="virtual_tectonic_slam_%_chance_to_do_charged_slam" } }, - [1486]={ + [1528]={ [1]={ [1]={ limit={ @@ -44429,7 +45774,7 @@ return { [1]="virtual_trap_and_mine_throwing_time_+%_final" } }, - [1487]={ + [1529]={ [1]={ [1]={ limit={ @@ -44455,7 +45800,7 @@ return { [1]="virtual_vaal_lightning_arrow_number_of_redirects" } }, - [1488]={ + [1530]={ [1]={ [1]={ limit={ @@ -44481,7 +45826,7 @@ return { [1]="virulent_arrow_additional_spores_at_max_stages" } }, - [1489]={ + [1531]={ [1]={ [1]={ [1]={ @@ -44519,7 +45864,7 @@ return { [1]="virulent_arrow_damage_+%_final_per_stage" } }, - [1490]={ + [1532]={ [1]={ [1]={ limit={ @@ -44536,7 +45881,7 @@ return { [1]="virulent_arrow_maximum_number_of_stacks" } }, - [1491]={ + [1533]={ [1]={ [1]={ limit={ @@ -44584,7 +45929,7 @@ return { [2]="quality_display_scourge_arrow_is_gem" } }, - [1492]={ + [1534]={ [1]={ [1]={ limit={ @@ -44614,7 +45959,7 @@ return { [1]="virulent_arrow_pod_projectile_damage_+%_final" } }, - [1493]={ + [1535]={ [1]={ [1]={ limit={ @@ -44644,7 +45989,7 @@ return { [1]="volatile_dead_core_movement_speed_+%" } }, - [1494]={ + [1536]={ [1]={ [1]={ limit={ @@ -44661,7 +46006,7 @@ return { [1]="volatile_dead_max_cores_allowed" } }, - [1495]={ + [1537]={ [1]={ [1]={ limit={ @@ -44687,7 +46032,7 @@ return { [1]="volatile_dead_number_of_corpses_to_consume" } }, - [1496]={ + [1538]={ [1]={ [1]={ limit={ @@ -44717,7 +46062,7 @@ return { [1]="volcanic_fissure_speed_+%" } }, - [1497]={ + [1539]={ [1]={ [1]={ limit={ @@ -44777,7 +46122,7 @@ return { [2]="quality_display_voltaxic_burst_is_gem" } }, - [1498]={ + [1540]={ [1]={ [1]={ limit={ @@ -44794,7 +46139,7 @@ return { [1]="voodoo_pole_display_maximum_life" } }, - [1499]={ + [1541]={ [1]={ [1]={ limit={ @@ -44811,7 +46156,7 @@ return { [1]="warcries_do_not_apply_buffs_to_self_or_allies" } }, - [1500]={ + [1542]={ [1]={ [1]={ limit={ @@ -44828,7 +46173,7 @@ return { [1]="warcries_knock_back_enemies" } }, - [1501]={ + [1543]={ [1]={ [1]={ [1]={ @@ -44964,7 +46309,7 @@ return { [4]="warcries_have_infinite_power" } }, - [1502]={ + [1544]={ [1]={ [1]={ limit={ @@ -44981,7 +46326,7 @@ return { [1]="infernal_cry_%_max_life_as_fire_on_death" } }, - [1503]={ + [1545]={ [1]={ [1]={ limit={ @@ -44998,7 +46343,7 @@ return { [1]="seismic_cry_armour_+%_final_per_5_power_up_to_cap" } }, - [1504]={ + [1546]={ [1]={ [1]={ [1]={ @@ -45019,7 +46364,7 @@ return { [1]="seismic_cry_stun_threshold_+%_per_5_power_up_to_cap" } }, - [1505]={ + [1547]={ [1]={ [1]={ limit={ @@ -45036,7 +46381,7 @@ return { [1]="intimidating_cry_movement_speed_+%_per_5_power_up_to_cap" } }, - [1506]={ + [1548]={ [1]={ [1]={ limit={ @@ -45053,7 +46398,7 @@ return { [1]="ancestral_cry_elemental_resist_%_per_5_power_up_to_cap" } }, - [1507]={ + [1549]={ [1]={ [1]={ limit={ @@ -45070,7 +46415,7 @@ return { [1]="ancestral_cry_maximum_elemental_resist_%_per_10_power_up_to_cap" } }, - [1508]={ + [1550]={ [1]={ [1]={ limit={ @@ -45087,7 +46432,7 @@ return { [1]="infernal_cry_physical_damage_%_to_add_as_fire_per_5_power_up_to_cap" } }, - [1509]={ + [1551]={ [1]={ [1]={ limit={ @@ -45104,7 +46449,7 @@ return { [1]="endurance_charge_granted_per_X_monster_power_during_endurance_warcry" } }, - [1510]={ + [1552]={ [1]={ [1]={ limit={ @@ -45121,7 +46466,7 @@ return { [1]="spiritual_cry_doubles_summoned_per_5_MP" } }, - [1511]={ + [1553]={ [1]={ [1]={ [1]={ @@ -45142,7 +46487,7 @@ return { [1]="divine_cry_additional_base_critical_strike_chance_per_5_power_up_to_cap" } }, - [1512]={ + [1554]={ [1]={ [1]={ [1]={ @@ -45163,7 +46508,7 @@ return { [1]="enduring_cry_life_regeneration_rate_per_minute_%_per_5_power_up_to_cap" } }, - [1513]={ + [1555]={ [1]={ [1]={ [1]={ @@ -45188,7 +46533,7 @@ return { [1]="rage_warcry_gain_X_rage_per_minute_per_5_monster_power_max_25_power" } }, - [1514]={ + [1556]={ [1]={ [1]={ limit={ @@ -45205,7 +46550,7 @@ return { [1]="rallying_cry_weapon_damage_%_for_allies_per_5_monster_power" } }, - [1515]={ + [1557]={ [1]={ [1]={ limit={ @@ -45235,7 +46580,7 @@ return { [1]="rallying_cry_buff_effect_on_minions_+%_final" } }, - [1516]={ + [1558]={ [1]={ [1]={ [1]={ @@ -45256,7 +46601,7 @@ return { [1]="rage_warcry_maximum_rage_+" } }, - [1517]={ + [1559]={ [1]={ [1]={ [1]={ @@ -45350,7 +46695,7 @@ return { [2]="skill_empower_limitation_specifier_for_stat_description" } }, - [1518]={ + [1560]={ [1]={ [1]={ limit={ @@ -45376,7 +46721,7 @@ return { [1]="ancestral_cry_empowered_attacks_strike_X_additional_enemies" } }, - [1519]={ + [1561]={ [1]={ [1]={ limit={ @@ -45393,7 +46738,7 @@ return { [1]="rallying_cry_damage_+%_final_from_osm_per_nearby_ally" } }, - [1520]={ + [1562]={ [1]={ [1]={ limit={ @@ -45423,7 +46768,7 @@ return { [1]="seismic_cry_base_slam_skill_damage_+%_final" } }, - [1521]={ + [1563]={ [1]={ [1]={ limit={ @@ -45453,7 +46798,7 @@ return { [1]="seismic_cry_slam_skill_damage_+%_final_increase_per_repeat" } }, - [1522]={ + [1564]={ [1]={ [1]={ limit={ @@ -45483,7 +46828,7 @@ return { [1]="seismic_cry_base_slam_skill_area_+%" } }, - [1523]={ + [1565]={ [1]={ [1]={ limit={ @@ -45513,7 +46858,7 @@ return { [1]="seismic_cry_base_slam_skill_area_+%_final" } }, - [1524]={ + [1566]={ [1]={ [1]={ limit={ @@ -45543,7 +46888,7 @@ return { [1]="seismic_cry_slam_skill_area_+%_increase_per_repeat" } }, - [1525]={ + [1567]={ [1]={ [1]={ limit={ @@ -45560,7 +46905,7 @@ return { [1]="display_battlemage_cry_exerted_attacks_trigger_supported_spell" } }, - [1526]={ + [1568]={ [1]={ [1]={ limit={ @@ -45577,7 +46922,7 @@ return { [1]="infernal_cry_empowered_attacks_trigger_combust_display" } }, - [1527]={ + [1569]={ [1]={ [1]={ [1]={ @@ -45598,7 +46943,7 @@ return { [1]="ambush_additional_critical_strike_chance_permyriad" } }, - [1528]={ + [1570]={ [1]={ [1]={ limit={ @@ -45615,7 +46960,7 @@ return { [1]="vanishing_ambush_critical_strike_multiplier_+" } }, - [1529]={ + [1571]={ [1]={ [1]={ limit={ @@ -45632,7 +46977,7 @@ return { [1]="intimidating_cry_empowerd_attacks_deal_double_damage_display" } }, - [1530]={ + [1572]={ [1]={ [1]={ limit={ @@ -45649,7 +46994,7 @@ return { [1]="warcry_grant_damage_+%_to_exerted_attacks" } }, - [1531]={ + [1573]={ [1]={ [1]={ [1]={ @@ -45683,7 +47028,7 @@ return { [1]="warcry_grant_knockback_%_to_exerted_attacks" } }, - [1532]={ + [1574]={ [1]={ [1]={ [1]={ @@ -45704,7 +47049,7 @@ return { [1]="warcry_grant_overwhelm_%_to_exerted_attacks" } }, - [1533]={ + [1575]={ [1]={ [1]={ limit={ @@ -45721,7 +47066,7 @@ return { [1]="warcry_skills_share_cooldowns" } }, - [1534]={ + [1576]={ [1]={ [1]={ limit={ @@ -45738,7 +47083,7 @@ return { [1]="water_sphere_cold_lightning_exposure_%" } }, - [1535]={ + [1577]={ [1]={ [1]={ [1]={ @@ -45759,7 +47104,7 @@ return { [1]="water_sphere_does_weird_conversion_stuff" } }, - [1536]={ + [1578]={ [1]={ [1]={ limit={ @@ -45789,7 +47134,7 @@ return { [1]="weapon_trap_rotation_speed_+%" } }, - [1537]={ + [1579]={ [1]={ [1]={ [1]={ @@ -45823,7 +47168,7 @@ return { [1]="weapon_trap_total_rotation_%" } }, - [1538]={ + [1580]={ [1]={ [1]={ limit={ @@ -45853,7 +47198,221 @@ return { [1]="whirling_blades_evasion_rating_+%_while_moving" } }, - [1539]={ + [1581]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Maximum {0} Thunderstorm" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Maximum {0} Thunderstorms" + } + }, + name="windstorm_limit", + stats={ + [1]="windstorm_storm_limit" + } + }, + [1582]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + }, + [2]={ + [1]="#", + [2]="#" + }, + [3]={ + [1]="#", + [2]="#" + } + }, + text="Thunderstorm gains one stage per {0} second you are in it, up to a maximum of {2}" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="!", + [2]=0 + }, + [2]={ + [1]="#", + [2]="#" + }, + [3]={ + [1]="#", + [2]="#" + } + }, + text="Thunderstorm gains one stage per {0} seconds you are in it, up to a maximum of {2}" + }, + [3]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=2 + }, + limit={ + [1]={ + [1]=0, + [2]=0 + }, + [2]={ + [1]=1000, + [2]=1000 + }, + [3]={ + [1]="#", + [2]="#" + } + }, + text="Thunderstorm gains one stage per {1} second you are in it, up to a maximum of {2}" + }, + [4]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=2 + }, + limit={ + [1]={ + [1]=0, + [2]=0 + }, + [2]={ + [1]="!", + [2]=0 + }, + [3]={ + [1]="#", + [2]="#" + } + }, + text="Thunderstorm gains one stage per {1} seconds you are in it, up to a maximum of {2}" + } + }, + name="windstorm_stage", + stats={ + [1]="windstorm_storm_stage_gained_per_X_ms", + [2]="base_windstorm_storm_stage_gained_per_X_ms", + [3]="windstorm_storm_maximum_stages" + } + }, + [1583]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Thunderstorm has {0}% more Area of Effect per stage" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Thunderstorm has {0}% less Area of Effect per stage" + } + }, + name="windstorm_aoe_final", + stats={ + [1]="windstorm_storm_area_of_effect_+%_final_per_stage" + } + }, + [1584]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]=1000, + [2]=1000 + } + }, + text="Thunderstorm dissipates if you leave it before reaching maximum Stages, or {0} second after reaching maximum Stages" + }, + [2]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Thunderstorm dissipates if you leave it before reaching maximum Stages, or {0} seconds after reaching maximum Stages" + } + }, + name="windstorm_perfect_timing_window", + stats={ + [1]="windstorm_storm_perfect_timing_window_escape_time_ms" + } + }, + [1585]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Explosion deals {0}% more Damage" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Explosion deals {0}% less Damage" + } + }, + name="windstorm_detonation_damage", + stats={ + [1]="windstorm_storm_hit_damage_+%_final_on_detonation" + } + }, + [1586]={ [1]={ [1]={ limit={ @@ -45870,7 +47429,7 @@ return { [1]="winter_brand_max_number_of_stages" } }, - [1540]={ + [1587]={ [1]={ [1]={ limit={ @@ -45887,7 +47446,7 @@ return { [1]="wither_applies_additional_wither_%" } }, - [1541]={ + [1588]={ [1]={ [1]={ limit={ @@ -45904,7 +47463,7 @@ return { [1]="wither_chance_to_apply_another_stack_if_hand_cast_%" } }, - [1542]={ + [1589]={ [1]={ [1]={ [1]={ @@ -45938,7 +47497,7 @@ return { [1]="withered_on_hit_chance_%" } }, - [1543]={ + [1590]={ [1]={ [1]={ [1]={ @@ -45972,7 +47531,7 @@ return { [1]="withered_on_hit_for_2_seconds_%_chance" } }, - [1544]={ + [1591]={ [1]={ [1]={ limit={ @@ -45998,7 +47557,7 @@ return { [1]="withering_step_chance_to_not_remove_on_skill_use_%" } }, - [1545]={ + [1592]={ [1]={ [1]={ limit={ @@ -46028,7 +47587,7 @@ return { [1]="you_and_enemy_movement_velocity_+%_while_affected_by_ailment_you_inflicted" } }, - [1546]={ + [1593]={ [1]={ [1]={ [1]={ @@ -46068,7 +47627,7 @@ return { [4]="skill_max_unleash_seals" } }, - [1547]={ + [1594]={ [1]={ [1]={ limit={ @@ -46098,7 +47657,7 @@ return { [1]="support_spell_rapid_fire_repeat_use_damage_+%_final" } }, - [1548]={ + [1595]={ [1]={ [1]={ limit={ @@ -46115,7 +47674,7 @@ return { [1]="kinetic_bolt_number_of_zig_zags" } }, - [1549]={ + [1596]={ [1]={ [1]={ limit={ @@ -46145,7 +47704,7 @@ return { [1]="cold_projectile_mine_enemy_critical_strike_chance_+%_against_self" } }, - [1550]={ + [1597]={ [1]={ [1]={ limit={ @@ -46197,7 +47756,7 @@ return { [2]="quality_display_stormblast_mine_is_gem" } }, - [1551]={ + [1598]={ [1]={ [1]={ limit={ @@ -46229,7 +47788,7 @@ return { [4]="mortar_barrage_mine_maximum_added_fire_damage_taken_limit" } }, - [1552]={ + [1599]={ [1]={ [1]={ limit={ @@ -46246,7 +47805,7 @@ return { [1]="support_remote_mine_2_chance_to_deal_double_damage_%_against_enemies_near_mines" } }, - [1553]={ + [1600]={ [1]={ [1]={ limit={ @@ -46276,7 +47835,7 @@ return { [1]="zombie_slam_area_of_effect_+%" } }, - [1554]={ + [1601]={ [1]={ [1]={ limit={ @@ -46293,7 +47852,7 @@ return { [1]="zombie_slam_cooldown_speed_+%" } }, - [1555]={ + [1602]={ [1]={ [1]={ [1]={ @@ -46314,7 +47873,7 @@ return { [1]="minion_larger_aggro_radius" } }, - [1556]={ + [1603]={ [1]={ [1]={ [1]={ @@ -46335,1250 +47894,1287 @@ return { [1]="minions_are_defensive" } }, - ["%_chance_to_gain_frenzy_charge_on_mine_detonated_targeting_an_enemy"]=1114, - ["%_chance_to_gain_frenzy_charge_on_trap_triggered_by_an_enemy"]=1115, - ["%_chance_to_gain_power_charge_on_mine_detonated_targeting_an_enemy"]=1116, - ["%_chance_to_gain_power_charge_on_trap_triggered_by_an_enemy"]=1117, + ["%_chance_to_gain_frenzy_charge_on_mine_detonated_targeting_an_enemy"]=1145, + ["%_chance_to_gain_frenzy_charge_on_trap_triggered_by_an_enemy"]=1146, + ["%_chance_to_gain_power_charge_on_mine_detonated_targeting_an_enemy"]=1147, + ["%_chance_to_gain_power_charge_on_trap_triggered_by_an_enemy"]=1148, ["0"]=15, - ["absolution_blast_chance_to_summon_on_hitting_rare_or_unique_%"]=457, - ["abyssal_cry_%_max_life_as_chaos_on_death"]=353, - ["abyssal_cry_movement_velocity_+%_per_one_hundred_nearby_enemies"]=351, - ["accuracy_rating"]=122, - ["accuracy_rating_+%"]=123, - ["active_skill_added_damage_+%_final"]=458, - ["active_skill_additional_critical_strike_chance_if_used_through_frostbolt"]=459, - ["active_skill_ailment_damage_+%_final"]=460, - ["active_skill_ailment_damage_+%_final_from_skill_effect_duration"]=50, - ["active_skill_area_damage_+%_final"]=461, - ["active_skill_area_of_effect_+%_final"]=84, - ["active_skill_area_of_effect_+%_final_per_endurance_charge"]=462, - ["active_skill_area_of_effect_+%_final_when_cast_on_frostbolt"]=463, - ["active_skill_area_of_effect_description_mode"]=464, - ["active_skill_area_of_effect_radius"]=464, - ["active_skill_attack_damage_+%_final_per_endurance_charge"]=465, - ["active_skill_attack_speed_+%_final"]=313, - ["active_skill_base_area_length_+"]=466, - ["active_skill_base_area_of_effect_radius"]=464, - ["active_skill_base_radius_+"]=78, - ["active_skill_base_secondary_area_of_effect_radius"]=478, - ["active_skill_base_tertiary_area_of_effect_radius"]=480, - ["active_skill_bleeding_damage_+%_final"]=468, - ["active_skill_bleeding_damage_+%_final_in_blood_stance"]=467, - ["active_skill_chill_as_though_damage_+%_final"]=469, - ["active_skill_chill_effect_+%_final"]=113, - ["active_skill_cooldown_bypass_type_override_to_power_charge"]=649, - ["active_skill_damage_+%_when_cast_on_frostbolt"]=470, - ["active_skill_damage_over_time_from_projectile_hits_+%_final"]=423, - ["active_skill_display_aegis_variation"]=490, - ["active_skill_ground_consecration_radius_+"]=79, - ["active_skill_hit_ailment_damage_with_projectile_+%_final"]=471, - ["active_skill_if_used_through_frostbolt_damage_+%_final"]=472, - ["active_skill_ignite_damage_+%_final"]=473, - ["active_skill_main_hand_weapon_damage_+%_final"]=456, - ["active_skill_minion_energy_shield_+%_final"]=150, - ["active_skill_minion_life_+%_final"]=149, - ["active_skill_minion_movement_velocity_+%_final"]=146, - ["active_skill_poison_damage_+%_final"]=474, - ["active_skill_poison_duration_+%_final"]=475, - ["active_skill_projectile_damage_+%_final"]=418, - ["active_skill_projectile_damage_+%_final_for_each_remaining_chain"]=476, - ["active_skill_projectile_speed_+%_final"]=477, - ["active_skill_returning_projectile_damage_+%_final"]=419, - ["active_skill_secondary_area_of_effect_description_mode"]=478, - ["active_skill_secondary_area_of_effect_radius"]=478, - ["active_skill_shock_as_though_damage_+%_final"]=479, - ["active_skill_summon_X_totems_in_ring_override"]=47, - ["active_skill_tertiary_area_of_effect_description_mode"]=480, - ["active_skill_tertiary_area_of_effect_radius"]=480, - ["active_skill_trap_throwing_speed_+%_final"]=481, - ["add_endurance_charge_on_skill_hit_%"]=482, - ["add_frenzy_charge_on_kill"]=127, - ["add_frenzy_charge_on_kill_%_chance"]=128, - ["add_frenzy_charge_on_skill_hit_%"]=483, - ["add_power_charge_on_critical_strike_%"]=273, - ["additional_base_critical_strike_chance"]=404, - ["additional_block_chance_against_projectiles_%_per_steel_charge"]=484, - ["additional_chain_chance_%"]=485, - ["additional_chance_to_freeze_chilled_enemies_%"]=383, - ["additional_critical_strike_chance_permyriad_while_affected_by_elusive"]=487, - ["additional_critical_strike_chance_permyriad_while_dead"]=486, - ["additional_projectiles_per_intensity"]=488, - ["additive_arrow_speed_modifiers_apply_to_area_of_effect"]=489, - ["ailment_damage_+%_per_frenzy_charge"]=491, - ["alchemists_mark_igniter_creates_burning_ground_%_ignite_damage"]=492, - ["alchemists_mark_poisoner_creates_caustic_ground_%_poison_damage"]=492, - ["all_damage_can_ignite_freeze_shock"]=493, - ["all_damage_can_sap"]=494, - ["already_split_if_no_steel_shards"]=495, - ["always_freeze"]=107, - ["always_stun"]=155, - ["always_stun_enemies_that_are_on_full_life"]=496, - ["ambush_additional_critical_strike_chance_permyriad"]=1527, - ["ancestor_totem_buff_effect_+%"]=497, - ["ancestor_totem_grants_owner_area_of_effect_+%_with_melee_skills"]=65, - ["ancestor_totem_parent_activation_range_+%"]=498, - ["ancestral_buff_action_speed_+%_minimum_value"]=499, - ["ancestral_buff_armour_%_applies_to_all_damage_from_hits"]=500, - ["ancestral_buff_base_mana_regeneration_rate_per_minute"]=501, - ["ancestral_buff_base_rage_regeneration_per_minute"]=502, - ["ancestral_buff_base_spell_damage_%_suppressed"]=503, - ["ancestral_buff_damage_removed_from_your_nearest_totem_before_life_or_es_%"]=504, - ["ancestral_buff_flask_charges_recovered_per_3_seconds"]=505, - ["ancestral_buff_leech_%_is_instant"]=506, - ["ancestral_buff_recover_%_of_maximum_life_mana_energy_shield_on_block"]=507, - ["ancestral_buff_travel_skill_cooldown_speed_+%"]=508, - ["ancestral_cry_elemental_resist_%_per_5_power_up_to_cap"]=1506, - ["ancestral_cry_empowered_attacks_strike_X_additional_enemies"]=1518, - ["ancestral_cry_maximum_elemental_resist_%_per_10_power_up_to_cap"]=1507, - ["ancestral_embrace_effect_+%_per_arohongui_tattoo"]=509, - ["ancestral_embrace_effect_+%_per_hinekora_tattoo"]=510, - ["ancestral_embrace_effect_+%_per_kitava_tattoo"]=511, - ["ancestral_embrace_effect_+%_per_ngamahu_tattoo"]=512, - ["ancestral_embrace_effect_+%_per_ramako_tattoo"]=513, - ["ancestral_embrace_effect_+%_per_rongokurai_tattoo"]=514, - ["ancestral_embrace_effect_+%_per_tasalio_tattoo"]=515, - ["ancestral_embrace_effect_+%_per_tawhoa_tattoo"]=516, - ["ancestral_embrace_effect_+%_per_tukohama_tattoo"]=517, - ["ancestral_embrace_effect_+%_per_valako_tattoo"]=518, - ["ancestral_slam_interval_duration"]=443, - ["ancestral_slam_stun_threshold_reduction_+%"]=519, - ["animate_item_maximum_level_requirement"]=288, - ["animate_weapon_can_only_animate_range_weapons"]=520, - ["animate_weapon_chance_to_create_additional_copy_%"]=521, - ["animated_ethereal_blades_have_additional_critical_strike_chance"]=522, - ["apply_enemy_impale_damage_to_nearby_enemies_on_killing_blow_%_chance"]=523, - ["apply_linked_curses_on_hit_%"]=279, - ["apply_linked_curses_with_dark_ritual"]=524, - ["apply_overpowered_on_enemy_block_reduced_block_and_spell_block_%"]=525, - ["arc_damage_+%_final_for_each_remaining_chain"]=526, - ["arc_damage_+%_final_per_chain"]=527, - ["arcane_cloak_consume_%_of_mana"]=528, - ["arcane_cloak_damage_absorbed_%"]=529, - ["arcane_cloak_gain_%_of_consumed_mana_as_life_regenerated_per_second"]=530, - ["arcane_cloak_gain_%_of_consumed_mana_as_lightning_damage"]=531, - ["arctic_armour_chill_when_hit_duration"]=532, - ["arctic_armour_freeze_enemies_when_you_are_hit_%_chance"]=533, - ["arctic_breath_maximum_number_of_skulls_allowed"]=534, - ["area_of_effect_+%_final_per_removable_power_frenzy_or_endurance_charge"]=535, - ["area_of_effect_+%_per_frost_fury_stage"]=536, - ["area_of_effect_+%_when_cast_on_frostbolt"]=537, - ["area_of_effect_+%_while_dead"]=83, - ["area_of_effect_+%_while_not_dual_wielding"]=538, - ["armour_+%_per_barkskin_stack"]=135, - ["arrow_number_of_targets_to_pierce"]=104, - ["arrows_always_pierce"]=104, - ["artillery_ballista_cross_strafe_pattern"]=539, - ["artillery_ballista_number_of_arrow_targets"]=540, - ["attack_and_cast_speed_+%"]=541, - ["attack_damage_+%"]=542, - ["attack_damage_taken_+%_final_from_enemies_unaffected_by_sand_armour"]=543, - ["attack_maximum_added_physical_damage_with_weapons_per_trauma"]=544, - ["attack_minimum_added_physical_damage_with_weapons_per_trauma"]=544, - ["attack_repeat_count"]=272, - ["attack_skill_mana_leech_from_any_damage_permyriad"]=545, - ["attack_speed_+%"]=60, - ["attack_speed_+%_granted_from_skill"]=61, - ["attack_speed_+%_per_maximum_totem"]=546, - ["attack_speed_+%_per_trauma"]=1414, - ["attack_speed_+%_when_on_low_life"]=62, - ["attack_trigger_on_hit_%"]=308, - ["attack_trigger_on_hitting_bleeding_enemy_%"]=547, - ["attack_trigger_on_kill_%"]=289, - ["attack_trigger_on_melee_critical_hit_%"]=309, - ["attack_trigger_on_melee_hit_%"]=310, - ["attack_trigger_when_critically_hit_%"]=286, - ["attacks_impale_on_hit_%_chance"]=548, - ["atziri_unique_staff_storm_call_number_of_markers_to_place"]=324, - ["aura_effect_+%"]=87, - ["automation_behaviour"]=549, - ["avoid_damage_%"]=550, - ["avoid_interruption_while_using_this_skill_%"]=551, - ["backstab_damage_+%"]=156, - ["ball_lightning_superball_%_chance"]=552, - ["barrage_final_volley_fires_x_additional_projectiles_simultaneously"]=450, - ["barrage_support_projectile_spread_+%"]=553, + ["absolution_blast_chance_to_summon_on_hitting_rare_or_unique_%"]=463, + ["abyssal_cry_%_max_life_as_chaos_on_death"]=359, + ["abyssal_cry_movement_velocity_+%_per_one_hundred_nearby_enemies"]=357, + ["accuracy_rating"]=123, + ["accuracy_rating_+%"]=124, + ["active_skill_added_damage_+%_final"]=464, + ["active_skill_additional_critical_strike_chance_if_used_through_frostbolt"]=465, + ["active_skill_ailment_damage_+%_final"]=466, + ["active_skill_ailment_damage_+%_final_from_skill_effect_duration"]=51, + ["active_skill_area_damage_+%_final"]=467, + ["active_skill_area_of_effect_+%_final"]=85, + ["active_skill_area_of_effect_+%_final_per_endurance_charge"]=468, + ["active_skill_area_of_effect_+%_final_when_cast_on_frostbolt"]=469, + ["active_skill_area_of_effect_description_mode"]=470, + ["active_skill_area_of_effect_radius"]=470, + ["active_skill_attack_damage_+%_final_per_endurance_charge"]=471, + ["active_skill_attack_speed_+%_final"]=315, + ["active_skill_base_area_length_+"]=472, + ["active_skill_base_area_of_effect_radius"]=470, + ["active_skill_base_radius_+"]=79, + ["active_skill_base_secondary_area_of_effect_radius"]=487, + ["active_skill_base_tertiary_area_of_effect_radius"]=489, + ["active_skill_bleeding_damage_+%_final"]=474, + ["active_skill_bleeding_damage_+%_final_in_blood_stance"]=473, + ["active_skill_chill_as_though_damage_+%_final"]=475, + ["active_skill_chill_effect_+%_final"]=114, + ["active_skill_cooldown_bypass_type_override_to_power_charge"]=659, + ["active_skill_damage_+%_final_if_ward_has_not_broken_in_the_past_2_seconds"]=476, + ["active_skill_damage_+%_final_vs_stunned_enemies"]=477, + ["active_skill_damage_+%_when_cast_on_frostbolt"]=478, + ["active_skill_damage_over_time_from_projectile_hits_+%_final"]=429, + ["active_skill_display_aegis_variation"]=499, + ["active_skill_ground_consecration_radius_+"]=80, + ["active_skill_hit_ailment_damage_with_projectile_+%_final"]=479, + ["active_skill_hit_damage_+%_final_per_curse_on_target"]=480, + ["active_skill_if_used_through_frostbolt_damage_+%_final"]=481, + ["active_skill_ignite_damage_+%_final"]=482, + ["active_skill_main_hand_weapon_damage_+%_final"]=462, + ["active_skill_minion_energy_shield_+%_final"]=151, + ["active_skill_minion_life_+%_final"]=150, + ["active_skill_minion_movement_velocity_+%_final"]=147, + ["active_skill_poison_damage_+%_final"]=483, + ["active_skill_poison_duration_+%_final"]=484, + ["active_skill_projectile_damage_+%_final"]=424, + ["active_skill_projectile_damage_+%_final_for_each_remaining_chain"]=485, + ["active_skill_projectile_speed_+%_final"]=486, + ["active_skill_returning_projectile_damage_+%_final"]=425, + ["active_skill_secondary_area_of_effect_description_mode"]=487, + ["active_skill_secondary_area_of_effect_radius"]=487, + ["active_skill_shock_as_though_damage_+%_final"]=488, + ["active_skill_summon_X_totems_in_ring_override"]=48, + ["active_skill_tertiary_area_of_effect_description_mode"]=489, + ["active_skill_tertiary_area_of_effect_radius"]=489, + ["active_skill_trap_throwing_speed_+%_final"]=490, + ["add_endurance_charge_on_skill_hit_%"]=491, + ["add_frenzy_charge_on_kill"]=128, + ["add_frenzy_charge_on_kill_%_chance"]=129, + ["add_frenzy_charge_on_skill_hit_%"]=492, + ["add_power_charge_on_critical_strike_%"]=275, + ["additional_base_critical_strike_chance"]=410, + ["additional_block_chance_against_projectiles_%_per_steel_charge"]=493, + ["additional_chain_chance_%"]=494, + ["additional_chance_to_freeze_chilled_enemies_%"]=389, + ["additional_critical_strike_chance_permyriad_while_affected_by_elusive"]=496, + ["additional_critical_strike_chance_permyriad_while_dead"]=495, + ["additional_projectiles_per_intensity"]=497, + ["additive_arrow_speed_modifiers_apply_to_area_of_effect"]=498, + ["ailment_damage_+%_per_frenzy_charge"]=500, + ["alchemists_mark_igniter_creates_burning_ground_%_ignite_damage"]=501, + ["alchemists_mark_poisoner_creates_caustic_ground_%_poison_damage"]=501, + ["all_damage_can_ignite_freeze_shock"]=502, + ["all_damage_can_sap"]=503, + ["already_split_if_no_steel_shards"]=504, + ["always_freeze"]=108, + ["always_stun"]=156, + ["always_stun_enemies_that_are_on_full_life"]=505, + ["ambush_additional_critical_strike_chance_permyriad"]=1569, + ["ancestor_totem_buff_effect_+%"]=506, + ["ancestor_totem_grants_owner_area_of_effect_+%_with_melee_skills"]=66, + ["ancestor_totem_parent_activation_range_+%"]=507, + ["ancestral_buff_action_speed_+%_minimum_value"]=508, + ["ancestral_buff_armour_%_applies_to_all_damage_from_hits"]=509, + ["ancestral_buff_base_mana_regeneration_rate_per_minute"]=510, + ["ancestral_buff_base_rage_regeneration_per_minute"]=511, + ["ancestral_buff_base_spell_damage_%_suppressed"]=512, + ["ancestral_buff_damage_removed_from_your_nearest_totem_before_life_or_es_%"]=513, + ["ancestral_buff_flask_charges_recovered_per_3_seconds"]=514, + ["ancestral_buff_leech_%_is_instant"]=515, + ["ancestral_buff_recover_%_of_maximum_life_mana_energy_shield_on_block"]=516, + ["ancestral_buff_travel_skill_cooldown_speed_+%"]=517, + ["ancestral_cry_elemental_resist_%_per_5_power_up_to_cap"]=1548, + ["ancestral_cry_empowered_attacks_strike_X_additional_enemies"]=1560, + ["ancestral_cry_maximum_elemental_resist_%_per_10_power_up_to_cap"]=1549, + ["ancestral_embrace_effect_+%_per_arohongui_tattoo"]=518, + ["ancestral_embrace_effect_+%_per_hinekora_tattoo"]=519, + ["ancestral_embrace_effect_+%_per_kitava_tattoo"]=520, + ["ancestral_embrace_effect_+%_per_ngamahu_tattoo"]=521, + ["ancestral_embrace_effect_+%_per_ramako_tattoo"]=522, + ["ancestral_embrace_effect_+%_per_rongokurai_tattoo"]=523, + ["ancestral_embrace_effect_+%_per_tasalio_tattoo"]=524, + ["ancestral_embrace_effect_+%_per_tawhoa_tattoo"]=525, + ["ancestral_embrace_effect_+%_per_tukohama_tattoo"]=526, + ["ancestral_embrace_effect_+%_per_valako_tattoo"]=527, + ["ancestral_slam_interval_duration"]=449, + ["ancestral_slam_stun_threshold_reduction_+%"]=528, + ["animate_item_maximum_level_requirement"]=290, + ["animate_weapon_can_only_animate_range_weapons"]=529, + ["animate_weapon_chance_to_create_additional_copy_%"]=530, + ["animated_ethereal_blades_have_additional_critical_strike_chance"]=531, + ["apply_enemy_impale_damage_to_nearby_enemies_on_killing_blow_%_chance"]=532, + ["apply_linked_curses_on_hit_%"]=281, + ["apply_linked_curses_with_dark_ritual"]=533, + ["apply_overpowered_on_enemy_block_reduced_block_and_spell_block_%"]=534, + ["arc_damage_+%_final_for_each_remaining_chain"]=535, + ["arc_damage_+%_final_per_chain"]=536, + ["arcane_cloak_consume_%_of_mana"]=537, + ["arcane_cloak_damage_absorbed_%"]=538, + ["arcane_cloak_gain_%_of_consumed_mana_as_life_regenerated_per_second"]=539, + ["arcane_cloak_gain_%_of_consumed_mana_as_lightning_damage"]=540, + ["arctic_armour_chill_when_hit_duration"]=541, + ["arctic_armour_freeze_enemies_when_you_are_hit_%_chance"]=542, + ["arctic_breath_maximum_number_of_skulls_allowed"]=543, + ["area_of_effect_+%_final_per_removable_power_frenzy_or_endurance_charge"]=544, + ["area_of_effect_+%_per_frost_fury_stage"]=545, + ["area_of_effect_+%_when_cast_on_frostbolt"]=546, + ["area_of_effect_+%_while_dead"]=84, + ["area_of_effect_+%_while_not_dual_wielding"]=547, + ["armour_+%_per_barkskin_stack"]=136, + ["arrow_number_of_targets_to_pierce"]=105, + ["arrows_always_pierce"]=105, + ["artillery_ballista_cross_strafe_pattern"]=548, + ["artillery_ballista_number_of_arrow_targets"]=549, + ["attack_and_cast_speed_+%"]=550, + ["attack_damage_+%"]=551, + ["attack_damage_taken_+%_final_from_enemies_unaffected_by_sand_armour"]=552, + ["attack_maximum_added_physical_damage_with_weapons_per_trauma"]=553, + ["attack_minimum_added_physical_damage_with_weapons_per_trauma"]=553, + ["attack_repeat_count"]=274, + ["attack_skill_mana_leech_from_any_damage_permyriad"]=554, + ["attack_speed_+%"]=61, + ["attack_speed_+%_granted_from_skill"]=62, + ["attack_speed_+%_per_maximum_totem"]=555, + ["attack_speed_+%_per_trauma"]=1451, + ["attack_speed_+%_when_on_low_life"]=63, + ["attack_trigger_on_hit_%"]=310, + ["attack_trigger_on_hitting_bleeding_enemy_%"]=556, + ["attack_trigger_on_kill_%"]=291, + ["attack_trigger_on_melee_critical_hit_%"]=311, + ["attack_trigger_on_melee_hit_%"]=312, + ["attack_trigger_when_critically_hit_%"]=288, + ["attacks_impale_on_hit_%_chance"]=557, + ["atziri_unique_staff_storm_call_number_of_markers_to_place"]=326, + ["aura_effect_+%"]=88, + ["automation_behaviour"]=558, + ["avoid_damage_%"]=559, + ["avoid_interruption_while_using_this_skill_%"]=560, + ["backstab_damage_+%"]=157, + ["ball_lightning_superball_%_chance"]=561, + ["barrage_final_volley_fires_x_additional_projectiles_simultaneously"]=456, + ["barrage_support_projectile_spread_+%"]=562, ["base_actor_scale_+%"]=1, - ["base_arrow_speed_+%"]=349, - ["base_attack_speed_+%_per_frenzy_charge"]=88, - ["base_aura_area_of_effect_+%"]=86, - ["base_buff_duration_ms_+_per_removable_endurance_charge"]=190, - ["base_cast_speed_+%"]=70, - ["base_chance_to_deal_triple_damage_%"]=554, - ["base_chance_to_destroy_corpse_on_kill_%_vs_ignited"]=555, - ["base_chance_to_freeze_%"]=107, - ["base_chance_to_ignite_%"]=110, - ["base_chance_to_poison_on_hit_%"]=394, - ["base_chance_to_shock_%"]=109, - ["base_chance_to_shock_%_from_skill"]=1207, - ["base_chaos_damage_%_of_maximum_life_to_deal_per_minute"]=124, - ["base_chaos_damage_taken_per_minute_per_viper_strike_orb"]=159, - ["base_cold_damage_resistance_%"]=238, - ["base_cooldown_modifier_ms"]=556, - ["base_cooldown_speed_+%"]=557, - ["base_critical_strike_multiplier_+"]=137, - ["base_damage_taken_+%"]=558, - ["base_deal_no_chaos_damage"]=559, - ["base_energy_shield_leech_from_spell_damage_permyriad"]=560, - ["base_extra_damage_rolls"]=561, - ["base_inflict_cold_exposure_on_hit_%_chance"]=563, - ["base_inflict_fire_exposure_on_hit_%_chance"]=564, - ["base_inflict_lightning_exposure_on_hit_%_chance"]=565, - ["base_life_gain_per_target"]=140, - ["base_life_leech_from_chaos_damage_permyriad"]=566, - ["base_life_regeneration_rate_per_minute"]=235, - ["base_mana_regeneration_rate_per_minute"]=373, - ["base_movement_velocity_+%"]=118, - ["base_nonlethal_fire_damage_%_of_maximum_energy_shield_taken_per_minute"]=203, - ["base_nonlethal_fire_damage_%_of_maximum_life_taken_per_minute"]=202, - ["base_nonlethal_fire_damage_%_of_maximum_mana_taken_per_minute"]=204, - ["base_number_of_effigies_allowed"]=1096, - ["base_number_of_projectiles_in_spiral_nova"]=58, - ["base_number_of_sacred_wisps_allowed"]=567, - ["base_physical_damage_%_of_maximum_energy_shield_to_deal_per_minute"]=126, - ["base_physical_damage_%_of_maximum_life_to_deal_per_minute"]=125, - ["base_physical_damage_%_to_convert_to_cold"]=356, - ["base_physical_damage_reduction_rating"]=210, - ["base_poison_damage_+%"]=399, - ["base_poison_duration_+%"]=400, - ["base_projectile_speed_+%"]=106, - ["base_reduce_enemy_cold_resistance_%"]=247, - ["base_reduce_enemy_fire_resistance_%"]=246, - ["base_reduce_enemy_lightning_resistance_%"]=248, - ["base_resist_all_elements_%"]=198, - ["base_righteous_fire_%_of_max_energy_shield_to_deal_to_nearby_per_minute"]=200, - ["base_righteous_fire_%_of_max_life_to_deal_to_nearby_per_minute"]=199, - ["base_righteous_fire_%_of_max_mana_to_deal_to_nearby_per_minute"]=201, - ["base_skill_area_of_effect_+%"]=80, - ["base_smite_number_of_targets"]=569, - ["base_stun_duration_+%"]=154, - ["base_stun_recovery_+%"]=186, - ["base_stun_threshold_reduction_+%"]=77, - ["base_use_life_in_place_of_mana"]=215, - ["bear_and_siphoning_trap_debuff_grants_-%_cooldown_speed"]=570, - ["berserk_attack_damage_+%_final"]=436, - ["berserk_attack_speed_+%_final"]=438, - ["berserk_base_damage_taken_+%_final"]=440, - ["berserk_minimum_rage"]=435, - ["berserk_movement_speed_+%_final"]=439, - ["berserk_rage_effect_+%"]=437, - ["berserk_rage_loss_+%_per_second"]=442, - ["blackhole_damage_taken_+%"]=571, - ["blackhole_hinder_%"]=572, - ["blackhole_tick_rate_ms"]=573, - ["blade_blast_detonated_blades_not_removed_%_chance"]=574, - ["blade_burst_area_of_effect_+%_final_per_blade_vortex_blade_detonated"]=575, - ["blade_flurry_critical_strike_chance_per_stage_+%_final"]=576, - ["blade_flurry_critical_strike_multiplier_+_while_at_max_stages"]=577, - ["blade_flurry_damage_+%_final_while_at_max_stages"]=578, - ["blade_flurry_elemental_damage_+%_while_channeling"]=579, - ["blade_flurry_final_flurry_area_of_effect_+%"]=580, - ["blade_vortex_additional_blade_chance_%"]=581, - ["blade_vortex_ailment_damage_+%_per_blade_final"]=265, - ["blade_vortex_critical_strike_chance_+%_per_blade"]=582, - ["blade_vortex_damage_+%_per_blade_final"]=264, - ["blade_vortex_damage_+%_with_5_or_fewer_blades"]=583, - ["blade_vortex_hit_rate_+%_per_blade"]=263, - ["blade_vortex_hit_rate_ms"]=584, - ["bladefall_create_X_lingering_blades_per_volley"]=585, - ["bladefall_critical_strike_chance_+%_per_stage"]=586, - ["bladefall_damage_per_stage_+%_final"]=397, - ["bladefall_volley_frequency_ms"]=587, - ["bladefall_volley_gap_distance_+%"]=588, - ["bladefall_volleys_needed_per_vestige_blade"]=589, - ["bladestorm_and_rage_vortex_hinders_and_unnerves_enemies_within"]=590, - ["bladestorm_attack_speed_+%_final_while_in_bloodstorm"]=591, - ["bladestorm_blood_stance_ailment_damage_+%"]=592, - ["bladestorm_maximum_number_of_storms_allowed"]=593, - ["bladestorm_movement_speed_+%_while_in_sandstorm"]=594, - ["bladestorm_sandstorm_movement_speed_+%"]=595, - ["bladestorm_storm_damage_+%_final"]=596, - ["blast_rain_area_of_effect_+%"]=597, - ["blast_rain_damage_+%_vs_distant_enemies"]=598, - ["bleed_on_hit_with_attacks_%"]=599, - ["bleeding_damage_+%"]=601, - ["bleeding_damage_+100%_final_chance"]=600, - ["bleeding_skill_effect_duration"]=96, - ["blind_duration_+%"]=245, - ["blind_effect_+%"]=602, - ["blood_ground_leaving_area_lasts_for_ms"]=603, - ["blood_rage_life_leech_from_elemental_damage_permyriad"]=604, - ["blood_sand_stance_melee_skills_area_damage_+%_final_in_blood_stance"]=407, - ["blood_sand_stance_melee_skills_area_damage_+%_final_in_sand_stance"]=410, - ["blood_sand_stance_melee_skills_area_of_effect_+%_final_in_blood_stance"]=408, - ["blood_sand_stance_melee_skills_area_of_effect_+%_final_in_sand_stance"]=409, - ["blood_sand_triggered_blind_on_attack_chance_%"]=606, - ["blood_sand_triggered_change_bleed_on_attack_chance_%"]=607, - ["blood_scythe_cost_+%_final_per_charge"]=608, - ["blood_scythe_damage_+%_final_per_charge"]=609, - ["blood_surge_refresh_on_total_life_spent"]=610, - ["blood_tendrils_beam_count"]=611, - ["bodyswap_damage_+%_when_not_consuming_corpse"]=612, - ["bone_golem_damage_+%_final_per_non_golem_minion_nearby"]=613, - ["bone_golem_damage_per_non_golem_minion_nearby_maximum_%"]=613, - ["bone_golem_grants_minion_maximum_added_physical_damage"]=614, - ["bone_golem_grants_minion_minimum_added_physical_damage"]=614, - ["boneshatter_chance_to_gain_+1_trauma"]=615, - ["boneshatter_trauma_base_duration_ms"]=1415, - ["brand_cannot_be_recalled"]=616, - ["brand_detonate_faster_activation_%_per_second"]=617, - ["brand_detonate_faster_duration_%_per_second"]=618, - ["brand_recall_spend_%_of_recalled_brands_cost"]=619, - ["branded_enemy_explode_for_25%_life_as_chaos_on_death_chance_%"]=620, - ["buff_effect_duration"]=90, - ["buff_effect_duration_+%_per_removable_endurance_charge"]=191, - ["buff_effect_duration_+%_per_removable_endurance_charge_limited_to_5"]=192, - ["buff_grants_smite_additional_lightning_targets"]=621, - ["burn_damage_+%"]=117, - ["call_of_steel_reload_amount"]=622, - ["call_of_steel_reload_time"]=622, - ["call_to_arms_behaviour"]=623, - ["cannot_cause_bleeding"]=599, - ["cannot_inflict_status_ailments"]=214, - ["cannot_knockback"]=624, - ["cannot_poison_poisoned_enemies"]=625, - ["cast_linked_spells_on_attack_crit_%"]=283, - ["cast_linked_spells_on_melee_kill_%"]=284, - ["cast_on_any_damage_taken_%"]=297, - ["cast_on_attack_use_%"]=290, - ["cast_on_crit_%"]=626, - ["cast_on_damage_taken_%"]=311, - ["cast_on_damage_taken_threshold"]=311, - ["cast_on_death_%"]=299, - ["cast_on_flask_use_%"]=627, - ["cast_on_gain_avians_flight_or_avians_might_%"]=303, - ["cast_on_gain_skill"]=628, - ["cast_on_hit_%"]=304, - ["cast_on_hit_if_cursed_%"]=305, - ["cast_on_lose_cats_stealth"]=306, - ["cast_on_melee_hit_if_cursed_%"]=307, - ["cast_on_skill_use_%"]=291, - ["cast_on_stunned_%"]=301, + ["base_arrow_speed_+%"]=355, + ["base_attack_speed_+%_per_frenzy_charge"]=89, + ["base_aura_area_of_effect_+%"]=87, + ["base_buff_duration_ms_+_per_removable_endurance_charge"]=191, + ["base_cast_speed_+%"]=71, + ["base_chance_to_deal_triple_damage_%"]=563, + ["base_chance_to_destroy_corpse_on_kill_%_vs_ignited"]=564, + ["base_chance_to_freeze_%"]=108, + ["base_chance_to_ignite_%"]=111, + ["base_chance_to_poison_on_hit_%"]=400, + ["base_chance_to_shock_%"]=110, + ["base_chance_to_shock_%_from_skill"]=1239, + ["base_chaos_damage_%_of_maximum_life_to_deal_per_minute"]=125, + ["base_chaos_damage_taken_per_minute_per_viper_strike_orb"]=160, + ["base_cold_damage_resistance_%"]=240, + ["base_cooldown_modifier_ms"]=565, + ["base_cooldown_speed_+%"]=566, + ["base_critical_strike_multiplier_+"]=138, + ["base_damage_taken_+%"]=567, + ["base_deal_no_chaos_damage"]=568, + ["base_energy_shield_leech_from_spell_damage_permyriad"]=569, + ["base_extra_damage_rolls"]=570, + ["base_inflict_cold_exposure_on_hit_%_chance"]=572, + ["base_inflict_fire_exposure_on_hit_%_chance"]=573, + ["base_inflict_lightning_exposure_on_hit_%_chance"]=574, + ["base_life_gain_per_target"]=141, + ["base_life_leech_from_chaos_damage_permyriad"]=575, + ["base_life_regeneration_rate_per_minute"]=237, + ["base_mana_regeneration_rate_per_minute"]=379, + ["base_movement_velocity_+%"]=119, + ["base_nonlethal_fire_damage_%_of_maximum_energy_shield_taken_per_minute"]=204, + ["base_nonlethal_fire_damage_%_of_maximum_life_taken_per_minute"]=203, + ["base_nonlethal_fire_damage_%_of_maximum_mana_taken_per_minute"]=205, + ["base_number_of_effigies_allowed"]=1127, + ["base_number_of_living_lightning_allowed"]=576, + ["base_number_of_projectiles_in_spiral_nova"]=59, + ["base_number_of_sacred_wisps_allowed"]=577, + ["base_physical_damage_%_of_maximum_energy_shield_to_deal_per_minute"]=127, + ["base_physical_damage_%_of_maximum_life_to_deal_per_minute"]=126, + ["base_physical_damage_%_to_convert_to_cold"]=362, + ["base_physical_damage_reduction_rating"]=211, + ["base_poison_damage_+%"]=405, + ["base_poison_duration_+%"]=406, + ["base_projectile_speed_+%"]=107, + ["base_reduce_enemy_cold_resistance_%"]=249, + ["base_reduce_enemy_fire_resistance_%"]=248, + ["base_reduce_enemy_lightning_resistance_%"]=250, + ["base_resist_all_elements_%"]=199, + ["base_righteous_fire_%_of_max_energy_shield_to_deal_to_nearby_per_minute"]=201, + ["base_righteous_fire_%_of_max_life_to_deal_to_nearby_per_minute"]=200, + ["base_righteous_fire_%_of_max_mana_to_deal_to_nearby_per_minute"]=202, + ["base_skill_area_of_effect_+%"]=81, + ["base_smite_number_of_targets"]=579, + ["base_stun_duration_+%"]=155, + ["base_stun_recovery_+%"]=187, + ["base_stun_threshold_reduction_+%"]=78, + ["base_use_life_in_place_of_mana"]=217, + ["base_windstorm_storm_stage_gained_per_X_ms"]=1582, + ["bear_and_siphoning_trap_debuff_grants_-%_cooldown_speed"]=580, + ["berserk_attack_damage_+%_final"]=442, + ["berserk_attack_speed_+%_final"]=444, + ["berserk_base_damage_taken_+%_final"]=446, + ["berserk_minimum_rage"]=441, + ["berserk_movement_speed_+%_final"]=445, + ["berserk_rage_effect_+%"]=443, + ["berserk_rage_loss_+%_per_second"]=448, + ["blackhole_damage_taken_+%"]=581, + ["blackhole_hinder_%"]=582, + ["blackhole_tick_rate_ms"]=583, + ["blade_blast_detonated_blades_not_removed_%_chance"]=584, + ["blade_burst_area_of_effect_+%_final_per_blade_vortex_blade_detonated"]=585, + ["blade_flurry_critical_strike_chance_per_stage_+%_final"]=586, + ["blade_flurry_critical_strike_multiplier_+_while_at_max_stages"]=587, + ["blade_flurry_damage_+%_final_while_at_max_stages"]=588, + ["blade_flurry_elemental_damage_+%_while_channeling"]=589, + ["blade_flurry_final_flurry_area_of_effect_+%"]=590, + ["blade_vortex_additional_blade_chance_%"]=591, + ["blade_vortex_ailment_damage_+%_per_blade_final"]=267, + ["blade_vortex_critical_strike_chance_+%_per_blade"]=592, + ["blade_vortex_damage_+%_per_blade_final"]=266, + ["blade_vortex_damage_+%_with_5_or_fewer_blades"]=593, + ["blade_vortex_hit_rate_+%_per_blade"]=265, + ["blade_vortex_hit_rate_ms"]=594, + ["bladefall_create_X_lingering_blades_per_volley"]=595, + ["bladefall_critical_strike_chance_+%_per_stage"]=596, + ["bladefall_damage_per_stage_+%_final"]=403, + ["bladefall_volley_frequency_ms"]=597, + ["bladefall_volley_gap_distance_+%"]=598, + ["bladefall_volleys_needed_per_vestige_blade"]=599, + ["bladestorm_and_rage_vortex_hinders_and_unnerves_enemies_within"]=600, + ["bladestorm_attack_speed_+%_final_while_in_bloodstorm"]=601, + ["bladestorm_blood_stance_ailment_damage_+%"]=602, + ["bladestorm_maximum_number_of_storms_allowed"]=603, + ["bladestorm_movement_speed_+%_while_in_sandstorm"]=604, + ["bladestorm_sandstorm_movement_speed_+%"]=605, + ["bladestorm_storm_damage_+%_final"]=606, + ["blast_rain_area_of_effect_+%"]=607, + ["blast_rain_damage_+%_vs_distant_enemies"]=608, + ["bleed_on_hit_with_attacks_%"]=609, + ["bleeding_damage_+%"]=611, + ["bleeding_damage_+100%_final_chance"]=610, + ["bleeding_skill_effect_duration"]=97, + ["blind_duration_+%"]=247, + ["blind_effect_+%"]=612, + ["blood_ground_leaving_area_lasts_for_ms"]=613, + ["blood_rage_life_leech_from_elemental_damage_permyriad"]=614, + ["blood_sand_stance_melee_skills_area_damage_+%_final_in_blood_stance"]=413, + ["blood_sand_stance_melee_skills_area_damage_+%_final_in_sand_stance"]=416, + ["blood_sand_stance_melee_skills_area_of_effect_+%_final_in_blood_stance"]=414, + ["blood_sand_stance_melee_skills_area_of_effect_+%_final_in_sand_stance"]=415, + ["blood_sand_triggered_blind_on_attack_chance_%"]=616, + ["blood_sand_triggered_change_bleed_on_attack_chance_%"]=617, + ["blood_scythe_cost_+%_final_per_charge"]=618, + ["blood_scythe_damage_+%_final_per_charge"]=619, + ["blood_surge_refresh_on_total_life_spent"]=620, + ["blood_tendrils_beam_count"]=621, + ["bodyswap_damage_+%_when_not_consuming_corpse"]=622, + ["bone_golem_damage_+%_final_per_non_golem_minion_nearby"]=623, + ["bone_golem_damage_per_non_golem_minion_nearby_maximum_%"]=623, + ["bone_golem_grants_minion_maximum_added_physical_damage"]=624, + ["bone_golem_grants_minion_minimum_added_physical_damage"]=624, + ["boneshatter_chance_to_gain_+1_trauma"]=625, + ["boneshatter_trauma_base_duration_ms"]=1452, + ["brand_cannot_be_recalled"]=626, + ["brand_detonate_faster_activation_%_per_second"]=627, + ["brand_detonate_faster_duration_%_per_second"]=628, + ["brand_recall_spend_%_of_recalled_brands_cost"]=629, + ["branded_enemy_explode_for_25%_life_as_chaos_on_death_chance_%"]=630, + ["buff_effect_duration"]=91, + ["buff_effect_duration_+%_per_removable_endurance_charge"]=192, + ["buff_effect_duration_+%_per_removable_endurance_charge_limited_to_5"]=193, + ["buff_grants_smite_additional_lightning_targets"]=631, + ["burn_damage_+%"]=118, + ["call_of_steel_reload_amount"]=632, + ["call_of_steel_reload_time"]=632, + ["call_to_arms_behaviour"]=633, + ["cannot_cause_bleeding"]=609, + ["cannot_inflict_status_ailments"]=215, + ["cannot_knockback"]=634, + ["cannot_poison_poisoned_enemies"]=635, + ["cast_linked_spells_on_attack_crit_%"]=285, + ["cast_linked_spells_on_melee_kill_%"]=286, + ["cast_on_any_damage_taken_%"]=299, + ["cast_on_attack_use_%"]=292, + ["cast_on_crit_%"]=636, + ["cast_on_damage_taken_%"]=313, + ["cast_on_damage_taken_threshold"]=313, + ["cast_on_death_%"]=301, + ["cast_on_flask_use_%"]=637, + ["cast_on_gain_avians_flight_or_avians_might_%"]=305, + ["cast_on_gain_skill"]=638, + ["cast_on_hit_%"]=306, + ["cast_on_hit_if_cursed_%"]=307, + ["cast_on_lose_cats_stealth"]=308, + ["cast_on_melee_hit_if_cursed_%"]=309, + ["cast_on_skill_use_%"]=293, + ["cast_on_stunned_%"]=303, ["cast_speed_+%_granted_from_skill"]=9, - ["cast_speed_+%_when_on_low_life"]=69, - ["cast_when_hit_%"]=298, - ["cast_while_channelling_time_ms"]=316, - ["chain_grab_number_of_targets"]=629, - ["chain_hook_attaches_to_X_targets"]=630, - ["chain_hook_attachment_rage_to_gain_per_hit"]=631, - ["chain_hook_attachment_range"]=632, - ["chain_hook_max_attached_targets"]=633, - ["chain_hook_range_+%"]=634, - ["chain_strike_cone_radius_+_per_x_rage"]=635, - ["chain_strike_gain_x_rage_if_attack_hits"]=636, - ["chaining_range_+%"]=637, - ["chance_%_when_poison_to_also_poison_another_enemy"]=640, - ["chance_for_extra_damage_roll_%"]=638, - ["chance_for_melee_skeletons_to_summon_as_archer_skeletons_%"]=639, - ["chance_to_bleed_on_hit_%_chance_in_blood_stance"]=641, - ["chance_to_bleed_on_hit_%_vs_maimed"]=642, - ["chance_to_cast_a_stance_change_on_perforate_or_lacerate_%"]=643, - ["chance_to_cast_on_kill_%"]=292, - ["chance_to_cast_on_kill_%_target_self"]=293, - ["chance_to_cast_on_rampage_tier_%"]=300, - ["chance_to_cast_when_your_trap_is_triggered_%"]=312, - ["chance_to_deal_double_damage_%"]=644, - ["chance_to_deal_double_damage_%_per_10_intelligence"]=645, - ["chance_to_deal_double_damage_%_vs_bleeding_enemies"]=646, - ["chance_to_double_stun_duration_%"]=647, - ["chance_to_evade_attacks_+%_final_per_missing_barkskin_stack"]=136, - ["chance_to_fork_extra_projectile_%"]=648, - ["chance_to_fortify_on_melee_hit_+%"]=354, - ["chance_to_freeze_shock_ignite_%"]=382, - ["chance_to_gain_frenzy_charge_on_killing_enemy_affected_by_cold_snap_ground_%"]=649, - ["chance_to_gain_power_charge_on_rare_or_unique_enemy_hit_%"]=650, - ["chance_to_ignore_hexproof_%"]=651, - ["chance_to_inflict_additional_impale_%"]=652, - ["chance_to_inflict_scorch_brittle_sap_%"]=653, - ["chance_to_sap_%_vs_enemies_in_chilling_areas"]=654, - ["chance_to_scorch_%"]=655, - ["chance_to_summon_support_ghost_on_hitting_rare_or_unique_%"]=656, - ["chance_to_summon_support_ghost_on_killing_blow_%"]=657, - ["chance_to_trigger_level_20_blink_arrow_on_attack_from_mirror_arrow_%"]=658, - ["chance_to_trigger_level_20_body_swap_on_detonate_dead_cast_%"]=659, - ["chance_to_trigger_level_20_bone_corpses_on_stun_with_heavy_strike_or_boneshatter_%"]=660, - ["chance_to_trigger_level_20_gravity_sphere_on_cast_with_storm_burst_or_divine_ire_%"]=661, - ["chance_to_trigger_level_20_hydrosphere_while_channeling_winter_orb_%"]=662, - ["chance_to_trigger_level_20_ice_nova_on_final_burst_of_glacial_cascade_%"]=663, - ["chance_to_trigger_level_20_mirror_arrow_on_attack_from_blink_arrow_%"]=664, - ["chance_to_trigger_level_20_tornado_on_attack_from_split_arrow_or_tornado_shot_%"]=665, - ["chance_to_trigger_on_animate_guardian_kill_%"]=666, - ["chance_to_trigger_on_animate_weapon_kill_%"]=667, - ["chance_to_unnerve_on_hit_%"]=668, - ["chaos_damage_resisted_by_highest_resistance"]=669, - ["chaos_damage_resisted_by_lowest_resistance"]=670, - ["chaos_damage_taken_+%"]=393, - ["chaos_golem_grants_additional_physical_damage_reduction_%"]=363, - ["chaos_golem_grants_chaos_resistance_%"]=374, - ["chaos_golem_grants_dot_multiplier_+"]=364, - ["charged_attack_damage_per_stack_+%_final"]=671, - ["charged_blast_spell_damage_+%_final_per_stack"]=314, - ["charged_dash_channelling_damage_at_full_stacks_+%_final"]=672, - ["charged_dash_damage_+%_final_per_stack"]=673, - ["charged_dash_skill_inherent_movement_speed_+%_final"]=674, - ["chill_duration_+%"]=112, - ["chill_effect_+%"]=114, - ["chilled_ground_base_magnitude_override"]=675, - ["chilling_area_movement_velocity_+%"]=676, - ["chronomancer_buff_cooldown_speed_+%"]=677, - ["circle_of_power_critical_strike_chance_+%_per_stage"]=678, - ["circle_of_power_enemy_damage_+%_final_at_max_stages"]=679, - ["circle_of_power_mana_spend_per_upgrade"]=680, - ["circle_of_power_max_added_lightning_per_stage"]=682, - ["circle_of_power_max_stages"]=681, - ["circle_of_power_min_added_lightning_per_stage"]=682, - ["cleave_+1_base_radius_per_nearby_enemy_up_to_10"]=685, - ["cleave_area_of_effect_+%_final_from_executioner"]=683, - ["cleave_damage_against_enemies_on_low_life_+%_final_from_executioner"]=684, - ["cold_ailment_duration_+%"]=686, - ["cold_ailment_effect_+%"]=687, - ["cold_damage_+%"]=343, - ["cold_projectile_mine_enemy_critical_strike_chance_+%_against_self"]=1549, - ["combat_rush_effect_+%"]=688, - ["consecrated_ground_area_+%"]=692, - ["consecrated_ground_effect_+%"]=689, - ["consecrated_ground_enemy_damage_taken_+%"]=690, - ["consecrated_ground_immune_to_curses"]=691, - ["contagion_display_spread_on_death"]=693, - ["contagion_spread_on_hit_affected_enemy_%"]=693, - ["conversation_trap_converted_enemy_damage_+%"]=694, - ["conversion_trap_converted_enemies_chance_to_taunt_on_hit_%"]=695, - ["corpse_consumption_life_to_gain"]=259, - ["corpse_consumption_mana_to_gain"]=260, - ["corpse_erruption_maximum_number_of_geyers"]=696, - ["corpse_explosion_monster_life_%"]=33, - ["corpse_explosion_monster_life_%_chaos"]=34, - ["corpse_explosion_monster_life_%_lightning"]=35, - ["corpse_explosion_monster_life_permillage_fire"]=36, - ["corpse_warp_area_of_effect_+%_final_when_consuming_corpse"]=698, - ["corpse_warp_area_of_effect_+%_final_when_consuming_minion"]=697, - ["corrosive_shroud_%_of_stored_poison_damage_to_deal_per_second"]=416, - ["corrosive_shroud_gains_%_of_damage_from_inflicted_poisons"]=414, - ["corrosive_shroud_poison_damage_+%_final_while_accumulating_poison"]=413, - ["corrosive_shroud_poison_dot_multiplier_+_while_aura_active"]=417, - ["corrupting_fever_apply_additional_corrupted_blood_%"]=699, - ["cover_in_ash_on_hit_%"]=700, - ["create_herald_of_thunder_storm_on_shocking_enemy"]=701, - ["created_slipstream_action_speed_+%"]=702, - ["cremation_chance_to_explode_nearby_corpse_when_firing_projectiles"]=703, - ["critical_ailment_dot_multiplier_+"]=705, - ["critical_poison_dot_multiplier_+"]=706, - ["critical_strike_chance_+%"]=129, - ["critical_strike_chance_+%_final_per_power_charge_from_power_siphon"]=707, - ["critical_strike_chance_+%_per_power_charge"]=708, - ["critical_strike_chance_+%_per_righteous_charge"]=709, - ["critical_strike_chance_+%_vs_bleeding_enemies"]=449, - ["critical_strike_chance_+%_vs_blinded_enemies"]=710, - ["critical_strike_chance_+%_vs_shocked_enemies"]=704, - ["critical_strike_multiplier_+_per_blade"]=711, - ["critical_strike_multiplier_+_per_power_charge"]=712, - ["critical_strike_multiplier_+_while_affected_by_elusive"]=138, - ["critical_strikes_that_inflict_bleeding_also_rupture"]=1361, - ["cruelty_effect_+%"]=713, - ["crush_for_2_seconds_on_hit_%_chance"]=714, - ["curse_effect_+%"]=317, - ["curse_effect_+%_final_vs_players"]=319, - ["curse_effect_+%_vs_players"]=318, - ["curse_effect_duration"]=89, - ["curse_pacifies_after_60%"]=715, - ["curse_pillar_curse_effect_+%_final"]=320, - ["cyclone_area_of_effect_+%_per_additional_melee_range"]=81, - ["cyclone_attack_speed_+%_final_per_stage"]=716, - ["cyclone_first_hit_damage_+%_final"]=402, - ["cyclone_gain_stage_every_x_ms_while_channelling"]=717, - ["cyclone_max_number_of_stages"]=718, - ["cyclone_melee_weapon_range_+_per_stage"]=719, - ["cyclone_movement_speed_+%_final"]=266, - ["cyclone_movement_speed_+%_final_per_stage"]=720, - ["cyclone_stage_decay_time_ms"]=721, - ["damage_+%"]=375, - ["damage_+%_final_vs_stunned_enemies"]=722, - ["damage_+%_if_lost_endurance_charge_in_past_8_seconds"]=724, - ["damage_+%_if_you_have_consumed_a_corpse_recently"]=723, - ["damage_+%_per_200_mana_spent_recently"]=725, - ["damage_+%_per_chain"]=726, - ["damage_+%_vs_burning_enemies"]=335, - ["damage_+%_vs_chilled_enemies"]=727, - ["damage_+%_vs_enemies_on_full_life"]=728, - ["damage_+%_vs_enemies_per_freeze_shock_ignite"]=729, - ["damage_+%_while_es_leeching"]=730, - ["damage_+%_while_life_leeching"]=731, - ["damage_+%_while_mana_leeching"]=732, - ["damage_cannot_be_reflected"]=338, - ["damage_infusion_%"]=56, - ["damage_over_time_+%"]=396, - ["damage_per_blade_vortex_blade_description_mode"]=264, - ["damage_removed_from_radiant_sentinel_before_life_or_es_%"]=733, - ["damage_vs_cursed_enemies_per_enemy_curse_+%"]=735, - ["damage_vs_enemies_on_low_life_+%"]=736, - ["damaging_ailments_deal_damage_+%_faster"]=737, - ["dark_pact_chance_to_gain_an_additional_ruin_%"]=738, - ["dark_pact_chaos_damage_added_from_sacrifice_+%"]=739, - ["dark_pact_sacrifice_%_life_from_max_ruin"]=739, - ["dark_ritual_damage_+%_final_per_curse_applied"]=740, - ["dark_ritual_skill_effect_duration_+%_per_curse_applied"]=741, - ["dash_grants_phasing_after_use_ms"]=742, - ["deal_no_elemental_damage"]=743, - ["deal_no_non_elemental_damage"]=744, - ["death_wish_attack_speed_+%"]=745, - ["death_wish_cast_speed_+%"]=746, - ["death_wish_hit_and_ailment_damage_+%_final_per_stage"]=747, - ["death_wish_max_stages"]=748, - ["death_wish_movement_speed_+%"]=749, - ["debilitate_enemies_for_1_second_on_hit_%_chance"]=750, - ["debuff_time_passed_+%"]=751, - ["degen_effect_+%"]=189, - ["desecrate_chance_for_additional_corpse_%"]=752, - ["desecrate_chance_for_special_corpse_%"]=753, - ["desecrate_corpse_level"]=326, - ["desecrate_maximum_number_of_corpses"]=754, - ["desecrate_number_of_corpses_to_create"]=325, - ["destroy_corpses_on_kill_%_chance"]=755, - ["detonate_dead_%_chance_to_detonate_additional_corpse"]=757, - ["detonate_dead_damage_+%_if_corpse_ignited"]=756, - ["detonate_mines_is_triggered_while_moving"]=758, - ["detonate_mines_recover_permyriad_of_life_per_mine_detonated"]=759, - ["disable_mine_detonation_cascade"]=760, - ["discharge_chance_not_to_consume_charges_%"]=761, - ["discharge_damage_+%_if_3_charge_types_removed"]=762, - ["disintegrate_base_radius_+_per_intensify"]=763, - ["disintegrate_damage_+%_final_per_intensity"]=764, - ["disintegrate_secondary_beam_angle_+%"]=765, - ["display_active_skill_forced_stance"]=1204, - ["display_additional_projectile_per_2_mines_in_detonation_sequence"]=766, - ["display_additional_projectile_per_4_mines_in_detonation_sequence"]=767, - ["display_additional_projectile_per_mine_in_detonation_sequence"]=768, - ["display_battlemage_cry_exerted_attacks_trigger_supported_spell"]=1525, - ["display_brand_deonate_tag_conversion"]=769, - ["display_disable_melee_weapons"]=53, - ["display_fires_x_times"]=57, - ["display_flask_throw_allowed_flask_types"]=876, - ["display_herald_of_thunder_storm"]=701, - ["display_hide_projectile_chain_num"]=1479, - ["display_linked_curse_effect_+%"]=770, - ["display_linked_curse_effect_+%_final"]=771, - ["display_manabond_length"]=1018, - ["display_max_ailment_bearer_charges"]=772, - ["display_max_blight_stacks"]=773, - ["display_max_charged_attack_stats"]=774, - ["display_max_fire_beam_stacks"]=775, - ["display_max_upgraded_sentinels_of_absolution"]=776, - ["display_max_upgraded_sentinels_of_dominance"]=777, - ["display_mine_deontation_mechanics_detonation_speed_+%_final_per_sequence_mine"]=778, - ["display_mirage_warriors_no_spirit_strikes"]=779, - ["display_modifiers_to_melee_attack_range_apply_to_skill_radius"]=780, - ["display_projectiles_chain_when_impacting_ground"]=781, - ["display_removes_and_grants_elusive_when_used"]=783, + ["cast_speed_+%_when_on_low_life"]=70, + ["cast_when_hit_%"]=300, + ["cast_while_channelling_time_ms"]=318, + ["chain_grab_number_of_targets"]=639, + ["chain_hook_attaches_to_X_targets"]=640, + ["chain_hook_attachment_rage_to_gain_per_hit"]=641, + ["chain_hook_attachment_range"]=642, + ["chain_hook_max_attached_targets"]=643, + ["chain_hook_range_+%"]=644, + ["chain_strike_cone_radius_+_per_x_rage"]=645, + ["chain_strike_gain_x_rage_if_attack_hits"]=646, + ["chaining_range_+%"]=647, + ["chance_%_when_poison_to_also_poison_another_enemy"]=650, + ["chance_for_extra_damage_roll_%"]=648, + ["chance_for_melee_skeletons_to_summon_as_archer_skeletons_%"]=649, + ["chance_to_bleed_on_hit_%_chance_in_blood_stance"]=651, + ["chance_to_bleed_on_hit_%_vs_maimed"]=652, + ["chance_to_cast_a_stance_change_on_perforate_or_lacerate_%"]=653, + ["chance_to_cast_on_kill_%"]=294, + ["chance_to_cast_on_kill_%_target_self"]=295, + ["chance_to_cast_on_rampage_tier_%"]=302, + ["chance_to_cast_when_your_trap_is_triggered_%"]=314, + ["chance_to_deal_double_damage_%"]=654, + ["chance_to_deal_double_damage_%_per_10_intelligence"]=655, + ["chance_to_deal_double_damage_%_vs_bleeding_enemies"]=656, + ["chance_to_double_stun_duration_%"]=657, + ["chance_to_evade_attacks_+%_final_per_missing_barkskin_stack"]=137, + ["chance_to_fork_extra_projectile_%"]=658, + ["chance_to_fortify_on_melee_hit_+%"]=360, + ["chance_to_freeze_shock_ignite_%"]=388, + ["chance_to_gain_frenzy_charge_on_killing_enemy_affected_by_cold_snap_ground_%"]=659, + ["chance_to_gain_power_charge_on_rare_or_unique_enemy_hit_%"]=660, + ["chance_to_ignore_hexproof_%"]=661, + ["chance_to_inflict_additional_impale_%"]=662, + ["chance_to_inflict_scorch_brittle_sap_%"]=663, + ["chance_to_sap_%_vs_enemies_in_chilling_areas"]=664, + ["chance_to_scorch_%"]=665, + ["chance_to_summon_support_ghost_on_hitting_rare_or_unique_%"]=666, + ["chance_to_summon_support_ghost_on_killing_blow_%"]=667, + ["chance_to_trigger_level_20_blink_arrow_on_attack_from_mirror_arrow_%"]=668, + ["chance_to_trigger_level_20_body_swap_on_detonate_dead_cast_%"]=669, + ["chance_to_trigger_level_20_bone_corpses_on_stun_with_heavy_strike_or_boneshatter_%"]=670, + ["chance_to_trigger_level_20_gravity_sphere_on_cast_with_storm_burst_or_divine_ire_%"]=671, + ["chance_to_trigger_level_20_hydrosphere_while_channeling_winter_orb_%"]=672, + ["chance_to_trigger_level_20_ice_nova_on_final_burst_of_glacial_cascade_%"]=673, + ["chance_to_trigger_level_20_mirror_arrow_on_attack_from_blink_arrow_%"]=674, + ["chance_to_trigger_level_20_tornado_on_attack_from_split_arrow_or_tornado_shot_%"]=675, + ["chance_to_trigger_on_animate_guardian_kill_%"]=676, + ["chance_to_trigger_on_animate_weapon_kill_%"]=677, + ["chance_to_unnerve_on_hit_%"]=678, + ["chaos_damage_resisted_by_highest_resistance"]=679, + ["chaos_damage_resisted_by_lowest_resistance"]=680, + ["chaos_damage_taken_+%"]=399, + ["chaos_golem_grants_additional_physical_damage_reduction_%"]=369, + ["chaos_golem_grants_chaos_resistance_%"]=380, + ["chaos_golem_grants_dot_multiplier_+"]=370, + ["charged_attack_damage_per_stack_+%_final"]=681, + ["charged_blast_spell_damage_+%_final_per_stack"]=316, + ["charged_dash_channelling_damage_at_full_stacks_+%_final"]=682, + ["charged_dash_damage_+%_final_per_stack"]=683, + ["charged_dash_skill_inherent_movement_speed_+%_final"]=684, + ["chill_duration_+%"]=113, + ["chill_effect_+%"]=115, + ["chilled_ground_base_magnitude_override"]=685, + ["chilling_area_movement_velocity_+%"]=686, + ["chronomancer_buff_cooldown_speed_+%"]=687, + ["circle_of_power_critical_strike_chance_+%_per_stage"]=688, + ["circle_of_power_enemy_damage_+%_final_at_max_stages"]=689, + ["circle_of_power_mana_spend_per_upgrade"]=690, + ["circle_of_power_max_added_lightning_per_stage"]=692, + ["circle_of_power_max_stages"]=691, + ["circle_of_power_min_added_lightning_per_stage"]=692, + ["cleave_+1_base_radius_per_nearby_enemy_up_to_10"]=695, + ["cleave_area_of_effect_+%_final_from_executioner"]=693, + ["cleave_damage_against_enemies_on_low_life_+%_final_from_executioner"]=694, + ["cold_ailment_duration_+%"]=696, + ["cold_ailment_effect_+%"]=697, + ["cold_damage_+%"]=349, + ["cold_projectile_mine_enemy_critical_strike_chance_+%_against_self"]=1596, + ["combat_rush_effect_+%"]=698, + ["consecrated_ground_area_+%"]=702, + ["consecrated_ground_effect_+%"]=699, + ["consecrated_ground_enemy_damage_taken_+%"]=700, + ["consecrated_ground_immune_to_curses"]=701, + ["contagion_display_spread_on_death"]=703, + ["contagion_spread_on_hit_affected_enemy_%"]=703, + ["conversation_trap_converted_enemy_damage_+%"]=704, + ["conversion_trap_converted_enemies_chance_to_taunt_on_hit_%"]=705, + ["corpse_consumption_life_to_gain"]=261, + ["corpse_consumption_mana_to_gain"]=262, + ["corpse_erruption_maximum_number_of_geyers"]=706, + ["corpse_explosion_monster_life_%"]=34, + ["corpse_explosion_monster_life_%_chaos"]=35, + ["corpse_explosion_monster_life_%_lightning"]=36, + ["corpse_explosion_monster_life_permillage_fire"]=37, + ["corpse_warp_area_of_effect_+%_final_when_consuming_corpse"]=708, + ["corpse_warp_area_of_effect_+%_final_when_consuming_minion"]=707, + ["corrosive_shroud_%_of_stored_poison_damage_to_deal_per_second"]=422, + ["corrosive_shroud_gains_%_of_damage_from_inflicted_poisons"]=420, + ["corrosive_shroud_poison_damage_+%_final_while_accumulating_poison"]=419, + ["corrosive_shroud_poison_dot_multiplier_+_while_aura_active"]=423, + ["corrupting_fever_apply_additional_corrupted_blood_%"]=709, + ["cover_in_ash_on_hit_%"]=710, + ["create_herald_of_thunder_storm_on_shocking_enemy"]=711, + ["created_slipstream_action_speed_+%"]=712, + ["cremation_chance_to_explode_nearby_corpse_when_firing_projectiles"]=713, + ["critical_ailment_dot_multiplier_+"]=715, + ["critical_poison_dot_multiplier_+"]=716, + ["critical_strike_chance_+%"]=130, + ["critical_strike_chance_+%_final_per_power_charge_from_power_siphon"]=717, + ["critical_strike_chance_+%_per_power_charge"]=718, + ["critical_strike_chance_+%_per_righteous_charge"]=719, + ["critical_strike_chance_+%_vs_bleeding_enemies"]=455, + ["critical_strike_chance_+%_vs_blinded_enemies"]=720, + ["critical_strike_chance_+%_vs_shocked_enemies"]=714, + ["critical_strike_multiplier_+_per_blade"]=721, + ["critical_strike_multiplier_+_per_power_charge"]=722, + ["critical_strike_multiplier_+_while_affected_by_elusive"]=139, + ["critical_strikes_that_inflict_bleeding_also_rupture"]=1397, + ["cruelty_effect_+%"]=723, + ["crush_for_2_seconds_on_hit_%_chance"]=724, + ["curse_effect_+%"]=319, + ["curse_effect_+%_final_vs_players"]=321, + ["curse_effect_+%_vs_players"]=320, + ["curse_effect_duration"]=90, + ["curse_pacifies_after_60%"]=725, + ["curse_pillar_curse_effect_+%_final"]=322, + ["cyclone_area_of_effect_+%_per_additional_melee_range"]=82, + ["cyclone_attack_speed_+%_final_per_stage"]=726, + ["cyclone_first_hit_damage_+%_final"]=408, + ["cyclone_gain_stage_every_x_ms_while_channelling"]=727, + ["cyclone_max_number_of_stages"]=728, + ["cyclone_melee_weapon_range_+_per_stage"]=729, + ["cyclone_movement_speed_+%_final"]=268, + ["cyclone_movement_speed_+%_final_per_stage"]=730, + ["cyclone_stage_decay_time_ms"]=731, + ["damage_+%"]=381, + ["damage_+%_if_lost_endurance_charge_in_past_8_seconds"]=733, + ["damage_+%_if_you_have_consumed_a_corpse_recently"]=732, + ["damage_+%_per_200_mana_spent_recently"]=734, + ["damage_+%_per_chain"]=735, + ["damage_+%_vs_burning_enemies"]=337, + ["damage_+%_vs_chilled_enemies"]=736, + ["damage_+%_vs_enemies_on_full_life"]=737, + ["damage_+%_vs_enemies_per_freeze_shock_ignite"]=738, + ["damage_+%_while_es_leeching"]=739, + ["damage_+%_while_life_leeching"]=740, + ["damage_+%_while_mana_leeching"]=741, + ["damage_cannot_be_reflected"]=340, + ["damage_cannot_break_kinetic_shells"]=30, + ["damage_infusion_%"]=57, + ["damage_over_time_+%"]=402, + ["damage_per_blade_vortex_blade_description_mode"]=266, + ["damage_removed_from_radiant_sentinel_before_life_or_es_%"]=742, + ["damage_vs_cursed_enemies_per_enemy_curse_+%"]=744, + ["damage_vs_enemies_on_low_life_+%"]=745, + ["damaging_ailments_deal_damage_+%_faster"]=746, + ["dark_pact_chance_to_gain_an_additional_ruin_%"]=747, + ["dark_pact_chaos_damage_added_from_sacrifice_+%"]=748, + ["dark_pact_sacrifice_%_life_from_max_ruin"]=748, + ["dark_ritual_damage_+%_final_per_curse_applied"]=749, + ["dark_ritual_skill_effect_duration_+%_per_curse_applied"]=750, + ["dash_grants_phasing_after_use_ms"]=751, + ["deal_no_elemental_damage"]=752, + ["deal_no_non_elemental_damage"]=753, + ["death_wish_attack_speed_+%"]=754, + ["death_wish_cast_speed_+%"]=755, + ["death_wish_hit_and_ailment_damage_+%_final_per_stage"]=756, + ["death_wish_max_stages"]=757, + ["death_wish_movement_speed_+%"]=758, + ["debilitate_enemies_for_1_second_on_hit_%_chance"]=759, + ["debuff_time_passed_+%"]=760, + ["degen_effect_+%"]=190, + ["desecrate_chance_for_additional_corpse_%"]=761, + ["desecrate_chance_for_special_corpse_%"]=762, + ["desecrate_corpse_level"]=328, + ["desecrate_maximum_number_of_corpses"]=763, + ["desecrate_number_of_corpses_to_create"]=327, + ["destroy_corpses_on_kill_%_chance"]=764, + ["detonate_dead_%_chance_to_detonate_additional_corpse"]=766, + ["detonate_dead_damage_+%_if_corpse_ignited"]=765, + ["detonate_mines_is_triggered_while_moving"]=767, + ["detonate_mines_recover_permyriad_of_life_per_mine_detonated"]=768, + ["disable_mine_detonation_cascade"]=769, + ["discharge_chance_not_to_consume_charges_%"]=770, + ["discharge_damage_+%_if_3_charge_types_removed"]=771, + ["disintegrate_base_radius_+_per_intensify"]=772, + ["disintegrate_damage_+%_final_per_intensity"]=773, + ["disintegrate_secondary_beam_angle_+%"]=774, + ["display_active_skill_forced_stance"]=1236, + ["display_additional_projectile_per_2_mines_in_detonation_sequence"]=775, + ["display_additional_projectile_per_3_mines_in_detonation_sequence"]=776, + ["display_additional_projectile_per_mine_in_detonation_sequence"]=777, + ["display_battlemage_cry_exerted_attacks_trigger_supported_spell"]=1567, + ["display_brand_deonate_tag_conversion"]=778, + ["display_disable_melee_weapons"]=54, + ["display_fires_x_times"]=58, + ["display_flask_throw_allowed_flask_types"]=886, + ["display_herald_of_thunder_storm"]=711, + ["display_hide_projectile_chain_num"]=1521, + ["display_linked_curse_effect_+%"]=779, + ["display_linked_curse_effect_+%_final"]=780, + ["display_manabond_length"]=1045, + ["display_max_ailment_bearer_charges"]=781, + ["display_max_blight_stacks"]=782, + ["display_max_charged_attack_stats"]=783, + ["display_max_fire_beam_stacks"]=784, + ["display_max_upgraded_sentinels_of_absolution"]=785, + ["display_max_upgraded_sentinels_of_dominance"]=786, + ["display_mine_deontation_mechanics_detonation_speed_+%_final_per_sequence_mine"]=787, + ["display_mirage_warriors_no_spirit_strikes"]=788, + ["display_modifiers_to_melee_attack_range_apply_to_skill_radius"]=789, + ["display_projectiles_chain_when_impacting_ground"]=790, + ["display_removes_and_grants_elusive_when_used"]=792, ["display_retaliation_skill_override_to_six_hits"]=2, ["display_retaliation_use_requirement_variation"]=2, - ["display_shaper_memory_uses_skill_once"]=784, - ["display_sigil_of_power_stage_gain_delay"]=785, - ["display_skill_fixed_duration_buff"]=786, - ["display_storm_burst_jump_time_ms"]=787, - ["display_this_skill_cooldown_does_not_recover_during_buff"]=788, - ["display_touch_of_fire"]=789, - ["display_trigger_link"]=790, - ["display_triggerbots_do_their_job"]=791, - ["display_unhinge_grant_insane"]=792, - ["display_vaal_breach_no_drops_xp"]=793, - ["display_vaal_molten_shell_alternate_description"]=1076, + ["display_shaper_memory_uses_skill_once"]=793, + ["display_sigil_of_power_stage_gain_delay"]=794, + ["display_skill_fixed_duration_buff"]=795, + ["display_storm_burst_jump_time_ms"]=796, + ["display_this_skill_cooldown_does_not_recover_during_buff"]=797, + ["display_touch_of_fire"]=798, + ["display_trigger_link"]=799, + ["display_triggerbots_do_their_job"]=800, + ["display_unhinge_grant_insane"]=801, + ["display_vaal_breach_no_drops_xp"]=802, + ["display_vaal_molten_shell_alternate_description"]=1104, + ["display_wall_of_force_restrictions"]=803, ["display_what_freezing_pulse_does"]=7, - ["divine_cry_additional_base_critical_strike_chance_per_5_power_up_to_cap"]=1511, - ["divine_retribution_blasts_per_wave"]=794, - ["divine_retribution_num_waves"]=795, - ["divine_tempest_ailment_damage_+%_final_per_stage"]=798, - ["divine_tempest_beam_width_+%"]=796, - ["divine_tempest_damage_+%_final_while_channelling"]=797, - ["divine_tempest_hit_damage_+%_final_per_stage"]=798, - ["divine_tempest_no_beam"]=798, - ["divine_tempest_stage_on_hitting_normal_magic_%_chance"]=799, - ["divine_tempest_stage_on_hitting_rare_unique"]=800, - ["double_and_dual_strike_soul_eater_for_20_seconds_on_rare_or_unique_kill_chance_%"]=801, - ["double_strike_attack_speed_+%_final_per_stage"]=802, - ["double_strike_max_stages"]=803, - ["doubles_have_movement_speed_+%"]=142, - ["dual_strike_critical_strike_chance_+%_final_against_enemies_on_full_life"]=804, - ["dual_strike_damage_+%_final_against_enemies_on_full_life"]=805, - ["dual_strike_off_hand_weapon_determines_attack_time"]=806, - ["earthquake_aftershock_ailment_damage_+%_final_from_skill_effect_duration"]=51, - ["earthquake_aftershock_area_of_effect_+%_final_from_skill_effect_duration"]=54, - ["earthquake_aftershock_hit_damage_+%_final_from_skill_effect_duration"]=48, - ["earthquake_aftershock_maximum_added_physical_damage"]=807, - ["earthquake_aftershock_minimum_added_physical_damage"]=807, - ["earthquake_initial_slam_area_of_effect_+%"]=808, - ["earthshatter_spike_area_of_effect_+%_final"]=809, - ["elemental_damage_+%_final_per_righteous_charge"]=811, - ["elemental_damage_cannot_be_reflected"]=810, - ["elemental_hit_area_of_effect_+100%_final_vs_enemy_with_associated_ailment"]=812, - ["elemental_hit_damage_+%_final_per_enemy_elemental_ailment"]=813, - ["elemental_hit_no_damage_of_unchosen_elemental_type"]=346, - ["elemental_penetration_%_from_resonance"]=814, - ["elemental_status_effect_aura_radius"]=212, - ["elemental_strike_physical_damage_%_to_convert"]=384, - ["elusive_effect_+%"]=815, - ["embrace_madness_amount_of_cooldown_to_gain_ms"]=816, - ["empowered_attack_damage_+%"]=817, - ["enchantment_of_war_trigger_on_kill_%"]=294, - ["endurance_charge_granted_per_X_monster_power_during_endurance_warcry"]=1509, - ["endurance_charge_slam_damage_+%_final_per_endurance_charge_consumed"]=818, - ["enduring_cry_grants_x_additional_endurance_charges"]=819, - ["enduring_cry_life_regeneration_rate_per_minute_%_per_5_power_up_to_cap"]=1512, - ["enemies_chilled_by_bane_and_contagion"]=820, - ["enemies_covered_in_frost_as_unfrozen"]=821, - ["enemies_taunted_by_your_warcies_are_intimidated"]=822, - ["enemies_you_hinder_have_life_regeneration_rate_+%"]=823, - ["enemies_you_shock_movement_speed_+%"]=824, - ["enemies_you_shock_take_%_increased_physical_damage"]=825, - ["enemy_aggro_radius_+%"]=389, - ["enemy_phys_reduction_%_penalty_vs_hit"]=826, - ["energy_release_damage_+%_final_per_5%_increased_damage_taken_from_shock_on_target"]=827, - ["energy_shield_delay_-%"]=187, - ["energy_shield_leech_from_any_damage_permyriad"]=74, - ["energy_shield_recharge_rate_+%"]=188, - ["energy_shield_regeneration_rate_+%"]=828, - ["ensnaring_arrow_enemy_spell_damage_taken_+%"]=829, - ["essence_drain_lose_life_from_damage_permyriad"]=830, - ["ethereal_knives_projectiles_needed_per_vestige_blade"]=831, - ["evasion_and_physical_damage_reduction_rating_+%"]=832, - ["expanding_fire_cone_angle_+%_per_stage"]=833, - ["expanding_fire_cone_final_wave_always_ignite"]=834, - ["expanding_fire_cone_maximum_number_of_stages"]=835, - ["expanding_fire_cone_radius_+_per_stage"]=836, - ["expanding_fire_cone_radius_limit"]=836, - ["expanding_fire_cone_release_hit_damage_+%_final"]=837, - ["explosive_arrow_ailment_damage_+%_final_per_stack"]=244, - ["explosive_arrow_explosion_base_damage_+permyriad"]=179, - ["explosive_arrow_explosion_maximum_added_fire_damage"]=181, - ["explosive_arrow_explosion_minimum_added_fire_damage"]=181, - ["explosive_arrow_hit_damage_+%_final_per_stack"]=242, - ["explosive_arrow_maximum_bonus_explosion_radius"]=184, - ["explosive_arrow_stack_limit"]=838, - ["extra_target_targeting_distance_+%"]=839, - ["eye_of_winter_base_explosion_shards"]=59, - ["eye_of_winter_count_shards_while_flying_instead"]=59, - ["eye_of_winter_display_number_of_explosion_shards"]=59, - ["eye_of_winter_spiral_angle_+%"]=840, - ["eye_of_winter_spiral_fire_frequency_+%"]=841, - ["faster_bleed_%"]=842, - ["faster_burn_%"]=843, - ["feast_of_flesh_gain_X_energy_shield_per_corpse_consumed"]=844, - ["feast_of_flesh_gain_X_life_per_corpse_consumed"]=844, - ["feast_of_flesh_gain_X_mana_per_corpse_consumed"]=844, - ["fire_beam_additional_stack_damage_+%_final"]=845, - ["fire_beam_enemy_fire_resistance_%_maximum"]=846, - ["fire_beam_enemy_fire_resistance_%_per_stack"]=847, - ["fire_beam_length_+%"]=848, - ["fire_damage_+%"]=342, - ["fire_damage_taken_+"]=270, - ["fire_dot_multiplier_+"]=849, - ["fire_golem_grants_area_of_effect_+%"]=360, - ["fire_golem_grants_damage_+%"]=359, - ["fire_nova_damage_+%_per_repeat_final"]=376, - ["fire_shield_damage_threshold"]=196, - ["fire_storm_fireball_delay_ms"]=185, - ["fireball_base_radius_up_to_+_at_longer_ranges"]=850, - ["fires_1_projectile_if_no_steel_ammo"]=851, - ["firestorm_and_bladefall_chance_to_replay_when_finished_%"]=852, - ["firestorm_final_impact_damage_+%_final"]=853, - ["firestorm_initial_impact_area_of_effect_+%_final"]=854, - ["firestorm_initial_impact_damage_+%_final"]=855, - ["firestorm_max_number_of_storms"]=856, - ["firewall_applies_%_fire_exposure"]=857, - ["fixed_skill_effect_duration"]=858, - ["flame_dash_burning_damage_+%_final"]=859, - ["flame_dash_repeats_target_previous_location"]=860, - ["flame_surge_burning_ground_creation_cooldown_ms"]=861, - ["flame_surge_burning_ground_on_ignite_damage_%"]=862, - ["flame_surge_ignite_damage_as_burning_ground_damage_%"]=863, - ["flame_whip_damage_+%_final_vs_burning_enemies"]=334, - ["flameblast_ailment_damage_+%_final_per_10_life_reserved"]=864, - ["flameblast_ailment_damage_+%_final_per_stack"]=315, - ["flameblast_area_+%_final_per_stage"]=865, - ["flameblast_base_radius_override"]=866, - ["flameblast_damage_+%_final_per_10_life_reserved"]=867, - ["flameblast_hundred_times_radius_+_per_1%_life_reserved"]=868, - ["flameblast_ignite_chance_+%_per_stage"]=869, - ["flameblast_maximum_stages"]=870, - ["flameblast_starts_with_X_additional_stages"]=871, - ["flamethrower_damage_+%_per_stage_final"]=261, - ["flamethrower_tower_trap_display_cast_speed_affects_rotation"]=872, - ["flamethrower_tower_trap_number_of_flamethrowers"]=873, - ["flamethrower_trap_damage_+%_final_vs_burning_enemies"]=874, - ["flask_charges_used_+%"]=875, - ["flask_throw_added_chaos_damage_%_of_flask_life_to_recover"]=878, - ["flask_throw_base_charges_used"]=876, - ["flask_throw_charges_used_per_projectile"]=876, - ["flask_throw_display_also_sulphur_flask"]=876, - ["flask_throw_maximum_cold_damage_if_used_sapphire_flask"]=879, - ["flask_throw_maximum_lightning_damage_if_used_topaz_flask"]=880, - ["flask_throw_minimum_cold_damage_if_used_sapphire_flask"]=879, - ["flask_throw_minimum_lightning_damage_if_used_topaz_flask"]=880, - ["flask_throw_ruby_flask_critical_strike_multiplier_+"]=881, - ["flask_throw_ruby_flask_ignite_dot_multiplier_+"]=882, - ["flask_throw_sulphur_flask_explode_on_kill_chance"]=877, - ["flask_throw_total_charges_used"]=876, - ["flesh_stone_blood_stance_enemies_physical_damage_taken_when_hit_+%_final_from_player_distance"]=883, - ["flesh_stone_sand_stance_damage_taken_+%_final_from_distance_from_enemy_hits"]=884, - ["flicker_strike_buff_movement_speed_+%"]=885, - ["flicker_strike_teleport_range_+%"]=886, - ["fortify_duration_+%"]=355, - ["fortify_on_hit"]=887, - ["fortify_on_hit_close_range"]=888, - ["freeze_applies_cold_resistance_+"]=889, - ["freeze_as_though_dealt_damage_+%"]=232, - ["freeze_duration_+%"]=111, - ["freeze_mine_cold_resistance_+_while_frozen"]=282, - ["freezing_pulse_damage_+%_final_at_long_range"]=890, - ["frenzy_consume_charges_to_onslaught_for_ms_per_charge"]=891, - ["frenzy_skill_attack_damage_+%_final_per_frenzy_charge"]=892, - ["frenzy_skill_attack_speed_+%_final_per_frenzy_charge"]=893, - ["from_quality_brand_activation_rate_+%_final_if_75%_attached_duration_expired"]=894, - ["frost_bolt_nova_number_of_frost_bolts_to_detonate"]=895, - ["frost_fury_added_duration_per_stage_ms"]=896, - ["frost_fury_base_fire_interval_ms"]=897, - ["frost_fury_duration_+%_per_stage"]=898, - ["frost_fury_fire_speed_+%_final_while_channelling"]=899, - ["frost_fury_fire_speed_+%_per_stage"]=900, - ["frost_fury_max_number_of_stages"]=901, - ["frost_globe_absorb_damage_%_enemy_in_bubble"]=902, - ["frost_globe_absorb_damage_%_enemy_outside_bubble"]=903, - ["frost_globe_additional_spell_base_critical_strike_chance_per_stage"]=904, - ["frost_globe_health_per_stage"]=905, - ["frost_globe_life_regeneration_rate_per_minute_%"]=906, - ["frost_globe_max_stages"]=907, - ["frost_globe_stage_gain_interval_ms"]=908, - ["frostblink_damage_+%_final_per_5%_chill_effect_on_target"]=909, - ["frostbolt_projectile_acceleration"]=910, - ["frostbolt_projectile_speed_+%_final"]=911, - ["frozen_legion_%_chance_to_summon_additional_statue"]=912, - ["fuse_arrow_explosion_radius_+_per_fuse_arrow_orb"]=184, - ["gain_1_rage_on_use_%_chance"]=913, - ["gain_elusive_on_crit_%_chance"]=914, - ["gain_endurance_charge_on_melee_stun"]=281, - ["gain_endurance_charge_on_melee_stun_%"]=281, - ["gain_fortify_on_melee_hit_ms"]=915, - ["gain_frenzy_charge_on_hitting_rare_or_unique_enemy_%"]=916, - ["gain_frenzy_charge_on_hitting_unique_enemy_%"]=917, - ["gain_frenzy_charge_on_killing_blow_vs_enemies_with_5+_poisons_%"]=918, - ["gain_power_charge_on_kill_with_hit_%"]=919, - ["gain_rage_on_hit"]=920, - ["gain_rage_on_hit_%_chance"]=921, - ["gain_resonance_of_majority_damage_on_hit_for_2_seconds"]=922, - ["gain_righteous_charge_on_mana_spent_%"]=923, - ["gain_x_rage_on_attack_hit"]=924, - ["galvanic_field_beam_delay_ms"]=925, - ["galvanic_field_damage_+%_final_per_5%_increased_damage_taken_from_shock"]=926, - ["galvanic_field_maximum_number_of_spheres"]=1026, - ["galvanic_field_radius_+_per_10%_increased_damage_taken_from_shock"]=927, - ["galvanic_field_retargeting_delay_ms"]=562, - ["glacial_cascade_final_spike_damage_+%_final"]=928, - ["glacial_cascade_travel_speed_+%"]=929, - ["glacial_hammer_third_hit_always_crits"]=233, - ["glacial_hammer_third_hit_freeze_as_though_dealt_damage_+%"]=234, - ["global_always_hit"]=331, - ["global_bleed_on_hit"]=599, - ["global_chance_to_knockback_%"]=75, - ["global_hit_causes_monster_flee_%"]=221, - ["global_maim_on_hit"]=930, - ["global_maximum_added_fire_damage_vs_burning_enemies"]=1337, - ["global_maximum_added_physical_damage_vs_bleeding_enemies"]=931, - ["global_minimum_added_fire_damage_vs_burning_enemies"]=1337, - ["global_minimum_added_physical_damage_vs_bleeding_enemies"]=931, - ["global_poison_on_hit"]=398, - ["global_reduce_enemy_block_%"]=332, - ["glorious_madness_timer_ms"]=932, - ["golem_buff_effect_+%"]=933, - ["grant_expanding_fire_cone_release_ignite_damage_+%_final"]=934, - ["greater_projectile_intensity_projectile_damage_+%_final_per_intensity"]=935, - ["ground_slam_angle_+%"]=936, - ["groundslam_damage_to_close_targets_+%_final"]=420, - ["herald_of_agony_add_stack_on_poison"]=937, - ["herald_of_agony_poison_damage_+%_final"]=938, - ["herald_of_ash_burning_%_overkill_damage_per_minute"]=939, - ["herald_of_light_summon_champion_on_kill"]=940, - ["herald_of_light_summon_champion_on_unique_or_rare_enemy_hit_%"]=941, - ["herald_of_purity_physical_damage_+%_final"]=942, - ["hex_transfer_on_death_total_range"]=943, - ["hexblast_%_chance_to_not_consume_hex"]=946, - ["hexblast_ailment_damage_+%_final_if_hexed"]=944, - ["hexblast_display_innate_remove_hex_100%_chance"]=946, - ["hexblast_hit_damage_+%_final_if_hexed"]=945, - ["hinder_enemy_chaos_damage_+%"]=947, - ["hinder_enemy_chaos_damage_taken_+%"]=948, - ["hits_grant_cruelty"]=949, - ["hits_ignore_all_enemy_monster_resistances"]=950, - ["hits_ignore_enemy_monster_physical_damage_reduction"]=951, - ["holy_and_shockwave_totem_have_physical_damage_%_to_add_as_fire_damage_when_linked_by_searing_bond"]=952, - ["holy_path_teleport_range_+%"]=953, - ["holy_relic_nova_life_regeneration_rate_per_minute"]=954, - ["holy_relic_nova_minion_life_regeneration_rate_per_second"]=955, - ["hydro_sphere_pulse_frequency_ms"]=956, - ["hydrosphere_hit_cooldown_ms"]=957, - ["ice_crash_first_stage_damage_+%_final"]=958, - ["ice_crash_second_hit_damage_+%_final"]=357, - ["ice_crash_third_hit_damage_+%_final"]=358, - ["ice_dash_cooldown_recovery_per_nearby_normal_or_magic_enemy"]=959, - ["ice_dash_cooldown_recovery_per_nearby_rare_or_unique_enemy"]=959, - ["ice_golem_grants_accuracy_rating_+"]=362, - ["ice_golem_grants_critical_strike_chance_+%"]=361, - ["ice_nova_damage_when_cast_on_frostbolt_+%_final"]=960, - ["ice_nova_freeze_as_though_damage_+%_final"]=961, - ["ice_nova_number_of_frost_bolts_to_cast_on"]=962, - ["ice_nova_number_of_repeats"]=328, - ["ice_nova_radius_+%_per_repeat"]=329, - ["ice_shield_moving_mana_degeneration_per_minute"]=268, - ["ice_spear_distance_before_form_change_+%"]=963, - ["ice_spear_second_form_critical_strike_chance_+%"]=239, - ["ice_spear_second_form_critical_strike_multiplier_+"]=240, - ["ice_spear_second_form_projectile_speed_+%_final"]=241, - ["ignite_damage_+100%_final_chance"]=964, - ["ignite_duration_+%"]=116, - ["ignites_apply_fire_resistance_+"]=965, - ["ignition_blast_%_max_life_as_fire_on_death"]=966, - ["ignore_self_damage_from_trauma_chance_%"]=967, - ["immolation_brand_burn_damage_+%_final_per_stage"]=968, - ["immortal_call_elemental_damage_taken_+%_final_per_endurance_charge_consumed_permyriad"]=969, - ["impacting_steel_secondary_projectile_damage_+%_final"]=970, - ["impale_debuff_effect_+%"]=971, - ["impale_on_hit_%_chance"]=972, - ["impale_phys_reduction_%_penalty"]=973, - ["impurity_cold_damage_taken_+%_final"]=974, - ["impurity_fire_damage_taken_+%_final"]=975, - ["impurity_lightning_damage_taken_+%_final"]=976, - ["incinerate_damage_+%_per_stage"]=262, - ["incinerate_starts_with_X_additional_stages"]=977, - ["infernal_blow_explosion_applies_uncharged_debuff_on_hit_%_chance"]=978, - ["infernal_blow_explosion_damage_%_of_total_per_stack"]=979, - ["infernal_bolt_base_fire_damage_%_maximum_life"]=980, - ["infernal_bolt_triggered_when_totem_with_this_skill_hit_by_enemy"]=981, - ["infernal_cry_%_max_life_as_fire_on_death"]=1502, - ["infernal_cry_empowered_attacks_trigger_combust_display"]=1526, - ["infernal_cry_physical_damage_%_to_add_as_fire_per_5_power_up_to_cap"]=1508, - ["inflict_all_exposure_on_hit"]=982, - ["infusion_grants_life_regeneration_rate_per_minute_%"]=983, - ["inspiration_charge_duration_+%"]=984, - ["inspiring_cry_damage_+%_per_one_hundred_nearby_enemies"]=372, - ["intermediary_chaos_area_damage_to_deal_per_minute"]=160, - ["intermediary_chaos_damage_to_deal_per_minute"]=161, - ["intermediary_chaos_skill_dot_area_damage_to_deal_per_minute"]=162, - ["intermediary_chaos_skill_dot_damage_to_deal_per_minute"]=163, - ["intermediary_cold_area_damage_to_deal_per_minute"]=171, - ["intermediary_cold_damage_to_deal_per_minute"]=172, - ["intermediary_cold_skill_dot_area_damage_to_deal_per_minute"]=173, - ["intermediary_cold_skill_dot_damage_to_deal_per_minute"]=174, - ["intermediary_fire_area_damage_to_deal_per_minute"]=166, - ["intermediary_fire_damage_to_deal_per_minute"]=167, - ["intermediary_fire_skill_dot_area_damage_to_deal_per_minute"]=168, - ["intermediary_fire_skill_dot_damage_to_deal_per_minute"]=169, - ["intermediary_lightning_skill_dot_damage_to_deal_per_minute"]=175, - ["intermediary_physical_skill_dot_area_damage_to_deal_per_minute"]=164, - ["intermediary_physical_skill_dot_damage_to_deal_per_minute"]=165, - ["intimidate_nearby_enemies_on_use_for_ms"]=985, - ["intimidating_cry_empowerd_attacks_deal_double_damage_display"]=1529, - ["intimidating_cry_movement_speed_+%_per_5_power_up_to_cap"]=1505, - ["is_ranged_attack_totem"]=47, - ["is_remote_mine"]=44, - ["is_snipe_default_projectile"]=1230, - ["is_snipe_default_projectile_2"]=1229, - ["is_totem"]=47, - ["is_trap"]=45, - ["keystone_minion_instability"]=153, - ["keystone_point_blank"]=217, - ["kill_enemy_on_hit_if_under_10%_life"]=216, - ["killed_monster_dropped_item_quantity_+%"]=121, - ["killed_monster_dropped_item_rarity_+%"]=120, - ["killing_blow_consumes_corpse_restore_%_life"]=987, - ["killing_blow_consumes_corpse_restore_x_life"]=988, - ["killing_blow_consumes_corpse_restore_x_mana"]=988, - ["kinetic_blast_projectiles_gain_%_aoe_after_forking"]=989, - ["kinetic_bolt_forks_apply_to_zig_zags"]=990, - ["kinetic_bolt_number_of_zig_zags"]=1548, - ["knockback_chance_%_at_close_range"]=991, - ["knockback_distance_+%"]=76, - ["lacerate_hit_and_ailment_damage_+%_final_vs_bleeding_enemies"]=992, - ["lancing_steel_damage_+%_at_close_range"]=993, - ["lancing_steel_damage_+%_final_after_first_hit_on_target"]=994, - ["lancing_steel_targeting_range_+%"]=995, - ["life_leech_from_any_damage_permyriad"]=72, - ["life_leech_from_physical_attack_damage_permyriad"]=73, - ["life_regeneration_rate_+%"]=237, - ["life_regeneration_rate_per_minute_%"]=236, - ["light_radius_increases_apply_to_area_of_effect"]=40, - ["lightning_ailment_effect_+%"]=996, - ["lightning_arrow_%_chance_to_hit_an_additional_enemy"]=999, - ["lightning_arrow_alt_additional_strikes"]=997, - ["lightning_arrow_alt_strike_frequency_ms"]=998, - ["lightning_arrow_maximum_number_of_extra_targets"]=211, - ["lightning_arrow_stack_limit"]=1000, - ["lightning_conduit_max_num_targets"]=1001, - ["lightning_explosion_mine_aura_damage_taken_+%"]=1550, - ["lightning_golem_grants_attack_and_cast_speed_+%"]=368, - ["lightning_golem_grants_base_mana_regeneration_rate_per_minute"]=369, - ["lightning_penetration_%_while_on_low_mana"]=249, - ["lightning_tendrils_channelled_base_radius_+_per_second_while_channelling"]=1002, - ["lightning_tendrils_channelled_larger_pulse_always_crit"]=147, - ["lightning_tendrils_channelled_larger_pulse_area_of_effect_+%_final"]=1003, - ["lightning_tendrils_channelled_larger_pulse_damage_+%_final"]=1004, - ["lightning_tendrils_channelled_larger_pulse_interval"]=147, - ["lightning_tendrils_channelled_larger_pulse_radius_+"]=1005, - ["lightning_tower_trap_interval_duration_ms"]=1006, - ["lightning_tower_trap_number_of_beams"]=1006, - ["lightning_trap_projectiles_leave_shocking_ground"]=339, - ["link_skills_deal_cold_dot_to_enemies_in_beam_aoe"]=1007, + ["divine_cry_additional_base_critical_strike_chance_per_5_power_up_to_cap"]=1553, + ["divine_retribution_blasts_per_wave"]=804, + ["divine_retribution_num_waves"]=805, + ["divine_tempest_ailment_damage_+%_final_per_stage"]=808, + ["divine_tempest_beam_width_+%"]=806, + ["divine_tempest_damage_+%_final_while_channelling"]=807, + ["divine_tempest_hit_damage_+%_final_per_stage"]=808, + ["divine_tempest_no_beam"]=808, + ["divine_tempest_stage_on_hitting_normal_magic_%_chance"]=809, + ["divine_tempest_stage_on_hitting_rare_unique"]=810, + ["double_and_dual_strike_soul_eater_for_20_seconds_on_rare_or_unique_kill_chance_%"]=811, + ["double_strike_attack_speed_+%_final_per_stage"]=812, + ["double_strike_max_stages"]=813, + ["doubles_have_movement_speed_+%"]=143, + ["dual_strike_critical_strike_chance_+%_final_against_enemies_on_full_life"]=814, + ["dual_strike_damage_+%_final_against_enemies_on_full_life"]=815, + ["dual_strike_off_hand_weapon_determines_attack_time"]=816, + ["earthquake_aftershock_ailment_damage_+%_final_from_skill_effect_duration"]=52, + ["earthquake_aftershock_area_of_effect_+%_final_from_skill_effect_duration"]=55, + ["earthquake_aftershock_hit_damage_+%_final_from_skill_effect_duration"]=49, + ["earthquake_aftershock_maximum_added_physical_damage"]=817, + ["earthquake_aftershock_minimum_added_physical_damage"]=817, + ["earthquake_initial_slam_area_of_effect_+%"]=818, + ["earthshatter_spike_area_of_effect_+%_final"]=819, + ["elemental_damage_+%_final_per_righteous_charge"]=821, + ["elemental_damage_cannot_be_reflected"]=820, + ["elemental_hit_area_of_effect_+100%_final_vs_enemy_with_associated_ailment"]=822, + ["elemental_hit_damage_+%_final_per_enemy_elemental_ailment"]=823, + ["elemental_hit_no_damage_of_unchosen_elemental_type"]=352, + ["elemental_penetration_%_from_resonance"]=824, + ["elemental_status_effect_aura_radius"]=213, + ["elemental_strike_physical_damage_%_to_convert"]=390, + ["elusive_effect_+%"]=825, + ["embrace_madness_amount_of_cooldown_to_gain_ms"]=826, + ["empowered_attack_damage_+%"]=827, + ["enchantment_of_war_trigger_on_kill_%"]=296, + ["endurance_charge_granted_per_X_monster_power_during_endurance_warcry"]=1551, + ["endurance_charge_slam_damage_+%_final_per_endurance_charge_consumed"]=828, + ["enduring_cry_grants_x_additional_endurance_charges"]=829, + ["enduring_cry_life_regeneration_rate_per_minute_%_per_5_power_up_to_cap"]=1554, + ["enemies_chilled_by_bane_and_contagion"]=830, + ["enemies_covered_in_frost_as_unfrozen"]=831, + ["enemies_taunted_by_your_warcies_are_intimidated"]=832, + ["enemies_you_hinder_have_life_regeneration_rate_+%"]=833, + ["enemies_you_shock_movement_speed_+%"]=834, + ["enemies_you_shock_take_%_increased_physical_damage"]=835, + ["enemy_aggro_radius_+%"]=395, + ["enemy_phys_reduction_%_penalty_vs_hit"]=836, + ["energy_release_damage_+%_final_per_5%_increased_damage_taken_from_shock_on_target"]=837, + ["energy_shield_delay_-%"]=188, + ["energy_shield_leech_from_any_damage_permyriad"]=75, + ["energy_shield_recharge_rate_+%"]=189, + ["energy_shield_regeneration_rate_+%"]=838, + ["ensnaring_arrow_enemy_spell_damage_taken_+%"]=839, + ["essence_drain_lose_life_from_damage_permyriad"]=840, + ["ethereal_knives_projectiles_needed_per_vestige_blade"]=841, + ["evasion_and_physical_damage_reduction_rating_+%"]=842, + ["expanding_fire_cone_angle_+%_per_stage"]=843, + ["expanding_fire_cone_final_wave_always_ignite"]=844, + ["expanding_fire_cone_maximum_number_of_stages"]=845, + ["expanding_fire_cone_radius_+_per_stage"]=846, + ["expanding_fire_cone_radius_limit"]=846, + ["expanding_fire_cone_release_hit_damage_+%_final"]=847, + ["explosive_arrow_ailment_damage_+%_final_per_stack"]=246, + ["explosive_arrow_explosion_base_damage_+permyriad"]=180, + ["explosive_arrow_explosion_maximum_added_fire_damage"]=182, + ["explosive_arrow_explosion_minimum_added_fire_damage"]=182, + ["explosive_arrow_hit_damage_+%_final_per_stack"]=244, + ["explosive_arrow_maximum_bonus_explosion_radius"]=185, + ["explosive_arrow_stack_limit"]=848, + ["extra_target_targeting_distance_+%"]=849, + ["eye_of_winter_base_explosion_shards"]=60, + ["eye_of_winter_count_shards_while_flying_instead"]=60, + ["eye_of_winter_display_number_of_explosion_shards"]=60, + ["eye_of_winter_spiral_angle_+%"]=850, + ["eye_of_winter_spiral_fire_frequency_+%"]=851, + ["faster_bleed_%"]=852, + ["faster_burn_%"]=853, + ["feast_of_flesh_gain_X_energy_shield_per_corpse_consumed"]=854, + ["feast_of_flesh_gain_X_life_per_corpse_consumed"]=854, + ["feast_of_flesh_gain_X_mana_per_corpse_consumed"]=854, + ["fire_beam_additional_stack_damage_+%_final"]=855, + ["fire_beam_enemy_fire_resistance_%_maximum"]=856, + ["fire_beam_enemy_fire_resistance_%_per_stack"]=857, + ["fire_beam_length_+%"]=858, + ["fire_damage_+%"]=348, + ["fire_damage_taken_+"]=272, + ["fire_dot_multiplier_+"]=859, + ["fire_golem_grants_area_of_effect_+%"]=366, + ["fire_golem_grants_damage_+%"]=365, + ["fire_nova_damage_+%_per_repeat_final"]=382, + ["fire_shield_damage_threshold"]=197, + ["fire_storm_fireball_delay_ms"]=186, + ["fireball_base_radius_up_to_+_at_longer_ranges"]=860, + ["fires_1_projectile_if_no_steel_ammo"]=861, + ["firestorm_and_bladefall_chance_to_replay_when_finished_%"]=862, + ["firestorm_final_impact_damage_+%_final"]=863, + ["firestorm_initial_impact_area_of_effect_+%_final"]=864, + ["firestorm_initial_impact_damage_+%_final"]=865, + ["firestorm_max_number_of_storms"]=866, + ["firewall_applies_%_fire_exposure"]=867, + ["fixed_skill_effect_duration"]=868, + ["flame_dash_burning_damage_+%_final"]=869, + ["flame_dash_repeats_target_previous_location"]=870, + ["flame_surge_burning_ground_creation_cooldown_ms"]=871, + ["flame_surge_burning_ground_on_ignite_damage_%"]=872, + ["flame_surge_ignite_damage_as_burning_ground_damage_%"]=873, + ["flame_whip_damage_+%_final_vs_burning_enemies"]=336, + ["flameblast_ailment_damage_+%_final_per_10_life_reserved"]=874, + ["flameblast_ailment_damage_+%_final_per_stack"]=317, + ["flameblast_area_+%_final_per_stage"]=875, + ["flameblast_base_radius_override"]=876, + ["flameblast_damage_+%_final_per_10_life_reserved"]=877, + ["flameblast_hundred_times_radius_+_per_1%_life_reserved"]=878, + ["flameblast_ignite_chance_+%_per_stage"]=879, + ["flameblast_maximum_stages"]=880, + ["flameblast_starts_with_X_additional_stages"]=881, + ["flamethrower_damage_+%_per_stage_final"]=263, + ["flamethrower_tower_trap_display_cast_speed_affects_rotation"]=882, + ["flamethrower_tower_trap_number_of_flamethrowers"]=883, + ["flamethrower_trap_damage_+%_final_vs_burning_enemies"]=884, + ["flask_charges_used_+%"]=885, + ["flask_throw_added_chaos_damage_%_of_flask_life_to_recover"]=888, + ["flask_throw_base_charges_used"]=886, + ["flask_throw_charges_used_per_projectile"]=886, + ["flask_throw_display_also_sulphur_flask"]=886, + ["flask_throw_maximum_cold_damage_if_used_sapphire_flask"]=889, + ["flask_throw_maximum_lightning_damage_if_used_topaz_flask"]=890, + ["flask_throw_minimum_cold_damage_if_used_sapphire_flask"]=889, + ["flask_throw_minimum_lightning_damage_if_used_topaz_flask"]=890, + ["flask_throw_ruby_flask_critical_strike_multiplier_+"]=891, + ["flask_throw_ruby_flask_ignite_dot_multiplier_+"]=892, + ["flask_throw_sulphur_flask_explode_on_kill_chance"]=887, + ["flask_throw_total_charges_used"]=886, + ["flesh_stone_blood_stance_enemies_physical_damage_taken_when_hit_+%_final_from_player_distance"]=893, + ["flesh_stone_sand_stance_damage_taken_+%_final_from_distance_from_enemy_hits"]=894, + ["flicker_strike_buff_movement_speed_+%"]=895, + ["flicker_strike_teleport_range_+%"]=896, + ["fortify_duration_+%"]=361, + ["fortify_on_hit"]=897, + ["fortify_on_hit_close_range"]=898, + ["freeze_applies_cold_resistance_+"]=899, + ["freeze_as_though_dealt_damage_+%"]=234, + ["freeze_duration_+%"]=112, + ["freeze_mine_cold_resistance_+_while_frozen"]=284, + ["freezing_pulse_damage_+%_final_at_long_range"]=900, + ["frenzy_consume_charges_to_onslaught_for_ms_per_charge"]=901, + ["frenzy_skill_attack_damage_+%_final_per_frenzy_charge"]=902, + ["frenzy_skill_attack_speed_+%_final_per_frenzy_charge"]=903, + ["from_code_active_skill_ailment_damage_+%_final"]=904, + ["from_quality_brand_activation_rate_+%_final_if_75%_attached_duration_expired"]=905, + ["frost_bolt_nova_number_of_frost_bolts_to_detonate"]=906, + ["frost_fury_added_duration_per_stage_ms"]=907, + ["frost_fury_base_fire_interval_ms"]=908, + ["frost_fury_duration_+%_per_stage"]=909, + ["frost_fury_fire_speed_+%_final_while_channelling"]=910, + ["frost_fury_fire_speed_+%_per_stage"]=911, + ["frost_fury_max_number_of_stages"]=912, + ["frost_globe_absorb_damage_%_enemy_in_bubble"]=913, + ["frost_globe_absorb_damage_%_enemy_outside_bubble"]=914, + ["frost_globe_additional_spell_base_critical_strike_chance_per_stage"]=915, + ["frost_globe_health_per_stage"]=916, + ["frost_globe_life_regeneration_rate_per_minute_%"]=917, + ["frost_globe_max_stages"]=918, + ["frost_globe_stage_gain_interval_ms"]=919, + ["frostblink_damage_+%_final_per_5%_chill_effect_on_target"]=920, + ["frostbolt_projectile_acceleration"]=921, + ["frostbolt_projectile_speed_+%_final"]=922, + ["frozen_legion_%_chance_to_summon_additional_statue"]=923, + ["fuse_arrow_explosion_radius_+_per_fuse_arrow_orb"]=185, + ["gain_%_of_phys_as_extra_chaos_per_white_socket_on_gloves"]=346, + ["gain_%_of_phys_as_extra_cold_per_green_socket_on_gloves"]=344, + ["gain_%_of_phys_as_extra_fire_per_red_socket_on_gloves"]=343, + ["gain_%_of_phys_as_extra_lightning_per_blue_socket_on_gloves"]=345, + ["gain_1_rage_on_use_%_chance"]=924, + ["gain_elusive_on_crit_%_chance"]=925, + ["gain_endurance_charge_on_melee_stun"]=283, + ["gain_endurance_charge_on_melee_stun_%"]=283, + ["gain_fortify_on_melee_hit_ms"]=926, + ["gain_frenzy_charge_on_hitting_rare_or_unique_enemy_%"]=927, + ["gain_frenzy_charge_on_hitting_unique_enemy_%"]=928, + ["gain_frenzy_charge_on_killing_blow_vs_enemies_with_5+_poisons_%"]=929, + ["gain_power_charge_on_kill_with_hit_%"]=930, + ["gain_rage_on_hit"]=931, + ["gain_rage_on_hit_%_chance"]=932, + ["gain_resonance_of_majority_damage_on_hit_for_2_seconds"]=933, + ["gain_righteous_charge_on_mana_spent_%"]=934, + ["gain_x_rage_on_attack_hit"]=935, + ["galvanic_field_beam_delay_ms"]=936, + ["galvanic_field_damage_+%_final_per_5%_increased_damage_taken_from_shock"]=937, + ["galvanic_field_maximum_number_of_spheres"]=1053, + ["galvanic_field_radius_+_per_10%_increased_damage_taken_from_shock"]=938, + ["galvanic_field_retargeting_delay_ms"]=571, + ["glacial_cascade_final_spike_damage_+%_final"]=939, + ["glacial_cascade_travel_speed_+%"]=940, + ["glacial_hammer_third_hit_always_crits"]=235, + ["glacial_hammer_third_hit_freeze_as_though_dealt_damage_+%"]=236, + ["global_always_hit"]=333, + ["global_bleed_on_hit"]=609, + ["global_chance_to_knockback_%"]=76, + ["global_hit_causes_monster_flee_%"]=223, + ["global_maim_on_hit"]=941, + ["global_maximum_added_fire_damage_vs_burning_enemies"]=1373, + ["global_maximum_added_physical_damage_vs_bleeding_enemies"]=942, + ["global_minimum_added_fire_damage_vs_burning_enemies"]=1373, + ["global_minimum_added_physical_damage_vs_bleeding_enemies"]=942, + ["global_poison_on_hit"]=404, + ["global_reduce_enemy_block_%"]=334, + ["glorious_madness_timer_ms"]=943, + ["golem_buff_effect_+%"]=944, + ["graft_skill_xoph_molten_shell_absorb_limit"]=1103, + ["grant_expanding_fire_cone_release_ignite_damage_+%_final"]=945, + ["greater_projectile_intensity_projectile_damage_+%_final_per_intensity"]=946, + ["ground_slam_angle_+%"]=947, + ["groundslam_damage_to_close_targets_+%_final"]=426, + ["herald_of_agony_add_stack_on_poison"]=948, + ["herald_of_agony_poison_damage_+%_final"]=949, + ["herald_of_ash_burning_%_overkill_damage_per_minute"]=950, + ["herald_of_light_summon_champion_on_kill"]=951, + ["herald_of_light_summon_champion_on_unique_or_rare_enemy_hit_%"]=952, + ["herald_of_purity_physical_damage_+%_final"]=953, + ["herald_of_the_breach_add_stack_on_inflicting_ailment"]=955, + ["herald_of_the_breach_pulse_delay_ms"]=956, + ["herald_of_the_breach_pulse_frequency_+%_per_otherworldly_pressure"]=957, + ["hex_transfer_on_death_total_range"]=958, + ["hexblast_%_chance_to_not_consume_hex"]=961, + ["hexblast_ailment_damage_+%_final_if_hexed"]=959, + ["hexblast_display_innate_remove_hex_100%_chance"]=961, + ["hexblast_hit_damage_+%_final_if_hexed"]=960, + ["hinder_enemy_chaos_damage_+%"]=962, + ["hinder_enemy_chaos_damage_taken_+%"]=963, + ["hits_grant_cruelty"]=964, + ["hits_ignore_all_enemy_monster_resistances"]=965, + ["hits_ignore_enemy_monster_physical_damage_reduction"]=966, + ["holy_and_shockwave_totem_have_physical_damage_%_to_add_as_fire_damage_when_linked_by_searing_bond"]=967, + ["holy_path_teleport_range_+%"]=968, + ["holy_relic_nova_life_regeneration_rate_per_minute"]=969, + ["holy_relic_nova_minion_life_regeneration_rate_per_second"]=970, + ["hydro_sphere_pulse_frequency_ms"]=971, + ["hydrosphere_hit_cooldown_ms"]=972, + ["ice_crash_first_stage_damage_+%_final"]=973, + ["ice_crash_second_hit_damage_+%_final"]=363, + ["ice_crash_third_hit_damage_+%_final"]=364, + ["ice_dash_cooldown_recovery_per_nearby_normal_or_magic_enemy"]=974, + ["ice_dash_cooldown_recovery_per_nearby_rare_or_unique_enemy"]=974, + ["ice_golem_grants_accuracy_rating_+"]=368, + ["ice_golem_grants_critical_strike_chance_+%"]=367, + ["ice_nova_damage_when_cast_on_frostbolt_+%_final"]=975, + ["ice_nova_freeze_as_though_damage_+%_final"]=976, + ["ice_nova_number_of_frost_bolts_to_cast_on"]=977, + ["ice_nova_number_of_repeats"]=330, + ["ice_nova_radius_+%_per_repeat"]=331, + ["ice_shield_moving_mana_degeneration_per_minute"]=270, + ["ice_spear_distance_before_form_change_+%"]=978, + ["ice_spear_second_form_critical_strike_chance_+%"]=241, + ["ice_spear_second_form_critical_strike_multiplier_+"]=242, + ["ice_spear_second_form_projectile_speed_+%_final"]=243, + ["ignite_damage_+100%_final_chance"]=979, + ["ignite_duration_+%"]=117, + ["ignites_apply_fire_resistance_+"]=980, + ["ignition_blast_%_max_life_as_fire_on_death"]=981, + ["ignore_self_damage_from_trauma_chance_%"]=982, + ["immolation_brand_burn_damage_+%_final_per_stage"]=983, + ["immortal_call_elemental_damage_taken_+%_final_per_endurance_charge_consumed_permyriad"]=984, + ["impacting_steel_secondary_projectile_damage_+%_final"]=985, + ["impale_debuff_effect_+%"]=986, + ["impale_on_hit_%_chance"]=987, + ["impale_phys_reduction_%_penalty"]=988, + ["impurity_cold_damage_taken_+%_final"]=989, + ["impurity_fire_damage_taken_+%_final"]=990, + ["impurity_lightning_damage_taken_+%_final"]=991, + ["incinerate_damage_+%_per_stage"]=264, + ["incinerate_starts_with_X_additional_stages"]=992, + ["infernal_blow_explosion_applies_uncharged_debuff_on_hit_%_chance"]=993, + ["infernal_blow_explosion_damage_%_of_total_per_stack"]=994, + ["infernal_bolt_base_fire_damage_%_maximum_life"]=995, + ["infernal_bolt_triggered_when_totem_with_this_skill_hit_by_enemy"]=996, + ["infernal_cry_%_max_life_as_fire_on_death"]=1544, + ["infernal_cry_empowered_attacks_trigger_combust_display"]=1568, + ["infernal_cry_physical_damage_%_to_add_as_fire_per_5_power_up_to_cap"]=1550, + ["inflict_all_exposure_on_hit"]=997, + ["infusion_grants_life_regeneration_rate_per_minute_%"]=998, + ["inspiration_charge_duration_+%"]=999, + ["inspiring_cry_damage_+%_per_one_hundred_nearby_enemies"]=378, + ["intermediary_chaos_area_damage_to_deal_per_minute"]=161, + ["intermediary_chaos_damage_to_deal_per_minute"]=162, + ["intermediary_chaos_skill_dot_area_damage_to_deal_per_minute"]=163, + ["intermediary_chaos_skill_dot_damage_to_deal_per_minute"]=164, + ["intermediary_cold_area_damage_to_deal_per_minute"]=172, + ["intermediary_cold_damage_to_deal_per_minute"]=173, + ["intermediary_cold_skill_dot_area_damage_to_deal_per_minute"]=174, + ["intermediary_cold_skill_dot_damage_to_deal_per_minute"]=175, + ["intermediary_fire_area_damage_to_deal_per_minute"]=167, + ["intermediary_fire_damage_to_deal_per_minute"]=168, + ["intermediary_fire_skill_dot_area_damage_to_deal_per_minute"]=169, + ["intermediary_fire_skill_dot_damage_to_deal_per_minute"]=170, + ["intermediary_lightning_skill_dot_damage_to_deal_per_minute"]=176, + ["intermediary_physical_skill_dot_area_damage_to_deal_per_minute"]=165, + ["intermediary_physical_skill_dot_damage_to_deal_per_minute"]=166, + ["intimidate_nearby_enemies_on_use_for_ms"]=1000, + ["intimidating_cry_empowerd_attacks_deal_double_damage_display"]=1571, + ["intimidating_cry_movement_speed_+%_per_5_power_up_to_cap"]=1547, + ["is_ranged_attack_totem"]=48, + ["is_remote_mine"]=45, + ["is_snipe_default_projectile"]=1263, + ["is_snipe_default_projectile_2"]=1262, + ["is_totem"]=48, + ["is_trap"]=46, + ["keystone_minion_instability"]=154, + ["keystone_point_blank"]=219, + ["kill_enemy_on_hit_if_under_10%_life"]=218, + ["killed_monster_dropped_item_quantity_+%"]=122, + ["killed_monster_dropped_item_rarity_+%"]=121, + ["killing_blow_consumes_corpse_restore_%_life"]=1002, + ["killing_blow_consumes_corpse_restore_x_life"]=1003, + ["killing_blow_consumes_corpse_restore_x_mana"]=1003, + ["kinetic_blast_projectiles_gain_%_aoe_after_forking"]=1004, + ["kinetic_bolt_forks_apply_to_zig_zags"]=1005, + ["kinetic_bolt_number_of_zig_zags"]=1595, + ["kinetic_fusillade_damage_+%_final_per_projectile_fired"]=1006, + ["kinetic_fusillade_maximum_floating_projectiles"]=1007, + ["kinetic_instability_maximum_number_of_instability_orbs_allowed"]=1008, + ["kinetic_shell_hit_damage_absorbed_%"]=1009, + ["kinetic_shell_immunity_after_explosion_ms"]=1010, + ["kinetic_shell_maximum_damage_absorbed_from_hits"]=1009, + ["kinetic_shell_number_of_active_buffs_allowed"]=1011, + ["kinetic_shell_transfer_to_X_targets_on_projectile_hit"]=1012, + ["kinetic_wall_damage_+%_final_for_projectiles_chaining_off_wall"]=1013, + ["kinetic_wall_maximum_number_of_hits"]=1014, + ["knockback_chance_%_at_close_range"]=1015, + ["knockback_distance_+%"]=77, + ["lacerate_hit_and_ailment_damage_+%_final_vs_bleeding_enemies"]=1016, + ["lancing_steel_damage_+%_at_close_range"]=1017, + ["lancing_steel_damage_+%_final_after_first_hit_on_target"]=1018, + ["lancing_steel_targeting_range_+%"]=1019, + ["life_leech_from_any_damage_permyriad"]=73, + ["life_leech_from_physical_attack_damage_permyriad"]=74, + ["life_regeneration_rate_+%"]=239, + ["life_regeneration_rate_per_minute_%"]=238, + ["light_radius_increases_apply_to_area_of_effect"]=41, + ["lightning_ailment_effect_+%"]=1020, + ["lightning_arrow_%_chance_to_hit_an_additional_enemy"]=1023, + ["lightning_arrow_alt_additional_strikes"]=1021, + ["lightning_arrow_alt_strike_frequency_ms"]=1022, + ["lightning_arrow_maximum_number_of_extra_targets"]=212, + ["lightning_arrow_stack_limit"]=1024, + ["lightning_conduit_max_num_targets"]=1025, + ["lightning_explosion_mine_aura_damage_taken_+%"]=1597, + ["lightning_golem_grants_attack_and_cast_speed_+%"]=374, + ["lightning_golem_grants_base_mana_regeneration_rate_per_minute"]=375, + ["lightning_penetration_%_while_on_low_mana"]=251, + ["lightning_tendrils_channelled_base_radius_+_per_second_while_channelling"]=1026, + ["lightning_tendrils_channelled_larger_pulse_always_crit"]=148, + ["lightning_tendrils_channelled_larger_pulse_area_of_effect_+%_final"]=1027, + ["lightning_tendrils_channelled_larger_pulse_damage_+%_final"]=1028, + ["lightning_tendrils_channelled_larger_pulse_interval"]=148, + ["lightning_tendrils_channelled_larger_pulse_radius_+"]=1029, + ["lightning_tower_trap_interval_duration_ms"]=1030, + ["lightning_tower_trap_number_of_beams"]=1030, + ["lightning_trap_projectiles_leave_shocking_ground"]=341, + ["link_skills_deal_cold_dot_to_enemies_in_beam_aoe"]=1031, + ["living_lightning_number_of_attacks"]=1033, + ["living_lightning_number_of_minions_to_spawn"]=1032, + ["living_lightning_triggered_on_lightning_hit"]=1034, ["local_display_prismatic_burst_cold_permyriad_chance"]=18, ["local_display_prismatic_burst_fire_permyriad_chance"]=17, ["local_display_prismatic_burst_lightning_permyriad_chance"]=19, - ["lose_all_righteous_charges_on_mana_use_threshold"]=1008, - ["lose_all_trauma_at_X_trauma"]=1009, - ["lose_blood_scythe_charge_on_kill"]=605, - ["magma_brand_ailment_damage_+%_final_per_additional_pustule"]=1010, - ["magma_brand_hit_damage_+%_final_per_additional_pustule"]=1011, - ["magma_orb_%_chance_to_big_explode_instead_of_chaining"]=1012, - ["maim_effect_+%"]=1013, - ["maim_on_hit_%"]=1014, - ["mamba_strike_deal_%_of_all_poison_total_damage_per_minute"]=1015, - ["mana_degeneration_per_minute"]=267, - ["mana_gain_per_target"]=1016, - ["mana_void_gain_%_missing_unreserved_mana_as_base_lightning_damage"]=1017, - ["manaforged_arrows_total_mana_threshold"]=1019, - ["max_barkskin_stacks"]=132, - ["max_crab_aspect_stacks"]=1020, - ["max_number_of_absolution_sentinels"]=1021, - ["max_number_of_lightning_warp_markers"]=1022, - ["max_steel_ammo"]=1023, - ["maximum_added_cold_damage_per_frenzy_charge"]=1040, - ["maximum_added_cold_damage_vs_chilled_enemies"]=1041, - ["maximum_added_lightning_damage_from_skill"]=1042, - ["maximum_fire_damage_per_fuse_arrow_orb"]=183, - ["maximum_life_+%_for_corpses_you_create"]=1024, - ["maximum_number_of_blades_left_in_ground"]=1025, + ["lose_all_righteous_charges_on_mana_use_threshold"]=1035, + ["lose_all_trauma_at_X_trauma"]=1036, + ["lose_blood_scythe_charge_on_kill"]=615, + ["magma_brand_ailment_damage_+%_final_per_additional_pustule"]=1037, + ["magma_brand_hit_damage_+%_final_per_additional_pustule"]=1038, + ["magma_orb_%_chance_to_big_explode_instead_of_chaining"]=1039, + ["maim_effect_+%"]=1040, + ["maim_on_hit_%"]=1041, + ["mamba_strike_deal_%_of_all_poison_total_damage_per_minute"]=1042, + ["mana_degeneration_per_minute"]=269, + ["mana_gain_per_target"]=1043, + ["mana_void_gain_%_missing_unreserved_mana_as_base_lightning_damage"]=1044, + ["manaforged_arrows_total_mana_threshold"]=1046, + ["max_barkskin_stacks"]=133, + ["max_crab_aspect_stacks"]=1047, + ["max_number_of_absolution_sentinels"]=1048, + ["max_number_of_lightning_warp_markers"]=1049, + ["max_steel_ammo"]=1050, + ["maximum_added_cold_damage_per_frenzy_charge"]=1067, + ["maximum_added_cold_damage_vs_chilled_enemies"]=1068, + ["maximum_added_lightning_damage_from_skill"]=1069, + ["maximum_fire_damage_per_fuse_arrow_orb"]=184, + ["maximum_life_+%_for_corpses_you_create"]=1051, + ["maximum_number_of_blades_left_in_ground"]=1052, ["maximum_number_of_blink_mirror_arrow_elemental_hit_clones"]=24, ["maximum_number_of_blink_mirror_arrow_rain_of_arrows_clones"]=25, - ["maximum_number_of_mirage_warriors"]=1027, - ["maximum_number_of_snapping_adder_projectiles"]=1028, - ["maximum_number_of_spinning_blades"]=392, - ["maximum_number_of_spiritual_cry_warriors"]=1029, - ["maximum_number_of_summoned_doubles"]=1030, - ["maximum_number_of_vaal_ice_shot_mirages"]=1031, - ["maximum_secondary_physical_damage_per_15_strength"]=1044, - ["maximum_virulence_stacks"]=1032, - ["melee_ancestor_totem_grant_owner_attack_speed_+%"]=67, - ["melee_ancestor_totem_grant_owner_attack_speed_+%_final"]=63, - ["melee_counterattack_trigger_on_block_%"]=287, - ["melee_counterattack_trigger_on_hit_%"]=285, - ["melee_damage_vs_bleeding_enemies_+%"]=378, - ["melee_physical_damage_+%"]=178, - ["melee_range_+"]=386, - ["melee_splash_area_of_effect_+%_final"]=401, - ["melee_weapon_range_+"]=385, - ["mine_cannot_rearm"]=1034, - ["mine_critical_strike_chance_+%_per_power_charge"]=1035, - ["mine_detonates_instantly"]=1036, - ["mine_detonation_radius_+%"]=52, - ["mine_detonation_speed_+%"]=1037, - ["mine_duration"]=231, - ["mine_laying_speed_+%"]=230, - ["mine_projectile_speed_+%_per_frenzy_charge"]=1038, - ["mine_throwing_speed_+%_per_frenzy_charge"]=1039, - ["minimum_added_cold_damage_per_frenzy_charge"]=1040, - ["minimum_added_cold_damage_vs_chilled_enemies"]=1041, - ["minimum_added_lightning_damage_from_skill"]=1042, - ["minimum_fire_damage_per_fuse_arrow_orb"]=183, - ["minimum_power_from_quality"]=1043, - ["minimum_secondary_physical_damage_per_15_strength"]=1044, - ["minion_%_chance_to_be_summoned_with_maximum_frenzy_charges"]=1062, - ["minion_additional_physical_damage_reduction_%"]=1045, - ["minion_aggravate_bleeding_on_attack_hit_chance_%"]=1046, - ["minion_ailment_damage_+%"]=1047, - ["minion_always_crit"]=412, - ["minion_attack_speed_+%"]=143, - ["minion_block_%"]=1048, - ["minion_burning_damage_+%"]=1049, - ["minion_cast_speed_+%"]=144, - ["minion_chance_to_deal_double_damage_%"]=1050, - ["minion_chance_to_taunt_on_hit_%"]=1051, - ["minion_cooldown_recovery_+%"]=1052, - ["minion_critical_strike_chance_+%"]=1053, - ["minion_critical_strike_multiplier_+"]=1054, - ["minion_damage_+%"]=141, - ["minion_damage_+%_on_full_life"]=1055, - ["minion_duration"]=98, - ["minion_fire_damage_taken_+%"]=1056, - ["minion_grant_puppet_master_buff_to_parent_on_hit_%"]=1057, - ["minion_larger_aggro_radius"]=1555, - ["minion_life_regeneration_rate_per_minute_%"]=1058, - ["minion_maim_on_hit_%"]=1059, - ["minion_maximum_all_elemental_resistances_%"]=1060, - ["minion_maximum_life_+%"]=152, - ["minion_melee_damage_+%"]=1061, - ["minion_movement_speed_+%"]=145, - ["minion_sacrifice_%_damage_to_regen"]=1063, - ["minion_sacrifice_%_minion_life_explosion"]=1064, - ["minion_sacrifice_%_minion_life_to_degen"]=1065, - ["minion_skill_area_of_effect_+%"]=1066, - ["minion_stun_threshold_reduction_+%"]=1067, - ["minion_withered_effect_+%"]=1068, - ["minions_are_defensive"]=1556, - ["minions_cannot_be_damaged_after_summoned_ms"]=1069, - ["minions_chance_to_intimidate_on_hit_%"]=1070, - ["minions_deal_%_of_physical_damage_as_additional_chaos_damage"]=1071, - ["minions_inflict_exposure_on_hit_%_chance"]=1072, - ["minions_take_%_of_life_as_chaos_damage_when_summoned_over_1_second"]=1073, - ["mirage_archer_number_of_additional_projectiles"]=1074, - ["modifiers_to_buff_effect_duration_also_affect_soul_prevention_duration"]=43, - ["modifiers_to_skill_effect_duration_also_affect_soul_prevention_duration"]=41, - ["modifiers_to_totem_duration_also_affect_soul_prevention_duration"]=42, - ["molten_shell_%_of_absorbed_damage_dealt_as_reflected_fire"]=1076, - ["molten_shell_damage_absorb_limit_%_of_armour"]=1075, - ["molten_shell_damage_absorbed_%"]=1075, - ["molten_shell_explosion_damage_penetrates_%_fire_resistance"]=1077, - ["molten_shell_max_damage_absorbed"]=1075, - ["molten_strike_every_5th_attack_fire_X_additional_projectiles"]=1078, - ["molten_strike_every_5th_attack_projectiles_damage_+%_final"]=1079, - ["molten_strike_projectiles_chain_when_impacting_ground"]=1080, - ["monster_response_time_ms"]=176, - ["mortal_call_elemental_damage_taken_+%_final"]=1081, - ["mortal_call_physical_damage_taken_+%_final"]=1082, - ["mortal_call_physical_damage_taken_per_endurance_charge_consumed_final_permyriad"]=1083, - ["mortar_barrage_mine_maximum_added_fire_damage_taken"]=1551, - ["mortar_barrage_mine_maximum_added_fire_damage_taken_limit"]=1551, - ["mortar_barrage_mine_minimum_added_fire_damage_taken"]=1551, - ["mortar_barrage_mine_minimum_added_fire_damage_taken_limit"]=1551, - ["movement_velocity_cap"]=148, - ["multiple_projectiles_projectile_spread_+%"]=1084, - ["multistrike_area_of_effect_+%_per_repeat"]=1085, - ["multistrike_damage_+%_final_on_first_repeat"]=1086, - ["multistrike_damage_+%_final_on_second_repeat"]=1087, - ["multistrike_damage_+%_final_on_third_repeat"]=1088, - ["never_chill"]=447, - ["never_freeze"]=336, - ["never_ignite"]=337, - ["new_arctic_armour_fire_damage_taken_when_hit_+%_final"]=381, - ["new_arctic_armour_physical_damage_taken_when_hit_+%_final"]=380, - ["newshocknova_first_ring_damage_+%_final"]=352, - ["nightblade_elusive_grants_critical_strike_multiplier_+_to_supported_skills"]=1089, - ["no_cost"]=1090, - ["no_critical_strike_multiplier"]=448, - ["no_movement_speed"]=119, - ["non_damaging_ailment_effect_+%"]=1091, - ["number_of_allowed_firewalls"]=1092, - ["number_of_allowed_storm_arrows"]=1093, - ["number_of_champions_of_light_allowed"]=1094, - ["number_of_corpses_to_consume"]=1095, - ["number_of_herald_scorpions_allowed"]=1097, - ["number_of_mines_to_place"]=44, - ["number_of_mirage_archers_allowed"]=1098, - ["number_of_reapers_allowed"]=1099, - ["number_of_relics_allowed"]=1100, - ["number_of_support_ghosts_allowed"]=568, - ["number_of_tornados_allowed"]=1403, - ["number_of_totems_to_summon"]=47, - ["number_of_traps_to_throw"]=45, - ["number_of_void_spawns_allowed"]=1101, - ["number_of_warcries_exerting_this_action"]=986, - ["offering_skill_effect_duration_per_corpse"]=30, - ["oil_arrow_explosion_base_damage_+permyriad"]=180, - ["oil_arrow_explosion_maximum_added_fire_damage"]=182, - ["oil_arrow_explosion_minimum_added_fire_damage"]=182, - ["orb_of_storms_bolt_frequency_ms"]=1102, - ["orb_of_storms_channelling_bolt_frequency_ms"]=1103, - ["orb_of_storms_maximum_number_of_hits"]=1104, - ["overpowered_effect_+%"]=1105, - ["overwhelm_%_physical_damage_reduction_while_max_fortification"]=1106, - ["parallel_projectile_firing_point_x_dist_+%"]=1107, + ["maximum_number_of_mirage_warriors"]=1054, + ["maximum_number_of_snapping_adder_projectiles"]=1055, + ["maximum_number_of_spinning_blades"]=398, + ["maximum_number_of_spiritual_cry_warriors"]=1056, + ["maximum_number_of_summoned_doubles"]=1057, + ["maximum_number_of_vaal_ice_shot_mirages"]=1058, + ["maximum_otherwordly_pressure_stacks"]=954, + ["maximum_secondary_physical_damage_per_15_strength"]=1071, + ["maximum_virulence_stacks"]=1059, + ["melee_ancestor_totem_grant_owner_attack_speed_+%"]=68, + ["melee_ancestor_totem_grant_owner_attack_speed_+%_final"]=64, + ["melee_counterattack_trigger_on_block_%"]=289, + ["melee_counterattack_trigger_on_hit_%"]=287, + ["melee_damage_vs_bleeding_enemies_+%"]=384, + ["melee_physical_damage_+%"]=179, + ["melee_range_+"]=392, + ["melee_splash_area_of_effect_+%_final"]=407, + ["melee_weapon_range_+"]=391, + ["mine_cannot_rearm"]=1061, + ["mine_critical_strike_chance_+%_per_power_charge"]=1062, + ["mine_detonates_instantly"]=1063, + ["mine_detonation_radius_+%"]=53, + ["mine_detonation_speed_+%"]=1064, + ["mine_duration"]=233, + ["mine_laying_speed_+%"]=232, + ["mine_projectile_speed_+%_per_frenzy_charge"]=1065, + ["mine_throwing_speed_+%_per_frenzy_charge"]=1066, + ["minimum_added_cold_damage_per_frenzy_charge"]=1067, + ["minimum_added_cold_damage_vs_chilled_enemies"]=1068, + ["minimum_added_lightning_damage_from_skill"]=1069, + ["minimum_fire_damage_per_fuse_arrow_orb"]=184, + ["minimum_power_from_quality"]=1070, + ["minimum_secondary_physical_damage_per_15_strength"]=1071, + ["minion_%_chance_to_be_summoned_with_maximum_frenzy_charges"]=1089, + ["minion_additional_physical_damage_reduction_%"]=1072, + ["minion_aggravate_bleeding_on_attack_hit_chance_%"]=1073, + ["minion_ailment_damage_+%"]=1074, + ["minion_always_crit"]=418, + ["minion_attack_speed_+%"]=144, + ["minion_block_%"]=1075, + ["minion_burning_damage_+%"]=1076, + ["minion_cast_speed_+%"]=145, + ["minion_chance_to_deal_double_damage_%"]=1077, + ["minion_chance_to_taunt_on_hit_%"]=1078, + ["minion_cooldown_recovery_+%"]=1079, + ["minion_critical_strike_chance_+%"]=1080, + ["minion_critical_strike_multiplier_+"]=1081, + ["minion_damage_+%"]=142, + ["minion_damage_+%_on_full_life"]=1082, + ["minion_duration"]=99, + ["minion_fire_damage_taken_+%"]=1083, + ["minion_grant_puppet_master_buff_to_parent_on_hit_%"]=1084, + ["minion_larger_aggro_radius"]=1602, + ["minion_life_regeneration_rate_per_minute_%"]=1085, + ["minion_maim_on_hit_%"]=1086, + ["minion_maximum_all_elemental_resistances_%"]=1087, + ["minion_maximum_life_+%"]=153, + ["minion_melee_damage_+%"]=1088, + ["minion_movement_speed_+%"]=146, + ["minion_sacrifice_%_damage_to_regen"]=1090, + ["minion_sacrifice_%_minion_life_explosion"]=1091, + ["minion_sacrifice_%_minion_life_to_degen"]=1092, + ["minion_skill_area_of_effect_+%"]=1093, + ["minion_stun_threshold_reduction_+%"]=1094, + ["minion_withered_effect_+%"]=1095, + ["minions_are_defensive"]=1603, + ["minions_cannot_be_damaged_after_summoned_ms"]=1096, + ["minions_chance_to_intimidate_on_hit_%"]=1097, + ["minions_deal_%_of_physical_damage_as_additional_chaos_damage"]=1098, + ["minions_inflict_exposure_on_hit_%_chance"]=1099, + ["minions_take_%_of_life_as_chaos_damage_when_summoned_over_1_second"]=1100, + ["mirage_archer_number_of_additional_projectiles"]=1101, + ["misty_reflection_clone_base_maximum_life_%_of_owner_maximum_life"]=1102, + ["modifiers_to_buff_effect_duration_also_affect_soul_prevention_duration"]=44, + ["modifiers_to_skill_effect_duration_also_affect_soul_prevention_duration"]=42, + ["modifiers_to_totem_duration_also_affect_soul_prevention_duration"]=43, + ["molten_shell_%_of_absorbed_damage_dealt_as_reflected_fire"]=1104, + ["molten_shell_damage_absorb_limit_%_of_armour"]=1103, + ["molten_shell_damage_absorbed_%"]=1103, + ["molten_shell_explosion_damage_penetrates_%_fire_resistance"]=1105, + ["molten_shell_max_damage_absorbed"]=1103, + ["molten_strike_every_5th_attack_fire_X_additional_projectiles"]=1106, + ["molten_strike_every_5th_attack_projectiles_damage_+%_final"]=1107, + ["molten_strike_projectiles_chain_when_impacting_ground"]=1108, + ["monster_response_time_ms"]=177, + ["mortal_call_elemental_damage_taken_+%_final"]=1109, + ["mortal_call_physical_damage_taken_+%_final"]=1110, + ["mortal_call_physical_damage_taken_per_endurance_charge_consumed_final_permyriad"]=1111, + ["mortar_barrage_mine_maximum_added_fire_damage_taken"]=1598, + ["mortar_barrage_mine_maximum_added_fire_damage_taken_limit"]=1598, + ["mortar_barrage_mine_minimum_added_fire_damage_taken"]=1598, + ["mortar_barrage_mine_minimum_added_fire_damage_taken_limit"]=1598, + ["movement_velocity_cap"]=149, + ["multiple_projectiles_projectile_spread_+%"]=1112, + ["multistrike_area_of_effect_+%_per_repeat"]=1113, + ["multistrike_damage_+%_final_on_first_repeat"]=1114, + ["multistrike_damage_+%_final_on_second_repeat"]=1115, + ["multistrike_damage_+%_final_on_third_repeat"]=1116, + ["napalm_arrow_detonation_hit_damage_+%_final"]=1117, + ["napalm_arrow_ignite_damage_+%_final_with_detonation"]=1118, + ["napalm_arrow_maximum_number_of_unprimed_arrows_allowed"]=1119, + ["never_any_ailment"]=216, + ["never_chill"]=453, + ["never_freeze"]=338, + ["never_ignite"]=339, + ["new_arctic_armour_fire_damage_taken_when_hit_+%_final"]=387, + ["new_arctic_armour_physical_damage_taken_when_hit_+%_final"]=386, + ["newshocknova_first_ring_damage_+%_final"]=358, + ["nightblade_elusive_grants_critical_strike_multiplier_+_to_supported_skills"]=1120, + ["no_cost"]=1121, + ["no_critical_strike_multiplier"]=454, + ["no_movement_speed"]=120, + ["non_damaging_ailment_effect_+%"]=1122, + ["number_of_allowed_firewalls"]=1123, + ["number_of_allowed_storm_arrows"]=1124, + ["number_of_champions_of_light_allowed"]=1125, + ["number_of_corpses_to_consume"]=1126, + ["number_of_herald_scorpions_allowed"]=1128, + ["number_of_mines_to_place"]=45, + ["number_of_mirage_archers_allowed"]=1129, + ["number_of_reapers_allowed"]=1130, + ["number_of_relics_allowed"]=1131, + ["number_of_support_ghosts_allowed"]=578, + ["number_of_tornados_allowed"]=1440, + ["number_of_totems_to_summon"]=48, + ["number_of_traps_to_throw"]=46, + ["number_of_void_spawns_allowed"]=1132, + ["number_of_warcries_exerting_this_action"]=1001, + ["offering_skill_effect_duration_per_corpse"]=31, + ["oil_arrow_explosion_base_damage_+permyriad"]=181, + ["oil_arrow_explosion_maximum_added_fire_damage"]=183, + ["oil_arrow_explosion_minimum_added_fire_damage"]=183, + ["orb_of_storms_bolt_frequency_ms"]=1133, + ["orb_of_storms_channelling_bolt_frequency_ms"]=1134, + ["orb_of_storms_maximum_number_of_hits"]=1135, + ["overpowered_effect_+%"]=1136, + ["overwhelm_%_physical_damage_reduction_while_max_fortification"]=1137, + ["parallel_projectile_firing_point_x_dist_+%"]=1138, parent="active_skill_gem_stat_descriptions", - ["penance_brand_additional_descriptions_boolean"]=1108, - ["penance_brand_base_spread_radius_+"]=1109, - ["penance_brand_pulses_instead_of_explode"]=1110, - ["penance_mark_phantasm_duration_display"]=1112, - ["penance_mark_summon_phantasms_when_hit"]=1111, - ["penetrate_%_fire_resistance_per_100_dexterity"]=1113, - ["petrification_statue_target_action_speed_-%"]=1118, - ["phantasm_grant_buff_maximum_added_physical_damage"]=1119, - ["phantasm_grant_buff_minimum_added_physical_damage"]=1119, - ["phase_run_%_chance_to_not_replace_buff_on_skill_use"]=1120, - ["phase_run_melee_physical_damage_+%_final"]=177, - ["phase_through_objects"]=388, - ["phys_cascade_trap_interval_duration_ms"]=1121, - ["phys_cascade_trap_number_of_cascades"]=1121, - ["physical_attack_damage_taken_+_per_barkskin_stack"]=133, - ["physical_damage_%_to_add_as_chaos"]=341, - ["physical_damage_%_to_add_as_fire"]=340, - ["physical_damage_reduction_%_per_crab_aspect_stack"]=1122, - ["physical_damage_reduction_rating_+%"]=197, - ["physical_damage_taken_+"]=269, - ["plague_bearer_chaos_damage_taken_+%_while_incubating"]=1123, - ["plague_bearer_movement_speed_+%_while_infecting"]=1124, - ["poison_damage_+100%_final_chance"]=1125, - ["poison_dot_multiplier_+"]=1126, - ["poison_skill_effect_duration"]=97, - ["portal_alternate_destination_chance_permyriad"]=1127, - ["power_siphon_fire_at_all_targets"]=58, - ["power_siphon_fire_at_x_targets"]=1128, - ["predict_totem_maximum_life"]=108, - ["primary_projectile_chain_num"]=1129, - ["primary_projectile_display_targets_to_pierce"]=105, - ["primary_projectile_impale_chance_%"]=1130, - ["prismatic_burst_unchosen_type_damage_-100%_final"]=347, - ["prismatic_rain_beam_frequency_ms"]=1131, - ["projectile_additional_return_chance_%"]=1132, - ["projectile_attack_damage_+%_in_blood_stance"]=1133, - ["projectile_chain_from_terrain_chance_%"]=411, - ["projectile_chance_to_not_pierce_%"]=1135, - ["projectile_damage_+%_final_if_pierced_enemy"]=1136, - ["projectile_damage_+%_if_pierced_enemy"]=1137, - ["projectile_damage_+%_per_remaining_chain"]=1138, - ["projectile_damage_+%_vs_nearby_enemies"]=1142, - ["projectile_damage_modifiers_apply_to_skill_dot"]=39, - ["projectile_ground_effect_duration"]=95, - ["projectile_maximum_range_override"]=1139, - ["projectile_number_of_targets_to_pierce"]=104, - ["projectile_return_%_chance"]=258, - ["projectile_speed_+%_in_sand_stance"]=1140, - ["projectile_spiral_nova_angle"]=58, - ["projectile_spiral_nova_both_directions"]=58, - ["projectiles_barrage"]=58, - ["projectiles_can_split_at_end_of_range"]=1134, - ["projectiles_can_split_from_terrain"]=1134, - ["projectiles_cannot_split"]=1141, - ["projectiles_fork_when_passing_a_flame_wall"]=1143, - ["projectiles_nova"]=58, - ["projectiles_pierce_all_targets_in_x_range"]=1144, - ["projectiles_rain"]=1145, - ["projectiles_return"]=258, - ["puppet_master_duration_ms"]=1146, - ["purge_dot_multiplier_+_per_100ms_duration_expired"]=1147, - ["purge_expose_resist_%_matching_highest_element_damage"]=1148, - ["purifying_flame_%_chance_to_create_consecrated_ground_around_you"]=1149, - ["quake_slam_fully_charged_explosion_damage_+%_final"]=390, - ["quality_display_active_skill_area_damage_is_gem"]=461, - ["quality_display_active_skill_area_damage_quality_negated_from_gem"]=461, - ["quality_display_active_skill_attack_speed_per_frenzy_is_gem"]=893, - ["quality_display_active_skill_bleed_damage_final_is_gem"]=468, - ["quality_display_active_skill_ignite_damage_is_gem"]=473, - ["quality_display_active_skill_poison_damage_final_is_gem"]=474, - ["quality_display_active_skill_returning_damage_is_gem"]=419, - ["quality_display_alt_flame_whip_is_gem"]=862, - ["quality_display_alternate_tectonic_slam_is_gem"]=818, - ["quality_display_blade_vortex_is_gem"]=263, - ["quality_display_bladestorm_is_gem"]=593, - ["quality_display_boneshatter_is_gem"]=1416, - ["quality_display_chaged_dash_is_gem"]=674, - ["quality_display_chain_hook_is_gem"]=636, - ["quality_display_charged_attack_is_gem"]=671, - ["quality_display_circle_of_power_damage_is_gem"]=679, - ["quality_display_circle_of_power_is_gem"]=681, + ["penance_brand_additional_descriptions_boolean"]=1139, + ["penance_brand_base_spread_radius_+"]=1140, + ["penance_brand_pulses_instead_of_explode"]=1141, + ["penance_mark_phantasm_duration_display"]=1143, + ["penance_mark_summon_phantasms_when_hit"]=1142, + ["penetrate_%_fire_resistance_per_100_dexterity"]=1144, + ["petrification_statue_target_action_speed_-%"]=1149, + ["phantasm_grant_buff_maximum_added_physical_damage"]=1150, + ["phantasm_grant_buff_minimum_added_physical_damage"]=1150, + ["phase_run_%_chance_to_not_replace_buff_on_skill_use"]=1151, + ["phase_run_melee_physical_damage_+%_final"]=178, + ["phase_through_objects"]=394, + ["phys_cascade_trap_interval_duration_ms"]=1152, + ["phys_cascade_trap_number_of_cascades"]=1152, + ["physical_attack_damage_taken_+_per_barkskin_stack"]=134, + ["physical_damage_%_to_add_as_chaos"]=347, + ["physical_damage_%_to_add_as_fire"]=342, + ["physical_damage_reduction_%_per_crab_aspect_stack"]=1153, + ["physical_damage_reduction_rating_+%"]=198, + ["physical_damage_taken_+"]=271, + ["plague_bearer_chaos_damage_taken_+%_while_incubating"]=1154, + ["plague_bearer_movement_speed_+%_while_infecting"]=1155, + ["poison_damage_+100%_final_chance"]=1156, + ["poison_dot_multiplier_+"]=1157, + ["poison_skill_effect_duration"]=98, + ["portal_alternate_destination_chance_permyriad"]=1158, + ["power_siphon_fire_at_all_targets"]=59, + ["power_siphon_fire_at_x_targets"]=1159, + ["predict_totem_maximum_life"]=109, + ["primary_projectile_chain_num"]=1160, + ["primary_projectile_display_targets_to_pierce"]=106, + ["primary_projectile_impale_chance_%"]=1161, + ["prismatic_burst_unchosen_type_damage_-100%_final"]=353, + ["prismatic_rain_beam_frequency_ms"]=1162, + ["projectile_additional_return_chance_%"]=1163, + ["projectile_attack_damage_+%_in_blood_stance"]=1164, + ["projectile_chain_from_terrain_chance_%"]=417, + ["projectile_chance_to_not_pierce_%"]=1166, + ["projectile_damage_+%_final_if_pierced_enemy"]=1167, + ["projectile_damage_+%_if_pierced_enemy"]=1168, + ["projectile_damage_+%_per_remaining_chain"]=1169, + ["projectile_damage_+%_vs_nearby_enemies"]=1173, + ["projectile_damage_modifiers_apply_to_skill_dot"]=40, + ["projectile_ground_effect_duration"]=96, + ["projectile_maximum_range_override"]=1170, + ["projectile_number_of_targets_to_pierce"]=105, + ["projectile_return_%_chance"]=260, + ["projectile_speed_+%_in_sand_stance"]=1171, + ["projectile_spiral_nova_angle"]=59, + ["projectile_spiral_nova_both_directions"]=59, + ["projectiles_barrage"]=59, + ["projectiles_can_split_at_end_of_range"]=1165, + ["projectiles_can_split_from_terrain"]=1165, + ["projectiles_cannot_split"]=1172, + ["projectiles_fork_when_passing_a_flame_wall"]=1174, + ["projectiles_nova"]=59, + ["projectiles_pierce_all_targets_in_x_range"]=1175, + ["projectiles_rain"]=1176, + ["projectiles_return"]=260, + ["puppet_master_duration_ms"]=1177, + ["purge_dot_multiplier_+_per_100ms_duration_expired"]=1178, + ["purge_expose_resist_%_matching_highest_element_damage"]=1179, + ["purifying_flame_%_chance_to_create_consecrated_ground_around_you"]=1180, + ["pyroclast_mine_aura_fire_exposure_%_to_apply"]=1181, + ["quake_slam_fully_charged_explosion_damage_+%_final"]=396, + ["quality_display_active_skill_area_damage_is_gem"]=467, + ["quality_display_active_skill_area_damage_quality_negated_from_gem"]=467, + ["quality_display_active_skill_attack_speed_per_frenzy_is_gem"]=903, + ["quality_display_active_skill_bleed_damage_final_is_gem"]=474, + ["quality_display_active_skill_ignite_damage_is_gem"]=482, + ["quality_display_active_skill_poison_damage_final_is_gem"]=483, + ["quality_display_active_skill_returning_damage_is_gem"]=425, + ["quality_display_alt_flame_whip_is_gem"]=872, + ["quality_display_alternate_tectonic_slam_is_gem"]=828, + ["quality_display_blade_vortex_is_gem"]=265, + ["quality_display_bladestorm_is_gem"]=603, + ["quality_display_boneshatter_is_gem"]=1453, + ["quality_display_chaged_dash_is_gem"]=684, + ["quality_display_chain_hook_is_gem"]=646, + ["quality_display_charged_attack_is_gem"]=681, + ["quality_display_circle_of_power_damage_is_gem"]=689, + ["quality_display_circle_of_power_is_gem"]=691, ["quality_display_dark_pact_is_gem"]=3, - ["quality_display_disintegrate_is_gem"]=764, - ["quality_display_dual_strike_is_gem"]=805, - ["quality_display_earthquake_is_gem"]=390, - ["quality_display_earthshatter_spike_damage_is_gem"]=1247, - ["quality_display_elemental_hit_is_gem"]=813, - ["quality_display_essence_drain_is_gem"]=391, - ["quality_display_explosive_arrow_is_gem"]=838, - ["quality_display_explosive_trap_is_gem"]=1198, - ["quality_display_exsanguinate_beam_targets_is_gem"]=611, - ["quality_display_eye_of_winter_is_gem"]=59, - ["quality_display_firebeam_is_gem"]=845, - ["quality_display_firewall_is_gem"]=1092, - ["quality_display_flame_whip_is_gem"]=334, - ["quality_display_flameblast_is_gem"]=870, - ["quality_display_forbidden_rite_is_gem"]=1232, - ["quality_display_freezing_pulse_damage_at_long_range_is_gem"]=890, - ["quality_display_frenzy_is_gem"]=892, - ["quality_display_generals_cry_is_gem"]=1029, - ["quality_display_glacial_cascade_is_gem"]=928, - ["quality_display_glacial_cascade_num_spikes_is_gem"]=1452, - ["quality_display_groundslam_is_gem"]=420, - ["quality_display_herald_of_agony_is_gem"]=1032, - ["quality_display_herald_of_ash_is_gem"]=939, - ["quality_display_ice_crash_is_gem"]=358, - ["quality_display_immortal_call_is_gem"]=1083, - ["quality_display_incinerate_is_gem_hit"]=837, - ["quality_display_incinerate_is_gem_ingite"]=934, - ["quality_display_incinerate_is_gem_stages"]=835, - ["quality_display_infernal_blow_is_gem"]=979, - ["quality_display_lightning_conduit_is_gem"]=827, - ["quality_display_lightning_tower_trap_is_gem"]=1006, - ["quality_display_manabond_is_gem"]=1017, - ["quality_display_max_spikes_is_gem"]=1250, - ["quality_display_phys_cascade_trap_is_gem"]=1121, - ["quality_display_plague_bearer_is_gem"]=416, - ["quality_display_rage_vortex_is_gem"]=1152, - ["quality_display_reap_is_gem"]=609, - ["quality_display_rune_paint_area_is_gem"]=1174, - ["quality_display_rune_paint_is_gem"]=1176, - ["quality_display_sanctify_is_gem"]=1179, - ["quality_display_scourge_arrow_is_gem"]=1491, - ["quality_display_shock_chance_from_skill_is_gem"]=1207, - ["quality_display_snipe_is_gem"]=1228, - ["quality_display_spike_slam_is_gem"]=1251, - ["quality_display_storm_rain_is_gem"]=1276, - ["quality_display_stormblast_mine_is_gem"]=1550, - ["quality_display_tectonic_slam_is_gem"]=1393, - ["quality_display_venom_gyre_is_gem"]=1028, - ["quality_display_voltaxic_burst_is_gem"]=1497, - ["quality_display_wall_length_is_gem"]=158, - ["quality_display_winter_orb_is_gem"]=901, - ["quality_display_wintertide_brand_is_gem"]=968, - ["quality_display_withering_step_is_gem"]=1226, - ["queens_demand_effect"]=782, - ["quick_guard_damage_absorb_limit"]=1150, - ["quick_guard_damage_absorbed_%"]=1150, - ["radiant_sentinel_minion_burning_effect_radius"]=1151, - ["radiant_sentinel_minion_fire_%_of_life_to_deal_nearby_per_minute"]=1151, - ["rage_slash_damage_+%_final_per_amount_of_rage_sacrificed"]=1153, - ["rage_slash_maximum_vortices"]=1156, - ["rage_slash_radius_+_per_amount_of_rage_sacrificed"]=1154, - ["rage_slash_rage_sacrifice_per_damage_bonus"]=1153, - ["rage_slash_rage_sacrifice_per_radius_bonus"]=1154, - ["rage_slash_sacrifice_rage_%"]=1152, - ["rage_slash_vortex_attack_speed_+%_final"]=1155, - ["rage_storm_scaling_rage_hundred_times_base_cost"]=1157, - ["rage_storm_scaling_rage_loss_+%_per_second"]=1158, - ["rage_warcry_gain_X_rage_per_minute_per_5_monster_power_max_25_power"]=1513, - ["rage_warcry_maximum_rage_+"]=1516, - ["ragestorm_movement_speed_+%"]=1159, - ["rain_of_arrows_additional_sequence_chance_%"]=1160, - ["rain_of_arrows_sequences_to_fire"]=58, - ["raised_spectre_level"]=1161, - ["rallying_cry_buff_effect_on_minions_+%_final"]=1515, - ["rallying_cry_damage_+%_final_from_osm_per_nearby_ally"]=1519, - ["rallying_cry_weapon_damage_%_for_allies_per_5_monster_power"]=1514, - ["ranged_attack_totem_only_attacks_when_owner_attacks"]=1162, - ["ravenous_buff_magnitude"]=1163, - ["reap_life_%_granted_on_death_with_debuff"]=605, - ["reave_additional_max_stacks"]=1164, - ["reave_area_of_effect_+%_final_per_stage"]=280, - ["recall_sigil_target_search_range_+%"]=1165, - ["recover_%_life_when_stunning_an_enemy_permyriad"]=1166, - ["recover_%_maximum_life_on_cull"]=1167, - ["recover_permyriad_life_on_skill_use"]=1168, - ["reduce_enemy_chaos_resistance_%"]=1169, - ["reduce_enemy_dodge_%"]=333, - ["reduce_enemy_elemental_resistance_%"]=250, - ["refresh_bleeding_duration_on_hit_%_chance"]=1170, - ["rejuvenation_totem_%_life_regeneration_added_as_mana_regeneration"]=455, - ["remove_chill_on_enemy_when_you_hit"]=1171, + ["quality_display_disintegrate_is_gem"]=773, + ["quality_display_dual_strike_is_gem"]=815, + ["quality_display_earthquake_is_gem"]=396, + ["quality_display_earthshatter_spike_damage_is_gem"]=1281, + ["quality_display_elemental_hit_is_gem"]=823, + ["quality_display_essence_drain_is_gem"]=397, + ["quality_display_explosive_arrow_is_gem"]=848, + ["quality_display_explosive_trap_is_gem"]=1230, + ["quality_display_exsanguinate_beam_targets_is_gem"]=621, + ["quality_display_eye_of_winter_is_gem"]=60, + ["quality_display_firebeam_is_gem"]=855, + ["quality_display_firewall_is_gem"]=1123, + ["quality_display_flame_whip_is_gem"]=336, + ["quality_display_flameblast_is_gem"]=880, + ["quality_display_forbidden_rite_is_gem"]=1265, + ["quality_display_freezing_pulse_damage_at_long_range_is_gem"]=900, + ["quality_display_frenzy_is_gem"]=902, + ["quality_display_generals_cry_is_gem"]=1056, + ["quality_display_glacial_cascade_is_gem"]=939, + ["quality_display_glacial_cascade_num_spikes_is_gem"]=1494, + ["quality_display_groundslam_is_gem"]=426, + ["quality_display_herald_of_agony_is_gem"]=1059, + ["quality_display_herald_of_ash_is_gem"]=950, + ["quality_display_ice_crash_is_gem"]=364, + ["quality_display_immortal_call_is_gem"]=1111, + ["quality_display_incinerate_is_gem_hit"]=847, + ["quality_display_incinerate_is_gem_ingite"]=945, + ["quality_display_incinerate_is_gem_stages"]=845, + ["quality_display_infernal_blow_is_gem"]=994, + ["quality_display_kinetic_fusillade_is_gem"]=1006, + ["quality_display_lightning_conduit_is_gem"]=837, + ["quality_display_lightning_tower_trap_is_gem"]=1030, + ["quality_display_living_lightning_is_gem"]=1033, + ["quality_display_manabond_is_gem"]=1044, + ["quality_display_max_spikes_is_gem"]=1284, + ["quality_display_phys_cascade_trap_is_gem"]=1152, + ["quality_display_plague_bearer_is_gem"]=422, + ["quality_display_rage_vortex_is_gem"]=1184, + ["quality_display_reap_is_gem"]=619, + ["quality_display_rune_paint_area_is_gem"]=1206, + ["quality_display_rune_paint_is_gem"]=1208, + ["quality_display_sanctify_is_gem"]=1211, + ["quality_display_scourge_arrow_is_gem"]=1533, + ["quality_display_shock_chance_from_skill_is_gem"]=1239, + ["quality_display_snipe_is_gem"]=1261, + ["quality_display_spike_slam_is_gem"]=1285, + ["quality_display_storm_rain_is_gem"]=1310, + ["quality_display_stormblast_mine_is_gem"]=1597, + ["quality_display_tectonic_slam_is_gem"]=1430, + ["quality_display_venom_gyre_is_gem"]=1055, + ["quality_display_voltaxic_burst_is_gem"]=1539, + ["quality_display_wall_length_is_gem"]=159, + ["quality_display_winter_orb_is_gem"]=912, + ["quality_display_wintertide_brand_is_gem"]=983, + ["quality_display_withering_step_is_gem"]=1259, + ["queens_demand_effect"]=791, + ["quick_guard_damage_absorb_limit"]=1182, + ["quick_guard_damage_absorbed_%"]=1182, + ["radiant_sentinel_minion_burning_effect_radius"]=1183, + ["radiant_sentinel_minion_fire_%_of_life_to_deal_nearby_per_minute"]=1183, + ["rage_slash_damage_+%_final_per_amount_of_rage_sacrificed"]=1185, + ["rage_slash_maximum_vortices"]=1188, + ["rage_slash_radius_+_per_amount_of_rage_sacrificed"]=1186, + ["rage_slash_rage_sacrifice_per_damage_bonus"]=1185, + ["rage_slash_rage_sacrifice_per_radius_bonus"]=1186, + ["rage_slash_sacrifice_rage_%"]=1184, + ["rage_slash_vortex_attack_speed_+%_final"]=1187, + ["rage_storm_scaling_rage_hundred_times_base_cost"]=1189, + ["rage_storm_scaling_rage_loss_+%_per_second"]=1190, + ["rage_warcry_gain_X_rage_per_minute_per_5_monster_power_max_25_power"]=1555, + ["rage_warcry_maximum_rage_+"]=1558, + ["ragestorm_movement_speed_+%"]=1191, + ["rain_of_arrows_additional_sequence_chance_%"]=1192, + ["rain_of_arrows_sequences_to_fire"]=59, + ["raised_spectre_level"]=1193, + ["rallying_cry_buff_effect_on_minions_+%_final"]=1557, + ["rallying_cry_damage_+%_final_from_osm_per_nearby_ally"]=1561, + ["rallying_cry_weapon_damage_%_for_allies_per_5_monster_power"]=1556, + ["ranged_attack_totem_only_attacks_when_owner_attacks"]=1194, + ["ravenous_buff_magnitude"]=1195, + ["reap_life_%_granted_on_death_with_debuff"]=615, + ["reave_additional_max_stacks"]=1196, + ["reave_area_of_effect_+%_final_per_stage"]=282, + ["recall_sigil_target_search_range_+%"]=1197, + ["recover_%_life_when_stunning_an_enemy_permyriad"]=1198, + ["recover_%_maximum_life_on_cull"]=1199, + ["recover_permyriad_life_on_skill_use"]=1200, + ["reduce_enemy_chaos_resistance_%"]=1201, + ["reduce_enemy_dodge_%"]=335, + ["reduce_enemy_elemental_resistance_%"]=252, + ["refresh_bleeding_duration_on_hit_%_chance"]=1202, + ["rejuvenation_totem_%_life_regeneration_added_as_mana_regeneration"]=461, + ["remove_chill_on_enemy_when_you_hit"]=1203, ["retaliation_base_use_window_duration_ms"]=2, ["retaliation_use_window_duration"]=2, - ["returning_projectiles_always_pierce"]=422, - ["righteous_fire_and_fire_beam_regenerate_x_mana_per_second_while_enemies_are_within"]=1172, - ["righteous_fire_cast_speed_+%_final"]=205, - ["righteous_fire_spell_damage_+%_final"]=206, - ["ring_of_ice_placement_distance"]=1173, - ["rune_paint_area_of_effect_+%_final_per_rune_level"]=1174, - ["rune_paint_area_of_effect_+%_per_rune_level"]=1175, - ["rune_paint_damage_+%_final_per_rune_level"]=1176, - ["rune_paint_mana_spend_per_rune_upgrade"]=1177, - ["rune_paint_max_rune_level"]=1178, - ["sanctify_wave_damage_+%_final"]=1179, - ["scorpion_minion_attack_speed_+%"]=1180, - ["scorpion_minion_maximum_added_physical_damage"]=1182, - ["scorpion_minion_minimum_added_physical_damage"]=1182, - ["scorpion_minion_physical_damage_+%"]=1181, - ["scourge_arrow_X_pods_per_projectile"]=1183, - ["secondary_buff_effect_duration"]=91, - ["secondary_intermediary_fire_skill_dot_damage_to_deal_per_minute"]=170, + ["returning_projectiles_always_pierce"]=428, + ["righteous_fire_and_fire_beam_regenerate_x_mana_per_second_while_enemies_are_within"]=1204, + ["righteous_fire_cast_speed_+%_final"]=206, + ["righteous_fire_spell_damage_+%_final"]=207, + ["ring_of_ice_placement_distance"]=1205, + ["rune_paint_area_of_effect_+%_final_per_rune_level"]=1206, + ["rune_paint_area_of_effect_+%_per_rune_level"]=1207, + ["rune_paint_damage_+%_final_per_rune_level"]=1208, + ["rune_paint_mana_spend_per_rune_upgrade"]=1209, + ["rune_paint_max_rune_level"]=1210, + ["sanctify_wave_damage_+%_final"]=1211, + ["scorpion_minion_attack_speed_+%"]=1212, + ["scorpion_minion_maximum_added_physical_damage"]=1214, + ["scorpion_minion_minimum_added_physical_damage"]=1214, + ["scorpion_minion_physical_damage_+%"]=1213, + ["scourge_arrow_X_pods_per_projectile"]=1215, + ["secondary_buff_effect_duration"]=92, + ["secondary_intermediary_fire_skill_dot_damage_to_deal_per_minute"]=171, ["secondary_maximum_chaos_damage"]=27, ["secondary_maximum_cold_damage"]=23, ["secondary_maximum_fire_damage"]=22, @@ -47589,531 +49185,548 @@ return { ["secondary_minimum_fire_damage"]=22, ["secondary_minimum_lightning_damage"]=26, ["secondary_minimum_physical_damage"]=21, - ["secondary_minion_duration"]=99, - ["secondary_skill_effect_duration"]=94, - ["seismic_cry_armour_+%_final_per_5_power_up_to_cap"]=1503, - ["seismic_cry_base_slam_skill_area_+%"]=1522, - ["seismic_cry_base_slam_skill_area_+%_final"]=1523, - ["seismic_cry_base_slam_skill_damage_+%_final"]=1520, - ["seismic_cry_slam_skill_area_+%_increase_per_repeat"]=1524, - ["seismic_cry_slam_skill_damage_+%_final_increase_per_repeat"]=1521, - ["seismic_cry_stun_threshold_+%_per_5_power_up_to_cap"]=1504, - ["sentinel_minion_cooldown_speed_+%"]=1184, - ["shaman_voodoo_pole_redirect_damage_to_player_at_%_value"]=1185, - ["shaman_voodoo_pole_redirect_damage_to_pole_at_%_value"]=1186, - ["shatter_on_killing_blow"]=1187, - ["shattering_steel_hit_damage_+%_final_scaled_by_projectile_distance_per_ammo_consumed"]=1188, - ["shield_block_%"]=194, - ["shield_charge_damage_+%_maximum"]=103, - ["shield_charge_scaling_stun_threshold_reduction_+%_at_maximum_range"]=101, - ["shield_charge_stun_duration_+%_maximum"]=102, - ["shield_crush_damage_+%_final_from_distance"]=1189, - ["shield_crush_helmet_enchantment_aoe_+%_final"]=1190, - ["shield_spell_block_%"]=195, - ["shock_duration_+%"]=115, - ["shock_effect_+%"]=1191, - ["shock_effect_+%_with_critical_strikes"]=1192, - ["shock_maximum_magnitude_+"]=1193, - ["shock_nova_ring_chance_to_shock_+%"]=1194, - ["shock_nova_ring_damage_+%"]=405, - ["shock_nova_ring_shocks_as_if_dealing_damage_+%_final"]=1195, - ["shocked_ground_base_magnitude_override"]=1196, - ["shockwave_slam_explosion_damage_+%_final"]=403, - ["shrapnel_shot_cone_placement_distance_+"]=1197, - ["shrapnel_trap_number_of_secondary_explosions"]=1198, - ["sigil_attached_target_fire_penetration_%"]=1199, - ["sigil_attached_target_lightning_penetration_%"]=1200, - ["sigil_recall_extend_base_secondary_skill_effect_duration"]=1201, - ["sigil_recall_extend_base_skill_effect_duration"]=1202, - ["sigils_can_target_reaper_minions"]=1203, - ["siphon_life_leech_from_damage_permyriad"]=391, + ["secondary_minion_duration"]=100, + ["secondary_skill_effect_duration"]=95, + ["seismic_cry_armour_+%_final_per_5_power_up_to_cap"]=1545, + ["seismic_cry_base_slam_skill_area_+%"]=1564, + ["seismic_cry_base_slam_skill_area_+%_final"]=1565, + ["seismic_cry_base_slam_skill_damage_+%_final"]=1562, + ["seismic_cry_slam_skill_area_+%_increase_per_repeat"]=1566, + ["seismic_cry_slam_skill_damage_+%_final_increase_per_repeat"]=1563, + ["seismic_cry_stun_threshold_+%_per_5_power_up_to_cap"]=1546, + ["sentinel_minion_cooldown_speed_+%"]=1216, + ["shaman_voodoo_pole_redirect_damage_to_player_at_%_value"]=1217, + ["shaman_voodoo_pole_redirect_damage_to_pole_at_%_value"]=1218, + ["shatter_on_killing_blow"]=1219, + ["shattering_steel_hit_damage_+%_final_scaled_by_projectile_distance_per_ammo_consumed"]=1220, + ["shield_block_%"]=195, + ["shield_charge_damage_+%_maximum"]=104, + ["shield_charge_scaling_stun_threshold_reduction_+%_at_maximum_range"]=102, + ["shield_charge_stun_duration_+%_maximum"]=103, + ["shield_crush_damage_+%_final_from_distance"]=1221, + ["shield_crush_helmet_enchantment_aoe_+%_final"]=1222, + ["shield_spell_block_%"]=196, + ["shock_duration_+%"]=116, + ["shock_effect_+%"]=1223, + ["shock_effect_+%_with_critical_strikes"]=1224, + ["shock_maximum_magnitude_+"]=1225, + ["shock_nova_ring_chance_to_shock_+%"]=1226, + ["shock_nova_ring_damage_+%"]=411, + ["shock_nova_ring_shocks_as_if_dealing_damage_+%_final"]=1227, + ["shocked_ground_base_magnitude_override"]=1228, + ["shockwave_slam_explosion_damage_+%_final"]=409, + ["shrapnel_shot_cone_placement_distance_+"]=1229, + ["shrapnel_trap_number_of_secondary_explosions"]=1230, + ["sigil_attached_target_fire_penetration_%"]=1231, + ["sigil_attached_target_lightning_penetration_%"]=1232, + ["sigil_recall_extend_base_secondary_skill_effect_duration"]=1233, + ["sigil_recall_extend_base_skill_effect_duration"]=1234, + ["sigils_can_target_reaper_minions"]=1235, + ["siphon_life_leech_from_damage_permyriad"]=397, ["skeletal_chains_aoe_%_health_dealt_as_chaos_damage"]=3, - ["skeletal_chains_no_minions_damage_+%_final"]=252, - ["skeletal_chains_no_minions_radius_+"]=253, - ["skeletal_chains_no_minions_targets_self"]=251, - ["skill_angle_+%_in_sand_stance"]=1204, - ["skill_area_angle_+%"]=1205, - ["skill_area_of_effect_+%_final_in_sand_stance"]=1206, - ["skill_buff_effect_+%"]=406, - ["skill_buff_grants_attack_and_cast_speed_+%"]=1208, - ["skill_buff_grants_chance_to_poison_%"]=395, - ["skill_buff_grants_critical_strike_chance_+%"]=130, - ["skill_can_only_use_bow"]=1384, - ["skill_can_only_use_non_melee_weapons"]=1387, - ["skill_code_movement_speed_+%_final"]=1209, - ["skill_convert_%_physical_damage_to_random_element"]=1210, - ["skill_damage_+%_final_per_chain_from_skill_specific_stat"]=1211, + ["skeletal_chains_no_minions_damage_+%_final"]=254, + ["skeletal_chains_no_minions_radius_+"]=255, + ["skeletal_chains_no_minions_targets_self"]=253, + ["skill_angle_+%_in_sand_stance"]=1236, + ["skill_area_angle_+%"]=1237, + ["skill_area_of_effect_+%_final_in_sand_stance"]=1238, + ["skill_buff_effect_+%"]=412, + ["skill_buff_grants_attack_and_cast_speed_+%"]=1240, + ["skill_buff_grants_chance_to_poison_%"]=401, + ["skill_buff_grants_critical_strike_chance_+%"]=131, + ["skill_buff_grants_damage_+%_final_per_herald_skill_affecting_you"]=1241, + ["skill_can_only_use_bow"]=1421, + ["skill_can_only_use_non_melee_weapons"]=1424, + ["skill_code_movement_speed_+%_final"]=1242, + ["skill_convert_%_physical_damage_to_random_element"]=1243, + ["skill_damage_+%_final_per_chain_from_skill_specific_stat"]=1244, ["skill_disabled_unless_cloned"]=4, - ["skill_display_number_of_remote_mines_allowed"]=225, - ["skill_display_number_of_totems_allowed"]=223, - ["skill_display_number_of_traps_allowed"]=224, - ["skill_display_single_base_projectile"]=58, - ["skill_effect_and_damaging_ailment_duration_+%"]=1212, - ["skill_effect_duration"]=92, - ["skill_effect_duration_+%_per_removable_frenzy_charge"]=193, - ["skill_effect_duration_+%_while_dead"]=1214, - ["skill_effect_duration_per_100_int"]=1213, - ["skill_empower_limitation_specifier_for_stat_description"]=1517, - ["skill_empowers_next_x_melee_attacks"]=1517, - ["skill_grant_elusive_when_used"]=1215, - ["skill_has_trigger_from_unique_item"]=1216, - ["skill_is_ice_storm"]=856, + ["skill_display_number_of_remote_mines_allowed"]=227, + ["skill_display_number_of_totems_allowed"]=225, + ["skill_display_number_of_traps_allowed"]=226, + ["skill_display_single_base_projectile"]=59, + ["skill_effect_and_damaging_ailment_duration_+%"]=1245, + ["skill_effect_duration"]=93, + ["skill_effect_duration_+%_per_removable_frenzy_charge"]=194, + ["skill_effect_duration_+%_while_dead"]=1247, + ["skill_effect_duration_per_100_int"]=1246, + ["skill_empower_limitation_specifier_for_stat_description"]=1559, + ["skill_empowers_next_x_melee_attacks"]=1559, + ["skill_grant_elusive_when_used"]=1248, + ["skill_has_trigger_from_unique_item"]=1249, + ["skill_is_ice_storm"]=866, ["skill_is_steel_skill_reload"]=5, - ["skill_max_unleash_seals"]=1546, - ["skill_maximum_travel_distance_+%"]=1217, - ["skill_minion_explosion_life_%"]=37, - ["skill_number_of_triggers"]=1218, - ["skill_travel_distance_+%"]=1219, - ["skill_triggered_by_nearby_allies_kill_or_hit_rare_unique_%_chance"]=1220, - ["skill_triggered_by_snipe"]=1221, - ["skill_triggered_when_you_focus_chance_%"]=1222, - ["skill_used_by_mirage_chieftain_damage_+%_final"]=1223, - ["skill_used_by_mirage_warrior_damage_+%_final"]=1224, - ["skill_used_by_sacred_wisp_damage_+%_final"]=1225, - ["skill_withered_duration_ms"]=139, - ["slam_ancestor_totem_grant_owner_melee_damage_+%"]=68, - ["slam_ancestor_totem_grant_owner_melee_damage_+%_final"]=64, - ["slash_ancestor_totem_grant_owner_physical_damage_added_as_fire_+%"]=66, - ["slither_wither_stacks"]=1226, - ["smite_lightning_target_range"]=569, - ["snapping_adder_%_chance_to_retain_projectile_on_release"]=1227, - ["snapping_adder_released_projectile_damage_+%_final"]=421, - ["snipe_max_stacks"]=1228, - ["snipe_triggered_skill_ailment_damage_+%_final_per_stage"]=1229, - ["snipe_triggered_skill_hit_damage_+%_final_per_stage"]=1230, - ["soulfeast_chaos_damage_to_self"]=1231, - ["soulfeast_number_of_secondary_projectiles"]=1232, - ["spectral_helix_rotations_%"]=1233, - ["spectral_spiral_weapon_number_of_bounces"]=1234, - ["spectral_throw_an_spectral_helix_active_skill_projectile_speed_+%_variation_final"]=1235, - ["spectral_throw_projectile_deceleration_+%"]=453, - ["spectre_duration"]=100, - ["spell_area_damage_+%_in_blood_stance"]=1236, - ["spell_area_of_effect_+%_in_sand_stance"]=1237, - ["spell_cast_time_cannot_be_modified"]=1238, - ["spell_damage_+%"]=209, - ["spell_damage_modifiers_apply_to_skill_dot"]=38, - ["spell_echo_plus_chance_double_damage_%_final"]=1239, - ["spell_has_trigger_from_crafted_item_mod"]=1240, - ["spell_impale_on_crit_%_chance"]=1241, - ["spell_maximum_added_cold_damage"]=344, - ["spell_maximum_added_lightning_damage"]=345, - ["spell_maximum_base_cold_damage_+_per_10_intelligence"]=32, - ["spell_maximum_base_cold_damage_per_removable_frenzy_charge"]=31, + ["skill_max_unleash_seals"]=1593, + ["skill_maximum_travel_distance_+%"]=1250, + ["skill_minion_explosion_life_%"]=38, + ["skill_number_of_triggers"]=1251, + ["skill_travel_distance_+%"]=1252, + ["skill_triggered_by_nearby_allies_kill_or_hit_rare_unique_%_chance"]=1253, + ["skill_triggered_by_snipe"]=1254, + ["skill_triggered_when_you_focus_chance_%"]=1255, + ["skill_used_by_mirage_chieftain_damage_+%_final"]=1256, + ["skill_used_by_mirage_warrior_damage_+%_final"]=1257, + ["skill_used_by_sacred_wisp_damage_+%_final"]=1258, + ["skill_withered_duration_ms"]=140, + ["slam_ancestor_totem_grant_owner_melee_damage_+%"]=69, + ["slam_ancestor_totem_grant_owner_melee_damage_+%_final"]=65, + ["slash_ancestor_totem_grant_owner_physical_damage_added_as_fire_+%"]=67, + ["slither_wither_stacks"]=1259, + ["smite_lightning_target_range"]=579, + ["snapping_adder_%_chance_to_retain_projectile_on_release"]=1260, + ["snapping_adder_released_projectile_damage_+%_final"]=427, + ["snipe_max_stacks"]=1261, + ["snipe_triggered_skill_ailment_damage_+%_final_per_stage"]=1262, + ["snipe_triggered_skill_hit_damage_+%_final_per_stage"]=1263, + ["soulfeast_chaos_damage_to_self"]=1264, + ["soulfeast_number_of_secondary_projectiles"]=1265, + ["spectral_helix_rotations_%"]=1266, + ["spectral_spiral_weapon_number_of_bounces"]=1267, + ["spectral_throw_an_spectral_helix_active_skill_projectile_speed_+%_variation_final"]=1268, + ["spectral_throw_projectile_deceleration_+%"]=459, + ["spectre_duration"]=101, + ["spell_area_damage_+%_in_blood_stance"]=1269, + ["spell_area_of_effect_+%_in_sand_stance"]=1270, + ["spell_cast_time_cannot_be_modified"]=1271, + ["spell_damage_+%"]=210, + ["spell_damage_modifiers_apply_to_skill_dot"]=39, + ["spell_echo_plus_chance_double_damage_%_final"]=1272, + ["spell_has_trigger_from_crafted_item_mod"]=1273, + ["spell_impale_on_crit_%_chance"]=1274, + ["spell_maximum_added_cold_damage"]=350, + ["spell_maximum_added_lightning_damage"]=351, + ["spell_maximum_base_cold_damage_+_per_10_intelligence"]=33, + ["spell_maximum_base_cold_damage_per_removable_frenzy_charge"]=32, ["spell_maximum_base_fire_damage_per_removable_endurance_charge"]=29, ["spell_maximum_base_lightning_damage_per_removable_power_charge"]=28, - ["spell_maximum_base_physical_damage_per_shield_quality"]=1242, + ["spell_maximum_base_physical_damage_%_of_ward"]=1275, + ["spell_maximum_base_physical_damage_per_shield_quality"]=1276, ["spell_maximum_chaos_damage"]=20, ["spell_maximum_cold_damage"]=18, ["spell_maximum_fire_damage"]=17, ["spell_maximum_lightning_damage"]=19, ["spell_maximum_physical_damage"]=16, - ["spell_minimum_added_cold_damage"]=344, - ["spell_minimum_added_lightning_damage"]=345, - ["spell_minimum_base_cold_damage_+_per_10_intelligence"]=32, - ["spell_minimum_base_cold_damage_per_removable_frenzy_charge"]=31, + ["spell_minimum_added_cold_damage"]=350, + ["spell_minimum_added_lightning_damage"]=351, + ["spell_minimum_base_cold_damage_+_per_10_intelligence"]=33, + ["spell_minimum_base_cold_damage_per_removable_frenzy_charge"]=32, ["spell_minimum_base_fire_damage_per_removable_endurance_charge"]=29, ["spell_minimum_base_lightning_damage_per_removable_power_charge"]=28, - ["spell_minimum_base_physical_damage_per_shield_quality"]=1242, + ["spell_minimum_base_physical_damage_%_of_ward"]=1275, + ["spell_minimum_base_physical_damage_per_shield_quality"]=1276, ["spell_minimum_chaos_damage"]=20, ["spell_minimum_cold_damage"]=18, ["spell_minimum_fire_damage"]=17, ["spell_minimum_lightning_damage"]=19, ["spell_minimum_physical_damage"]=16, - ["spell_repeat_count"]=55, - ["spells_chance_to_hinder_on_hit_%"]=1243, - ["spellslinger_mana_reservation"]=1244, - ["spellslinger_trigger_on_wand_attack_%"]=302, - ["spider_aspect_max_web_count"]=1245, - ["spike_slam_additional_spike_%_chance"]=1246, - ["spike_slam_explosion_damage_+%_final"]=1247, - ["spike_slam_fissure_damage_+%_final"]=1248, - ["spike_slam_fissure_length_+%"]=1249, - ["spike_slam_max_spikes"]=1250, - ["spike_slam_num_spikes"]=1251, - ["spike_slam_spike_damage_+%_final"]=1252, - ["spirit_offering_critical_strike_chance_+%"]=1253, - ["spirit_offering_critical_strike_multiplier_+"]=1254, - ["spiritual_cry_double_movement_velocity_+%"]=1255, - ["spiritual_cry_doubles_summoned_per_5_MP"]=1510, - ["splitting_steel_area_+%_final_after_splitting"]=1256, - ["static_strike_beam_damage_+%_final"]=1257, - ["static_strike_beam_damage_+%_final_while_moving"]=1258, - ["static_strike_explosion_damage_+%_final"]=348, - ["static_strike_number_of_beam_targets"]=1259, - ["stationary_shield_throw_projectiles_per_interval"]=1260, - ["stealth_+%"]=1261, - ["steel_ammo_consumed_per_use"]=1262, - ["steel_ammo_consumed_per_use_by_totem"]=1263, - ["steel_skill_%_chance_to_not_consume_ammo"]=1264, - ["steel_steal_area_of_effect_+%"]=1265, - ["steel_steal_reflect_damage_+%"]=1266, - ["stone_golem_grants_base_life_regeneration_rate_per_minute"]=365, - ["stone_golem_grants_defences_+%"]=367, - ["stone_golem_grants_melee_damage_removed_from_stone_golem_before_life_or_es_%"]=366, - ["storm_blade_has_local_attack_speed_+%"]=1267, - ["storm_blade_has_local_lightning_penetration_%"]=1268, - ["storm_blade_quality_attack_lightning_damage_%_to_convert_to_chaos"]=1269, - ["storm_blade_quality_chance_to_shock_%"]=1270, - ["storm_blade_quality_local_critical_strike_chance_+%"]=1271, - ["storm_burst_explosion_area_of_effect_+%"]=1272, - ["storm_burst_new_damage_+%_final_per_remaining_teleport_zap"]=1273, - ["storm_burst_zap_area_of_effect_+%"]=1274, - ["storm_call_chance_to_strike_on_cast_%"]=1275, - ["storm_rain_pulse_count"]=1276, - ["summon_cold_resistance_+"]=276, - ["summon_fire_resistance_+"]=275, - ["summon_lightning_resistance_+"]=277, - ["summon_mirage_archer_on_hit"]=1277, - ["summon_mirage_warrior_on_crit"]=1278, - ["summon_sacred_wisps_on_hit"]=1279, - ["summon_totem_cast_speed_+%"]=379, - ["summoned_raging_spirit_chance_to_spawn_additional_minion_%"]=1280, - ["summoned_spider_grants_attack_speed_+%"]=1281, - ["summoned_spider_grants_poison_damage_+%"]=1282, - ["sunder_number_of_fake_chains"]=1289, - ["sunder_shockwave_area_of_effect_+%"]=1283, - ["sunder_shockwave_limit_per_cascade"]=1284, - ["sunder_wave_area_of_effect_+%"]=1285, - ["sunder_wave_delay_+%"]=1286, - ["sunder_wave_max_steps"]=1287, - ["sunder_wave_min_steps"]=1288, - ["sunder_wave_radius_+_per_step"]=1289, - ["support_additional_trap_%_chance_for_1_additional_trap"]=1293, - ["support_additional_trap_mine_%_chance_for_1_additional_trap_mine"]=1290, - ["support_additional_trap_mine_%_chance_for_2_additional_trap_mine"]=1291, - ["support_additional_trap_mine_%_chance_for_3_additional_trap_mine"]=1292, - ["support_ancestral_slam_big_hit_area_+%"]=445, - ["support_ancestral_slam_big_hit_damage_with_hits_and_ailments_+%_final"]=444, - ["support_anticipation_charge_gain_interval_ms"]=1546, - ["support_anticipation_rapid_fire_count"]=1546, - ["support_arcane_surge_cast_speed_+%"]=425, - ["support_arcane_surge_duration_ms"]=426, - ["support_arcane_surge_gain_buff_on_mana_use_threshold"]=424, - ["support_arcane_surge_mana_regeneration_rate_+%"]=425, - ["support_attack_totem_attack_speed_+%_final"]=323, - ["support_aura_duration_buff_duration"]=1294, - ["support_autocast_instant_spells"]=1295, - ["support_autocast_warcries"]=1296, - ["support_better_ailments_ailment_damage_+%_final"]=1297, - ["support_bloodlust_melee_physical_damage_+%_final_vs_bleeding_enemies"]=377, - ["support_blunt_chance_to_trigger_shockwave_on_hit_%"]=1298, - ["support_chance_to_bleed_bleeding_damage_+%_final"]=1299, - ["support_chilling_areas_also_grant_cold_damage_taken_+%_equal_to_slow_amount"]=1301, - ["support_chilling_areas_also_grant_cold_damage_taken_per_minute_+%"]=1300, - ["support_chills_also_grant_cold_damage_taken_+%_equal_to_slow_amount"]=1303, - ["support_chills_also_grant_cold_damage_taken_per_minute_+%"]=1302, - ["support_concentrated_effect_skill_area_of_effect_+%_final"]=85, - ["support_conflagration_ignites_from_stunning_melee_hits_count_as_coming_from_critical_strike"]=1304, - ["support_conflagration_ignites_from_stunning_melee_hits_deal_damage_+%_final_per_200ms_stun"]=1305, - ["support_conflagration_ignites_from_stunning_melee_hits_duration_+%"]=1306, - ["support_controlled_destruction_critical_strike_chance_+%_final"]=131, - ["support_corrupting_cry_area_of_effect_+%_final"]=1307, - ["support_corrupting_cry_corrupted_blood_duration_ms"]=1308, - ["support_corrupting_cry_exerted_attack_applies_X_stacks_of_corrupted_blood_on_first_hit"]=1309, - ["support_corrupting_cry_physical_damage_to_deal_per_minute"]=1310, - ["support_corrupting_cry_warcry_applies_X_stacks_of_corrupted_blood"]=1311, - ["support_cruelty_duration_ms"]=427, - ["support_damaging_links_duration_ms"]=1312, - ["support_debilitate_hit_damage_+%_final_per_poison_stack"]=1313, - ["support_debilitate_hit_damage_max_poison_stacks"]=1313, - ["support_energy_shield_leech_damage_+%_while_leeching_energy_shield_final"]=1314, - ["support_executioner_buff_duration_ms"]=1315, - ["support_executioner_damage_vs_enemies_on_low_life_+%_final"]=1316, - ["support_executioner_refresh_stolen_mod_on_hitting_rare_or_unique_monster_chance_%"]=1317, - ["support_faster_ailments_ailment_duration_+%_final"]=1318, - ["support_flamewood_totems_trigger_infernal_bolt_when_hit"]=1319, - ["support_focus_channel_cost_+%_final_per_second_channelling_up_to_100%"]=1321, - ["support_focus_channel_damage_+%_final_per_second_channelling_up_to_60%"]=1320, - ["support_focused_ballista_totem_attack_speed_+%_final"]=1322, - ["support_ghost_duration"]=1323, - ["support_greater_spell_echo_area_of_effect_+%_per_repeat"]=1324, - ["support_greater_spell_echo_spell_damage_+%_final_per_repeat"]=1325, - ["support_guardians_blessing_minion_physical_damage_%_of_maximum_life_and_ES_taken_per_minute"]=1326, - ["support_hypothermia_damage_+%_vs_chilled_enemies_final"]=387, - ["support_ignite_prolif_ignite_damage_+%_final"]=1327, - ["support_ignite_proliferation_radius"]=213, - ["support_innervate_buff_duration_ms"]=430, - ["support_innervate_chance_to_gain_buff_on_shock_vs_unique_%"]=1328, - ["support_innervate_gain_buff_on_killing_shocked_enemy"]=428, - ["support_innervate_maximum_added_lightning_damage"]=429, - ["support_innervate_minimum_added_lightning_damage"]=429, - ["support_lifetap_buff_duration"]=1329, - ["support_lifetap_spent_life_threshold"]=1330, - ["support_locus_mine_cannot_detonate_mines_within_X_units"]=1331, - ["support_locus_mine_mines_always_target_your_location"]=1332, - ["support_locus_mine_throw_mines_in_an_arc"]=1333, - ["support_maim_chance_physical_damage_+%_final"]=1334, - ["support_maimed_enemies_physical_damage_taken_+%"]=1335, - ["support_minefield_mine_throwing_speed_+%_final"]=1336, - ["support_minion_defensive_stance_minion_damage_+%_final_against_enemies_near_you"]=1338, - ["support_minion_defensive_stance_minion_damage_taken_+%_final"]=1339, - ["support_minion_maximum_life_+%_final"]=151, - ["support_minion_offensive_stance_minion_damage_+%_final_while_you_have_puppet_master"]=1340, - ["support_minion_totem_resistance_elemental_damage_+%_final"]=1341, - ["support_mirage_archer_attack_speed_+%_final"]=1342, - ["support_mirage_archer_duration"]=1343, - ["support_momentum_attack_speed_+%_per_stack"]=1344, - ["support_momentum_base_buff_duration_ms"]=1345, - ["support_momentum_buff_duration_ms"]=1345, - ["support_momentum_max_stacks"]=1345, - ["support_momentum_movement_speed_+%_per_stack_removed"]=1346, - ["support_momentum_stack_while_channelling_base_ms"]=1347, - ["support_momentum_stack_while_channelling_ms"]=1347, - ["support_multicast_cast_speed_+%_final"]=71, - ["support_multiple_attacks_melee_attack_speed_+%_final"]=274, - ["support_multiple_projectiles_critical_strike_chance_+%_final"]=134, + ["spell_repeat_count"]=56, + ["spells_chance_to_hinder_on_hit_%"]=1277, + ["spellslinger_mana_reservation"]=1278, + ["spellslinger_trigger_on_wand_attack_%"]=304, + ["spider_aspect_max_web_count"]=1279, + ["spike_slam_additional_spike_%_chance"]=1280, + ["spike_slam_explosion_damage_+%_final"]=1281, + ["spike_slam_fissure_damage_+%_final"]=1282, + ["spike_slam_fissure_length_+%"]=1283, + ["spike_slam_max_spikes"]=1284, + ["spike_slam_num_spikes"]=1285, + ["spike_slam_spike_damage_+%_final"]=1286, + ["spirit_offering_critical_strike_chance_+%"]=1287, + ["spirit_offering_critical_strike_multiplier_+"]=1288, + ["spiritual_cry_double_movement_velocity_+%"]=1289, + ["spiritual_cry_doubles_summoned_per_5_MP"]=1552, + ["splitting_steel_area_+%_final_after_splitting"]=1290, + ["static_strike_beam_damage_+%_final"]=1291, + ["static_strike_beam_damage_+%_final_while_moving"]=1292, + ["static_strike_explosion_damage_+%_final"]=354, + ["static_strike_number_of_beam_targets"]=1293, + ["stationary_shield_throw_projectiles_per_interval"]=1294, + ["stealth_+%"]=1295, + ["steel_ammo_consumed_per_use"]=1296, + ["steel_ammo_consumed_per_use_by_totem"]=1297, + ["steel_skill_%_chance_to_not_consume_ammo"]=1298, + ["steel_steal_area_of_effect_+%"]=1299, + ["steel_steal_reflect_damage_+%"]=1300, + ["stone_golem_grants_base_life_regeneration_rate_per_minute"]=371, + ["stone_golem_grants_defences_+%"]=373, + ["stone_golem_grants_melee_damage_removed_from_stone_golem_before_life_or_es_%"]=372, + ["storm_blade_has_local_attack_speed_+%"]=1301, + ["storm_blade_has_local_lightning_penetration_%"]=1302, + ["storm_blade_quality_attack_lightning_damage_%_to_convert_to_chaos"]=1303, + ["storm_blade_quality_chance_to_shock_%"]=1304, + ["storm_blade_quality_local_critical_strike_chance_+%"]=1305, + ["storm_burst_explosion_area_of_effect_+%"]=1306, + ["storm_burst_new_damage_+%_final_per_remaining_teleport_zap"]=1307, + ["storm_burst_zap_area_of_effect_+%"]=1308, + ["storm_call_chance_to_strike_on_cast_%"]=1309, + ["storm_rain_pulse_count"]=1310, + ["summon_cold_resistance_+"]=278, + ["summon_fire_resistance_+"]=277, + ["summon_lightning_resistance_+"]=279, + ["summon_living_lightning_on_lightning_hit"]=1311, + ["summon_mirage_archer_on_hit"]=1312, + ["summon_mirage_warrior_on_crit"]=1313, + ["summon_sacred_wisps_on_hit"]=1314, + ["summon_totem_cast_speed_+%"]=385, + ["summoned_raging_spirit_chance_to_spawn_additional_minion_%"]=1315, + ["summoned_spider_grants_attack_speed_+%"]=1316, + ["summoned_spider_grants_poison_damage_+%"]=1317, + ["sunder_number_of_fake_chains"]=1324, + ["sunder_shockwave_area_of_effect_+%"]=1318, + ["sunder_shockwave_limit_per_cascade"]=1319, + ["sunder_wave_area_of_effect_+%"]=1320, + ["sunder_wave_delay_+%"]=1321, + ["sunder_wave_max_steps"]=1322, + ["sunder_wave_min_steps"]=1323, + ["sunder_wave_radius_+_per_step"]=1324, + ["support_additional_trap_%_chance_for_1_additional_trap"]=1328, + ["support_additional_trap_mine_%_chance_for_1_additional_trap_mine"]=1325, + ["support_additional_trap_mine_%_chance_for_2_additional_trap_mine"]=1326, + ["support_additional_trap_mine_%_chance_for_3_additional_trap_mine"]=1327, + ["support_ancestral_slam_big_hit_area_+%"]=451, + ["support_ancestral_slam_big_hit_damage_with_hits_and_ailments_+%_final"]=450, + ["support_anticipation_charge_gain_interval_ms"]=1593, + ["support_anticipation_rapid_fire_count"]=1593, + ["support_arcane_surge_cast_speed_+%"]=431, + ["support_arcane_surge_duration_ms"]=432, + ["support_arcane_surge_gain_buff_on_mana_use_threshold"]=430, + ["support_arcane_surge_mana_regeneration_rate_+%"]=431, + ["support_attack_totem_attack_speed_+%_final"]=325, + ["support_aura_duration_buff_duration"]=1329, + ["support_autocast_instant_spells"]=1330, + ["support_autocast_warcries"]=1331, + ["support_better_ailments_ailment_damage_+%_final"]=1332, + ["support_bloodlust_melee_physical_damage_+%_final_vs_bleeding_enemies"]=383, + ["support_blunt_chance_to_trigger_shockwave_on_hit_%"]=1333, + ["support_chance_to_bleed_bleeding_damage_+%_final"]=1334, + ["support_chilling_areas_also_grant_cold_damage_taken_+%_equal_to_slow_amount"]=1336, + ["support_chilling_areas_also_grant_cold_damage_taken_per_minute_+%"]=1335, + ["support_chills_also_grant_cold_damage_taken_+%_equal_to_slow_amount"]=1338, + ["support_chills_also_grant_cold_damage_taken_per_minute_+%"]=1337, + ["support_concentrated_effect_skill_area_of_effect_+%_final"]=86, + ["support_conflagration_ignites_from_stunning_melee_hits_count_as_coming_from_critical_strike"]=1339, + ["support_conflagration_ignites_from_stunning_melee_hits_deal_damage_+%_final_per_200ms_stun"]=1340, + ["support_conflagration_ignites_from_stunning_melee_hits_duration_+%"]=1341, + ["support_controlled_destruction_critical_strike_chance_+%_final"]=132, + ["support_corrupting_cry_area_of_effect_+%_final"]=1342, + ["support_corrupting_cry_corrupted_blood_duration_ms"]=1343, + ["support_corrupting_cry_exerted_attack_applies_X_stacks_of_corrupted_blood_on_first_hit"]=1344, + ["support_corrupting_cry_physical_damage_to_deal_per_minute"]=1345, + ["support_corrupting_cry_warcry_applies_X_stacks_of_corrupted_blood"]=1346, + ["support_cruelty_duration_ms"]=433, + ["support_damaging_links_duration_ms"]=1347, + ["support_debilitate_hit_damage_+%_final_per_poison_stack"]=1348, + ["support_debilitate_hit_damage_max_poison_stacks"]=1348, + ["support_energy_shield_leech_damage_+%_while_leeching_energy_shield_final"]=1349, + ["support_executioner_buff_duration_ms"]=1350, + ["support_executioner_damage_vs_enemies_on_low_life_+%_final"]=1351, + ["support_executioner_refresh_stolen_mod_on_hitting_rare_or_unique_monster_chance_%"]=1352, + ["support_faster_ailments_ailment_duration_+%_final"]=1353, + ["support_flamewood_totems_trigger_infernal_bolt_when_hit"]=1354, + ["support_focus_channel_cost_+%_final_per_second_channelling_up_to_100%"]=1356, + ["support_focus_channel_damage_+%_final_per_second_channelling_up_to_60%"]=1355, + ["support_focused_ballista_totem_attack_speed_+%_final"]=1357, + ["support_ghost_duration"]=1358, + ["support_greater_spell_echo_area_of_effect_+%_per_repeat"]=1359, + ["support_greater_spell_echo_spell_damage_+%_final_per_repeat"]=1360, + ["support_guardians_blessing_minion_physical_damage_%_of_maximum_life_and_ES_taken_per_minute"]=1361, + ["support_hypothermia_damage_+%_vs_chilled_enemies_final"]=393, + ["support_ignite_prolif_ignite_damage_+%_final"]=1362, + ["support_ignite_proliferation_radius"]=214, + ["support_innervate_buff_duration_ms"]=436, + ["support_innervate_chance_to_gain_buff_on_shock_vs_unique_%"]=1363, + ["support_innervate_gain_buff_on_killing_shocked_enemy"]=434, + ["support_innervate_maximum_added_lightning_damage"]=435, + ["support_innervate_minimum_added_lightning_damage"]=435, + ["support_kinetic_instability_chance_to_create_instability_on_kill_%"]=1364, + ["support_lifetap_buff_duration"]=1365, + ["support_lifetap_spent_life_threshold"]=1366, + ["support_locus_mine_cannot_detonate_mines_within_X_units"]=1367, + ["support_locus_mine_mines_always_target_your_location"]=1368, + ["support_locus_mine_throw_mines_in_an_arc"]=1369, + ["support_maim_chance_physical_damage_+%_final"]=1370, + ["support_maimed_enemies_physical_damage_taken_+%"]=1371, + ["support_minefield_mine_throwing_speed_+%_final"]=1372, + ["support_minion_defensive_stance_minion_damage_+%_final_against_enemies_near_you"]=1374, + ["support_minion_defensive_stance_minion_damage_taken_+%_final"]=1375, + ["support_minion_maximum_life_+%_final"]=152, + ["support_minion_offensive_stance_minion_damage_+%_final_while_you_have_puppet_master"]=1376, + ["support_minion_totem_resistance_elemental_damage_+%_final"]=1377, + ["support_mirage_archer_attack_speed_+%_final"]=1378, + ["support_mirage_archer_duration"]=1379, + ["support_momentum_attack_speed_+%_per_stack"]=1380, + ["support_momentum_base_buff_duration_ms"]=1381, + ["support_momentum_buff_duration_ms"]=1381, + ["support_momentum_max_stacks"]=1381, + ["support_momentum_movement_speed_+%_per_stack_removed"]=1382, + ["support_momentum_stack_while_channelling_base_ms"]=1383, + ["support_momentum_stack_while_channelling_ms"]=1383, + ["support_multicast_cast_speed_+%_final"]=72, + ["support_multiple_attacks_melee_attack_speed_+%_final"]=276, + ["support_multiple_projectiles_critical_strike_chance_+%_final"]=135, ["support_overexertion_damage_+%_final_if_exerted"]=14, ["support_overexertion_damage_+%_final_per_warcry_exerting_action"]=13, - ["support_overpowered_duration_ms"]=1348, - ["support_parallel_projectile_number_of_points_per_side"]=1349, - ["support_power_charge_on_crit_damage_+%_final_per_power_charge"]=1350, - ["support_projectile_attack_speed_+%_final"]=321, - ["support_pulverise_area_of_effect_+%_final"]=1351, - ["support_pure_shock_shock_as_though_damage_+%_final"]=1352, - ["support_rage_gain_rage_on_melee_hit_cooldown_ms"]=1353, - ["support_recent_ignites_damage_per_recent_ignite_+%_final"]=1354, - ["support_recent_ignites_damage_per_recent_ignite_+%_final_minimum"]=1354, - ["support_recent_ignites_ignite_damage_per_recent_ignite_+%_final"]=1355, - ["support_recent_ignites_ignite_damage_per_recent_ignite_+%_final_maximum"]=1355, - ["support_recent_minions_additional_critical_strike_chance_from_wakened_fury"]=1357, - ["support_recent_minions_additional_critical_strike_multiplier_from_wakened_fury"]=1357, - ["support_recent_minions_effect_duration_is_%_summon_duration"]=1357, - ["support_recent_minions_life_leech_from_any_damage_permyriad_from_wakened_fury"]=1356, - ["support_recent_minions_max_effect_duration_ms"]=1357, - ["support_recent_minions_virtual_gain_adrenaline_and_wakened_fury_when_summoned_ms"]=1357, - ["support_recent_phantasms_gain_adrenaline_and_wakened_fury_when_summoned_ms"]=1357, - ["support_reduce_enemy_block_and_spell_block_%"]=1358, - ["support_remote_mine_2_chance_to_deal_double_damage_%_against_enemies_near_mines"]=1552, - ["support_remote_mine_damage_+%_final_per_mine_detonation_cascade"]=1359, - ["support_return_returning_projectiles_damage_+%_final"]=1360, - ["support_rupture_bleeding_damage_taken_+%_final"]=1362, - ["support_rupture_bleeding_time_passed_+%_final"]=1363, - ["support_ruthless_big_hit_damage_+%_final"]=432, - ["support_ruthless_big_hit_max_count"]=431, - ["support_ruthless_big_hit_stun_base_duration_override_ms"]=434, - ["support_ruthless_blow_ailment_damage_from_melee_hits_+%_final"]=433, - ["support_sacred_wisps_wisp_%_chance_to_attack"]=1364, - ["support_sacred_wisps_wisp_additional_%_chance_to_attack_when_rare_or_unique_enemy_in_presence"]=1365, - ["support_sacrifice_gain_%_of_sacrificed_life_as_added_chaos_damage"]=1366, - ["support_sacrifice_sacrifice_%_of_current_life"]=1366, - ["support_scion_onslaught_for_3_seconds_on_hitting_unique_enemy_%_chance"]=1367, - ["support_scion_onslaught_on_killing_blow_%_chance"]=1368, - ["support_scion_onslaught_on_killing_blow_duration_ms"]=1368, - ["support_scion_onslaught_on_unique_hit_duration_ms"]=1367, - ["support_slashing_buff_attack_speed_+%_final_to_grant"]=1370, - ["support_slashing_buff_duration_ms"]=1369, - ["support_slashing_damage_+%_final_from_distance"]=1371, - ["support_spell_boost_area_damage_+%_final_per_charge"]=1372, - ["support_spell_boost_area_of_effect_+%_final_per_charge"]=1372, - ["support_spell_cascade_area_delay_+%"]=1373, - ["support_spell_cascade_area_of_effect_+%_final"]=1374, - ["support_spell_cascade_number_of_cascades_per_side"]=1375, - ["support_spell_cascade_sideways"]=1375, - ["support_spell_echo_final_repeat_damage_+%_final"]=1376, - ["support_spell_rapid_fire_repeat_use_damage_+%_final"]=1547, - ["support_spell_totem_cast_speed_+%_final"]=322, - ["support_storm_barrier_damage_taken_when_hit_+%_final_while_channelling"]=1377, - ["support_swift_affliction_skill_effect_and_damaging_ailment_duration_+%_final"]=1378, - ["support_trauma_base_duration_ms"]=1415, - ["support_trauma_melee_damage_+%_final_per_trauma"]=1379, - ["support_trauma_stun_duration_+%_per_trauma"]=1380, - ["support_unbound_ailments_ailment_damage_+%_final"]=1381, - ["supported_skill_can_only_use_axe_and_sword"]=1382, - ["supported_skill_can_only_use_axe_mace_and_staff"]=1383, - ["supported_skill_can_only_use_dagger_and_claw"]=1385, - ["supported_skill_can_only_use_mace_and_staff"]=1386, - ["supported_skill_can_only_use_wand"]=1388, - ["swordstorm_num_hits"]=1389, - ["tectonic_slam_area_of_effect_+%_final_per_endurance_charge_consumed"]=1390, - ["tectonic_slam_side_crack_additional_chance_%"]=1393, - ["tectonic_slam_side_crack_additional_chance_%_per_endurance_charge"]=1394, - ["tectonic_slam_side_crack_additional_chance_%_per_endurance_charge_consumed"]=1391, - ["tectonic_slam_side_crack_additional_chance_1%_per_2_stat_value"]=1392, - ["tethered_enemies_take_attack_projectile_damage_taken_+%"]=1395, - ["tethered_movement_speed_+%_final_per_rope"]=1396, - ["tethered_movement_speed_+%_final_per_rope_vs_rare"]=1397, - ["tethered_movement_speed_+%_final_per_rope_vs_unique"]=1398, - ["tethering_arrow_display_rope_limit"]=1399, - ["throw_traps_in_circle_radius"]=46, - ["tornado_damage_absorbed_%"]=446, - ["tornado_damage_interval_ms"]=1400, - ["tornado_hinder"]=1401, - ["tornado_maximum_number_of_hits"]=93, - ["tornado_movement_speed_+%"]=1402, - ["total_number_of_arrows_to_fire"]=58, - ["total_number_of_projectiles_to_fire"]=58, - ["totem_%_maximum_life_inflicted_as_aoe_fire_damage_when_hit"]=451, - ["totem_duration"]=226, - ["totem_fire_in_formation"]=226, - ["totem_life_+%_final"]=1404, - ["totem_range"]=222, - ["totems_cannot_evade"]=227, - ["totems_explode_on_death_for_%_life_as_physical"]=1405, - ["totems_regenerate_%_life_per_minute"]=1406, - ["toxic_rain_spores_apply_withered"]=1407, - ["trap_%_chance_to_trigger_twice"]=452, - ["trap_can_be_triggered_by_warcries"]=1408, - ["trap_critical_strike_multiplier_+_per_power_charge"]=1409, - ["trap_duration"]=228, - ["trap_spread_+%"]=1410, - ["trap_throwing_speed_+%"]=229, - ["trap_throwing_speed_+%_per_frenzy_charge"]=1412, - ["trap_throwing_speed_+%_while_wielding_2hand"]=1411, - ["trap_trigger_radius_+%"]=49, - ["trap_trigger_radius_+%_per_power_charge"]=1413, - ["trauma_duration_ms"]=1415, - ["trauma_strike_damage_+%_final_per_trauma"]=1416, - ["trauma_strike_damage_+%_final_per_trauma_capped"]=1417, - ["trauma_strike_self_damage_per_trauma"]=1415, - ["trauma_strike_shockwave_area_of_effect_+%_per_100ms_stun_duration_up_to_400%"]=1418, - ["treat_enemy_resistances_as_negated_on_elemental_damage_hit_%_chance"]=1419, - ["trigger_after_spending_200_mana_%_chance"]=1420, - ["trigger_brand_support_hit_damage_+%_final_vs_branded_enemy"]=1421, - ["trigger_on_attack_hit_against_rare_or_unique"]=1422, - ["trigger_on_block_%_chance"]=1424, - ["trigger_on_block_hit_from_unique"]=1423, - ["trigger_on_bow_attack_%"]=1425, - ["trigger_on_corpse_consume_%_chance"]=1426, - ["trigger_on_crit_by_unique_enemy"]=1427, - ["trigger_on_crit_vs_marked_unique"]=1428, - ["trigger_on_es_recharge_in_presence_of_unique"]=1429, - ["trigger_on_hit_against_rare_or_unique_if_no_marked_enemy"]=1430, - ["trigger_on_hit_vs_frozen_enemy_%"]=1431, - ["trigger_on_ignited_enemy_death"]=1432, - ["trigger_on_reaching_low_life_in_presence_of_unique"]=1433, - ["trigger_on_reaching_maximum_rage_in_presence_of_unique"]=1434, - ["trigger_on_skill_use_%_if_you_have_a_spirit_charge"]=296, - ["trigger_on_skill_use_%_if_you_have_a_void_arrow"]=1435, - ["trigger_on_skill_use_from_chest_%"]=295, - ["trigger_on_slam_or_strike_%_chance"]=1436, - ["trigger_on_suppress_hit_from_unique"]=1437, - ["trigger_on_taking_savage_hit_from_unique"]=1438, - ["trigger_on_totem_death_in_presence_of_unique"]=1439, - ["trigger_on_travel_skill_use_in_presence_of_unique"]=1440, - ["trigger_on_trigger_link_target_hit"]=1441, - ["trigger_prismatic_burst_on_hit_%_chance"]=1442, - ["triggered_by_brand_support"]=1443, - ["triggered_by_divine_cry"]=1444, - ["triggered_by_infernal_cry"]=1445, - ["triggered_by_item_buff"]=1446, - ["triggered_by_spiritual_cry"]=1447, - ["triggered_vicious_hex_explosion"]=1448, - ["unearth_corpse_level"]=327, - ["unleash_power_movement_speed_+%_final"]=1449, - ["unleash_support_seal_gain_frequency_+%_while_channelling"]=1450, - ["unleash_support_seal_gain_frequency_+%_while_not_channelling"]=1451, - ["upheaval_number_of_spikes"]=1452, - ["vaal_animate_weapon_minimum_level_requirement"]=288, - ["vaal_animate_weapon_raise_up_to_X_weapons_as_uniques"]=1453, - ["vaal_arctic_armour_damage_taken_+%_final_from_hits"]=1454, - ["vaal_arctic_armour_number_of_hits_absorbed"]=1455, - ["vaal_blade_vortex_has_10_spinning_blades"]=1456, - ["vaal_charged_attack_damage_taken_+%_final"]=1457, - ["vaal_charged_attack_radius_+_per_stage"]=1458, - ["vaal_cleave_executioner_area_of_effect_+%"]=1459, - ["vaal_cleave_executioner_damage_against_enemies_on_low_life_+%"]=1459, - ["vaal_cold_snap_gain_frenzy_charge_every_second_if_enemy_in_aura"]=649, - ["vaal_earthquake_maximum_aftershocks"]=1460, - ["vaal_firestorm_gem_explosion_area_of_effect_+%_final"]=454, - ["vaal_firestorm_number_of_meteors"]=185, - ["vaal_flameblast_radius_+_per_stage"]=1461, - ["vaal_ice_shot_modifiers_to_projectile_count_do_not_apply_to_mirages"]=1462, - ["vaal_lightning_strike_beam_damage_+%_final"]=330, - ["vaal_reap_additional_maximum_blood_charges"]=1463, - ["vaal_reap_gain_maximum_blood_charges_to_on_use"]=1464, - ["vaal_rejuvenation_totem_%_damage_taken_applied_to_totem_instead"]=734, - ["vaal_righteous_fire_ignite_damage_+%_final"]=207, + ["support_overpowered_duration_ms"]=1384, + ["support_parallel_projectile_number_of_points_per_side"]=1385, + ["support_power_charge_on_crit_damage_+%_final_per_power_charge"]=1386, + ["support_projectile_attack_speed_+%_final"]=323, + ["support_pulverise_area_of_effect_+%_final"]=1387, + ["support_pure_shock_shock_as_though_damage_+%_final"]=1388, + ["support_rage_gain_rage_on_melee_hit_cooldown_ms"]=1389, + ["support_recent_ignites_damage_per_recent_ignite_+%_final"]=1390, + ["support_recent_ignites_damage_per_recent_ignite_+%_final_minimum"]=1390, + ["support_recent_ignites_ignite_damage_per_recent_ignite_+%_final"]=1391, + ["support_recent_ignites_ignite_damage_per_recent_ignite_+%_final_maximum"]=1391, + ["support_recent_minions_additional_critical_strike_chance_from_wakened_fury"]=1393, + ["support_recent_minions_additional_critical_strike_multiplier_from_wakened_fury"]=1393, + ["support_recent_minions_effect_duration_is_%_summon_duration"]=1393, + ["support_recent_minions_life_leech_from_any_damage_permyriad_from_wakened_fury"]=1392, + ["support_recent_minions_max_effect_duration_ms"]=1393, + ["support_recent_minions_virtual_gain_adrenaline_and_wakened_fury_when_summoned_ms"]=1393, + ["support_recent_phantasms_gain_adrenaline_and_wakened_fury_when_summoned_ms"]=1393, + ["support_reduce_enemy_block_and_spell_block_%"]=1394, + ["support_remote_mine_2_chance_to_deal_double_damage_%_against_enemies_near_mines"]=1599, + ["support_remote_mine_damage_+%_final_per_mine_detonation_cascade"]=1395, + ["support_return_returning_projectiles_damage_+%_final"]=1396, + ["support_rupture_bleeding_damage_taken_+%_final"]=1398, + ["support_rupture_bleeding_time_passed_+%_final"]=1399, + ["support_ruthless_big_hit_damage_+%_final"]=438, + ["support_ruthless_big_hit_max_count"]=437, + ["support_ruthless_big_hit_stun_base_duration_override_ms"]=440, + ["support_ruthless_blow_ailment_damage_from_melee_hits_+%_final"]=439, + ["support_sacred_wisps_wisp_%_chance_to_attack"]=1400, + ["support_sacred_wisps_wisp_additional_%_chance_to_attack_when_rare_or_unique_enemy_in_presence"]=1401, + ["support_sacrifice_gain_%_of_sacrificed_life_as_added_chaos_damage"]=1402, + ["support_sacrifice_sacrifice_%_of_current_life"]=1402, + ["support_scion_onslaught_for_3_seconds_on_hitting_unique_enemy_%_chance"]=1403, + ["support_scion_onslaught_on_killing_blow_%_chance"]=1404, + ["support_scion_onslaught_on_killing_blow_duration_ms"]=1404, + ["support_scion_onslaught_on_unique_hit_duration_ms"]=1403, + ["support_slashing_buff_attack_speed_+%_final_to_grant"]=1406, + ["support_slashing_buff_duration_ms"]=1405, + ["support_slashing_damage_+%_final_from_distance"]=1407, + ["support_spell_boost_area_damage_+%_final_per_charge"]=1408, + ["support_spell_boost_area_of_effect_+%_final_per_charge"]=1408, + ["support_spell_cascade_area_delay_+%"]=1409, + ["support_spell_cascade_area_of_effect_+%_final"]=1410, + ["support_spell_cascade_number_of_cascades_per_side"]=1411, + ["support_spell_cascade_sideways"]=1411, + ["support_spell_echo_final_repeat_damage_+%_final"]=1412, + ["support_spell_rapid_fire_repeat_use_damage_+%_final"]=1594, + ["support_spell_totem_cast_speed_+%_final"]=324, + ["support_storm_barrier_damage_taken_when_hit_+%_final_while_channelling"]=1413, + ["support_swift_affliction_skill_effect_and_damaging_ailment_duration_+%_final"]=1414, + ["support_trauma_base_duration_ms"]=1452, + ["support_trauma_melee_damage_+%_final_per_trauma"]=1415, + ["support_trauma_stun_duration_+%_per_trauma"]=1416, + ["support_trigger_tornados_on_attack_hit_after_moving_X_metres"]=1417, + ["support_unbound_ailments_ailment_damage_+%_final"]=1418, + ["supported_skill_can_only_use_axe_and_sword"]=1419, + ["supported_skill_can_only_use_axe_mace_and_staff"]=1420, + ["supported_skill_can_only_use_dagger_and_claw"]=1422, + ["supported_skill_can_only_use_mace_and_staff"]=1423, + ["supported_skill_can_only_use_wand"]=1425, + ["swordstorm_num_hits"]=1426, + ["tectonic_slam_area_of_effect_+%_final_per_endurance_charge_consumed"]=1427, + ["tectonic_slam_side_crack_additional_chance_%"]=1430, + ["tectonic_slam_side_crack_additional_chance_%_per_endurance_charge"]=1431, + ["tectonic_slam_side_crack_additional_chance_%_per_endurance_charge_consumed"]=1428, + ["tectonic_slam_side_crack_additional_chance_1%_per_2_stat_value"]=1429, + ["tethered_enemies_take_attack_projectile_damage_taken_+%"]=1432, + ["tethered_movement_speed_+%_final_per_rope"]=1433, + ["tethered_movement_speed_+%_final_per_rope_vs_rare"]=1434, + ["tethered_movement_speed_+%_final_per_rope_vs_unique"]=1435, + ["tethering_arrow_display_rope_limit"]=1436, + ["throw_traps_in_circle_radius"]=47, + ["tornado_damage_absorbed_%"]=452, + ["tornado_damage_interval_ms"]=1437, + ["tornado_hinder"]=1438, + ["tornado_maximum_number_of_hits"]=94, + ["tornado_movement_speed_+%"]=1439, + ["total_number_of_arrows_to_fire"]=59, + ["total_number_of_projectiles_to_fire"]=59, + ["totem_%_maximum_life_inflicted_as_aoe_fire_damage_when_hit"]=457, + ["totem_duration"]=228, + ["totem_fire_in_formation"]=228, + ["totem_life_+%_final"]=1441, + ["totem_range"]=224, + ["totems_cannot_evade"]=229, + ["totems_explode_on_death_for_%_life_as_physical"]=1442, + ["totems_regenerate_%_life_per_minute"]=1443, + ["toxic_rain_spores_apply_withered"]=1444, + ["trap_%_chance_to_trigger_twice"]=458, + ["trap_can_be_triggered_by_warcries"]=1445, + ["trap_critical_strike_multiplier_+_per_power_charge"]=1446, + ["trap_duration"]=230, + ["trap_spread_+%"]=1447, + ["trap_throwing_speed_+%"]=231, + ["trap_throwing_speed_+%_per_frenzy_charge"]=1449, + ["trap_throwing_speed_+%_while_wielding_2hand"]=1448, + ["trap_trigger_radius_+%"]=50, + ["trap_trigger_radius_+%_per_power_charge"]=1450, + ["trauma_duration_ms"]=1452, + ["trauma_strike_damage_+%_final_per_trauma"]=1453, + ["trauma_strike_damage_+%_final_per_trauma_capped"]=1454, + ["trauma_strike_self_damage_per_trauma"]=1452, + ["trauma_strike_shockwave_area_of_effect_+%_per_100ms_stun_duration_up_to_400%"]=1455, + ["treat_enemy_resistances_as_negated_on_elemental_damage_hit_%_chance"]=1456, + ["trigger_after_spending_200_mana_%_chance"]=1457, + ["trigger_brand_support_hit_damage_+%_final_vs_branded_enemy"]=1458, + ["trigger_on_attack_hit_against_rare_or_unique"]=1459, + ["trigger_on_block_%_chance"]=1461, + ["trigger_on_block_hit_from_unique"]=1460, + ["trigger_on_bow_attack_%"]=1462, + ["trigger_on_corpse_consume_%_chance"]=1463, + ["trigger_on_crit_by_unique_enemy"]=1464, + ["trigger_on_crit_vs_marked_unique"]=1465, + ["trigger_on_critical_strike_against_rare_or_unique_if_no_marked_enemy"]=1466, + ["trigger_on_es_recharge_in_presence_of_unique"]=1467, + ["trigger_on_hit_against_rare_or_unique_if_no_marked_enemy"]=1468, + ["trigger_on_hit_vs_frozen_enemy_%"]=1469, + ["trigger_on_ignited_enemy_death"]=1470, + ["trigger_on_reaching_low_life_in_presence_of_unique"]=1471, + ["trigger_on_reaching_maximum_rage_in_presence_of_unique"]=1472, + ["trigger_on_skill_use_%_if_you_have_a_spirit_charge"]=298, + ["trigger_on_skill_use_%_if_you_have_a_void_arrow"]=1473, + ["trigger_on_skill_use_from_chest_%"]=297, + ["trigger_on_slam_or_strike_%_chance"]=1474, + ["trigger_on_suppress_hit_from_unique"]=1475, + ["trigger_on_taking_savage_hit_from_unique"]=1476, + ["trigger_on_totem_death_in_presence_of_unique"]=1477, + ["trigger_on_travel_skill_use_in_presence_of_unique"]=1478, + ["trigger_on_trigger_link_target_hit"]=1479, + ["trigger_on_ward_break_%_chance"]=1480, + ["trigger_prismatic_burst_on_hit_%_chance"]=1481, + ["triggered_by_brand_support"]=1482, + ["triggered_by_divine_cry"]=1483, + ["triggered_by_infernal_cry"]=1484, + ["triggered_by_item_buff"]=1485, + ["triggered_by_kinetic_instability_support"]=1486, + ["triggered_by_kinetic_rain"]=1487, + ["triggered_by_spiritual_cry"]=1488, + ["triggered_by_support_movement"]=1489, + ["triggered_vicious_hex_explosion"]=1490, + ["unearth_corpse_level"]=329, + ["unleash_power_movement_speed_+%_final"]=1491, + ["unleash_support_seal_gain_frequency_+%_while_channelling"]=1492, + ["unleash_support_seal_gain_frequency_+%_while_not_channelling"]=1493, + ["upheaval_number_of_spikes"]=1494, + ["vaal_animate_weapon_minimum_level_requirement"]=290, + ["vaal_animate_weapon_raise_up_to_X_weapons_as_uniques"]=1495, + ["vaal_arctic_armour_damage_taken_+%_final_from_hits"]=1496, + ["vaal_arctic_armour_number_of_hits_absorbed"]=1497, + ["vaal_blade_vortex_has_10_spinning_blades"]=1498, + ["vaal_charged_attack_damage_taken_+%_final"]=1499, + ["vaal_charged_attack_radius_+_per_stage"]=1500, + ["vaal_cleave_executioner_area_of_effect_+%"]=1501, + ["vaal_cleave_executioner_damage_against_enemies_on_low_life_+%"]=1501, + ["vaal_cold_snap_gain_frenzy_charge_every_second_if_enemy_in_aura"]=659, + ["vaal_earthquake_maximum_aftershocks"]=1502, + ["vaal_firestorm_gem_explosion_area_of_effect_+%_final"]=460, + ["vaal_firestorm_number_of_meteors"]=186, + ["vaal_flameblast_radius_+_per_stage"]=1503, + ["vaal_ice_shot_modifiers_to_projectile_count_do_not_apply_to_mirages"]=1504, + ["vaal_lightning_strike_beam_damage_+%_final"]=332, + ["vaal_reap_additional_maximum_blood_charges"]=1505, + ["vaal_reap_gain_maximum_blood_charges_to_on_use"]=1506, + ["vaal_rejuvenation_totem_%_damage_taken_applied_to_totem_instead"]=743, + ["vaal_righteous_fire_ignite_damage_+%_final"]=208, ["vaal_righteous_fire_life_and_es_%_as_damage_per_second"]=6, ["vaal_righteous_fire_life_and_es_%_to_lose_on_use"]=6, - ["vaal_righteous_fire_spell_damage_+%_final"]=208, - ["vaal_skill_exertable"]=1465, - ["vaal_storm_call_delay_ms"]=1466, - ["vaal_upgrade_minion_damage_+%_final"]=1467, - ["vaal_upgrade_minion_damage_taken_+%_final"]=1468, - ["vaal_venom_gyre_capture_x_projectiles_per_second"]=1028, - ["vaal_venom_gyre_instantly_capture_maximum_projectiles"]=1028, - ["vaal_volcanic_fissure_crack_repeat_count"]=1469, - ["vampiric_icon_bleeding_damage_+%_final"]=1470, - ["vanishing_ambush_critical_strike_multiplier_+"]=1528, - ["virtual_aegis_unique_shield_max_value"]=490, - ["virtual_always_pierce"]=104, - ["virtual_berserk_hundred_times_rage_loss_per_second"]=441, - ["virtual_bladefall_number_of_volleys"]=1471, - ["virtual_blood_spears_total_number_of_spears"]=1472, - ["virtual_cast_when_damage_taken_threshold"]=311, - ["virtual_chance_to_blind_on_hit_%"]=243, - ["virtual_chill_minimum_slow_%"]=1473, - ["virtual_cyclone_skill_area_of_effect_+%_from_melee_range"]=82, - ["virtual_divine_tempest_number_of_nearby_enemies_to_zap"]=1474, - ["virtual_firestorm_drop_burning_ground_duration_ms"]=370, - ["virtual_firestorm_drop_chilled_ground_duration_ms"]=371, - ["virtual_herald_of_thunder_bolt_base_frequency"]=1475, - ["virtual_hex_zone_skill_duration_ms"]=1476, - ["virtual_intensity_loss_ms_while_moving_interval"]=220, - ["virtual_intensity_lost_on_teleport"]=220, - ["virtual_kinectic_blast_number_of_clusters"]=350, - ["virtual_lightning_tendrils_channelled_larger_pulse_interval"]=147, - ["virtual_maximum_intensity"]=219, - ["virtual_melee_splash"]=271, - ["virtual_mine_detonation_time_ms"]=1477, - ["virtual_minion_elemental_resistance_%"]=278, - ["virtual_number_of_additional_curses_allowed"]=1478, - ["virtual_number_of_chains"]=254, - ["virtual_number_of_chains_for_beams"]=255, - ["virtual_number_of_chains_for_projectiles"]=1479, - ["virtual_number_of_forks_for_projectiles_final"]=257, - ["virtual_number_of_spirit_strikes"]=1033, - ["virtual_onslaught_on_hit_%_chance"]=1480, - ["virtual_plague_bearer_maximum_stored_poison_damage"]=415, - ["virtual_projectile_number_to_split"]=256, - ["virtual_projectiles_cannot_pierce"]=104, - ["virtual_regenerate_x_life_over_1_second_on_skill_use_or_trigger"]=1481, - ["virtual_skill_gains_intensity"]=218, - ["virtual_spider_aspect_web_interval_ms"]=1482, - ["virtual_static_strike_base_zap_frequency_ms"]=1483, - ["virtual_steelskin_damage_%_taken_to_buff"]=1484, - ["virtual_steelskin_damage_limit"]=1484, - ["virtual_support_anticipation_charge_gain_interval_ms"]=1546, - ["virtual_support_scion_onslaught_on_killing_blow_duration_ms"]=1368, - ["virtual_tectonic_slam_%_chance_to_do_charged_slam"]=1485, - ["virtual_trap_and_mine_throwing_time_+%_final"]=1486, - ["virtual_vaal_lightning_arrow_number_of_redirects"]=1487, - ["virulent_arrow_additional_spores_at_max_stages"]=1488, - ["virulent_arrow_damage_+%_final_per_stage"]=1489, - ["virulent_arrow_maximum_number_of_stacks"]=1490, - ["virulent_arrow_number_of_pod_projectiles"]=1491, - ["virulent_arrow_pod_projectile_damage_+%_final"]=1492, - ["volatile_dead_core_movement_speed_+%"]=1493, - ["volatile_dead_max_cores_allowed"]=1494, - ["volatile_dead_number_of_corpses_to_consume"]=1495, - ["volcanic_fissure_speed_+%"]=1496, - ["voltaxic_burst_hit_and_ailment_damage_+%_final_per_stack"]=1497, - ["voodoo_pole_display_maximum_life"]=1498, - ["wall_expand_delay_ms"]=157, - ["wall_maximum_length"]=158, - ["warcries_do_not_apply_buffs_to_self_or_allies"]=1499, - ["warcries_have_infinite_power"]=1501, - ["warcries_knock_back_enemies"]=1500, - ["warcry_count_power_from_enemies"]=1501, - ["warcry_gain_mp_from_allies"]=1501, - ["warcry_gain_mp_from_corpses"]=1501, - ["warcry_grant_damage_+%_to_exerted_attacks"]=1530, - ["warcry_grant_knockback_%_to_exerted_attacks"]=1531, - ["warcry_grant_overwhelm_%_to_exerted_attacks"]=1532, - ["warcry_skills_share_cooldowns"]=1533, - ["water_sphere_cold_lightning_exposure_%"]=1534, - ["water_sphere_does_weird_conversion_stuff"]=1535, - ["weapon_trap_rotation_speed_+%"]=1536, - ["weapon_trap_total_rotation_%"]=1537, - ["whirling_blades_evasion_rating_+%_while_moving"]=1538, - ["winter_brand_max_number_of_stages"]=1539, - ["wither_applies_additional_wither_%"]=1540, - ["wither_chance_to_apply_another_stack_if_hand_cast_%"]=1541, - ["withered_on_hit_chance_%"]=1542, - ["withered_on_hit_for_2_seconds_%_chance"]=1543, - ["withering_step_chance_to_not_remove_on_skill_use_%"]=1544, - ["you_and_enemy_movement_velocity_+%_while_affected_by_ailment_you_inflicted"]=1545, - ["zombie_slam_area_of_effect_+%"]=1553, - ["zombie_slam_cooldown_speed_+%"]=1554 + ["vaal_righteous_fire_spell_damage_+%_final"]=209, + ["vaal_skill_exertable"]=1507, + ["vaal_storm_call_delay_ms"]=1508, + ["vaal_upgrade_minion_damage_+%_final"]=1509, + ["vaal_upgrade_minion_damage_taken_+%_final"]=1510, + ["vaal_venom_gyre_capture_x_projectiles_per_second"]=1055, + ["vaal_venom_gyre_instantly_capture_maximum_projectiles"]=1055, + ["vaal_volcanic_fissure_crack_repeat_count"]=1511, + ["vampiric_icon_bleeding_damage_+%_final"]=1512, + ["vanishing_ambush_critical_strike_multiplier_+"]=1570, + ["virtual_aegis_unique_shield_max_value"]=499, + ["virtual_always_pierce"]=105, + ["virtual_berserk_hundred_times_rage_loss_per_second"]=447, + ["virtual_bladefall_number_of_volleys"]=1513, + ["virtual_blood_spears_total_number_of_spears"]=1514, + ["virtual_cast_when_damage_taken_threshold"]=313, + ["virtual_chance_to_blind_on_hit_%"]=245, + ["virtual_chill_minimum_slow_%"]=1515, + ["virtual_cyclone_skill_area_of_effect_+%_from_melee_range"]=83, + ["virtual_divine_tempest_number_of_nearby_enemies_to_zap"]=1516, + ["virtual_firestorm_drop_burning_ground_duration_ms"]=376, + ["virtual_firestorm_drop_chilled_ground_duration_ms"]=377, + ["virtual_herald_of_thunder_bolt_base_frequency"]=1517, + ["virtual_hex_zone_skill_duration_ms"]=1518, + ["virtual_intensity_loss_ms_while_moving_interval"]=222, + ["virtual_intensity_lost_on_teleport"]=222, + ["virtual_kinectic_blast_number_of_clusters"]=356, + ["virtual_lightning_tendrils_channelled_larger_pulse_interval"]=148, + ["virtual_maximum_intensity"]=221, + ["virtual_melee_splash"]=273, + ["virtual_mine_detonation_time_ms"]=1519, + ["virtual_minion_elemental_resistance_%"]=280, + ["virtual_number_of_additional_curses_allowed"]=1520, + ["virtual_number_of_chains"]=256, + ["virtual_number_of_chains_for_beams"]=257, + ["virtual_number_of_chains_for_projectiles"]=1521, + ["virtual_number_of_forks_for_projectiles_final"]=259, + ["virtual_number_of_spirit_strikes"]=1060, + ["virtual_onslaught_on_hit_%_chance"]=1522, + ["virtual_plague_bearer_maximum_stored_poison_damage"]=421, + ["virtual_projectile_number_to_split"]=258, + ["virtual_projectiles_cannot_pierce"]=105, + ["virtual_regenerate_x_life_over_1_second_on_skill_use_or_trigger"]=1523, + ["virtual_skill_gains_intensity"]=220, + ["virtual_spider_aspect_web_interval_ms"]=1524, + ["virtual_static_strike_base_zap_frequency_ms"]=1525, + ["virtual_steelskin_damage_%_taken_to_buff"]=1526, + ["virtual_steelskin_damage_limit"]=1526, + ["virtual_support_anticipation_charge_gain_interval_ms"]=1593, + ["virtual_support_scion_onslaught_on_killing_blow_duration_ms"]=1404, + ["virtual_tectonic_slam_%_chance_to_do_charged_slam"]=1527, + ["virtual_trap_and_mine_throwing_time_+%_final"]=1528, + ["virtual_vaal_lightning_arrow_number_of_redirects"]=1529, + ["virulent_arrow_additional_spores_at_max_stages"]=1530, + ["virulent_arrow_damage_+%_final_per_stage"]=1531, + ["virulent_arrow_maximum_number_of_stacks"]=1532, + ["virulent_arrow_number_of_pod_projectiles"]=1533, + ["virulent_arrow_pod_projectile_damage_+%_final"]=1534, + ["volatile_dead_core_movement_speed_+%"]=1535, + ["volatile_dead_max_cores_allowed"]=1536, + ["volatile_dead_number_of_corpses_to_consume"]=1537, + ["volcanic_fissure_speed_+%"]=1538, + ["voltaxic_burst_hit_and_ailment_damage_+%_final_per_stack"]=1539, + ["voodoo_pole_display_maximum_life"]=1540, + ["wall_expand_delay_ms"]=158, + ["wall_maximum_length"]=159, + ["warcries_do_not_apply_buffs_to_self_or_allies"]=1541, + ["warcries_have_infinite_power"]=1543, + ["warcries_knock_back_enemies"]=1542, + ["warcry_count_power_from_enemies"]=1543, + ["warcry_gain_mp_from_allies"]=1543, + ["warcry_gain_mp_from_corpses"]=1543, + ["warcry_grant_damage_+%_to_exerted_attacks"]=1572, + ["warcry_grant_knockback_%_to_exerted_attacks"]=1573, + ["warcry_grant_overwhelm_%_to_exerted_attacks"]=1574, + ["warcry_skills_share_cooldowns"]=1575, + ["water_sphere_cold_lightning_exposure_%"]=1576, + ["water_sphere_does_weird_conversion_stuff"]=1577, + ["weapon_trap_rotation_speed_+%"]=1578, + ["weapon_trap_total_rotation_%"]=1579, + ["whirling_blades_evasion_rating_+%_while_moving"]=1580, + ["windstorm_storm_area_of_effect_+%_final_per_stage"]=1583, + ["windstorm_storm_hit_damage_+%_final_on_detonation"]=1585, + ["windstorm_storm_limit"]=1581, + ["windstorm_storm_maximum_stages"]=1582, + ["windstorm_storm_perfect_timing_window_escape_time_ms"]=1584, + ["windstorm_storm_stage_gained_per_X_ms"]=1582, + ["winter_brand_max_number_of_stages"]=1586, + ["wither_applies_additional_wither_%"]=1587, + ["wither_chance_to_apply_another_stack_if_hand_cast_%"]=1588, + ["withered_on_hit_chance_%"]=1589, + ["withered_on_hit_for_2_seconds_%_chance"]=1590, + ["withering_step_chance_to_not_remove_on_skill_use_%"]=1591, + ["you_and_enemy_movement_velocity_+%_while_affected_by_ailment_you_inflicted"]=1592, + ["zombie_slam_area_of_effect_+%"]=1600, + ["zombie_slam_cooldown_speed_+%"]=1601 } \ No newline at end of file diff --git a/src/Data/StatDescriptions/stat_descriptions.lua b/src/Data/StatDescriptions/stat_descriptions.lua index f2aedc6078..5e46ac8ea4 100644 --- a/src/Data/StatDescriptions/stat_descriptions.lua +++ b/src/Data/StatDescriptions/stat_descriptions.lua @@ -3735,6 +3735,22 @@ return { } }, [163]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Fire at most 1 Projectile" + } + }, + stats={ + [1]="maximum_number_of_projectiles_to_fire_is_1" + } + }, + [164]={ [1]={ [1]={ limit={ @@ -3750,7 +3766,7 @@ return { [1]="local_socketed_dexterity_gem_level_+" } }, - [164]={ + [165]={ [1]={ [1]={ limit={ @@ -3766,7 +3782,7 @@ return { [1]="local_socketed_intelligence_gem_level_+" } }, - [165]={ + [166]={ [1]={ [1]={ limit={ @@ -3782,7 +3798,7 @@ return { [1]="local_socketed_gem_level_+" } }, - [166]={ + [167]={ [1]={ [1]={ limit={ @@ -3798,7 +3814,7 @@ return { [1]="local_socketed_skill_gem_level_+1_per_x_player_levels" } }, - [167]={ + [168]={ [1]={ [1]={ limit={ @@ -3814,7 +3830,7 @@ return { [1]="local_socketed_gems_in_red_sockets_get_level_+" } }, - [168]={ + [169]={ [1]={ [1]={ limit={ @@ -3830,7 +3846,7 @@ return { [1]="local_socketed_gems_in_green_sockets_get_quality_%" } }, - [169]={ + [170]={ [1]={ [1]={ limit={ @@ -3846,7 +3862,7 @@ return { [1]="local_socketed_gems_in_blue_sockets_experience_gained_+%" } }, - [170]={ + [171]={ [1]={ [1]={ limit={ @@ -3862,7 +3878,7 @@ return { [1]="local_socketed_fire_gem_level_+" } }, - [171]={ + [172]={ [1]={ [1]={ limit={ @@ -3878,7 +3894,7 @@ return { [1]="local_socketed_cold_gem_level_+" } }, - [172]={ + [173]={ [1]={ [1]={ limit={ @@ -3894,7 +3910,7 @@ return { [1]="local_socketed_lightning_gem_level_+" } }, - [173]={ + [174]={ [1]={ [1]={ limit={ @@ -3910,7 +3926,7 @@ return { [1]="local_socketed_chaos_gem_level_+" } }, - [174]={ + [175]={ [1]={ [1]={ limit={ @@ -3919,14 +3935,14 @@ return { [2]="#" } }, - text="Your Action Speed is at least 108% of base value" + text="Your Action Speed is at least 90% of base value" } }, stats={ - [1]="action_speed_is_at_least_108%" + [1]="action_speed_is_at_least_90%" } }, - [175]={ + [176]={ [1]={ [1]={ limit={ @@ -3942,7 +3958,7 @@ return { [1]="base_skill_cost_life_instead_of_mana" } }, - [176]={ + [177]={ [1]={ [1]={ limit={ @@ -3958,7 +3974,7 @@ return { [1]="base_skill_reserve_life_instead_of_mana" } }, - [177]={ + [178]={ [1]={ [1]={ limit={ @@ -3974,7 +3990,7 @@ return { [1]="local_socketed_spell_gem_level_+" } }, - [178]={ + [179]={ [1]={ [1]={ limit={ @@ -3990,7 +4006,7 @@ return { [1]="local_socketed_duration_gem_level_+" } }, - [179]={ + [180]={ [1]={ [1]={ limit={ @@ -4006,7 +4022,7 @@ return { [1]="local_socketed_area_of_effect_gem_level_+" } }, - [180]={ + [181]={ [1]={ [1]={ limit={ @@ -4022,7 +4038,7 @@ return { [1]="local_socketed_projectile_gem_level_+" } }, - [181]={ + [182]={ [1]={ [1]={ limit={ @@ -4038,7 +4054,7 @@ return { [1]="local_socketed_bow_gem_level_+" } }, - [182]={ + [183]={ [1]={ [1]={ limit={ @@ -4054,7 +4070,7 @@ return { [1]="local_socketed_melee_gem_level_+" } }, - [183]={ + [184]={ [1]={ [1]={ limit={ @@ -4070,7 +4086,7 @@ return { [1]="local_socketed_minion_gem_level_+" } }, - [184]={ + [185]={ [1]={ [1]={ limit={ @@ -4086,7 +4102,7 @@ return { [1]="local_socketed_aura_gem_level_+" } }, - [185]={ + [186]={ [1]={ [1]={ limit={ @@ -4102,7 +4118,7 @@ return { [1]="local_socketed_herald_gem_level_+" } }, - [186]={ + [187]={ [1]={ [1]={ limit={ @@ -4118,7 +4134,7 @@ return { [1]="local_socketed_movement_gem_level_+" } }, - [187]={ + [188]={ [1]={ [1]={ limit={ @@ -4134,7 +4150,7 @@ return { [1]="local_socketed_curse_gem_level_+" } }, - [188]={ + [189]={ [1]={ [1]={ limit={ @@ -4150,7 +4166,7 @@ return { [1]="local_socketed_hex_gem_level_+" } }, - [189]={ + [190]={ [1]={ [1]={ limit={ @@ -4166,7 +4182,7 @@ return { [1]="local_socketed_trap_gem_level_+" } }, - [190]={ + [191]={ [1]={ [1]={ limit={ @@ -4182,7 +4198,7 @@ return { [1]="local_socketed_trap_and_mine_gem_level_+" } }, - [191]={ + [192]={ [1]={ [1]={ limit={ @@ -4198,7 +4214,7 @@ return { [1]="local_socketed_vaal_gem_level_+" } }, - [192]={ + [193]={ [1]={ [1]={ limit={ @@ -4214,7 +4230,7 @@ return { [1]="local_socketed_support_gem_level_+" } }, - [193]={ + [194]={ [1]={ [1]={ limit={ @@ -4230,7 +4246,7 @@ return { [1]="local_socketed_active_skill_gem_level_+" } }, - [194]={ + [195]={ [1]={ [1]={ limit={ @@ -4246,7 +4262,7 @@ return { [1]="local_socketed_non_vaal_gem_level_+" } }, - [195]={ + [196]={ [1]={ [1]={ limit={ @@ -4262,7 +4278,7 @@ return { [1]="local_socketed_warcry_gem_level_+" } }, - [196]={ + [197]={ [1]={ [1]={ limit={ @@ -4278,7 +4294,7 @@ return { [1]="map_spawn_heist_smugglers_cache" } }, - [197]={ + [198]={ [1]={ [1]={ limit={ @@ -4294,7 +4310,7 @@ return { [1]="map_supporter_heist_cache" } }, - [198]={ + [199]={ [1]={ [1]={ limit={ @@ -4310,7 +4326,7 @@ return { [1]="map_reliquary_must_open_heist_caches" } }, - [199]={ + [200]={ [1]={ [1]={ limit={ @@ -4326,7 +4342,7 @@ return { [1]="local_display_socketed_golem_attack_and_cast_speed_+%" } }, - [200]={ + [201]={ [1]={ [1]={ limit={ @@ -4342,7 +4358,7 @@ return { [1]="local_display_socketed_golem_buff_effect_+%" } }, - [201]={ + [202]={ [1]={ [1]={ limit={ @@ -4358,7 +4374,7 @@ return { [1]="local_display_socketed_golem_chance_to_taunt_%" } }, - [202]={ + [203]={ [1]={ [1]={ [1]={ @@ -4378,7 +4394,7 @@ return { [1]="local_display_socketed_golem_life_regeneration_rate_per_minute_%" } }, - [203]={ + [204]={ [1]={ [1]={ [1]={ @@ -4402,7 +4418,7 @@ return { [1]="local_display_socketed_golem_skill_grants_onslaught_when_summoned" } }, - [204]={ + [205]={ [1]={ [1]={ limit={ @@ -4418,7 +4434,7 @@ return { [1]="local_display_socketed_golem_skills_minions_life_%_to_add_as_energy_shield" } }, - [205]={ + [206]={ [1]={ [1]={ limit={ @@ -4434,7 +4450,7 @@ return { [1]="local_socketed_golem_gem_level_+" } }, - [206]={ + [207]={ [1]={ [1]={ limit={ @@ -4450,7 +4466,7 @@ return { [1]="local_socketed_gem_quality_+" } }, - [207]={ + [208]={ [1]={ [1]={ limit={ @@ -4466,7 +4482,7 @@ return { [1]="local_socketed_support_gem_quality_+" } }, - [208]={ + [209]={ [1]={ [1]={ limit={ @@ -4482,7 +4498,7 @@ return { [1]="local_socketed_active_skill_gem_quality_+" } }, - [209]={ + [210]={ [1]={ [1]={ limit={ @@ -4498,7 +4514,7 @@ return { [1]="local_socketed_area_of_effect_gem_quality_+" } }, - [210]={ + [211]={ [1]={ [1]={ limit={ @@ -4514,7 +4530,7 @@ return { [1]="local_socketed_aura_gem_quality_+" } }, - [211]={ + [212]={ [1]={ [1]={ limit={ @@ -4530,7 +4546,7 @@ return { [1]="local_socketed_bow_gem_quality_+" } }, - [212]={ + [213]={ [1]={ [1]={ limit={ @@ -4546,7 +4562,7 @@ return { [1]="local_socketed_chaos_gem_quality_+" } }, - [213]={ + [214]={ [1]={ [1]={ limit={ @@ -4562,7 +4578,7 @@ return { [1]="local_socketed_cold_gem_quality_+" } }, - [214]={ + [215]={ [1]={ [1]={ limit={ @@ -4578,7 +4594,7 @@ return { [1]="local_socketed_dexterity_gem_quality_+" } }, - [215]={ + [216]={ [1]={ [1]={ limit={ @@ -4594,7 +4610,7 @@ return { [1]="local_socketed_elemental_gem_level_+" } }, - [216]={ + [217]={ [1]={ [1]={ limit={ @@ -4610,7 +4626,7 @@ return { [1]="local_socketed_fire_gem_quality_+" } }, - [217]={ + [218]={ [1]={ [1]={ limit={ @@ -4626,7 +4642,7 @@ return { [1]="local_socketed_intelligence_gem_quality_+" } }, - [218]={ + [219]={ [1]={ [1]={ limit={ @@ -4642,7 +4658,7 @@ return { [1]="local_socketed_lightning_gem_quality_+" } }, - [219]={ + [220]={ [1]={ [1]={ limit={ @@ -4658,7 +4674,7 @@ return { [1]="local_socketed_melee_gem_quality_+" } }, - [220]={ + [221]={ [1]={ [1]={ limit={ @@ -4674,7 +4690,7 @@ return { [1]="local_socketed_minion_gem_quality_+" } }, - [221]={ + [222]={ [1]={ [1]={ limit={ @@ -4690,7 +4706,7 @@ return { [1]="local_socketed_projectile_gem_quality_+" } }, - [222]={ + [223]={ [1]={ [1]={ limit={ @@ -4706,7 +4722,7 @@ return { [1]="local_socketed_strength_gem_quality_+" } }, - [223]={ + [224]={ [1]={ [1]={ limit={ @@ -4735,7 +4751,7 @@ return { [1]="local_socketed_abyss_jewel_effect_+%" } }, - [224]={ + [225]={ [1]={ [1]={ limit={ @@ -4751,7 +4767,7 @@ return { [1]="support_gems_socketed_in_amulet_also_support_body_skills" } }, - [225]={ + [226]={ [1]={ [1]={ limit={ @@ -4767,7 +4783,7 @@ return { [1]="support_gems_socketed_in_off_hand_also_support_main_hand_skills" } }, - [226]={ + [227]={ [1]={ [1]={ limit={ @@ -4783,7 +4799,7 @@ return { [1]="local_display_socketed_gems_get_increased_area_level" } }, - [227]={ + [228]={ [1]={ [1]={ limit={ @@ -4799,7 +4815,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_arcane_surge" } }, - [228]={ + [229]={ [1]={ [1]={ limit={ @@ -4815,7 +4831,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_archmage" } }, - [229]={ + [230]={ [1]={ [1]={ limit={ @@ -4831,7 +4847,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_aura_duration" } }, - [230]={ + [231]={ [1]={ [1]={ limit={ @@ -4847,7 +4863,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_automation" } }, - [231]={ + [232]={ [1]={ [1]={ limit={ @@ -4863,7 +4879,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_barrage" } }, - [232]={ + [233]={ [1]={ [1]={ limit={ @@ -4879,7 +4895,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_behead" } }, - [233]={ + [234]={ [1]={ [1]={ limit={ @@ -4895,7 +4911,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_bloodlust" } }, - [234]={ + [235]={ [1]={ [1]={ limit={ @@ -4911,7 +4927,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_bloodthirst" } }, - [235]={ + [236]={ [1]={ [1]={ limit={ @@ -4927,7 +4943,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_bonechill" } }, - [236]={ + [237]={ [1]={ [1]={ limit={ @@ -4943,7 +4959,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_brutality" } }, - [237]={ + [238]={ [1]={ [1]={ limit={ @@ -4959,7 +4975,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_call_to_arms" } }, - [238]={ + [239]={ [1]={ [1]={ limit={ @@ -4975,7 +4991,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_cast_on_damage_taken" } }, - [239]={ + [240]={ [1]={ [1]={ limit={ @@ -4991,7 +5007,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_cast_on_kill" } }, - [240]={ + [241]={ [1]={ [1]={ limit={ @@ -5007,7 +5023,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_cast_while_channelling" } }, - [241]={ + [242]={ [1]={ [1]={ limit={ @@ -5023,7 +5039,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_chain" } }, - [242]={ + [243]={ [1]={ [1]={ limit={ @@ -5039,7 +5055,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_chance_to_bleed" } }, - [243]={ + [244]={ [1]={ [1]={ limit={ @@ -5055,7 +5071,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_chance_to_ignite" } }, - [244]={ + [245]={ [1]={ [1]={ limit={ @@ -5071,7 +5087,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_charged_mines" } }, - [245]={ + [246]={ [1]={ [1]={ limit={ @@ -5087,7 +5103,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_close_combat" } }, - [246]={ + [247]={ [1]={ [1]={ limit={ @@ -5103,7 +5119,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_controlled_blaze" } }, - [247]={ + [248]={ [1]={ [1]={ limit={ @@ -5119,7 +5135,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_corrupting_cry" } }, - [248]={ + [249]={ [1]={ [1]={ limit={ @@ -5135,7 +5151,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_culling_strike" } }, - [249]={ + [250]={ [1]={ [1]={ limit={ @@ -5151,7 +5167,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_curse_on_hit" } }, - [250]={ + [251]={ [1]={ [1]={ limit={ @@ -5167,7 +5183,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_cursed_ground" } }, - [251]={ + [252]={ [1]={ [1]={ limit={ @@ -5183,7 +5199,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_deadly_ailments" } }, - [252]={ + [253]={ [1]={ [1]={ limit={ @@ -5199,7 +5215,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_deathmark" } }, - [253]={ + [254]={ [1]={ [1]={ limit={ @@ -5215,7 +5231,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_decay" } }, - [254]={ + [255]={ [1]={ [1]={ limit={ @@ -5231,7 +5247,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_devour" } }, - [255]={ + [256]={ [1]={ [1]={ limit={ @@ -5256,7 +5272,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_earthbreaker" } }, - [256]={ + [257]={ [1]={ [1]={ limit={ @@ -5272,7 +5288,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_efficacy" } }, - [257]={ + [258]={ [1]={ [1]={ limit={ @@ -5288,7 +5304,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_elemental_focus" } }, - [258]={ + [259]={ [1]={ [1]={ limit={ @@ -5304,7 +5320,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_elemental_penetration" } }, - [259]={ + [260]={ [1]={ [1]={ limit={ @@ -5320,7 +5336,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_empower" } }, - [260]={ + [261]={ [1]={ [1]={ limit={ @@ -5336,7 +5352,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_energy_leech" } }, - [261]={ + [262]={ [1]={ [1]={ limit={ @@ -5352,7 +5368,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_enhance" } }, - [262]={ + [263]={ [1]={ [1]={ limit={ @@ -5368,7 +5384,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_enlighten" } }, - [263]={ + [264]={ [1]={ [1]={ limit={ @@ -5384,7 +5400,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_eternal_blessing" } }, - [264]={ + [265]={ [1]={ [1]={ limit={ @@ -5400,7 +5416,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_expert_retaliation" } }, - [265]={ + [266]={ [1]={ [1]={ limit={ @@ -5416,7 +5432,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_feeding_frenzy" } }, - [266]={ + [267]={ [1]={ [1]={ limit={ @@ -5432,7 +5448,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_fire_penetration" } }, - [267]={ + [268]={ [1]={ [1]={ limit={ @@ -5448,7 +5464,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_fist_of_war" } }, - [268]={ + [269]={ [1]={ [1]={ limit={ @@ -5464,7 +5480,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_flamewood" } }, - [269]={ + [270]={ [1]={ [1]={ limit={ @@ -5480,7 +5496,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_focused_channelling" } }, - [270]={ + [271]={ [1]={ [1]={ limit={ @@ -5496,7 +5512,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_focussed_ballista" } }, - [271]={ + [272]={ [1]={ [1]={ limit={ @@ -5512,7 +5528,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_fragility" } }, - [272]={ + [273]={ [1]={ [1]={ limit={ @@ -5528,7 +5544,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_frenzy_power_on_trap_trigger" } }, - [273]={ + [274]={ [1]={ [1]={ limit={ @@ -5544,7 +5560,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_fresh_meat" } }, - [274]={ + [275]={ [1]={ [1]={ limit={ @@ -5560,7 +5576,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_frigid_bond" } }, - [275]={ + [276]={ [1]={ [1]={ limit={ @@ -5576,7 +5592,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_greater_multiple_projectiles" } }, - [276]={ + [277]={ [1]={ [1]={ limit={ @@ -5592,7 +5608,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_greater_spell_echo" } }, - [277]={ + [278]={ [1]={ [1]={ limit={ @@ -5608,7 +5624,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_greater_volley" } }, - [278]={ + [279]={ [1]={ [1]={ limit={ @@ -5624,7 +5640,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_guardians_blessing" } }, - [279]={ + [280]={ [1]={ [1]={ limit={ @@ -5640,7 +5656,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_hex_bloom" } }, - [280]={ + [281]={ [1]={ [1]={ limit={ @@ -5656,7 +5672,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_ignite_proliferation" } }, - [281]={ + [282]={ [1]={ [1]={ limit={ @@ -5672,7 +5688,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_immolate" } }, - [282]={ + [283]={ [1]={ [1]={ limit={ @@ -5688,7 +5704,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_impale" } }, - [283]={ + [284]={ [1]={ [1]={ limit={ @@ -5704,7 +5720,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_impending_doom" } }, - [284]={ + [285]={ [1]={ [1]={ limit={ @@ -5720,7 +5736,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_increased_burning_damage" } }, - [285]={ + [286]={ [1]={ [1]={ limit={ @@ -5736,7 +5752,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_increased_critical_strikes" } }, - [286]={ + [287]={ [1]={ [1]={ limit={ @@ -5752,7 +5768,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_increased_duration" } }, - [287]={ + [288]={ [1]={ [1]={ limit={ @@ -5768,7 +5784,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_infernal_legion" } }, - [288]={ + [289]={ [1]={ [1]={ limit={ @@ -5784,7 +5800,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_intensify" } }, - [289]={ + [290]={ [1]={ [1]={ limit={ @@ -5800,7 +5816,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_iron_grip" } }, - [290]={ + [291]={ [1]={ [1]={ limit={ @@ -5816,7 +5832,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_item_quantity" } }, - [291]={ + [292]={ [1]={ [1]={ limit={ @@ -5832,7 +5848,23 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_item_rarity" } }, - [292]={ + [293]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Socketed Gems are Supported by Level {0} Kinetic Instability" + } + }, + stats={ + [1]="local_display_socketed_gems_supported_by_level_x_kinetic_instability" + } + }, + [294]={ [1]={ [1]={ limit={ @@ -5848,7 +5880,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_life_gain_on_hit" } }, - [293]={ + [295]={ [1]={ [1]={ limit={ @@ -5864,7 +5896,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_lifetap" } }, - [294]={ + [296]={ [1]={ [1]={ limit={ @@ -5880,7 +5912,23 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_lightning_penetration" } }, - [295]={ + [297]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Socketed Gems are Supported by Level {0} Living Lightning" + } + }, + stats={ + [1]="local_display_socketed_gems_supported_by_level_x_living_lightning" + } + }, + [298]={ [1]={ [1]={ limit={ @@ -5896,7 +5944,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_locus_mine" } }, - [296]={ + [299]={ [1]={ [1]={ limit={ @@ -5912,7 +5960,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_maim" } }, - [297]={ + [300]={ [1]={ [1]={ limit={ @@ -5928,7 +5976,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_manaforged_arrows" } }, - [298]={ + [301]={ [1]={ [1]={ limit={ @@ -5944,7 +5992,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_mark_on_hit" } }, - [299]={ + [302]={ [1]={ [1]={ limit={ @@ -5960,7 +6008,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_meat_shield" } }, - [300]={ + [303]={ [1]={ [1]={ limit={ @@ -5976,7 +6024,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_melee_damage_on_full_life" } }, - [301]={ + [304]={ [1]={ [1]={ limit={ @@ -5992,7 +6040,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_minefield" } }, - [302]={ + [305]={ [1]={ [1]={ limit={ @@ -6008,7 +6056,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_mirage_archer" } }, - [303]={ + [306]={ [1]={ [1]={ limit={ @@ -6024,7 +6072,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_multi_totem" } }, - [304]={ + [307]={ [1]={ [1]={ limit={ @@ -6040,7 +6088,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_multicast" } }, - [305]={ + [308]={ [1]={ [1]={ limit={ @@ -6056,7 +6104,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_nightblade" } }, - [306]={ + [309]={ [1]={ [1]={ limit={ @@ -6072,7 +6120,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_onslaught" } }, - [307]={ + [310]={ [1]={ [1]={ limit={ @@ -6088,7 +6136,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_overcharge" } }, - [308]={ + [311]={ [1]={ [1]={ limit={ @@ -6104,7 +6152,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_overexertion" } }, - [309]={ + [312]={ [1]={ [1]={ limit={ @@ -6120,7 +6168,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_parallel_projectiles" } }, - [310]={ + [313]={ [1]={ [1]={ limit={ @@ -6136,7 +6184,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_physical_projectile_attack_damage" } }, - [311]={ + [314]={ [1]={ [1]={ limit={ @@ -6152,7 +6200,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_physical_to_lightning" } }, - [312]={ + [315]={ [1]={ [1]={ limit={ @@ -6168,7 +6216,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_pinpoint" } }, - [313]={ + [316]={ [1]={ [1]={ limit={ @@ -6184,7 +6232,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_point_blank" } }, - [314]={ + [317]={ [1]={ [1]={ limit={ @@ -6200,7 +6248,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_poison" } }, - [315]={ + [318]={ [1]={ [1]={ limit={ @@ -6216,7 +6264,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_power_charge_on_crit" } }, - [316]={ + [319]={ [1]={ [1]={ limit={ @@ -6232,7 +6280,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_prismatic_burst" } }, - [317]={ + [320]={ [1]={ [1]={ limit={ @@ -6248,7 +6296,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_pulverise" } }, - [318]={ + [321]={ [1]={ [1]={ limit={ @@ -6264,7 +6312,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_rage" } }, - [319]={ + [322]={ [1]={ [1]={ limit={ @@ -6280,7 +6328,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_rain" } }, - [320]={ + [323]={ [1]={ [1]={ limit={ @@ -6296,7 +6344,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_ranged_attack_totem" } }, - [321]={ + [324]={ [1]={ [1]={ limit={ @@ -6312,7 +6360,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_rapid_decay" } }, - [322]={ + [325]={ [1]={ [1]={ limit={ @@ -6328,7 +6376,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_reduced_block_chance" } }, - [323]={ + [326]={ [1]={ [1]={ limit={ @@ -6344,7 +6392,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_reduced_duration" } }, - [324]={ + [327]={ [1]={ [1]={ limit={ @@ -6360,7 +6408,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_remote_mine_2" } }, - [325]={ + [328]={ [1]={ [1]={ limit={ @@ -6376,7 +6424,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_returning_projectiles" } }, - [326]={ + [329]={ [1]={ [1]={ limit={ @@ -6392,7 +6440,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_rupture" } }, - [327]={ + [330]={ [1]={ [1]={ limit={ @@ -6408,7 +6456,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_ruthless" } }, - [328]={ + [331]={ [1]={ [1]={ limit={ @@ -6424,7 +6472,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_sacred_wisps" } }, - [329]={ + [332]={ [1]={ [1]={ limit={ @@ -6440,7 +6488,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_sacrifice" } }, - [330]={ + [333]={ [1]={ [1]={ limit={ @@ -6456,7 +6504,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_sadism" } }, - [331]={ + [334]={ [1]={ [1]={ limit={ @@ -6472,7 +6520,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_second_wind" } }, - [332]={ + [335]={ [1]={ [1]={ limit={ @@ -6488,7 +6536,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_shockwave" } }, - [333]={ + [336]={ [1]={ [1]={ limit={ @@ -6504,7 +6552,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_slower_projectiles" } }, - [334]={ + [337]={ [1]={ [1]={ limit={ @@ -6520,7 +6568,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_snipe" } }, - [335]={ + [338]={ [1]={ [1]={ limit={ @@ -6536,7 +6584,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_spell_cascade" } }, - [336]={ + [339]={ [1]={ [1]={ limit={ @@ -6552,7 +6600,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_spell_focus" } }, - [337]={ + [340]={ [1]={ [1]={ limit={ @@ -6568,7 +6616,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_spellblade" } }, - [338]={ + [341]={ [1]={ [1]={ limit={ @@ -6584,7 +6632,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_spirit_strike" } }, - [339]={ + [342]={ [1]={ [1]={ limit={ @@ -6600,7 +6648,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_storm_barrier" } }, - [340]={ + [343]={ [1]={ [1]={ limit={ @@ -6616,7 +6664,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_summon_elemental_resistance" } }, - [341]={ + [344]={ [1]={ [1]={ limit={ @@ -6632,7 +6680,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_summon_ghost_on_kill" } }, - [342]={ + [345]={ [1]={ [1]={ limit={ @@ -6648,7 +6696,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_swift_assembly" } }, - [343]={ + [346]={ [1]={ [1]={ limit={ @@ -6664,7 +6712,23 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_swiftbrand" } }, - [344]={ + [347]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Socketed Gems are Supported by Level {0} Windburst" + } + }, + stats={ + [1]="local_display_socketed_gems_supported_by_level_x_tornados" + } + }, + [348]={ [1]={ [1]={ limit={ @@ -6680,7 +6744,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_trap_cooldown" } }, - [345]={ + [349]={ [1]={ [1]={ limit={ @@ -6696,7 +6760,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_trauma" } }, - [346]={ + [350]={ [1]={ [1]={ limit={ @@ -6712,7 +6776,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_trinity" } }, - [347]={ + [351]={ [1]={ [1]={ limit={ @@ -6728,7 +6792,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_unbound_ailments" } }, - [348]={ + [352]={ [1]={ [1]={ limit={ @@ -6744,7 +6808,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_unleash" } }, - [349]={ + [353]={ [1]={ [1]={ limit={ @@ -6760,7 +6824,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_urgent_orders" } }, - [350]={ + [354]={ [1]={ [1]={ limit={ @@ -6776,7 +6840,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_void_manipulation" } }, - [351]={ + [355]={ [1]={ [1]={ limit={ @@ -6792,7 +6856,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_volatility" } }, - [352]={ + [356]={ [1]={ [1]={ limit={ @@ -6808,7 +6872,55 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_chaos_attacks" } }, - [353]={ + [357]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Socketed Gems are Supported by Level {0} Intensify" + } + }, + stats={ + [1]="local_display_socketed_gems_supported_by_x_intensify_level" + } + }, + [358]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Socketed Gems are Supported by Level {0} Returning Projectiles" + } + }, + stats={ + [1]="local_display_socketed_gems_supported_by_x_returning_projectiles_level" + } + }, + [359]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Socketed Gems are Supported by Level {0} Summon Phantasm" + } + }, + stats={ + [1]="local_display_socketed_gems_supported_by_x_summon_phantasm_level" + } + }, + [360]={ [1]={ [1]={ limit={ @@ -6824,7 +6936,7 @@ return { [1]="local_display_socketed_triggered_skills_deal_double_damage" } }, - [354]={ + [361]={ [1]={ [1]={ limit={ @@ -6840,7 +6952,7 @@ return { [1]="local_display_supported_by_level_10_controlled_destruction" } }, - [355]={ + [362]={ [1]={ [1]={ limit={ @@ -6856,7 +6968,7 @@ return { [1]="local_display_supported_by_level_10_intensify" } }, - [356]={ + [363]={ [1]={ [1]={ limit={ @@ -6872,7 +6984,7 @@ return { [1]="local_display_supported_by_level_10_spell_echo" } }, - [357]={ + [364]={ [1]={ [1]={ limit={ @@ -6888,7 +7000,7 @@ return { [1]="local_display_supported_by_level_x_awakened_added_chaos_damage" } }, - [358]={ + [365]={ [1]={ [1]={ limit={ @@ -6904,7 +7016,7 @@ return { [1]="local_display_supported_by_level_x_awakened_added_cold_damage" } }, - [359]={ + [366]={ [1]={ [1]={ limit={ @@ -6920,7 +7032,7 @@ return { [1]="local_display_supported_by_level_x_awakened_added_fire_damage" } }, - [360]={ + [367]={ [1]={ [1]={ limit={ @@ -6936,7 +7048,7 @@ return { [1]="local_display_supported_by_level_x_awakened_added_lightning_damage" } }, - [361]={ + [368]={ [1]={ [1]={ limit={ @@ -6952,7 +7064,7 @@ return { [1]="local_display_supported_by_level_x_awakened_ancestral_call" } }, - [362]={ + [369]={ [1]={ [1]={ limit={ @@ -6968,7 +7080,7 @@ return { [1]="local_display_supported_by_level_x_awakened_arrow_nova" } }, - [363]={ + [370]={ [1]={ [1]={ limit={ @@ -6984,7 +7096,7 @@ return { [1]="local_display_supported_by_level_x_awakened_blasphemy" } }, - [364]={ + [371]={ [1]={ [1]={ limit={ @@ -7000,7 +7112,7 @@ return { [1]="local_display_supported_by_level_x_awakened_brutality" } }, - [365]={ + [372]={ [1]={ [1]={ limit={ @@ -7016,7 +7128,7 @@ return { [1]="local_display_supported_by_level_x_awakened_burning_damage" } }, - [366]={ + [373]={ [1]={ [1]={ limit={ @@ -7032,7 +7144,7 @@ return { [1]="local_display_supported_by_level_x_awakened_cast_on_crit" } }, - [367]={ + [374]={ [1]={ [1]={ limit={ @@ -7048,7 +7160,7 @@ return { [1]="local_display_supported_by_level_x_awakened_cast_while_channelling" } }, - [368]={ + [375]={ [1]={ [1]={ limit={ @@ -7064,7 +7176,7 @@ return { [1]="local_display_supported_by_level_x_awakened_chain" } }, - [369]={ + [376]={ [1]={ [1]={ limit={ @@ -7080,7 +7192,7 @@ return { [1]="local_display_supported_by_level_x_awakened_cold_penetration" } }, - [370]={ + [377]={ [1]={ [1]={ limit={ @@ -7096,7 +7208,7 @@ return { [1]="local_display_supported_by_level_x_awakened_controlled_destruction" } }, - [371]={ + [378]={ [1]={ [1]={ limit={ @@ -7112,7 +7224,7 @@ return { [1]="local_display_supported_by_level_x_awakened_curse_on_hit" } }, - [372]={ + [379]={ [1]={ [1]={ limit={ @@ -7128,7 +7240,7 @@ return { [1]="local_display_supported_by_level_x_awakened_deadly_ailments" } }, - [373]={ + [380]={ [1]={ [1]={ limit={ @@ -7144,7 +7256,7 @@ return { [1]="local_display_supported_by_level_x_awakened_elemental_focus" } }, - [374]={ + [381]={ [1]={ [1]={ limit={ @@ -7160,7 +7272,7 @@ return { [1]="local_display_supported_by_level_x_awakened_empower" } }, - [375]={ + [382]={ [1]={ [1]={ limit={ @@ -7176,7 +7288,7 @@ return { [1]="local_display_supported_by_level_x_awakened_enhance" } }, - [376]={ + [383]={ [1]={ [1]={ limit={ @@ -7192,7 +7304,7 @@ return { [1]="local_display_supported_by_level_x_awakened_enlighten" } }, - [377]={ + [384]={ [1]={ [1]={ limit={ @@ -7208,7 +7320,7 @@ return { [1]="local_display_supported_by_level_x_awakened_fire_penetration" } }, - [378]={ + [385]={ [1]={ [1]={ limit={ @@ -7224,7 +7336,7 @@ return { [1]="local_display_supported_by_level_x_awakened_fork" } }, - [379]={ + [386]={ [1]={ [1]={ limit={ @@ -7240,7 +7352,7 @@ return { [1]="local_display_supported_by_level_x_awakened_generosity" } }, - [380]={ + [387]={ [1]={ [1]={ limit={ @@ -7256,7 +7368,7 @@ return { [1]="local_display_supported_by_level_x_awakened_greater_multiple_projectiles" } }, - [381]={ + [388]={ [1]={ [1]={ limit={ @@ -7272,7 +7384,7 @@ return { [1]="local_display_supported_by_level_x_awakened_increased_area_of_effect" } }, - [382]={ + [389]={ [1]={ [1]={ limit={ @@ -7288,7 +7400,7 @@ return { [1]="local_display_supported_by_level_x_awakened_lightning_penetration" } }, - [383]={ + [390]={ [1]={ [1]={ limit={ @@ -7304,7 +7416,7 @@ return { [1]="local_display_supported_by_level_x_awakened_melee_physical_damage" } }, - [384]={ + [391]={ [1]={ [1]={ limit={ @@ -7320,7 +7432,7 @@ return { [1]="local_display_supported_by_level_x_awakened_melee_splash" } }, - [385]={ + [392]={ [1]={ [1]={ limit={ @@ -7336,7 +7448,7 @@ return { [1]="local_display_supported_by_level_x_awakened_minion_damage" } }, - [386]={ + [393]={ [1]={ [1]={ limit={ @@ -7352,7 +7464,7 @@ return { [1]="local_display_supported_by_level_x_awakened_multistrike" } }, - [387]={ + [394]={ [1]={ [1]={ limit={ @@ -7368,7 +7480,7 @@ return { [1]="local_display_supported_by_level_x_awakened_spell_cascade" } }, - [388]={ + [395]={ [1]={ [1]={ limit={ @@ -7384,7 +7496,7 @@ return { [1]="local_display_supported_by_level_x_awakened_spell_echo" } }, - [389]={ + [396]={ [1]={ [1]={ limit={ @@ -7400,7 +7512,7 @@ return { [1]="local_display_supported_by_level_x_awakened_swift_affliction" } }, - [390]={ + [397]={ [1]={ [1]={ limit={ @@ -7416,7 +7528,7 @@ return { [1]="local_display_supported_by_level_x_awakened_unbound_ailments" } }, - [391]={ + [398]={ [1]={ [1]={ limit={ @@ -7432,7 +7544,7 @@ return { [1]="local_display_supported_by_level_x_awakened_unleash" } }, - [392]={ + [399]={ [1]={ [1]={ limit={ @@ -7448,7 +7560,7 @@ return { [1]="local_display_supported_by_level_x_awakened_vicious_projectiles" } }, - [393]={ + [400]={ [1]={ [1]={ limit={ @@ -7464,7 +7576,7 @@ return { [1]="local_display_supported_by_level_x_awakened_void_manipulation" } }, - [394]={ + [401]={ [1]={ [1]={ limit={ @@ -7480,7 +7592,7 @@ return { [1]="local_display_supported_by_level_x_awakened_weapon_elemental_damage" } }, - [395]={ + [402]={ [1]={ [1]={ [1]={ @@ -7505,7 +7617,7 @@ return { [2]="local_random_support_gem_index" } }, - [396]={ + [403]={ [1]={ [1]={ [1]={ @@ -7530,7 +7642,7 @@ return { [2]="local_random_support_gem_index_1" } }, - [397]={ + [404]={ [1]={ [1]={ limit={ @@ -7546,7 +7658,7 @@ return { [1]="local_display_socketed_gems_get_concentrated_area_level" } }, - [398]={ + [405]={ [1]={ [1]={ limit={ @@ -7562,7 +7674,7 @@ return { [1]="local_display_socketed_gems_get_trap_level" } }, - [399]={ + [406]={ [1]={ [1]={ limit={ @@ -7578,7 +7690,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_cluster_trap" } }, - [400]={ + [407]={ [1]={ [1]={ limit={ @@ -7594,7 +7706,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_multi_trap" } }, - [401]={ + [408]={ [1]={ [1]={ limit={ @@ -7610,7 +7722,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_trap_and_mine_damage" } }, - [402]={ + [409]={ [1]={ [1]={ limit={ @@ -7626,7 +7738,7 @@ return { [1]="local_display_socketed_gems_get_added_chaos_damage_level" } }, - [403]={ + [410]={ [1]={ [1]={ limit={ @@ -7642,7 +7754,7 @@ return { [1]="local_display_socketed_gems_get_blood_magic_level" } }, - [404]={ + [411]={ [1]={ [1]={ limit={ @@ -7658,7 +7770,7 @@ return { [1]="local_display_socketed_gems_get_increased_duration_level" } }, - [405]={ + [412]={ [1]={ [1]={ limit={ @@ -7674,7 +7786,7 @@ return { [1]="base_strength_and_intelligence" } }, - [406]={ + [413]={ [1]={ [1]={ limit={ @@ -7690,7 +7802,7 @@ return { [1]="local_display_socketed_gems_get_added_fire_damage_level" } }, - [407]={ + [414]={ [1]={ [1]={ limit={ @@ -7706,7 +7818,7 @@ return { [1]="local_display_socketed_gems_get_cold_to_fire_level" } }, - [408]={ + [415]={ [1]={ [1]={ limit={ @@ -7722,7 +7834,7 @@ return { [1]="local_display_socketed_gems_get_spell_totem_level" } }, - [409]={ + [416]={ [1]={ [1]={ limit={ @@ -7738,7 +7850,7 @@ return { [1]="local_display_socketed_gems_get_fire_penetration_level" } }, - [410]={ + [417]={ [1]={ [1]={ limit={ @@ -7754,7 +7866,7 @@ return { [1]="local_display_socketed_gems_get_elemental_proliferation_level" } }, - [411]={ + [418]={ [1]={ [1]={ limit={ @@ -7770,7 +7882,7 @@ return { [1]="local_display_socketed_gems_get_added_lightning_damage_level" } }, - [412]={ + [419]={ [1]={ [1]={ limit={ @@ -7786,7 +7898,7 @@ return { [1]="local_display_socketed_gems_get_melee_physical_damage_level" } }, - [413]={ + [420]={ [1]={ [1]={ limit={ @@ -7802,7 +7914,7 @@ return { [1]="local_display_socketed_gems_get_faster_attacks_level" } }, - [414]={ + [421]={ [1]={ [1]={ limit={ @@ -7818,7 +7930,7 @@ return { [1]="local_display_socketed_gems_get_blind_level" } }, - [415]={ + [422]={ [1]={ [1]={ limit={ @@ -7834,7 +7946,7 @@ return { [1]="local_display_socketed_gems_get_melee_splash_level" } }, - [416]={ + [423]={ [1]={ [1]={ limit={ @@ -7850,7 +7962,7 @@ return { [1]="local_display_socketed_gems_get_cast_on_crit_level" } }, - [417]={ + [424]={ [1]={ [1]={ limit={ @@ -7866,7 +7978,7 @@ return { [1]="map_expedition_league" } }, - [418]={ + [425]={ [1]={ [1]={ limit={ @@ -7895,7 +8007,7 @@ return { [1]="map_runic_monster_life_+%_final" } }, - [419]={ + [426]={ [1]={ [1]={ limit={ @@ -7924,7 +8036,7 @@ return { [1]="map_runic_monster_damage_+%_final" } }, - [420]={ + [427]={ [1]={ [1]={ limit={ @@ -7940,7 +8052,7 @@ return { [1]="map_reliquary_must_complete_expedition" } }, - [421]={ + [428]={ [1]={ [1]={ limit={ @@ -7956,7 +8068,7 @@ return { [1]="local_display_socketed_gems_get_cast_when_stunned_level" } }, - [422]={ + [429]={ [1]={ [1]={ limit={ @@ -7972,7 +8084,7 @@ return { [1]="local_display_socketed_gems_get_cast_on_death_level" } }, - [423]={ + [430]={ [1]={ [1]={ limit={ @@ -7988,7 +8100,7 @@ return { [1]="local_display_socketed_gems_get_stun_level" } }, - [424]={ + [431]={ [1]={ [1]={ limit={ @@ -8004,7 +8116,7 @@ return { [1]="local_display_socketed_gems_get_additional_accuracy_level" } }, - [425]={ + [432]={ [1]={ [1]={ limit={ @@ -8020,7 +8132,7 @@ return { [1]="local_display_socketed_gems_get_multistrike_level" } }, - [426]={ + [433]={ [1]={ [1]={ limit={ @@ -8036,7 +8148,7 @@ return { [1]="local_display_socketed_gems_get_faster_projectiles_level" } }, - [427]={ + [434]={ [1]={ [1]={ limit={ @@ -8052,7 +8164,7 @@ return { [1]="local_display_socketed_gems_get_life_leech_level" } }, - [428]={ + [435]={ [1]={ [1]={ limit={ @@ -8068,7 +8180,7 @@ return { [1]="local_display_socketed_gems_get_chance_to_bleed_level" } }, - [429]={ + [436]={ [1]={ [1]={ limit={ @@ -8084,7 +8196,7 @@ return { [1]="local_display_socketed_gems_get_increased_critical_damage_level" } }, - [430]={ + [437]={ [1]={ [1]={ limit={ @@ -8100,7 +8212,7 @@ return { [1]="local_display_socketed_gems_get_fork_level" } }, - [431]={ + [438]={ [1]={ [1]={ limit={ @@ -8116,7 +8228,7 @@ return { [1]="local_display_socketed_gems_get_weapon_elemental_damage_level" } }, - [432]={ + [439]={ [1]={ [1]={ limit={ @@ -8132,7 +8244,7 @@ return { [1]="map_supporter_ruin_ghost_daemon_spawn" } }, - [433]={ + [440]={ [1]={ [1]={ limit={ @@ -8148,7 +8260,7 @@ return { [1]="map_disable_ultimatum_from_chance" } }, - [434]={ + [441]={ [1]={ [1]={ limit={ @@ -8164,7 +8276,7 @@ return { [1]="map_area_contains_ultimatum" } }, - [435]={ + [442]={ [1]={ [1]={ limit={ @@ -8180,7 +8292,7 @@ return { [1]="map_ultimatum_modifiers_are_chosen_for_you" } }, - [436]={ + [443]={ [1]={ [1]={ limit={ @@ -8196,7 +8308,7 @@ return { [1]="map_reliquary_must_complete_ultimatum" } }, - [437]={ + [444]={ [1]={ [1]={ limit={ @@ -8212,7 +8324,7 @@ return { [1]="local_display_socketed_gems_get_echo_level" } }, - [438]={ + [445]={ [1]={ [1]={ limit={ @@ -8228,7 +8340,7 @@ return { [1]="local_display_socketed_gems_get_reduced_mana_cost_level" } }, - [439]={ + [446]={ [1]={ [1]={ limit={ @@ -8244,7 +8356,7 @@ return { [1]="local_display_socketed_gems_get_generosity_level" } }, - [440]={ + [447]={ [1]={ [1]={ limit={ @@ -8260,7 +8372,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_fortify" } }, - [441]={ + [448]={ [1]={ [1]={ limit={ @@ -8276,7 +8388,7 @@ return { [1]="local_display_socketed_gems_get_remote_mine_level" } }, - [442]={ + [449]={ [1]={ [1]={ limit={ @@ -8292,7 +8404,7 @@ return { [1]="local_display_socketed_gems_get_flee_level" } }, - [443]={ + [450]={ [1]={ [1]={ [1]={ @@ -8312,7 +8424,7 @@ return { [1]="detect_player_has_foolishly_drawn_attention" } }, - [444]={ + [451]={ [1]={ [1]={ limit={ @@ -8328,7 +8440,7 @@ return { [1]="local_display_socketed_gems_get_faster_cast_level" } }, - [445]={ + [452]={ [1]={ [1]={ limit={ @@ -8344,7 +8456,7 @@ return { [1]="local_display_socketed_gems_get_iron_will_level" } }, - [446]={ + [453]={ [1]={ [1]={ limit={ @@ -8360,7 +8472,23 @@ return { [1]="local_display_socketed_gems_supported_by_x_knockback_level" } }, - [447]={ + [454]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Socketed Gems are Supported by Level {0} Focused Channelling" + } + }, + stats={ + [1]="local_display_socketed_gems_supported_by_x_focused_channelling_level" + } + }, + [455]={ [1]={ [1]={ limit={ @@ -8376,7 +8504,7 @@ return { [1]="local_display_socketed_gems_supported_by_x_increased_minion_life_level" } }, - [448]={ + [456]={ [1]={ [1]={ limit={ @@ -8392,7 +8520,7 @@ return { [1]="local_display_socketed_gems_supported_by_x_lesser_multiple_projectiles_level" } }, - [449]={ + [457]={ [1]={ [1]={ limit={ @@ -8408,7 +8536,7 @@ return { [1]="local_display_socketed_gems_supported_by_x_increased_minion_damage_level" } }, - [450]={ + [458]={ [1]={ [1]={ limit={ @@ -8424,7 +8552,7 @@ return { [1]="local_display_socketed_gems_supported_by_x_increased_critical_damage_level" } }, - [451]={ + [459]={ [1]={ [1]={ limit={ @@ -8440,7 +8568,7 @@ return { [1]="local_display_socketed_gems_supported_by_x_increased_minion_speed_level" } }, - [452]={ + [460]={ [1]={ [1]={ limit={ @@ -8456,7 +8584,7 @@ return { [1]="local_display_socketed_gems_supported_by_pierce_level" } }, - [453]={ + [461]={ [1]={ [1]={ limit={ @@ -8472,7 +8600,7 @@ return { [1]="local_display_socketed_gems_get_pierce_level" } }, - [454]={ + [462]={ [1]={ [1]={ limit={ @@ -8488,7 +8616,7 @@ return { [1]="local_display_socketed_gems_supported_by_x_hypothermia" } }, - [455]={ + [463]={ [1]={ [1]={ limit={ @@ -8504,7 +8632,7 @@ return { [1]="local_display_socketed_gems_supported_by_x_ice_bite" } }, - [456]={ + [464]={ [1]={ [1]={ limit={ @@ -8520,7 +8648,7 @@ return { [1]="local_display_socketed_gems_supported_by_x_cold_penetration" } }, - [457]={ + [465]={ [1]={ [1]={ limit={ @@ -8536,7 +8664,7 @@ return { [1]="local_display_socketed_gems_supported_by_x_mana_leech" } }, - [458]={ + [466]={ [1]={ [1]={ limit={ @@ -8552,7 +8680,7 @@ return { [1]="map_area_contains_rituals" } }, - [459]={ + [467]={ [1]={ [1]={ limit={ @@ -8568,7 +8696,7 @@ return { [1]="map_ritual_cannot_recover_life_or_energy_shield_above_X_%" } }, - [460]={ + [468]={ [1]={ [1]={ limit={ @@ -8584,7 +8712,7 @@ return { [1]="map_reliquary_must_complete_rituals" } }, - [461]={ + [469]={ [1]={ [1]={ limit={ @@ -8600,7 +8728,7 @@ return { [1]="local_display_socketed_gems_supported_by_x_added_cold_damage" } }, - [462]={ + [470]={ [1]={ [1]={ limit={ @@ -8616,7 +8744,7 @@ return { [1]="local_display_socketed_gems_supported_by_x_reduced_mana_cost" } }, - [463]={ + [471]={ [1]={ [1]={ limit={ @@ -8632,7 +8760,7 @@ return { [1]="local_display_socketed_curse_gems_supported_by_level_x_blasphemy" } }, - [464]={ + [472]={ [1]={ [1]={ limit={ @@ -8648,7 +8776,7 @@ return { [1]="local_display_socketed_gems_supported_by_x_innervate_level" } }, - [465]={ + [473]={ [1]={ [1]={ limit={ @@ -8664,7 +8792,7 @@ return { [1]="local_display_socketed_gems_supported_by_X_vile_toxins" } }, - [466]={ + [474]={ [1]={ [1]={ limit={ @@ -8680,7 +8808,7 @@ return { [1]="local_display_socketed_gems_supported_by_X_lesser_poison" } }, - [467]={ + [475]={ [1]={ [1]={ limit={ @@ -8696,7 +8824,7 @@ return { [1]="display_socketed_minion_gems_supported_by_level_X_life_leech" } }, - [468]={ + [476]={ [1]={ [1]={ limit={ @@ -8712,7 +8840,7 @@ return { [1]="local_display_socketed_gems_supported_by_x_controlled_destruction" } }, - [469]={ + [477]={ [1]={ [1]={ limit={ @@ -8728,7 +8856,7 @@ return { [1]="local_display_socketed_gems_supported_by_level_x_endurance_charge_on_stun" } }, - [470]={ + [478]={ [1]={ [1]={ limit={ @@ -8744,7 +8872,7 @@ return { [1]="local_display_socketed_gems_have_blood_magic" } }, - [471]={ + [479]={ [1]={ [1]={ [1]={ @@ -8773,7 +8901,7 @@ return { [1]="local_display_socketed_gems_have_mana_reservation_+%" } }, - [472]={ + [480]={ [1]={ [1]={ limit={ @@ -8789,7 +8917,7 @@ return { [1]="disable_blessing_skills_and_display_socketed_aura_gems_reserve_no_mana" } }, - [473]={ + [481]={ [1]={ [1]={ limit={ @@ -8805,7 +8933,7 @@ return { [1]="local_display_socketed_gems_get_mana_multplier_%" } }, - [474]={ + [482]={ [1]={ [1]={ limit={ @@ -8834,7 +8962,7 @@ return { [1]="local_display_socketed_melee_gems_have_area_radius_+%" } }, - [475]={ + [483]={ [1]={ [1]={ limit={ @@ -8850,7 +8978,7 @@ return { [1]="local_display_socketed_red_gems_have_%_of_physical_damage_to_add_as_fire" } }, - [476]={ + [484]={ [1]={ [1]={ limit={ @@ -8866,7 +8994,7 @@ return { [1]="local_display_socketed_skills_summon_your_maximum_number_of_totems_in_formation" } }, - [477]={ + [485]={ [1]={ [1]={ limit={ @@ -8891,7 +9019,7 @@ return { [1]="local_display_socketed_gems_have_%_chance_to_ignite_with_fire_damage" } }, - [478]={ + [486]={ [1]={ [1]={ limit={ @@ -8907,7 +9035,7 @@ return { [1]="local_display_socketed_gems_have_chance_to_flee_%" } }, - [479]={ + [487]={ [1]={ [1]={ limit={ @@ -8923,7 +9051,7 @@ return { [1]="elemental_spell_damage_taken_+_per_barkskin_stack" } }, - [480]={ + [488]={ [1]={ [1]={ limit={ @@ -8952,7 +9080,7 @@ return { [1]="local_display_socketed_gems_get_item_quantity_+%" } }, - [481]={ + [489]={ [1]={ [1]={ limit={ @@ -8968,7 +9096,7 @@ return { [1]="local_display_socketed_gems_get_curse_reflection" } }, - [482]={ + [490]={ [1]={ [1]={ limit={ @@ -8984,7 +9112,7 @@ return { [1]="local_display_socketed_gems_have_iron_will" } }, - [483]={ + [491]={ [1]={ [1]={ limit={ @@ -9000,7 +9128,7 @@ return { [1]="local_display_socketed_gems_chain_X_additional_times" } }, - [484]={ + [492]={ [1]={ [1]={ limit={ @@ -9029,7 +9157,7 @@ return { [1]="local_display_socketed_gems_additional_critical_strike_chance_%" } }, - [485]={ + [493]={ [1]={ [1]={ limit={ @@ -9054,7 +9182,23 @@ return { [1]="local_display_socketed_spells_repeat_count" } }, - [486]={ + [494]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="You cannot Cast Socketed Hex Curse Skills\nInflict Socketed Hexes on Enemies that trigger your Traps" + } + }, + stats={ + [1]="apply_hex_on_enemy_that_triggers_traps" + } + }, + [495]={ [1]={ [1]={ limit={ @@ -9079,7 +9223,7 @@ return { [1]="chance_to_trigger_socketed_spell_on_bow_attack_%" } }, - [487]={ + [496]={ [1]={ [1]={ limit={ @@ -9104,7 +9248,7 @@ return { [1]="local_display_avoid_interruption_%_while_using_socketed_attack_skills" } }, - [488]={ + [497]={ [1]={ [1]={ limit={ @@ -9133,7 +9277,7 @@ return { [1]="local_display_socketed_attack_damage_+%_final" } }, - [489]={ + [498]={ [1]={ [1]={ [1]={ @@ -9153,7 +9297,7 @@ return { [1]="local_display_socketed_attacks_additional_critical_strike_chance" } }, - [490]={ + [499]={ [1]={ [1]={ limit={ @@ -9169,7 +9313,7 @@ return { [1]="local_display_socketed_attacks_critical_strike_multiplier_+" } }, - [491]={ + [500]={ [1]={ [1]={ limit={ @@ -9185,7 +9329,7 @@ return { [1]="local_display_socketed_attacks_mana_cost_+" } }, - [492]={ + [501]={ [1]={ [1]={ limit={ @@ -9201,7 +9345,7 @@ return { [1]="local_display_socketed_gems_attack_and_cast_speed_+%_final" } }, - [493]={ + [502]={ [1]={ [1]={ limit={ @@ -9217,7 +9361,7 @@ return { [1]="local_display_socketed_gems_curse_auras_also_affect_you" } }, - [494]={ + [503]={ [1]={ [1]={ [1]={ @@ -9237,7 +9381,7 @@ return { [1]="local_display_socketed_gems_damage_+%_final_while_on_low_life" } }, - [495]={ + [504]={ [1]={ [1]={ limit={ @@ -9253,7 +9397,7 @@ return { [1]="local_display_socketed_gems_elemental_damage_+%_final" } }, - [496]={ + [505]={ [1]={ [1]={ [1]={ @@ -9273,7 +9417,7 @@ return { [1]="local_display_socketed_gems_exposure_on_hit" } }, - [497]={ + [506]={ [1]={ [1]={ limit={ @@ -9302,7 +9446,7 @@ return { [1]="local_display_socketed_gems_mana_cost_-%" } }, - [498]={ + [507]={ [1]={ [1]={ limit={ @@ -9323,7 +9467,7 @@ return { [2]="local_display_socketed_gems_maximum_added_fire_damage" } }, - [499]={ + [508]={ [1]={ [1]={ limit={ @@ -9339,7 +9483,7 @@ return { [1]="local_display_socketed_gems_physical_damage_%_to_add_as_lightning" } }, - [500]={ + [509]={ [1]={ [1]={ limit={ @@ -9364,7 +9508,7 @@ return { [1]="local_display_socketed_gems_projectile_damage_+%_final" } }, - [501]={ + [510]={ [1]={ [1]={ [1]={ @@ -9384,7 +9528,7 @@ return { [1]="local_display_socketed_gems_projectile_spells_cooldown_modifier_ms" } }, - [502]={ + [511]={ [1]={ [1]={ limit={ @@ -9400,7 +9544,7 @@ return { [1]="local_display_socketed_movement_skills_have_no_mana_cost" } }, - [503]={ + [512]={ [1]={ [1]={ limit={ @@ -9429,7 +9573,7 @@ return { [1]="local_display_socketed_skills_attack_speed_+%" } }, - [504]={ + [513]={ [1]={ [1]={ limit={ @@ -9458,7 +9602,7 @@ return { [1]="local_display_socketed_skills_cast_speed_+%" } }, - [505]={ + [514]={ [1]={ [1]={ limit={ @@ -9474,7 +9618,7 @@ return { [1]="local_display_socketed_skills_deal_double_damage" } }, - [506]={ + [515]={ [1]={ [1]={ limit={ @@ -9490,7 +9634,7 @@ return { [1]="local_display_socketed_skills_fork" } }, - [507]={ + [516]={ [1]={ [1]={ limit={ @@ -9519,7 +9663,7 @@ return { [1]="local_display_socketed_spell_damage_+%_final" } }, - [508]={ + [517]={ [1]={ [1]={ [1]={ @@ -9539,7 +9683,7 @@ return { [1]="local_display_socketed_spells_additional_critical_strike_chance" } }, - [509]={ + [518]={ [1]={ [1]={ limit={ @@ -9555,7 +9699,7 @@ return { [1]="local_display_socketed_spells_critical_strike_multiplier_+" } }, - [510]={ + [519]={ [1]={ [1]={ limit={ @@ -9584,7 +9728,7 @@ return { [1]="local_display_socketed_spells_mana_cost_+%" } }, - [511]={ + [520]={ [1]={ [1]={ limit={ @@ -9613,7 +9757,7 @@ return { [1]="local_display_socketed_travel_skills_damage_+%_final" } }, - [512]={ + [521]={ [1]={ [1]={ limit={ @@ -9642,7 +9786,7 @@ return { [1]="local_display_socketed_vaal_skills_area_of_effect_+%" } }, - [513]={ + [522]={ [1]={ [1]={ limit={ @@ -9671,7 +9815,7 @@ return { [1]="local_display_socketed_vaal_skills_aura_effect_+%" } }, - [514]={ + [523]={ [1]={ [1]={ limit={ @@ -9700,7 +9844,7 @@ return { [1]="local_display_socketed_vaal_skills_damage_+%_final" } }, - [515]={ + [524]={ [1]={ [1]={ limit={ @@ -9729,7 +9873,7 @@ return { [1]="local_display_socketed_vaal_skills_effect_duration_+%" } }, - [516]={ + [525]={ [1]={ [1]={ [1]={ @@ -9749,7 +9893,7 @@ return { [1]="local_display_socketed_vaal_skills_elusive_on_use" } }, - [517]={ + [526]={ [1]={ [1]={ limit={ @@ -9774,7 +9918,7 @@ return { [1]="local_display_socketed_vaal_skills_extra_damage_rolls" } }, - [518]={ + [527]={ [1]={ [1]={ limit={ @@ -9790,7 +9934,7 @@ return { [1]="local_display_socketed_vaal_skills_ignore_monster_phys_reduction" } }, - [519]={ + [528]={ [1]={ [1]={ limit={ @@ -9806,7 +9950,7 @@ return { [1]="local_display_socketed_vaal_skills_ignore_monster_resistances" } }, - [520]={ + [529]={ [1]={ [1]={ limit={ @@ -9822,7 +9966,7 @@ return { [1]="local_display_socketed_vaal_skills_no_soul_gain_prevention_duration" } }, - [521]={ + [530]={ [1]={ [1]={ limit={ @@ -9851,7 +9995,7 @@ return { [1]="local_display_socketed_vaal_skills_projectile_speed_+%" } }, - [522]={ + [531]={ [1]={ [1]={ limit={ @@ -9880,7 +10024,7 @@ return { [1]="local_display_socketed_vaal_skills_soul_gain_prevention_duration_+%" } }, - [523]={ + [532]={ [1]={ [1]={ limit={ @@ -9909,7 +10053,7 @@ return { [1]="local_display_socketed_vaal_skills_soul_requirement_+%_final" } }, - [524]={ + [533]={ [1]={ [1]={ limit={ @@ -9925,7 +10069,7 @@ return { [1]="local_display_socketed_vaal_skills_store_uses_+" } }, - [525]={ + [534]={ [1]={ [1]={ limit={ @@ -9950,7 +10094,7 @@ return { [1]="local_display_socketed_warcry_skills_cooldown_use_+" } }, - [526]={ + [535]={ [1]={ [1]={ limit={ @@ -9966,7 +10110,7 @@ return { [1]="local_display_spend_energy_shield_for_costs_before_mana_for_socketed_skills" } }, - [527]={ + [536]={ [1]={ [1]={ [1]={ @@ -9986,7 +10130,7 @@ return { [1]="local_display_tailwind_if_socketed_vaal_skill_used_recently" } }, - [528]={ + [537]={ [1]={ [1]={ limit={ @@ -10002,7 +10146,7 @@ return { [1]="map_num_extra_blights_" } }, - [529]={ + [538]={ [1]={ [1]={ limit={ @@ -10018,7 +10162,7 @@ return { [1]="map_ichor_pump_one_durability" } }, - [530]={ + [539]={ [1]={ [1]={ limit={ @@ -10034,7 +10178,7 @@ return { [1]="map_reliquary_must_complete_blights" } }, - [531]={ + [540]={ [1]={ [1]={ limit={ @@ -10063,7 +10207,7 @@ return { [1]="local_display_socketed_gems_damage_over_time_+%_final" } }, - [532]={ + [541]={ [1]={ [1]={ [1]={ @@ -10083,7 +10227,7 @@ return { [1]="local_display_socketed_gems_have_elemental_equilibrium" } }, - [533]={ + [542]={ [1]={ [1]={ limit={ @@ -10112,7 +10256,7 @@ return { [1]="local_display_socketed_non_curse_aura_gems_effect_+%" } }, - [534]={ + [543]={ [1]={ [1]={ [1]={ @@ -10132,7 +10276,7 @@ return { [1]="local_display_socketed_gems_have_secrets_of_suffering" } }, - [535]={ + [544]={ [1]={ [1]={ [1]={ @@ -10169,7 +10313,7 @@ return { [1]="local_display_socketed_gems_have_elemental_equilibrium_effect_pluspercent" } }, - [536]={ + [545]={ [1]={ [1]={ limit={ @@ -10194,7 +10338,7 @@ return { [1]="local_display_socketed_gems_have_number_of_additional_projectiles" } }, - [537]={ + [546]={ [1]={ [1]={ limit={ @@ -10219,7 +10363,7 @@ return { [1]="local_display_socketed_spells_additional_projectiles" } }, - [538]={ + [547]={ [1]={ [1]={ limit={ @@ -10235,7 +10379,7 @@ return { [1]="local_display_socketed_gems_projectiles_nova" } }, - [539]={ + [548]={ [1]={ [1]={ limit={ @@ -10251,7 +10395,7 @@ return { [1]="local_display_socketed_spells_projectiles_circle" } }, - [540]={ + [549]={ [1]={ [1]={ limit={ @@ -10280,7 +10424,7 @@ return { [1]="local_display_socketed_gems_skill_effect_duration_+%" } }, - [541]={ + [550]={ [1]={ [1]={ limit={ @@ -10309,7 +10453,7 @@ return { [1]="local_display_socketed_projectile_spells_duration_+%_final" } }, - [542]={ + [551]={ [1]={ [1]={ [1]={ @@ -10329,7 +10473,7 @@ return { [1]="local_display_socketed_trap_skills_create_smoke_cloud" } }, - [543]={ + [552]={ [1]={ [1]={ [1]={ @@ -10358,7 +10502,7 @@ return { [1]="local_display_socketed_curse_gems_have_mana_reservation_+%" } }, - [544]={ + [553]={ [1]={ [1]={ limit={ @@ -10374,7 +10518,7 @@ return { [1]="hierophant_helmet_supported_by_elemental_penetration" } }, - [545]={ + [554]={ [1]={ [1]={ limit={ @@ -10390,7 +10534,7 @@ return { [1]="hierophant_gloves_supported_by_increased_area_of_effect" } }, - [546]={ + [555]={ [1]={ [1]={ limit={ @@ -10406,7 +10550,7 @@ return { [1]="hierophant_boots_supported_by_life_leech" } }, - [547]={ + [556]={ [1]={ [1]={ limit={ @@ -10422,7 +10566,7 @@ return { [1]="chieftain_body_armour_supported_by_level_x_ancestral_call" } }, - [548]={ + [557]={ [1]={ [1]={ limit={ @@ -10438,7 +10582,7 @@ return { [1]="chieftain_body_armour_supported_by_level_x_fist_of_war" } }, - [549]={ + [558]={ [1]={ [1]={ limit={ @@ -10454,7 +10598,7 @@ return { [1]="local_display_summon_writhing_worm_every_2000_ms" } }, - [550]={ + [559]={ [1]={ [1]={ limit={ @@ -10479,7 +10623,7 @@ return { [1]="scion_helmet_skill_maximum_totems_+" } }, - [551]={ + [560]={ [1]={ [1]={ limit={ @@ -10495,7 +10639,7 @@ return { [1]="local_display_grants_skill_frostblink_level" } }, - [552]={ + [561]={ [1]={ [1]={ limit={ @@ -10511,7 +10655,7 @@ return { [1]="local_display_grants_skill_purity_of_fire_level" } }, - [553]={ + [562]={ [1]={ [1]={ limit={ @@ -10527,7 +10671,7 @@ return { [1]="local_display_illusory_warp_level" } }, - [554]={ + [563]={ [1]={ [1]={ limit={ @@ -10543,7 +10687,7 @@ return { [1]="local_display_grants_skill_bear_trap_level" } }, - [555]={ + [564]={ [1]={ [1]={ limit={ @@ -10559,7 +10703,7 @@ return { [1]="local_display_grants_level_x_summon_stone_golem" } }, - [556]={ + [565]={ [1]={ [1]={ limit={ @@ -10575,7 +10719,7 @@ return { [1]="local_display_grants_level_X_vengeance" } }, - [557]={ + [566]={ [1]={ [1]={ limit={ @@ -10591,7 +10735,7 @@ return { [1]="local_display_grants_level_x_despair" } }, - [558]={ + [567]={ [1]={ [1]={ limit={ @@ -10607,7 +10751,7 @@ return { [1]="local_display_grants_skill_purity_of_cold_level" } }, - [559]={ + [568]={ [1]={ [1]={ limit={ @@ -10641,7 +10785,7 @@ return { [1]="local_display_grants_summon_beast_companion" } }, - [560]={ + [569]={ [1]={ [1]={ limit={ @@ -10657,7 +10801,7 @@ return { [1]="local_display_grants_skill_purity_of_lightning_level" } }, - [561]={ + [570]={ [1]={ [1]={ limit={ @@ -10673,7 +10817,7 @@ return { [1]="local_display_grants_skill_flammability_level" } }, - [562]={ + [571]={ [1]={ [1]={ limit={ @@ -10815,7 +10959,7 @@ return { [1]="local_display_summon_harbinger_x_on_equip" } }, - [563]={ + [572]={ [1]={ [1]={ limit={ @@ -10831,7 +10975,7 @@ return { [1]="display_monster_has_chilled_ground_trail_daemon" } }, - [564]={ + [573]={ [1]={ [1]={ limit={ @@ -10847,7 +10991,7 @@ return { [1]="display_monster_has_proximity_shield_daemon" } }, - [565]={ + [574]={ [1]={ [1]={ limit={ @@ -10863,7 +11007,7 @@ return { [1]="local_display_grants_skill_conductivity_level" } }, - [566]={ + [575]={ [1]={ [1]={ limit={ @@ -10879,7 +11023,7 @@ return { [1]="local_display_grants_skill_frostbite_level" } }, - [567]={ + [576]={ [1]={ [1]={ limit={ @@ -10895,7 +11039,7 @@ return { [1]="local_display_grants_skill_temporal_chains_level" } }, - [568]={ + [577]={ [1]={ [1]={ limit={ @@ -10911,7 +11055,7 @@ return { [1]="local_display_grants_skill_haste_level" } }, - [569]={ + [578]={ [1]={ [1]={ limit={ @@ -10927,7 +11071,7 @@ return { [1]="local_display_has_additional_implicit_mod" } }, - [570]={ + [579]={ [1]={ [1]={ limit={ @@ -10943,7 +11087,7 @@ return { [1]="local_display_grants_skill_clarity_level" } }, - [571]={ + [580]={ [1]={ [1]={ limit={ @@ -10959,7 +11103,7 @@ return { [1]="local_display_grants_skill_blood_sacrament_level" } }, - [572]={ + [581]={ [1]={ [1]={ limit={ @@ -10975,7 +11119,7 @@ return { [1]="local_display_grants_skill_vitality_level" } }, - [573]={ + [582]={ [1]={ [1]={ limit={ @@ -10991,7 +11135,7 @@ return { [1]="base_non_chaos_damage_bypass_energy_shield_%" } }, - [574]={ + [583]={ [1]={ [1]={ limit={ @@ -11007,7 +11151,7 @@ return { [1]="local_display_grants_skill_purity_level" } }, - [575]={ + [584]={ [1]={ [1]={ limit={ @@ -11023,7 +11167,7 @@ return { [1]="local_display_grants_skill_gluttony_of_elements_level" } }, - [576]={ + [585]={ [1]={ [1]={ limit={ @@ -11039,7 +11183,7 @@ return { [1]="local_display_grants_skill_critical_weakness_level" } }, - [577]={ + [586]={ [1]={ [1]={ limit={ @@ -11055,7 +11199,7 @@ return { [1]="local_display_grants_skill_wrath_level" } }, - [578]={ + [587]={ [1]={ [1]={ limit={ @@ -11071,7 +11215,7 @@ return { [1]="local_display_grants_skill_hatred_level" } }, - [579]={ + [588]={ [1]={ [1]={ limit={ @@ -11087,7 +11231,7 @@ return { [1]="local_display_grants_skill_anger_level" } }, - [580]={ + [589]={ [1]={ [1]={ limit={ @@ -11103,7 +11247,7 @@ return { [1]="local_display_grants_skill_determination_level" } }, - [581]={ + [590]={ [1]={ [1]={ limit={ @@ -11119,7 +11263,7 @@ return { [1]="local_display_grants_skill_grace_level" } }, - [582]={ + [591]={ [1]={ [1]={ limit={ @@ -11135,7 +11279,7 @@ return { [1]="local_display_grants_skill_scorching_ray_level" } }, - [583]={ + [592]={ [1]={ [1]={ limit={ @@ -11151,7 +11295,7 @@ return { [1]="local_display_grants_skill_discipline_level" } }, - [584]={ + [593]={ [1]={ [1]={ limit={ @@ -11167,7 +11311,7 @@ return { [1]="local_display_grants_level_X_envy" } }, - [585]={ + [594]={ [1]={ [1]={ limit={ @@ -11183,7 +11327,7 @@ return { [1]="local_display_grants_level_X_reckoning" } }, - [586]={ + [595]={ [1]={ [1]={ limit={ @@ -11199,7 +11343,7 @@ return { [1]="local_display_grants_skill_blight_level" } }, - [587]={ + [596]={ [1]={ [1]={ limit={ @@ -11215,7 +11359,7 @@ return { [1]="local_display_grants_skill_projectile_weakness_level" } }, - [588]={ + [597]={ [1]={ [1]={ limit={ @@ -11231,7 +11375,7 @@ return { [1]="local_display_grants_skill_elemental_weakness_level" } }, - [589]={ + [598]={ [1]={ [1]={ limit={ @@ -11247,7 +11391,7 @@ return { [1]="local_display_grants_skill_doryanis_touch_level" } }, - [590]={ + [599]={ [1]={ [1]={ limit={ @@ -11263,7 +11407,7 @@ return { [1]="local_display_grants_skill_vulnerability_level" } }, - [591]={ + [600]={ [1]={ [1]={ limit={ @@ -11279,7 +11423,7 @@ return { [1]="local_display_grants_skill_death_aura_level" } }, - [592]={ + [601]={ [1]={ [1]={ limit={ @@ -11295,7 +11439,7 @@ return { [1]="local_display_grants_skill_icestorm_level" } }, - [593]={ + [602]={ [1]={ [1]={ limit={ @@ -11311,7 +11455,7 @@ return { [1]="chance_to_gain_arohonguis_embrace_%_on_kill" } }, - [594]={ + [603]={ [1]={ [1]={ limit={ @@ -11327,7 +11471,7 @@ return { [1]="chance_to_gain_hinekoras_embrace_%_on_kill" } }, - [595]={ + [604]={ [1]={ [1]={ limit={ @@ -11343,7 +11487,7 @@ return { [1]="chance_to_gain_kitavas_embrace_%_on_kill" } }, - [596]={ + [605]={ [1]={ [1]={ limit={ @@ -11359,7 +11503,7 @@ return { [1]="chance_to_gain_ngamahus_embrace_%_on_kill" } }, - [597]={ + [606]={ [1]={ [1]={ limit={ @@ -11375,7 +11519,7 @@ return { [1]="chance_to_gain_ramakos_embrace_%_on_kill" } }, - [598]={ + [607]={ [1]={ [1]={ limit={ @@ -11391,7 +11535,7 @@ return { [1]="chance_to_gain_rongokurais_embrace_%_on_kill" } }, - [599]={ + [608]={ [1]={ [1]={ limit={ @@ -11407,7 +11551,7 @@ return { [1]="chance_to_gain_tasalios_embrace_%_on_kill" } }, - [600]={ + [609]={ [1]={ [1]={ limit={ @@ -11423,7 +11567,7 @@ return { [1]="chance_to_gain_tawhoas_embrace_%_on_kill" } }, - [601]={ + [610]={ [1]={ [1]={ limit={ @@ -11439,7 +11583,7 @@ return { [1]="chance_to_gain_tukohamas_embrace_%_on_kill" } }, - [602]={ + [611]={ [1]={ [1]={ limit={ @@ -11455,7 +11599,7 @@ return { [1]="chance_to_gain_valakos_embrace_%_on_kill" } }, - [603]={ + [612]={ [1]={ [1]={ [1]={ @@ -11501,7 +11645,7 @@ return { [1]="local_display_cast_level_1_summon_lesser_shrine_on_kill_%" } }, - [604]={ + [613]={ [1]={ [1]={ limit={ @@ -11517,7 +11661,7 @@ return { [1]="local_display_cast_level_X_consecrate_on_crit" } }, - [605]={ + [614]={ [1]={ [1]={ limit={ @@ -11533,7 +11677,7 @@ return { [1]="local_display_cast_level_x_shock_ground_when_hit" } }, - [606]={ + [615]={ [1]={ [1]={ limit={ @@ -11549,7 +11693,7 @@ return { [1]="local_display_grant_level_x_petrification_statue" } }, - [607]={ + [616]={ [1]={ [1]={ limit={ @@ -11565,7 +11709,7 @@ return { [1]="local_display_trigger_level_X_blinding_aura_skill_on_equip" } }, - [608]={ + [617]={ [1]={ [1]={ limit={ @@ -11581,7 +11725,7 @@ return { [1]="local_display_grants_level_x_blood_offering_skill" } }, - [609]={ + [618]={ [1]={ [1]={ limit={ @@ -11597,7 +11741,7 @@ return { [1]="local_display_grants_level_x_curse_pillar_skil_and_20%_less_curse_effect" } }, - [610]={ + [619]={ [1]={ [1]={ limit={ @@ -11613,7 +11757,27 @@ return { [1]="local_display_grants_level_x_curse_pillar_skill" } }, - [611]={ + [620]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextMistyReflection" + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Grants Level {0} Misty Reflection Skill" + } + }, + stats={ + [1]="local_display_grants_level_x_misty_reflection" + } + }, + [621]={ [1]={ [1]={ limit={ @@ -11629,7 +11793,23 @@ return { [1]="local_display_grants_level_x_wintertide_brand" } }, - [612]={ + [622]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Grants Level {0} Convocation Skill" + } + }, + stats={ + [1]="local_display_grants_skil_convocation_level" + } + }, + [623]={ [1]={ [1]={ limit={ @@ -11645,7 +11825,7 @@ return { [1]="local_display_grants_skill_abyssal_cry_level" } }, - [613]={ + [624]={ [1]={ [1]={ limit={ @@ -11661,7 +11841,7 @@ return { [1]="local_display_grants_skill_accuracy_crits_aura_level" } }, - [614]={ + [625]={ [1]={ [1]={ limit={ @@ -11677,7 +11857,7 @@ return { [1]="local_display_grants_skill_ailment_bearer" } }, - [615]={ + [626]={ [1]={ [1]={ limit={ @@ -11693,7 +11873,7 @@ return { [1]="local_display_grants_skill_barkskin" } }, - [616]={ + [627]={ [1]={ [1]={ limit={ @@ -11709,7 +11889,7 @@ return { [1]="local_display_grants_skill_battlemages_cry_level" } }, - [617]={ + [628]={ [1]={ [1]={ limit={ @@ -11725,7 +11905,7 @@ return { [1]="local_display_grants_skill_bird_aspect_level" } }, - [618]={ + [629]={ [1]={ [1]={ limit={ @@ -11741,7 +11921,7 @@ return { [1]="local_display_grants_skill_bone_armour" } }, - [619]={ + [630]={ [1]={ [1]={ limit={ @@ -11757,7 +11937,23 @@ return { [1]="local_display_grants_skill_brand_detonate_level" } }, - [620]={ + [631]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Grants Level {0} Will of the Lords Skill" + } + }, + stats={ + [1]="local_display_grants_skill_breach_hand_trap_level" + } + }, + [632]={ [1]={ [1]={ limit={ @@ -11773,7 +11969,7 @@ return { [1]="local_display_grants_skill_call_of_steel" } }, - [621]={ + [633]={ [1]={ [1]={ limit={ @@ -11789,7 +11985,7 @@ return { [1]="local_display_grants_skill_cat_aspect_level" } }, - [622]={ + [634]={ [1]={ [1]={ limit={ @@ -11805,7 +12001,7 @@ return { [1]="local_display_grants_skill_corpse_sacrifice" } }, - [623]={ + [635]={ [1]={ [1]={ limit={ @@ -11821,7 +12017,7 @@ return { [1]="local_display_grants_skill_crab_aspect_level" } }, - [624]={ + [636]={ [1]={ [1]={ limit={ @@ -11837,7 +12033,7 @@ return { [1]="local_display_grants_skill_dash_level" } }, - [625]={ + [637]={ [1]={ [1]={ limit={ @@ -11853,7 +12049,7 @@ return { [1]="local_display_grants_skill_death_wish_level" } }, - [626]={ + [638]={ [1]={ [1]={ limit={ @@ -11869,9 +12065,13 @@ return { [1]="local_display_grants_skill_decoy_totem_level" } }, - [627]={ + [639]={ [1]={ [1]={ + [1]={ + k="reminderstring", + v="ReminderTextEmbraceMadness" + }, limit={ [1]={ [1]=1, @@ -11885,7 +12085,7 @@ return { [1]="local_display_grants_skill_embrace_madness_level" } }, - [628]={ + [640]={ [1]={ [1]={ limit={ @@ -11901,7 +12101,7 @@ return { [1]="local_display_grants_skill_enduring_cry_level" } }, - [629]={ + [641]={ [1]={ [1]={ limit={ @@ -11917,7 +12117,7 @@ return { [1]="local_display_grants_skill_evisceration" } }, - [630]={ + [642]={ [1]={ [1]={ limit={ @@ -11933,7 +12133,7 @@ return { [1]="local_display_grants_skill_herald_of_agony_level" } }, - [631]={ + [643]={ [1]={ [1]={ limit={ @@ -11949,7 +12149,7 @@ return { [1]="local_display_grants_skill_herald_of_ash_level" } }, - [632]={ + [644]={ [1]={ [1]={ limit={ @@ -11965,7 +12165,7 @@ return { [1]="local_display_grants_skill_herald_of_ice_level" } }, - [633]={ + [645]={ [1]={ [1]={ limit={ @@ -11981,7 +12181,23 @@ return { [1]="local_display_grants_skill_herald_of_purity_level" } }, - [634]={ + [646]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Grants Level {0} Herald of the Hive Skill" + } + }, + stats={ + [1]="local_display_grants_skill_herald_of_the_breach_level" + } + }, + [647]={ [1]={ [1]={ limit={ @@ -11997,7 +12213,7 @@ return { [1]="local_display_grants_skill_herald_of_thunder_level" } }, - [635]={ + [648]={ [1]={ [1]={ limit={ @@ -12013,7 +12229,7 @@ return { [1]="local_display_grants_skill_intimidating_cry_level" } }, - [636]={ + [649]={ [1]={ [1]={ limit={ @@ -12029,7 +12245,7 @@ return { [1]="local_display_grants_skill_lightning_warp_level" } }, - [637]={ + [650]={ [1]={ [1]={ limit={ @@ -12045,7 +12261,7 @@ return { [1]="local_display_grants_skill_malevolence_level" } }, - [638]={ + [651]={ [1]={ [1]={ limit={ @@ -12061,7 +12277,7 @@ return { [1]="local_display_grants_skill_minion_sacrifice" } }, - [639]={ + [652]={ [1]={ [1]={ limit={ @@ -12077,7 +12293,7 @@ return { [1]="local_display_grants_skill_mirage_chieftain" } }, - [640]={ + [653]={ [1]={ [1]={ limit={ @@ -12093,7 +12309,7 @@ return { [1]="local_display_grants_skill_penance" } }, - [641]={ + [654]={ [1]={ [1]={ limit={ @@ -12109,7 +12325,7 @@ return { [1]="local_display_grants_skill_pride_level" } }, - [642]={ + [655]={ [1]={ [1]={ limit={ @@ -12125,7 +12341,7 @@ return { [1]="local_display_grants_skill_quieten" } }, - [643]={ + [656]={ [1]={ [1]={ limit={ @@ -12141,7 +12357,7 @@ return { [1]="local_display_grants_skill_rallying_cry_level" } }, - [644]={ + [657]={ [1]={ [1]={ limit={ @@ -12157,7 +12373,7 @@ return { [1]="local_display_grants_skill_smite_level" } }, - [645]={ + [658]={ [1]={ [1]={ limit={ @@ -12173,7 +12389,7 @@ return { [1]="local_display_grants_skill_spider_aspect_level" } }, - [646]={ + [659]={ [1]={ [1]={ limit={ @@ -12189,7 +12405,7 @@ return { [1]="local_display_grants_skill_summon_radiant_sentinel" } }, - [647]={ + [660]={ [1]={ [1]={ limit={ @@ -12205,7 +12421,7 @@ return { [1]="local_display_grants_skill_touch_of_fire_level" } }, - [648]={ + [661]={ [1]={ [1]={ limit={ @@ -12221,7 +12437,7 @@ return { [1]="local_display_grants_skill_unhinge_level" } }, - [649]={ + [662]={ [1]={ [1]={ limit={ @@ -12237,7 +12453,7 @@ return { [1]="local_display_grants_skill_vaal_impurity_of_fire_level" } }, - [650]={ + [663]={ [1]={ [1]={ limit={ @@ -12253,7 +12469,7 @@ return { [1]="local_display_grants_skill_vaal_impurity_of_ice_level" } }, - [651]={ + [664]={ [1]={ [1]={ limit={ @@ -12269,7 +12485,7 @@ return { [1]="local_display_grants_skill_vaal_impurity_of_lightning_level" } }, - [652]={ + [665]={ [1]={ [1]={ limit={ @@ -12285,7 +12501,43 @@ return { [1]="local_display_grants_skill_vampiric_icon_level" } }, - [653]={ + [666]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextDarkEffigy" + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Grants Level {0} Summon Dark Effigy Skill" + } + }, + stats={ + [1]="local_display_grants_skill_voodoo_doll" + } + }, + [667]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Grants Level {0} Swordstorm Skill" + } + }, + stats={ + [1]="local_display_grants_skill_weapon_storm" + } + }, + [668]={ [1]={ [1]={ limit={ @@ -12301,7 +12553,7 @@ return { [1]="local_display_grants_skill_zealotry_level" } }, - [654]={ + [669]={ [1]={ [1]={ limit={ @@ -12317,7 +12569,23 @@ return { [1]="local_display_grants_summon_void_spawn" } }, - [655]={ + [670]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="[DNT] Grants Level {0} Unleash Power" + } + }, + stats={ + [1]="local_display_grants_unleash_power" + } + }, + [671]={ [1]={ [1]={ limit={ @@ -12333,7 +12601,7 @@ return { [1]="local_display_tattoo_trigger_level_x_ahuana" } }, - [656]={ + [672]={ [1]={ [1]={ limit={ @@ -12349,7 +12617,7 @@ return { [1]="local_display_tattoo_trigger_level_x_akoya" } }, - [657]={ + [673]={ [1]={ [1]={ limit={ @@ -12365,7 +12633,7 @@ return { [1]="local_display_tattoo_trigger_level_x_ikiaho" } }, - [658]={ + [674]={ [1]={ [1]={ limit={ @@ -12381,7 +12649,7 @@ return { [1]="local_display_tattoo_trigger_level_x_kahuturoa" } }, - [659]={ + [675]={ [1]={ [1]={ limit={ @@ -12397,7 +12665,7 @@ return { [1]="local_display_tattoo_trigger_level_x_kaom" } }, - [660]={ + [676]={ [1]={ [1]={ limit={ @@ -12413,7 +12681,7 @@ return { [1]="local_display_tattoo_trigger_level_x_kiloava" } }, - [661]={ + [677]={ [1]={ [1]={ [1]={ @@ -12433,7 +12701,7 @@ return { [1]="local_display_tattoo_trigger_level_x_maata" } }, - [662]={ + [678]={ [1]={ [1]={ limit={ @@ -12449,7 +12717,7 @@ return { [1]="local_display_tattoo_trigger_level_x_rakiata" } }, - [663]={ + [679]={ [1]={ [1]={ limit={ @@ -12465,7 +12733,7 @@ return { [1]="local_display_tattoo_trigger_level_x_tawhanuku" } }, - [664]={ + [680]={ [1]={ [1]={ [1]={ @@ -12485,7 +12753,7 @@ return { [1]="local_display_tattoo_trigger_level_x_utula" } }, - [665]={ + [681]={ [1]={ [1]={ limit={ @@ -12519,7 +12787,7 @@ return { [1]="shaper_apparition_ability" } }, - [666]={ + [682]={ [1]={ [1]={ limit={ @@ -12535,7 +12803,7 @@ return { [1]="can_see_corpse_types" } }, - [667]={ + [683]={ [1]={ [1]={ limit={ @@ -12560,7 +12828,7 @@ return { [1]="local_display_trigger_level_20_summon_spectral_wolf_on_crit_with_this_weapon_%_chance" } }, - [668]={ + [684]={ [1]={ [1]={ limit={ @@ -12576,7 +12844,7 @@ return { [1]="local_display_trigger_level_X_darktongue_kiss_on_curse" } }, - [669]={ + [685]={ [1]={ [1]={ limit={ @@ -12592,7 +12860,7 @@ return { [1]="local_display_trigger_level_X_void_gaze_on_skill_use" } }, - [670]={ + [686]={ [1]={ [1]={ limit={ @@ -12608,7 +12876,7 @@ return { [1]="local_display_trigger_level_x_lightning_warp_on_hit_with_this_weapon" } }, - [671]={ + [687]={ [1]={ [1]={ limit={ @@ -12624,7 +12892,7 @@ return { [1]="local_display_trigger_level_x_storm_cascade_on_attack" } }, - [672]={ + [688]={ [1]={ [1]={ limit={ @@ -12640,7 +12908,7 @@ return { [1]="local_display_grants_level_X_queens_demand_skill" } }, - [673]={ + [689]={ [1]={ [1]={ limit={ @@ -12656,7 +12924,7 @@ return { [1]="base_number_of_essence_spirits_allowed" } }, - [674]={ + [690]={ [1]={ [1]={ [1]={ @@ -12676,7 +12944,7 @@ return { [1]="body_armour_trigger_socketed_spell_on_unarmed_melee_critical_hit_cooldown" } }, - [675]={ + [691]={ [1]={ [1]={ limit={ @@ -12692,7 +12960,7 @@ return { [1]="cast_linked_spells_on_shocked_enemy_kill_%" } }, - [676]={ + [692]={ [1]={ [1]={ limit={ @@ -12717,7 +12985,57 @@ return { [1]="cast_socketed_minion_skills_on_bow_kill_%" } }, - [677]={ + [693]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextUpfrontCost" + }, + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]=100, + [2]="#" + } + }, + text="Trigger Socketed Spells when you Spend at least {0} Life on an\nUpfront Cost to Use or Trigger a Skill, with a 0.1 second Cooldown" + }, + [2]={ + [1]={ + k="canonical_line", + v="canonical" + }, + [2]={ + k="_stat", + v=2 + }, + [3]={ + k="reminderstring", + v="ReminderTextUpfrontCost" + }, + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="{1}% chance to Trigger Socketed Spells when you Spend at least {0} Life on an\nUpfront Cost to Use or Trigger a Skill, with a 0.1 second Cooldown" + } + }, + stats={ + [1]="cast_socketed_spells_on_X_life_spent", + [2]="cast_socketed_spells_on_life_spent_%_chance" + } + }, + [694]={ [1]={ [1]={ [1]={ @@ -12767,7 +13085,7 @@ return { [2]="cast_socketed_spells_on_mana_spent_%_chance" } }, - [678]={ + [695]={ [1]={ [1]={ limit={ @@ -12792,7 +13110,7 @@ return { [1]="chance_to_trigger_socketed_bow_skill_on_bow_attack_%" } }, - [679]={ + [696]={ [1]={ [1]={ limit={ @@ -12808,7 +13126,7 @@ return { [1]="curse_on_hit_level_assassins_mark" } }, - [680]={ + [697]={ [1]={ [1]={ limit={ @@ -12824,7 +13142,7 @@ return { [1]="curse_on_hit_level_poachers_mark" } }, - [681]={ + [698]={ [1]={ [1]={ limit={ @@ -12840,7 +13158,7 @@ return { [1]="curse_on_hit_level_poachers_mark_bypass_hexproof" } }, - [682]={ + [699]={ [1]={ [1]={ limit={ @@ -12856,7 +13174,7 @@ return { [1]="curse_on_hit_level_warlords_mark" } }, - [683]={ + [700]={ [1]={ [1]={ limit={ @@ -12872,7 +13190,7 @@ return { [1]="display_abberaths_hooves_skill_level" } }, - [684]={ + [701]={ [1]={ [1]={ limit={ @@ -12888,7 +13206,7 @@ return { [1]="display_cast_fire_burst_on_kill" } }, - [685]={ + [702]={ [1]={ [1]={ limit={ @@ -12913,7 +13231,7 @@ return { [1]="display_trigger_arcane_wake_after_spending_200_mana_%_chance" } }, - [686]={ + [703]={ [1]={ [1]={ limit={ @@ -12929,7 +13247,7 @@ return { [1]="local_display_attack_with_level_X_bone_nova_on_bleeding_enemy_kill" } }, - [687]={ + [704]={ [1]={ [1]={ limit={ @@ -12945,7 +13263,7 @@ return { [1]="local_display_cast_animate_weapon_on_kill_%_chance" } }, - [688]={ + [705]={ [1]={ [1]={ limit={ @@ -12961,7 +13279,7 @@ return { [1]="local_display_cast_cold_aegis_on_gain_skill" } }, - [689]={ + [706]={ [1]={ [1]={ limit={ @@ -12977,7 +13295,7 @@ return { [1]="local_display_cast_elemental_aegis_on_gain_skill" } }, - [690]={ + [707]={ [1]={ [1]={ limit={ @@ -12993,7 +13311,7 @@ return { [1]="local_display_cast_fire_aegis_on_gain_skill" } }, - [691]={ + [708]={ [1]={ [1]={ limit={ @@ -13009,7 +13327,7 @@ return { [1]="local_display_cast_level_x_shock_ground_on_hit" } }, - [692]={ + [709]={ [1]={ [1]={ limit={ @@ -13025,7 +13343,7 @@ return { [1]="local_display_cast_lightning_aegis_on_gain_skill" } }, - [693]={ + [710]={ [1]={ [1]={ limit={ @@ -13041,7 +13359,23 @@ return { [1]="local_display_cast_lightning_on_critical_strike" } }, - [694]={ + [711]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Trigger Level {0} Lightning Bolt on Melee Hit with this Weapon, with a 0.25 second cooldown" + } + }, + stats={ + [1]="local_display_cast_lightning_on_melee_hit_with_this_weapon" + } + }, + [712]={ [1]={ [1]={ limit={ @@ -13057,7 +13391,7 @@ return { [1]="local_display_cast_physical_aegis_on_gain_skill" } }, - [695]={ + [713]={ [1]={ [1]={ limit={ @@ -13073,7 +13407,7 @@ return { [1]="local_display_cast_primal_aegis_on_gain_skill" } }, - [696]={ + [714]={ [1]={ [1]={ limit={ @@ -13089,7 +13423,7 @@ return { [1]="local_display_cast_summon_arbalists_on_gain_skill" } }, - [697]={ + [715]={ [1]={ [1]={ limit={ @@ -13105,7 +13439,7 @@ return { [1]="local_display_cast_triggerbots_on_gain_skill" } }, - [698]={ + [716]={ [1]={ [1]={ limit={ @@ -13130,7 +13464,7 @@ return { [1]="local_display_chance_to_trigger_socketed_spell_on_kill_%" } }, - [699]={ + [717]={ [1]={ [1]={ limit={ @@ -13146,7 +13480,7 @@ return { [1]="local_display_fire_burst_on_hit_%" } }, - [700]={ + [718]={ [1]={ [1]={ limit={ @@ -13162,7 +13496,7 @@ return { [1]="local_display_grants_level_x_hidden_blade" } }, - [701]={ + [719]={ [1]={ [1]={ limit={ @@ -13178,7 +13512,7 @@ return { [1]="local_display_molten_burst_on_melee_hit_%" } }, - [702]={ + [720]={ [1]={ [1]={ limit={ @@ -13203,7 +13537,7 @@ return { [1]="local_display_raise_spider_on_kill_%_chance" } }, - [703]={ + [721]={ [1]={ [1]={ limit={ @@ -13228,7 +13562,7 @@ return { [1]="local_display_starfall_on_melee_critical_hit_%" } }, - [704]={ + [722]={ [1]={ [1]={ limit={ @@ -13253,7 +13587,7 @@ return { [1]="local_display_summon_raging_spirit_on_kill_%" } }, - [705]={ + [723]={ [1]={ [1]={ limit={ @@ -13278,7 +13612,7 @@ return { [1]="local_display_summon_wolf_on_kill_%" } }, - [706]={ + [724]={ [1]={ [1]={ limit={ @@ -13303,7 +13637,7 @@ return { [1]="local_display_trigger_commandment_of_inferno_on_crit_%" } }, - [707]={ + [725]={ [1]={ [1]={ limit={ @@ -13319,7 +13653,7 @@ return { [1]="local_display_trigger_corpse_walk_on_equip_level" } }, - [708]={ + [726]={ [1]={ [1]={ limit={ @@ -13335,7 +13669,7 @@ return { [1]="local_display_trigger_level_x_create_fungal_ground_on_kill" } }, - [709]={ + [727]={ [1]={ [1]={ limit={ @@ -13351,7 +13685,7 @@ return { [1]="local_display_trigger_death_walk_on_equip_level" } }, - [710]={ + [728]={ [1]={ [1]={ limit={ @@ -13367,7 +13701,7 @@ return { [1]="local_display_trigger_ignition_blast_on_ignited_enemy_death" } }, - [711]={ + [729]={ [1]={ [1]={ limit={ @@ -13383,7 +13717,7 @@ return { [1]="local_display_trigger_level_18_summon_spectral_wolf_on_kill_10%_chance" } }, - [712]={ + [730]={ [1]={ [1]={ limit={ @@ -13408,7 +13742,7 @@ return { [1]="local_display_trigger_level_1_blood_rage_on_kill_chance_%" } }, - [713]={ + [731]={ [1]={ [1]={ limit={ @@ -13433,7 +13767,7 @@ return { [1]="local_display_trigger_level_20_animate_guardian_weapon_on_guardian_kill_%_chance" } }, - [714]={ + [732]={ [1]={ [1]={ limit={ @@ -13458,7 +13792,7 @@ return { [1]="local_display_trigger_level_20_animate_guardian_weapon_on_weapon_kill_%_chance" } }, - [715]={ + [733]={ [1]={ [1]={ limit={ @@ -13474,7 +13808,7 @@ return { [1]="local_display_trigger_level_20_shade_form_on_skill_use_%" } }, - [716]={ + [734]={ [1]={ [1]={ limit={ @@ -13508,7 +13842,7 @@ return { [1]="local_display_trigger_level_20_shade_form_when_hit_%" } }, - [717]={ + [735]={ [1]={ [1]={ limit={ @@ -13524,7 +13858,7 @@ return { [1]="local_display_trigger_level_20_tornado_when_you_gain_avians_flight_or_avians_might_%" } }, - [718]={ + [736]={ [1]={ [1]={ limit={ @@ -13540,7 +13874,7 @@ return { [1]="local_display_trigger_level_X_assassins_mark_when_you_hit_rare_or_unique_enemy" } }, - [719]={ + [737]={ [1]={ [1]={ limit={ @@ -13556,7 +13890,7 @@ return { [1]="local_display_trigger_level_X_atziri_flameblast" } }, - [720]={ + [738]={ [1]={ [1]={ limit={ @@ -13572,7 +13906,7 @@ return { [1]="local_display_trigger_level_X_atziri_storm_call" } }, - [721]={ + [739]={ [1]={ [1]={ limit={ @@ -13588,7 +13922,7 @@ return { [1]="local_display_trigger_level_X_feast_of_flesh_every_5_seconds" } }, - [722]={ + [740]={ [1]={ [1]={ limit={ @@ -13604,7 +13938,7 @@ return { [1]="local_display_trigger_level_X_offering_every_5_seconds" } }, - [723]={ + [741]={ [1]={ [1]={ limit={ @@ -13620,7 +13954,7 @@ return { [1]="local_display_trigger_level_X_poachers_mark_when_you_hit_rare_or_unique_enemy" } }, - [724]={ + [742]={ [1]={ [1]={ limit={ @@ -13636,7 +13970,27 @@ return { [1]="local_display_trigger_level_X_shield_shatter_on_block" } }, - [725]={ + [743]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextWardShatter" + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Trigger Level {0} Ward Shatter when your Ward Breaks" + } + }, + stats={ + [1]="local_display_trigger_level_X_ward_shatter_on_ward_break" + } + }, + [744]={ [1]={ [1]={ limit={ @@ -13652,7 +14006,7 @@ return { [1]="local_display_trigger_level_X_warlords_mark_when_you_hit_rare_or_unique_enemy" } }, - [726]={ + [745]={ [1]={ [1]={ limit={ @@ -13668,7 +14022,7 @@ return { [1]="local_display_trigger_level_x_curse_nova_on_hit_while_cursed" } }, - [727]={ + [746]={ [1]={ [1]={ limit={ @@ -13684,7 +14038,7 @@ return { [1]="local_display_trigger_level_x_fiery_impact_on_melee_hit_with_this_weapon" } }, - [728]={ + [747]={ [1]={ [1]={ limit={ @@ -13700,7 +14054,7 @@ return { [1]="local_display_trigger_level_x_flame_dash_when_you_use_a_socketed_skill" } }, - [729]={ + [748]={ [1]={ [1]={ limit={ @@ -13716,7 +14070,7 @@ return { [1]="local_display_trigger_level_x_gore_shockwave_on_melee_hit_with_atleast_150_strength" } }, - [730]={ + [749]={ [1]={ [1]={ limit={ @@ -13732,7 +14086,7 @@ return { [1]="local_display_trigger_level_x_icicle_nova_on_hit_vs_frozen_enemy" } }, - [731]={ + [750]={ [1]={ [1]={ limit={ @@ -13748,7 +14102,7 @@ return { [1]="local_display_trigger_level_x_intimidating_cry_when_you_lose_cats_stealth" } }, - [732]={ + [751]={ [1]={ [1]={ limit={ @@ -13764,7 +14118,7 @@ return { [1]="local_display_trigger_level_x_rain_of_arrows_on_bow_attack" } }, - [733]={ + [752]={ [1]={ [1]={ limit={ @@ -13780,7 +14134,7 @@ return { [1]="local_display_trigger_level_x_reflection_skill_on_equip" } }, - [734]={ + [753]={ [1]={ [1]={ limit={ @@ -13796,7 +14150,7 @@ return { [1]="local_display_trigger_level_x_smoke_cloud_on_trap_triggered" } }, - [735]={ + [754]={ [1]={ [1]={ limit={ @@ -13812,7 +14166,7 @@ return { [1]="local_display_trigger_level_x_spirit_burst_on_skill_use_if_have_spirit_charge" } }, - [736]={ + [755]={ [1]={ [1]={ limit={ @@ -13828,7 +14182,7 @@ return { [1]="local_display_trigger_level_x_stalking_pustule_on_kill" } }, - [737]={ + [756]={ [1]={ [1]={ limit={ @@ -13844,7 +14198,7 @@ return { [1]="local_display_trigger_level_x_summon_phantasm_on_corpse_consume" } }, - [738]={ + [757]={ [1]={ [1]={ limit={ @@ -13860,7 +14214,7 @@ return { [1]="local_display_trigger_level_x_void_shot_on_arrow_fire_while_you_have_void_arrow" } }, - [739]={ + [758]={ [1]={ [1]={ limit={ @@ -13876,7 +14230,7 @@ return { [1]="local_display_trigger_summon_taunting_contraption_on_flask_use" } }, - [740]={ + [759]={ [1]={ [1]={ limit={ @@ -13901,7 +14255,7 @@ return { [1]="local_display_trigger_socketed_curses_on_casting_curse_%_chance" } }, - [741]={ + [760]={ [1]={ [1]={ limit={ @@ -13926,7 +14280,7 @@ return { [1]="local_display_trigger_temporal_anomaly_when_hit_%_chance" } }, - [742]={ + [761]={ [1]={ [1]={ limit={ @@ -13942,7 +14296,7 @@ return { [1]="local_display_trigger_tentacle_smash_on_kill_%_chance" } }, - [743]={ + [762]={ [1]={ [1]={ limit={ @@ -13958,7 +14312,7 @@ return { [1]="local_display_trigger_void_sphere_on_kill_%_chance" } }, - [744]={ + [763]={ [1]={ [1]={ limit={ @@ -13974,7 +14328,7 @@ return { [1]="local_display_use_level_X_abyssal_cry_on_hit" } }, - [745]={ + [764]={ [1]={ [1]={ limit={ @@ -13999,7 +14353,7 @@ return { [1]="local_unique_attacks_cast_socketed_lightning_spells_%" } }, - [746]={ + [765]={ [1]={ [1]={ limit={ @@ -14015,7 +14369,39 @@ return { [1]="local_unique_cast_socketed_cold_skills_on_melee_critical_strike" } }, - [747]={ + [766]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Trigger a Socketed Spell when you Block, with a 0.25 second Cooldown" + } + }, + stats={ + [1]="local_unique_cast_socketed_spell_on_block" + } + }, + [767]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Trigger a Socketed Spell when a Hit from this\nWeapon Freezes a Target, with a 0.25 second Cooldown" + } + }, + stats={ + [1]="main_hand_trigger_socketed_spell_on_freezing_hit" + } + }, + [768]={ [1]={ [1]={ limit={ @@ -14040,7 +14426,7 @@ return { [1]="trigger_socketed_bow_skills_on_spell_cast_while_wielding_a_bow_%" } }, - [748]={ + [769]={ [1]={ [1]={ limit={ @@ -14065,7 +14451,7 @@ return { [1]="trigger_socketed_spell_on_attack_%" } }, - [749]={ + [770]={ [1]={ [1]={ [1]={ @@ -14085,7 +14471,7 @@ return { [1]="local_weapon_trigger_socketed_spell_on_skill_use_display_cooldown_ms" } }, - [750]={ + [771]={ [1]={ [1]={ limit={ @@ -14110,7 +14496,7 @@ return { [1]="trigger_socketed_spell_on_skill_use_%" } }, - [751]={ + [772]={ [1]={ [1]={ limit={ @@ -14135,7 +14521,7 @@ return { [1]="trigger_socketed_spells_when_you_focus_%" } }, - [752]={ + [773]={ [1]={ [1]={ limit={ @@ -14151,7 +14537,7 @@ return { [1]="local_display_trigger_level_x_toxic_rain_on_bow_attack" } }, - [753]={ + [774]={ [1]={ [1]={ limit={ @@ -14167,7 +14553,7 @@ return { [1]="your_aegis_skills_except_primal_are_disabled" } }, - [754]={ + [775]={ [1]={ [1]={ limit={ @@ -14201,7 +14587,7 @@ return { [2]="local_flask_consume_extra_max_charges_when_used" } }, - [755]={ + [776]={ [1]={ [1]={ limit={ @@ -14217,7 +14603,7 @@ return { [1]="local_max_charges_+%" } }, - [756]={ + [777]={ [1]={ [1]={ limit={ @@ -14242,7 +14628,7 @@ return { [1]="local_flask_gain_X_charges_on_consuming_ignited_corpse" } }, - [757]={ + [778]={ [1]={ [1]={ limit={ @@ -14267,7 +14653,7 @@ return { [1]="local_flask_gain_X_charges_when_hit" } }, - [758]={ + [779]={ [1]={ [1]={ limit={ @@ -14292,7 +14678,7 @@ return { [1]="local_recharge_on_crit" } }, - [759]={ + [780]={ [1]={ [1]={ limit={ @@ -14317,7 +14703,7 @@ return { [1]="local_recharge_on_crit_%" } }, - [760]={ + [781]={ [1]={ [1]={ limit={ @@ -14342,7 +14728,7 @@ return { [1]="local_recharge_on_demon_killed" } }, - [761]={ + [782]={ [1]={ [1]={ limit={ @@ -14367,7 +14753,7 @@ return { [1]="local_recharge_on_take_crit" } }, - [762]={ + [783]={ [1]={ [1]={ limit={ @@ -14396,7 +14782,7 @@ return { [1]="local_charges_added_+%" } }, - [763]={ + [784]={ [1]={ [1]={ limit={ @@ -14464,7 +14850,7 @@ return { [2]="local_flask_consume_charges_used_+%_when_used" } }, - [764]={ + [785]={ [1]={ [1]={ limit={ @@ -14480,7 +14866,7 @@ return { [1]="local_flask_lose_all_charges_on_entering_new_area" } }, - [765]={ + [786]={ [1]={ [1]={ limit={ @@ -14496,7 +14882,7 @@ return { [1]="local_flask_life_to_recover" } }, - [766]={ + [787]={ [1]={ [1]={ limit={ @@ -14525,7 +14911,7 @@ return { [1]="local_flask_life_to_recover_+%" } }, - [767]={ + [788]={ [1]={ [1]={ limit={ @@ -14541,7 +14927,7 @@ return { [1]="local_flask_minion_heal_%" } }, - [768]={ + [789]={ [1]={ [1]={ [1]={ @@ -14561,7 +14947,7 @@ return { [1]="local_flask_life_recovery_from_flasks_also_recovers_energy_shield" } }, - [769]={ + [790]={ [1]={ [1]={ limit={ @@ -14577,7 +14963,7 @@ return { [1]="local_flask_mana_to_recover" } }, - [770]={ + [791]={ [1]={ [1]={ limit={ @@ -14606,7 +14992,7 @@ return { [1]="local_flask_mana_to_recover_+%" } }, - [771]={ + [792]={ [1]={ [1]={ limit={ @@ -14635,7 +15021,7 @@ return { [1]="local_flask_amount_to_recover_+%" } }, - [772]={ + [793]={ [1]={ [1]={ limit={ @@ -14664,7 +15050,7 @@ return { [1]="local_flask_recovery_speed_+%" } }, - [773]={ + [794]={ [1]={ [1]={ [1]={ @@ -14684,7 +15070,7 @@ return { [1]="local_flask_deciseconds_to_recover" } }, - [774]={ + [795]={ [1]={ [1]={ limit={ @@ -14752,7 +15138,7 @@ return { [2]="local_flask_consume_flask_duration_+%_when_used" } }, - [775]={ + [796]={ [1]={ [1]={ limit={ @@ -14781,7 +15167,7 @@ return { [1]="local_flask_duration_+%_final" } }, - [776]={ + [797]={ [1]={ [1]={ [1]={ @@ -14801,7 +15187,7 @@ return { [1]="local_flask_amount_to_recover_+%_when_on_low_life" } }, - [777]={ + [798]={ [1]={ [1]={ [1]={ @@ -14821,7 +15207,7 @@ return { [1]="local_flask_recover_instantly_when_on_low_life" } }, - [778]={ + [799]={ [1]={ [1]={ limit={ @@ -14846,7 +15232,7 @@ return { [1]="local_flask_recovery_amount_%_to_recover_instantly" } }, - [779]={ + [800]={ [1]={ [1]={ [1]={ @@ -14866,7 +15252,7 @@ return { [1]="local_flask_debilitate_nearby_enemies_for_X_seconds_when_flask_effect_ends" } }, - [780]={ + [801]={ [1]={ [1]={ limit={ @@ -14882,7 +15268,7 @@ return { [1]="local_flask_effect_ends_when_hit_by_player" } }, - [781]={ + [802]={ [1]={ [1]={ [1]={ @@ -14902,7 +15288,7 @@ return { [1]="local_flask_effect_not_removed_at_full_mana" } }, - [782]={ + [803]={ [1]={ [1]={ limit={ @@ -14918,7 +15304,7 @@ return { [1]="local_flask_mana_recovery_occurs_instantly_at_end_of_flask_effect" } }, - [783]={ + [804]={ [1]={ [1]={ limit={ @@ -14934,7 +15320,7 @@ return { [1]="local_flask_recovers_instantly" } }, - [784]={ + [805]={ [1]={ [1]={ limit={ @@ -14950,7 +15336,7 @@ return { [1]="local_flask_remove_effect_when_ward_breaks" } }, - [785]={ + [806]={ [1]={ [1]={ limit={ @@ -14975,7 +15361,7 @@ return { [1]="local_unique_flask_recover_%_maximum_life_when_effect_reaches_duration" } }, - [786]={ + [807]={ [1]={ [1]={ limit={ @@ -14991,7 +15377,7 @@ return { [1]="local_flask_removes_%_of_mana_recovery_from_life_on_use" } }, - [787]={ + [808]={ [1]={ [1]={ limit={ @@ -15007,7 +15393,7 @@ return { [1]="local_flask_removes_%_of_life_recovery_from_life_on_use" } }, - [788]={ + [809]={ [1]={ [1]={ limit={ @@ -15023,7 +15409,39 @@ return { [1]="local_flask_removes_%_of_life_recovery_from_mana_on_use" } }, - [789]={ + [810]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=100 + } + }, + text="Removes {0}% of Life when Used" + } + }, + stats={ + [1]="local_unique_flask_instantly_removes_%_maximum_life" + } + }, + [811]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Starts Energy Shield Recharge when Used" + } + }, + stats={ + [1]="local_unique_flask_start_energy_shield_recharge" + } + }, + [812]={ [1]={ [1]={ limit={ @@ -15039,7 +15457,7 @@ return { [1]="local_flask_removes_%_maximum_energy_shield_on_use" } }, - [790]={ + [813]={ [1]={ [1]={ limit={ @@ -15055,7 +15473,7 @@ return { [1]="local_flask_deals_%_maximum_life_as_chaos_damage_on_use" } }, - [791]={ + [814]={ [1]={ [1]={ limit={ @@ -15080,7 +15498,7 @@ return { [1]="local_unique_flask_instantly_recovers_%_maximum_life" } }, - [792]={ + [815]={ [1]={ [1]={ [1]={ @@ -15100,7 +15518,7 @@ return { [1]="local_unique_flask_chaos_damage_%_of_maximum_life_to_deal_per_minute_while_healing" } }, - [793]={ + [816]={ [1]={ [1]={ [1]={ @@ -15120,7 +15538,7 @@ return { [1]="local_consecrate_ground_on_flask_use_radius" } }, - [794]={ + [817]={ [1]={ [1]={ [1]={ @@ -15140,7 +15558,7 @@ return { [1]="local_flask_chilled_ground_on_flask_use_radius" } }, - [795]={ + [818]={ [1]={ [1]={ limit={ @@ -15174,7 +15592,7 @@ return { [1]="local_flask_area_of_consecrated_ground_+%" } }, - [796]={ + [819]={ [1]={ [1]={ limit={ @@ -15190,7 +15608,7 @@ return { [1]="local_flask_consumes_max_charges_on_use" } }, - [797]={ + [820]={ [1]={ [1]={ limit={ @@ -15224,7 +15642,7 @@ return { [1]="local_flask_consumes_x_endurance_charges_on_use" } }, - [798]={ + [821]={ [1]={ [1]={ limit={ @@ -15258,7 +15676,7 @@ return { [1]="local_flask_consumes_x_frenzy_charges_on_use" } }, - [799]={ + [822]={ [1]={ [1]={ limit={ @@ -15292,7 +15710,7 @@ return { [1]="local_flask_consumes_x_power_charges_on_use" } }, - [800]={ + [823]={ [1]={ [1]={ limit={ @@ -15308,7 +15726,7 @@ return { [1]="local_flask_gain_charges_consumed_as_vaal_souls_on_use" } }, - [801]={ + [824]={ [1]={ [1]={ limit={ @@ -15333,7 +15751,7 @@ return { [1]="local_flask_gain_endurance_charges_on_use" } }, - [802]={ + [825]={ [1]={ [1]={ limit={ @@ -15358,7 +15776,7 @@ return { [1]="local_flask_gain_frenzy_charges_on_use" } }, - [803]={ + [826]={ [1]={ [1]={ limit={ @@ -15383,7 +15801,7 @@ return { [1]="local_flask_gain_power_charges_on_use" } }, - [804]={ + [827]={ [1]={ [1]={ [1]={ @@ -15416,7 +15834,7 @@ return { [1]="local_flask_gain_x_seconds_of_onslaught_per_frenzy_charge_consumed" } }, - [805]={ + [828]={ [1]={ [1]={ limit={ @@ -15432,7 +15850,7 @@ return { [1]="local_flask_gain_x_vaal_souls_on_use" } }, - [806]={ + [829]={ [1]={ [1]={ [1]={ @@ -15452,7 +15870,7 @@ return { [1]="local_flask_inflict_fire_cold_lightning_exposure_on_nearby_enemies_on_use" } }, - [807]={ + [830]={ [1]={ [1]={ limit={ @@ -15468,7 +15886,7 @@ return { [1]="local_flask_lose_all_endurance_charges_and_recover_%_life_for_each_on_use" } }, - [808]={ + [831]={ [1]={ [1]={ [1]={ @@ -15488,7 +15906,7 @@ return { [1]="local_flask_taunt_enemies_on_use_radius" } }, - [809]={ + [832]={ [1]={ [1]={ [1]={ @@ -15508,7 +15926,7 @@ return { [1]="local_flask_use_causes_area_knockback" } }, - [810]={ + [833]={ [1]={ [1]={ limit={ @@ -15524,7 +15942,7 @@ return { [1]="local_flask_use_causes_monster_flee_chance_%" } }, - [811]={ + [834]={ [1]={ [1]={ [1]={ @@ -15544,7 +15962,7 @@ return { [1]="local_smoke_ground_on_flask_use_radius" } }, - [812]={ + [835]={ [1]={ [1]={ limit={ @@ -15560,7 +15978,7 @@ return { [1]="local_flask_remove_curses_on_use" } }, - [813]={ + [836]={ [1]={ [1]={ [1]={ @@ -15584,7 +16002,7 @@ return { [1]="divination_buff_on_flask_used_duration_cs" } }, - [814]={ + [837]={ [1]={ [1]={ limit={ @@ -15600,7 +16018,7 @@ return { [1]="local_flask_additional_x%_life_recovery_per_second_over_10_seconds_if_not_on_full_life" } }, - [815]={ + [838]={ [1]={ [1]={ limit={ @@ -15616,7 +16034,7 @@ return { [1]="local_flask_bleeding_immunity_if_bleeding_and_remove_corrupted_blood" } }, - [816]={ + [839]={ [1]={ [1]={ limit={ @@ -15632,7 +16050,7 @@ return { [1]="local_flask_bleeding_immunity_if_bleeding_and_remove_corrupted_blood_s" } }, - [817]={ + [840]={ [1]={ [1]={ limit={ @@ -15648,7 +16066,7 @@ return { [1]="local_flask_chill_or_freeze_immunity_if_chilled_or_frozen" } }, - [818]={ + [841]={ [1]={ [1]={ limit={ @@ -15664,7 +16082,7 @@ return { [1]="local_flask_chill_or_freeze_immunity_if_chilled_or_frozen_s" } }, - [819]={ + [842]={ [1]={ [1]={ limit={ @@ -15680,7 +16098,7 @@ return { [1]="local_flask_ignite_immunity_if_ignited_and_remove_burning" } }, - [820]={ + [843]={ [1]={ [1]={ limit={ @@ -15696,7 +16114,7 @@ return { [1]="local_flask_ignite_immunity_if_ignited_and_remove_burning_s" } }, - [821]={ + [844]={ [1]={ [1]={ limit={ @@ -15712,7 +16130,7 @@ return { [1]="local_flask_immune_to_hinder_for_x_seconds_if_hindered" } }, - [822]={ + [845]={ [1]={ [1]={ limit={ @@ -15728,7 +16146,7 @@ return { [1]="local_flask_immune_to_maim_for_x_seconds_if_maimed" } }, - [823]={ + [846]={ [1]={ [1]={ limit={ @@ -15744,7 +16162,7 @@ return { [1]="local_flask_poison_immunity_if_poisoned" } }, - [824]={ + [847]={ [1]={ [1]={ limit={ @@ -15760,7 +16178,7 @@ return { [1]="local_flask_poison_immunity_if_poisoned_s" } }, - [825]={ + [848]={ [1]={ [1]={ limit={ @@ -15776,7 +16194,7 @@ return { [1]="local_flask_shock_immunity_if_shocked" } }, - [826]={ + [849]={ [1]={ [1]={ limit={ @@ -15792,7 +16210,7 @@ return { [1]="local_flask_shock_immunity_if_shocked_s" } }, - [827]={ + [850]={ [1]={ [1]={ [1]={ @@ -15812,7 +16230,7 @@ return { [1]="local_flask_hinder_nearby_enemies_%_for_4_seconds_if_not_on_full_life" } }, - [828]={ + [851]={ [1]={ [1]={ [1]={ @@ -15832,7 +16250,7 @@ return { [1]="local_flask_hinder_nearby_enemies_%_for_4_seconds_if_not_on_full_mana" } }, - [829]={ + [852]={ [1]={ [1]={ limit={ @@ -15848,7 +16266,7 @@ return { [1]="local_flask_dispels_freeze_and_chill" } }, - [830]={ + [853]={ [1]={ [1]={ limit={ @@ -15864,7 +16282,7 @@ return { [1]="local_flask_adapt_each_element" } }, - [831]={ + [854]={ [1]={ [1]={ limit={ @@ -15880,7 +16298,7 @@ return { [1]="local_flask_dispels_burning_and_ignite_immunity_during_effect" } }, - [832]={ + [855]={ [1]={ [1]={ limit={ @@ -15896,7 +16314,7 @@ return { [1]="local_flask_restore_ward" } }, - [833]={ + [856]={ [1]={ [1]={ limit={ @@ -15921,7 +16339,7 @@ return { [1]="local_number_of_bloodworms_to_spawn_on_flask_use" } }, - [834]={ + [857]={ [1]={ [1]={ limit={ @@ -15937,7 +16355,7 @@ return { [1]="local_flask_use_on_adjacent_flask_use" } }, - [835]={ + [858]={ [1]={ [1]={ limit={ @@ -15953,7 +16371,7 @@ return { [1]="local_flask_use_on_affected_by_bleed" } }, - [836]={ + [859]={ [1]={ [1]={ limit={ @@ -15969,7 +16387,7 @@ return { [1]="local_flask_use_on_affected_by_chill" } }, - [837]={ + [860]={ [1]={ [1]={ limit={ @@ -15985,7 +16403,7 @@ return { [1]="local_flask_use_on_affected_by_freeze" } }, - [838]={ + [861]={ [1]={ [1]={ limit={ @@ -16001,7 +16419,7 @@ return { [1]="local_flask_use_on_affected_by_ignite" } }, - [839]={ + [862]={ [1]={ [1]={ limit={ @@ -16017,7 +16435,7 @@ return { [1]="local_flask_use_on_affected_by_poison" } }, - [840]={ + [863]={ [1]={ [1]={ limit={ @@ -16033,7 +16451,7 @@ return { [1]="local_flask_use_on_affected_by_shock" } }, - [841]={ + [864]={ [1]={ [1]={ limit={ @@ -16049,7 +16467,7 @@ return { [1]="local_flask_use_on_damage_blocked" } }, - [842]={ + [865]={ [1]={ [1]={ limit={ @@ -16065,7 +16483,7 @@ return { [1]="local_flask_use_on_flask_effect_ended" } }, - [843]={ + [866]={ [1]={ [1]={ limit={ @@ -16081,7 +16499,7 @@ return { [1]="local_flask_use_on_full_charges" } }, - [844]={ + [867]={ [1]={ [1]={ limit={ @@ -16097,7 +16515,7 @@ return { [1]="local_flask_use_on_guard_skill_expired" } }, - [845]={ + [868]={ [1]={ [1]={ limit={ @@ -16113,7 +16531,7 @@ return { [1]="local_flask_use_on_guard_skill_used" } }, - [846]={ + [869]={ [1]={ [1]={ limit={ @@ -16129,7 +16547,7 @@ return { [1]="local_flask_use_on_hitting_rare_unique_enemy_while_inactive" } }, - [847]={ + [870]={ [1]={ [1]={ [1]={ @@ -16149,7 +16567,7 @@ return { [1]="local_flask_use_on_taking_savage_hit" } }, - [848]={ + [871]={ [1]={ [1]={ limit={ @@ -16165,7 +16583,7 @@ return { [1]="local_flask_use_on_travel_skill_used" } }, - [849]={ + [872]={ [1]={ [1]={ limit={ @@ -16181,7 +16599,7 @@ return { [1]="local_flask_use_on_using_a_life_flask" } }, - [850]={ + [873]={ [1]={ [1]={ limit={ @@ -16249,7 +16667,7 @@ return { [2]="local_flask_consume_flask_effect_+%_when_used" } }, - [851]={ + [874]={ [1]={ [1]={ limit={ @@ -16265,7 +16683,7 @@ return { [1]="local_flask_armour_+%_while_healing" } }, - [852]={ + [875]={ [1]={ [1]={ limit={ @@ -16281,7 +16699,7 @@ return { [1]="local_flask_evasion_+%_while_healing" } }, - [853]={ + [876]={ [1]={ [1]={ limit={ @@ -16297,7 +16715,7 @@ return { [1]="local_flask_energy_shield_+%_while_healing" } }, - [854]={ + [877]={ [1]={ [1]={ limit={ @@ -16326,7 +16744,7 @@ return { [1]="local_flask_ward_+%_during_effect" } }, - [855]={ + [878]={ [1]={ [1]={ limit={ @@ -16342,7 +16760,7 @@ return { [1]="local_flask_ward_does_not_break_during_effect" } }, - [856]={ + [879]={ [1]={ [1]={ limit={ @@ -16371,7 +16789,7 @@ return { [1]="local_flask_adaptation_rating_+%_during_effect" } }, - [857]={ + [880]={ [1]={ [1]={ limit={ @@ -16387,7 +16805,7 @@ return { [1]="local_flask_adaptations_apply_to_all_elements_during_effect" } }, - [858]={ + [881]={ [1]={ [1]={ limit={ @@ -16403,7 +16821,7 @@ return { [1]="local_flask_accuracy_rating_+%_during_effect" } }, - [859]={ + [882]={ [1]={ [1]={ limit={ @@ -16432,7 +16850,7 @@ return { [1]="local_flask_attack_speed_+%_while_healing" } }, - [860]={ + [883]={ [1]={ [1]={ limit={ @@ -16461,7 +16879,7 @@ return { [1]="local_flask_cast_speed_+%_while_healing" } }, - [861]={ + [884]={ [1]={ [1]={ limit={ @@ -16477,7 +16895,7 @@ return { [1]="local_flask_movement_speed_+%_while_healing" } }, - [862]={ + [885]={ [1]={ [1]={ limit={ @@ -16493,7 +16911,7 @@ return { [1]="local_flask_stun_recovery_+%_while_healing" } }, - [863]={ + [886]={ [1]={ [1]={ limit={ @@ -16509,7 +16927,7 @@ return { [1]="local_flask_resistances_+%_while_healing" } }, - [864]={ + [887]={ [1]={ [1]={ [1]={ @@ -16533,7 +16951,7 @@ return { [1]="old_do_not_use_local_flask_life_leech_%_while_healing" } }, - [865]={ + [888]={ [1]={ [1]={ [1]={ @@ -16557,7 +16975,7 @@ return { [1]="local_flask_energy_shield_leech_from_spell_damage_permyriad_while_healing" } }, - [866]={ + [889]={ [1]={ [1]={ [1]={ @@ -16581,7 +16999,7 @@ return { [1]="local_flask_life_leech_from_attack_damage_permyriad_while_healing" } }, - [867]={ + [890]={ [1]={ [1]={ [1]={ @@ -16605,7 +17023,7 @@ return { [1]="local_flask_life_leech_permyriad_while_healing" } }, - [868]={ + [891]={ [1]={ [1]={ [1]={ @@ -16629,7 +17047,7 @@ return { [1]="old_do_not_use_local_flask_mana_leech_%_while_healing" } }, - [869]={ + [892]={ [1]={ [1]={ [1]={ @@ -16653,7 +17071,7 @@ return { [1]="local_flask_mana_leech_permyriad_while_healing" } }, - [870]={ + [893]={ [1]={ [1]={ [1]={ @@ -16673,7 +17091,7 @@ return { [1]="local_flask_adds_knockback_while_healing" } }, - [871]={ + [894]={ [1]={ [1]={ limit={ @@ -16689,7 +17107,7 @@ return { [1]="local_fire_and_lightning_hit_and_dot_damage_%_taken_as_cold_during_effect" } }, - [872]={ + [895]={ [1]={ [1]={ limit={ @@ -16705,7 +17123,7 @@ return { [1]="local_unique_flask_physical_damage_taken_%_as_cold_while_healing" } }, - [873]={ + [896]={ [1]={ [1]={ limit={ @@ -16721,7 +17139,7 @@ return { [1]="local_unique_flask_physical_damage_%_to_add_as_cold_while_healing" } }, - [874]={ + [897]={ [1]={ [1]={ limit={ @@ -16737,7 +17155,7 @@ return { [1]="local_unique_flask_avoid_chill_%_while_healing" } }, - [875]={ + [898]={ [1]={ [1]={ limit={ @@ -16753,7 +17171,7 @@ return { [1]="local_unique_chaos_damage_does_not_bypass_energy_shield_during_flask_effect" } }, - [876]={ + [899]={ [1]={ [1]={ limit={ @@ -16769,7 +17187,7 @@ return { [1]="local_unique_flask_avoid_freeze_%_while_healing" } }, - [877]={ + [900]={ [1]={ [1]={ [1]={ @@ -16789,7 +17207,7 @@ return { [1]="local_flask_life_gain_on_skill_use_%_mana_cost" } }, - [878]={ + [901]={ [1]={ [1]={ limit={ @@ -16805,7 +17223,7 @@ return { [1]="local_avoid_chill_%_during_flask_effect" } }, - [879]={ + [902]={ [1]={ [1]={ limit={ @@ -16821,7 +17239,7 @@ return { [1]="local_avoid_freeze_%_during_flask_effect" } }, - [880]={ + [903]={ [1]={ [1]={ limit={ @@ -16837,7 +17255,7 @@ return { [1]="local_avoid_ignite_%_during_flask_effect" } }, - [881]={ + [904]={ [1]={ [1]={ limit={ @@ -16853,7 +17271,7 @@ return { [1]="local_avoid_shock_%_during_flask_effect" } }, - [882]={ + [905]={ [1]={ [1]={ [1]={ @@ -16873,7 +17291,7 @@ return { [1]="local_chance_to_poison_on_hit_%_during_flask_effect" } }, - [883]={ + [906]={ [1]={ [1]={ limit={ @@ -16889,7 +17307,7 @@ return { [1]="local_flask_additional_physical_damage_reduction_%" } }, - [884]={ + [907]={ [1]={ [1]={ [1]={ @@ -16909,7 +17327,7 @@ return { [1]="local_flask_adds_knockback_during_flask_effect" } }, - [885]={ + [908]={ [1]={ [1]={ limit={ @@ -16925,7 +17343,7 @@ return { [1]="local_flask_area_of_effect_+%_during_flask_effect" } }, - [886]={ + [909]={ [1]={ [1]={ limit={ @@ -16941,7 +17359,7 @@ return { [1]="local_flask_avoid_stun_chance_%_during_flask_effect" } }, - [887]={ + [910]={ [1]={ [1]={ limit={ @@ -16957,7 +17375,7 @@ return { [1]="local_flask_cannot_be_stunned_during_flask_effect" } }, - [888]={ + [911]={ [1]={ [1]={ limit={ @@ -16973,7 +17391,7 @@ return { [1]="local_flask_chance_to_freeze_shock_ignite_%_while_healing" } }, - [889]={ + [912]={ [1]={ [1]={ [1]={ @@ -16993,7 +17411,7 @@ return { [1]="local_flask_critical_strike_chance_against_enemies_on_consecrated_ground_%_during_effect" } }, - [890]={ + [913]={ [1]={ [1]={ limit={ @@ -17022,7 +17440,7 @@ return { [1]="local_flask_critical_strike_chance_+%_during_flask_effect" } }, - [891]={ + [914]={ [1]={ [1]={ [1]={ @@ -17042,7 +17460,7 @@ return { [1]="local_flask_culling_strike_during_flask_effect" } }, - [892]={ + [915]={ [1]={ [1]={ limit={ @@ -17058,7 +17476,23 @@ return { [1]="local_flask_during_effect_enemy_damage_taken_+%_on_consecrated_ground" } }, - [893]={ + [916]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Energy Shield Recharge is not delayed by Damage during Effect" + } + }, + stats={ + [1]="local_flask_energy_shield_recharge_not_delayed_by_damage_during_effect" + } + }, + [917]={ [1]={ [1]={ limit={ @@ -17074,7 +17508,7 @@ return { [1]="local_flask_gain_endurance_charge_per_second_during_flask_effect" } }, - [894]={ + [918]={ [1]={ [1]={ [1]={ @@ -17107,7 +17541,7 @@ return { [1]="local_flask_ignite_proliferation_radius_during_effect" } }, - [895]={ + [919]={ [1]={ [1]={ [1]={ @@ -17127,7 +17561,7 @@ return { [1]="local_flask_ignited_enemies_during_effect_have_malediction" } }, - [896]={ + [920]={ [1]={ [1]={ limit={ @@ -17143,7 +17577,7 @@ return { [1]="local_flask_immune_to_bleeding_and_corrupted_blood_during_flask_effect" } }, - [897]={ + [921]={ [1]={ [1]={ limit={ @@ -17159,7 +17593,7 @@ return { [1]="local_flask_immune_to_damage" } }, - [898]={ + [922]={ [1]={ [1]={ limit={ @@ -17175,7 +17609,7 @@ return { [1]="local_flask_immune_to_freeze_and_chill_during_flask_effect" } }, - [899]={ + [923]={ [1]={ [1]={ limit={ @@ -17191,7 +17625,7 @@ return { [1]="local_flask_immune_to_poison_during_flask_effect" } }, - [900]={ + [924]={ [1]={ [1]={ limit={ @@ -17207,7 +17641,7 @@ return { [1]="local_flask_immune_to_shock_during_flask_effect" } }, - [901]={ + [925]={ [1]={ [1]={ limit={ @@ -17223,7 +17657,7 @@ return { [1]="local_flask_is_petrified" } }, - [902]={ + [926]={ [1]={ [1]={ limit={ @@ -17252,7 +17686,7 @@ return { [1]="local_flask_item_found_rarity_+%_during_flask_effect" } }, - [903]={ + [927]={ [1]={ [1]={ [1]={ @@ -17280,7 +17714,7 @@ return { [1]="local_flask_life_leech_expected_ignite_damage_permyriad_during_effect" } }, - [904]={ + [928]={ [1]={ [1]={ limit={ @@ -17296,7 +17730,7 @@ return { [1]="local_flask_life_leech_is_instant_during_flask_effect" } }, - [905]={ + [929]={ [1]={ [1]={ [1]={ @@ -17320,7 +17754,7 @@ return { [1]="local_flask_life_leech_on_damage_taken_%_permyriad_during_flask_effect" } }, - [906]={ + [930]={ [1]={ [1]={ [1]={ @@ -17340,7 +17774,7 @@ return { [1]="local_flask_life_regeneration_per_minute_%_during_flask_effect" } }, - [907]={ + [931]={ [1]={ [1]={ limit={ @@ -17356,7 +17790,7 @@ return { [1]="local_flask_no_mana_recovery_during_effect" } }, - [908]={ + [932]={ [1]={ [1]={ [1]={ @@ -17389,7 +17823,7 @@ return { [1]="local_flask_non_damaging_ailment_effect_+%_during_flask_effect" } }, - [909]={ + [933]={ [1]={ [1]={ limit={ @@ -17423,7 +17857,7 @@ return { [1]="local_flask_number_of_additional_curses_allowed_during_effect" } }, - [910]={ + [934]={ [1]={ [1]={ limit={ @@ -17448,7 +17882,7 @@ return { [1]="local_flask_number_of_additional_projectiles_during_flask_effect" } }, - [911]={ + [935]={ [1]={ [1]={ limit={ @@ -17464,7 +17898,7 @@ return { [1]="local_flask_physical_damage_can_ignite_during_effect" } }, - [912]={ + [936]={ [1]={ [1]={ limit={ @@ -17493,7 +17927,7 @@ return { [1]="local_flask_reflect_damage_taken_+%_during_flask_effect" } }, - [913]={ + [937]={ [1]={ [1]={ limit={ @@ -17522,7 +17956,7 @@ return { [1]="local_flask_skill_mana_cost_+%_during_flask_effect" } }, - [914]={ + [938]={ [1]={ [1]={ [1]={ @@ -17555,7 +17989,7 @@ return { [1]="local_flask_vaal_souls_gained_per_minute_during_effect" } }, - [915]={ + [939]={ [1]={ [1]={ limit={ @@ -17571,7 +18005,7 @@ return { [1]="local_no_critical_strike_multiplier_during_flask_effect" } }, - [916]={ + [940]={ [1]={ [1]={ limit={ @@ -17600,7 +18034,7 @@ return { [1]="local_poison_duration_+%_during_flask_effect" } }, - [917]={ + [941]={ [1]={ [1]={ limit={ @@ -17629,7 +18063,7 @@ return { [1]="local_self_bleed_duration_+%_during_flask_effect" } }, - [918]={ + [942]={ [1]={ [1]={ limit={ @@ -17658,7 +18092,7 @@ return { [1]="local_self_chill_effect_+%_during_flask_effect" } }, - [919]={ + [943]={ [1]={ [1]={ limit={ @@ -17687,7 +18121,7 @@ return { [1]="local_self_curse_effect_+%_during_flask_effect" } }, - [920]={ + [944]={ [1]={ [1]={ limit={ @@ -17716,7 +18150,7 @@ return { [1]="local_self_freeze_duration_+%_during_flask_effect" } }, - [921]={ + [945]={ [1]={ [1]={ limit={ @@ -17745,7 +18179,7 @@ return { [1]="local_self_ignite_duration_+%_during_flask_effect" } }, - [922]={ + [946]={ [1]={ [1]={ limit={ @@ -17774,7 +18208,7 @@ return { [1]="local_self_poison_duration_+%_during_flask_effect" } }, - [923]={ + [947]={ [1]={ [1]={ limit={ @@ -17803,7 +18237,7 @@ return { [1]="local_self_shock_effect_+%_during_flask_effect" } }, - [924]={ + [948]={ [1]={ [1]={ limit={ @@ -17832,7 +18266,7 @@ return { [1]="local_unique_expedition_flask_ward_+%_final_during_flask_effect" } }, - [925]={ + [949]={ [1]={ [1]={ [1]={ @@ -17852,7 +18286,7 @@ return { [1]="local_unique_flask_additional_maximum_all_elemental_resistances_%_while_healing" } }, - [926]={ + [950]={ [1]={ [1]={ limit={ @@ -17868,7 +18302,7 @@ return { [1]="local_unique_flask_block_%_while_healing" } }, - [927]={ + [951]={ [1]={ [1]={ limit={ @@ -17884,7 +18318,7 @@ return { [1]="local_unique_flask_cannot_recover_life_while_healing" } }, - [928]={ + [952]={ [1]={ [1]={ limit={ @@ -17900,7 +18334,7 @@ return { [1]="local_unique_flask_charges_gained_+%_during_flask_effect" } }, - [929]={ + [953]={ [1]={ [1]={ limit={ @@ -17916,7 +18350,7 @@ return { [1]="local_unique_flask_critical_poison_dot_multiplier_+_during_flask_effect" } }, - [930]={ + [954]={ [1]={ [1]={ limit={ @@ -17945,7 +18379,7 @@ return { [1]="local_unique_flask_critical_strike_chance_+%_vs_enemies_on_consecrated_ground_during_flask_effect" } }, - [931]={ + [955]={ [1]={ [1]={ limit={ @@ -17974,7 +18408,7 @@ return { [1]="local_unique_flask_damage_over_time_+%_during_flask_effect" } }, - [932]={ + [956]={ [1]={ [1]={ limit={ @@ -18003,7 +18437,7 @@ return { [1]="local_unique_flask_damage_+%_vs_demons_while_healing" } }, - [933]={ + [957]={ [1]={ [1]={ limit={ @@ -18032,7 +18466,7 @@ return { [1]="local_unique_flask_damage_taken_+%_vs_demons_while_healing" } }, - [934]={ + [958]={ [1]={ [1]={ limit={ @@ -18048,7 +18482,23 @@ return { [1]="local_unique_flask_elemental_damage_%_to_add_as_chaos_while_healing" } }, - [935]={ + [959]={ + [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" + } + }, + stats={ + [1]="local_unique_flask_explode_enemies_for_10%_life_as_random_element_on_kill_chance_%_during_flask_effect" + } + }, + [960]={ [1]={ [1]={ limit={ @@ -18064,7 +18514,7 @@ return { [1]="local_unique_flask_item_quantity_+%_while_healing" } }, - [936]={ + [961]={ [1]={ [1]={ limit={ @@ -18080,7 +18530,7 @@ return { [1]="local_unique_flask_item_rarity_+%_while_healing" } }, - [937]={ + [962]={ [1]={ [1]={ limit={ @@ -18096,7 +18546,7 @@ return { [1]="local_unique_flask_kiaras_determination" } }, - [938]={ + [963]={ [1]={ [1]={ [1]={ @@ -18120,7 +18570,7 @@ return { [1]="local_unique_flask_life_leech_from_chaos_damage_permyriad_while_healing" } }, - [939]={ + [964]={ [1]={ [1]={ limit={ @@ -18136,7 +18586,7 @@ return { [1]="local_unique_flask_light_radius_+%_while_healing" } }, - [940]={ + [965]={ [1]={ [1]={ limit={ @@ -18152,7 +18602,7 @@ return { [1]="local_unique_flask_nearby_enemies_cursed_with_level_x_despair_during_flask_effect" } }, - [941]={ + [966]={ [1]={ [1]={ limit={ @@ -18168,7 +18618,7 @@ return { [1]="local_unique_flask_nearby_enemies_cursed_with_level_x_vulnerability_during_flask_effect" } }, - [942]={ + [967]={ [1]={ [1]={ limit={ @@ -18184,7 +18634,7 @@ return { [1]="local_unique_flask_no_mana_cost_while_healing" } }, - [943]={ + [968]={ [1]={ [1]={ limit={ @@ -18200,7 +18650,7 @@ return { [1]="local_unique_flask_physical_damage_%_to_add_as_chaos_while_healing" } }, - [944]={ + [969]={ [1]={ [1]={ limit={ @@ -18216,7 +18666,7 @@ return { [1]="local_unique_flask_resist_all_elements_%_during_flask_effect" } }, - [945]={ + [970]={ [1]={ [1]={ limit={ @@ -18232,7 +18682,7 @@ return { [1]="local_unique_flask_spell_block_%_while_healing" } }, - [946]={ + [971]={ [1]={ [1]={ limit={ @@ -18261,7 +18711,7 @@ return { [1]="local_unique_flask_vaal_skill_critical_strike_chance_+%_during_flask_effect" } }, - [947]={ + [972]={ [1]={ [1]={ limit={ @@ -18290,7 +18740,7 @@ return { [1]="local_unique_flask_vaal_skill_damage_+%_during_flask_effect" } }, - [948]={ + [973]={ [1]={ [1]={ limit={ @@ -18319,7 +18769,7 @@ return { [1]="local_unique_flask_vaal_skill_damage_+%_final_during_flask_effect" } }, - [949]={ + [974]={ [1]={ [1]={ limit={ @@ -18335,7 +18785,7 @@ return { [1]="local_unique_flask_vaal_skill_does_not_apply_soul_gain_prevention_during_flask_effect" } }, - [950]={ + [975]={ [1]={ [1]={ limit={ @@ -18364,7 +18814,7 @@ return { [1]="local_unique_flask_vaal_skill_soul_cost_+%_during_flask_effect" } }, - [951]={ + [976]={ [1]={ [1]={ limit={ @@ -18393,7 +18843,7 @@ return { [1]="local_unique_flask_vaal_skill_soul_gain_preventation_duration_+%_during_flask_effect" } }, - [952]={ + [977]={ [1]={ [1]={ limit={ @@ -18409,7 +18859,7 @@ return { [1]="local_unique_lions_roar_melee_physical_damage_+%_final_during_flask_effect" } }, - [953]={ + [978]={ [1]={ [1]={ [1]={ @@ -18433,7 +18883,7 @@ return { [1]="old_do_not_use_local_unique_flask_life_leech_from_chaos_damage_permyriad_while_healing" } }, - [954]={ + [979]={ [1]={ [1]={ limit={ @@ -18449,7 +18899,7 @@ return { [1]="unique_spread_poison_to_nearby_enemies_during_flask_effect" } }, - [955]={ + [980]={ [1]={ [1]={ [1]={ @@ -18469,7 +18919,7 @@ return { [1]="local_chaos_damage_taken_per_minute_during_flask_effect" } }, - [956]={ + [981]={ [1]={ [1]={ limit={ @@ -18498,7 +18948,7 @@ return { [1]="local_flask_enemies_ignited_during_flask_effect_damage_taken_+%" } }, - [957]={ + [982]={ [1]={ [1]={ limit={ @@ -18514,7 +18964,7 @@ return { [1]="local_flask_recover_%_maximum_life_on_kill_during_flask_effect" } }, - [958]={ + [983]={ [1]={ [1]={ limit={ @@ -18530,7 +18980,7 @@ return { [1]="local_flask_recover_%_maximum_mana_on_kill_during_flask_effect" } }, - [959]={ + [984]={ [1]={ [1]={ limit={ @@ -18546,7 +18996,7 @@ return { [1]="local_flask_recover_%_maximum_energy_shield_on_kill_during_flask_effect" } }, - [960]={ + [985]={ [1]={ [1]={ limit={ @@ -18575,7 +19025,7 @@ return { [1]="local_attack_cast_movement_speed_+%_during_flask_effect" } }, - [961]={ + [986]={ [1]={ [1]={ limit={ @@ -18604,7 +19054,7 @@ return { [1]="local_attack_cast_movement_speed_+%_per_second_during_flask_effect" } }, - [962]={ + [987]={ [1]={ [1]={ [1]={ @@ -18624,7 +19074,7 @@ return { [1]="local_flask_unholy_might_during_flask_effect" } }, - [963]={ + [988]={ [1]={ [1]={ limit={ @@ -18640,7 +19090,7 @@ return { [1]="local_flask_prevents_death_while_healing" } }, - [964]={ + [989]={ [1]={ [1]={ [1]={ @@ -18677,7 +19127,7 @@ return { [1]="local_unique_flask_elemental_damage_taken_+%_of_lowest_uncapped_resistance_type" } }, - [965]={ + [990]={ [1]={ [1]={ [1]={ @@ -18697,7 +19147,7 @@ return { [1]="local_unique_flask_elemental_penetration_%_of_highest_uncapped_resistance_type" } }, - [966]={ + [991]={ [1]={ [1]={ limit={ @@ -18713,7 +19163,7 @@ return { [1]="local_unique_flask_shock_nearby_enemies_during_flask_effect" } }, - [967]={ + [992]={ [1]={ [1]={ limit={ @@ -18729,7 +19179,7 @@ return { [1]="local_unique_flask_shocked_during_flask_effect" } }, - [968]={ + [993]={ [1]={ [1]={ limit={ @@ -18745,7 +19195,7 @@ return { [1]="local_unique_flask_physical_damage_%_converted_to_lightning_during_flask_effect" } }, - [969]={ + [994]={ [1]={ [1]={ limit={ @@ -18761,7 +19211,7 @@ return { [1]="local_unique_flask_lightning_resistance_penetration_%_during_flask_effect" } }, - [970]={ + [995]={ [1]={ [1]={ limit={ @@ -18790,7 +19240,7 @@ return { [1]="local_unique_vinktars_flask_shock_effect_+%_during_flask_effect" } }, - [971]={ + [996]={ [1]={ [1]={ [1]={ @@ -18823,7 +19273,7 @@ return { [1]="local_unique_vinktars_flask_shock_proliferation_radius_during_flask_effect" } }, - [972]={ + [997]={ [1]={ [1]={ limit={ @@ -18844,7 +19294,7 @@ return { [2]="local_unique_flask_maximum_added_lightning_damage_to_attacks_during_flask_effect" } }, - [973]={ + [998]={ [1]={ [1]={ limit={ @@ -18865,7 +19315,7 @@ return { [2]="local_unique_flask_maximum_added_lightning_damage_to_spells_during_flask_effect" } }, - [974]={ + [999]={ [1]={ [1]={ [1]={ @@ -18889,7 +19339,7 @@ return { [1]="local_unique_flask_leech_lightning_damage_%_as_life_during_flask_effect" } }, - [975]={ + [1000]={ [1]={ [1]={ [1]={ @@ -18913,7 +19363,7 @@ return { [1]="local_unique_flask_leech_lightning_damage_%_as_mana_during_flask_effect" } }, - [976]={ + [1001]={ [1]={ [1]={ limit={ @@ -18929,7 +19379,7 @@ return { [1]="local_unique_flask_leech_is_instant_during_flask_effect" } }, - [977]={ + [1002]={ [1]={ [1]={ limit={ @@ -18945,7 +19395,7 @@ return { [1]="local_flask_cannot_gain_charges_during_flask_effect" } }, - [978]={ + [1003]={ [1]={ [1]={ limit={ @@ -18961,7 +19411,7 @@ return { [1]="local_unique_overflowing_chalice_flask_cannot_gain_flask_charges_during_flask_effect" } }, - [979]={ + [1004]={ [1]={ [1]={ limit={ @@ -18977,7 +19427,7 @@ return { [1]="local_unique_soul_ripper_flask_cannot_gain_flask_charges_during_flask_effect" } }, - [980]={ + [1005]={ [1]={ [1]={ [1]={ @@ -18997,7 +19447,7 @@ return { [1]="local_flask_ghost_reaver" } }, - [981]={ + [1006]={ [1]={ [1]={ [1]={ @@ -19017,7 +19467,7 @@ return { [1]="local_flask_zealots_oath" } }, - [982]={ + [1007]={ [1]={ [1]={ [1]={ @@ -19037,7 +19487,7 @@ return { [1]="local_grant_eldritch_battery_during_flask_effect" } }, - [983]={ + [1008]={ [1]={ [1]={ [1]={ @@ -19057,7 +19507,7 @@ return { [1]="local_grant_perfect_agony_during_flask_effect" } }, - [984]={ + [1009]={ [1]={ [1]={ limit={ @@ -19073,7 +19523,7 @@ return { [1]="map_experience_gain_+%" } }, - [985]={ + [1010]={ [1]={ [1]={ limit={ @@ -19089,23 +19539,7 @@ return { [1]="map_item_level_override" } }, - [986]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Passives in Radius can be Allocated without being connected to your tree" - } - }, - stats={ - [1]="local_unique_jewel_nearby_disconnected_passives_can_be_allocated" - } - }, - [987]={ + [1011]={ [1]={ [1]={ limit={ @@ -19121,7 +19555,7 @@ return { [1]="local_weapon_uses_both_hands" } }, - [988]={ + [1012]={ [1]={ [1]={ [1]={ @@ -19158,7 +19592,7 @@ return { [1]="local_attribute_requirements_+%" } }, - [989]={ + [1013]={ [1]={ [1]={ limit={ @@ -19174,7 +19608,7 @@ return { [1]="local_cannot_be_used_with_chaos_innoculation" } }, - [990]={ + [1014]={ [1]={ [1]={ limit={ @@ -19190,7 +19624,7 @@ return { [1]="local_dexterity_requirement_+" } }, - [991]={ + [1015]={ [1]={ [1]={ limit={ @@ -19228,7 +19662,7 @@ return { [1]="local_dexterity_requirement_+%" } }, - [992]={ + [1016]={ [1]={ [1]={ limit={ @@ -19244,7 +19678,7 @@ return { [1]="local_intelligence_requirement_+" } }, - [993]={ + [1017]={ [1]={ [1]={ limit={ @@ -19282,7 +19716,7 @@ return { [1]="local_intelligence_requirement_+%" } }, - [994]={ + [1018]={ [1]={ [1]={ limit={ @@ -19298,7 +19732,7 @@ return { [1]="local_level_requirement_-" } }, - [995]={ + [1019]={ [1]={ [1]={ [1]={ @@ -19318,7 +19752,7 @@ return { [1]="local_no_attribute_requirements" } }, - [996]={ + [1020]={ [1]={ [1]={ limit={ @@ -19334,7 +19768,7 @@ return { [1]="local_no_energy_shield" } }, - [997]={ + [1021]={ [1]={ [1]={ limit={ @@ -19350,7 +19784,7 @@ return { [1]="local_strength_and_intelligence_requirement_+" } }, - [998]={ + [1022]={ [1]={ [1]={ limit={ @@ -19366,7 +19800,7 @@ return { [1]="local_strength_requirement_+" } }, - [999]={ + [1023]={ [1]={ [1]={ limit={ @@ -19404,7 +19838,7 @@ return { [1]="local_strength_requirement_+%" } }, - [1000]={ + [1024]={ [1]={ [1]={ limit={ @@ -19433,7 +19867,7 @@ return { [1]="map_hellscape_blood_consumed_+%_final" } }, - [1001]={ + [1025]={ [1]={ [1]={ limit={ @@ -19449,7 +19883,7 @@ return { [1]="map_hellscape_gimmick_double_debuff_gain_lose_debuff_over_time" } }, - [1002]={ + [1026]={ [1]={ [1]={ [1]={ @@ -19469,7 +19903,7 @@ return { [1]="map_hellscape_gimmick_%_maximum_life_and_es_taken_as_physical_damage_per_minute_per_%_hellscape_charge_while_hellscape_can_be_activated" } }, - [1003]={ + [1027]={ [1]={ [1]={ limit={ @@ -19485,7 +19919,7 @@ return { [1]="map_hellscape_gimmick_shift_on_killing_rare_unique_kills_drain_resource" } }, - [1004]={ + [1028]={ [1]={ [1]={ limit={ @@ -19501,7 +19935,7 @@ return { [1]="map_hellscape_gimmick_shift_on_reaching_full_resource_kills_drain_resource" } }, - [1005]={ + [1029]={ [1]={ [1]={ limit={ @@ -19517,7 +19951,7 @@ return { [1]="map_hellscape_gimmick_shift_randomly" } }, - [1006]={ + [1030]={ [1]={ [1]={ limit={ @@ -19533,7 +19967,7 @@ return { [1]="map_hellscape_fire_damage_taken_when_switching" } }, - [1007]={ + [1031]={ [1]={ [1]={ limit={ @@ -19549,7 +19983,7 @@ return { [1]="map_hellscape_lightning_damage_taken_when_switching" } }, - [1008]={ + [1032]={ [1]={ [1]={ limit={ @@ -19578,7 +20012,7 @@ return { [1]="map_hellscape_monster_damage_+%_final" } }, - [1009]={ + [1033]={ [1]={ [1]={ limit={ @@ -19607,7 +20041,7 @@ return { [1]="map_hellscape_monster_damage_taken_+%_final" } }, - [1010]={ + [1034]={ [1]={ [1]={ limit={ @@ -19636,7 +20070,7 @@ return { [1]="map_hellscape_monster_life_+%_final" } }, - [1011]={ + [1035]={ [1]={ [1]={ [1]={ @@ -19656,7 +20090,7 @@ return { [1]="map_hellscape_monster_life_regeneration_rate_per_minute_%" } }, - [1012]={ + [1036]={ [1]={ [1]={ limit={ @@ -19672,7 +20106,7 @@ return { [1]="map_hellscape_physical_damage_taken_when_switching" } }, - [1013]={ + [1037]={ [1]={ [1]={ limit={ @@ -19697,7 +20131,7 @@ return { [1]="map_player_additional_physical_damage_reduction_%_in_hellscape" } }, - [1014]={ + [1038]={ [1]={ [1]={ limit={ @@ -19713,7 +20147,7 @@ return { [1]="map_player_block_chance_%_in_hellscape" } }, - [1015]={ + [1039]={ [1]={ [1]={ limit={ @@ -19729,7 +20163,7 @@ return { [1]="map_player_chance_to_evade_attacks_%_in_hellscape" } }, - [1016]={ + [1040]={ [1]={ [1]={ limit={ @@ -19745,7 +20179,7 @@ return { [1]="map_player_es_loss_per_second_in_hellscape" } }, - [1017]={ + [1041]={ [1]={ [1]={ limit={ @@ -19761,7 +20195,7 @@ return { [1]="map_player_life_loss_per_second_in_hellscape" } }, - [1018]={ + [1042]={ [1]={ [1]={ limit={ @@ -19790,7 +20224,7 @@ return { [1]="map_player_movement_speed_+%_final_in_hellscape" } }, - [1019]={ + [1043]={ [1]={ [1]={ limit={ @@ -19806,7 +20240,7 @@ return { [1]="map_player_spell_suppression_chance_%_in_hellscape" } }, - [1020]={ + [1044]={ [1]={ [1]={ limit={ @@ -19822,7 +20256,7 @@ return { [1]="map_supporter_volatile_on_death_chance_legion" } }, - [1021]={ + [1045]={ [1]={ [1]={ limit={ @@ -19847,7 +20281,7 @@ return { [1]="map_legion_league_extra_spawns" } }, - [1022]={ + [1046]={ [1]={ [1]={ limit={ @@ -19863,7 +20297,7 @@ return { [1]="map_reliquary_must_complete_legions" } }, - [1023]={ + [1047]={ [1]={ [1]={ limit={ @@ -19888,7 +20322,7 @@ return { [1]="map_hellscape_additional_boss" } }, - [1024]={ + [1048]={ [1]={ [1]={ limit={ @@ -19917,7 +20351,7 @@ return { [1]="map_hellscape_item_drop_quantity_+%" } }, - [1025]={ + [1049]={ [1]={ [1]={ limit={ @@ -19946,7 +20380,7 @@ return { [1]="map_hellscape_item_drop_rarity_+%" } }, - [1026]={ + [1050]={ [1]={ [1]={ limit={ @@ -19975,7 +20409,7 @@ return { [1]="map_hellscape_monster_slain_experience_+%_final" } }, - [1027]={ + [1051]={ [1]={ [1]={ limit={ @@ -20004,7 +20438,7 @@ return { [1]="map_hellscape_pack_size_+%" } }, - [1028]={ + [1052]={ [1]={ [1]={ limit={ @@ -20029,7 +20463,7 @@ return { [1]="map_hellscape_rare_monster_drop_additional_abyss_jewel" } }, - [1029]={ + [1053]={ [1]={ [1]={ limit={ @@ -20054,7 +20488,7 @@ return { [1]="map_hellscape_rare_monster_drop_additional_basic_currency_item" } }, - [1030]={ + [1054]={ [1]={ [1]={ limit={ @@ -20079,7 +20513,7 @@ return { [1]="map_hellscape_rare_monster_drop_additional_blight_oil" } }, - [1031]={ + [1055]={ [1]={ [1]={ limit={ @@ -20104,7 +20538,7 @@ return { [1]="map_hellscape_rare_monster_drop_additional_breach_splinters" } }, - [1032]={ + [1056]={ [1]={ [1]={ limit={ @@ -20129,7 +20563,7 @@ return { [1]="map_hellscape_rare_monster_drop_additional_delirium_splinters" } }, - [1033]={ + [1057]={ [1]={ [1]={ limit={ @@ -20154,7 +20588,7 @@ return { [1]="map_hellscape_rare_monster_drop_additional_delve_fossil" } }, - [1034]={ + [1058]={ [1]={ [1]={ limit={ @@ -20179,7 +20613,7 @@ return { [1]="map_hellscape_rare_monster_drop_additional_enchanted_item" } }, - [1035]={ + [1059]={ [1]={ [1]={ limit={ @@ -20204,7 +20638,7 @@ return { [1]="map_hellscape_rare_monster_drop_additional_essence" } }, - [1036]={ + [1060]={ [1]={ [1]={ limit={ @@ -20229,7 +20663,7 @@ return { [1]="map_hellscape_rare_monster_drop_additional_expedition_currency" } }, - [1037]={ + [1061]={ [1]={ [1]={ limit={ @@ -20254,7 +20688,7 @@ return { [1]="map_hellscape_rare_monster_drop_additional_fractured_item" } }, - [1038]={ + [1062]={ [1]={ [1]={ limit={ @@ -20279,7 +20713,7 @@ return { [1]="map_hellscape_rare_monster_drop_additional_gem" } }, - [1039]={ + [1063]={ [1]={ [1]={ limit={ @@ -20304,7 +20738,7 @@ return { [1]="map_hellscape_rare_monster_drop_additional_incubator" } }, - [1040]={ + [1064]={ [1]={ [1]={ limit={ @@ -20329,7 +20763,7 @@ return { [1]="map_hellscape_rare_monster_drop_additional_influence_item" } }, - [1041]={ + [1065]={ [1]={ [1]={ limit={ @@ -20354,7 +20788,7 @@ return { [1]="map_hellscape_rare_monster_drop_additional_legion_splinters" } }, - [1042]={ + [1066]={ [1]={ [1]={ limit={ @@ -20379,7 +20813,7 @@ return { [1]="map_hellscape_rare_monster_drop_additional_map_item" } }, - [1043]={ + [1067]={ [1]={ [1]={ limit={ @@ -20404,7 +20838,7 @@ return { [1]="map_hellscape_rare_monster_drop_additional_metamorph_catalyst" } }, - [1044]={ + [1068]={ [1]={ [1]={ limit={ @@ -20429,7 +20863,7 @@ return { [1]="map_hellscape_rare_monster_drop_additional_scarab" } }, - [1045]={ + [1069]={ [1]={ [1]={ limit={ @@ -20454,7 +20888,7 @@ return { [1]="map_hellscape_rare_monster_drop_additional_scourged_item" } }, - [1046]={ + [1070]={ [1]={ [1]={ limit={ @@ -20479,7 +20913,7 @@ return { [1]="map_hellscape_rare_monster_drop_additional_stacked_decks" } }, - [1047]={ + [1071]={ [1]={ [1]={ limit={ @@ -20504,7 +20938,7 @@ return { [1]="map_hellscape_rare_monster_drop_additional_tainted_currency" } }, - [1048]={ + [1072]={ [1]={ [1]={ limit={ @@ -20529,7 +20963,7 @@ return { [1]="map_hellscape_rare_monster_drop_additional_unique_item" } }, - [1049]={ + [1073]={ [1]={ [1]={ limit={ @@ -20554,7 +20988,7 @@ return { [1]="map_hellscape_rare_monster_drop_items_X_levels_higher" } }, - [1050]={ + [1074]={ [1]={ [1]={ limit={ @@ -20575,7 +21009,7 @@ return { [2]="can_gain_banner_resource_while_banner_is_placed" } }, - [1051]={ + [1075]={ [1]={ [1]={ limit={ @@ -20591,7 +21025,7 @@ return { [1]="monster_base_block_%" } }, - [1052]={ + [1076]={ [1]={ [1]={ limit={ @@ -20607,7 +21041,7 @@ return { [1]="shield_block_%" } }, - [1053]={ + [1077]={ [1]={ [1]={ limit={ @@ -20623,7 +21057,7 @@ return { [1]="shield_spell_block_%" } }, - [1054]={ + [1078]={ [1]={ [1]={ [1]={ @@ -20656,7 +21090,7 @@ return { [1]="base_spell_damage_%_suppressed" } }, - [1055]={ + [1079]={ [1]={ [1]={ [1]={ @@ -20680,7 +21114,7 @@ return { [1]="base_spell_suppression_chance_150%_of_value" } }, - [1056]={ + [1080]={ [1]={ [1]={ [1]={ @@ -20700,7 +21134,7 @@ return { [1]="base_spell_suppression_chance_%" } }, - [1057]={ + [1081]={ [1]={ [1]={ limit={ @@ -20716,7 +21150,7 @@ return { [1]="spell_block_while_dual_wielding_%" } }, - [1058]={ + [1082]={ [1]={ [1]={ limit={ @@ -20732,7 +21166,7 @@ return { [1]="spell_block_%_while_on_low_life" } }, - [1059]={ + [1083]={ [1]={ [1]={ [1]={ @@ -20765,7 +21199,65 @@ return { [1]="spell_damage_%_suppressed_while_on_full_energy_shield" } }, - [1060]={ + [1084]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]=99 + } + }, + text="{0}% of Suppressed Spell Damage taken bypasses Energy Shield" + }, + [2]={ + limit={ + [1]={ + [1]=100, + [2]="#" + } + }, + text="Suppressed Spell Damage taken bypasses Energy Shield" + } + }, + stats={ + [1]="suppressed_spell_damage_bypass_energy_shield_%" + } + }, + [1085]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextRecoup" + }, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% of Suppressed Spell Damage taken Recouped as Energy Shield" + }, + [2]={ + [1]={ + k="reminderstring", + v="ReminderTextRecoupNegative" + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% of Suppressed Spell Damage taken Recouped as Energy Shield" + } + }, + stats={ + [1]="suppressed_spell_damage_taken_%_recouped_as_es" + } + }, + [1086]={ [1]={ [1]={ limit={ @@ -20781,7 +21273,7 @@ return { [1]="spell_block_with_bow_%" } }, - [1061]={ + [1087]={ [1]={ [1]={ [1]={ @@ -20801,7 +21293,7 @@ return { [1]="spell_block_with_staff_%" } }, - [1062]={ + [1088]={ [1]={ [1]={ [1]={ @@ -20821,7 +21313,7 @@ return { [1]="staff_block_%" } }, - [1063]={ + [1089]={ [1]={ [1]={ limit={ @@ -20837,7 +21329,7 @@ return { [1]="block_chance_%_per_50_strength" } }, - [1064]={ + [1090]={ [1]={ [1]={ [1]={ @@ -20857,7 +21349,7 @@ return { [1]="additional_staff_block_%" } }, - [1065]={ + [1091]={ [1]={ [1]={ [1]={ @@ -20877,7 +21369,7 @@ return { [1]="old_do_not_use_spell_block_%_from_assumed_block_value" } }, - [1066]={ + [1092]={ [1]={ [1]={ [1]={ @@ -20901,7 +21393,7 @@ return { [1]="old_do_not_use_spell_block_%_while_on_low_life_from_assumed_block_value" } }, - [1067]={ + [1093]={ [1]={ [1]={ limit={ @@ -20917,7 +21409,7 @@ return { [1]="spell_block_equals_attack_block" } }, - [1068]={ + [1094]={ [1]={ [1]={ limit={ @@ -20933,7 +21425,7 @@ return { [1]="additional_spell_block_%" } }, - [1069]={ + [1095]={ [1]={ [1]={ [1]={ @@ -20966,7 +21458,7 @@ return { [1]="base_spell_block_luck" } }, - [1070]={ + [1096]={ [1]={ [1]={ limit={ @@ -20982,7 +21474,23 @@ return { [1]="base_spell_block_%" } }, - [1071]={ + [1097]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d}% Chance to Block Spell Damage while in Off Hand" + } + }, + stats={ + [1]="unique_spell_block_%_when_in_off_hand" + } + }, + [1098]={ [1]={ [1]={ limit={ @@ -20998,7 +21506,7 @@ return { [1]="block_while_dual_wielding_%" } }, - [1072]={ + [1099]={ [1]={ [1]={ limit={ @@ -21014,7 +21522,7 @@ return { [1]="block_while_dual_wielding_claws_%" } }, - [1073]={ + [1100]={ [1]={ [1]={ limit={ @@ -21030,7 +21538,7 @@ return { [1]="block_chance_%_while_holding_shield" } }, - [1074]={ + [1101]={ [1]={ [1]={ limit={ @@ -21046,7 +21554,7 @@ return { [1]="dual_wield_or_shield_block_%" } }, - [1075]={ + [1102]={ [1]={ [1]={ limit={ @@ -21075,7 +21583,7 @@ return { [1]="block_chance_+%" } }, - [1076]={ + [1103]={ [1]={ [1]={ limit={ @@ -21104,7 +21612,7 @@ return { [1]="block_recovery_+%" } }, - [1077]={ + [1104]={ [1]={ [1]={ limit={ @@ -21120,7 +21628,7 @@ return { [1]="melee_splash" } }, - [1078]={ + [1105]={ [1]={ [1]={ limit={ @@ -21136,7 +21644,7 @@ return { [1]="offerings_also_buff_you" } }, - [1079]={ + [1106]={ [1]={ [1]={ limit={ @@ -21165,7 +21673,7 @@ return { [1]="self_offering_effect_+%" } }, - [1080]={ + [1107]={ [1]={ [1]={ limit={ @@ -21194,7 +21702,7 @@ return { [1]="offering_spells_effect_+%" } }, - [1081]={ + [1108]={ [1]={ [1]={ limit={ @@ -21223,7 +21731,7 @@ return { [1]="bone_offering_effect_+%" } }, - [1082]={ + [1109]={ [1]={ [1]={ limit={ @@ -21252,7 +21760,7 @@ return { [1]="flesh_offering_effect_+%" } }, - [1083]={ + [1110]={ [1]={ [1]={ limit={ @@ -21281,7 +21789,7 @@ return { [1]="spirit_offering_effect_+%" } }, - [1084]={ + [1111]={ [1]={ [1]={ limit={ @@ -21310,7 +21818,7 @@ return { [1]="slayer_ascendancy_melee_splash_damage_+%_final_for_splash" } }, - [1085]={ + [1112]={ [1]={ [1]={ [1]={ @@ -21330,7 +21838,7 @@ return { [1]="additional_all_attributes" } }, - [1086]={ + [1113]={ [1]={ [1]={ limit={ @@ -21346,7 +21854,7 @@ return { [1]="additional_strength" } }, - [1087]={ + [1114]={ [1]={ [1]={ limit={ @@ -21362,7 +21870,7 @@ return { [1]="additional_dexterity" } }, - [1088]={ + [1115]={ [1]={ [1]={ limit={ @@ -21378,7 +21886,7 @@ return { [1]="additional_intelligence" } }, - [1089]={ + [1116]={ [1]={ [1]={ limit={ @@ -21394,7 +21902,7 @@ return { [1]="additional_strength_and_dexterity" } }, - [1090]={ + [1117]={ [1]={ [1]={ limit={ @@ -21410,7 +21918,7 @@ return { [1]="additional_strength_and_intelligence" } }, - [1091]={ + [1118]={ [1]={ [1]={ limit={ @@ -21426,7 +21934,7 @@ return { [1]="additional_dexterity_and_intelligence" } }, - [1092]={ + [1119]={ [1]={ [1]={ [1]={ @@ -21463,7 +21971,7 @@ return { [1]="all_attributes_+%" } }, - [1093]={ + [1120]={ [1]={ [1]={ limit={ @@ -21492,7 +22000,7 @@ return { [1]="strength_+%" } }, - [1094]={ + [1121]={ [1]={ [1]={ limit={ @@ -21521,7 +22029,7 @@ return { [1]="dexterity_+%" } }, - [1095]={ + [1122]={ [1]={ [1]={ limit={ @@ -21550,7 +22058,7 @@ return { [1]="intelligence_+%" } }, - [1096]={ + [1123]={ [1]={ [1]={ limit={ @@ -21566,7 +22074,7 @@ return { [1]="modifiers_to_attributes_instead_apply_to_ascendance" } }, - [1097]={ + [1124]={ [1]={ [1]={ limit={ @@ -21582,7 +22090,7 @@ return { [1]="elemental_resistance_+%_per_15_ascendance" } }, - [1098]={ + [1125]={ [1]={ [1]={ limit={ @@ -21598,7 +22106,7 @@ return { [1]="penetrate_elemental_resistance_%_per_15_ascendance" } }, - [1099]={ + [1126]={ [1]={ [1]={ limit={ @@ -21614,7 +22122,7 @@ return { [1]="attribute_requirements_can_be_satisfied_by_%_of_ascendance" } }, - [1100]={ + [1127]={ [1]={ [1]={ limit={ @@ -21643,7 +22151,7 @@ return { [1]="damage_+%" } }, - [1101]={ + [1128]={ [1]={ [1]={ limit={ @@ -21672,7 +22180,7 @@ return { [1]="on_weapon_global_damage_+%" } }, - [1102]={ + [1129]={ [1]={ [1]={ limit={ @@ -21701,7 +22209,7 @@ return { [1]="totem_damage_+%" } }, - [1103]={ + [1130]={ [1]={ [1]={ limit={ @@ -21730,7 +22238,7 @@ return { [1]="trap_damage_+%" } }, - [1104]={ + [1131]={ [1]={ [1]={ limit={ @@ -21759,7 +22267,7 @@ return { [1]="trap_or_mine_damage_+%" } }, - [1105]={ + [1132]={ [1]={ [1]={ limit={ @@ -21788,7 +22296,7 @@ return { [1]="mine_damage_+%" } }, - [1106]={ + [1133]={ [1]={ [1]={ limit={ @@ -21817,7 +22325,7 @@ return { [1]="unique_mine_damage_+%_final" } }, - [1107]={ + [1134]={ [1]={ [1]={ limit={ @@ -21846,7 +22354,7 @@ return { [1]="attack_damage_+%" } }, - [1108]={ + [1135]={ [1]={ [1]={ limit={ @@ -21875,7 +22383,7 @@ return { [1]="unique_ryuslathas_clutches_maximum_physical_attack_damage_+%_final" } }, - [1109]={ + [1136]={ [1]={ [1]={ limit={ @@ -21904,7 +22412,7 @@ return { [1]="unique_ryuslathas_clutches_minimum_physical_attack_damage_+%_final" } }, - [1110]={ + [1137]={ [1]={ [1]={ limit={ @@ -21933,7 +22441,7 @@ return { [1]="cold_attack_damage_+%" } }, - [1111]={ + [1138]={ [1]={ [1]={ limit={ @@ -21962,7 +22470,7 @@ return { [1]="fire_attack_damage_+%" } }, - [1112]={ + [1139]={ [1]={ [1]={ limit={ @@ -21991,7 +22499,7 @@ return { [1]="physical_attack_damage_+%" } }, - [1113]={ + [1140]={ [1]={ [1]={ limit={ @@ -22020,7 +22528,7 @@ return { [1]="cold_attack_damage_+%_while_holding_a_shield" } }, - [1114]={ + [1141]={ [1]={ [1]={ limit={ @@ -22049,7 +22557,7 @@ return { [1]="fire_attack_damage_+%_while_holding_a_shield" } }, - [1115]={ + [1142]={ [1]={ [1]={ limit={ @@ -22078,7 +22586,7 @@ return { [1]="attack_damage_+%_while_holding_a_shield" } }, - [1116]={ + [1143]={ [1]={ [1]={ limit={ @@ -22107,7 +22615,7 @@ return { [1]="attack_skills_damage_+%_while_holding_shield" } }, - [1117]={ + [1144]={ [1]={ [1]={ limit={ @@ -22136,7 +22644,7 @@ return { [1]="physical_attack_damage_+%_while_holding_a_shield" } }, - [1118]={ + [1145]={ [1]={ [1]={ [1]={ @@ -22173,7 +22681,7 @@ return { [1]="attack_ailment_damage_+%_while_holding_shield" } }, - [1119]={ + [1146]={ [1]={ [1]={ limit={ @@ -22202,7 +22710,7 @@ return { [1]="damage_over_time_+%" } }, - [1120]={ + [1147]={ [1]={ [1]={ limit={ @@ -22231,7 +22739,7 @@ return { [1]="physical_damage_over_time_+%" } }, - [1121]={ + [1148]={ [1]={ [1]={ limit={ @@ -22260,7 +22768,7 @@ return { [1]="fire_damage_over_time_+%" } }, - [1122]={ + [1149]={ [1]={ [1]={ limit={ @@ -22289,7 +22797,7 @@ return { [1]="cold_damage_over_time_+%" } }, - [1123]={ + [1150]={ [1]={ [1]={ limit={ @@ -22318,7 +22826,7 @@ return { [1]="chaos_damage_over_time_+%" } }, - [1124]={ + [1151]={ [1]={ [1]={ [1]={ @@ -22355,7 +22863,7 @@ return { [1]="damage_+%_when_on_low_life" } }, - [1125]={ + [1152]={ [1]={ [1]={ limit={ @@ -22384,7 +22892,7 @@ return { [1]="damage_+%_per_active_curse_on_self" } }, - [1126]={ + [1153]={ [1]={ [1]={ limit={ @@ -22413,7 +22921,7 @@ return { [1]="damage_+%_while_life_leeching" } }, - [1127]={ + [1154]={ [1]={ [1]={ limit={ @@ -22442,7 +22950,7 @@ return { [1]="physical_damage_+%_while_life_leeching" } }, - [1128]={ + [1155]={ [1]={ [1]={ limit={ @@ -22471,7 +22979,7 @@ return { [1]="damage_+%_while_mana_leeching" } }, - [1129]={ + [1156]={ [1]={ [1]={ limit={ @@ -22500,7 +23008,7 @@ return { [1]="damage_+%_while_es_leeching" } }, - [1130]={ + [1157]={ [1]={ [1]={ [1]={ @@ -22537,7 +23045,7 @@ return { [1]="attack_speed_+%_when_on_low_life" } }, - [1131]={ + [1158]={ [1]={ [1]={ limit={ @@ -22566,7 +23074,7 @@ return { [1]="attack_speed_+%_when_on_full_life" } }, - [1132]={ + [1159]={ [1]={ [1]={ limit={ @@ -22595,7 +23103,7 @@ return { [1]="spell_damage_+%" } }, - [1133]={ + [1160]={ [1]={ [1]={ limit={ @@ -22624,7 +23132,7 @@ return { [1]="damage_over_time_+%_with_spells" } }, - [1134]={ + [1161]={ [1]={ [1]={ limit={ @@ -22653,7 +23161,7 @@ return { [1]="spell_fire_damage_+%" } }, - [1135]={ + [1162]={ [1]={ [1]={ limit={ @@ -22682,7 +23190,7 @@ return { [1]="spell_cold_damage_+%" } }, - [1136]={ + [1163]={ [1]={ [1]={ [1]={ @@ -22719,7 +23227,7 @@ return { [1]="spell_staff_damage_+%" } }, - [1137]={ + [1164]={ [1]={ [1]={ limit={ @@ -22748,7 +23256,7 @@ return { [1]="spell_bow_damage_+%" } }, - [1138]={ + [1165]={ [1]={ [1]={ limit={ @@ -22777,7 +23285,7 @@ return { [1]="spell_damage_+%_while_holding_shield" } }, - [1139]={ + [1166]={ [1]={ [1]={ limit={ @@ -22806,7 +23314,7 @@ return { [1]="spell_damage_+%_while_dual_wielding" } }, - [1140]={ + [1167]={ [1]={ [1]={ limit={ @@ -22835,7 +23343,7 @@ return { [1]="physical_damage_+%" } }, - [1141]={ + [1168]={ [1]={ [1]={ limit={ @@ -22912,7 +23420,7 @@ return { [2]="local_weapon_no_physical_damage" } }, - [1142]={ + [1169]={ [1]={ [1]={ [1]={ @@ -22932,7 +23440,7 @@ return { [1]="local_weapon_enemy_phys_reduction_%_penalty" } }, - [1143]={ + [1170]={ [1]={ [1]={ limit={ @@ -22961,7 +23469,7 @@ return { [1]="melee_damage_+%" } }, - [1144]={ + [1171]={ [1]={ [1]={ limit={ @@ -22990,7 +23498,7 @@ return { [1]="melee_damage_+%_vs_frozen_enemies" } }, - [1145]={ + [1172]={ [1]={ [1]={ limit={ @@ -23019,7 +23527,7 @@ return { [1]="damage_+%_vs_frozen_enemies" } }, - [1146]={ + [1173]={ [1]={ [1]={ limit={ @@ -23048,7 +23556,7 @@ return { [1]="melee_damage_+%_vs_shocked_enemies" } }, - [1147]={ + [1174]={ [1]={ [1]={ limit={ @@ -23077,7 +23585,7 @@ return { [1]="damage_vs_shocked_enemies_+%" } }, - [1148]={ + [1175]={ [1]={ [1]={ limit={ @@ -23106,7 +23614,7 @@ return { [1]="melee_damage_+%_vs_burning_enemies" } }, - [1149]={ + [1176]={ [1]={ [1]={ [1]={ @@ -23143,7 +23651,7 @@ return { [1]="damage_+%_vs_enemies_per_freeze_shock_ignite" } }, - [1150]={ + [1177]={ [1]={ [1]={ limit={ @@ -23172,7 +23680,7 @@ return { [1]="damage_+%_vs_frozen_shocked_ignited_enemies" } }, - [1151]={ + [1178]={ [1]={ [1]={ limit={ @@ -23188,7 +23696,7 @@ return { [1]="dot_multiplier_+" } }, - [1152]={ + [1179]={ [1]={ [1]={ limit={ @@ -23204,7 +23712,7 @@ return { [1]="ailment_dot_multiplier_+" } }, - [1153]={ + [1180]={ [1]={ [1]={ limit={ @@ -23220,7 +23728,7 @@ return { [1]="critical_ailment_dot_multiplier_+" } }, - [1154]={ + [1181]={ [1]={ [1]={ limit={ @@ -23236,7 +23744,7 @@ return { [1]="damage_over_time_multiplier_+_with_spells" } }, - [1155]={ + [1182]={ [1]={ [1]={ limit={ @@ -23252,7 +23760,7 @@ return { [1]="damage_over_time_multiplier_+_with_attacks" } }, - [1156]={ + [1183]={ [1]={ [1]={ limit={ @@ -23268,7 +23776,7 @@ return { [1]="physical_dot_multiplier_+" } }, - [1157]={ + [1184]={ [1]={ [1]={ limit={ @@ -23284,7 +23792,7 @@ return { [1]="bleeding_dot_multiplier_+" } }, - [1158]={ + [1185]={ [1]={ [1]={ limit={ @@ -23300,7 +23808,7 @@ return { [1]="critical_bleeding_dot_multiplier_+" } }, - [1159]={ + [1186]={ [1]={ [1]={ limit={ @@ -23316,7 +23824,7 @@ return { [1]="physical_damage_over_time_multiplier_+_with_attacks" } }, - [1160]={ + [1187]={ [1]={ [1]={ limit={ @@ -23332,7 +23840,7 @@ return { [1]="fire_dot_multiplier_+" } }, - [1161]={ + [1188]={ [1]={ [1]={ limit={ @@ -23348,7 +23856,7 @@ return { [1]="critical_ignite_dot_multiplier_+" } }, - [1162]={ + [1189]={ [1]={ [1]={ limit={ @@ -23364,7 +23872,7 @@ return { [1]="fire_damage_over_time_multiplier_+_with_attacks" } }, - [1163]={ + [1190]={ [1]={ [1]={ limit={ @@ -23380,7 +23888,7 @@ return { [1]="ignite_dot_multiplier_+" } }, - [1164]={ + [1191]={ [1]={ [1]={ limit={ @@ -23396,7 +23904,7 @@ return { [1]="cold_damage_over_time_multiplier_+_while_affected_by_malevolence" } }, - [1165]={ + [1192]={ [1]={ [1]={ limit={ @@ -23412,7 +23920,7 @@ return { [1]="cold_dot_multiplier_+" } }, - [1166]={ + [1193]={ [1]={ [1]={ limit={ @@ -23428,7 +23936,7 @@ return { [1]="lightning_dot_multiplier_+" } }, - [1167]={ + [1194]={ [1]={ [1]={ limit={ @@ -23444,7 +23952,7 @@ return { [1]="chaos_damage_over_time_multiplier_+_while_affected_by_malevolence" } }, - [1168]={ + [1195]={ [1]={ [1]={ limit={ @@ -23460,7 +23968,7 @@ return { [1]="chaos_dot_multiplier_+" } }, - [1169]={ + [1196]={ [1]={ [1]={ limit={ @@ -23476,7 +23984,7 @@ return { [1]="chaos_non_ailment_damage_over_time_multiplier_+" } }, - [1170]={ + [1197]={ [1]={ [1]={ limit={ @@ -23492,7 +24000,7 @@ return { [1]="chaos_damage_over_time_multiplier_+_with_attacks" } }, - [1171]={ + [1198]={ [1]={ [1]={ limit={ @@ -23508,7 +24016,7 @@ return { [1]="critical_poison_dot_multiplier_+" } }, - [1172]={ + [1199]={ [1]={ [1]={ limit={ @@ -23524,7 +24032,7 @@ return { [1]="poison_dot_multiplier_+" } }, - [1173]={ + [1200]={ [1]={ [1]={ limit={ @@ -23540,7 +24048,7 @@ return { [1]="local_poison_dot_multiplier_+" } }, - [1174]={ + [1201]={ [1]={ [1]={ limit={ @@ -23561,7 +24069,7 @@ return { [2]="global_maximum_added_physical_damage" } }, - [1175]={ + [1202]={ [1]={ [1]={ limit={ @@ -23582,7 +24090,7 @@ return { [2]="attack_maximum_added_physical_damage" } }, - [1176]={ + [1203]={ [1]={ [1]={ limit={ @@ -23603,7 +24111,7 @@ return { [2]="from_self_maximum_added_attack_physical_damage_taken" } }, - [1177]={ + [1204]={ [1]={ [1]={ limit={ @@ -23624,7 +24132,7 @@ return { [2]="attack_maximum_added_physical_damage_with_weapons" } }, - [1178]={ + [1205]={ [1]={ [1]={ limit={ @@ -23645,7 +24153,7 @@ return { [2]="local_attack_maximum_added_physical_damage_per_3_levels" } }, - [1179]={ + [1206]={ [1]={ [1]={ limit={ @@ -23666,7 +24174,7 @@ return { [2]="maximum_added_physical_damage_vs_frozen_enemies" } }, - [1180]={ + [1207]={ [1]={ [1]={ limit={ @@ -23687,7 +24195,7 @@ return { [2]="maximum_added_fire_damage_vs_ignited_enemies" } }, - [1181]={ + [1208]={ [1]={ [1]={ limit={ @@ -23708,7 +24216,7 @@ return { [2]="maximum_added_fire_attack_damage_per_active_buff" } }, - [1182]={ + [1209]={ [1]={ [1]={ limit={ @@ -23729,7 +24237,7 @@ return { [2]="maximum_added_fire_spell_damage_per_active_buff" } }, - [1183]={ + [1210]={ [1]={ [1]={ limit={ @@ -23750,7 +24258,7 @@ return { [2]="maximum_added_fire_damage_per_active_buff" } }, - [1184]={ + [1211]={ [1]={ [1]={ limit={ @@ -23771,7 +24279,7 @@ return { [2]="local_maximum_added_physical_damage" } }, - [1185]={ + [1212]={ [1]={ [1]={ limit={ @@ -23800,7 +24308,7 @@ return { [1]="attack_skills_damage_+%_while_dual_wielding" } }, - [1186]={ + [1213]={ [1]={ [1]={ limit={ @@ -23829,7 +24337,7 @@ return { [1]="damage_while_dual_wielding_+%" } }, - [1187]={ + [1214]={ [1]={ [1]={ limit={ @@ -23858,7 +24366,7 @@ return { [1]="physical_damage_while_dual_wielding_+%" } }, - [1188]={ + [1215]={ [1]={ [1]={ limit={ @@ -23887,7 +24395,7 @@ return { [1]="fire_damage_while_dual_wielding_+%" } }, - [1189]={ + [1216]={ [1]={ [1]={ limit={ @@ -23916,7 +24424,7 @@ return { [1]="cold_damage_while_dual_wielding_+%" } }, - [1190]={ + [1217]={ [1]={ [1]={ limit={ @@ -23945,7 +24453,7 @@ return { [1]="base_main_hand_damage_+%" } }, - [1191]={ + [1218]={ [1]={ [1]={ limit={ @@ -23974,7 +24482,7 @@ return { [1]="base_off_hand_damage_+%" } }, - [1192]={ + [1219]={ [1]={ [1]={ [1]={ @@ -24011,7 +24519,7 @@ return { [1]="melee_weapon_hit_and_ailment_damage_+%" } }, - [1193]={ + [1220]={ [1]={ [1]={ limit={ @@ -24040,7 +24548,7 @@ return { [1]="one_handed_melee_physical_damage_+%" } }, - [1194]={ + [1221]={ [1]={ [1]={ [1]={ @@ -24077,7 +24585,7 @@ return { [1]="one_handed_melee_weapon_hit_and_ailment_damage_+%" } }, - [1195]={ + [1222]={ [1]={ [1]={ [1]={ @@ -24114,7 +24622,7 @@ return { [1]="one_handed_weapon_hit_and_ailment_damage_+%" } }, - [1196]={ + [1223]={ [1]={ [1]={ [1]={ @@ -24151,7 +24659,7 @@ return { [1]="melee_weapon_ailment_damage_+%" } }, - [1197]={ + [1224]={ [1]={ [1]={ [1]={ @@ -24188,7 +24696,7 @@ return { [1]="one_handed_melee_weapon_ailment_damage_+%" } }, - [1198]={ + [1225]={ [1]={ [1]={ [1]={ @@ -24225,7 +24733,7 @@ return { [1]="one_handed_weapon_ailment_damage_+%" } }, - [1199]={ + [1226]={ [1]={ [1]={ limit={ @@ -24254,7 +24762,7 @@ return { [1]="one_handed_melee_fire_damage_+%" } }, - [1200]={ + [1227]={ [1]={ [1]={ limit={ @@ -24283,7 +24791,7 @@ return { [1]="one_handed_melee_cold_damage_+%" } }, - [1201]={ + [1228]={ [1]={ [1]={ limit={ @@ -24312,7 +24820,7 @@ return { [1]="two_handed_melee_physical_damage_+%" } }, - [1202]={ + [1229]={ [1]={ [1]={ [1]={ @@ -24349,7 +24857,7 @@ return { [1]="two_handed_melee_weapon_hit_and_ailment_damage_+%" } }, - [1203]={ + [1230]={ [1]={ [1]={ [1]={ @@ -24386,7 +24894,7 @@ return { [1]="two_handed_weapon_hit_and_ailment_damage_+%" } }, - [1204]={ + [1231]={ [1]={ [1]={ [1]={ @@ -24423,7 +24931,7 @@ return { [1]="two_handed_melee_weapon_ailment_damage_+%" } }, - [1205]={ + [1232]={ [1]={ [1]={ [1]={ @@ -24460,7 +24968,7 @@ return { [1]="two_handed_weapon_ailment_damage_+%" } }, - [1206]={ + [1233]={ [1]={ [1]={ limit={ @@ -24489,7 +24997,7 @@ return { [1]="two_handed_melee_fire_damage_+%" } }, - [1207]={ + [1234]={ [1]={ [1]={ limit={ @@ -24518,7 +25026,7 @@ return { [1]="two_handed_melee_cold_damage_+%" } }, - [1208]={ + [1235]={ [1]={ [1]={ [1]={ @@ -24555,7 +25063,7 @@ return { [1]="unarmed_melee_physical_damage_+%" } }, - [1209]={ + [1236]={ [1]={ [1]={ limit={ @@ -24584,7 +25092,7 @@ return { [1]="axe_damage_+%" } }, - [1210]={ + [1237]={ [1]={ [1]={ [1]={ @@ -24621,7 +25129,7 @@ return { [1]="axe_hit_and_ailment_damage_+%" } }, - [1211]={ + [1238]={ [1]={ [1]={ limit={ @@ -24650,7 +25158,7 @@ return { [1]="physical_axe_damage_+%" } }, - [1212]={ + [1239]={ [1]={ [1]={ [1]={ @@ -24687,7 +25195,7 @@ return { [1]="axe_ailment_damage_+%" } }, - [1213]={ + [1240]={ [1]={ [1]={ limit={ @@ -24716,7 +25224,7 @@ return { [1]="fire_axe_damage_+%" } }, - [1214]={ + [1241]={ [1]={ [1]={ limit={ @@ -24745,7 +25253,7 @@ return { [1]="cold_axe_damage_+%" } }, - [1215]={ + [1242]={ [1]={ [1]={ [1]={ @@ -24782,7 +25290,7 @@ return { [1]="physical_staff_damage_+%" } }, - [1216]={ + [1243]={ [1]={ [1]={ [1]={ @@ -24819,7 +25327,7 @@ return { [1]="staff_damage_+%" } }, - [1217]={ + [1244]={ [1]={ [1]={ [1]={ @@ -24864,7 +25372,7 @@ return { [1]="staff_hit_and_ailment_damage_+%" } }, - [1218]={ + [1245]={ [1]={ [1]={ [1]={ @@ -24909,7 +25417,7 @@ return { [1]="staff_ailment_damage_+%" } }, - [1219]={ + [1246]={ [1]={ [1]={ [1]={ @@ -24946,7 +25454,7 @@ return { [1]="fire_staff_damage_+%" } }, - [1220]={ + [1247]={ [1]={ [1]={ [1]={ @@ -24983,7 +25491,7 @@ return { [1]="cold_staff_damage_+%" } }, - [1221]={ + [1248]={ [1]={ [1]={ limit={ @@ -25012,7 +25520,7 @@ return { [1]="claw_damage_+%" } }, - [1222]={ + [1249]={ [1]={ [1]={ [1]={ @@ -25049,7 +25557,7 @@ return { [1]="claw_hit_and_ailment_damage_+%" } }, - [1223]={ + [1250]={ [1]={ [1]={ limit={ @@ -25078,7 +25586,7 @@ return { [1]="physical_claw_damage_+%" } }, - [1224]={ + [1251]={ [1]={ [1]={ [1]={ @@ -25115,7 +25623,7 @@ return { [1]="claw_ailment_damage_+%" } }, - [1225]={ + [1252]={ [1]={ [1]={ limit={ @@ -25144,7 +25652,7 @@ return { [1]="fire_claw_damage_+%" } }, - [1226]={ + [1253]={ [1]={ [1]={ limit={ @@ -25173,7 +25681,7 @@ return { [1]="cold_claw_damage_+%" } }, - [1227]={ + [1254]={ [1]={ [1]={ [1]={ @@ -25210,7 +25718,7 @@ return { [1]="dagger_damage_+%" } }, - [1228]={ + [1255]={ [1]={ [1]={ [1]={ @@ -25255,7 +25763,7 @@ return { [1]="dagger_hit_and_ailment_damage_+%" } }, - [1229]={ + [1256]={ [1]={ [1]={ [1]={ @@ -25292,7 +25800,7 @@ return { [1]="physical_dagger_damage_+%" } }, - [1230]={ + [1257]={ [1]={ [1]={ [1]={ @@ -25337,7 +25845,7 @@ return { [1]="dagger_ailment_damage_+%" } }, - [1231]={ + [1258]={ [1]={ [1]={ [1]={ @@ -25374,7 +25882,7 @@ return { [1]="fire_dagger_damage_+%" } }, - [1232]={ + [1259]={ [1]={ [1]={ [1]={ @@ -25411,7 +25919,7 @@ return { [1]="cold_dagger_damage_+%" } }, - [1233]={ + [1260]={ [1]={ [1]={ limit={ @@ -25440,7 +25948,7 @@ return { [1]="mace_damage_+%" } }, - [1234]={ + [1261]={ [1]={ [1]={ [1]={ @@ -25477,7 +25985,7 @@ return { [1]="mace_hit_and_ailment_damage_+%" } }, - [1235]={ + [1262]={ [1]={ [1]={ limit={ @@ -25506,7 +26014,7 @@ return { [1]="physical_mace_damage_+%" } }, - [1236]={ + [1263]={ [1]={ [1]={ [1]={ @@ -25543,7 +26051,7 @@ return { [1]="mace_ailment_damage_+%" } }, - [1237]={ + [1264]={ [1]={ [1]={ limit={ @@ -25572,7 +26080,7 @@ return { [1]="fire_mace_damage_+%" } }, - [1238]={ + [1265]={ [1]={ [1]={ limit={ @@ -25601,7 +26109,7 @@ return { [1]="cold_mace_damage_+%" } }, - [1239]={ + [1266]={ [1]={ [1]={ limit={ @@ -25630,7 +26138,7 @@ return { [1]="bow_damage_+%" } }, - [1240]={ + [1267]={ [1]={ [1]={ [1]={ @@ -25667,7 +26175,7 @@ return { [1]="bow_hit_and_ailment_damage_+%" } }, - [1241]={ + [1268]={ [1]={ [1]={ limit={ @@ -25696,7 +26204,7 @@ return { [1]="physical_bow_damage_+%" } }, - [1242]={ + [1269]={ [1]={ [1]={ [1]={ @@ -25733,7 +26241,7 @@ return { [1]="bow_ailment_damage_+%" } }, - [1243]={ + [1270]={ [1]={ [1]={ limit={ @@ -25762,7 +26270,7 @@ return { [1]="fire_bow_damage_+%" } }, - [1244]={ + [1271]={ [1]={ [1]={ limit={ @@ -25791,7 +26299,7 @@ return { [1]="cold_bow_damage_+%" } }, - [1245]={ + [1272]={ [1]={ [1]={ limit={ @@ -25820,7 +26328,7 @@ return { [1]="bow_elemental_damage_+%" } }, - [1246]={ + [1273]={ [1]={ [1]={ limit={ @@ -25849,7 +26357,7 @@ return { [1]="physical_sword_damage_+%" } }, - [1247]={ + [1274]={ [1]={ [1]={ limit={ @@ -25878,7 +26386,7 @@ return { [1]="sword_damage_+%" } }, - [1248]={ + [1275]={ [1]={ [1]={ [1]={ @@ -25915,7 +26423,7 @@ return { [1]="sword_hit_and_ailment_damage_+%" } }, - [1249]={ + [1276]={ [1]={ [1]={ [1]={ @@ -25952,7 +26460,7 @@ return { [1]="sword_ailment_damage_+%" } }, - [1250]={ + [1277]={ [1]={ [1]={ limit={ @@ -25981,7 +26489,7 @@ return { [1]="fire_sword_damage_+%" } }, - [1251]={ + [1278]={ [1]={ [1]={ limit={ @@ -26010,7 +26518,7 @@ return { [1]="cold_sword_damage_+%" } }, - [1252]={ + [1279]={ [1]={ [1]={ limit={ @@ -26039,7 +26547,7 @@ return { [1]="damage_+%_while_wielding_wand" } }, - [1253]={ + [1280]={ [1]={ [1]={ limit={ @@ -26068,7 +26576,7 @@ return { [1]="physical_wand_damage_+%" } }, - [1254]={ + [1281]={ [1]={ [1]={ [1]={ @@ -26105,7 +26613,7 @@ return { [1]="wand_hit_and_ailment_damage_+%" } }, - [1255]={ + [1282]={ [1]={ [1]={ [1]={ @@ -26142,7 +26650,7 @@ return { [1]="wand_ailment_damage_+%" } }, - [1256]={ + [1283]={ [1]={ [1]={ limit={ @@ -26171,7 +26679,7 @@ return { [1]="fire_wand_damage_+%" } }, - [1257]={ + [1284]={ [1]={ [1]={ limit={ @@ -26200,7 +26708,7 @@ return { [1]="cold_wand_damage_+%" } }, - [1258]={ + [1285]={ [1]={ [1]={ [1]={ @@ -26237,7 +26745,7 @@ return { [1]="axe_or_sword_hit_and_ailment_damage_+%" } }, - [1259]={ + [1286]={ [1]={ [1]={ [1]={ @@ -26274,7 +26782,7 @@ return { [1]="axe_or_sword_ailment_damage_+%" } }, - [1260]={ + [1287]={ [1]={ [1]={ [1]={ @@ -26319,7 +26827,7 @@ return { [1]="claw_or_dagger_hit_and_ailment_damage_+%" } }, - [1261]={ + [1288]={ [1]={ [1]={ [1]={ @@ -26364,7 +26872,7 @@ return { [1]="claw_or_dagger_ailment_damage_+%" } }, - [1262]={ + [1289]={ [1]={ [1]={ [1]={ @@ -26409,7 +26917,7 @@ return { [1]="mace_or_staff_hit_and_ailment_damage_+%" } }, - [1263]={ + [1290]={ [1]={ [1]={ [1]={ @@ -26454,7 +26962,7 @@ return { [1]="mace_or_staff_ailment_damage_+%" } }, - [1264]={ + [1291]={ [1]={ [1]={ limit={ @@ -26483,7 +26991,7 @@ return { [1]="weapon_elemental_damage_+%" } }, - [1265]={ + [1292]={ [1]={ [1]={ limit={ @@ -26512,7 +27020,7 @@ return { [1]="fire_damage_+%" } }, - [1266]={ + [1293]={ [1]={ [1]={ limit={ @@ -26533,7 +27041,7 @@ return { [2]="from_self_maximum_added_fire_damage_taken" } }, - [1267]={ + [1294]={ [1]={ [1]={ limit={ @@ -26554,7 +27062,7 @@ return { [2]="global_maximum_added_fire_damage" } }, - [1268]={ + [1295]={ [1]={ [1]={ limit={ @@ -26575,7 +27083,7 @@ return { [2]="attack_maximum_added_fire_damage" } }, - [1269]={ + [1296]={ [1]={ [1]={ limit={ @@ -26596,7 +27104,7 @@ return { [2]="from_self_maximum_added_attack_fire_damage_taken" } }, - [1270]={ + [1297]={ [1]={ [1]={ limit={ @@ -26617,7 +27125,7 @@ return { [2]="local_maximum_added_fire_damage" } }, - [1271]={ + [1298]={ [1]={ [1]={ limit={ @@ -26638,7 +27146,7 @@ return { [2]="unique_local_maximum_added_fire_damage_when_in_main_hand" } }, - [1272]={ + [1299]={ [1]={ [1]={ limit={ @@ -26667,7 +27175,7 @@ return { [1]="damage_with_fire_skills_+%" } }, - [1273]={ + [1300]={ [1]={ [1]={ limit={ @@ -26696,7 +27204,7 @@ return { [1]="cast_speed_for_fire_skills_+%" } }, - [1274]={ + [1301]={ [1]={ [1]={ limit={ @@ -26725,7 +27233,7 @@ return { [1]="cold_damage_+%" } }, - [1275]={ + [1302]={ [1]={ [1]={ limit={ @@ -26746,7 +27254,7 @@ return { [2]="from_self_maximum_added_cold_damage_taken" } }, - [1276]={ + [1303]={ [1]={ [1]={ limit={ @@ -26767,7 +27275,7 @@ return { [2]="global_maximum_added_cold_damage" } }, - [1277]={ + [1304]={ [1]={ [1]={ limit={ @@ -26788,7 +27296,7 @@ return { [2]="attack_maximum_added_cold_damage" } }, - [1278]={ + [1305]={ [1]={ [1]={ limit={ @@ -26809,7 +27317,7 @@ return { [2]="from_self_maximum_added_attack_cold_damage_taken" } }, - [1279]={ + [1306]={ [1]={ [1]={ limit={ @@ -26830,7 +27338,7 @@ return { [2]="local_maximum_added_cold_damage" } }, - [1280]={ + [1307]={ [1]={ [1]={ limit={ @@ -26851,7 +27359,7 @@ return { [2]="unique_local_maximum_added_cold_damage_when_in_off_hand" } }, - [1281]={ + [1308]={ [1]={ [1]={ limit={ @@ -26872,7 +27380,7 @@ return { [2]="spell_and_attack_maximum_added_fire_damage" } }, - [1282]={ + [1309]={ [1]={ [1]={ limit={ @@ -26893,7 +27401,7 @@ return { [2]="spell_and_attack_maximum_added_cold_damage" } }, - [1283]={ + [1310]={ [1]={ [1]={ limit={ @@ -26922,7 +27430,7 @@ return { [1]="damage_with_cold_skills_+%" } }, - [1284]={ + [1311]={ [1]={ [1]={ limit={ @@ -26951,7 +27459,7 @@ return { [1]="cast_speed_for_cold_skills_+%" } }, - [1285]={ + [1312]={ [1]={ [1]={ limit={ @@ -26980,7 +27488,7 @@ return { [1]="lightning_damage_+%" } }, - [1286]={ + [1313]={ [1]={ [1]={ limit={ @@ -27001,7 +27509,7 @@ return { [2]="from_self_maximum_added_lightning_damage_taken" } }, - [1287]={ + [1314]={ [1]={ [1]={ limit={ @@ -27022,7 +27530,7 @@ return { [2]="global_maximum_added_lightning_damage" } }, - [1288]={ + [1315]={ [1]={ [1]={ limit={ @@ -27043,7 +27551,7 @@ return { [2]="attack_maximum_added_lightning_damage" } }, - [1289]={ + [1316]={ [1]={ [1]={ limit={ @@ -27064,7 +27572,7 @@ return { [2]="from_self_maximum_added_attack_lightning_damage_taken" } }, - [1290]={ + [1317]={ [1]={ [1]={ limit={ @@ -27085,7 +27593,7 @@ return { [2]="local_maximum_added_lightning_damage" } }, - [1291]={ + [1318]={ [1]={ [1]={ limit={ @@ -27114,7 +27622,7 @@ return { [1]="damage_with_lightning_skills_+%" } }, - [1292]={ + [1319]={ [1]={ [1]={ limit={ @@ -27143,7 +27651,7 @@ return { [1]="cast_speed_for_lightning_skills_+%" } }, - [1293]={ + [1320]={ [1]={ [1]={ limit={ @@ -27172,7 +27680,7 @@ return { [1]="chaos_damage_+%" } }, - [1294]={ + [1321]={ [1]={ [1]={ limit={ @@ -27193,7 +27701,7 @@ return { [2]="global_maximum_added_chaos_damage" } }, - [1295]={ + [1322]={ [1]={ [1]={ limit={ @@ -27214,7 +27722,7 @@ return { [2]="attack_maximum_added_chaos_damage" } }, - [1296]={ + [1323]={ [1]={ [1]={ limit={ @@ -27235,7 +27743,7 @@ return { [2]="from_self_maximum_added_attack_chaos_damage_taken" } }, - [1297]={ + [1324]={ [1]={ [1]={ limit={ @@ -27256,7 +27764,7 @@ return { [2]="max_attack_added_chaos_damage_per_100_mana" } }, - [1298]={ + [1325]={ [1]={ [1]={ limit={ @@ -27277,7 +27785,7 @@ return { [2]="local_maximum_added_chaos_damage" } }, - [1299]={ + [1326]={ [1]={ [1]={ limit={ @@ -27298,7 +27806,7 @@ return { [2]="unique_local_maximum_added_chaos_damage_when_in_off_hand" } }, - [1300]={ + [1327]={ [1]={ [1]={ limit={ @@ -27327,7 +27835,7 @@ return { [1]="cast_speed_for_chaos_skills_+%" } }, - [1301]={ + [1328]={ [1]={ [1]={ limit={ @@ -27348,7 +27856,7 @@ return { [2]="spell_maximum_base_physical_damage" } }, - [1302]={ + [1329]={ [1]={ [1]={ limit={ @@ -27408,7 +27916,7 @@ return { [3]="spell_base_fire_damage_%_maximum_life" } }, - [1303]={ + [1330]={ [1]={ [1]={ limit={ @@ -27429,7 +27937,7 @@ return { [2]="spell_maximum_base_cold_damage" } }, - [1304]={ + [1331]={ [1]={ [1]={ limit={ @@ -27450,7 +27958,7 @@ return { [2]="spell_maximum_base_lightning_damage" } }, - [1305]={ + [1332]={ [1]={ [1]={ limit={ @@ -27471,7 +27979,7 @@ return { [2]="spell_maximum_base_chaos_damage" } }, - [1306]={ + [1333]={ [1]={ [1]={ limit={ @@ -27492,7 +28000,7 @@ return { [2]="secondary_maximum_base_physical_damage" } }, - [1307]={ + [1334]={ [1]={ [1]={ limit={ @@ -27513,7 +28021,7 @@ return { [2]="secondary_maximum_base_fire_damage" } }, - [1308]={ + [1335]={ [1]={ [1]={ limit={ @@ -27534,7 +28042,7 @@ return { [2]="secondary_maximum_base_cold_damage" } }, - [1309]={ + [1336]={ [1]={ [1]={ limit={ @@ -27555,7 +28063,7 @@ return { [2]="secondary_maximum_base_lightning_damage" } }, - [1310]={ + [1337]={ [1]={ [1]={ limit={ @@ -27576,7 +28084,7 @@ return { [2]="secondary_maximum_base_chaos_damage" } }, - [1311]={ + [1338]={ [1]={ [1]={ limit={ @@ -27597,7 +28105,7 @@ return { [2]="spell_maximum_added_physical_damage" } }, - [1312]={ + [1339]={ [1]={ [1]={ limit={ @@ -27618,7 +28126,7 @@ return { [2]="spell_maximum_added_fire_damage" } }, - [1313]={ + [1340]={ [1]={ [1]={ limit={ @@ -27639,7 +28147,7 @@ return { [2]="spell_maximum_added_cold_damage" } }, - [1314]={ + [1341]={ [1]={ [1]={ limit={ @@ -27660,7 +28168,7 @@ return { [2]="spell_maximum_added_lightning_damage" } }, - [1315]={ + [1342]={ [1]={ [1]={ limit={ @@ -27681,7 +28189,7 @@ return { [2]="spell_maximum_added_chaos_damage" } }, - [1316]={ + [1343]={ [1]={ [1]={ limit={ @@ -27702,7 +28210,7 @@ return { [2]="spell_maximum_base_cold_damage_+_per_10_intelligence" } }, - [1317]={ + [1344]={ [1]={ [1]={ limit={ @@ -27723,7 +28231,7 @@ return { [2]="spell_and_attack_maximum_added_lightning_damage" } }, - [1318]={ + [1345]={ [1]={ [1]={ limit={ @@ -27752,7 +28260,7 @@ return { [1]="attack_speed_+%" } }, - [1319]={ + [1346]={ [1]={ [1]={ limit={ @@ -27781,7 +28289,7 @@ return { [1]="active_skill_attack_speed_+%_final" } }, - [1320]={ + [1347]={ [1]={ [1]={ limit={ @@ -27810,7 +28318,7 @@ return { [1]="flicker_strike_more_attack_speed_+%_final" } }, - [1321]={ + [1348]={ [1]={ [1]={ limit={ @@ -27839,7 +28347,7 @@ return { [1]="local_attack_speed_+%" } }, - [1322]={ + [1349]={ [1]={ [1]={ limit={ @@ -27868,7 +28376,7 @@ return { [1]="melee_attack_speed_+%" } }, - [1323]={ + [1350]={ [1]={ [1]={ limit={ @@ -27897,7 +28405,7 @@ return { [1]="attack_speed_while_dual_wielding_+%" } }, - [1324]={ + [1351]={ [1]={ [1]={ limit={ @@ -27913,7 +28421,7 @@ return { [1]="base_off_hand_attack_speed_+%" } }, - [1325]={ + [1352]={ [1]={ [1]={ limit={ @@ -27942,7 +28450,7 @@ return { [1]="attack_speed_+%_while_holding_shield" } }, - [1326]={ + [1353]={ [1]={ [1]={ limit={ @@ -27971,7 +28479,7 @@ return { [1]="two_handed_melee_attack_speed_+%" } }, - [1327]={ + [1354]={ [1]={ [1]={ limit={ @@ -28000,7 +28508,7 @@ return { [1]="one_handed_melee_attack_speed_+%" } }, - [1328]={ + [1355]={ [1]={ [1]={ limit={ @@ -28029,7 +28537,7 @@ return { [1]="axe_attack_speed_+%" } }, - [1329]={ + [1356]={ [1]={ [1]={ [1]={ @@ -28066,7 +28574,7 @@ return { [1]="staff_attack_speed_+%" } }, - [1330]={ + [1357]={ [1]={ [1]={ limit={ @@ -28095,7 +28603,7 @@ return { [1]="claw_attack_speed_+%" } }, - [1331]={ + [1358]={ [1]={ [1]={ [1]={ @@ -28132,7 +28640,7 @@ return { [1]="dagger_attack_speed_+%" } }, - [1332]={ + [1359]={ [1]={ [1]={ limit={ @@ -28161,7 +28669,7 @@ return { [1]="mace_attack_speed_+%" } }, - [1333]={ + [1360]={ [1]={ [1]={ limit={ @@ -28190,7 +28698,7 @@ return { [1]="bow_attack_speed_+%" } }, - [1334]={ + [1361]={ [1]={ [1]={ limit={ @@ -28219,7 +28727,7 @@ return { [1]="sword_attack_speed_+%" } }, - [1335]={ + [1362]={ [1]={ [1]={ limit={ @@ -28248,7 +28756,7 @@ return { [1]="wand_attack_speed_+%" } }, - [1336]={ + [1363]={ [1]={ [1]={ limit={ @@ -28277,7 +28785,7 @@ return { [1]="shield_attack_speed_+%" } }, - [1337]={ + [1364]={ [1]={ [1]={ [1]={ @@ -28314,7 +28822,7 @@ return { [1]="unarmed_melee_attack_speed_+%" } }, - [1338]={ + [1365]={ [1]={ [1]={ limit={ @@ -28343,7 +28851,7 @@ return { [1]="unique_body_armour_unarmed_melee_attack_speed_+%_final" } }, - [1339]={ + [1366]={ [1]={ [1]={ limit={ @@ -28372,7 +28880,7 @@ return { [1]="damage_+%_with_movement_skills" } }, - [1340]={ + [1367]={ [1]={ [1]={ limit={ @@ -28401,7 +28909,7 @@ return { [1]="attack_speed_+%_with_movement_skills" } }, - [1341]={ + [1368]={ [1]={ [1]={ limit={ @@ -28417,7 +28925,7 @@ return { [1]="accuracy_rating" } }, - [1342]={ + [1369]={ [1]={ [1]={ limit={ @@ -28446,7 +28954,7 @@ return { [1]="accuracy_rating_+%" } }, - [1343]={ + [1370]={ [1]={ [1]={ limit={ @@ -28475,7 +28983,7 @@ return { [1]="accuracy_rating_while_dual_wielding_+%" } }, - [1344]={ + [1371]={ [1]={ [1]={ limit={ @@ -28504,7 +29012,7 @@ return { [1]="one_handed_melee_accuracy_rating_+%" } }, - [1345]={ + [1372]={ [1]={ [1]={ limit={ @@ -28533,7 +29041,7 @@ return { [1]="two_handed_melee_accuracy_rating_+%" } }, - [1346]={ + [1373]={ [1]={ [1]={ limit={ @@ -28562,7 +29070,7 @@ return { [1]="axe_accuracy_rating_+%" } }, - [1347]={ + [1374]={ [1]={ [1]={ [1]={ @@ -28599,7 +29107,7 @@ return { [1]="staff_accuracy_rating_+%" } }, - [1348]={ + [1375]={ [1]={ [1]={ limit={ @@ -28628,7 +29136,7 @@ return { [1]="claw_accuracy_rating_+%" } }, - [1349]={ + [1376]={ [1]={ [1]={ [1]={ @@ -28665,7 +29173,7 @@ return { [1]="dagger_accuracy_rating_+%" } }, - [1350]={ + [1377]={ [1]={ [1]={ limit={ @@ -28694,7 +29202,7 @@ return { [1]="mace_accuracy_rating_+%" } }, - [1351]={ + [1378]={ [1]={ [1]={ limit={ @@ -28723,7 +29231,7 @@ return { [1]="bow_accuracy_rating_+%" } }, - [1352]={ + [1379]={ [1]={ [1]={ limit={ @@ -28752,7 +29260,7 @@ return { [1]="sword_accuracy_rating_+%" } }, - [1353]={ + [1380]={ [1]={ [1]={ limit={ @@ -28781,7 +29289,7 @@ return { [1]="wand_accuracy_rating_+%" } }, - [1354]={ + [1381]={ [1]={ [1]={ limit={ @@ -28810,7 +29318,7 @@ return { [1]="base_cast_speed_+%" } }, - [1355]={ + [1382]={ [1]={ [1]={ limit={ @@ -28839,7 +29347,7 @@ return { [1]="cast_speed_while_dual_wielding_+%" } }, - [1356]={ + [1383]={ [1]={ [1]={ limit={ @@ -28868,7 +29376,7 @@ return { [1]="cast_speed_+%_while_holding_shield" } }, - [1357]={ + [1384]={ [1]={ [1]={ [1]={ @@ -28905,7 +29413,7 @@ return { [1]="cast_speed_+%_while_holding_staff" } }, - [1358]={ + [1385]={ [1]={ [1]={ limit={ @@ -28934,7 +29442,7 @@ return { [1]="cast_speed_+%_while_holding_bow" } }, - [1359]={ + [1386]={ [1]={ [1]={ limit={ @@ -28950,7 +29458,7 @@ return { [1]="cast_speed_+%_per_power_charge" } }, - [1360]={ + [1387]={ [1]={ [1]={ [1]={ @@ -28974,7 +29482,7 @@ return { [1]="poison_on_critical_strike_with_dagger" } }, - [1361]={ + [1388]={ [1]={ [1]={ [1]={ @@ -29007,7 +29515,7 @@ return { [1]="chance_to_poison_on_critical_strike_with_bow_%" } }, - [1362]={ + [1389]={ [1]={ [1]={ [1]={ @@ -29048,7 +29556,7 @@ return { [1]="chance_to_poison_on_critical_strike_with_dagger_%" } }, - [1363]={ + [1390]={ [1]={ [1]={ [1]={ @@ -29068,7 +29576,7 @@ return { [1]="poison_on_critical_strike_with_bow" } }, - [1364]={ + [1391]={ [1]={ [1]={ [1]={ @@ -29088,7 +29596,7 @@ return { [1]="base_spell_critical_strike_chance" } }, - [1365]={ + [1392]={ [1]={ [1]={ [1]={ @@ -29108,7 +29616,7 @@ return { [1]="additional_base_critical_strike_chance" } }, - [1366]={ + [1393]={ [1]={ [1]={ limit={ @@ -29137,7 +29645,7 @@ return { [1]="spell_critical_strike_chance_+%" } }, - [1367]={ + [1394]={ [1]={ [1]={ limit={ @@ -29166,7 +29674,7 @@ return { [1]="critical_strike_chance_+%" } }, - [1368]={ + [1395]={ [1]={ [1]={ limit={ @@ -29182,7 +29690,7 @@ return { [1]="old_dagger_implicit_critical_strike_chance_+30%" } }, - [1369]={ + [1396]={ [1]={ [1]={ limit={ @@ -29198,7 +29706,7 @@ return { [1]="old_dagger_implicit_critical_strike_chance_+40%" } }, - [1370]={ + [1397]={ [1]={ [1]={ limit={ @@ -29214,7 +29722,7 @@ return { [1]="old_dagger_implicit_critical_strike_chance_+50%" } }, - [1371]={ + [1398]={ [1]={ [1]={ [1]={ @@ -29234,7 +29742,7 @@ return { [1]="local_critical_strike_chance" } }, - [1372]={ + [1399]={ [1]={ [1]={ limit={ @@ -29263,7 +29771,7 @@ return { [1]="local_critical_strike_chance_+%" } }, - [1373]={ + [1400]={ [1]={ [1]={ limit={ @@ -29292,7 +29800,7 @@ return { [1]="bow_critical_strike_chance_+%" } }, - [1374]={ + [1401]={ [1]={ [1]={ limit={ @@ -29321,7 +29829,7 @@ return { [1]="claw_critical_strike_chance_+%" } }, - [1375]={ + [1402]={ [1]={ [1]={ [1]={ @@ -29358,7 +29866,7 @@ return { [1]="dagger_critical_strike_chance_+%" } }, - [1376]={ + [1403]={ [1]={ [1]={ limit={ @@ -29387,7 +29895,7 @@ return { [1]="sword_critical_strike_chance_+%" } }, - [1377]={ + [1404]={ [1]={ [1]={ limit={ @@ -29416,7 +29924,7 @@ return { [1]="mace_critical_strike_chance_+%" } }, - [1378]={ + [1405]={ [1]={ [1]={ [1]={ @@ -29453,7 +29961,7 @@ return { [1]="staff_critical_strike_chance_+%" } }, - [1379]={ + [1406]={ [1]={ [1]={ limit={ @@ -29482,7 +29990,7 @@ return { [1]="wand_critical_strike_chance_+%" } }, - [1380]={ + [1407]={ [1]={ [1]={ limit={ @@ -29511,7 +30019,7 @@ return { [1]="axe_critical_strike_chance_+%" } }, - [1381]={ + [1408]={ [1]={ [1]={ limit={ @@ -29540,7 +30048,7 @@ return { [1]="critical_strike_chance_while_wielding_shield_+%" } }, - [1382]={ + [1409]={ [1]={ [1]={ limit={ @@ -29569,7 +30077,7 @@ return { [1]="trap_critical_strike_chance_+%" } }, - [1383]={ + [1410]={ [1]={ [1]={ limit={ @@ -29598,7 +30106,7 @@ return { [1]="mine_critical_strike_chance_+%" } }, - [1384]={ + [1411]={ [1]={ [1]={ limit={ @@ -29627,7 +30135,7 @@ return { [1]="two_handed_melee_critical_strike_chance_+%" } }, - [1385]={ + [1412]={ [1]={ [1]={ limit={ @@ -29643,7 +30151,7 @@ return { [1]="two_handed_melee_critical_strike_multiplier_+" } }, - [1386]={ + [1413]={ [1]={ [1]={ limit={ @@ -29672,7 +30180,7 @@ return { [1]="one_handed_melee_critical_strike_chance_+%" } }, - [1387]={ + [1414]={ [1]={ [1]={ limit={ @@ -29701,7 +30209,7 @@ return { [1]="melee_critical_strike_chance_+%" } }, - [1388]={ + [1415]={ [1]={ [1]={ limit={ @@ -29730,7 +30238,7 @@ return { [1]="critical_strike_chance_while_dual_wielding_+%" } }, - [1389]={ + [1416]={ [1]={ [1]={ limit={ @@ -29759,7 +30267,7 @@ return { [1]="fire_critical_strike_chance_+%" } }, - [1390]={ + [1417]={ [1]={ [1]={ limit={ @@ -29788,7 +30296,7 @@ return { [1]="lightning_critical_strike_chance_+%" } }, - [1391]={ + [1418]={ [1]={ [1]={ limit={ @@ -29817,7 +30325,7 @@ return { [1]="cold_critical_strike_chance_+%" } }, - [1392]={ + [1419]={ [1]={ [1]={ limit={ @@ -29846,7 +30354,7 @@ return { [1]="elemental_critical_strike_chance_+%" } }, - [1393]={ + [1420]={ [1]={ [1]={ limit={ @@ -29875,7 +30383,7 @@ return { [1]="chaos_critical_strike_chance_+%" } }, - [1394]={ + [1421]={ [1]={ [1]={ limit={ @@ -29904,7 +30412,7 @@ return { [1]="totem_critical_strike_chance_+%" } }, - [1395]={ + [1422]={ [1]={ [1]={ [1]={ @@ -29941,7 +30449,7 @@ return { [1]="increased_critical_strike_chance_buff_for_x_milliseconds_on_placing_a_totem" } }, - [1396]={ + [1423]={ [1]={ [1]={ limit={ @@ -29957,7 +30465,7 @@ return { [1]="base_critical_strike_multiplier_+" } }, - [1397]={ + [1424]={ [1]={ [1]={ limit={ @@ -29973,7 +30481,23 @@ return { [1]="local_critical_strike_multiplier_+" } }, - [1398]={ + [1425]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Critical Strikes with this Weapon do not deal extra Damage" + } + }, + stats={ + [1]="local_no_critical_strike_multiplier" + } + }, + [1426]={ [1]={ [1]={ limit={ @@ -29989,7 +30513,7 @@ return { [1]="attack_critical_strike_multiplier_+" } }, - [1399]={ + [1427]={ [1]={ [1]={ limit={ @@ -30005,7 +30529,7 @@ return { [1]="base_spell_critical_strike_multiplier_+" } }, - [1400]={ + [1428]={ [1]={ [1]={ [1]={ @@ -30025,7 +30549,7 @@ return { [1]="critical_strike_multiplier_with_dagger_+" } }, - [1401]={ + [1429]={ [1]={ [1]={ limit={ @@ -30041,7 +30565,7 @@ return { [1]="mace_critical_strike_multiplier_+" } }, - [1402]={ + [1430]={ [1]={ [1]={ limit={ @@ -30057,7 +30581,7 @@ return { [1]="axe_critical_strike_multiplier_+" } }, - [1403]={ + [1431]={ [1]={ [1]={ limit={ @@ -30073,7 +30597,7 @@ return { [1]="bow_critical_strike_multiplier_+" } }, - [1404]={ + [1432]={ [1]={ [1]={ limit={ @@ -30089,7 +30613,7 @@ return { [1]="sword_critical_strike_multiplier_+" } }, - [1405]={ + [1433]={ [1]={ [1]={ limit={ @@ -30105,7 +30629,7 @@ return { [1]="wand_critical_strike_multiplier_+" } }, - [1406]={ + [1434]={ [1]={ [1]={ limit={ @@ -30121,7 +30645,7 @@ return { [1]="claw_critical_strike_multiplier_+" } }, - [1407]={ + [1435]={ [1]={ [1]={ [1]={ @@ -30141,7 +30665,7 @@ return { [1]="staff_critical_strike_multiplier_+" } }, - [1408]={ + [1436]={ [1]={ [1]={ limit={ @@ -30157,7 +30681,7 @@ return { [1]="one_handed_melee_critical_strike_multiplier_+" } }, - [1409]={ + [1437]={ [1]={ [1]={ limit={ @@ -30173,7 +30697,7 @@ return { [1]="melee_weapon_critical_strike_multiplier_+" } }, - [1410]={ + [1438]={ [1]={ [1]={ limit={ @@ -30189,7 +30713,7 @@ return { [1]="critical_strike_multiplier_while_dual_wielding_+" } }, - [1411]={ + [1439]={ [1]={ [1]={ limit={ @@ -30205,7 +30729,7 @@ return { [1]="melee_critical_strike_multiplier_+_while_wielding_shield" } }, - [1412]={ + [1440]={ [1]={ [1]={ limit={ @@ -30221,7 +30745,7 @@ return { [1]="trap_critical_strike_multiplier_+" } }, - [1413]={ + [1441]={ [1]={ [1]={ limit={ @@ -30237,7 +30761,7 @@ return { [1]="mine_critical_strike_multiplier_+" } }, - [1414]={ + [1442]={ [1]={ [1]={ limit={ @@ -30253,7 +30777,7 @@ return { [1]="fire_critical_strike_multiplier_+" } }, - [1415]={ + [1443]={ [1]={ [1]={ limit={ @@ -30269,7 +30793,7 @@ return { [1]="lightning_critical_strike_multiplier_+" } }, - [1416]={ + [1444]={ [1]={ [1]={ limit={ @@ -30285,7 +30809,7 @@ return { [1]="cold_critical_strike_multiplier_+" } }, - [1417]={ + [1445]={ [1]={ [1]={ limit={ @@ -30301,7 +30825,7 @@ return { [1]="elemental_critical_strike_multiplier_+" } }, - [1418]={ + [1446]={ [1]={ [1]={ limit={ @@ -30317,7 +30841,7 @@ return { [1]="chaos_critical_strike_multiplier_+" } }, - [1419]={ + [1447]={ [1]={ [1]={ limit={ @@ -30346,7 +30870,7 @@ return { [1]="base_self_critical_strike_multiplier_-%" } }, - [1420]={ + [1448]={ [1]={ [1]={ limit={ @@ -30375,7 +30899,7 @@ return { [1]="mastery_extra_damage_taken_from_suppressed_crit_+%_final" } }, - [1421]={ + [1449]={ [1]={ [1]={ limit={ @@ -30404,7 +30928,7 @@ return { [1]="self_critical_strike_multiplier_-%_per_endurance_charge" } }, - [1422]={ + [1450]={ [1]={ [1]={ limit={ @@ -30420,7 +30944,7 @@ return { [1]="critical_strike_multiplier_is_100" } }, - [1423]={ + [1451]={ [1]={ [1]={ limit={ @@ -30436,7 +30960,7 @@ return { [1]="totem_critical_strike_multiplier_+" } }, - [1424]={ + [1452]={ [1]={ [1]={ [1]={ @@ -30473,7 +30997,7 @@ return { [1]="base_stun_threshold_reduction_+%" } }, - [1425]={ + [1453]={ [1]={ [1]={ [1]={ @@ -30493,7 +31017,7 @@ return { [1]="while_using_mace_stun_threshold_reduction_+%" } }, - [1426]={ + [1454]={ [1]={ [1]={ [1]={ @@ -30513,7 +31037,7 @@ return { [1]="bow_stun_threshold_reduction_+%" } }, - [1427]={ + [1455]={ [1]={ [1]={ [1]={ @@ -30533,7 +31057,7 @@ return { [1]="global_knockback" } }, - [1428]={ + [1456]={ [1]={ [1]={ limit={ @@ -30549,7 +31073,7 @@ return { [1]="cannot_be_knocked_back" } }, - [1429]={ + [1457]={ [1]={ [1]={ limit={ @@ -30574,7 +31098,7 @@ return { [1]="avoid_knockback_%" } }, - [1430]={ + [1458]={ [1]={ [1]={ [1]={ @@ -30594,7 +31118,7 @@ return { [1]="knockback_with_bow" } }, - [1431]={ + [1459]={ [1]={ [1]={ [1]={ @@ -30618,7 +31142,7 @@ return { [1]="knockback_with_staff" } }, - [1432]={ + [1460]={ [1]={ [1]={ [1]={ @@ -30638,7 +31162,7 @@ return { [1]="knockback_with_wand" } }, - [1433]={ + [1461]={ [1]={ [1]={ [1]={ @@ -30658,7 +31182,7 @@ return { [1]="local_knockback" } }, - [1434]={ + [1462]={ [1]={ [1]={ limit={ @@ -30674,7 +31198,7 @@ return { [1]="base_ward" } }, - [1435]={ + [1463]={ [1]={ [1]={ limit={ @@ -30690,7 +31214,7 @@ return { [1]="local_ward" } }, - [1436]={ + [1464]={ [1]={ [1]={ limit={ @@ -30719,7 +31243,7 @@ return { [1]="ward_+%" } }, - [1437]={ + [1465]={ [1]={ [1]={ limit={ @@ -30748,7 +31272,7 @@ return { [1]="local_ward_+%" } }, - [1438]={ + [1466]={ [1]={ [1]={ limit={ @@ -30777,7 +31301,7 @@ return { [1]="ward_delay_recovery_+%" } }, - [1439]={ + [1467]={ [1]={ [1]={ limit={ @@ -30793,7 +31317,7 @@ return { [1]="base_adaptation_rating" } }, - [1440]={ + [1468]={ [1]={ [1]={ limit={ @@ -30809,7 +31333,7 @@ return { [1]="local_adaptation_rating" } }, - [1441]={ + [1469]={ [1]={ [1]={ limit={ @@ -30838,7 +31362,7 @@ return { [1]="adaptation_rating_+%" } }, - [1442]={ + [1470]={ [1]={ [1]={ limit={ @@ -30867,7 +31391,7 @@ return { [1]="local_adaptation_rating_+%" } }, - [1443]={ + [1471]={ [1]={ [1]={ limit={ @@ -30883,7 +31407,7 @@ return { [1]="max_adaptations_+" } }, - [1444]={ + [1472]={ [1]={ [1]={ limit={ @@ -30912,7 +31436,7 @@ return { [1]="adaptation_duration_+%" } }, - [1445]={ + [1473]={ [1]={ [1]={ limit={ @@ -30928,7 +31452,7 @@ return { [1]="maximum_physical_damage_reduction_%" } }, - [1446]={ + [1474]={ [1]={ [1]={ limit={ @@ -30944,7 +31468,7 @@ return { [1]="base_physical_damage_reduction_rating" } }, - [1447]={ + [1475]={ [1]={ [1]={ limit={ @@ -30960,7 +31484,7 @@ return { [1]="local_base_physical_damage_reduction_rating" } }, - [1448]={ + [1476]={ [1]={ [1]={ limit={ @@ -30989,7 +31513,7 @@ return { [1]="physical_damage_reduction_rating_+%" } }, - [1449]={ + [1477]={ [1]={ [1]={ limit={ @@ -31018,7 +31542,7 @@ return { [1]="local_physical_damage_reduction_rating_+%" } }, - [1450]={ + [1478]={ [1]={ [1]={ limit={ @@ -31047,7 +31571,7 @@ return { [1]="evasion_and_physical_damage_reduction_rating_+%" } }, - [1451]={ + [1479]={ [1]={ [1]={ limit={ @@ -31063,7 +31587,7 @@ return { [1]="base_evasion_rating" } }, - [1452]={ + [1480]={ [1]={ [1]={ [1]={ @@ -31083,7 +31607,7 @@ return { [1]="evasion_rating_+_when_on_low_life" } }, - [1453]={ + [1481]={ [1]={ [1]={ limit={ @@ -31099,7 +31623,7 @@ return { [1]="evasion_rating_+_when_on_full_life" } }, - [1454]={ + [1482]={ [1]={ [1]={ limit={ @@ -31115,7 +31639,7 @@ return { [1]="evasion_rating_+_per_1_helmet_energy_shield" } }, - [1455]={ + [1483]={ [1]={ [1]={ limit={ @@ -31131,7 +31655,7 @@ return { [1]="local_base_evasion_rating" } }, - [1456]={ + [1484]={ [1]={ [1]={ limit={ @@ -31160,7 +31684,7 @@ return { [1]="evasion_rating_+%" } }, - [1457]={ + [1485]={ [1]={ [1]={ limit={ @@ -31189,7 +31713,7 @@ return { [1]="local_evasion_rating_+%" } }, - [1458]={ + [1486]={ [1]={ [1]={ limit={ @@ -31218,7 +31742,7 @@ return { [1]="evasion_rating_+%_while_onslaught_is_active" } }, - [1459]={ + [1487]={ [1]={ [1]={ limit={ @@ -31247,7 +31771,7 @@ return { [1]="local_armour_and_energy_shield_+%" } }, - [1460]={ + [1488]={ [1]={ [1]={ limit={ @@ -31276,7 +31800,7 @@ return { [1]="local_armour_and_evasion_+%" } }, - [1461]={ + [1489]={ [1]={ [1]={ limit={ @@ -31305,7 +31829,7 @@ return { [1]="local_evasion_and_energy_shield_+%" } }, - [1462]={ + [1490]={ [1]={ [1]={ limit={ @@ -31334,7 +31858,7 @@ return { [1]="local_armour_and_evasion_and_energy_shield_+%" } }, - [1463]={ + [1491]={ [1]={ [1]={ limit={ @@ -31363,7 +31887,36 @@ return { [1]="evasion_rating_+%_per_frenzy_charge" } }, - [1464]={ + [1492]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Armour per Frenzy Charge" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Armour per Frenzy Charge" + } + }, + stats={ + [1]="physical_damage_reduction_rating_+%_per_frenzy_charge" + } + }, + [1493]={ [1]={ [1]={ limit={ @@ -31379,7 +31932,7 @@ return { [1]="base_maximum_energy_shield" } }, - [1465]={ + [1494]={ [1]={ [1]={ limit={ @@ -31395,7 +31948,7 @@ return { [1]="local_energy_shield" } }, - [1466]={ + [1495]={ [1]={ [1]={ limit={ @@ -31424,7 +31977,7 @@ return { [1]="local_energy_shield_+%" } }, - [1467]={ + [1496]={ [1]={ [1]={ limit={ @@ -31453,7 +32006,7 @@ return { [1]="maximum_energy_shield_+%" } }, - [1468]={ + [1497]={ [1]={ [1]={ limit={ @@ -31482,7 +32035,7 @@ return { [1]="energy_shield_delay_-%" } }, - [1469]={ + [1498]={ [1]={ [1]={ limit={ @@ -31498,7 +32051,7 @@ return { [1]="energy_shield_recharge_not_delayed_by_damage" } }, - [1470]={ + [1499]={ [1]={ [1]={ [1]={ @@ -31531,7 +32084,7 @@ return { [1]="energy_shield_recharge_rate_per_minute_%" } }, - [1471]={ + [1500]={ [1]={ [1]={ limit={ @@ -31560,7 +32113,7 @@ return { [1]="energy_shield_recharge_rate_+%" } }, - [1472]={ + [1501]={ [1]={ [1]={ limit={ @@ -31576,7 +32129,7 @@ return { [1]="maximum_energy_shield_+_per_100_life_reserved" } }, - [1473]={ + [1502]={ [1]={ [1]={ limit={ @@ -31592,7 +32145,7 @@ return { [1]="maximum_energy_shield_+_per_X_body_armour_evasion_rating" } }, - [1474]={ + [1503]={ [1]={ [1]={ limit={ @@ -31621,7 +32174,7 @@ return { [1]="energy_shield_recovery_rate_+%" } }, - [1475]={ + [1504]={ [1]={ [1]={ limit={ @@ -31637,7 +32190,7 @@ return { [1]="base_maximum_life" } }, - [1476]={ + [1505]={ [1]={ [1]={ limit={ @@ -31666,7 +32219,7 @@ return { [1]="maximum_life_mana_and_energy_shield_+%" } }, - [1477]={ + [1506]={ [1]={ [1]={ limit={ @@ -31695,7 +32248,7 @@ return { [1]="maximum_life_+%" } }, - [1478]={ + [1507]={ [1]={ [1]={ limit={ @@ -31724,7 +32277,7 @@ return { [1]="monster_life_+%_final_from_rarity" } }, - [1479]={ + [1508]={ [1]={ [1]={ limit={ @@ -31753,7 +32306,7 @@ return { [1]="monster_life_+%_final_from_map" } }, - [1480]={ + [1509]={ [1]={ [1]={ [1]={ @@ -31773,7 +32326,7 @@ return { [1]="base_life_regeneration_rate_per_minute" } }, - [1481]={ + [1510]={ [1]={ [1]={ [1]={ @@ -31793,7 +32346,7 @@ return { [1]="life_degeneration_per_minute_not_in_grace" } }, - [1482]={ + [1511]={ [1]={ [1]={ [1]={ @@ -31813,7 +32366,7 @@ return { [1]="life_regeneration_rate_per_minute_%_per_endurance_charge" } }, - [1483]={ + [1512]={ [1]={ [1]={ limit={ @@ -31842,7 +32395,7 @@ return { [1]="life_regeneration_rate_+%" } }, - [1484]={ + [1513]={ [1]={ [1]={ limit={ @@ -31871,7 +32424,7 @@ return { [1]="life_recovery_rate_+%" } }, - [1485]={ + [1514]={ [1]={ [1]={ limit={ @@ -31887,7 +32440,7 @@ return { [1]="base_maximum_mana" } }, - [1486]={ + [1515]={ [1]={ [1]={ limit={ @@ -31916,7 +32469,7 @@ return { [1]="maximum_mana_+%" } }, - [1487]={ + [1516]={ [1]={ [1]={ [1]={ @@ -31936,7 +32489,7 @@ return { [1]="mana_regeneration_rate_per_minute_%" } }, - [1488]={ + [1517]={ [1]={ [1]={ [1]={ @@ -31956,7 +32509,7 @@ return { [1]="base_mana_regeneration_rate_per_minute" } }, - [1489]={ + [1518]={ [1]={ [1]={ [1]={ @@ -31976,7 +32529,7 @@ return { [1]="mana_degeneration_per_minute_not_in_grace" } }, - [1490]={ + [1519]={ [1]={ [1]={ limit={ @@ -32005,7 +32558,7 @@ return { [1]="mana_regeneration_rate_+%" } }, - [1491]={ + [1520]={ [1]={ [1]={ [1]={ @@ -32025,7 +32578,7 @@ return { [1]="mana_regeneration_rate_per_minute_%_per_power_charge" } }, - [1492]={ + [1521]={ [1]={ [1]={ limit={ @@ -32054,7 +32607,7 @@ return { [1]="mana_recovery_rate_+%" } }, - [1493]={ + [1522]={ [1]={ [1]={ limit={ @@ -32083,7 +32636,7 @@ return { [1]="maximum_life_+%_and_fire_resistance_-%" } }, - [1494]={ + [1523]={ [1]={ [1]={ limit={ @@ -32112,7 +32665,7 @@ return { [1]="maximum_mana_+%_and_cold_resistance_-%" } }, - [1495]={ + [1524]={ [1]={ [1]={ limit={ @@ -32141,7 +32694,7 @@ return { [1]="maximum_energy_shield_+%_and_lightning_resistance_-%" } }, - [1496]={ + [1525]={ [1]={ [1]={ limit={ @@ -32157,7 +32710,7 @@ return { [1]="base_cannot_be_damaged" } }, - [1497]={ + [1526]={ [1]={ [1]={ limit={ @@ -32186,7 +32739,7 @@ return { [1]="item_found_quantity_+%" } }, - [1498]={ + [1527]={ [1]={ [1]={ limit={ @@ -32215,7 +32768,7 @@ return { [1]="base_item_found_quantity_+%" } }, - [1499]={ + [1528]={ [1]={ [1]={ [1]={ @@ -32252,7 +32805,7 @@ return { [1]="item_found_quantity_+%_when_on_low_life" } }, - [1500]={ + [1529]={ [1]={ [1]={ limit={ @@ -32281,7 +32834,7 @@ return { [1]="chest_item_quantity_+%" } }, - [1501]={ + [1530]={ [1]={ [1]={ limit={ @@ -32310,7 +32863,7 @@ return { [1]="item_found_rarity_+%" } }, - [1502]={ + [1531]={ [1]={ [1]={ limit={ @@ -32339,7 +32892,7 @@ return { [1]="base_item_found_rarity_+%" } }, - [1503]={ + [1532]={ [1]={ [1]={ limit={ @@ -32368,7 +32921,7 @@ return { [1]="local_display_aura_allies_have_increased_item_rarity_+%" } }, - [1504]={ + [1533]={ [1]={ [1]={ limit={ @@ -32397,7 +32950,7 @@ return { [1]="local_display_item_found_rarity_+%_for_you_and_nearby_allies" } }, - [1505]={ + [1534]={ [1]={ [1]={ [1]={ @@ -32434,7 +32987,7 @@ return { [1]="item_found_rarity_+%_when_on_low_life" } }, - [1506]={ + [1535]={ [1]={ [1]={ limit={ @@ -32463,7 +33016,7 @@ return { [1]="chest_item_rarity_+%" } }, - [1507]={ + [1536]={ [1]={ [1]={ limit={ @@ -32492,7 +33045,7 @@ return { [1]="item_found_quality_+%" } }, - [1508]={ + [1537]={ [1]={ [1]={ limit={ @@ -32521,7 +33074,7 @@ return { [1]="item_found_relevancy_+%" } }, - [1509]={ + [1538]={ [1]={ [1]={ limit={ @@ -32550,7 +33103,7 @@ return { [1]="experience_gain_+%" } }, - [1510]={ + [1539]={ [1]={ [1]={ limit={ @@ -32579,7 +33132,7 @@ return { [1]="experience_loss_on_death_-%" } }, - [1511]={ + [1540]={ [1]={ [1]={ limit={ @@ -32595,7 +33148,7 @@ return { [1]="local_ring_disable_other_ring" } }, - [1512]={ + [1541]={ [1]={ [1]={ limit={ @@ -32611,7 +33164,7 @@ return { [1]="base_fire_immunity" } }, - [1513]={ + [1542]={ [1]={ [1]={ limit={ @@ -32627,7 +33180,7 @@ return { [1]="totem_fire_immunity" } }, - [1514]={ + [1543]={ [1]={ [1]={ limit={ @@ -32643,7 +33196,7 @@ return { [1]="spell_skill_gem_level_+" } }, - [1515]={ + [1544]={ [1]={ [1]={ limit={ @@ -32659,7 +33212,7 @@ return { [1]="physical_spell_skill_gem_level_+" } }, - [1516]={ + [1545]={ [1]={ [1]={ limit={ @@ -32675,7 +33228,7 @@ return { [1]="fire_spell_skill_gem_level_+" } }, - [1517]={ + [1546]={ [1]={ [1]={ limit={ @@ -32691,7 +33244,7 @@ return { [1]="cold_spell_skill_gem_level_+" } }, - [1518]={ + [1547]={ [1]={ [1]={ limit={ @@ -32707,7 +33260,7 @@ return { [1]="lightning_spell_skill_gem_level_+" } }, - [1519]={ + [1548]={ [1]={ [1]={ limit={ @@ -32723,7 +33276,7 @@ return { [1]="chaos_spell_skill_gem_level_+" } }, - [1520]={ + [1549]={ [1]={ [1]={ limit={ @@ -32739,7 +33292,7 @@ return { [1]="minion_skill_gem_level_+" } }, - [1521]={ + [1550]={ [1]={ [1]={ limit={ @@ -32755,7 +33308,7 @@ return { [1]="raise_zombie_gem_level_+" } }, - [1522]={ + [1551]={ [1]={ [1]={ limit={ @@ -32771,7 +33324,7 @@ return { [1]="raise_spectre_gem_level_+" } }, - [1523]={ + [1552]={ [1]={ [1]={ limit={ @@ -32787,7 +33340,7 @@ return { [1]="summon_skeleton_gem_level_+" } }, - [1524]={ + [1553]={ [1]={ [1]={ [1]={ @@ -32829,7 +33382,7 @@ return { [2]="random_skill_gem_level_+_index" } }, - [1525]={ + [1554]={ [1]={ [1]={ limit={ @@ -32845,7 +33398,7 @@ return { [1]="base_resist_all_elements_%" } }, - [1526]={ + [1555]={ [1]={ [1]={ limit={ @@ -32861,7 +33414,7 @@ return { [1]="resist_all_elements_%_per_endurance_charge" } }, - [1527]={ + [1556]={ [1]={ [1]={ limit={ @@ -32877,7 +33430,7 @@ return { [1]="resist_all_elements_+%_while_holding_shield" } }, - [1528]={ + [1557]={ [1]={ [1]={ [1]={ @@ -32897,7 +33450,7 @@ return { [1]="elemental_resistance_%_when_on_low_life" } }, - [1529]={ + [1558]={ [1]={ [1]={ [1]={ @@ -32917,7 +33470,7 @@ return { [1]="base_maximum_fire_damage_resistance_%" } }, - [1530]={ + [1559]={ [1]={ [1]={ limit={ @@ -32933,7 +33486,7 @@ return { [1]="fire_damage_resistance_is_%" } }, - [1531]={ + [1560]={ [1]={ [1]={ limit={ @@ -32949,7 +33502,7 @@ return { [1]="base_fire_damage_resistance_%" } }, - [1532]={ + [1561]={ [1]={ [1]={ limit={ @@ -32965,7 +33518,7 @@ return { [1]="unique_fire_damage_resistance_%_when_red_gem_socketed" } }, - [1533]={ + [1562]={ [1]={ [1]={ [1]={ @@ -33002,7 +33555,7 @@ return { [1]="fire_damage_resistance_%_when_on_low_life" } }, - [1534]={ + [1563]={ [1]={ [1]={ limit={ @@ -33031,7 +33584,7 @@ return { [1]="fire_damage_resistance_+%" } }, - [1535]={ + [1564]={ [1]={ [1]={ [1]={ @@ -33051,7 +33604,7 @@ return { [1]="base_maximum_cold_damage_resistance_%" } }, - [1536]={ + [1565]={ [1]={ [1]={ limit={ @@ -33067,7 +33620,7 @@ return { [1]="cold_damage_resistance_is_%" } }, - [1537]={ + [1566]={ [1]={ [1]={ limit={ @@ -33083,7 +33636,7 @@ return { [1]="base_cold_damage_resistance_%" } }, - [1538]={ + [1567]={ [1]={ [1]={ limit={ @@ -33099,7 +33652,7 @@ return { [1]="unique_cold_damage_resistance_%_when_green_gem_socketed" } }, - [1539]={ + [1568]={ [1]={ [1]={ limit={ @@ -33128,7 +33681,7 @@ return { [1]="cold_damage_resistance_+%" } }, - [1540]={ + [1569]={ [1]={ [1]={ [1]={ @@ -33148,7 +33701,7 @@ return { [1]="base_maximum_lightning_damage_resistance_%" } }, - [1541]={ + [1570]={ [1]={ [1]={ limit={ @@ -33164,7 +33717,7 @@ return { [1]="lightning_damage_resistance_is_%" } }, - [1542]={ + [1571]={ [1]={ [1]={ limit={ @@ -33180,7 +33733,23 @@ return { [1]="base_lightning_damage_resistance_%" } }, - [1543]={ + [1572]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d}% to all Resistances per Minion from your Non-Vaal Skills" + } + }, + stats={ + [1]="all_resistances_%_per_active_minion_not_from_vaal_skills" + } + }, + [1573]={ [1]={ [1]={ limit={ @@ -33196,7 +33765,7 @@ return { [1]="unique_lightning_damage_resistance_%_when_blue_gem_socketed" } }, - [1544]={ + [1574]={ [1]={ [1]={ limit={ @@ -33225,7 +33794,7 @@ return { [1]="lightning_damage_resistance_+%" } }, - [1545]={ + [1575]={ [1]={ [1]={ [1]={ @@ -33245,7 +33814,7 @@ return { [1]="base_maximum_chaos_damage_resistance_%" } }, - [1546]={ + [1576]={ [1]={ [1]={ limit={ @@ -33261,7 +33830,7 @@ return { [1]="base_chaos_damage_resistance_%" } }, - [1547]={ + [1577]={ [1]={ [1]={ [1]={ @@ -33281,7 +33850,7 @@ return { [1]="additional_maximum_all_resistances_%" } }, - [1548]={ + [1578]={ [1]={ [1]={ [1]={ @@ -33301,7 +33870,7 @@ return { [1]="additional_maximum_all_elemental_resistances_%" } }, - [1549]={ + [1579]={ [1]={ [1]={ limit={ @@ -33330,7 +33899,7 @@ return { [1]="temporal_chains_effeciveness_+%" } }, - [1550]={ + [1580]={ [1]={ [1]={ [1]={ @@ -33367,7 +33936,7 @@ return { [1]="chill_effectiveness_on_self_+%" } }, - [1551]={ + [1581]={ [1]={ [1]={ limit={ @@ -33396,7 +33965,7 @@ return { [1]="trickster_damage_+%_final_per_different_mastery" } }, - [1552]={ + [1582]={ [1]={ [1]={ [1]={ @@ -33420,7 +33989,7 @@ return { [1]="old_do_not_use_life_leech_from_physical_damage_%" } }, - [1553]={ + [1583]={ [1]={ [1]={ [1]={ @@ -33444,7 +34013,7 @@ return { [1]="enemy_life_leech_from_physical_attack_damage_permyriad" } }, - [1554]={ + [1584]={ [1]={ [1]={ [1]={ @@ -33468,7 +34037,7 @@ return { [1]="life_leech_from_physical_attack_damage_permyriad" } }, - [1555]={ + [1585]={ [1]={ [1]={ [1]={ @@ -33492,7 +34061,7 @@ return { [1]="old_do_not_use_local_life_leech_from_physical_damage_%" } }, - [1556]={ + [1586]={ [1]={ [1]={ [1]={ @@ -33516,7 +34085,7 @@ return { [1]="local_life_leech_from_physical_damage_permyriad" } }, - [1557]={ + [1587]={ [1]={ [1]={ [1]={ @@ -33540,7 +34109,7 @@ return { [1]="old_do_not_use_life_leech_from_physical_damage_with_claw_%" } }, - [1558]={ + [1588]={ [1]={ [1]={ [1]={ @@ -33564,7 +34133,7 @@ return { [1]="life_leech_from_physical_damage_with_claw_permyriad" } }, - [1559]={ + [1589]={ [1]={ [1]={ [1]={ @@ -33588,7 +34157,7 @@ return { [1]="life_leech_from_physical_damage_with_bow_permyriad" } }, - [1560]={ + [1590]={ [1]={ [1]={ [1]={ @@ -33616,7 +34185,7 @@ return { [1]="life_and_mana_leech_from_physical_damage_permyriad" } }, - [1561]={ + [1591]={ [1]={ [1]={ [1]={ @@ -33644,7 +34213,7 @@ return { [1]="local_life_and_mana_leech_from_physical_damage_permyriad" } }, - [1562]={ + [1592]={ [1]={ [1]={ [1]={ @@ -33668,7 +34237,7 @@ return { [1]="old_do_not_use_mana_leech_from_physical_damage_with_claw_%" } }, - [1563]={ + [1593]={ [1]={ [1]={ limit={ @@ -33684,7 +34253,7 @@ return { [1]="recover_%_life_on_kill_per_different_mastery" } }, - [1564]={ + [1594]={ [1]={ [1]={ [1]={ @@ -33708,7 +34277,7 @@ return { [1]="mana_leech_from_physical_damage_with_claw_permyriad" } }, - [1565]={ + [1595]={ [1]={ [1]={ [1]={ @@ -33732,7 +34301,7 @@ return { [1]="mana_leech_from_physical_damage_with_bow_permyriad" } }, - [1566]={ + [1596]={ [1]={ [1]={ [1]={ @@ -33756,7 +34325,7 @@ return { [1]="life_leech_from_any_damage_permyriad" } }, - [1567]={ + [1597]={ [1]={ [1]={ [1]={ @@ -33780,7 +34349,7 @@ return { [1]="old_do_not_use_life_leech_from_spell_damage_%" } }, - [1568]={ + [1598]={ [1]={ [1]={ [1]={ @@ -33804,7 +34373,7 @@ return { [1]="base_life_leech_from_spell_damage_permyriad" } }, - [1569]={ + [1599]={ [1]={ [1]={ [1]={ @@ -33828,7 +34397,7 @@ return { [1]="base_life_leech_from_attack_damage_permyriad" } }, - [1570]={ + [1600]={ [1]={ [1]={ [1]={ @@ -33852,7 +34421,7 @@ return { [1]="old_do_not_use_base_life_leech_from_physical_damage_permyriad" } }, - [1571]={ + [1601]={ [1]={ [1]={ [1]={ @@ -33876,7 +34445,7 @@ return { [1]="base_life_leech_from_physical_damage_permyriad" } }, - [1572]={ + [1602]={ [1]={ [1]={ [1]={ @@ -33900,7 +34469,7 @@ return { [1]="enemy_life_leech_from_physical_damage_permyriad" } }, - [1573]={ + [1603]={ [1]={ [1]={ [1]={ @@ -33924,7 +34493,7 @@ return { [1]="horrible_ugly_life_leech_from_physical_damage_perhundredthousand" } }, - [1574]={ + [1604]={ [1]={ [1]={ [1]={ @@ -33948,7 +34517,7 @@ return { [1]="old_do_not_use_base_life_leech_from_fire_damage_permyriad" } }, - [1575]={ + [1605]={ [1]={ [1]={ [1]={ @@ -33972,7 +34541,7 @@ return { [1]="base_life_leech_from_fire_damage_permyriad" } }, - [1576]={ + [1606]={ [1]={ [1]={ [1]={ @@ -33996,7 +34565,7 @@ return { [1]="enemy_life_leech_from_fire_damage_permyriad" } }, - [1577]={ + [1607]={ [1]={ [1]={ [1]={ @@ -34020,7 +34589,7 @@ return { [1]="horrible_ugly_life_leech_from_fire_damage_perhundredthousand" } }, - [1578]={ + [1608]={ [1]={ [1]={ limit={ @@ -34036,7 +34605,7 @@ return { [1]="recover_%_es_on_kill_per_different_mastery" } }, - [1579]={ + [1609]={ [1]={ [1]={ [1]={ @@ -34060,7 +34629,7 @@ return { [1]="old_do_not_use_base_life_leech_from_cold_damage_permyriad" } }, - [1580]={ + [1610]={ [1]={ [1]={ [1]={ @@ -34084,7 +34653,7 @@ return { [1]="base_life_leech_from_cold_damage_permyriad" } }, - [1581]={ + [1611]={ [1]={ [1]={ [1]={ @@ -34108,7 +34677,7 @@ return { [1]="enemy_life_leech_from_cold_damage_permyriad" } }, - [1582]={ + [1612]={ [1]={ [1]={ [1]={ @@ -34132,7 +34701,7 @@ return { [1]="horrible_ugly_life_leech_from_cold_damage_perhundredthousand" } }, - [1583]={ + [1613]={ [1]={ [1]={ [1]={ @@ -34156,7 +34725,7 @@ return { [1]="old_do_not_use_base_life_leech_from_lightning_damage_permyriad" } }, - [1584]={ + [1614]={ [1]={ [1]={ [1]={ @@ -34180,7 +34749,7 @@ return { [1]="base_life_leech_from_lightning_damage_permyriad" } }, - [1585]={ + [1615]={ [1]={ [1]={ [1]={ @@ -34204,7 +34773,7 @@ return { [1]="enemy_life_leech_from_lightning_damage_permyriad" } }, - [1586]={ + [1616]={ [1]={ [1]={ [1]={ @@ -34228,7 +34797,7 @@ return { [1]="horrible_ugly_life_leech_from_lightning_damage_perhundredthousand" } }, - [1587]={ + [1617]={ [1]={ [1]={ [1]={ @@ -34252,7 +34821,7 @@ return { [1]="base_life_leech_from_chaos_damage_permyriad" } }, - [1588]={ + [1618]={ [1]={ [1]={ [1]={ @@ -34276,7 +34845,7 @@ return { [1]="enemy_life_leech_from_chaos_damage_permyriad" } }, - [1589]={ + [1619]={ [1]={ [1]={ [1]={ @@ -34300,7 +34869,7 @@ return { [1]="horrible_ugly_life_leech_from_chaos_damage_perhundredthousand" } }, - [1590]={ + [1620]={ [1]={ [1]={ [1]={ @@ -34324,7 +34893,7 @@ return { [1]="old_do_not_use_base_life_leech_from_elemental_damage_permyriad" } }, - [1591]={ + [1621]={ [1]={ [1]={ [1]={ @@ -34348,7 +34917,7 @@ return { [1]="base_life_leech_from_elemental_damage_permyriad" } }, - [1592]={ + [1622]={ [1]={ [1]={ [1]={ @@ -34372,7 +34941,7 @@ return { [1]="old_do_not_use_life_leech_permyriad_vs_shocked_enemies" } }, - [1593]={ + [1623]={ [1]={ [1]={ [1]={ @@ -34396,7 +34965,7 @@ return { [1]="base_life_leech_permyriad_vs_shocked_enemies" } }, - [1594]={ + [1624]={ [1]={ [1]={ [1]={ @@ -34420,7 +34989,7 @@ return { [1]="old_do_not_use_life_leech_%_vs_frozen_enemies" } }, - [1595]={ + [1625]={ [1]={ [1]={ limit={ @@ -34436,7 +35005,7 @@ return { [1]="recover_%_mana_on_kill_per_different_mastery" } }, - [1596]={ + [1626]={ [1]={ [1]={ [1]={ @@ -34460,7 +35029,7 @@ return { [1]="base_life_leech_permyriad_vs_frozen_enemies" } }, - [1597]={ + [1627]={ [1]={ [1]={ [1]={ @@ -34484,7 +35053,7 @@ return { [1]="old_do_not_use_life_leech_from_attack_damage_permyriad_vs_chilled_enemies" } }, - [1598]={ + [1628]={ [1]={ [1]={ [1]={ @@ -34508,7 +35077,7 @@ return { [1]="base_life_leech_from_attack_damage_permyriad_vs_chilled_enemies" } }, - [1599]={ + [1629]={ [1]={ [1]={ [1]={ @@ -34532,7 +35101,7 @@ return { [1]="old_do_not_use_life_leech_permyriad_on_crit" } }, - [1600]={ + [1630]={ [1]={ [1]={ [1]={ @@ -34556,7 +35125,7 @@ return { [1]="life_leech_permyriad_on_crit" } }, - [1601]={ + [1631]={ [1]={ [1]={ [1]={ @@ -34580,7 +35149,7 @@ return { [1]="life_leech_from_attack_damage_permyriad_vs_bleeding_enemies" } }, - [1602]={ + [1632]={ [1]={ [1]={ [1]={ @@ -34604,7 +35173,7 @@ return { [1]="old_do_not_use_mana_leech_from_physical_damage_%" } }, - [1603]={ + [1633]={ [1]={ [1]={ [1]={ @@ -34628,7 +35197,7 @@ return { [1]="enemy_mana_leech_from_physical_attack_damage_permyriad" } }, - [1604]={ + [1634]={ [1]={ [1]={ [1]={ @@ -34652,7 +35221,7 @@ return { [1]="mana_leech_from_physical_attack_damage_permyriad" } }, - [1605]={ + [1635]={ [1]={ [1]={ [1]={ @@ -34676,7 +35245,7 @@ return { [1]="old_do_not_use_local_mana_leech_from_physical_damage_%" } }, - [1606]={ + [1636]={ [1]={ [1]={ [1]={ @@ -34700,7 +35269,7 @@ return { [1]="local_mana_leech_from_physical_damage_permyriad" } }, - [1607]={ + [1637]={ [1]={ [1]={ [1]={ @@ -34724,7 +35293,7 @@ return { [1]="mana_leech_from_any_damage_permyriad" } }, - [1608]={ + [1638]={ [1]={ [1]={ [1]={ @@ -34748,7 +35317,7 @@ return { [1]="old_do_not_use_mana_leech_from_spell_damage_%" } }, - [1609]={ + [1639]={ [1]={ [1]={ [1]={ @@ -34772,7 +35341,7 @@ return { [1]="base_mana_leech_from_spell_damage_permyriad" } }, - [1610]={ + [1640]={ [1]={ [1]={ [1]={ @@ -34796,7 +35365,7 @@ return { [1]="base_mana_leech_from_attack_damage_permyriad" } }, - [1611]={ + [1641]={ [1]={ [1]={ [1]={ @@ -34820,7 +35389,7 @@ return { [1]="base_mana_leech_from_physical_damage_permyriad" } }, - [1612]={ + [1642]={ [1]={ [1]={ [1]={ @@ -34844,7 +35413,7 @@ return { [1]="enemy_mana_leech_from_physical_damage_permyriad" } }, - [1613]={ + [1643]={ [1]={ [1]={ [1]={ @@ -34868,7 +35437,7 @@ return { [1]="base_mana_leech_from_fire_damage_permyriad" } }, - [1614]={ + [1644]={ [1]={ [1]={ [1]={ @@ -34892,7 +35461,7 @@ return { [1]="enemy_mana_leech_from_fire_damage_permyriad" } }, - [1615]={ + [1645]={ [1]={ [1]={ [1]={ @@ -34916,7 +35485,7 @@ return { [1]="base_mana_leech_from_cold_damage_permyriad" } }, - [1616]={ + [1646]={ [1]={ [1]={ [1]={ @@ -34940,7 +35509,7 @@ return { [1]="old_do_not_use_base_mana_leech_from_lightning_damage_permyriad" } }, - [1617]={ + [1647]={ [1]={ [1]={ [1]={ @@ -34964,7 +35533,7 @@ return { [1]="base_mana_leech_from_lightning_damage_permyriad" } }, - [1618]={ + [1648]={ [1]={ [1]={ [1]={ @@ -34988,7 +35557,7 @@ return { [1]="enemy_mana_leech_from_lightning_damage_permyriad" } }, - [1619]={ + [1649]={ [1]={ [1]={ [1]={ @@ -35012,7 +35581,7 @@ return { [1]="base_mana_leech_from_chaos_damage_permyriad" } }, - [1620]={ + [1650]={ [1]={ [1]={ [1]={ @@ -35036,7 +35605,7 @@ return { [1]="enemy_mana_leech_from_chaos_damage_permyriad" } }, - [1621]={ + [1651]={ [1]={ [1]={ [1]={ @@ -35060,7 +35629,7 @@ return { [1]="base_mana_leech_from_elemental_damage_permyriad" } }, - [1622]={ + [1652]={ [1]={ [1]={ [1]={ @@ -35084,7 +35653,7 @@ return { [1]="old_do_not_use_mana_leech_%_vs_shocked_enemies" } }, - [1623]={ + [1653]={ [1]={ [1]={ [1]={ @@ -35108,7 +35677,7 @@ return { [1]="base_mana_leech_permyriad_vs_shocked_enemies" } }, - [1624]={ + [1654]={ [1]={ [1]={ [1]={ @@ -35132,7 +35701,7 @@ return { [1]="old_do_not_use_mana_leech_from_physical_damage_%_per_power_charge" } }, - [1625]={ + [1655]={ [1]={ [1]={ [1]={ @@ -35156,7 +35725,7 @@ return { [1]="mana_leech_from_physical_damage_permyriad_per_power_charge" } }, - [1626]={ + [1656]={ [1]={ [1]={ [1]={ @@ -35180,7 +35749,7 @@ return { [1]="energy_shield_leech_from_any_damage_permyriad" } }, - [1627]={ + [1657]={ [1]={ [1]={ [1]={ @@ -35204,7 +35773,7 @@ return { [1]="base_energy_shield_leech_from_spell_damage_permyriad" } }, - [1628]={ + [1658]={ [1]={ [1]={ [1]={ @@ -35228,7 +35797,7 @@ return { [1]="energy_shield_leech_from_spell_damage_permyriad_per_curse_on_enemy" } }, - [1629]={ + [1659]={ [1]={ [1]={ limit={ @@ -35257,7 +35826,7 @@ return { [1]="maximum_life_leech_amount_per_leech_+%" } }, - [1630]={ + [1660]={ [1]={ [1]={ limit={ @@ -35286,7 +35855,7 @@ return { [1]="maximum_mana_leech_amount_per_leech_+%" } }, - [1631]={ + [1661]={ [1]={ [1]={ limit={ @@ -35315,7 +35884,7 @@ return { [1]="maximum_energy_shield_leech_amount_per_leech_+%" } }, - [1632]={ + [1662]={ [1]={ [1]={ [1]={ @@ -35335,7 +35904,7 @@ return { [1]="maximum_life_leech_rate_%_per_minute" } }, - [1633]={ + [1663]={ [1]={ [1]={ [1]={ @@ -35355,7 +35924,7 @@ return { [1]="maximum_energy_shield_leech_rate_%_per_minute" } }, - [1634]={ + [1664]={ [1]={ [1]={ limit={ @@ -35371,7 +35940,7 @@ return { [1]="maximum_energy_shield_leech_amount_per_leech_%_max_energy_shield" } }, - [1635]={ + [1665]={ [1]={ [1]={ [1]={ @@ -35391,7 +35960,7 @@ return { [1]="maximum_mana_leech_rate_%_per_minute" } }, - [1636]={ + [1666]={ [1]={ [1]={ limit={ @@ -35420,7 +35989,7 @@ return { [1]="maximum_life_leech_rate_+%" } }, - [1637]={ + [1667]={ [1]={ [1]={ [1]={ @@ -35457,7 +36026,7 @@ return { [1]="maximum_life_leech_rate_+1%_per_12_stat_value" } }, - [1638]={ + [1668]={ [1]={ [1]={ limit={ @@ -35486,7 +36055,7 @@ return { [1]="maximum_mana_leech_rate_+%" } }, - [1639]={ + [1669]={ [1]={ [1]={ limit={ @@ -35515,7 +36084,7 @@ return { [1]="maximum_energy_shield_leech_rate_+%" } }, - [1640]={ + [1670]={ [1]={ [1]={ limit={ @@ -35544,7 +36113,7 @@ return { [1]="maximum_energy_shield_leech_rate_+%_while_affected_by_zealotry" } }, - [1641]={ + [1671]={ [1]={ [1]={ [1]={ @@ -35564,7 +36133,7 @@ return { [1]="maximum_es_leech_rate_+1%_per_6_stat_value_while_affected_by_zealotry" } }, - [1642]={ + [1672]={ [1]={ [1]={ limit={ @@ -35593,7 +36162,7 @@ return { [1]="life_gain_per_target" } }, - [1643]={ + [1673]={ [1]={ [1]={ limit={ @@ -35622,7 +36191,7 @@ return { [1]="local_life_gain_per_target" } }, - [1644]={ + [1674]={ [1]={ [1]={ limit={ @@ -35651,7 +36220,7 @@ return { [1]="base_life_gained_on_spell_hit" } }, - [1645]={ + [1675]={ [1]={ [1]={ limit={ @@ -35680,7 +36249,7 @@ return { [1]="base_life_gain_per_target" } }, - [1646]={ + [1676]={ [1]={ [1]={ limit={ @@ -35709,7 +36278,7 @@ return { [1]="life_and_mana_gain_per_hit" } }, - [1647]={ + [1677]={ [1]={ [1]={ limit={ @@ -35738,7 +36307,7 @@ return { [1]="local_life_and_mana_gain_per_target" } }, - [1648]={ + [1678]={ [1]={ [1]={ limit={ @@ -35767,7 +36336,7 @@ return { [1]="life_gain_on_ignited_enemy_hit" } }, - [1649]={ + [1679]={ [1]={ [1]={ limit={ @@ -35796,7 +36365,7 @@ return { [1]="mana_gain_per_target" } }, - [1650]={ + [1680]={ [1]={ [1]={ limit={ @@ -35825,7 +36394,7 @@ return { [1]="local_mana_gain_per_target" } }, - [1651]={ + [1681]={ [1]={ [1]={ limit={ @@ -35854,7 +36423,7 @@ return { [1]="virtual_mana_gain_per_target" } }, - [1652]={ + [1682]={ [1]={ [1]={ limit={ @@ -35883,7 +36452,7 @@ return { [1]="energy_shield_gain_per_target" } }, - [1653]={ + [1683]={ [1]={ [1]={ limit={ @@ -35912,7 +36481,7 @@ return { [1]="base_life_gained_on_enemy_death" } }, - [1654]={ + [1684]={ [1]={ [1]={ limit={ @@ -35941,7 +36510,7 @@ return { [1]="recover_%_maximum_life_on_kill" } }, - [1655]={ + [1685]={ [1]={ [1]={ limit={ @@ -35970,7 +36539,7 @@ return { [1]="recover_energy_shield_%_on_kill" } }, - [1656]={ + [1686]={ [1]={ [1]={ limit={ @@ -35999,7 +36568,7 @@ return { [1]="recover_%_maximum_mana_on_kill" } }, - [1657]={ + [1687]={ [1]={ [1]={ limit={ @@ -36015,7 +36584,7 @@ return { [1]="recover_%_maximum_mana_on_killing_cursed_enemy" } }, - [1658]={ + [1688]={ [1]={ [1]={ limit={ @@ -36044,7 +36613,7 @@ return { [1]="life_gained_on_killing_ignited_enemies" } }, - [1659]={ + [1689]={ [1]={ [1]={ limit={ @@ -36060,7 +36629,7 @@ return { [1]="maximum_life_%_lost_on_kill" } }, - [1660]={ + [1690]={ [1]={ [1]={ limit={ @@ -36076,7 +36645,7 @@ return { [1]="maximum_mana_%_gained_on_kill" } }, - [1661]={ + [1691]={ [1]={ [1]={ limit={ @@ -36092,7 +36661,7 @@ return { [1]="maximum_energy_shield_%_lost_on_kill" } }, - [1662]={ + [1692]={ [1]={ [1]={ limit={ @@ -36121,7 +36690,7 @@ return { [1]="life_gained_on_block" } }, - [1663]={ + [1693]={ [1]={ [1]={ limit={ @@ -36150,7 +36719,7 @@ return { [1]="mana_gained_on_block" } }, - [1664]={ + [1694]={ [1]={ [1]={ limit={ @@ -36179,7 +36748,7 @@ return { [1]="energy_shield_gained_on_block" } }, - [1665]={ + [1695]={ [1]={ [1]={ limit={ @@ -36195,7 +36764,7 @@ return { [1]="recover_X_life_on_block" } }, - [1666]={ + [1696]={ [1]={ [1]={ limit={ @@ -36211,7 +36780,7 @@ return { [1]="spell_block_%_per_5_attack_block" } }, - [1667]={ + [1697]={ [1]={ [1]={ limit={ @@ -36227,7 +36796,7 @@ return { [1]="minion_recover_X_life_on_block" } }, - [1668]={ + [1698]={ [1]={ [1]={ limit={ @@ -36256,7 +36825,7 @@ return { [1]="base_mana_gained_on_enemy_death" } }, - [1669]={ + [1699]={ [1]={ [1]={ limit={ @@ -36285,7 +36854,7 @@ return { [1]="support_minion_maximum_life_+%_final" } }, - [1670]={ + [1700]={ [1]={ [1]={ limit={ @@ -36314,7 +36883,7 @@ return { [1]="minion_life_recovery_rate_+%" } }, - [1671]={ + [1701]={ [1]={ [1]={ limit={ @@ -36343,7 +36912,7 @@ return { [1]="minion_maximum_life_+%" } }, - [1672]={ + [1702]={ [1]={ [1]={ limit={ @@ -36372,7 +36941,7 @@ return { [1]="minion_maximum_mana_+%" } }, - [1673]={ + [1703]={ [1]={ [1]={ limit={ @@ -36401,7 +36970,7 @@ return { [1]="minion_maximum_energy_shield_+%" } }, - [1674]={ + [1704]={ [1]={ [1]={ limit={ @@ -36430,7 +36999,7 @@ return { [1]="minion_movement_speed_+%" } }, - [1675]={ + [1705]={ [1]={ [1]={ limit={ @@ -36459,7 +37028,7 @@ return { [1]="base_spectre_maximum_life_+%" } }, - [1676]={ + [1706]={ [1]={ [1]={ limit={ @@ -36488,7 +37057,7 @@ return { [1]="base_zombie_maximum_life_+%" } }, - [1677]={ + [1707]={ [1]={ [1]={ limit={ @@ -36517,7 +37086,7 @@ return { [1]="base_fire_elemental_maximum_life_+%" } }, - [1678]={ + [1708]={ [1]={ [1]={ limit={ @@ -36546,7 +37115,7 @@ return { [1]="base_raven_maximum_life_+%" } }, - [1679]={ + [1709]={ [1]={ [1]={ limit={ @@ -36575,7 +37144,7 @@ return { [1]="totem_life_+%" } }, - [1680]={ + [1710]={ [1]={ [1]={ limit={ @@ -36604,7 +37173,7 @@ return { [1]="totem_mana_+%" } }, - [1681]={ + [1711]={ [1]={ [1]={ limit={ @@ -36633,7 +37202,7 @@ return { [1]="totem_energy_shield_+%" } }, - [1682]={ + [1712]={ [1]={ [1]={ limit={ @@ -36662,7 +37231,7 @@ return { [1]="totem_range_+%" } }, - [1683]={ + [1713]={ [1]={ [1]={ limit={ @@ -36691,7 +37260,7 @@ return { [1]="totem_duration_+%" } }, - [1684]={ + [1714]={ [1]={ [1]={ limit={ @@ -36720,7 +37289,7 @@ return { [1]="skeleton_duration_+%" } }, - [1685]={ + [1715]={ [1]={ [1]={ limit={ @@ -36749,7 +37318,7 @@ return { [1]="buff_duration_+%" } }, - [1686]={ + [1716]={ [1]={ [1]={ limit={ @@ -36778,7 +37347,7 @@ return { [1]="base_curse_duration_+%" } }, - [1687]={ + [1717]={ [1]={ [1]={ [1]={ @@ -36815,7 +37384,7 @@ return { [1]="taunt_duration_+%" } }, - [1688]={ + [1718]={ [1]={ [1]={ limit={ @@ -36831,7 +37400,7 @@ return { [1]="life_gained_on_taunting_enemy" } }, - [1689]={ + [1719]={ [1]={ [1]={ limit={ @@ -36860,7 +37429,7 @@ return { [1]="mana_gained_on_hitting_taunted_enemy" } }, - [1690]={ + [1720]={ [1]={ [1]={ limit={ @@ -36876,7 +37445,7 @@ return { [1]="buff_affects_party" } }, - [1691]={ + [1721]={ [1]={ [1]={ limit={ @@ -36905,7 +37474,7 @@ return { [1]="buff_party_effect_radius_+%" } }, - [1692]={ + [1722]={ [1]={ [1]={ limit={ @@ -36921,7 +37490,7 @@ return { [1]="do_not_chain" } }, - [1693]={ + [1723]={ [1]={ [1]={ limit={ @@ -36937,7 +37506,7 @@ return { [1]="arrow_chains_+" } }, - [1694]={ + [1724]={ [1]={ [1]={ limit={ @@ -36953,7 +37522,7 @@ return { [1]="number_of_chains" } }, - [1695]={ + [1725]={ [1]={ [1]={ limit={ @@ -36978,7 +37547,7 @@ return { [1]="projectile_base_number_of_targets_to_pierce" } }, - [1696]={ + [1726]={ [1]={ [1]={ limit={ @@ -37003,7 +37572,7 @@ return { [1]="arrow_base_number_of_targets_to_pierce" } }, - [1697]={ + [1727]={ [1]={ [1]={ limit={ @@ -37028,7 +37597,7 @@ return { [1]="number_of_additional_projectiles" } }, - [1698]={ + [1728]={ [1]={ [1]={ limit={ @@ -37044,7 +37613,7 @@ return { [1]="bow_attacks_turn_frenzy_charges_into_additional_arrows" } }, - [1699]={ + [1729]={ [1]={ [1]={ limit={ @@ -37069,7 +37638,7 @@ return { [1]="number_of_additional_arrows" } }, - [1700]={ + [1730]={ [1]={ [1]={ [1]={ @@ -37089,7 +37658,7 @@ return { [1]="number_of_additional_arrows_if_havent_cast_dash_recently" } }, - [1701]={ + [1731]={ [1]={ [1]={ limit={ @@ -37118,7 +37687,7 @@ return { [1]="base_projectile_speed_+%" } }, - [1702]={ + [1732]={ [1]={ [1]={ limit={ @@ -37147,7 +37716,7 @@ return { [1]="base_arrow_speed_+%" } }, - [1703]={ + [1733]={ [1]={ [1]={ limit={ @@ -37176,7 +37745,7 @@ return { [1]="base_movement_velocity_+%" } }, - [1704]={ + [1734]={ [1]={ [1]={ [1]={ @@ -37213,7 +37782,7 @@ return { [1]="movement_velocity_+%_when_on_low_life" } }, - [1705]={ + [1735]={ [1]={ [1]={ limit={ @@ -37242,7 +37811,7 @@ return { [1]="movement_velocity_+%_when_on_full_life" } }, - [1706]={ + [1736]={ [1]={ [1]={ [1]={ @@ -37266,7 +37835,7 @@ return { [1]="energy_shield_regeneration_rate_per_minute_%_while_on_low_life" } }, - [1707]={ + [1737]={ [1]={ [1]={ limit={ @@ -37282,7 +37851,7 @@ return { [1]="movement_velocity_+%_per_frenzy_charge" } }, - [1708]={ + [1738]={ [1]={ [1]={ limit={ @@ -37298,7 +37867,7 @@ return { [1]="base_minimum_endurance_charges" } }, - [1709]={ + [1739]={ [1]={ [1]={ limit={ @@ -37314,7 +37883,7 @@ return { [1]="max_endurance_charges" } }, - [1710]={ + [1740]={ [1]={ [1]={ limit={ @@ -37330,7 +37899,7 @@ return { [1]="maximum_endurance_charges_is_equal_to_maximum_frenzy_charges" } }, - [1711]={ + [1741]={ [1]={ [1]={ limit={ @@ -37346,7 +37915,7 @@ return { [1]="modifiers_to_minimum_endurance_charges_instead_apply_to_brutal_charges" } }, - [1712]={ + [1742]={ [1]={ [1]={ limit={ @@ -37362,7 +37931,7 @@ return { [1]="maximum_brutal_charges_is_equal_to_maximum_endurance_charges" } }, - [1713]={ + [1743]={ [1]={ [1]={ limit={ @@ -37378,7 +37947,7 @@ return { [1]="base_minimum_frenzy_charges" } }, - [1714]={ + [1744]={ [1]={ [1]={ limit={ @@ -37394,7 +37963,7 @@ return { [1]="max_frenzy_charges" } }, - [1715]={ + [1745]={ [1]={ [1]={ limit={ @@ -37410,7 +37979,7 @@ return { [1]="maximum_frenzy_charges_is_equal_to_maximum_power_charges" } }, - [1716]={ + [1746]={ [1]={ [1]={ limit={ @@ -37426,7 +37995,7 @@ return { [1]="modifiers_to_minimum_frenzy_charges_instead_apply_to_affliction_charges" } }, - [1717]={ + [1747]={ [1]={ [1]={ limit={ @@ -37442,7 +38011,7 @@ return { [1]="maximum_affliction_charges_is_equal_to_maximum_frenzy_charges" } }, - [1718]={ + [1748]={ [1]={ [1]={ limit={ @@ -37458,7 +38027,7 @@ return { [1]="base_minimum_power_charges" } }, - [1719]={ + [1749]={ [1]={ [1]={ limit={ @@ -37474,7 +38043,7 @@ return { [1]="max_power_charges" } }, - [1720]={ + [1750]={ [1]={ [1]={ limit={ @@ -37490,7 +38059,7 @@ return { [1]="maximum_power_and_frenzy_charges_+" } }, - [1721]={ + [1751]={ [1]={ [1]={ limit={ @@ -37506,7 +38075,7 @@ return { [1]="modifiers_to_minimum_power_charges_instead_apply_to_absorption_charges" } }, - [1722]={ + [1752]={ [1]={ [1]={ limit={ @@ -37522,7 +38091,7 @@ return { [1]="maximum_absorption_charges_is_equal_to_maximum_power_charges" } }, - [1723]={ + [1753]={ [1]={ [1]={ limit={ @@ -37538,7 +38107,7 @@ return { [1]="add_endurance_charge_on_critical_strike" } }, - [1724]={ + [1754]={ [1]={ [1]={ limit={ @@ -37563,7 +38132,7 @@ return { [1]="chance_to_gain_endurance_charge_on_crit_%" } }, - [1725]={ + [1755]={ [1]={ [1]={ limit={ @@ -37588,7 +38157,7 @@ return { [1]="chance_to_gain_endurance_charge_on_melee_crit_%" } }, - [1726]={ + [1756]={ [1]={ [1]={ limit={ @@ -37604,7 +38173,7 @@ return { [1]="gain_endurance_charge_%_chance_on_using_fire_skill" } }, - [1727]={ + [1757]={ [1]={ [1]={ limit={ @@ -37629,7 +38198,7 @@ return { [1]="chance_to_gain_endurance_charge_on_bow_crit_%" } }, - [1728]={ + [1758]={ [1]={ [1]={ limit={ @@ -37654,7 +38223,7 @@ return { [1]="chance_to_gain_frenzy_charge_on_killing_frozen_enemy_%" } }, - [1729]={ + [1759]={ [1]={ [1]={ limit={ @@ -37679,7 +38248,7 @@ return { [1]="chance_to_gain_power_charge_on_killing_frozen_enemy_%" } }, - [1730]={ + [1760]={ [1]={ [1]={ limit={ @@ -37726,7 +38295,7 @@ return { [2]="spell_maximum_added_cold_damage_per_power_charge" } }, - [1731]={ + [1761]={ [1]={ [1]={ limit={ @@ -37751,7 +38320,7 @@ return { [1]="num_of_additional_chains_at_max_frenzy_charges" } }, - [1732]={ + [1762]={ [1]={ [1]={ limit={ @@ -37776,7 +38345,7 @@ return { [1]="projectile_chain_from_terrain_chance_%" } }, - [1733]={ + [1763]={ [1]={ [1]={ limit={ @@ -37792,7 +38361,7 @@ return { [1]="add_frenzy_charge_on_critical_strike" } }, - [1734]={ + [1764]={ [1]={ [1]={ limit={ @@ -37808,7 +38377,7 @@ return { [1]="add_power_charge_on_critical_strike" } }, - [1735]={ + [1765]={ [1]={ [1]={ limit={ @@ -37833,7 +38402,7 @@ return { [1]="add_power_charge_on_critical_strike_%" } }, - [1736]={ + [1766]={ [1]={ [1]={ limit={ @@ -37849,7 +38418,7 @@ return { [1]="add_power_charge_on_melee_critical_strike" } }, - [1737]={ + [1767]={ [1]={ [1]={ limit={ @@ -37865,7 +38434,7 @@ return { [1]="add_endurance_charge_on_skill_hit_%" } }, - [1738]={ + [1768]={ [1]={ [1]={ limit={ @@ -37881,7 +38450,7 @@ return { [1]="add_frenzy_charge_on_skill_hit_%" } }, - [1739]={ + [1769]={ [1]={ [1]={ limit={ @@ -37897,7 +38466,7 @@ return { [1]="add_power_charge_on_skill_hit_%" } }, - [1740]={ + [1770]={ [1]={ [1]={ limit={ @@ -37913,7 +38482,7 @@ return { [1]="add_endurance_charge_on_enemy_critical_strike" } }, - [1741]={ + [1771]={ [1]={ [1]={ [1]={ @@ -37933,7 +38502,7 @@ return { [1]="add_endurance_charge_on_status_ailment" } }, - [1742]={ + [1772]={ [1]={ [1]={ limit={ @@ -37949,7 +38518,7 @@ return { [1]="base_cannot_be_chilled" } }, - [1743]={ + [1773]={ [1]={ [1]={ limit={ @@ -37965,7 +38534,7 @@ return { [1]="base_cannot_be_frozen" } }, - [1744]={ + [1774]={ [1]={ [1]={ limit={ @@ -37981,7 +38550,7 @@ return { [1]="base_cannot_be_ignited" } }, - [1745]={ + [1775]={ [1]={ [1]={ limit={ @@ -37997,7 +38566,7 @@ return { [1]="cannot_be_poisoned" } }, - [1746]={ + [1776]={ [1]={ [1]={ limit={ @@ -38013,7 +38582,7 @@ return { [1]="base_cannot_be_shocked" } }, - [1747]={ + [1777]={ [1]={ [1]={ limit={ @@ -38029,7 +38598,7 @@ return { [1]="base_cannot_gain_bleeding" } }, - [1748]={ + [1778]={ [1]={ [1]={ [1]={ @@ -38049,7 +38618,7 @@ return { [1]="avoid_all_elemental_status_%" } }, - [1749]={ + [1779]={ [1]={ [1]={ limit={ @@ -38065,7 +38634,7 @@ return { [1]="base_avoid_chill_%" } }, - [1750]={ + [1780]={ [1]={ [1]={ limit={ @@ -38081,7 +38650,7 @@ return { [1]="base_avoid_freeze_%" } }, - [1751]={ + [1781]={ [1]={ [1]={ limit={ @@ -38097,7 +38666,7 @@ return { [1]="base_avoid_ignite_%" } }, - [1752]={ + [1782]={ [1]={ [1]={ [1]={ @@ -38117,7 +38686,7 @@ return { [1]="avoid_ignite_%_when_on_low_life" } }, - [1753]={ + [1783]={ [1]={ [1]={ limit={ @@ -38133,7 +38702,7 @@ return { [1]="base_avoid_shock_%" } }, - [1754]={ + [1784]={ [1]={ [1]={ limit={ @@ -38149,7 +38718,7 @@ return { [1]="base_avoid_poison_%" } }, - [1755]={ + [1785]={ [1]={ [1]={ limit={ @@ -38165,7 +38734,7 @@ return { [1]="avoid_stun_%" } }, - [1756]={ + [1786]={ [1]={ [1]={ limit={ @@ -38181,7 +38750,7 @@ return { [1]="base_avoid_stun_%" } }, - [1757]={ + [1787]={ [1]={ [1]={ [1]={ @@ -38201,7 +38770,7 @@ return { [1]="always_ignite" } }, - [1758]={ + [1788]={ [1]={ [1]={ [1]={ @@ -38221,7 +38790,7 @@ return { [1]="always_shock" } }, - [1759]={ + [1789]={ [1]={ [1]={ limit={ @@ -38237,7 +38806,7 @@ return { [1]="always_stun" } }, - [1760]={ + [1790]={ [1]={ [1]={ limit={ @@ -38253,7 +38822,7 @@ return { [1]="cannot_stun" } }, - [1761]={ + [1791]={ [1]={ [1]={ limit={ @@ -38282,7 +38851,7 @@ return { [1]="chill_duration_+%" } }, - [1762]={ + [1792]={ [1]={ [1]={ limit={ @@ -38311,7 +38880,7 @@ return { [1]="shock_duration_+%" } }, - [1763]={ + [1793]={ [1]={ [1]={ limit={ @@ -38340,7 +38909,7 @@ return { [1]="freeze_duration_+%" } }, - [1764]={ + [1794]={ [1]={ [1]={ limit={ @@ -38369,7 +38938,7 @@ return { [1]="ignite_duration_+%" } }, - [1765]={ + [1795]={ [1]={ [1]={ [1]={ @@ -38406,7 +38975,7 @@ return { [1]="base_all_ailment_duration_+%" } }, - [1766]={ + [1796]={ [1]={ [1]={ [1]={ @@ -38443,7 +39012,7 @@ return { [1]="base_elemental_status_ailment_duration_+%" } }, - [1767]={ + [1797]={ [1]={ [1]={ [1]={ @@ -38463,7 +39032,7 @@ return { [1]="cannot_inflict_status_ailments" } }, - [1768]={ + [1798]={ [1]={ [1]={ limit={ @@ -38492,7 +39061,7 @@ return { [1]="base_stun_duration_+%" } }, - [1769]={ + [1799]={ [1]={ [1]={ limit={ @@ -38521,7 +39090,7 @@ return { [1]="two_handed_melee_stun_duration_+%" } }, - [1770]={ + [1800]={ [1]={ [1]={ limit={ @@ -38550,7 +39119,7 @@ return { [1]="bow_stun_duration_+%" } }, - [1771]={ + [1801]={ [1]={ [1]={ [1]={ @@ -38587,7 +39156,7 @@ return { [1]="staff_stun_duration_+%" } }, - [1772]={ + [1802]={ [1]={ [1]={ [1]={ @@ -38624,7 +39193,7 @@ return { [1]="self_elemental_status_duration_-%" } }, - [1773]={ + [1803]={ [1]={ [1]={ limit={ @@ -38653,7 +39222,7 @@ return { [1]="self_chill_duration_-%" } }, - [1774]={ + [1804]={ [1]={ [1]={ limit={ @@ -38682,7 +39251,7 @@ return { [1]="self_shock_duration_-%" } }, - [1775]={ + [1805]={ [1]={ [1]={ limit={ @@ -38711,7 +39280,7 @@ return { [1]="self_freeze_duration_-%" } }, - [1776]={ + [1806]={ [1]={ [1]={ limit={ @@ -38740,7 +39309,7 @@ return { [1]="self_ignite_duration_-%" } }, - [1777]={ + [1807]={ [1]={ [1]={ limit={ @@ -38769,7 +39338,7 @@ return { [1]="base_self_chill_duration_-%" } }, - [1778]={ + [1808]={ [1]={ [1]={ limit={ @@ -38798,7 +39367,7 @@ return { [1]="base_self_shock_duration_-%" } }, - [1779]={ + [1809]={ [1]={ [1]={ limit={ @@ -38827,7 +39396,7 @@ return { [1]="base_self_freeze_duration_-%" } }, - [1780]={ + [1810]={ [1]={ [1]={ limit={ @@ -38856,7 +39425,7 @@ return { [1]="base_self_ignite_duration_-%" } }, - [1781]={ + [1811]={ [1]={ [1]={ limit={ @@ -38885,7 +39454,7 @@ return { [1]="chance_per_second_of_fire_spreading_between_enemies_%" } }, - [1782]={ + [1812]={ [1]={ [1]={ limit={ @@ -38914,7 +39483,7 @@ return { [1]="burn_damage_+%" } }, - [1783]={ + [1813]={ [1]={ [1]={ limit={ @@ -38930,7 +39499,7 @@ return { [1]="active_skill_level_+" } }, - [1784]={ + [1814]={ [1]={ [1]={ limit={ @@ -38959,7 +39528,7 @@ return { [1]="gem_experience_gain_+%" } }, - [1785]={ + [1815]={ [1]={ [1]={ limit={ @@ -38988,7 +39557,7 @@ return { [1]="base_skill_area_of_effect_+%" } }, - [1786]={ + [1816]={ [1]={ [1]={ limit={ @@ -39017,7 +39586,7 @@ return { [1]="base_cost_+%" } }, - [1787]={ + [1817]={ [1]={ [1]={ limit={ @@ -39046,7 +39615,7 @@ return { [1]="base_life_cost_+%" } }, - [1788]={ + [1818]={ [1]={ [1]={ limit={ @@ -39075,7 +39644,7 @@ return { [1]="base_mana_cost_-%" } }, - [1789]={ + [1819]={ [1]={ [1]={ limit={ @@ -39104,7 +39673,7 @@ return { [1]="base_rage_cost_+%" } }, - [1790]={ + [1820]={ [1]={ [1]={ limit={ @@ -39133,7 +39702,7 @@ return { [1]="mana_cost_+%_while_on_full_energy_shield" } }, - [1791]={ + [1821]={ [1]={ [1]={ [1]={ @@ -39170,7 +39739,7 @@ return { [1]="mana_cost_+%_when_on_low_life" } }, - [1792]={ + [1822]={ [1]={ [1]={ limit={ @@ -39186,7 +39755,7 @@ return { [1]="base_es_cost_+" } }, - [1793]={ + [1823]={ [1]={ [1]={ limit={ @@ -39202,7 +39771,7 @@ return { [1]="base_life_cost_+" } }, - [1794]={ + [1824]={ [1]={ [1]={ limit={ @@ -39218,7 +39787,7 @@ return { [1]="base_mana_cost_+" } }, - [1795]={ + [1825]={ [1]={ [1]={ limit={ @@ -39234,7 +39803,7 @@ return { [1]="skill_life_cost_+" } }, - [1796]={ + [1826]={ [1]={ [1]={ limit={ @@ -39250,7 +39819,7 @@ return { [1]="skill_mana_cost_+" } }, - [1797]={ + [1827]={ [1]={ [1]={ limit={ @@ -39266,7 +39835,7 @@ return { [1]="attacks_do_not_cost_mana" } }, - [1798]={ + [1828]={ [1]={ [1]={ limit={ @@ -39291,7 +39860,7 @@ return { [1]="skill_repeat_count" } }, - [1799]={ + [1829]={ [1]={ [1]={ limit={ @@ -39316,7 +39885,7 @@ return { [1]="spell_repeat_count" } }, - [1800]={ + [1830]={ [1]={ [1]={ limit={ @@ -39345,7 +39914,7 @@ return { [1]="skill_effect_duration_+%" } }, - [1801]={ + [1831]={ [1]={ [1]={ limit={ @@ -39374,7 +39943,7 @@ return { [1]="chaos_skill_effect_duration_+%" } }, - [1802]={ + [1832]={ [1]={ [1]={ limit={ @@ -39403,7 +39972,7 @@ return { [1]="skill_cooldown_-%" } }, - [1803]={ + [1833]={ [1]={ [1]={ limit={ @@ -39428,7 +39997,7 @@ return { [1]="avoid_interruption_while_casting_%" } }, - [1804]={ + [1834]={ [1]={ [1]={ limit={ @@ -39453,7 +40022,7 @@ return { [1]="attack_repeat_count" } }, - [1805]={ + [1835]={ [1]={ [1]={ limit={ @@ -39482,7 +40051,7 @@ return { [1]="base_stun_recovery_+%" } }, - [1806]={ + [1836]={ [1]={ [1]={ limit={ @@ -39511,7 +40080,7 @@ return { [1]="stun_recovery_+%_per_frenzy_charge" } }, - [1807]={ + [1837]={ [1]={ [1]={ limit={ @@ -39527,7 +40096,7 @@ return { [1]="while_using_sword_reduce_enemy_block_%" } }, - [1808]={ + [1838]={ [1]={ [1]={ limit={ @@ -39543,7 +40112,7 @@ return { [1]="bow_enemy_block_-%" } }, - [1809]={ + [1839]={ [1]={ [1]={ limit={ @@ -39559,7 +40128,7 @@ return { [1]="global_reduce_enemy_block_%" } }, - [1810]={ + [1840]={ [1]={ [1]={ limit={ @@ -39575,7 +40144,7 @@ return { [1]="reduce_enemy_dodge_%" } }, - [1811]={ + [1841]={ [1]={ [1]={ limit={ @@ -39591,7 +40160,7 @@ return { [1]="prevent_monster_heal" } }, - [1812]={ + [1842]={ [1]={ [1]={ limit={ @@ -39620,7 +40189,7 @@ return { [1]="prevent_monster_heal_duration_+%" } }, - [1813]={ + [1843]={ [1]={ [1]={ limit={ @@ -39649,7 +40218,7 @@ return { [1]="chest_trap_defuse_%" } }, - [1814]={ + [1844]={ [1]={ [1]={ [1]={ @@ -39669,7 +40238,7 @@ return { [1]="enemies_chill_as_unfrozen" } }, - [1815]={ + [1845]={ [1]={ [1]={ [1]={ @@ -39689,7 +40258,7 @@ return { [1]="enemy_shock_on_kill" } }, - [1816]={ + [1846]={ [1]={ [1]={ [1]={ @@ -39709,7 +40278,7 @@ return { [1]="shocks_enemies_that_hit_actor_while_actor_is_casting" } }, - [1817]={ + [1847]={ [1]={ [1]={ limit={ @@ -39725,7 +40294,7 @@ return { [1]="local_is_max_quality" } }, - [1818]={ + [1848]={ [1]={ [1]={ [1]={ @@ -39745,7 +40314,7 @@ return { [1]="local_quality_does_not_increase_defences" } }, - [1819]={ + [1849]={ [1]={ [1]={ limit={ @@ -39761,7 +40330,7 @@ return { [1]="local_quality_does_not_increase_physical_damage" } }, - [1820]={ + [1850]={ [1]={ [1]={ limit={ @@ -39777,7 +40346,7 @@ return { [1]="local_extra_socket" } }, - [1821]={ + [1851]={ [1]={ [1]={ limit={ @@ -39793,7 +40362,7 @@ return { [1]="base_cannot_evade" } }, - [1822]={ + [1852]={ [1]={ [1]={ limit={ @@ -39809,7 +40378,7 @@ return { [1]="local_disable_gem_experience_gain" } }, - [1823]={ + [1853]={ [1]={ [1]={ limit={ @@ -39838,7 +40407,7 @@ return { [1]="local_gem_experience_gain_+%" } }, - [1824]={ + [1854]={ [1]={ [1]={ limit={ @@ -39867,7 +40436,7 @@ return { [1]="local_quantity_of_sockets_+%" } }, - [1825]={ + [1855]={ [1]={ [1]={ limit={ @@ -39896,7 +40465,7 @@ return { [1]="local_connectivity_of_sockets_+%" } }, - [1826]={ + [1856]={ [1]={ [1]={ limit={ @@ -39925,7 +40494,7 @@ return { [1]="trap_duration_+%" } }, - [1827]={ + [1857]={ [1]={ [1]={ limit={ @@ -39954,7 +40523,7 @@ return { [1]="mine_duration_+%" } }, - [1828]={ + [1858]={ [1]={ [1]={ limit={ @@ -39983,7 +40552,7 @@ return { [1]="trap_trigger_radius_+%" } }, - [1829]={ + [1859]={ [1]={ [1]={ limit={ @@ -40012,7 +40581,7 @@ return { [1]="mine_detonation_radius_+%" } }, - [1830]={ + [1860]={ [1]={ [1]={ limit={ @@ -40041,7 +40610,7 @@ return { [1]="trap_throwing_speed_+%" } }, - [1831]={ + [1861]={ [1]={ [1]={ limit={ @@ -40070,7 +40639,7 @@ return { [1]="mine_laying_speed_+%" } }, - [1832]={ + [1862]={ [1]={ [1]={ limit={ @@ -40099,7 +40668,7 @@ return { [1]="skill_internal_monster_responsiveness_+%" } }, - [1833]={ + [1863]={ [1]={ [1]={ limit={ @@ -40128,7 +40697,7 @@ return { [1]="skill_range_+%" } }, - [1834]={ + [1864]={ [1]={ [1]={ limit={ @@ -40144,7 +40713,7 @@ return { [1]="enemy_physical_damage_%_as_extra_fire_vs_you" } }, - [1835]={ + [1865]={ [1]={ [1]={ limit={ @@ -40160,7 +40729,7 @@ return { [1]="physical_damage_%_to_add_as_fire" } }, - [1836]={ + [1866]={ [1]={ [1]={ limit={ @@ -40176,7 +40745,7 @@ return { [1]="physical_damage_%_to_add_as_cold" } }, - [1837]={ + [1867]={ [1]={ [1]={ limit={ @@ -40192,7 +40761,7 @@ return { [1]="physical_damage_%_to_add_as_lightning" } }, - [1838]={ + [1868]={ [1]={ [1]={ limit={ @@ -40208,7 +40777,7 @@ return { [1]="physical_damage_%_to_add_as_chaos" } }, - [1839]={ + [1869]={ [1]={ [1]={ limit={ @@ -40224,7 +40793,7 @@ return { [1]="lightning_damage_%_to_add_as_fire" } }, - [1840]={ + [1870]={ [1]={ [1]={ limit={ @@ -40240,7 +40809,7 @@ return { [1]="lightning_damage_%_to_add_as_cold" } }, - [1841]={ + [1871]={ [1]={ [1]={ limit={ @@ -40256,7 +40825,7 @@ return { [1]="lightning_damage_%_to_add_as_chaos" } }, - [1842]={ + [1872]={ [1]={ [1]={ limit={ @@ -40272,7 +40841,7 @@ return { [1]="cold_damage_%_to_add_as_fire" } }, - [1843]={ + [1873]={ [1]={ [1]={ limit={ @@ -40288,7 +40857,7 @@ return { [1]="cold_damage_%_to_add_as_chaos" } }, - [1844]={ + [1874]={ [1]={ [1]={ limit={ @@ -40304,7 +40873,7 @@ return { [1]="fire_damage_%_to_add_as_chaos" } }, - [1845]={ + [1875]={ [1]={ [1]={ limit={ @@ -40320,7 +40889,7 @@ return { [1]="elemental_damage_%_to_add_as_chaos" } }, - [1846]={ + [1876]={ [1]={ [1]={ [1]={ @@ -40340,7 +40909,7 @@ return { [1]="life_degeneration_%_per_minute_not_in_grace" } }, - [1847]={ + [1877]={ [1]={ [1]={ [1]={ @@ -40373,7 +40942,7 @@ return { [1]="life_regeneration_rate_per_minute_%" } }, - [1848]={ + [1878]={ [1]={ [1]={ [1]={ @@ -40397,7 +40966,7 @@ return { [1]="life_regeneration_rate_per_minute_%_when_on_low_life" } }, - [1849]={ + [1879]={ [1]={ [1]={ [1]={ @@ -40417,7 +40986,7 @@ return { [1]="base_chaos_damage_%_of_maximum_life_taken_per_minute" } }, - [1850]={ + [1880]={ [1]={ [1]={ [1]={ @@ -40437,7 +41006,7 @@ return { [1]="base_chaos_damage_taken_per_minute" } }, - [1851]={ + [1881]={ [1]={ [1]={ limit={ @@ -40466,7 +41035,7 @@ return { [1]="chaos_damage_taken_over_time_+%" } }, - [1852]={ + [1882]={ [1]={ [1]={ limit={ @@ -40482,7 +41051,7 @@ return { [1]="display_mana_cost_reduction_%" } }, - [1853]={ + [1883]={ [1]={ [1]={ limit={ @@ -40498,7 +41067,7 @@ return { [1]="display_minion_maximum_life" } }, - [1854]={ + [1884]={ [1]={ [1]={ [1]={ @@ -40518,7 +41087,7 @@ return { [1]="global_knockback_on_crit" } }, - [1855]={ + [1885]={ [1]={ [1]={ [1]={ @@ -40538,7 +41107,7 @@ return { [1]="knockback_on_crit_with_bow" } }, - [1856]={ + [1886]={ [1]={ [1]={ [1]={ @@ -40562,7 +41131,7 @@ return { [1]="knockback_on_crit_with_staff" } }, - [1857]={ + [1887]={ [1]={ [1]={ [1]={ @@ -40582,7 +41151,7 @@ return { [1]="knockback_on_crit_with_wand" } }, - [1858]={ + [1888]={ [1]={ [1]={ limit={ @@ -40598,7 +41167,7 @@ return { [1]="base_physical_damage_%_to_convert_to_fire" } }, - [1859]={ + [1889]={ [1]={ [1]={ limit={ @@ -40614,7 +41183,7 @@ return { [1]="minion_base_physical_damage_%_to_convert_to_fire" } }, - [1860]={ + [1890]={ [1]={ [1]={ limit={ @@ -40630,7 +41199,7 @@ return { [1]="base_physical_damage_%_to_convert_to_cold" } }, - [1861]={ + [1891]={ [1]={ [1]={ limit={ @@ -40646,7 +41215,7 @@ return { [1]="minion_base_physical_damage_%_to_convert_to_cold" } }, - [1862]={ + [1892]={ [1]={ [1]={ limit={ @@ -40662,7 +41231,7 @@ return { [1]="base_physical_damage_%_to_convert_to_lightning" } }, - [1863]={ + [1893]={ [1]={ [1]={ limit={ @@ -40678,7 +41247,7 @@ return { [1]="minion_base_physical_damage_%_to_convert_to_lightning" } }, - [1864]={ + [1894]={ [1]={ [1]={ limit={ @@ -40694,7 +41263,7 @@ return { [1]="base_convert_%_physical_damage_to_random_element" } }, - [1865]={ + [1895]={ [1]={ [1]={ limit={ @@ -40710,7 +41279,7 @@ return { [1]="base_physical_damage_%_to_convert_to_chaos" } }, - [1866]={ + [1896]={ [1]={ [1]={ limit={ @@ -40726,7 +41295,7 @@ return { [1]="minion_base_physical_damage_%_to_convert_to_chaos" } }, - [1867]={ + [1897]={ [1]={ [1]={ limit={ @@ -40742,7 +41311,7 @@ return { [1]="base_lightning_damage_%_to_convert_to_fire" } }, - [1868]={ + [1898]={ [1]={ [1]={ limit={ @@ -40758,7 +41327,7 @@ return { [1]="base_lightning_damage_%_to_convert_to_cold" } }, - [1869]={ + [1899]={ [1]={ [1]={ limit={ @@ -40774,7 +41343,7 @@ return { [1]="base_lightning_damage_%_to_convert_to_chaos" } }, - [1870]={ + [1900]={ [1]={ [1]={ [1]={ @@ -40794,7 +41363,7 @@ return { [1]="base_lightning_damage_%_to_convert_to_chaos_60%_value" } }, - [1871]={ + [1901]={ [1]={ [1]={ limit={ @@ -40810,7 +41379,7 @@ return { [1]="base_cold_damage_%_to_convert_to_fire" } }, - [1872]={ + [1902]={ [1]={ [1]={ limit={ @@ -40826,7 +41395,7 @@ return { [1]="base_cold_damage_%_to_convert_to_chaos" } }, - [1873]={ + [1903]={ [1]={ [1]={ limit={ @@ -40842,7 +41411,7 @@ return { [1]="base_fire_damage_%_to_convert_to_chaos" } }, - [1874]={ + [1904]={ [1]={ [1]={ [1]={ @@ -40862,7 +41431,7 @@ return { [1]="base_fire_damage_%_to_convert_to_chaos_60%_value" } }, - [1875]={ + [1905]={ [1]={ [1]={ limit={ @@ -40891,7 +41460,7 @@ return { [1]="shield_maximum_energy_shield_+%" } }, - [1876]={ + [1906]={ [1]={ [1]={ limit={ @@ -40920,7 +41489,7 @@ return { [1]="minion_damage_+%" } }, - [1877]={ + [1907]={ [1]={ [1]={ [1]={ @@ -40957,7 +41526,7 @@ return { [1]="minion_damage_+%_if_have_used_a_minion_skill_recently" } }, - [1878]={ + [1908]={ [1]={ [1]={ limit={ @@ -40986,7 +41555,52 @@ return { [1]="virtual_minion_damage_+%" } }, - [1879]={ + [1909]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Minions have {0}% chance to deal Double Damage per Fortification on you" + } + }, + stats={ + [1]="minion_chance_to_deal_double_damage_%_per_fortification" + } + }, + [1910]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Minion Damage per Fortification" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Minion Damage per Fortification" + } + }, + stats={ + [1]="minion_damage_+%_per_fortification" + } + }, + [1911]={ [1]={ [1]={ limit={ @@ -41015,7 +41629,7 @@ return { [1]="minion_damage_+%_per_5_dex" } }, - [1880]={ + [1912]={ [1]={ [1]={ limit={ @@ -41044,7 +41658,7 @@ return { [1]="mana_regeneration_rate_+%_per_power_charge" } }, - [1881]={ + [1913]={ [1]={ [1]={ limit={ @@ -41073,7 +41687,7 @@ return { [1]="elemental_damage_+%" } }, - [1882]={ + [1914]={ [1]={ [1]={ limit={ @@ -41102,7 +41716,7 @@ return { [1]="melee_physical_damage_+%" } }, - [1883]={ + [1915]={ [1]={ [1]={ limit={ @@ -41131,7 +41745,7 @@ return { [1]="melee_fire_damage_+%" } }, - [1884]={ + [1916]={ [1]={ [1]={ limit={ @@ -41160,7 +41774,7 @@ return { [1]="melee_cold_damage_+%" } }, - [1885]={ + [1917]={ [1]={ [1]={ limit={ @@ -41189,7 +41803,7 @@ return { [1]="melee_physical_damage_+%_while_holding_shield" } }, - [1886]={ + [1918]={ [1]={ [1]={ limit={ @@ -41218,7 +41832,7 @@ return { [1]="melee_fire_damage_+%_while_holding_shield" } }, - [1887]={ + [1919]={ [1]={ [1]={ limit={ @@ -41247,7 +41861,7 @@ return { [1]="melee_cold_damage_+%_while_holding_shield" } }, - [1888]={ + [1920]={ [1]={ [1]={ limit={ @@ -41276,7 +41890,7 @@ return { [1]="bow_physical_damage_+%_while_holding_shield" } }, - [1889]={ + [1921]={ [1]={ [1]={ [1]={ @@ -41296,7 +41910,7 @@ return { [1]="maximum_block_%" } }, - [1890]={ + [1922]={ [1]={ [1]={ [1]={ @@ -41316,7 +41930,7 @@ return { [1]="base_maximum_spell_block_%" } }, - [1891]={ + [1923]={ [1]={ [1]={ [1]={ @@ -41336,7 +41950,7 @@ return { [1]="maximum_spell_block_chance_per_50_strength" } }, - [1892]={ + [1924]={ [1]={ [1]={ limit={ @@ -41365,7 +41979,7 @@ return { [1]="shield_evasion_rating_+%" } }, - [1893]={ + [1925]={ [1]={ [1]={ limit={ @@ -41394,7 +42008,7 @@ return { [1]="shield_physical_damage_reduction_rating_+%" } }, - [1894]={ + [1926]={ [1]={ [1]={ limit={ @@ -41410,7 +42024,7 @@ return { [1]="armour_from_shield_doubled" } }, - [1895]={ + [1927]={ [1]={ [1]={ [1]={ @@ -41447,7 +42061,7 @@ return { [1]="shield_armour_+%" } }, - [1896]={ + [1928]={ [1]={ [1]={ [1]={ @@ -41480,7 +42094,7 @@ return { [1]="base_global_chance_to_knockback_%" } }, - [1897]={ + [1929]={ [1]={ [1]={ limit={ @@ -41509,7 +42123,7 @@ return { [1]="projectile_damage_+%" } }, - [1898]={ + [1930]={ [1]={ [1]={ limit={ @@ -41538,7 +42152,7 @@ return { [1]="projectile_attack_damage_+%" } }, - [1899]={ + [1931]={ [1]={ [1]={ limit={ @@ -41567,7 +42181,7 @@ return { [1]="ranged_weapon_physical_damage_+%" } }, - [1900]={ + [1932]={ [1]={ [1]={ [1]={ @@ -41604,7 +42218,7 @@ return { [1]="cast_speed_+%_when_on_low_life" } }, - [1901]={ + [1933]={ [1]={ [1]={ limit={ @@ -41633,7 +42247,7 @@ return { [1]="cast_speed_+%_when_on_full_life" } }, - [1902]={ + [1934]={ [1]={ [1]={ limit={ @@ -41662,7 +42276,7 @@ return { [1]="cast_speed_+%_per_frenzy_charge" } }, - [1903]={ + [1935]={ [1]={ [1]={ limit={ @@ -41691,7 +42305,7 @@ return { [1]="knockback_distance_+%" } }, - [1904]={ + [1936]={ [1]={ [1]={ limit={ @@ -41720,7 +42334,7 @@ return { [1]="stun_duration_+%" } }, - [1905]={ + [1937]={ [1]={ [1]={ limit={ @@ -41736,7 +42350,7 @@ return { [1]="sword_accuracy_rating" } }, - [1906]={ + [1938]={ [1]={ [1]={ limit={ @@ -41752,7 +42366,7 @@ return { [1]="bow_accuracy_rating" } }, - [1907]={ + [1939]={ [1]={ [1]={ [1]={ @@ -41772,7 +42386,7 @@ return { [1]="dagger_accuracy_rating" } }, - [1908]={ + [1940]={ [1]={ [1]={ limit={ @@ -41788,7 +42402,7 @@ return { [1]="axe_accuracy_rating" } }, - [1909]={ + [1941]={ [1]={ [1]={ limit={ @@ -41804,7 +42418,7 @@ return { [1]="claw_accuracy_rating" } }, - [1910]={ + [1942]={ [1]={ [1]={ [1]={ @@ -41824,7 +42438,7 @@ return { [1]="staff_accuracy_rating" } }, - [1911]={ + [1943]={ [1]={ [1]={ limit={ @@ -41840,7 +42454,7 @@ return { [1]="mace_accuracy_rating" } }, - [1912]={ + [1944]={ [1]={ [1]={ limit={ @@ -41856,7 +42470,7 @@ return { [1]="wand_accuracy_rating" } }, - [1913]={ + [1945]={ [1]={ [1]={ limit={ @@ -41885,7 +42499,7 @@ return { [1]="base_killed_monster_dropped_item_rarity_+%" } }, - [1914]={ + [1946]={ [1]={ [1]={ limit={ @@ -41914,7 +42528,7 @@ return { [1]="base_killed_monster_dropped_item_quantity_+%" } }, - [1915]={ + [1947]={ [1]={ [1]={ limit={ @@ -41930,7 +42544,7 @@ return { [1]="skill_effect_duration_+%_per_10_strength" } }, - [1916]={ + [1948]={ [1]={ [1]={ limit={ @@ -41946,7 +42560,7 @@ return { [1]="gain_no_inherent_bonus_from_dexterity" } }, - [1917]={ + [1949]={ [1]={ [1]={ limit={ @@ -41962,7 +42576,7 @@ return { [1]="gain_no_inherent_bonus_from_intelligence" } }, - [1918]={ + [1950]={ [1]={ [1]={ limit={ @@ -41978,7 +42592,7 @@ return { [1]="gain_no_inherent_bonus_from_strength" } }, - [1919]={ + [1951]={ [1]={ [1]={ limit={ @@ -41994,7 +42608,7 @@ return { [1]="gain_no_maximum_life_from_strength" } }, - [1920]={ + [1952]={ [1]={ [1]={ limit={ @@ -42010,7 +42624,7 @@ return { [1]="gain_no_maximum_mana_from_intelligence" } }, - [1921]={ + [1953]={ [1]={ [1]={ limit={ @@ -42026,7 +42640,7 @@ return { [1]="X_accuracy_per_2_intelligence" } }, - [1922]={ + [1954]={ [1]={ [1]={ limit={ @@ -42042,7 +42656,7 @@ return { [1]="X_life_per_4_dexterity" } }, - [1923]={ + [1955]={ [1]={ [1]={ limit={ @@ -42058,7 +42672,7 @@ return { [1]="X_mana_per_4_strength" } }, - [1924]={ + [1956]={ [1]={ [1]={ limit={ @@ -42074,7 +42688,7 @@ return { [1]="x_to_maximum_life_per_2_intelligence" } }, - [1925]={ + [1957]={ [1]={ [1]={ limit={ @@ -42090,7 +42704,7 @@ return { [1]="local_accuracy_rating" } }, - [1926]={ + [1958]={ [1]={ [1]={ limit={ @@ -42119,7 +42733,7 @@ return { [1]="local_accuracy_rating_+%" } }, - [1927]={ + [1959]={ [1]={ [1]={ [1]={ @@ -42152,7 +42766,7 @@ return { [1]="base_chance_to_ignite_%" } }, - [1928]={ + [1960]={ [1]={ [1]={ [1]={ @@ -42185,7 +42799,7 @@ return { [1]="chance_to_scorch_%" } }, - [1929]={ + [1961]={ [1]={ [1]={ limit={ @@ -42214,7 +42828,7 @@ return { [1]="chieftain_burning_damage_+%_final" } }, - [1930]={ + [1962]={ [1]={ [1]={ [1]={ @@ -42281,7 +42895,7 @@ return { [2]="always_freeze" } }, - [1931]={ + [1963]={ [1]={ [1]={ [1]={ @@ -42314,7 +42928,7 @@ return { [1]="chance_to_inflict_frostburn_%" } }, - [1932]={ + [1964]={ [1]={ [1]={ limit={ @@ -42330,7 +42944,7 @@ return { [1]="critical_strikes_do_not_always_freeze" } }, - [1933]={ + [1965]={ [1]={ [1]={ [1]={ @@ -42350,7 +42964,7 @@ return { [1]="additional_chance_to_freeze_chilled_enemies_%" } }, - [1934]={ + [1966]={ [1]={ [1]={ [1]={ @@ -42383,7 +42997,7 @@ return { [1]="base_chance_to_shock_%" } }, - [1935]={ + [1967]={ [1]={ [1]={ [1]={ @@ -42416,7 +43030,7 @@ return { [1]="chance_to_inflict_sapped_%" } }, - [1936]={ + [1968]={ [1]={ [1]={ limit={ @@ -42445,7 +43059,7 @@ return { [1]="area_damage_+%" } }, - [1937]={ + [1969]={ [1]={ [1]={ limit={ @@ -42461,7 +43075,7 @@ return { [1]="wand_physical_damage_%_to_add_as_fire" } }, - [1938]={ + [1970]={ [1]={ [1]={ limit={ @@ -42477,7 +43091,7 @@ return { [1]="wand_physical_damage_%_to_add_as_cold" } }, - [1939]={ + [1971]={ [1]={ [1]={ limit={ @@ -42493,7 +43107,7 @@ return { [1]="wand_physical_damage_%_to_add_as_lightning" } }, - [1940]={ + [1972]={ [1]={ [1]={ [1]={ @@ -42513,7 +43127,7 @@ return { [1]="kill_enemy_on_hit_if_under_10%_life" } }, - [1941]={ + [1973]={ [1]={ [1]={ [1]={ @@ -42533,7 +43147,7 @@ return { [1]="stuns_have_culling_strike" } }, - [1942]={ + [1974]={ [1]={ [1]={ limit={ @@ -42549,7 +43163,7 @@ return { [1]="local_hit_causes_monster_flee_%" } }, - [1943]={ + [1975]={ [1]={ [1]={ limit={ @@ -42565,7 +43179,7 @@ return { [1]="global_hit_causes_monster_flee_%" } }, - [1944]={ + [1976]={ [1]={ [1]={ limit={ @@ -42581,7 +43195,7 @@ return { [1]="local_always_hit" } }, - [1945]={ + [1977]={ [1]={ [1]={ limit={ @@ -42597,7 +43211,7 @@ return { [1]="global_always_hit" } }, - [1946]={ + [1978]={ [1]={ [1]={ limit={ @@ -42613,7 +43227,7 @@ return { [1]="always_crit" } }, - [1947]={ + [1979]={ [1]={ [1]={ limit={ @@ -42642,7 +43256,7 @@ return { [1]="attack_and_cast_speed_+%" } }, - [1948]={ + [1980]={ [1]={ [1]={ limit={ @@ -42671,7 +43285,7 @@ return { [1]="attack_speed_+%_per_frenzy_charge" } }, - [1949]={ + [1981]={ [1]={ [1]={ limit={ @@ -42700,7 +43314,7 @@ return { [1]="attack_and_cast_speed_+%_per_frenzy_charge" } }, - [1950]={ + [1982]={ [1]={ [1]={ limit={ @@ -42729,7 +43343,7 @@ return { [1]="base_attack_speed_+%_per_frenzy_charge" } }, - [1951]={ + [1983]={ [1]={ [1]={ limit={ @@ -42758,7 +43372,7 @@ return { [1]="accuracy_rating_+%_per_frenzy_charge" } }, - [1952]={ + [1984]={ [1]={ [1]={ limit={ @@ -42787,7 +43401,7 @@ return { [1]="frenzy_charge_duration_+%_per_frenzy_charge" } }, - [1953]={ + [1985]={ [1]={ [1]={ [1]={ @@ -42807,7 +43421,7 @@ return { [1]="attacks_poison_while_at_max_frenzy_charges" } }, - [1954]={ + [1986]={ [1]={ [1]={ [1]={ @@ -42840,7 +43454,7 @@ return { [1]="attacks_chance_to_poison_%_on_max_frenzy_charges" } }, - [1955]={ + [1987]={ [1]={ [1]={ limit={ @@ -42856,7 +43470,7 @@ return { [1]="critical_strike_multiplier_+_while_have_any_frenzy_charges" } }, - [1956]={ + [1988]={ [1]={ [1]={ limit={ @@ -42872,7 +43486,7 @@ return { [1]="global_critical_strike_multiplier_+_while_you_have_no_frenzy_charges" } }, - [1957]={ + [1989]={ [1]={ [1]={ limit={ @@ -42901,7 +43515,7 @@ return { [1]="skill_area_of_effect_+%_while_no_frenzy_charges" } }, - [1958]={ + [1990]={ [1]={ [1]={ limit={ @@ -42930,7 +43544,7 @@ return { [1]="base_actor_scale_+%" } }, - [1959]={ + [1991]={ [1]={ [1]={ limit={ @@ -42946,7 +43560,7 @@ return { [1]="add_power_charge_on_minion_death" } }, - [1960]={ + [1992]={ [1]={ [1]={ limit={ @@ -42975,7 +43589,7 @@ return { [1]="flask_life_to_recover_+%" } }, - [1961]={ + [1993]={ [1]={ [1]={ limit={ @@ -43004,7 +43618,7 @@ return { [1]="flask_mana_to_recover_+%" } }, - [1962]={ + [1994]={ [1]={ [1]={ limit={ @@ -43020,7 +43634,7 @@ return { [1]="flask_recovery_speed_+%" } }, - [1963]={ + [1995]={ [1]={ [1]={ limit={ @@ -43088,7 +43702,7 @@ return { [2]="gain_flask_charge_when_crit_amount" } }, - [1964]={ + [1996]={ [1]={ [1]={ limit={ @@ -43117,7 +43731,7 @@ return { [1]="weapon_fire_damage_+%" } }, - [1965]={ + [1997]={ [1]={ [1]={ limit={ @@ -43146,7 +43760,7 @@ return { [1]="weapon_cold_damage_+%" } }, - [1966]={ + [1998]={ [1]={ [1]={ limit={ @@ -43175,7 +43789,7 @@ return { [1]="weapon_lightning_damage_+%" } }, - [1967]={ + [1999]={ [1]={ [1]={ limit={ @@ -43204,7 +43818,7 @@ return { [1]="weapon_chaos_damage_+%" } }, - [1968]={ + [2000]={ [1]={ [1]={ limit={ @@ -43220,7 +43834,7 @@ return { [1]="spell_elemental_damage_+%" } }, - [1969]={ + [2001]={ [1]={ [1]={ limit={ @@ -43236,7 +43850,7 @@ return { [1]="global_added_chaos_damage_%_of_ward" } }, - [1970]={ + [2002]={ [1]={ [1]={ limit={ @@ -43257,7 +43871,7 @@ return { [2]="attack_maximum_added_physical_damage_with_axes" } }, - [1971]={ + [2003]={ [1]={ [1]={ limit={ @@ -43278,7 +43892,7 @@ return { [2]="attack_maximum_added_physical_damage_with_bow" } }, - [1972]={ + [2004]={ [1]={ [1]={ limit={ @@ -43299,7 +43913,7 @@ return { [2]="attack_maximum_added_physical_damage_with_claws" } }, - [1973]={ + [2005]={ [1]={ [1]={ [1]={ @@ -43324,7 +43938,7 @@ return { [2]="attack_maximum_added_physical_damage_with_daggers" } }, - [1974]={ + [2006]={ [1]={ [1]={ limit={ @@ -43345,7 +43959,7 @@ return { [2]="attack_maximum_added_physical_damage_with_maces" } }, - [1975]={ + [2007]={ [1]={ [1]={ [1]={ @@ -43370,7 +43984,7 @@ return { [2]="attack_maximum_added_physical_damage_with_staves" } }, - [1976]={ + [2008]={ [1]={ [1]={ limit={ @@ -43391,7 +44005,7 @@ return { [2]="attack_maximum_added_physical_damage_with_swords" } }, - [1977]={ + [2009]={ [1]={ [1]={ limit={ @@ -43412,7 +44026,7 @@ return { [2]="attack_maximum_added_physical_damage_with_wands" } }, - [1978]={ + [2010]={ [1]={ [1]={ [1]={ @@ -43437,7 +44051,7 @@ return { [2]="attack_maximum_added_physical_damage_while_unarmed" } }, - [1979]={ + [2011]={ [1]={ [1]={ limit={ @@ -43458,7 +44072,7 @@ return { [2]="attack_maximum_added_physical_damage_while_holding_a_shield" } }, - [1980]={ + [2012]={ [1]={ [1]={ limit={ @@ -43479,7 +44093,7 @@ return { [2]="attack_maximum_added_fire_damage_with_axes" } }, - [1981]={ + [2013]={ [1]={ [1]={ limit={ @@ -43500,7 +44114,7 @@ return { [2]="attack_maximum_added_fire_damage_with_bow" } }, - [1982]={ + [2014]={ [1]={ [1]={ limit={ @@ -43521,7 +44135,7 @@ return { [2]="attack_maximum_added_fire_damage_with_claws" } }, - [1983]={ + [2015]={ [1]={ [1]={ [1]={ @@ -43546,7 +44160,7 @@ return { [2]="attack_maximum_added_fire_damage_with_daggers" } }, - [1984]={ + [2016]={ [1]={ [1]={ limit={ @@ -43567,7 +44181,7 @@ return { [2]="attack_maximum_added_fire_damage_with_maces" } }, - [1985]={ + [2017]={ [1]={ [1]={ [1]={ @@ -43592,7 +44206,7 @@ return { [2]="attack_maximum_added_fire_damage_with_staves" } }, - [1986]={ + [2018]={ [1]={ [1]={ limit={ @@ -43613,7 +44227,7 @@ return { [2]="attack_maximum_added_fire_damage_with_swords" } }, - [1987]={ + [2019]={ [1]={ [1]={ limit={ @@ -43634,7 +44248,7 @@ return { [2]="attack_maximum_added_fire_damage_with_wand" } }, - [1988]={ + [2020]={ [1]={ [1]={ limit={ @@ -43655,7 +44269,7 @@ return { [2]="attack_maximum_added_cold_damage_with_axes" } }, - [1989]={ + [2021]={ [1]={ [1]={ limit={ @@ -43676,7 +44290,7 @@ return { [2]="attack_maximum_added_cold_damage_with_bows" } }, - [1990]={ + [2022]={ [1]={ [1]={ limit={ @@ -43697,7 +44311,7 @@ return { [2]="attack_maximum_added_cold_damage_with_claws" } }, - [1991]={ + [2023]={ [1]={ [1]={ [1]={ @@ -43722,7 +44336,7 @@ return { [2]="attack_maximum_added_cold_damage_with_daggers" } }, - [1992]={ + [2024]={ [1]={ [1]={ limit={ @@ -43743,7 +44357,7 @@ return { [2]="attack_maximum_added_cold_damage_with_maces" } }, - [1993]={ + [2025]={ [1]={ [1]={ [1]={ @@ -43768,7 +44382,7 @@ return { [2]="attack_maximum_added_cold_damage_with_staves" } }, - [1994]={ + [2026]={ [1]={ [1]={ limit={ @@ -43789,7 +44403,7 @@ return { [2]="attack_maximum_added_cold_damage_with_swords" } }, - [1995]={ + [2027]={ [1]={ [1]={ limit={ @@ -43810,7 +44424,7 @@ return { [2]="attack_maximum_added_cold_damage_with_wand" } }, - [1996]={ + [2028]={ [1]={ [1]={ limit={ @@ -43831,7 +44445,7 @@ return { [2]="attack_maximum_added_lightning_damage_with_axes" } }, - [1997]={ + [2029]={ [1]={ [1]={ limit={ @@ -43852,7 +44466,7 @@ return { [2]="attack_maximum_added_lightning_damage_with_bows" } }, - [1998]={ + [2030]={ [1]={ [1]={ limit={ @@ -43873,7 +44487,7 @@ return { [2]="attack_maximum_added_lightning_damage_with_claws" } }, - [1999]={ + [2031]={ [1]={ [1]={ [1]={ @@ -43898,7 +44512,7 @@ return { [2]="attack_maximum_added_lightning_damage_with_daggers" } }, - [2000]={ + [2032]={ [1]={ [1]={ limit={ @@ -43919,7 +44533,7 @@ return { [2]="attack_maximum_added_lightning_damage_with_maces" } }, - [2001]={ + [2033]={ [1]={ [1]={ [1]={ @@ -43944,7 +44558,7 @@ return { [2]="attack_maximum_added_lightning_damage_with_staves" } }, - [2002]={ + [2034]={ [1]={ [1]={ limit={ @@ -43965,7 +44579,7 @@ return { [2]="attack_maximum_added_lightning_damage_with_swords" } }, - [2003]={ + [2035]={ [1]={ [1]={ limit={ @@ -43986,7 +44600,7 @@ return { [2]="attack_maximum_added_lightning_damage_with_wand" } }, - [2004]={ + [2036]={ [1]={ [1]={ limit={ @@ -44007,7 +44621,7 @@ return { [2]="attack_maximum_added_chaos_damage_with_bows" } }, - [2005]={ + [2037]={ [1]={ [1]={ limit={ @@ -44028,7 +44642,7 @@ return { [2]="attack_maximum_added_chaos_damage_with_claws" } }, - [2006]={ + [2038]={ [1]={ [1]={ [1]={ @@ -44053,7 +44667,7 @@ return { [2]="attack_maximum_added_chaos_damage_with_daggers" } }, - [2007]={ + [2039]={ [1]={ [1]={ limit={ @@ -44074,7 +44688,7 @@ return { [2]="spell_maximum_added_chaos_damage_while_dual_wielding" } }, - [2008]={ + [2040]={ [1]={ [1]={ limit={ @@ -44095,7 +44709,7 @@ return { [2]="spell_maximum_added_chaos_damage_while_holding_a_shield" } }, - [2009]={ + [2041]={ [1]={ [1]={ limit={ @@ -44116,7 +44730,7 @@ return { [2]="spell_maximum_added_chaos_damage_while_wielding_two_handed_weapon" } }, - [2010]={ + [2042]={ [1]={ [1]={ limit={ @@ -44137,7 +44751,7 @@ return { [2]="spell_maximum_added_cold_damage_while_dual_wielding" } }, - [2011]={ + [2043]={ [1]={ [1]={ limit={ @@ -44158,7 +44772,7 @@ return { [2]="spell_maximum_added_cold_damage_while_holding_a_shield" } }, - [2012]={ + [2044]={ [1]={ [1]={ limit={ @@ -44179,7 +44793,7 @@ return { [2]="spell_maximum_added_cold_damage_while_wielding_two_handed_weapon" } }, - [2013]={ + [2045]={ [1]={ [1]={ limit={ @@ -44200,7 +44814,7 @@ return { [2]="spell_maximum_added_fire_damage_while_dual_wielding" } }, - [2014]={ + [2046]={ [1]={ [1]={ limit={ @@ -44221,7 +44835,7 @@ return { [2]="spell_maximum_added_fire_damage_while_holding_a_shield" } }, - [2015]={ + [2047]={ [1]={ [1]={ limit={ @@ -44242,7 +44856,7 @@ return { [2]="spell_maximum_added_fire_damage_while_wielding_two_handed_weapon" } }, - [2016]={ + [2048]={ [1]={ [1]={ limit={ @@ -44263,7 +44877,7 @@ return { [2]="spell_maximum_added_lightning_damage_while_dual_wielding" } }, - [2017]={ + [2049]={ [1]={ [1]={ limit={ @@ -44284,7 +44898,7 @@ return { [2]="spell_maximum_added_lightning_damage_while_holding_a_shield" } }, - [2018]={ + [2050]={ [1]={ [1]={ limit={ @@ -44305,7 +44919,7 @@ return { [2]="spell_maximum_added_lightning_damage_while_wielding_two_handed_weapon" } }, - [2019]={ + [2051]={ [1]={ [1]={ limit={ @@ -44326,7 +44940,7 @@ return { [2]="spell_maximum_added_physical_damage_while_dual_wielding" } }, - [2020]={ + [2052]={ [1]={ [1]={ limit={ @@ -44347,7 +44961,7 @@ return { [2]="spell_maximum_added_physical_damage_while_holding_a_shield" } }, - [2021]={ + [2053]={ [1]={ [1]={ limit={ @@ -44368,7 +44982,7 @@ return { [2]="spell_maximum_added_physical_damage_while_wielding_two_handed_weapon" } }, - [2022]={ + [2054]={ [1]={ [1]={ limit={ @@ -44397,7 +45011,7 @@ return { [1]="wand_elemental_damage_+%" } }, - [2023]={ + [2055]={ [1]={ [1]={ [1]={ @@ -44434,7 +45048,7 @@ return { [1]="staff_elemental_damage_+%" } }, - [2024]={ + [2056]={ [1]={ [1]={ limit={ @@ -44463,7 +45077,7 @@ return { [1]="mace_elemental_damage_+%" } }, - [2025]={ + [2057]={ [1]={ [1]={ limit={ @@ -44488,7 +45102,7 @@ return { [1]="chance_to_gain_endurance_charge_on_block_%" } }, - [2026]={ + [2058]={ [1]={ [1]={ limit={ @@ -44517,7 +45131,7 @@ return { [1]="endurance_charge_duration_+%" } }, - [2027]={ + [2059]={ [1]={ [1]={ limit={ @@ -44533,7 +45147,7 @@ return { [1]="add_frenzy_charge_on_enemy_block" } }, - [2028]={ + [2060]={ [1]={ [1]={ limit={ @@ -44562,7 +45176,7 @@ return { [1]="base_frenzy_charge_duration_+%" } }, - [2029]={ + [2061]={ [1]={ [1]={ limit={ @@ -44587,7 +45201,7 @@ return { [1]="chance_to_gain_power_charge_when_block_%" } }, - [2030]={ + [2062]={ [1]={ [1]={ limit={ @@ -44603,7 +45217,7 @@ return { [1]="skill_area_of_effect_+%_per_power_charge" } }, - [2031]={ + [2063]={ [1]={ [1]={ limit={ @@ -44619,7 +45233,7 @@ return { [1]="skill_area_of_effect_+%_per_power_charge_up_to_50%" } }, - [2032]={ + [2064]={ [1]={ [1]={ limit={ @@ -44644,7 +45258,7 @@ return { [1]="%_chance_to_gain_power_charge_on_trap_triggered_by_an_enemy" } }, - [2033]={ + [2065]={ [1]={ [1]={ limit={ @@ -44669,7 +45283,7 @@ return { [1]="%_chance_to_gain_power_charge_on_mine_detonated_targeting_an_enemy" } }, - [2034]={ + [2066]={ [1]={ [1]={ limit={ @@ -44685,7 +45299,7 @@ return { [1]="damage_over_time_+%_per_frenzy_charge" } }, - [2035]={ + [2067]={ [1]={ [1]={ limit={ @@ -44701,7 +45315,7 @@ return { [1]="damage_over_time_+%_per_power_charge" } }, - [2036]={ + [2068]={ [1]={ [1]={ limit={ @@ -44717,7 +45331,7 @@ return { [1]="damage_over_time_+%_while_dual_wielding" } }, - [2037]={ + [2069]={ [1]={ [1]={ limit={ @@ -44733,7 +45347,7 @@ return { [1]="damage_over_time_+%_while_holding_a_shield" } }, - [2038]={ + [2070]={ [1]={ [1]={ limit={ @@ -44749,7 +45363,7 @@ return { [1]="damage_over_time_+%_while_wielding_two_handed_weapon" } }, - [2039]={ + [2071]={ [1]={ [1]={ limit={ @@ -44765,7 +45379,7 @@ return { [1]="elemental_damage_+%_per_frenzy_charge" } }, - [2040]={ + [2072]={ [1]={ [1]={ limit={ @@ -44794,7 +45408,7 @@ return { [1]="physical_damage_per_endurance_charge_+%" } }, - [2041]={ + [2073]={ [1]={ [1]={ limit={ @@ -44810,7 +45424,7 @@ return { [1]="spell_damage_+%_per_power_charge" } }, - [2042]={ + [2074]={ [1]={ [1]={ limit={ @@ -44826,7 +45440,7 @@ return { [1]="wand_damage_+%_per_power_charge" } }, - [2043]={ + [2075]={ [1]={ [1]={ limit={ @@ -44855,7 +45469,7 @@ return { [1]="power_charge_duration_+%" } }, - [2044]={ + [2076]={ [1]={ [1]={ limit={ @@ -44871,7 +45485,7 @@ return { [1]="add_power_charge_when_kill_shocked_enemy" } }, - [2045]={ + [2077]={ [1]={ [1]={ limit={ @@ -44887,7 +45501,7 @@ return { [1]="buff_effect_on_self_+%" } }, - [2046]={ + [2078]={ [1]={ [1]={ limit={ @@ -44916,7 +45530,7 @@ return { [1]="minions_have_non_curse_aura_effect_+%_from_parent_skills" } }, - [2047]={ + [2079]={ [1]={ [1]={ limit={ @@ -44932,7 +45546,7 @@ return { [1]="movement_velocity_+%_when_on_shocked_ground" } }, - [2048]={ + [2080]={ [1]={ [1]={ limit={ @@ -44948,7 +45562,7 @@ return { [1]="damage_+%_when_on_burning_ground" } }, - [2049]={ + [2081]={ [1]={ [1]={ [1]={ @@ -44968,7 +45582,7 @@ return { [1]="life_regeneration_rate_per_minute_%_when_on_chilled_ground" } }, - [2050]={ + [2082]={ [1]={ [1]={ [1]={ @@ -45005,7 +45619,7 @@ return { [1]="chilled_ground_effect_on_self_+%" } }, - [2051]={ + [2083]={ [1]={ [1]={ limit={ @@ -45034,7 +45648,7 @@ return { [1]="burning_ground_effect_on_self_+%" } }, - [2052]={ + [2084]={ [1]={ [1]={ limit={ @@ -45063,7 +45677,7 @@ return { [1]="shocked_ground_effect_on_self_+%" } }, - [2053]={ + [2085]={ [1]={ [1]={ limit={ @@ -45092,7 +45706,7 @@ return { [1]="desecrated_ground_effect_on_self_+%" } }, - [2054]={ + [2086]={ [1]={ [1]={ limit={ @@ -45108,7 +45722,7 @@ return { [1]="add_power_charge_when_interrupted_while_casting" } }, - [2055]={ + [2087]={ [1]={ [1]={ limit={ @@ -45124,7 +45738,7 @@ return { [1]="share_endurance_charges_with_party_within_distance" } }, - [2056]={ + [2088]={ [1]={ [1]={ limit={ @@ -45140,7 +45754,7 @@ return { [1]="share_frenzy_charges_with_party_within_distance" } }, - [2057]={ + [2089]={ [1]={ [1]={ limit={ @@ -45156,7 +45770,7 @@ return { [1]="share_power_charges_with_party_within_distance" } }, - [2058]={ + [2090]={ [1]={ [1]={ limit={ @@ -45185,7 +45799,7 @@ return { [1]="life_leech_speed_+%" } }, - [2059]={ + [2091]={ [1]={ [1]={ limit={ @@ -45214,7 +45828,7 @@ return { [1]="mana_leech_speed_+%" } }, - [2060]={ + [2092]={ [1]={ [1]={ limit={ @@ -45243,7 +45857,7 @@ return { [1]="energy_shield_leech_speed_+%" } }, - [2061]={ + [2093]={ [1]={ [1]={ limit={ @@ -45264,7 +45878,7 @@ return { [2]="quality_display_raise_zombie_is_gem" } }, - [2062]={ + [2094]={ [1]={ [1]={ limit={ @@ -45280,7 +45894,7 @@ return { [1]="base_number_of_spectres_allowed" } }, - [2063]={ + [2095]={ [1]={ [1]={ limit={ @@ -45301,7 +45915,7 @@ return { [2]="quality_display_summon_skeleton_is_gem" } }, - [2064]={ + [2096]={ [1]={ [1]={ limit={ @@ -45317,7 +45931,7 @@ return { [1]="base_number_of_raging_spirits_allowed" } }, - [2065]={ + [2097]={ [1]={ [1]={ limit={ @@ -45333,7 +45947,7 @@ return { [1]="curses_never_expire" } }, - [2066]={ + [2098]={ [1]={ [1]={ limit={ @@ -45349,7 +45963,7 @@ return { [1]="no_physical_damage_reduction_rating" } }, - [2067]={ + [2099]={ [1]={ [1]={ limit={ @@ -45365,7 +45979,7 @@ return { [1]="no_energy_shield" } }, - [2068]={ + [2100]={ [1]={ [1]={ limit={ @@ -45381,7 +45995,7 @@ return { [1]="chaos_immunity" } }, - [2069]={ + [2101]={ [1]={ [1]={ limit={ @@ -45415,7 +46029,7 @@ return { [1]="number_of_additional_curses_allowed" } }, - [2070]={ + [2102]={ [1]={ [1]={ limit={ @@ -45440,7 +46054,7 @@ return { [1]="number_of_additional_curses_allowed_on_self" } }, - [2071]={ + [2103]={ [1]={ [1]={ limit={ @@ -45469,7 +46083,7 @@ return { [1]="curse_effect_on_self_+%" } }, - [2072]={ + [2104]={ [1]={ [1]={ limit={ @@ -45498,7 +46112,7 @@ return { [1]="self_curse_duration_+%" } }, - [2073]={ + [2105]={ [1]={ [1]={ limit={ @@ -45514,7 +46128,7 @@ return { [1]="cannot_be_stunned" } }, - [2074]={ + [2106]={ [1]={ [1]={ limit={ @@ -45530,7 +46144,7 @@ return { [1]="base_cannot_be_stunned" } }, - [2075]={ + [2107]={ [1]={ [1]={ [1]={ @@ -45550,7 +46164,7 @@ return { [1]="cannot_be_stunned_when_on_low_life" } }, - [2076]={ + [2108]={ [1]={ [1]={ limit={ @@ -45566,7 +46180,7 @@ return { [1]="mana_%_to_add_as_energy_shield" } }, - [2077]={ + [2109]={ [1]={ [1]={ limit={ @@ -45582,7 +46196,7 @@ return { [1]="convert_all_physical_damage_to_fire" } }, - [2078]={ + [2110]={ [1]={ [1]={ limit={ @@ -45598,7 +46212,7 @@ return { [1]="physical_damage_as_fire_damage_vs_ignited_enemies_%" } }, - [2079]={ + [2111]={ [1]={ [1]={ limit={ @@ -45614,7 +46228,7 @@ return { [1]="global_cannot_crit" } }, - [2080]={ + [2112]={ [1]={ [1]={ limit={ @@ -45630,7 +46244,7 @@ return { [1]="base_no_mana" } }, - [2081]={ + [2113]={ [1]={ [1]={ limit={ @@ -45646,7 +46260,7 @@ return { [1]="no_mana" } }, - [2082]={ + [2114]={ [1]={ [1]={ limit={ @@ -45662,7 +46276,7 @@ return { [1]="ignore_armour_movement_penalties" } }, - [2083]={ + [2115]={ [1]={ [1]={ limit={ @@ -45678,7 +46292,7 @@ return { [1]="minions_use_parents_flasks_on_summon" } }, - [2084]={ + [2116]={ [1]={ [1]={ limit={ @@ -45707,7 +46321,7 @@ return { [1]="charges_gained_+%" } }, - [2085]={ + [2117]={ [1]={ [1]={ limit={ @@ -45736,7 +46350,7 @@ return { [1]="flask_charges_used_+%" } }, - [2086]={ + [2118]={ [1]={ [1]={ limit={ @@ -45765,7 +46379,7 @@ return { [1]="flask_mana_charges_used_+%" } }, - [2087]={ + [2119]={ [1]={ [1]={ limit={ @@ -45794,7 +46408,7 @@ return { [1]="minion_flask_charges_used_+%" } }, - [2088]={ + [2120]={ [1]={ [1]={ limit={ @@ -45823,7 +46437,7 @@ return { [1]="flask_duration_+%" } }, - [2089]={ + [2121]={ [1]={ [1]={ limit={ @@ -45852,7 +46466,7 @@ return { [1]="flask_duration_on_minions_+%" } }, - [2090]={ + [2122]={ [1]={ [1]={ limit={ @@ -45881,7 +46495,7 @@ return { [1]="flask_life_recovery_rate_+%" } }, - [2091]={ + [2123]={ [1]={ [1]={ limit={ @@ -45910,7 +46524,7 @@ return { [1]="flask_mana_recovery_rate_+%" } }, - [2092]={ + [2124]={ [1]={ [1]={ limit={ @@ -45926,7 +46540,7 @@ return { [1]="cannot_resist_cold_damage" } }, - [2093]={ + [2125]={ [1]={ [1]={ limit={ @@ -45942,7 +46556,7 @@ return { [1]="minions_get_shield_stats_instead_of_you" } }, - [2094]={ + [2126]={ [1]={ [1]={ limit={ @@ -45971,7 +46585,7 @@ return { [1]="chaos_inoculation_keystone_energy_shield_+%_final" } }, - [2095]={ + [2127]={ [1]={ [1]={ limit={ @@ -46000,7 +46614,7 @@ return { [1]="pain_attunement_keystone_spell_damage_+%_final" } }, - [2096]={ + [2128]={ [1]={ [1]={ limit={ @@ -46029,7 +46643,7 @@ return { [1]="elemental_equilibrium_effect_+%" } }, - [2097]={ + [2129]={ [1]={ [1]={ limit={ @@ -46063,7 +46677,7 @@ return { [2]="maximum_physical_damage_to_reflect_to_self_on_attack" } }, - [2098]={ + [2130]={ [1]={ [1]={ limit={ @@ -46084,7 +46698,7 @@ return { [2]="maximum_physical_damage_to_return_to_melee_attacker" } }, - [2099]={ + [2131]={ [1]={ [1]={ limit={ @@ -46105,7 +46719,7 @@ return { [2]="maximum_fire_damage_to_return_to_melee_attacker" } }, - [2100]={ + [2132]={ [1]={ [1]={ limit={ @@ -46126,7 +46740,7 @@ return { [2]="maximum_cold_damage_to_return_to_melee_attacker" } }, - [2101]={ + [2133]={ [1]={ [1]={ limit={ @@ -46147,7 +46761,7 @@ return { [2]="maximum_lightning_damage_to_return_to_melee_attacker" } }, - [2102]={ + [2134]={ [1]={ [1]={ limit={ @@ -46168,7 +46782,7 @@ return { [2]="maximum_chaos_damage_to_return_to_melee_attacker" } }, - [2103]={ + [2135]={ [1]={ [1]={ limit={ @@ -46184,7 +46798,7 @@ return { [1]="physical_damage_to_return_to_melee_attacker" } }, - [2104]={ + [2136]={ [1]={ [1]={ limit={ @@ -46200,7 +46814,7 @@ return { [1]="cold_damage_to_return_to_melee_attacker" } }, - [2105]={ + [2137]={ [1]={ [1]={ limit={ @@ -46216,7 +46830,7 @@ return { [1]="fire_damage_to_return_to_melee_attacker" } }, - [2106]={ + [2138]={ [1]={ [1]={ limit={ @@ -46232,7 +46846,7 @@ return { [1]="lightning_damage_to_return_to_melee_attacker" } }, - [2107]={ + [2139]={ [1]={ [1]={ limit={ @@ -46248,7 +46862,7 @@ return { [1]="chaos_damage_to_return_to_melee_attacker" } }, - [2108]={ + [2140]={ [1]={ [1]={ limit={ @@ -46264,7 +46878,7 @@ return { [1]="physical_damage_to_return_when_hit" } }, - [2109]={ + [2141]={ [1]={ [1]={ limit={ @@ -46280,7 +46894,7 @@ return { [1]="fire_damage_to_return_when_hit" } }, - [2110]={ + [2142]={ [1]={ [1]={ limit={ @@ -46296,7 +46910,7 @@ return { [1]="cold_damage_to_return_when_hit" } }, - [2111]={ + [2143]={ [1]={ [1]={ limit={ @@ -46312,7 +46926,7 @@ return { [1]="lightning_damage_to_return_when_hit" } }, - [2112]={ + [2144]={ [1]={ [1]={ limit={ @@ -46328,7 +46942,7 @@ return { [1]="chaos_damage_to_return_when_hit" } }, - [2113]={ + [2145]={ [1]={ [1]={ limit={ @@ -46344,7 +46958,7 @@ return { [1]="self_fire_damage_on_skill_use" } }, - [2114]={ + [2146]={ [1]={ [1]={ [1]={ @@ -46364,7 +46978,7 @@ return { [1]="self_physical_damage_on_skill_use_%_mana_cost" } }, - [2115]={ + [2147]={ [1]={ [1]={ limit={ @@ -46393,7 +47007,7 @@ return { [1]="curse_cast_speed_+%" } }, - [2116]={ + [2148]={ [1]={ [1]={ limit={ @@ -46422,7 +47036,7 @@ return { [1]="hex_skill_cast_speed_+%" } }, - [2117]={ + [2149]={ [1]={ [1]={ limit={ @@ -46451,7 +47065,7 @@ return { [1]="mark_skill_cast_speed_+%" } }, - [2118]={ + [2150]={ [1]={ [1]={ [1]={ @@ -46471,7 +47085,7 @@ return { [1]="elemental_status_effect_aura_radius" } }, - [2119]={ + [2151]={ [1]={ [1]={ [1]={ @@ -46504,7 +47118,7 @@ return { [1]="gloves_ignite_proliferation_radius" } }, - [2120]={ + [2152]={ [1]={ [1]={ [1]={ @@ -46537,7 +47151,7 @@ return { [1]="passive_notable_ignite_proliferation_radius" } }, - [2121]={ + [2153]={ [1]={ [1]={ [1]={ @@ -46570,7 +47184,7 @@ return { [1]="amulet_freeze_proliferation_radius" } }, - [2122]={ + [2154]={ [1]={ [1]={ [1]={ @@ -46603,7 +47217,7 @@ return { [1]="gloves_freeze_proliferation_radius" } }, - [2123]={ + [2155]={ [1]={ [1]={ [1]={ @@ -46636,7 +47250,7 @@ return { [1]="gloves_shock_proliferation_radius" } }, - [2124]={ + [2156]={ [1]={ [1]={ limit={ @@ -46652,7 +47266,7 @@ return { [1]="shock_proliferation_radius_is_at_least_15" } }, - [2125]={ + [2157]={ [1]={ [1]={ limit={ @@ -46681,7 +47295,7 @@ return { [1]="base_aura_area_of_effect_+%" } }, - [2126]={ + [2158]={ [1]={ [1]={ limit={ @@ -46710,7 +47324,7 @@ return { [1]="curse_area_of_effect_+%" } }, - [2127]={ + [2159]={ [1]={ [1]={ limit={ @@ -46739,7 +47353,7 @@ return { [1]="base_life_reservation_efficiency_+%" } }, - [2128]={ + [2160]={ [1]={ [1]={ limit={ @@ -46768,7 +47382,7 @@ return { [1]="base_life_reservation_+%" } }, - [2129]={ + [2161]={ [1]={ [1]={ limit={ @@ -46797,7 +47411,7 @@ return { [1]="base_mana_reservation_efficiency_+%" } }, - [2130]={ + [2162]={ [1]={ [1]={ limit={ @@ -46826,7 +47440,7 @@ return { [1]="base_mana_reservation_+%" } }, - [2131]={ + [2163]={ [1]={ [1]={ limit={ @@ -46855,7 +47469,7 @@ return { [1]="base_reservation_efficiency_+%" } }, - [2132]={ + [2164]={ [1]={ [1]={ limit={ @@ -46884,7 +47498,7 @@ return { [1]="base_reservation_+%" } }, - [2133]={ + [2165]={ [1]={ [1]={ [1]={ @@ -46917,7 +47531,7 @@ return { [1]="mana_reservation_efficiency_-2%_per_1" } }, - [2134]={ + [2166]={ [1]={ [1]={ [1]={ @@ -46950,7 +47564,7 @@ return { [1]="reservation_efficiency_-2%_per_1" } }, - [2135]={ + [2167]={ [1]={ [1]={ limit={ @@ -46966,7 +47580,7 @@ return { [1]="physical_attack_damage_taken_+" } }, - [2136]={ + [2168]={ [1]={ [1]={ limit={ @@ -46982,7 +47596,7 @@ return { [1]="physical_damage_taken_+" } }, - [2137]={ + [2169]={ [1]={ [1]={ limit={ @@ -46998,7 +47612,7 @@ return { [1]="physical_damage_taken_+_per_level" } }, - [2138]={ + [2170]={ [1]={ [1]={ limit={ @@ -47014,7 +47628,7 @@ return { [1]="fire_damage_taken_+" } }, - [2139]={ + [2171]={ [1]={ [1]={ limit={ @@ -47043,7 +47657,7 @@ return { [1]="base_damage_taken_+%" } }, - [2140]={ + [2172]={ [1]={ [1]={ limit={ @@ -47072,7 +47686,7 @@ return { [1]="area_damage_taken_from_hits_+%" } }, - [2141]={ + [2173]={ [1]={ [1]={ limit={ @@ -47101,7 +47715,7 @@ return { [1]="damage_taken_+%_from_hits" } }, - [2142]={ + [2174]={ [1]={ [1]={ limit={ @@ -47130,7 +47744,7 @@ return { [1]="physical_damage_taken_+%" } }, - [2143]={ + [2175]={ [1]={ [1]={ limit={ @@ -47159,7 +47773,7 @@ return { [1]="fire_damage_taken_+%" } }, - [2144]={ + [2176]={ [1]={ [1]={ limit={ @@ -47188,7 +47802,7 @@ return { [1]="chaos_damage_taken_+%" } }, - [2145]={ + [2177]={ [1]={ [1]={ limit={ @@ -47217,7 +47831,7 @@ return { [1]="damage_taken_+%_while_es_full" } }, - [2146]={ + [2178]={ [1]={ [1]={ limit={ @@ -47246,7 +47860,7 @@ return { [1]="degen_effect_+%" } }, - [2147]={ + [2179]={ [1]={ [1]={ limit={ @@ -47262,7 +47876,7 @@ return { [1]="physical_ranged_attack_damage_taken_+" } }, - [2148]={ + [2180]={ [1]={ [1]={ limit={ @@ -47291,7 +47905,7 @@ return { [1]="damage_taken_+%_from_skeletons" } }, - [2149]={ + [2181]={ [1]={ [1]={ limit={ @@ -47320,7 +47934,7 @@ return { [1]="damage_taken_+%_from_ghosts" } }, - [2150]={ + [2182]={ [1]={ [1]={ limit={ @@ -47336,7 +47950,7 @@ return { [1]="local_additional_block_chance_%" } }, - [2151]={ + [2183]={ [1]={ [1]={ limit={ @@ -47352,7 +47966,7 @@ return { [1]="deal_no_damage_yourself" } }, - [2152]={ + [2184]={ [1]={ [1]={ limit={ @@ -47368,7 +47982,7 @@ return { [1]="base_number_of_totems_allowed" } }, - [2153]={ + [2185]={ [1]={ [1]={ limit={ @@ -47393,7 +48007,7 @@ return { [1]="base_number_of_traps_allowed" } }, - [2154]={ + [2186]={ [1]={ [1]={ limit={ @@ -47418,7 +48032,7 @@ return { [1]="base_number_of_remote_mines_allowed" } }, - [2155]={ + [2187]={ [1]={ [1]={ limit={ @@ -47434,7 +48048,7 @@ return { [1]="number_of_additional_totems_allowed" } }, - [2156]={ + [2188]={ [1]={ [1]={ limit={ @@ -47485,7 +48099,7 @@ return { [1]="number_of_additional_traps_allowed" } }, - [2157]={ + [2189]={ [1]={ [1]={ limit={ @@ -47536,7 +48150,7 @@ return { [1]="number_of_additional_remote_mines_allowed" } }, - [2158]={ + [2190]={ [1]={ [1]={ limit={ @@ -47552,7 +48166,7 @@ return { [1]="maximum_2_of_same_totem" } }, - [2159]={ + [2191]={ [1]={ [1]={ limit={ @@ -47568,7 +48182,7 @@ return { [1]="cannot_block_attacks" } }, - [2160]={ + [2192]={ [1]={ [1]={ [1]={ @@ -47588,7 +48202,7 @@ return { [1]="additional_physical_damage_reduction_%_when_on_low_life" } }, - [2161]={ + [2193]={ [1]={ [1]={ limit={ @@ -47604,7 +48218,7 @@ return { [1]="endurance_only_conduit" } }, - [2162]={ + [2194]={ [1]={ [1]={ limit={ @@ -47620,7 +48234,7 @@ return { [1]="frenzy_only_conduit" } }, - [2163]={ + [2195]={ [1]={ [1]={ limit={ @@ -47636,7 +48250,7 @@ return { [1]="power_only_conduit" } }, - [2164]={ + [2196]={ [1]={ [1]={ [1]={ @@ -47656,7 +48270,7 @@ return { [1]="local_chance_to_blind_on_hit_%" } }, - [2165]={ + [2197]={ [1]={ [1]={ [1]={ @@ -47697,7 +48311,7 @@ return { [1]="chance_to_fortify_on_melee_hit_+%" } }, - [2166]={ + [2198]={ [1]={ [1]={ limit={ @@ -47726,7 +48340,7 @@ return { [1]="fortify_duration_+%" } }, - [2167]={ + [2199]={ [1]={ [1]={ limit={ @@ -47742,7 +48356,7 @@ return { [1]="should_use_alternate_fortify" } }, - [2168]={ + [2200]={ [1]={ [1]={ [1]={ @@ -47762,7 +48376,7 @@ return { [1]="spell_suppression_chance_%_per_fortification" } }, - [2169]={ + [2201]={ [1]={ [1]={ limit={ @@ -47791,7 +48405,7 @@ return { [1]="attack_and_cast_speed_+%_while_you_have_fortify" } }, - [2170]={ + [2202]={ [1]={ [1]={ limit={ @@ -47820,7 +48434,7 @@ return { [1]="melee_cold_damage_+%_while_fortify_is_active" } }, - [2171]={ + [2203]={ [1]={ [1]={ limit={ @@ -47849,7 +48463,7 @@ return { [1]="melee_physical_damage_+%_while_fortify_is_active" } }, - [2172]={ + [2204]={ [1]={ [1]={ limit={ @@ -47865,7 +48479,7 @@ return { [1]="no_life_regeneration" } }, - [2173]={ + [2205]={ [1]={ [1]={ limit={ @@ -47881,7 +48495,7 @@ return { [1]="no_mana_regeneration" } }, - [2174]={ + [2206]={ [1]={ [1]={ limit={ @@ -47897,7 +48511,7 @@ return { [1]="base_additional_physical_damage_reduction_%" } }, - [2175]={ + [2207]={ [1]={ [1]={ limit={ @@ -47913,7 +48527,7 @@ return { [1]="minion_additional_physical_damage_reduction_%" } }, - [2176]={ + [2208]={ [1]={ [1]={ limit={ @@ -47929,7 +48543,7 @@ return { [1]="elemental_damage_reduction_%_per_endurance_charge" } }, - [2177]={ + [2209]={ [1]={ [1]={ limit={ @@ -47945,7 +48559,7 @@ return { [1]="physical_damage_reduction_%_per_endurance_charge" } }, - [2178]={ + [2210]={ [1]={ [1]={ limit={ @@ -47961,7 +48575,7 @@ return { [1]="map_size_+%" } }, - [2179]={ + [2211]={ [1]={ [1]={ limit={ @@ -47977,7 +48591,7 @@ return { [1]="delve_biome_contains_delve_boss" } }, - [2180]={ + [2212]={ [1]={ [1]={ limit={ @@ -47993,7 +48607,7 @@ return { [1]="delve_biome_boss_drops_additional_unique_item" } }, - [2181]={ + [2213]={ [1]={ [1]={ limit={ @@ -48009,7 +48623,7 @@ return { [1]="delve_biome_boss_drops_extra_precursor_component_ring" } }, - [2182]={ + [2214]={ [1]={ [1]={ limit={ @@ -48025,7 +48639,7 @@ return { [1]="delve_biome_boss_drops_x_additional_fossils" } }, - [2183]={ + [2215]={ [1]={ [1]={ limit={ @@ -48041,7 +48655,7 @@ return { [1]="delve_biome_boss_hits_always_crit" } }, - [2184]={ + [2216]={ [1]={ [1]={ limit={ @@ -48057,7 +48671,7 @@ return { [1]="delve_biome_boss_life_+%_final" } }, - [2185]={ + [2217]={ [1]={ [1]={ limit={ @@ -48073,7 +48687,7 @@ return { [1]="delve_biome_boss_physical_damage_%_to_add_as_cold" } }, - [2186]={ + [2218]={ [1]={ [1]={ limit={ @@ -48089,7 +48703,7 @@ return { [1]="delve_biome_boss_physical_damage_%_to_add_as_fire" } }, - [2187]={ + [2219]={ [1]={ [1]={ limit={ @@ -48105,7 +48719,7 @@ return { [1]="delve_biome_boss_physical_damage_%_to_add_as_lightning" } }, - [2188]={ + [2220]={ [1]={ [1]={ limit={ @@ -48121,7 +48735,7 @@ return { [1]="map_is_branchy" } }, - [2189]={ + [2221]={ [1]={ [1]={ limit={ @@ -48150,7 +48764,7 @@ return { [1]="delve_biome_azurite_collected_+%" } }, - [2190]={ + [2222]={ [1]={ [1]={ limit={ @@ -48179,7 +48793,7 @@ return { [1]="delve_biome_sulphite_cost_+%_final" } }, - [2191]={ + [2223]={ [1]={ [1]={ limit={ @@ -48195,7 +48809,7 @@ return { [1]="delve_biome_city_chambers_can_contain_special_delve_chest" } }, - [2192]={ + [2224]={ [1]={ [1]={ limit={ @@ -48211,7 +48825,7 @@ return { [1]="delve_biome_encounters_extra_reward_chest_%_chance" } }, - [2193]={ + [2225]={ [1]={ [1]={ limit={ @@ -48227,7 +48841,7 @@ return { [1]="delve_biome_monster_drop_fossil_chance_%" } }, - [2194]={ + [2226]={ [1]={ [1]={ limit={ @@ -48243,7 +48857,7 @@ return { [1]="map_display_area_contains_unbridged_gaps_to_cross" } }, - [2195]={ + [2227]={ [1]={ [1]={ limit={ @@ -48259,7 +48873,7 @@ return { [1]="delve_biome_node_tier_upgrade_+%" } }, - [2196]={ + [2228]={ [1]={ [1]={ limit={ @@ -48275,7 +48889,7 @@ return { [1]="map_additional_number_of_packs_to_choose" } }, - [2197]={ + [2229]={ [1]={ [1]={ limit={ @@ -48291,7 +48905,7 @@ return { [1]="delve_biome_off_path_reward_chests_always_azurite" } }, - [2198]={ + [2230]={ [1]={ [1]={ limit={ @@ -48307,7 +48921,7 @@ return { [1]="delve_biome_off_path_reward_chests_always_currency" } }, - [2199]={ + [2231]={ [1]={ [1]={ limit={ @@ -48323,7 +48937,7 @@ return { [1]="delve_biome_off_path_reward_chests_always_fossils" } }, - [2200]={ + [2232]={ [1]={ [1]={ limit={ @@ -48339,7 +48953,7 @@ return { [1]="delve_biome_off_path_reward_chests_always_resonators" } }, - [2201]={ + [2233]={ [1]={ [1]={ limit={ @@ -48355,7 +48969,7 @@ return { [1]="delve_biome_off_path_reward_chests_azurite_chance_+%_final" } }, - [2202]={ + [2234]={ [1]={ [1]={ limit={ @@ -48371,7 +48985,7 @@ return { [1]="delve_biome_off_path_reward_chests_currency_chance_+%_final" } }, - [2203]={ + [2235]={ [1]={ [1]={ limit={ @@ -48387,7 +49001,7 @@ return { [1]="delve_biome_off_path_reward_chests_fossil_chance_+%_final" } }, - [2204]={ + [2236]={ [1]={ [1]={ limit={ @@ -48403,7 +49017,7 @@ return { [1]="delve_biome_off_path_reward_chests_resonator_chance_+%_final" } }, - [2205]={ + [2237]={ [1]={ [1]={ limit={ @@ -48419,7 +49033,7 @@ return { [1]="map_base_ground_fire_damage_to_deal_per_minute" } }, - [2206]={ + [2238]={ [1]={ [1]={ limit={ @@ -48435,7 +49049,7 @@ return { [1]="map_base_ground_fire_damage_to_deal_per_10_seconds" } }, - [2207]={ + [2239]={ [1]={ [1]={ [1]={ @@ -48455,7 +49069,7 @@ return { [1]="map_ground_ice" } }, - [2208]={ + [2240]={ [1]={ [1]={ [1]={ @@ -48475,7 +49089,7 @@ return { [1]="map_ground_ice_base_magnitude" } }, - [2209]={ + [2241]={ [1]={ [1]={ [1]={ @@ -48495,7 +49109,7 @@ return { [1]="map_ground_lightning" } }, - [2210]={ + [2242]={ [1]={ [1]={ limit={ @@ -48511,7 +49125,7 @@ return { [1]="map_ground_lightning_base_magnitude" } }, - [2211]={ + [2243]={ [1]={ [1]={ limit={ @@ -48527,7 +49141,7 @@ return { [1]="map_ground_tar_movement_speed_+%" } }, - [2212]={ + [2244]={ [1]={ [1]={ limit={ @@ -48543,7 +49157,7 @@ return { [1]="map_base_ground_desecration_damage_to_deal_per_minute" } }, - [2213]={ + [2245]={ [1]={ [1]={ limit={ @@ -48559,7 +49173,7 @@ return { [1]="map_tempest_base_ground_fire_damage_to_deal_per_minute" } }, - [2214]={ + [2246]={ [1]={ [1]={ [1]={ @@ -48579,7 +49193,7 @@ return { [1]="map_tempest_ground_ice" } }, - [2215]={ + [2247]={ [1]={ [1]={ [1]={ @@ -48599,7 +49213,7 @@ return { [1]="map_tempest_ground_lightning" } }, - [2216]={ + [2248]={ [1]={ [1]={ limit={ @@ -48615,7 +49229,7 @@ return { [1]="map_tempest_ground_tar_movement_speed_+%" } }, - [2217]={ + [2249]={ [1]={ [1]={ limit={ @@ -48631,7 +49245,7 @@ return { [1]="map_tempest_base_ground_desecration_damage_to_deal_per_minute" } }, - [2218]={ + [2250]={ [1]={ [1]={ limit={ @@ -48647,7 +49261,7 @@ return { [1]="map_fixed_seed" } }, - [2219]={ + [2251]={ [1]={ [1]={ limit={ @@ -48663,7 +49277,7 @@ return { [1]="map_minimap_revealed" } }, - [2220]={ + [2252]={ [1]={ [1]={ limit={ @@ -48679,7 +49293,7 @@ return { [1]="map_no_refills_in_town" } }, - [2221]={ + [2253]={ [1]={ [1]={ limit={ @@ -48695,7 +49309,7 @@ return { [1]="map_packs_are_totems" } }, - [2222]={ + [2254]={ [1]={ [1]={ limit={ @@ -48711,7 +49325,7 @@ return { [1]="map_packs_are_str_mission_totems" } }, - [2223]={ + [2255]={ [1]={ [1]={ limit={ @@ -48727,7 +49341,7 @@ return { [1]="map_packs_are_skeletons" } }, - [2224]={ + [2256]={ [1]={ [1]={ limit={ @@ -48743,7 +49357,7 @@ return { [1]="map_packs_are_bandits" } }, - [2225]={ + [2257]={ [1]={ [1]={ limit={ @@ -48759,7 +49373,7 @@ return { [1]="map_packs_are_goatmen" } }, - [2226]={ + [2258]={ [1]={ [1]={ limit={ @@ -48775,7 +49389,7 @@ return { [1]="map_packs_are_animals" } }, - [2227]={ + [2259]={ [1]={ [1]={ limit={ @@ -48791,7 +49405,7 @@ return { [1]="map_packs_are_demons" } }, - [2228]={ + [2260]={ [1]={ [1]={ limit={ @@ -48807,7 +49421,7 @@ return { [1]="map_packs_are_humanoids" } }, - [2229]={ + [2261]={ [1]={ [1]={ limit={ @@ -48823,7 +49437,7 @@ return { [1]="map_packs_are_sea_witches_and_spawn" } }, - [2230]={ + [2262]={ [1]={ [1]={ limit={ @@ -48839,7 +49453,7 @@ return { [1]="map_packs_are_undead_and_necromancers" } }, - [2231]={ + [2263]={ [1]={ [1]={ limit={ @@ -48855,7 +49469,7 @@ return { [1]="map_packs_fire_projectiles" } }, - [2232]={ + [2264]={ [1]={ [1]={ limit={ @@ -48871,7 +49485,7 @@ return { [1]="display_map_inhabited_by_wild_beasts" } }, - [2233]={ + [2265]={ [1]={ [1]={ limit={ @@ -48896,7 +49510,7 @@ return { [1]="map_display_unique_boss_drops_X_maps" } }, - [2234]={ + [2266]={ [1]={ [1]={ limit={ @@ -48921,7 +49535,7 @@ return { [1]="map_spawn_extra_exiles" } }, - [2235]={ + [2267]={ [1]={ [1]={ limit={ @@ -48946,7 +49560,7 @@ return { [1]="map_spawn_extra_warbands" } }, - [2236]={ + [2268]={ [1]={ [1]={ limit={ @@ -48971,7 +49585,7 @@ return { [1]="map_num_extra_shrines" } }, - [2237]={ + [2269]={ [1]={ [1]={ limit={ @@ -48987,7 +49601,7 @@ return { [1]="map_shrines_are_darkshrines" } }, - [2238]={ + [2270]={ [1]={ [1]={ limit={ @@ -49003,7 +49617,7 @@ return { [1]="map_spawn_harbingers" } }, - [2239]={ + [2271]={ [1]={ [1]={ limit={ @@ -49019,7 +49633,7 @@ return { [1]="map_spawn_talismans" } }, - [2240]={ + [2272]={ [1]={ [1]={ limit={ @@ -49035,7 +49649,7 @@ return { [1]="map_spawn_perandus_chests" } }, - [2241]={ + [2273]={ [1]={ [1]={ limit={ @@ -49060,7 +49674,7 @@ return { [1]="map_spawn_extra_talismans" } }, - [2242]={ + [2274]={ [1]={ [1]={ limit={ @@ -49076,7 +49690,7 @@ return { [1]="map_force_stone_circle" } }, - [2243]={ + [2275]={ [1]={ [1]={ limit={ @@ -49101,7 +49715,7 @@ return { [1]="map_spawn_extra_torment_spirits" } }, - [2244]={ + [2276]={ [1]={ [1]={ limit={ @@ -49126,7 +49740,7 @@ return { [1]="map_num_extra_strongboxes" } }, - [2245]={ + [2277]={ [1]={ [1]={ limit={ @@ -49142,7 +49756,7 @@ return { [1]="map_number_of_magic_packs_+%" } }, - [2246]={ + [2278]={ [1]={ [1]={ limit={ @@ -49158,7 +49772,7 @@ return { [1]="map_number_of_rare_packs_+%" } }, - [2247]={ + [2279]={ [1]={ [1]={ limit={ @@ -49174,7 +49788,7 @@ return { [1]="map_non_unique_monsters_spawn_X_monsters_on_death" } }, - [2248]={ + [2280]={ [1]={ [1]={ [1]={ @@ -49194,7 +49808,7 @@ return { [1]="map_player_base_chaos_damage_taken_per_minute" } }, - [2249]={ + [2281]={ [1]={ [1]={ [1]={ @@ -49214,7 +49828,7 @@ return { [1]="map_player_has_blood_magic_keystone" } }, - [2250]={ + [2282]={ [1]={ [1]={ limit={ @@ -49230,7 +49844,7 @@ return { [1]="map_player_cannot_expose" } }, - [2251]={ + [2283]={ [1]={ [1]={ limit={ @@ -49246,7 +49860,7 @@ return { [1]="map_player_has_chaos_inoculation_keystone" } }, - [2252]={ + [2284]={ [1]={ [1]={ [1]={ @@ -49266,7 +49880,7 @@ return { [1]="map_player_has_level_X_vulnerability" } }, - [2253]={ + [2285]={ [1]={ [1]={ [1]={ @@ -49286,7 +49900,7 @@ return { [1]="map_player_has_level_X_enfeeble" } }, - [2254]={ + [2286]={ [1]={ [1]={ [1]={ @@ -49306,7 +49920,7 @@ return { [1]="map_player_has_level_X_temporal_chains" } }, - [2255]={ + [2287]={ [1]={ [1]={ [1]={ @@ -49326,7 +49940,7 @@ return { [1]="map_player_has_level_X_elemental_weakness" } }, - [2256]={ + [2288]={ [1]={ [1]={ [1]={ @@ -49346,7 +49960,7 @@ return { [1]="map_player_has_level_X_punishment" } }, - [2257]={ + [2289]={ [1]={ [1]={ [1]={ @@ -49366,7 +49980,7 @@ return { [1]="map_player_has_level_X_flammability" } }, - [2258]={ + [2290]={ [1]={ [1]={ [1]={ @@ -49386,7 +50000,7 @@ return { [1]="map_player_has_level_X_frostbite" } }, - [2259]={ + [2291]={ [1]={ [1]={ [1]={ @@ -49406,7 +50020,7 @@ return { [1]="map_player_has_level_X_conductivity" } }, - [2260]={ + [2292]={ [1]={ [1]={ [1]={ @@ -49426,7 +50040,7 @@ return { [1]="map_player_has_level_X_despair" } }, - [2261]={ + [2293]={ [1]={ [1]={ [1]={ @@ -49446,7 +50060,7 @@ return { [1]="map_player_has_level_X_silence" } }, - [2262]={ + [2294]={ [1]={ [1]={ limit={ @@ -49462,7 +50076,7 @@ return { [1]="map_player_no_regeneration" } }, - [2263]={ + [2295]={ [1]={ [1]={ limit={ @@ -49478,7 +50092,7 @@ return { [1]="map_additional_player_maximum_resistances_%" } }, - [2264]={ + [2296]={ [1]={ [1]={ limit={ @@ -49507,7 +50121,7 @@ return { [1]="map_player_status_recovery_speed_+%" } }, - [2265]={ + [2297]={ [1]={ [1]={ limit={ @@ -49536,7 +50150,7 @@ return { [1]="map_player_projectile_damage_+%_final" } }, - [2266]={ + [2298]={ [1]={ [1]={ limit={ @@ -49552,7 +50166,7 @@ return { [1]="map_players_convert_all_physical_damage_to_fire" } }, - [2267]={ + [2299]={ [1]={ [1]={ limit={ @@ -49581,7 +50195,7 @@ return { [1]="map_projectile_speed_+%" } }, - [2268]={ + [2300]={ [1]={ [1]={ limit={ @@ -49610,7 +50224,7 @@ return { [1]="map_monsters_life_+%" } }, - [2269]={ + [2301]={ [1]={ [1]={ limit={ @@ -49639,7 +50253,7 @@ return { [1]="map_monsters_area_of_effect_+%" } }, - [2270]={ + [2302]={ [1]={ [1]={ limit={ @@ -49655,7 +50269,7 @@ return { [1]="map_monsters_avoid_freeze_and_chill_%" } }, - [2271]={ + [2303]={ [1]={ [1]={ limit={ @@ -49671,7 +50285,7 @@ return { [1]="map_monsters_avoid_ignite_%" } }, - [2272]={ + [2304]={ [1]={ [1]={ limit={ @@ -49687,7 +50301,7 @@ return { [1]="map_monsters_avoid_shock_%" } }, - [2273]={ + [2305]={ [1]={ [1]={ [1]={ @@ -49707,7 +50321,7 @@ return { [1]="map_monster_unaffected_by_shock" } }, - [2274]={ + [2306]={ [1]={ [1]={ [1]={ @@ -49727,7 +50341,7 @@ return { [1]="map_monsters_avoid_ailments_%" } }, - [2275]={ + [2307]={ [1]={ [1]={ [1]={ @@ -49747,7 +50361,7 @@ return { [1]="map_monsters_avoid_elemental_ailments_%" } }, - [2276]={ + [2308]={ [1]={ [1]={ limit={ @@ -49776,7 +50390,7 @@ return { [1]="map_monsters_critical_strike_chance_+%" } }, - [2277]={ + [2309]={ [1]={ [1]={ limit={ @@ -49792,7 +50406,7 @@ return { [1]="map_monsters_critical_strike_multiplier_+" } }, - [2278]={ + [2310]={ [1]={ [1]={ limit={ @@ -49808,7 +50422,7 @@ return { [1]="map_monsters_cannot_be_leeched_from" } }, - [2279]={ + [2311]={ [1]={ [1]={ limit={ @@ -49833,7 +50447,7 @@ return { [1]="map_monsters_life_leech_resistance_%" } }, - [2280]={ + [2312]={ [1]={ [1]={ limit={ @@ -49858,7 +50472,7 @@ return { [1]="map_monsters_mana_leech_resistance_%" } }, - [2281]={ + [2313]={ [1]={ [1]={ limit={ @@ -49874,7 +50488,7 @@ return { [1]="map_monsters_damage_+%" } }, - [2282]={ + [2314]={ [1]={ [1]={ [1]={ @@ -49894,7 +50508,7 @@ return { [1]="map_monsters_have_onslaught" } }, - [2283]={ + [2315]={ [1]={ [1]={ limit={ @@ -49923,7 +50537,7 @@ return { [1]="map_monsters_movement_speed_+%" } }, - [2284]={ + [2316]={ [1]={ [1]={ limit={ @@ -49939,7 +50553,7 @@ return { [1]="map_monsters_attack_speed_+%" } }, - [2285]={ + [2317]={ [1]={ [1]={ limit={ @@ -49955,7 +50569,7 @@ return { [1]="map_monsters_cast_speed_+%" } }, - [2286]={ + [2318]={ [1]={ [1]={ limit={ @@ -49971,7 +50585,7 @@ return { [1]="map_monsters_reflect_%_physical_damage" } }, - [2287]={ + [2319]={ [1]={ [1]={ limit={ @@ -49987,7 +50601,7 @@ return { [1]="map_monsters_reflect_%_elemental_damage" } }, - [2288]={ + [2320]={ [1]={ [1]={ limit={ @@ -50034,7 +50648,7 @@ return { [2]="map_players_additional_number_of_projectiles" } }, - [2289]={ + [2321]={ [1]={ [1]={ limit={ @@ -50050,7 +50664,7 @@ return { [1]="map_monsters_additional_fire_resistance" } }, - [2290]={ + [2322]={ [1]={ [1]={ limit={ @@ -50066,7 +50680,7 @@ return { [1]="map_monsters_additional_cold_resistance" } }, - [2291]={ + [2323]={ [1]={ [1]={ limit={ @@ -50082,7 +50696,7 @@ return { [1]="map_monsters_additional_lightning_resistance" } }, - [2292]={ + [2324]={ [1]={ [1]={ limit={ @@ -50098,7 +50712,7 @@ return { [1]="map_monsters_additional_physical_damage_reduction" } }, - [2293]={ + [2325]={ [1]={ [1]={ limit={ @@ -50114,7 +50728,7 @@ return { [1]="map_monsters_cannot_be_stunned" } }, - [2294]={ + [2326]={ [1]={ [1]={ [1]={ @@ -50134,7 +50748,7 @@ return { [1]="map_monsters_poison_on_hit" } }, - [2295]={ + [2327]={ [1]={ [1]={ limit={ @@ -50150,7 +50764,7 @@ return { [1]="map_monsters_%_physical_damage_to_convert_to_fire" } }, - [2296]={ + [2328]={ [1]={ [1]={ limit={ @@ -50166,7 +50780,7 @@ return { [1]="map_monsters_%_physical_damage_to_convert_to_cold" } }, - [2297]={ + [2329]={ [1]={ [1]={ limit={ @@ -50182,7 +50796,7 @@ return { [1]="map_monsters_%_physical_damage_to_convert_to_lightning" } }, - [2298]={ + [2330]={ [1]={ [1]={ limit={ @@ -50198,7 +50812,7 @@ return { [1]="map_monsters_%_physical_damage_to_add_as_fire" } }, - [2299]={ + [2331]={ [1]={ [1]={ limit={ @@ -50214,7 +50828,7 @@ return { [1]="map_monsters_%_physical_damage_to_add_as_cold" } }, - [2300]={ + [2332]={ [1]={ [1]={ limit={ @@ -50230,7 +50844,7 @@ return { [1]="map_monsters_%_physical_damage_to_add_as_lightning" } }, - [2301]={ + [2333]={ [1]={ [1]={ limit={ @@ -50246,7 +50860,7 @@ return { [1]="map_monsters_%_physical_damage_to_convert_to_chaos" } }, - [2302]={ + [2334]={ [1]={ [1]={ limit={ @@ -50271,7 +50885,7 @@ return { [1]="map_monsters_gain_x_frenzy_charges_every_20_seconds" } }, - [2303]={ + [2335]={ [1]={ [1]={ limit={ @@ -50287,7 +50901,7 @@ return { [1]="map_monster_maximum_frenzy_charges" } }, - [2304]={ + [2336]={ [1]={ [1]={ limit={ @@ -50312,7 +50926,7 @@ return { [1]="map_monsters_add_frenzy_charge_on_hit_%" } }, - [2305]={ + [2337]={ [1]={ [1]={ limit={ @@ -50337,7 +50951,7 @@ return { [1]="map_monsters_gain_x_endurance_charges_every_20_seconds" } }, - [2306]={ + [2338]={ [1]={ [1]={ limit={ @@ -50353,7 +50967,7 @@ return { [1]="map_monster_maximum_endurance_charges" } }, - [2307]={ + [2339]={ [1]={ [1]={ limit={ @@ -50378,7 +50992,7 @@ return { [1]="map_monsters_add_endurance_charge_on_hit_%" } }, - [2308]={ + [2340]={ [1]={ [1]={ limit={ @@ -50403,7 +51017,7 @@ return { [1]="map_monsters_gain_x_power_charges_every_20_seconds" } }, - [2309]={ + [2341]={ [1]={ [1]={ limit={ @@ -50419,7 +51033,7 @@ return { [1]="map_monster_maximum_power_charges" } }, - [2310]={ + [2342]={ [1]={ [1]={ limit={ @@ -50444,7 +51058,7 @@ return { [1]="map_monsters_add_power_charge_on_hit_%" } }, - [2311]={ + [2343]={ [1]={ [1]={ [1]={ @@ -50464,7 +51078,7 @@ return { [1]="map_monsters_immune_to_a_random_status_ailment_or_stun" } }, - [2312]={ + [2344]={ [1]={ [1]={ limit={ @@ -50480,7 +51094,7 @@ return { [1]="map_monster_melee_attacks_apply_random_curses" } }, - [2313]={ + [2345]={ [1]={ [1]={ limit={ @@ -50505,7 +51119,7 @@ return { [1]="map_monster_melee_attacks_apply_random_curses_%_chance" } }, - [2314]={ + [2346]={ [1]={ [1]={ limit={ @@ -50521,7 +51135,7 @@ return { [1]="map_monsters_reflect_curses" } }, - [2315]={ + [2347]={ [1]={ [1]={ limit={ @@ -50537,7 +51151,7 @@ return { [1]="map_monster_skills_chain_X_additional_times" } }, - [2316]={ + [2348]={ [1]={ [1]={ limit={ @@ -50553,7 +51167,7 @@ return { [1]="map_monsters_convert_all_physical_damage_to_fire" } }, - [2317]={ + [2349]={ [1]={ [1]={ limit={ @@ -50569,7 +51183,7 @@ return { [1]="map_monsters_drop_ground_fire_on_death_base_radius" } }, - [2318]={ + [2350]={ [1]={ [1]={ limit={ @@ -50585,7 +51199,7 @@ return { [1]="map_monsters_are_immune_to_curses" } }, - [2319]={ + [2351]={ [1]={ [1]={ limit={ @@ -50601,7 +51215,7 @@ return { [1]="map_monsters_are_hexproof" } }, - [2320]={ + [2352]={ [1]={ [1]={ limit={ @@ -50630,7 +51244,7 @@ return { [1]="map_monsters_curse_effect_+%" } }, - [2321]={ + [2353]={ [1]={ [1]={ limit={ @@ -50646,7 +51260,7 @@ return { [1]="map_monster_no_drops" } }, - [2322]={ + [2354]={ [1]={ [1]={ limit={ @@ -50662,7 +51276,7 @@ return { [1]="map_spawn_two_bosses" } }, - [2323]={ + [2355]={ [1]={ [1]={ limit={ @@ -50678,7 +51292,7 @@ return { [1]="map_boss_damage_+%" } }, - [2324]={ + [2356]={ [1]={ [1]={ limit={ @@ -50707,7 +51321,7 @@ return { [1]="map_boss_damage_+%_final_from_boss_drops_guardian_map_sextant" } }, - [2325]={ + [2357]={ [1]={ [1]={ limit={ @@ -50736,7 +51350,7 @@ return { [1]="map_boss_life_+%_final_from_boss_drops_guardian_map_sextant" } }, - [2326]={ + [2358]={ [1]={ [1]={ limit={ @@ -50752,7 +51366,7 @@ return { [1]="map_on_complete_drop_additional_conqueror_map" } }, - [2327]={ + [2359]={ [1]={ [1]={ limit={ @@ -50768,7 +51382,7 @@ return { [1]="map_on_complete_drop_additional_elder_guardian_map" } }, - [2328]={ + [2360]={ [1]={ [1]={ limit={ @@ -50784,7 +51398,7 @@ return { [1]="map_on_complete_drop_additional_shaper_guardian_map" } }, - [2329]={ + [2361]={ [1]={ [1]={ limit={ @@ -50800,7 +51414,7 @@ return { [1]="map_boss_attack_and_cast_speed_+%" } }, - [2330]={ + [2362]={ [1]={ [1]={ limit={ @@ -50829,7 +51443,7 @@ return { [1]="map_boss_maximum_life_+%" } }, - [2331]={ + [2363]={ [1]={ [1]={ limit={ @@ -50858,7 +51472,7 @@ return { [1]="map_boss_area_of_effect_+%" } }, - [2332]={ + [2364]={ [1]={ [1]={ limit={ @@ -50887,7 +51501,7 @@ return { [1]="map_chest_item_quantity_+%" } }, - [2333]={ + [2365]={ [1]={ [1]={ limit={ @@ -50916,7 +51530,7 @@ return { [1]="map_chest_item_rarity_+%" } }, - [2334]={ + [2366]={ [1]={ [1]={ limit={ @@ -50932,7 +51546,7 @@ return { [1]="map_has_X_waves_of_monsters" } }, - [2335]={ + [2367]={ [1]={ [1]={ limit={ @@ -50948,7 +51562,7 @@ return { [1]="map_has_X_seconds_between_waves" } }, - [2336]={ + [2368]={ [1]={ [1]={ limit={ @@ -50964,7 +51578,7 @@ return { [1]="display_map_no_monsters" } }, - [2337]={ + [2369]={ [1]={ [1]={ [1]={ @@ -51001,7 +51615,7 @@ return { [1]="unique_facebreaker_unarmed_melee_physical_damage_+%_final" } }, - [2338]={ + [2370]={ [1]={ [1]={ [1]={ @@ -51026,7 +51640,7 @@ return { [2]="attack_maximum_added_melee_lightning_damage_while_unarmed" } }, - [2339]={ + [2371]={ [1]={ [1]={ [1]={ @@ -51051,7 +51665,7 @@ return { [2]="spell_maximum_added_lightning_damage_while_unarmed" } }, - [2340]={ + [2372]={ [1]={ [1]={ limit={ @@ -51067,7 +51681,7 @@ return { [1]="life_reserved_by_stat_%" } }, - [2341]={ + [2373]={ [1]={ [1]={ limit={ @@ -51083,7 +51697,7 @@ return { [1]="cannot_have_life_leeched_from" } }, - [2342]={ + [2374]={ [1]={ [1]={ limit={ @@ -51099,7 +51713,7 @@ return { [1]="cannot_have_mana_leeched_from" } }, - [2343]={ + [2375]={ [1]={ [1]={ [1]={ @@ -51119,7 +51733,27 @@ return { [1]="unique_chin_sol_close_range_bow_damage_+%_final" } }, - [2344]={ + [2376]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextCloseRange" + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% more Damage with Arrow Hits not at Close Range" + } + }, + stats={ + [1]="unique_foulborn_chin_sol_not_close_range_bow_damage_+%_final" + } + }, + [2377]={ [1]={ [1]={ [1]={ @@ -51143,7 +51777,7 @@ return { [1]="unique_chin_sol_close_range_knockback" } }, - [2345]={ + [2378]={ [1]={ [1]={ limit={ @@ -51159,7 +51793,7 @@ return { [1]="base_fire_hit_damage_taken_%_as_physical" } }, - [2346]={ + [2379]={ [1]={ [1]={ [1]={ @@ -51179,7 +51813,7 @@ return { [1]="base_fire_hit_damage_taken_%_as_physical_value_negated" } }, - [2347]={ + [2380]={ [1]={ [1]={ limit={ @@ -51195,7 +51829,7 @@ return { [1]="physical_damage_taken_%_as_fire" } }, - [2348]={ + [2381]={ [1]={ [1]={ limit={ @@ -51211,7 +51845,7 @@ return { [1]="physical_damage_taken_%_as_cold" } }, - [2349]={ + [2382]={ [1]={ [1]={ limit={ @@ -51227,7 +51861,7 @@ return { [1]="physical_damage_taken_%_as_lightning" } }, - [2350]={ + [2383]={ [1]={ [1]={ limit={ @@ -51243,7 +51877,7 @@ return { [1]="bleeding_damage_on_self_converted_to_chaos" } }, - [2351]={ + [2384]={ [1]={ [1]={ limit={ @@ -51259,7 +51893,7 @@ return { [1]="physical_damage_taken_%_as_chaos" } }, - [2352]={ + [2385]={ [1]={ [1]={ limit={ @@ -51275,7 +51909,7 @@ return { [1]="take_chaos_damage_from_ignite_instead" } }, - [2353]={ + [2386]={ [1]={ [1]={ limit={ @@ -51291,7 +51925,7 @@ return { [1]="elemental_damage_taken_%_as_chaos" } }, - [2354]={ + [2387]={ [1]={ [1]={ limit={ @@ -51307,7 +51941,7 @@ return { [1]="fire_damage_taken_%_causes_additional_physical_damage" } }, - [2355]={ + [2388]={ [1]={ [1]={ [1]={ @@ -51340,7 +51974,7 @@ return { [1]="damage_taken_goes_to_mana_%" } }, - [2356]={ + [2389]={ [1]={ [1]={ limit={ @@ -51369,7 +52003,7 @@ return { [1]="unique_quill_rain_damage_+%_final" } }, - [2357]={ + [2390]={ [1]={ [1]={ limit={ @@ -51385,7 +52019,7 @@ return { [1]="melee_physical_damage_taken_%_to_deal_to_attacker" } }, - [2358]={ + [2391]={ [1]={ [1]={ limit={ @@ -51401,7 +52035,7 @@ return { [1]="additional_block_%" } }, - [2359]={ + [2392]={ [1]={ [1]={ limit={ @@ -51417,7 +52051,7 @@ return { [1]="additional_block_chance_%_for_1_second_every_5_seconds" } }, - [2360]={ + [2393]={ [1]={ [1]={ limit={ @@ -51433,7 +52067,7 @@ return { [1]="with_bow_additional_block_%" } }, - [2361]={ + [2394]={ [1]={ [1]={ limit={ @@ -51449,7 +52083,7 @@ return { [1]="frozen_monsters_take_increased_damage" } }, - [2362]={ + [2395]={ [1]={ [1]={ [1]={ @@ -51486,7 +52120,7 @@ return { [1]="ailment_types_apply_damage_taken_+%" } }, - [2363]={ + [2396]={ [1]={ [1]={ limit={ @@ -51515,7 +52149,7 @@ return { [1]="physical_damage_reduction_rating_+%_against_projectiles" } }, - [2364]={ + [2397]={ [1]={ [1]={ limit={ @@ -51531,7 +52165,7 @@ return { [1]="additional_block_chance_against_projectiles_%" } }, - [2365]={ + [2398]={ [1]={ [1]={ limit={ @@ -51547,7 +52181,7 @@ return { [1]="base_cannot_leech" } }, - [2366]={ + [2399]={ [1]={ [1]={ [1]={ @@ -51567,7 +52201,7 @@ return { [1]="unique_dewaths_hide_physical_attack_damage_dealt_-" } }, - [2367]={ + [2400]={ [1]={ [1]={ limit={ @@ -51583,7 +52217,7 @@ return { [1]="energy_shield_%_gained_on_block" } }, - [2368]={ + [2401]={ [1]={ [1]={ limit={ @@ -51599,7 +52233,7 @@ return { [1]="energy_shield_%_of_armour_rating_gained_on_block" } }, - [2369]={ + [2402]={ [1]={ [1]={ [1]={ @@ -51619,7 +52253,7 @@ return { [1]="local_poison_on_hit" } }, - [2370]={ + [2403]={ [1]={ [1]={ limit={ @@ -51635,7 +52269,7 @@ return { [1]="local_all_damage_can_poison" } }, - [2371]={ + [2404]={ [1]={ [1]={ [1]={ @@ -51672,7 +52306,7 @@ return { [1]="spell_damage_taken_+%_when_on_low_mana" } }, - [2372]={ + [2405]={ [1]={ [1]={ [1]={ @@ -51709,7 +52343,7 @@ return { [1]="global_critical_strike_chance_+%_while_holding_staff" } }, - [2373]={ + [2406]={ [1]={ [1]={ [1]={ @@ -51729,7 +52363,7 @@ return { [1]="global_critical_strike_multiplier_+_while_holding_staff" } }, - [2374]={ + [2407]={ [1]={ [1]={ limit={ @@ -51758,7 +52392,7 @@ return { [1]="global_critical_strike_chance_+%_while_holding_bow" } }, - [2375]={ + [2408]={ [1]={ [1]={ limit={ @@ -51774,7 +52408,7 @@ return { [1]="global_critical_strike_multiplier_+_while_holding_bow" } }, - [2376]={ + [2409]={ [1]={ [1]={ limit={ @@ -51790,7 +52424,7 @@ return { [1]="reflect_curses" } }, - [2377]={ + [2410]={ [1]={ [1]={ limit={ @@ -51806,7 +52440,7 @@ return { [1]="reflect_hexes_chance_%" } }, - [2378]={ + [2411]={ [1]={ [1]={ [1]={ @@ -51826,7 +52460,7 @@ return { [1]="unaffected_by_curses" } }, - [2379]={ + [2412]={ [1]={ [1]={ limit={ @@ -51842,7 +52476,7 @@ return { [1]="attacks_deal_no_physical_damage" } }, - [2380]={ + [2413]={ [1]={ [1]={ [1]={ @@ -51862,7 +52496,7 @@ return { [1]="local_bleed_on_hit" } }, - [2381]={ + [2414]={ [1]={ [1]={ [1]={ @@ -51882,7 +52516,7 @@ return { [1]="local_chance_to_bleed_on_hit_25%" } }, - [2382]={ + [2415]={ [1]={ [1]={ [1]={ @@ -51902,7 +52536,7 @@ return { [1]="local_chance_to_bleed_on_hit_50%" } }, - [2383]={ + [2416]={ [1]={ [1]={ [1]={ @@ -51922,7 +52556,7 @@ return { [1]="local_chance_to_bleed_on_hit_%" } }, - [2384]={ + [2417]={ [1]={ [1]={ [1]={ @@ -51942,7 +52576,7 @@ return { [1]="attacks_bleed_on_stun" } }, - [2385]={ + [2418]={ [1]={ [1]={ [1]={ @@ -51962,7 +52596,7 @@ return { [1]="bleed_on_crit_%_with_attacks" } }, - [2386]={ + [2419]={ [1]={ [1]={ [1]={ @@ -51995,7 +52629,7 @@ return { [1]="bleed_on_melee_crit_chance_%" } }, - [2387]={ + [2420]={ [1]={ [1]={ [1]={ @@ -52028,7 +52662,7 @@ return { [1]="bleed_on_melee_attack_chance_%" } }, - [2388]={ + [2421]={ [1]={ [1]={ [1]={ @@ -52061,7 +52695,7 @@ return { [1]="bleed_on_bow_attack_chance_%" } }, - [2389]={ + [2422]={ [1]={ [1]={ limit={ @@ -52150,7 +52784,7 @@ return { [3]="cannot_cause_bleeding" } }, - [2390]={ + [2423]={ [1]={ [1]={ [1]={ @@ -52183,7 +52817,7 @@ return { [1]="minion_bleed_on_hit_with_attacks_%" } }, - [2391]={ + [2424]={ [1]={ [1]={ limit={ @@ -52212,7 +52846,7 @@ return { [1]="attack_damage_vs_bleeding_enemies_+%" } }, - [2392]={ + [2425]={ [1]={ [1]={ limit={ @@ -52241,7 +52875,7 @@ return { [1]="melee_damage_vs_bleeding_enemies_+%" } }, - [2393]={ + [2426]={ [1]={ [1]={ limit={ @@ -52270,7 +52904,7 @@ return { [1]="enemies_you_bleed_grant_flask_charges_+%" } }, - [2394]={ + [2427]={ [1]={ [1]={ limit={ @@ -52291,7 +52925,7 @@ return { [2]="maximum_added_physical_damage_vs_bleeding_enemies" } }, - [2395]={ + [2428]={ [1]={ [1]={ limit={ @@ -52307,7 +52941,7 @@ return { [1]="display_golden_radiance" } }, - [2396]={ + [2429]={ [1]={ [1]={ limit={ @@ -52323,7 +52957,7 @@ return { [1]="disable_skill_if_melee_attack" } }, - [2397]={ + [2430]={ [1]={ [1]={ [1]={ @@ -52360,7 +52994,7 @@ return { [1]="local_stun_threshold_reduction_+%" } }, - [2398]={ + [2431]={ [1]={ [1]={ limit={ @@ -52376,7 +53010,7 @@ return { [1]="light_radius_additive_modifiers_apply_to_area_%_value" } }, - [2399]={ + [2432]={ [1]={ [1]={ limit={ @@ -52392,7 +53026,7 @@ return { [1]="light_radius_additive_modifiers_apply_to_damage" } }, - [2400]={ + [2433]={ [1]={ [1]={ limit={ @@ -52421,7 +53055,7 @@ return { [1]="light_radius_+%" } }, - [2401]={ + [2434]={ [1]={ [1]={ limit={ @@ -52450,7 +53084,7 @@ return { [1]="virtual_light_radius_+%" } }, - [2402]={ + [2435]={ [1]={ [1]={ [1]={ @@ -52470,7 +53104,7 @@ return { [1]="gain_phasing_while_at_maximum_frenzy_charges" } }, - [2403]={ + [2436]={ [1]={ [1]={ [1]={ @@ -52490,7 +53124,7 @@ return { [1]="gain_phasing_while_you_have_onslaught" } }, - [2404]={ + [2437]={ [1]={ [1]={ [1]={ @@ -52514,7 +53148,7 @@ return { [1]="gain_phasing_for_4_seconds_on_begin_es_recharge" } }, - [2405]={ + [2438]={ [1]={ [1]={ limit={ @@ -52530,7 +53164,7 @@ return { [1]="evasion_rating_+%_while_phasing" } }, - [2406]={ + [2439]={ [1]={ [1]={ limit={ @@ -52546,7 +53180,7 @@ return { [1]="item_found_rarity_+%_while_phasing" } }, - [2407]={ + [2440]={ [1]={ [1]={ limit={ @@ -52575,7 +53209,7 @@ return { [1]="mana_regeneration_rate_+%_while_phasing" } }, - [2408]={ + [2441]={ [1]={ [1]={ limit={ @@ -52604,7 +53238,7 @@ return { [1]="mana_regeneration_rate_+%_while_shocked" } }, - [2409]={ + [2442]={ [1]={ [1]={ limit={ @@ -52633,7 +53267,7 @@ return { [1]="light_radius_+%_while_phased" } }, - [2410]={ + [2443]={ [1]={ [1]={ limit={ @@ -52649,7 +53283,7 @@ return { [1]="chaos_damage_does_not_bypass_energy_shield" } }, - [2411]={ + [2444]={ [1]={ [1]={ [1]={ @@ -52669,7 +53303,7 @@ return { [1]="ground_tar_on_take_crit_base_area_of_effect_radius" } }, - [2412]={ + [2445]={ [1]={ [1]={ limit={ @@ -52685,7 +53319,7 @@ return { [1]="random_curse_on_hit_%" } }, - [2413]={ + [2446]={ [1]={ [1]={ [1]={ @@ -52718,7 +53352,7 @@ return { [1]="curse_on_hit_%_enfeeble" } }, - [2414]={ + [2447]={ [1]={ [1]={ [1]={ @@ -52751,7 +53385,7 @@ return { [1]="curse_on_hit_%_conductivity" } }, - [2415]={ + [2448]={ [1]={ [1]={ [1]={ @@ -52784,7 +53418,7 @@ return { [1]="curse_on_hit_%_despair" } }, - [2416]={ + [2449]={ [1]={ [1]={ [1]={ @@ -52817,7 +53451,7 @@ return { [1]="curse_on_hit_%_elemental_weakness" } }, - [2417]={ + [2450]={ [1]={ [1]={ [1]={ @@ -52850,7 +53484,7 @@ return { [1]="curse_on_hit_%_flammability" } }, - [2418]={ + [2451]={ [1]={ [1]={ [1]={ @@ -52883,7 +53517,7 @@ return { [1]="curse_on_hit_%_frostbite" } }, - [2419]={ + [2452]={ [1]={ [1]={ [1]={ @@ -52916,7 +53550,7 @@ return { [1]="curse_on_hit_%_temporal_chains" } }, - [2420]={ + [2453]={ [1]={ [1]={ [1]={ @@ -52949,7 +53583,7 @@ return { [1]="curse_on_hit_%_vulnerability" } }, - [2421]={ + [2454]={ [1]={ [1]={ [1]={ @@ -52982,7 +53616,7 @@ return { [1]="curse_with_enfeeble_on_hit_%_against_uncursed_enemies" } }, - [2422]={ + [2455]={ [1]={ [1]={ [1]={ @@ -53002,7 +53636,7 @@ return { [1]="curse_on_hit_level_temporal_chains" } }, - [2423]={ + [2456]={ [1]={ [1]={ [1]={ @@ -53022,7 +53656,7 @@ return { [1]="curse_on_hit_level_vulnerability" } }, - [2424]={ + [2457]={ [1]={ [1]={ [1]={ @@ -53055,7 +53689,7 @@ return { [1]="curse_on_hit_level_10_vulnerability_%" } }, - [2425]={ + [2458]={ [1]={ [1]={ [1]={ @@ -53075,7 +53709,7 @@ return { [1]="curse_on_hit_level_elemental_weakness" } }, - [2426]={ + [2459]={ [1]={ [1]={ [1]={ @@ -53095,7 +53729,7 @@ return { [1]="curse_on_hit_level_cold_weakness" } }, - [2427]={ + [2460]={ [1]={ [1]={ [1]={ @@ -53115,7 +53749,7 @@ return { [1]="curse_on_hit_level_conductivity" } }, - [2428]={ + [2461]={ [1]={ [1]={ [1]={ @@ -53135,7 +53769,7 @@ return { [1]="curse_on_hit_level_despair" } }, - [2429]={ + [2462]={ [1]={ [1]={ [1]={ @@ -53155,7 +53789,7 @@ return { [1]="curse_on_hit_level_enfeeble" } }, - [2430]={ + [2463]={ [1]={ [1]={ [1]={ @@ -53175,7 +53809,7 @@ return { [1]="curse_on_hit_level_flammability" } }, - [2431]={ + [2464]={ [1]={ [1]={ [1]={ @@ -53195,7 +53829,7 @@ return { [1]="curse_on_hit_level_frostbite" } }, - [2432]={ + [2465]={ [1]={ [1]={ [1]={ @@ -53215,7 +53849,7 @@ return { [1]="spells_have_culling_strike" } }, - [2433]={ + [2466]={ [1]={ [1]={ [1]={ @@ -53235,7 +53869,7 @@ return { [1]="local_display_aura_allies_have_culling_strike" } }, - [2434]={ + [2467]={ [1]={ [1]={ [1]={ @@ -53259,7 +53893,7 @@ return { [1]="melee_range_+" } }, - [2435]={ + [2468]={ [1]={ [1]={ [1]={ @@ -53296,7 +53930,7 @@ return { [1]="evasion_rating_+%_when_on_low_life" } }, - [2436]={ + [2469]={ [1]={ [1]={ limit={ @@ -53312,7 +53946,7 @@ return { [1]="base_life_leech_is_instant" } }, - [2437]={ + [2470]={ [1]={ [1]={ limit={ @@ -53328,7 +53962,7 @@ return { [1]="local_life_leech_is_instant" } }, - [2438]={ + [2471]={ [1]={ [1]={ limit={ @@ -53344,7 +53978,7 @@ return { [1]="base_leech_is_instant_on_critical" } }, - [2439]={ + [2472]={ [1]={ [1]={ [1]={ @@ -53364,7 +53998,7 @@ return { [1]="unqiue_atzitis_acuity_instant_leech_60%_effectiveness_on_crit" } }, - [2440]={ + [2473]={ [1]={ [1]={ limit={ @@ -53380,7 +54014,7 @@ return { [1]="display_map_restless_dead" } }, - [2441]={ + [2474]={ [1]={ [1]={ limit={ @@ -53396,7 +54030,7 @@ return { [1]="display_map_larger_maze" } }, - [2442]={ + [2475]={ [1]={ [1]={ limit={ @@ -53412,7 +54046,7 @@ return { [1]="display_map_large_chest" } }, - [2443]={ + [2476]={ [1]={ [1]={ limit={ @@ -53441,7 +54075,7 @@ return { [1]="area_of_effect_+%_per_20_int" } }, - [2444]={ + [2477]={ [1]={ [1]={ limit={ @@ -53470,7 +54104,7 @@ return { [1]="attack_speed_+%_per_10_dex" } }, - [2445]={ + [2478]={ [1]={ [1]={ limit={ @@ -53499,7 +54133,7 @@ return { [1]="physical_weapon_damage_+%_per_10_str" } }, - [2446]={ + [2479]={ [1]={ [1]={ [1]={ @@ -53519,7 +54153,7 @@ return { [1]="spell_suppression_chance_%_per_frenzy_charge" } }, - [2447]={ + [2480]={ [1]={ [1]={ limit={ @@ -53535,7 +54169,7 @@ return { [1]="gain_power_charge_per_enemy_you_crit" } }, - [2448]={ + [2481]={ [1]={ [1]={ limit={ @@ -53564,7 +54198,7 @@ return { [1]="burning_damage_taken_+%" } }, - [2449]={ + [2482]={ [1]={ [1]={ limit={ @@ -53580,7 +54214,7 @@ return { [1]="cannot_increase_rarity_of_dropped_items" } }, - [2450]={ + [2483]={ [1]={ [1]={ limit={ @@ -53596,7 +54230,7 @@ return { [1]="cannot_increase_quantity_of_dropped_items" } }, - [2451]={ + [2484]={ [1]={ [1]={ limit={ @@ -53612,7 +54246,7 @@ return { [1]="randomly_cursed_when_totems_die_curse_level" } }, - [2452]={ + [2485]={ [1]={ [1]={ [1]={ @@ -53649,7 +54283,7 @@ return { [1]="global_item_attribute_requirements_+%" } }, - [2453]={ + [2486]={ [1]={ [1]={ limit={ @@ -53665,7 +54299,7 @@ return { [1]="enemy_hits_roll_low_damage" } }, - [2454]={ + [2487]={ [1]={ [1]={ limit={ @@ -53681,7 +54315,7 @@ return { [1]="unique_loris_lantern_golden_light" } }, - [2455]={ + [2488]={ [1]={ [1]={ [1]={ @@ -53701,7 +54335,7 @@ return { [1]="chaos_damage_resistance_%_when_on_low_life" } }, - [2456]={ + [2489]={ [1]={ [1]={ [1]={ @@ -53742,7 +54376,7 @@ return { [1]="enemy_extra_damage_rolls_when_on_low_life" } }, - [2457]={ + [2490]={ [1]={ [1]={ limit={ @@ -53763,7 +54397,7 @@ return { [2]="base_maximum_lightning_damage_on_charge_expiry" } }, - [2458]={ + [2491]={ [1]={ [1]={ limit={ @@ -53779,7 +54413,7 @@ return { [1]="item_drops_on_death" } }, - [2459]={ + [2492]={ [1]={ [1]={ limit={ @@ -53795,7 +54429,7 @@ return { [1]="local_item_drops_on_death_if_equipped_by_animate_armour" } }, - [2460]={ + [2493]={ [1]={ [1]={ limit={ @@ -53811,7 +54445,7 @@ return { [1]="never_ignite" } }, - [2461]={ + [2494]={ [1]={ [1]={ limit={ @@ -53827,7 +54461,7 @@ return { [1]="never_freeze" } }, - [2462]={ + [2495]={ [1]={ [1]={ limit={ @@ -53843,7 +54477,7 @@ return { [1]="never_freeze_or_chill" } }, - [2463]={ + [2496]={ [1]={ [1]={ limit={ @@ -53859,7 +54493,7 @@ return { [1]="never_shock" } }, - [2464]={ + [2497]={ [1]={ [1]={ [1]={ @@ -53879,7 +54513,7 @@ return { [1]="faster_burn_%" } }, - [2465]={ + [2498]={ [1]={ [1]={ limit={ @@ -53895,7 +54529,7 @@ return { [1]="ignite_slower_burn_%" } }, - [2466]={ + [2499]={ [1]={ [1]={ [1]={ @@ -53915,7 +54549,7 @@ return { [1]="faster_burn_from_attacks_%" } }, - [2467]={ + [2500]={ [1]={ [1]={ limit={ @@ -53931,7 +54565,7 @@ return { [1]="base_cannot_leech_life" } }, - [2468]={ + [2501]={ [1]={ [1]={ limit={ @@ -53947,7 +54581,7 @@ return { [1]="base_cannot_leech_mana" } }, - [2469]={ + [2502]={ [1]={ [1]={ limit={ @@ -53963,7 +54597,7 @@ return { [1]="cannot_leech_or_regenerate_mana" } }, - [2470]={ + [2503]={ [1]={ [1]={ [1]={ @@ -53987,7 +54621,7 @@ return { [1]="cannot_leech_when_on_low_life" } }, - [2471]={ + [2504]={ [1]={ [1]={ limit={ @@ -54012,7 +54646,7 @@ return { [1]="base_energy_shield_gained_on_enemy_death" } }, - [2472]={ + [2505]={ [1]={ [1]={ limit={ @@ -54028,7 +54662,7 @@ return { [1]="gain_X_energy_shield_on_killing_shocked_enemy" } }, - [2473]={ + [2506]={ [1]={ [1]={ [1]={ @@ -54048,7 +54682,7 @@ return { [1]="consecrate_on_block_%_chance_to_create" } }, - [2474]={ + [2507]={ [1]={ [1]={ [1]={ @@ -54068,7 +54702,7 @@ return { [1]="desecrate_on_block_%_chance_to_create" } }, - [2475]={ + [2508]={ [1]={ [1]={ limit={ @@ -54084,7 +54718,7 @@ return { [1]="avoid_blind_%" } }, - [2476]={ + [2509]={ [1]={ [1]={ [1]={ @@ -54117,7 +54751,7 @@ return { [1]="ground_smoke_when_hit_%" } }, - [2477]={ + [2510]={ [1]={ [1]={ limit={ @@ -54142,7 +54776,7 @@ return { [1]="shocked_ground_when_hit_%" } }, - [2478]={ + [2511]={ [1]={ [1]={ limit={ @@ -54171,7 +54805,7 @@ return { [1]="summon_totem_cast_speed_+%" } }, - [2479]={ + [2512]={ [1]={ [1]={ limit={ @@ -54187,7 +54821,7 @@ return { [1]="totem_skill_cast_speed_+%" } }, - [2480]={ + [2513]={ [1]={ [1]={ limit={ @@ -54203,7 +54837,7 @@ return { [1]="totem_skill_attack_speed_+%" } }, - [2481]={ + [2514]={ [1]={ [1]={ limit={ @@ -54219,7 +54853,7 @@ return { [1]="totem_skill_area_of_effect_+%" } }, - [2482]={ + [2515]={ [1]={ [1]={ [1]={ @@ -54243,7 +54877,7 @@ return { [1]="life_leech_from_skills_used_by_totems_permyriad" } }, - [2483]={ + [2516]={ [1]={ [1]={ limit={ @@ -54259,7 +54893,7 @@ return { [1]="disable_chest_slot" } }, - [2484]={ + [2517]={ [1]={ [1]={ [1]={ @@ -54296,7 +54930,7 @@ return { [1]="physical_claw_damage_+%_when_on_low_life" } }, - [2485]={ + [2518]={ [1]={ [1]={ [1]={ @@ -54333,7 +54967,7 @@ return { [1]="accuracy_rating_+%_when_on_low_life" } }, - [2486]={ + [2519]={ [1]={ [1]={ limit={ @@ -54367,7 +55001,7 @@ return { [2]="maximum_physical_damage_to_return_on_block" } }, - [2487]={ + [2520]={ [1]={ [1]={ limit={ @@ -54401,7 +55035,7 @@ return { [2]="maximum_lightning_damage_to_return_on_block" } }, - [2488]={ + [2521]={ [1]={ [1]={ limit={ @@ -54430,7 +55064,7 @@ return { [1]="number_of_zombies_allowed_+%" } }, - [2489]={ + [2522]={ [1]={ [1]={ limit={ @@ -54446,7 +55080,7 @@ return { [1]="zombie_maximum_life_+" } }, - [2490]={ + [2523]={ [1]={ [1]={ limit={ @@ -54462,7 +55096,7 @@ return { [1]="zombie_chaos_elemental_damage_resistance_%" } }, - [2491]={ + [2524]={ [1]={ [1]={ limit={ @@ -54478,7 +55112,7 @@ return { [1]="chill_and_freeze_duration_based_on_%_energy_shield" } }, - [2492]={ + [2525]={ [1]={ [1]={ [1]={ @@ -54498,7 +55132,7 @@ return { [1]="intelligence_+%_per_equipped_unique" } }, - [2493]={ + [2526]={ [1]={ [1]={ limit={ @@ -54514,7 +55148,7 @@ return { [1]="ignited_enemies_explode_on_kill" } }, - [2494]={ + [2527]={ [1]={ [1]={ limit={ @@ -54530,7 +55164,7 @@ return { [1]="can_inflict_multiple_ignites" } }, - [2495]={ + [2528]={ [1]={ [1]={ limit={ @@ -54546,7 +55180,7 @@ return { [1]="additional_scroll_of_wisdom_drop_chance_%" } }, - [2496]={ + [2529]={ [1]={ [1]={ limit={ @@ -54575,7 +55209,7 @@ return { [1]="curse_effect_+%" } }, - [2497]={ + [2530]={ [1]={ [1]={ limit={ @@ -54604,7 +55238,7 @@ return { [1]="curse_pillar_curse_effect_+%_final" } }, - [2498]={ + [2531]={ [1]={ [1]={ limit={ @@ -54633,7 +55267,7 @@ return { [1]="mark_skills_curse_effect_+%" } }, - [2499]={ + [2532]={ [1]={ [1]={ limit={ @@ -54649,7 +55283,7 @@ return { [1]="targets_are_unaffected_by_your_hexes" } }, - [2500]={ + [2533]={ [1]={ [1]={ limit={ @@ -54665,7 +55299,7 @@ return { [1]="ignore_hexproof" } }, - [2501]={ + [2534]={ [1]={ [1]={ limit={ @@ -54681,7 +55315,7 @@ return { [1]="chaos_weakness_ignores_hexproof" } }, - [2502]={ + [2535]={ [1]={ [1]={ limit={ @@ -54697,7 +55331,7 @@ return { [1]="cold_weakness_ignores_hexproof" } }, - [2503]={ + [2536]={ [1]={ [1]={ limit={ @@ -54713,7 +55347,7 @@ return { [1]="elemental_weakness_ignores_hexproof" } }, - [2504]={ + [2537]={ [1]={ [1]={ limit={ @@ -54729,7 +55363,7 @@ return { [1]="enfeeble_ignores_hexproof" } }, - [2505]={ + [2538]={ [1]={ [1]={ limit={ @@ -54745,7 +55379,7 @@ return { [1]="fire_weakness_ignores_hexproof" } }, - [2506]={ + [2539]={ [1]={ [1]={ limit={ @@ -54761,7 +55395,7 @@ return { [1]="lightning_weakness_ignores_hexproof" } }, - [2507]={ + [2540]={ [1]={ [1]={ limit={ @@ -54777,7 +55411,7 @@ return { [1]="punishment_ignores_hexproof" } }, - [2508]={ + [2541]={ [1]={ [1]={ limit={ @@ -54793,7 +55427,7 @@ return { [1]="temporal_chains_ignores_hexproof" } }, - [2509]={ + [2542]={ [1]={ [1]={ limit={ @@ -54809,7 +55443,7 @@ return { [1]="vulnerability_ignores_hexproof" } }, - [2510]={ + [2543]={ [1]={ [1]={ limit={ @@ -54838,7 +55472,7 @@ return { [1]="movement_velocity_+%_while_phasing" } }, - [2511]={ + [2544]={ [1]={ [1]={ limit={ @@ -54854,7 +55488,7 @@ return { [1]="map_spawn_exile_per_area_%" } }, - [2512]={ + [2545]={ [1]={ [1]={ limit={ @@ -54870,7 +55504,7 @@ return { [1]="map_ambush_chests" } }, - [2513]={ + [2546]={ [1]={ [1]={ limit={ @@ -54886,7 +55520,7 @@ return { [1]="map_breach_rules" } }, - [2514]={ + [2547]={ [1]={ [1]={ limit={ @@ -54902,7 +55536,7 @@ return { [1]="map_spawn_betrayals" } }, - [2515]={ + [2548]={ [1]={ [1]={ limit={ @@ -54918,7 +55552,7 @@ return { [1]="map_breach_has_boss" } }, - [2516]={ + [2549]={ [1]={ [1]={ limit={ @@ -54943,7 +55577,7 @@ return { [1]="map_contains_additional_breaches" } }, - [2517]={ + [2550]={ [1]={ [1]={ limit={ @@ -54959,7 +55593,7 @@ return { [1]="map_reliquary_must_complete_breaches" } }, - [2518]={ + [2551]={ [1]={ [1]={ limit={ @@ -54975,7 +55609,7 @@ return { [1]="map_invasion_monster_packs" } }, - [2519]={ + [2552]={ [1]={ [1]={ limit={ @@ -55000,7 +55634,7 @@ return { [1]="map_num_extra_invasion_bosses" } }, - [2520]={ + [2553]={ [1]={ [1]={ limit={ @@ -55016,7 +55650,7 @@ return { [1]="map_spawn_tormented_spirits" } }, - [2521]={ + [2554]={ [1]={ [1]={ limit={ @@ -55032,7 +55666,7 @@ return { [1]="map_always_has_weather" } }, - [2522]={ + [2555]={ [1]={ [1]={ limit={ @@ -55048,7 +55682,7 @@ return { [1]="map_allow_shrines" } }, - [2523]={ + [2556]={ [1]={ [1]={ [1]={ @@ -55068,7 +55702,7 @@ return { [1]="map_players_gain_rampage_stacks" } }, - [2524]={ + [2557]={ [1]={ [1]={ limit={ @@ -55084,7 +55718,7 @@ return { [1]="map_beyond_demon_desecrate_on_spawn_damage_per_second" } }, - [2525]={ + [2558]={ [1]={ [1]={ limit={ @@ -55100,7 +55734,7 @@ return { [1]="map_beyond_rules" } }, - [2526]={ + [2559]={ [1]={ [1]={ limit={ @@ -55129,7 +55763,7 @@ return { [1]="movement_velocity_+%_while_cursed" } }, - [2527]={ + [2560]={ [1]={ [1]={ [1]={ @@ -55149,7 +55783,7 @@ return { [1]="life_regeneration_rate_per_minute_%_per_frenzy_charge" } }, - [2528]={ + [2561]={ [1]={ [1]={ limit={ @@ -55174,7 +55808,7 @@ return { [1]="endurance_charge_on_kill_%" } }, - [2529]={ + [2562]={ [1]={ [1]={ limit={ @@ -55199,7 +55833,7 @@ return { [1]="lose_endurance_charge_on_kill_%" } }, - [2530]={ + [2563]={ [1]={ [1]={ limit={ @@ -55224,7 +55858,7 @@ return { [1]="add_frenzy_charge_on_kill_%_chance" } }, - [2531]={ + [2564]={ [1]={ [1]={ limit={ @@ -55240,7 +55874,7 @@ return { [1]="lose_frenzy_charge_on_kill_%" } }, - [2532]={ + [2565]={ [1]={ [1]={ limit={ @@ -55265,7 +55899,7 @@ return { [1]="add_power_charge_on_kill_%_chance" } }, - [2533]={ + [2566]={ [1]={ [1]={ limit={ @@ -55281,7 +55915,7 @@ return { [1]="lose_power_charge_on_kill_%" } }, - [2534]={ + [2567]={ [1]={ [1]={ limit={ @@ -55297,7 +55931,7 @@ return { [1]="gain_frenzy_and_power_charge_on_kill_%" } }, - [2535]={ + [2568]={ [1]={ [1]={ limit={ @@ -55313,7 +55947,7 @@ return { [1]="gain_endurance_charge_on_power_charge_expiry" } }, - [2536]={ + [2569]={ [1]={ [1]={ limit={ @@ -55329,7 +55963,7 @@ return { [1]="enemy_on_low_life_damage_taken_+%_per_frenzy_charge" } }, - [2537]={ + [2570]={ [1]={ [1]={ limit={ @@ -55358,7 +55992,7 @@ return { [1]="melee_damage_+%_when_on_full_life" } }, - [2538]={ + [2571]={ [1]={ [1]={ [1]={ @@ -55391,7 +56025,7 @@ return { [1]="consecrate_on_crit_%_chance_to_create" } }, - [2539]={ + [2572]={ [1]={ [1]={ limit={ @@ -55407,7 +56041,7 @@ return { [1]="projectile_speed_+%_per_frenzy_charge" } }, - [2540]={ + [2573]={ [1]={ [1]={ limit={ @@ -55423,7 +56057,7 @@ return { [1]="projectile_damage_+%_per_power_charge" } }, - [2541]={ + [2574]={ [1]={ [1]={ limit={ @@ -55452,7 +56086,7 @@ return { [1]="killed_monster_dropped_item_rarity_+%_on_crit" } }, - [2542]={ + [2575]={ [1]={ [1]={ [1]={ @@ -55476,7 +56110,7 @@ return { [1]="onslaught_buff_duration_on_kill_ms" } }, - [2543]={ + [2576]={ [1]={ [1]={ [1]={ @@ -55500,7 +56134,7 @@ return { [1]="onslaught_buff_duration_on_killing_taunted_enemy_ms" } }, - [2544]={ + [2577]={ [1]={ [1]={ [1]={ @@ -55520,7 +56154,7 @@ return { [1]="base_energy_shield_regeneration_rate_per_minute" } }, - [2545]={ + [2578]={ [1]={ [1]={ [1]={ @@ -55540,7 +56174,7 @@ return { [1]="base_energy_shield_regeneration_rate_per_minute_%" } }, - [2546]={ + [2579]={ [1]={ [1]={ [1]={ @@ -55560,7 +56194,7 @@ return { [1]="energy_shield_degeneration_%_per_minute_not_in_grace" } }, - [2547]={ + [2580]={ [1]={ [1]={ limit={ @@ -55576,7 +56210,7 @@ return { [1]="local_right_ring_slot_no_mana_regeneration" } }, - [2548]={ + [2581]={ [1]={ [1]={ [1]={ @@ -55596,7 +56230,7 @@ return { [1]="local_right_ring_slot_base_energy_shield_regeneration_rate_per_minute_%" } }, - [2549]={ + [2582]={ [1]={ [1]={ limit={ @@ -55612,7 +56246,23 @@ return { [1]="local_right_ring_slot_maximum_mana" } }, - [2550]={ + [2583]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Right ring slot: {0:+d} to Armour" + } + }, + stats={ + [1]="local_right_ring_slot_physical_damage_reduction_rating" + } + }, + [2584]={ [1]={ [1]={ limit={ @@ -55628,7 +56278,7 @@ return { [1]="local_right_ring_slot_energy_shield" } }, - [2551]={ + [2585]={ [1]={ [1]={ limit={ @@ -55644,7 +56294,7 @@ return { [1]="local_left_ring_slot_no_energy_shield_recharge_or_regeneration" } }, - [2552]={ + [2586]={ [1]={ [1]={ [1]={ @@ -55681,7 +56331,7 @@ return { [1]="local_left_ring_slot_base_all_ailment_duration_on_self_+%" } }, - [2553]={ + [2587]={ [1]={ [1]={ limit={ @@ -55697,7 +56347,7 @@ return { [1]="local_left_ring_slot_cold_damage_taken_%_as_fire" } }, - [2554]={ + [2588]={ [1]={ [1]={ limit={ @@ -55726,7 +56376,7 @@ return { [1]="local_left_ring_slot_curse_effect_on_self_+%" } }, - [2555]={ + [2589]={ [1]={ [1]={ limit={ @@ -55742,7 +56392,7 @@ return { [1]="local_left_ring_slot_fire_damage_taken_%_as_lightning" } }, - [2556]={ + [2590]={ [1]={ [1]={ limit={ @@ -55758,7 +56408,7 @@ return { [1]="local_left_ring_slot_lightning_damage_taken_%_as_cold" } }, - [2557]={ + [2591]={ [1]={ [1]={ [1]={ @@ -55778,7 +56428,7 @@ return { [1]="local_left_ring_slot_mana_regeneration_rate_per_minute" } }, - [2558]={ + [2592]={ [1]={ [1]={ limit={ @@ -55794,7 +56444,7 @@ return { [1]="local_left_ring_slot_mana_regeneration_rate_+%" } }, - [2559]={ + [2593]={ [1]={ [1]={ limit={ @@ -55823,7 +56473,7 @@ return { [1]="local_left_ring_slot_minion_damage_taken_+%" } }, - [2560]={ + [2594]={ [1]={ [1]={ limit={ @@ -55852,7 +56502,7 @@ return { [1]="local_left_ring_slot_skill_effect_duration_+%" } }, - [2561]={ + [2595]={ [1]={ [1]={ [1]={ @@ -55889,7 +56539,7 @@ return { [1]="local_right_ring_slot_base_all_ailment_duration_on_self_+%" } }, - [2562]={ + [2596]={ [1]={ [1]={ limit={ @@ -55905,7 +56555,7 @@ return { [1]="local_right_ring_slot_cold_damage_taken_%_as_lightning" } }, - [2563]={ + [2597]={ [1]={ [1]={ limit={ @@ -55934,7 +56584,7 @@ return { [1]="local_right_ring_slot_curse_effect_on_self_+%" } }, - [2564]={ + [2598]={ [1]={ [1]={ limit={ @@ -55950,7 +56600,7 @@ return { [1]="local_right_ring_slot_fire_damage_taken_%_as_cold" } }, - [2565]={ + [2599]={ [1]={ [1]={ limit={ @@ -55966,7 +56616,7 @@ return { [1]="local_right_ring_slot_lightning_damage_taken_%_as_fire" } }, - [2566]={ + [2600]={ [1]={ [1]={ limit={ @@ -55995,7 +56645,7 @@ return { [1]="local_right_ring_slot_minion_damage_taken_+%" } }, - [2567]={ + [2601]={ [1]={ [1]={ limit={ @@ -56024,7 +56674,7 @@ return { [1]="local_right_ring_slot_skill_effect_duration_+%" } }, - [2568]={ + [2602]={ [1]={ [1]={ limit={ @@ -56040,7 +56690,7 @@ return { [1]="local_left_ring_slot_maximum_mana" } }, - [2569]={ + [2603]={ [1]={ [1]={ limit={ @@ -56056,7 +56706,23 @@ return { [1]="local_left_ring_slot_energy_shield" } }, - [2570]={ + [2604]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Left ring slot: {0:+d} to Evasion Rating" + } + }, + stats={ + [1]="local_left_ring_slot_evasion_rating" + } + }, + [2605]={ [1]={ [1]={ limit={ @@ -56072,7 +56738,7 @@ return { [1]="no_energy_shield_recharge_or_regeneration" } }, - [2571]={ + [2606]={ [1]={ [1]={ [1]={ @@ -56105,7 +56771,7 @@ return { [1]="extra_critical_rolls" } }, - [2572]={ + [2607]={ [1]={ [1]={ limit={ @@ -56121,7 +56787,7 @@ return { [1]="movement_velocity_+1%_per_X_evasion_rating" } }, - [2573]={ + [2608]={ [1]={ [1]={ limit={ @@ -56137,7 +56803,7 @@ return { [1]="cannot_be_killed_by_elemental_reflect" } }, - [2574]={ + [2609]={ [1]={ [1]={ limit={ @@ -56153,7 +56819,7 @@ return { [1]="cannot_freeze_shock_ignite_on_critical" } }, - [2575]={ + [2610]={ [1]={ [1]={ limit={ @@ -56169,7 +56835,7 @@ return { [1]="no_critical_strike_multiplier" } }, - [2576]={ + [2611]={ [1]={ [1]={ [1]={ @@ -56193,7 +56859,7 @@ return { [1]="onslaught_on_crit_duration_ms" } }, - [2577]={ + [2612]={ [1]={ [1]={ limit={ @@ -56222,7 +56888,7 @@ return { [1]="zombie_scale_+%" } }, - [2578]={ + [2613]={ [1]={ [1]={ limit={ @@ -56251,7 +56917,7 @@ return { [1]="zombie_physical_damage_+%" } }, - [2579]={ + [2614]={ [1]={ [1]={ limit={ @@ -56267,7 +56933,7 @@ return { [1]="zombie_explode_on_kill_%_fire_damage_to_deal" } }, - [2580]={ + [2615]={ [1]={ [1]={ limit={ @@ -56296,7 +56962,7 @@ return { [1]="weapon_elemental_damage_+%_per_power_charge" } }, - [2581]={ + [2616]={ [1]={ [1]={ limit={ @@ -56312,7 +56978,7 @@ return { [1]="cannot_cast_curses" } }, - [2582]={ + [2617]={ [1]={ [1]={ limit={ @@ -56328,7 +56994,7 @@ return { [1]="melee_attacks_usable_without_mana_cost" } }, - [2583]={ + [2618]={ [1]={ [1]={ limit={ @@ -56344,7 +57010,7 @@ return { [1]="spell_damage_modifiers_apply_to_attack_damage" } }, - [2584]={ + [2619]={ [1]={ [1]={ limit={ @@ -56360,7 +57026,7 @@ return { [1]="additive_spell_damage_modifiers_apply_to_attack_damage" } }, - [2585]={ + [2620]={ [1]={ [1]={ limit={ @@ -56376,7 +57042,7 @@ return { [1]="additive_spell_damage_modifiers_apply_to_attack_damage_at_150%_value" } }, - [2586]={ + [2621]={ [1]={ [1]={ limit={ @@ -56401,7 +57067,7 @@ return { [1]="additive_spell_damage_modifiers_apply_to_attack_damage_at_%_value_while_wielding_wand" } }, - [2587]={ + [2622]={ [1]={ [1]={ limit={ @@ -56417,7 +57083,7 @@ return { [1]="additive_vaal_skill_damage_modifiers_apply_to_all_skills" } }, - [2588]={ + [2623]={ [1]={ [1]={ limit={ @@ -56433,7 +57099,7 @@ return { [1]="vaal_attack_rage_cost_instead_of_souls_per_use" } }, - [2589]={ + [2624]={ [1]={ [1]={ [1]={ @@ -56453,7 +57119,7 @@ return { [1]="local_display_aura_base_chaos_damage_to_deal_per_minute" } }, - [2590]={ + [2625]={ [1]={ [1]={ [1]={ @@ -56482,7 +57148,7 @@ return { [2]="deaths_oath_debuff_on_kill_base_chaos_damage_to_deal_per_minute" } }, - [2591]={ + [2626]={ [1]={ [1]={ limit={ @@ -56511,7 +57177,7 @@ return { [1]="killed_monster_dropped_item_quantity_+%_when_frozen" } }, - [2592]={ + [2627]={ [1]={ [1]={ limit={ @@ -56540,7 +57206,7 @@ return { [1]="killed_monster_dropped_item_rarity_+%_when_frozen_or_shocked" } }, - [2593]={ + [2628]={ [1]={ [1]={ limit={ @@ -56569,7 +57235,7 @@ return { [1]="killed_monster_dropped_item_rarity_+%_when_shocked" } }, - [2594]={ + [2629]={ [1]={ [1]={ limit={ @@ -56585,7 +57251,7 @@ return { [1]="killed_monster_dropped_item_rarity_+%_when_frozen" } }, - [2595]={ + [2630]={ [1]={ [1]={ limit={ @@ -56601,7 +57267,7 @@ return { [1]="local_unique_counts_as_dual_wielding" } }, - [2596]={ + [2631]={ [1]={ [1]={ limit={ @@ -56617,7 +57283,7 @@ return { [1]="base_damage_removed_from_mana_before_life_%" } }, - [2597]={ + [2632]={ [1]={ [1]={ limit={ @@ -56633,7 +57299,7 @@ return { [1]="local_display_aura_damage_+%" } }, - [2598]={ + [2633]={ [1]={ [1]={ limit={ @@ -56649,7 +57315,7 @@ return { [1]="local_display_aura_curse_effect_on_self_+%" } }, - [2599]={ + [2634]={ [1]={ [1]={ [1]={ @@ -56682,7 +57348,7 @@ return { [1]="attack_ignite_chance_%" } }, - [2600]={ + [2635]={ [1]={ [1]={ [1]={ @@ -56715,7 +57381,7 @@ return { [1]="projectile_ignite_chance_%" } }, - [2601]={ + [2636]={ [1]={ [1]={ [1]={ @@ -56748,7 +57414,7 @@ return { [1]="projectile_freeze_chance_%" } }, - [2602]={ + [2637]={ [1]={ [1]={ limit={ @@ -56773,7 +57439,7 @@ return { [1]="projectile_shock_chance_%" } }, - [2603]={ + [2638]={ [1]={ [1]={ limit={ @@ -56789,7 +57455,7 @@ return { [1]="explode_on_kill_%_fire_damage_to_deal" } }, - [2604]={ + [2639]={ [1]={ [1]={ limit={ @@ -56805,7 +57471,7 @@ return { [1]="melee_damage_taken_%_to_deal_to_attacker" } }, - [2605]={ + [2640]={ [1]={ [1]={ limit={ @@ -56821,7 +57487,7 @@ return { [1]="mana_gained_when_hit" } }, - [2606]={ + [2641]={ [1]={ [1]={ limit={ @@ -56850,7 +57516,7 @@ return { [1]="elemental_reflect_damage_taken_+%" } }, - [2607]={ + [2642]={ [1]={ [1]={ limit={ @@ -56879,7 +57545,7 @@ return { [1]="physical_reflect_damage_taken_+%" } }, - [2608]={ + [2643]={ [1]={ [1]={ limit={ @@ -56908,7 +57574,7 @@ return { [1]="local_left_ring_slot_elemental_reflect_damage_taken_+%" } }, - [2609]={ + [2644]={ [1]={ [1]={ limit={ @@ -56937,7 +57603,7 @@ return { [1]="local_right_ring_slot_physical_reflect_damage_taken_+%" } }, - [2610]={ + [2645]={ [1]={ [1]={ limit={ @@ -56953,7 +57619,7 @@ return { [1]="damage_reflected_to_enemies_%_gained_as_life" } }, - [2611]={ + [2646]={ [1]={ [1]={ limit={ @@ -56969,7 +57635,7 @@ return { [1]="local_can_only_deal_damage_with_this_weapon" } }, - [2612]={ + [2647]={ [1]={ [1]={ limit={ @@ -56998,7 +57664,7 @@ return { [1]="non_critical_damage_multiplier_+%" } }, - [2613]={ + [2648]={ [1]={ [1]={ [1]={ @@ -57023,7 +57689,7 @@ return { [2]="unique_map_boss_class_of_rare_items_to_drop" } }, - [2614]={ + [2649]={ [1]={ [1]={ limit={ @@ -57039,7 +57705,7 @@ return { [1]="attack_skills_%_physical_as_extra_fire_damage_per_socketed_red_gem" } }, - [2615]={ + [2650]={ [1]={ [1]={ limit={ @@ -57055,7 +57721,7 @@ return { [1]="base_maximum_life_per_red_socket_on_item" } }, - [2616]={ + [2651]={ [1]={ [1]={ [1]={ @@ -57079,7 +57745,7 @@ return { [1]="global_life_leech_from_physical_attack_damage_per_red_socket_on_item_permyriad" } }, - [2617]={ + [2652]={ [1]={ [1]={ limit={ @@ -57095,7 +57761,7 @@ return { [1]="global_weapon_physical_damage_+%_per_red_socket_on_item" } }, - [2618]={ + [2653]={ [1]={ [1]={ limit={ @@ -57111,7 +57777,7 @@ return { [1]="minion_base_physical_damage_%_to_convert_to_fire_per_red_socket_on_item" } }, - [2619]={ + [2654]={ [1]={ [1]={ limit={ @@ -57127,7 +57793,7 @@ return { [1]="base_maximum_mana_per_green_socket_on_item" } }, - [2620]={ + [2655]={ [1]={ [1]={ limit={ @@ -57143,7 +57809,7 @@ return { [1]="global_attack_speed_+%_per_green_socket_on_item" } }, - [2621]={ + [2656]={ [1]={ [1]={ limit={ @@ -57159,7 +57825,7 @@ return { [1]="global_critical_strike_mulitplier_+_per_green_socket_on_item" } }, - [2622]={ + [2657]={ [1]={ [1]={ limit={ @@ -57175,7 +57841,7 @@ return { [1]="minion_base_physical_damage_%_to_convert_to_cold_per_green_socket_on_item" } }, - [2623]={ + [2658]={ [1]={ [1]={ limit={ @@ -57191,7 +57857,7 @@ return { [1]="base_maximum_energy_shield_per_blue_socket_on_item" } }, - [2624]={ + [2659]={ [1]={ [1]={ limit={ @@ -57207,7 +57873,7 @@ return { [1]="minion_base_physical_damage_%_to_convert_to_lightning_per_blue_socket_on_item" } }, - [2625]={ + [2660]={ [1]={ [1]={ [1]={ @@ -57231,7 +57897,7 @@ return { [1]="old_do_not_use_global_mana_leech_from_physical_attack_damage_%_per_blue_socket_on_item" } }, - [2626]={ + [2661]={ [1]={ [1]={ [1]={ @@ -57255,7 +57921,7 @@ return { [1]="global_mana_leech_from_physical_attack_damage_permyriad_per_blue_socket_on_item" } }, - [2627]={ + [2662]={ [1]={ [1]={ limit={ @@ -57271,7 +57937,7 @@ return { [1]="item_found_quantity_+%_per_white_socket_on_item" } }, - [2628]={ + [2663]={ [1]={ [1]={ limit={ @@ -57287,7 +57953,7 @@ return { [1]="minion_base_physical_damage_%_to_convert_to_chaos_per_white_socket_on_item" } }, - [2629]={ + [2664]={ [1]={ [1]={ limit={ @@ -57303,7 +57969,7 @@ return { [1]="item_found_rarity_+%_per_white_socket_on_item" } }, - [2630]={ + [2665]={ [1]={ [1]={ [1]={ @@ -57340,7 +58006,7 @@ return { [1]="global_defences_+%_per_white_socket_on_item" } }, - [2631]={ + [2666]={ [1]={ [1]={ [1]={ @@ -57381,7 +58047,7 @@ return { [1]="global_melee_range_+_per_white_socket_on_item" } }, - [2632]={ + [2667]={ [1]={ [1]={ limit={ @@ -57397,7 +58063,7 @@ return { [1]="cannot_block_while_no_energy_shield" } }, - [2633]={ + [2668]={ [1]={ [1]={ limit={ @@ -57413,7 +58079,7 @@ return { [1]="damage_+%_when_currently_has_no_energy_shield" } }, - [2634]={ + [2669]={ [1]={ [1]={ limit={ @@ -57442,7 +58108,7 @@ return { [1]="armour_+%_while_no_energy_shield" } }, - [2635]={ + [2670]={ [1]={ [1]={ [1]={ @@ -57462,7 +58128,7 @@ return { [1]="unholy_might_while_you_have_no_energy_shield" } }, - [2636]={ + [2671]={ [1]={ [1]={ limit={ @@ -57478,7 +58144,7 @@ return { [1]="spell_damage_+%_per_5%_block_chance" } }, - [2637]={ + [2672]={ [1]={ [1]={ limit={ @@ -57507,7 +58173,7 @@ return { [1]="spell_damage_+%_per_10_int" } }, - [2638]={ + [2673]={ [1]={ [1]={ limit={ @@ -57523,7 +58189,7 @@ return { [1]="energy_shield_%_to_lose_on_block" } }, - [2639]={ + [2674]={ [1]={ [1]={ [1]={ @@ -57543,7 +58209,7 @@ return { [1]="armour_%_to_leech_as_life_on_block" } }, - [2640]={ + [2675]={ [1]={ [1]={ limit={ @@ -57559,7 +58225,7 @@ return { [1]="light_radius_scales_with_energy_shield" } }, - [2641]={ + [2676]={ [1]={ [1]={ limit={ @@ -57588,7 +58254,7 @@ return { [1]="flask_effect_+%" } }, - [2642]={ + [2677]={ [1]={ [1]={ limit={ @@ -57617,7 +58283,7 @@ return { [1]="magic_utility_flask_effect_+%" } }, - [2643]={ + [2678]={ [1]={ [1]={ limit={ @@ -57646,7 +58312,7 @@ return { [1]="non_unique_flask_effect_+%" } }, - [2644]={ + [2679]={ [1]={ [1]={ [1]={ @@ -57687,7 +58353,7 @@ return { [1]="local_weapon_range_+" } }, - [2645]={ + [2680]={ [1]={ [1]={ limit={ @@ -57716,7 +58382,7 @@ return { [1]="weapon_physical_damage_+%" } }, - [2646]={ + [2681]={ [1]={ [1]={ [1]={ @@ -57736,7 +58402,7 @@ return { [1]="maximum_critical_strike_chance" } }, - [2647]={ + [2682]={ [1]={ [1]={ limit={ @@ -57765,7 +58431,7 @@ return { [1]="melee_damage_taken_+%" } }, - [2648]={ + [2683]={ [1]={ [1]={ limit={ @@ -57794,7 +58460,7 @@ return { [1]="projectile_damage_taken_+%" } }, - [2649]={ + [2684]={ [1]={ [1]={ [1]={ @@ -57818,7 +58484,7 @@ return { [1]="gain_onslaught_on_stun_duration_ms" } }, - [2650]={ + [2685]={ [1]={ [1]={ limit={ @@ -57843,7 +58509,7 @@ return { [1]="chance_to_gain_endurance_charge_when_hit_%" } }, - [2651]={ + [2686]={ [1]={ [1]={ limit={ @@ -57859,7 +58525,7 @@ return { [1]="lose_all_endurance_charges_when_reaching_maximum" } }, - [2652]={ + [2687]={ [1]={ [1]={ [1]={ @@ -57883,7 +58549,7 @@ return { [1]="gain_onslaught_ms_when_reaching_maximum_endurance_charges" } }, - [2653]={ + [2688]={ [1]={ [1]={ limit={ @@ -57899,7 +58565,7 @@ return { [1]="cannot_gain_endurance_charges_while_have_onslaught" } }, - [2654]={ + [2689]={ [1]={ [1]={ limit={ @@ -57915,7 +58581,7 @@ return { [1]="flasks_dispel_burning" } }, - [2655]={ + [2690]={ [1]={ [1]={ limit={ @@ -57944,7 +58610,7 @@ return { [1]="item_rarity_+%_while_using_flask" } }, - [2656]={ + [2691]={ [1]={ [1]={ limit={ @@ -57973,7 +58639,7 @@ return { [1]="elemental_damage_with_attack_skills_+%_while_using_flask" } }, - [2657]={ + [2692]={ [1]={ [1]={ limit={ @@ -58002,7 +58668,7 @@ return { [1]="weapon_elemental_damage_+%_while_using_flask" } }, - [2658]={ + [2693]={ [1]={ [1]={ limit={ @@ -58018,7 +58684,7 @@ return { [1]="supported_active_skill_gem_level_+" } }, - [2659]={ + [2694]={ [1]={ [1]={ limit={ @@ -58034,7 +58700,7 @@ return { [1]="physical_damage_reduction_rating_per_level" } }, - [2660]={ + [2695]={ [1]={ [1]={ limit={ @@ -58050,7 +58716,7 @@ return { [1]="maximum_life_per_10_levels" } }, - [2661]={ + [2696]={ [1]={ [1]={ limit={ @@ -58066,7 +58732,7 @@ return { [1]="resist_all_elements_%_per_10_levels" } }, - [2662]={ + [2697]={ [1]={ [1]={ limit={ @@ -58082,7 +58748,7 @@ return { [1]="chance_to_gain_random_curse_when_hit_%_per_10_levels" } }, - [2663]={ + [2698]={ [1]={ [1]={ limit={ @@ -58111,7 +58777,7 @@ return { [1]="damage_taken_+%_vs_demons" } }, - [2664]={ + [2699]={ [1]={ [1]={ limit={ @@ -58140,7 +58806,7 @@ return { [1]="damage_+%_vs_demons" } }, - [2665]={ + [2700]={ [1]={ [1]={ limit={ @@ -58156,7 +58822,7 @@ return { [1]="chilled_monsters_take_+%_burning_damage" } }, - [2666]={ + [2701]={ [1]={ [1]={ [1]={ @@ -58189,7 +58855,7 @@ return { [1]="unique_ignite_chance_%_when_in_main_hand" } }, - [2667]={ + [2702]={ [1]={ [1]={ limit={ @@ -58218,7 +58884,7 @@ return { [1]="unique_chill_duration_+%_when_in_off_hand" } }, - [2668]={ + [2703]={ [1]={ [1]={ limit={ @@ -58265,7 +58931,7 @@ return { [2]="gain_endurance_charge_on_melee_stun_%" } }, - [2669]={ + [2704]={ [1]={ [1]={ limit={ @@ -58281,7 +58947,7 @@ return { [1]="chance_to_gain_power_charge_on_melee_stun_%" } }, - [2670]={ + [2705]={ [1]={ [1]={ limit={ @@ -58297,7 +58963,7 @@ return { [1]="chance_to_gain_power_charge_on_stun_%" } }, - [2671]={ + [2706]={ [1]={ [1]={ [1]={ @@ -58347,7 +59013,7 @@ return { [2]="movement_speed_+%_on_throwing_trap" } }, - [2672]={ + [2707]={ [1]={ [1]={ [1]={ @@ -58380,7 +59046,7 @@ return { [1]="poison_on_melee_critical_strike_%" } }, - [2673]={ + [2708]={ [1]={ [1]={ [1]={ @@ -58400,7 +59066,7 @@ return { [1]="shocks_reflected_to_self" } }, - [2674]={ + [2709]={ [1]={ [1]={ limit={ @@ -58429,7 +59095,7 @@ return { [1]="damage_+%_per_shock" } }, - [2675]={ + [2710]={ [1]={ [1]={ limit={ @@ -58445,7 +59111,7 @@ return { [1]="damage_+1%_per_X_strength_when_in_main_hand" } }, - [2676]={ + [2711]={ [1]={ [1]={ limit={ @@ -58461,7 +59127,7 @@ return { [1]="physical_damage_reduction_rating_+1%_per_X_strength_when_in_off_hand" } }, - [2677]={ + [2712]={ [1]={ [1]={ [1]={ @@ -58481,7 +59147,7 @@ return { [1]="freeze_mine_cold_resistance_+_while_frozen" } }, - [2678]={ + [2713]={ [1]={ [1]={ limit={ @@ -58497,7 +59163,7 @@ return { [1]="traps_do_not_explode_on_timeout" } }, - [2679]={ + [2714]={ [1]={ [1]={ limit={ @@ -58513,7 +59179,7 @@ return { [1]="traps_explode_on_timeout" } }, - [2680]={ + [2715]={ [1]={ [1]={ limit={ @@ -58529,7 +59195,7 @@ return { [1]="mine_detonation_is_instant" } }, - [2681]={ + [2716]={ [1]={ [1]={ limit={ @@ -58545,7 +59211,7 @@ return { [1]="trap_damage_penetrates_%_elemental_resistance" } }, - [2682]={ + [2717]={ [1]={ [1]={ limit={ @@ -58561,7 +59227,7 @@ return { [1]="mine_damage_penetrates_%_elemental_resistance" } }, - [2683]={ + [2718]={ [1]={ [1]={ limit={ @@ -58577,7 +59243,7 @@ return { [1]="trap_and_mine_damage_penetrates_%_elemental_resistance" } }, - [2684]={ + [2719]={ [1]={ [1]={ [1]={ @@ -58597,7 +59263,7 @@ return { [1]="traps_invulnerable_for_duration_ms" } }, - [2685]={ + [2720]={ [1]={ [1]={ [1]={ @@ -58617,7 +59283,7 @@ return { [1]="mines_invulnerable_for_duration_ms" } }, - [2686]={ + [2721]={ [1]={ [1]={ limit={ @@ -58633,7 +59299,7 @@ return { [1]="totem_elemental_resistance_%" } }, - [2687]={ + [2722]={ [1]={ [1]={ limit={ @@ -58649,7 +59315,7 @@ return { [1]="slash_ancestor_totem_elemental_resistance_%" } }, - [2688]={ + [2723]={ [1]={ [1]={ limit={ @@ -58665,7 +59331,7 @@ return { [1]="totem_additional_physical_damage_reduction_%" } }, - [2689]={ + [2724]={ [1]={ [1]={ limit={ @@ -58681,7 +59347,7 @@ return { [1]="base_deal_no_physical_damage" } }, - [2690]={ + [2725]={ [1]={ [1]={ limit={ @@ -58697,7 +59363,7 @@ return { [1]="deal_no_non_physical_damage" } }, - [2691]={ + [2726]={ [1]={ [1]={ limit={ @@ -58713,7 +59379,7 @@ return { [1]="base_deal_no_cold_damage" } }, - [2692]={ + [2727]={ [1]={ [1]={ limit={ @@ -58729,7 +59395,7 @@ return { [1]="deal_no_non_fire_damage" } }, - [2693]={ + [2728]={ [1]={ [1]={ limit={ @@ -58745,7 +59411,7 @@ return { [1]="deal_no_non_lightning_damage" } }, - [2694]={ + [2729]={ [1]={ [1]={ limit={ @@ -58774,7 +59440,7 @@ return { [1]="jorrhasts_blacksteel_animate_weapon_duration_+%_final" } }, - [2695]={ + [2730]={ [1]={ [1]={ limit={ @@ -58803,7 +59469,7 @@ return { [1]="animate_weapon_duration_+%" } }, - [2696]={ + [2731]={ [1]={ [1]={ limit={ @@ -58828,7 +59494,7 @@ return { [1]="animate_weapon_number_of_additional_copies" } }, - [2697]={ + [2732]={ [1]={ [1]={ limit={ @@ -58844,7 +59510,7 @@ return { [1]="fire_and_cold_damage_resistance_%" } }, - [2698]={ + [2733]={ [1]={ [1]={ limit={ @@ -58860,7 +59526,7 @@ return { [1]="fire_and_lightning_damage_resistance_%" } }, - [2699]={ + [2734]={ [1]={ [1]={ limit={ @@ -58876,7 +59542,7 @@ return { [1]="cold_and_lightning_damage_resistance_%" } }, - [2700]={ + [2735]={ [1]={ [1]={ [1]={ @@ -58925,7 +59591,7 @@ return { [1]="chance_to_freeze_shock_ignite_%" } }, - [2701]={ + [2736]={ [1]={ [1]={ limit={ @@ -58954,7 +59620,7 @@ return { [1]="damage_+%_while_ignited" } }, - [2702]={ + [2737]={ [1]={ [1]={ limit={ @@ -58970,7 +59636,7 @@ return { [1]="physical_damage_reduction_rating_while_frozen" } }, - [2703]={ + [2738]={ [1]={ [1]={ limit={ @@ -58999,7 +59665,7 @@ return { [1]="physical_damage_taken_+%_while_frozen" } }, - [2704]={ + [2739]={ [1]={ [1]={ limit={ @@ -59028,7 +59694,7 @@ return { [1]="movement_velocity_+%_while_ignited" } }, - [2705]={ + [2740]={ [1]={ [1]={ limit={ @@ -59057,7 +59723,7 @@ return { [1]="movement_velocity_+%_per_shock" } }, - [2706]={ + [2741]={ [1]={ [1]={ limit={ @@ -59086,7 +59752,7 @@ return { [1]="damage_+%_vs_rare_monsters" } }, - [2707]={ + [2742]={ [1]={ [1]={ limit={ @@ -59102,7 +59768,7 @@ return { [1]="damage_vs_enemies_on_low_life_+%" } }, - [2708]={ + [2743]={ [1]={ [1]={ [1]={ @@ -59122,7 +59788,7 @@ return { [1]="damage_vs_enemies_on_low_life_+%_final" } }, - [2709]={ + [2744]={ [1]={ [1]={ limit={ @@ -59151,7 +59817,7 @@ return { [1]="damage_+%_vs_enemies_on_low_life_per_frenzy_charge" } }, - [2710]={ + [2745]={ [1]={ [1]={ [1]={ @@ -59188,7 +59854,7 @@ return { [1]="damage_+%_vs_blinded_enemies" } }, - [2711]={ + [2746]={ [1]={ [1]={ limit={ @@ -59217,7 +59883,7 @@ return { [1]="shrine_buff_effect_on_self_+%" } }, - [2712]={ + [2747]={ [1]={ [1]={ limit={ @@ -59246,7 +59912,7 @@ return { [1]="shrine_effect_duration_+%" } }, - [2713]={ + [2748]={ [1]={ [1]={ [1]={ @@ -59266,7 +59932,7 @@ return { [1]="shock_X_nearby_enemies_for_2_s_on_killing_shocked_enemy" } }, - [2714]={ + [2749]={ [1]={ [1]={ [1]={ @@ -59286,7 +59952,7 @@ return { [1]="ignite_X_nearby_enemies_for_4_s_on_killing_ignited_enemy" } }, - [2715]={ + [2750]={ [1]={ [1]={ limit={ @@ -59302,7 +59968,7 @@ return { [1]="gain_rare_monster_mods_on_kill_ms" } }, - [2716]={ + [2751]={ [1]={ [1]={ limit={ @@ -59331,7 +59997,7 @@ return { [1]="physical_damage_reduction_rating_+%_while_not_ignited_frozen_shocked" } }, - [2717]={ + [2752]={ [1]={ [1]={ limit={ @@ -59360,7 +60026,7 @@ return { [1]="aura_effect_+%" } }, - [2718]={ + [2753]={ [1]={ [1]={ limit={ @@ -59376,7 +60042,7 @@ return { [1]="supported_active_skill_gem_quality_%" } }, - [2719]={ + [2754]={ [1]={ [1]={ [1]={ @@ -59396,7 +60062,7 @@ return { [1]="phase_through_objects" } }, - [2720]={ + [2755]={ [1]={ [1]={ limit={ @@ -59412,7 +60078,7 @@ return { [1]="local_support_gem_max_skill_level_requirement_to_support" } }, - [2721]={ + [2756]={ [1]={ [1]={ limit={ @@ -59459,7 +60125,7 @@ return { [2]="projectile_return_%_chance" } }, - [2722]={ + [2757]={ [1]={ [1]={ limit={ @@ -59475,7 +60141,7 @@ return { [1]="attack_projectiles_return" } }, - [2723]={ + [2758]={ [1]={ [1]={ limit={ @@ -59504,7 +60170,7 @@ return { [1]="unique_critical_strike_chance_+%_final" } }, - [2724]={ + [2759]={ [1]={ [1]={ limit={ @@ -59520,7 +60186,7 @@ return { [1]="unique_lose_all_endurance_charges_when_hit" } }, - [2725]={ + [2760]={ [1]={ [1]={ [1]={ @@ -59544,7 +60210,7 @@ return { [1]="unique_gain_onslaught_when_hit_duration_ms" } }, - [2726]={ + [2761]={ [1]={ [1]={ limit={ @@ -59560,7 +60226,7 @@ return { [1]="add_endurance_charge_on_kill" } }, - [2727]={ + [2762]={ [1]={ [1]={ limit={ @@ -59576,7 +60242,7 @@ return { [1]="chance_to_counter_strike_when_hit_%" } }, - [2728]={ + [2763]={ [1]={ [1]={ [1]={ @@ -59596,7 +60262,7 @@ return { [1]="leech_X_life_per_spell_cast" } }, - [2729]={ + [2764]={ [1]={ [1]={ limit={ @@ -59612,7 +60278,7 @@ return { [1]="regenerate_X_life_over_1_second_on_cast" } }, - [2730]={ + [2765]={ [1]={ [1]={ limit={ @@ -59628,7 +60294,7 @@ return { [1]="regenerate_%_armour_as_life_over_1_second_on_block" } }, - [2731]={ + [2766]={ [1]={ [1]={ [1]={ @@ -59665,7 +60331,44 @@ return { [1]="global_defences_+%" } }, - [2732]={ + [2767]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextDefences" + }, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Defences per Minion from your Non-Vaal Skills" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + [2]={ + k="reminderstring", + v="ReminderTextDefences" + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Defences per Minion from your Non-Vaal Skills" + } + }, + stats={ + [1]="global_defences_+%_per_active_minion_not_from_vaal_skills" + } + }, + [2768]={ [1]={ [1]={ limit={ @@ -59681,7 +60384,7 @@ return { [1]="zero_elemental_resistance" } }, - [2733]={ + [2769]={ [1]={ [1]={ [1]={ @@ -59701,7 +60404,7 @@ return { [1]="culling_strike_on_burning_enemies" } }, - [2734]={ + [2770]={ [1]={ [1]={ limit={ @@ -59717,7 +60420,7 @@ return { [1]="gain_frenzy_charge_if_attack_ignites" } }, - [2735]={ + [2771]={ [1]={ [1]={ limit={ @@ -59746,7 +60449,7 @@ return { [1]="damage_+%_per_10_levels" } }, - [2736]={ + [2772]={ [1]={ [1]={ limit={ @@ -59762,7 +60465,7 @@ return { [1]="chaos_damage_taken_+" } }, - [2737]={ + [2773]={ [1]={ [1]={ limit={ @@ -59778,7 +60481,7 @@ return { [1]="display_map_final_boss_drops_higher_level_gear" } }, - [2738]={ + [2774]={ [1]={ [1]={ limit={ @@ -59794,7 +60497,7 @@ return { [1]="display_map_boss_gives_experience_+%" } }, - [2739]={ + [2775]={ [1]={ [1]={ [1]={ @@ -59835,7 +60538,7 @@ return { [1]="unique_gain_onslaught_when_hit_duration_ms_per_endurance_charge" } }, - [2740]={ + [2776]={ [1]={ [1]={ limit={ @@ -59864,7 +60567,7 @@ return { [1]="support_slower_projectiles_damage_+%_final" } }, - [2741]={ + [2777]={ [1]={ [1]={ limit={ @@ -59893,7 +60596,7 @@ return { [1]="fishing_line_strength_+%" } }, - [2742]={ + [2778]={ [1]={ [1]={ limit={ @@ -59922,7 +60625,7 @@ return { [1]="fishing_pool_consumption_+%" } }, - [2743]={ + [2779]={ [1]={ [1]={ limit={ @@ -59959,13 +60662,31 @@ return { } }, text="Thaumaturgical Lure" + }, + [5]={ + limit={ + [1]={ + [1]=5, + [2]=5 + } + }, + text="Wombgift Bait" + }, + [6]={ + limit={ + [1]={ + [1]=6, + [2]=6 + } + }, + text="Otherworldly Lure" } }, stats={ [1]="fishing_lure_type" } }, - [2744]={ + [2780]={ [1]={ [1]={ limit={ @@ -60008,7 +60729,7 @@ return { [1]="fishing_hook_type" } }, - [2745]={ + [2781]={ [1]={ [1]={ limit={ @@ -60037,7 +60758,7 @@ return { [1]="fishing_range_+%" } }, - [2746]={ + [2782]={ [1]={ [1]={ limit={ @@ -60066,7 +60787,7 @@ return { [1]="fish_quantity_+%" } }, - [2747]={ + [2783]={ [1]={ [1]={ limit={ @@ -60095,7 +60816,7 @@ return { [1]="fish_rarity_+%" } }, - [2748]={ + [2784]={ [1]={ [1]={ limit={ @@ -60111,7 +60832,7 @@ return { [1]="unique_spread_poison_to_nearby_enemies_on_kill" } }, - [2749]={ + [2785]={ [1]={ [1]={ limit={ @@ -60127,7 +60848,7 @@ return { [1]="unique_spread_poison_to_nearby_allies_as_200_life_regeneration_per_second_on_kill" } }, - [2750]={ + [2786]={ [1]={ [1]={ limit={ @@ -60143,7 +60864,7 @@ return { [1]="unique_spread_poison_to_nearby_allies_as_regeneration_on_kill" } }, - [2751]={ + [2787]={ [1]={ [1]={ limit={ @@ -60152,14 +60873,14 @@ return { [2]="#" } }, - text="Reflects your other Ring" + text="Reflects opposite Ring" } }, stats={ [1]="local_ring_duplicate_other_ring" } }, - [2752]={ + [2788]={ [1]={ [1]={ limit={ @@ -60175,7 +60896,7 @@ return { [1]="can_catch_exotic_fish" } }, - [2753]={ + [2789]={ [1]={ [1]={ limit={ @@ -60191,7 +60912,7 @@ return { [1]="can_catch_corrupted_fish" } }, - [2754]={ + [2790]={ [1]={ [1]={ [1]={ @@ -60211,7 +60932,7 @@ return { [1]="unique_fire_damage_shocks" } }, - [2755]={ + [2791]={ [1]={ [1]={ [1]={ @@ -60231,7 +60952,7 @@ return { [1]="unique_cold_damage_ignites" } }, - [2756]={ + [2792]={ [1]={ [1]={ [1]={ @@ -60251,7 +60972,7 @@ return { [1]="unique_lightning_damage_freezes" } }, - [2757]={ + [2793]={ [1]={ [1]={ [1]={ @@ -60271,7 +60992,7 @@ return { [1]="all_damage_can_ignite" } }, - [2758]={ + [2794]={ [1]={ [1]={ [1]={ @@ -60291,7 +61012,7 @@ return { [1]="all_damage_can_chill" } }, - [2759]={ + [2795]={ [1]={ [1]={ [1]={ @@ -60311,7 +61032,7 @@ return { [1]="all_damage_can_freeze" } }, - [2760]={ + [2796]={ [1]={ [1]={ [1]={ @@ -60331,7 +61052,7 @@ return { [1]="all_damage_can_shock" } }, - [2761]={ + [2797]={ [1]={ [1]={ [1]={ @@ -60351,7 +61072,7 @@ return { [1]="all_damage_taken_can_chill" } }, - [2762]={ + [2798]={ [1]={ [1]={ [1]={ @@ -60371,7 +61092,7 @@ return { [1]="base_all_damage_can_cause_elemental_ailments_you_are_suffering_from" } }, - [2763]={ + [2799]={ [1]={ [1]={ [1]={ @@ -60391,7 +61112,7 @@ return { [1]="base_cold_damage_can_poison" } }, - [2764]={ + [2800]={ [1]={ [1]={ [1]={ @@ -60411,7 +61132,7 @@ return { [1]="base_fire_damage_can_poison" } }, - [2765]={ + [2801]={ [1]={ [1]={ [1]={ @@ -60431,7 +61152,7 @@ return { [1]="base_lightning_damage_can_poison" } }, - [2766]={ + [2802]={ [1]={ [1]={ [1]={ @@ -60451,7 +61172,7 @@ return { [1]="chaos_damage_can_chill" } }, - [2767]={ + [2803]={ [1]={ [1]={ [1]={ @@ -60471,7 +61192,7 @@ return { [1]="chaos_damage_can_freeze" } }, - [2768]={ + [2804]={ [1]={ [1]={ [1]={ @@ -60491,7 +61212,7 @@ return { [1]="chaos_damage_can_shock" } }, - [2769]={ + [2805]={ [1]={ [1]={ [1]={ @@ -60511,7 +61232,7 @@ return { [1]="cold_damage_can_ignite" } }, - [2770]={ + [2806]={ [1]={ [1]={ [1]={ @@ -60531,7 +61252,7 @@ return { [1]="cold_damage_can_shock" } }, - [2771]={ + [2807]={ [1]={ [1]={ [1]={ @@ -60551,7 +61272,7 @@ return { [1]="elemental_damage_can_shock" } }, - [2772]={ + [2808]={ [1]={ [1]={ [1]={ @@ -60571,7 +61292,7 @@ return { [1]="fire_damage_can_chill" } }, - [2773]={ + [2809]={ [1]={ [1]={ [1]={ @@ -60591,7 +61312,7 @@ return { [1]="fire_damage_can_freeze" } }, - [2774]={ + [2810]={ [1]={ [1]={ [1]={ @@ -60611,7 +61332,7 @@ return { [1]="fire_damage_can_shock" } }, - [2775]={ + [2811]={ [1]={ [1]={ [1]={ @@ -60631,7 +61352,7 @@ return { [1]="lightning_damage_can_chill" } }, - [2776]={ + [2812]={ [1]={ [1]={ limit={ @@ -60647,7 +61368,7 @@ return { [1]="lightning_damage_can_ignite" } }, - [2777]={ + [2813]={ [1]={ [1]={ [1]={ @@ -60667,7 +61388,7 @@ return { [1]="physical_damage_can_chill" } }, - [2778]={ + [2814]={ [1]={ [1]={ [1]={ @@ -60687,7 +61408,7 @@ return { [1]="physical_damage_can_freeze" } }, - [2779]={ + [2815]={ [1]={ [1]={ [1]={ @@ -60707,7 +61428,7 @@ return { [1]="physical_damage_can_shock" } }, - [2780]={ + [2816]={ [1]={ [1]={ [1]={ @@ -60727,7 +61448,7 @@ return { [1]="unique_cold_damage_can_also_ignite" } }, - [2781]={ + [2817]={ [1]={ [1]={ [1]={ @@ -60747,7 +61468,7 @@ return { [1]="lightning_damage_can_freeze" } }, - [2782]={ + [2818]={ [1]={ [1]={ limit={ @@ -60763,7 +61484,7 @@ return { [1]="fire_damage_cannot_ignite" } }, - [2783]={ + [2819]={ [1]={ [1]={ limit={ @@ -60779,7 +61500,7 @@ return { [1]="cold_damage_cannot_freeze" } }, - [2784]={ + [2820]={ [1]={ [1]={ limit={ @@ -60795,7 +61516,7 @@ return { [1]="cold_damage_cannot_chill" } }, - [2785]={ + [2821]={ [1]={ [1]={ limit={ @@ -60811,7 +61532,7 @@ return { [1]="chaos_damage_can_ignite_chill_and_shock" } }, - [2786]={ + [2822]={ [1]={ [1]={ limit={ @@ -60827,7 +61548,7 @@ return { [1]="chaos_damage_cannot_poison" } }, - [2787]={ + [2823]={ [1]={ [1]={ limit={ @@ -60843,7 +61564,7 @@ return { [1]="lightning_damage_cannot_shock" } }, - [2788]={ + [2824]={ [1]={ [1]={ limit={ @@ -60859,7 +61580,7 @@ return { [1]="physical_damage_cannot_poison" } }, - [2789]={ + [2825]={ [1]={ [1]={ limit={ @@ -60888,7 +61609,7 @@ return { [1]="supported_active_skill_gem_expereince_gained_+%" } }, - [2790]={ + [2826]={ [1]={ [1]={ limit={ @@ -60917,7 +61638,7 @@ return { [1]="freeze_as_though_dealt_damage_+%" } }, - [2791]={ + [2827]={ [1]={ [1]={ [1]={ @@ -60950,7 +61671,7 @@ return { [1]="chill_prevention_ms_when_chilled" } }, - [2792]={ + [2828]={ [1]={ [1]={ limit={ @@ -60966,7 +61687,7 @@ return { [1]="base_immune_to_chill" } }, - [2793]={ + [2829]={ [1]={ [1]={ [1]={ @@ -60999,7 +61720,7 @@ return { [1]="freeze_prevention_ms_when_frozen" } }, - [2794]={ + [2830]={ [1]={ [1]={ [1]={ @@ -61032,7 +61753,7 @@ return { [1]="ignite_prevention_ms_when_ignited" } }, - [2795]={ + [2831]={ [1]={ [1]={ [1]={ @@ -61065,7 +61786,7 @@ return { [1]="shock_prevention_ms_when_shocked" } }, - [2796]={ + [2832]={ [1]={ [1]={ limit={ @@ -61081,7 +61802,7 @@ return { [1]="cannot_be_shocked_while_frozen" } }, - [2797]={ + [2833]={ [1]={ [1]={ limit={ @@ -61097,7 +61818,7 @@ return { [1]="grant_X_frenzy_charges_to_nearby_allies_on_death" } }, - [2798]={ + [2834]={ [1]={ [1]={ limit={ @@ -61113,7 +61834,7 @@ return { [1]="unique_gain_power_charge_on_non_crit" } }, - [2799]={ + [2835]={ [1]={ [1]={ limit={ @@ -61129,7 +61850,7 @@ return { [1]="unique_lose_all_power_charges_on_crit" } }, - [2800]={ + [2836]={ [1]={ [1]={ limit={ @@ -61145,7 +61866,7 @@ return { [1]="flask_minion_heal_%" } }, - [2801]={ + [2837]={ [1]={ [1]={ limit={ @@ -61161,7 +61882,7 @@ return { [1]="minion_block_%" } }, - [2802]={ + [2838]={ [1]={ [1]={ limit={ @@ -61177,7 +61898,7 @@ return { [1]="minion_additional_spell_block_%" } }, - [2803]={ + [2839]={ [1]={ [1]={ limit={ @@ -61193,7 +61914,7 @@ return { [1]="minion_physical_damage_reduction_rating" } }, - [2804]={ + [2840]={ [1]={ [1]={ limit={ @@ -61209,7 +61930,7 @@ return { [1]="local_display_aura_damage_+%_allies_only" } }, - [2805]={ + [2841]={ [1]={ [1]={ limit={ @@ -61238,7 +61959,7 @@ return { [1]="minion_attack_speed_+%" } }, - [2806]={ + [2842]={ [1]={ [1]={ limit={ @@ -61267,7 +61988,7 @@ return { [1]="minion_cast_speed_+%" } }, - [2807]={ + [2843]={ [1]={ [1]={ [1]={ @@ -61291,7 +62012,7 @@ return { [1]="old_do_not_use_minion_life_leech_from_any_damage_permyriad" } }, - [2808]={ + [2844]={ [1]={ [1]={ [1]={ @@ -61315,7 +62036,7 @@ return { [1]="minion_life_leech_from_any_damage_permyriad" } }, - [2809]={ + [2845]={ [1]={ [1]={ [1]={ @@ -61335,7 +62056,7 @@ return { [1]="minion_life_regeneration_rate_per_minute_%" } }, - [2810]={ + [2846]={ [1]={ [1]={ limit={ @@ -61351,7 +62072,7 @@ return { [1]="minion_elemental_resistance_%" } }, - [2811]={ + [2847]={ [1]={ [1]={ limit={ @@ -61367,7 +62088,7 @@ return { [1]="minion_chaos_resistance_%" } }, - [2812]={ + [2848]={ [1]={ [1]={ [1]={ @@ -61387,7 +62108,7 @@ return { [1]="local_display_grants_unholy_might" } }, - [2813]={ + [2849]={ [1]={ [1]={ [1]={ @@ -61407,7 +62128,7 @@ return { [1]="gain_unholy_might_for_2_seconds_on_melee_crit" } }, - [2814]={ + [2850]={ [1]={ [1]={ [1]={ @@ -61427,7 +62148,7 @@ return { [1]="gain_unholy_might_for_2_seconds_on_crit" } }, - [2815]={ + [2851]={ [1]={ [1]={ [1]={ @@ -61447,7 +62168,7 @@ return { [1]="gain_unholy_might_for_4_seconds_on_crit" } }, - [2816]={ + [2852]={ [1]={ [1]={ [1]={ @@ -61471,7 +62192,7 @@ return { [1]="minion_unholy_might_on_kill_duration_ms" } }, - [2817]={ + [2853]={ [1]={ [1]={ [1]={ @@ -61495,7 +62216,7 @@ return { [1]="onslaught_on_vaal_skill_use_duration_ms" } }, - [2818]={ + [2854]={ [1]={ [1]={ [1]={ @@ -61519,7 +62240,7 @@ return { [1]="phase_on_vaal_skill_use_duration_ms" } }, - [2819]={ + [2855]={ [1]={ [1]={ [1]={ @@ -61539,7 +62260,7 @@ return { [1]="chance_to_ignite_%_while_using_flask" } }, - [2820]={ + [2856]={ [1]={ [1]={ [1]={ @@ -61559,7 +62280,7 @@ return { [1]="chance_to_freeze_%_while_using_flask" } }, - [2821]={ + [2857]={ [1]={ [1]={ [1]={ @@ -61579,7 +62300,7 @@ return { [1]="chance_to_shock_%_while_using_flask" } }, - [2822]={ + [2858]={ [1]={ [1]={ limit={ @@ -61608,7 +62329,7 @@ return { [1]="unique_voltaxic_rift_shock_as_though_damage_+%_final" } }, - [2823]={ + [2859]={ [1]={ [1]={ [1]={ @@ -61628,7 +62349,7 @@ return { [1]="spell_chance_to_shock_frozen_enemies_%" } }, - [2824]={ + [2860]={ [1]={ [1]={ [1]={ @@ -61648,7 +62369,7 @@ return { [1]="stun_threshold_reduction_+%_while_using_flask" } }, - [2825]={ + [2861]={ [1]={ [1]={ limit={ @@ -61664,7 +62385,7 @@ return { [1]="physical_damage_taken_+_vs_beasts" } }, - [2826]={ + [2862]={ [1]={ [1]={ limit={ @@ -61693,7 +62414,7 @@ return { [1]="local_attacks_with_this_weapon_elemental_damage_+%" } }, - [2827]={ + [2863]={ [1]={ [1]={ limit={ @@ -61722,7 +62443,7 @@ return { [1]="damage_taken_+%_per_frenzy_charge" } }, - [2828]={ + [2864]={ [1]={ [1]={ limit={ @@ -61751,7 +62472,7 @@ return { [1]="lightning_damage_+%_per_frenzy_charge" } }, - [2829]={ + [2865]={ [1]={ [1]={ limit={ @@ -61767,7 +62488,7 @@ return { [1]="life_gained_on_enemy_death_per_frenzy_charge" } }, - [2830]={ + [2866]={ [1]={ [1]={ [1]={ @@ -61787,7 +62508,7 @@ return { [1]="life_%_gained_on_kill_if_spent_life_recently" } }, - [2831]={ + [2867]={ [1]={ [1]={ [1]={ @@ -61807,7 +62528,7 @@ return { [1]="transfer_hexes_to_X_nearby_enemies_on_kill" } }, - [2832]={ + [2868]={ [1]={ [1]={ limit={ @@ -61823,7 +62544,7 @@ return { [1]="weapon_physical_damage_%_to_add_as_random_element" } }, - [2833]={ + [2869]={ [1]={ [1]={ limit={ @@ -61839,7 +62560,7 @@ return { [1]="physical_damage_%_to_add_as_random_element" } }, - [2834]={ + [2870]={ [1]={ [1]={ limit={ @@ -61864,7 +62585,7 @@ return { [1]="unique_add_power_charge_on_melee_knockback_%" } }, - [2835]={ + [2871]={ [1]={ [1]={ limit={ @@ -61889,7 +62610,7 @@ return { [1]="gain_power_charge_when_throwing_trap_%" } }, - [2836]={ + [2872]={ [1]={ [1]={ limit={ @@ -61905,7 +62626,7 @@ return { [1]="critical_strike_chance_+%_per_8_strength" } }, - [2837]={ + [2873]={ [1]={ [1]={ limit={ @@ -61934,7 +62655,7 @@ return { [1]="attack_speed_+%_while_ignited" } }, - [2838]={ + [2874]={ [1]={ [1]={ limit={ @@ -61963,7 +62684,7 @@ return { [1]="cast_speed_+%_while_ignited" } }, - [2839]={ + [2875]={ [1]={ [1]={ [1]={ @@ -61996,7 +62717,7 @@ return { [1]="chance_to_ignite_%_while_ignited" } }, - [2840]={ + [2876]={ [1]={ [1]={ limit={ @@ -62025,7 +62746,7 @@ return { [1]="wand_damage_+%" } }, - [2841]={ + [2877]={ [1]={ [1]={ limit={ @@ -62054,7 +62775,23 @@ return { [1]="local_attacks_with_this_weapon_physical_damage_+%_per_250_evasion" } }, - [2842]={ + [2878]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Attacks with this Weapon have Added Fire Damage equal to {0}% of Player's Maximum Life" + } + }, + stats={ + [1]="local_fire_damage_from_life_%" + } + }, + [2879]={ [1]={ [1]={ limit={ @@ -62083,7 +62820,7 @@ return { [1]="attack_damage_+%_per_450_evasion" } }, - [2843]={ + [2880]={ [1]={ [1]={ [1]={ @@ -62103,7 +62840,7 @@ return { [1]="chance_to_be_frozen_%" } }, - [2844]={ + [2881]={ [1]={ [1]={ [1]={ @@ -62123,7 +62860,7 @@ return { [1]="chance_to_be_ignited_%" } }, - [2845]={ + [2882]={ [1]={ [1]={ [1]={ @@ -62143,7 +62880,7 @@ return { [1]="chance_to_be_shocked_%" } }, - [2846]={ + [2883]={ [1]={ [1]={ limit={ @@ -62159,7 +62896,7 @@ return { [1]="chance_to_be_frozen_shocked_ignited_%" } }, - [2847]={ + [2884]={ [1]={ [1]={ limit={ @@ -62184,7 +62921,7 @@ return { [1]="claw_steal_power_frenzy_endurance_charges_on_hit_%" } }, - [2848]={ + [2885]={ [1]={ [1]={ limit={ @@ -62209,7 +62946,7 @@ return { [1]="bow_steal_power_frenzy_endurance_charges_on_hit_%" } }, - [2849]={ + [2886]={ [1]={ [1]={ limit={ @@ -62238,7 +62975,7 @@ return { [1]="damage_+%_vs_ignited_enemies" } }, - [2850]={ + [2887]={ [1]={ [1]={ limit={ @@ -62254,7 +62991,7 @@ return { [1]="recover_%_maximum_life_on_rampage_threshold" } }, - [2851]={ + [2888]={ [1]={ [1]={ [1]={ @@ -62274,7 +63011,7 @@ return { [1]="dispel_status_ailments_on_rampage_threshold" } }, - [2852]={ + [2889]={ [1]={ [1]={ [1]={ @@ -62307,7 +63044,7 @@ return { [1]="gain_physical_damage_immunity_on_rampage_threshold_ms" } }, - [2853]={ + [2890]={ [1]={ [1]={ [1]={ @@ -62327,7 +63064,7 @@ return { [1]="gain_X_vaal_souls_on_rampage_threshold" } }, - [2854]={ + [2891]={ [1]={ [1]={ [1]={ @@ -62347,7 +63084,7 @@ return { [1]="global_chance_to_blind_on_hit_%" } }, - [2855]={ + [2892]={ [1]={ [1]={ limit={ @@ -62376,7 +63113,7 @@ return { [1]="physical_damage_+%_vs_poisoned_enemies" } }, - [2856]={ + [2893]={ [1]={ [1]={ limit={ @@ -62392,7 +63129,7 @@ return { [1]="block_causes_monster_flee_%" } }, - [2857]={ + [2894]={ [1]={ [1]={ [1]={ @@ -62412,7 +63149,7 @@ return { [1]="life_regeneration_rate_per_minute_per_level" } }, - [2858]={ + [2895]={ [1]={ [1]={ limit={ @@ -62441,7 +63178,7 @@ return { [1]="critical_strike_chance_+%_per_level" } }, - [2859]={ + [2896]={ [1]={ [1]={ limit={ @@ -62470,7 +63207,7 @@ return { [1]="attack_damage_+%_per_level" } }, - [2860]={ + [2897]={ [1]={ [1]={ limit={ @@ -62499,7 +63236,7 @@ return { [1]="spell_damage_+%_per_level" } }, - [2861]={ + [2898]={ [1]={ [1]={ limit={ @@ -62524,7 +63261,7 @@ return { [1]="recharge_flasks_on_crit" } }, - [2862]={ + [2899]={ [1]={ [1]={ limit={ @@ -62553,7 +63290,7 @@ return { [1]="bleeding_monsters_movement_velocity_+%" } }, - [2863]={ + [2900]={ [1]={ [1]={ [1]={ @@ -62573,7 +63310,7 @@ return { [1]="ground_smoke_on_rampage_threshold_ms" } }, - [2864]={ + [2901]={ [1]={ [1]={ [1]={ @@ -62606,7 +63343,7 @@ return { [1]="phasing_on_rampage_threshold_ms" } }, - [2865]={ + [2902]={ [1]={ [1]={ limit={ @@ -62635,7 +63372,7 @@ return { [1]="movement_velocity_+%_on_full_energy_shield" } }, - [2866]={ + [2903]={ [1]={ [1]={ limit={ @@ -62678,7 +63415,7 @@ return { [3]="unique_maximum_chaos_damage_to_reflect_to_self_on_attack" } }, - [2867]={ + [2904]={ [1]={ [1]={ limit={ @@ -62694,7 +63431,7 @@ return { [1]="life_gained_on_enemy_death_per_level" } }, - [2868]={ + [2905]={ [1]={ [1]={ limit={ @@ -62710,7 +63447,7 @@ return { [1]="mana_gained_on_enemy_death_per_level" } }, - [2869]={ + [2906]={ [1]={ [1]={ limit={ @@ -62726,7 +63463,7 @@ return { [1]="energy_shield_gained_on_enemy_death_per_level" } }, - [2870]={ + [2907]={ [1]={ [1]={ limit={ @@ -62742,7 +63479,7 @@ return { [1]="cannot_be_blinded" } }, - [2871]={ + [2908]={ [1]={ [1]={ [1]={ @@ -62783,7 +63520,7 @@ return { [1]="gain_unholy_might_on_rampage_threshold_ms" } }, - [2872]={ + [2909]={ [1]={ [1]={ limit={ @@ -62812,7 +63549,7 @@ return { [1]="elemental_damage_+%_per_level" } }, - [2873]={ + [2910]={ [1]={ [1]={ limit={ @@ -62841,7 +63578,7 @@ return { [1]="chaos_damage_+%_per_level" } }, - [2874]={ + [2911]={ [1]={ [1]={ [1]={ @@ -62861,7 +63598,7 @@ return { [1]="enemy_phys_reduction_%_penalty_vs_hit" } }, - [2875]={ + [2912]={ [1]={ [1]={ [1]={ @@ -62881,7 +63618,7 @@ return { [1]="impale_phys_reduction_%_penalty" } }, - [2876]={ + [2913]={ [1]={ [1]={ limit={ @@ -62897,7 +63634,7 @@ return { [1]="reduce_enemy_elemental_resistance_%" } }, - [2877]={ + [2914]={ [1]={ [1]={ limit={ @@ -62926,7 +63663,7 @@ return { [1]="base_reduce_enemy_fire_resistance_%" } }, - [2878]={ + [2915]={ [1]={ [1]={ [1]={ @@ -62946,7 +63683,7 @@ return { [1]="overcapped_fire_resistance_gain_as_fire_penetration" } }, - [2879]={ + [2916]={ [1]={ [1]={ limit={ @@ -62975,7 +63712,7 @@ return { [1]="base_reduce_enemy_cold_resistance_%" } }, - [2880]={ + [2917]={ [1]={ [1]={ limit={ @@ -63004,7 +63741,7 @@ return { [1]="base_reduce_enemy_lightning_resistance_%" } }, - [2881]={ + [2918]={ [1]={ [1]={ [1]={ @@ -63024,7 +63761,7 @@ return { [1]="curse_on_block_level_5_vulnerability" } }, - [2882]={ + [2919]={ [1]={ [1]={ [1]={ @@ -63044,7 +63781,7 @@ return { [1]="curse_on_block_%_chance_flammability_with_+20%_effect" } }, - [2883]={ + [2920]={ [1]={ [1]={ [1]={ @@ -63064,7 +63801,7 @@ return { [1]="curse_on_melee_block_level_15_punishment" } }, - [2884]={ + [2921]={ [1]={ [1]={ [1]={ @@ -63084,7 +63821,7 @@ return { [1]="curse_on_projectile_block_level_15_temporal_chains" } }, - [2885]={ + [2922]={ [1]={ [1]={ [1]={ @@ -63104,7 +63841,7 @@ return { [1]="curse_on_spell_block_level_15_elemental_weakness" } }, - [2886]={ + [2923]={ [1]={ [1]={ limit={ @@ -63120,7 +63857,7 @@ return { [1]="display_map_has_oxygen" } }, - [2887]={ + [2924]={ [1]={ [1]={ [1]={ @@ -63140,7 +63877,7 @@ return { [1]="unique_nearby_allies_recover_permyriad_max_life_on_death" } }, - [2888]={ + [2925]={ [1]={ [1]={ limit={ @@ -63165,7 +63902,7 @@ return { [1]="base_steal_power_frenzy_endurance_charges_on_hit_%" } }, - [2889]={ + [2926]={ [1]={ [1]={ [1]={ @@ -63249,7 +63986,7 @@ return { [2]="onslaught_time_granted_on_kill_ms" } }, - [2890]={ + [2927]={ [1]={ [1]={ [1]={ @@ -63273,7 +64010,7 @@ return { [1]="onslaught_time_granted_on_killing_shocked_enemy_ms" } }, - [2891]={ + [2928]={ [1]={ [1]={ limit={ @@ -63289,7 +64026,7 @@ return { [1]="penetrate_elemental_resistance_per_frenzy_charge_%" } }, - [2892]={ + [2929]={ [1]={ [1]={ limit={ @@ -63318,7 +64055,7 @@ return { [1]="damage_vs_enemies_on_full_life_per_power_charge_+%" } }, - [2893]={ + [2930]={ [1]={ [1]={ limit={ @@ -63347,7 +64084,7 @@ return { [1]="damage_vs_enemies_on_low_life_per_power_charge_+%" } }, - [2894]={ + [2931]={ [1]={ [1]={ limit={ @@ -63363,7 +64100,7 @@ return { [1]="local_display_nearby_enemies_all_resistances_%" } }, - [2895]={ + [2932]={ [1]={ [1]={ [1]={ @@ -63383,7 +64120,7 @@ return { [1]="shapers_seed_unique_aura_life_regeneration_rate_per_minute_%" } }, - [2896]={ + [2933]={ [1]={ [1]={ limit={ @@ -63399,7 +64136,7 @@ return { [1]="dominance_additional_block_%_on_nearby_allies_per_100_strength" } }, - [2897]={ + [2934]={ [1]={ [1]={ [1]={ @@ -63436,7 +64173,7 @@ return { [1]="dominance_defences_+%_on_nearby_allies_per_100_strength" } }, - [2898]={ + [2935]={ [1]={ [1]={ limit={ @@ -63452,7 +64189,7 @@ return { [1]="dominance_critical_strike_multiplier_+_on_nearby_allies_per_100_dexterity" } }, - [2899]={ + [2936]={ [1]={ [1]={ limit={ @@ -63481,7 +64218,7 @@ return { [1]="dominance_cast_speed_+%_on_nearby_allies_per_100_intelligence" } }, - [2900]={ + [2937]={ [1]={ [1]={ limit={ @@ -63497,7 +64234,7 @@ return { [1]="shapers_seed_unique_aura_mana_regeneration_rate_+%" } }, - [2901]={ + [2938]={ [1]={ [1]={ limit={ @@ -63518,7 +64255,7 @@ return { [2]="local_grants_aura_maximum_added_fire_damage_per_red_socket" } }, - [2902]={ + [2939]={ [1]={ [1]={ limit={ @@ -63539,7 +64276,7 @@ return { [2]="local_grants_aura_maximum_added_cold_damage_per_green_socket" } }, - [2903]={ + [2940]={ [1]={ [1]={ limit={ @@ -63560,7 +64297,7 @@ return { [2]="local_grants_aura_maximum_added_lightning_damage_per_blue_socket" } }, - [2904]={ + [2941]={ [1]={ [1]={ limit={ @@ -63581,7 +64318,7 @@ return { [2]="local_grants_aura_maximum_added_chaos_damage_per_white_socket" } }, - [2905]={ + [2942]={ [1]={ [1]={ [1]={ @@ -63601,7 +64338,7 @@ return { [1]="life_regen_per_minute_per_endurance_charge" } }, - [2906]={ + [2943]={ [1]={ [1]={ limit={ @@ -63617,7 +64354,7 @@ return { [1]="cannot_knockback" } }, - [2907]={ + [2944]={ [1]={ [1]={ [1]={ @@ -63637,7 +64374,7 @@ return { [1]="attack_damage_that_stuns_also_chills" } }, - [2908]={ + [2945]={ [1]={ [1]={ limit={ @@ -63653,7 +64390,7 @@ return { [1]="display_map_contains_grandmasters" } }, - [2909]={ + [2946]={ [1]={ [1]={ limit={ @@ -63669,7 +64406,7 @@ return { [1]="gain_x_life_when_endurance_charge_expires_or_consumed" } }, - [2910]={ + [2947]={ [1]={ [1]={ [1]={ @@ -63706,7 +64443,7 @@ return { [1]="damage_vs_cursed_enemies_per_enemy_curse_+%" } }, - [2911]={ + [2948]={ [1]={ [1]={ limit={ @@ -63722,7 +64459,7 @@ return { [1]="no_maximum_power_charges" } }, - [2912]={ + [2949]={ [1]={ [1]={ [1]={ @@ -63742,7 +64479,7 @@ return { [1]="enemy_knockback_direction_is_reversed" } }, - [2913]={ + [2950]={ [1]={ [1]={ limit={ @@ -63758,7 +64495,7 @@ return { [1]="immune_to_ally_buff_auras" } }, - [2914]={ + [2951]={ [1]={ [1]={ limit={ @@ -63774,7 +64511,7 @@ return { [1]="allow_2_active_banners" } }, - [2915]={ + [2952]={ [1]={ [1]={ limit={ @@ -63790,7 +64527,7 @@ return { [1]="buff_auras_dont_affect_allies" } }, - [2916]={ + [2953]={ [1]={ [1]={ limit={ @@ -63806,7 +64543,7 @@ return { [1]="hits_can_only_kill_frozen_enemies" } }, - [2917]={ + [2954]={ [1]={ [1]={ limit={ @@ -63822,7 +64559,7 @@ return { [1]="maximum_life_taken_as_physical_damage_on_minion_death_%" } }, - [2918]={ + [2955]={ [1]={ [1]={ limit={ @@ -63838,7 +64575,7 @@ return { [1]="maximum_es_taken_as_physical_damage_on_minion_death_%" } }, - [2919]={ + [2956]={ [1]={ [1]={ limit={ @@ -63867,7 +64604,7 @@ return { [1]="minion_skill_area_of_effect_+%" } }, - [2920]={ + [2957]={ [1]={ [1]={ [1]={ @@ -63887,7 +64624,7 @@ return { [1]="energy_shield_regeneration_%_per_minute_while_shocked" } }, - [2921]={ + [2958]={ [1]={ [1]={ limit={ @@ -63916,7 +64653,7 @@ return { [1]="charge_duration_+%" } }, - [2922]={ + [2959]={ [1]={ [1]={ limit={ @@ -63932,7 +64669,7 @@ return { [1]="physical_damage_taken_on_minion_death" } }, - [2923]={ + [2960]={ [1]={ [1]={ [1]={ @@ -63956,7 +64693,7 @@ return { [1]="onslaught_buff_duration_on_culling_strike_ms" } }, - [2924]={ + [2961]={ [1]={ [1]={ limit={ @@ -63985,7 +64722,7 @@ return { [1]="attack_and_cast_speed_+%_during_onslaught" } }, - [2925]={ + [2962]={ [1]={ [1]={ limit={ @@ -64001,7 +64738,7 @@ return { [1]="base_avoid_chill_%_while_have_onslaught" } }, - [2926]={ + [2963]={ [1]={ [1]={ [1]={ @@ -64021,7 +64758,7 @@ return { [1]="chaos_damage_poisons" } }, - [2927]={ + [2964]={ [1]={ [1]={ [1]={ @@ -64054,7 +64791,7 @@ return { [1]="chaos_damage_chance_to_poison_%" } }, - [2928]={ + [2965]={ [1]={ [1]={ limit={ @@ -64079,7 +64816,7 @@ return { [1]="mine_extra_uses" } }, - [2929]={ + [2966]={ [1]={ [1]={ limit={ @@ -64095,7 +64832,7 @@ return { [1]="base_fire_damage_heals" } }, - [2930]={ + [2967]={ [1]={ [1]={ limit={ @@ -64111,7 +64848,7 @@ return { [1]="base_cold_damage_heals" } }, - [2931]={ + [2968]={ [1]={ [1]={ limit={ @@ -64127,7 +64864,7 @@ return { [1]="base_lightning_damage_heals" } }, - [2932]={ + [2969]={ [1]={ [1]={ limit={ @@ -64143,7 +64880,7 @@ return { [1]="base_elemental_damage_heals" } }, - [2933]={ + [2970]={ [1]={ [1]={ limit={ @@ -64159,7 +64896,7 @@ return { [1]="avoid_freeze_chill_ignite_%_while_have_onslaught" } }, - [2934]={ + [2971]={ [1]={ [1]={ [1]={ @@ -64179,7 +64916,7 @@ return { [1]="ignites_reflected_to_self" } }, - [2935]={ + [2972]={ [1]={ [1]={ limit={ @@ -64195,7 +64932,7 @@ return { [1]="sword_physical_damage_%_to_add_as_fire" } }, - [2936]={ + [2973]={ [1]={ [1]={ [1]={ @@ -64236,7 +64973,7 @@ return { [1]="gain_onslaught_when_ignited_ms" } }, - [2937]={ + [2974]={ [1]={ [1]={ [1]={ @@ -64269,7 +65006,7 @@ return { [1]="blind_nearby_enemies_when_ignited_%" } }, - [2938]={ + [2975]={ [1]={ [1]={ limit={ @@ -64285,7 +65022,7 @@ return { [1]="map_non_unique_equipment_drops_as_sell_price" } }, - [2939]={ + [2976]={ [1]={ [1]={ limit={ @@ -64301,7 +65038,7 @@ return { [1]="map_items_drop_corrupted" } }, - [2940]={ + [2977]={ [1]={ [1]={ limit={ @@ -64317,7 +65054,7 @@ return { [1]="map_weapons_drop_animated" } }, - [2941]={ + [2978]={ [1]={ [1]={ [1]={ @@ -64409,7 +65146,7 @@ return { [2]="chance_to_gain_unholy_might_on_block_ms" } }, - [2942]={ + [2979]={ [1]={ [1]={ limit={ @@ -64425,7 +65162,7 @@ return { [1]="local_jewel_nearby_passives_str_to_dex" } }, - [2943]={ + [2980]={ [1]={ [1]={ limit={ @@ -64441,7 +65178,7 @@ return { [1]="local_jewel_nearby_passives_str_to_int" } }, - [2944]={ + [2981]={ [1]={ [1]={ limit={ @@ -64457,7 +65194,7 @@ return { [1]="local_jewel_nearby_passives_dex_to_str" } }, - [2945]={ + [2982]={ [1]={ [1]={ limit={ @@ -64473,7 +65210,7 @@ return { [1]="local_jewel_nearby_passives_dex_to_int" } }, - [2946]={ + [2983]={ [1]={ [1]={ limit={ @@ -64489,7 +65226,7 @@ return { [1]="local_jewel_nearby_passives_int_to_str" } }, - [2947]={ + [2984]={ [1]={ [1]={ limit={ @@ -64505,7 +65242,7 @@ return { [1]="local_jewel_nearby_passives_int_to_dex" } }, - [2948]={ + [2985]={ [1]={ [1]={ [1]={ @@ -64542,7 +65279,7 @@ return { [1]="skill_area_of_effect_when_unarmed_+%" } }, - [2949]={ + [2986]={ [1]={ [1]={ limit={ @@ -64558,7 +65295,7 @@ return { [1]="recover_%_maximum_life_when_corpse_destroyed_or_consumed" } }, - [2950]={ + [2987]={ [1]={ [1]={ limit={ @@ -64587,7 +65324,7 @@ return { [1]="local_unique_jewel_totem_life_+X%_per_10_str_in_radius" } }, - [2951]={ + [2988]={ [1]={ [1]={ limit={ @@ -64603,7 +65340,43 @@ return { [1]="local_unique_jewel_with_4_notables_gain_X_random_rare_monster_mods_on_kill" } }, - [2952]={ + [2989]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="If no Notables Allocated in Radius, When you Kill a Rare monster, you gain {0} of its Modifiers for 20 seconds" + } + }, + stats={ + [1]="local_unique_jewel_with_no_notables_gain_X_random_rare_monster_mods_on_kill" + } + }, + [2990]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextSmallPassives" + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="With {0} Small Passives Allocated in Radius, When you Kill a Rare monster, you gain 1 of its Modifiers for 20 seconds" + } + }, + stats={ + [1]="local_unique_jewel_with_x_small_nodes_gain_1_random_rare_monster_mods_on_kill" + } + }, + [2991]={ [1]={ [1]={ limit={ @@ -64619,7 +65392,7 @@ return { [1]="gain_X_random_rare_monster_mods_on_kill" } }, - [2953]={ + [2992]={ [1]={ [1]={ limit={ @@ -64648,7 +65421,7 @@ return { [1]="recover_%_of_maximum_life_on_block" } }, - [2954]={ + [2993]={ [1]={ [1]={ limit={ @@ -64664,7 +65437,7 @@ return { [1]="minion_recover_%_of_maximum_life_on_block" } }, - [2955]={ + [2994]={ [1]={ [1]={ limit={ @@ -64680,7 +65453,7 @@ return { [1]="totems_cannot_be_stunned" } }, - [2956]={ + [2995]={ [1]={ [1]={ limit={ @@ -64709,7 +65482,7 @@ return { [1]="damage_+%_while_leeching" } }, - [2957]={ + [2996]={ [1]={ [1]={ [1]={ @@ -64742,7 +65515,39 @@ return { [1]="display_bow_range_+" } }, - [2958]={ + [2997]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Increases and Reductions to Armour in Radius are Transformed to apply to Evasion Rating" + } + }, + stats={ + [1]="local_unique_jewel_armour_increases_applies_to_evasion" + } + }, + [2998]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Increases and Reductions to Evasion Rating in Radius are Transformed to apply to Armour" + } + }, + stats={ + [1]="local_unique_jewel_evasion_increases_applies_to_armour" + } + }, + [2999]={ [1]={ [1]={ limit={ @@ -64758,7 +65563,7 @@ return { [1]="local_unique_jewel_melee_applies_to_bow" } }, - [2959]={ + [3000]={ [1]={ [1]={ limit={ @@ -64774,7 +65579,7 @@ return { [1]="local_unique_jewel_X_dexterity_per_1_dexterity_allocated_in_radius" } }, - [2960]={ + [3001]={ [1]={ [1]={ limit={ @@ -64790,7 +65595,7 @@ return { [1]="local_unique_jewel_X_intelligence_per_1_intelligence_allocated_in_radius" } }, - [2961]={ + [3002]={ [1]={ [1]={ limit={ @@ -64806,7 +65611,7 @@ return { [1]="local_unique_jewel_X_strength_per_1_strength_allocated_in_radius" } }, - [2962]={ + [3003]={ [1]={ [1]={ limit={ @@ -64835,7 +65640,7 @@ return { [1]="local_unique_jewel_chaos_damage_+%_per_10_int_in_radius" } }, - [2963]={ + [3004]={ [1]={ [1]={ limit={ @@ -64851,7 +65656,7 @@ return { [1]="local_unique_jewel_passives_in_radius_applied_to_minions_instead" } }, - [2964]={ + [3005]={ [1]={ [1]={ limit={ @@ -64867,7 +65672,36 @@ return { [1]="passive_applies_to_minions" } }, - [2965]={ + [3006]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Determination has {0}% increased Aura Effect while you have no Endurance Charges" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Determination has {0}% reduced Aura Effect while you have no Endurance Charges" + } + }, + stats={ + [1]="determination_aura_effect_+%_while_no_endurance_charges" + } + }, + [3007]={ [1]={ [1]={ [1]={ @@ -64887,7 +65721,7 @@ return { [1]="life_gained_on_hit_per_enemy_status_ailment" } }, - [2966]={ + [3008]={ [1]={ [1]={ [1]={ @@ -64924,7 +65758,7 @@ return { [1]="life_gained_on_spell_hit_per_enemy_status_ailment" } }, - [2967]={ + [3009]={ [1]={ [1]={ limit={ @@ -64953,7 +65787,7 @@ return { [1]="life_regeneration_rate_+%_while_es_full" } }, - [2968]={ + [3010]={ [1]={ [1]={ limit={ @@ -64969,7 +65803,7 @@ return { [1]="local_unique_jewel_with_x_int_in_radius_+1_curse" } }, - [2969]={ + [3011]={ [1]={ [1]={ [1]={ @@ -65018,7 +65852,7 @@ return { [1]="melee_range_+_while_unarmed" } }, - [2970]={ + [3012]={ [1]={ [1]={ [1]={ @@ -65055,7 +65889,7 @@ return { [1]="damage_+%_per_equipped_magic_item" } }, - [2971]={ + [3013]={ [1]={ [1]={ limit={ @@ -65084,7 +65918,7 @@ return { [1]="spell_damage_+%_while_es_full" } }, - [2972]={ + [3014]={ [1]={ [1]={ limit={ @@ -65109,7 +65943,7 @@ return { [1]="totem_number_of_additional_projectiles" } }, - [2973]={ + [3015]={ [1]={ [1]={ [1]={ @@ -65129,7 +65963,7 @@ return { [1]="chance_to_gain_unholy_might_on_melee_kill_%" } }, - [2974]={ + [3016]={ [1]={ [1]={ limit={ @@ -65158,7 +65992,7 @@ return { [1]="spell_damage_+%_while_no_mana_reserved" } }, - [2975]={ + [3017]={ [1]={ [1]={ [1]={ @@ -65195,7 +66029,7 @@ return { [1]="spell_damage_+%_while_not_low_mana" } }, - [2976]={ + [3018]={ [1]={ [1]={ [1]={ @@ -65232,7 +66066,7 @@ return { [1]="mana_cost_+%_while_not_low_mana" } }, - [2977]={ + [3019]={ [1]={ [1]={ [1]={ @@ -65269,7 +66103,7 @@ return { [1]="all_attributes_+%_per_assigned_keystone" } }, - [2978]={ + [3020]={ [1]={ [1]={ limit={ @@ -65294,7 +66128,7 @@ return { [1]="number_of_additional_clones" } }, - [2979]={ + [3021]={ [1]={ [1]={ limit={ @@ -65323,7 +66157,7 @@ return { [1]="object_inherent_attack_skills_damage_+%_final_per_frenzy_charge" } }, - [2980]={ + [3022]={ [1]={ [1]={ [1]={ @@ -65343,7 +66177,7 @@ return { [1]="skill_effect_duration_per_100_int" } }, - [2981]={ + [3023]={ [1]={ [1]={ limit={ @@ -65359,7 +66193,7 @@ return { [1]="local_unique_jewel_intelligence_per_unallocated_node_in_radius" } }, - [2982]={ + [3024]={ [1]={ [1]={ limit={ @@ -65375,7 +66209,7 @@ return { [1]="local_unique_jewel_with_70_dex_physical_damage_to_add_as_chaos_%" } }, - [2983]={ + [3025]={ [1]={ [1]={ limit={ @@ -65391,7 +66225,7 @@ return { [1]="local_unique_jewel_with_70_str_life_recovery_speed_+%" } }, - [2984]={ + [3026]={ [1]={ [1]={ limit={ @@ -65407,7 +66241,7 @@ return { [1]="cannot_be_cursed_with_silence" } }, - [2985]={ + [3027]={ [1]={ [1]={ limit={ @@ -65436,7 +66270,7 @@ return { [1]="vaal_skill_damage_+%" } }, - [2986]={ + [3028]={ [1]={ [1]={ limit={ @@ -65465,7 +66299,7 @@ return { [1]="damage_+%_while_dead" } }, - [2987]={ + [3029]={ [1]={ [1]={ limit={ @@ -65494,7 +66328,7 @@ return { [1]="maximum_life_+%_per_equipped_corrupted_item" } }, - [2988]={ + [3030]={ [1]={ [1]={ limit={ @@ -65523,7 +66357,7 @@ return { [1]="maximum_es_+%_per_equipped_corrupted_item" } }, - [2989]={ + [3031]={ [1]={ [1]={ [1]={ @@ -65560,7 +66394,7 @@ return { [1]="chaos_damage_+%_per_equipped_corrupted_item" } }, - [2990]={ + [3032]={ [1]={ [1]={ [1]={ @@ -65597,7 +66431,7 @@ return { [1]="life_leech_speed_+%_per_equipped_corrupted_item" } }, - [2991]={ + [3033]={ [1]={ [1]={ [1]={ @@ -65617,7 +66451,7 @@ return { [1]="life_regeneration_rate_per_minute_for_each_equipped_uncorrupted_item" } }, - [2992]={ + [3034]={ [1]={ [1]={ [1]={ @@ -65654,7 +66488,7 @@ return { [1]="mana_leech_speed_+%_per_equipped_corrupted_item" } }, - [2993]={ + [3035]={ [1]={ [1]={ limit={ @@ -65670,7 +66504,7 @@ return { [1]="all_resistances_%_per_equipped_corrupted_item" } }, - [2994]={ + [3036]={ [1]={ [1]={ limit={ @@ -65686,7 +66520,7 @@ return { [1]="chance_to_gain_vaal_soul_on_kill_%" } }, - [2995]={ + [3037]={ [1]={ [1]={ limit={ @@ -65695,7 +66529,7 @@ return { [2]="#" } }, - text="{0}% increased Vaal Skill Effect Duration" + text="Vaal Skills have {0}% increased Skill Effect Duration" }, [2]={ [1]={ @@ -65708,14 +66542,14 @@ return { [2]=-1 } }, - text="{0}% reduced Vaal Skill Effect Duration" + text="Vaal Skills have {0}% reduced Skill Effect Duration" } }, stats={ [1]="vaal_skill_effect_duration_+%" } }, - [2996]={ + [3038]={ [1]={ [1]={ limit={ @@ -65744,7 +66578,7 @@ return { [1]="vaal_skill_soul_gain_preventation_duration_+%" } }, - [2997]={ + [3039]={ [1]={ [1]={ limit={ @@ -65773,7 +66607,7 @@ return { [1]="vaal_skill_critical_strike_chance_+%" } }, - [2998]={ + [3040]={ [1]={ [1]={ limit={ @@ -65789,7 +66623,7 @@ return { [1]="vaal_skill_critical_strike_multiplier_+" } }, - [2999]={ + [3041]={ [1]={ [1]={ limit={ @@ -65805,7 +66639,7 @@ return { [1]="chance_to_gain_vaal_soul_on_enemy_shatter_%" } }, - [3000]={ + [3042]={ [1]={ [1]={ limit={ @@ -65834,7 +66668,7 @@ return { [1]="mana_cost_+%_on_totemified_aura_skills" } }, - [3001]={ + [3043]={ [1]={ [1]={ limit={ @@ -65863,7 +66697,7 @@ return { [1]="corrupted_gem_experience_gain_+%" } }, - [3002]={ + [3044]={ [1]={ [1]={ [1]={ @@ -65883,7 +66717,7 @@ return { [1]="life_leech_uses_chaos_damage_when_X_corrupted_items_equipped" } }, - [3003]={ + [3045]={ [1]={ [1]={ [1]={ @@ -65903,7 +66737,7 @@ return { [1]="half_physical_bypasses_es_half_chaos_damages_es_when_X_corrupted_items_equipped" } }, - [3004]={ + [3046]={ [1]={ [1]={ [1]={ @@ -65931,7 +66765,7 @@ return { [1]="gain_soul_eater_with_equipped_corrupted_items_on_vaal_skill_use_ms" } }, - [3005]={ + [3047]={ [1]={ [1]={ limit={ @@ -65947,7 +66781,7 @@ return { [1]="spend_energy_shield_for_costs_before_mana" } }, - [3006]={ + [3048]={ [1]={ [1]={ limit={ @@ -65963,7 +66797,7 @@ return { [1]="energy_shield_protects_mana" } }, - [3007]={ + [3049]={ [1]={ [1]={ [1]={ @@ -65996,7 +66830,7 @@ return { [1]="enemy_extra_damage_rolls_while_affected_by_vulnerability" } }, - [3008]={ + [3050]={ [1]={ [1]={ limit={ @@ -66012,7 +66846,7 @@ return { [1]="no_energy_shield_recovery" } }, - [3009]={ + [3051]={ [1]={ [1]={ limit={ @@ -66028,7 +66862,7 @@ return { [1]="you_count_as_full_life_while_affected_by_vulnerability" } }, - [3010]={ + [3052]={ [1]={ [1]={ limit={ @@ -66044,7 +66878,7 @@ return { [1]="you_count_as_low_life_while_affected_by_vulnerability" } }, - [3011]={ + [3053]={ [1]={ [1]={ [1]={ @@ -66077,7 +66911,7 @@ return { [1]="chance_to_curse_self_with_punishment_on_kill_%" } }, - [3012]={ + [3054]={ [1]={ [1]={ [1]={ @@ -66097,7 +66931,7 @@ return { [1]="self_cursed_with_level_x_vulnerability" } }, - [3013]={ + [3055]={ [1]={ [1]={ limit={ @@ -66113,7 +66947,7 @@ return { [1]="local_unique_jewel_evasion_rating_+%_per_X_dex_in_radius" } }, - [3014]={ + [3056]={ [1]={ [1]={ limit={ @@ -66129,7 +66963,7 @@ return { [1]="local_unique_jewel_claw_physical_damage_+%_per_X_dex_in_radius" } }, - [3015]={ + [3057]={ [1]={ [1]={ [1]={ @@ -66149,7 +66983,7 @@ return { [1]="local_unique_jewel_damage_increases_applies_to_fire_damage" } }, - [3016]={ + [3058]={ [1]={ [1]={ limit={ @@ -66165,7 +66999,7 @@ return { [1]="local_unique_jewel_physical_damage_increases_applies_to_cold_damage" } }, - [3017]={ + [3059]={ [1]={ [1]={ limit={ @@ -66181,7 +67015,7 @@ return { [1]="local_unique_jewel_cold_damage_increases_applies_to_physical_damage" } }, - [3018]={ + [3060]={ [1]={ [1]={ limit={ @@ -66197,7 +67031,7 @@ return { [1]="local_unique_jewel_energy_shield_increases_applies_to_armour_doubled" } }, - [3019]={ + [3061]={ [1]={ [1]={ limit={ @@ -66213,7 +67047,7 @@ return { [1]="local_unique_jewel_life_increases_applies_to_energy_shield" } }, - [3020]={ + [3062]={ [1]={ [1]={ limit={ @@ -66242,7 +67076,7 @@ return { [1]="base_enemy_critical_strike_chance_+%_against_self" } }, - [3021]={ + [3063]={ [1]={ [1]={ [1]={ @@ -66262,7 +67096,7 @@ return { [1]="enemy_additional_critical_strike_chance_against_self" } }, - [3022]={ + [3064]={ [1]={ [1]={ [1]={ @@ -66299,7 +67133,7 @@ return { [1]="enemy_critical_strike_chance_+%_against_self_20_times_value" } }, - [3023]={ + [3065]={ [1]={ [1]={ limit={ @@ -66315,7 +67149,7 @@ return { [1]="local_unique_jewel_one_additional_maximum_lightning_damage_per_X_dex" } }, - [3024]={ + [3066]={ [1]={ [1]={ limit={ @@ -66331,7 +67165,7 @@ return { [1]="local_unique_jewel_additional_life_per_X_int_in_radius" } }, - [3025]={ + [3067]={ [1]={ [1]={ limit={ @@ -66347,7 +67181,7 @@ return { [1]="local_unique_jewel_chaos_damage_+%_per_X_int_in_radius" } }, - [3026]={ + [3068]={ [1]={ [1]={ limit={ @@ -66363,7 +67197,7 @@ return { [1]="local_unique_jewel_chill_freeze_duration_-%_per_X_dex_in_radius" } }, - [3027]={ + [3069]={ [1]={ [1]={ limit={ @@ -66379,7 +67213,7 @@ return { [1]="local_unique_jewel_life_increases_applies_to_mana_doubled" } }, - [3028]={ + [3070]={ [1]={ [1]={ limit={ @@ -66395,7 +67229,7 @@ return { [1]="local_unique_jewel_dex_and_int_apply_to_str_melee_damage_bonus_in_radius" } }, - [3029]={ + [3071]={ [1]={ [1]={ [1]={ @@ -66432,7 +67266,7 @@ return { [1]="local_unique_jewel_unarmed_damage_+%_per_X_dex_in_radius" } }, - [3030]={ + [3072]={ [1]={ [1]={ [1]={ @@ -66465,7 +67299,7 @@ return { [1]="chill_enemy_when_hit_duration_ms" } }, - [3031]={ + [3073]={ [1]={ [1]={ limit={ @@ -66494,7 +67328,7 @@ return { [1]="new_arctic_armour_physical_damage_taken_when_hit_+%_final" } }, - [3032]={ + [3074]={ [1]={ [1]={ limit={ @@ -66523,7 +67357,7 @@ return { [1]="new_arctic_armour_fire_damage_taken_when_hit_+%_final" } }, - [3033]={ + [3075]={ [1]={ [1]={ [1]={ @@ -66560,7 +67394,7 @@ return { [1]="enemy_aggro_radius_+%" } }, - [3034]={ + [3076]={ [1]={ [1]={ [1]={ @@ -66585,7 +67419,7 @@ return { [2]="local_unique_regen_es_from_removed_life_duration_ms" } }, - [3035]={ + [3077]={ [1]={ [1]={ limit={ @@ -66601,7 +67435,7 @@ return { [1]="local_unique_jewel_physical_attack_damage_+1%_per_x_strength_in_radius" } }, - [3036]={ + [3078]={ [1]={ [1]={ limit={ @@ -66617,7 +67451,7 @@ return { [1]="local_unique_jewel_fortify_duration_+1%_per_x_int_in_radius" } }, - [3037]={ + [3079]={ [1]={ [1]={ limit={ @@ -66633,7 +67467,7 @@ return { [1]="local_unique_jewel_fire_damage_+1%_per_x_int_in_radius" } }, - [3038]={ + [3080]={ [1]={ [1]={ limit={ @@ -66649,7 +67483,7 @@ return { [1]="local_unique_jewel_cold_damage_+1%_per_x_int_in_radius" } }, - [3039]={ + [3081]={ [1]={ [1]={ limit={ @@ -66665,7 +67499,7 @@ return { [1]="local_unique_jewel_physical_damage_+1%_per_int_in_radius" } }, - [3040]={ + [3082]={ [1]={ [1]={ limit={ @@ -66681,7 +67515,7 @@ return { [1]="local_unique_jewel_physical_attack_damage_+1%_per_x_dex_in_radius" } }, - [3041]={ + [3083]={ [1]={ [1]={ limit={ @@ -66697,7 +67531,7 @@ return { [1]="local_unique_jewel_additional_physical_damage_reduction_%_per_10_str_allocated_in_radius" } }, - [3042]={ + [3084]={ [1]={ [1]={ [1]={ @@ -66717,7 +67551,7 @@ return { [1]="local_unique_jewel_energy_shield_regeneration_rate_per_minute_%_per_10_int_allocated_in_radius" } }, - [3043]={ + [3085]={ [1]={ [1]={ limit={ @@ -66746,7 +67580,7 @@ return { [1]="local_unique_jewel_movement_speed_+%_per_10_dex_allocated_in_radius" } }, - [3044]={ + [3086]={ [1]={ [1]={ limit={ @@ -66762,7 +67596,7 @@ return { [1]="local_unique_jewel_projectile_damage_+1%_per_x_dex_in_radius" } }, - [3045]={ + [3087]={ [1]={ [1]={ limit={ @@ -66778,7 +67612,7 @@ return { [1]="local_unique_jewel_glacial_cascade_additional_sequence_with_x_int_in_radius" } }, - [3046]={ + [3088]={ [1]={ [1]={ limit={ @@ -66794,7 +67628,7 @@ return { [1]="local_unique_jewel_animate_weapon_animates_bows_and_wands_with_x_dex_in_radius" } }, - [3047]={ + [3089]={ [1]={ [1]={ limit={ @@ -66810,7 +67644,7 @@ return { [1]="local_unique_jewel_split_arrow_fires_additional_arrow_with_x_dex_in_radius" } }, - [3048]={ + [3090]={ [1]={ [1]={ limit={ @@ -66826,7 +67660,7 @@ return { [1]="local_unique_jewel_accuracy_rating_+_per_10_int_unallocated_in_radius" } }, - [3049]={ + [3091]={ [1]={ [1]={ limit={ @@ -66842,7 +67676,7 @@ return { [1]="local_unique_jewel_critical_strike_multiplier_+_per_10_str_unallocated_in_radius" } }, - [3050]={ + [3092]={ [1]={ [1]={ limit={ @@ -66858,7 +67692,7 @@ return { [1]="local_unique_jewel_maximum_mana_+_per_10_dex_unallocated_in_radius" } }, - [3051]={ + [3093]={ [1]={ [1]={ limit={ @@ -66883,7 +67717,7 @@ return { [1]="split_arrow_number_of_additional_arrows" } }, - [3052]={ + [3094]={ [1]={ [1]={ limit={ @@ -66899,7 +67733,7 @@ return { [1]="animate_weapon_can_animate_bows" } }, - [3053]={ + [3095]={ [1]={ [1]={ limit={ @@ -66915,7 +67749,7 @@ return { [1]="animate_weapon_can_animate_wands" } }, - [3054]={ + [3096]={ [1]={ [1]={ [1]={ @@ -66935,7 +67769,7 @@ return { [1]="local_display_nearby_enemies_take_X_lightning_damage_per_minute" } }, - [3055]={ + [3097]={ [1]={ [1]={ limit={ @@ -66951,7 +67785,7 @@ return { [1]="damage_taken_goes_to_mana_%_per_power_charge" } }, - [3056]={ + [3098]={ [1]={ [1]={ limit={ @@ -66980,7 +67814,7 @@ return { [1]="critical_strike_chance_+%_per_power_charge" } }, - [3057]={ + [3099]={ [1]={ [1]={ [1]={ @@ -67004,7 +67838,7 @@ return { [1]="enchantment_boots_life_regen_per_minute_%_for_4_seconds_when_hit" } }, - [3058]={ + [3100]={ [1]={ [1]={ limit={ @@ -67033,7 +67867,7 @@ return { [1]="ball_lightning_damage_+%" } }, - [3059]={ + [3101]={ [1]={ [1]={ limit={ @@ -67062,7 +67896,7 @@ return { [1]="bleeding_damage_+%" } }, - [3060]={ + [3102]={ [1]={ [1]={ limit={ @@ -67091,7 +67925,7 @@ return { [1]="base_poison_duration_+%" } }, - [3061]={ + [3103]={ [1]={ [1]={ limit={ @@ -67120,7 +67954,7 @@ return { [1]="unique_volkuurs_clutch_poison_duration_+%_final" } }, - [3062]={ + [3104]={ [1]={ [1]={ [1]={ @@ -67140,7 +67974,7 @@ return { [1]="global_poison_on_hit" } }, - [3063]={ + [3105]={ [1]={ [1]={ [1]={ @@ -67173,7 +68007,7 @@ return { [1]="base_chance_to_poison_on_hit_%" } }, - [3064]={ + [3106]={ [1]={ [1]={ [1]={ @@ -67206,7 +68040,7 @@ return { [1]="minions_chance_to_poison_on_hit_%" } }, - [3065]={ + [3107]={ [1]={ [1]={ [1]={ @@ -67239,7 +68073,7 @@ return { [1]="chance_to_poison_on_hit_with_attacks_%" } }, - [3066]={ + [3108]={ [1]={ [1]={ limit={ @@ -67255,7 +68089,7 @@ return { [1]="fire_damage_taken_%_as_cold" } }, - [3067]={ + [3109]={ [1]={ [1]={ limit={ @@ -67271,7 +68105,7 @@ return { [1]="fire_damage_taken_%_as_lightning" } }, - [3068]={ + [3110]={ [1]={ [1]={ limit={ @@ -67287,7 +68121,7 @@ return { [1]="cold_damage_taken_%_as_fire" } }, - [3069]={ + [3111]={ [1]={ [1]={ limit={ @@ -67303,7 +68137,7 @@ return { [1]="cold_damage_taken_%_as_lightning" } }, - [3070]={ + [3112]={ [1]={ [1]={ limit={ @@ -67319,7 +68153,7 @@ return { [1]="lightning_damage_taken_%_as_fire" } }, - [3071]={ + [3113]={ [1]={ [1]={ limit={ @@ -67348,7 +68182,7 @@ return { [1]="base_poison_damage_+%" } }, - [3072]={ + [3114]={ [1]={ [1]={ limit={ @@ -67364,7 +68198,7 @@ return { [1]="lightning_damage_taken_%_as_cold" } }, - [3073]={ + [3115]={ [1]={ [1]={ limit={ @@ -67393,7 +68227,7 @@ return { [1]="flask_charges_gained_+%_during_flask_effect" } }, - [3074]={ + [3116]={ [1]={ [1]={ limit={ @@ -67422,7 +68256,7 @@ return { [1]="mana_regeneration_rate_+%_during_flask_effect" } }, - [3075]={ + [3117]={ [1]={ [1]={ limit={ @@ -67438,7 +68272,7 @@ return { [1]="life_leech_applies_to_enemies_%" } }, - [3076]={ + [3118]={ [1]={ [1]={ limit={ @@ -67467,7 +68301,7 @@ return { [1]="movement_speed_+%_during_flask_effect" } }, - [3077]={ + [3119]={ [1]={ [1]={ limit={ @@ -67483,7 +68317,7 @@ return { [1]="critical_strike_multiplier_+_vs_bleeding_enemies" } }, - [3078]={ + [3120]={ [1]={ [1]={ limit={ @@ -67499,7 +68333,7 @@ return { [1]="critical_strike_multiplier_+_vs_burning_enemies" } }, - [3079]={ + [3121]={ [1]={ [1]={ limit={ @@ -67515,7 +68349,7 @@ return { [1]="critical_strike_multiplier_+_per_1%_block_chance" } }, - [3080]={ + [3122]={ [1]={ [1]={ limit={ @@ -67544,7 +68378,7 @@ return { [1]="critical_strike_chance_+%_vs_bleeding_enemies" } }, - [3081]={ + [3123]={ [1]={ [1]={ [1]={ @@ -67564,7 +68398,7 @@ return { [1]="minion_no_extra_bleed_damage_while_moving" } }, - [3082]={ + [3124]={ [1]={ [1]={ [1]={ @@ -67584,7 +68418,7 @@ return { [1]="no_extra_bleed_damage_while_moving" } }, - [3083]={ + [3125]={ [1]={ [1]={ limit={ @@ -67600,7 +68434,7 @@ return { [1]="map_player_corrupt_blood_when_hit_%_average_damage_to_deal_per_minute_per_stack" } }, - [3084]={ + [3126]={ [1]={ [1]={ limit={ @@ -67616,7 +68450,7 @@ return { [1]="action_speed_cannot_be_reduced_below_base" } }, - [3085]={ + [3127]={ [1]={ [1]={ [1]={ @@ -67636,7 +68470,7 @@ return { [1]="hellscape_boots_action_speed_+%_minimum_value" } }, - [3086]={ + [3128]={ [1]={ [1]={ limit={ @@ -67652,7 +68486,7 @@ return { [1]="movement_speed_cannot_be_reduced_below_base" } }, - [3087]={ + [3129]={ [1]={ [1]={ limit={ @@ -67681,7 +68515,7 @@ return { [1]="damage_+%_while_fortified" } }, - [3088]={ + [3130]={ [1]={ [1]={ [1]={ @@ -67701,7 +68535,7 @@ return { [1]="life_regeneration_per_minute_%_while_fortified" } }, - [3089]={ + [3131]={ [1]={ [1]={ limit={ @@ -67730,7 +68564,7 @@ return { [1]="damage_+%_per_endurance_charge" } }, - [3090]={ + [3132]={ [1]={ [1]={ limit={ @@ -67746,7 +68580,7 @@ return { [1]="restore_life_and_mana_on_warcry_%" } }, - [3091]={ + [3133]={ [1]={ [1]={ limit={ @@ -67762,7 +68596,7 @@ return { [1]="restore_life_on_warcry_%" } }, - [3092]={ + [3134]={ [1]={ [1]={ limit={ @@ -67791,7 +68625,7 @@ return { [1]="warcry_duration_+%" } }, - [3093]={ + [3135]={ [1]={ [1]={ [1]={ @@ -67828,7 +68662,7 @@ return { [1]="attack_speed_+%_when_hit" } }, - [3094]={ + [3136]={ [1]={ [1]={ limit={ @@ -67857,7 +68691,7 @@ return { [1]="damage_+%_when_not_on_low_life" } }, - [3095]={ + [3137]={ [1]={ [1]={ limit={ @@ -67886,7 +68720,7 @@ return { [1]="damage_+%_while_totem_active" } }, - [3096]={ + [3138]={ [1]={ [1]={ [1]={ @@ -67906,7 +68740,7 @@ return { [1]="physical_damage_%_added_as_fire_damage_on_kill" } }, - [3097]={ + [3139]={ [1]={ [1]={ [1]={ @@ -67943,7 +68777,7 @@ return { [1]="attack_and_cast_speed_+%_on_placing_totem" } }, - [3098]={ + [3140]={ [1]={ [1]={ limit={ @@ -67972,7 +68806,7 @@ return { [1]="damage_+%_to_rare_and_unique_enemies" } }, - [3099]={ + [3141]={ [1]={ [1]={ [1]={ @@ -67996,7 +68830,7 @@ return { [1]="life_leech_on_overkill_damage_%" } }, - [3100]={ + [3142]={ [1]={ [1]={ limit={ @@ -68025,7 +68859,7 @@ return { [1]="attack_speed_+%_while_leeching" } }, - [3101]={ + [3143]={ [1]={ [1]={ limit={ @@ -68041,7 +68875,7 @@ return { [1]="life_leech_does_not_stop_at_full_life" } }, - [3102]={ + [3144]={ [1]={ [1]={ limit={ @@ -68057,7 +68891,7 @@ return { [1]="cannot_be_stunned_while_leeching" } }, - [3103]={ + [3145]={ [1]={ [1]={ [1]={ @@ -68094,7 +68928,7 @@ return { [1]="armour_and_evasion_on_low_life_+%" } }, - [3104]={ + [3146]={ [1]={ [1]={ limit={ @@ -68123,7 +68957,7 @@ return { [1]="taunted_enemies_chance_to_be_stunned_+%" } }, - [3105]={ + [3147]={ [1]={ [1]={ limit={ @@ -68152,7 +68986,7 @@ return { [1]="attack_speed_while_fortified_+%" } }, - [3106]={ + [3148]={ [1]={ [1]={ [1]={ @@ -68172,7 +69006,7 @@ return { [1]="block_chance_on_damage_taken_%" } }, - [3107]={ + [3149]={ [1]={ [1]={ [1]={ @@ -68209,7 +69043,7 @@ return { [1]="damage_while_no_damage_taken_+%" } }, - [3108]={ + [3150]={ [1]={ [1]={ limit={ @@ -68238,7 +69072,7 @@ return { [1]="physical_damage_on_block_+%" } }, - [3109]={ + [3151]={ [1]={ [1]={ [1]={ @@ -68275,7 +69109,7 @@ return { [1]="attack_and_cast_speed_when_hit_+%" } }, - [3110]={ + [3152]={ [1]={ [1]={ [1]={ @@ -68312,7 +69146,7 @@ return { [1]="fire_damage_+%_to_blinded_enemies" } }, - [3111]={ + [3153]={ [1]={ [1]={ limit={ @@ -68341,7 +69175,7 @@ return { [1]="spell_damage_taken_+%_from_blinded_enemies" } }, - [3112]={ + [3154]={ [1]={ [1]={ limit={ @@ -68357,7 +69191,7 @@ return { [1]="totems_gain_%_of_players_armour" } }, - [3113]={ + [3155]={ [1]={ [1]={ [1]={ @@ -68394,7 +69228,7 @@ return { [1]="movement_velocity_while_not_hit_+%" } }, - [3114]={ + [3156]={ [1]={ [1]={ [1]={ @@ -68418,7 +69252,7 @@ return { [1]="gain_life_and_mana_leech_on_kill_permyriad" } }, - [3115]={ + [3157]={ [1]={ [1]={ limit={ @@ -68434,7 +69268,7 @@ return { [1]="local_unique_jewel_glacial_hammer_item_rarity_on_shattering_enemy_+%_with_50_strength_in_radius" } }, - [3116]={ + [3158]={ [1]={ [1]={ limit={ @@ -68450,7 +69284,7 @@ return { [1]="local_unique_jewel_spectral_throw_damage_for_each_enemy_hit_with_spectral_weapon_+%_with_50_dexterity_in_radius" } }, - [3117]={ + [3159]={ [1]={ [1]={ limit={ @@ -68466,7 +69300,7 @@ return { [1]="local_unique_jewel_double_strike_chance_to_trigger_on_kill_effects_an_additional_time_%_with_50_dexterity_in_radius" } }, - [3118]={ + [3160]={ [1]={ [1]={ limit={ @@ -68482,7 +69316,7 @@ return { [1]="local_unique_jewel_viper_strike_attack_damage_per_poison_on_enemy_+%_with_50_dexterity_in_radius" } }, - [3119]={ + [3161]={ [1]={ [1]={ limit={ @@ -68498,7 +69332,7 @@ return { [1]="local_unique_jewel_heavy_strike_chance_to_deal_double_damage_%_with_50_strength_in_radius" } }, - [3120]={ + [3162]={ [1]={ [1]={ limit={ @@ -68514,7 +69348,7 @@ return { [1]="glacial_hammer_item_rarity_on_shattering_enemy_+%" } }, - [3121]={ + [3163]={ [1]={ [1]={ limit={ @@ -68530,7 +69364,7 @@ return { [1]="spectral_throw_damage_for_each_enemy_hit_with_spectral_weapon_+%" } }, - [3122]={ + [3164]={ [1]={ [1]={ limit={ @@ -68546,7 +69380,7 @@ return { [1]="double_strike_chance_to_trigger_on_kill_effects_an_additional_time_%" } }, - [3123]={ + [3165]={ [1]={ [1]={ limit={ @@ -68562,7 +69396,7 @@ return { [1]="viper_strike_attack_damage_per_poison_on_enemy_+%" } }, - [3124]={ + [3166]={ [1]={ [1]={ limit={ @@ -68578,7 +69412,7 @@ return { [1]="heavy_strike_chance_to_deal_double_damage_%" } }, - [3125]={ + [3167]={ [1]={ [1]={ [1]={ @@ -68615,7 +69449,7 @@ return { [1]="enchantment_boots_mana_costs_when_hit_+%" } }, - [3126]={ + [3168]={ [1]={ [1]={ [1]={ @@ -68635,7 +69469,7 @@ return { [1]="enchantment_boots_stun_avoid_%_on_kill" } }, - [3127]={ + [3169]={ [1]={ [1]={ [1]={ @@ -68659,7 +69493,7 @@ return { [1]="spell_suppression_chance_%_if_taken_spell_damage_recently" } }, - [3128]={ + [3170]={ [1]={ [1]={ [1]={ @@ -68679,7 +69513,7 @@ return { [1]="enchantment_boots_attack_and_cast_speed_+%_for_4_seconds_on_kill" } }, - [3129]={ + [3171]={ [1]={ [1]={ [1]={ @@ -68704,7 +69538,7 @@ return { [2]="enchantment_boots_added_cold_damage_when_hit_maximum" } }, - [3130]={ + [3172]={ [1]={ [1]={ [1]={ @@ -68729,7 +69563,7 @@ return { [2]="enchantment_boots_maximum_added_lightning_damage_when_you_havent_killed_for_4_seconds" } }, - [3131]={ + [3173]={ [1]={ [1]={ [1]={ @@ -68757,7 +69591,7 @@ return { [1]="enchantment_boots_life_leech_on_kill_permyriad" } }, - [3132]={ + [3174]={ [1]={ [1]={ [1]={ @@ -68782,7 +69616,7 @@ return { [2]="enchantment_boots_maximum_added_fire_damage_on_kill_4s" } }, - [3133]={ + [3175]={ [1]={ [1]={ [1]={ @@ -68819,7 +69653,7 @@ return { [1]="enchantment_boots_movement_speed_+%_when_not_hit_for_4_seconds" } }, - [3134]={ + [3176]={ [1]={ [1]={ [1]={ @@ -68839,7 +69673,7 @@ return { [1]="enchantment_boots_status_ailment_chance_+%_when_havent_crit_for_4_seconds" } }, - [3135]={ + [3177]={ [1]={ [1]={ [1]={ @@ -68859,7 +69693,7 @@ return { [1]="extra_damage_taken_from_crit_-%_if_taken_critical_strike_recently" } }, - [3136]={ + [3178]={ [1]={ [1]={ limit={ @@ -68875,7 +69709,7 @@ return { [1]="local_unique_jewel_with_50_int_in_radius_summon_X_melee_skeletons_as_mage_skeletons" } }, - [3137]={ + [3179]={ [1]={ [1]={ limit={ @@ -68891,7 +69725,7 @@ return { [1]="number_of_melee_skeletons_to_summon_as_mage_skeletons" } }, - [3138]={ + [3180]={ [1]={ [1]={ [1]={ @@ -68915,7 +69749,7 @@ return { [1]="local_unique_jewel_vigilant_strike_fortifies_nearby_allies_for_x_seconds_with_50_str_in_radius" } }, - [3139]={ + [3181]={ [1]={ [1]={ [1]={ @@ -68939,7 +69773,7 @@ return { [1]="vigilant_strike_applies_to_nearby_allies_for_X_seconds" } }, - [3140]={ + [3182]={ [1]={ [1]={ limit={ @@ -68968,7 +69802,7 @@ return { [1]="local_unique_jewel_fireball_radius_up_to_+%_at_longer_ranges_with_50_int_in_radius" } }, - [3141]={ + [3183]={ [1]={ [1]={ [1]={ @@ -69001,7 +69835,7 @@ return { [1]="local_unique_jewel_fireball_base_radius_up_to_+_at_longer_ranges_with_40_int_in_radius" } }, - [3142]={ + [3184]={ [1]={ [1]={ limit={ @@ -69030,7 +69864,7 @@ return { [1]="fireball_radius_up_to_+%_at_longer_ranges" } }, - [3143]={ + [3185]={ [1]={ [1]={ [1]={ @@ -69063,7 +69897,7 @@ return { [1]="fireball_base_radius_up_to_+_at_longer_ranges" } }, - [3144]={ + [3186]={ [1]={ [1]={ limit={ @@ -69079,7 +69913,7 @@ return { [1]="local_unique_jewel_animate_weapon_can_animate_up_to_x_additional_ranged_weapons_with_50_dex_in_radius" } }, - [3145]={ + [3187]={ [1]={ [1]={ limit={ @@ -69095,7 +69929,7 @@ return { [1]="animate_weapon_can_animate_up_to_x_additional_ranged_weapons" } }, - [3146]={ + [3188]={ [1]={ [1]={ limit={ @@ -69120,7 +69954,7 @@ return { [1]="local_unique_jewel_ground_slam_chance_to_gain_endurance_charge_%_on_stun_with_50_str_in_radius" } }, - [3147]={ + [3189]={ [1]={ [1]={ limit={ @@ -69149,7 +69983,7 @@ return { [1]="local_unique_jewel_ground_slam_angle_+%_with_50_str_in_radius" } }, - [3148]={ + [3190]={ [1]={ [1]={ limit={ @@ -69178,7 +70012,7 @@ return { [1]="ground_slam_angle_+%" } }, - [3149]={ + [3191]={ [1]={ [1]={ limit={ @@ -69194,7 +70028,7 @@ return { [1]="local_unique_jewel_cold_snap_gain_power_charge_on_kill_%_with_50_int_in_radius" } }, - [3150]={ + [3192]={ [1]={ [1]={ limit={ @@ -69210,7 +70044,7 @@ return { [1]="cold_snap_gain_power_charge_on_kill_%" } }, - [3151]={ + [3193]={ [1]={ [1]={ [1]={ @@ -69234,7 +70068,7 @@ return { [1]="local_unique_jewel_warcry_damage_taken_goes_to_mana_%_with_40_int_in_radius" } }, - [3152]={ + [3194]={ [1]={ [1]={ [1]={ @@ -69258,7 +70092,7 @@ return { [1]="warcry_damage_taken_goes_to_mana_%" } }, - [3153]={ + [3195]={ [1]={ [1]={ limit={ @@ -69283,7 +70117,7 @@ return { [1]="local_unique_jewel_barrage_final_volley_fires_x_additional_projectiles_simultaneously_with_50_dex_in_radius" } }, - [3154]={ + [3196]={ [1]={ [1]={ limit={ @@ -69308,7 +70142,7 @@ return { [1]="barrage_final_volley_fires_x_additional_projectiles_simultaneously" } }, - [3155]={ + [3197]={ [1]={ [1]={ limit={ @@ -69324,7 +70158,7 @@ return { [1]="never_block" } }, - [3156]={ + [3198]={ [1]={ [1]={ limit={ @@ -69340,7 +70174,7 @@ return { [1]="local_no_block_chance" } }, - [3157]={ + [3199]={ [1]={ [1]={ limit={ @@ -69356,7 +70190,7 @@ return { [1]="mana_cost_-%_per_endurance_charge" } }, - [3158]={ + [3200]={ [1]={ [1]={ [1]={ @@ -69376,7 +70210,7 @@ return { [1]="gain_rampage_while_at_maximum_endurance_charges" } }, - [3159]={ + [3201]={ [1]={ [1]={ limit={ @@ -69392,7 +70226,7 @@ return { [1]="lose_endurance_charges_on_rampage_end" } }, - [3160]={ + [3202]={ [1]={ [1]={ limit={ @@ -69408,7 +70242,7 @@ return { [1]="virtual_number_of_ranged_animated_weapons_allowed" } }, - [3161]={ + [3203]={ [1]={ [1]={ [1]={ @@ -69428,7 +70262,7 @@ return { [1]="stun_threshold_based_on_%_mana_instead_of_life" } }, - [3162]={ + [3204]={ [1]={ [1]={ [1]={ @@ -69465,7 +70299,7 @@ return { [1]="stun_threshold_+%" } }, - [3163]={ + [3205]={ [1]={ [1]={ limit={ @@ -69494,7 +70328,7 @@ return { [1]="minion_attack_and_cast_speed_+%_per_active_skeleton" } }, - [3164]={ + [3206]={ [1]={ [1]={ limit={ @@ -69523,7 +70357,7 @@ return { [1]="minion_duration_+%_per_active_zombie" } }, - [3165]={ + [3207]={ [1]={ [1]={ limit={ @@ -69552,7 +70386,7 @@ return { [1]="minion_damage_+%_per_active_spectre" } }, - [3166]={ + [3208]={ [1]={ [1]={ [1]={ @@ -69572,7 +70406,7 @@ return { [1]="minion_life_regeneration_per_minute_per_active_raging_spirit" } }, - [3167]={ + [3209]={ [1]={ [1]={ limit={ @@ -69601,7 +70435,7 @@ return { [1]="warcry_speed_+%" } }, - [3168]={ + [3210]={ [1]={ [1]={ limit={ @@ -69626,7 +70460,7 @@ return { [1]="gain_her_blessing_for_3_seconds_on_ignite_%" } }, - [3169]={ + [3211]={ [1]={ [1]={ [1]={ @@ -69659,7 +70493,7 @@ return { [1]="blind_nearby_enemies_when_gaining_her_blessing_%" } }, - [3170]={ + [3212]={ [1]={ [1]={ limit={ @@ -69675,7 +70509,7 @@ return { [1]="avoid_freeze_chill_ignite_%_with_her_blessing" } }, - [3171]={ + [3213]={ [1]={ [1]={ limit={ @@ -69704,7 +70538,7 @@ return { [1]="attack_and_movement_speed_+%_with_her_blessing" } }, - [3172]={ + [3214]={ [1]={ [1]={ limit={ @@ -69720,7 +70554,7 @@ return { [1]="critical_strike_multiplier_+_per_power_charge" } }, - [3173]={ + [3215]={ [1]={ [1]={ [1]={ @@ -69753,7 +70587,7 @@ return { [1]="apply_poison_on_hit_vs_bleeding_enemies_%" } }, - [3174]={ + [3216]={ [1]={ [1]={ limit={ @@ -69782,7 +70616,7 @@ return { [1]="damage_taken_+%_from_blinded_enemies" } }, - [3175]={ + [3217]={ [1]={ [1]={ limit={ @@ -69811,7 +70645,7 @@ return { [1]="attack_damage_+%_per_frenzy_charge" } }, - [3176]={ + [3218]={ [1]={ [1]={ limit={ @@ -69840,7 +70674,7 @@ return { [1]="damage_+%_per_frenzy_charge" } }, - [3177]={ + [3219]={ [1]={ [1]={ [1]={ @@ -69877,7 +70711,7 @@ return { [1]="arcane_surge_effect_on_self_+%_per_caster_abyss_jewel_up_to_+40%" } }, - [3178]={ + [3220]={ [1]={ [1]={ [1]={ @@ -69914,7 +70748,7 @@ return { [1]="arcane_surge_effect_+%" } }, - [3179]={ + [3221]={ [1]={ [1]={ [1]={ @@ -69959,7 +70793,7 @@ return { [1]="arcane_surge_effect_+%_per_200_mana_spent_recently_up_to_50%" } }, - [3180]={ + [3222]={ [1]={ [1]={ [1]={ @@ -69996,7 +70830,7 @@ return { [1]="onslaught_effect_+%" } }, - [3181]={ + [3223]={ [1]={ [1]={ limit={ @@ -70025,7 +70859,7 @@ return { [1]="attack_damage_+%_while_onslaught_active" } }, - [3182]={ + [3224]={ [1]={ [1]={ limit={ @@ -70054,7 +70888,7 @@ return { [1]="critical_strike_chance_+%_vs_poisoned_enemies" } }, - [3183]={ + [3225]={ [1]={ [1]={ limit={ @@ -70083,7 +70917,7 @@ return { [1]="elemental_damage_taken_+%" } }, - [3184]={ + [3226]={ [1]={ [1]={ limit={ @@ -70112,7 +70946,7 @@ return { [1]="damage_taken_from_traps_and_mines_+%" } }, - [3185]={ + [3227]={ [1]={ [1]={ [1]={ @@ -70145,7 +70979,7 @@ return { [1]="maim_on_hit_%_vs_poisoned_enemies" } }, - [3186]={ + [3228]={ [1]={ [1]={ limit={ @@ -70174,7 +71008,7 @@ return { [1]="raider_passive_evade_melee_attacks_while_onslaughted_+%_final" } }, - [3187]={ + [3229]={ [1]={ [1]={ limit={ @@ -70203,7 +71037,7 @@ return { [1]="raider_passive_evade_projectile_attacks_while_onslaughted_+%_final" } }, - [3188]={ + [3230]={ [1]={ [1]={ [1]={ @@ -70223,7 +71057,7 @@ return { [1]="dispel_status_ailments_on_flask_use" } }, - [3189]={ + [3231]={ [1]={ [1]={ [1]={ @@ -70243,7 +71077,7 @@ return { [1]="avoid_status_ailments_%_during_flask_effect" } }, - [3190]={ + [3232]={ [1]={ [1]={ limit={ @@ -70272,7 +71106,7 @@ return { [1]="attack_speed_+%_during_flask_effect" } }, - [3191]={ + [3233]={ [1]={ [1]={ limit={ @@ -70288,7 +71122,7 @@ return { [1]="chaos_resistance_+_while_using_flask" } }, - [3192]={ + [3234]={ [1]={ [1]={ [1]={ @@ -70321,7 +71155,7 @@ return { [1]="poison_on_hit_during_flask_effect_%" } }, - [3193]={ + [3235]={ [1]={ [1]={ limit={ @@ -70337,7 +71171,7 @@ return { [1]="explode_on_kill_%_chaos_damage_to_deal" } }, - [3194]={ + [3236]={ [1]={ [1]={ limit={ @@ -70353,7 +71187,7 @@ return { [1]="explode_enemies_for_10%_life_as_physical_on_kill_chance_%" } }, - [3195]={ + [3237]={ [1]={ [1]={ limit={ @@ -70369,7 +71203,7 @@ return { [1]="explode_enemies_for_25%_life_as_chaos_on_kill_chance_%" } }, - [3196]={ + [3238]={ [1]={ [1]={ limit={ @@ -70385,7 +71219,7 @@ return { [1]="explode_cursed_enemies_for_25%_life_as_chaos_on_kill_chance_%" } }, - [3197]={ + [3239]={ [1]={ [1]={ [1]={ @@ -70405,7 +71239,7 @@ return { [1]="enchantment_boots_damage_penetrates_elemental_resistance_%_while_you_havent_killed_for_4_seconds" } }, - [3198]={ + [3240]={ [1]={ [1]={ [1]={ @@ -70425,7 +71259,7 @@ return { [1]="enchantment_boots_physical_damage_%_added_as_elements_in_spells_that_hit_you_in_past_4_seconds" } }, - [3199]={ + [3241]={ [1]={ [1]={ [1]={ @@ -70450,7 +71284,7 @@ return { [2]="enchantment_boots_maximum_added_chaos_damage_for_4_seconds_when_crit_4s" } }, - [3200]={ + [3242]={ [1]={ [1]={ [1]={ @@ -70470,7 +71304,7 @@ return { [1]="movement_speed_+%_while_not_affected_by_status_ailments" } }, - [3201]={ + [3243]={ [1]={ [1]={ limit={ @@ -70486,7 +71320,7 @@ return { [1]="stacking_spell_damage_+%_when_you_or_your_totems_kill_an_enemy_for_2_seconds" } }, - [3202]={ + [3244]={ [1]={ [1]={ [1]={ @@ -70514,7 +71348,7 @@ return { [1]="life_leech_permyriad_from_elemental_damage_against_enemies_with_elemental_status_ailments" } }, - [3203]={ + [3245]={ [1]={ [1]={ [1]={ @@ -70534,7 +71368,7 @@ return { [1]="totems_explode_for_%_of_max_life_as_fire_damage_on_low_life" } }, - [3204]={ + [3246]={ [1]={ [1]={ [1]={ @@ -70554,7 +71388,7 @@ return { [1]="guardian_warcry_grant_attack_cast_and_movement_speed_to_you_and_nearby_allies_+%" } }, - [3205]={ + [3247]={ [1]={ [1]={ [1]={ @@ -70587,7 +71421,7 @@ return { [1]="chance_to_avoid_stun_%_aura_while_wielding_a_staff" } }, - [3206]={ + [3248]={ [1]={ [1]={ limit={ @@ -70616,7 +71450,7 @@ return { [1]="damage_taken_+%_from_bleeding_enemies" } }, - [3207]={ + [3249]={ [1]={ [1]={ [1]={ @@ -70649,7 +71483,7 @@ return { [1]="maim_bleeding_enemies_on_hit_%" } }, - [3208]={ + [3250]={ [1]={ [1]={ limit={ @@ -70678,7 +71512,7 @@ return { [1]="one_handed_attack_speed_+%" } }, - [3209]={ + [3251]={ [1]={ [1]={ limit={ @@ -70707,7 +71541,7 @@ return { [1]="movement_speed_+%_for_4_seconds_on_block" } }, - [3210]={ + [3252]={ [1]={ [1]={ limit={ @@ -70736,7 +71570,7 @@ return { [1]="movement_speed_+%_while_fortified" } }, - [3211]={ + [3253]={ [1]={ [1]={ limit={ @@ -70765,7 +71599,7 @@ return { [1]="elemental_damage_taken_+%_at_maximum_endurance_charges" } }, - [3212]={ + [3254]={ [1]={ [1]={ [1]={ @@ -70789,7 +71623,7 @@ return { [1]="status_ailments_removed_at_low_life" } }, - [3213]={ + [3255]={ [1]={ [1]={ limit={ @@ -70814,7 +71648,7 @@ return { [1]="gain_frenzy_charge_on_main_hand_kill_%" } }, - [3214]={ + [3256]={ [1]={ [1]={ limit={ @@ -70839,7 +71673,7 @@ return { [1]="gain_endurance_charge_on_main_hand_kill_%" } }, - [3215]={ + [3257]={ [1]={ [1]={ [1]={ @@ -70876,7 +71710,7 @@ return { [1]="damage_taken_+%_for_4_seconds_on_kill" } }, - [3216]={ + [3258]={ [1]={ [1]={ [1]={ @@ -70896,7 +71730,7 @@ return { [1]="avoid_stun_%_for_4_seconds_on_kill" } }, - [3217]={ + [3259]={ [1]={ [1]={ limit={ @@ -70921,7 +71755,7 @@ return { [1]="you_and_your_totems_gain_an_endurance_charge_on_burning_enemy_kill_%" } }, - [3218]={ + [3260]={ [1]={ [1]={ limit={ @@ -70946,7 +71780,7 @@ return { [1]="minions_grant_owner_and_owners_totems_gains_endurance_charge_on_burning_enemy_kill_%" } }, - [3219]={ + [3261]={ [1]={ [1]={ limit={ @@ -70975,7 +71809,7 @@ return { [1]="warcry_cooldown_speed_+%" } }, - [3220]={ + [3262]={ [1]={ [1]={ limit={ @@ -71004,7 +71838,7 @@ return { [1]="golem_skill_cooldown_recovery_+%" } }, - [3221]={ + [3263]={ [1]={ [1]={ limit={ @@ -71033,7 +71867,7 @@ return { [1]="golem_cooldown_recovery_+%" } }, - [3222]={ + [3264]={ [1]={ [1]={ limit={ @@ -71049,7 +71883,7 @@ return { [1]="always_stun_enemies_that_are_on_full_life" } }, - [3223]={ + [3265]={ [1]={ [1]={ limit={ @@ -71078,7 +71912,7 @@ return { [1]="stun_duration_+%_vs_enemies_that_are_on_full_life" } }, - [3224]={ + [3266]={ [1]={ [1]={ limit={ @@ -71107,7 +71941,7 @@ return { [1]="stun_duration_+%_vs_enemies_that_are_on_low_life" } }, - [3225]={ + [3267]={ [1]={ [1]={ limit={ @@ -71136,7 +71970,7 @@ return { [1]="damage_+%_with_one_handed_weapons" } }, - [3226]={ + [3268]={ [1]={ [1]={ limit={ @@ -71165,7 +71999,7 @@ return { [1]="damage_+%_with_two_handed_weapons" } }, - [3227]={ + [3269]={ [1]={ [1]={ limit={ @@ -71181,7 +72015,7 @@ return { [1]="damage_reduction_rating_from_body_armour_doubled" } }, - [3228]={ + [3270]={ [1]={ [1]={ limit={ @@ -71197,7 +72031,7 @@ return { [1]="gain_no_armour_from_body_armour" } }, - [3229]={ + [3271]={ [1]={ [1]={ limit={ @@ -71213,7 +72047,7 @@ return { [1]="damage_reduction_rating_%_with_active_totem" } }, - [3230]={ + [3272]={ [1]={ [1]={ limit={ @@ -71229,7 +72063,7 @@ return { [1]="local_display_cast_level_x_manifest_dancing_dervish" } }, - [3231]={ + [3273]={ [1]={ [1]={ limit={ @@ -71245,7 +72079,7 @@ return { [1]="local_display_manifest_dancing_dervish_disables_weapons" } }, - [3232]={ + [3274]={ [1]={ [1]={ limit={ @@ -71261,7 +72095,7 @@ return { [1]="local_display_manifest_dancing_dervish_destroy_on_end_rampage" } }, - [3233]={ + [3275]={ [1]={ [1]={ [1]={ @@ -71281,7 +72115,7 @@ return { [1]="local_display_minions_grant_onslaught" } }, - [3234]={ + [3276]={ [1]={ [1]={ limit={ @@ -71310,7 +72144,7 @@ return { [1]="physical_damage_+%_while_frozen" } }, - [3235]={ + [3277]={ [1]={ [1]={ [1]={ @@ -71334,7 +72168,7 @@ return { [1]="local_unique_jewel_cleave_fortify_on_hit_with_50_str_in_radius" } }, - [3236]={ + [3278]={ [1]={ [1]={ limit={ @@ -71350,7 +72184,7 @@ return { [1]="local_unique_jewel_cleave_+1_base_radius_per_nearby_enemy_up_to_10_with_40_str_in_radius" } }, - [3237]={ + [3279]={ [1]={ [1]={ limit={ @@ -71375,7 +72209,7 @@ return { [1]="local_unique_jewel_ethereal_knives_number_of_additional_projectiles_with_50_dex_in_radius" } }, - [3238]={ + [3280]={ [1]={ [1]={ limit={ @@ -71391,7 +72225,7 @@ return { [1]="local_unique_jewel_ethereal_knives_projectiles_nova_with_50_dex_in_radius" } }, - [3239]={ + [3281]={ [1]={ [1]={ limit={ @@ -71407,7 +72241,7 @@ return { [1]="local_unique_jewel_glacial_hammer_melee_splash_with_cold_damage_with_50_str_in_radius" } }, - [3240]={ + [3282]={ [1]={ [1]={ limit={ @@ -71423,7 +72257,7 @@ return { [1]="local_unique_jewel_glacial_hammer_physical_damage_%_to_convert_to_cold_with_50_str_in_radius" } }, - [3241]={ + [3283]={ [1]={ [1]={ limit={ @@ -71439,7 +72273,7 @@ return { [1]="local_unique_jewel_shrapnel_shot_radius_+%_with_50_dex_in_radius" } }, - [3242]={ + [3284]={ [1]={ [1]={ limit={ @@ -71464,7 +72298,7 @@ return { [1]="local_unique_jewel_spark_number_of_additional_chains_with_50_int_in_radius" } }, - [3243]={ + [3285]={ [1]={ [1]={ limit={ @@ -71489,7 +72323,7 @@ return { [1]="local_unique_jewel_spark_number_of_additional_projectiles_with_50_int_in_radius" } }, - [3244]={ + [3286]={ [1]={ [1]={ limit={ @@ -71514,7 +72348,7 @@ return { [1]="local_unique_jewel_freezing_pulse_number_of_additional_projectiles_with_50_int_in_radius" } }, - [3245]={ + [3287]={ [1]={ [1]={ [1]={ @@ -71551,7 +72385,7 @@ return { [1]="local_unique_jewel_freezing_pulse_damage_+%_if_enemy_shattered_recently_with_50_int_in_radius" } }, - [3246]={ + [3288]={ [1]={ [1]={ limit={ @@ -71580,7 +72414,7 @@ return { [1]="anger_aura_effect_+%" } }, - [3247]={ + [3289]={ [1]={ [1]={ limit={ @@ -71609,7 +72443,7 @@ return { [1]="purity_of_elements_aura_effect_+%" } }, - [3248]={ + [3290]={ [1]={ [1]={ limit={ @@ -71638,7 +72472,7 @@ return { [1]="purity_of_fire_aura_effect_+%" } }, - [3249]={ + [3291]={ [1]={ [1]={ limit={ @@ -71667,7 +72501,7 @@ return { [1]="purity_of_ice_aura_effect_+%" } }, - [3250]={ + [3292]={ [1]={ [1]={ limit={ @@ -71696,7 +72530,7 @@ return { [1]="purity_of_lightning_aura_effect_+%" } }, - [3251]={ + [3293]={ [1]={ [1]={ limit={ @@ -71725,7 +72559,7 @@ return { [1]="wrath_aura_effect_+%" } }, - [3252]={ + [3294]={ [1]={ [1]={ limit={ @@ -71754,7 +72588,7 @@ return { [1]="banner_aura_effect_+%" } }, - [3253]={ + [3295]={ [1]={ [1]={ limit={ @@ -71783,7 +72617,7 @@ return { [1]="grace_aura_effect_+%" } }, - [3254]={ + [3296]={ [1]={ [1]={ limit={ @@ -71812,7 +72646,7 @@ return { [1]="haste_aura_effect_+%" } }, - [3255]={ + [3297]={ [1]={ [1]={ limit={ @@ -71841,7 +72675,7 @@ return { [1]="precision_aura_effect_+%" } }, - [3256]={ + [3298]={ [1]={ [1]={ limit={ @@ -71870,7 +72704,7 @@ return { [1]="hatred_aura_effect_+%" } }, - [3257]={ + [3299]={ [1]={ [1]={ limit={ @@ -71899,7 +72733,7 @@ return { [1]="determination_aura_effect_+%" } }, - [3258]={ + [3300]={ [1]={ [1]={ limit={ @@ -71928,7 +72762,7 @@ return { [1]="discipline_aura_effect_+%" } }, - [3259]={ + [3301]={ [1]={ [1]={ limit={ @@ -71944,7 +72778,7 @@ return { [1]="cannot_be_poisoned" } }, - [3260]={ + [3302]={ [1]={ [1]={ limit={ @@ -71960,7 +72794,7 @@ return { [1]="chance_to_be_poisoned_%" } }, - [3261]={ + [3303]={ [1]={ [1]={ [1]={ @@ -71993,7 +72827,7 @@ return { [1]="avoid_physical_damage_%" } }, - [3262]={ + [3304]={ [1]={ [1]={ [1]={ @@ -72026,7 +72860,7 @@ return { [1]="avoid_elemental_damage_%_per_frenzy_charge" } }, - [3263]={ + [3305]={ [1]={ [1]={ [1]={ @@ -72059,7 +72893,7 @@ return { [1]="avoid_fire_damage_%" } }, - [3264]={ + [3306]={ [1]={ [1]={ [1]={ @@ -72092,7 +72926,7 @@ return { [1]="avoid_cold_damage_%" } }, - [3265]={ + [3307]={ [1]={ [1]={ [1]={ @@ -72125,7 +72959,7 @@ return { [1]="avoid_lightning_damage_%" } }, - [3266]={ + [3308]={ [1]={ [1]={ [1]={ @@ -72158,7 +72992,7 @@ return { [1]="avoid_chaos_damage_%" } }, - [3267]={ + [3309]={ [1]={ [1]={ [1]={ @@ -72191,7 +73025,7 @@ return { [1]="chance_to_gain_unholy_might_on_kill_for_3_seconds_%" } }, - [3268]={ + [3310]={ [1]={ [1]={ [1]={ @@ -72224,7 +73058,7 @@ return { [1]="chance_to_gain_unholy_might_on_kill_for_4_seconds_%" } }, - [3269]={ + [3311]={ [1]={ [1]={ [1]={ @@ -72257,7 +73091,7 @@ return { [1]="minion_chance_to_gain_unholy_might_on_kill_for_4_seconds_%" } }, - [3270]={ + [3312]={ [1]={ [1]={ [1]={ @@ -72290,7 +73124,7 @@ return { [1]="chance_to_gain_onslaught_on_kill_for_4_seconds_%" } }, - [3271]={ + [3313]={ [1]={ [1]={ [1]={ @@ -72323,7 +73157,7 @@ return { [1]="minion_chance_to_gain_onslaught_on_kill_for_4_seconds_%" } }, - [3272]={ + [3314]={ [1]={ [1]={ [1]={ @@ -72356,7 +73190,7 @@ return { [1]="chance_to_grant_nearby_enemies_onslaught_on_kill_%" } }, - [3273]={ + [3315]={ [1]={ [1]={ [1]={ @@ -72389,7 +73223,7 @@ return { [1]="chance_to_grant_nearby_enemies_old_unholy_might_on_kill_%" } }, - [3274]={ + [3316]={ [1]={ [1]={ limit={ @@ -72414,7 +73248,7 @@ return { [1]="chance_to_grant_power_charge_to_nearby_allies_on_kill_%" } }, - [3275]={ + [3317]={ [1]={ [1]={ limit={ @@ -72439,7 +73273,7 @@ return { [1]="chance_to_grant_frenzy_charge_to_nearby_allies_on_hit_%" } }, - [3276]={ + [3318]={ [1]={ [1]={ limit={ @@ -72455,7 +73289,7 @@ return { [1]="remove_bleed_on_flask_use" } }, - [3277]={ + [3319]={ [1]={ [1]={ limit={ @@ -72471,7 +73305,7 @@ return { [1]="remove_corrupted_blood_when_you_use_a_flask" } }, - [3278]={ + [3320]={ [1]={ [1]={ limit={ @@ -72500,7 +73334,7 @@ return { [1]="lightning_damage_taken_+%" } }, - [3279]={ + [3321]={ [1]={ [1]={ limit={ @@ -72529,7 +73363,7 @@ return { [1]="cold_damage_taken_+%" } }, - [3280]={ + [3322]={ [1]={ [1]={ [1]={ @@ -72549,7 +73383,7 @@ return { [1]="mana_and_es_regeneration_per_minute_%_when_you_freeze_shock_or_ignite_an_enemy" } }, - [3281]={ + [3323]={ [1]={ [1]={ limit={ @@ -72574,7 +73408,7 @@ return { [1]="gain_flask_chance_on_crit_%" } }, - [3282]={ + [3324]={ [1]={ [1]={ limit={ @@ -72590,7 +73424,7 @@ return { [1]="virtual_base_maximum_energy_shield_to_grant_to_you_and_nearby_allies" } }, - [3283]={ + [3325]={ [1]={ [1]={ limit={ @@ -72606,7 +73440,7 @@ return { [1]="number_of_additional_shrapnel_ballistae_per_200_strength" } }, - [3284]={ + [3326]={ [1]={ [1]={ limit={ @@ -72622,7 +73456,7 @@ return { [1]="number_of_additional_siege_ballistae_per_200_dexterity" } }, - [3285]={ + [3327]={ [1]={ [1]={ limit={ @@ -72643,7 +73477,7 @@ return { [2]="attack_maximum_added_physical_damage_per_25_dexterity" } }, - [3286]={ + [3328]={ [1]={ [1]={ [1]={ @@ -72663,7 +73497,7 @@ return { [1]="local_display_nearby_enemies_are_blinded" } }, - [3287]={ + [3329]={ [1]={ [1]={ [1]={ @@ -72683,7 +73517,7 @@ return { [1]="local_display_nearby_enemies_are_crushed" } }, - [3288]={ + [3330]={ [1]={ [1]={ [1]={ @@ -72703,7 +73537,7 @@ return { [1]="local_display_nearby_enemies_have_malediction" } }, - [3289]={ + [3331]={ [1]={ [1]={ [1]={ @@ -72723,7 +73557,7 @@ return { [1]="local_display_nearby_enemies_scorched" } }, - [3290]={ + [3332]={ [1]={ [1]={ limit={ @@ -72739,7 +73573,7 @@ return { [1]="local_display_hits_against_nearby_enemies_critical_strike_chance_+50%" } }, - [3291]={ + [3333]={ [1]={ [1]={ limit={ @@ -72768,7 +73602,7 @@ return { [1]="local_display_nearby_enemies_critical_strike_chance_+%_against_self" } }, - [3292]={ + [3334]={ [1]={ [1]={ limit={ @@ -72797,7 +73631,7 @@ return { [1]="local_display_nearby_enemies_flask_charges_granted_+%" } }, - [3293]={ + [3335]={ [1]={ [1]={ [1]={ @@ -72834,7 +73668,7 @@ return { [1]="local_display_nearby_enemies_movement_speed_+%" } }, - [3294]={ + [3336]={ [1]={ [1]={ limit={ @@ -72863,7 +73697,7 @@ return { [1]="local_display_nearby_enemies_stun_and_block_recovery_+%" } }, - [3295]={ + [3337]={ [1]={ [1]={ limit={ @@ -72888,7 +73722,7 @@ return { [1]="gain_power_charge_on_non_critical_strike_%" } }, - [3296]={ + [3338]={ [1]={ [1]={ limit={ @@ -72917,7 +73751,7 @@ return { [1]="critical_strike_chance_+%_vs_blinded_enemies" } }, - [3297]={ + [3339]={ [1]={ [1]={ [1]={ @@ -72950,7 +73784,7 @@ return { [1]="chilled_ground_on_freeze_%_chance_for_3_seconds" } }, - [3298]={ + [3340]={ [1]={ [1]={ [1]={ @@ -72983,7 +73817,7 @@ return { [1]="consecrate_ground_on_kill_%_for_3_seconds" } }, - [3299]={ + [3341]={ [1]={ [1]={ limit={ @@ -73012,7 +73846,7 @@ return { [1]="frost_blades_damage_+%" } }, - [3300]={ + [3342]={ [1]={ [1]={ limit={ @@ -73041,7 +73875,7 @@ return { [1]="frost_blades_projectile_speed_+%" } }, - [3301]={ + [3343]={ [1]={ [1]={ limit={ @@ -73066,7 +73900,7 @@ return { [1]="frost_blades_number_of_additional_projectiles_in_chain" } }, - [3302]={ + [3344]={ [1]={ [1]={ limit={ @@ -73095,7 +73929,7 @@ return { [1]="summoned_raging_spirit_duration_+%" } }, - [3303]={ + [3345]={ [1]={ [1]={ limit={ @@ -73111,7 +73945,7 @@ return { [1]="summoned_raging_spirit_chance_to_spawn_additional_minion_%" } }, - [3304]={ + [3346]={ [1]={ [1]={ limit={ @@ -73140,7 +73974,7 @@ return { [1]="discharge_damage_+%" } }, - [3305]={ + [3347]={ [1]={ [1]={ limit={ @@ -73169,7 +74003,7 @@ return { [1]="discharge_radius_+%" } }, - [3306]={ + [3348]={ [1]={ [1]={ limit={ @@ -73194,7 +74028,7 @@ return { [1]="discharge_chance_not_to_consume_charges_%" } }, - [3307]={ + [3349]={ [1]={ [1]={ limit={ @@ -73223,7 +74057,7 @@ return { [1]="anger_mana_reservation_+%" } }, - [3308]={ + [3350]={ [1]={ [1]={ limit={ @@ -73252,7 +74086,7 @@ return { [1]="lightning_trap_damage_+%" } }, - [3309]={ + [3351]={ [1]={ [1]={ limit={ @@ -73277,7 +74111,7 @@ return { [1]="lightning_trap_number_of_additional_projectiles" } }, - [3310]={ + [3352]={ [1]={ [1]={ limit={ @@ -73306,7 +74140,7 @@ return { [1]="lightning_trap_cooldown_speed_+%" } }, - [3311]={ + [3353]={ [1]={ [1]={ [1]={ @@ -73326,7 +74160,7 @@ return { [1]="piercing_attacks_cause_bleeding" } }, - [3312]={ + [3354]={ [1]={ [1]={ limit={ @@ -73342,7 +74176,7 @@ return { [1]="energy_shield_recharges_on_block_%" } }, - [3313]={ + [3355]={ [1]={ [1]={ limit={ @@ -73367,7 +74201,7 @@ return { [1]="energy_shield_recharges_on_suppress_%" } }, - [3314]={ + [3356]={ [1]={ [1]={ [1]={ @@ -73387,7 +74221,7 @@ return { [1]="map_players_gain_rare_monster_mods_on_kill_ms" } }, - [3315]={ + [3357]={ [1]={ [1]={ [1]={ @@ -73411,7 +74245,7 @@ return { [1]="soul_eater_on_rare_kill_ms" } }, - [3316]={ + [3358]={ [1]={ [1]={ [1]={ @@ -73435,7 +74269,7 @@ return { [1]="map_players_gain_soul_eater_on_rare_kill_ms" } }, - [3317]={ + [3359]={ [1]={ [1]={ [1]={ @@ -73455,7 +74289,7 @@ return { [1]="gain_soul_eater_during_flask_effect" } }, - [3318]={ + [3360]={ [1]={ [1]={ limit={ @@ -73471,7 +74305,7 @@ return { [1]="lose_soul_eater_souls_on_flask_use" } }, - [3319]={ + [3361]={ [1]={ [1]={ [1]={ @@ -73491,7 +74325,7 @@ return { [1]="totemified_skills_taunt_on_hit_%" } }, - [3320]={ + [3362]={ [1]={ [1]={ [1]={ @@ -73524,7 +74358,7 @@ return { [1]="chance_to_taunt_on_hit_%" } }, - [3321]={ + [3363]={ [1]={ [1]={ [1]={ @@ -73557,7 +74391,7 @@ return { [1]="minion_attacks_chance_to_taunt_on_hit_%" } }, - [3322]={ + [3364]={ [1]={ [1]={ [1]={ @@ -73594,7 +74428,7 @@ return { [1]="damage_taken_+%_for_4_seconds_on_killing_taunted_enemy" } }, - [3323]={ + [3365]={ [1]={ [1]={ limit={ @@ -73610,7 +74444,7 @@ return { [1]="critical_strike_multiplier_vs_enemies_on_full_life_+" } }, - [3324]={ + [3366]={ [1]={ [1]={ limit={ @@ -73639,7 +74473,7 @@ return { [1]="ambush_passive_critical_strike_chance_vs_enemies_on_full_life_+%_final" } }, - [3325]={ + [3367]={ [1]={ [1]={ [1]={ @@ -73676,7 +74510,84 @@ return { [1]="blind_duration_+%" } }, - [3326]={ + [3368]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextLowLife" + }, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% more Critical Strike Chance against Enemies that are not on Low Life" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + [2]={ + k="reminderstring", + v="ReminderTextLowLife" + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% less Critical Strike Chance against Enemies on that are not on Low Life" + } + }, + stats={ + [1]="assassin_critical_strike_chance_+%_final_vs_enemies_not_on_low_life" + } + }, + [3369]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextLowLife" + }, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0:+d}% to Critical Strike Multiplier against Enemies that are not on Low Life" + } + }, + stats={ + [1]="assassin_critical_strike_multiplier_+_vs_enemies_not_on_low_life" + } + }, + [3370]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextLowLife" + }, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0:+d}% to Critical Strike Multiplier against Enemies that are on Low Life" + } + }, + stats={ + [1]="assassin_critical_strike_multiplier_+_vs_enemies_on_low_life" + } + }, + [3371]={ [1]={ [1]={ [1]={ @@ -73713,7 +74624,7 @@ return { [1]="assassinate_passive_critical_strike_chance_vs_enemies_on_low_life_+%_final" } }, - [3327]={ + [3372]={ [1]={ [1]={ [1]={ @@ -73733,7 +74644,7 @@ return { [1]="crits_have_culling_strike" } }, - [3328]={ + [3373]={ [1]={ [1]={ [1]={ @@ -73753,7 +74664,7 @@ return { [1]="caustic_cloud_on_death_maximum_life_per_minute_to_deal_as_chaos_damage_%" } }, - [3329]={ + [3374]={ [1]={ [1]={ [1]={ @@ -73773,7 +74684,7 @@ return { [1]="minion_caustic_cloud_on_death_maximum_life_per_minute_to_deal_as_chaos_damage_%" } }, - [3330]={ + [3375]={ [1]={ [1]={ limit={ @@ -73789,7 +74700,7 @@ return { [1]="storm_cloud_charge_count" } }, - [3331]={ + [3376]={ [1]={ [1]={ limit={ @@ -73805,7 +74716,7 @@ return { [1]="storm_cloud_charged_damage_+%_final" } }, - [3332]={ + [3377]={ [1]={ [1]={ [1]={ @@ -73837,7 +74748,7 @@ return { [1]="gain_life_leech_from_any_damage_permyriad_as_life_for_4_seconds_if_taken_savage_hit" } }, - [3333]={ + [3378]={ [1]={ [1]={ [1]={ @@ -73861,7 +74772,7 @@ return { [1]="gain_damage_+%_for_4_seconds_if_taken_savage_hit" } }, - [3334]={ + [3379]={ [1]={ [1]={ [1]={ @@ -73885,7 +74796,7 @@ return { [1]="gain_attack_speed_+%_for_4_seconds_if_taken_savage_hit" } }, - [3335]={ + [3380]={ [1]={ [1]={ [1]={ @@ -73922,7 +74833,7 @@ return { [1]="damage_+%_vs_burning_enemies" } }, - [3336]={ + [3381]={ [1]={ [1]={ limit={ @@ -73947,7 +74858,7 @@ return { [1]="endurance_charge_on_off_hand_kill_%" } }, - [3337]={ + [3382]={ [1]={ [1]={ limit={ @@ -73963,7 +74874,7 @@ return { [1]="aura_melee_physical_damage_+%_per_10_strength" } }, - [3338]={ + [3383]={ [1]={ [1]={ limit={ @@ -73979,7 +74890,7 @@ return { [1]="curse_apply_as_aura" } }, - [3339]={ + [3384]={ [1]={ [1]={ limit={ @@ -73995,7 +74906,7 @@ return { [1]="critical_strikes_ignore_elemental_resistances" } }, - [3340]={ + [3385]={ [1]={ [1]={ [1]={ @@ -74032,7 +74943,7 @@ return { [1]="damage_+%_for_4_seconds_on_crit" } }, - [3341]={ + [3386]={ [1]={ [1]={ [1]={ @@ -74052,7 +74963,7 @@ return { [1]="critical_strike_chance_+%_for_4_seconds_on_kill" } }, - [3342]={ + [3387]={ [1]={ [1]={ [1]={ @@ -74072,7 +74983,7 @@ return { [1]="damage_and_minion_damage_+%_for_4_seconds_on_consume_corpse" } }, - [3343]={ + [3388]={ [1]={ [1]={ limit={ @@ -74088,7 +74999,7 @@ return { [1]="physical_damage_reduction_and_minion_physical_damage_reduction_%_per_raised_zombie" } }, - [3344]={ + [3389]={ [1]={ [1]={ limit={ @@ -74117,7 +75028,7 @@ return { [1]="spectre_damage_+%" } }, - [3345]={ + [3390]={ [1]={ [1]={ [1]={ @@ -74137,7 +75048,7 @@ return { [1]="auras_grant_damage_+%_to_you_and_your_allies" } }, - [3346]={ + [3391]={ [1]={ [1]={ [1]={ @@ -74157,7 +75068,7 @@ return { [1]="auras_grant_additional_physical_damage_reduction_%_to_you_and_your_allies" } }, - [3347]={ + [3392]={ [1]={ [1]={ [1]={ @@ -74177,7 +75088,7 @@ return { [1]="auras_grant_attack_and_cast_speed_+%_to_you_and_your_allies" } }, - [3348]={ + [3393]={ [1]={ [1]={ limit={ @@ -74206,7 +75117,7 @@ return { [1]="placing_traps_cooldown_recovery_+%" } }, - [3349]={ + [3394]={ [1]={ [1]={ [1]={ @@ -74226,7 +75137,7 @@ return { [1]="damage_+%_vs_enemies_affected_by_status_ailments" } }, - [3350]={ + [3395]={ [1]={ [1]={ limit={ @@ -74242,7 +75153,7 @@ return { [1]="warcries_are_instant" } }, - [3351]={ + [3396]={ [1]={ [1]={ [1]={ @@ -74262,7 +75173,7 @@ return { [1]="aura_grant_shield_defences_to_nearby_allies" } }, - [3352]={ + [3397]={ [1]={ [1]={ [1]={ @@ -74295,7 +75206,7 @@ return { [1]="phasing_for_4_seconds_on_kill_%" } }, - [3353]={ + [3398]={ [1]={ [1]={ limit={ @@ -74311,7 +75222,7 @@ return { [1]="damage_+%_per_active_trap" } }, - [3354]={ + [3399]={ [1]={ [1]={ limit={ @@ -74327,7 +75238,7 @@ return { [1]="skill_area_of_effect_+%_per_active_mine" } }, - [3355]={ + [3400]={ [1]={ [1]={ [1]={ @@ -74347,7 +75258,7 @@ return { [1]="immune_to_status_ailments_while_phased" } }, - [3356]={ + [3401]={ [1]={ [1]={ [1]={ @@ -74367,7 +75278,7 @@ return { [1]="additional_critical_strike_chance_per_power_charge_permyriad" } }, - [3357]={ + [3402]={ [1]={ [1]={ [1]={ @@ -74387,7 +75298,7 @@ return { [1]="additional_critical_strike_chance_permyriad_while_at_maximum_power_charges" } }, - [3358]={ + [3403]={ [1]={ [1]={ limit={ @@ -74403,7 +75314,7 @@ return { [1]="physical_damage_%_to_gain_as_chaos_while_at_maximum_power_charges" } }, - [3359]={ + [3404]={ [1]={ [1]={ limit={ @@ -74419,7 +75330,7 @@ return { [1]="movement_skills_cost_no_mana" } }, - [3360]={ + [3405]={ [1]={ [1]={ [1]={ @@ -74456,7 +75367,7 @@ return { [1]="attack_and_cast_speed_+%_for_4_seconds_on_movement_skill_use" } }, - [3361]={ + [3406]={ [1]={ [1]={ limit={ @@ -74472,7 +75383,7 @@ return { [1]="lose_10%_of_maximum_mana_on_skill_use_%_chance" } }, - [3362]={ + [3407]={ [1]={ [1]={ limit={ @@ -74488,7 +75399,7 @@ return { [1]="recover_10%_of_maximum_mana_on_skill_use_%" } }, - [3363]={ + [3408]={ [1]={ [1]={ [1]={ @@ -74508,7 +75419,7 @@ return { [1]="mine_laying_speed_+%_for_4_seconds_on_detonation" } }, - [3364]={ + [3409]={ [1]={ [1]={ [1]={ @@ -74528,7 +75439,7 @@ return { [1]="damage_+%_for_4_seconds_on_detonation" } }, - [3365]={ + [3410]={ [1]={ [1]={ limit={ @@ -74553,7 +75464,7 @@ return { [1]="flask_charges_recovered_per_3_seconds" } }, - [3366]={ + [3411]={ [1]={ [1]={ limit={ @@ -74582,7 +75493,7 @@ return { [1]="trap_skill_area_of_effect_+%" } }, - [3367]={ + [3412]={ [1]={ [1]={ [1]={ @@ -74619,7 +75530,7 @@ return { [1]="damage_+%_vs_bleeding_enemies" } }, - [3368]={ + [3413]={ [1]={ [1]={ limit={ @@ -74635,7 +75546,7 @@ return { [1]="bleeding_enemies_explode_for_%_life_as_physical_damage" } }, - [3369]={ + [3414]={ [1]={ [1]={ limit={ @@ -74651,7 +75562,7 @@ return { [1]="nearby_traps_within_x_units_also_trigger_on_triggering_trap" } }, - [3370]={ + [3415]={ [1]={ [1]={ limit={ @@ -74676,7 +75587,7 @@ return { [1]="display_cast_word_of_blades_on_hit_%" } }, - [3371]={ + [3416]={ [1]={ [1]={ limit={ @@ -74701,7 +75612,7 @@ return { [1]="display_cast_edict_of_blades_on_hit_%_" } }, - [3372]={ + [3417]={ [1]={ [1]={ limit={ @@ -74726,7 +75637,7 @@ return { [1]="display_cast_decree_of_blades_on_hit_%__" } }, - [3373]={ + [3418]={ [1]={ [1]={ limit={ @@ -74751,7 +75662,7 @@ return { [1]="display_cast_commandment_of_blades_on_hit_%_" } }, - [3374]={ + [3419]={ [1]={ [1]={ limit={ @@ -74776,7 +75687,7 @@ return { [1]="display_cast_word_of_winter_when_hit_%" } }, - [3375]={ + [3420]={ [1]={ [1]={ limit={ @@ -74801,7 +75712,7 @@ return { [1]="display_cast_edict_of_winter_when_hit_%" } }, - [3376]={ + [3421]={ [1]={ [1]={ limit={ @@ -74826,7 +75737,7 @@ return { [1]="display_cast_decree_of_winter_when_hit_%" } }, - [3377]={ + [3422]={ [1]={ [1]={ limit={ @@ -74851,7 +75762,7 @@ return { [1]="display_cast_commandment_of_winter_when_hit_%" } }, - [3378]={ + [3423]={ [1]={ [1]={ limit={ @@ -74876,7 +75787,7 @@ return { [1]="display_cast_word_of_inferno_on_kill_%" } }, - [3379]={ + [3424]={ [1]={ [1]={ limit={ @@ -74901,7 +75812,7 @@ return { [1]="display_cast_edict_of_inferno_on_kill_%" } }, - [3380]={ + [3425]={ [1]={ [1]={ limit={ @@ -74926,7 +75837,7 @@ return { [1]="display_cast_decree_of_inferno_on_kill_%" } }, - [3381]={ + [3426]={ [1]={ [1]={ limit={ @@ -74951,7 +75862,7 @@ return { [1]="display_cast_commandment_of_inferno_on_kill_%" } }, - [3382]={ + [3427]={ [1]={ [1]={ limit={ @@ -74976,7 +75887,7 @@ return { [1]="display_cast_word_of_tempest_on_hit_%" } }, - [3383]={ + [3428]={ [1]={ [1]={ limit={ @@ -75001,7 +75912,7 @@ return { [1]="display_cast_edict_of_tempest_on_hit_%" } }, - [3384]={ + [3429]={ [1]={ [1]={ limit={ @@ -75026,7 +75937,7 @@ return { [1]="display_cast_decree_of_tempest_on_hit_%" } }, - [3385]={ + [3430]={ [1]={ [1]={ limit={ @@ -75051,7 +75962,7 @@ return { [1]="display_cast_commandment_of_tempest_on_hit_%" } }, - [3386]={ + [3431]={ [1]={ [1]={ limit={ @@ -75076,7 +75987,7 @@ return { [1]="display_cast_word_of_the_grave_on_kill_%" } }, - [3387]={ + [3432]={ [1]={ [1]={ limit={ @@ -75101,7 +76012,7 @@ return { [1]="display_cast_edict_of_the_grave_on_kill_%" } }, - [3388]={ + [3433]={ [1]={ [1]={ limit={ @@ -75126,7 +76037,7 @@ return { [1]="display_cast_decree_of_the_grave_on_kill_%" } }, - [3389]={ + [3434]={ [1]={ [1]={ limit={ @@ -75151,7 +76062,7 @@ return { [1]="display_cast_commandment_of_the_grave_on_kill_%" } }, - [3390]={ + [3435]={ [1]={ [1]={ limit={ @@ -75176,7 +76087,7 @@ return { [1]="display_cast_word_of_reflection_when_hit_%" } }, - [3391]={ + [3436]={ [1]={ [1]={ limit={ @@ -75201,7 +76112,7 @@ return { [1]="display_cast_edict_of_reflection_when_hit_%" } }, - [3392]={ + [3437]={ [1]={ [1]={ limit={ @@ -75226,7 +76137,7 @@ return { [1]="display_cast_decree_of_reflection_when_hit_%" } }, - [3393]={ + [3438]={ [1]={ [1]={ limit={ @@ -75251,7 +76162,7 @@ return { [1]="display_cast_commandment_of_reflection_when_hit_%" } }, - [3394]={ + [3439]={ [1]={ [1]={ limit={ @@ -75276,7 +76187,7 @@ return { [1]="display_attack_with_word_of_force_on_hit_%" } }, - [3395]={ + [3440]={ [1]={ [1]={ limit={ @@ -75301,7 +76212,7 @@ return { [1]="display_attack_with_edict_of_force_on_hit_%" } }, - [3396]={ + [3441]={ [1]={ [1]={ limit={ @@ -75326,7 +76237,7 @@ return { [1]="display_attack_with_decree_of_force_on_hit_%" } }, - [3397]={ + [3442]={ [1]={ [1]={ limit={ @@ -75351,7 +76262,7 @@ return { [1]="display_attack_with_commandment_of_force_on_hit_%" } }, - [3398]={ + [3443]={ [1]={ [1]={ limit={ @@ -75376,7 +76287,7 @@ return { [1]="display_attack_with_word_of_light_when_critically_hit_%" } }, - [3399]={ + [3444]={ [1]={ [1]={ limit={ @@ -75401,7 +76312,7 @@ return { [1]="display_attack_with_edict_of_light_when_critically_hit_%" } }, - [3400]={ + [3445]={ [1]={ [1]={ limit={ @@ -75426,7 +76337,7 @@ return { [1]="display_attack_with_decree_of_light_when_critically_hit_%" } }, - [3401]={ + [3446]={ [1]={ [1]={ limit={ @@ -75451,7 +76362,7 @@ return { [1]="display_attack_with_commandment_of_light_when_critically_hit_%" } }, - [3402]={ + [3447]={ [1]={ [1]={ limit={ @@ -75476,7 +76387,7 @@ return { [1]="display_cast_word_of_war_on_kill_%" } }, - [3403]={ + [3448]={ [1]={ [1]={ limit={ @@ -75501,7 +76412,7 @@ return { [1]="display_cast_edict_of_war_on_kill_%" } }, - [3404]={ + [3449]={ [1]={ [1]={ limit={ @@ -75526,7 +76437,7 @@ return { [1]="display_cast_decree_of_war_on_kill_%" } }, - [3405]={ + [3450]={ [1]={ [1]={ limit={ @@ -75551,7 +76462,7 @@ return { [1]="display_cast_commandment_of_war_on_kill_%" } }, - [3406]={ + [3451]={ [1]={ [1]={ limit={ @@ -75576,7 +76487,7 @@ return { [1]="display_attack_with_word_of_fury_on_hit_%" } }, - [3407]={ + [3452]={ [1]={ [1]={ limit={ @@ -75601,7 +76512,7 @@ return { [1]="display_attack_with_edict_of_fury_on_hit_%" } }, - [3408]={ + [3453]={ [1]={ [1]={ limit={ @@ -75626,7 +76537,7 @@ return { [1]="display_attack_with_decree_of_fury_on_hit_%" } }, - [3409]={ + [3454]={ [1]={ [1]={ limit={ @@ -75651,7 +76562,7 @@ return { [1]="display_attack_with_commandment_of_fury_on_hit_%" } }, - [3410]={ + [3455]={ [1]={ [1]={ limit={ @@ -75676,7 +76587,7 @@ return { [1]="display_attack_with_word_of_spite_when_hit_%" } }, - [3411]={ + [3456]={ [1]={ [1]={ limit={ @@ -75701,7 +76612,7 @@ return { [1]="display_attack_with_edict_of_spite_when_hit_%" } }, - [3412]={ + [3457]={ [1]={ [1]={ limit={ @@ -75726,7 +76637,7 @@ return { [1]="display_attack_with_decree_of_spite_when_hit_%" } }, - [3413]={ + [3458]={ [1]={ [1]={ limit={ @@ -75751,7 +76662,7 @@ return { [1]="display_attack_with_commandment_of_spite_when_hit_%" } }, - [3414]={ + [3459]={ [1]={ [1]={ [1]={ @@ -75788,7 +76699,7 @@ return { [1]="attack_and_cast_speed_+%_for_4_seconds_on_begin_es_recharge" } }, - [3415]={ + [3460]={ [1]={ [1]={ [1]={ @@ -75825,7 +76736,7 @@ return { [1]="life_es_and_mana_recovery_+%_for_4_seconds_on_killing_enemies_affected_by_your_degen" } }, - [3416]={ + [3461]={ [1]={ [1]={ limit={ @@ -75854,7 +76765,7 @@ return { [1]="trickster_passive_chance_to_evade_attacks_while_not_on_full_energy_shield_+%_final" } }, - [3417]={ + [3462]={ [1]={ [1]={ [1]={ @@ -75891,7 +76802,7 @@ return { [1]="critical_strike_chance_+%_vs_enemies_without_elemental_status_ailments" } }, - [3418]={ + [3463]={ [1]={ [1]={ [1]={ @@ -75928,7 +76839,7 @@ return { [1]="spell_damage_+%_for_4_seconds_on_cast" } }, - [3419]={ + [3464]={ [1]={ [1]={ [1]={ @@ -75965,7 +76876,7 @@ return { [1]="attack_damage_+%_for_4_seconds_on_cast" } }, - [3420]={ + [3465]={ [1]={ [1]={ [1]={ @@ -76002,7 +76913,7 @@ return { [1]="attack_damage_+%_if_hit_recently" } }, - [3421]={ + [3466]={ [1]={ [1]={ [1]={ @@ -76039,7 +76950,7 @@ return { [1]="attack_speed_+%_for_4_seconds_on_attack" } }, - [3422]={ + [3467]={ [1]={ [1]={ [1]={ @@ -76076,7 +76987,7 @@ return { [1]="cast_speed_+%_for_4_seconds_on_attack" } }, - [3423]={ + [3468]={ [1]={ [1]={ limit={ @@ -76101,7 +77012,7 @@ return { [1]="display_cast_word_of_flames_on_hit_%" } }, - [3424]={ + [3469]={ [1]={ [1]={ limit={ @@ -76126,7 +77037,7 @@ return { [1]="display_cast_edict_of_flames_on_hit_%" } }, - [3425]={ + [3470]={ [1]={ [1]={ limit={ @@ -76151,7 +77062,7 @@ return { [1]="display_cast_decree_of_flames_on_hit_%" } }, - [3426]={ + [3471]={ [1]={ [1]={ limit={ @@ -76176,7 +77087,7 @@ return { [1]="display_cast_commandment_of_flames_on_hit_%" } }, - [3427]={ + [3472]={ [1]={ [1]={ limit={ @@ -76201,7 +77112,7 @@ return { [1]="display_cast_word_of_frost_on_kill_%" } }, - [3428]={ + [3473]={ [1]={ [1]={ limit={ @@ -76226,7 +77137,7 @@ return { [1]="display_cast_edict_of_frost_on_kill_%" } }, - [3429]={ + [3474]={ [1]={ [1]={ limit={ @@ -76251,7 +77162,7 @@ return { [1]="display_cast_decree_of_frost_on_kill_%" } }, - [3430]={ + [3475]={ [1]={ [1]={ limit={ @@ -76276,7 +77187,7 @@ return { [1]="display_cast_commandment_of_frost_on_kill_%" } }, - [3431]={ + [3476]={ [1]={ [1]={ limit={ @@ -76301,7 +77212,7 @@ return { [1]="display_cast_word_of_thunder_on_kill_%" } }, - [3432]={ + [3477]={ [1]={ [1]={ limit={ @@ -76326,7 +77237,7 @@ return { [1]="display_cast_edict_of_thunder_on_kill_%" } }, - [3433]={ + [3478]={ [1]={ [1]={ limit={ @@ -76351,7 +77262,7 @@ return { [1]="display_cast_decree_of_thunder_on_kill_%" } }, - [3434]={ + [3479]={ [1]={ [1]={ limit={ @@ -76376,7 +77287,7 @@ return { [1]="display_cast_commandment_of_thunder_on_kill_%" } }, - [3435]={ + [3480]={ [1]={ [1]={ [1]={ @@ -76396,7 +77307,7 @@ return { [1]="chance_to_place_an_additional_mine_%" } }, - [3436]={ + [3481]={ [1]={ [1]={ [1]={ @@ -76429,7 +77340,7 @@ return { [1]="number_of_additional_mines_to_place" } }, - [3437]={ + [3482]={ [1]={ [1]={ limit={ @@ -76445,7 +77356,7 @@ return { [1]="chance_for_elemental_damage_to_be_added_as_additional_chaos_damage_%" } }, - [3438]={ + [3483]={ [1]={ [1]={ [1]={ @@ -76482,7 +77393,7 @@ return { [1]="enchantment_critical_strike_chance_+%_if_you_havent_crit_for_4_seconds" } }, - [3439]={ + [3484]={ [1]={ [1]={ limit={ @@ -76511,7 +77422,7 @@ return { [1]="damage_+%_on_consecrated_ground" } }, - [3440]={ + [3485]={ [1]={ [1]={ [1]={ @@ -76544,7 +77455,7 @@ return { [1]="consecrate_ground_for_3_seconds_when_hit_%" } }, - [3441]={ + [3486]={ [1]={ [1]={ limit={ @@ -76573,7 +77484,7 @@ return { [1]="mana_cost_+%_on_consecrated_ground" } }, - [3442]={ + [3487]={ [1]={ [1]={ [1]={ @@ -76593,7 +77504,7 @@ return { [1]="avoid_ailments_%_on_consecrated_ground" } }, - [3443]={ + [3488]={ [1]={ [1]={ [1]={ @@ -76613,7 +77524,7 @@ return { [1]="critical_strike_multiplier_+_vs_enemies_affected_by_elemental_status_ailment" } }, - [3444]={ + [3489]={ [1]={ [1]={ limit={ @@ -76629,7 +77540,7 @@ return { [1]="non_critical_strikes_penetrate_elemental_resistances_%" } }, - [3445]={ + [3490]={ [1]={ [1]={ limit={ @@ -76645,7 +77556,7 @@ return { [1]="base_attack_damage_penetrates_elemental_resist_%" } }, - [3446]={ + [3491]={ [1]={ [1]={ limit={ @@ -76661,7 +77572,7 @@ return { [1]="base_penetrate_elemental_resistances_%" } }, - [3447]={ + [3492]={ [1]={ [1]={ limit={ @@ -76677,7 +77588,7 @@ return { [1]="base_attack_damage_penetrates_fire_resist_%" } }, - [3448]={ + [3493]={ [1]={ [1]={ limit={ @@ -76693,7 +77604,7 @@ return { [1]="base_attack_damage_penetrates_cold_resist_%" } }, - [3449]={ + [3494]={ [1]={ [1]={ limit={ @@ -76709,7 +77620,7 @@ return { [1]="base_attack_damage_penetrates_lightning_resist_%" } }, - [3450]={ + [3495]={ [1]={ [1]={ limit={ @@ -76725,7 +77636,7 @@ return { [1]="base_attack_damage_penetrates_chaos_resist_%" } }, - [3451]={ + [3496]={ [1]={ [1]={ limit={ @@ -76741,7 +77652,7 @@ return { [1]="chance_to_double_stun_duration_%" } }, - [3452]={ + [3497]={ [1]={ [1]={ limit={ @@ -76770,7 +77681,7 @@ return { [1]="shockwave_slam_explosion_damage_+%_final" } }, - [3453]={ + [3498]={ [1]={ [1]={ limit={ @@ -76799,7 +77710,7 @@ return { [1]="non_curse_aura_effect_+%" } }, - [3454]={ + [3499]={ [1]={ [1]={ limit={ @@ -76828,7 +77739,7 @@ return { [1]="non_curse_aura_effect_+%_vs_enemies" } }, - [3455]={ + [3500]={ [1]={ [1]={ [1]={ @@ -76865,7 +77776,7 @@ return { [1]="unarmed_damage_+%_vs_bleeding_enemies" } }, - [3456]={ + [3501]={ [1]={ [1]={ limit={ @@ -76894,7 +77805,7 @@ return { [1]="aura_effect_on_self_from_your_skills_+%" } }, - [3457]={ + [3502]={ [1]={ [1]={ limit={ @@ -76919,7 +77830,7 @@ return { [1]="life_gained_on_bleeding_enemy_hit" } }, - [3458]={ + [3503]={ [1]={ [1]={ [1]={ @@ -76943,7 +77854,7 @@ return { [1]="base_melee_critical_strike_chance_while_unarmed_%" } }, - [3459]={ + [3504]={ [1]={ [1]={ [1]={ @@ -76963,7 +77874,7 @@ return { [1]="modifiers_to_claw_damage_also_affect_unarmed_melee_damage" } }, - [3460]={ + [3505]={ [1]={ [1]={ [1]={ @@ -76983,7 +77894,7 @@ return { [1]="modifiers_to_claw_attack_speed_also_affect_unarmed_melee_attack_speed" } }, - [3461]={ + [3506]={ [1]={ [1]={ [1]={ @@ -77003,7 +77914,7 @@ return { [1]="modifiers_to_claw_critical_strike_chance_also_affect_unarmed_melee_critical_strike_chance" } }, - [3462]={ + [3507]={ [1]={ [1]={ [1]={ @@ -77040,7 +77951,7 @@ return { [1]="damage_+%_while_unarmed" } }, - [3463]={ + [3508]={ [1]={ [1]={ limit={ @@ -77069,7 +77980,7 @@ return { [1]="killed_monster_dropped_item_rarity_+%_when_shattered" } }, - [3464]={ + [3509]={ [1]={ [1]={ limit={ @@ -77098,7 +78009,7 @@ return { [1]="energy_shield_delay_during_flask_effect_-%" } }, - [3465]={ + [3510]={ [1]={ [1]={ limit={ @@ -77127,7 +78038,7 @@ return { [1]="virtual_energy_shield_delay_-%" } }, - [3466]={ + [3511]={ [1]={ [1]={ limit={ @@ -77156,7 +78067,7 @@ return { [1]="energy_shield_recharge_rate_during_flask_effect_+%" } }, - [3467]={ + [3512]={ [1]={ [1]={ limit={ @@ -77185,7 +78096,7 @@ return { [1]="virtual_energy_shield_recharge_rate_+%" } }, - [3468]={ + [3513]={ [1]={ [1]={ limit={ @@ -77201,7 +78112,7 @@ return { [1]="arrows_fork" } }, - [3469]={ + [3514]={ [1]={ [1]={ limit={ @@ -77217,7 +78128,7 @@ return { [1]="projectiles_fork" } }, - [3470]={ + [3515]={ [1]={ [1]={ [1]={ @@ -77237,7 +78148,7 @@ return { [1]="fishing_bite_sensitivity_+%" } }, - [3471]={ + [3516]={ [1]={ [1]={ limit={ @@ -77266,7 +78177,7 @@ return { [1]="cold_damage_+%_per_1%_block_chance" } }, - [3472]={ + [3517]={ [1]={ [1]={ limit={ @@ -77295,7 +78206,7 @@ return { [1]="maximum_mana_+%_per_2%_spell_block_chance" } }, - [3473]={ + [3518]={ [1]={ [1]={ limit={ @@ -77324,7 +78235,7 @@ return { [1]="physical_damage_reduction_rating_+%_while_chilled_or_frozen" } }, - [3474]={ + [3519]={ [1]={ [1]={ limit={ @@ -77353,7 +78264,7 @@ return { [1]="map_players_action_speed_+%_while_chilled" } }, - [3475]={ + [3520]={ [1]={ [1]={ limit={ @@ -77382,7 +78293,7 @@ return { [1]="action_speed_+%_while_chilled" } }, - [3476]={ + [3521]={ [1]={ [1]={ limit={ @@ -77398,7 +78309,7 @@ return { [1]="reduce_enemy_cold_resistance_with_weapons_%" } }, - [3477]={ + [3522]={ [1]={ [1]={ limit={ @@ -77414,7 +78325,7 @@ return { [1]="reduce_enemy_fire_resistance_with_weapons_%" } }, - [3478]={ + [3523]={ [1]={ [1]={ limit={ @@ -77430,7 +78341,7 @@ return { [1]="reduce_enemy_lightning_resistance_with_weapons_%" } }, - [3479]={ + [3524]={ [1]={ [1]={ limit={ @@ -77446,7 +78357,7 @@ return { [1]="reduce_enemy_chaos_resistance_with_weapons_%" } }, - [3480]={ + [3525]={ [1]={ [1]={ limit={ @@ -77475,7 +78386,7 @@ return { [1]="inquisitor_aura_elemental_damage_+%_final" } }, - [3481]={ + [3526]={ [1]={ [1]={ limit={ @@ -77504,7 +78415,7 @@ return { [1]="support_gem_elemental_damage_+%_final" } }, - [3482]={ + [3527]={ [1]={ [1]={ limit={ @@ -77529,7 +78440,7 @@ return { [1]="map_monster_drop_higher_level_gear" } }, - [3483]={ + [3528]={ [1]={ [1]={ limit={ @@ -77545,7 +78456,7 @@ return { [1]="modifiers_to_map_item_drop_quantity_also_apply_to_map_item_drop_rarity" } }, - [3484]={ + [3529]={ [1]={ [1]={ [1]={ @@ -77565,7 +78476,7 @@ return { [1]="base_should_have_onslaught_from_stat" } }, - [3485]={ + [3530]={ [1]={ [1]={ [1]={ @@ -77585,7 +78496,7 @@ return { [1]="silver_flask_display_onslaught" } }, - [3486]={ + [3531]={ [1]={ [1]={ limit={ @@ -77601,7 +78512,7 @@ return { [1]="reduce_enemy_elemental_resistance_with_weapons_%" } }, - [3487]={ + [3532]={ [1]={ [1]={ limit={ @@ -77626,7 +78537,7 @@ return { [1]="%_chance_to_gain_frenzy_charge_on_trap_triggered_by_an_enemy" } }, - [3488]={ + [3533]={ [1]={ [1]={ limit={ @@ -77651,7 +78562,7 @@ return { [1]="%_chance_to_gain_endurance_charge_on_trap_triggered_by_an_enemy" } }, - [3489]={ + [3534]={ [1]={ [1]={ limit={ @@ -77667,7 +78578,7 @@ return { [1]="add_power_charge_on_hit_%" } }, - [3490]={ + [3535]={ [1]={ [1]={ limit={ @@ -77683,7 +78594,7 @@ return { [1]="lose_all_power_charges_on_reaching_maximum_power_charges" } }, - [3491]={ + [3536]={ [1]={ [1]={ [1]={ @@ -77703,7 +78614,7 @@ return { [1]="shocked_for_4_seconds_on_reaching_maximum_power_charges" } }, - [3492]={ + [3537]={ [1]={ [1]={ limit={ @@ -77719,7 +78630,7 @@ return { [1]="gain_frenzy_charge_on_reaching_maximum_power_charges" } }, - [3493]={ + [3538]={ [1]={ [1]={ limit={ @@ -77735,7 +78646,7 @@ return { [1]="is_petrified" } }, - [3494]={ + [3539]={ [1]={ [1]={ limit={ @@ -77751,7 +78662,7 @@ return { [1]="add_endurance_charge_on_gain_power_charge_%" } }, - [3495]={ + [3540]={ [1]={ [1]={ [1]={ @@ -77788,7 +78699,7 @@ return { [1]="stacking_damage_+%_on_kill_for_4_seconds" } }, - [3496]={ + [3541]={ [1]={ [1]={ limit={ @@ -77817,7 +78728,7 @@ return { [1]="attack_and_cast_speed_+%_while_totem_active" } }, - [3497]={ + [3542]={ [1]={ [1]={ limit={ @@ -77833,7 +78744,7 @@ return { [1]="number_of_additional_totems_allowed_on_kill_for_8_seconds" } }, - [3498]={ + [3543]={ [1]={ [1]={ limit={ @@ -77862,7 +78773,7 @@ return { [1]="map_monsters_base_self_critical_strike_multiplier_-%" } }, - [3499]={ + [3544]={ [1]={ [1]={ limit={ @@ -77887,7 +78798,7 @@ return { [1]="power_frenzy_or_endurance_charge_on_kill_%" } }, - [3500]={ + [3545]={ [1]={ [1]={ limit={ @@ -77903,7 +78814,7 @@ return { [1]="immune_to_poison" } }, - [3501]={ + [3546]={ [1]={ [1]={ [1]={ @@ -77940,7 +78851,7 @@ return { [1]="elementalist_damage_with_an_element_+%_for_4_seconds_after_being_hit_by_an_element" } }, - [3502]={ + [3547]={ [1]={ [1]={ [1]={ @@ -77977,7 +78888,7 @@ return { [1]="damage_taken_+%_to_an_element_for_4_seconds_when_hit_by_damage_from_an_element" } }, - [3503]={ + [3548]={ [1]={ [1]={ limit={ @@ -78006,7 +78917,7 @@ return { [1]="elementalist_elemental_damage_+%_for_4_seconds_every_10_seconds" } }, - [3504]={ + [3549]={ [1]={ [1]={ limit={ @@ -78022,7 +78933,7 @@ return { [1]="elementalist_cold_penetration_%_for_4_seconds_on_using_fire_skill" } }, - [3505]={ + [3550]={ [1]={ [1]={ limit={ @@ -78038,7 +78949,7 @@ return { [1]="elementalist_lightning_penetration_%_for_4_seconds_on_using_cold_skill" } }, - [3506]={ + [3551]={ [1]={ [1]={ limit={ @@ -78054,7 +78965,7 @@ return { [1]="elementalist_fire_penetration_%_for_4_seconds_on_using_lightning_skill" } }, - [3507]={ + [3552]={ [1]={ [1]={ limit={ @@ -78070,7 +78981,7 @@ return { [1]="elementalist_summon_elemental_golem_on_killing_enemy_with_element_%" } }, - [3508]={ + [3553]={ [1]={ [1]={ [1]={ @@ -78090,7 +79001,7 @@ return { [1]="elementalist_all_damage_causes_chill_shock_and_ignite_for_4_seconds_on_kill_%" } }, - [3509]={ + [3554]={ [1]={ [1]={ [1]={ @@ -78131,7 +79042,7 @@ return { [1]="elementalist_elemental_status_effect_aura_radius" } }, - [3510]={ + [3555]={ [1]={ [1]={ [1]={ @@ -78151,7 +79062,7 @@ return { [1]="knockback_on_counterattack_%" } }, - [3511]={ + [3556]={ [1]={ [1]={ [1]={ @@ -78184,7 +79095,7 @@ return { [1]="chill_on_you_proliferates_to_nearby_enemies_within_x_radius" } }, - [3512]={ + [3557]={ [1]={ [1]={ limit={ @@ -78209,7 +79120,7 @@ return { [1]="freeze_on_you_proliferates_to_nearby_enemies_within_x_radius" } }, - [3513]={ + [3558]={ [1]={ [1]={ limit={ @@ -78238,7 +79149,7 @@ return { [1]="melee_ancestor_totem_damage_+%" } }, - [3514]={ + [3559]={ [1]={ [1]={ limit={ @@ -78267,7 +79178,7 @@ return { [1]="animate_weapon_damage_+%" } }, - [3515]={ + [3560]={ [1]={ [1]={ limit={ @@ -78296,7 +79207,7 @@ return { [1]="burning_arrow_damage_+%" } }, - [3516]={ + [3561]={ [1]={ [1]={ limit={ @@ -78325,7 +79236,7 @@ return { [1]="cleave_damage_+%" } }, - [3517]={ + [3562]={ [1]={ [1]={ limit={ @@ -78354,7 +79265,7 @@ return { [1]="double_strike_damage_+%" } }, - [3518]={ + [3563]={ [1]={ [1]={ limit={ @@ -78383,7 +79294,7 @@ return { [1]="dual_strike_damage_+%" } }, - [3519]={ + [3564]={ [1]={ [1]={ limit={ @@ -78412,7 +79323,7 @@ return { [1]="fire_trap_damage_+%" } }, - [3520]={ + [3565]={ [1]={ [1]={ limit={ @@ -78441,7 +79352,7 @@ return { [1]="fireball_damage_+%" } }, - [3521]={ + [3566]={ [1]={ [1]={ limit={ @@ -78470,7 +79381,7 @@ return { [1]="freezing_pulse_damage_+%" } }, - [3522]={ + [3567]={ [1]={ [1]={ limit={ @@ -78499,7 +79410,7 @@ return { [1]="glacial_hammer_damage_+%" } }, - [3523]={ + [3568]={ [1]={ [1]={ limit={ @@ -78528,7 +79439,7 @@ return { [1]="ground_slam_damage_+%" } }, - [3524]={ + [3569]={ [1]={ [1]={ limit={ @@ -78557,7 +79468,7 @@ return { [1]="heavy_strike_damage_+%" } }, - [3525]={ + [3570]={ [1]={ [1]={ limit={ @@ -78586,7 +79497,7 @@ return { [1]="infernal_blow_damage_+%" } }, - [3526]={ + [3571]={ [1]={ [1]={ limit={ @@ -78615,7 +79526,7 @@ return { [1]="lightning_strike_damage_+%" } }, - [3527]={ + [3572]={ [1]={ [1]={ limit={ @@ -78644,7 +79555,7 @@ return { [1]="lightning_tendrils_damage_+%" } }, - [3528]={ + [3573]={ [1]={ [1]={ limit={ @@ -78673,7 +79584,7 @@ return { [1]="magma_orb_damage_+%" } }, - [3529]={ + [3574]={ [1]={ [1]={ limit={ @@ -78702,7 +79613,7 @@ return { [1]="molten_strike_damage_+%" } }, - [3530]={ + [3575]={ [1]={ [1]={ limit={ @@ -78731,7 +79642,7 @@ return { [1]="zombie_damage_+%" } }, - [3531]={ + [3576]={ [1]={ [1]={ limit={ @@ -78760,7 +79671,7 @@ return { [1]="reave_damage_+%" } }, - [3532]={ + [3577]={ [1]={ [1]={ limit={ @@ -78789,7 +79700,7 @@ return { [1]="spark_damage_+%" } }, - [3533]={ + [3578]={ [1]={ [1]={ limit={ @@ -78818,7 +79729,7 @@ return { [1]="spectral_throw_damage_+%" } }, - [3534]={ + [3579]={ [1]={ [1]={ limit={ @@ -78847,7 +79758,7 @@ return { [1]="split_arrow_damage_+%" } }, - [3535]={ + [3580]={ [1]={ [1]={ limit={ @@ -78876,7 +79787,7 @@ return { [1]="ethereal_knives_damage_+%" } }, - [3536]={ + [3581]={ [1]={ [1]={ limit={ @@ -78905,7 +79816,7 @@ return { [1]="ice_shot_damage_+%" } }, - [3537]={ + [3582]={ [1]={ [1]={ limit={ @@ -78934,7 +79845,7 @@ return { [1]="rain_of_arrows_damage_+%" } }, - [3538]={ + [3583]={ [1]={ [1]={ limit={ @@ -78963,7 +79874,7 @@ return { [1]="raging_spirit_damage_+%" } }, - [3539]={ + [3584]={ [1]={ [1]={ limit={ @@ -78992,7 +79903,7 @@ return { [1]="viper_strike_damage_+%" } }, - [3540]={ + [3585]={ [1]={ [1]={ limit={ @@ -79021,7 +79932,7 @@ return { [1]="flicker_strike_damage_+%" } }, - [3541]={ + [3586]={ [1]={ [1]={ limit={ @@ -79050,7 +79961,7 @@ return { [1]="leap_slam_damage_+%" } }, - [3542]={ + [3587]={ [1]={ [1]={ limit={ @@ -79079,7 +79990,7 @@ return { [1]="lightning_arrow_damage_+%" } }, - [3543]={ + [3588]={ [1]={ [1]={ limit={ @@ -79108,7 +80019,7 @@ return { [1]="lightning_warp_damage_+%" } }, - [3544]={ + [3589]={ [1]={ [1]={ limit={ @@ -79137,7 +80048,7 @@ return { [1]="puncture_damage_+%" } }, - [3545]={ + [3590]={ [1]={ [1]={ limit={ @@ -79166,7 +80077,7 @@ return { [1]="shield_charge_damage_+%" } }, - [3546]={ + [3591]={ [1]={ [1]={ limit={ @@ -79195,7 +80106,7 @@ return { [1]="skeletons_damage_+%" } }, - [3547]={ + [3592]={ [1]={ [1]={ limit={ @@ -79224,7 +80135,7 @@ return { [1]="arc_damage_+%" } }, - [3548]={ + [3593]={ [1]={ [1]={ limit={ @@ -79253,7 +80164,7 @@ return { [1]="barrage_damage_+%" } }, - [3549]={ + [3594]={ [1]={ [1]={ limit={ @@ -79282,7 +80193,7 @@ return { [1]="fire_nova_mine_damage_+%" } }, - [3550]={ + [3595]={ [1]={ [1]={ limit={ @@ -79311,7 +80222,7 @@ return { [1]="fire_storm_damage_+%" } }, - [3551]={ + [3596]={ [1]={ [1]={ limit={ @@ -79340,7 +80251,7 @@ return { [1]="flame_surge_damage_+%" } }, - [3552]={ + [3597]={ [1]={ [1]={ limit={ @@ -79369,7 +80280,7 @@ return { [1]="ice_nova_damage_+%" } }, - [3553]={ + [3598]={ [1]={ [1]={ limit={ @@ -79398,7 +80309,7 @@ return { [1]="ice_spear_damage_+%" } }, - [3554]={ + [3599]={ [1]={ [1]={ limit={ @@ -79427,7 +80338,7 @@ return { [1]="incinerate_damage_+%" } }, - [3555]={ + [3600]={ [1]={ [1]={ limit={ @@ -79456,7 +80367,7 @@ return { [1]="power_siphon_damage_+%" } }, - [3556]={ + [3601]={ [1]={ [1]={ limit={ @@ -79485,7 +80396,7 @@ return { [1]="searing_bond_damage_+%" } }, - [3557]={ + [3602]={ [1]={ [1]={ limit={ @@ -79514,7 +80425,7 @@ return { [1]="static_strike_damage_+%" } }, - [3558]={ + [3603]={ [1]={ [1]={ limit={ @@ -79543,7 +80454,7 @@ return { [1]="storm_call_damage_+%" } }, - [3559]={ + [3604]={ [1]={ [1]={ limit={ @@ -79572,7 +80483,7 @@ return { [1]="sweep_damage_+%" } }, - [3560]={ + [3605]={ [1]={ [1]={ limit={ @@ -79601,7 +80512,7 @@ return { [1]="frenzy_damage_+%" } }, - [3561]={ + [3606]={ [1]={ [1]={ limit={ @@ -79630,7 +80541,7 @@ return { [1]="righteous_fire_damage_+%" } }, - [3562]={ + [3607]={ [1]={ [1]={ limit={ @@ -79659,7 +80570,7 @@ return { [1]="elemental_hit_damage_+%" } }, - [3563]={ + [3608]={ [1]={ [1]={ limit={ @@ -79688,7 +80599,7 @@ return { [1]="cyclone_damage_+%" } }, - [3564]={ + [3609]={ [1]={ [1]={ limit={ @@ -79717,7 +80628,7 @@ return { [1]="tornado_shot_damage_+%" } }, - [3565]={ + [3610]={ [1]={ [1]={ limit={ @@ -79746,7 +80657,7 @@ return { [1]="arctic_breath_damage_+%" } }, - [3566]={ + [3611]={ [1]={ [1]={ limit={ @@ -79775,7 +80686,7 @@ return { [1]="explosive_arrow_damage_+%" } }, - [3567]={ + [3612]={ [1]={ [1]={ limit={ @@ -79804,7 +80715,7 @@ return { [1]="flameblast_damage_+%" } }, - [3568]={ + [3613]={ [1]={ [1]={ limit={ @@ -79833,7 +80744,7 @@ return { [1]="glacial_cascade_damage_+%" } }, - [3569]={ + [3614]={ [1]={ [1]={ limit={ @@ -79862,7 +80773,7 @@ return { [1]="ice_crash_damage_+%" } }, - [3570]={ + [3615]={ [1]={ [1]={ limit={ @@ -79891,7 +80802,7 @@ return { [1]="kinetic_blast_damage_+%" } }, - [3571]={ + [3616]={ [1]={ [1]={ limit={ @@ -79920,7 +80831,7 @@ return { [1]="shock_nova_damage_+%" } }, - [3572]={ + [3617]={ [1]={ [1]={ limit={ @@ -79949,7 +80860,7 @@ return { [1]="shockwave_totem_damage_+%" } }, - [3573]={ + [3618]={ [1]={ [1]={ limit={ @@ -79978,7 +80889,7 @@ return { [1]="wild_strike_damage_+%" } }, - [3574]={ + [3619]={ [1]={ [1]={ limit={ @@ -80007,7 +80918,7 @@ return { [1]="detonate_dead_damage_+%" } }, - [3575]={ + [3620]={ [1]={ [1]={ limit={ @@ -80036,7 +80947,7 @@ return { [1]="caustic_arrow_damage_+%" } }, - [3576]={ + [3621]={ [1]={ [1]={ [1]={ @@ -80128,7 +81039,7 @@ return { [2]="caustic_arrow_withered_base_duration_ms" } }, - [3577]={ + [3622]={ [1]={ [1]={ limit={ @@ -80144,7 +81055,7 @@ return { [1]="base_number_of_golems_allowed" } }, - [3578]={ + [3623]={ [1]={ [1]={ limit={ @@ -80160,7 +81071,7 @@ return { [1]="you_cannot_have_non_golem_minions" } }, - [3579]={ + [3624]={ [1]={ [1]={ limit={ @@ -80189,7 +81100,7 @@ return { [1]="golem_scale_+%" } }, - [3580]={ + [3625]={ [1]={ [1]={ limit={ @@ -80218,7 +81129,7 @@ return { [1]="stone_golem_damage_+%" } }, - [3581]={ + [3626]={ [1]={ [1]={ limit={ @@ -80247,7 +81158,7 @@ return { [1]="flame_golem_damage_+%" } }, - [3582]={ + [3627]={ [1]={ [1]={ limit={ @@ -80276,7 +81187,7 @@ return { [1]="ice_golem_damage_+%" } }, - [3583]={ + [3628]={ [1]={ [1]={ limit={ @@ -80305,7 +81216,7 @@ return { [1]="lightning_golem_damage_+%" } }, - [3584]={ + [3629]={ [1]={ [1]={ limit={ @@ -80334,7 +81245,7 @@ return { [1]="chaos_golem_damage_+%" } }, - [3585]={ + [3630]={ [1]={ [1]={ limit={ @@ -80363,7 +81274,7 @@ return { [1]="damage_+%_if_golem_summoned_in_past_8_seconds" } }, - [3586]={ + [3631]={ [1]={ [1]={ limit={ @@ -80392,7 +81303,7 @@ return { [1]="golem_damage_+%_if_summoned_in_past_8_seconds" } }, - [3587]={ + [3632]={ [1]={ [1]={ limit={ @@ -80421,7 +81332,7 @@ return { [1]="unique_primordial_tether_golem_damage_+%_final" } }, - [3588]={ + [3633]={ [1]={ [1]={ limit={ @@ -80450,7 +81361,7 @@ return { [1]="dominating_blow_minion_damage_+%" } }, - [3589]={ + [3634]={ [1]={ [1]={ limit={ @@ -80479,7 +81390,7 @@ return { [1]="dominating_blow_skill_attack_damage_+%" } }, - [3590]={ + [3635]={ [1]={ [1]={ limit={ @@ -80508,7 +81419,7 @@ return { [1]="cold_snap_damage_+%" } }, - [3591]={ + [3636]={ [1]={ [1]={ limit={ @@ -80537,7 +81448,7 @@ return { [1]="flame_totem_damage_+%" } }, - [3592]={ + [3637]={ [1]={ [1]={ limit={ @@ -80566,7 +81477,7 @@ return { [1]="animate_guardian_damage_+%" } }, - [3593]={ + [3638]={ [1]={ [1]={ limit={ @@ -80595,7 +81506,7 @@ return { [1]="bear_trap_damage_+%" } }, - [3594]={ + [3639]={ [1]={ [1]={ limit={ @@ -80624,7 +81535,7 @@ return { [1]="frost_wall_damage_+%" } }, - [3595]={ + [3640]={ [1]={ [1]={ limit={ @@ -80653,7 +81564,7 @@ return { [1]="molten_shell_damage_+%" } }, - [3596]={ + [3641]={ [1]={ [1]={ limit={ @@ -80682,7 +81593,7 @@ return { [1]="reckoning_damage_+%" } }, - [3597]={ + [3642]={ [1]={ [1]={ limit={ @@ -80711,7 +81622,7 @@ return { [1]="vigilant_strike_damage_+%" } }, - [3598]={ + [3643]={ [1]={ [1]={ limit={ @@ -80740,7 +81651,7 @@ return { [1]="whirling_blades_damage_+%" } }, - [3599]={ + [3644]={ [1]={ [1]={ limit={ @@ -80769,7 +81680,7 @@ return { [1]="flame_dash_damage_+%" } }, - [3600]={ + [3645]={ [1]={ [1]={ limit={ @@ -80798,7 +81709,7 @@ return { [1]="freeze_mine_damage_+%" } }, - [3601]={ + [3646]={ [1]={ [1]={ limit={ @@ -80827,7 +81738,7 @@ return { [1]="herald_of_ash_damage_+%" } }, - [3602]={ + [3647]={ [1]={ [1]={ limit={ @@ -80856,7 +81767,7 @@ return { [1]="herald_of_ice_damage_+%" } }, - [3603]={ + [3648]={ [1]={ [1]={ limit={ @@ -80885,7 +81796,7 @@ return { [1]="herald_of_thunder_damage_+%" } }, - [3604]={ + [3649]={ [1]={ [1]={ limit={ @@ -80914,7 +81825,7 @@ return { [1]="tempest_shield_damage_+%" } }, - [3605]={ + [3650]={ [1]={ [1]={ limit={ @@ -80943,7 +81854,7 @@ return { [1]="desecrate_damage_+%" } }, - [3606]={ + [3651]={ [1]={ [1]={ limit={ @@ -80972,7 +81883,7 @@ return { [1]="blink_arrow_and_blink_arrow_clone_damage_+%" } }, - [3607]={ + [3652]={ [1]={ [1]={ limit={ @@ -81001,7 +81912,7 @@ return { [1]="mirror_arrow_and_mirror_arrow_clone_damage_+%" } }, - [3608]={ + [3653]={ [1]={ [1]={ limit={ @@ -81030,7 +81941,7 @@ return { [1]="riposte_damage_+%" } }, - [3609]={ + [3654]={ [1]={ [1]={ limit={ @@ -81059,7 +81970,7 @@ return { [1]="vengeance_damage_+%" } }, - [3610]={ + [3655]={ [1]={ [1]={ limit={ @@ -81088,7 +81999,7 @@ return { [1]="converted_enemies_damage_+%" } }, - [3611]={ + [3656]={ [1]={ [1]={ limit={ @@ -81117,7 +82028,7 @@ return { [1]="abyssal_cry_damage_+%" } }, - [3612]={ + [3657]={ [1]={ [1]={ limit={ @@ -81146,7 +82057,7 @@ return { [1]="shrapnel_shot_damage_+%" } }, - [3613]={ + [3658]={ [1]={ [1]={ limit={ @@ -81175,7 +82086,7 @@ return { [1]="blast_rain_damage_+%" } }, - [3614]={ + [3659]={ [1]={ [1]={ limit={ @@ -81204,7 +82115,7 @@ return { [1]="essence_drain_damage_+%" } }, - [3615]={ + [3660]={ [1]={ [1]={ limit={ @@ -81233,7 +82144,7 @@ return { [1]="contagion_damage_+%" } }, - [3616]={ + [3661]={ [1]={ [1]={ limit={ @@ -81262,7 +82173,7 @@ return { [1]="blade_vortex_damage_+%" } }, - [3617]={ + [3662]={ [1]={ [1]={ limit={ @@ -81291,7 +82202,7 @@ return { [1]="bladefall_damage_+%" } }, - [3618]={ + [3663]={ [1]={ [1]={ limit={ @@ -81320,7 +82231,7 @@ return { [1]="ice_trap_damage_+%" } }, - [3619]={ + [3664]={ [1]={ [1]={ limit={ @@ -81349,7 +82260,7 @@ return { [1]="charged_dash_damage_+%" } }, - [3620]={ + [3665]={ [1]={ [1]={ limit={ @@ -81378,7 +82289,7 @@ return { [1]="earthquake_damage_+%" } }, - [3621]={ + [3666]={ [1]={ [1]={ limit={ @@ -81407,7 +82318,7 @@ return { [1]="skeletal_chains_damage_+%" } }, - [3622]={ + [3667]={ [1]={ [1]={ limit={ @@ -81436,7 +82347,7 @@ return { [1]="storm_burst_damage_+%" } }, - [3623]={ + [3668]={ [1]={ [1]={ limit={ @@ -81465,7 +82376,7 @@ return { [1]="frost_bomb_damage_+%" } }, - [3624]={ + [3669]={ [1]={ [1]={ limit={ @@ -81494,7 +82405,7 @@ return { [1]="orb_of_storms_damage_+%" } }, - [3625]={ + [3670]={ [1]={ [1]={ limit={ @@ -81523,7 +82434,7 @@ return { [1]="siege_ballista_damage_+%" } }, - [3626]={ + [3671]={ [1]={ [1]={ limit={ @@ -81552,7 +82463,7 @@ return { [1]="blight_damage_+%" } }, - [3627]={ + [3672]={ [1]={ [1]={ limit={ @@ -81581,7 +82492,7 @@ return { [1]="shockwave_slam_damage_+%" } }, - [3628]={ + [3673]={ [1]={ [1]={ [1]={ @@ -81601,7 +82512,7 @@ return { [1]="life_regeneration_per_minute_%_while_frozen" } }, - [3629]={ + [3674]={ [1]={ [1]={ [1]={ @@ -81625,7 +82536,7 @@ return { [1]="occultist_stacking_energy_shield_regeneration_rate_per_minute_%_on_kill_for_4_seconds" } }, - [3630]={ + [3675]={ [1]={ [1]={ limit={ @@ -81641,7 +82552,7 @@ return { [1]="occultist_immune_to_stun_while_has_energy_shield" } }, - [3631]={ + [3676]={ [1]={ [1]={ [1]={ @@ -81661,7 +82572,7 @@ return { [1]="occultist_energy_shield_always_recovers_for_4_seconds_after_starting_recovery" } }, - [3632]={ + [3677]={ [1]={ [1]={ limit={ @@ -81690,7 +82601,7 @@ return { [1]="hierophant_passive_damage_+%_final_per_totem" } }, - [3633]={ + [3678]={ [1]={ [1]={ limit={ @@ -81719,7 +82630,7 @@ return { [1]="totem_damage_+%_final_per_active_totem" } }, - [3634]={ + [3679]={ [1]={ [1]={ limit={ @@ -81735,7 +82646,7 @@ return { [1]="cannot_be_affected_by_flasks" } }, - [3635]={ + [3680]={ [1]={ [1]={ limit={ @@ -81751,7 +82662,7 @@ return { [1]="flasks_apply_to_your_zombies_and_spectres" } }, - [3636]={ + [3681]={ [1]={ [1]={ limit={ @@ -81767,7 +82678,7 @@ return { [1]="modifiers_to_minion_damage_also_affect_you" } }, - [3637]={ + [3682]={ [1]={ [1]={ limit={ @@ -81783,7 +82694,7 @@ return { [1]="minion_damage_increases_and_reductions_also_affects_you" } }, - [3638]={ + [3683]={ [1]={ [1]={ limit={ @@ -81799,7 +82710,7 @@ return { [1]="additive_minion_damage_modifiers_apply_to_you_at_150%_value" } }, - [3639]={ + [3684]={ [1]={ [1]={ limit={ @@ -81815,7 +82726,7 @@ return { [1]="additive_modifiers_to_minion_attack_speed_also_affect_you" } }, - [3640]={ + [3685]={ [1]={ [1]={ limit={ @@ -81831,7 +82742,7 @@ return { [1]="additive_modifiers_to_minion_cast_speed_also_affect_you" } }, - [3641]={ + [3686]={ [1]={ [1]={ limit={ @@ -81840,14 +82751,14 @@ return { [2]="#" } }, - text="[DNT] Increases and Reductions to Minion Maximum Life also affect you at {0}% of their value" + text="Increases and Reductions to Minion Maximum Life also apply to you at {0}% of their value" } }, stats={ [1]="additive_minion_maximum_life_modifiers_apply_to_you_at_%_value" } }, - [3642]={ + [3687]={ [1]={ [1]={ limit={ @@ -81863,7 +82774,7 @@ return { [1]="modifiers_to_minion_life_regeneration_also_affect_you" } }, - [3643]={ + [3688]={ [1]={ [1]={ limit={ @@ -81879,7 +82790,7 @@ return { [1]="modifiers_to_minion_movement_speed_also_affect_you" } }, - [3644]={ + [3689]={ [1]={ [1]={ limit={ @@ -81895,7 +82806,7 @@ return { [1]="occultist_gain_%_of_non_chaos_damage_as_chaos_damage_per_curse_on_target_on_kill_for_4_seconds" } }, - [3645]={ + [3690]={ [1]={ [1]={ limit={ @@ -81911,7 +82822,7 @@ return { [1]="enemies_damage_taken_+%_while_cursed" } }, - [3646]={ + [3691]={ [1]={ [1]={ [1]={ @@ -81931,7 +82842,7 @@ return { [1]="enemies_you_curse_have_malediction" } }, - [3647]={ + [3692]={ [1]={ [1]={ limit={ @@ -81947,7 +82858,7 @@ return { [1]="local_double_damage_to_chilled_enemies" } }, - [3648]={ + [3693]={ [1]={ [1]={ limit={ @@ -81963,7 +82874,7 @@ return { [1]="local_elemental_penetration_%" } }, - [3649]={ + [3694]={ [1]={ [1]={ limit={ @@ -81979,7 +82890,7 @@ return { [1]="local_fire_penetration_%" } }, - [3650]={ + [3695]={ [1]={ [1]={ limit={ @@ -81995,7 +82906,7 @@ return { [1]="local_cold_penetration_%" } }, - [3651]={ + [3696]={ [1]={ [1]={ limit={ @@ -82011,7 +82922,7 @@ return { [1]="local_lightning_penetration_%" } }, - [3652]={ + [3697]={ [1]={ [1]={ limit={ @@ -82040,7 +82951,7 @@ return { [1]="damage_while_no_frenzy_charges_+%" } }, - [3653]={ + [3698]={ [1]={ [1]={ limit={ @@ -82069,7 +82980,7 @@ return { [1]="critical_strike_chance_against_enemies_on_full_life_+%" } }, - [3654]={ + [3699]={ [1]={ [1]={ [1]={ @@ -82093,7 +83004,7 @@ return { [1]="attack_critical_strike_damage_life_leech_permyriad" } }, - [3655]={ + [3700]={ [1]={ [1]={ limit={ @@ -82114,7 +83025,7 @@ return { [2]="minion_attack_maximum_added_physical_damage" } }, - [3656]={ + [3701]={ [1]={ [1]={ limit={ @@ -82135,7 +83046,7 @@ return { [2]="minion_global_maximum_added_chaos_damage" } }, - [3657]={ + [3702]={ [1]={ [1]={ limit={ @@ -82156,7 +83067,7 @@ return { [2]="minion_global_maximum_added_cold_damage" } }, - [3658]={ + [3703]={ [1]={ [1]={ limit={ @@ -82177,7 +83088,7 @@ return { [2]="minion_global_maximum_added_fire_damage" } }, - [3659]={ + [3704]={ [1]={ [1]={ limit={ @@ -82198,7 +83109,7 @@ return { [2]="minion_global_maximum_added_lightning_damage" } }, - [3660]={ + [3705]={ [1]={ [1]={ limit={ @@ -82219,7 +83130,7 @@ return { [2]="minion_global_maximum_added_physical_damage" } }, - [3661]={ + [3706]={ [1]={ [1]={ limit={ @@ -82235,7 +83146,7 @@ return { [1]="attack_physical_damage_%_to_add_as_fire" } }, - [3662]={ + [3707]={ [1]={ [1]={ limit={ @@ -82251,7 +83162,7 @@ return { [1]="attack_physical_damage_%_to_add_as_cold" } }, - [3663]={ + [3708]={ [1]={ [1]={ limit={ @@ -82267,7 +83178,7 @@ return { [1]="attack_physical_damage_%_to_add_as_lightning" } }, - [3664]={ + [3709]={ [1]={ [1]={ limit={ @@ -82283,7 +83194,7 @@ return { [1]="maximum_energy_shield_+_per_5_strength" } }, - [3665]={ + [3710]={ [1]={ [1]={ limit={ @@ -82299,7 +83210,7 @@ return { [1]="attack_always_crit" } }, - [3666]={ + [3711]={ [1]={ [1]={ limit={ @@ -82315,7 +83226,7 @@ return { [1]="local_varunastra_weapon_counts_as_all_1h_melee_weapon_types" } }, - [3667]={ + [3712]={ [1]={ [1]={ [1]={ @@ -82339,7 +83250,7 @@ return { [1]="guardian_auras_grant_life_regeneration_per_minute_%" } }, - [3668]={ + [3713]={ [1]={ [1]={ limit={ @@ -82355,7 +83266,7 @@ return { [1]="guardian_nearby_enemies_cannot_gain_charges" } }, - [3669]={ + [3714]={ [1]={ [1]={ limit={ @@ -82371,7 +83282,7 @@ return { [1]="guardian_reserved_life_granted_to_you_and_allies_as_armour_%" } }, - [3670]={ + [3715]={ [1]={ [1]={ limit={ @@ -82387,7 +83298,7 @@ return { [1]="guardian_reserved_mana_granted_to_you_and_allies_as_armour_%" } }, - [3671]={ + [3716]={ [1]={ [1]={ limit={ @@ -82403,7 +83314,7 @@ return { [1]="guardian_reserved_mana_%_given_to_you_and_nearby_allies_as_base_maximum_energy_shield" } }, - [3672]={ + [3717]={ [1]={ [1]={ [1]={ @@ -82423,7 +83334,7 @@ return { [1]="guardian_remove_curses_and_status_ailments_every_10_seconds" } }, - [3673]={ + [3718]={ [1]={ [1]={ [1]={ @@ -82443,7 +83354,7 @@ return { [1]="guardian_gain_life_regeneration_per_minute_%_for_1_second_every_10_seconds" } }, - [3674]={ + [3719]={ [1]={ [1]={ limit={ @@ -82459,7 +83370,7 @@ return { [1]="base_%_maximum_life_inflicted_as_aoe_fire_damage_when_hit" } }, - [3675]={ + [3720]={ [1]={ [1]={ limit={ @@ -82475,7 +83386,7 @@ return { [1]="totem_%_maximum_life_inflicted_as_aoe_fire_damage_when_hit" } }, - [3676]={ + [3721]={ [1]={ [1]={ limit={ @@ -82491,7 +83402,7 @@ return { [1]="active_skill_attack_speed_+%_final_per_frenzy_charge" } }, - [3677]={ + [3722]={ [1]={ [1]={ limit={ @@ -82520,7 +83431,7 @@ return { [1]="totem_aura_enemy_damage_+%_final" } }, - [3678]={ + [3723]={ [1]={ [1]={ limit={ @@ -82549,7 +83460,7 @@ return { [1]="totem_aura_enemy_fire_and_physical_damage_taken_+%" } }, - [3679]={ + [3724]={ [1]={ [1]={ [1]={ @@ -82594,7 +83505,7 @@ return { [1]="trap_damage_buildup_damage_+%_final_when_first_set" } }, - [3680]={ + [3725]={ [1]={ [1]={ [1]={ @@ -82639,7 +83550,7 @@ return { [1]="trap_damage_buildup_damage_+%_final_after_4_seconds" } }, - [3681]={ + [3726]={ [1]={ [1]={ limit={ @@ -82655,7 +83566,7 @@ return { [1]="base_attack_skill_cost_life_instead_of_mana_%" } }, - [3682]={ + [3727]={ [1]={ [1]={ limit={ @@ -82671,7 +83582,7 @@ return { [1]="local_weapon_crit_chance_is_100" } }, - [3683]={ + [3728]={ [1]={ [1]={ limit={ @@ -82692,7 +83603,7 @@ return { [2]="trap_and_mine_maximum_added_physical_damage" } }, - [3684]={ + [3729]={ [1]={ [1]={ limit={ @@ -82717,7 +83628,7 @@ return { [1]="trap_%_chance_to_trigger_twice" } }, - [3685]={ + [3730]={ [1]={ [1]={ limit={ @@ -82746,7 +83657,7 @@ return { [1]="physical_damage_over_time_per_10_dexterity_+%" } }, - [3686]={ + [3731]={ [1]={ [1]={ limit={ @@ -82775,7 +83686,36 @@ return { [1]="bleed_duration_per_12_intelligence_+%" } }, - [3687]={ + [3732]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Physical Skills have {0}% increased Duration per 12 Intelligence" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Physical Skills have {0}% reduced Duration per 12 Intelligence" + } + }, + stats={ + [1]="physical_skill_effect_duration_per_12_intelligence_+%" + } + }, + [3733]={ [1]={ [1]={ limit={ @@ -82791,7 +83731,7 @@ return { [1]="%_chance_to_cause_bleeding_enemies_to_flee_on_hit" } }, - [3688]={ + [3734]={ [1]={ [1]={ limit={ @@ -82820,7 +83760,7 @@ return { [1]="melee_ancestor_totem_grant_owner_attack_speed_+%" } }, - [3689]={ + [3735]={ [1]={ [1]={ limit={ @@ -82836,7 +83776,7 @@ return { [1]="slash_ancestor_totem_grant_owner_physical_damage_added_as_fire_+%" } }, - [3690]={ + [3736]={ [1]={ [1]={ limit={ @@ -82865,7 +83805,7 @@ return { [1]="slam_ancestor_totem_grant_owner_melee_damage_+%" } }, - [3691]={ + [3737]={ [1]={ [1]={ [1]={ @@ -82898,7 +83838,7 @@ return { [1]="gain_cannot_be_stunned_aura_for_4_seconds_on_block_radius" } }, - [3692]={ + [3738]={ [1]={ [1]={ limit={ @@ -82927,7 +83867,7 @@ return { [1]="cleave_radius_+%" } }, - [3693]={ + [3739]={ [1]={ [1]={ limit={ @@ -82956,7 +83896,7 @@ return { [1]="ground_slam_radius_+%" } }, - [3694]={ + [3740]={ [1]={ [1]={ limit={ @@ -82985,7 +83925,7 @@ return { [1]="infernal_blow_radius_+%" } }, - [3695]={ + [3741]={ [1]={ [1]={ limit={ @@ -83014,7 +83954,7 @@ return { [1]="lightning_tendrils_radius_+%" } }, - [3696]={ + [3742]={ [1]={ [1]={ limit={ @@ -83043,7 +83983,7 @@ return { [1]="magma_orb_radius_+%" } }, - [3697]={ + [3743]={ [1]={ [1]={ limit={ @@ -83072,7 +84012,7 @@ return { [1]="reave_radius_+%" } }, - [3698]={ + [3744]={ [1]={ [1]={ limit={ @@ -83101,7 +84041,7 @@ return { [1]="molten_strike_radius_+%" } }, - [3699]={ + [3745]={ [1]={ [1]={ limit={ @@ -83130,7 +84070,7 @@ return { [1]="ice_shot_radius_+%" } }, - [3700]={ + [3746]={ [1]={ [1]={ limit={ @@ -83159,7 +84099,7 @@ return { [1]="rain_of_arrows_radius_+%" } }, - [3701]={ + [3747]={ [1]={ [1]={ limit={ @@ -83188,7 +84128,7 @@ return { [1]="leap_slam_radius_+%" } }, - [3702]={ + [3748]={ [1]={ [1]={ limit={ @@ -83217,7 +84157,7 @@ return { [1]="lightning_arrow_radius_+%" } }, - [3703]={ + [3749]={ [1]={ [1]={ limit={ @@ -83246,7 +84186,7 @@ return { [1]="ice_nova_radius_+%" } }, - [3704]={ + [3750]={ [1]={ [1]={ limit={ @@ -83275,7 +84215,7 @@ return { [1]="static_strike_radius_+%" } }, - [3705]={ + [3751]={ [1]={ [1]={ limit={ @@ -83304,7 +84244,7 @@ return { [1]="storm_call_radius_+%" } }, - [3706]={ + [3752]={ [1]={ [1]={ limit={ @@ -83329,7 +84269,7 @@ return { [1]="sweep_add_endurance_charge_on_hit_%" } }, - [3707]={ + [3753]={ [1]={ [1]={ limit={ @@ -83358,7 +84298,7 @@ return { [1]="sweep_radius_+%" } }, - [3708]={ + [3754]={ [1]={ [1]={ limit={ @@ -83387,7 +84327,7 @@ return { [1]="righteous_fire_radius_+%" } }, - [3709]={ + [3755]={ [1]={ [1]={ limit={ @@ -83416,7 +84356,7 @@ return { [1]="arctic_breath_radius_+%" } }, - [3710]={ + [3756]={ [1]={ [1]={ limit={ @@ -83445,7 +84385,7 @@ return { [1]="ball_lightning_radius_+%" } }, - [3711]={ + [3757]={ [1]={ [1]={ limit={ @@ -83474,7 +84414,7 @@ return { [1]="explosive_arrow_radius_+%" } }, - [3712]={ + [3758]={ [1]={ [1]={ limit={ @@ -83503,7 +84443,7 @@ return { [1]="flameblast_radius_+%" } }, - [3713]={ + [3759]={ [1]={ [1]={ limit={ @@ -83532,7 +84472,7 @@ return { [1]="glacial_cascade_radius_+%" } }, - [3714]={ + [3760]={ [1]={ [1]={ limit={ @@ -83561,7 +84501,7 @@ return { [1]="wild_strike_radius_+%" } }, - [3715]={ + [3761]={ [1]={ [1]={ limit={ @@ -83590,7 +84530,7 @@ return { [1]="detonate_dead_radius_+%" } }, - [3716]={ + [3762]={ [1]={ [1]={ limit={ @@ -83619,7 +84559,7 @@ return { [1]="ice_crash_radius_+%" } }, - [3717]={ + [3763]={ [1]={ [1]={ limit={ @@ -83648,7 +84588,7 @@ return { [1]="kinetic_blast_radius_+%" } }, - [3718]={ + [3764]={ [1]={ [1]={ limit={ @@ -83677,7 +84617,7 @@ return { [1]="caustic_arrow_radius_+%" } }, - [3719]={ + [3765]={ [1]={ [1]={ limit={ @@ -83706,7 +84646,7 @@ return { [1]="cold_snap_radius_+%" } }, - [3720]={ + [3766]={ [1]={ [1]={ limit={ @@ -83735,7 +84675,7 @@ return { [1]="decoy_totem_radius_+%" } }, - [3721]={ + [3767]={ [1]={ [1]={ limit={ @@ -83764,7 +84704,7 @@ return { [1]="shock_nova_radius_+%" } }, - [3722]={ + [3768]={ [1]={ [1]={ limit={ @@ -83793,7 +84733,7 @@ return { [1]="freeze_mine_radius_+%" } }, - [3723]={ + [3769]={ [1]={ [1]={ limit={ @@ -83822,7 +84762,7 @@ return { [1]="shrapnel_shot_radius_+%" } }, - [3724]={ + [3770]={ [1]={ [1]={ limit={ @@ -83851,7 +84791,7 @@ return { [1]="blast_rain_radius_+%" } }, - [3725]={ + [3771]={ [1]={ [1]={ limit={ @@ -83880,7 +84820,7 @@ return { [1]="contagion_radius_+%" } }, - [3726]={ + [3772]={ [1]={ [1]={ limit={ @@ -83909,7 +84849,7 @@ return { [1]="wither_radius_+%" } }, - [3727]={ + [3773]={ [1]={ [1]={ limit={ @@ -83938,7 +84878,7 @@ return { [1]="blade_vortex_radius_+%" } }, - [3728]={ + [3774]={ [1]={ [1]={ limit={ @@ -83967,7 +84907,7 @@ return { [1]="bladefall_radius_+%" } }, - [3729]={ + [3775]={ [1]={ [1]={ limit={ @@ -83996,7 +84936,7 @@ return { [1]="ice_trap_radius_+%" } }, - [3730]={ + [3776]={ [1]={ [1]={ limit={ @@ -84025,7 +84965,7 @@ return { [1]="earthquake_radius_+%" } }, - [3731]={ + [3777]={ [1]={ [1]={ limit={ @@ -84054,7 +84994,7 @@ return { [1]="frost_bomb_radius_+%" } }, - [3732]={ + [3778]={ [1]={ [1]={ limit={ @@ -84083,7 +85023,7 @@ return { [1]="storm_cloud_radius_+%" } }, - [3733]={ + [3779]={ [1]={ [1]={ limit={ @@ -84112,7 +85052,7 @@ return { [1]="blight_radius_+%" } }, - [3734]={ + [3780]={ [1]={ [1]={ limit={ @@ -84141,7 +85081,7 @@ return { [1]="shockwave_slam_radius_+%" } }, - [3735]={ + [3781]={ [1]={ [1]={ limit={ @@ -84170,7 +85110,7 @@ return { [1]="sunder_wave_delay_+%" } }, - [3736]={ + [3782]={ [1]={ [1]={ limit={ @@ -84199,7 +85139,7 @@ return { [1]="shockwave_totem_radius_+%" } }, - [3737]={ + [3783]={ [1]={ [1]={ [1]={ @@ -84232,7 +85172,7 @@ return { [1]="charged_dash_area_of_effect_radius_+_of_final_explosion" } }, - [3738]={ + [3784]={ [1]={ [1]={ limit={ @@ -84261,7 +85201,7 @@ return { [1]="cleave_attack_speed_+%" } }, - [3739]={ + [3785]={ [1]={ [1]={ limit={ @@ -84290,7 +85230,7 @@ return { [1]="double_strike_attack_speed_+%" } }, - [3740]={ + [3786]={ [1]={ [1]={ limit={ @@ -84319,7 +85259,7 @@ return { [1]="dual_strike_attack_speed_+%" } }, - [3741]={ + [3787]={ [1]={ [1]={ limit={ @@ -84348,7 +85288,7 @@ return { [1]="heavy_strike_attack_speed_+%" } }, - [3742]={ + [3788]={ [1]={ [1]={ limit={ @@ -84377,7 +85317,7 @@ return { [1]="zombie_attack_speed_+%" } }, - [3743]={ + [3789]={ [1]={ [1]={ limit={ @@ -84406,7 +85346,7 @@ return { [1]="rain_of_arrows_attack_speed_+%" } }, - [3744]={ + [3790]={ [1]={ [1]={ limit={ @@ -84435,7 +85375,7 @@ return { [1]="leap_slam_attack_speed_+%" } }, - [3745]={ + [3791]={ [1]={ [1]={ limit={ @@ -84464,7 +85404,7 @@ return { [1]="shield_charge_attack_speed_+%" } }, - [3746]={ + [3792]={ [1]={ [1]={ limit={ @@ -84493,7 +85433,7 @@ return { [1]="barrage_attack_speed_+%" } }, - [3747]={ + [3793]={ [1]={ [1]={ limit={ @@ -84522,7 +85462,7 @@ return { [1]="elemental_hit_attack_speed_+%" } }, - [3748]={ + [3794]={ [1]={ [1]={ limit={ @@ -84551,7 +85491,7 @@ return { [1]="cyclone_attack_speed_+%" } }, - [3749]={ + [3795]={ [1]={ [1]={ limit={ @@ -84580,7 +85520,7 @@ return { [1]="power_siphon_attack_speed_+%" } }, - [3750]={ + [3796]={ [1]={ [1]={ limit={ @@ -84609,7 +85549,7 @@ return { [1]="siege_ballista_attack_speed_+%" } }, - [3751]={ + [3797]={ [1]={ [1]={ limit={ @@ -84638,7 +85578,7 @@ return { [1]="shockwave_slam_attack_speed_+%" } }, - [3752]={ + [3798]={ [1]={ [1]={ limit={ @@ -84667,7 +85607,7 @@ return { [1]="mirror_arrow_and_mirror_arrow_clone_attack_speed_+%" } }, - [3753]={ + [3799]={ [1]={ [1]={ limit={ @@ -84696,7 +85636,7 @@ return { [1]="blink_arrow_and_blink_arrow_clone_attack_speed_+%" } }, - [3754]={ + [3800]={ [1]={ [1]={ limit={ @@ -84725,7 +85665,7 @@ return { [1]="whirling_blades_attack_speed_+%" } }, - [3755]={ + [3801]={ [1]={ [1]={ limit={ @@ -84754,7 +85694,7 @@ return { [1]="spectre_attack_and_cast_speed_+%" } }, - [3756]={ + [3802]={ [1]={ [1]={ limit={ @@ -84783,7 +85723,7 @@ return { [1]="freezing_pulse_cast_speed_+%" } }, - [3757]={ + [3803]={ [1]={ [1]={ limit={ @@ -84812,7 +85752,7 @@ return { [1]="fireball_cast_speed_+%" } }, - [3758]={ + [3804]={ [1]={ [1]={ limit={ @@ -84841,7 +85781,7 @@ return { [1]="fire_nova_mine_cast_speed_+%" } }, - [3759]={ + [3805]={ [1]={ [1]={ limit={ @@ -84870,7 +85810,7 @@ return { [1]="lightning_warp_cast_speed_+%" } }, - [3760]={ + [3806]={ [1]={ [1]={ limit={ @@ -84899,7 +85839,7 @@ return { [1]="fire_trap_cooldown_speed_+%" } }, - [3761]={ + [3807]={ [1]={ [1]={ limit={ @@ -84928,7 +85868,7 @@ return { [1]="flicker_strike_cooldown_speed_+%" } }, - [3762]={ + [3808]={ [1]={ [1]={ limit={ @@ -84957,7 +85897,7 @@ return { [1]="cold_snap_cooldown_speed_+%" } }, - [3763]={ + [3809]={ [1]={ [1]={ limit={ @@ -84986,7 +85926,7 @@ return { [1]="convocation_cooldown_speed_+%" } }, - [3764]={ + [3810]={ [1]={ [1]={ limit={ @@ -85015,7 +85955,7 @@ return { [1]="bear_trap_cooldown_speed_+%" } }, - [3765]={ + [3811]={ [1]={ [1]={ limit={ @@ -85044,7 +85984,7 @@ return { [1]="frost_wall_cooldown_speed_+%" } }, - [3766]={ + [3812]={ [1]={ [1]={ limit={ @@ -85073,7 +86013,7 @@ return { [1]="reckoning_cooldown_speed_+%" } }, - [3767]={ + [3813]={ [1]={ [1]={ limit={ @@ -85102,7 +86042,7 @@ return { [1]="flame_dash_cooldown_speed_+%" } }, - [3768]={ + [3814]={ [1]={ [1]={ limit={ @@ -85131,7 +86071,7 @@ return { [1]="desecrate_cooldown_speed_+%" } }, - [3769]={ + [3815]={ [1]={ [1]={ limit={ @@ -85160,7 +86100,7 @@ return { [1]="blink_arrow_cooldown_speed_+%" } }, - [3770]={ + [3816]={ [1]={ [1]={ limit={ @@ -85189,7 +86129,7 @@ return { [1]="mirror_arrow_cooldown_speed_+%" } }, - [3771]={ + [3817]={ [1]={ [1]={ limit={ @@ -85218,7 +86158,7 @@ return { [1]="riposte_cooldown_speed_+%" } }, - [3772]={ + [3818]={ [1]={ [1]={ limit={ @@ -85247,7 +86187,7 @@ return { [1]="vengeance_cooldown_speed_+%" } }, - [3773]={ + [3819]={ [1]={ [1]={ limit={ @@ -85276,7 +86216,7 @@ return { [1]="enduring_cry_cooldown_speed_+%" } }, - [3774]={ + [3820]={ [1]={ [1]={ limit={ @@ -85305,7 +86245,7 @@ return { [1]="frost_bomb_cooldown_speed_+%" } }, - [3775]={ + [3821]={ [1]={ [1]={ limit={ @@ -85334,7 +86274,7 @@ return { [1]="conversion_trap_cooldown_speed_+%" } }, - [3776]={ + [3822]={ [1]={ [1]={ limit={ @@ -85363,7 +86303,7 @@ return { [1]="ice_trap_cooldown_speed_+%" } }, - [3777]={ + [3823]={ [1]={ [1]={ limit={ @@ -85392,7 +86332,7 @@ return { [1]="ball_lightning_projectile_speed_+%" } }, - [3778]={ + [3824]={ [1]={ [1]={ limit={ @@ -85421,7 +86361,7 @@ return { [1]="freezing_pulse_projectile_speed_+%" } }, - [3779]={ + [3825]={ [1]={ [1]={ limit={ @@ -85450,7 +86390,7 @@ return { [1]="spark_projectile_speed_+%" } }, - [3780]={ + [3826]={ [1]={ [1]={ limit={ @@ -85479,7 +86419,7 @@ return { [1]="spectral_throw_projectile_speed_+%" } }, - [3781]={ + [3827]={ [1]={ [1]={ limit={ @@ -85508,7 +86448,7 @@ return { [1]="ethereal_knives_projectile_speed_+%" } }, - [3782]={ + [3828]={ [1]={ [1]={ limit={ @@ -85537,7 +86477,7 @@ return { [1]="flame_totem_projectile_speed_+%" } }, - [3783]={ + [3829]={ [1]={ [1]={ limit={ @@ -85566,7 +86506,7 @@ return { [1]="incinerate_projectile_speed_+%" } }, - [3784]={ + [3830]={ [1]={ [1]={ limit={ @@ -85595,7 +86535,7 @@ return { [1]="dominating_blow_duration_+%" } }, - [3785]={ + [3831]={ [1]={ [1]={ limit={ @@ -85624,7 +86564,7 @@ return { [1]="puncture_duration_+%" } }, - [3786]={ + [3832]={ [1]={ [1]={ limit={ @@ -85653,7 +86593,7 @@ return { [1]="immortal_call_duration_+%" } }, - [3787]={ + [3833]={ [1]={ [1]={ limit={ @@ -85682,7 +86622,7 @@ return { [1]="bone_offering_duration_+%" } }, - [3788]={ + [3834]={ [1]={ [1]={ limit={ @@ -85711,7 +86651,7 @@ return { [1]="flesh_offering_duration_+%" } }, - [3789]={ + [3835]={ [1]={ [1]={ limit={ @@ -85740,7 +86680,7 @@ return { [1]="spirit_offering_duration_+%" } }, - [3790]={ + [3836]={ [1]={ [1]={ limit={ @@ -85769,7 +86709,7 @@ return { [1]="smoke_mine_duration_+%" } }, - [3791]={ + [3837]={ [1]={ [1]={ limit={ @@ -85798,7 +86738,7 @@ return { [1]="frost_wall_duration_+%" } }, - [3792]={ + [3838]={ [1]={ [1]={ limit={ @@ -85827,7 +86767,7 @@ return { [1]="vigilant_strike_fortify_duration_+%" } }, - [3793]={ + [3839]={ [1]={ [1]={ limit={ @@ -85856,7 +86796,7 @@ return { [1]="poachers_mark_duration_+%" } }, - [3794]={ + [3840]={ [1]={ [1]={ limit={ @@ -85885,7 +86825,7 @@ return { [1]="projectile_weakness_duration_+%" } }, - [3795]={ + [3841]={ [1]={ [1]={ limit={ @@ -85914,7 +86854,7 @@ return { [1]="temporal_chains_duration_+%" } }, - [3796]={ + [3842]={ [1]={ [1]={ limit={ @@ -85943,7 +86883,7 @@ return { [1]="warlords_mark_duration_+%" } }, - [3797]={ + [3843]={ [1]={ [1]={ limit={ @@ -85972,7 +86912,7 @@ return { [1]="vulnerability_duration_+%" } }, - [3798]={ + [3844]={ [1]={ [1]={ limit={ @@ -86001,7 +86941,7 @@ return { [1]="punishment_duration_+%" } }, - [3799]={ + [3845]={ [1]={ [1]={ limit={ @@ -86030,7 +86970,7 @@ return { [1]="frostbite_duration_+%" } }, - [3800]={ + [3846]={ [1]={ [1]={ limit={ @@ -86059,7 +86999,7 @@ return { [1]="flammability_duration_+%" } }, - [3801]={ + [3847]={ [1]={ [1]={ limit={ @@ -86088,7 +87028,7 @@ return { [1]="enfeeble_duration_+%" } }, - [3802]={ + [3848]={ [1]={ [1]={ limit={ @@ -86117,7 +87057,7 @@ return { [1]="elemental_weakness_duration_+%" } }, - [3803]={ + [3849]={ [1]={ [1]={ limit={ @@ -86146,7 +87086,7 @@ return { [1]="conductivity_duration_+%" } }, - [3804]={ + [3850]={ [1]={ [1]={ limit={ @@ -86175,7 +87115,7 @@ return { [1]="assassins_mark_duration_+%" } }, - [3805]={ + [3851]={ [1]={ [1]={ limit={ @@ -86204,7 +87144,7 @@ return { [1]="desecrate_duration_+%" } }, - [3806]={ + [3852]={ [1]={ [1]={ limit={ @@ -86233,7 +87173,7 @@ return { [1]="rallying_cry_duration_+%" } }, - [3807]={ + [3853]={ [1]={ [1]={ limit={ @@ -86262,7 +87202,7 @@ return { [1]="abyssal_cry_duration_+%" } }, - [3808]={ + [3854]={ [1]={ [1]={ limit={ @@ -86291,7 +87231,7 @@ return { [1]="contagion_duration_+%" } }, - [3809]={ + [3855]={ [1]={ [1]={ limit={ @@ -86320,7 +87260,7 @@ return { [1]="siphon_duration_+%" } }, - [3810]={ + [3856]={ [1]={ [1]={ limit={ @@ -86349,7 +87289,7 @@ return { [1]="wither_duration_+%" } }, - [3811]={ + [3857]={ [1]={ [1]={ limit={ @@ -86378,7 +87318,7 @@ return { [1]="blade_vortex_duration_+%" } }, - [3812]={ + [3858]={ [1]={ [1]={ limit={ @@ -86407,7 +87347,7 @@ return { [1]="earthquake_duration_+%" } }, - [3813]={ + [3859]={ [1]={ [1]={ limit={ @@ -86436,7 +87376,7 @@ return { [1]="blight_duration_+%" } }, - [3814]={ + [3860]={ [1]={ [1]={ limit={ @@ -86465,7 +87405,7 @@ return { [1]="viper_strike_poison_duration_+%" } }, - [3815]={ + [3861]={ [1]={ [1]={ limit={ @@ -86494,7 +87434,7 @@ return { [1]="firestorm_duration_+%" } }, - [3816]={ + [3862]={ [1]={ [1]={ limit={ @@ -86523,7 +87463,7 @@ return { [1]="static_strike_duration_+%" } }, - [3817]={ + [3863]={ [1]={ [1]={ limit={ @@ -86552,7 +87492,7 @@ return { [1]="storm_call_duration_+%" } }, - [3818]={ + [3864]={ [1]={ [1]={ limit={ @@ -86581,7 +87521,7 @@ return { [1]="arctic_breath_duration_+%" } }, - [3819]={ + [3865]={ [1]={ [1]={ limit={ @@ -86610,7 +87550,7 @@ return { [1]="lightning_warp_duration_+%" } }, - [3820]={ + [3866]={ [1]={ [1]={ limit={ @@ -86639,7 +87579,7 @@ return { [1]="ice_shot_duration_+%" } }, - [3821]={ + [3867]={ [1]={ [1]={ limit={ @@ -86668,7 +87608,7 @@ return { [1]="caustic_arrow_duration_+%" } }, - [3822]={ + [3868]={ [1]={ [1]={ limit={ @@ -86697,7 +87637,7 @@ return { [1]="double_strike_critical_strike_chance_+%" } }, - [3823]={ + [3869]={ [1]={ [1]={ limit={ @@ -86726,7 +87666,7 @@ return { [1]="dual_strike_critical_strike_chance_+%" } }, - [3824]={ + [3870]={ [1]={ [1]={ limit={ @@ -86755,7 +87695,7 @@ return { [1]="split_arrow_critical_strike_chance_+%" } }, - [3825]={ + [3871]={ [1]={ [1]={ limit={ @@ -86784,7 +87724,7 @@ return { [1]="viper_strike_critical_strike_chance_+%" } }, - [3826]={ + [3872]={ [1]={ [1]={ limit={ @@ -86813,7 +87753,7 @@ return { [1]="flameblast_critical_strike_chance_+%" } }, - [3827]={ + [3873]={ [1]={ [1]={ limit={ @@ -86842,7 +87782,7 @@ return { [1]="flame_surge_critical_strike_chance_+%" } }, - [3828]={ + [3874]={ [1]={ [1]={ limit={ @@ -86871,7 +87811,7 @@ return { [1]="tornado_shot_critical_strike_chance_+%" } }, - [3829]={ + [3875]={ [1]={ [1]={ limit={ @@ -86900,7 +87840,7 @@ return { [1]="storm_cloud_critical_strike_chance_+%" } }, - [3830]={ + [3876]={ [1]={ [1]={ limit={ @@ -86929,7 +87869,7 @@ return { [1]="bladefall_critical_strike_chance_+%" } }, - [3831]={ + [3877]={ [1]={ [1]={ limit={ @@ -86954,7 +87894,7 @@ return { [1]="lightning_strike_num_of_additional_projectiles" } }, - [3832]={ + [3878]={ [1]={ [1]={ limit={ @@ -86979,7 +87919,7 @@ return { [1]="molten_strike_num_of_additional_projectiles" } }, - [3833]={ + [3879]={ [1]={ [1]={ limit={ @@ -87004,7 +87944,7 @@ return { [1]="spark_num_of_additional_projectiles" } }, - [3834]={ + [3880]={ [1]={ [1]={ limit={ @@ -87029,7 +87969,7 @@ return { [1]="split_arrow_num_of_additional_projectiles" } }, - [3835]={ + [3881]={ [1]={ [1]={ limit={ @@ -87054,7 +87994,7 @@ return { [1]="barrage_num_of_additional_projectiles" } }, - [3836]={ + [3882]={ [1]={ [1]={ limit={ @@ -87088,7 +88028,7 @@ return { [2]="quality_display_tornado_shot_is_gem" } }, - [3837]={ + [3883]={ [1]={ [1]={ limit={ @@ -87113,7 +88053,7 @@ return { [1]="magma_orb_num_of_additional_projectiles_in_chain" } }, - [3838]={ + [3884]={ [1]={ [1]={ limit={ @@ -87138,7 +88078,7 @@ return { [1]="arc_num_of_additional_projectiles_in_chain" } }, - [3839]={ + [3885]={ [1]={ [1]={ limit={ @@ -87163,7 +88103,7 @@ return { [1]="flame_totem_num_of_additional_projectiles" } }, - [3840]={ + [3886]={ [1]={ [1]={ limit={ @@ -87188,7 +88128,7 @@ return { [1]="lightning_strike_additional_pierce" } }, - [3841]={ + [3887]={ [1]={ [1]={ limit={ @@ -87213,7 +88153,7 @@ return { [1]="lightning_trap_additional_pierce" } }, - [3842]={ + [3888]={ [1]={ [1]={ [1]={ @@ -87246,7 +88186,7 @@ return { [1]="burning_arrow_ignite_chance_%" } }, - [3843]={ + [3889]={ [1]={ [1]={ limit={ @@ -87262,7 +88202,7 @@ return { [1]="burning_arrow_physical_damage_%_to_add_as_fire_damage" } }, - [3844]={ + [3890]={ [1]={ [1]={ limit={ @@ -87278,7 +88218,7 @@ return { [1]="infernal_blow_physical_damage_%_to_add_as_fire_damage" } }, - [3845]={ + [3891]={ [1]={ [1]={ limit={ @@ -87307,7 +88247,7 @@ return { [1]="fire_trap_burning_damage_+%" } }, - [3846]={ + [3892]={ [1]={ [1]={ [1]={ @@ -87340,7 +88280,7 @@ return { [1]="fireball_ignite_chance_%" } }, - [3847]={ + [3893]={ [1]={ [1]={ [1]={ @@ -87373,7 +88313,7 @@ return { [1]="glacial_hammer_freeze_chance_%" } }, - [3848]={ + [3894]={ [1]={ [1]={ [1]={ @@ -87406,7 +88346,7 @@ return { [1]="ice_nova_freeze_chance_%" } }, - [3849]={ + [3895]={ [1]={ [1]={ limit={ @@ -87435,7 +88375,7 @@ return { [1]="reave_attack_speed_per_reave_stack_+%" } }, - [3850]={ + [3896]={ [1]={ [1]={ limit={ @@ -87464,7 +88404,7 @@ return { [1]="spectral_throw_projectile_deceleration_+%" } }, - [3851]={ + [3897]={ [1]={ [1]={ limit={ @@ -87493,7 +88433,7 @@ return { [1]="flicker_strike_damage_+%_per_frenzy_charge" } }, - [3852]={ + [3898]={ [1]={ [1]={ [1]={ @@ -87513,7 +88453,7 @@ return { [1]="puncture_maim_on_hit_%_chance" } }, - [3853]={ + [3899]={ [1]={ [1]={ [1]={ @@ -87546,7 +88486,7 @@ return { [1]="arc_shock_chance_%" } }, - [3854]={ + [3900]={ [1]={ [1]={ limit={ @@ -87562,7 +88502,7 @@ return { [1]="fire_nova_mine_num_of_additional_repeats" } }, - [3855]={ + [3901]={ [1]={ [1]={ limit={ @@ -87591,7 +88531,7 @@ return { [1]="firestorm_explosion_area_of_effect_+%" } }, - [3856]={ + [3902]={ [1]={ [1]={ limit={ @@ -87620,7 +88560,7 @@ return { [1]="flame_surge_damage_+%_vs_burning_enemies" } }, - [3857]={ + [3903]={ [1]={ [1]={ limit={ @@ -87636,7 +88576,7 @@ return { [1]="ice_spear_%_chance_to_gain_power_charge_on_critical_strike" } }, - [3858]={ + [3904]={ [1]={ [1]={ limit={ @@ -87652,7 +88592,7 @@ return { [1]="power_siphon_%_chance_to_gain_power_charge_on_kill" } }, - [3859]={ + [3905]={ [1]={ [1]={ limit={ @@ -87681,7 +88621,7 @@ return { [1]="melee_ancestor_totem_placement_speed_+%" } }, - [3860]={ + [3906]={ [1]={ [1]={ limit={ @@ -87710,7 +88650,7 @@ return { [1]="searing_bond_totem_placement_speed_+%" } }, - [3861]={ + [3907]={ [1]={ [1]={ limit={ @@ -87726,7 +88666,7 @@ return { [1]="sweep_knockback_chance_%" } }, - [3862]={ + [3908]={ [1]={ [1]={ limit={ @@ -87755,7 +88695,7 @@ return { [1]="frenzy_damage_+%_per_frenzy_charge" } }, - [3863]={ + [3909]={ [1]={ [1]={ limit={ @@ -87771,7 +88711,7 @@ return { [1]="frenzy_%_chance_to_gain_additional_frenzy_charge" } }, - [3864]={ + [3910]={ [1]={ [1]={ [1]={ @@ -87820,7 +88760,7 @@ return { [1]="elemental_hit_chance_to_freeze_shock_ignite_%" } }, - [3865]={ + [3911]={ [1]={ [1]={ limit={ @@ -87836,7 +88776,7 @@ return { [1]="glacial_cascade_physical_damage_%_to_convert_to_cold" } }, - [3866]={ + [3912]={ [1]={ [1]={ limit={ @@ -87852,7 +88792,7 @@ return { [1]="glacial_hammer_physical_damage_%_to_add_as_cold_damage" } }, - [3867]={ + [3913]={ [1]={ [1]={ limit={ @@ -87868,7 +88808,7 @@ return { [1]="ice_crash_physical_damage_%_to_add_as_cold_damage" } }, - [3868]={ + [3914]={ [1]={ [1]={ limit={ @@ -87884,7 +88824,7 @@ return { [1]="spectre_elemental_resistances_%" } }, - [3869]={ + [3915]={ [1]={ [1]={ limit={ @@ -87900,7 +88840,7 @@ return { [1]="zombie_elemental_resistances_%" } }, - [3870]={ + [3916]={ [1]={ [1]={ limit={ @@ -87916,7 +88856,7 @@ return { [1]="stone_golem_elemental_resistances_%" } }, - [3871]={ + [3917]={ [1]={ [1]={ limit={ @@ -87932,7 +88872,7 @@ return { [1]="flame_golem_elemental_resistances_%" } }, - [3872]={ + [3918]={ [1]={ [1]={ limit={ @@ -87948,7 +88888,7 @@ return { [1]="ice_golem_elemental_resistances_%" } }, - [3873]={ + [3919]={ [1]={ [1]={ limit={ @@ -87964,7 +88904,7 @@ return { [1]="lightning_golem_elemental_resistances_%" } }, - [3874]={ + [3920]={ [1]={ [1]={ limit={ @@ -87980,7 +88920,7 @@ return { [1]="chaos_golem_elemental_resistances_%" } }, - [3875]={ + [3921]={ [1]={ [1]={ limit={ @@ -87996,7 +88936,7 @@ return { [1]="animate_guardian_elemental_resistances_%" } }, - [3876]={ + [3922]={ [1]={ [1]={ limit={ @@ -88025,7 +88965,7 @@ return { [1]="shock_nova_ring_damage_+%" } }, - [3877]={ + [3923]={ [1]={ [1]={ limit={ @@ -88050,7 +88990,7 @@ return { [1]="blast_rain_number_of_blasts" } }, - [3878]={ + [3924]={ [1]={ [1]={ limit={ @@ -88066,7 +89006,7 @@ return { [1]="blast_rain_single_additional_projectile" } }, - [3879]={ + [3925]={ [1]={ [1]={ [1]={ @@ -88091,7 +89031,7 @@ return { [2]="quality_display_essence_drain_is_gem" } }, - [3880]={ + [3926]={ [1]={ [1]={ limit={ @@ -88107,7 +89047,7 @@ return { [1]="detonate_dead_%_chance_to_detonate_additional_corpse" } }, - [3881]={ + [3927]={ [1]={ [1]={ limit={ @@ -88123,7 +89063,7 @@ return { [1]="animate_weapon_chance_to_create_additional_copy_%" } }, - [3882]={ + [3928]={ [1]={ [1]={ limit={ @@ -88152,7 +89092,7 @@ return { [1]="decoy_totem_life_+%" } }, - [3883]={ + [3929]={ [1]={ [1]={ [1]={ @@ -88189,7 +89129,7 @@ return { [1]="devouring_totem_leech_per_second_+%" } }, - [3884]={ + [3930]={ [1]={ [1]={ limit={ @@ -88205,7 +89145,7 @@ return { [1]="rejuvenation_totem_%_life_regeneration_added_as_mana_regeneration" } }, - [3885]={ + [3931]={ [1]={ [1]={ limit={ @@ -88234,7 +89174,7 @@ return { [1]="rejuvenation_totem_aura_effect_+%" } }, - [3886]={ + [3932]={ [1]={ [1]={ limit={ @@ -88259,7 +89199,7 @@ return { [1]="wild_strike_num_of_additional_projectiles_in_chain" } }, - [3887]={ + [3933]={ [1]={ [1]={ limit={ @@ -88284,7 +89224,7 @@ return { [1]="summon_skeletons_num_additional_warrior_skeletons" } }, - [3888]={ + [3934]={ [1]={ [1]={ limit={ @@ -88313,7 +89253,7 @@ return { [1]="shockwave_totem_cast_speed_+%" } }, - [3889]={ + [3935]={ [1]={ [1]={ limit={ @@ -88342,7 +89282,7 @@ return { [1]="devouring_totem_%_chance_to_consume_additional_corpse" } }, - [3890]={ + [3936]={ [1]={ [1]={ limit={ @@ -88371,7 +89311,7 @@ return { [1]="siege_ballista_totem_placement_speed_+%" } }, - [3891]={ + [3937]={ [1]={ [1]={ limit={ @@ -88400,7 +89340,7 @@ return { [1]="incinerate_damage_+%_per_stage" } }, - [3892]={ + [3938]={ [1]={ [1]={ limit={ @@ -88429,7 +89369,7 @@ return { [1]="poachers_mark_curse_effect_+%" } }, - [3893]={ + [3939]={ [1]={ [1]={ limit={ @@ -88458,7 +89398,7 @@ return { [1]="projectile_weakness_curse_effect_+%" } }, - [3894]={ + [3940]={ [1]={ [1]={ limit={ @@ -88487,7 +89427,7 @@ return { [1]="temporal_chains_curse_effect_+%" } }, - [3895]={ + [3941]={ [1]={ [1]={ limit={ @@ -88516,7 +89456,7 @@ return { [1]="assassins_mark_curse_effect_+%" } }, - [3896]={ + [3942]={ [1]={ [1]={ limit={ @@ -88545,7 +89485,7 @@ return { [1]="conductivity_curse_effect_+%" } }, - [3897]={ + [3943]={ [1]={ [1]={ limit={ @@ -88574,7 +89514,7 @@ return { [1]="elemental_weakness_curse_effect_+%" } }, - [3898]={ + [3944]={ [1]={ [1]={ limit={ @@ -88603,7 +89543,7 @@ return { [1]="enfeeble_curse_effect_+%" } }, - [3899]={ + [3945]={ [1]={ [1]={ limit={ @@ -88632,7 +89572,7 @@ return { [1]="flammability_curse_effect_+%" } }, - [3900]={ + [3946]={ [1]={ [1]={ limit={ @@ -88661,7 +89601,7 @@ return { [1]="frostbite_curse_effect_+%" } }, - [3901]={ + [3947]={ [1]={ [1]={ limit={ @@ -88690,7 +89630,7 @@ return { [1]="punishment_curse_effect_+%" } }, - [3902]={ + [3948]={ [1]={ [1]={ limit={ @@ -88719,7 +89659,7 @@ return { [1]="vulnerability_curse_effect_+%" } }, - [3903]={ + [3949]={ [1]={ [1]={ limit={ @@ -88748,7 +89688,7 @@ return { [1]="warlords_mark_curse_effect_+%" } }, - [3904]={ + [3950]={ [1]={ [1]={ limit={ @@ -88773,7 +89713,7 @@ return { [1]="display_attack_with_word_of_ire_when_hit_%" } }, - [3905]={ + [3951]={ [1]={ [1]={ limit={ @@ -88798,7 +89738,7 @@ return { [1]="display_attack_with_edict_of_ire_when_hit_%" } }, - [3906]={ + [3952]={ [1]={ [1]={ limit={ @@ -88823,7 +89763,7 @@ return { [1]="display_attack_with_decree_of_ire_when_hit_%" } }, - [3907]={ + [3953]={ [1]={ [1]={ limit={ @@ -88848,7 +89788,7 @@ return { [1]="display_attack_with_commandment_of_ire_when_hit_%" } }, - [3908]={ + [3954]={ [1]={ [1]={ limit={ @@ -88877,7 +89817,7 @@ return { [1]="arctic_armour_buff_effect_+%" } }, - [3909]={ + [3955]={ [1]={ [1]={ limit={ @@ -88906,7 +89846,7 @@ return { [1]="convocation_buff_effect_+%" } }, - [3910]={ + [3956]={ [1]={ [1]={ limit={ @@ -88935,7 +89875,7 @@ return { [1]="molten_shell_buff_effect_+%" } }, - [3911]={ + [3957]={ [1]={ [1]={ limit={ @@ -88960,7 +89900,7 @@ return { [1]="immortal_call_%_chance_to_not_consume_endurance_charges" } }, - [3912]={ + [3958]={ [1]={ [1]={ limit={ @@ -88985,7 +89925,7 @@ return { [1]="phase_run_%_chance_to_not_consume_frenzy_charges" } }, - [3913]={ + [3959]={ [1]={ [1]={ limit={ @@ -89001,7 +89941,7 @@ return { [1]="shrapnel_shot_physical_damage_%_to_add_as_lightning_damage" } }, - [3914]={ + [3960]={ [1]={ [1]={ limit={ @@ -89026,7 +89966,7 @@ return { [1]="tempest_shield_num_of_additional_projectiles_in_chain" } }, - [3915]={ + [3961]={ [1]={ [1]={ limit={ @@ -89055,7 +89995,7 @@ return { [1]="arctic_armour_mana_reservation_+%" } }, - [3916]={ + [3962]={ [1]={ [1]={ limit={ @@ -89084,7 +90024,7 @@ return { [1]="herald_of_ash_mana_reservation_+%" } }, - [3917]={ + [3963]={ [1]={ [1]={ limit={ @@ -89113,7 +90053,7 @@ return { [1]="herald_of_ice_mana_reservation_+%" } }, - [3918]={ + [3964]={ [1]={ [1]={ limit={ @@ -89142,7 +90082,7 @@ return { [1]="herald_of_thunder_mana_reservation_+%" } }, - [3919]={ + [3965]={ [1]={ [1]={ limit={ @@ -89171,7 +90111,7 @@ return { [1]="clarity_mana_reservation_+%" } }, - [3920]={ + [3966]={ [1]={ [1]={ limit={ @@ -89200,7 +90140,7 @@ return { [1]="hatred_mana_reservation_+%" } }, - [3921]={ + [3967]={ [1]={ [1]={ limit={ @@ -89229,7 +90169,7 @@ return { [1]="purity_of_ice_mana_reservation_+%" } }, - [3922]={ + [3968]={ [1]={ [1]={ limit={ @@ -89258,7 +90198,7 @@ return { [1]="determination_mana_reservation_+%" } }, - [3923]={ + [3969]={ [1]={ [1]={ limit={ @@ -89287,7 +90227,7 @@ return { [1]="discipline_mana_reservation_+%" } }, - [3924]={ + [3970]={ [1]={ [1]={ limit={ @@ -89316,7 +90256,7 @@ return { [1]="purity_of_elements_mana_reservation_+%" } }, - [3925]={ + [3971]={ [1]={ [1]={ limit={ @@ -89345,7 +90285,7 @@ return { [1]="purity_of_fire_mana_reservation_+%" } }, - [3926]={ + [3972]={ [1]={ [1]={ limit={ @@ -89374,7 +90314,7 @@ return { [1]="purity_of_lightning_mana_reservation_+%" } }, - [3927]={ + [3973]={ [1]={ [1]={ limit={ @@ -89403,7 +90343,7 @@ return { [1]="vitality_mana_reservation_+%" } }, - [3928]={ + [3974]={ [1]={ [1]={ limit={ @@ -89432,7 +90372,7 @@ return { [1]="wrath_mana_reservation_+%" } }, - [3929]={ + [3975]={ [1]={ [1]={ limit={ @@ -89461,7 +90401,7 @@ return { [1]="grace_mana_reservation_+%" } }, - [3930]={ + [3976]={ [1]={ [1]={ limit={ @@ -89490,7 +90430,7 @@ return { [1]="haste_mana_reservation_+%" } }, - [3931]={ + [3977]={ [1]={ [1]={ limit={ @@ -89519,7 +90459,7 @@ return { [1]="chaos_weakness_mana_reservation_+%" } }, - [3932]={ + [3978]={ [1]={ [1]={ limit={ @@ -89548,7 +90488,7 @@ return { [1]="conductivity_mana_reservation_+%" } }, - [3933]={ + [3979]={ [1]={ [1]={ limit={ @@ -89577,7 +90517,7 @@ return { [1]="flammability_mana_reservation_+%" } }, - [3934]={ + [3980]={ [1]={ [1]={ limit={ @@ -89606,7 +90546,7 @@ return { [1]="frostbite_mana_reservation_+%" } }, - [3935]={ + [3981]={ [1]={ [1]={ limit={ @@ -89635,7 +90575,7 @@ return { [1]="temporal_chains_mana_reservation_+%" } }, - [3936]={ + [3982]={ [1]={ [1]={ limit={ @@ -89664,7 +90604,7 @@ return { [1]="vulnerability_mana_reservation_+%" } }, - [3937]={ + [3983]={ [1]={ [1]={ limit={ @@ -89680,7 +90620,7 @@ return { [1]="cannot_be_stunned_while_at_max_endurance_charges" } }, - [3938]={ + [3984]={ [1]={ [1]={ limit={ @@ -89709,7 +90649,7 @@ return { [1]="life_regenerate_rate_per_second_%_while_totem_active" } }, - [3939]={ + [3985]={ [1]={ [1]={ [1]={ @@ -89754,7 +90694,7 @@ return { [1]="gain_attack_and_cast_speed_+%_for_4_seconds_if_taken_savage_hit" } }, - [3940]={ + [3986]={ [1]={ [1]={ limit={ @@ -89783,7 +90723,7 @@ return { [1]="berserker_damage_+%_final" } }, - [3941]={ + [3987]={ [1]={ [1]={ limit={ @@ -89812,7 +90752,7 @@ return { [1]="elemental_damage_taken_+%_while_on_consecrated_ground" } }, - [3942]={ + [3988]={ [1]={ [1]={ [1]={ @@ -89849,7 +90789,7 @@ return { [1]="critical_strike_chance_+%_vs_enemies_with_elemental_status_ailments" } }, - [3943]={ + [3989]={ [1]={ [1]={ limit={ @@ -89865,7 +90805,7 @@ return { [1]="%_chance_to_gain_power_charge_on_placing_a_totem" } }, - [3944]={ + [3990]={ [1]={ [1]={ [1]={ @@ -89885,7 +90825,7 @@ return { [1]="gain_elemental_conflux_for_X_ms_when_you_kill_a_rare_or_unique_enemy" } }, - [3945]={ + [3991]={ [1]={ [1]={ [1]={ @@ -89905,7 +90845,7 @@ return { [1]="gain_elemental_conflux_if_6_unique_influence_amoung_equipped_non_amulet_items" } }, - [3946]={ + [3992]={ [1]={ [1]={ limit={ @@ -89921,7 +90861,7 @@ return { [1]="enemies_chaos_resistance_%_while_cursed" } }, - [3947]={ + [3993]={ [1]={ [1]={ [1]={ @@ -89958,7 +90898,7 @@ return { [1]="damage_+%_for_4_seconds_when_you_kill_a_cursed_enemy" } }, - [3948]={ + [3994]={ [1]={ [1]={ limit={ @@ -89974,7 +90914,7 @@ return { [1]="physical_damage_reduction_and_minion_physical_damage_reduction_%" } }, - [3949]={ + [3995]={ [1]={ [1]={ limit={ @@ -90003,7 +90943,7 @@ return { [1]="offering_spells_effect_+%" } }, - [3950]={ + [3996]={ [1]={ [1]={ limit={ @@ -90019,7 +90959,7 @@ return { [1]="additional_block_chance_%_for_you_and_allies_affected_by_your_auras" } }, - [3951]={ + [3997]={ [1]={ [1]={ limit={ @@ -90035,7 +90975,7 @@ return { [1]="additional_elemental_damage_reduction_as_half_of_chaos_resistance" } }, - [3952]={ + [3998]={ [1]={ [1]={ limit={ @@ -90064,7 +91004,7 @@ return { [1]="attack_and_cast_speed_+%_for_you_and_allies_affected_by_your_auras" } }, - [3953]={ + [3999]={ [1]={ [1]={ limit={ @@ -90093,7 +91033,7 @@ return { [1]="attack_cast_movement_speed_+%_for_you_and_allies_affected_by_your_auras" } }, - [3954]={ + [4000]={ [1]={ [1]={ limit={ @@ -90109,7 +91049,7 @@ return { [1]="chaos_resistance_%_for_you_and_allies_affected_by_your_auras" } }, - [3955]={ + [4001]={ [1]={ [1]={ limit={ @@ -90138,7 +91078,7 @@ return { [1]="damage_+%_for_you_and_allies_affected_by_your_auras" } }, - [3956]={ + [4002]={ [1]={ [1]={ limit={ @@ -90167,7 +91107,7 @@ return { [1]="elemental_resistances_+%_for_you_and_allies_affected_by_your_auras" } }, - [3957]={ + [4003]={ [1]={ [1]={ [1]={ @@ -90187,7 +91127,7 @@ return { [1]="you_and_allies_affected_by_your_placed_banners_regenerate_%_life_per_minute_per_resource" } }, - [3958]={ + [4004]={ [1]={ [1]={ [1]={ @@ -90224,7 +91164,7 @@ return { [1]="you_and_minion_attack_and_cast_speed_+%_for_4_seconds_when_corpse_destroyed" } }, - [3959]={ + [4005]={ [1]={ [1]={ limit={ @@ -90240,7 +91180,7 @@ return { [1]="%_chance_to_gain_power_charge_on_hit_against_enemies_on_full_life" } }, - [3960]={ + [4006]={ [1]={ [1]={ [1]={ @@ -90260,7 +91200,7 @@ return { [1]="cause_maim_on_critical_strike_attack" } }, - [3961]={ + [4007]={ [1]={ [1]={ [1]={ @@ -90280,7 +91220,7 @@ return { [1]="%_chance_to_create_smoke_cloud_on_mine_or_trap_creation" } }, - [3962]={ + [4008]={ [1]={ [1]={ limit={ @@ -90309,7 +91249,7 @@ return { [1]="damage_+%_for_each_trap_and_mine_active" } }, - [3963]={ + [4009]={ [1]={ [1]={ limit={ @@ -90338,7 +91278,7 @@ return { [1]="evasion_rating_while_es_full_+%_final" } }, - [3964]={ + [4010]={ [1]={ [1]={ limit={ @@ -90367,7 +91307,7 @@ return { [1]="damage_+%_while_es_not_full" } }, - [3965]={ + [4011]={ [1]={ [1]={ [1]={ @@ -90404,7 +91344,7 @@ return { [1]="mana_regeneration_+%_for_4_seconds_on_movement_skill_use" } }, - [3966]={ + [4012]={ [1]={ [1]={ [1]={ @@ -90424,7 +91364,7 @@ return { [1]="gain_onslaught_while_frenzy_charges_full" } }, - [3967]={ + [4013]={ [1]={ [1]={ limit={ @@ -90440,7 +91380,7 @@ return { [1]="projectile_damage_+%_max_as_distance_travelled_increases" } }, - [3968]={ + [4014]={ [1]={ [1]={ limit={ @@ -90469,7 +91409,7 @@ return { [1]="damage_+%_during_flask_effect" } }, - [3969]={ + [4015]={ [1]={ [1]={ limit={ @@ -90485,7 +91425,7 @@ return { [1]="avoid_freeze_shock_ignite_bleed_%_during_flask_effect" } }, - [3970]={ + [4016]={ [1]={ [1]={ limit={ @@ -90514,7 +91454,7 @@ return { [1]="elemental_damage_taken_+%_during_flask_effect" } }, - [3971]={ + [4017]={ [1]={ [1]={ [1]={ @@ -90551,7 +91491,7 @@ return { [1]="damage_+%_for_4_seconds_when_you_kill_a_bleeding_enemy" } }, - [3972]={ + [4018]={ [1]={ [1]={ limit={ @@ -90580,7 +91520,7 @@ return { [1]="damage_+%_to_you_and_nearby_allies_while_you_have_fortify" } }, - [3973]={ + [4019]={ [1]={ [1]={ limit={ @@ -90609,7 +91549,7 @@ return { [1]="damage_taken_+%_from_taunted_enemies" } }, - [3974]={ + [4020]={ [1]={ [1]={ limit={ @@ -90638,7 +91578,7 @@ return { [1]="attack_and_cast_speed_+%_while_leeching" } }, - [3975]={ + [4021]={ [1]={ [1]={ limit={ @@ -90667,7 +91607,7 @@ return { [1]="shield_charge_damage_per_target_hit_+%" } }, - [3976]={ + [4022]={ [1]={ [1]={ [1]={ @@ -90700,7 +91640,7 @@ return { [1]="traps_and_mines_%_chance_to_poison" } }, - [3977]={ + [4023]={ [1]={ [1]={ limit={ @@ -90716,7 +91656,7 @@ return { [1]="damage_+%_of_each_type_that_you_have_an_active_golem_of" } }, - [3978]={ + [4024]={ [1]={ [1]={ limit={ @@ -90732,7 +91672,7 @@ return { [1]="elemental_golem_immunity_to_elemental_damage" } }, - [3979]={ + [4025]={ [1]={ [1]={ limit={ @@ -90748,7 +91688,7 @@ return { [1]="golem_immunity_to_elemental_damage" } }, - [3980]={ + [4026]={ [1]={ [1]={ limit={ @@ -90777,7 +91717,7 @@ return { [1]="unique_primordial_tether_golem_life_+%_final" } }, - [3981]={ + [4027]={ [1]={ [1]={ limit={ @@ -90806,7 +91746,7 @@ return { [1]="elemental_golem_granted_buff_effect_+%" } }, - [3982]={ + [4028]={ [1]={ [1]={ limit={ @@ -90835,7 +91775,7 @@ return { [1]="base_stone_golem_granted_buff_effect_+%" } }, - [3983]={ + [4029]={ [1]={ [1]={ limit={ @@ -90864,7 +91804,7 @@ return { [1]="base_fire_golem_granted_buff_effect_+%" } }, - [3984]={ + [4030]={ [1]={ [1]={ limit={ @@ -90893,7 +91833,7 @@ return { [1]="base_ice_golem_granted_buff_effect_+%" } }, - [3985]={ + [4031]={ [1]={ [1]={ limit={ @@ -90922,7 +91862,7 @@ return { [1]="base_lightning_golem_granted_buff_effect_+%" } }, - [3986]={ + [4032]={ [1]={ [1]={ limit={ @@ -90951,7 +91891,7 @@ return { [1]="base_chaos_golem_granted_buff_effect_+%" } }, - [3987]={ + [4033]={ [1]={ [1]={ [1]={ @@ -90971,7 +91911,7 @@ return { [1]="gain_elemental_penetration_for_4_seconds_on_mine_detonation" } }, - [3988]={ + [4034]={ [1]={ [1]={ limit={ @@ -90987,7 +91927,7 @@ return { [1]="base_cold_immunity" } }, - [3989]={ + [4035]={ [1]={ [1]={ limit={ @@ -91003,7 +91943,7 @@ return { [1]="base_lightning_immunity" } }, - [3990]={ + [4036]={ [1]={ [1]={ limit={ @@ -91032,7 +91972,7 @@ return { [1]="blood_rage_grants_additional_attack_speed_+%" } }, - [3991]={ + [4037]={ [1]={ [1]={ limit={ @@ -91048,7 +91988,7 @@ return { [1]="blood_rage_grants_additional_%_chance_to_gain_frenzy_on_kill" } }, - [3992]={ + [4038]={ [1]={ [1]={ [1]={ @@ -91068,7 +92008,7 @@ return { [1]="is_hindered" } }, - [3993]={ + [4039]={ [1]={ [1]={ [1]={ @@ -91105,7 +92045,7 @@ return { [1]="damage_+%_vs_hindered_enemies" } }, - [3994]={ + [4040]={ [1]={ [1]={ limit={ @@ -91130,7 +92070,7 @@ return { [1]="blast_rain_%_chance_for_additional_blast" } }, - [3995]={ + [4041]={ [1]={ [1]={ limit={ @@ -91159,7 +92099,7 @@ return { [1]="smoke_mine_base_movement_velocity_+%" } }, - [3996]={ + [4042]={ [1]={ [1]={ limit={ @@ -91188,7 +92128,7 @@ return { [1]="enduring_cry_buff_effect_+%" } }, - [3997]={ + [4043]={ [1]={ [1]={ limit={ @@ -91213,7 +92153,7 @@ return { [1]="cluster_burst_spawn_amount" } }, - [3998]={ + [4044]={ [1]={ [1]={ limit={ @@ -91242,7 +92182,7 @@ return { [1]="lightning_tendrils_critical_strike_chance_+%" } }, - [3999]={ + [4045]={ [1]={ [1]={ limit={ @@ -91271,7 +92211,7 @@ return { [1]="righteous_fire_spell_damage_+%" } }, - [4000]={ + [4046]={ [1]={ [1]={ limit={ @@ -91300,7 +92240,7 @@ return { [1]="rallying_cry_buff_effect_+%" } }, - [4001]={ + [4047]={ [1]={ [1]={ limit={ @@ -91316,7 +92256,7 @@ return { [1]="melee_ancestor_totem_elemental_resistance_%" } }, - [4002]={ + [4048]={ [1]={ [1]={ limit={ @@ -91341,7 +92281,7 @@ return { [1]="kinetic_blast_%_chance_for_additional_blast" } }, - [4003]={ + [4049]={ [1]={ [1]={ limit={ @@ -91357,7 +92297,7 @@ return { [1]="guardian_nearby_allies_share_charges" } }, - [4004]={ + [4050]={ [1]={ [1]={ limit={ @@ -91386,7 +92326,7 @@ return { [1]="phase_run_skill_effect_duration_+%" } }, - [4005]={ + [4051]={ [1]={ [1]={ limit={ @@ -91415,7 +92355,7 @@ return { [1]="searing_totem_elemental_resistance_+%" } }, - [4006]={ + [4052]={ [1]={ [1]={ limit={ @@ -91431,7 +92371,7 @@ return { [1]="bone_offering_block_chance_+%" } }, - [4007]={ + [4053]={ [1]={ [1]={ limit={ @@ -91456,7 +92396,7 @@ return { [1]="desecrate_number_of_corpses_to_create" } }, - [4008]={ + [4054]={ [1]={ [1]={ limit={ @@ -91485,7 +92425,7 @@ return { [1]="flesh_offering_attack_speed_+%" } }, - [4009]={ + [4055]={ [1]={ [1]={ limit={ @@ -91514,7 +92454,7 @@ return { [1]="ice_spear_second_form_critical_strike_chance_+%" } }, - [4010]={ + [4056]={ [1]={ [1]={ limit={ @@ -91530,7 +92470,7 @@ return { [1]="ice_spear_second_form_critical_strike_multiplier_+" } }, - [4011]={ + [4057]={ [1]={ [1]={ limit={ @@ -91559,7 +92499,7 @@ return { [1]="ice_spear_second_form_projectile_speed_+%_final" } }, - [4012]={ + [4058]={ [1]={ [1]={ limit={ @@ -91584,7 +92524,7 @@ return { [1]="lightning_arrow_maximum_number_of_extra_targets" } }, - [4013]={ + [4059]={ [1]={ [1]={ [1]={ @@ -91617,7 +92557,7 @@ return { [1]="consecrate_ground_on_shatter_%_chance_for_3_seconds" } }, - [4014]={ + [4060]={ [1]={ [1]={ limit={ @@ -91633,7 +92573,7 @@ return { [1]="glows_in_area_with_unique_fish" } }, - [4015]={ + [4061]={ [1]={ [1]={ limit={ @@ -91658,7 +92598,7 @@ return { [1]="attacks_num_of_additional_chains" } }, - [4016]={ + [4062]={ [1]={ [1]={ limit={ @@ -91687,7 +92627,7 @@ return { [1]="explosive_arrow_attack_speed_+%" } }, - [4017]={ + [4063]={ [1]={ [1]={ limit={ @@ -91716,7 +92656,7 @@ return { [1]="lightning_damage_+%_per_10_intelligence" } }, - [4018]={ + [4064]={ [1]={ [1]={ [1]={ @@ -91736,7 +92676,7 @@ return { [1]="local_maim_on_hit" } }, - [4019]={ + [4065]={ [1]={ [1]={ limit={ @@ -91752,7 +92692,7 @@ return { [1]="warcries_cost_no_mana" } }, - [4020]={ + [4066]={ [1]={ [1]={ limit={ @@ -91768,7 +92708,7 @@ return { [1]="gain_a_power_charge_when_you_or_your_totems_kill_%_chance" } }, - [4021]={ + [4067]={ [1]={ [1]={ limit={ @@ -91784,7 +92724,7 @@ return { [1]="always_crit_shocked_enemies" } }, - [4022]={ + [4068]={ [1]={ [1]={ limit={ @@ -91800,7 +92740,7 @@ return { [1]="cannot_crit_non_shocked_enemies" } }, - [4023]={ + [4069]={ [1]={ [1]={ limit={ @@ -91829,7 +92769,7 @@ return { [1]="frost_bolt_damage_+%" } }, - [4024]={ + [4070]={ [1]={ [1]={ limit={ @@ -91858,7 +92798,7 @@ return { [1]="frost_bolt_nova_damage_+%" } }, - [4025]={ + [4071]={ [1]={ [1]={ limit={ @@ -91887,7 +92827,7 @@ return { [1]="double_slash_damage_+%" } }, - [4026]={ + [4072]={ [1]={ [1]={ limit={ @@ -91916,7 +92856,7 @@ return { [1]="charged_attack_damage_+%" } }, - [4027]={ + [4073]={ [1]={ [1]={ limit={ @@ -91945,7 +92885,7 @@ return { [1]="slam_ancestor_totem_damage_+%" } }, - [4028]={ + [4074]={ [1]={ [1]={ limit={ @@ -91974,7 +92914,7 @@ return { [1]="slash_ancestor_totem_damage_+%" } }, - [4029]={ + [4075]={ [1]={ [1]={ limit={ @@ -92003,7 +92943,7 @@ return { [1]="slash_ancestor_totem_radius_+%" } }, - [4030]={ + [4076]={ [1]={ [1]={ limit={ @@ -92032,7 +92972,7 @@ return { [1]="slam_ancestor_totem_radius_+%" } }, - [4031]={ + [4077]={ [1]={ [1]={ limit={ @@ -92061,7 +93001,7 @@ return { [1]="frost_bolt_nova_radius_+%" } }, - [4032]={ + [4078]={ [1]={ [1]={ limit={ @@ -92090,7 +93030,7 @@ return { [1]="double_slash_critical_strike_chance_+%" } }, - [4033]={ + [4079]={ [1]={ [1]={ limit={ @@ -92119,7 +93059,7 @@ return { [1]="charged_attack_radius_+%" } }, - [4034]={ + [4080]={ [1]={ [1]={ limit={ @@ -92148,7 +93088,7 @@ return { [1]="double_slash_radius_+%" } }, - [4035]={ + [4081]={ [1]={ [1]={ limit={ @@ -92177,7 +93117,7 @@ return { [1]="frost_bolt_cast_speed_+%" } }, - [4036]={ + [4082]={ [1]={ [1]={ [1]={ @@ -92210,7 +93150,7 @@ return { [1]="frost_bolt_freeze_chance_%" } }, - [4037]={ + [4083]={ [1]={ [1]={ limit={ @@ -92239,7 +93179,7 @@ return { [1]="frost_bolt_nova_duration_+%" } }, - [4038]={ + [4084]={ [1]={ [1]={ limit={ @@ -92255,7 +93195,7 @@ return { [1]="minions_cannot_be_blinded" } }, - [4039]={ + [4085]={ [1]={ [1]={ [1]={ @@ -92275,7 +93215,7 @@ return { [1]="minions_%_chance_to_blind_on_hit" } }, - [4040]={ + [4086]={ [1]={ [1]={ limit={ @@ -92291,7 +93231,7 @@ return { [1]="magic_items_drop_identified" } }, - [4041]={ + [4087]={ [1]={ [1]={ limit={ @@ -92307,7 +93247,7 @@ return { [1]="X_mana_per_stackable_unique_jewel" } }, - [4042]={ + [4088]={ [1]={ [1]={ limit={ @@ -92323,7 +93263,7 @@ return { [1]="X_armour_per_stackable_unique_jewel" } }, - [4043]={ + [4089]={ [1]={ [1]={ limit={ @@ -92339,7 +93279,7 @@ return { [1]="avoid_all_elemental_status_%_per_stackable_unique_jewel" } }, - [4044]={ + [4090]={ [1]={ [1]={ limit={ @@ -92355,7 +93295,7 @@ return { [1]="critical_strike_chance_+%_per_stackable_unique_jewel" } }, - [4045]={ + [4091]={ [1]={ [1]={ limit={ @@ -92371,7 +93311,7 @@ return { [1]="elemental_damage_+%_per_stackable_unique_jewel" } }, - [4046]={ + [4092]={ [1]={ [1]={ limit={ @@ -92387,7 +93327,7 @@ return { [1]="elemental_resistance_%_per_stackable_unique_jewel" } }, - [4047]={ + [4093]={ [1]={ [1]={ limit={ @@ -92416,7 +93356,7 @@ return { [1]="maximum_life_+%_per_stackable_unique_jewel" } }, - [4048]={ + [4094]={ [1]={ [1]={ limit={ @@ -92432,7 +93372,7 @@ return { [1]="minimum_endurance_charges_per_stackable_unique_jewel" } }, - [4049]={ + [4095]={ [1]={ [1]={ limit={ @@ -92448,7 +93388,7 @@ return { [1]="minimum_frenzy_charges_per_stackable_unique_jewel" } }, - [4050]={ + [4096]={ [1]={ [1]={ limit={ @@ -92464,7 +93404,7 @@ return { [1]="minimum_power_charges_per_stackable_unique_jewel" } }, - [4051]={ + [4097]={ [1]={ [1]={ limit={ @@ -92480,7 +93420,7 @@ return { [1]="minion_critical_strike_multiplier_+_per_stackable_unique_jewel" } }, - [4052]={ + [4098]={ [1]={ [1]={ limit={ @@ -92509,7 +93449,7 @@ return { [1]="damage_+%_per_abyss_jewel_type" } }, - [4053]={ + [4099]={ [1]={ [1]={ limit={ @@ -92525,7 +93465,7 @@ return { [1]="lightning_damage_%_taken_from_mana_before_life" } }, - [4054]={ + [4100]={ [1]={ [1]={ limit={ @@ -92541,7 +93481,7 @@ return { [1]="physical_damage_%_taken_from_mana_before_life" } }, - [4055]={ + [4101]={ [1]={ [1]={ limit={ @@ -92566,7 +93506,7 @@ return { [1]="recover_%_maximum_mana_when_enemy_shocked" } }, - [4056]={ + [4102]={ [1]={ [1]={ limit={ @@ -92595,7 +93535,7 @@ return { [1]="quantity_of_items_dropped_by_maimed_enemies_+%" } }, - [4057]={ + [4103]={ [1]={ [1]={ limit={ @@ -92624,7 +93564,7 @@ return { [1]="rarity_of_items_dropped_by_maimed_enemies_+%" } }, - [4058]={ + [4104]={ [1]={ [1]={ [1]={ @@ -92669,7 +93609,7 @@ return { [1]="damage_taken_+%_if_you_have_taken_a_savage_hit_recently" } }, - [4059]={ + [4105]={ [1]={ [1]={ limit={ @@ -92698,7 +93638,7 @@ return { [1]="stun_duration_on_self_+%" } }, - [4060]={ + [4106]={ [1]={ [1]={ limit={ @@ -92727,7 +93667,7 @@ return { [1]="melee_damage_+%_per_endurance_charge" } }, - [4061]={ + [4107]={ [1]={ [1]={ limit={ @@ -92743,7 +93683,7 @@ return { [1]="totems_resist_all_elements_+%_per_active_totem" } }, - [4062]={ + [4108]={ [1]={ [1]={ [1]={ @@ -92763,7 +93703,7 @@ return { [1]="gain_life_regeneration_%_per_second_for_1_second_if_taken_savage_hit" } }, - [4063]={ + [4109]={ [1]={ [1]={ limit={ @@ -92779,7 +93719,7 @@ return { [1]="cannot_be_shocked_while_at_maximum_endurance_charges" } }, - [4064]={ + [4110]={ [1]={ [1]={ [1]={ @@ -92799,7 +93739,7 @@ return { [1]="movement_speed_+%_if_used_a_warcry_recently" } }, - [4065]={ + [4111]={ [1]={ [1]={ [1]={ @@ -92823,7 +93763,7 @@ return { [1]="life_leech_from_attack_damage_permyriad_vs_poisoned_enemies" } }, - [4066]={ + [4112]={ [1]={ [1]={ [1]={ @@ -92847,7 +93787,7 @@ return { [1]="mana_leech_from_attack_damage_permyriad_vs_poisoned_enemies" } }, - [4067]={ + [4113]={ [1]={ [1]={ limit={ @@ -92876,7 +93816,7 @@ return { [1]="totems_spells_cast_speed_+%_per_active_totem" } }, - [4068]={ + [4114]={ [1]={ [1]={ limit={ @@ -92905,7 +93845,7 @@ return { [1]="movement_skills_mana_cost_+%" } }, - [4069]={ + [4115]={ [1]={ [1]={ limit={ @@ -92921,7 +93861,7 @@ return { [1]="critical_strike_chance_+%_when_in_main_hand" } }, - [4070]={ + [4116]={ [1]={ [1]={ limit={ @@ -92937,7 +93877,7 @@ return { [1]="additional_block_chance_%_when_in_off_hand" } }, - [4071]={ + [4117]={ [1]={ [1]={ limit={ @@ -92953,7 +93893,7 @@ return { [1]="spirit_offering_physical_damage_%_to_add_as_chaos" } }, - [4072]={ + [4118]={ [1]={ [1]={ [1]={ @@ -92990,7 +93930,7 @@ return { [1]="damage_taken_+%_if_not_hit_recently_final" } }, - [4073]={ + [4119]={ [1]={ [1]={ [1]={ @@ -93027,7 +93967,7 @@ return { [1]="evasion_+%_if_hit_recently" } }, - [4074]={ + [4120]={ [1]={ [1]={ limit={ @@ -93043,7 +93983,7 @@ return { [1]="block_chance_%_vs_taunted_enemies" } }, - [4075]={ + [4121]={ [1]={ [1]={ limit={ @@ -93059,7 +93999,7 @@ return { [1]="minion_cold_damage_resistance_%" } }, - [4076]={ + [4122]={ [1]={ [1]={ limit={ @@ -93075,7 +94015,7 @@ return { [1]="minion_physical_damage_%_to_add_as_cold" } }, - [4077]={ + [4123]={ [1]={ [1]={ [1]={ @@ -93112,7 +94052,7 @@ return { [1]="armour_and_evasion_rating_+%_if_killed_a_taunted_enemy_recently" } }, - [4078]={ + [4124]={ [1]={ [1]={ limit={ @@ -93141,7 +94081,7 @@ return { [1]="damage_+%_for_each_level_the_enemy_is_higher_than_you" } }, - [4079]={ + [4125]={ [1]={ [1]={ limit={ @@ -93170,7 +94110,7 @@ return { [1]="totems_attack_speed_+%_per_active_totem" } }, - [4080]={ + [4126]={ [1]={ [1]={ limit={ @@ -93195,7 +94135,7 @@ return { [1]="attacks_num_of_additional_chains_when_in_main_hand" } }, - [4081]={ + [4127]={ [1]={ [1]={ limit={ @@ -93220,7 +94160,7 @@ return { [1]="attacks_number_of_additional_projectiles" } }, - [4082]={ + [4128]={ [1]={ [1]={ limit={ @@ -93245,7 +94185,7 @@ return { [1]="attacks_number_of_additional_projectiles_when_in_off_hand" } }, - [4083]={ + [4129]={ [1]={ [1]={ limit={ @@ -93266,7 +94206,7 @@ return { [2]="counter_attacks_maximum_added_physical_damage" } }, - [4084]={ + [4130]={ [1]={ [1]={ limit={ @@ -93295,7 +94235,7 @@ return { [1]="golem_damage_+%_per_active_golem_type" } }, - [4085]={ + [4131]={ [1]={ [1]={ limit={ @@ -93324,7 +94264,7 @@ return { [1]="golem_damage_+%_per_active_golem" } }, - [4086]={ + [4132]={ [1]={ [1]={ [1]={ @@ -93344,7 +94284,7 @@ return { [1]="life_+%_with_no_corrupted_equipped_items" } }, - [4087]={ + [4133]={ [1]={ [1]={ [1]={ @@ -93368,7 +94308,7 @@ return { [1]="life_regeneration_per_minute_with_no_corrupted_equipped_items" } }, - [4088]={ + [4134]={ [1]={ [1]={ [1]={ @@ -93392,7 +94332,7 @@ return { [1]="energy_shield_recharge_rate_per_minute_with_all_corrupted_equipped_items" } }, - [4089]={ + [4135]={ [1]={ [1]={ limit={ @@ -93408,7 +94348,7 @@ return { [1]="local_display_nearby_enemies_take_X_chaos_damage_per_minute" } }, - [4090]={ + [4136]={ [1]={ [1]={ limit={ @@ -93429,7 +94369,7 @@ return { [2]="counter_attacks_maximum_added_cold_damage" } }, - [4091]={ + [4137]={ [1]={ [1]={ [1]={ @@ -93466,7 +94406,7 @@ return { [1]="movement_speed_+%_if_pierced_recently" } }, - [4092]={ + [4138]={ [1]={ [1]={ [1]={ @@ -93486,7 +94426,7 @@ return { [1]="poison_cursed_enemies_on_hit" } }, - [4093]={ + [4139]={ [1]={ [1]={ [1]={ @@ -93519,7 +94459,7 @@ return { [1]="chance_to_poison_%_vs_cursed_enemies" } }, - [4094]={ + [4140]={ [1]={ [1]={ [1]={ @@ -93556,7 +94496,7 @@ return { [1]="item_found_rarity_+%_if_wearing_a_normal_item" } }, - [4095]={ + [4141]={ [1]={ [1]={ [1]={ @@ -93593,7 +94533,7 @@ return { [1]="item_found_quantity_+%_if_wearing_a_magic_item" } }, - [4096]={ + [4142]={ [1]={ [1]={ [1]={ @@ -93617,7 +94557,7 @@ return { [1]="gain_onslaught_for_X_ms_on_killing_rare_or_unique_monster" } }, - [4097]={ + [4143]={ [1]={ [1]={ limit={ @@ -93633,7 +94573,7 @@ return { [1]="kill_enemy_on_hit_if_under_15%_life" } }, - [4098]={ + [4144]={ [1]={ [1]={ limit={ @@ -93649,7 +94589,7 @@ return { [1]="kill_enemy_on_hit_if_under_20%_life" } }, - [4099]={ + [4145]={ [1]={ [1]={ limit={ @@ -93665,7 +94605,7 @@ return { [1]="immune_to_bleeding" } }, - [4100]={ + [4146]={ [1]={ [1]={ limit={ @@ -93681,7 +94621,7 @@ return { [1]="base_cannot_gain_bleeding" } }, - [4101]={ + [4147]={ [1]={ [1]={ limit={ @@ -93697,7 +94637,7 @@ return { [1]="base_avoid_bleed_%" } }, - [4102]={ + [4148]={ [1]={ [1]={ limit={ @@ -93713,7 +94653,7 @@ return { [1]="immune_to_bleeding_while_leeching" } }, - [4103]={ + [4149]={ [1]={ [1]={ [1]={ @@ -93750,7 +94690,7 @@ return { [1]="damage_+%_if_enemy_killed_recently_final" } }, - [4104]={ + [4150]={ [1]={ [1]={ [1]={ @@ -93787,7 +94727,7 @@ return { [1]="skill_area_of_effect_+%_if_enemy_killed_recently" } }, - [4105]={ + [4151]={ [1]={ [1]={ limit={ @@ -93812,7 +94752,7 @@ return { [1]="max_charged_attack_stacks" } }, - [4106]={ + [4152]={ [1]={ [1]={ [1]={ @@ -93849,7 +94789,7 @@ return { [1]="skill_effect_duration_+%_if_killed_maimed_enemy_recently" } }, - [4107]={ + [4153]={ [1]={ [1]={ [1]={ @@ -93886,7 +94826,7 @@ return { [1]="damage_taken_+%_if_taunted_an_enemy_recently" } }, - [4108]={ + [4154]={ [1]={ [1]={ [1]={ @@ -93910,7 +94850,7 @@ return { [1]="life_regeneration_rate_per_minute_%_if_taunted_an_enemy_recently" } }, - [4109]={ + [4155]={ [1]={ [1]={ [1]={ @@ -93930,7 +94870,7 @@ return { [1]="immune_to_elemental_status_ailments_during_flask_effect" } }, - [4110]={ + [4156]={ [1]={ [1]={ limit={ @@ -93959,7 +94899,7 @@ return { [1]="elemental_damage_+%_during_flask_effect" } }, - [4111]={ + [4157]={ [1]={ [1]={ [1]={ @@ -94008,7 +94948,7 @@ return { [1]="chance_to_freeze_shock_ignite_%_during_flask_effect" } }, - [4112]={ + [4158]={ [1]={ [1]={ [1]={ @@ -94028,7 +94968,7 @@ return { [1]="es_and_mana_regeneration_rate_per_minute_%_while_on_consecrated_ground" } }, - [4113]={ + [4159]={ [1]={ [1]={ limit={ @@ -94057,7 +94997,7 @@ return { [1]="attack_and_cast_speed_+%_while_on_consecrated_ground" } }, - [4114]={ + [4160]={ [1]={ [1]={ limit={ @@ -94086,7 +95026,7 @@ return { [1]="mine_arming_speed_+%" } }, - [4115]={ + [4161]={ [1]={ [1]={ limit={ @@ -94102,7 +95042,7 @@ return { [1]="flasks_%_chance_to_not_consume_charges" } }, - [4116]={ + [4162]={ [1]={ [1]={ limit={ @@ -94131,7 +95071,7 @@ return { [1]="physical_damage_+%_for_4_seconds_when_you_block_a_unique_enemy_hit" } }, - [4117]={ + [4163]={ [1]={ [1]={ limit={ @@ -94147,7 +95087,7 @@ return { [1]="your_consecrated_ground_grants_damage_+%" } }, - [4118]={ + [4164]={ [1]={ [1]={ [1]={ @@ -94184,7 +95124,7 @@ return { [1]="attack_speed_+%_if_enemy_not_killed_recently" } }, - [4119]={ + [4165]={ [1]={ [1]={ limit={ @@ -94213,7 +95153,7 @@ return { [1]="physical_damage_+%_while_at_maximum_frenzy_charges_final" } }, - [4120]={ + [4166]={ [1]={ [1]={ limit={ @@ -94242,7 +95182,7 @@ return { [1]="physical_damage_taken_+%_while_at_maximum_endurance_charges" } }, - [4121]={ + [4167]={ [1]={ [1]={ [1]={ @@ -94266,7 +95206,7 @@ return { [1]="mine_damage_leeched_as_life_to_you_permyriad" } }, - [4122]={ + [4168]={ [1]={ [1]={ [1]={ @@ -94290,7 +95230,7 @@ return { [1]="totem_damage_leeched_as_life_to_you_permyriad" } }, - [4123]={ + [4169]={ [1]={ [1]={ limit={ @@ -94319,7 +95259,7 @@ return { [1]="attack_speed_+%_per_200_accuracy_rating" } }, - [4124]={ + [4170]={ [1]={ [1]={ limit={ @@ -94335,7 +95275,7 @@ return { [1]="gain_maximum_endurance_charges_on_endurance_charge_gained_%_chance" } }, - [4125]={ + [4171]={ [1]={ [1]={ limit={ @@ -94364,7 +95304,7 @@ return { [1]="elementalist_skill_area_of_effect_+%_for_4_seconds_every_10_seconds" } }, - [4126]={ + [4172]={ [1]={ [1]={ limit={ @@ -94380,7 +95320,7 @@ return { [1]="physical_damage_%_to_add_as_chaos_vs_bleeding_enemies" } }, - [4127]={ + [4173]={ [1]={ [1]={ [1]={ @@ -94472,7 +95412,7 @@ return { [2]="phasing_on_trap_triggered_by_an_enemy_ms" } }, - [4128]={ + [4174]={ [1]={ [1]={ limit={ @@ -94488,7 +95428,7 @@ return { [1]="gain_x_life_on_trap_triggered_by_an_enemy" } }, - [4129]={ + [4175]={ [1]={ [1]={ limit={ @@ -94504,7 +95444,7 @@ return { [1]="gain_x_es_on_trap_triggered_by_an_enemy" } }, - [4130]={ + [4176]={ [1]={ [1]={ limit={ @@ -94520,7 +95460,7 @@ return { [1]="attack_skills_additional_ballista_totems_allowed" } }, - [4131]={ + [4177]={ [1]={ [1]={ limit={ @@ -94536,7 +95476,7 @@ return { [1]="attack_skills_additional_totems_allowed" } }, - [4132]={ + [4178]={ [1]={ [1]={ limit={ @@ -94565,7 +95505,7 @@ return { [1]="poison_from_critical_strikes_damage_+%_final" } }, - [4133]={ + [4179]={ [1]={ [1]={ limit={ @@ -94594,7 +95534,7 @@ return { [1]="bleed_damage_+%_vs_maimed_enemies_final" } }, - [4134]={ + [4180]={ [1]={ [1]={ [1]={ @@ -94631,7 +95571,7 @@ return { [1]="flask_charges_+%_from_enemies_with_status_ailments" } }, - [4135]={ + [4181]={ [1]={ [1]={ limit={ @@ -94660,7 +95600,7 @@ return { [1]="armour_and_evasion_+%_while_fortified" } }, - [4136]={ + [4182]={ [1]={ [1]={ limit={ @@ -94689,7 +95629,7 @@ return { [1]="melee_damage_+%_while_fortified" } }, - [4137]={ + [4183]={ [1]={ [1]={ limit={ @@ -94714,7 +95654,7 @@ return { [1]="desecrate_creates_X_additional_corpses" } }, - [4138]={ + [4184]={ [1]={ [1]={ [1]={ @@ -94751,7 +95691,7 @@ return { [1]="damage_+%_if_you_have_consumed_a_corpse_recently" } }, - [4139]={ + [4185]={ [1]={ [1]={ [1]={ @@ -94788,7 +95728,7 @@ return { [1]="attack_and_cast_speed_+%_per_corpse_consumed_recently" } }, - [4140]={ + [4186]={ [1]={ [1]={ [1]={ @@ -94808,7 +95748,7 @@ return { [1]="permanently_intimidate_enemies_you_hit_on_full_life" } }, - [4141]={ + [4187]={ [1]={ [1]={ [1]={ @@ -94853,7 +95793,7 @@ return { [1]="taunted_enemies_damage_+%_final_vs_non_taunt_target" } }, - [4142]={ + [4188]={ [1]={ [1]={ [1]={ @@ -94881,7 +95821,7 @@ return { [1]="gain_life_leech_on_kill_permyriad" } }, - [4143]={ + [4189]={ [1]={ [1]={ [1]={ @@ -94901,7 +95841,7 @@ return { [1]="poison_on_melee_hit" } }, - [4144]={ + [4190]={ [1]={ [1]={ [1]={ @@ -94934,7 +95874,7 @@ return { [1]="chance_to_poison_on_melee_hit_%" } }, - [4145]={ + [4191]={ [1]={ [1]={ [1]={ @@ -94958,7 +95898,7 @@ return { [1]="life_leech_permyriad_vs_cursed_enemies" } }, - [4146]={ + [4192]={ [1]={ [1]={ [1]={ @@ -94995,7 +95935,7 @@ return { [1]="movement_speed_+%_if_enemy_killed_recently" } }, - [4147]={ + [4193]={ [1]={ [1]={ limit={ @@ -95011,7 +95951,7 @@ return { [1]="weapon_physical_damage_%_to_add_as_each_element" } }, - [4148]={ + [4194]={ [1]={ [1]={ [1]={ @@ -95031,7 +95971,7 @@ return { [1]="physical_damage_%_added_as_fire_damage_if_enemy_killed_recently_by_you_or_your_totems" } }, - [4149]={ + [4195]={ [1]={ [1]={ limit={ @@ -95047,7 +95987,7 @@ return { [1]="global_critical_strike_multiplier_while_dual_wielding_+" } }, - [4150]={ + [4196]={ [1]={ [1]={ limit={ @@ -95076,7 +96016,7 @@ return { [1]="global_critical_strike_chance_while_dual_wielding_+%" } }, - [4151]={ + [4197]={ [1]={ [1]={ limit={ @@ -95092,7 +96032,7 @@ return { [1]="base_physical_damage_reduction_and_evasion_rating" } }, - [4152]={ + [4198]={ [1]={ [1]={ limit={ @@ -95108,7 +96048,7 @@ return { [1]="elemental_penetration_%_during_flask_effect" } }, - [4153]={ + [4199]={ [1]={ [1]={ limit={ @@ -95124,7 +96064,7 @@ return { [1]="additional_physical_damage_reduction_%_during_flask_effect" } }, - [4154]={ + [4200]={ [1]={ [1]={ limit={ @@ -95153,7 +96093,7 @@ return { [1]="reflect_damage_taken_+%" } }, - [4155]={ + [4201]={ [1]={ [1]={ limit={ @@ -95169,7 +96109,7 @@ return { [1]="power_charge_on_block_%_chance" } }, - [4156]={ + [4202]={ [1]={ [1]={ [1]={ @@ -95210,7 +96150,7 @@ return { [1]="nearby_enemies_chilled_on_block" } }, - [4157]={ + [4203]={ [1]={ [1]={ limit={ @@ -95231,7 +96171,7 @@ return { [2]="from_self_maximum_added_cold_damage_taken_per_frenzy_charge" } }, - [4158]={ + [4204]={ [1]={ [1]={ limit={ @@ -95252,7 +96192,7 @@ return { [2]="maximum_added_cold_damage_per_frenzy_charge" } }, - [4159]={ + [4205]={ [1]={ [1]={ limit={ @@ -95281,7 +96221,7 @@ return { [1]="attack_and_cast_speed_+%_during_flask_effect" } }, - [4160]={ + [4206]={ [1]={ [1]={ [1]={ @@ -95306,7 +96246,7 @@ return { [2]="maximum_added_fire_damage_if_blocked_recently" } }, - [4161]={ + [4207]={ [1]={ [1]={ [1]={ @@ -95326,7 +96266,7 @@ return { [1]="stun_threshold_based_on_energy_shield_instead_of_life" } }, - [4162]={ + [4208]={ [1]={ [1]={ limit={ @@ -95342,7 +96282,7 @@ return { [1]="cannot_leech_life_from_critical_strikes" } }, - [4163]={ + [4209]={ [1]={ [1]={ [1]={ @@ -95362,7 +96302,7 @@ return { [1]="%_chance_to_blind_on_critical_strike" } }, - [4164]={ + [4210]={ [1]={ [1]={ [1]={ @@ -95382,7 +96322,7 @@ return { [1]="bleed_on_melee_critical_strike" } }, - [4165]={ + [4211]={ [1]={ [1]={ limit={ @@ -95411,7 +96351,7 @@ return { [1]="taunted_enemies_damage_taken_+%" } }, - [4166]={ + [4212]={ [1]={ [1]={ [1]={ @@ -95444,7 +96384,7 @@ return { [1]="gain_elusive_on_crit_%_chance" } }, - [4167]={ + [4213]={ [1]={ [1]={ [1]={ @@ -95477,7 +96417,7 @@ return { [1]="gain_elusive_on_kill_chance_%" } }, - [4168]={ + [4214]={ [1]={ [1]={ limit={ @@ -95493,7 +96433,7 @@ return { [1]="map_packs_have_pop_up_traps" } }, - [4169]={ + [4215]={ [1]={ [1]={ [1]={ @@ -95513,7 +96453,7 @@ return { [1]="gain_defiance_when_lose_life_to_hit_once_per_x_ms" } }, - [4170]={ + [4216]={ [1]={ [1]={ limit={ @@ -95542,7 +96482,7 @@ return { [1]="armour_+%_per_defiance" } }, - [4171]={ + [4217]={ [1]={ [1]={ limit={ @@ -95571,7 +96511,7 @@ return { [1]="maximum_total_life_recovery_per_second_from_leech_+%_while_have_defiance" } }, - [4172]={ + [4218]={ [1]={ [1]={ limit={ @@ -95587,7 +96527,7 @@ return { [1]="lose_all_defiance_and_take_max_life_as_damage_on_reaching_x_defiance" } }, - [4173]={ + [4219]={ [1]={ [1]={ limit={ @@ -95603,7 +96543,7 @@ return { [1]="self_take_no_extra_damage_from_critical_strikes" } }, - [4174]={ + [4220]={ [1]={ [1]={ limit={ @@ -95632,7 +96572,7 @@ return { [1]="enemies_you_shock_cast_speed_+%" } }, - [4175]={ + [4221]={ [1]={ [1]={ limit={ @@ -95661,7 +96601,7 @@ return { [1]="enemies_you_shock_movement_speed_+%" } }, - [4176]={ + [4222]={ [1]={ [1]={ [1]={ @@ -95681,7 +96621,7 @@ return { [1]="map_normal_monster_life_regeneration_rate_per_minute_%" } }, - [4177]={ + [4223]={ [1]={ [1]={ [1]={ @@ -95701,7 +96641,7 @@ return { [1]="map_magic_monster_life_regeneration_rate_per_minute_%" } }, - [4178]={ + [4224]={ [1]={ [1]={ [1]={ @@ -95721,7 +96661,7 @@ return { [1]="map_rare_monster_life_regeneration_rate_per_minute_%" } }, - [4179]={ + [4225]={ [1]={ [1]={ limit={ @@ -95750,7 +96690,7 @@ return { [1]="siege_and_shrapnel_ballista_attack_speed_+%_per_maximum_totem" } }, - [4180]={ + [4226]={ [1]={ [1]={ limit={ @@ -95775,7 +96715,7 @@ return { [1]="memory_line_number_of_shrines" } }, - [4181]={ + [4227]={ [1]={ [1]={ limit={ @@ -95800,7 +96740,7 @@ return { [1]="memory_line_number_of_pantheon_shrines" } }, - [4182]={ + [4228]={ [1]={ [1]={ limit={ @@ -95829,7 +96769,7 @@ return { [1]="map_player_shrine_buff_effect_on_self_+%" } }, - [4183]={ + [4229]={ [1]={ [1]={ limit={ @@ -95858,7 +96798,7 @@ return { [1]="map_incursion_memory_line_monster_life_+%_final" } }, - [4184]={ + [4230]={ [1]={ [1]={ limit={ @@ -95887,7 +96827,7 @@ return { [1]="map_incursion_memory_line_monster_damage_+%_final" } }, - [4185]={ + [4231]={ [1]={ [1]={ [1]={ @@ -95924,7 +96864,7 @@ return { [1]="burning_damage_+%_if_ignited_an_enemy_recently" } }, - [4186]={ + [4232]={ [1]={ [1]={ limit={ @@ -95940,7 +96880,7 @@ return { [1]="recover_%_maximum_life_on_enemy_ignited" } }, - [4187]={ + [4233]={ [1]={ [1]={ limit={ @@ -95969,7 +96909,7 @@ return { [1]="melee_physical_damage_+%_vs_ignited_enemies" } }, - [4188]={ + [4234]={ [1]={ [1]={ limit={ @@ -95998,7 +96938,7 @@ return { [1]="critical_strike_chance_+%_for_forking_arrows" } }, - [4189]={ + [4235]={ [1]={ [1]={ [1]={ @@ -96018,7 +96958,7 @@ return { [1]="arrows_that_pierce_cause_bleeding" } }, - [4190]={ + [4236]={ [1]={ [1]={ [1]={ @@ -96038,7 +96978,7 @@ return { [1]="arrows_that_pierce_chance_to_bleed_25%" } }, - [4191]={ + [4237]={ [1]={ [1]={ limit={ @@ -96054,7 +96994,7 @@ return { [1]="arrows_always_pierce_after_chaining" } }, - [4192]={ + [4238]={ [1]={ [1]={ limit={ @@ -96079,7 +97019,7 @@ return { [1]="spells_number_of_additional_projectiles" } }, - [4193]={ + [4239]={ [1]={ [1]={ limit={ @@ -96108,7 +97048,7 @@ return { [1]="projectile_attack_damage_+%_per_200_accuracy" } }, - [4194]={ + [4240]={ [1]={ [1]={ [1]={ @@ -96150,7 +97090,7 @@ return { [2]="essence_buff_ground_fire_duration_ms" } }, - [4195]={ + [4241]={ [1]={ [1]={ [1]={ @@ -96174,7 +97114,7 @@ return { [1]="scorched_earth_ground_scorch_duration_ms" } }, - [4196]={ + [4242]={ [1]={ [1]={ [1]={ @@ -96198,7 +97138,7 @@ return { [1]="wake_of_destruction_ground_lightning_duration_ms" } }, - [4197]={ + [4243]={ [1]={ [1]={ limit={ @@ -96227,7 +97167,7 @@ return { [1]="essence_display_elemental_damage_taken_while_not_moving_+%" } }, - [4198]={ + [4244]={ [1]={ [1]={ limit={ @@ -96252,7 +97192,7 @@ return { [1]="physical_damage_reduction_rating_%_while_not_moving" } }, - [4199]={ + [4245]={ [1]={ [1]={ limit={ @@ -96268,7 +97208,7 @@ return { [1]="armour_while_stationary" } }, - [4200]={ + [4246]={ [1]={ [1]={ limit={ @@ -96297,7 +97237,7 @@ return { [1]="physical_damage_taken_+%_while_moving" } }, - [4201]={ + [4247]={ [1]={ [1]={ limit={ @@ -96322,7 +97262,7 @@ return { [1]="mana_regeneration_rate_+%_while_stationary" } }, - [4202]={ + [4248]={ [1]={ [1]={ limit={ @@ -96351,7 +97291,7 @@ return { [1]="projectile_attack_skill_critical_strike_chance_+%" } }, - [4203]={ + [4249]={ [1]={ [1]={ [1]={ @@ -96384,7 +97324,7 @@ return { [1]="projectile_attacks_chance_to_bleed_on_hit_%_if_you_have_beast_minion" } }, - [4204]={ + [4250]={ [1]={ [1]={ [1]={ @@ -96417,7 +97357,7 @@ return { [1]="projectile_attacks_chance_to_maim_on_hit_%_if_you_have_beast_minion" } }, - [4205]={ + [4251]={ [1]={ [1]={ [1]={ @@ -96450,7 +97390,7 @@ return { [1]="projectile_attacks_chance_to_poison_on_hit_%_if_you_have_beast_minion" } }, - [4206]={ + [4252]={ [1]={ [1]={ limit={ @@ -96471,7 +97411,7 @@ return { [2]="attack_maximum_added_physical_damage_if_you_have_beast_minion" } }, - [4207]={ + [4253]={ [1]={ [1]={ limit={ @@ -96492,7 +97432,7 @@ return { [2]="attack_maximum_added_chaos_damage_if_you_have_beast_minion" } }, - [4208]={ + [4254]={ [1]={ [1]={ limit={ @@ -96508,7 +97448,7 @@ return { [1]="attack_and_movement_speed_+%_if_you_have_beast_minion" } }, - [4209]={ + [4255]={ [1]={ [1]={ limit={ @@ -96517,7 +97457,7 @@ return { [2]="#" } }, - text="{0}% increased Attack Damage if your other Ring is a Shaper Item" + text="{0}% increased Attack Damage if your opposite Ring is a Shaper Item" }, [2]={ [1]={ @@ -96530,14 +97470,14 @@ return { [2]=-1 } }, - text="{0}% reduced Attack Damage if your other Ring is a Shaper Item" + text="{0}% reduced Attack Damage if your opposite Ring is a Shaper Item" } }, stats={ [1]="attack_damage_+%_if_other_ring_is_shaper_item" } }, - [4210]={ + [4256]={ [1]={ [1]={ limit={ @@ -96546,7 +97486,7 @@ return { [2]="#" } }, - text="{0}% increased Spell Damage if your other Ring is an Elder Item" + text="{0}% increased Spell Damage if your opposite Ring is an Elder Item" }, [2]={ [1]={ @@ -96559,14 +97499,14 @@ return { [2]=-1 } }, - text="{0}% reduced Spell Damage if your other Ring is an Elder Item" + text="{0}% reduced Spell Damage if your opposite Ring is an Elder Item" } }, stats={ [1]="spell_damage_+%_if_other_ring_is_elder_item" } }, - [4211]={ + [4257]={ [1]={ [1]={ limit={ @@ -96575,14 +97515,14 @@ return { [2]="#" } }, - text="Cannot be Stunned by Spells if your other Ring is a Shaper Item" + text="Cannot be Stunned by Spells if your opposite Ring is a Shaper Item" } }, stats={ [1]="cannot_be_stunned_by_spells_if_other_ring_is_shaper_item" } }, - [4212]={ + [4258]={ [1]={ [1]={ limit={ @@ -96591,14 +97531,14 @@ return { [2]="#" } }, - text="Cannot be Stunned by Attacks if your other Ring is an Elder Item" + text="Cannot be Stunned by Attacks if your opposite Ring is an Elder Item" } }, stats={ [1]="cannot_be_stunned_by_attacks_if_other_ring_is_elder_item" } }, - [4213]={ + [4259]={ [1]={ [1]={ limit={ @@ -96614,7 +97554,7 @@ return { [1]="maximum_life_per_equipped_elder_item" } }, - [4214]={ + [4260]={ [1]={ [1]={ [1]={ @@ -96651,7 +97591,7 @@ return { [1]="ailment_damage_+%_per_equipped_elder_item" } }, - [4215]={ + [4261]={ [1]={ [1]={ limit={ @@ -96667,7 +97607,7 @@ return { [1]="ailment_dot_multiplier_+_per_equipped_elder_item" } }, - [4216]={ + [4262]={ [1]={ [1]={ [1]={ @@ -96704,7 +97644,7 @@ return { [1]="non_damaging_ailment_effect_+%_on_self_while_you_have_arcane_surge" } }, - [4217]={ + [4263]={ [1]={ [1]={ [1]={ @@ -96741,7 +97681,7 @@ return { [1]="non_damaging_ailment_effect_+%_per_equipped_elder_item" } }, - [4218]={ + [4264]={ [1]={ [1]={ limit={ @@ -96757,7 +97697,7 @@ return { [1]="skill_mana_cost_+_for_each_equipped_corrupted_item" } }, - [4219]={ + [4265]={ [1]={ [1]={ limit={ @@ -96773,7 +97713,7 @@ return { [1]="elemental_damage_%_to_add_as_chaos_per_shaper_item_equipped" } }, - [4220]={ + [4266]={ [1]={ [1]={ limit={ @@ -96789,7 +97729,7 @@ return { [1]="maximum_siphoning_charges_per_elder_or_shaper_item_equipped" } }, - [4221]={ + [4267]={ [1]={ [1]={ limit={ @@ -96814,7 +97754,7 @@ return { [1]="gain_siphoning_charge_on_skill_use_%_chance" } }, - [4222]={ + [4268]={ [1]={ [1]={ limit={ @@ -96835,7 +97775,7 @@ return { [2]="attack_and_spell_maximum_added_physical_damage_per_siphoning_charge" } }, - [4223]={ + [4269]={ [1]={ [1]={ limit={ @@ -96851,7 +97791,7 @@ return { [1]="non_chaos_damage_%_to_add_as_chaos_damage_per_siphoning_charge" } }, - [4224]={ + [4270]={ [1]={ [1]={ limit={ @@ -96867,7 +97807,7 @@ return { [1]="additional_physical_damage_reduction_against_hits_%_per_siphoning_charge" } }, - [4225]={ + [4271]={ [1]={ [1]={ [1]={ @@ -96887,7 +97827,7 @@ return { [1]="life_leech_from_any_damage_permyriad_per_siphoning_charge" } }, - [4226]={ + [4272]={ [1]={ [1]={ [1]={ @@ -96911,7 +97851,7 @@ return { [1]="physical_damage_taken_per_minute_per_siphoning_charge_if_have_used_a_skill_recently" } }, - [4227]={ + [4273]={ [1]={ [1]={ limit={ @@ -96927,7 +97867,7 @@ return { [1]="recover_%_maximum_life_on_flask_use" } }, - [4228]={ + [4274]={ [1]={ [1]={ limit={ @@ -96943,7 +97883,7 @@ return { [1]="recover_%_maximum_life_on_mana_flask_use" } }, - [4229]={ + [4275]={ [1]={ [1]={ limit={ @@ -96959,7 +97899,7 @@ return { [1]="non_instant_mana_recovery_from_flasks_also_recovers_life" } }, - [4230]={ + [4276]={ [1]={ [1]={ [1]={ @@ -96996,7 +97936,7 @@ return { [1]="mana_cost_+%_per_200_mana_spent_recently" } }, - [4231]={ + [4277]={ [1]={ [1]={ [1]={ @@ -97033,7 +97973,7 @@ return { [1]="spell_damage_+%_per_200_mana_spent_recently" } }, - [4232]={ + [4278]={ [1]={ [1]={ limit={ @@ -97049,7 +97989,7 @@ return { [1]="cannot_be_stunned_if_you_have_10_or_more_crab_charges" } }, - [4233]={ + [4279]={ [1]={ [1]={ [1]={ @@ -97069,7 +98009,7 @@ return { [1]="cannot_lose_crab_charges_if_you_have_lost_crab_charges_recently" } }, - [4234]={ + [4280]={ [1]={ [1]={ limit={ @@ -97085,7 +98025,7 @@ return { [1]="crab_aspect_crab_barrier_max_+" } }, - [4235]={ + [4281]={ [1]={ [1]={ limit={ @@ -97101,7 +98041,7 @@ return { [1]="damage_+%_per_crab_charge" } }, - [4236]={ + [4282]={ [1]={ [1]={ limit={ @@ -97117,7 +98057,7 @@ return { [1]="number_of_crab_charges_lost_when_hit" } }, - [4237]={ + [4283]={ [1]={ [1]={ limit={ @@ -97133,7 +98073,7 @@ return { [1]="additional_block_%_while_you_have_at_least_5_crab_charges" } }, - [4238]={ + [4284]={ [1]={ [1]={ limit={ @@ -97149,7 +98089,7 @@ return { [1]="additional_block_%_while_you_have_at_least_10_crab_charges" } }, - [4239]={ + [4285]={ [1]={ [1]={ limit={ @@ -97165,7 +98105,7 @@ return { [1]="chance_to_gain_max_crab_stacks_when_you_would_gain_a_crab_stack_%" } }, - [4240]={ + [4286]={ [1]={ [1]={ limit={ @@ -97181,7 +98121,7 @@ return { [1]="maximum_blood_scythe_charges" } }, - [4241]={ + [4287]={ [1]={ [1]={ limit={ @@ -97197,7 +98137,7 @@ return { [1]="maximum_void_arrows" } }, - [4242]={ + [4288]={ [1]={ [1]={ limit={ @@ -97213,7 +98153,7 @@ return { [1]="%_chance_to_gain_25%_non_chaos_damage_to_add_as_chaos_damage" } }, - [4243]={ + [4289]={ [1]={ [1]={ limit={ @@ -97229,7 +98169,7 @@ return { [1]="%_chance_to_gain_50%_non_chaos_damage_to_add_as_chaos_damage" } }, - [4244]={ + [4290]={ [1]={ [1]={ limit={ @@ -97245,7 +98185,7 @@ return { [1]="%_chance_to_gain_100%_non_chaos_damage_to_add_as_chaos_damage" } }, - [4245]={ + [4291]={ [1]={ [1]={ [1]={ @@ -97265,7 +98205,7 @@ return { [1]="additional_critical_strike_chance_permyriad_while_affected_by_cat_aspect" } }, - [4246]={ + [4292]={ [1]={ [1]={ limit={ @@ -97281,7 +98221,7 @@ return { [1]="%_chance_to_blind_on_critical_strike_while_you_have_cats_stealth" } }, - [4247]={ + [4293]={ [1]={ [1]={ limit={ @@ -97297,7 +98237,7 @@ return { [1]="resist_all_elements_%_with_200_or_more_strength" } }, - [4248]={ + [4294]={ [1]={ [1]={ limit={ @@ -97326,7 +98266,7 @@ return { [1]="projectile_attack_damage_+%_with_at_least_200_dex" } }, - [4249]={ + [4295]={ [1]={ [1]={ limit={ @@ -97355,7 +98295,7 @@ return { [1]="critical_strike_chance_+%_with_at_least_200_int" } }, - [4250]={ + [4296]={ [1]={ [1]={ limit={ @@ -97371,7 +98311,7 @@ return { [1]="local_physical_damage_%_to_convert_to_a_random_element" } }, - [4251]={ + [4297]={ [1]={ [1]={ limit={ @@ -97387,7 +98327,7 @@ return { [1]="local_physical_damage_%_to_gain_as_cold_or_lightning" } }, - [4252]={ + [4298]={ [1]={ [1]={ [1]={ @@ -97415,7 +98355,7 @@ return { [1]="local_hits_always_inflict_elemental_ailments" } }, - [4253]={ + [4299]={ [1]={ [1]={ limit={ @@ -97444,7 +98384,7 @@ return { [1]="local_hit_damage_+%_vs_ignited_enemies" } }, - [4254]={ + [4300]={ [1]={ [1]={ limit={ @@ -97473,7 +98413,7 @@ return { [1]="local_hit_damage_+%_vs_frozen_enemies" } }, - [4255]={ + [4301]={ [1]={ [1]={ limit={ @@ -97502,7 +98442,7 @@ return { [1]="local_hit_damage_+%_vs_shocked_enemies" } }, - [4256]={ + [4302]={ [1]={ [1]={ [1]={ @@ -97522,7 +98462,7 @@ return { [1]="life_regeneration_per_minute_if_you_have_at_least_500_maximum_energy_shield" } }, - [4257]={ + [4303]={ [1]={ [1]={ [1]={ @@ -97542,7 +98482,7 @@ return { [1]="life_regeneration_per_minute_if_you_have_at_least_1000_maximum_energy_shield" } }, - [4258]={ + [4304]={ [1]={ [1]={ [1]={ @@ -97562,7 +98502,7 @@ return { [1]="life_regeneration_per_minute_if_you_have_at_least_1500_maximum_energy_shield" } }, - [4259]={ + [4305]={ [1]={ [1]={ limit={ @@ -97591,7 +98531,7 @@ return { [1]="area_of_effect_+%_per_25_rampage_stacks" } }, - [4260]={ + [4306]={ [1]={ [1]={ limit={ @@ -97607,7 +98547,7 @@ return { [1]="add_frenzy_charge_every_50_rampage_stacks" } }, - [4261]={ + [4307]={ [1]={ [1]={ [1]={ @@ -97627,7 +98567,7 @@ return { [1]="life_leech_from_spell_damage_permyriad_if_shield_has_30%_block_chance" } }, - [4262]={ + [4308]={ [1]={ [1]={ limit={ @@ -97643,7 +98583,7 @@ return { [1]="maximum_energy_shield_+_per_5_armour_on_shield" } }, - [4263]={ + [4309]={ [1]={ [1]={ limit={ @@ -97659,7 +98599,7 @@ return { [1]="physical_damage_reduction_rating_per_5_evasion_on_shield" } }, - [4264]={ + [4310]={ [1]={ [1]={ limit={ @@ -97675,7 +98615,7 @@ return { [1]="evasion_rating_+_per_5_maximum_energy_shield_on_shield" } }, - [4265]={ + [4311]={ [1]={ [1]={ limit={ @@ -97691,7 +98631,7 @@ return { [1]="maximum_spirit_charges_per_abyss_jewel_equipped" } }, - [4266]={ + [4312]={ [1]={ [1]={ limit={ @@ -97720,7 +98660,7 @@ return { [1]="travel_skill_cooldown_speed_+%" } }, - [4267]={ + [4313]={ [1]={ [1]={ limit={ @@ -97749,7 +98689,7 @@ return { [1]="gain_spirit_charge_every_x_ms" } }, - [4268]={ + [4314]={ [1]={ [1]={ limit={ @@ -97774,7 +98714,7 @@ return { [1]="gain_spirit_charge_on_kill_%_chance" } }, - [4269]={ + [4315]={ [1]={ [1]={ [1]={ @@ -97794,7 +98734,7 @@ return { [1]="lose_spirit_charges_on_savage_hit_taken" } }, - [4270]={ + [4316]={ [1]={ [1]={ limit={ @@ -97810,7 +98750,7 @@ return { [1]="gain_%_life_when_spirit_charge_expires_or_consumed" } }, - [4271]={ + [4317]={ [1]={ [1]={ limit={ @@ -97826,7 +98766,7 @@ return { [1]="gain_%_es_when_spirit_charge_expires_or_consumed" } }, - [4272]={ + [4318]={ [1]={ [1]={ limit={ @@ -97842,7 +98782,7 @@ return { [1]="maximum_divine_charges" } }, - [4273]={ + [4319]={ [1]={ [1]={ limit={ @@ -97867,7 +98807,7 @@ return { [1]="gain_divine_charge_on_hit_%" } }, - [4274]={ + [4320]={ [1]={ [1]={ limit={ @@ -97896,7 +98836,7 @@ return { [1]="elemental_damage_+%_per_divine_charge" } }, - [4275]={ + [4321]={ [1]={ [1]={ [1]={ @@ -97916,7 +98856,7 @@ return { [1]="gain_divinity_ms_when_reaching_maximum_divine_charges" } }, - [4276]={ + [4322]={ [1]={ [1]={ limit={ @@ -97932,7 +98872,7 @@ return { [1]="base_max_fortification_per_endurance_charge" } }, - [4277]={ + [4323]={ [1]={ [1]={ limit={ @@ -97961,7 +98901,7 @@ return { [1]="travel_skills_cooldown_speed_+%_per_frenzy_charge" } }, - [4278]={ + [4324]={ [1]={ [1]={ [1]={ @@ -97998,7 +98938,7 @@ return { [1]="elusive_effect_on_self_+%_per_power_charge" } }, - [4279]={ + [4325]={ [1]={ [1]={ limit={ @@ -98023,7 +98963,7 @@ return { [1]="lose_a_frenzy_charge_on_travel_skill_use_%_chance" } }, - [4280]={ + [4326]={ [1]={ [1]={ limit={ @@ -98048,7 +98988,7 @@ return { [1]="lose_an_endurance_charge_on_fortify_gain_%_chance" } }, - [4281]={ + [4327]={ [1]={ [1]={ limit={ @@ -98073,7 +99013,7 @@ return { [1]="lose_a_power_charge_when_you_gain_elusive_%_chance" } }, - [4282]={ + [4328]={ [1]={ [1]={ [1]={ @@ -98106,7 +99046,7 @@ return { [1]="withered_on_hit_for_2_seconds_%_chance" } }, - [4283]={ + [4329]={ [1]={ [1]={ limit={ @@ -98135,7 +99075,7 @@ return { [1]="enemies_withered_by_you_take_+%_increased_elemental_damage_from_your_hits" } }, - [4284]={ + [4330]={ [1]={ [1]={ limit={ @@ -98151,7 +99091,7 @@ return { [1]="local_display_gain_fragile_growth_each_second" } }, - [4285]={ + [4331]={ [1]={ [1]={ limit={ @@ -98167,7 +99107,7 @@ return { [1]="base_maximum_fragile_regrowth" } }, - [4286]={ + [4332]={ [1]={ [1]={ [1]={ @@ -98187,7 +99127,7 @@ return { [1]="life_regeneration_rate_per_minute_%_per_fragile_regrowth" } }, - [4287]={ + [4333]={ [1]={ [1]={ limit={ @@ -98203,7 +99143,7 @@ return { [1]="lose_all_fragile_regrowth_when_hit" } }, - [4288]={ + [4334]={ [1]={ [1]={ limit={ @@ -98219,7 +99159,7 @@ return { [1]="minion_maximum_life_%_to_convert_to_maximum_energy_shield_per_1%_chaos_resistance" } }, - [4289]={ + [4335]={ [1]={ [1]={ limit={ @@ -98235,7 +99175,7 @@ return { [1]="minion_chaos_damage_does_not_bypass_energy_shield" } }, - [4290]={ + [4336]={ [1]={ [1]={ limit={ @@ -98264,7 +99204,7 @@ return { [1]="minion_energy_shield_delay_-%" } }, - [4291]={ + [4337]={ [1]={ [1]={ limit={ @@ -98280,7 +99220,7 @@ return { [1]="minion_hits_ignore_enemy_elemental_resistances_while_has_energy_shield" } }, - [4292]={ + [4338]={ [1]={ [1]={ limit={ @@ -98296,7 +99236,7 @@ return { [1]="arrows_from_first_firing_point_always_pierce" } }, - [4293]={ + [4339]={ [1]={ [1]={ limit={ @@ -98312,7 +99252,7 @@ return { [1]="arrows_from_second_firing_point_fork" } }, - [4294]={ + [4340]={ [1]={ [1]={ limit={ @@ -98328,7 +99268,7 @@ return { [1]="arrows_from_third_firing_point_return" } }, - [4295]={ + [4341]={ [1]={ [1]={ limit={ @@ -98353,7 +99293,7 @@ return { [1]="arrows_from_fourth_firing_point_additional_chains" } }, - [4296]={ + [4342]={ [1]={ [1]={ [1]={ @@ -98386,7 +99326,7 @@ return { [1]="local_withered_on_hit_for_2_seconds_%_chance" } }, - [4297]={ + [4343]={ [1]={ [1]={ limit={ @@ -98402,7 +99342,7 @@ return { [1]="summoned_skeleton_warriors_get_weapon_stats_in_main_hand" } }, - [4298]={ + [4344]={ [1]={ [1]={ [1]={ @@ -98422,7 +99362,7 @@ return { [1]="local_grant_skeleton_warriors_triple_damage_on_hit" } }, - [4299]={ + [4345]={ [1]={ [1]={ limit={ @@ -98438,7 +99378,7 @@ return { [1]="mirage_archers_do_not_attach" } }, - [4300]={ + [4346]={ [1]={ [1]={ limit={ @@ -98454,7 +99394,7 @@ return { [1]="additional_max_mirage_archers" } }, - [4301]={ + [4347]={ [1]={ [1]={ limit={ @@ -98470,7 +99410,7 @@ return { [1]="cannot_summon_mirage_archer_if_near_mirage_archer_radius" } }, - [4302]={ + [4348]={ [1]={ [1]={ limit={ @@ -98499,7 +99439,7 @@ return { [1]="damage_+%_per_fire_adaptation" } }, - [4303]={ + [4349]={ [1]={ [1]={ limit={ @@ -98528,7 +99468,7 @@ return { [1]="attack_and_cast_speed_+%_per_cold_adaptation" } }, - [4304]={ + [4350]={ [1]={ [1]={ limit={ @@ -98557,7 +99497,7 @@ return { [1]="critical_strike_chance_+%_per_lightning_adaptation" } }, - [4305]={ + [4351]={ [1]={ [1]={ limit={ @@ -98573,7 +99513,7 @@ return { [1]="magic_utility_flasks_cannot_be_used" } }, - [4306]={ + [4352]={ [1]={ [1]={ limit={ @@ -98598,7 +99538,7 @@ return { [1]="num_magic_utility_flasks_always_apply" } }, - [4307]={ + [4353]={ [1]={ [1]={ limit={ @@ -98614,7 +99554,7 @@ return { [1]="magic_utility_flasks_cannot_be_removed" } }, - [4308]={ + [4354]={ [1]={ [1]={ [1]={ @@ -98647,7 +99587,7 @@ return { [1]="gain_x_grasping_vines_when_you_take_a_critical_strike" } }, - [4309]={ + [4355]={ [1]={ [1]={ limit={ @@ -98676,7 +99616,7 @@ return { [1]="local_display_nearby_stationary_enemies_gain_a_grasping_vine_every_x_ms" } }, - [4310]={ + [4356]={ [1]={ [1]={ [1]={ @@ -98709,7 +99649,7 @@ return { [1]="unique_boots_all_damage_inflicts_poison_against_enemies_with_at_least_x_grasping_vines" } }, - [4311]={ + [4357]={ [1]={ [1]={ limit={ @@ -98738,7 +99678,7 @@ return { [1]="extra_damage_taken_from_crit_+%_from_cursed_enemy" } }, - [4312]={ + [4358]={ [1]={ [1]={ limit={ @@ -98767,7 +99707,7 @@ return { [1]="extra_damage_taken_from_crit_+%_from_poisoned_enemy" } }, - [4313]={ + [4359]={ [1]={ [1]={ limit={ @@ -98792,7 +99732,7 @@ return { [1]="pathfinder_skills_consume_x_charges_from_a_bismuth_diamond_or_amethyst_flask" } }, - [4314]={ + [4360]={ [1]={ [1]={ limit={ @@ -98821,7 +99761,7 @@ return { [1]="pathfinder_skills_critical_strike_chance_+%_if_charges_consumed_from_diamond_flask" } }, - [4315]={ + [4361]={ [1]={ [1]={ limit={ @@ -98837,7 +99777,7 @@ return { [1]="pathfinder_skills_penetrate_elemental_resistances_%_if_charges_consumed_from_bismuth_flask" } }, - [4316]={ + [4362]={ [1]={ [1]={ limit={ @@ -98853,7 +99793,7 @@ return { [1]="pathfinder_skills_physical_damage_%_to_add_as_chaos_if_charges_consumed_from_amethyst_flask" } }, - [4317]={ + [4363]={ [1]={ [1]={ limit={ @@ -98869,7 +99809,7 @@ return { [1]="maximum_life_+_per_empty_red_socket" } }, - [4318]={ + [4364]={ [1]={ [1]={ limit={ @@ -98885,7 +99825,7 @@ return { [1]="accuracy_rating_+_per_empty_green_socket" } }, - [4319]={ + [4365]={ [1]={ [1]={ limit={ @@ -98901,7 +99841,7 @@ return { [1]="maximum_mana_+_per_empty_blue_socket" } }, - [4320]={ + [4366]={ [1]={ [1]={ limit={ @@ -98917,7 +99857,7 @@ return { [1]="elemental_resistance_%_per_empty_white_socket" } }, - [4321]={ + [4367]={ [1]={ [1]={ limit={ @@ -98933,7 +99873,7 @@ return { [1]="display_ailment_bearer_charge_interval" } }, - [4322]={ + [4368]={ [1]={ [1]={ limit={ @@ -98949,7 +99889,7 @@ return { [1]="local_unique_can_be_runesmith_enchanted" } }, - [4323]={ + [4369]={ [1]={ [1]={ [1]={ @@ -98969,7 +99909,7 @@ return { [1]="gain_arcane_surge_on_movement_skill_use" } }, - [4324]={ + [4370]={ [1]={ [1]={ limit={ @@ -98985,7 +99925,7 @@ return { [1]="chill_minimum_slow_%" } }, - [4325]={ + [4371]={ [1]={ [1]={ limit={ @@ -99001,7 +99941,7 @@ return { [1]="cast_speed_increase_from_arcane_surge_also_applies_to_move_speed" } }, - [4326]={ + [4372]={ [1]={ [1]={ limit={ @@ -99017,7 +99957,7 @@ return { [1]="shock_minimum_damage_taken_increase_%" } }, - [4327]={ + [4373]={ [1]={ [1]={ [1]={ @@ -99037,7 +99977,7 @@ return { [1]="gain_convergence_on_hitting_unique_enemy" } }, - [4328]={ + [4374]={ [1]={ [1]={ limit={ @@ -99066,7 +100006,7 @@ return { [1]="area_of_effect_+%_while_you_do_not_have_convergence" } }, - [4329]={ + [4375]={ [1]={ [1]={ [1]={ @@ -99103,7 +100043,7 @@ return { [1]="base_cooldown_speed_+%_if_2_shaper_items" } }, - [4330]={ + [4376]={ [1]={ [1]={ [1]={ @@ -99131,7 +100071,7 @@ return { [1]="base_energy_shield_leech_from_elemental_damage_permyriad_if_2_shaper_items" } }, - [4331]={ + [4377]={ [1]={ [1]={ [1]={ @@ -99159,7 +100099,7 @@ return { [1]="base_energy_shield_leech_from_physical_damage_permyriad_if_2_elder_items" } }, - [4332]={ + [4378]={ [1]={ [1]={ [1]={ @@ -99183,7 +100123,7 @@ return { [1]="base_unaffected_by_poison_if_2_hunter_items" } }, - [4333]={ + [4379]={ [1]={ [1]={ [1]={ @@ -99207,7 +100147,7 @@ return { [1]="consecrated_ground_while_stationary_radius_if_2_crusader_items" } }, - [4334]={ + [4380]={ [1]={ [1]={ [1]={ @@ -99244,7 +100184,7 @@ return { [1]="dexterity_+%_if_2_redeemer_items" } }, - [4335]={ + [4381]={ [1]={ [1]={ [1]={ @@ -99268,7 +100208,7 @@ return { [1]="gain_life_regeneration_per_minute_%_for_1_second_every_4_seconds_if_2_hunter_items" } }, - [4336]={ + [4382]={ [1]={ [1]={ [1]={ @@ -99305,7 +100245,7 @@ return { [1]="intelligence_+%_if_2_crusader_items" } }, - [4337]={ + [4383]={ [1]={ [1]={ [1]={ @@ -99342,7 +100282,7 @@ return { [1]="maximum_life_+%_if_2_elder_items" } }, - [4338]={ + [4384]={ [1]={ [1]={ [1]={ @@ -99379,7 +100319,7 @@ return { [1]="maximum_mana_+%_if_2_shaper_items" } }, - [4339]={ + [4385]={ [1]={ [1]={ [1]={ @@ -99403,7 +100343,7 @@ return { [1]="nearby_enemies_are_blinded_if_2_redeemer_items" } }, - [4340]={ + [4386]={ [1]={ [1]={ [1]={ @@ -99427,7 +100367,7 @@ return { [1]="nearby_enemies_are_intimidated_if_2_warlord_items" } }, - [4341]={ + [4387]={ [1]={ [1]={ [1]={ @@ -99451,7 +100391,7 @@ return { [1]="nearby_enemies_are_unnerved_if_2_elder_items" } }, - [4342]={ + [4388]={ [1]={ [1]={ [1]={ @@ -99484,7 +100424,7 @@ return { [1]="projectile_base_number_of_targets_to_pierce_if_2_hunter_items" } }, - [4343]={ + [4389]={ [1]={ [1]={ [1]={ @@ -99521,7 +100461,7 @@ return { [1]="strength_+%_if_2_warlord_items" } }, - [4344]={ + [4390]={ [1]={ [1]={ [1]={ @@ -99545,7 +100485,7 @@ return { [1]="unaffected_by_chill_if_2_redeemer_items" } }, - [4345]={ + [4391]={ [1]={ [1]={ [1]={ @@ -99569,7 +100509,7 @@ return { [1]="unaffected_by_ignite_if_2_warlord_items" } }, - [4346]={ + [4392]={ [1]={ [1]={ [1]={ @@ -99593,7 +100533,7 @@ return { [1]="unaffected_by_shock_if_2_crusader_items" } }, - [4347]={ + [4393]={ [1]={ [1]={ limit={ @@ -99609,7 +100549,7 @@ return { [1]="add_frenzy_charge_on_skill_hit_%_if_4_redeemer_items" } }, - [4348]={ + [4394]={ [1]={ [1]={ limit={ @@ -99625,7 +100565,7 @@ return { [1]="add_power_charge_on_skill_hit_%_if_4_crusader_items" } }, - [4349]={ + [4395]={ [1]={ [1]={ [1]={ @@ -99645,7 +100585,7 @@ return { [1]="attack_additional_critical_strike_chance_permyriad_if_4_elder_items" } }, - [4350]={ + [4396]={ [1]={ [1]={ [1]={ @@ -99665,7 +100605,7 @@ return { [1]="base_maximum_chaos_damage_resistance_%_if_4_hunter_items" } }, - [4351]={ + [4397]={ [1]={ [1]={ [1]={ @@ -99685,7 +100625,7 @@ return { [1]="base_maximum_cold_damage_resistance_%_if_4_redeemer_items" } }, - [4352]={ + [4398]={ [1]={ [1]={ [1]={ @@ -99705,7 +100645,7 @@ return { [1]="base_maximum_fire_damage_resistance_%_if_4_warlord_items" } }, - [4353]={ + [4399]={ [1]={ [1]={ [1]={ @@ -99725,7 +100665,7 @@ return { [1]="base_maximum_lightning_damage_resistance_%_if_4_crusader_items" } }, - [4354]={ + [4400]={ [1]={ [1]={ [1]={ @@ -99745,7 +100685,7 @@ return { [1]="base_maximum_spell_block_%_if_4_shaper_items" } }, - [4355]={ + [4401]={ [1]={ [1]={ limit={ @@ -99774,7 +100714,7 @@ return { [1]="base_movement_velocity_+%_if_4_hunter_items" } }, - [4356]={ + [4402]={ [1]={ [1]={ limit={ @@ -99790,7 +100730,7 @@ return { [1]="cannot_take_reflected_elemental_damage_if_4_shaper_items" } }, - [4357]={ + [4403]={ [1]={ [1]={ limit={ @@ -99806,7 +100746,7 @@ return { [1]="cannot_take_reflected_physical_damage_if_4_elder_items" } }, - [4358]={ + [4404]={ [1]={ [1]={ limit={ @@ -99815,14 +100755,14 @@ return { [2]="#" } }, - text="{0}% of Elemental taken as Chaos Damage if 4 Hunter Items are Equipped" + text="{0}% of Elemental Damage taken as Chaos Damage if 4 Hunter Items are Equipped" } }, stats={ [1]="elemental_damage_%_taken_as_chaos_if_4_hunter_items" } }, - [4359]={ + [4405]={ [1]={ [1]={ [1]={ @@ -99855,7 +100795,7 @@ return { [1]="gain_endurance_charge_per_second_if_have_been_hit_recently_if_4_warlord_items" } }, - [4360]={ + [4406]={ [1]={ [1]={ [1]={ @@ -99875,7 +100815,7 @@ return { [1]="maximum_block_%_if_4_elder_items" } }, - [4361]={ + [4407]={ [1]={ [1]={ limit={ @@ -99891,7 +100831,7 @@ return { [1]="physical_damage_taken_%_as_cold_if_4_redeemer_items" } }, - [4362]={ + [4408]={ [1]={ [1]={ limit={ @@ -99907,7 +100847,7 @@ return { [1]="physical_damage_taken_%_as_fire_if_4_warlord_items" } }, - [4363]={ + [4409]={ [1]={ [1]={ limit={ @@ -99923,7 +100863,7 @@ return { [1]="physical_damage_taken_%_as_lightning_if_4_crusader_items" } }, - [4364]={ + [4410]={ [1]={ [1]={ [1]={ @@ -99943,7 +100883,7 @@ return { [1]="spell_additional_critical_strike_chance_permyriad_if_4_shaper_items" } }, - [4365]={ + [4411]={ [1]={ [1]={ [1]={ @@ -99963,7 +100903,7 @@ return { [1]="additional_maximum_all_elemental_resistances_%_if_6_shaper_items" } }, - [4366]={ + [4412]={ [1]={ [1]={ limit={ @@ -99979,7 +100919,7 @@ return { [1]="additional_projectile_if_6_hunter_items" } }, - [4367]={ + [4413]={ [1]={ [1]={ [1]={ @@ -100016,7 +100956,7 @@ return { [1]="all_attributes_+%_if_6_elder_items" } }, - [4368]={ + [4414]={ [1]={ [1]={ limit={ @@ -100032,7 +100972,7 @@ return { [1]="base_cannot_be_frozen_if_6_redeemer_items" } }, - [4369]={ + [4415]={ [1]={ [1]={ limit={ @@ -100048,7 +100988,7 @@ return { [1]="base_cannot_be_stunned_if_6_elder_items" } }, - [4370]={ + [4416]={ [1]={ [1]={ [1]={ @@ -100089,7 +101029,7 @@ return { [1]="chance_to_fortify_on_melee_hit_+%_if_6_warlord_items" } }, - [4371]={ + [4417]={ [1]={ [1]={ limit={ @@ -100105,7 +101045,7 @@ return { [1]="chaos_skill_gem_level_+_if_6_hunter_items" } }, - [4372]={ + [4418]={ [1]={ [1]={ limit={ @@ -100121,7 +101061,7 @@ return { [1]="cold_skill_gem_level_+_if_6_redeemer_items" } }, - [4373]={ + [4419]={ [1]={ [1]={ limit={ @@ -100137,7 +101077,7 @@ return { [1]="fire_skill_gem_level_+_if_6_warlord_items" } }, - [4374]={ + [4420]={ [1]={ [1]={ [1]={ @@ -100161,7 +101101,7 @@ return { [1]="gain_permilliage_total_phys_damage_prevented_recently_as_es_regen_per_sec_if_6_crusader_items" } }, - [4375]={ + [4421]={ [1]={ [1]={ limit={ @@ -100177,7 +101117,7 @@ return { [1]="lightning_skill_gem_level_+_if_6_crusader_items" } }, - [4376]={ + [4422]={ [1]={ [1]={ limit={ @@ -100193,7 +101133,7 @@ return { [1]="max_endurance_charges_if_6_warlord_items" } }, - [4377]={ + [4423]={ [1]={ [1]={ limit={ @@ -100209,7 +101149,7 @@ return { [1]="max_frenzy_charges_if_6_redeemer_items" } }, - [4378]={ + [4424]={ [1]={ [1]={ limit={ @@ -100225,7 +101165,7 @@ return { [1]="max_power_charges_if_6_crusader_items" } }, - [4379]={ + [4425]={ [1]={ [1]={ limit={ @@ -100259,7 +101199,7 @@ return { [1]="number_of_additional_curses_allowed_if_6_hunter_items" } }, - [4380]={ + [4426]={ [1]={ [1]={ limit={ @@ -100275,7 +101215,7 @@ return { [1]="physical_damage_%_to_add_as_each_element_if_6_shaper_items" } }, - [4381]={ + [4427]={ [1]={ [1]={ limit={ @@ -100291,7 +101231,7 @@ return { [1]="physical_skill_gem_level_+_if_6_elder_items" } }, - [4382]={ + [4428]={ [1]={ [1]={ limit={ @@ -100307,7 +101247,7 @@ return { [1]="non_exceptional_support_gem_level_+_if_6_shaper_items" } }, - [4383]={ + [4429]={ [1]={ [1]={ [1]={ @@ -100327,7 +101267,7 @@ return { [1]="X_armour_if_you_have_blocked_recently" } }, - [4384]={ + [4430]={ [1]={ [1]={ limit={ @@ -100343,7 +101283,7 @@ return { [1]="X_armour_per_active_totem" } }, - [4385]={ + [4431]={ [1]={ [1]={ limit={ @@ -100359,7 +101299,7 @@ return { [1]="X_mana_per_dexterity" } }, - [4386]={ + [4432]={ [1]={ [1]={ limit={ @@ -100375,7 +101315,7 @@ return { [1]="X_to_armour_per_2_strength" } }, - [4387]={ + [4433]={ [1]={ [1]={ [1]={ @@ -100416,7 +101356,7 @@ return { [1]="local_jewel_expansion_passive_node_count" } }, - [4388]={ + [4434]={ [1]={ [1]={ limit={ @@ -100445,7 +101385,7 @@ return { [1]="absolution_cast_speed_+%" } }, - [4389]={ + [4435]={ [1]={ [1]={ limit={ @@ -100474,7 +101414,7 @@ return { [1]="absolution_duration_+%" } }, - [4390]={ + [4436]={ [1]={ [1]={ limit={ @@ -100503,7 +101443,7 @@ return { [1]="absolution_minion_area_of_effect_+%" } }, - [4391]={ + [4437]={ [1]={ [1]={ [1]={ @@ -100540,7 +101480,7 @@ return { [1]="accuracy_rating_+%_final_vs_enemies_in_close_range_from_mastery" } }, - [4392]={ + [4438]={ [1]={ [1]={ limit={ @@ -100569,7 +101509,7 @@ return { [1]="accuracy_rating_+%_final_vs_unique_enemies_from_mastery" } }, - [4393]={ + [4439]={ [1]={ [1]={ limit={ @@ -100598,7 +101538,36 @@ return { [1]="gladiator_accuracy_rating_+%_final_while_wielding_sword" } }, - [4394]={ + [4440]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Accuracy Rating per 25 Intelligence" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Accuracy Rating per 25 Intelligence" + } + }, + stats={ + [1]="accuracy_rating_+%_per_25_intelligence" + } + }, + [4441]={ [1]={ [1]={ limit={ @@ -100627,7 +101596,7 @@ return { [1]="accuracy_rating_against_marked_enemies_+%_final_from_crucible_tree" } }, - [4395]={ + [4442]={ [1]={ [1]={ limit={ @@ -100656,7 +101625,7 @@ return { [1]="accuracy_rating_against_marked_enemies_+%_final_from_mastery" } }, - [4396]={ + [4443]={ [1]={ [1]={ limit={ @@ -100672,7 +101641,7 @@ return { [1]="accuracy_rating_is_doubled" } }, - [4397]={ + [4444]={ [1]={ [1]={ limit={ @@ -100688,7 +101657,7 @@ return { [1]="accuracy_rating_per_level" } }, - [4398]={ + [4445]={ [1]={ [1]={ limit={ @@ -100704,7 +101673,7 @@ return { [1]="accuracy_rating_+_per_2_dexterity" } }, - [4399]={ + [4446]={ [1]={ [1]={ limit={ @@ -100720,7 +101689,7 @@ return { [1]="accuracy_rating_+_per_frenzy_charge" } }, - [4400]={ + [4447]={ [1]={ [1]={ limit={ @@ -100736,7 +101705,7 @@ return { [1]="accuracy_rating_+_per_green_socket_on_bow" } }, - [4401]={ + [4448]={ [1]={ [1]={ limit={ @@ -100765,7 +101734,7 @@ return { [1]="accuracy_rating_+%_during_onslaught" } }, - [4402]={ + [4449]={ [1]={ [1]={ [1]={ @@ -100802,7 +101771,7 @@ return { [1]="accuracy_rating_+%_if_enemy_not_killed_recently" } }, - [4403]={ + [4450]={ [1]={ [1]={ limit={ @@ -100831,7 +101800,7 @@ return { [1]="accuracy_rating_+%_if_have_crit_in_past_8_seconds" } }, - [4404]={ + [4451]={ [1]={ [1]={ limit={ @@ -100847,7 +101816,7 @@ return { [1]="accuracy_rating_while_at_maximum_frenzy_charges" } }, - [4405]={ + [4452]={ [1]={ [1]={ limit={ @@ -100876,7 +101845,39 @@ return { [1]="action_speed_+%_while_affected_by_haste" } }, - [4406]={ + [4453]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Action Speed cannot be modified to below Base Value while Ignited" + } + }, + stats={ + [1]="action_speed_cannot_be_reduced_below_base_while_ignited" + } + }, + [4454]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Action Speed cannot be modified to below Base Value if you have Equipped Boots with no Socketed Gems" + } + }, + stats={ + [1]="action_speed_cannot_be_reduced_below_base_while_no_gems_in_boots" + } + }, + [4455]={ [1]={ [1]={ limit={ @@ -100892,7 +101893,7 @@ return { [1]="action_speed_cannot_be_slowed_below_base_if_cast_temporal_chains_in_past_10_seconds" } }, - [4407]={ + [4456]={ [1]={ [1]={ limit={ @@ -100921,7 +101922,7 @@ return { [1]="action_speed_-%" } }, - [4408]={ + [4457]={ [1]={ [1]={ limit={ @@ -100937,7 +101938,7 @@ return { [1]="active_skill_200%_increased_knockback_distance" } }, - [4409]={ + [4458]={ [1]={ [1]={ limit={ @@ -100953,7 +101954,7 @@ return { [1]="add_frenzy_charge_on_kill_%_chance_while_dual_wielding" } }, - [4410]={ + [4459]={ [1]={ [1]={ limit={ @@ -100969,7 +101970,7 @@ return { [1]="add_frenzy_charge_when_hit_%" } }, - [4411]={ + [4460]={ [1]={ [1]={ limit={ @@ -100994,7 +101995,7 @@ return { [1]="add_power_charge_on_hit_while_poisoned_%" } }, - [4412]={ + [4461]={ [1]={ [1]={ [1]={ @@ -101027,7 +102028,23 @@ return { [1]="add_x_grasping_vines_on_hit" } }, - [4413]={ + [4462]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Skills gain Added Chaos Damage equal to {0}% of Life Cost, if Life Cost is not higher than the maximum you could spend" + } + }, + stats={ + [1]="added_chaos_damage_%_life_cost_if_payable" + } + }, + [4463]={ [1]={ [1]={ limit={ @@ -101043,7 +102060,7 @@ return { [1]="added_chaos_damage_%_mana_cost_if_payable" } }, - [4414]={ + [4464]={ [1]={ [1]={ limit={ @@ -101059,7 +102076,7 @@ return { [1]="additional_attack_block_%_if_used_shield_skill_recently" } }, - [4415]={ + [4465]={ [1]={ [1]={ limit={ @@ -101075,7 +102092,7 @@ return { [1]="additional_attack_block_%_per_endurance_charge" } }, - [4416]={ + [4466]={ [1]={ [1]={ limit={ @@ -101091,7 +102108,7 @@ return { [1]="additional_attack_block_%_per_frenzy_charge" } }, - [4417]={ + [4467]={ [1]={ [1]={ limit={ @@ -101107,7 +102124,7 @@ return { [1]="additional_attack_block_%_per_power_charge" } }, - [4418]={ + [4468]={ [1]={ [1]={ limit={ @@ -101123,7 +102140,7 @@ return { [1]="additional_attack_block_%_per_summoned_skeleton" } }, - [4419]={ + [4469]={ [1]={ [1]={ limit={ @@ -101152,7 +102169,7 @@ return { [1]="additional_block_%_against_frontal_attacks" } }, - [4420]={ + [4470]={ [1]={ [1]={ [1]={ @@ -101172,7 +102189,7 @@ return { [1]="additional_block_%_if_you_have_crit_recently" } }, - [4421]={ + [4471]={ [1]={ [1]={ limit={ @@ -101188,7 +102205,7 @@ return { [1]="additional_block_%_per_endurance_charge" } }, - [4422]={ + [4472]={ [1]={ [1]={ limit={ @@ -101204,7 +102221,7 @@ return { [1]="additional_block_%_per_hit_you_have_blocked_in_past_10_seconds" } }, - [4423]={ + [4473]={ [1]={ [1]={ limit={ @@ -101220,7 +102237,7 @@ return { [1]="additional_block_%_while_not_cursed" } }, - [4424]={ + [4474]={ [1]={ [1]={ limit={ @@ -101236,7 +102253,7 @@ return { [1]="additional_block_%_while_on_consecrated_ground" } }, - [4425]={ + [4475]={ [1]={ [1]={ limit={ @@ -101252,7 +102269,7 @@ return { [1]="additional_block_%_with_5_or_more_nearby_enemies" } }, - [4426]={ + [4476]={ [1]={ [1]={ limit={ @@ -101268,7 +102285,7 @@ return { [1]="additional_chaos_damage_to_spells_equal_to_%_maximum_life" } }, - [4427]={ + [4477]={ [1]={ [1]={ [1]={ @@ -101288,7 +102305,7 @@ return { [1]="additional_critical_strike_chance_per_10_shield_maximum_energy_shield_permyriad" } }, - [4428]={ + [4478]={ [1]={ [1]={ [1]={ @@ -101308,7 +102325,7 @@ return { [1]="additional_critical_strike_chance_per_power_charge_permyriad" } }, - [4429]={ + [4479]={ [1]={ [1]={ [1]={ @@ -101328,7 +102345,7 @@ return { [1]="additional_critical_strike_chance_permyriad_per_poison_on_enemy_up_to_2%" } }, - [4430]={ + [4480]={ [1]={ [1]={ [1]={ @@ -101348,7 +102365,7 @@ return { [1]="additional_critical_strike_chance_permyriad_per_warcry_exerting_action" } }, - [4431]={ + [4481]={ [1]={ [1]={ [1]={ @@ -101368,7 +102385,7 @@ return { [1]="additional_critical_strike_chance_permyriad_while_affected_by_hatred" } }, - [4432]={ + [4482]={ [1]={ [1]={ [1]={ @@ -101388,7 +102405,40 @@ return { [1]="additional_critical_strike_chance_permyriad_with_herald_skills" } }, - [4433]={ + [4483]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextLowLife" + }, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Your Damage with Hits is Lucky while on Low Life" + }, + [2]={ + [1]={ + k="reminderstring", + v="ReminderTextLowLife" + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Your Damage with Hits is Unlucky while on Low Life" + } + }, + stats={ + [1]="additional_damage_rolls_while_on_low_life" + } + }, + [4484]={ [1]={ [1]={ limit={ @@ -101404,7 +102454,7 @@ return { [1]="additional_dexterity_per_allocated_mastery" } }, - [4434]={ + [4485]={ [1]={ [1]={ limit={ @@ -101420,7 +102470,7 @@ return { [1]="additional_intelligence_per_allocated_mastery" } }, - [4435]={ + [4486]={ [1]={ [1]={ limit={ @@ -101445,7 +102495,7 @@ return { [1]="additional_max_number_of_dominated_magic_monsters" } }, - [4436]={ + [4487]={ [1]={ [1]={ limit={ @@ -101470,7 +102520,7 @@ return { [1]="additional_max_number_of_dominated_rare_monsters" } }, - [4437]={ + [4488]={ [1]={ [1]={ [1]={ @@ -101490,7 +102540,7 @@ return { [1]="additional_maximum_all_elemental_resistances_%_if_killed_cursed_enemy_recently" } }, - [4438]={ + [4489]={ [1]={ [1]={ [1]={ @@ -101510,7 +102560,7 @@ return { [1]="additional_maximum_all_elemental_resistances_%_if_suppressed_spell_recently" } }, - [4439]={ + [4490]={ [1]={ [1]={ limit={ @@ -101526,7 +102576,7 @@ return { [1]="additional_maximum_all_elemental_resistances_%_while_affected_by_purity_of_elements" } }, - [4440]={ + [4491]={ [1]={ [1]={ [1]={ @@ -101546,7 +102596,7 @@ return { [1]="additional_maximum_all_elemental_resistances_%_with_reserved_life_and_mana" } }, - [4441]={ + [4492]={ [1]={ [1]={ [1]={ @@ -101566,7 +102616,7 @@ return { [1]="additional_maximum_all_elemental_resistances_%_if_all_equipment_grants_armour" } }, - [4442]={ + [4493]={ [1]={ [1]={ [1]={ @@ -101586,7 +102636,7 @@ return { [1]="additional_maximum_all_resistances_%_while_poisoned" } }, - [4443]={ + [4494]={ [1]={ [1]={ [1]={ @@ -101606,7 +102656,7 @@ return { [1]="additional_maximum_all_resistances_%_at_devotion_threshold" } }, - [4444]={ + [4495]={ [1]={ [1]={ [1]={ @@ -101626,7 +102676,7 @@ return { [1]="additional_maximum_all_resistances_%_with_no_endurance_charges" } }, - [4445]={ + [4496]={ [1]={ [1]={ limit={ @@ -101651,7 +102701,7 @@ return { [1]="additional_number_of_brands_to_create" } }, - [4446]={ + [4497]={ [1]={ [1]={ [1]={ @@ -101671,7 +102721,7 @@ return { [1]="additional_off_hand_critical_strike_chance_permyriad" } }, - [4447]={ + [4498]={ [1]={ [1]={ [1]={ @@ -101691,7 +102741,7 @@ return { [1]="additional_off_hand_critical_strike_chance_while_dual_wielding" } }, - [4448]={ + [4499]={ [1]={ [1]={ [1]={ @@ -101715,7 +102765,7 @@ return { [1]="additional_%_chance_to_evade_attacks_if_you_have_taken_a_savage_hit_recently" } }, - [4449]={ + [4500]={ [1]={ [1]={ limit={ @@ -101731,7 +102781,7 @@ return { [1]="additional_physical_damage_reduction_if_warcried_in_past_8_seconds" } }, - [4450]={ + [4501]={ [1]={ [1]={ limit={ @@ -101747,7 +102797,7 @@ return { [1]="additional_physical_damage_reduction_%_during_focus" } }, - [4451]={ + [4502]={ [1]={ [1]={ limit={ @@ -101763,7 +102813,7 @@ return { [1]="additional_physical_damage_reduction_%_during_life_or_mana_flask_effect" } }, - [4452]={ + [4503]={ [1]={ [1]={ [1]={ @@ -101783,7 +102833,7 @@ return { [1]="additional_physical_damage_reduction_%_if_not_damaged_by_a_hit_recently" } }, - [4453]={ + [4504]={ [1]={ [1]={ limit={ @@ -101799,7 +102849,7 @@ return { [1]="additional_physical_damage_reduction_%_per_keystone" } }, - [4454]={ + [4505]={ [1]={ [1]={ limit={ @@ -101815,7 +102865,7 @@ return { [1]="additional_physical_damage_reduction_%_per_minion_up_to_10%" } }, - [4455]={ + [4506]={ [1]={ [1]={ limit={ @@ -101831,7 +102881,7 @@ return { [1]="additional_physical_damage_reduction_%_per_summoned_sentinel_of_purity" } }, - [4456]={ + [4507]={ [1]={ [1]={ limit={ @@ -101847,7 +102897,7 @@ return { [1]="additional_physical_damage_reduction_%_vs_abyssal_monsters" } }, - [4457]={ + [4508]={ [1]={ [1]={ limit={ @@ -101863,7 +102913,7 @@ return { [1]="additional_physical_damage_reduction_%_while_affected_by_determination" } }, - [4458]={ + [4509]={ [1]={ [1]={ limit={ @@ -101879,7 +102929,7 @@ return { [1]="additional_physical_damage_reduction_%_while_affected_by_guard_skill" } }, - [4459]={ + [4510]={ [1]={ [1]={ limit={ @@ -101895,7 +102945,7 @@ return { [1]="additional_physical_damage_reduction_%_while_bleeding" } }, - [4460]={ + [4511]={ [1]={ [1]={ limit={ @@ -101911,7 +102961,7 @@ return { [1]="additional_physical_damage_reduction_%_while_channelling" } }, - [4461]={ + [4512]={ [1]={ [1]={ limit={ @@ -101927,7 +102977,7 @@ return { [1]="additional_physical_damage_reduction_%_while_frozen" } }, - [4462]={ + [4513]={ [1]={ [1]={ limit={ @@ -101943,7 +102993,7 @@ return { [1]="additional_physical_damage_reduction_%_while_moving" } }, - [4463]={ + [4514]={ [1]={ [1]={ [1]={ @@ -101963,7 +103013,31 @@ return { [1]="additional_poison_chance_%_when_inflicting_poison" } }, - [4464]={ + [4515]={ + [1]={ + [1]={ + [1]={ + k="per_minute_to_per_second_2dp_if_required", + v=1 + }, + [2]={ + k="reminderstring", + v="ReminderTextRage" + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Lose {0} Rage per second" + } + }, + stats={ + [1]="additional_rage_loss_per_minute" + } + }, + [4516]={ [1]={ [1]={ limit={ @@ -101979,7 +103053,7 @@ return { [1]="additional_spectres_per_ghastly_eye_jewel" } }, - [4465]={ + [4517]={ [1]={ [1]={ limit={ @@ -101995,7 +103069,7 @@ return { [1]="additional_spell_block_%_per_power_charge" } }, - [4466]={ + [4518]={ [1]={ [1]={ [1]={ @@ -102015,7 +103089,7 @@ return { [1]="additional_spell_block_%_if_havent_blocked_recently" } }, - [4467]={ + [4519]={ [1]={ [1]={ limit={ @@ -102031,7 +103105,7 @@ return { [1]="additional_spell_block_%_while_cursed" } }, - [4468]={ + [4520]={ [1]={ [1]={ limit={ @@ -102047,7 +103121,7 @@ return { [1]="additional_strength_per_allocated_mastery" } }, - [4469]={ + [4521]={ [1]={ [1]={ [1]={ @@ -102067,7 +103141,7 @@ return { [1]="additional_stun_threshold_based_on_%_of_energy_shield" } }, - [4470]={ + [4522]={ [1]={ [1]={ limit={ @@ -102092,7 +103166,7 @@ return { [1]="additive_armour_modifiers_apply_to_energy_shield_recharge_rate_at_%_value" } }, - [4471]={ + [4523]={ [1]={ [1]={ limit={ @@ -102108,7 +103182,39 @@ return { [1]="additive_cast_speed_modifiers_apply_to_trap_throwing_speed" } }, - [4472]={ + [4524]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Increases and Reductions to Chaos Damage also apply to Effect of\nAuras from Chaos Skills at {0}% of their value, up to a maximum of 150%" + } + }, + stats={ + [1]="additive_chaos_damage_modifiers_apply_to_chaos_aura_effect_at_%_value" + } + }, + [4525]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Increases and Reductions to Cold Damage also apply to Effect of\nAuras from Cold Skills at {0}% of their value, up to a maximum of 150%" + } + }, + stats={ + [1]="additive_cold_damage_modifiers_apply_to_cold_aura_effect_at_%_value" + } + }, + [4526]={ [1]={ [1]={ [1]={ @@ -102128,7 +103234,23 @@ return { [1]="additive_energy_shield_modifiers_apply_to_spell_damage_at_30%_value" } }, - [4473]={ + [4527]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Increases and Reductions to Fire Damage also apply to Effect of\nAuras from Fire Skills at {0}% of their value, up to a maximum of 150%" + } + }, + stats={ + [1]="additive_fire_damage_modifiers_apply_to_fire_aura_effect_at_%_value" + } + }, + [4528]={ [1]={ [1]={ limit={ @@ -102144,7 +103266,7 @@ return { [1]="additive_flask_effect_modifiers_apply_to_arcane_surge" } }, - [4474]={ + [4529]={ [1]={ [1]={ [1]={ @@ -102164,7 +103286,23 @@ return { [1]="additive_life_modifiers_apply_to_attack_damage_at_30%_value" } }, - [4475]={ + [4530]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Increases and Reductions to Lightning Damage also apply to Effect of\nAuras from Lightning Skills at {0}% of their value, up to a maximum of 150%" + } + }, + stats={ + [1]="additive_lightning_damage_modifiers_apply_to_lightning_aura_effect_at_%_value" + } + }, + [4531]={ [1]={ [1]={ [1]={ @@ -102184,7 +103322,7 @@ return { [1]="additive_mana_modifiers_apply_to_damage_at_30%_value" } }, - [4476]={ + [4532]={ [1]={ [1]={ limit={ @@ -102200,7 +103338,23 @@ return { [1]="additive_mana_modifiers_apply_to_shock_effect_at_30%_value" } }, - [4477]={ + [4533]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Increases and Reductions to Physical Damage also apply to Effect of\nAuras from Physical Skills at {0}% of their value, up to a maximum of 150%" + } + }, + stats={ + [1]="additive_physical_damage_modifiers_apply_to_physical_aura_effect_at_%_value" + } + }, + [4534]={ [1]={ [1]={ [1]={ @@ -102241,7 +103395,7 @@ return { [1]="aggravate_bleeding_older_than_ms_on_hit" } }, - [4478]={ + [4535]={ [1]={ [1]={ [1]={ @@ -102261,7 +103415,7 @@ return { [1]="aggravate_bleeding_on_attack_crit_chance_%" } }, - [4479]={ + [4536]={ [1]={ [1]={ [1]={ @@ -102281,7 +103435,7 @@ return { [1]="base_aggravate_bleeding_on_attack_hit_chance_%" } }, - [4480]={ + [4537]={ [1]={ [1]={ [1]={ @@ -102301,7 +103455,7 @@ return { [1]="aggravate_bleeding_on_attack_knockback_chance_%" } }, - [4481]={ + [4538]={ [1]={ [1]={ [1]={ @@ -102321,7 +103475,7 @@ return { [1]="aggravate_bleeding_on_attack_stun_chance_%" } }, - [4482]={ + [4539]={ [1]={ [1]={ [1]={ @@ -102341,7 +103495,7 @@ return { [1]="aggravate_bleeding_on_exerted_attack_hit_chance_%" } }, - [4483]={ + [4540]={ [1]={ [1]={ [1]={ @@ -102361,7 +103515,7 @@ return { [1]="aggravate_inflicted_bleeding" } }, - [4484]={ + [4541]={ [1]={ [1]={ limit={ @@ -102390,7 +103544,7 @@ return { [1]="agony_crawler_damage_+%" } }, - [4485]={ + [4542]={ [1]={ [1]={ limit={ @@ -102406,7 +103560,7 @@ return { [1]="ailment_bearer_all_damage_can_inflict_elemental_ailments" } }, - [4486]={ + [4543]={ [1]={ [1]={ limit={ @@ -102422,7 +103576,7 @@ return { [1]="ailment_bearer_always_freeze_shock_ignite" } }, - [4487]={ + [4544]={ [1]={ [1]={ limit={ @@ -102451,7 +103605,7 @@ return { [1]="ailment_bearer_elemental_damage_+%_final" } }, - [4488]={ + [4545]={ [1]={ [1]={ limit={ @@ -102480,7 +103634,7 @@ return { [1]="ailment_bearer_ignite_freeze_shock_duration_+%" } }, - [4489]={ + [4546]={ [1]={ [1]={ [1]={ @@ -102517,7 +103671,7 @@ return { [1]="ailment_bearer_scorch_effect_+%" } }, - [4490]={ + [4547]={ [1]={ [1]={ limit={ @@ -102546,7 +103700,7 @@ return { [1]="alchemists_mark_curse_effect_+%" } }, - [4491]={ + [4548]={ [1]={ [1]={ [1]={ @@ -102566,7 +103720,7 @@ return { [1]="all_attributes_+_per_keystone" } }, - [4492]={ + [4549]={ [1]={ [1]={ limit={ @@ -102582,7 +103736,7 @@ return { [1]="all_damage_can_freeze" } }, - [4493]={ + [4550]={ [1]={ [1]={ limit={ @@ -102598,7 +103752,7 @@ return { [1]="all_damage_can_ignite" } }, - [4494]={ + [4551]={ [1]={ [1]={ limit={ @@ -102614,7 +103768,7 @@ return { [1]="all_damage_can_poison" } }, - [4495]={ + [4552]={ [1]={ [1]={ limit={ @@ -102630,7 +103784,7 @@ return { [1]="all_damage_can_shock" } }, - [4496]={ + [4553]={ [1]={ [1]={ [1]={ @@ -102650,7 +103804,36 @@ return { [1]="all_damage_from_mace_and_sceptre_also_chills" } }, - [4497]={ + [4554]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Elemental and Chaos Resistances" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Elemental and Chaos Resistances" + } + }, + stats={ + [1]="all_damage_resistance_+%" + } + }, + [4555]={ [1]={ [1]={ limit={ @@ -102666,7 +103849,7 @@ return { [1]="all_damage_taken_can_ignite" } }, - [4498]={ + [4556]={ [1]={ [1]={ [1]={ @@ -102686,7 +103869,7 @@ return { [1]="all_damage_taken_can_sap" } }, - [4499]={ + [4557]={ [1]={ [1]={ [1]={ @@ -102706,7 +103889,36 @@ return { [1]="all_damage_taken_can_scorch" } }, - [4500]={ + [4558]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="[DNT] +{0}% to All Resistances per Minion" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="[DNT] -{0}% to All Resistances per Minion" + } + }, + stats={ + [1]="all_resistances_%_per_active_minion" + } + }, + [4559]={ [1]={ [1]={ limit={ @@ -102722,7 +103934,7 @@ return { [1]="all_skill_gem_level_+" } }, - [4501]={ + [4560]={ [1]={ [1]={ limit={ @@ -102738,7 +103950,7 @@ return { [1]="all_skill_gem_quality_+" } }, - [4502]={ + [4561]={ [1]={ [1]={ limit={ @@ -102754,7 +103966,7 @@ return { [1]="allow_2_offerings" } }, - [4503]={ + [4562]={ [1]={ [1]={ limit={ @@ -102770,7 +103982,7 @@ return { [1]="allow_hellscaping_unique_items" } }, - [4504]={ + [4563]={ [1]={ [1]={ limit={ @@ -102786,7 +103998,300 @@ return { [1]="allow_multiple_offerings" } }, - [4505]={ + [4564]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Take {0}% more Lightning Damage with at least one Eshgraft grafted to you" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Take {0}% less Lightning Damage with at least one Eshgraft grafted to you" + } + }, + stats={ + [1]="alternate_ascendancy_damage_taken_+%_final_with_atleast_1_eshgraft" + } + }, + [4565]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Take {0}% more Cold Damage with at least one Tulgraft grafted to you" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Take {0}% less Cold Damage with at least one Tulgraft grafted to you" + } + }, + stats={ + [1]="alternate_ascendancy_damage_taken_+%_final_with_atleast_1_tulgraft" + } + }, + [4566]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Take {0}% more Physical Damage with at least one Uulgraft grafted to you" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Take {0}% less Physical Damage with at least one Uulgraft grafted to you" + } + }, + stats={ + [1]="alternate_ascendancy_damage_taken_+%_final_with_atleast_1_uulgraft" + } + }, + [4567]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Take {0}% more Fire Damage with at least one Xophgraft grafted to you" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Take {0}% less Fire Damage with at least one Xophgraft grafted to you" + } + }, + stats={ + [1]="alternate_ascendancy_damage_taken_+%_final_with_atleast_1_xophgraft" + } + }, + [4568]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% more Damage Taken from Damage over Time while you have Unbroken Ward" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% less Damage Taken from Damage over Time while you have Unbroken Ward" + } + }, + stats={ + [1]="alternate_ascendancy_damage_taken_over_time_+%_final_while_you_have_unbroken_ward" + } + }, + [4569]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Take {0}% more Damage from Hits" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Take {0}% less Damage from Hits" + } + }, + stats={ + [1]="alternate_ascendancy_damage_taken_when_hit_+%_final" + } + }, + [4570]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Herald Skills have {0}% more Buff Effect for every 1% of Maximum Mana they Reserve" + } + }, + stats={ + [1]="alternate_ascendancy_herald_buff_effect_+%_final_per_1%_mana_reserved" + } + }, + [4571]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Herald Skills and Minions from Herald Skills deal {0}% more Damage for every 1% of Maximum Life those Skills Reserve" + } + }, + stats={ + [1]="alternate_ascendancy_herald_minion_and_herald_damage_+%_final_per_1%_life_reserved" + } + }, + [4572]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Unsealed Spells gain {0}% more Damage each time their effects Reoccur" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Unsealed Spells gain {0}% less Damage each time their effects Reoccur" + } + }, + stats={ + [1]="alternate_ascendancy_rapid_fire_support_use_damage_+%_final_per_reoccurance" + } + }, + [4573]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Vaal Skills require {0}% more Souls per Use" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Vaal Skills require {0}% less Souls per Use" + } + }, + stats={ + [1]="alternate_ascendancy_vaal_skill_soul_requirement_+%_final" + } + }, + [4574]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Vaal Skills deal {0}% more Damage per Soul Required" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Vaal Skills deal {0}% less Damage per Soul Required" + } + }, + stats={ + [1]="alternate_ascendancy_vaal_skills_damage_+%_final_per_soul_required" + } + }, + [4575]={ [1]={ [1]={ [1]={ @@ -102819,7 +104324,7 @@ return { [1]="always_crit_on_next_non_channelling_attack_within_X_ms_after_being_crit" } }, - [4506]={ + [4576]={ [1]={ [1]={ limit={ @@ -102835,7 +104340,7 @@ return { [1]="always_crit_while_holding_fishing_rod" } }, - [4507]={ + [4577]={ [1]={ [1]={ [1]={ @@ -102855,7 +104360,7 @@ return { [1]="always_frostburn_while_affected_by_hatred" } }, - [4508]={ + [4578]={ [1]={ [1]={ [1]={ @@ -102875,7 +104380,7 @@ return { [1]="always_ignite_while_burning" } }, - [4509]={ + [4579]={ [1]={ [1]={ limit={ @@ -102891,7 +104396,7 @@ return { [1]="always_pierce" } }, - [4510]={ + [4580]={ [1]={ [1]={ limit={ @@ -102907,7 +104412,7 @@ return { [1]="always_pierce_burning_enemies" } }, - [4511]={ + [4581]={ [1]={ [1]={ [1]={ @@ -102927,7 +104432,7 @@ return { [1]="always_sap_while_affected_by_wrath" } }, - [4512]={ + [4582]={ [1]={ [1]={ [1]={ @@ -102947,7 +104452,27 @@ return { [1]="always_scorch_while_affected_by_anger" } }, - [4513]={ + [4583]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextShock" + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Hits always Shock Enemies that are on Low Life" + } + }, + stats={ + [1]="always_shock_low_life_enemies" + } + }, + [4584]={ [1]={ [1]={ limit={ @@ -102963,7 +104488,7 @@ return { [1]="always_take_critical_strikes" } }, - [4514]={ + [4585]={ [1]={ [1]={ limit={ @@ -102979,7 +104504,7 @@ return { [1]="ambush_buff_critical_strike_multiplier_+" } }, - [4515]={ + [4586]={ [1]={ [1]={ limit={ @@ -103008,7 +104533,7 @@ return { [1]="ambush_cooldown_speed_+%" } }, - [4516]={ + [4587]={ [1]={ [1]={ limit={ @@ -103037,7 +104562,7 @@ return { [1]="ancestor_totem_buff_effect_+%" } }, - [4517]={ + [4588]={ [1]={ [1]={ [1]={ @@ -103078,7 +104603,7 @@ return { [1]="ancestor_totem_buff_linger_time_ms" } }, - [4518]={ + [4589]={ [1]={ [1]={ [1]={ @@ -103102,7 +104627,7 @@ return { [1]="ancestor_totem_damage_leeched_as_energy_shield_to_you_permyriad" } }, - [4519]={ + [4590]={ [1]={ [1]={ limit={ @@ -103131,7 +104656,7 @@ return { [1]="ancestor_totem_parent_activation_range_+%" } }, - [4520]={ + [4591]={ [1]={ [1]={ limit={ @@ -103147,7 +104672,7 @@ return { [1]="ancestral_chance_for_no_respawn_timer_on_death_%" } }, - [4521]={ + [4592]={ [1]={ [1]={ limit={ @@ -103176,7 +104701,7 @@ return { [1]="ancestral_channelling_damage_+%_against_totems" } }, - [4522]={ + [4593]={ [1]={ [1]={ limit={ @@ -103205,7 +104730,7 @@ return { [1]="ancestral_channelling_interrupt_duration_+%" } }, - [4523]={ + [4594]={ [1]={ [1]={ limit={ @@ -103230,7 +104755,7 @@ return { [1]="ancestral_cry_attacks_exerted_+" } }, - [4524]={ + [4595]={ [1]={ [1]={ limit={ @@ -103246,7 +104771,7 @@ return { [1]="ancestral_cry_exerted_attack_damage_+%" } }, - [4525]={ + [4596]={ [1]={ [1]={ limit={ @@ -103262,7 +104787,7 @@ return { [1]="ancestral_cry_minimum_power" } }, - [4526]={ + [4597]={ [1]={ [1]={ limit={ @@ -103287,7 +104812,7 @@ return { [1]="ancestral_defensive_teammates_gain_charges" } }, - [4527]={ + [4598]={ [1]={ [1]={ [1]={ @@ -103320,7 +104845,7 @@ return { [1]="ancestral_life_regeneration_rate_per_minute_%_while_channelling_totem" } }, - [4528]={ + [4599]={ [1]={ [1]={ limit={ @@ -103336,7 +104861,7 @@ return { [1]="ancestral_maximum_life_+%_on_respawn" } }, - [4529]={ + [4600]={ [1]={ [1]={ limit={ @@ -103365,7 +104890,7 @@ return { [1]="ancestral_monster_respawn_timer_+%" } }, - [4530]={ + [4601]={ [1]={ [1]={ [1]={ @@ -103406,7 +104931,7 @@ return { [1]="ancestral_offensive_teammates_gain_adrenaline_for_x_ms_on_match_start" } }, - [4531]={ + [4602]={ [1]={ [1]={ limit={ @@ -103435,7 +104960,7 @@ return { [1]="ancestral_slain_enemies_respawn_timer_+" } }, - [4532]={ + [4603]={ [1]={ [1]={ limit={ @@ -103451,7 +104976,7 @@ return { [1]="ancestral_stun_nearby_enemies_on_respawn" } }, - [4533]={ + [4604]={ [1]={ [1]={ limit={ @@ -103467,7 +104992,7 @@ return { [1]="ancestral_totem_being_channelled_doesnt_prevent_your_respawn_timer" } }, - [4534]={ + [4605]={ [1]={ [1]={ limit={ @@ -103483,7 +105008,7 @@ return { [1]="ancestral_totem_cannot_recover_life_while_being_channelled" } }, - [4535]={ + [4606]={ [1]={ [1]={ limit={ @@ -103512,7 +105037,7 @@ return { [1]="ancestral_totem_life_+%" } }, - [4536]={ + [4607]={ [1]={ [1]={ [1]={ @@ -103545,7 +105070,7 @@ return { [1]="ancestral_totem_life_regeneration_rate_per_minute_%" } }, - [4537]={ + [4608]={ [1]={ [1]={ [1]={ @@ -103565,7 +105090,7 @@ return { [1]="ancestral_totem_periodically_freezes_nearby_enemies" } }, - [4538]={ + [4609]={ [1]={ [1]={ [1]={ @@ -103585,7 +105110,36 @@ return { [1]="ancestral_totem_trigger_enduring_cry_on_low_life" } }, - [4539]={ + [4610]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Anger has {0}% increased Aura Effect while at maximum Endurance Charges" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Anger has {0}% reduced Aura Effect while at maximum Endurance Charges" + } + }, + stats={ + [1]="anger_aura_effect_+%_while_at_maximum_endurance_charges" + } + }, + [4611]={ [1]={ [1]={ [1]={ @@ -103618,7 +105172,7 @@ return { [1]="anger_mana_reservation_efficiency_-2%_per_1" } }, - [4540]={ + [4612]={ [1]={ [1]={ limit={ @@ -103647,7 +105201,7 @@ return { [1]="anger_mana_reservation_efficiency_+%" } }, - [4541]={ + [4613]={ [1]={ [1]={ limit={ @@ -103663,7 +105217,7 @@ return { [1]="anger_reserves_no_mana" } }, - [4542]={ + [4614]={ [1]={ [1]={ limit={ @@ -103692,7 +105246,7 @@ return { [1]="animate_guardian_damage_+%_per_animated_weapon" } }, - [4543]={ + [4615]={ [1]={ [1]={ [1]={ @@ -103712,7 +105266,7 @@ return { [1]="animated_ethereal_blades_have_additional_critical_strike_chance" } }, - [4544]={ + [4616]={ [1]={ [1]={ limit={ @@ -103741,7 +105295,7 @@ return { [1]="animated_guardian_damage_taken_+%_final" } }, - [4545]={ + [4617]={ [1]={ [1]={ limit={ @@ -103757,7 +105311,7 @@ return { [1]="animated_minions_melee_splash" } }, - [4546]={ + [4618]={ [1]={ [1]={ limit={ @@ -103786,7 +105340,7 @@ return { [1]="aoe_+%_per_second_while_stationary_up_to_50" } }, - [4547]={ + [4619]={ [1]={ [1]={ [1]={ @@ -103819,7 +105373,7 @@ return { [1]="apply_covered_in_ash_to_attacker_on_hit_%_vs_rare_or_unique_enemy" } }, - [4548]={ + [4620]={ [1]={ [1]={ [1]={ @@ -103852,7 +105406,7 @@ return { [1]="apply_covered_in_ash_to_attacker_when_hit_%" } }, - [4549]={ + [4621]={ [1]={ [1]={ [1]={ @@ -103865,14 +105419,14 @@ return { [2]="#" } }, - text="[DNT] Hits with Chaos Skills inflict up to 15 Withered Debuffs for {0} seconds" + text="Chaos Skills inflict up to 15 Withered Debuffs on Hit for {0} seconds" } }, stats={ [1]="apply_maximum_wither_for_Xs_on_chaos_skill_hit" } }, - [4550]={ + [4622]={ [1]={ [1]={ [1]={ @@ -103892,7 +105446,7 @@ return { [1]="apply_maximum_wither_stacks_%_chance_when_you_apply_withered" } }, - [4551]={ + [4623]={ [1]={ [1]={ [1]={ @@ -103912,7 +105466,7 @@ return { [1]="apply_scorch_instead_of_ignite" } }, - [4552]={ + [4624]={ [1]={ [1]={ limit={ @@ -103928,7 +105482,7 @@ return { [1]="arc_and_crackling_lance_added_cold_damage_%_mana_cost_if_payable" } }, - [4553]={ + [4625]={ [1]={ [1]={ limit={ @@ -103957,7 +105511,7 @@ return { [1]="arc_and_crackling_lance_base_cost_+%" } }, - [4554]={ + [4626]={ [1]={ [1]={ limit={ @@ -103973,7 +105527,7 @@ return { [1]="arc_damage_+%_per_chain" } }, - [4555]={ + [4627]={ [1]={ [1]={ limit={ @@ -103989,7 +105543,7 @@ return { [1]="arcane_cloak_consume_%_of_mana" } }, - [4556]={ + [4628]={ [1]={ [1]={ [1]={ @@ -104009,7 +105563,7 @@ return { [1]="arcane_cloak_gain_%_of_consumed_mana_as_life_regenerated_per_second" } }, - [4557]={ + [4629]={ [1]={ [1]={ limit={ @@ -104025,7 +105579,7 @@ return { [1]="arcane_surge_during_mana_flask_effect" } }, - [4558]={ + [4630]={ [1]={ [1]={ [1]={ @@ -104062,7 +105616,7 @@ return { [1]="arcane_surge_effect_+%_while_affected_by_clarity" } }, - [4559]={ + [4631]={ [1]={ [1]={ [1]={ @@ -104099,7 +105653,7 @@ return { [1]="arcane_surge_effect_+%_per_active_totem" } }, - [4560]={ + [4632]={ [1]={ [1]={ limit={ @@ -104128,7 +105682,7 @@ return { [1]="arcane_surge_on_you_spell_damage_+%_final_from_hierophant" } }, - [4561]={ + [4633]={ [1]={ [1]={ [1]={ @@ -104148,7 +105702,7 @@ return { [1]="arcane_surge_to_you_and_allies_on_warcry_with_effect_+%_per_5_power_up_to_50%" } }, - [4562]={ + [4634]={ [1]={ [1]={ limit={ @@ -104177,7 +105731,7 @@ return { [1]="arcanist_brand_cast_speed_+%" } }, - [4563]={ + [4635]={ [1]={ [1]={ [1]={ @@ -104197,7 +105751,7 @@ return { [1]="arcanist_brand_unnerve_on_hit" } }, - [4564]={ + [4636]={ [1]={ [1]={ limit={ @@ -104213,7 +105767,7 @@ return { [1]="archnemesis_cannot_recover_life_or_energy_shield_above_%" } }, - [4565]={ + [4637]={ [1]={ [1]={ [1]={ @@ -104246,7 +105800,7 @@ return { [1]="arctic_armour_chill_when_hit_duration" } }, - [4566]={ + [4638]={ [1]={ [1]={ [1]={ @@ -104279,7 +105833,7 @@ return { [1]="arctic_armour_mana_reservation_efficiency_-2%_per_1" } }, - [4567]={ + [4639]={ [1]={ [1]={ limit={ @@ -104308,7 +105862,7 @@ return { [1]="arctic_armour_mana_reservation_efficiency_+%" } }, - [4568]={ + [4640]={ [1]={ [1]={ limit={ @@ -104324,7 +105878,7 @@ return { [1]="arctic_armour_no_reservation" } }, - [4569]={ + [4641]={ [1]={ [1]={ limit={ @@ -104353,7 +105907,7 @@ return { [1]="arctic_breath_chilling_area_movement_velocity_+%" } }, - [4570]={ + [4642]={ [1]={ [1]={ limit={ @@ -104382,7 +105936,7 @@ return { [1]="area_damage_+%_per_10_devotion" } }, - [4571]={ + [4643]={ [1]={ [1]={ limit={ @@ -104411,7 +105965,7 @@ return { [1]="area_damage_+%_per_12_strength" } }, - [4572]={ + [4644]={ [1]={ [1]={ limit={ @@ -104440,7 +105994,7 @@ return { [1]="gladiator_area_of_effect_+%_final_while_wielding_mace" } }, - [4573]={ + [4645]={ [1]={ [1]={ limit={ @@ -104469,7 +106023,7 @@ return { [1]="area_of_effect_+%_if_below_100_intelligence" } }, - [4574]={ + [4646]={ [1]={ [1]={ limit={ @@ -104485,7 +106039,7 @@ return { [1]="area_of_effect_+%_per_10_rage" } }, - [4575]={ + [4647]={ [1]={ [1]={ limit={ @@ -104514,7 +106068,7 @@ return { [1]="area_of_effect_+%_final_for_bow_attacks_firing_single_projectile" } }, - [4576]={ + [4648]={ [1]={ [1]={ [1]={ @@ -104551,7 +106105,7 @@ return { [1]="area_of_effect_+%_for_you_and_minions_if_consumed_corpse_recently" } }, - [4577]={ + [4649]={ [1]={ [1]={ [1]={ @@ -104588,7 +106142,7 @@ return { [1]="area_of_effect_+%_if_culled_recently" } }, - [4578]={ + [4650]={ [1]={ [1]={ [1]={ @@ -104625,7 +106179,7 @@ return { [1]="area_of_effect_+%_if_enemy_stunned_with_two_handed_melee_weapon_recently" } }, - [4579]={ + [4651]={ [1]={ [1]={ [1]={ @@ -104662,7 +106216,7 @@ return { [1]="area_of_effect_+%_if_have_crit_recently" } }, - [4580]={ + [4652]={ [1]={ [1]={ limit={ @@ -104691,7 +106245,7 @@ return { [1]="area_of_effect_+%_if_have_stunned_an_enemy_recently" } }, - [4581]={ + [4653]={ [1]={ [1]={ [1]={ @@ -104728,7 +106282,7 @@ return { [1]="area_of_effect_+%_if_killed_at_least_5_enemies_recently" } }, - [4582]={ + [4654]={ [1]={ [1]={ [1]={ @@ -104765,7 +106319,7 @@ return { [1]="area_of_effect_+%_if_you_have_blocked_recently" } }, - [4583]={ + [4655]={ [1]={ [1]={ limit={ @@ -104794,7 +106348,7 @@ return { [1]="area_of_effect_+%_per_50_strength" } }, - [4584]={ + [4656]={ [1]={ [1]={ limit={ @@ -104823,7 +106377,7 @@ return { [1]="area_of_effect_+%_per_active_herald_of_light_minion" } }, - [4585]={ + [4657]={ [1]={ [1]={ limit={ @@ -104852,7 +106406,7 @@ return { [1]="area_of_effect_+%_per_endurance_charge" } }, - [4586]={ + [4658]={ [1]={ [1]={ [1]={ @@ -104889,7 +106443,7 @@ return { [1]="area_of_effect_+%_per_enemy_killed_recently" } }, - [4587]={ + [4659]={ [1]={ [1]={ limit={ @@ -104918,7 +106472,7 @@ return { [1]="area_of_effect_+%_while_fortified" } }, - [4588]={ + [4660]={ [1]={ [1]={ limit={ @@ -104947,7 +106501,7 @@ return { [1]="area_of_effect_+%_while_totem_active" } }, - [4589]={ + [4661]={ [1]={ [1]={ limit={ @@ -104976,7 +106530,7 @@ return { [1]="area_of_effect_+%_while_wielding_bow" } }, - [4590]={ + [4662]={ [1]={ [1]={ [1]={ @@ -105013,7 +106567,7 @@ return { [1]="area_of_effect_+%_while_wielding_staff" } }, - [4591]={ + [4663]={ [1]={ [1]={ limit={ @@ -105042,7 +106596,7 @@ return { [1]="area_of_effect_+%_while_you_have_arcane_surge" } }, - [4592]={ + [4664]={ [1]={ [1]={ limit={ @@ -105071,7 +106625,7 @@ return { [1]="area_of_effect_+%_with_500_or_more_strength" } }, - [4593]={ + [4665]={ [1]={ [1]={ limit={ @@ -105100,7 +106654,7 @@ return { [1]="area_of_effect_+%_with_bow_skills" } }, - [4594]={ + [4666]={ [1]={ [1]={ limit={ @@ -105129,7 +106683,7 @@ return { [1]="area_of_effect_+%_with_herald_skills" } }, - [4595]={ + [4667]={ [1]={ [1]={ limit={ @@ -105158,7 +106712,7 @@ return { [1]="area_skill_accuracy_rating_+%" } }, - [4596]={ + [4668]={ [1]={ [1]={ [1]={ @@ -105178,7 +106732,7 @@ return { [1]="area_skill_knockback_chance_%" } }, - [4597]={ + [4669]={ [1]={ [1]={ limit={ @@ -105194,7 +106748,7 @@ return { [1]="armageddon_brand_attached_target_fire_penetration_%" } }, - [4598]={ + [4670]={ [1]={ [1]={ limit={ @@ -105223,7 +106777,7 @@ return { [1]="armageddon_brand_damage_+%" } }, - [4599]={ + [4671]={ [1]={ [1]={ limit={ @@ -105252,7 +106806,7 @@ return { [1]="armageddon_brand_repeat_frequency_+%" } }, - [4600]={ + [4672]={ [1]={ [1]={ limit={ @@ -105268,7 +106822,56 @@ return { [1]="armour_%_applies_to_fire_cold_lightning_damage" } }, - [4601]={ + [4673]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextRecently" + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% of Armour applies to Fire, Cold and Lightning Damage taken from Hits if you've Blocked Recently" + } + }, + stats={ + [1]="armour_%_applies_to_fire_cold_lightning_damage_if_have_blocked_recently" + } + }, + [4674]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{}% increased Armour during Onslaught" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{}% reduced Armour during Onslaught" + } + }, + stats={ + [1]="armour_+%_during_onslaught" + } + }, + [4675]={ [1]={ [1]={ [1]={ @@ -105305,7 +106908,7 @@ return { [1]="armour_+%_if_have_been_hit_recently" } }, - [4602]={ + [4676]={ [1]={ [1]={ [1]={ @@ -105342,7 +106945,7 @@ return { [1]="armour_+%_if_you_havent_been_hit_recently" } }, - [4603]={ + [4677]={ [1]={ [1]={ limit={ @@ -105371,7 +106974,7 @@ return { [1]="armour_+%_per_retaliation_used_in_past_10_seconds" } }, - [4604]={ + [4678]={ [1]={ [1]={ limit={ @@ -105387,7 +106990,7 @@ return { [1]="armour_+_per_10_unreserved_max_mana" } }, - [4605]={ + [4679]={ [1]={ [1]={ limit={ @@ -105416,7 +107019,7 @@ return { [1]="armour_and_energy_shield_+%_from_body_armour_if_gloves_helmet_boots_have_armour_and_energy_shield" } }, - [4606]={ + [4680]={ [1]={ [1]={ limit={ @@ -105445,7 +107048,7 @@ return { [1]="armour_and_evasion_+%_during_onslaught" } }, - [4607]={ + [4681]={ [1]={ [1]={ limit={ @@ -105461,7 +107064,7 @@ return { [1]="armour_and_evasion_rating_+_per_1%_attack_block_chance" } }, - [4608]={ + [4682]={ [1]={ [1]={ limit={ @@ -105477,7 +107080,7 @@ return { [1]="armour_and_evasion_rating_+_while_fortified" } }, - [4609]={ + [4683]={ [1]={ [1]={ limit={ @@ -105506,7 +107109,7 @@ return { [1]="armour_evasion_+%_while_leeching" } }, - [4610]={ + [4684]={ [1]={ [1]={ limit={ @@ -105535,7 +107138,7 @@ return { [1]="armour_from_gloves_and_boots_+%" } }, - [4611]={ + [4685]={ [1]={ [1]={ limit={ @@ -105564,7 +107167,7 @@ return { [1]="armour_from_helmet_and_gloves_+%" } }, - [4612]={ + [4686]={ [1]={ [1]={ [1]={ @@ -105588,7 +107191,7 @@ return { [1]="armour_increased_by_overcapped_fire_resistance" } }, - [4613]={ + [4687]={ [1]={ [1]={ limit={ @@ -105604,7 +107207,7 @@ return { [1]="armour_+_per_1_helmet_maximum_energy_shield" } }, - [4614]={ + [4688]={ [1]={ [1]={ limit={ @@ -105620,7 +107223,7 @@ return { [1]="armour_+_while_affected_by_determination" } }, - [4615]={ + [4689]={ [1]={ [1]={ limit={ @@ -105636,7 +107239,7 @@ return { [1]="armour_+_while_affected_by_guard_skill" } }, - [4616]={ + [4690]={ [1]={ [1]={ limit={ @@ -105652,7 +107255,7 @@ return { [1]="armour_+_while_you_have_fortify" } }, - [4617]={ + [4691]={ [1]={ [1]={ [1]={ @@ -105689,7 +107292,7 @@ return { [1]="armour_+%_if_enemy_not_killed_recently" } }, - [4618]={ + [4692]={ [1]={ [1]={ limit={ @@ -105718,7 +107321,7 @@ return { [1]="armour_+%_per_50_str" } }, - [4619]={ + [4693]={ [1]={ [1]={ limit={ @@ -105734,7 +107337,7 @@ return { [1]="armour_+%_per_rage" } }, - [4620]={ + [4694]={ [1]={ [1]={ limit={ @@ -105763,7 +107366,7 @@ return { [1]="armour_+%_per_red_socket_on_main_hand_weapon" } }, - [4621]={ + [4695]={ [1]={ [1]={ limit={ @@ -105792,7 +107395,7 @@ return { [1]="armour_+%_per_second_while_stationary_up_to_100" } }, - [4622]={ + [4696]={ [1]={ [1]={ limit={ @@ -105808,7 +107411,7 @@ return { [1]="armour_+%_while_bleeding" } }, - [4623]={ + [4697]={ [1]={ [1]={ limit={ @@ -105837,7 +107440,7 @@ return { [1]="armour_+%_while_stationary" } }, - [4624]={ + [4698]={ [1]={ [1]={ limit={ @@ -105853,7 +107456,7 @@ return { [1]="arrow_critical_strike_chance_+%_max_as_distance_travelled_increases" } }, - [4625]={ + [4699]={ [1]={ [1]={ [1]={ @@ -105890,7 +107493,7 @@ return { [1]="arrow_damage_+%_vs_pierced_targets" } }, - [4626]={ + [4700]={ [1]={ [1]={ [1]={ @@ -105910,7 +107513,7 @@ return { [1]="arrow_damage_+50%_vs_pierced_targets" } }, - [4627]={ + [4701]={ [1]={ [1]={ limit={ @@ -105926,7 +107529,7 @@ return { [1]="arrow_damage_+%_max_as_distance_travelled_increases" } }, - [4628]={ + [4702]={ [1]={ [1]={ limit={ @@ -105947,7 +107550,7 @@ return { [2]="maximum_arrow_fire_damage_added_for_each_pierce" } }, - [4629]={ + [4703]={ [1]={ [1]={ limit={ @@ -105963,7 +107566,7 @@ return { [1]="arrow_speed_additive_modifiers_also_apply_to_bow_damage" } }, - [4630]={ + [4704]={ [1]={ [1]={ limit={ @@ -105979,7 +107582,7 @@ return { [1]="arrows_always_pierce_after_forking" } }, - [4631]={ + [4705]={ [1]={ [1]={ limit={ @@ -105995,7 +107598,7 @@ return { [1]="arrows_pierce_additional_target" } }, - [4632]={ + [4706]={ [1]={ [1]={ limit={ @@ -106011,7 +107614,7 @@ return { [1]="arrows_that_pierce_also_return" } }, - [4633]={ + [4707]={ [1]={ [1]={ limit={ @@ -106027,7 +107630,7 @@ return { [1]="artillery_ballista_cross_strafe_pattern" } }, - [4634]={ + [4708]={ [1]={ [1]={ limit={ @@ -106043,7 +107646,7 @@ return { [1]="artillery_ballista_fire_pen_+%" } }, - [4635]={ + [4709]={ [1]={ [1]={ limit={ @@ -106068,7 +107671,7 @@ return { [1]="artillery_ballista_num_additional_arrows" } }, - [4636]={ + [4710]={ [1]={ [1]={ limit={ @@ -106097,7 +107700,7 @@ return { [1]="ascendancy_pathfinder_chaos_damage_with_attack_skills_+%_final" } }, - [4637]={ + [4711]={ [1]={ [1]={ limit={ @@ -106126,7 +107729,7 @@ return { [1]="aspect_of_the_avian_buff_effect_+%" } }, - [4638]={ + [4712]={ [1]={ [1]={ limit={ @@ -106142,7 +107745,7 @@ return { [1]="aspect_of_the_avian_grants_avians_might_and_avians_flight_to_nearby_allies" } }, - [4639]={ + [4713]={ [1]={ [1]={ [1]={ @@ -106162,7 +107765,7 @@ return { [1]="aspect_of_the_cat_base_secondary_duration" } }, - [4640]={ + [4714]={ [1]={ [1]={ limit={ @@ -106187,7 +107790,7 @@ return { [1]="aspect_of_the_spider_web_count_+" } }, - [4641]={ + [4715]={ [1]={ [1]={ [1]={ @@ -106207,7 +107810,7 @@ return { [1]="attack_additional_critical_strike_chance_permyriad" } }, - [4642]={ + [4716]={ [1]={ [1]={ [1]={ @@ -106244,7 +107847,7 @@ return { [1]="attack_ailment_damage_+%" } }, - [4643]={ + [4717]={ [1]={ [1]={ [1]={ @@ -106281,7 +107884,7 @@ return { [1]="attack_ailment_damage_+%_while_dual_wielding" } }, - [4644]={ + [4718]={ [1]={ [1]={ [1]={ @@ -106318,7 +107921,7 @@ return { [1]="attack_ailment_damage_+%_while_wielding_axe" } }, - [4645]={ + [4719]={ [1]={ [1]={ [1]={ @@ -106355,7 +107958,7 @@ return { [1]="attack_ailment_damage_+%_while_wielding_bow" } }, - [4646]={ + [4720]={ [1]={ [1]={ [1]={ @@ -106392,7 +107995,7 @@ return { [1]="attack_ailment_damage_+%_while_wielding_claw" } }, - [4647]={ + [4721]={ [1]={ [1]={ [1]={ @@ -106437,7 +108040,7 @@ return { [1]="attack_ailment_damage_+%_while_wielding_dagger" } }, - [4648]={ + [4722]={ [1]={ [1]={ [1]={ @@ -106474,7 +108077,7 @@ return { [1]="attack_ailment_damage_+%_while_wielding_mace" } }, - [4649]={ + [4723]={ [1]={ [1]={ [1]={ @@ -106511,7 +108114,7 @@ return { [1]="attack_ailment_damage_+%_while_wielding_melee_weapon" } }, - [4650]={ + [4724]={ [1]={ [1]={ [1]={ @@ -106548,7 +108151,7 @@ return { [1]="attack_ailment_damage_+%_while_wielding_one_handed_weapon" } }, - [4651]={ + [4725]={ [1]={ [1]={ [1]={ @@ -106593,7 +108196,7 @@ return { [1]="attack_ailment_damage_+%_while_wielding_staff" } }, - [4652]={ + [4726]={ [1]={ [1]={ [1]={ @@ -106630,7 +108233,7 @@ return { [1]="attack_ailment_damage_+%_while_wielding_sword" } }, - [4653]={ + [4727]={ [1]={ [1]={ [1]={ @@ -106667,7 +108270,7 @@ return { [1]="attack_ailment_damage_+%_while_wielding_two_handed_weapon" } }, - [4654]={ + [4728]={ [1]={ [1]={ [1]={ @@ -106704,7 +108307,7 @@ return { [1]="attack_ailment_damage_+%_while_wielding_wand" } }, - [4655]={ + [4729]={ [1]={ [1]={ [1]={ @@ -106741,7 +108344,7 @@ return { [1]="attack_and_cast_speed_+%_if_corpse_consumed_recently" } }, - [4656]={ + [4730]={ [1]={ [1]={ limit={ @@ -106770,7 +108373,7 @@ return { [1]="attack_and_cast_speed_+%_per_alive_packmate" } }, - [4657]={ + [4731]={ [1]={ [1]={ limit={ @@ -106799,7 +108402,7 @@ return { [1]="attack_and_cast_speed_+%_to_grant_packmate_on_death" } }, - [4658]={ + [4732]={ [1]={ [1]={ limit={ @@ -106828,7 +108431,7 @@ return { [1]="attack_and_cast_speed_+%_while_affected_by_a_mana_flask" } }, - [4659]={ + [4733]={ [1]={ [1]={ limit={ @@ -106857,7 +108460,7 @@ return { [1]="attack_and_cast_speed_+%_while_affected_by_elusive" } }, - [4660]={ + [4734]={ [1]={ [1]={ limit={ @@ -106886,7 +108489,7 @@ return { [1]="attack_and_cast_speed_+%_while_not_near_ancestral_totem" } }, - [4661]={ + [4735]={ [1]={ [1]={ limit={ @@ -106915,7 +108518,7 @@ return { [1]="attack_and_cast_speed_per_ghost_dance_stack_+%" } }, - [4662]={ + [4736]={ [1]={ [1]={ limit={ @@ -106931,7 +108534,7 @@ return { [1]="attack_and_cast_speed_+%_for_3_seconds_on_attack_every_9_seconds" } }, - [4663]={ + [4737]={ [1]={ [1]={ [1]={ @@ -106968,7 +108571,7 @@ return { [1]="attack_and_cast_speed_+%_if_enemy_hit_recently" } }, - [4664]={ + [4738]={ [1]={ [1]={ [1]={ @@ -107005,7 +108608,7 @@ return { [1]="attack_and_cast_speed_+%_if_havent_been_hit_recently" } }, - [4665]={ + [4739]={ [1]={ [1]={ limit={ @@ -107034,7 +108637,7 @@ return { [1]="attack_and_cast_speed_+%_per_endurance_charge" } }, - [4666]={ + [4740]={ [1]={ [1]={ limit={ @@ -107063,7 +108666,7 @@ return { [1]="attack_and_cast_speed_+%_per_power_charge" } }, - [4667]={ + [4741]={ [1]={ [1]={ limit={ @@ -107092,7 +108695,7 @@ return { [1]="attack_and_cast_speed_+%_per_summoned_raging_spirit" } }, - [4668]={ + [4742]={ [1]={ [1]={ limit={ @@ -107121,7 +108724,7 @@ return { [1]="attack_and_cast_speed_+%_while_affected_by_a_herald" } }, - [4669]={ + [4743]={ [1]={ [1]={ limit={ @@ -107150,7 +108753,7 @@ return { [1]="attack_and_cast_speed_+%_while_channelling" } }, - [4670]={ + [4744]={ [1]={ [1]={ limit={ @@ -107179,7 +108782,7 @@ return { [1]="attack_and_cast_speed_+%_while_focused" } }, - [4671]={ + [4745]={ [1]={ [1]={ limit={ @@ -107208,7 +108811,7 @@ return { [1]="attack_and_cast_speed_+%_while_leeching_energy_shield" } }, - [4672]={ + [4746]={ [1]={ [1]={ limit={ @@ -107237,7 +108840,7 @@ return { [1]="attack_and_cast_speed_+%_while_you_have_depleted_physical_aegis" } }, - [4673]={ + [4747]={ [1]={ [1]={ limit={ @@ -107266,7 +108869,7 @@ return { [1]="attack_and_cast_speed_+%_with_channelling_skills" } }, - [4674]={ + [4748]={ [1]={ [1]={ limit={ @@ -107295,7 +108898,7 @@ return { [1]="attack_and_cast_speed_+%_with_chaos_skills" } }, - [4675]={ + [4749]={ [1]={ [1]={ limit={ @@ -107324,7 +108927,7 @@ return { [1]="attack_and_cast_speed_+%_with_cold_skills" } }, - [4676]={ + [4750]={ [1]={ [1]={ limit={ @@ -107353,7 +108956,7 @@ return { [1]="attack_and_cast_speed_+%_with_elemental_skills" } }, - [4677]={ + [4751]={ [1]={ [1]={ limit={ @@ -107382,7 +108985,7 @@ return { [1]="attack_and_cast_speed_+%_with_fire_skills" } }, - [4678]={ + [4752]={ [1]={ [1]={ limit={ @@ -107411,7 +109014,7 @@ return { [1]="attack_and_cast_speed_+%_with_lightning_skills" } }, - [4679]={ + [4753]={ [1]={ [1]={ limit={ @@ -107440,7 +109043,7 @@ return { [1]="attack_and_cast_speed_+%_with_physical_skills" } }, - [4680]={ + [4754]={ [1]={ [1]={ limit={ @@ -107469,7 +109072,7 @@ return { [1]="attack_and_cast_speed_+%_with_shield_skills" } }, - [4681]={ + [4755]={ [1]={ [1]={ limit={ @@ -107485,7 +109088,7 @@ return { [1]="attack_and_movement_speed_+%_final_per_challenger_charge" } }, - [4682]={ + [4756]={ [1]={ [1]={ limit={ @@ -107514,7 +109117,7 @@ return { [1]="attack_area_of_effect_+%" } }, - [4683]={ + [4757]={ [1]={ [1]={ [1]={ @@ -107534,7 +109137,7 @@ return { [1]="attack_block_%_per_200_fire_hit_damage_taken_recently" } }, - [4684]={ + [4758]={ [1]={ [1]={ [1]={ @@ -107554,7 +109157,7 @@ return { [1]="attack_block_%_if_blocked_a_spell_recently" } }, - [4685]={ + [4759]={ [1]={ [1]={ limit={ @@ -107570,7 +109173,7 @@ return { [1]="attack_block_%_while_at_max_endurance_charges" } }, - [4686]={ + [4760]={ [1]={ [1]={ limit={ @@ -107599,7 +109202,7 @@ return { [1]="attack_cast_and_movement_speed_+%_during_onslaught" } }, - [4687]={ + [4761]={ [1]={ [1]={ [1]={ @@ -107644,7 +109247,7 @@ return { [1]="attack_cast_movement_speed_+%_if_taken_a_savage_hit_recently" } }, - [4688]={ + [4762]={ [1]={ [1]={ [1]={ @@ -107664,7 +109267,7 @@ return { [1]="attack_chance_to_blind_on_hit_%_vs_bleeding_enemies" } }, - [4689]={ + [4763]={ [1]={ [1]={ [1]={ @@ -107684,7 +109287,7 @@ return { [1]="attack_chance_to_maim_on_hit_%_vs_blinded_enemies" } }, - [4690]={ + [4764]={ [1]={ [1]={ limit={ @@ -107713,7 +109316,7 @@ return { [1]="attack_cost_+%_if_you_have_at_least_20_rage" } }, - [4691]={ + [4765]={ [1]={ [1]={ limit={ @@ -107742,7 +109345,7 @@ return { [1]="attack_critical_strike_chance_+%" } }, - [4692]={ + [4766]={ [1]={ [1]={ limit={ @@ -107771,7 +109374,7 @@ return { [1]="attack_critical_strike_chance_+%_per_200_accuracy_rating" } }, - [4693]={ + [4767]={ [1]={ [1]={ limit={ @@ -107787,7 +109390,7 @@ return { [1]="attack_critical_strikes_ignore_elemental_resistances" } }, - [4694]={ + [4768]={ [1]={ [1]={ limit={ @@ -107816,7 +109419,7 @@ return { [1]="attack_damage_+%_per_5%_block_chance" } }, - [4695]={ + [4769]={ [1]={ [1]={ limit={ @@ -107845,7 +109448,7 @@ return { [1]="attack_damage_+%_per_500_maximum_mana" } }, - [4696]={ + [4770]={ [1]={ [1]={ limit={ @@ -107861,7 +109464,36 @@ return { [1]="attack_damage_+%_per_explicit_map_mod_affecting_area" } }, - [4697]={ + [4771]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Attack Damage per Raised Zombie" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Attack Damage per Raised Zombie" + } + }, + stats={ + [1]="attack_damage_+%_per_raised_zombie" + } + }, + [4772]={ [1]={ [1]={ [1]={ @@ -107898,7 +109530,7 @@ return { [1]="attack_damage_+%_while_in_blood_stance" } }, - [4698]={ + [4773]={ [1]={ [1]={ limit={ @@ -107927,7 +109559,7 @@ return { [1]="attack_damage_+%_while_you_have_at_least_20_fortification" } }, - [4699]={ + [4774]={ [1]={ [1]={ [1]={ @@ -107947,7 +109579,7 @@ return { [1]="attack_damage_lucky_if_blocked_in_past_20_seconds" } }, - [4700]={ + [4775]={ [1]={ [1]={ [1]={ @@ -107967,7 +109599,7 @@ return { [1]="attack_damage_lucky_if_blocked_in_past_20_seconds_while_dual_wielding" } }, - [4701]={ + [4776]={ [1]={ [1]={ limit={ @@ -107983,7 +109615,7 @@ return { [1]="attack_damage_+1%_per_300_of_min_of_armour_or_evasion" } }, - [4702]={ + [4777]={ [1]={ [1]={ limit={ @@ -108012,7 +109644,7 @@ return { [1]="attack_damage_+%_per_16_strength" } }, - [4703]={ + [4778]={ [1]={ [1]={ limit={ @@ -108028,7 +109660,7 @@ return { [1]="attack_damage_+%_per_450_physical_damage_reduction_rating" } }, - [4704]={ + [4779]={ [1]={ [1]={ limit={ @@ -108057,7 +109689,7 @@ return { [1]="attack_damage_+%_per_75_armour_or_evasion_on_shield" } }, - [4705]={ + [4780]={ [1]={ [1]={ limit={ @@ -108086,7 +109718,7 @@ return { [1]="attack_damage_+%_vs_maimed_enemies" } }, - [4706]={ + [4781]={ [1]={ [1]={ limit={ @@ -108115,7 +109747,7 @@ return { [1]="attack_damage_+%_when_lower_percentage_life_than_target" } }, - [4707]={ + [4782]={ [1]={ [1]={ limit={ @@ -108144,7 +109776,7 @@ return { [1]="attack_damage_+%_when_on_full_life" } }, - [4708]={ + [4783]={ [1]={ [1]={ limit={ @@ -108173,7 +109805,7 @@ return { [1]="attack_damage_+%_while_affected_by_precision" } }, - [4709]={ + [4784]={ [1]={ [1]={ limit={ @@ -108202,7 +109834,7 @@ return { [1]="attack_damage_+%_while_channelling" } }, - [4710]={ + [4785]={ [1]={ [1]={ limit={ @@ -108231,7 +109863,7 @@ return { [1]="attack_damage_+%_while_leeching" } }, - [4711]={ + [4786]={ [1]={ [1]={ limit={ @@ -108260,7 +109892,7 @@ return { [1]="attack_damage_+%_while_you_have_fortify" } }, - [4712]={ + [4787]={ [1]={ [1]={ limit={ @@ -108289,7 +109921,7 @@ return { [1]="attack_damage_+%_with_channelling_skills" } }, - [4713]={ + [4788]={ [1]={ [1]={ limit={ @@ -108305,7 +109937,7 @@ return { [1]="attack_lightning_damage_%_to_convert_to_chaos" } }, - [4714]={ + [4789]={ [1]={ [1]={ limit={ @@ -108334,7 +109966,7 @@ return { [1]="attack_mana_cost_+%" } }, - [4715]={ + [4790]={ [1]={ [1]={ limit={ @@ -108355,7 +109987,7 @@ return { [2]="attack_maximum_added_fire_damage_per_10_strength" } }, - [4716]={ + [4791]={ [1]={ [1]={ limit={ @@ -108376,7 +110008,7 @@ return { [2]="local_maximum_added_fire_damage_vs_bleeding_enemies" } }, - [4717]={ + [4792]={ [1]={ [1]={ limit={ @@ -108397,7 +110029,7 @@ return { [2]="attack_maximum_added_lightning_damage_per_10_dex" } }, - [4718]={ + [4793]={ [1]={ [1]={ limit={ @@ -108418,7 +110050,7 @@ return { [2]="attack_maximum_added_lightning_damage_per_10_int" } }, - [4719]={ + [4794]={ [1]={ [1]={ limit={ @@ -108439,7 +110071,7 @@ return { [2]="attack_maximum_added_lightning_damage_per_200_accuracy_rating" } }, - [4720]={ + [4795]={ [1]={ [1]={ limit={ @@ -108460,7 +110092,7 @@ return { [2]="attack_maximum_added_physical_damage_if_have_crit_recently" } }, - [4721]={ + [4796]={ [1]={ [1]={ limit={ @@ -108481,7 +110113,7 @@ return { [2]="attack_maximum_added_physical_damage_per_25_strength" } }, - [4722]={ + [4797]={ [1]={ [1]={ limit={ @@ -108502,7 +110134,7 @@ return { [2]="attack_maximum_added_physical_damage_per_level" } }, - [4723]={ + [4798]={ [1]={ [1]={ limit={ @@ -108523,7 +110155,7 @@ return { [2]="local_maximum_added_physical_damage_vs_ignited_enemies" } }, - [4724]={ + [4799]={ [1]={ [1]={ limit={ @@ -108539,7 +110171,7 @@ return { [1]="attack_physical_damage_%_to_convert_to_cold" } }, - [4725]={ + [4800]={ [1]={ [1]={ limit={ @@ -108555,7 +110187,7 @@ return { [1]="attack_physical_damage_%_to_convert_to_fire" } }, - [4726]={ + [4801]={ [1]={ [1]={ limit={ @@ -108571,7 +110203,7 @@ return { [1]="attack_physical_damage_%_to_convert_to_lightning" } }, - [4727]={ + [4802]={ [1]={ [1]={ limit={ @@ -108587,7 +110219,7 @@ return { [1]="attack_projectiles_fork" } }, - [4728]={ + [4803]={ [1]={ [1]={ limit={ @@ -108612,7 +110244,7 @@ return { [1]="attack_projectiles_fork_additional_times" } }, - [4729]={ + [4804]={ [1]={ [1]={ limit={ @@ -108637,7 +110269,7 @@ return { [1]="attack_skill_additional_num_projectiles_while_wielding_claws_daggers" } }, - [4730]={ + [4805]={ [1]={ [1]={ limit={ @@ -108666,7 +110298,7 @@ return { [1]="attack_skill_ailment_damage_+%_while_wielding_axes_swords" } }, - [4731]={ + [4806]={ [1]={ [1]={ limit={ @@ -108682,7 +110314,7 @@ return { [1]="attack_skills_have_added_lightning_damage_equal_to_%_of_maximum_mana" } }, - [4732]={ + [4807]={ [1]={ [1]={ [1]={ @@ -108719,7 +110351,7 @@ return { [1]="attack_speed_+%_per_enemy_in_close_range" } }, - [4733]={ + [4808]={ [1]={ [1]={ limit={ @@ -108735,7 +110367,7 @@ return { [1]="attack_speed_+%_per_explicit_map_mod_affecting_area" } }, - [4734]={ + [4809]={ [1]={ [1]={ limit={ @@ -108764,7 +110396,23 @@ return { [1]="attack_speed_+%_per_fortification" } }, - [4735]={ + [4810]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% increased Attack Speed per Minion, up to a maximum of 80%" + } + }, + stats={ + [1]="attack_speed_+%_per_minion_up_to_80%" + } + }, + [4811]={ [1]={ [1]={ limit={ @@ -108793,7 +110441,7 @@ return { [1]="attack_speed_+%_while_in_sand_stance" } }, - [4736]={ + [4812]={ [1]={ [1]={ limit={ @@ -108822,7 +110470,7 @@ return { [1]="attack_speed_+%_final_per_blitz_charge" } }, - [4737]={ + [4813]={ [1]={ [1]={ [1]={ @@ -108859,7 +110507,7 @@ return { [1]="attack_speed_+%_if_cast_a_mark_spell_recently" } }, - [4738]={ + [4814]={ [1]={ [1]={ [1]={ @@ -108896,7 +110544,7 @@ return { [1]="attack_speed_+%_if_enemy_hit_with_main_hand_weapon_recently" } }, - [4739]={ + [4815]={ [1]={ [1]={ [1]={ @@ -108933,7 +110581,7 @@ return { [1]="attack_speed_+%_if_enemy_killed_recently" } }, - [4740]={ + [4816]={ [1]={ [1]={ [1]={ @@ -108970,7 +110618,7 @@ return { [1]="attack_speed_+%_if_have_been_hit_recently" } }, - [4741]={ + [4817]={ [1]={ [1]={ limit={ @@ -108999,7 +110647,7 @@ return { [1]="attack_speed_+%_if_have_blocked_recently" } }, - [4742]={ + [4818]={ [1]={ [1]={ [1]={ @@ -109036,7 +110684,7 @@ return { [1]="attack_speed_+%_if_have_crit_recently" } }, - [4743]={ + [4819]={ [1]={ [1]={ [1]={ @@ -109073,7 +110721,7 @@ return { [1]="attack_speed_+%_if_havent_cast_dash_recently" } }, - [4744]={ + [4820]={ [1]={ [1]={ [1]={ @@ -109110,7 +110758,7 @@ return { [1]="attack_speed_+%_if_not_gained_frenzy_charge_recently" } }, - [4745]={ + [4821]={ [1]={ [1]={ limit={ @@ -109139,7 +110787,7 @@ return { [1]="attack_speed_+%_if_rare_or_unique_enemy_nearby" } }, - [4746]={ + [4822]={ [1]={ [1]={ limit={ @@ -109168,7 +110816,7 @@ return { [1]="attack_speed_+%_if_you_have_at_least_600_strength" } }, - [4747]={ + [4823]={ [1]={ [1]={ limit={ @@ -109184,7 +110832,7 @@ return { [1]="attack_speed_+%_per_25_dex" } }, - [4748]={ + [4824]={ [1]={ [1]={ limit={ @@ -109200,7 +110848,7 @@ return { [1]="attack_speed_+%_per_rage" } }, - [4749]={ + [4825]={ [1]={ [1]={ limit={ @@ -109229,7 +110877,7 @@ return { [1]="attack_speed_+%_while_affected_by_precision" } }, - [4750]={ + [4826]={ [1]={ [1]={ limit={ @@ -109258,7 +110906,7 @@ return { [1]="attack_speed_+%_while_chilled" } }, - [4751]={ + [4827]={ [1]={ [1]={ limit={ @@ -109287,7 +110935,7 @@ return { [1]="attack_speed_+%_while_not_on_low_mana" } }, - [4752]={ + [4828]={ [1]={ [1]={ [1]={ @@ -109324,7 +110972,7 @@ return { [1]="attack_speed_+%_while_phasing" } }, - [4753]={ + [4829]={ [1]={ [1]={ limit={ @@ -109353,7 +111001,7 @@ return { [1]="attack_speed_+%_with_channelling_skills" } }, - [4754]={ + [4830]={ [1]={ [1]={ limit={ @@ -109378,7 +111026,7 @@ return { [1]="steel_ammo_consumed_per_use_with_attacks_that_fire_projectiles" } }, - [4755]={ + [4831]={ [1]={ [1]={ [1]={ @@ -109398,7 +111046,7 @@ return { [1]="attacks_bleed_on_hit_while_you_have_cat_stealth" } }, - [4756]={ + [4832]={ [1]={ [1]={ [1]={ @@ -109418,7 +111066,7 @@ return { [1]="attacks_cause_bleeding_vs_cursed_enemies" } }, - [4757]={ + [4833]={ [1]={ [1]={ [1]={ @@ -109438,7 +111086,7 @@ return { [1]="local_chance_bleed_on_hit_%_vs_ignited_enemies" } }, - [4758]={ + [4834]={ [1]={ [1]={ [1]={ @@ -109458,7 +111106,7 @@ return { [1]="attacks_chance_to_bleed_25%_vs_cursed_enemies" } }, - [4759]={ + [4835]={ [1]={ [1]={ [1]={ @@ -109478,7 +111126,7 @@ return { [1]="attacks_chance_to_bleed_on_hit_%_vs_taunted_enemies" } }, - [4760]={ + [4836]={ [1]={ [1]={ [1]={ @@ -109511,7 +111159,7 @@ return { [1]="attacks_chance_to_blind_on_hit_%" } }, - [4761]={ + [4837]={ [1]={ [1]={ [1]={ @@ -109544,7 +111192,7 @@ return { [1]="attacks_chance_to_taunt_on_hit_%" } }, - [4762]={ + [4838]={ [1]={ [1]={ [1]={ @@ -109564,7 +111212,7 @@ return { [1]="attacks_corrosion_on_hit_%" } }, - [4763]={ + [4839]={ [1]={ [1]={ [1]={ @@ -109597,7 +111245,7 @@ return { [1]="attacks_impale_on_hit_%_chance" } }, - [4764]={ + [4840]={ [1]={ [1]={ [1]={ @@ -109617,7 +111265,7 @@ return { [1]="attacks_inflict_unnerve_on_crit" } }, - [4765]={ + [4841]={ [1]={ [1]={ [1]={ @@ -109650,7 +111298,7 @@ return { [1]="attacks_intimidate_on_hit_%" } }, - [4766]={ + [4842]={ [1]={ [1]={ limit={ @@ -109666,7 +111314,7 @@ return { [1]="attacks_with_this_weapon_maximum_es_%_to_add_as_cold_damage" } }, - [4767]={ + [4843]={ [1]={ [1]={ limit={ @@ -109682,7 +111330,7 @@ return { [1]="attacks_with_this_weapon_maximum_mana_%_to_add_as_fire_damage" } }, - [4768]={ + [4844]={ [1]={ [1]={ [1]={ @@ -109707,7 +111355,7 @@ return { [2]="attacks_with_this_weapon_maximum_added_chaos_damage_per_10_of_your_lowest_attribute" } }, - [4769]={ + [4845]={ [1]={ [1]={ limit={ @@ -109728,7 +111376,7 @@ return { [2]="attacks_with_this_weapon_maximum_added_cold_damage_per_10_dexterity" } }, - [4770]={ + [4846]={ [1]={ [1]={ [1]={ @@ -109748,7 +111396,7 @@ return { [1]="attacks_with_two_handed_weapons_impale_on_hit_%_chance" } }, - [4771]={ + [4847]={ [1]={ [1]={ limit={ @@ -109777,7 +111425,7 @@ return { [1]="attribute_requirement_+%_for_equipped_armour" } }, - [4772]={ + [4848]={ [1]={ [1]={ limit={ @@ -109806,7 +111454,7 @@ return { [1]="attribute_requirement_+%_for_equipped_weapons" } }, - [4773]={ + [4849]={ [1]={ [1]={ limit={ @@ -109835,7 +111483,7 @@ return { [1]="aura_effect_on_self_from_skills_+%_per_herald_effecting_you" } }, - [4774]={ + [4850]={ [1]={ [1]={ limit={ @@ -109864,7 +111512,7 @@ return { [1]="aura_effect_+%_on_self_from_allied_auras" } }, - [4775]={ + [4851]={ [1]={ [1]={ [1]={ @@ -109901,7 +111549,7 @@ return { [1]="auras_grant_life_mana_es_recovery_rate_+%_to_you_and_your_allies" } }, - [4776]={ + [4852]={ [1]={ [1]={ [1]={ @@ -109921,7 +111569,7 @@ return { [1]="avians_flight_duration_ms_+" } }, - [4777]={ + [4853]={ [1]={ [1]={ [1]={ @@ -109941,7 +111589,7 @@ return { [1]="avians_might_duration_ms_+" } }, - [4778]={ + [4854]={ [1]={ [1]={ [1]={ @@ -109961,7 +111609,7 @@ return { [1]="avoid_ailments_%_from_crit" } }, - [4779]={ + [4855]={ [1]={ [1]={ limit={ @@ -109977,7 +111625,7 @@ return { [1]="avoid_ailments_%_while_holding_shield" } }, - [4780]={ + [4856]={ [1]={ [1]={ limit={ @@ -109993,7 +111641,7 @@ return { [1]="avoid_all_elemental_ailment_%_per_summoned_golem" } }, - [4781]={ + [4857]={ [1]={ [1]={ limit={ @@ -110018,7 +111666,7 @@ return { [1]="avoid_chained_projectile_%_chance" } }, - [4782]={ + [4858]={ [1]={ [1]={ limit={ @@ -110034,7 +111682,7 @@ return { [1]="avoid_chill_freeze_while_casting_%" } }, - [4783]={ + [4859]={ [1]={ [1]={ limit={ @@ -110050,7 +111698,40 @@ return { [1]="avoid_corrupted_blood_%_chance" } }, - [4784]={ + [4860]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextChanceToAvoidDamageMax" + }, + limit={ + [1]={ + [1]=1, + [2]=99 + } + }, + text="{0}% chance to Avoid All Damage from Hits" + }, + [2]={ + [1]={ + k="reminderstring", + v="ReminderTextChanceToAvoidDamageMax" + }, + limit={ + [1]={ + [1]=100, + [2]="#" + } + }, + text="Avoid All Damage from Hits" + } + }, + stats={ + [1]="avoid_damage_%" + } + }, + [4861]={ [1]={ [1]={ [1]={ @@ -110070,7 +111751,7 @@ return { [1]="avoid_elemental_ailments_%_while_affected_by_elusive" } }, - [4785]={ + [4862]={ [1]={ [1]={ [1]={ @@ -110090,7 +111771,7 @@ return { [1]="avoid_elemental_ailments_%_while_phasing" } }, - [4786]={ + [4863]={ [1]={ [1]={ [1]={ @@ -110110,7 +111791,7 @@ return { [1]="avoid_elemental_damage_chance_%_during_soul_gain_prevention" } }, - [4787]={ + [4864]={ [1]={ [1]={ [1]={ @@ -110130,7 +111811,7 @@ return { [1]="avoid_elemental_damage_while_phasing_%" } }, - [4788]={ + [4865]={ [1]={ [1]={ limit={ @@ -110146,7 +111827,7 @@ return { [1]="avoid_freeze_and_chill_%_if_you_have_used_a_fire_skill_recently" } }, - [4789]={ + [4866]={ [1]={ [1]={ limit={ @@ -110171,7 +111852,7 @@ return { [1]="avoid_impale_%" } }, - [4790]={ + [4867]={ [1]={ [1]={ limit={ @@ -110196,7 +111877,7 @@ return { [1]="avoid_maim_%_chance" } }, - [4791]={ + [4868]={ [1]={ [1]={ [1]={ @@ -110216,7 +111897,7 @@ return { [1]="avoid_non_damaging_ailments_%_per_missing_barkskin_stack" } }, - [4792]={ + [4869]={ [1]={ [1]={ limit={ @@ -110232,7 +111913,7 @@ return { [1]="avoid_physical_damage_%_while_phasing" } }, - [4793]={ + [4870]={ [1]={ [1]={ [1]={ @@ -110252,7 +111933,7 @@ return { [1]="avoid_projectiles_%_chance_if_taken_projectile_damage_recently" } }, - [4794]={ + [4871]={ [1]={ [1]={ limit={ @@ -110268,7 +111949,7 @@ return { [1]="avoid_projectiles_while_phasing_%_chance" } }, - [4795]={ + [4872]={ [1]={ [1]={ limit={ @@ -110284,7 +111965,7 @@ return { [1]="avoid_shock_%_while_chilled" } }, - [4796]={ + [4873]={ [1]={ [1]={ limit={ @@ -110300,7 +111981,7 @@ return { [1]="avoid_stun_35%_per_active_herald" } }, - [4797]={ + [4874]={ [1]={ [1]={ limit={ @@ -110316,7 +111997,7 @@ return { [1]="avoid_stun_%_while_channeling_snipe" } }, - [4798]={ + [4875]={ [1]={ [1]={ limit={ @@ -110332,7 +112013,7 @@ return { [1]="avoid_stun_%_while_channelling" } }, - [4799]={ + [4876]={ [1]={ [1]={ limit={ @@ -110348,7 +112029,7 @@ return { [1]="avoid_stun_%_while_holding_shield" } }, - [4800]={ + [4877]={ [1]={ [1]={ [1]={ @@ -110385,7 +112066,7 @@ return { [1]="axe_mastery_hit_and_ailment_damage_+%_final_vs_enemies_on_low_life" } }, - [4801]={ + [4878]={ [1]={ [1]={ limit={ @@ -110414,7 +112095,7 @@ return { [1]="azmeri_primalist_wisps_found_+%" } }, - [4802]={ + [4879]={ [1]={ [1]={ limit={ @@ -110443,7 +112124,7 @@ return { [1]="azmeri_voodoo_shaman_wisps_found_+%" } }, - [4803]={ + [4880]={ [1]={ [1]={ limit={ @@ -110472,7 +112153,7 @@ return { [1]="azmeri_warden_wisps_found_+%" } }, - [4804]={ + [4881]={ [1]={ [1]={ limit={ @@ -110497,7 +112178,7 @@ return { [1]="ball_lightning_number_of_additional_projectiles" } }, - [4805]={ + [4882]={ [1]={ [1]={ limit={ @@ -110526,7 +112207,7 @@ return { [1]="banner_affected_enemies_damage_taken_+%" } }, - [4806]={ + [4883]={ [1]={ [1]={ limit={ @@ -110542,7 +112223,7 @@ return { [1]="banner_affected_enemies_explode_for_10%_life_as_physical_on_kill_chance_%" } }, - [4807]={ + [4884]={ [1]={ [1]={ [1]={ @@ -110562,7 +112243,7 @@ return { [1]="banner_affected_enemies_maimed" } }, - [4808]={ + [4885]={ [1]={ [1]={ limit={ @@ -110591,7 +112272,7 @@ return { [1]="banner_area_of_effect_+%" } }, - [4809]={ + [4886]={ [1]={ [1]={ [1]={ @@ -110611,7 +112292,7 @@ return { [1]="banner_buff_lingers_for_X_seconds_after_leaving_area" } }, - [4810]={ + [4887]={ [1]={ [1]={ limit={ @@ -110640,7 +112321,7 @@ return { [1]="banner_duration_+%" } }, - [4811]={ + [4888]={ [1]={ [1]={ limit={ @@ -110665,7 +112346,7 @@ return { [1]="banner_gain_X_endurance_charges_when_placed_with_max_resources" } }, - [4812]={ + [4889]={ [1]={ [1]={ limit={ @@ -110690,7 +112371,7 @@ return { [1]="banner_gain_X_frenzy_charges_when_placed_with_max_resources" } }, - [4813]={ + [4890]={ [1]={ [1]={ [1]={ @@ -110723,7 +112404,7 @@ return { [1]="banner_gain_X_resources_on_warcry" } }, - [4814]={ + [4891]={ [1]={ [1]={ limit={ @@ -110752,7 +112433,7 @@ return { [1]="banner_mana_reservation_+%" } }, - [4815]={ + [4892]={ [1]={ [1]={ limit={ @@ -110768,7 +112449,7 @@ return { [1]="banner_recover_X%_life_when_placed_per_5_resources" } }, - [4816]={ + [4893]={ [1]={ [1]={ [1]={ @@ -110788,7 +112469,7 @@ return { [1]="banner_remove_random_ailment_when_placed_with_X_resources" } }, - [4817]={ + [4894]={ [1]={ [1]={ limit={ @@ -110804,7 +112485,7 @@ return { [1]="banner_resist_all_elements_%" } }, - [4818]={ + [4895]={ [1]={ [1]={ [1]={ @@ -110849,7 +112530,7 @@ return { [1]="banner_resource_gained_+%" } }, - [4819]={ + [4896]={ [1]={ [1]={ [1]={ @@ -110873,7 +112554,7 @@ return { [1]="banner_resource_maximum_+" } }, - [4820]={ + [4897]={ [1]={ [1]={ [1]={ @@ -110906,7 +112587,7 @@ return { [1]="banner_skills_mana_reservation_efficiency_-2%_per_1" } }, - [4821]={ + [4898]={ [1]={ [1]={ limit={ @@ -110935,7 +112616,7 @@ return { [1]="banner_skills_mana_reservation_efficiency_+%" } }, - [4822]={ + [4899]={ [1]={ [1]={ limit={ @@ -110951,7 +112632,7 @@ return { [1]="banner_skills_reserve_no_mana" } }, - [4823]={ + [4900]={ [1]={ [1]={ limit={ @@ -110980,7 +112661,7 @@ return { [1]="barrage_and_frenzy_critical_strike_chance_+%_per_endurance_charge" } }, - [4824]={ + [4901]={ [1]={ [1]={ limit={ @@ -111009,7 +112690,7 @@ return { [1]="basalt_flask_armour_+%_final" } }, - [4825]={ + [4902]={ [1]={ [1]={ [1]={ @@ -111046,7 +112727,7 @@ return { [1]="base_ailment_damage_+%" } }, - [4826]={ + [4903]={ [1]={ [1]={ [1]={ @@ -111083,7 +112764,7 @@ return { [1]="base_all_ailment_duration_on_self_+%" } }, - [4827]={ + [4904]={ [1]={ [1]={ [1]={ @@ -111103,7 +112784,7 @@ return { [1]="base_always_inflict_elemental_ailments_you_are_suffering_from" } }, - [4828]={ + [4905]={ [1]={ [1]={ limit={ @@ -111119,7 +112800,7 @@ return { [1]="base_armour_%_applies_to_chaos_damage" } }, - [4829]={ + [4906]={ [1]={ [1]={ limit={ @@ -111135,7 +112816,7 @@ return { [1]="base_armour_applies_to_chaos_damage" } }, - [4830]={ + [4907]={ [1]={ [1]={ limit={ @@ -111151,7 +112832,7 @@ return { [1]="base_armour_applies_to_lightning_damage" } }, - [4831]={ + [4908]={ [1]={ [1]={ limit={ @@ -111167,7 +112848,7 @@ return { [1]="base_arrows_always_pierce" } }, - [4832]={ + [4909]={ [1]={ [1]={ [1]={ @@ -111200,7 +112881,7 @@ return { [1]="base_attack_block_luck" } }, - [4833]={ + [4910]={ [1]={ [1]={ limit={ @@ -111216,7 +112897,7 @@ return { [1]="base_aura_skills_affecting_allies_also_affect_enemies" } }, - [4834]={ + [4911]={ [1]={ [1]={ limit={ @@ -111241,7 +112922,7 @@ return { [1]="base_avoid_projectiles_%_chance" } }, - [4835]={ + [4912]={ [1]={ [1]={ limit={ @@ -111270,7 +112951,7 @@ return { [1]="base_bleed_duration_+%" } }, - [4836]={ + [4913]={ [1]={ [1]={ [1]={ @@ -111303,7 +112984,7 @@ return { [1]="base_block_luck" } }, - [4837]={ + [4914]={ [1]={ [1]={ limit={ @@ -111319,7 +113000,7 @@ return { [1]="base_block_%_damage_taken" } }, - [4838]={ + [4915]={ [1]={ [1]={ limit={ @@ -111348,7 +113029,7 @@ return { [1]="base_bone_golem_granted_buff_effect_+%" } }, - [4839]={ + [4916]={ [1]={ [1]={ limit={ @@ -111364,7 +113045,7 @@ return { [1]="base_cannot_gain_endurance_charges" } }, - [4840]={ + [4917]={ [1]={ [1]={ limit={ @@ -111380,7 +113061,7 @@ return { [1]="base_cannot_leech_energy_shield" } }, - [4841]={ + [4918]={ [1]={ [1]={ limit={ @@ -111405,7 +113086,7 @@ return { [1]="base_chance_to_deal_triple_damage_%" } }, - [4842]={ + [4919]={ [1]={ [1]={ limit={ @@ -111421,7 +113102,7 @@ return { [1]="base_chaos_damage_can_ignite" } }, - [4843]={ + [4920]={ [1]={ [1]={ limit={ @@ -111437,7 +113118,7 @@ return { [1]="base_chaos_damage_damages_energy_shield_%" } }, - [4844]={ + [4921]={ [1]={ [1]={ limit={ @@ -111466,7 +113147,7 @@ return { [1]="base_charge_duration_+%" } }, - [4845]={ + [4922]={ [1]={ [1]={ limit={ @@ -111491,7 +113172,7 @@ return { [1]="base_cooldown_refresh_chance_%" } }, - [4846]={ + [4923]={ [1]={ [1]={ limit={ @@ -111520,7 +113201,7 @@ return { [1]="base_cooldown_speed_+%" } }, - [4847]={ + [4924]={ [1]={ [1]={ limit={ @@ -111536,7 +113217,7 @@ return { [1]="base_damage_bypass_ward_%" } }, - [4848]={ + [4925]={ [1]={ [1]={ limit={ @@ -111552,7 +113233,7 @@ return { [1]="base_deal_no_chaos_damage" } }, - [4849]={ + [4926]={ [1]={ [1]={ limit={ @@ -111568,7 +113249,7 @@ return { [1]="base_deal_no_fire_damage" } }, - [4850]={ + [4927]={ [1]={ [1]={ limit={ @@ -111584,7 +113265,7 @@ return { [1]="base_deal_no_lightning_damage" } }, - [4851]={ + [4928]={ [1]={ [1]={ limit={ @@ -111600,7 +113281,7 @@ return { [1]="base_elemental_skill_gem_level_+_if_6_unique_influence_amoung_equipped_non_amulet_items" } }, - [4852]={ + [4929]={ [1]={ [1]={ limit={ @@ -111616,7 +113297,40 @@ return { [1]="base_elemental_support_gem_level_+_if_6_unique_influence_amoung_equipped_non_amulet_items" } }, - [4853]={ + [4930]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextLucky" + }, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Damage of Enemies Hitting you is Lucky" + }, + [2]={ + [1]={ + k="reminderstring", + v="ReminderTextUnlucky" + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Damage of Enemies Hitting you is Unlucky" + } + }, + stats={ + [1]="base_enemy_extra_damage_rolls" + } + }, + [4931]={ [1]={ [1]={ [1]={ @@ -111640,7 +113354,7 @@ return { [1]="base_energy_shield_leech_from_chaos_damage_permyriad" } }, - [4854]={ + [4932]={ [1]={ [1]={ [1]={ @@ -111664,7 +113378,7 @@ return { [1]="base_energy_shield_leech_from_cold_damage_permyriad" } }, - [4855]={ + [4933]={ [1]={ [1]={ [1]={ @@ -111688,7 +113402,7 @@ return { [1]="base_energy_shield_leech_from_elemental_damage_permyriad" } }, - [4856]={ + [4934]={ [1]={ [1]={ [1]={ @@ -111712,7 +113426,7 @@ return { [1]="base_energy_shield_leech_from_fire_damage_permyriad" } }, - [4857]={ + [4935]={ [1]={ [1]={ [1]={ @@ -111736,7 +113450,7 @@ return { [1]="base_energy_shield_leech_from_lightning_damage_permyriad" } }, - [4858]={ + [4936]={ [1]={ [1]={ [1]={ @@ -111760,7 +113474,7 @@ return { [1]="base_energy_shield_leech_from_physical_damage_permyriad" } }, - [4859]={ + [4937]={ [1]={ [1]={ limit={ @@ -111785,7 +113499,7 @@ return { [1]="base_extra_damage_rolls" } }, - [4860]={ + [4938]={ [1]={ [1]={ limit={ @@ -111814,7 +113528,31 @@ return { [1]="base_frozen_effect_on_self_+%" } }, - [4861]={ + [4939]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds", + v=1 + }, + [2]={ + k="reminderstring", + v="ReminderTextGhostTotems" + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Totems which would be killed by Enemies become Spectral Totems for {0} seconds instead" + } + }, + stats={ + [1]="base_ghost_totem_duration" + } + }, + [4940]={ [1]={ [1]={ [1]={ @@ -111834,7 +113572,7 @@ return { [1]="base_immune_to_cold_ailments" } }, - [4862]={ + [4941]={ [1]={ [1]={ limit={ @@ -111850,7 +113588,7 @@ return { [1]="base_immune_to_freeze" } }, - [4863]={ + [4942]={ [1]={ [1]={ limit={ @@ -111866,7 +113604,7 @@ return { [1]="base_immune_to_ignite" } }, - [4864]={ + [4943]={ [1]={ [1]={ limit={ @@ -111882,7 +113620,7 @@ return { [1]="base_immune_to_shock" } }, - [4865]={ + [4944]={ [1]={ [1]={ [1]={ @@ -111915,7 +113653,7 @@ return { [1]="base_inflict_cold_exposure_on_hit_%_chance" } }, - [4866]={ + [4945]={ [1]={ [1]={ [1]={ @@ -111948,7 +113686,7 @@ return { [1]="base_inflict_fire_exposure_on_hit_%_chance" } }, - [4867]={ + [4946]={ [1]={ [1]={ [1]={ @@ -111981,7 +113719,7 @@ return { [1]="base_inflict_lightning_exposure_on_hit_%_chance" } }, - [4868]={ + [4947]={ [1]={ [1]={ limit={ @@ -111997,7 +113735,7 @@ return { [1]="base_life_leech_applies_recovery_to_energy_shield" } }, - [4869]={ + [4948]={ [1]={ [1]={ [1]={ @@ -112017,7 +113755,7 @@ return { [1]="base_main_hand_maim_on_hit_%" } }, - [4870]={ + [4949]={ [1]={ [1]={ limit={ @@ -112033,7 +113771,7 @@ return { [1]="base_max_fortification" } }, - [4871]={ + [4950]={ [1]={ [1]={ limit={ @@ -112062,7 +113800,7 @@ return { [1]="base_minion_duration_+%" } }, - [4872]={ + [4951]={ [1]={ [1]={ limit={ @@ -112078,7 +113816,7 @@ return { [1]="base_number_of_champions_of_light_allowed" } }, - [4873]={ + [4952]={ [1]={ [1]={ limit={ @@ -112103,7 +113841,7 @@ return { [1]="base_number_of_herald_scorpions_allowed" } }, - [4874]={ + [4953]={ [1]={ [1]={ limit={ @@ -112119,7 +113857,7 @@ return { [1]="base_number_of_relics_allowed" } }, - [4875]={ + [4954]={ [1]={ [1]={ limit={ @@ -112135,7 +113873,7 @@ return { [1]="base_number_of_sacred_wisps_allowed" } }, - [4876]={ + [4955]={ [1]={ [1]={ limit={ @@ -112160,7 +113898,7 @@ return { [1]="base_number_of_sigils_allowed_per_target" } }, - [4877]={ + [4956]={ [1]={ [1]={ limit={ @@ -112176,7 +113914,7 @@ return { [1]="base_number_of_support_ghosts_allowed" } }, - [4878]={ + [4957]={ [1]={ [1]={ [1]={ @@ -112196,7 +113934,7 @@ return { [1]="base_off_hand_chance_to_blind_on_hit_%" } }, - [4879]={ + [4958]={ [1]={ [1]={ [1]={ @@ -112229,7 +113967,7 @@ return { [1]="base_onlsaught_on_hit_%_chance" } }, - [4880]={ + [4959]={ [1]={ [1]={ limit={ @@ -112258,7 +113996,7 @@ return { [1]="base_physical_damage_over_time_taken_+%" } }, - [4881]={ + [4960]={ [1]={ [1]={ limit={ @@ -112274,7 +114012,7 @@ return { [1]="base_physical_damage_%_to_convert_to_chaos_per_level" } }, - [4882]={ + [4961]={ [1]={ [1]={ limit={ @@ -112290,7 +114028,7 @@ return { [1]="base_physical_damage_%_to_convert_to_cold_while_affected_by_hatred" } }, - [4883]={ + [4962]={ [1]={ [1]={ limit={ @@ -112306,7 +114044,7 @@ return { [1]="base_physical_damage_%_to_convert_to_fire_while_affected_by_anger" } }, - [4884]={ + [4963]={ [1]={ [1]={ limit={ @@ -112322,7 +114060,7 @@ return { [1]="base_physical_damage_%_to_convert_to_lightning_while_affected_by_wrath" } }, - [4885]={ + [4964]={ [1]={ [1]={ limit={ @@ -112338,7 +114076,7 @@ return { [1]="base_skill_cost_life_instead_of_mana_%" } }, - [4886]={ + [4965]={ [1]={ [1]={ limit={ @@ -112354,7 +114092,7 @@ return { [1]="base_skill_gain_es_cost_%_of_mana_cost" } }, - [4887]={ + [4966]={ [1]={ [1]={ limit={ @@ -112370,7 +114108,7 @@ return { [1]="base_skill_gain_life_cost_%_of_mana_cost" } }, - [4888]={ + [4967]={ [1]={ [1]={ limit={ @@ -112386,7 +114124,7 @@ return { [1]="base_skills_cost_es_instead_of_mana_life" } }, - [4889]={ + [4968]={ [1]={ [1]={ limit={ @@ -112402,7 +114140,7 @@ return { [1]="base_spell_critical_chance_equal_to_the_critical_strike_chance_of_main_weapon" } }, - [4890]={ + [4969]={ [1]={ [1]={ limit={ @@ -112418,7 +114156,7 @@ return { [1]="base_spell_projectile_block_%" } }, - [4891]={ + [4970]={ [1]={ [1]={ limit={ @@ -112447,7 +114185,7 @@ return { [1]="base_tincture_mod_effect_+%" } }, - [4892]={ + [4971]={ [1]={ [1]={ limit={ @@ -112472,7 +114210,27 @@ return { [1]="base_total_number_of_sigils_allowed" } }, - [4893]={ + [4972]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextUnaffectedBy" + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Unaffected by Bleeding" + } + }, + stats={ + [1]="base_unaffected_by_bleeding" + } + }, + [4973]={ [1]={ [1]={ [1]={ @@ -112492,7 +114250,7 @@ return { [1]="base_unaffected_by_poison" } }, - [4894]={ + [4974]={ [1]={ [1]={ limit={ @@ -112521,7 +114279,7 @@ return { [1]="base_weapon_trap_rotation_speed_+%" } }, - [4895]={ + [4975]={ [1]={ [1]={ [1]={ @@ -112546,7 +114304,7 @@ return { [2]="quality_display_blade_trap_is_gem" } }, - [4896]={ + [4976]={ [1]={ [1]={ limit={ @@ -112562,7 +114320,7 @@ return { [1]="base_your_auras_are_disabled" } }, - [4897]={ + [4977]={ [1]={ [1]={ limit={ @@ -112591,7 +114349,7 @@ return { [1]="battlemages_cry_buff_effect_+%" } }, - [4898]={ + [4978]={ [1]={ [1]={ limit={ @@ -112616,7 +114374,39 @@ return { [1]="battlemages_cry_exerts_x_additional_attacks" } }, - [4899]={ + [4979]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% chance for Mysterious Wombgifts to Birth an additional Item" + } + }, + stats={ + [1]="brequel_misc_fruit_additional_item_%" + } + }, + [4980]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% increased chance for Birthed Uniques to be Breach Specific" + } + }, + stats={ + [1]="brequel_unique_fruit_special_unique_chance_+%" + } + }, + [4981]={ [1]={ [1]={ limit={ @@ -112632,7 +114422,7 @@ return { [1]="bear_and_siphoning_trap_debuff_grants_-%_cooldown_speed" } }, - [4900]={ + [4982]={ [1]={ [1]={ limit={ @@ -112661,7 +114451,7 @@ return { [1]="bear_trap_additional_damage_taken_+%_from_traps_and_mines" } }, - [4901]={ + [4983]={ [1]={ [1]={ limit={ @@ -112690,7 +114480,7 @@ return { [1]="bear_trap_damage_taken_+%_from_traps_and_mines" } }, - [4902]={ + [4984]={ [1]={ [1]={ limit={ @@ -112719,7 +114509,7 @@ return { [1]="bear_trap_movement_speed_+%_final" } }, - [4903]={ + [4985]={ [1]={ [1]={ limit={ @@ -112748,7 +114538,7 @@ return { [1]="belt_enchant_enemies_you_taunt_have_area_damage_+%_final" } }, - [4904]={ + [4986]={ [1]={ [1]={ limit={ @@ -112777,7 +114567,7 @@ return { [1]="berserk_buff_effect_+%" } }, - [4905]={ + [4987]={ [1]={ [1]={ limit={ @@ -112806,7 +114596,7 @@ return { [1]="berserk_rage_loss_+%" } }, - [4906]={ + [4988]={ [1]={ [1]={ [1]={ @@ -112830,7 +114620,7 @@ return { [1]="berserker_gain_rage_on_attack_hit_cooldown_ms" } }, - [4907]={ + [4989]={ [1]={ [1]={ [1]={ @@ -112850,7 +114640,7 @@ return { [1]="berserker_warcry_grant_X_rage_per_5_power_while_less_than_25_rage" } }, - [4908]={ + [4990]={ [1]={ [1]={ [1]={ @@ -112870,7 +114660,7 @@ return { [1]="berserker_warcry_grant_attack_speed_+%_to_you_and_nearby_allies" } }, - [4909]={ + [4991]={ [1]={ [1]={ [1]={ @@ -112890,7 +114680,7 @@ return { [1]="berserker_warcry_grant_damage_+%_to_you_and_nearby_allies" } }, - [4910]={ + [4992]={ [1]={ [1]={ [1]={ @@ -112923,7 +114713,7 @@ return { [1]="berserker_warcry_sacrifice_25_rage_for_more_empowered_attack_damage_for_4_seconds_+%_final" } }, - [4911]={ + [4993]={ [1]={ [1]={ limit={ @@ -112939,7 +114729,7 @@ return { [1]="bird_aspect_reserves_no_mana" } }, - [4912]={ + [4994]={ [1]={ [1]={ limit={ @@ -112968,7 +114758,7 @@ return { [1]="blackhole_damage_taken_+%" } }, - [4913]={ + [4995]={ [1]={ [1]={ limit={ @@ -112997,7 +114787,7 @@ return { [1]="blackhole_pulse_frequency_+%" } }, - [4914]={ + [4996]={ [1]={ [1]={ limit={ @@ -113026,7 +114816,7 @@ return { [1]="blackstar_moonlight_cold_damage_taken_+%_final" } }, - [4915]={ + [4997]={ [1]={ [1]={ limit={ @@ -113055,7 +114845,7 @@ return { [1]="blackstar_moonlight_fire_damage_taken_+%_final" } }, - [4916]={ + [4998]={ [1]={ [1]={ limit={ @@ -113084,7 +114874,7 @@ return { [1]="blackstar_sunlight_cold_damage_taken_+%_final" } }, - [4917]={ + [4999]={ [1]={ [1]={ limit={ @@ -113113,7 +114903,7 @@ return { [1]="blackstar_sunlight_fire_damage_taken_+%_final" } }, - [4918]={ + [5000]={ [1]={ [1]={ limit={ @@ -113142,7 +114932,7 @@ return { [1]="blade_blase_damage_+%" } }, - [4919]={ + [5001]={ [1]={ [1]={ limit={ @@ -113171,7 +114961,7 @@ return { [1]="blade_blast_skill_area_of_effect_+%" } }, - [4920]={ + [5002]={ [1]={ [1]={ limit={ @@ -113200,7 +114990,7 @@ return { [1]="blade_blast_trigger_detonation_area_of_effect_+%" } }, - [4921]={ + [5003]={ [1]={ [1]={ limit={ @@ -113229,7 +115019,7 @@ return { [1]="blade_trap_damage_+%" } }, - [4922]={ + [5004]={ [1]={ [1]={ limit={ @@ -113258,7 +115048,7 @@ return { [1]="blade_trap_skill_area_of_effect_+%" } }, - [4923]={ + [5005]={ [1]={ [1]={ limit={ @@ -113287,7 +115077,7 @@ return { [1]="blade_trap_skill_area_of_effect_+%_final" } }, - [4924]={ + [5006]={ [1]={ [1]={ [1]={ @@ -113320,7 +115110,7 @@ return { [1]="blade_vortex_blade_blast_impale_on_hit_%_chance" } }, - [4925]={ + [5007]={ [1]={ [1]={ limit={ @@ -113336,7 +115126,7 @@ return { [1]="blade_vortex_blade_deal_no_non_physical_damage" } }, - [4926]={ + [5008]={ [1]={ [1]={ limit={ @@ -113352,7 +115142,7 @@ return { [1]="blade_vortex_critical_strike_multiplier_+_per_blade" } }, - [4927]={ + [5009]={ [1]={ [1]={ limit={ @@ -113386,7 +115176,7 @@ return { [2]="quality_display_bladefall_is_gem" } }, - [4928]={ + [5010]={ [1]={ [1]={ limit={ @@ -113402,7 +115192,7 @@ return { [1]="bladestorm_and_rage_vortex_hinders_and_unnerves_enemies_within" } }, - [4929]={ + [5011]={ [1]={ [1]={ limit={ @@ -113431,7 +115221,7 @@ return { [1]="bladestorm_damage_+%" } }, - [4930]={ + [5012]={ [1]={ [1]={ limit={ @@ -113465,7 +115255,7 @@ return { [2]="quality_display_bladestorm_is_gem" } }, - [4931]={ + [5013]={ [1]={ [1]={ limit={ @@ -113494,7 +115284,7 @@ return { [1]="bladestorm_sandstorm_movement_speed_+%" } }, - [4932]={ + [5014]={ [1]={ [1]={ [1]={ @@ -113514,7 +115304,7 @@ return { [1]="blast_rain_artillery_ballista_all_damage_can_poison" } }, - [4933]={ + [5015]={ [1]={ [1]={ [1]={ @@ -113534,7 +115324,7 @@ return { [1]="blast_rain_artillery_ballista_poison_damage_+100%_final_chance" } }, - [4934]={ + [5016]={ [1]={ [1]={ limit={ @@ -113563,7 +115353,7 @@ return { [1]="blazing_salvo_damage_+%" } }, - [4935]={ + [5017]={ [1]={ [1]={ limit={ @@ -113588,7 +115378,7 @@ return { [1]="blazing_salvo_number_of_additional_projectiles" } }, - [4936]={ + [5018]={ [1]={ [1]={ limit={ @@ -113604,7 +115394,7 @@ return { [1]="blazing_salvo_projectiles_fork_when_passing_a_flame_wall" } }, - [4937]={ + [5019]={ [1]={ [1]={ limit={ @@ -113633,7 +115423,7 @@ return { [1]="bleed_damage_+%_per_endurance_charge" } }, - [4938]={ + [5020]={ [1]={ [1]={ limit={ @@ -113649,7 +115439,7 @@ return { [1]="bleed_dot_multiplier_+_per_impale_on_enemy" } }, - [4939]={ + [5021]={ [1]={ [1]={ [1]={ @@ -113669,7 +115459,7 @@ return { [1]="bleed_dot_multiplier_+_per_rage_if_equipped_axe" } }, - [4940]={ + [5022]={ [1]={ [1]={ limit={ @@ -113698,7 +115488,7 @@ return { [1]="bleeding_damage_+%_vs_maimed_enemies" } }, - [4941]={ + [5023]={ [1]={ [1]={ limit={ @@ -113727,7 +115517,7 @@ return { [1]="bleeding_damage_+%_vs_poisoned_enemies" } }, - [4942]={ + [5024]={ [1]={ [1]={ limit={ @@ -113752,7 +115542,7 @@ return { [1]="bleeding_dot_multiplier_per_frenzy_charge_+" } }, - [4943]={ + [5025]={ [1]={ [1]={ limit={ @@ -113768,7 +115558,7 @@ return { [1]="bleeding_dot_multiplier_+_per_endurance_charge" } }, - [4944]={ + [5026]={ [1]={ [1]={ limit={ @@ -113797,7 +115587,7 @@ return { [1]="bleeding_dot_multiplier_+_vs_poisoned_enemies" } }, - [4945]={ + [5027]={ [1]={ [1]={ limit={ @@ -113826,7 +115616,7 @@ return { [1]="bleeding_on_self_expire_speed_+%_while_moving" } }, - [4946]={ + [5028]={ [1]={ [1]={ [1]={ @@ -113846,7 +115636,7 @@ return { [1]="bleeding_reflected_to_self" } }, - [4947]={ + [5029]={ [1]={ [1]={ limit={ @@ -113862,7 +115652,7 @@ return { [1]="bleeding_stacks_up_to_x_times" } }, - [4948]={ + [5030]={ [1]={ [1]={ limit={ @@ -113878,7 +115668,7 @@ return { [1]="blight_arc_tower_additional_chains" } }, - [4949]={ + [5031]={ [1]={ [1]={ limit={ @@ -113894,7 +115684,7 @@ return { [1]="blight_arc_tower_additional_repeats" } }, - [4950]={ + [5032]={ [1]={ [1]={ limit={ @@ -113910,7 +115700,7 @@ return { [1]="blight_arc_tower_chance_to_sap_%" } }, - [4951]={ + [5033]={ [1]={ [1]={ limit={ @@ -113939,7 +115729,7 @@ return { [1]="blight_arc_tower_damage_+%" } }, - [4952]={ + [5034]={ [1]={ [1]={ limit={ @@ -113968,7 +115758,7 @@ return { [1]="blight_arc_tower_range_+%" } }, - [4953]={ + [5035]={ [1]={ [1]={ limit={ @@ -113984,7 +115774,7 @@ return { [1]="blight_area_of_effect_+%_every_second_while_channelling_up_to_+200%" } }, - [4954]={ + [5036]={ [1]={ [1]={ limit={ @@ -114013,7 +115803,7 @@ return { [1]="blight_cast_speed_+%" } }, - [4955]={ + [5037]={ [1]={ [1]={ [1]={ @@ -114046,7 +115836,7 @@ return { [1]="blight_chilling_tower_chill_effect_+%" } }, - [4956]={ + [5038]={ [1]={ [1]={ limit={ @@ -114075,7 +115865,7 @@ return { [1]="blight_chilling_tower_damage_+%" } }, - [4957]={ + [5039]={ [1]={ [1]={ [1]={ @@ -114108,7 +115898,7 @@ return { [1]="blight_chilling_tower_duration_+%" } }, - [4958]={ + [5040]={ [1]={ [1]={ [1]={ @@ -114132,7 +115922,7 @@ return { [1]="blight_chilling_tower_freeze_for_ms" } }, - [4959]={ + [5041]={ [1]={ [1]={ limit={ @@ -114161,7 +115951,7 @@ return { [1]="blight_chilling_tower_range_+%" } }, - [4960]={ + [5042]={ [1]={ [1]={ limit={ @@ -114190,7 +115980,7 @@ return { [1]="blight_empowering_tower_buff_effect_+%" } }, - [4961]={ + [5043]={ [1]={ [1]={ limit={ @@ -114219,7 +116009,7 @@ return { [1]="blight_empowering_tower_grant_cast_speed_+%" } }, - [4962]={ + [5044]={ [1]={ [1]={ limit={ @@ -114248,7 +116038,7 @@ return { [1]="blight_empowering_tower_grant_damage_+%" } }, - [4963]={ + [5045]={ [1]={ [1]={ limit={ @@ -114273,7 +116063,7 @@ return { [1]="blight_empowering_tower_grant_%_chance_to_deal_double_damage" } }, - [4964]={ + [5046]={ [1]={ [1]={ limit={ @@ -114302,7 +116092,7 @@ return { [1]="blight_empowering_tower_range_+%" } }, - [4965]={ + [5047]={ [1]={ [1]={ limit={ @@ -114327,7 +116117,7 @@ return { [1]="blight_fireball_tower_additional_projectiles_+" } }, - [4966]={ + [5048]={ [1]={ [1]={ limit={ @@ -114356,7 +116146,7 @@ return { [1]="blight_fireball_tower_cast_speed_+%" } }, - [4967]={ + [5049]={ [1]={ [1]={ limit={ @@ -114385,7 +116175,7 @@ return { [1]="blight_fireball_tower_damage_+%" } }, - [4968]={ + [5050]={ [1]={ [1]={ limit={ @@ -114401,7 +116191,7 @@ return { [1]="blight_fireball_tower_projectiles_nova" } }, - [4969]={ + [5051]={ [1]={ [1]={ limit={ @@ -114430,7 +116220,7 @@ return { [1]="blight_fireball_tower_range_+%" } }, - [4970]={ + [5052]={ [1]={ [1]={ limit={ @@ -114459,7 +116249,7 @@ return { [1]="blight_flamethrower_tower_cast_speed_+%" } }, - [4971]={ + [5053]={ [1]={ [1]={ limit={ @@ -114475,7 +116265,7 @@ return { [1]="blight_flamethrower_tower_chance_to_scorch_%" } }, - [4972]={ + [5054]={ [1]={ [1]={ limit={ @@ -114504,7 +116294,7 @@ return { [1]="blight_flamethrower_tower_damage_+%" } }, - [4973]={ + [5055]={ [1]={ [1]={ limit={ @@ -114520,7 +116310,7 @@ return { [1]="blight_flamethrower_tower_full_damage_fire_enemies" } }, - [4974]={ + [5056]={ [1]={ [1]={ limit={ @@ -114549,7 +116339,7 @@ return { [1]="blight_flamethrower_tower_range_+%" } }, - [4975]={ + [5057]={ [1]={ [1]={ limit={ @@ -114565,7 +116355,7 @@ return { [1]="blight_freezebolt_tower_chance_to_brittle_%" } }, - [4976]={ + [5058]={ [1]={ [1]={ limit={ @@ -114594,7 +116384,7 @@ return { [1]="blight_freezebolt_tower_damage_+%" } }, - [4977]={ + [5059]={ [1]={ [1]={ limit={ @@ -114610,7 +116400,7 @@ return { [1]="blight_freezebolt_tower_full_damage_cold_enemies" } }, - [4978]={ + [5060]={ [1]={ [1]={ limit={ @@ -114635,7 +116425,7 @@ return { [1]="blight_freezebolt_tower_projectiles_+" } }, - [4979]={ + [5061]={ [1]={ [1]={ limit={ @@ -114664,7 +116454,7 @@ return { [1]="blight_freezebolt_tower_range_+%" } }, - [4980]={ + [5062]={ [1]={ [1]={ limit={ @@ -114680,7 +116470,7 @@ return { [1]="blight_glacialcage_tower_area_of_effect_+%" } }, - [4981]={ + [5063]={ [1]={ [1]={ limit={ @@ -114709,7 +116499,7 @@ return { [1]="blight_glacialcage_tower_cooldown_recovery_+%" } }, - [4982]={ + [5064]={ [1]={ [1]={ limit={ @@ -114738,7 +116528,7 @@ return { [1]="blight_glacialcage_tower_duration_+%" } }, - [4983]={ + [5065]={ [1]={ [1]={ limit={ @@ -114767,7 +116557,7 @@ return { [1]="blight_glacialcage_tower_enemy_damage_taken_+%" } }, - [4984]={ + [5066]={ [1]={ [1]={ limit={ @@ -114796,7 +116586,7 @@ return { [1]="blight_glacialcage_tower_range_+%" } }, - [4985]={ + [5067]={ [1]={ [1]={ limit={ @@ -114812,7 +116602,7 @@ return { [1]="blight_hinder_enemy_chaos_damage_taken_+%" } }, - [4986]={ + [5068]={ [1]={ [1]={ limit={ @@ -114841,7 +116631,7 @@ return { [1]="blight_imbuing_tower_buff_effect_+%" } }, - [4987]={ + [5069]={ [1]={ [1]={ limit={ @@ -114870,7 +116660,7 @@ return { [1]="blight_imbuing_tower_grant_critical_strike_+%" } }, - [4988]={ + [5070]={ [1]={ [1]={ limit={ @@ -114899,7 +116689,7 @@ return { [1]="blight_imbuing_tower_grant_damage_+%" } }, - [4989]={ + [5071]={ [1]={ [1]={ limit={ @@ -114915,7 +116705,7 @@ return { [1]="blight_imbuing_tower_grants_onslaught" } }, - [4990]={ + [5072]={ [1]={ [1]={ limit={ @@ -114944,7 +116734,7 @@ return { [1]="blight_imbuing_tower_range_+%" } }, - [4991]={ + [5073]={ [1]={ [1]={ limit={ @@ -114973,7 +116763,7 @@ return { [1]="blight_lightningstorm_tower_area_of_effect_+%" } }, - [4992]={ + [5074]={ [1]={ [1]={ limit={ @@ -115002,7 +116792,7 @@ return { [1]="blight_lightningstorm_tower_damage_+%" } }, - [4993]={ + [5075]={ [1]={ [1]={ limit={ @@ -115031,7 +116821,7 @@ return { [1]="blight_lightningstorm_tower_delay_+%" } }, - [4994]={ + [5076]={ [1]={ [1]={ limit={ @@ -115060,7 +116850,7 @@ return { [1]="blight_lightningstorm_tower_range_+%" } }, - [4995]={ + [5077]={ [1]={ [1]={ limit={ @@ -115076,7 +116866,7 @@ return { [1]="blight_lightningstorm_tower_storms_on_enemies" } }, - [4996]={ + [5078]={ [1]={ [1]={ limit={ @@ -115101,7 +116891,7 @@ return { [1]="blight_meteor_tower_additional_meteor_+" } }, - [4997]={ + [5079]={ [1]={ [1]={ limit={ @@ -115117,7 +116907,7 @@ return { [1]="blight_meteor_tower_always_stun" } }, - [4998]={ + [5080]={ [1]={ [1]={ [1]={ @@ -115137,7 +116927,7 @@ return { [1]="blight_meteor_tower_creates_burning_ground_ms" } }, - [4999]={ + [5081]={ [1]={ [1]={ limit={ @@ -115166,7 +116956,7 @@ return { [1]="blight_meteor_tower_damage_+%" } }, - [5000]={ + [5082]={ [1]={ [1]={ limit={ @@ -115195,7 +116985,7 @@ return { [1]="blight_meteor_tower_range_+%" } }, - [5001]={ + [5083]={ [1]={ [1]={ limit={ @@ -115233,7 +117023,7 @@ return { [1]="blight_scout_tower_additional_minions_+" } }, - [5002]={ + [5084]={ [1]={ [1]={ limit={ @@ -115262,7 +117052,7 @@ return { [1]="blight_scout_tower_minion_damage_+%" } }, - [5003]={ + [5085]={ [1]={ [1]={ limit={ @@ -115291,7 +117081,7 @@ return { [1]="blight_scout_tower_minion_life_+%" } }, - [5004]={ + [5086]={ [1]={ [1]={ limit={ @@ -115320,7 +117110,7 @@ return { [1]="blight_scout_tower_minion_movement_speed_+%" } }, - [5005]={ + [5087]={ [1]={ [1]={ limit={ @@ -115336,7 +117126,7 @@ return { [1]="blight_scout_tower_minions_inflict_malediction" } }, - [5006]={ + [5088]={ [1]={ [1]={ limit={ @@ -115365,7 +117155,7 @@ return { [1]="blight_scout_tower_range_+%" } }, - [5007]={ + [5089]={ [1]={ [1]={ limit={ @@ -115394,7 +117184,7 @@ return { [1]="blight_secondary_skill_effect_duration_+%" } }, - [5008]={ + [5090]={ [1]={ [1]={ limit={ @@ -115419,7 +117209,7 @@ return { [1]="blight_seismic_tower_additional_cascades_+" } }, - [5009]={ + [5091]={ [1]={ [1]={ limit={ @@ -115448,7 +117238,7 @@ return { [1]="blight_seismic_tower_cascade_range_+%" } }, - [5010]={ + [5092]={ [1]={ [1]={ limit={ @@ -115477,7 +117267,7 @@ return { [1]="blight_seismic_tower_damage_+%" } }, - [5011]={ + [5093]={ [1]={ [1]={ limit={ @@ -115506,7 +117296,7 @@ return { [1]="blight_seismic_tower_range_+%" } }, - [5012]={ + [5094]={ [1]={ [1]={ limit={ @@ -115535,7 +117325,7 @@ return { [1]="blight_seismic_tower_stun_duration_+%" } }, - [5013]={ + [5095]={ [1]={ [1]={ limit={ @@ -115564,7 +117354,7 @@ return { [1]="blight_sentinel_tower_minion_damage_+%" } }, - [5014]={ + [5096]={ [1]={ [1]={ limit={ @@ -115593,7 +117383,7 @@ return { [1]="blight_sentinel_tower_minion_life_+%" } }, - [5015]={ + [5097]={ [1]={ [1]={ limit={ @@ -115622,7 +117412,7 @@ return { [1]="blight_sentinel_tower_minion_movement_speed_+%" } }, - [5016]={ + [5098]={ [1]={ [1]={ [1]={ @@ -115646,7 +117436,7 @@ return { [1]="blight_sentinel_tower_minions_life_leech_%" } }, - [5017]={ + [5099]={ [1]={ [1]={ limit={ @@ -115675,7 +117465,7 @@ return { [1]="blight_sentinel_tower_range_+%" } }, - [5018]={ + [5100]={ [1]={ [1]={ limit={ @@ -115704,7 +117494,7 @@ return { [1]="blight_shocking_tower_damage_+%" } }, - [5019]={ + [5101]={ [1]={ [1]={ limit={ @@ -115733,7 +117523,7 @@ return { [1]="blight_shocking_tower_range_+%" } }, - [5020]={ + [5102]={ [1]={ [1]={ limit={ @@ -115749,7 +117539,7 @@ return { [1]="blight_shocknova_tower_full_damage_lightning_enemies" } }, - [5021]={ + [5103]={ [1]={ [1]={ limit={ @@ -115765,7 +117555,7 @@ return { [1]="blight_shocknova_tower_shock_additional_repeats" } }, - [5022]={ + [5104]={ [1]={ [1]={ limit={ @@ -115794,7 +117584,7 @@ return { [1]="blight_shocknova_tower_shock_effect_+%" } }, - [5023]={ + [5105]={ [1]={ [1]={ limit={ @@ -115823,7 +117613,7 @@ return { [1]="blight_shocknova_tower_shock_repeats_with_area_effect_+%" } }, - [5024]={ + [5106]={ [1]={ [1]={ limit={ @@ -115852,7 +117642,7 @@ return { [1]="blight_skill_area_of_effect_+%_after_1_second_channelling" } }, - [5025]={ + [5107]={ [1]={ [1]={ limit={ @@ -115881,7 +117671,7 @@ return { [1]="blight_smothering_tower_buff_effect_+%" } }, - [5026]={ + [5108]={ [1]={ [1]={ limit={ @@ -115897,7 +117687,7 @@ return { [1]="blight_smothering_tower_freeze_shock_ignite_%" } }, - [5027]={ + [5109]={ [1]={ [1]={ limit={ @@ -115926,7 +117716,7 @@ return { [1]="blight_smothering_tower_grant_damage_+%" } }, - [5028]={ + [5110]={ [1]={ [1]={ limit={ @@ -115955,7 +117745,7 @@ return { [1]="blight_smothering_tower_grant_movement_speed_+%" } }, - [5029]={ + [5111]={ [1]={ [1]={ limit={ @@ -115984,7 +117774,7 @@ return { [1]="blight_smothering_tower_range_+%" } }, - [5030]={ + [5112]={ [1]={ [1]={ limit={ @@ -116013,7 +117803,7 @@ return { [1]="blight_stonegaze_tower_cooldown_recovery_+%" } }, - [5031]={ + [5113]={ [1]={ [1]={ limit={ @@ -116042,7 +117832,7 @@ return { [1]="blight_stonegaze_tower_duration_+%" } }, - [5032]={ + [5114]={ [1]={ [1]={ limit={ @@ -116058,7 +117848,7 @@ return { [1]="blight_stonegaze_tower_petrified_enemies_take_damage_+%" } }, - [5033]={ + [5115]={ [1]={ [1]={ limit={ @@ -116087,7 +117877,7 @@ return { [1]="blight_stonegaze_tower_petrify_tick_speed_+%" } }, - [5034]={ + [5116]={ [1]={ [1]={ limit={ @@ -116116,7 +117906,7 @@ return { [1]="blight_stonegaze_tower_range_+%" } }, - [5035]={ + [5117]={ [1]={ [1]={ limit={ @@ -116145,7 +117935,7 @@ return { [1]="blight_summoning_tower_minion_damage_+%" } }, - [5036]={ + [5118]={ [1]={ [1]={ limit={ @@ -116174,7 +117964,7 @@ return { [1]="blight_summoning_tower_minion_life_+%" } }, - [5037]={ + [5119]={ [1]={ [1]={ limit={ @@ -116203,7 +117993,7 @@ return { [1]="blight_summoning_tower_minion_movement_speed_+%" } }, - [5038]={ + [5120]={ [1]={ [1]={ limit={ @@ -116219,7 +118009,7 @@ return { [1]="blight_summoning_tower_minions_summoned_+" } }, - [5039]={ + [5121]={ [1]={ [1]={ limit={ @@ -116248,7 +118038,7 @@ return { [1]="blight_summoning_tower_range_+%" } }, - [5040]={ + [5122]={ [1]={ [1]={ limit={ @@ -116277,7 +118067,7 @@ return { [1]="blight_temporal_tower_buff_effect_+%" } }, - [5041]={ + [5123]={ [1]={ [1]={ limit={ @@ -116306,7 +118096,7 @@ return { [1]="blight_temporal_tower_grant_you_action_speed_-%" } }, - [5042]={ + [5124]={ [1]={ [1]={ limit={ @@ -116322,7 +118112,7 @@ return { [1]="blight_temporal_tower_grants_stun_immunity" } }, - [5043]={ + [5125]={ [1]={ [1]={ limit={ @@ -116351,7 +118141,7 @@ return { [1]="blight_temporal_tower_range_+%" } }, - [5044]={ + [5126]={ [1]={ [1]={ limit={ @@ -116380,7 +118170,7 @@ return { [1]="blight_temporal_tower_tick_speed_+%" } }, - [5045]={ + [5127]={ [1]={ [1]={ [1]={ @@ -116400,7 +118190,7 @@ return { [1]="blight_tertiary_skill_effect_duration" } }, - [5046]={ + [5128]={ [1]={ [1]={ limit={ @@ -116429,7 +118219,7 @@ return { [1]="blight_tower_arc_damage_+%" } }, - [5047]={ + [5129]={ [1]={ [1]={ limit={ @@ -116458,7 +118248,7 @@ return { [1]="blight_tower_chilling_cost_+%" } }, - [5048]={ + [5130]={ [1]={ [1]={ limit={ @@ -116474,7 +118264,7 @@ return { [1]="blight_tower_damage_per_tower_type_+%" } }, - [5049]={ + [5131]={ [1]={ [1]={ limit={ @@ -116499,7 +118289,7 @@ return { [1]="blight_tower_fireball_additional_projectile" } }, - [5050]={ + [5132]={ [1]={ [1]={ limit={ @@ -116515,7 +118305,7 @@ return { [1]="blighted_map_chest_reward_lucky_count" } }, - [5051]={ + [5133]={ [1]={ [1]={ limit={ @@ -116544,7 +118334,7 @@ return { [1]="blighted_map_tower_damage_+%_final" } }, - [5052]={ + [5134]={ [1]={ [1]={ [1]={ @@ -116577,7 +118367,7 @@ return { [1]="blind_chilled_enemies_on_hit_%" } }, - [5053]={ + [5135]={ [1]={ [1]={ limit={ @@ -116593,7 +118383,7 @@ return { [1]="blind_does_not_affect_chance_to_hit" } }, - [5054]={ + [5136]={ [1]={ [1]={ limit={ @@ -116609,7 +118399,7 @@ return { [1]="blind_does_not_affect_light_radius" } }, - [5055]={ + [5137]={ [1]={ [1]={ [1]={ @@ -116646,7 +118436,7 @@ return { [1]="blind_effect_+%" } }, - [5056]={ + [5138]={ [1]={ [1]={ [1]={ @@ -116666,7 +118456,7 @@ return { [1]="blind_enemies_when_hit_%_chance" } }, - [5057]={ + [5139]={ [1]={ [1]={ [1]={ @@ -116699,7 +118489,7 @@ return { [1]="blind_enemies_when_hit_while_affected_by_grace_%_chance" } }, - [5058]={ + [5140]={ [1]={ [1]={ [1]={ @@ -116719,7 +118509,7 @@ return { [1]="blind_reflected_to_self" } }, - [5059]={ + [5141]={ [1]={ [1]={ limit={ @@ -116735,7 +118525,7 @@ return { [1]="blink_and_mirror_arrow_clones_inherit_gloves" } }, - [5060]={ + [5142]={ [1]={ [1]={ limit={ @@ -116764,7 +118554,7 @@ return { [1]="blink_and_mirror_arrow_cooldown_speed_+%" } }, - [5061]={ + [5143]={ [1]={ [1]={ limit={ @@ -116793,7 +118583,7 @@ return { [1]="block_and_stun_+%_recovery_per_fortification" } }, - [5062]={ + [5144]={ [1]={ [1]={ limit={ @@ -116809,7 +118599,7 @@ return { [1]="block_chance_%_vs_cursed_enemies" } }, - [5063]={ + [5145]={ [1]={ [1]={ limit={ @@ -116838,7 +118628,7 @@ return { [1]="block_chance_+%_per_100_life_spent_recently" } }, - [5064]={ + [5146]={ [1]={ [1]={ limit={ @@ -116854,7 +118644,7 @@ return { [1]="block_chance_from_equipped_shield_is_%" } }, - [5065]={ + [5147]={ [1]={ [1]={ limit={ @@ -116870,7 +118660,7 @@ return { [1]="block_%_damage_taken_from_elemental" } }, - [5066]={ + [5148]={ [1]={ [1]={ [1]={ @@ -116890,7 +118680,7 @@ return { [1]="block_%_if_blocked_an_attack_recently" } }, - [5067]={ + [5149]={ [1]={ [1]={ limit={ @@ -116906,7 +118696,7 @@ return { [1]="block_%_while_affected_by_determination" } }, - [5068]={ + [5150]={ [1]={ [1]={ limit={ @@ -116922,7 +118712,7 @@ return { [1]="block_spells_chance_%_while_holding_shield" } }, - [5069]={ + [5151]={ [1]={ [1]={ limit={ @@ -116951,7 +118741,7 @@ return { [1]="blood_sand_armour_mana_reservation_+%" } }, - [5070]={ + [5152]={ [1]={ [1]={ [1]={ @@ -116984,7 +118774,7 @@ return { [1]="blood_sand_mana_reservation_efficiency_-2%_per_1" } }, - [5071]={ + [5153]={ [1]={ [1]={ limit={ @@ -117013,7 +118803,7 @@ return { [1]="blood_sand_mana_reservation_efficiency_+%" } }, - [5072]={ + [5154]={ [1]={ [1]={ limit={ @@ -117042,7 +118832,7 @@ return { [1]="blood_sand_stance_buff_effect_+%" } }, - [5073]={ + [5155]={ [1]={ [1]={ limit={ @@ -117071,7 +118861,7 @@ return { [1]="blood_spears_area_of_effect_+%" } }, - [5074]={ + [5156]={ [1]={ [1]={ limit={ @@ -117105,7 +118895,7 @@ return { [2]="quality_display_perforate_is_gem" } }, - [5075]={ + [5157]={ [1]={ [1]={ limit={ @@ -117134,7 +118924,7 @@ return { [1]="blood_spears_damage_+%" } }, - [5076]={ + [5158]={ [1]={ [1]={ limit={ @@ -117163,7 +118953,7 @@ return { [1]="bloodreap_damage_+%" } }, - [5077]={ + [5159]={ [1]={ [1]={ limit={ @@ -117192,7 +118982,7 @@ return { [1]="bloodreap_skill_area_of_effect_+%" } }, - [5078]={ + [5160]={ [1]={ [1]={ limit={ @@ -117208,7 +118998,7 @@ return { [1]="body_armour_defences_doubled_while_no_gems_in_body_armour" } }, - [5079]={ + [5161]={ [1]={ [1]={ limit={ @@ -117237,7 +119027,7 @@ return { [1]="body_armour_evasion_rating_+%" } }, - [5080]={ + [5162]={ [1]={ [1]={ limit={ @@ -117253,7 +119043,7 @@ return { [1]="body_armour_implicit_damage_taken_-1%_final_per_X_dexterity" } }, - [5081]={ + [5163]={ [1]={ [1]={ limit={ @@ -117269,7 +119059,7 @@ return { [1]="body_armour_implicit_damage_taken_-1%_final_per_X_intelligence" } }, - [5082]={ + [5164]={ [1]={ [1]={ limit={ @@ -117285,7 +119075,7 @@ return { [1]="body_armour_implicit_damage_taken_-1%_final_per_X_strength" } }, - [5083]={ + [5165]={ [1]={ [1]={ [1]={ @@ -117305,7 +119095,7 @@ return { [1]="body_armour_implicit_gain_endurance_charge_every_x_ms" } }, - [5084]={ + [5166]={ [1]={ [1]={ [1]={ @@ -117325,7 +119115,7 @@ return { [1]="body_armour_implicit_gain_frenzy_charge_every_x_ms" } }, - [5085]={ + [5167]={ [1]={ [1]={ [1]={ @@ -117345,7 +119135,7 @@ return { [1]="body_armour_implicit_gain_power_charge_every_x_ms" } }, - [5086]={ + [5168]={ [1]={ [1]={ limit={ @@ -117374,7 +119164,7 @@ return { [1]="bone_golem_damage_+%" } }, - [5087]={ + [5169]={ [1]={ [1]={ limit={ @@ -117390,7 +119180,7 @@ return { [1]="bone_golem_elemental_resistances_%" } }, - [5088]={ + [5170]={ [1]={ [1]={ limit={ @@ -117419,7 +119209,7 @@ return { [1]="bone_lance_cast_speed_+%" } }, - [5089]={ + [5171]={ [1]={ [1]={ limit={ @@ -117448,7 +119238,7 @@ return { [1]="bone_lance_damage_+%" } }, - [5090]={ + [5172]={ [1]={ [1]={ limit={ @@ -117464,7 +119254,7 @@ return { [1]="boneshatter_chance_to_gain_+1_trauma" } }, - [5091]={ + [5173]={ [1]={ [1]={ limit={ @@ -117493,7 +119283,7 @@ return { [1]="boneshatter_damage_+%" } }, - [5092]={ + [5174]={ [1]={ [1]={ limit={ @@ -117522,7 +119312,7 @@ return { [1]="boneshatter_stun_duration_+%" } }, - [5093]={ + [5175]={ [1]={ [1]={ limit={ @@ -117551,7 +119341,7 @@ return { [1]="boots_implicit_accuracy_rating_+%_final" } }, - [5094]={ + [5176]={ [1]={ [1]={ [1]={ @@ -117575,7 +119365,7 @@ return { [1]="boots_implicit_ground_brittle_duration_ms" } }, - [5095]={ + [5177]={ [1]={ [1]={ [1]={ @@ -117599,7 +119389,7 @@ return { [1]="boots_implicit_ground_sapping_duration_ms" } }, - [5096]={ + [5178]={ [1]={ [1]={ [1]={ @@ -117623,7 +119413,7 @@ return { [1]="boots_implicit_ground_scorched_duration_ms" } }, - [5097]={ + [5179]={ [1]={ [1]={ limit={ @@ -117652,7 +119442,7 @@ return { [1]="boots_mod_effect_+%" } }, - [5098]={ + [5180]={ [1]={ [1]={ limit={ @@ -117681,7 +119471,7 @@ return { [1]="boss_maximum_life_+%_final" } }, - [5099]={ + [5181]={ [1]={ [1]={ [1]={ @@ -117701,7 +119491,23 @@ return { [1]="bow_attacks_have_culling_strike" } }, - [5100]={ + [5182]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Insufficient Mana doesn't prevent your Bow Attacks" + } + }, + stats={ + [1]="bow_attacks_usable_without_mana_cost" + } + }, + [5183]={ [1]={ [1]={ limit={ @@ -117717,7 +119523,7 @@ return { [1]="brand_activation_rate_+%_final_during_first_20%_of_active_duration" } }, - [5101]={ + [5184]={ [1]={ [1]={ limit={ @@ -117733,7 +119539,7 @@ return { [1]="brand_activation_rate_+%_final_during_last_20%_of_active_duration" } }, - [5102]={ + [5185]={ [1]={ [1]={ limit={ @@ -117749,7 +119555,7 @@ return { [1]="brand_area_of_effect_+%_if_50%_attached_duration_expired" } }, - [5103]={ + [5186]={ [1]={ [1]={ limit={ @@ -117765,7 +119571,107 @@ return { [1]="brands_reattach_on_activation" } }, - [5104]={ + [5187]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextDamageTypes" + }, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Cannot roll Modifiers of Non-Chaos Damage Types" + } + }, + stats={ + [1]="breach_ring_chayula_implicit" + } + }, + [5188]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextDamageTypes" + }, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Cannot roll Modifiers of Non-Lightning Damage Types" + } + }, + stats={ + [1]="breach_ring_esh_implicit" + } + }, + [5189]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextDamageTypes" + }, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Cannot roll Modifiers of Non-Cold Damage Types" + } + }, + stats={ + [1]="breach_ring_tul_implicit" + } + }, + [5190]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextDamageTypes" + }, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Cannot roll Modifiers of Non-Physical Damage Types" + } + }, + stats={ + [1]="breach_ring_uulnetol_implicit" + } + }, + [5191]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextDamageTypes" + }, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Cannot roll Modifiers of Non-Fire Damage Types" + } + }, + stats={ + [1]="breach_ring_xoph_implicit" + } + }, + [5192]={ [1]={ [1]={ limit={ @@ -117781,7 +119687,7 @@ return { [1]="breachstone_commanders_%_drop_additional_fragments" } }, - [5105]={ + [5193]={ [1]={ [1]={ limit={ @@ -117797,7 +119703,7 @@ return { [1]="breachstone_commanders_%_drop_additional_maps" } }, - [5106]={ + [5194]={ [1]={ [1]={ limit={ @@ -117813,7 +119719,7 @@ return { [1]="breachstone_commanders_%_drop_additional_scarabs" } }, - [5107]={ + [5195]={ [1]={ [1]={ limit={ @@ -117829,7 +119735,7 @@ return { [1]="breachstone_commanders_%_drop_additional_unique_items" } }, - [5108]={ + [5196]={ [1]={ [1]={ limit={ @@ -117845,7 +119751,7 @@ return { [1]="breachstone_commanders_drop_additional_currency_items" } }, - [5109]={ + [5197]={ [1]={ [1]={ limit={ @@ -117870,44 +119776,209 @@ return { [1]="breachstone_commanders_drop_additional_divination_cards" } }, - [5110]={ + [5198]={ [1]={ [1]={ - [1]={ - k="reminderstring", - v="ReminderTextLowEnergyShield" + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Birthed Currency Items are rolled an additional time keeping the rarest outcome" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Birthed Currency Items are rolled {0} additional times keeping the rarest outcome" + } + }, + stats={ + [1]="brequel_currency_fruit_X_lucky_rolls" + } + }, + [5199]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=99 + } + }, + text="{0}% chance for Wombgifts to Birth 3 additional Currency Items" + }, + [2]={ + limit={ + [1]={ + [1]=100, + [2]="#" + } }, + text="Wombgifts Birth 3 additional Currency Items" + } + }, + stats={ + [1]="brequel_currency_fruit_additional_3_items_%" + } + }, + [5200]={ + [1]={ + [1]={ limit={ [1]={ [1]=1, + [2]=99 + } + }, + text="{0}% chance for Wombgifts to Birth an additional Currency Item" + }, + [2]={ + limit={ + [1]={ + [1]=100, [2]="#" } }, - text="{0}% increased Buff Effect on Low Energy Shield" + text="Wombgifts Birth an additional Currency Item" + } + }, + stats={ + [1]="brequel_currency_fruit_additional_item_%" + } + }, + [5201]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Currency is instead dropped as many random Currency Shards" + } + }, + stats={ + [1]="brequel_currency_fruit_basic_currency_converted_to_shards" + } + }, + [5202]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Wombgifts have a chance to Birth Graft Implants" + } + }, + stats={ + [1]="brequel_currency_fruit_can_create_graft_currency" + } + }, + [5203]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Wombgifts have a chance to Birth Foulborn Currency at Level 68 and above" + } + }, + stats={ + [1]="brequel_currency_fruit_can_create_mutated_currency" + } + }, + [5204]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=99 + } + }, + text="{0}% chance for Birthed Currency to drop as a full stack" + }, + [2]={ + limit={ + [1]={ + [1]=100, + [2]="#" + } + }, + text="Birthed Currency drops as a full stack" + } + }, + stats={ + [1]="brequel_currency_fruit_full_stack_chance_%" + } + }, + [5205]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=99 + } + }, + text="{0}% chance for Birthed Currency to drop as Gold instead" + }, + [2]={ + limit={ + [1]={ + [1]=100, + [2]="#" + } + }, + text="Birthed Currency drops as Gold instead" + } + }, + stats={ + [1]="brequel_currency_fruit_gold_chance_%" + } + }, + [5206]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased chance for Birthed Currency to be Graft Implants" }, [2]={ [1]={ k="negate", v=1 }, - [2]={ - k="reminderstring", - v="ReminderTextLowEnergyShield" - }, limit={ [1]={ [1]="#", [2]=-1 } }, - text="{0}% reduced Buff Effect on Low Energy Shield" + text="{0}% reduced chance for Birthed Currency to be Graft Implants" } }, stats={ - [1]="buff_effect_+%_on_low_energy_shield" + [1]="brequel_currency_fruit_graft_currency_chance_+%" } }, - [5111]={ + [5207]={ [1]={ [1]={ limit={ @@ -117916,31 +119987,27 @@ return { [2]="#" } }, - text="Buffs on you expire {0}% faster" + text="{0}% increased chance for Birthed Currency to be Foulborn Currency" }, [2]={ [1]={ k="negate", v=1 }, - [2]={ - k="reminderstring", - v="ReminderTextSlowTimeEffects" - }, limit={ [1]={ [1]="#", [2]=-1 } }, - text="Buffs on you expire {0}% slower" + text="{0}% reduced chance for Birthed Currency to be Foulborn Currency" } }, stats={ - [1]="buff_time_passed_+%_only_buff_category" + [1]="brequel_currency_fruit_mutated_currency_chance_+%" } }, - [5112]={ + [5208]={ [1]={ [1]={ limit={ @@ -117949,16 +120016,41 @@ return { [2]="#" } }, - text="Buffs on you expire {0}% faster" + text="{0}% increased chance for Birthed Equipment to be One-Handed Melee Weapons" }, [2]={ [1]={ k="negate", v=1 }, - [2]={ - k="reminderstring", - v="ReminderTextSlowTimeEffects" + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced chance for Birthed Equipment to be One-Handed Melee Weapons" + } + }, + stats={ + [1]="brequel_equipment_fruit_1h_weapon_chance_+%" + } + }, + [5209]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased chance for Birthed Equipment to be Two-Handed Melee Weapons" + }, + [2]={ + [1]={ + k="negate", + v=1 }, limit={ [1]={ @@ -117966,30 +120058,64 @@ return { [2]=-1 } }, - text="Buffs on you expire {0}% slower" + text="{0}% reduced chance for Birthed Equipment to be Two-Handed Melee Weapons" } }, stats={ - [1]="buff_time_passed_+%" + [1]="brequel_equipment_fruit_2h_weapon_chance_+%" } }, - [5113]={ + [5210]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Values of the random modifiers on Birthed Equipment are rolled an additional time keeping the best outcome" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Values of the random modifiers on Birthed Equipment are rolled {0} additional times keeping the best outcome" + } + }, + stats={ + [1]="brequel_equipment_fruit_X_divine_rolls" + } + }, + [5211]={ [1]={ [1]={ limit={ [1]={ [1]="#", + [2]=99 + } + }, + text="{0}% chance for Wombgifts to Birth an additional Equipment Item" + }, + [2]={ + limit={ + [1]={ + [1]=100, [2]="#" } }, - text="Killing Blows with Burning Arrow or Explosive Arrow Shatter Enemies as though Frozen" + text="Wombgifts Birth an additional Equipment Item" } }, stats={ - [1]="burning_and_explosive_arrow_shatter_on_killing_blow" + [1]="brequel_equipment_fruit_additional_item_%" } }, - [5114]={ + [5212]={ [1]={ [1]={ limit={ @@ -117998,7 +120124,7 @@ return { [2]="#" } }, - text="Burning Arrow has {0}% increased Debuff Effect" + text="{0}% increased chance for Birthed Equipment to be Amulets" }, [2]={ [1]={ @@ -118011,139 +120137,217 @@ return { [2]=-1 } }, - text="Burning Arrow has {0}% reduced Debuff Effect" + text="{0}% reduced chance for Birthed Equipment to be Amulets" } }, stats={ - [1]="burning_arrow_debuff_effect_+%" + [1]="brequel_equipment_fruit_amulet_chance_+%" } }, - [5115]={ + [5213]={ [1]={ [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased chance for Birthed Equipment to be Armour" + }, + [2]={ [1]={ - k="reminderstring", - v="ReminderTextRecently" + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } }, + text="{0}% reduced chance for Birthed Equipment to be Armour" + } + }, + stats={ + [1]="brequel_equipment_fruit_armour_chance_+%" + } + }, + [5214]={ + [1]={ + [1]={ limit={ [1]={ [1]=1, [2]="#" } }, - text="{0}% increased Burning Damage for each time you have Shocked a Non-Shocked Enemy Recently, up to a maximum of 120%" + text="Birthed Equipment has {0}% increased chance for Attack Modifiers" }, [2]={ [1]={ k="negate", v=1 }, - [2]={ - k="reminderstring", - v="ReminderTextRecently" - }, limit={ [1]={ [1]="#", [2]=-1 } }, - text="{0}% reduced Burning Damage for each time you have Shocked a Non-Shocked Enemy Recently, up to a maximum of 120%" + text="Birthed Equipment has {0}% reduced chance for Attack Modifiers" } }, stats={ - [1]="burning_damage_+%_per_non_shocked_enemy_shocked_recently_up_to_120%" + [1]="brequel_equipment_fruit_attack_modifier_chance_+%" } }, - [5116]={ + [5215]={ [1]={ [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Birthed Equipment has {0}% increased chance for Attribute Modifiers" + }, + [2]={ [1]={ - k="reminderstring", - v="ReminderTextScorch" + k="negate", + v=1 }, limit={ [1]={ [1]="#", - [2]="#" + [2]=-1 } }, - text="You can inflict an additional Scorch on each Enemy" + text="Birthed Equipment has {0}% reduced chance for Attribute Modifiers" } }, stats={ - [1]="can_apply_additional_scorch" + [1]="brequel_equipment_fruit_attribute_modifier_chance_+%" } }, - [5117]={ + [5216]={ [1]={ [1]={ limit={ [1]={ - [1]="#", + [1]=1, [2]="#" } }, - text="You can have an additional Tincture active" + text="{0}% increased chance for Birthed Equipment to be Belts" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced chance for Birthed Equipment to be Belts" } }, stats={ - [1]="can_apply_additional_tincture" + [1]="brequel_equipment_fruit_belt_chance_+%" } }, - [5118]={ + [5217]={ [1]={ [1]={ limit={ [1]={ - [1]="#", + [1]=1, [2]="#" } }, - text="You can catch Scourged Fish" + text="{0}% increased chance for Birthed Equipment to be Body Armour" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced chance for Birthed Equipment to be Body Armour" } }, stats={ - [1]="can_catch_scourged_fish" + [1]="brequel_equipment_fruit_body_armour_chance_+%" } }, - [5119]={ + [5218]={ [1]={ [1]={ limit={ [1]={ - [1]="#", + [1]=1, [2]="#" } }, - text="Maximum 1 Buff from an Active Ancestor Totem at a time" + text="{0}% increased chance for Birthed Equipment to be Boots" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced chance for Birthed Equipment to be Boots" } }, stats={ - [1]="can_only_have_one_ancestor_totem_buff" + [1]="brequel_equipment_fruit_boots_chance_+%" } }, - [5120]={ + [5219]={ [1]={ [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Birthed Equipment has {0}% increased chance for Caster Modifiers" + }, + [2]={ [1]={ - k="reminderstring", - v="ReminderTextWithered" + k="negate", + v=1 }, limit={ [1]={ [1]="#", - [2]="#" + [2]=-1 } }, - text="[DNT] Cannot Inflict Wither on Enemis that aren't on Full Life" + text="Birthed Equipment has {0}% reduced chance for Caster Modifiers" } }, stats={ - [1]="can_only_inflict_wither_against_full_life_enemies" + [1]="brequel_equipment_fruit_caster_modifier_chance_+%" } }, - [5121]={ + [5220]={ [1]={ [1]={ limit={ @@ -118152,62 +120356,172 @@ return { [2]="#" } }, - text="25% chance to Trigger Level 20 Summon Elemental Relic when you or a nearby Ally Kill an Enemy, or Hit a Rare or Unique Enemy" + text="Birthed Equipment has {0}% increased chance for Chaos Modifiers" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Birthed Equipment has {0}% reduced chance for Chaos Modifiers" } }, stats={ - [1]="can_trigger_summon_elemental_relic_on_nearby_ally_kill_or_on_hit_rare_or_unique" + [1]="brequel_equipment_fruit_chaos_modifier_chance_+%" } }, - [5122]={ + [5221]={ [1]={ [1]={ limit={ [1]={ - [1]="#", + [1]=1, [2]="#" } }, - text="Cannot Adapt to Cold Damage" + text="Birthed Equipment has {0}% increased chance for Cold Modifiers" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Birthed Equipment has {0}% reduced chance for Cold Modifiers" } }, stats={ - [1]="cannot_adapt_to_cold" + [1]="brequel_equipment_fruit_cold_modifier_chance_+%" } }, - [5123]={ + [5222]={ [1]={ [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Birthed Equipment has {0}% increased chance for Critical Modifiers" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, limit={ [1]={ [1]="#", + [2]=-1 + } + }, + text="Birthed Equipment has {0}% reduced chance for Critical Modifiers" + } + }, + stats={ + [1]="brequel_equipment_fruit_critical_modifier_chance_+%" + } + }, + [5223]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, [2]="#" } }, - text="Cannot Adapt to Fire Damage" + text="Birthed Equipment has {0}% increased chance for Defence Modifiers" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Birthed Equipment has {0}% reduced chance for Defence Modifiers" } }, stats={ - [1]="cannot_adapt_to_fire" + [1]="brequel_equipment_fruit_defence_modifier_chance_+%" } }, - [5124]={ + [5224]={ [1]={ [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% more chance for Birthed Equipment to have Dexterity Requirements" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, limit={ [1]={ [1]="#", + [2]=-1 + } + }, + text="{0}% less chance for Birthed Equipment to have Dexterity Requirements" + } + }, + stats={ + [1]="brequel_equipment_fruit_dexterity_requirement_chance_+%_final" + } + }, + [5225]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, [2]="#" } }, - text="Cannot Adapt to Lightning Damage" + text="Birthed Equipment has {0}% increased chance for Fire Modifiers" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Birthed Equipment has {0}% reduced chance for Fire Modifiers" } }, stats={ - [1]="cannot_adapt_to_lightning" + [1]="brequel_equipment_fruit_fire_modifier_chance_+%" } }, - [5125]={ + [5226]={ [1]={ [1]={ limit={ @@ -118216,62 +120530,159 @@ return { [2]="#" } }, - text="Bleeding enemies cannot inflict Bleeding on you" + text="Birthed Equipment has {0}% chance to be Fractured" } }, stats={ - [1]="cannot_be_bled_by_bleeding_enemies" + [1]="brequel_equipment_fruit_fractured_chance_%" } }, - [5126]={ + [5227]={ [1]={ [1]={ limit={ [1]={ - [1]="#", + [1]=1, [2]="#" } }, - text="Cannot be Blinded while affected by Precision" + text="{0}% increased chance for Birthed Equipment to be Gloves" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced chance for Birthed Equipment to be Gloves" } }, stats={ - [1]="cannot_be_blinded_while_affected_by_precision" + [1]="brequel_equipment_fruit_gloves_chance_+%" } }, - [5127]={ + [5228]={ [1]={ [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased chance for Birthed Equipment to be Helmets" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, limit={ [1]={ [1]="#", + [2]=-1 + } + }, + text="{0}% reduced chance for Birthed Equipment to be Helmets" + } + }, + stats={ + [1]="brequel_equipment_fruit_helmet_chance_+%" + } + }, + [5229]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, [2]="#" } }, - text="You cannot be Chilled or Frozen while you have an Ice Golem Summoned" + text="{0}% more chance for Birthed Equipment to have Intelligence Requirements" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% less chance for Birthed Equipment to have Intelligence Requirements" } }, stats={ - [1]="cannot_be_chilled_or_frozen_while_ice_golem_summoned" + [1]="brequel_equipment_fruit_intelligence_requirement_chance_+%_final" } }, - [5128]={ + [5230]={ [1]={ [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Birthed Equipment has {0}% increased Rarity" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, limit={ [1]={ [1]="#", + [2]=-1 + } + }, + text="Birthed Equipment has {0}% reduced Rarity" + } + }, + stats={ + [1]="brequel_equipment_fruit_item_rarity_+%" + } + }, + [5231]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, [2]="#" } }, - text="Cannot be Chilled or Frozen while moving" + text="{0}% increased chance for Birthed Equipment to be Jewels" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced chance for Birthed Equipment to be Jewels" } }, stats={ - [1]="cannot_be_chilled_or_frozen_while_moving" + [1]="brequel_equipment_fruit_jewel_chance_+%" } }, - [5129]={ + [5232]={ [1]={ [1]={ limit={ @@ -118280,14 +120691,14 @@ return { [2]="#" } }, - text="Cannot be Chilled while at maximum Frenzy Charges" + text="Provisioning Wombgifts may instead Birth Jewels" } }, stats={ - [1]="cannot_be_chilled_while_at_maximum_frenzy_charges" + [1]="brequel_equipment_fruit_jewel_enabled" } }, - [5130]={ + [5233]={ [1]={ [1]={ limit={ @@ -118296,59 +120707,119 @@ return { [2]="#" } }, - text="Cannot be Chilled while Burning" + text="{0}% increased chance for Birthed Equipment to be Jewellery" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced chance for Birthed Equipment to be Jewellery" } }, stats={ - [1]="cannot_be_chilled_while_burning" + [1]="brequel_equipment_fruit_jewellery_chance_+%" } }, - [5131]={ + [5234]={ [1]={ [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Birthed Equipment has {0}% increased chance for Life Modifiers" + }, + [2]={ [1]={ - k="reminderstring", - v="ReminderTextRecently" + k="negate", + v=1 }, limit={ [1]={ [1]="#", - [2]="#" + [2]=-1 } }, - text="Hits against you Cannot be Critical Strikes if you've been Stunned Recently" + text="Birthed Equipment has {0}% reduced chance for Life Modifiers" } }, stats={ - [1]="cannot_be_crit_if_you_have_been_stunned_recently" + [1]="brequel_equipment_fruit_life_modifier_chance_+%" } }, - [5132]={ + [5235]={ [1]={ [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Birthed Equipment has {0}% increased chance for Lightning Modifiers" + }, + [2]={ [1]={ - k="reminderstring", - v="ReminderTextRecently" + k="negate", + v=1 }, limit={ [1]={ [1]="#", + [2]=-1 + } + }, + text="Birthed Equipment has {0}% reduced chance for Lightning Modifiers" + } + }, + stats={ + [1]="brequel_equipment_fruit_lightning_modifier_chance_+%" + } + }, + [5236]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, [2]="#" } }, - text="Cannot be Frozen if Energy Shield Recharge has started Recently" + text="Birthed Equipment has {0}% increased chance for Mana Modifiers" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Birthed Equipment has {0}% reduced chance for Mana Modifiers" } }, stats={ - [1]="cannot_be_frozen_if_energy_shield_recharge_has_started_recently" + [1]="brequel_equipment_fruit_mana_modifier_chance_+%" } }, - [5133]={ + [5237]={ [1]={ [1]={ [1]={ k="reminderstring", - v="ReminderTextRecently" + v="ReminderTextModCondensing" }, limit={ [1]={ @@ -118356,66 +120827,101 @@ return { [2]="#" } }, - text="You cannot be Frozen if you've been Frozen Recently" + text="Birthed Equipment has {0:+d} to Modifier Tier Rating" } }, stats={ - [1]="cannot_be_frozen_if_you_have_been_frozen_recently" + [1]="brequel_equipment_fruit_mod_tier_rating_+" } }, - [5134]={ + [5238]={ [1]={ [1]={ limit={ [1]={ - [1]="#", + [1]=1, [2]="#" } }, - text="Cannot be Frozen if Dexterity is higher than Intelligence" + text="Birthed Equipment has {0}% increased chance for Physical Modifiers" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Birthed Equipment has {0}% reduced chance for Physical Modifiers" } }, stats={ - [1]="cannot_be_frozen_with_dex_higher_than_int" + [1]="brequel_equipment_fruit_physical_modifier_chance_+%" } }, - [5135]={ + [5239]={ [1]={ [1]={ limit={ [1]={ - [1]="#", + [1]=1, [2]="#" } }, - text="Ignited enemies cannot Ignite you" + text="{0}% increased chance for Birthed Equipment to be Quivers" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced chance for Birthed Equipment to be Quivers" } }, stats={ - [1]="cannot_be_ignited_by_ignited_enemies" + [1]="brequel_equipment_fruit_quiver_chance_+%" } }, - [5136]={ + [5240]={ [1]={ [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased chance for Birthed Equipment to be Ranged Weapons" + }, + [2]={ [1]={ - k="reminderstring", - v="ReminderTextRecently" + k="negate", + v=1 }, limit={ [1]={ [1]="#", - [2]="#" + [2]=-1 } }, - text="You cannot be Ignited if you've been Ignited Recently" + text="{0}% reduced chance for Birthed Equipment to be Ranged Weapons" } }, stats={ - [1]="cannot_be_ignited_if_you_have_been_ignited_recently" + [1]="brequel_equipment_fruit_ranged_weapon_chance_+%" } }, - [5137]={ + [5241]={ [1]={ [1]={ limit={ @@ -118424,62 +120930,1918 @@ return { [2]="#" } }, - text="Cannot be Ignited while at maximum Endurance Charges" + text="Birthed Equipment has the lowest Level Modifier removed" } }, stats={ - [1]="cannot_be_ignited_while_at_maximum_endurance_charges" + [1]="brequel_equipment_fruit_remove_lowest_level_modifier" } }, - [5138]={ + [5242]={ [1]={ [1]={ limit={ [1]={ - [1]="#", + [1]=1, [2]="#" } }, - text="You cannot be Ignited while you have a Flame Golem Summoned" + text="Birthed Equipment has {0}% increased chance for Resistance Modifiers" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Birthed Equipment has {0}% reduced chance for Resistance Modifiers" } }, stats={ - [1]="cannot_be_ignited_while_flame_golem_summoned" + [1]="brequel_equipment_fruit_resistance_modifier_chance_+%" } }, - [5139]={ + [5243]={ [1]={ [1]={ limit={ [1]={ - [1]="#", + [1]=1, [2]="#" } }, - text="Cannot be Ignited if Strength is higher than Dexterity" + text="{0}% increased chance for Birthed Equipment to be Rings" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced chance for Birthed Equipment to be Rings" } }, stats={ - [1]="cannot_be_ignited_with_strength_higher_than_dex" + [1]="brequel_equipment_fruit_ring_chance_+%" } }, - [5140]={ + [5244]={ [1]={ [1]={ limit={ [1]={ - [1]="#", + [1]=1, [2]="#" } }, - text="Corrupted Blood cannot be inflicted on you" + text="{0}% increased chance for Birthed Equipment to be Shields" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced chance for Birthed Equipment to be Shields" } }, stats={ - [1]="cannot_be_inflicted_by_corrupted_blood" + [1]="brequel_equipment_fruit_shield_chance_+%" } }, - [5141]={ + [5245]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Birthed Equipment has {0}% increased chance for Speed Modifiers" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Birthed Equipment has {0}% reduced chance for Speed Modifiers" + } + }, + stats={ + [1]="brequel_equipment_fruit_speed_modifier_chance_+%" + } + }, + [5246]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% more chance for Birthed Equipment to have Strength Requirements" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% less chance for Birthed Equipment to have Strength Requirements" + } + }, + stats={ + [1]="brequel_equipment_fruit_strength_requirement_chance_+%_final" + } + }, + [5247]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Equipment rolls Sockets and Links +{0} times, keeping the best outcome" + } + }, + stats={ + [1]="brequel_equipment_fruit_weapon_and_armour_X_lucky_socket_number_and_links_rolls" + } + }, + [5248]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Weapons and Armour have a random amount of Quality" + } + }, + stats={ + [1]="brequel_equipment_fruit_weapon_and_armour_random_quality" + } + }, + [5249]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased chance for Birthed Equipment to be Weapons" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced chance for Birthed Equipment to be Weapons" + } + }, + stats={ + [1]="brequel_equipment_fruit_weapon_chance_+%" + } + }, + [5250]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]=99 + } + }, + text="{0}% chance for Wombgifts to Birth an additional Graft" + }, + [2]={ + limit={ + [1]={ + [1]=100, + [2]="#" + } + }, + text="Wombgifts Birth an additional Graft" + } + }, + stats={ + [1]="brequel_graft_fruit_additional_item_%" + } + }, + [5251]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased chance for Birthed Grafts to be Eshgrafts" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced chance for Birthed Grafts to be Eshgrafts" + } + }, + stats={ + [1]="brequel_graft_fruit_esh_chance_+%" + } + }, + [5252]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Grafts have {0:+d} to Item Level" + } + }, + stats={ + [1]="brequel_graft_fruit_item_level_+" + } + }, + [5253]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Birthed Grafts have {0}% increased Rarity" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Birthed Grafts have {0}% reduced Rarity" + } + }, + stats={ + [1]="brequel_graft_fruit_item_rarity_+%" + } + }, + [5254]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextModCondensing" + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Grafts have {0:+d} to Modifier Tier Rating" + } + }, + stats={ + [1]="brequel_graft_fruit_mod_tier_rating_+" + } + }, + [5255]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextGraftQuality" + }, + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Birthed Grafts have a random amount of Quality" + } + }, + stats={ + [1]="brequel_graft_fruit_random_quality" + } + }, + [5256]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased chance for Birthed Grafts to be Tulgrafts" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced chance for Birthed Grafts to be Tulgrafts" + } + }, + stats={ + [1]="brequel_graft_fruit_tul_chance_+%" + } + }, + [5257]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased chance for Birthed Grafts to be Uulgrafts" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced chance for Birthed Grafts to be Uulgrafts" + } + }, + stats={ + [1]="brequel_graft_fruit_uul_netol_chance_+%" + } + }, + [5258]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased chance for Birthed Grafts to be Xophgrafts" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced chance for Birthed Grafts to be Xophgrafts" + } + }, + stats={ + [1]="brequel_graft_fruit_xoph_chance_+%" + } + }, + [5259]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% increased chance for Mysterious Wombgifts to Birth commonly found Items" + } + }, + stats={ + [1]="brequel_misc_fruit_common_rewards_chance_+%" + } + }, + [5260]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% increased chance for Mysterious Wombgifts to Birth Lavish Wombgifts" + } + }, + stats={ + [1]="brequel_misc_fruit_currency_fruit_chance_+%" + } + }, + [5261]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% increased chance for Mysterious Wombgifts to Birth Provisioning Wombgifts" + } + }, + stats={ + [1]="brequel_misc_fruit_equipment_fruit_chance_+%" + } + }, + [5262]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% increased chance for Mysterious Wombgifts to Birth Growing Wombgifts" + } + }, + stats={ + [1]="brequel_misc_fruit_graft_fruit_chance_+%" + } + }, + [5263]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Mysterious Wombgifts may Birth other Wombgifts" + } + }, + stats={ + [1]="brequel_misc_fruit_other_fruits_enabled" + } + }, + [5264]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% increased chance for Mysterious Wombgifts to Birth infrequently found Items" + } + }, + stats={ + [1]="brequel_misc_fruit_rarer_rewards_chance_+%" + } + }, + [5265]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% increased chance for Mysterious Wombgifts to Birth Ancient Wombgifts" + } + }, + stats={ + [1]="brequel_misc_fruit_unique_fruit_chance_+%" + } + }, + [5266]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased chance for Birthed Unique Items to be One-Handed Melee Weapons" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced chance for Birthed Unique Items to be One-Handed Melee Weapons" + } + }, + stats={ + [1]="brequel_unique_fruit_1h_weapon_chance_+%" + } + }, + [5267]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased chance for Birthed Unique Items to be Two-Handed Melee Weapons" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced chance for Birthed Unique Items to be Two-Handed Melee Weapons" + } + }, + stats={ + [1]="brequel_unique_fruit_2h_weapon_chance_+%" + } + }, + [5268]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Values of the random modifiers on Birthed Uniques are rolled an additional time keeping the best outcome" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Values of the random modifiers on Birthed Uniques are rolled {0} additional times keeping the best outcome" + } + }, + stats={ + [1]="brequel_unique_fruit_X_divine_rolls" + } + }, + [5269]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Birthed Uniques are rolled an additional time keeping the rarest outcome" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Birthed Uniques are rolled {0} additional times keeping the rarest outcome" + } + }, + stats={ + [1]="brequel_unique_fruit_X_lucky_rolls" + } + }, + [5270]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% chance for Ancient Wombgifts to Birth an additional Item" + } + }, + stats={ + [1]="brequel_unique_fruit_additional_item_%" + } + }, + [5271]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased chance for Birthed Unique Items to be Amulets" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced chance for Birthed Unique Items to be Amulets" + } + }, + stats={ + [1]="brequel_unique_fruit_amulet_chance_+%" + } + }, + [5272]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased chance for Birthed Unique Items to be Armour" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced chance for Birthed Unique Items to be Armour" + } + }, + stats={ + [1]="brequel_unique_fruit_armour_chance_+%" + } + }, + [5273]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased chance for Birthed Unique Items to be Belts" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced chance for Birthed Unique Items to be Belts" + } + }, + stats={ + [1]="brequel_unique_fruit_belt_chance_+%" + } + }, + [5274]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased chance for Birthed Unique Items to be Body Armour" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced chance for Birthed Unique Items to be Body Armour" + } + }, + stats={ + [1]="brequel_unique_fruit_body_armour_chance_+%" + } + }, + [5275]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased chance for Birthed Unique Items to be Boots" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced chance for Birthed Unique Items to be Boots" + } + }, + stats={ + [1]="brequel_unique_fruit_boots_chance_+%" + } + }, + [5276]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased chance for Birthed Unique Items to have Dexterity Requirements" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced chance for Birthed Unique Items to have Dexterity Requirements" + } + }, + stats={ + [1]="brequel_unique_fruit_dexterity_requirement_chance_+%" + } + }, + [5277]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased chance for Birthed Unique Items to be Flasks" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced chance for Birthed Unique Items to be Flasks" + } + }, + stats={ + [1]="brequel_unique_fruit_flask_chance_+%" + } + }, + [5278]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased chance for Birthed Unique Items to be Gloves" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced chance for Birthed Unique Items to be Gloves" + } + }, + stats={ + [1]="brequel_unique_fruit_gloves_chance_+%" + } + }, + [5279]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased chance for Birthed Unique Items to be Helmets" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced chance for Birthed Unique Items to be Helmets" + } + }, + stats={ + [1]="brequel_unique_fruit_helmet_chance_+%" + } + }, + [5280]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased chance for Birthed Unique Items to have Intelligence Requirements" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced chance for Birthed Unique Items to have Intelligence Requirements" + } + }, + stats={ + [1]="brequel_unique_fruit_intelligence_requirement_chance_+%" + } + }, + [5281]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased chance for Birthed Unique Items to be Jewels" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced chance for Birthed Unique Items to be Jewels" + } + }, + stats={ + [1]="brequel_unique_fruit_jewel_chance_+%" + } + }, + [5282]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased chance for Birthed Unique Items to be Jewellery" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced chance for Birthed Unique Items to be Jewellery" + } + }, + stats={ + [1]="brequel_unique_fruit_jewellery_chance_+%" + } + }, + [5283]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Foulborn Uniques have a {0}% chance of multiple Foulborn Modifiers" + } + }, + stats={ + [1]="brequel_unique_fruit_multiple_mutation_chance_%" + } + }, + [5284]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Birthed Uniques have {0}% increased chance to be Foulborn" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Birthed Uniques have {0}% reduced chance to be Foulborn" + } + }, + stats={ + [1]="brequel_unique_fruit_mutation_chance_+%" + } + }, + [5285]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Non-Foulborn Unique Items are Corrupted" + } + }, + stats={ + [1]="brequel_unique_fruit_non_mutated_items_are_corrupted" + } + }, + [5286]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased chance for Birthed Unique Items to be Quivers" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced chance for Birthed Unique Items to be Quivers" + } + }, + stats={ + [1]="brequel_unique_fruit_quiver_chance_+%" + } + }, + [5287]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased chance for Birthed Unique Items to be Ranged Weapons" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced chance for Birthed Unique Items to be Ranged Weapons" + } + }, + stats={ + [1]="brequel_unique_fruit_ranged_weapon_chance_+%" + } + }, + [5288]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased chance for Birthed Unique Items to be Rings" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced chance for Birthed Unique Items to be Rings" + } + }, + stats={ + [1]="brequel_unique_fruit_ring_chance_+%" + } + }, + [5289]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased chance for Birthed Unique Items to be Shields" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced chance for Birthed Unique Items to be Shields" + } + }, + stats={ + [1]="brequel_unique_fruit_shield_chance_+%" + } + }, + [5290]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased chance for Birthed Unique Items to have Strength Requirements" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced chance for Birthed Unique Items to have Strength Requirements" + } + }, + stats={ + [1]="brequel_unique_fruit_strength_requirement_chance_+%" + } + }, + [5291]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Unique Weapons and Armour roll Sockets and Links +{0} times keeping the best outcome" + } + }, + stats={ + [1]="brequel_unique_fruit_weapon_and_armour_X_lucky_socket_number_and_links_rolls" + } + }, + [5292]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Unique Weapons and Armour have a random amount of Quality" + } + }, + stats={ + [1]="brequel_unique_fruit_weapon_and_armour_random_quality" + } + }, + [5293]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased chance for Birthed Unique Items to be Weapons" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced chance for Birthed Unique Items to be Weapons" + } + }, + stats={ + [1]="brequel_unique_fruit_weapon_chance_+%" + } + }, + [5294]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextLowEnergyShield" + }, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Buff Effect on Low Energy Shield" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + [2]={ + k="reminderstring", + v="ReminderTextLowEnergyShield" + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Buff Effect on Low Energy Shield" + } + }, + stats={ + [1]="buff_effect_+%_on_low_energy_shield" + } + }, + [5295]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Buffs on you expire {0}% faster" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + [2]={ + k="reminderstring", + v="ReminderTextSlowTimeEffects" + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Buffs on you expire {0}% slower" + } + }, + stats={ + [1]="buff_time_passed_+%_only_buff_category" + } + }, + [5296]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Buffs on you expire {0}% faster" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + [2]={ + k="reminderstring", + v="ReminderTextSlowTimeEffects" + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Buffs on you expire {0}% slower" + } + }, + stats={ + [1]="buff_time_passed_+%" + } + }, + [5297]={ + [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" + } + }, + [5298]={ + [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_+%" + } + }, + [5299]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextRecently" + }, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Burning Damage for each time you have Shocked a Non-Shocked Enemy Recently, up to a maximum of 120%" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + [2]={ + k="reminderstring", + v="ReminderTextRecently" + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Burning Damage for each time you have Shocked a Non-Shocked Enemy Recently, up to a maximum of 120%" + } + }, + stats={ + [1]="burning_damage_+%_per_non_shocked_enemy_shocked_recently_up_to_120%" + } + }, + [5300]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextScorch" + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="You can inflict an additional Scorch on each Enemy" + } + }, + stats={ + [1]="can_apply_additional_scorch" + } + }, + [5301]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="You can have an additional Tincture active" + } + }, + stats={ + [1]="can_apply_additional_tincture" + } + }, + [5302]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="You can catch Foulborn Fish" + } + }, + stats={ + [1]="can_catch_mutated_fish" + } + }, + [5303]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="You can catch Scourged Fish" + } + }, + stats={ + [1]="can_catch_scourged_fish" + } + }, + [5304]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Maximum 1 Buff from an Active Ancestor Totem at a time" + } + }, + stats={ + [1]="can_only_have_one_ancestor_totem_buff" + } + }, + [5305]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Cannot Inflict Wither on targets that are not on Full Life" + } + }, + stats={ + [1]="can_only_inflict_wither_against_full_life_enemies" + } + }, + [5306]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="25% chance to Trigger Level 20 Summon Elemental Relic when you or a nearby Ally Kill an Enemy, or Hit a Rare or Unique Enemy" + } + }, + stats={ + [1]="can_trigger_summon_elemental_relic_on_nearby_ally_kill_or_on_hit_rare_or_unique" + } + }, + [5307]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Cannot Adapt to Cold Damage" + } + }, + stats={ + [1]="cannot_adapt_to_cold" + } + }, + [5308]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Cannot Adapt to Fire Damage" + } + }, + stats={ + [1]="cannot_adapt_to_fire" + } + }, + [5309]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Cannot Adapt to Lightning Damage" + } + }, + stats={ + [1]="cannot_adapt_to_lightning" + } + }, + [5310]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Bleeding enemies cannot inflict Bleeding on you" + } + }, + stats={ + [1]="cannot_be_bled_by_bleeding_enemies" + } + }, + [5311]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Cannot be Blinded while affected by Precision" + } + }, + stats={ + [1]="cannot_be_blinded_while_affected_by_precision" + } + }, + [5312]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="You cannot be Chilled or Frozen while you have an Ice Golem Summoned" + } + }, + stats={ + [1]="cannot_be_chilled_or_frozen_while_ice_golem_summoned" + } + }, + [5313]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Cannot be Chilled or Frozen while moving" + } + }, + stats={ + [1]="cannot_be_chilled_or_frozen_while_moving" + } + }, + [5314]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Cannot be Chilled while at maximum Frenzy Charges" + } + }, + stats={ + [1]="cannot_be_chilled_while_at_maximum_frenzy_charges" + } + }, + [5315]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Cannot be Chilled while Burning" + } + }, + stats={ + [1]="cannot_be_chilled_while_burning" + } + }, + [5316]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextRecently" + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Hits against you Cannot be Critical Strikes if you've been Stunned Recently" + } + }, + stats={ + [1]="cannot_be_crit_if_you_have_been_stunned_recently" + } + }, + [5317]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextRecently" + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Cannot be Frozen if Energy Shield Recharge has started Recently" + } + }, + stats={ + [1]="cannot_be_frozen_if_energy_shield_recharge_has_started_recently" + } + }, + [5318]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextRecently" + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="You cannot be Frozen if you've been Frozen Recently" + } + }, + stats={ + [1]="cannot_be_frozen_if_you_have_been_frozen_recently" + } + }, + [5319]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Cannot be Frozen if Dexterity is higher than Intelligence" + } + }, + stats={ + [1]="cannot_be_frozen_with_dex_higher_than_int" + } + }, + [5320]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Ignited enemies cannot Ignite you" + } + }, + stats={ + [1]="cannot_be_ignited_by_ignited_enemies" + } + }, + [5321]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextRecently" + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="You cannot be Ignited if you've been Ignited Recently" + } + }, + stats={ + [1]="cannot_be_ignited_if_you_have_been_ignited_recently" + } + }, + [5322]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Cannot be Ignited while at maximum Endurance Charges" + } + }, + stats={ + [1]="cannot_be_ignited_while_at_maximum_endurance_charges" + } + }, + [5323]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="You cannot be Ignited while you have a Flame Golem Summoned" + } + }, + stats={ + [1]="cannot_be_ignited_while_flame_golem_summoned" + } + }, + [5324]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Cannot be Ignited if Strength is higher than Dexterity" + } + }, + stats={ + [1]="cannot_be_ignited_with_strength_higher_than_dex" + } + }, + [5325]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Corrupted Blood cannot be inflicted on you" + } + }, + stats={ + [1]="cannot_be_inflicted_by_corrupted_blood" + } + }, + [5326]={ [1]={ [1]={ limit={ @@ -118504,7 +122866,7 @@ return { [1]="cannot_be_poisoned_if_x_poisons_on_you" } }, - [5142]={ + [5327]={ [1]={ [1]={ limit={ @@ -118520,7 +122882,7 @@ return { [1]="cannot_be_poisoned_while_bleeding" } }, - [5143]={ + [5328]={ [1]={ [1]={ [1]={ @@ -118540,7 +122902,7 @@ return { [1]="cannot_be_shocked_if_you_have_been_shocked_recently" } }, - [5144]={ + [5329]={ [1]={ [1]={ limit={ @@ -118556,7 +122918,7 @@ return { [1]="cannot_be_shocked_or_ignited_while_moving" } }, - [5145]={ + [5330]={ [1]={ [1]={ limit={ @@ -118572,7 +122934,7 @@ return { [1]="cannot_be_shocked_while_at_maximum_power_charges" } }, - [5146]={ + [5331]={ [1]={ [1]={ limit={ @@ -118588,7 +122950,7 @@ return { [1]="cannot_be_shocked_while_lightning_golem_summoned" } }, - [5147]={ + [5332]={ [1]={ [1]={ limit={ @@ -118604,7 +122966,7 @@ return { [1]="cannot_be_shocked_with_int_higher_than_strength" } }, - [5148]={ + [5333]={ [1]={ [1]={ limit={ @@ -118620,7 +122982,7 @@ return { [1]="cannot_be_stunned_by_blocked_hits" } }, - [5149]={ + [5334]={ [1]={ [1]={ limit={ @@ -118636,7 +122998,7 @@ return { [1]="cannot_be_stunned_by_hits_of_only_physical_damage" } }, - [5150]={ + [5335]={ [1]={ [1]={ [1]={ @@ -118656,7 +123018,7 @@ return { [1]="cannot_be_stunned_by_suppressed_spell_damage" } }, - [5151]={ + [5336]={ [1]={ [1]={ limit={ @@ -118672,7 +123034,7 @@ return { [1]="cannot_be_stunned_if_have_been_stunned_or_blocked_stunning_hit_in_past_2_seconds" } }, - [5152]={ + [5337]={ [1]={ [1]={ [1]={ @@ -118692,7 +123054,7 @@ return { [1]="cannot_be_stunned_if_have_not_been_hit_recently" } }, - [5153]={ + [5338]={ [1]={ [1]={ [1]={ @@ -118712,7 +123074,7 @@ return { [1]="cannot_be_stunned_if_you_have_been_stunned_recently" } }, - [5154]={ + [5339]={ [1]={ [1]={ [1]={ @@ -118732,7 +123094,7 @@ return { [1]="cannot_be_stunned_if_you_have_blocked_a_stun_recently" } }, - [5155]={ + [5340]={ [1]={ [1]={ limit={ @@ -118748,7 +123110,7 @@ return { [1]="cannot_be_stunned_if_you_have_ghost_dance" } }, - [5156]={ + [5341]={ [1]={ [1]={ limit={ @@ -118764,7 +123126,7 @@ return { [1]="cannot_be_stunned_while_bleeding" } }, - [5157]={ + [5342]={ [1]={ [1]={ limit={ @@ -118780,7 +123142,23 @@ return { [1]="cannot_be_stunned_while_fortified" } }, - [5158]={ + [5343]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Cannot be Stunned if you have an Equipped Helmet with no Socketed Gems" + } + }, + stats={ + [1]="cannot_be_stunned_while_no_gems_in_helmet" + } + }, + [5344]={ [1]={ [1]={ limit={ @@ -118796,7 +123174,7 @@ return { [1]="cannot_be_stunned_while_using_chaos_skill" } }, - [5159]={ + [5345]={ [1]={ [1]={ limit={ @@ -118812,7 +123190,7 @@ return { [1]="cannot_block_spells" } }, - [5160]={ + [5346]={ [1]={ [1]={ limit={ @@ -118828,7 +123206,7 @@ return { [1]="cannot_cast_spells" } }, - [5161]={ + [5347]={ [1]={ [1]={ limit={ @@ -118844,7 +123222,7 @@ return { [1]="cannot_critical_strike_with_attacks" } }, - [5162]={ + [5348]={ [1]={ [1]={ limit={ @@ -118860,7 +123238,7 @@ return { [1]="cannot_fish_from_water" } }, - [5163]={ + [5349]={ [1]={ [1]={ limit={ @@ -118876,7 +123254,7 @@ return { [1]="cannot_gain_charges" } }, - [5164]={ + [5350]={ [1]={ [1]={ limit={ @@ -118892,7 +123270,7 @@ return { [1]="cannot_gain_corrupted_blood_while_you_have_at_least_5_stacks" } }, - [5165]={ + [5351]={ [1]={ [1]={ [1]={ @@ -118912,7 +123290,7 @@ return { [1]="cannot_gain_damaging_ailments" } }, - [5166]={ + [5352]={ [1]={ [1]={ limit={ @@ -118928,7 +123306,7 @@ return { [1]="cannot_gain_power_charges" } }, - [5167]={ + [5353]={ [1]={ [1]={ limit={ @@ -118944,7 +123322,7 @@ return { [1]="cannot_gain_rage_during_soul_gain_prevention" } }, - [5168]={ + [5354]={ [1]={ [1]={ limit={ @@ -118960,7 +123338,7 @@ return { [1]="cannot_have_energy_shield_leeched_from" } }, - [5169]={ + [5355]={ [1]={ [1]={ [1]={ @@ -118980,7 +123358,7 @@ return { [1]="cannot_have_more_than_1_damaging_ailment" } }, - [5170]={ + [5356]={ [1]={ [1]={ [1]={ @@ -119000,7 +123378,7 @@ return { [1]="cannot_have_more_than_1_non_damaging_ailment" } }, - [5171]={ + [5357]={ [1]={ [1]={ limit={ @@ -119016,7 +123394,7 @@ return { [1]="cannot_penetrate_or_ignore_elemental_resistances" } }, - [5172]={ + [5358]={ [1]={ [1]={ [1]={ @@ -119036,7 +123414,27 @@ return { [1]="cannot_receive_elemental_ailments_from_cursed_enemies" } }, - [5173]={ + [5359]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextElementalAilments" + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Elemental Ailments cannot be inflicted on you if you have an Equipped Body Armour with no Socketed Gems" + } + }, + stats={ + [1]="cannot_receive_elemental_ailments_while_no_gems_in_body_armour" + } + }, + [5360]={ [1]={ [1]={ limit={ @@ -119052,7 +123450,7 @@ return { [1]="cannot_recharge_energy_shield" } }, - [5174]={ + [5361]={ [1]={ [1]={ limit={ @@ -119068,7 +123466,7 @@ return { [1]="cannot_regenerate_energy_shield" } }, - [5175]={ + [5362]={ [1]={ [1]={ limit={ @@ -119084,7 +123482,7 @@ return { [1]="cannot_take_reflected_elemental_damage" } }, - [5176]={ + [5363]={ [1]={ [1]={ limit={ @@ -119100,7 +123498,7 @@ return { [1]="cannot_take_reflected_physical_damage" } }, - [5177]={ + [5364]={ [1]={ [1]={ limit={ @@ -119116,7 +123514,7 @@ return { [1]="cannot_taunt_enemies" } }, - [5178]={ + [5365]={ [1]={ [1]={ limit={ @@ -119132,7 +123530,7 @@ return { [1]="cannot_use_flask_in_fifth_slot" } }, - [5179]={ + [5366]={ [1]={ [1]={ limit={ @@ -119148,7 +123546,7 @@ return { [1]="cannot_use_life_flasks" } }, - [5180]={ + [5367]={ [1]={ [1]={ [1]={ @@ -119168,7 +123566,7 @@ return { [1]="carrion_golem_impale_on_hit_if_same_number_of_summoned_chaos_golems" } }, - [5181]={ + [5368]={ [1]={ [1]={ limit={ @@ -119184,7 +123582,7 @@ return { [1]="cast_a_socketed_spell_on_channel_with_blade_flurry_or_charged_dash" } }, - [5182]={ + [5369]={ [1]={ [1]={ limit={ @@ -119200,7 +123598,7 @@ return { [1]="cast_blink_arrow_on_attack_with_mirror_arrow" } }, - [5183]={ + [5370]={ [1]={ [1]={ limit={ @@ -119216,7 +123614,7 @@ return { [1]="cast_body_swap_on_detonate_dead_cast" } }, - [5184]={ + [5371]={ [1]={ [1]={ limit={ @@ -119232,7 +123630,7 @@ return { [1]="cast_bone_corpses_on_stun_with_heavy_strike_or_boneshatter" } }, - [5185]={ + [5372]={ [1]={ [1]={ limit={ @@ -119248,7 +123646,7 @@ return { [1]="cast_gravity_sphere_on_cast_from_storm_burst_or_divine_ire" } }, - [5186]={ + [5373]={ [1]={ [1]={ limit={ @@ -119264,7 +123662,7 @@ return { [1]="cast_hydrosphere_while_channeling_winter_orb" } }, - [5187]={ + [5374]={ [1]={ [1]={ limit={ @@ -119280,7 +123678,7 @@ return { [1]="cast_ice_nova_on_final_burst_of_glacial_cascade" } }, - [5188]={ + [5375]={ [1]={ [1]={ limit={ @@ -119296,7 +123694,7 @@ return { [1]="cast_mirror_arrow_on_attack_with_blink_arrow" } }, - [5189]={ + [5376]={ [1]={ [1]={ limit={ @@ -119325,7 +123723,23 @@ return { [1]="cast_speed_+%_final_while_holding_fishing_rod" } }, - [5190]={ + [5377]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Cast Speed per 20 Dexterity" + } + }, + stats={ + [1]="cast_speed_+%_per_20_dexterity" + } + }, + [5378]={ [1]={ [1]={ [1]={ @@ -119362,7 +123776,7 @@ return { [1]="cast_speed_+%_per_num_unique_spells_cast_recently" } }, - [5191]={ + [5379]={ [1]={ [1]={ limit={ @@ -119391,7 +123805,7 @@ return { [1]="cast_speed_for_brand_skills_+%" } }, - [5192]={ + [5380]={ [1]={ [1]={ limit={ @@ -119420,7 +123834,7 @@ return { [1]="cast_speed_for_elemental_skills_+%" } }, - [5193]={ + [5381]={ [1]={ [1]={ limit={ @@ -119449,7 +123863,7 @@ return { [1]="cast_speed_for_minion_skills_+%" } }, - [5194]={ + [5382]={ [1]={ [1]={ limit={ @@ -119478,7 +123892,7 @@ return { [1]="cast_speed_+%_during_flask_effect" } }, - [5195]={ + [5383]={ [1]={ [1]={ [1]={ @@ -119515,7 +123929,7 @@ return { [1]="cast_speed_+%_if_enemy_killed_recently" } }, - [5196]={ + [5384]={ [1]={ [1]={ [1]={ @@ -119552,7 +123966,7 @@ return { [1]="cast_speed_+%_if_have_crit_recently" } }, - [5197]={ + [5385]={ [1]={ [1]={ [1]={ @@ -119589,7 +124003,7 @@ return { [1]="cast_speed_+%_if_player_minion_has_been_killed_recently" } }, - [5198]={ + [5386]={ [1]={ [1]={ [1]={ @@ -119626,7 +124040,7 @@ return { [1]="cast_speed_+%_per_corpse_consumed_recently" } }, - [5199]={ + [5387]={ [1]={ [1]={ limit={ @@ -119655,7 +124069,7 @@ return { [1]="cast_speed_+%_while_affected_by_zealotry" } }, - [5200]={ + [5388]={ [1]={ [1]={ limit={ @@ -119684,7 +124098,7 @@ return { [1]="cast_speed_+%_while_chilled" } }, - [5201]={ + [5389]={ [1]={ [1]={ limit={ @@ -119700,7 +124114,7 @@ return { [1]="cast_stance_change_on_attack_from_perforate_or_lacerate" } }, - [5202]={ + [5390]={ [1]={ [1]={ limit={ @@ -119716,7 +124130,7 @@ return { [1]="cast_summon_spectral_wolf_on_crit_with_cleave_or_reave" } }, - [5203]={ + [5391]={ [1]={ [1]={ limit={ @@ -119732,7 +124146,7 @@ return { [1]="cast_tornado_on_attack_with_split_arrow_or_tornado_shot" } }, - [5204]={ + [5392]={ [1]={ [1]={ limit={ @@ -119748,7 +124162,7 @@ return { [1]="cat_aspect_reserves_no_mana" } }, - [5205]={ + [5393]={ [1]={ [1]={ [1]={ @@ -119768,7 +124182,7 @@ return { [1]="cats_stealth_duration_ms_+" } }, - [5206]={ + [5394]={ [1]={ [1]={ [1]={ @@ -119797,7 +124211,7 @@ return { [1]="caustic_and_scourge_arrow_number_of_projectiles_+%_final_from_skill" } }, - [5207]={ + [5395]={ [1]={ [1]={ [1]={ @@ -119817,7 +124231,7 @@ return { [1]="caustic_arrow_chance_to_poison_%_vs_enemies_on_caustic_ground" } }, - [5208]={ + [5396]={ [1]={ [1]={ limit={ @@ -119846,7 +124260,7 @@ return { [1]="caustic_arrow_damage_over_time_+%" } }, - [5209]={ + [5397]={ [1]={ [1]={ limit={ @@ -119875,7 +124289,7 @@ return { [1]="caustic_arrow_hit_damage_+%" } }, - [5210]={ + [5398]={ [1]={ [1]={ limit={ @@ -119904,7 +124318,7 @@ return { [1]="chain_hook_and_shield_charge_attack_speed_+%_per_10_rampage_stacks" } }, - [5211]={ + [5399]={ [1]={ [1]={ [1]={ @@ -119937,7 +124351,7 @@ return { [1]="chain_strike_cone_radius_+_per_12_rage" } }, - [5212]={ + [5400]={ [1]={ [1]={ limit={ @@ -119966,7 +124380,7 @@ return { [1]="chain_strike_damage_+%" } }, - [5213]={ + [5401]={ [1]={ [1]={ [1]={ @@ -119990,7 +124404,7 @@ return { [1]="chain_strike_gain_rage_on_hit_%_chance" } }, - [5214]={ + [5402]={ [1]={ [1]={ limit={ @@ -120019,7 +124433,7 @@ return { [1]="chaining_range_+%" } }, - [5215]={ + [5403]={ [1]={ [1]={ limit={ @@ -120035,7 +124449,7 @@ return { [1]="champion_ascendancy_nearby_allies_fortification_is_equal_to_yours" } }, - [5216]={ + [5404]={ [1]={ [1]={ limit={ @@ -120060,7 +124474,7 @@ return { [1]="chance_%_to_convert_armour_to_blessed_orb" } }, - [5217]={ + [5405]={ [1]={ [1]={ limit={ @@ -120085,7 +124499,7 @@ return { [1]="chance_%_to_convert_armour_to_cartographers_chisel" } }, - [5218]={ + [5406]={ [1]={ [1]={ limit={ @@ -120110,7 +124524,7 @@ return { [1]="chance_%_to_convert_armour_to_chromatic_orb" } }, - [5219]={ + [5407]={ [1]={ [1]={ limit={ @@ -120135,7 +124549,7 @@ return { [1]="chance_%_to_convert_armour_to_fusing_orb" } }, - [5220]={ + [5408]={ [1]={ [1]={ limit={ @@ -120160,7 +124574,7 @@ return { [1]="chance_%_to_convert_armour_to_jewellers_orb" } }, - [5221]={ + [5409]={ [1]={ [1]={ limit={ @@ -120185,7 +124599,7 @@ return { [1]="chance_%_to_convert_armour_to_orb_of_alteration" } }, - [5222]={ + [5410]={ [1]={ [1]={ limit={ @@ -120210,7 +124624,7 @@ return { [1]="chance_%_to_convert_armour_to_orb_of_binding" } }, - [5223]={ + [5411]={ [1]={ [1]={ limit={ @@ -120235,7 +124649,7 @@ return { [1]="chance_%_to_convert_armour_to_orb_of_horizons" } }, - [5224]={ + [5412]={ [1]={ [1]={ limit={ @@ -120260,7 +124674,7 @@ return { [1]="chance_%_to_convert_armour_to_orb_of_scouring" } }, - [5225]={ + [5413]={ [1]={ [1]={ limit={ @@ -120285,7 +124699,7 @@ return { [1]="chance_%_to_convert_armour_to_orb_of_unmaking" } }, - [5226]={ + [5414]={ [1]={ [1]={ limit={ @@ -120310,7 +124724,7 @@ return { [1]="chance_%_to_convert_jewellery_to_divine_orb" } }, - [5227]={ + [5415]={ [1]={ [1]={ limit={ @@ -120335,7 +124749,7 @@ return { [1]="chance_%_to_convert_jewellery_to_exalted_orb" } }, - [5228]={ + [5416]={ [1]={ [1]={ limit={ @@ -120360,7 +124774,7 @@ return { [1]="chance_%_to_convert_jewellery_to_orb_of_annulment" } }, - [5229]={ + [5417]={ [1]={ [1]={ limit={ @@ -120385,7 +124799,7 @@ return { [1]="chance_%_to_convert_weapon_to_chaos_orb" } }, - [5230]={ + [5418]={ [1]={ [1]={ limit={ @@ -120410,7 +124824,7 @@ return { [1]="chance_%_to_convert_weapon_to_enkindling_orb" } }, - [5231]={ + [5419]={ [1]={ [1]={ limit={ @@ -120435,7 +124849,7 @@ return { [1]="chance_%_to_convert_weapon_to_gemcutters_prism" } }, - [5232]={ + [5420]={ [1]={ [1]={ limit={ @@ -120460,7 +124874,7 @@ return { [1]="chance_%_to_convert_weapon_to_glassblowers_bauble" } }, - [5233]={ + [5421]={ [1]={ [1]={ limit={ @@ -120485,7 +124899,7 @@ return { [1]="chance_%_to_convert_weapon_to_instilling_orb" } }, - [5234]={ + [5422]={ [1]={ [1]={ limit={ @@ -120510,7 +124924,7 @@ return { [1]="chance_%_to_convert_weapon_to_orb_of_regret" } }, - [5235]={ + [5423]={ [1]={ [1]={ limit={ @@ -120535,7 +124949,7 @@ return { [1]="chance_%_to_convert_weapon_to_regal_orb" } }, - [5236]={ + [5424]={ [1]={ [1]={ limit={ @@ -120560,7 +124974,7 @@ return { [1]="chance_%_to_convert_weapon_to_vaal_orb" } }, - [5237]={ + [5425]={ [1]={ [1]={ [1]={ @@ -120580,7 +124994,7 @@ return { [1]="chance_%_to_drop_additional_awakened_sextant" } }, - [5238]={ + [5426]={ [1]={ [1]={ [1]={ @@ -120600,7 +125014,7 @@ return { [1]="chance_%_to_drop_additional_blessed_orb" } }, - [5239]={ + [5427]={ [1]={ [1]={ [1]={ @@ -120620,7 +125034,7 @@ return { [1]="chance_%_to_drop_additional_cartographers_chisel" } }, - [5240]={ + [5428]={ [1]={ [1]={ [1]={ @@ -120640,7 +125054,7 @@ return { [1]="chance_%_to_drop_additional_chaos_orb" } }, - [5241]={ + [5429]={ [1]={ [1]={ [1]={ @@ -120660,7 +125074,7 @@ return { [1]="chance_%_to_drop_additional_chromatic_orb" } }, - [5242]={ + [5430]={ [1]={ [1]={ [1]={ @@ -120680,7 +125094,7 @@ return { [1]="chance_%_to_drop_additional_divine_orb" } }, - [5243]={ + [5431]={ [1]={ [1]={ [1]={ @@ -120700,7 +125114,7 @@ return { [1]="chance_%_to_drop_additional_eldritch_chaos_orb" } }, - [5244]={ + [5432]={ [1]={ [1]={ [1]={ @@ -120720,7 +125134,7 @@ return { [1]="chance_%_to_drop_additional_eldritch_exalted_orb" } }, - [5245]={ + [5433]={ [1]={ [1]={ [1]={ @@ -120740,7 +125154,7 @@ return { [1]="chance_%_to_drop_additional_eldritch_orb_of_annulment" } }, - [5246]={ + [5434]={ [1]={ [1]={ [1]={ @@ -120760,7 +125174,7 @@ return { [1]="chance_%_to_drop_additional_enkindling_orb" } }, - [5247]={ + [5435]={ [1]={ [1]={ [1]={ @@ -120780,7 +125194,7 @@ return { [1]="chance_%_to_drop_additional_exalted_orb" } }, - [5248]={ + [5436]={ [1]={ [1]={ [1]={ @@ -120800,7 +125214,7 @@ return { [1]="chance_%_to_drop_additional_fusing_orb" } }, - [5249]={ + [5437]={ [1]={ [1]={ [1]={ @@ -120820,7 +125234,7 @@ return { [1]="chance_%_to_drop_additional_gemcutters_prism" } }, - [5250]={ + [5438]={ [1]={ [1]={ [1]={ @@ -120840,7 +125254,7 @@ return { [1]="chance_%_to_drop_additional_glassblowers_bauble" } }, - [5251]={ + [5439]={ [1]={ [1]={ [1]={ @@ -120860,7 +125274,7 @@ return { [1]="chance_%_to_drop_additional_grand_eldritch_ember" } }, - [5252]={ + [5440]={ [1]={ [1]={ [1]={ @@ -120880,7 +125294,7 @@ return { [1]="chance_%_to_drop_additional_grand_eldritch_ichor" } }, - [5253]={ + [5441]={ [1]={ [1]={ [1]={ @@ -120900,7 +125314,7 @@ return { [1]="chance_%_to_drop_additional_greater_eldritch_ember" } }, - [5254]={ + [5442]={ [1]={ [1]={ [1]={ @@ -120920,7 +125334,7 @@ return { [1]="chance_%_to_drop_additional_greater_eldritch_ichor" } }, - [5255]={ + [5443]={ [1]={ [1]={ [1]={ @@ -120940,7 +125354,7 @@ return { [1]="chance_%_to_drop_additional_instilling_orb" } }, - [5256]={ + [5444]={ [1]={ [1]={ [1]={ @@ -120960,7 +125374,7 @@ return { [1]="chance_%_to_drop_additional_jewellers_orb" } }, - [5257]={ + [5445]={ [1]={ [1]={ [1]={ @@ -120980,7 +125394,7 @@ return { [1]="chance_%_to_drop_additional_lesser_eldritch_ember" } }, - [5258]={ + [5446]={ [1]={ [1]={ [1]={ @@ -121000,7 +125414,7 @@ return { [1]="chance_%_to_drop_additional_lesser_eldritch_ichor" } }, - [5259]={ + [5447]={ [1]={ [1]={ [1]={ @@ -121020,7 +125434,7 @@ return { [1]="chance_%_to_drop_additional_orb_of_alteration" } }, - [5260]={ + [5448]={ [1]={ [1]={ [1]={ @@ -121040,7 +125454,7 @@ return { [1]="chance_%_to_drop_additional_orb_of_annulment" } }, - [5261]={ + [5449]={ [1]={ [1]={ [1]={ @@ -121060,7 +125474,7 @@ return { [1]="chance_%_to_drop_additional_orb_of_binding" } }, - [5262]={ + [5450]={ [1]={ [1]={ [1]={ @@ -121080,7 +125494,7 @@ return { [1]="chance_%_to_drop_additional_orb_of_horizons" } }, - [5263]={ + [5451]={ [1]={ [1]={ [1]={ @@ -121100,7 +125514,7 @@ return { [1]="chance_%_to_drop_additional_orb_of_regret" } }, - [5264]={ + [5452]={ [1]={ [1]={ [1]={ @@ -121120,7 +125534,7 @@ return { [1]="chance_%_to_drop_additional_orb_of_scouring" } }, - [5265]={ + [5453]={ [1]={ [1]={ [1]={ @@ -121140,7 +125554,7 @@ return { [1]="chance_%_to_drop_additional_orb_of_unmaking" } }, - [5266]={ + [5454]={ [1]={ [1]={ [1]={ @@ -121160,7 +125574,7 @@ return { [1]="chance_%_to_drop_additional_regal_orb" } }, - [5267]={ + [5455]={ [1]={ [1]={ [1]={ @@ -121180,7 +125594,7 @@ return { [1]="chance_%_to_drop_additional_vaal_orb" } }, - [5268]={ + [5456]={ [1]={ [1]={ [1]={ @@ -121200,7 +125614,7 @@ return { [1]="chance_%_to_drop_additional_veiled_chaos_orb" } }, - [5269]={ + [5457]={ [1]={ [1]={ limit={ @@ -121225,7 +125639,7 @@ return { [1]="chance_for_double_items_from_heist_chests_%" } }, - [5270]={ + [5458]={ [1]={ [1]={ limit={ @@ -121241,7 +125655,7 @@ return { [1]="chance_for_exerted_attacks_to_not_reduce_count_%" } }, - [5271]={ + [5459]={ [1]={ [1]={ [1]={ @@ -121274,7 +125688,7 @@ return { [1]="chance_%_elemental_ailments_redirected_to_nearby_minion" } }, - [5272]={ + [5460]={ [1]={ [1]={ [1]={ @@ -121294,7 +125708,7 @@ return { [1]="chance_%_to_drop_additional_cleansing_currency" } }, - [5273]={ + [5461]={ [1]={ [1]={ [1]={ @@ -121314,7 +125728,7 @@ return { [1]="chance_%_to_drop_additional_cleansing_influenced_item" } }, - [5274]={ + [5462]={ [1]={ [1]={ [1]={ @@ -121338,7 +125752,7 @@ return { [1]="chance_%_to_drop_additional_currency" } }, - [5275]={ + [5463]={ [1]={ [1]={ [1]={ @@ -121358,7 +125772,7 @@ return { [1]="chance_%_to_drop_additional_divination_cards" } }, - [5276]={ + [5464]={ [1]={ [1]={ [1]={ @@ -121378,7 +125792,7 @@ return { [1]="chance_%_to_drop_additional_divination_cards_corrupted" } }, - [5277]={ + [5465]={ [1]={ [1]={ [1]={ @@ -121398,7 +125812,7 @@ return { [1]="chance_%_to_drop_additional_divination_cards_currency" } }, - [5278]={ + [5466]={ [1]={ [1]={ [1]={ @@ -121418,7 +125832,7 @@ return { [1]="chance_%_to_drop_additional_divination_cards_currency_basic" } }, - [5279]={ + [5467]={ [1]={ [1]={ [1]={ @@ -121438,7 +125852,7 @@ return { [1]="chance_%_to_drop_additional_divination_cards_currency_exotic" } }, - [5280]={ + [5468]={ [1]={ [1]={ [1]={ @@ -121458,7 +125872,7 @@ return { [1]="chance_%_to_drop_additional_divination_cards_currency_league" } }, - [5281]={ + [5469]={ [1]={ [1]={ [1]={ @@ -121478,7 +125892,7 @@ return { [1]="chance_%_to_drop_additional_divination_cards_gems" } }, - [5282]={ + [5470]={ [1]={ [1]={ [1]={ @@ -121498,7 +125912,7 @@ return { [1]="chance_%_to_drop_additional_divination_cards_gems_levelled" } }, - [5283]={ + [5471]={ [1]={ [1]={ [1]={ @@ -121518,7 +125932,7 @@ return { [1]="chance_%_to_drop_additional_divination_cards_gems_quality" } }, - [5284]={ + [5472]={ [1]={ [1]={ [1]={ @@ -121538,7 +125952,7 @@ return { [1]="chance_%_to_drop_additional_divination_cards_gives_other_divination_cards" } }, - [5285]={ + [5473]={ [1]={ [1]={ [1]={ @@ -121558,7 +125972,7 @@ return { [1]="chance_%_to_drop_additional_divination_cards_map" } }, - [5286]={ + [5474]={ [1]={ [1]={ [1]={ @@ -121578,7 +125992,7 @@ return { [1]="chance_%_to_drop_additional_divination_cards_map_unique" } }, - [5287]={ + [5475]={ [1]={ [1]={ [1]={ @@ -121598,7 +126012,7 @@ return { [1]="chance_%_to_drop_additional_divination_cards_unique" } }, - [5288]={ + [5476]={ [1]={ [1]={ [1]={ @@ -121618,7 +126032,7 @@ return { [1]="chance_%_to_drop_additional_divination_cards_unique_armour" } }, - [5289]={ + [5477]={ [1]={ [1]={ [1]={ @@ -121638,7 +126052,7 @@ return { [1]="chance_%_to_drop_additional_divination_cards_unique_corrupted" } }, - [5290]={ + [5478]={ [1]={ [1]={ [1]={ @@ -121658,7 +126072,7 @@ return { [1]="chance_%_to_drop_additional_divination_cards_unique_jewellery" } }, - [5291]={ + [5479]={ [1]={ [1]={ [1]={ @@ -121678,7 +126092,7 @@ return { [1]="chance_%_to_drop_additional_divination_cards_unique_weapon" } }, - [5292]={ + [5480]={ [1]={ [1]={ [1]={ @@ -121698,7 +126112,7 @@ return { [1]="chance_%_to_drop_additional_gem" } }, - [5293]={ + [5481]={ [1]={ [1]={ [1]={ @@ -121718,7 +126132,7 @@ return { [1]="chance_%_to_drop_additional_maps" } }, - [5294]={ + [5482]={ [1]={ [1]={ [1]={ @@ -121738,7 +126152,7 @@ return { [1]="chance_%_to_drop_additional_map_currency" } }, - [5295]={ + [5483]={ [1]={ [1]={ [1]={ @@ -121758,7 +126172,7 @@ return { [1]="chance_%_to_drop_additional_scarab" } }, - [5296]={ + [5484]={ [1]={ [1]={ [1]={ @@ -121778,7 +126192,7 @@ return { [1]="chance_%_to_drop_additional_scarab_abyss" } }, - [5297]={ + [5485]={ [1]={ [1]={ [1]={ @@ -121798,7 +126212,7 @@ return { [1]="chance_%_to_drop_additional_scarab_abyss_gilded" } }, - [5298]={ + [5486]={ [1]={ [1]={ [1]={ @@ -121818,7 +126232,7 @@ return { [1]="chance_%_to_drop_additional_scarab_abyss_polished" } }, - [5299]={ + [5487]={ [1]={ [1]={ [1]={ @@ -121838,7 +126252,7 @@ return { [1]="chance_%_to_drop_additional_scarab_abyss_rusted" } }, - [5300]={ + [5488]={ [1]={ [1]={ [1]={ @@ -121858,7 +126272,7 @@ return { [1]="chance_%_to_drop_additional_scarab_anarchy" } }, - [5301]={ + [5489]={ [1]={ [1]={ [1]={ @@ -121878,7 +126292,7 @@ return { [1]="chance_%_to_drop_additional_scarab_beasts" } }, - [5302]={ + [5490]={ [1]={ [1]={ [1]={ @@ -121898,7 +126312,7 @@ return { [1]="chance_%_to_drop_additional_scarab_beasts_gilded" } }, - [5303]={ + [5491]={ [1]={ [1]={ [1]={ @@ -121918,7 +126332,7 @@ return { [1]="chance_%_to_drop_additional_scarab_beasts_polished" } }, - [5304]={ + [5492]={ [1]={ [1]={ [1]={ @@ -121938,7 +126352,7 @@ return { [1]="chance_%_to_drop_additional_scarab_beasts_rusted" } }, - [5305]={ + [5493]={ [1]={ [1]={ [1]={ @@ -121958,7 +126372,7 @@ return { [1]="chance_%_to_drop_additional_scarab_betrayal" } }, - [5306]={ + [5494]={ [1]={ [1]={ [1]={ @@ -121978,7 +126392,7 @@ return { [1]="chance_%_to_drop_additional_scarab_beyond" } }, - [5307]={ + [5495]={ [1]={ [1]={ [1]={ @@ -121998,7 +126412,7 @@ return { [1]="chance_%_to_drop_additional_scarab_blight" } }, - [5308]={ + [5496]={ [1]={ [1]={ [1]={ @@ -122018,7 +126432,7 @@ return { [1]="chance_%_to_drop_additional_scarab_blight_gilded" } }, - [5309]={ + [5497]={ [1]={ [1]={ [1]={ @@ -122038,7 +126452,7 @@ return { [1]="chance_%_to_drop_additional_scarab_blight_polished" } }, - [5310]={ + [5498]={ [1]={ [1]={ [1]={ @@ -122058,7 +126472,7 @@ return { [1]="chance_%_to_drop_additional_scarab_blight_rusted" } }, - [5311]={ + [5499]={ [1]={ [1]={ [1]={ @@ -122078,7 +126492,7 @@ return { [1]="chance_%_to_drop_additional_scarab_breach" } }, - [5312]={ + [5500]={ [1]={ [1]={ [1]={ @@ -122098,7 +126512,7 @@ return { [1]="chance_%_to_drop_additional_scarab_breach_gilded" } }, - [5313]={ + [5501]={ [1]={ [1]={ [1]={ @@ -122118,7 +126532,7 @@ return { [1]="chance_%_to_drop_additional_scarab_breach_polished" } }, - [5314]={ + [5502]={ [1]={ [1]={ [1]={ @@ -122138,7 +126552,7 @@ return { [1]="chance_%_to_drop_additional_scarab_breach_rusted" } }, - [5315]={ + [5503]={ [1]={ [1]={ [1]={ @@ -122158,7 +126572,7 @@ return { [1]="chance_%_to_drop_additional_scarab_delirium" } }, - [5316]={ + [5504]={ [1]={ [1]={ [1]={ @@ -122178,7 +126592,7 @@ return { [1]="chance_%_to_drop_additional_scarab_divination" } }, - [5317]={ + [5505]={ [1]={ [1]={ [1]={ @@ -122198,7 +126612,7 @@ return { [1]="chance_%_to_drop_additional_scarab_divination_cards_gilded" } }, - [5318]={ + [5506]={ [1]={ [1]={ [1]={ @@ -122218,7 +126632,7 @@ return { [1]="chance_%_to_drop_additional_scarab_divination_cards_polished" } }, - [5319]={ + [5507]={ [1]={ [1]={ [1]={ @@ -122238,7 +126652,7 @@ return { [1]="chance_%_to_drop_additional_scarab_divination_cards_rusted" } }, - [5320]={ + [5508]={ [1]={ [1]={ [1]={ @@ -122258,7 +126672,7 @@ return { [1]="chance_%_to_drop_additional_scarab_domination" } }, - [5321]={ + [5509]={ [1]={ [1]={ [1]={ @@ -122278,7 +126692,7 @@ return { [1]="chance_%_to_drop_additional_scarab_elder_gilded" } }, - [5322]={ + [5510]={ [1]={ [1]={ [1]={ @@ -122298,7 +126712,7 @@ return { [1]="chance_%_to_drop_additional_scarab_elder_polished" } }, - [5323]={ + [5511]={ [1]={ [1]={ [1]={ @@ -122318,7 +126732,7 @@ return { [1]="chance_%_to_drop_additional_scarab_elder_rusted" } }, - [5324]={ + [5512]={ [1]={ [1]={ [1]={ @@ -122338,7 +126752,7 @@ return { [1]="chance_%_to_drop_additional_scarab_essence" } }, - [5325]={ + [5513]={ [1]={ [1]={ [1]={ @@ -122358,7 +126772,7 @@ return { [1]="chance_%_to_drop_additional_scarab_expedition" } }, - [5326]={ + [5514]={ [1]={ [1]={ [1]={ @@ -122378,7 +126792,7 @@ return { [1]="chance_%_to_drop_additional_scarab_harbinger" } }, - [5327]={ + [5515]={ [1]={ [1]={ [1]={ @@ -122398,7 +126812,7 @@ return { [1]="chance_%_to_drop_additional_scarab_harbinger_gilded" } }, - [5328]={ + [5516]={ [1]={ [1]={ [1]={ @@ -122418,7 +126832,7 @@ return { [1]="chance_%_to_drop_additional_scarab_harbinger_polished" } }, - [5329]={ + [5517]={ [1]={ [1]={ [1]={ @@ -122438,7 +126852,7 @@ return { [1]="chance_%_to_drop_additional_scarab_harbinger_rusted" } }, - [5330]={ + [5518]={ [1]={ [1]={ [1]={ @@ -122458,7 +126872,7 @@ return { [1]="chance_%_to_drop_additional_scarab_harvest" } }, - [5331]={ + [5519]={ [1]={ [1]={ [1]={ @@ -122478,7 +126892,7 @@ return { [1]="chance_%_to_drop_additional_scarab_incursion" } }, - [5332]={ + [5520]={ [1]={ [1]={ [1]={ @@ -122498,7 +126912,7 @@ return { [1]="chance_%_to_drop_additional_scarab_influence" } }, - [5333]={ + [5521]={ [1]={ [1]={ [1]={ @@ -122518,7 +126932,7 @@ return { [1]="chance_%_to_drop_additional_scarab_legion" } }, - [5334]={ + [5522]={ [1]={ [1]={ [1]={ @@ -122538,7 +126952,7 @@ return { [1]="chance_%_to_drop_additional_scarab_legion_gilded" } }, - [5335]={ + [5523]={ [1]={ [1]={ [1]={ @@ -122558,7 +126972,7 @@ return { [1]="chance_%_to_drop_additional_scarab_legion_polished" } }, - [5336]={ + [5524]={ [1]={ [1]={ [1]={ @@ -122578,7 +126992,7 @@ return { [1]="chance_%_to_drop_additional_scarab_legion_rusted" } }, - [5337]={ + [5525]={ [1]={ [1]={ [1]={ @@ -122598,7 +127012,7 @@ return { [1]="chance_%_to_drop_additional_scarab_maps" } }, - [5338]={ + [5526]={ [1]={ [1]={ [1]={ @@ -122618,7 +127032,7 @@ return { [1]="chance_%_to_drop_additional_scarab_maps_gilded" } }, - [5339]={ + [5527]={ [1]={ [1]={ [1]={ @@ -122638,7 +127052,7 @@ return { [1]="chance_%_to_drop_additional_scarab_maps_polished" } }, - [5340]={ + [5528]={ [1]={ [1]={ [1]={ @@ -122658,7 +127072,7 @@ return { [1]="chance_%_to_drop_additional_scarab_maps_rusted" } }, - [5341]={ + [5529]={ [1]={ [1]={ [1]={ @@ -122678,7 +127092,7 @@ return { [1]="chance_%_to_drop_additional_scarab_metamorph_gilded" } }, - [5342]={ + [5530]={ [1]={ [1]={ [1]={ @@ -122698,7 +127112,7 @@ return { [1]="chance_%_to_drop_additional_scarab_metamorph_polished" } }, - [5343]={ + [5531]={ [1]={ [1]={ [1]={ @@ -122718,7 +127132,7 @@ return { [1]="chance_%_to_drop_additional_scarab_metamorph_rusted" } }, - [5344]={ + [5532]={ [1]={ [1]={ [1]={ @@ -122738,7 +127152,7 @@ return { [1]="chance_%_to_drop_additional_scarab_misc" } }, - [5345]={ + [5533]={ [1]={ [1]={ [1]={ @@ -122758,7 +127172,7 @@ return { [1]="chance_%_to_drop_additional_scarab_perandus_gilded" } }, - [5346]={ + [5534]={ [1]={ [1]={ [1]={ @@ -122778,7 +127192,7 @@ return { [1]="chance_%_to_drop_additional_scarab_perandus_polished" } }, - [5347]={ + [5535]={ [1]={ [1]={ [1]={ @@ -122798,7 +127212,7 @@ return { [1]="chance_%_to_drop_additional_scarab_perandus_rusted" } }, - [5348]={ + [5536]={ [1]={ [1]={ [1]={ @@ -122818,7 +127232,7 @@ return { [1]="chance_%_to_drop_additional_scarab_ritual" } }, - [5349]={ + [5537]={ [1]={ [1]={ [1]={ @@ -122838,7 +127252,7 @@ return { [1]="chance_%_to_drop_additional_scarab_settlers" } }, - [5350]={ + [5538]={ [1]={ [1]={ [1]={ @@ -122858,7 +127272,7 @@ return { [1]="chance_%_to_drop_additional_scarab_shaper_gilded" } }, - [5351]={ + [5539]={ [1]={ [1]={ [1]={ @@ -122878,7 +127292,7 @@ return { [1]="chance_%_to_drop_additional_scarab_shaper_polished" } }, - [5352]={ + [5540]={ [1]={ [1]={ [1]={ @@ -122898,7 +127312,7 @@ return { [1]="chance_%_to_drop_additional_scarab_shaper_rusted" } }, - [5353]={ + [5541]={ [1]={ [1]={ [1]={ @@ -122918,7 +127332,7 @@ return { [1]="chance_%_to_drop_additional_scarab_strongbox" } }, - [5354]={ + [5542]={ [1]={ [1]={ [1]={ @@ -122938,7 +127352,7 @@ return { [1]="chance_%_to_drop_additional_scarab_strongbox_gilded" } }, - [5355]={ + [5543]={ [1]={ [1]={ [1]={ @@ -122958,7 +127372,7 @@ return { [1]="chance_%_to_drop_additional_scarab_strongbox_polished" } }, - [5356]={ + [5544]={ [1]={ [1]={ [1]={ @@ -122978,7 +127392,7 @@ return { [1]="chance_%_to_drop_additional_scarab_strongbox_rusted" } }, - [5357]={ + [5545]={ [1]={ [1]={ [1]={ @@ -122998,7 +127412,7 @@ return { [1]="chance_%_to_drop_additional_scarab_sulphite" } }, - [5358]={ + [5546]={ [1]={ [1]={ [1]={ @@ -123018,7 +127432,7 @@ return { [1]="chance_%_to_drop_additional_scarab_sulphite_gilded" } }, - [5359]={ + [5547]={ [1]={ [1]={ [1]={ @@ -123038,7 +127452,7 @@ return { [1]="chance_%_to_drop_additional_scarab_sulphite_polished" } }, - [5360]={ + [5548]={ [1]={ [1]={ [1]={ @@ -123058,7 +127472,7 @@ return { [1]="chance_%_to_drop_additional_scarab_sulphite_rusted" } }, - [5361]={ + [5549]={ [1]={ [1]={ [1]={ @@ -123078,7 +127492,7 @@ return { [1]="chance_%_to_drop_additional_scarab_torment" } }, - [5362]={ + [5550]={ [1]={ [1]={ [1]={ @@ -123098,7 +127512,7 @@ return { [1]="chance_%_to_drop_additional_scarab_torment_gilded" } }, - [5363]={ + [5551]={ [1]={ [1]={ [1]={ @@ -123118,7 +127532,7 @@ return { [1]="chance_%_to_drop_additional_scarab_torment_polished" } }, - [5364]={ + [5552]={ [1]={ [1]={ [1]={ @@ -123138,7 +127552,7 @@ return { [1]="chance_%_to_drop_additional_scarab_torment_rusted" } }, - [5365]={ + [5553]={ [1]={ [1]={ [1]={ @@ -123158,7 +127572,7 @@ return { [1]="chance_%_to_drop_additional_scarab_ultimatum" } }, - [5366]={ + [5554]={ [1]={ [1]={ [1]={ @@ -123178,7 +127592,7 @@ return { [1]="chance_%_to_drop_additional_scarab_uniques" } }, - [5367]={ + [5555]={ [1]={ [1]={ [1]={ @@ -123198,7 +127612,7 @@ return { [1]="chance_%_to_drop_additional_scarab_uniques_gilded" } }, - [5368]={ + [5556]={ [1]={ [1]={ [1]={ @@ -123218,7 +127632,7 @@ return { [1]="chance_%_to_drop_additional_scarab_uniques_polished" } }, - [5369]={ + [5557]={ [1]={ [1]={ [1]={ @@ -123238,7 +127652,7 @@ return { [1]="chance_%_to_drop_additional_scarab_uniques_rusted" } }, - [5370]={ + [5558]={ [1]={ [1]={ [1]={ @@ -123258,7 +127672,7 @@ return { [1]="chance_%_to_drop_additional_tangled_currency" } }, - [5371]={ + [5559]={ [1]={ [1]={ [1]={ @@ -123278,7 +127692,7 @@ return { [1]="chance_%_to_drop_additional_tangled_influenced_item" } }, - [5372]={ + [5560]={ [1]={ [1]={ [1]={ @@ -123298,7 +127712,7 @@ return { [1]="chance_%_to_drop_additional_unique" } }, - [5373]={ + [5561]={ [1]={ [1]={ limit={ @@ -123323,7 +127737,7 @@ return { [1]="chance_%_to_return_to_full_life_on_reaching_low_life" } }, - [5374]={ + [5562]={ [1]={ [1]={ [1]={ @@ -123356,7 +127770,7 @@ return { [1]="chance_to_be_hindered_when_hit_by_spells_%" } }, - [5375]={ + [5563]={ [1]={ [1]={ [1]={ @@ -123376,7 +127790,7 @@ return { [1]="chance_to_be_maimed_when_hit_%" } }, - [5376]={ + [5564]={ [1]={ [1]={ [1]={ @@ -123396,7 +127810,7 @@ return { [1]="chance_to_be_sapped_when_hit_%" } }, - [5377]={ + [5565]={ [1]={ [1]={ [1]={ @@ -123416,7 +127830,7 @@ return { [1]="chance_to_be_scorched_when_hit_%" } }, - [5378]={ + [5566]={ [1]={ [1]={ [1]={ @@ -123436,7 +127850,7 @@ return { [1]="chance_to_block_attack_damage_if_not_blocked_recently_%" } }, - [5379]={ + [5567]={ [1]={ [1]={ [1]={ @@ -123456,7 +127870,7 @@ return { [1]="chance_to_block_attack_damage_if_stunned_an_enemy_recently_+%" } }, - [5380]={ + [5568]={ [1]={ [1]={ [1]={ @@ -123476,7 +127890,7 @@ return { [1]="chance_to_block_attack_damage_if_used_retaliation_recently_%" } }, - [5381]={ + [5569]={ [1]={ [1]={ limit={ @@ -123492,7 +127906,7 @@ return { [1]="chance_to_block_attack_damage_per_5%_chance_to_block_on_equipped_shield_+%" } }, - [5382]={ + [5570]={ [1]={ [1]={ limit={ @@ -123508,7 +127922,7 @@ return { [1]="chance_to_block_attacks_%_while_channelling" } }, - [5383]={ + [5571]={ [1]={ [1]={ [1]={ @@ -123528,7 +127942,7 @@ return { [1]="chance_to_block_spells_%_if_used_retaliation_recently" } }, - [5384]={ + [5572]={ [1]={ [1]={ [1]={ @@ -123548,7 +127962,7 @@ return { [1]="chance_to_block_spells_%_if_cast_a_spell_recently" } }, - [5385]={ + [5573]={ [1]={ [1]={ [1]={ @@ -123568,7 +127982,7 @@ return { [1]="chance_to_block_spells_%_if_damaged_by_a_hit_recently" } }, - [5386]={ + [5574]={ [1]={ [1]={ limit={ @@ -123584,7 +127998,7 @@ return { [1]="chance_to_block_spells_%_while_affected_by_discipline" } }, - [5387]={ + [5575]={ [1]={ [1]={ limit={ @@ -123600,7 +128014,7 @@ return { [1]="chance_to_block_spells_%_while_channelling" } }, - [5388]={ + [5576]={ [1]={ [1]={ [1]={ @@ -123620,7 +128034,7 @@ return { [1]="chance_to_create_consecrated_ground_on_melee_kill_%" } }, - [5389]={ + [5577]={ [1]={ [1]={ [1]={ @@ -123666,7 +128080,7 @@ return { [1]="chance_to_crush_on_hit_%" } }, - [5390]={ + [5578]={ [1]={ [1]={ limit={ @@ -123682,7 +128096,7 @@ return { [1]="chance_to_deal_double_attack_damage_%_if_attack_time_longer_than_1_second" } }, - [5391]={ + [5579]={ [1]={ [1]={ limit={ @@ -123698,7 +128112,7 @@ return { [1]="chance_to_deal_double_damage_%_while_at_least_200_strength" } }, - [5392]={ + [5580]={ [1]={ [1]={ limit={ @@ -123714,7 +128128,7 @@ return { [1]="chance_to_deal_double_damage_for_3_seconds_on_spell_cast_every_9_seconds" } }, - [5393]={ + [5581]={ [1]={ [1]={ limit={ @@ -123730,7 +128144,7 @@ return { [1]="chance_to_deal_double_damage_%" } }, - [5394]={ + [5582]={ [1]={ [1]={ [1]={ @@ -123750,7 +128164,7 @@ return { [1]="chance_to_deal_double_damage_%_if_crit_with_two_handed_melee_weapon_recently" } }, - [5395]={ + [5583]={ [1]={ [1]={ [1]={ @@ -123770,7 +128184,7 @@ return { [1]="chance_to_deal_double_damage_%_if_have_stunned_an_enemy_recently" } }, - [5396]={ + [5584]={ [1]={ [1]={ limit={ @@ -123786,7 +128200,7 @@ return { [1]="chance_to_deal_double_damage_%_if_used_a_warcry_in_past_8_seconds" } }, - [5397]={ + [5585]={ [1]={ [1]={ limit={ @@ -123802,7 +128216,7 @@ return { [1]="chance_to_deal_double_damage_%_per_10_intelligence" } }, - [5398]={ + [5586]={ [1]={ [1]={ limit={ @@ -123818,7 +128232,7 @@ return { [1]="chance_to_deal_double_damage_%_per_4_rage" } }, - [5399]={ + [5587]={ [1]={ [1]={ limit={ @@ -123834,7 +128248,7 @@ return { [1]="chance_to_deal_double_damage_%_per_500_strength" } }, - [5400]={ + [5588]={ [1]={ [1]={ limit={ @@ -123859,7 +128273,7 @@ return { [1]="chance_to_deal_double_damage_%_while_focused" } }, - [5401]={ + [5589]={ [1]={ [1]={ limit={ @@ -123875,7 +128289,7 @@ return { [1]="chance_to_deal_double_damage_+%_if_cast_vulnerability_in_past_10_seconds" } }, - [5402]={ + [5590]={ [1]={ [1]={ limit={ @@ -123891,7 +128305,7 @@ return { [1]="chance_to_deal_double_damage_while_on_full_life_%" } }, - [5403]={ + [5591]={ [1]={ [1]={ limit={ @@ -123907,7 +128321,7 @@ return { [1]="chance_to_deal_triple_damage_%_while_at_least_400_strength" } }, - [5404]={ + [5592]={ [1]={ [1]={ [1]={ @@ -123927,7 +128341,7 @@ return { [1]="chance_to_defend_with_150%_armour_%_per_5%_missing_energy_shield" } }, - [5405]={ + [5593]={ [1]={ [1]={ [1]={ @@ -123947,7 +128361,7 @@ return { [1]="chance_to_double_armour_effect_on_hit_%" } }, - [5406]={ + [5594]={ [1]={ [1]={ [1]={ @@ -123960,14 +128374,14 @@ return { [2]="#" } }, - text="{0}% chance to Defend with double your Armour for each\ntime you've been Hit by an Enemy Recently, up to 30%" + text="{0}% chance to Defend with 200% of Armour for each\ntime you've been Hit by an Enemy Recently, up to 30%" } }, stats={ [1]="chance_to_double_armour_effect_on_hit_%_per_enemy_hit_taken_recently_capped" } }, - [5407]={ + [5595]={ [1]={ [1]={ limit={ @@ -123983,7 +128397,7 @@ return { [1]="chance_to_evade_attacks_%" } }, - [5408]={ + [5596]={ [1]={ [1]={ [1]={ @@ -124003,7 +128417,7 @@ return { [1]="chance_to_evade_attacks_%_if_havent_been_hit_recently" } }, - [5409]={ + [5597]={ [1]={ [1]={ limit={ @@ -124019,7 +128433,7 @@ return { [1]="chance_to_evade_attacks_%_while_affected_by_grace" } }, - [5410]={ + [5598]={ [1]={ [1]={ limit={ @@ -124035,7 +128449,7 @@ return { [1]="chance_to_evade_%_while_you_have_energy_shield" } }, - [5411]={ + [5599]={ [1]={ [1]={ limit={ @@ -124051,7 +128465,7 @@ return { [1]="chance_to_fork_extra_projectile_%" } }, - [5412]={ + [5600]={ [1]={ [1]={ [1]={ @@ -124092,7 +128506,7 @@ return { [1]="chance_to_fortify_on_melee_stun_%" } }, - [5413]={ + [5601]={ [1]={ [1]={ [1]={ @@ -124112,7 +128526,7 @@ return { [1]="chance_to_freeze_enemies_for_1_second_when_hit_%" } }, - [5414]={ + [5602]={ [1]={ [1]={ limit={ @@ -124128,7 +128542,7 @@ return { [1]="chance_to_freeze_shock_ignite_%_while_affected_by_a_herald" } }, - [5415]={ + [5603]={ [1]={ [1]={ limit={ @@ -124144,7 +128558,7 @@ return { [1]="chance_to_gain_200_life_on_hit_with_attacks_%" } }, - [5416]={ + [5604]={ [1]={ [1]={ limit={ @@ -124160,7 +128574,7 @@ return { [1]="chance_to_gain_3_additional_exerted_attacks_%" } }, - [5417]={ + [5605]={ [1]={ [1]={ [1]={ @@ -124180,7 +128594,7 @@ return { [1]="chance_to_gain_adrenaline_for_2_seconds_on_leech_removed_by_filling_unreserved_life_%" } }, - [5418]={ + [5606]={ [1]={ [1]={ [1]={ @@ -124200,7 +128614,7 @@ return { [1]="chance_to_gain_elusive_when_you_block_while_dual_wielding_%" } }, - [5419]={ + [5607]={ [1]={ [1]={ limit={ @@ -124216,7 +128630,7 @@ return { [1]="chance_to_gain_endurance_charge_on_hit_%_vs_bleeding_enemy" } }, - [5420]={ + [5608]={ [1]={ [1]={ limit={ @@ -124232,7 +128646,7 @@ return { [1]="chance_to_gain_endurance_charge_when_you_stun_enemy_%" } }, - [5421]={ + [5609]={ [1]={ [1]={ limit={ @@ -124248,7 +128662,7 @@ return { [1]="chance_to_gain_endurance_charge_when_you_taunt_enemy_%" } }, - [5422]={ + [5610]={ [1]={ [1]={ limit={ @@ -124273,7 +128687,7 @@ return { [1]="chance_to_gain_frenzy_charge_on_block_attack_%" } }, - [5423]={ + [5611]={ [1]={ [1]={ limit={ @@ -124298,7 +128712,7 @@ return { [1]="chance_to_gain_frenzy_charge_on_block_%" } }, - [5424]={ + [5612]={ [1]={ [1]={ limit={ @@ -124314,7 +128728,7 @@ return { [1]="chance_to_gain_frenzy_charge_on_stun_%" } }, - [5425]={ + [5613]={ [1]={ [1]={ [1]={ @@ -124334,7 +128748,7 @@ return { [1]="chance_to_gain_onslaught_for_4_seconds_on_leech_removed_by_filling_unreserved_life_%" } }, - [5426]={ + [5614]={ [1]={ [1]={ limit={ @@ -124350,7 +128764,7 @@ return { [1]="chance_to_gain_onslaught_on_flask_use_%" } }, - [5427]={ + [5615]={ [1]={ [1]={ [1]={ @@ -124370,7 +128784,7 @@ return { [1]="chance_to_gain_onslaught_on_hit_%_vs_rare_or_unique_enemy" } }, - [5428]={ + [5616]={ [1]={ [1]={ [1]={ @@ -124403,7 +128817,7 @@ return { [1]="chance_to_gain_onslaught_on_kill_for_10_seconds_%" } }, - [5429]={ + [5617]={ [1]={ [1]={ limit={ @@ -124419,7 +128833,7 @@ return { [1]="chance_to_gain_power_charge_on_hitting_enemy_affected_by_spiders_web_%" } }, - [5430]={ + [5618]={ [1]={ [1]={ limit={ @@ -124444,7 +128858,7 @@ return { [1]="chance_to_gain_power_charge_on_rare_or_unique_enemy_hit_%" } }, - [5431]={ + [5619]={ [1]={ [1]={ limit={ @@ -124460,7 +128874,7 @@ return { [1]="chance_to_gain_random_standard_charge_on_hit_%" } }, - [5432]={ + [5620]={ [1]={ [1]={ limit={ @@ -124476,7 +128890,7 @@ return { [1]="chance_to_gain_skill_cost_as_mana_when_paid_%" } }, - [5433]={ + [5621]={ [1]={ [1]={ [1]={ @@ -124496,7 +128910,7 @@ return { [1]="chance_to_gain_unholy_might_on_crit_for_4_seconds_%" } }, - [5434]={ + [5622]={ [1]={ [1]={ [1]={ @@ -124529,7 +128943,7 @@ return { [1]="chance_to_gain_old_unholy_might_on_kill_for_10_seconds_%" } }, - [5435]={ + [5623]={ [1]={ [1]={ limit={ @@ -124554,7 +128968,7 @@ return { [1]="chance_to_grant_endurance_charge_to_nearby_allies_on_hit_%" } }, - [5436]={ + [5624]={ [1]={ [1]={ limit={ @@ -124579,7 +128993,7 @@ return { [1]="chance_to_grant_frenzy_charge_to_nearby_allies_on_kill_%" } }, - [5437]={ + [5625]={ [1]={ [1]={ limit={ @@ -124595,7 +129009,7 @@ return { [1]="chance_to_grant_power_charge_on_shocking_chilled_enemy_%" } }, - [5438]={ + [5626]={ [1]={ [1]={ [1]={ @@ -124627,7 +129041,7 @@ return { [1]="chance_to_ignite_freeze_shock_and_poison_+%_vs_cursed_enemies" } }, - [5439]={ + [5627]={ [1]={ [1]={ limit={ @@ -124643,7 +129057,7 @@ return { [1]="chance_to_ignore_hexproof_%" } }, - [5440]={ + [5628]={ [1]={ [1]={ [1]={ @@ -124676,7 +129090,7 @@ return { [1]="chance_to_inflict_additional_impale_%" } }, - [5441]={ + [5629]={ [1]={ [1]={ [1]={ @@ -124709,7 +129123,7 @@ return { [1]="chance_to_inflict_brittle_on_enemy_on_block_%" } }, - [5442]={ + [5630]={ [1]={ [1]={ [1]={ @@ -124729,7 +129143,7 @@ return { [1]="chance_to_inflict_cold_exposure_on_hit_with_cold_damage_%" } }, - [5443]={ + [5631]={ [1]={ [1]={ [1]={ @@ -124749,7 +129163,7 @@ return { [1]="chance_to_inflict_fire_exposure_on_hit_with_fire_damage_%" } }, - [5444]={ + [5632]={ [1]={ [1]={ [1]={ @@ -124769,7 +129183,7 @@ return { [1]="chance_to_inflict_lightning_exposure_on_hit_with_lightning_damage_%" } }, - [5445]={ + [5633]={ [1]={ [1]={ [1]={ @@ -124802,7 +129216,7 @@ return { [1]="chance_to_inflict_sap_on_enemy_on_block_%" } }, - [5446]={ + [5634]={ [1]={ [1]={ [1]={ @@ -124835,7 +129249,7 @@ return { [1]="chance_to_inflict_scorch_on_enemy_on_block_%" } }, - [5447]={ + [5635]={ [1]={ [1]={ [1]={ @@ -124855,7 +129269,7 @@ return { [1]="chance_to_intimidate_nearby_enemies_on_melee_kill_%" } }, - [5448]={ + [5636]={ [1]={ [1]={ [1]={ @@ -124888,7 +129302,7 @@ return { [1]="chance_to_intimidate_on_hit_%" } }, - [5449]={ + [5637]={ [1]={ [1]={ limit={ @@ -124904,7 +129318,7 @@ return { [1]="chance_to_leave_2_ground_blades_%" } }, - [5450]={ + [5638]={ [1]={ [1]={ [1]={ @@ -124924,7 +129338,7 @@ return { [1]="chance_to_not_gain_tincture_toxicity_%" } }, - [5451]={ + [5639]={ [1]={ [1]={ limit={ @@ -124940,7 +129354,7 @@ return { [1]="chance_to_poison_on_hit_%_per_power_charge" } }, - [5452]={ + [5640]={ [1]={ [1]={ [1]={ @@ -124960,7 +129374,7 @@ return { [1]="chance_to_remove_1_tincture_toxicity_on_kill_%" } }, - [5453]={ + [5641]={ [1]={ [1]={ [1]={ @@ -125005,7 +129419,7 @@ return { [1]="chance_to_sap_%_vs_enemies_in_chilling_areas" } }, - [5454]={ + [5642]={ [1]={ [1]={ [1]={ @@ -125025,7 +129439,7 @@ return { [1]="chance_to_shock_chilled_enemies_%" } }, - [5455]={ + [5643]={ [1]={ [1]={ limit={ @@ -125041,7 +129455,7 @@ return { [1]="chance_to_start_energy_shield_recharge_%_on_linking_target" } }, - [5456]={ + [5644]={ [1]={ [1]={ limit={ @@ -125057,7 +129471,7 @@ return { [1]="chance_to_summon_two_totems_%" } }, - [5457]={ + [5645]={ [1]={ [1]={ limit={ @@ -125073,7 +129487,7 @@ return { [1]="chance_to_throw_4_additional_traps_%" } }, - [5458]={ + [5646]={ [1]={ [1]={ [1]={ @@ -125106,7 +129520,7 @@ return { [1]="chance_to_unnerve_on_hit_%" } }, - [5459]={ + [5647]={ [1]={ [1]={ [1]={ @@ -125139,7 +129553,7 @@ return { [1]="chance_to_unnerve_on_hit_with_spells_%" } }, - [5460]={ + [5648]={ [1]={ [1]={ limit={ @@ -125168,7 +129582,7 @@ return { [1]="channelled_skill_damage_+%" } }, - [5461]={ + [5649]={ [1]={ [1]={ limit={ @@ -125197,7 +129611,7 @@ return { [1]="channelled_skill_damage_+%_per_10_devotion" } }, - [5462]={ + [5650]={ [1]={ [1]={ [1]={ @@ -125217,7 +129631,27 @@ return { [1]="chaos_damage_does_not_bypass_energy_shield_while_not_low_life" } }, - [5463]={ + [5651]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextLowMana" + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Chaos Damage taken does not bypass Energy Shield while not on Low Mana" + } + }, + stats={ + [1]="chaos_damage_does_not_bypass_energy_shield_while_not_low_mana" + } + }, + [5652]={ [1]={ [1]={ [1]={ @@ -125250,7 +129684,7 @@ return { [1]="extra_chaos_damage_rolls" } }, - [5464]={ + [5653]={ [1]={ [1]={ limit={ @@ -125266,7 +129700,7 @@ return { [1]="chaos_damage_over_time_heals_while_leeching_life" } }, - [5465]={ + [5654]={ [1]={ [1]={ limit={ @@ -125282,7 +129716,7 @@ return { [1]="chaos_damage_over_time_multiplier_+_per_4_chaos_resistance" } }, - [5466]={ + [5655]={ [1]={ [1]={ limit={ @@ -125298,7 +129732,7 @@ return { [1]="additional_chaos_resistance_against_damage_over_time_%" } }, - [5467]={ + [5656]={ [1]={ [1]={ [1]={ @@ -125318,7 +129752,7 @@ return { [1]="chaos_damage_per_minute_while_affected_by_flask" } }, - [5468]={ + [5657]={ [1]={ [1]={ limit={ @@ -125343,7 +129777,7 @@ return { [1]="chaos_damage_%_taken_from_mana_before_life" } }, - [5469]={ + [5658]={ [1]={ [1]={ limit={ @@ -125359,7 +129793,7 @@ return { [1]="chaos_damage_+%_per_100_max_mana_up_to_80" } }, - [5470]={ + [5659]={ [1]={ [1]={ limit={ @@ -125388,7 +129822,7 @@ return { [1]="chaos_damage_+%_while_affected_by_herald_of_agony" } }, - [5471]={ + [5660]={ [1]={ [1]={ limit={ @@ -125404,7 +129838,7 @@ return { [1]="chaos_damage_resistance_%_per_endurance_charge" } }, - [5472]={ + [5661]={ [1]={ [1]={ limit={ @@ -125420,7 +129854,7 @@ return { [1]="chaos_damage_resistance_is_doubled" } }, - [5473]={ + [5662]={ [1]={ [1]={ limit={ @@ -125436,7 +129870,7 @@ return { [1]="chaos_damage_resistance_%_per_poison_stack" } }, - [5474]={ + [5663]={ [1]={ [1]={ limit={ @@ -125461,7 +129895,7 @@ return { [1]="chaos_damage_resistance_%_when_stationary" } }, - [5475]={ + [5664]={ [1]={ [1]={ limit={ @@ -125477,7 +129911,7 @@ return { [1]="chaos_damage_resistance_%_while_affected_by_herald_of_agony" } }, - [5476]={ + [5665]={ [1]={ [1]={ limit={ @@ -125493,7 +129927,7 @@ return { [1]="chaos_damage_resistance_%_while_affected_by_purity_of_elements" } }, - [5477]={ + [5666]={ [1]={ [1]={ limit={ @@ -125509,7 +129943,7 @@ return { [1]="chaos_damage_resisted_by_highest_resistance" } }, - [5478]={ + [5667]={ [1]={ [1]={ limit={ @@ -125525,7 +129959,27 @@ return { [1]="chaos_damage_resisted_by_lowest_resistance" } }, - [5479]={ + [5668]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextRecoup" + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% of Chaos Damage taken Recouped as Life" + } + }, + stats={ + [1]="chaos_damage_taken_goes_to_life_over_4_seconds_%" + } + }, + [5669]={ [1]={ [1]={ limit={ @@ -125554,7 +130008,7 @@ return { [1]="chaos_damage_taken_over_time_+%_while_in_caustic_cloud" } }, - [5480]={ + [5670]={ [1]={ [1]={ limit={ @@ -125583,7 +130037,7 @@ return { [1]="chaos_damage_with_attack_skills_+%" } }, - [5481]={ + [5671]={ [1]={ [1]={ limit={ @@ -125612,7 +130066,7 @@ return { [1]="chaos_damage_with_spell_skills_+%" } }, - [5482]={ + [5672]={ [1]={ [1]={ [1]={ @@ -125632,7 +130086,7 @@ return { [1]="chaos_golem_impale_on_hit_if_same_number_of_summoned_stone_golems" } }, - [5483]={ + [5673]={ [1]={ [1]={ limit={ @@ -125648,7 +130102,7 @@ return { [1]="chaos_hit_and_dot_damage_%_taken_as_fire" } }, - [5484]={ + [5674]={ [1]={ [1]={ limit={ @@ -125664,7 +130118,7 @@ return { [1]="chaos_hit_and_dot_damage_%_taken_as_lightning" } }, - [5485]={ + [5675]={ [1]={ [1]={ [1]={ @@ -125684,7 +130138,7 @@ return { [1]="chaos_skill_chance_to_hinder_on_hit_%" } }, - [5486]={ + [5676]={ [1]={ [1]={ limit={ @@ -125700,7 +130154,7 @@ return { [1]="chaos_skill_chance_to_ignite_%" } }, - [5487]={ + [5677]={ [1]={ [1]={ limit={ @@ -125716,7 +130170,7 @@ return { [1]="chaos_skill_gem_level_+" } }, - [5488]={ + [5678]={ [1]={ [1]={ limit={ @@ -125745,7 +130199,7 @@ return { [1]="chaos_skills_area_of_effect_+%" } }, - [5489]={ + [5679]={ [1]={ [1]={ limit={ @@ -125774,7 +130228,7 @@ return { [1]="charged_dash_movement_speed_+%_final" } }, - [5490]={ + [5680]={ [1]={ [1]={ limit={ @@ -125790,7 +130244,7 @@ return { [1]="chest_drop_additional_corrupted_item_divination_cards" } }, - [5491]={ + [5681]={ [1]={ [1]={ limit={ @@ -125806,7 +130260,7 @@ return { [1]="chest_drop_additional_currency_item_divination_cards" } }, - [5492]={ + [5682]={ [1]={ [1]={ limit={ @@ -125822,7 +130276,7 @@ return { [1]="chest_drop_additional_divination_cards_from_current_world_area" } }, - [5493]={ + [5683]={ [1]={ [1]={ limit={ @@ -125838,7 +130292,7 @@ return { [1]="chest_drop_additional_divination_cards_from_same_set" } }, - [5494]={ + [5684]={ [1]={ [1]={ limit={ @@ -125854,7 +130308,7 @@ return { [1]="chest_drop_additional_unique_item_divination_cards" } }, - [5495]={ + [5685]={ [1]={ [1]={ limit={ @@ -125870,7 +130324,7 @@ return { [1]="chest_number_of_additional_pirate_uniques_to_drop" } }, - [5496]={ + [5686]={ [1]={ [1]={ limit={ @@ -125899,7 +130353,7 @@ return { [1]="chill_and_freeze_duration_+%" } }, - [5497]={ + [5687]={ [1]={ [1]={ [1]={ @@ -125932,7 +130386,7 @@ return { [1]="chill_attackers_for_4_seconds_on_block_%_chance" } }, - [5498]={ + [5688]={ [1]={ [1]={ limit={ @@ -125961,7 +130415,7 @@ return { [1]="chill_effect_+%_while_mana_leeching" } }, - [5499]={ + [5689]={ [1]={ [1]={ limit={ @@ -125977,7 +130431,7 @@ return { [1]="chill_effect_is_reversed" } }, - [5500]={ + [5690]={ [1]={ [1]={ limit={ @@ -126006,7 +130460,7 @@ return { [1]="chill_effect_+%" } }, - [5501]={ + [5691]={ [1]={ [1]={ limit={ @@ -126035,7 +130489,7 @@ return { [1]="chill_effect_+%_with_critical_strikes" } }, - [5502]={ + [5692]={ [1]={ [1]={ limit={ @@ -126051,7 +130505,7 @@ return { [1]="chill_minimum_slow_%_from_mastery" } }, - [5503]={ + [5693]={ [1]={ [1]={ [1]={ @@ -126071,7 +130525,7 @@ return { [1]="chill_nearby_enemies_when_you_focus" } }, - [5504]={ + [5694]={ [1]={ [1]={ [1]={ @@ -126108,7 +130562,7 @@ return { [1]="chilled_ground_effect_+%" } }, - [5505]={ + [5695]={ [1]={ [1]={ [1]={ @@ -126141,7 +130595,7 @@ return { [1]="chilled_ground_when_hit_with_attack_%" } }, - [5506]={ + [5696]={ [1]={ [1]={ [1]={ @@ -126161,7 +130615,7 @@ return { [1]="chilled_while_bleeding" } }, - [5507]={ + [5697]={ [1]={ [1]={ [1]={ @@ -126181,7 +130635,7 @@ return { [1]="chilled_while_poisoned" } }, - [5508]={ + [5698]={ [1]={ [1]={ [1]={ @@ -126218,7 +130672,7 @@ return { [1]="chilling_areas_also_grant_curse_effect_+%" } }, - [5509]={ + [5699]={ [1]={ [1]={ [1]={ @@ -126255,7 +130709,7 @@ return { [1]="chilling_areas_also_grant_lightning_damage_taken_+%" } }, - [5510]={ + [5700]={ [1]={ [1]={ limit={ @@ -126271,7 +130725,7 @@ return { [1]="chills_from_your_hits_cause_shattering" } }, - [5511]={ + [5701]={ [1]={ [1]={ limit={ @@ -126287,7 +130741,7 @@ return { [1]="chronomancer_reserves_no_mana" } }, - [5512]={ + [5702]={ [1]={ [1]={ limit={ @@ -126316,7 +130770,7 @@ return { [1]="circle_of_power_critical_strike_chance_+%_per_stage" } }, - [5513]={ + [5703]={ [1]={ [1]={ limit={ @@ -126337,7 +130791,7 @@ return { [2]="circle_of_power_max_added_lightning_per_stage" } }, - [5514]={ + [5704]={ [1]={ [1]={ limit={ @@ -126366,7 +130820,7 @@ return { [1]="circle_of_power_upgrade_cost_+%" } }, - [5515]={ + [5705]={ [1]={ [1]={ [1]={ @@ -126399,7 +130853,7 @@ return { [1]="clarity_mana_reservation_efficiency_-2%_per_1" } }, - [5516]={ + [5706]={ [1]={ [1]={ limit={ @@ -126428,7 +130882,7 @@ return { [1]="clarity_mana_reservation_efficiency_+%" } }, - [5517]={ + [5707]={ [1]={ [1]={ limit={ @@ -126444,7 +130898,7 @@ return { [1]="clarity_reserves_no_mana" } }, - [5518]={ + [5708]={ [1]={ [1]={ limit={ @@ -126460,7 +130914,7 @@ return { [1]="claw_damage_against_enemies_on_low_life_+%" } }, - [5519]={ + [5709]={ [1]={ [1]={ limit={ @@ -126489,7 +130943,7 @@ return { [1]="claw_damage_+%_while_on_low_life" } }, - [5520]={ + [5710]={ [1]={ [1]={ [1]={ @@ -126513,7 +130967,7 @@ return { [1]="cleave_fortify_on_hit" } }, - [5521]={ + [5711]={ [1]={ [1]={ limit={ @@ -126529,7 +130983,7 @@ return { [1]="cleave_+1_base_radius_per_nearby_enemy_up_to_10" } }, - [5522]={ + [5712]={ [1]={ [1]={ [1]={ @@ -126549,7 +131003,7 @@ return { [1]="cobra_lash_and_venom_gyre_bleeding_damage_+100%_final_chance" } }, - [5523]={ + [5713]={ [1]={ [1]={ limit={ @@ -126565,7 +131019,7 @@ return { [1]="cobra_lash_and_venom_gyre_skill_physical_damage_%_to_convert_to_chaos" } }, - [5524]={ + [5714]={ [1]={ [1]={ limit={ @@ -126594,7 +131048,7 @@ return { [1]="cobra_lash_damage_+%" } }, - [5525]={ + [5715]={ [1]={ [1]={ limit={ @@ -126619,7 +131073,7 @@ return { [1]="cobra_lash_number_of_additional_chains" } }, - [5526]={ + [5716]={ [1]={ [1]={ limit={ @@ -126648,7 +131102,7 @@ return { [1]="cobra_lash_projectile_speed_+%" } }, - [5527]={ + [5717]={ [1]={ [1]={ [1]={ @@ -126685,7 +131139,7 @@ return { [1]="cold_ailment_duration_+%" } }, - [5528]={ + [5718]={ [1]={ [1]={ [1]={ @@ -126722,7 +131176,7 @@ return { [1]="cold_ailment_effect_+%_against_shocked_enemies" } }, - [5529]={ + [5719]={ [1]={ [1]={ [1]={ @@ -126759,7 +131213,7 @@ return { [1]="cold_ailment_effect_+%" } }, - [5530]={ + [5720]={ [1]={ [1]={ [1]={ @@ -126796,7 +131250,7 @@ return { [1]="cold_ailments_effect_+%_final_if_hit_highest_cold" } }, - [5531]={ + [5721]={ [1]={ [1]={ limit={ @@ -126812,7 +131266,7 @@ return { [1]="cold_and_chaos_damage_resistance_%" } }, - [5532]={ + [5722]={ [1]={ [1]={ limit={ @@ -126828,7 +131282,7 @@ return { [1]="cold_and_lightning_hit_and_dot_damage_%_taken_as_fire_while_affected_by_purity_of_fire" } }, - [5533]={ + [5723]={ [1]={ [1]={ limit={ @@ -126844,7 +131298,7 @@ return { [1]="cold_damage_%_to_add_as_fire_per_1%_chill_effect_on_enemy" } }, - [5534]={ + [5724]={ [1]={ [1]={ limit={ @@ -126860,7 +131314,7 @@ return { [1]="cold_damage_%_to_add_as_fire_vs_frozen_enemies" } }, - [5535]={ + [5725]={ [1]={ [1]={ limit={ @@ -126876,7 +131330,7 @@ return { [1]="cold_damage_+%_per_cold_resistance_above_75" } }, - [5536]={ + [5726]={ [1]={ [1]={ [1]={ @@ -126896,7 +131350,23 @@ return { [1]="cold_damage_over_time_multiplier_+_per_4%_overcapped_cold_resistance" } }, - [5537]={ + [5727]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d}% to Cold Damage over Time Multiplier per Power Charge" + } + }, + stats={ + [1]="cold_damage_over_time_multiplier_+_per_power_charge" + } + }, + [5728]={ [1]={ [1]={ limit={ @@ -126912,7 +131382,7 @@ return { [1]="cold_damage_%_to_add_as_chaos_per_frenzy_charge" } }, - [5538]={ + [5729]={ [1]={ [1]={ limit={ @@ -126941,7 +131411,7 @@ return { [1]="cold_damage_+%_if_you_have_used_a_fire_skill_recently" } }, - [5539]={ + [5730]={ [1]={ [1]={ limit={ @@ -126957,7 +131427,7 @@ return { [1]="cold_damage_+%_per_25_dexterity" } }, - [5540]={ + [5731]={ [1]={ [1]={ limit={ @@ -126973,7 +131443,7 @@ return { [1]="cold_damage_+%_per_25_intelligence" } }, - [5541]={ + [5732]={ [1]={ [1]={ limit={ @@ -126989,7 +131459,7 @@ return { [1]="cold_damage_+%_per_25_strength" } }, - [5542]={ + [5733]={ [1]={ [1]={ limit={ @@ -127018,7 +131488,7 @@ return { [1]="cold_damage_+%_per_frenzy_charge" } }, - [5543]={ + [5734]={ [1]={ [1]={ [1]={ @@ -127055,7 +131525,7 @@ return { [1]="cold_damage_+%_per_missing_cold_resistance" } }, - [5544]={ + [5735]={ [1]={ [1]={ limit={ @@ -127084,7 +131554,7 @@ return { [1]="cold_damage_+%_while_affected_by_hatred" } }, - [5545]={ + [5736]={ [1]={ [1]={ limit={ @@ -127113,7 +131583,7 @@ return { [1]="cold_damage_+%_while_affected_by_herald_of_ice" } }, - [5546]={ + [5737]={ [1]={ [1]={ limit={ @@ -127142,7 +131612,7 @@ return { [1]="cold_damage_+%_while_off_hand_is_empty" } }, - [5547]={ + [5738]={ [1]={ [1]={ limit={ @@ -127158,7 +131628,7 @@ return { [1]="cold_damage_resistance_%_while_affected_by_herald_of_ice" } }, - [5548]={ + [5739]={ [1]={ [1]={ [1]={ @@ -127178,7 +131648,7 @@ return { [1]="cold_damage_taken_goes_to_life_over_4_seconds_%" } }, - [5549]={ + [5740]={ [1]={ [1]={ limit={ @@ -127194,7 +131664,7 @@ return { [1]="cold_damage_taken_+" } }, - [5550]={ + [5741]={ [1]={ [1]={ [1]={ @@ -127231,7 +131701,7 @@ return { [1]="cold_damage_taken_+%_if_have_been_hit_recently" } }, - [5551]={ + [5742]={ [1]={ [1]={ limit={ @@ -127260,7 +131730,7 @@ return { [1]="cold_damage_with_attack_skills_+%" } }, - [5552]={ + [5743]={ [1]={ [1]={ limit={ @@ -127289,7 +131759,7 @@ return { [1]="cold_damage_with_spell_skills_+%" } }, - [5553]={ + [5744]={ [1]={ [1]={ [1]={ @@ -127309,7 +131779,7 @@ return { [1]="cold_exposure_on_hit_magnitude" } }, - [5554]={ + [5745]={ [1]={ [1]={ limit={ @@ -127325,7 +131795,7 @@ return { [1]="cold_exposure_you_inflict_applies_extra_cold_resistance_+%" } }, - [5555]={ + [5746]={ [1]={ [1]={ limit={ @@ -127341,7 +131811,7 @@ return { [1]="cold_hit_and_dot_damage_%_taken_as_fire" } }, - [5556]={ + [5747]={ [1]={ [1]={ limit={ @@ -127357,7 +131827,7 @@ return { [1]="cold_hit_and_dot_damage_%_taken_as_lightning" } }, - [5557]={ + [5748]={ [1]={ [1]={ limit={ @@ -127386,7 +131856,7 @@ return { [1]="cold_hit_damage_+%_vs_shocked_enemies" } }, - [5558]={ + [5749]={ [1]={ [1]={ limit={ @@ -127402,7 +131872,7 @@ return { [1]="cold_penetration_%_vs_chilled_enemies" } }, - [5559]={ + [5750]={ [1]={ [1]={ limit={ @@ -127418,7 +131888,7 @@ return { [1]="cold_projectile_mine_critical_multiplier_+" } }, - [5560]={ + [5751]={ [1]={ [1]={ limit={ @@ -127447,7 +131917,7 @@ return { [1]="cold_projectile_mine_damage_+%" } }, - [5561]={ + [5752]={ [1]={ [1]={ [1]={ @@ -127476,7 +131946,7 @@ return { [1]="cold_projectile_mine_throwing_speed_negated_+%" } }, - [5562]={ + [5753]={ [1]={ [1]={ limit={ @@ -127505,7 +131975,7 @@ return { [1]="cold_projectile_mine_throwing_speed_+%" } }, - [5563]={ + [5754]={ [1]={ [1]={ limit={ @@ -127534,7 +132004,7 @@ return { [1]="cold_reflect_damage_taken_+%_while_affected_by_purity_of_ice" } }, - [5564]={ + [5755]={ [1]={ [1]={ limit={ @@ -127550,7 +132020,7 @@ return { [1]="cold_resistance_cannot_be_penetrated" } }, - [5565]={ + [5756]={ [1]={ [1]={ [1]={ @@ -127570,7 +132040,23 @@ return { [1]="cold_skill_chance_to_inflict_cold_exposure_%" } }, - [5566]={ + [5757]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d} to Level of all Cold Skill Gems if at least 4 Foulborn Unique Items are Equipped" + } + }, + stats={ + [1]="cold_skill_gem_level_+_if_at_least_4_foulborn_uniques_equipped" + } + }, + [5758]={ [1]={ [1]={ limit={ @@ -127586,7 +132072,7 @@ return { [1]="cold_skill_gem_level_+" } }, - [5567]={ + [5759]={ [1]={ [1]={ [1]={ @@ -127606,7 +132092,7 @@ return { [1]="cold_skills_chance_to_poison_on_hit_%" } }, - [5568]={ + [5760]={ [1]={ [1]={ limit={ @@ -127622,7 +132108,7 @@ return { [1]="cold_snap_uses_and_gains_power_charges_instead_of_frenzy" } }, - [5569]={ + [5761]={ [1]={ [1]={ limit={ @@ -127638,7 +132124,7 @@ return { [1]="cold_spell_physical_damage_%_to_convert_to_cold" } }, - [5570]={ + [5762]={ [1]={ [1]={ limit={ @@ -127654,7 +132140,7 @@ return { [1]="combust_area_of_effect_+%" } }, - [5571]={ + [5763]={ [1]={ [1]={ limit={ @@ -127670,7 +132156,7 @@ return { [1]="combust_is_disabled" } }, - [5572]={ + [5764]={ [1]={ [1]={ limit={ @@ -127686,7 +132172,7 @@ return { [1]="conductivity_no_reservation" } }, - [5573]={ + [5765]={ [1]={ [1]={ limit={ @@ -127702,7 +132188,7 @@ return { [1]="consecrated_ground_additional_physical_damage_reduction_%" } }, - [5574]={ + [5766]={ [1]={ [1]={ limit={ @@ -127718,7 +132204,7 @@ return { [1]="consecrated_ground_allies_recover_es_as_well_as_life_from_life_regeneration" } }, - [5575]={ + [5767]={ [1]={ [1]={ limit={ @@ -127747,7 +132233,7 @@ return { [1]="consecrated_ground_area_+%" } }, - [5576]={ + [5768]={ [1]={ [1]={ [1]={ @@ -127792,7 +132278,7 @@ return { [1]="consecrated_ground_damaging_ailment_duration_on_self_+%" } }, - [5577]={ + [5769]={ [1]={ [1]={ limit={ @@ -127821,7 +132307,7 @@ return { [1]="consecrated_ground_effect_+%" } }, - [5578]={ + [5770]={ [1]={ [1]={ limit={ @@ -127850,7 +132336,7 @@ return { [1]="consecrated_ground_enemy_damage_taken_+%" } }, - [5579]={ + [5771]={ [1]={ [1]={ limit={ @@ -127879,7 +132365,7 @@ return { [1]="consecrated_ground_enemy_damage_taken_+%_while_affected_by_zealotry" } }, - [5580]={ + [5772]={ [1]={ [1]={ [1]={ @@ -127899,7 +132385,7 @@ return { [1]="consecrated_ground_immune_to_curses" } }, - [5581]={ + [5773]={ [1]={ [1]={ [1]={ @@ -127919,7 +132405,7 @@ return { [1]="consecrated_ground_immune_to_status_ailments" } }, - [5582]={ + [5774]={ [1]={ [1]={ [1]={ @@ -127943,7 +132429,7 @@ return { [1]="consecrated_ground_effect_lingers_for_ms_after_leaving_the_area_while_affected_by_zealotry" } }, - [5583]={ + [5775]={ [1]={ [1]={ [1]={ @@ -127976,7 +132462,7 @@ return { [1]="consecrated_ground_on_death" } }, - [5584]={ + [5776]={ [1]={ [1]={ [1]={ @@ -128009,7 +132495,7 @@ return { [1]="consecrated_ground_on_hit" } }, - [5585]={ + [5777]={ [1]={ [1]={ [1]={ @@ -128029,7 +132515,7 @@ return { [1]="consecrated_ground_radius_on_hit_enemy_magic_rare_unique_every_3_seconds" } }, - [5586]={ + [5778]={ [1]={ [1]={ [1]={ @@ -128049,7 +132535,7 @@ return { [1]="consecrated_ground_while_stationary_radius" } }, - [5587]={ + [5779]={ [1]={ [1]={ [1]={ @@ -128069,7 +132555,7 @@ return { [1]="consecrated_ground_while_stationary_radius_if_highest_attribute_is_strength" } }, - [5588]={ + [5780]={ [1]={ [1]={ [1]={ @@ -128089,7 +132575,7 @@ return { [1]="consecrated_path_and_purifying_flame_create_profane_ground_instead_of_consecrated_ground" } }, - [5589]={ + [5781]={ [1]={ [1]={ limit={ @@ -128105,7 +132591,7 @@ return { [1]="consecrated_path_and_purifying_flame_skill_fire_damage_%_to_convert_to_chaos" } }, - [5590]={ + [5782]={ [1]={ [1]={ limit={ @@ -128134,7 +132620,7 @@ return { [1]="consecrated_path_area_of_effect_+%" } }, - [5591]={ + [5783]={ [1]={ [1]={ limit={ @@ -128163,7 +132649,7 @@ return { [1]="consecrated_path_damage_+%" } }, - [5592]={ + [5784]={ [1]={ [1]={ limit={ @@ -128179,7 +132665,7 @@ return { [1]="consume_all_impales_remaining_hits_on_hit_%_chance" } }, - [5593]={ + [5785]={ [1]={ [1]={ limit={ @@ -128208,7 +132694,7 @@ return { [1]="consume_nearby_corpse_every_3_seconds_to_recover_%_maximum_life" } }, - [5594]={ + [5786]={ [1]={ [1]={ limit={ @@ -128242,7 +132728,7 @@ return { [2]="contagion_spread_on_hit_affected_enemy_%" } }, - [5595]={ + [5787]={ [1]={ [1]={ limit={ @@ -128271,7 +132757,7 @@ return { [1]="conversation_trap_converted_enemy_damage_+%" } }, - [5596]={ + [5788]={ [1]={ [1]={ limit={ @@ -128300,7 +132786,7 @@ return { [1]="conversion_trap_converted_enemies_chance_to_taunt_on_hit_%" } }, - [5597]={ + [5789]={ [1]={ [1]={ [1]={ @@ -128320,7 +132806,7 @@ return { [1]="convert_all_elemental_damage_to_chaos" } }, - [5598]={ + [5790]={ [1]={ [1]={ limit={ @@ -128336,7 +132822,7 @@ return { [1]="cooldown_recovery_+%_if_cast_temporal_chains_in_past_10_seconds" } }, - [5599]={ + [5791]={ [1]={ [1]={ limit={ @@ -128365,7 +132851,36 @@ return { [1]="cooldown_recovery_+%_per_power_charge" } }, - [5600]={ + [5792]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Cooldown Recovery Rate for each Green Skill Gem you have socketed" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Cooldown Recovery Rate for each Green Skill Gem you have socketed" + } + }, + stats={ + [1]="cooldown_speed_+%_per_green_skill_gem" + } + }, + [5793]={ [1]={ [1]={ limit={ @@ -128394,7 +132909,7 @@ return { [1]="cooldown_speed_+%_per_brand_up_to_40%" } }, - [5601]={ + [5794]={ [1]={ [1]={ limit={ @@ -128419,7 +132934,7 @@ return { [1]="corpse_erruption_base_maximum_number_of_geyers" } }, - [5602]={ + [5795]={ [1]={ [1]={ limit={ @@ -128448,7 +132963,7 @@ return { [1]="corpse_eruption_cast_speed_+%" } }, - [5603]={ + [5796]={ [1]={ [1]={ limit={ @@ -128477,7 +132992,7 @@ return { [1]="corpse_eruption_damage_+%" } }, - [5604]={ + [5797]={ [1]={ [1]={ limit={ @@ -128506,7 +133021,7 @@ return { [1]="corpse_warp_cast_speed_+%" } }, - [5605]={ + [5798]={ [1]={ [1]={ limit={ @@ -128535,7 +133050,7 @@ return { [1]="corpse_warp_damage_+%" } }, - [5606]={ + [5799]={ [1]={ [1]={ limit={ @@ -128560,7 +133075,7 @@ return { [1]="corpses_drop_loot_again_on_warcry_chance_%" } }, - [5607]={ + [5800]={ [1]={ [1]={ limit={ @@ -128581,7 +133096,7 @@ return { [2]="quality_display_plague_bearer_is_gem" } }, - [5608]={ + [5801]={ [1]={ [1]={ limit={ @@ -128597,7 +133112,7 @@ return { [1]="corrosive_shroud_poison_dot_multiplier_+_while_aura_active" } }, - [5609]={ + [5802]={ [1]={ [1]={ limit={ @@ -128613,7 +133128,7 @@ return { [1]="corrupting_fever_apply_additional_corrupted_blood_%" } }, - [5610]={ + [5803]={ [1]={ [1]={ limit={ @@ -128642,7 +133157,7 @@ return { [1]="corrupting_fever_damage_+%" } }, - [5611]={ + [5804]={ [1]={ [1]={ limit={ @@ -128671,7 +133186,7 @@ return { [1]="corrupting_fever_duration_+%" } }, - [5612]={ + [5805]={ [1]={ [1]={ limit={ @@ -128680,14 +133195,14 @@ return { [2]="#" } }, - text="[DNT] Count as Blocking Attack Damage from the first target Hit with Shield Attacks" + text="Count as Blocking Attack Damage from the first target Hit with each Shield Attack" } }, stats={ [1]="count_as_blocking_attack_from_shield_attack_first_target" } }, - [5613]={ + [5806]={ [1]={ [1]={ limit={ @@ -128703,7 +133218,7 @@ return { [1]="count_as_having_max_endurance_charges" } }, - [5614]={ + [5807]={ [1]={ [1]={ limit={ @@ -128719,7 +133234,7 @@ return { [1]="count_as_having_max_endurance_frenzy_power_charges" } }, - [5615]={ + [5808]={ [1]={ [1]={ limit={ @@ -128735,7 +133250,7 @@ return { [1]="count_as_having_max_frenzy_charges" } }, - [5616]={ + [5809]={ [1]={ [1]={ limit={ @@ -128751,7 +133266,7 @@ return { [1]="count_as_having_max_power_charges" } }, - [5617]={ + [5810]={ [1]={ [1]={ limit={ @@ -128780,7 +133295,7 @@ return { [1]="counterattacks_cooldown_recovery_+%" } }, - [5618]={ + [5811]={ [1]={ [1]={ limit={ @@ -128796,7 +133311,7 @@ return { [1]="counterattacks_deal_double_damage" } }, - [5619]={ + [5812]={ [1]={ [1]={ [1]={ @@ -128829,7 +133344,7 @@ return { [1]="counterattacks_debilitate_for_1_second_on_hit_%_chance" } }, - [5620]={ + [5813]={ [1]={ [1]={ [1]={ @@ -128849,7 +133364,7 @@ return { [1]="cover_in_ash_for_x_seconds_when_igniting_enemy" } }, - [5621]={ + [5814]={ [1]={ [1]={ [1]={ @@ -128882,7 +133397,7 @@ return { [1]="cover_in_ash_on_hit_%" } }, - [5622]={ + [5815]={ [1]={ [1]={ [1]={ @@ -128902,7 +133417,7 @@ return { [1]="cover_in_ash_on_hit_%_while_you_are_burning" } }, - [5623]={ + [5816]={ [1]={ [1]={ [1]={ @@ -128922,7 +133437,7 @@ return { [1]="cover_in_frost_for_x_seconds_when_freezing_enemy" } }, - [5624]={ + [5817]={ [1]={ [1]={ [1]={ @@ -128942,7 +133457,7 @@ return { [1]="cover_in_frost_on_hit" } }, - [5625]={ + [5818]={ [1]={ [1]={ [1]={ @@ -128975,7 +133490,7 @@ return { [1]="cover_in_frost_on_hit_%" } }, - [5626]={ + [5819]={ [1]={ [1]={ [1]={ @@ -129008,7 +133523,7 @@ return { [1]="display_cover_nearby_enemies_in_ash_if_havent_moved_in_past_X_seconds" } }, - [5627]={ + [5820]={ [1]={ [1]={ limit={ @@ -129037,7 +133552,7 @@ return { [1]="crackling_lance_cast_speed_+%" } }, - [5628]={ + [5821]={ [1]={ [1]={ limit={ @@ -129066,7 +133581,7 @@ return { [1]="crackling_lance_damage_+%" } }, - [5629]={ + [5822]={ [1]={ [1]={ limit={ @@ -129082,7 +133597,7 @@ return { [1]="create_additional_brand_%_chance" } }, - [5630]={ + [5823]={ [1]={ [1]={ [1]={ @@ -129102,7 +133617,7 @@ return { [1]="create_blighted_spore_on_killing_rare_enemy" } }, - [5631]={ + [5824]={ [1]={ [1]={ [1]={ @@ -129122,7 +133637,7 @@ return { [1]="create_consecrated_ground_on_hit_%_vs_rare_or_unique_enemy" } }, - [5632]={ + [5825]={ [1]={ [1]={ [1]={ @@ -129142,7 +133657,7 @@ return { [1]="create_consecrated_ground_on_kill_%" } }, - [5633]={ + [5826]={ [1]={ [1]={ limit={ @@ -129167,7 +133682,7 @@ return { [1]="create_enemy_meteor_daemon_on_flask_use_%_chance" } }, - [5634]={ + [5827]={ [1]={ [1]={ [1]={ @@ -129191,7 +133706,7 @@ return { [1]="create_fungal_ground_instead_of_consecrated_ground" } }, - [5635]={ + [5828]={ [1]={ [1]={ limit={ @@ -129212,7 +133727,7 @@ return { [2]="create_herald_of_thunder_storm_on_shocking_enemy" } }, - [5636]={ + [5829]={ [1]={ [1]={ [1]={ @@ -129232,7 +133747,7 @@ return { [1]="create_profane_ground_instead_of_consecrated_ground" } }, - [5637]={ + [5830]={ [1]={ [1]={ limit={ @@ -129248,7 +133763,7 @@ return { [1]="create_smoke_cloud_on_kill_%_chance" } }, - [5638]={ + [5831]={ [1]={ [1]={ limit={ @@ -129264,7 +133779,7 @@ return { [1]="creeping_frost_cold_snap_all_damage_can_sap" } }, - [5639]={ + [5832]={ [1]={ [1]={ [1]={ @@ -129309,7 +133824,7 @@ return { [1]="creeping_frost_cold_snap_chance_to_sap_%_vs_enemies_in_chilling_areas" } }, - [5640]={ + [5833]={ [1]={ [1]={ [1]={ @@ -129329,7 +133844,7 @@ return { [1]="cremation_base_fires_projectile_every_x_ms" } }, - [5641]={ + [5834]={ [1]={ [1]={ limit={ @@ -129358,7 +133873,7 @@ return { [1]="critical_strike_chance_+%_vs_shocked_enemies" } }, - [5642]={ + [5835]={ [1]={ [1]={ limit={ @@ -129374,7 +133889,7 @@ return { [1]="critical_multiplier_+%_per_10_max_es_on_shield" } }, - [5643]={ + [5836]={ [1]={ [1]={ limit={ @@ -129403,7 +133918,7 @@ return { [1]="critical_strike_chance_+%_final_while_affected_by_precision" } }, - [5644]={ + [5837]={ [1]={ [1]={ limit={ @@ -129432,7 +133947,7 @@ return { [1]="critical_strike_chance_+%_vs_enemies_with_lightning_exposure" } }, - [5645]={ + [5838]={ [1]={ [1]={ limit={ @@ -129461,7 +133976,7 @@ return { [1]="critical_strike_chance_against_cursed_enemies_+%" } }, - [5646]={ + [5839]={ [1]={ [1]={ limit={ @@ -129477,7 +133992,7 @@ return { [1]="critical_strike_chance_increased_by_lightning_resistance" } }, - [5647]={ + [5840]={ [1]={ [1]={ [1]={ @@ -129501,7 +134016,7 @@ return { [1]="critical_strike_chance_increased_by_overcapped_lightning_resistance" } }, - [5648]={ + [5841]={ [1]={ [1]={ [1]={ @@ -129521,7 +134036,7 @@ return { [1]="critical_strike_chance_increased_by_spell_suppression_chance" } }, - [5649]={ + [5842]={ [1]={ [1]={ limit={ @@ -129537,7 +134052,7 @@ return { [1]="critical_strike_chance_+%_against_enemies_on_consecrated_ground_while_affected_by_zealotry" } }, - [5650]={ + [5843]={ [1]={ [1]={ limit={ @@ -129566,7 +134081,7 @@ return { [1]="critical_strike_chance_+%_during_any_flask_effect" } }, - [5651]={ + [5844]={ [1]={ [1]={ limit={ @@ -129595,7 +134110,7 @@ return { [1]="critical_strike_chance_+%_final_while_unhinged" } }, - [5652]={ + [5845]={ [1]={ [1]={ [1]={ @@ -129632,7 +134147,7 @@ return { [1]="critical_strike_chance_+%_for_spells_if_you_have_killed_recently" } }, - [5653]={ + [5846]={ [1]={ [1]={ [1]={ @@ -129669,7 +134184,7 @@ return { [1]="critical_strike_chance_+%_if_enemy_killed_recently" } }, - [5654]={ + [5847]={ [1]={ [1]={ [1]={ @@ -129706,7 +134221,7 @@ return { [1]="critical_strike_chance_+%_if_have_been_shocked_recently" } }, - [5655]={ + [5848]={ [1]={ [1]={ [1]={ @@ -129743,7 +134258,7 @@ return { [1]="critical_strike_chance_+%_if_have_not_crit_recently" } }, - [5656]={ + [5849]={ [1]={ [1]={ [1]={ @@ -129780,7 +134295,7 @@ return { [1]="critical_strike_chance_+%_if_havent_blocked_recently" } }, - [5657]={ + [5850]={ [1]={ [1]={ [1]={ @@ -129817,7 +134332,7 @@ return { [1]="critical_strike_chance_+%_if_not_gained_power_charge_recently" } }, - [5658]={ + [5851]={ [1]={ [1]={ limit={ @@ -129846,7 +134361,7 @@ return { [1]="critical_strike_chance_+%_per_10_strength" } }, - [5659]={ + [5852]={ [1]={ [1]={ limit={ @@ -129862,7 +134377,7 @@ return { [1]="critical_strike_chance_+%_per_25_intelligence" } }, - [5660]={ + [5853]={ [1]={ [1]={ limit={ @@ -129891,7 +134406,7 @@ return { [1]="critical_strike_chance_+%_per_blitz_charge" } }, - [5661]={ + [5854]={ [1]={ [1]={ limit={ @@ -129920,7 +134435,7 @@ return { [1]="critical_strike_chance_+%_per_brand" } }, - [5662]={ + [5855]={ [1]={ [1]={ limit={ @@ -129949,7 +134464,7 @@ return { [1]="critical_strike_chance_+%_per_endurance_charge" } }, - [5663]={ + [5856]={ [1]={ [1]={ limit={ @@ -129978,7 +134493,7 @@ return { [1]="critical_strike_chance_+%_per_frenzy_charge" } }, - [5664]={ + [5857]={ [1]={ [1]={ limit={ @@ -130007,7 +134522,7 @@ return { [1]="critical_strike_chance_+%_per_intensity" } }, - [5665]={ + [5858]={ [1]={ [1]={ [1]={ @@ -130044,7 +134559,7 @@ return { [1]="critical_strike_chance_+%_per_mine_detonated_recently_up_to_100%" } }, - [5666]={ + [5859]={ [1]={ [1]={ limit={ @@ -130073,7 +134588,7 @@ return { [1]="critical_strike_chance_+%_per_righteous_charge" } }, - [5667]={ + [5860]={ [1]={ [1]={ limit={ @@ -130102,7 +134617,7 @@ return { [1]="critical_strike_chance_+%_vs_marked_enemy" } }, - [5668]={ + [5861]={ [1]={ [1]={ limit={ @@ -130131,7 +134646,7 @@ return { [1]="critical_strike_chance_+%_vs_taunted_enemies" } }, - [5669]={ + [5862]={ [1]={ [1]={ limit={ @@ -130160,7 +134675,7 @@ return { [1]="critical_strike_chance_+%_while_affected_by_wrath" } }, - [5670]={ + [5863]={ [1]={ [1]={ limit={ @@ -130189,7 +134704,7 @@ return { [1]="critical_strike_chance_+%_while_channelling" } }, - [5671]={ + [5864]={ [1]={ [1]={ limit={ @@ -130218,7 +134733,7 @@ return { [1]="spell_critical_strike_chance_+%_while_dual_wielding" } }, - [5672]={ + [5865]={ [1]={ [1]={ limit={ @@ -130247,7 +134762,7 @@ return { [1]="spell_critical_strike_chance_+%_while_holding_shield" } }, - [5673]={ + [5866]={ [1]={ [1]={ [1]={ @@ -130284,7 +134799,7 @@ return { [1]="spell_critical_strike_chance_+%_while_wielding_staff" } }, - [5674]={ + [5867]={ [1]={ [1]={ limit={ @@ -130313,7 +134828,7 @@ return { [1]="critical_strike_chance_+%_while_you_have_depleted_physical_aegis" } }, - [5675]={ + [5868]={ [1]={ [1]={ limit={ @@ -130329,7 +134844,7 @@ return { [1]="critical_strike_damage_cannot_be_reflected" } }, - [5676]={ + [5869]={ [1]={ [1]={ [1]={ @@ -130349,7 +134864,23 @@ return { [1]="critical_strike_multiplier_+_if_have_dealt_non_crit_recently" } }, - [5677]={ + [5870]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0:+d}% to Critical Strike Multiplier per 25 Dexterity" + } + }, + stats={ + [1]="critical_strike_multiplier_+_per_25_dexterity" + } + }, + [5871]={ [1]={ [1]={ limit={ @@ -130365,7 +134896,7 @@ return { [1]="critical_strike_multiplier_+_vs_stunned_enemies" } }, - [5678]={ + [5872]={ [1]={ [1]={ limit={ @@ -130381,7 +134912,7 @@ return { [1]="critical_strike_multiplier_for_arrows_that_pierce_+" } }, - [5679]={ + [5873]={ [1]={ [1]={ limit={ @@ -130397,7 +134928,7 @@ return { [1]="critical_strike_multiplier_is_300" } }, - [5680]={ + [5874]={ [1]={ [1]={ limit={ @@ -130413,7 +134944,7 @@ return { [1]="critical_strike_multiplier_+_during_any_flask_effect" } }, - [5681]={ + [5875]={ [1]={ [1]={ [1]={ @@ -130433,7 +134964,7 @@ return { [1]="critical_strike_multiplier_+_for_spells_if_you_havent_killed_recently" } }, - [5682]={ + [5876]={ [1]={ [1]={ [1]={ @@ -130453,7 +134984,7 @@ return { [1]="critical_strike_multiplier_+_if_crit_with_a_herald_skill_recently" } }, - [5683]={ + [5877]={ [1]={ [1]={ limit={ @@ -130469,7 +135000,7 @@ return { [1]="critical_strike_multiplier_+_if_dexterity_higher_than_intelligence" } }, - [5684]={ + [5878]={ [1]={ [1]={ [1]={ @@ -130489,7 +135020,7 @@ return { [1]="critical_strike_multiplier_+_if_enemy_killed_recently" } }, - [5685]={ + [5879]={ [1]={ [1]={ [1]={ @@ -130509,7 +135040,7 @@ return { [1]="critical_strike_multiplier_+_if_enemy_shattered_recently" } }, - [5686]={ + [5880]={ [1]={ [1]={ limit={ @@ -130534,7 +135065,7 @@ return { [1]="critical_strike_multiplier_+_if_gained_power_charge_recently" } }, - [5687]={ + [5881]={ [1]={ [1]={ [1]={ @@ -130554,7 +135085,7 @@ return { [1]="critical_strike_multiplier_+_if_have_not_dealt_critical_strike_recently" } }, - [5688]={ + [5882]={ [1]={ [1]={ limit={ @@ -130570,7 +135101,7 @@ return { [1]="critical_strike_multiplier_+_if_rare_or_unique_enemy_nearby" } }, - [5689]={ + [5883]={ [1]={ [1]={ [1]={ @@ -130590,7 +135121,7 @@ return { [1]="critical_strike_multiplier_+_if_taken_a_savage_hit_recently" } }, - [5690]={ + [5884]={ [1]={ [1]={ [1]={ @@ -130610,7 +135141,7 @@ return { [1]="critical_strike_multiplier_+_if_you_have_blocked_recently" } }, - [5691]={ + [5885]={ [1]={ [1]={ limit={ @@ -130626,7 +135157,7 @@ return { [1]="critical_strike_multiplier_+_if_youve_been_channelling_for_at_least_1_second" } }, - [5692]={ + [5886]={ [1]={ [1]={ [1]={ @@ -130646,7 +135177,7 @@ return { [1]="critical_strike_multiplier_+_per_mine_detonated_recently_up_to_40" } }, - [5693]={ + [5887]={ [1]={ [1]={ limit={ @@ -130662,7 +135193,7 @@ return { [1]="critical_strike_multiplier_+_vs_taunted_enemies" } }, - [5694]={ + [5888]={ [1]={ [1]={ limit={ @@ -130678,7 +135209,7 @@ return { [1]="critical_strike_multiplier_+_vs_unique_enemies" } }, - [5695]={ + [5889]={ [1]={ [1]={ limit={ @@ -130694,7 +135225,7 @@ return { [1]="critical_strike_multiplier_+_while_affected_by_anger" } }, - [5696]={ + [5890]={ [1]={ [1]={ limit={ @@ -130710,7 +135241,7 @@ return { [1]="critical_strike_multiplier_+_while_affected_by_precision" } }, - [5697]={ + [5891]={ [1]={ [1]={ limit={ @@ -130726,7 +135257,7 @@ return { [1]="spell_critical_strike_multiplier_+_while_dual_wielding" } }, - [5698]={ + [5892]={ [1]={ [1]={ limit={ @@ -130742,7 +135273,7 @@ return { [1]="spell_critical_strike_multiplier_+_while_holding_shield" } }, - [5699]={ + [5893]={ [1]={ [1]={ [1]={ @@ -130762,7 +135293,7 @@ return { [1]="spell_critical_strike_multiplier_+_while_wielding_staff" } }, - [5700]={ + [5894]={ [1]={ [1]={ limit={ @@ -130778,7 +135309,7 @@ return { [1]="critical_strike_multiplier_+_with_herald_skills" } }, - [5701]={ + [5895]={ [1]={ [1]={ limit={ @@ -130794,7 +135325,7 @@ return { [1]="unarmed_attack_critical_strike_multiplier_+" } }, - [5702]={ + [5896]={ [1]={ [1]={ limit={ @@ -130810,7 +135341,7 @@ return { [1]="critical_strike_multiplier_+%_if_cast_enfeeble_in_past_10_seconds" } }, - [5703]={ + [5897]={ [1]={ [1]={ limit={ @@ -130826,7 +135357,7 @@ return { [1]="critical_strike_multiplier_+%_with_claws_daggers" } }, - [5704]={ + [5898]={ [1]={ [1]={ limit={ @@ -130842,7 +135373,7 @@ return { [1]="critical_strike_%_chance_to_deal_double_damage" } }, - [5705]={ + [5899]={ [1]={ [1]={ limit={ @@ -130858,7 +135389,7 @@ return { [1]="critical_strikes_always_knockback_shocked_enemies" } }, - [5706]={ + [5900]={ [1]={ [1]={ limit={ @@ -130874,7 +135405,7 @@ return { [1]="critical_strikes_deal_no_damage" } }, - [5707]={ + [5901]={ [1]={ [1]={ limit={ @@ -130890,7 +135421,7 @@ return { [1]="critical_strikes_do_not_always_apply_non_damaging_ailments" } }, - [5708]={ + [5902]={ [1]={ [1]={ limit={ @@ -130906,7 +135437,7 @@ return { [1]="critical_strikes_do_not_always_ignite" } }, - [5709]={ + [5903]={ [1]={ [1]={ limit={ @@ -130922,7 +135453,7 @@ return { [1]="critical_strikes_on_you_do_not_always_inflict_elemental_ailments" } }, - [5710]={ + [5904]={ [1]={ [1]={ limit={ @@ -130938,7 +135469,7 @@ return { [1]="critical_strikes_penetrates_%_elemental_resistances_while_affected_by_zealotry" } }, - [5711]={ + [5905]={ [1]={ [1]={ limit={ @@ -130954,7 +135485,7 @@ return { [1]="critical_support_gem_level_+" } }, - [5712]={ + [5906]={ [1]={ [1]={ limit={ @@ -130983,7 +135514,7 @@ return { [1]="cruelty_effect_+%" } }, - [5713]={ + [5907]={ [1]={ [1]={ [1]={ @@ -131016,7 +135547,7 @@ return { [1]="crush_for_2_seconds_on_hit_%_chance" } }, - [5714]={ + [5908]={ [1]={ [1]={ [1]={ @@ -131040,7 +135571,7 @@ return { [1]="crush_on_hit_ms_vs_full_life_enemies" } }, - [5715]={ + [5909]={ [1]={ [1]={ limit={ @@ -131056,7 +135587,7 @@ return { [1]="culling_strike_on_enemies_affected_by_poachers_mark" } }, - [5716]={ + [5910]={ [1]={ [1]={ [1]={ @@ -131076,7 +135607,7 @@ return { [1]="culling_strike_on_frozen_enemies" } }, - [5717]={ + [5911]={ [1]={ [1]={ [1]={ @@ -131096,7 +135627,7 @@ return { [1]="culling_strike_vs_cursed_enemies" } }, - [5718]={ + [5912]={ [1]={ [1]={ [1]={ @@ -131116,7 +135647,7 @@ return { [1]="culling_strike_vs_marked_enemy" } }, - [5719]={ + [5913]={ [1]={ [1]={ limit={ @@ -131145,7 +135676,7 @@ return { [1]="curse_aura_skill_area_of_effect_+%" } }, - [5720]={ + [5914]={ [1]={ [1]={ limit={ @@ -131174,7 +135705,7 @@ return { [1]="curse_aura_skills_reservation_efficiency_+%" } }, - [5721]={ + [5915]={ [1]={ [1]={ [1]={ @@ -131207,7 +135738,7 @@ return { [1]="curse_aura_skills_mana_reservation_efficiency_-2%_per_1" } }, - [5722]={ + [5916]={ [1]={ [1]={ limit={ @@ -131236,7 +135767,7 @@ return { [1]="curse_aura_skills_mana_reservation_efficiency_+%" } }, - [5723]={ + [5917]={ [1]={ [1]={ limit={ @@ -131265,7 +135796,7 @@ return { [1]="curse_effect_on_self_+%_while_on_consecrated_ground" } }, - [5724]={ + [5918]={ [1]={ [1]={ limit={ @@ -131294,7 +135825,7 @@ return { [1]="curse_effect_on_self_+%_while_under_effect_of_life_or_mana_flask" } }, - [5725]={ + [5919]={ [1]={ [1]={ [1]={ @@ -131331,7 +135862,7 @@ return { [1]="curse_effect_+%_if_200_mana_spent_recently" } }, - [5726]={ + [5920]={ [1]={ [1]={ limit={ @@ -131360,7 +135891,7 @@ return { [1]="curse_mana_cost_+%" } }, - [5727]={ + [5921]={ [1]={ [1]={ limit={ @@ -131389,7 +135920,7 @@ return { [1]="curse_skill_effect_duration_+%" } }, - [5728]={ + [5922]={ [1]={ [1]={ limit={ @@ -131405,7 +135936,7 @@ return { [1]="curse_skill_gem_level_+" } }, - [5729]={ + [5923]={ [1]={ [1]={ [1]={ @@ -131438,7 +135969,7 @@ return { [1]="curse_with_punishment_on_hit_%" } }, - [5730]={ + [5924]={ [1]={ [1]={ limit={ @@ -131454,7 +135985,7 @@ return { [1]="cursed_enemies_are_exorcised_on_kill" } }, - [5731]={ + [5925]={ [1]={ [1]={ limit={ @@ -131479,7 +136010,7 @@ return { [1]="cursed_enemies_%_chance_to_grant_endurance_charge_when_hit" } }, - [5732]={ + [5926]={ [1]={ [1]={ limit={ @@ -131504,7 +136035,7 @@ return { [1]="cursed_enemies_%_chance_to_grant_frenzy_charge_when_hit" } }, - [5733]={ + [5927]={ [1]={ [1]={ limit={ @@ -131529,7 +136060,7 @@ return { [1]="cursed_enemies_%_chance_to_grant_power_charge_when_hit" } }, - [5734]={ + [5928]={ [1]={ [1]={ [1]={ @@ -131562,7 +136093,7 @@ return { [1]="cursed_with_silence_when_hit_%_chance" } }, - [5735]={ + [5929]={ [1]={ [1]={ limit={ @@ -131578,7 +136109,7 @@ return { [1]="curses_have_no_effect_on_you_for_4_seconds_every_10_seconds" } }, - [5736]={ + [5930]={ [1]={ [1]={ limit={ @@ -131594,7 +136125,7 @@ return { [1]="curses_reflected_to_self" } }, - [5737]={ + [5931]={ [1]={ [1]={ limit={ @@ -131610,7 +136141,7 @@ return { [1]="curses_you_inflict_remain_after_death" } }, - [5738]={ + [5932]={ [1]={ [1]={ [1]={ @@ -131630,7 +136161,7 @@ return { [1]="cyclone_and_sweep_enemy_knockback_direction_is_reversed" } }, - [5739]={ + [5933]={ [1]={ [1]={ [1]={ @@ -131650,7 +136181,7 @@ return { [1]="cyclone_and_sweep_melee_knockback" } }, - [5740]={ + [5934]={ [1]={ [1]={ limit={ @@ -131679,7 +136210,7 @@ return { [1]="cyclone_max_stages_movement_speed_+%" } }, - [5741]={ + [5935]={ [1]={ [1]={ limit={ @@ -131708,7 +136239,7 @@ return { [1]="damage_+%_final_if_there_is_at_most_1_rare_or_unique_enemy_nearby" } }, - [5742]={ + [5936]={ [1]={ [1]={ limit={ @@ -131737,7 +136268,7 @@ return { [1]="damage_+%_final_to_grant_packmate_on_death" } }, - [5743]={ + [5937]={ [1]={ [1]={ limit={ @@ -131766,7 +136297,7 @@ return { [1]="damage_+%_final_to_you_and_nearby_allies_per_nearby_corpses_up_to_10%" } }, - [5744]={ + [5938]={ [1]={ [1]={ limit={ @@ -131795,7 +136326,7 @@ return { [1]="damage_+%_per_poison_stack" } }, - [5745]={ + [5939]={ [1]={ [1]={ limit={ @@ -131824,7 +136355,7 @@ return { [1]="damage_+%_per_raised_zombie" } }, - [5746]={ + [5940]={ [1]={ [1]={ limit={ @@ -131853,7 +136384,7 @@ return { [1]="damage_+%_with_bow_skills" } }, - [5747]={ + [5941]={ [1]={ [1]={ limit={ @@ -131869,7 +136400,7 @@ return { [1]="damage_cannot_be_reflected" } }, - [5748]={ + [5942]={ [1]={ [1]={ limit={ @@ -131885,7 +136416,36 @@ return { [1]="damage_from_hits_always_and_only_bypasses_energy_shield_when_not_blocked" } }, - [5749]={ + [5943]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Deal {0}% increased Damage Over Time per 100 Player Maximum Life" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Deal {0}% reduced Damage Over Time per 100 Player Maximum Life" + } + }, + stats={ + [1]="damage_over_time_+%_per_100_max_life" + } + }, + [5944]={ [1]={ [1]={ [1]={ @@ -131905,7 +136465,7 @@ return { [1]="damage_over_time_multiplier_+_if_enemy_killed_recently" } }, - [5750]={ + [5945]={ [1]={ [1]={ limit={ @@ -131934,7 +136494,7 @@ return { [1]="damage_over_time_+%_while_affected_by_a_herald" } }, - [5751]={ + [5946]={ [1]={ [1]={ limit={ @@ -131963,7 +136523,7 @@ return { [1]="damage_over_time_+%_with_attack_skills" } }, - [5752]={ + [5947]={ [1]={ [1]={ limit={ @@ -131992,7 +136552,7 @@ return { [1]="damage_over_time_+%_with_bow_skills" } }, - [5753]={ + [5948]={ [1]={ [1]={ limit={ @@ -132021,7 +136581,7 @@ return { [1]="damage_over_time_+%_with_herald_skills" } }, - [5754]={ + [5949]={ [1]={ [1]={ limit={ @@ -132050,7 +136610,7 @@ return { [1]="damage_over_time_taken_+%_while_you_have_at_least_20_fortification" } }, - [5755]={ + [5950]={ [1]={ [1]={ limit={ @@ -132066,7 +136626,7 @@ return { [1]="damage_penetrates_%_cold_resistance_while_affected_by_herald_of_ice" } }, - [5756]={ + [5951]={ [1]={ [1]={ [1]={ @@ -132086,7 +136646,7 @@ return { [1]="damage_penetrates_%_elemental_resistance_if_enemy_not_killed_recently" } }, - [5757]={ + [5952]={ [1]={ [1]={ limit={ @@ -132102,7 +136662,7 @@ return { [1]="damage_penetrates_%_elemental_resistance_vs_chilled_enemies" } }, - [5758]={ + [5953]={ [1]={ [1]={ limit={ @@ -132118,7 +136678,7 @@ return { [1]="damage_penetrates_%_elemental_resistance_vs_cursed_enemies" } }, - [5759]={ + [5954]={ [1]={ [1]={ limit={ @@ -132134,7 +136694,7 @@ return { [1]="damage_penetrates_%_fire_resistance_while_affected_by_herald_of_ash" } }, - [5760]={ + [5955]={ [1]={ [1]={ limit={ @@ -132150,7 +136710,7 @@ return { [1]="damage_penetrates_%_lightning_resistance_while_affected_by_herald_of_thunder" } }, - [5761]={ + [5956]={ [1]={ [1]={ limit={ @@ -132179,7 +136739,7 @@ return { [1]="damage_+%_against_enemies_marked_by_you" } }, - [5762]={ + [5957]={ [1]={ [1]={ limit={ @@ -132195,7 +136755,7 @@ return { [1]="damage_+%_final_if_lost_endurance_charge_in_past_8_seconds" } }, - [5763]={ + [5958]={ [1]={ [1]={ limit={ @@ -132224,7 +136784,7 @@ return { [1]="damage_+%_final_with_at_least_1_nearby_ally" } }, - [5764]={ + [5959]={ [1]={ [1]={ limit={ @@ -132253,7 +136813,7 @@ return { [1]="damage_+%_for_each_herald_affecting_you" } }, - [5765]={ + [5960]={ [1]={ [1]={ limit={ @@ -132282,7 +136842,7 @@ return { [1]="damage_+%_for_enemies_you_inflict_spiders_web_upon" } }, - [5766]={ + [5961]={ [1]={ [1]={ [1]={ @@ -132319,7 +136879,7 @@ return { [1]="damage_+%_if_enemy_killed_recently" } }, - [5767]={ + [5962]={ [1]={ [1]={ [1]={ @@ -132356,7 +136916,7 @@ return { [1]="damage_+%_if_enemy_shattered_recently" } }, - [5768]={ + [5963]={ [1]={ [1]={ limit={ @@ -132385,7 +136945,7 @@ return { [1]="damage_+%_if_firing_atleast_7_projectiles" } }, - [5769]={ + [5964]={ [1]={ [1]={ [1]={ @@ -132422,7 +136982,7 @@ return { [1]="damage_+%_if_have_been_ignited_recently" } }, - [5770]={ + [5965]={ [1]={ [1]={ limit={ @@ -132451,7 +137011,7 @@ return { [1]="damage_+%_if_have_crit_in_past_8_seconds" } }, - [5771]={ + [5966]={ [1]={ [1]={ limit={ @@ -132480,7 +137040,7 @@ return { [1]="damage_+%_if_only_one_enemy_nearby" } }, - [5772]={ + [5967]={ [1]={ [1]={ limit={ @@ -132509,7 +137069,7 @@ return { [1]="damage_+%_if_skill_costs_life" } }, - [5773]={ + [5968]={ [1]={ [1]={ [1]={ @@ -132546,7 +137106,7 @@ return { [1]="damage_+%_if_used_travel_skill_recently" } }, - [5774]={ + [5969]={ [1]={ [1]={ [1]={ @@ -132583,7 +137143,7 @@ return { [1]="damage_+%_if_you_have_frozen_enemy_recently" } }, - [5775]={ + [5970]={ [1]={ [1]={ [1]={ @@ -132620,7 +137180,7 @@ return { [1]="damage_+%_if_you_have_shocked_recently" } }, - [5776]={ + [5971]={ [1]={ [1]={ limit={ @@ -132649,7 +137209,7 @@ return { [1]="damage_+%_per_100_dexterity" } }, - [5777]={ + [5972]={ [1]={ [1]={ limit={ @@ -132678,7 +137238,7 @@ return { [1]="damage_+%_per_100_intelligence" } }, - [5778]={ + [5973]={ [1]={ [1]={ limit={ @@ -132707,7 +137267,7 @@ return { [1]="damage_+%_per_100_strength" } }, - [5779]={ + [5974]={ [1]={ [1]={ limit={ @@ -132723,7 +137283,7 @@ return { [1]="damage_+%_per_10_dex" } }, - [5780]={ + [5975]={ [1]={ [1]={ limit={ @@ -132739,7 +137299,7 @@ return { [1]="damage_+%_per_15_dex" } }, - [5781]={ + [5976]={ [1]={ [1]={ limit={ @@ -132755,7 +137315,7 @@ return { [1]="damage_+%_per_15_int" } }, - [5782]={ + [5977]={ [1]={ [1]={ limit={ @@ -132771,7 +137331,7 @@ return { [1]="damage_+%_per_15_strength" } }, - [5783]={ + [5978]={ [1]={ [1]={ limit={ @@ -132800,7 +137360,7 @@ return { [1]="damage_+%_per_1%_block_chance" } }, - [5784]={ + [5979]={ [1]={ [1]={ limit={ @@ -132816,7 +137376,7 @@ return { [1]="damage_+%_per_1%_increased_item_found_quantity" } }, - [5785]={ + [5980]={ [1]={ [1]={ [1]={ @@ -132853,7 +137413,7 @@ return { [1]="damage_+%_per_5_of_your_lowest_attribute" } }, - [5786]={ + [5981]={ [1]={ [1]={ limit={ @@ -132882,7 +137442,7 @@ return { [1]="damage_+%_per_active_golem" } }, - [5787]={ + [5982]={ [1]={ [1]={ limit={ @@ -132911,7 +137471,7 @@ return { [1]="damage_+%_per_active_link" } }, - [5788]={ + [5983]={ [1]={ [1]={ limit={ @@ -132940,7 +137500,7 @@ return { [1]="damage_+%_per_frenzy_power_or_endurance_charge" } }, - [5789]={ + [5984]={ [1]={ [1]={ limit={ @@ -132969,7 +137529,7 @@ return { [1]="damage_+%_per_poison_up_to_75%" } }, - [5790]={ + [5985]={ [1]={ [1]={ limit={ @@ -132998,7 +137558,7 @@ return { [1]="damage_+%_per_power_charge" } }, - [5791]={ + [5986]={ [1]={ [1]={ [1]={ @@ -133035,7 +137595,7 @@ return { [1]="damage_+%_per_warcry_used_recently" } }, - [5792]={ + [5987]={ [1]={ [1]={ limit={ @@ -133051,7 +137611,7 @@ return { [1]="damage_+%_per_your_aura_or_herald_skill_affecting_you" } }, - [5793]={ + [5988]={ [1]={ [1]={ limit={ @@ -133080,7 +137640,7 @@ return { [1]="damage_+%_vs_abyssal_monsters" } }, - [5794]={ + [5989]={ [1]={ [1]={ limit={ @@ -133109,7 +137669,7 @@ return { [1]="damage_+%_vs_chilled_enemies" } }, - [5795]={ + [5990]={ [1]={ [1]={ limit={ @@ -133138,7 +137698,7 @@ return { [1]="damage_+%_vs_magic_monsters" } }, - [5796]={ + [5991]={ [1]={ [1]={ limit={ @@ -133167,7 +137727,7 @@ return { [1]="damage_+%_vs_taunted_enemies" } }, - [5797]={ + [5992]={ [1]={ [1]={ limit={ @@ -133196,7 +137756,7 @@ return { [1]="damage_+%_on_full_energy_shield" } }, - [5798]={ + [5993]={ [1]={ [1]={ limit={ @@ -133225,7 +137785,7 @@ return { [1]="damage_+%_when_on_full_life" } }, - [5799]={ + [5994]={ [1]={ [1]={ limit={ @@ -133254,7 +137814,7 @@ return { [1]="damage_+%_while_affected_by_a_herald" } }, - [5800]={ + [5995]={ [1]={ [1]={ limit={ @@ -133283,7 +137843,7 @@ return { [1]="damage_+%_while_channelling" } }, - [5801]={ + [5996]={ [1]={ [1]={ [1]={ @@ -133320,7 +137880,7 @@ return { [1]="damage_+%_while_in_blood_stance" } }, - [5802]={ + [5997]={ [1]={ [1]={ limit={ @@ -133349,7 +137909,7 @@ return { [1]="damage_+%_while_wielding_bow_if_totem_summoned" } }, - [5803]={ + [5998]={ [1]={ [1]={ limit={ @@ -133378,7 +137938,7 @@ return { [1]="damage_+%_while_wielding_two_different_weapon_types" } }, - [5804]={ + [5999]={ [1]={ [1]={ limit={ @@ -133407,7 +137967,7 @@ return { [1]="damage_+%_while_you_have_a_summoned_golem" } }, - [5805]={ + [6000]={ [1]={ [1]={ limit={ @@ -133436,7 +137996,7 @@ return { [1]="damage_+%_with_herald_skills" } }, - [5806]={ + [6001]={ [1]={ [1]={ limit={ @@ -133465,7 +138025,7 @@ return { [1]="damage_+%_with_hits_and_ailments" } }, - [5807]={ + [6002]={ [1]={ [1]={ [1]={ @@ -133502,7 +138062,7 @@ return { [1]="damage_+%_with_maces_sceptres_staves" } }, - [5808]={ + [6003]={ [1]={ [1]={ limit={ @@ -133531,7 +138091,7 @@ return { [1]="damage_+%_with_non_vaal_skills_during_soul_gain_prevention" } }, - [5809]={ + [6004]={ [1]={ [1]={ limit={ @@ -133560,7 +138120,7 @@ return { [1]="damage_+%_with_shield_skills" } }, - [5810]={ + [6005]={ [1]={ [1]={ limit={ @@ -133589,7 +138149,7 @@ return { [1]="damage_+%_with_shield_skills_per_2%_attack_block" } }, - [5811]={ + [6006]={ [1]={ [1]={ [1]={ @@ -133613,7 +138173,7 @@ return { [1]="damage_recouped_as_life_%_if_leech_removed_by_filling_recently" } }, - [5812]={ + [6007]={ [1]={ [1]={ limit={ @@ -133629,7 +138189,7 @@ return { [1]="damage_removed_from_mana_before_life_%_while_affected_by_clarity" } }, - [5813]={ + [6008]={ [1]={ [1]={ limit={ @@ -133645,7 +138205,7 @@ return { [1]="damage_removed_from_mana_before_life_%_while_focused" } }, - [5814]={ + [6009]={ [1]={ [1]={ limit={ @@ -133661,7 +138221,7 @@ return { [1]="damage_removed_from_marked_target_before_life_or_es_%" } }, - [5815]={ + [6010]={ [1]={ [1]={ limit={ @@ -133677,7 +138237,7 @@ return { [1]="damage_removed_from_radiant_sentinel_before_life_or_es_%" } }, - [5816]={ + [6011]={ [1]={ [1]={ [1]={ @@ -133697,7 +138257,7 @@ return { [1]="damage_removed_from_spectres_before_life_or_es_%" } }, - [5817]={ + [6012]={ [1]={ [1]={ [1]={ @@ -133717,7 +138277,7 @@ return { [1]="damage_removed_from_void_spawns_before_life_or_es_per_void_spawns_%" } }, - [5818]={ + [6013]={ [1]={ [1]={ limit={ @@ -133733,7 +138293,7 @@ return { [1]="damage_removed_from_your_nearest_totem_before_life_or_es_%" } }, - [5819]={ + [6014]={ [1]={ [1]={ [1]={ @@ -133770,7 +138330,27 @@ return { [1]="damage_taken_+%_final_if_used_retaliation_recently" } }, - [5820]={ + [6015]={ + [1]={ + [1]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% less Damage taken per 5 Rage, up to a maximum of 30%" + } + }, + stats={ + [1]="damage_taken_+%_final_per_5_rage_from_painshed_capped_at_50%_less" + } + }, + [6016]={ [1]={ [1]={ limit={ @@ -133799,7 +138379,7 @@ return { [1]="damage_taken_+%_for_4_seconds_after_spending_200_mana" } }, - [5821]={ + [6017]={ [1]={ [1]={ limit={ @@ -133808,7 +138388,7 @@ return { [2]="#" } }, - text="{0}% increased Damage taken while there are at least two Rare or Unique Enemies nearby" + text="{0}% more Damage taken while there are at least two Rare or Unique Enemies nearby" }, [2]={ [1]={ @@ -133821,14 +138401,14 @@ return { [2]=-1 } }, - text="{0}% reduced Damage taken while there are at least two Rare or Unique Enemies nearby" + text="{0}% less Damage taken while there are at least two Rare or Unique Enemies nearby" } }, stats={ [1]="damage_taken_+%_if_there_are_at_least_2_rare_or_unique_enemies_nearby" } }, - [5822]={ + [6018]={ [1]={ [1]={ limit={ @@ -133857,7 +138437,7 @@ return { [1]="damage_taken_+%_while_affected_by_elusive" } }, - [5823]={ + [6019]={ [1]={ [1]={ [1]={ @@ -133877,7 +138457,23 @@ return { [1]="damage_taken_+_from_suppressed_hits" } }, - [5824]={ + [6020]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Damage taken bypasses Unbroken Ward if the Hit deals less Damage than {0}% of Ward" + } + }, + stats={ + [1]="damage_taken_bypasses_ward_if_hits_deal_less_than_%_of_ward" + } + }, + [6021]={ [1]={ [1]={ [1]={ @@ -133910,7 +138506,7 @@ return { [1]="damage_taken_from_criticals_recouped_as_life_%" } }, - [5825]={ + [6022]={ [1]={ [1]={ [1]={ @@ -133930,7 +138526,7 @@ return { [1]="damage_taken_from_suppressed_hits_is_unlucky" } }, - [5826]={ + [6023]={ [1]={ [1]={ [1]={ @@ -133950,7 +138546,7 @@ return { [1]="damage_taken_goes_to_life_mana_es_over_4_seconds_%" } }, - [5827]={ + [6024]={ [1]={ [1]={ [1]={ @@ -133983,7 +138579,7 @@ return { [1]="damage_taken_goes_to_life_over_4_seconds_%" } }, - [5828]={ + [6025]={ [1]={ [1]={ [1]={ @@ -134003,7 +138599,7 @@ return { [1]="damage_taken_goes_to_mana_over_4_seconds_%_while_affected_by_clarity" } }, - [5829]={ + [6026]={ [1]={ [1]={ limit={ @@ -134032,7 +138628,7 @@ return { [1]="damage_taken_over_time_+%_final_during_life_flask_effect" } }, - [5830]={ + [6027]={ [1]={ [1]={ limit={ @@ -134061,7 +138657,7 @@ return { [1]="damage_taken_per_250_dexterity_+%" } }, - [5831]={ + [6028]={ [1]={ [1]={ limit={ @@ -134090,7 +138686,7 @@ return { [1]="damage_taken_per_250_intelligence_+%" } }, - [5832]={ + [6029]={ [1]={ [1]={ limit={ @@ -134119,7 +138715,7 @@ return { [1]="damage_taken_per_250_strength_+%" } }, - [5833]={ + [6030]={ [1]={ [1]={ limit={ @@ -134148,7 +138744,7 @@ return { [1]="damage_taken_per_ghost_dance_stack_+%" } }, - [5834]={ + [6031]={ [1]={ [1]={ limit={ @@ -134164,7 +138760,7 @@ return { [1]="damage_taken_%_recovered_as_energy_shield_from_stunning_hits" } }, - [5835]={ + [6032]={ [1]={ [1]={ limit={ @@ -134180,7 +138776,7 @@ return { [1]="damage_taken_%_recovered_as_life_from_stunning_hits" } }, - [5836]={ + [6033]={ [1]={ [1]={ limit={ @@ -134209,7 +138805,7 @@ return { [1]="damage_taken_+%_final_from_enemies_near_marked_enemy" } }, - [5837]={ + [6034]={ [1]={ [1]={ limit={ @@ -134238,7 +138834,7 @@ return { [1]="damage_taken_+%_final_per_gale_force" } }, - [5838]={ + [6035]={ [1]={ [1]={ limit={ @@ -134267,7 +138863,7 @@ return { [1]="damage_taken_+%_final_per_totem" } }, - [5839]={ + [6036]={ [1]={ [1]={ [1]={ @@ -134304,7 +138900,7 @@ return { [1]="damage_taken_+%_if_have_been_frozen_recently" } }, - [5840]={ + [6037]={ [1]={ [1]={ [1]={ @@ -134341,7 +138937,7 @@ return { [1]="damage_taken_+%_if_have_not_been_hit_recently" } }, - [5841]={ + [6038]={ [1]={ [1]={ limit={ @@ -134370,7 +138966,7 @@ return { [1]="damage_taken_+%_on_full_life" } }, - [5842]={ + [6039]={ [1]={ [1]={ [1]={ @@ -134407,7 +139003,7 @@ return { [1]="damage_taken_+%_on_low_life" } }, - [5843]={ + [6040]={ [1]={ [1]={ limit={ @@ -134436,7 +139032,7 @@ return { [1]="damage_taken_+%_while_leeching" } }, - [5844]={ + [6041]={ [1]={ [1]={ [1]={ @@ -134473,7 +139069,40 @@ return { [1]="damage_taken_+%_while_phasing" } }, - [5845]={ + [6042]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextRecoup" + }, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% of Damage taken Recouped as Life per Socketed Red Gem" + }, + [2]={ + [1]={ + k="reminderstring", + v="ReminderTextRecoupNegative" + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% of Damage taken Recouped as Life per Socketed Red Gem" + } + }, + stats={ + [1]="damage_taken_recouped_as_life_%_per_socketed_red_gem" + } + }, + [6043]={ [1]={ [1]={ [1]={ @@ -134497,7 +139126,7 @@ return { [1]="damage_taken_while_frozen_recouped_as_life_%" } }, - [5846]={ + [6044]={ [1]={ [1]={ limit={ @@ -134526,7 +139155,7 @@ return { [1]="damage_vs_enemies_on_full_life_+%" } }, - [5847]={ + [6045]={ [1]={ [1]={ [1]={ @@ -134550,7 +139179,7 @@ return { [1]="damaging_ailments_deal_damage_+%_faster" } }, - [5848]={ + [6046]={ [1]={ [1]={ limit={ @@ -134566,7 +139195,7 @@ return { [1]="dark_pact_minions_recover_%_life_on_hit" } }, - [5849]={ + [6047]={ [1]={ [1]={ limit={ @@ -134595,7 +139224,7 @@ return { [1]="dark_ritual_area_of_effect_+%" } }, - [5850]={ + [6048]={ [1]={ [1]={ limit={ @@ -134624,7 +139253,7 @@ return { [1]="dark_ritual_damage_+%" } }, - [5851]={ + [6049]={ [1]={ [1]={ limit={ @@ -134653,7 +139282,7 @@ return { [1]="dark_ritual_linked_curse_effect_+%" } }, - [5852]={ + [6050]={ [1]={ [1]={ limit={ @@ -134682,7 +139311,7 @@ return { [1]="daytime_fish_caught_size_+%" } }, - [5853]={ + [6051]={ [1]={ [1]={ limit={ @@ -134711,7 +139340,7 @@ return { [1]="deadeye_accuracy_rating_+%_final_per_frenzy_charge" } }, - [5854]={ + [6052]={ [1]={ [1]={ limit={ @@ -134740,7 +139369,7 @@ return { [1]="deadeye_damage_taken_+%_final_from_marked_enemy" } }, - [5855]={ + [6053]={ [1]={ [1]={ limit={ @@ -134756,7 +139385,7 @@ return { [1]="deadeye_projectile_damage_+%_final_max_as_distance_travelled_increases" } }, - [5856]={ + [6054]={ [1]={ [1]={ limit={ @@ -134772,7 +139401,7 @@ return { [1]="deal_1000_chaos_damage_per_second_for_10_seconds_on_hit" } }, - [5857]={ + [6055]={ [1]={ [1]={ limit={ @@ -134788,7 +139417,7 @@ return { [1]="deal_300%_of_physical_damage_as_random_ailment_%_chance" } }, - [5858]={ + [6056]={ [1]={ [1]={ limit={ @@ -134804,7 +139433,7 @@ return { [1]="deal_chaos_damage_per_second_for_10_seconds_on_hit" } }, - [5859]={ + [6057]={ [1]={ [1]={ limit={ @@ -134820,7 +139449,7 @@ return { [1]="deal_chaos_damage_per_second_for_8_seconds_on_curse" } }, - [5860]={ + [6058]={ [1]={ [1]={ limit={ @@ -134836,7 +139465,7 @@ return { [1]="deal_double_damage_to_enemies_on_full_life" } }, - [5861]={ + [6059]={ [1]={ [1]={ limit={ @@ -134852,7 +139481,7 @@ return { [1]="deal_no_damage_when_not_on_low_life" } }, - [5862]={ + [6060]={ [1]={ [1]={ limit={ @@ -134868,7 +139497,7 @@ return { [1]="deal_no_elemental_damage" } }, - [5863]={ + [6061]={ [1]={ [1]={ limit={ @@ -134884,7 +139513,7 @@ return { [1]="deal_no_elemental_physical_damage" } }, - [5864]={ + [6062]={ [1]={ [1]={ limit={ @@ -134900,7 +139529,7 @@ return { [1]="deal_no_non_chaos_damage" } }, - [5865]={ + [6063]={ [1]={ [1]={ limit={ @@ -134916,7 +139545,7 @@ return { [1]="deal_no_non_elemental_damage" } }, - [5866]={ + [6064]={ [1]={ [1]={ [1]={ @@ -134940,7 +139569,7 @@ return { [1]="deal_triple_damage_if_spent_at_least_Xms_on_single_attack_recently" } }, - [5867]={ + [6065]={ [1]={ [1]={ [1]={ @@ -134973,7 +139602,7 @@ return { [1]="debilitate_enemies_for_1_second_on_hit_%_chance" } }, - [5868]={ + [6066]={ [1]={ [1]={ [1]={ @@ -134997,7 +139626,7 @@ return { [1]="debilitate_enemies_for_x_milliseconds_when_suppressing_their_spell" } }, - [5869]={ + [6067]={ [1]={ [1]={ [1]={ @@ -135038,7 +139667,7 @@ return { [1]="debilitate_when_hit_ms" } }, - [5870]={ + [6068]={ [1]={ [1]={ [1]={ @@ -135071,7 +139700,7 @@ return { [1]="debuff_time_passed_-%_while_affected_by_haste" } }, - [5871]={ + [6069]={ [1]={ [1]={ limit={ @@ -135104,7 +139733,7 @@ return { [1]="debuff_time_passed_+%" } }, - [5872]={ + [6070]={ [1]={ [1]={ limit={ @@ -135120,7 +139749,7 @@ return { [1]="decoy_rejuvenation_devouring_totem_totem_%_maximum_life_inflicted_as_aoe_fire_damage_when_hit" } }, - [5873]={ + [6071]={ [1]={ [1]={ [1]={ @@ -135157,7 +139786,7 @@ return { [1]="defences_+%_while_you_have_four_linked_targets" } }, - [5874]={ + [6072]={ [1]={ [1]={ [1]={ @@ -135177,7 +139806,7 @@ return { [1]="defences_are_zero" } }, - [5875]={ + [6073]={ [1]={ [1]={ [1]={ @@ -135197,7 +139826,7 @@ return { [1]="defences_from_animated_guardians_items_apply_to_animated_weapon" } }, - [5876]={ + [6074]={ [1]={ [1]={ [1]={ @@ -135242,7 +139871,7 @@ return { [1]="defences_+%_while_wielding_staff" } }, - [5877]={ + [6075]={ [1]={ [1]={ [1]={ @@ -135262,7 +139891,7 @@ return { [1]="defend_with_%_armour_against_ranged_attacks" } }, - [5878]={ + [6076]={ [1]={ [1]={ [1]={ @@ -135286,7 +139915,7 @@ return { [1]="defend_with_%_of_armour_while_not_on_low_energy_shield" } }, - [5879]={ + [6077]={ [1]={ [1]={ limit={ @@ -135315,7 +139944,7 @@ return { [1]="defiance_banner_aura_effect_+%" } }, - [5880]={ + [6078]={ [1]={ [1]={ limit={ @@ -135344,7 +139973,7 @@ return { [1]="defiance_banner_mana_reservation_efficiency_+%" } }, - [5881]={ + [6079]={ [1]={ [1]={ limit={ @@ -135373,7 +140002,7 @@ return { [1]="delirium_aura_effect_+%" } }, - [5882]={ + [6080]={ [1]={ [1]={ limit={ @@ -135402,7 +140031,7 @@ return { [1]="delirium_mana_reservation_+%" } }, - [5883]={ + [6081]={ [1]={ [1]={ limit={ @@ -135418,7 +140047,7 @@ return { [1]="delirium_reserves_no_mana" } }, - [5884]={ + [6082]={ [1]={ [1]={ limit={ @@ -135434,7 +140063,7 @@ return { [1]="delve_biome_area_contains_x_extra_packs_of_insects" } }, - [5885]={ + [6083]={ [1]={ [1]={ limit={ @@ -135450,7 +140079,7 @@ return { [1]="delve_biome_monster_projectiles_always_pierce" } }, - [5886]={ + [6084]={ [1]={ [1]={ limit={ @@ -135466,7 +140095,7 @@ return { [1]="delve_boss_life_+%_final_from_biome" } }, - [5887]={ + [6085]={ [1]={ [1]={ limit={ @@ -135482,7 +140111,7 @@ return { [1]="desecrate_maximum_number_of_corpses" } }, - [5888]={ + [6086]={ [1]={ [1]={ limit={ @@ -135511,7 +140140,7 @@ return { [1]="despair_curse_effect_+%" } }, - [5889]={ + [6087]={ [1]={ [1]={ limit={ @@ -135540,7 +140169,7 @@ return { [1]="despair_duration_+%" } }, - [5890]={ + [6088]={ [1]={ [1]={ limit={ @@ -135556,7 +140185,7 @@ return { [1]="despair_no_reservation" } }, - [5891]={ + [6089]={ [1]={ [1]={ limit={ @@ -135585,7 +140214,7 @@ return { [1]="destructive_link_duration_+%" } }, - [5892]={ + [6090]={ [1]={ [1]={ [1]={ @@ -135618,7 +140247,7 @@ return { [1]="determination_mana_reservation_efficiency_-2%_per_1" } }, - [5893]={ + [6091]={ [1]={ [1]={ limit={ @@ -135647,7 +140276,7 @@ return { [1]="determination_mana_reservation_efficiency_+%" } }, - [5894]={ + [6092]={ [1]={ [1]={ limit={ @@ -135663,7 +140292,7 @@ return { [1]="determination_reserves_no_mana" } }, - [5895]={ + [6093]={ [1]={ [1]={ limit={ @@ -135679,7 +140308,7 @@ return { [1]="dexterity_accuracy_bonus_grants_accuracy_rating_+3_per_dexterity_instead" } }, - [5896]={ + [6094]={ [1]={ [1]={ limit={ @@ -135708,7 +140337,7 @@ return { [1]="dexterity_+%_if_strength_higher_than_intelligence" } }, - [5897]={ + [6095]={ [1]={ [1]={ limit={ @@ -135724,7 +140353,55 @@ return { [1]="dexterity_skill_gem_level_+" } }, - [5898]={ + [6096]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Can't use Amulets" + } + }, + stats={ + [1]="disable_amulet_slot" + } + }, + [6097]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Can't use Belts" + } + }, + stats={ + [1]="disable_belt_slot" + } + }, + [6098]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Utility Flasks are Disabled" + } + }, + stats={ + [1]="disable_utility_flasks" + } + }, + [6099]={ [1]={ [1]={ limit={ @@ -135740,7 +140417,7 @@ return { [1]="discharge_and_voltaxic_burst_nova_spells_cast_at_target_location" } }, - [5899]={ + [6100]={ [1]={ [1]={ limit={ @@ -135769,7 +140446,7 @@ return { [1]="discharge_area_of_effect_+%_final" } }, - [5900]={ + [6101]={ [1]={ [1]={ limit={ @@ -135785,7 +140462,7 @@ return { [1]="discharge_cooldown_override_ms" } }, - [5901]={ + [6102]={ [1]={ [1]={ limit={ @@ -135814,7 +140491,7 @@ return { [1]="discharge_damage_+%_final" } }, - [5902]={ + [6103]={ [1]={ [1]={ [1]={ @@ -135847,7 +140524,7 @@ return { [1]="discharge_radius_+" } }, - [5903]={ + [6104]={ [1]={ [1]={ limit={ @@ -135876,7 +140553,36 @@ return { [1]="discharge_triggered_damage_+%_final" } }, - [5904]={ + [6105]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Discipline has {0}% increased Aura Effect while you have no Power Charges" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Discipline has {0}% reduced Aura Effect while you have no Power Charges" + } + }, + stats={ + [1]="discipline_aura_effect_+%_while_no_power_charges" + } + }, + [6106]={ [1]={ [1]={ [1]={ @@ -135909,7 +140615,7 @@ return { [1]="discipline_mana_reservation_efficiency_-2%_per_1" } }, - [5905]={ + [6107]={ [1]={ [1]={ limit={ @@ -135938,7 +140644,7 @@ return { [1]="discipline_mana_reservation_efficiency_+%" } }, - [5906]={ + [6108]={ [1]={ [1]={ limit={ @@ -135954,7 +140660,7 @@ return { [1]="discipline_reserves_no_mana" } }, - [5907]={ + [6109]={ [1]={ [1]={ limit={ @@ -135983,7 +140689,7 @@ return { [1]="disintegrate_secondary_beam_angle_+%" } }, - [5908]={ + [6110]={ [1]={ [1]={ limit={ @@ -135999,7 +140705,7 @@ return { [1]="dispel_bleed_on_guard_skill_use" } }, - [5909]={ + [6111]={ [1]={ [1]={ limit={ @@ -136015,7 +140721,7 @@ return { [1]="dispel_corrupted_blood_on_guard_skill_use" } }, - [5910]={ + [6112]={ [1]={ [1]={ limit={ @@ -136031,7 +140737,7 @@ return { [1]="display_additive_damage_modifiers_in_large_radius_of_non_unique_jewels_instead_apply_to_fire_damage" } }, - [5911]={ + [6113]={ [1]={ [1]={ limit={ @@ -136047,7 +140753,7 @@ return { [1]="display_altar_chaos_aura" } }, - [5912]={ + [6114]={ [1]={ [1]={ limit={ @@ -136063,7 +140769,7 @@ return { [1]="display_altar_cold_aura" } }, - [5913]={ + [6115]={ [1]={ [1]={ limit={ @@ -136079,7 +140785,7 @@ return { [1]="display_altar_fire_aura" } }, - [5914]={ + [6116]={ [1]={ [1]={ limit={ @@ -136095,7 +140801,7 @@ return { [1]="display_altar_lightning_aura" } }, - [5915]={ + [6117]={ [1]={ [1]={ limit={ @@ -136111,7 +140817,7 @@ return { [1]="display_altar_tangle_tentalces_daemon" } }, - [5916]={ + [6118]={ [1]={ [1]={ limit={ @@ -136163,7 +140869,7 @@ return { [1]="display_altleague_event" } }, - [5917]={ + [6119]={ [1]={ [1]={ limit={ @@ -136179,7 +140885,7 @@ return { [1]="display_area_contains_alluring_vaal_side_area" } }, - [5918]={ + [6120]={ [1]={ [1]={ limit={ @@ -136195,7 +140901,7 @@ return { [1]="display_area_contains_corrupting_tempest" } }, - [5919]={ + [6121]={ [1]={ [1]={ limit={ @@ -136211,7 +140917,7 @@ return { [1]="display_area_contains_improved_labyrinth_trial" } }, - [5920]={ + [6122]={ [1]={ [1]={ limit={ @@ -136227,7 +140933,7 @@ return { [1]="display_area_contains_uber_radiating_tempest" } }, - [5921]={ + [6123]={ [1]={ [1]={ limit={ @@ -136243,7 +140949,7 @@ return { [1]="display_cowards_trial_waves_of_monsters" } }, - [5922]={ + [6124]={ [1]={ [1]={ limit={ @@ -136259,7 +140965,7 @@ return { [1]="display_cowards_trial_waves_of_undead_monsters" } }, - [5923]={ + [6125]={ [1]={ [1]={ limit={ @@ -136275,7 +140981,7 @@ return { [1]="display_dark_ritual_curse_max_skill_level_requirement" } }, - [5924]={ + [6126]={ [1]={ [1]={ limit={ @@ -136304,7 +141010,7 @@ return { [1]="display_heist_contract_lockdown_timer_+%" } }, - [5925]={ + [6127]={ [1]={ [1]={ limit={ @@ -136329,7 +141035,7 @@ return { [1]="display_item_quantity_increases_rewards_from_boss_by_x_percent_of_its_value" } }, - [5926]={ + [6128]={ [1]={ [1]={ limit={ @@ -136354,7 +141060,7 @@ return { [1]="display_item_quantity_increases_rewards_from_encounter_by_x_percent_of_its_value" } }, - [5927]={ + [6129]={ [1]={ [1]={ limit={ @@ -136370,7 +141076,7 @@ return { [1]="display_legion_uber_fragment_improved_rewards_+%" } }, - [5928]={ + [6130]={ [1]={ [1]={ limit={ @@ -136386,7 +141092,7 @@ return { [1]="display_map_augmentable_boss" } }, - [5929]={ + [6131]={ [1]={ [1]={ limit={ @@ -136402,7 +141108,7 @@ return { [1]="display_map_inhabited_by_lunaris_fanatics" } }, - [5930]={ + [6132]={ [1]={ [1]={ limit={ @@ -136418,7 +141124,7 @@ return { [1]="display_map_inhabited_by_solaris_fanatics" } }, - [5931]={ + [6133]={ [1]={ [1]={ limit={ @@ -136434,7 +141140,7 @@ return { [1]="display_map_labyrinth_chests_fortune" } }, - [5932]={ + [6134]={ [1]={ [1]={ limit={ @@ -136450,7 +141156,7 @@ return { [1]="display_map_labyrinth_enchant_belts" } }, - [5933]={ + [6135]={ [1]={ [1]={ limit={ @@ -136466,7 +141172,7 @@ return { [1]="display_memory_line_abyss_beyond_monsters_from_cracks" } }, - [5934]={ + [6136]={ [1]={ [1]={ limit={ @@ -136482,7 +141188,7 @@ return { [1]="display_memory_line_ambush_contains_standalone_map_boss" } }, - [5935]={ + [6137]={ [1]={ [1]={ limit={ @@ -136498,7 +141204,7 @@ return { [1]="display_memory_line_ambush_strongbox_chain" } }, - [5936]={ + [6138]={ [1]={ [1]={ limit={ @@ -136514,7 +141220,7 @@ return { [1]="display_memory_line_anarchy_rogue_exiles_equipped_with_unique_items" } }, - [5937]={ + [6139]={ [1]={ [1]={ limit={ @@ -136530,7 +141236,7 @@ return { [1]="display_memory_line_anarchy_rogue_exiles_in_packs" } }, - [5938]={ + [6140]={ [1]={ [1]={ limit={ @@ -136546,7 +141252,7 @@ return { [1]="display_memory_line_bestiary_capturable_harvest_monsters" } }, - [5939]={ + [6141]={ [1]={ [1]={ limit={ @@ -136562,7 +141268,7 @@ return { [1]="display_memory_line_bestiary_great_migration" } }, - [5940]={ + [6142]={ [1]={ [1]={ limit={ @@ -136578,7 +141284,7 @@ return { [1]="display_memory_line_betrayal_constant_interventions" } }, - [5941]={ + [6143]={ [1]={ [1]={ limit={ @@ -136594,7 +141300,7 @@ return { [1]="display_memory_line_breach_area_is_breached" } }, - [5942]={ + [6144]={ [1]={ [1]={ limit={ @@ -136610,7 +141316,7 @@ return { [1]="display_memory_line_breach_miniature_flash_breaches" } }, - [5943]={ + [6145]={ [1]={ [1]={ limit={ @@ -136626,7 +141332,7 @@ return { [1]="display_memory_line_domination_multiple_modded_shrines" } }, - [5944]={ + [6146]={ [1]={ [1]={ limit={ @@ -136642,7 +141348,7 @@ return { [1]="display_memory_line_domination_shrines_to_pantheon_gods" } }, - [5945]={ + [6147]={ [1]={ [1]={ limit={ @@ -136658,7 +141364,7 @@ return { [1]="display_memory_line_essence_multiple_rare_monsters" } }, - [5946]={ + [6148]={ [1]={ [1]={ limit={ @@ -136674,7 +141380,7 @@ return { [1]="display_memory_line_essence_rogue_exiles" } }, - [5947]={ + [6149]={ [1]={ [1]={ limit={ @@ -136690,7 +141396,7 @@ return { [1]="display_memory_line_harbinger_player_is_a_harbinger" } }, - [5948]={ + [6150]={ [1]={ [1]={ limit={ @@ -136706,7 +141412,7 @@ return { [1]="display_memory_line_harbinger_portals_everywhere" } }, - [5949]={ + [6151]={ [1]={ [1]={ limit={ @@ -136722,7 +141428,7 @@ return { [1]="display_memory_line_harvest_larger_plot_with_premium_seeds" } }, - [5950]={ + [6152]={ [1]={ [1]={ limit={ @@ -136738,7 +141444,7 @@ return { [1]="display_memory_line_incursion_reverse" } }, - [5951]={ + [6153]={ [1]={ [1]={ limit={ @@ -136754,7 +141460,7 @@ return { [1]="display_memory_line_torment_player_is_possessed" } }, - [5952]={ + [6154]={ [1]={ [1]={ limit={ @@ -136770,7 +141476,7 @@ return { [1]="display_memory_line_torment_rares_uniques_are_possessed" } }, - [5953]={ + [6155]={ [1]={ [1]={ limit={ @@ -136786,7 +141492,7 @@ return { [1]="display_monster_has_acceleration_shrine" } }, - [5954]={ + [6156]={ [1]={ [1]={ [1]={ @@ -136806,7 +141512,7 @@ return { [1]="display_monster_has_adrenaline" } }, - [5955]={ + [6157]={ [1]={ [1]={ limit={ @@ -136822,7 +141528,7 @@ return { [1]="display_monster_has_cannot_recover_life_aura" } }, - [5956]={ + [6158]={ [1]={ [1]={ limit={ @@ -136847,7 +141553,7 @@ return { [1]="display_monster_has_flask_gain_aura" } }, - [5957]={ + [6159]={ [1]={ [1]={ [1]={ @@ -136867,7 +141573,7 @@ return { [1]="display_monster_has_hinder_daemon" } }, - [5958]={ + [6160]={ [1]={ [1]={ limit={ @@ -136883,7 +141589,7 @@ return { [1]="display_monster_has_lightning_thorns_daemon" } }, - [5959]={ + [6161]={ [1]={ [1]={ [1]={ @@ -136903,7 +141609,7 @@ return { [1]="display_monster_has_periodic_freeze_daemon" } }, - [5960]={ + [6162]={ [1]={ [1]={ limit={ @@ -136919,7 +141625,7 @@ return { [1]="display_monster_has_righteous_fire_daemon" } }, - [5961]={ + [6163]={ [1]={ [1]={ limit={ @@ -136935,7 +141641,7 @@ return { [1]="display_monster_has_shroud_walker_daemon" } }, - [5962]={ + [6164]={ [1]={ [1]={ [1]={ @@ -136955,7 +141661,7 @@ return { [1]="display_monster_has_tailwind_aura" } }, - [5963]={ + [6165]={ [1]={ [1]={ limit={ @@ -136971,7 +141677,7 @@ return { [1]="display_monster_no_drops" } }, - [5964]={ + [6166]={ [1]={ [1]={ [1]={ @@ -136991,7 +141697,7 @@ return { [1]="display_passives_in_large_radius_of_non_unique_jewels_grant_additional_strength" } }, - [5965]={ + [6167]={ [1]={ [1]={ limit={ @@ -137007,7 +141713,7 @@ return { [1]="display_reave_base_maximum_stacks" } }, - [5966]={ + [6168]={ [1]={ [1]={ limit={ @@ -137023,7 +141729,7 @@ return { [1]="display_strongbox_drops_additional_shaper_or_elder_cards" } }, - [5967]={ + [6169]={ [1]={ [1]={ limit={ @@ -137039,7 +141745,7 @@ return { [1]="display_tattoo_grants_random_keystone" } }, - [5968]={ + [6170]={ [1]={ [1]={ limit={ @@ -137055,7 +141761,7 @@ return { [1]="display_violent_pace_skill_level" } }, - [5969]={ + [6171]={ [1]={ [1]={ limit={ @@ -137084,7 +141790,7 @@ return { [1]="divine_tempest_beam_width_+%" } }, - [5970]={ + [6172]={ [1]={ [1]={ limit={ @@ -137113,7 +141819,7 @@ return { [1]="divine_tempest_damage_+%" } }, - [5971]={ + [6173]={ [1]={ [1]={ limit={ @@ -137138,7 +141844,7 @@ return { [1]="divine_tempest_number_of_additional_nearby_enemies_to_zap" } }, - [5972]={ + [6174]={ [1]={ [1]={ limit={ @@ -137167,7 +141873,7 @@ return { [1]="doedre_aura_damage_+%_final" } }, - [5973]={ + [6175]={ [1]={ [1]={ limit={ @@ -137183,7 +141889,7 @@ return { [1]="dominating_blow_and_absolution_additive_minion_damage_modifiers_apply_to_you_at_150%_value" } }, - [5974]={ + [6176]={ [1]={ [1]={ limit={ @@ -137199,7 +141905,7 @@ return { [1]="dot_multiplier_+_if_crit_in_past_8_seconds" } }, - [5975]={ + [6177]={ [1]={ [1]={ limit={ @@ -137215,7 +141921,7 @@ return { [1]="dot_multiplier_+_while_affected_by_malevolence" } }, - [5976]={ + [6178]={ [1]={ [1]={ limit={ @@ -137231,7 +141937,7 @@ return { [1]="dot_multiplier_+_with_bow_skills" } }, - [5977]={ + [6179]={ [1]={ [1]={ [1]={ @@ -137264,7 +141970,23 @@ return { [1]="double_and_dual_strike_soul_eater_for_20_seconds_on_rare_or_unique_kill_chance_%" } }, - [5978]={ + [6180]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Maximum number of Animated Weapons is Doubled" + } + }, + stats={ + [1]="double_animate_weapons_limit" + } + }, + [6181]={ [1]={ [1]={ limit={ @@ -137280,7 +142002,7 @@ return { [1]="double_damage_chance_%_if_below_100_strength" } }, - [5979]={ + [6182]={ [1]={ [1]={ [1]={ @@ -137300,7 +142022,7 @@ return { [1]="double_damage_%_chance_while_wielding_mace_sceptre_staff" } }, - [5980]={ + [6183]={ [1]={ [1]={ limit={ @@ -137321,7 +142043,7 @@ return { [2]="double_slash_maximum_added_physical_damage_vs_bleeding_enemies" } }, - [5981]={ + [6184]={ [1]={ [1]={ limit={ @@ -137337,7 +142059,7 @@ return { [1]="double_strike_chance_to_deal_double_damage_%_vs_bleeding_enemies" } }, - [5982]={ + [6185]={ [1]={ [1]={ limit={ @@ -137353,7 +142075,7 @@ return { [1]="drain_x_flask_charges_over_time_on_hit_for_6_seconds" } }, - [5983]={ + [6186]={ [1]={ [1]={ limit={ @@ -137382,7 +142104,7 @@ return { [1]="dread_banner_aura_effect_+%" } }, - [5984]={ + [6187]={ [1]={ [1]={ limit={ @@ -137411,7 +142133,7 @@ return { [1]="dread_banner_mana_reservation_efficiency_+%" } }, - [5985]={ + [6188]={ [1]={ [1]={ limit={ @@ -137427,7 +142149,7 @@ return { [1]="dropped_items_are_converted_to_divination_cards" } }, - [5986]={ + [6189]={ [1]={ [1]={ limit={ @@ -137443,7 +142165,7 @@ return { [1]="dropped_items_are_converted_to_maps" } }, - [5987]={ + [6190]={ [1]={ [1]={ limit={ @@ -137459,7 +142181,7 @@ return { [1]="dropped_items_are_converted_to_scarabs_based_on_rarity" } }, - [5988]={ + [6191]={ [1]={ [1]={ limit={ @@ -137488,7 +142210,7 @@ return { [1]="dual_strike_accuracy_rating_+%_while_wielding_sword" } }, - [5989]={ + [6192]={ [1]={ [1]={ limit={ @@ -137517,7 +142239,7 @@ return { [1]="dual_strike_attack_speed_+%_while_wielding_claw" } }, - [5990]={ + [6193]={ [1]={ [1]={ limit={ @@ -137533,7 +142255,7 @@ return { [1]="dual_strike_critical_strike_multiplier_+_while_wielding_dagger" } }, - [5991]={ + [6194]={ [1]={ [1]={ [1]={ @@ -137553,7 +142275,7 @@ return { [1]="dual_strike_intimidate_on_hit_while_wielding_axe" } }, - [5992]={ + [6195]={ [1]={ [1]={ limit={ @@ -137578,7 +142300,7 @@ return { [1]="dual_strike_main_hand_deals_double_damage_%" } }, - [5993]={ + [6196]={ [1]={ [1]={ limit={ @@ -137594,7 +142316,7 @@ return { [1]="dual_strike_melee_splash_while_wielding_mace" } }, - [5994]={ + [6197]={ [1]={ [1]={ limit={ @@ -137610,7 +142332,7 @@ return { [1]="dual_strike_melee_splash_with_off_hand_weapon" } }, - [5995]={ + [6198]={ [1]={ [1]={ limit={ @@ -137626,7 +142348,7 @@ return { [1]="dual_wield_inherent_attack_speed_is_doubled_while_dual_wielding_claws" } }, - [5996]={ + [6199]={ [1]={ [1]={ [1]={ @@ -137646,7 +142368,7 @@ return { [1]="dual_wield_inherent_bonuses_are_doubled" } }, - [5997]={ + [6200]={ [1]={ [1]={ limit={ @@ -137675,7 +142397,7 @@ return { [1]="duelist_hidden_ascendancy_attack_skill_final_repeat_damage_+%_final" } }, - [5998]={ + [6201]={ [1]={ [1]={ [1]={ @@ -137712,7 +142434,7 @@ return { [1]="duration_of_ailments_on_self_+%_per_fortification" } }, - [5999]={ + [6202]={ [1]={ [1]={ limit={ @@ -137728,7 +142450,7 @@ return { [1]="earthquake_and_earthshatter_shatter_on_killing_blow" } }, - [6000]={ + [6203]={ [1]={ [1]={ limit={ @@ -137757,7 +142479,7 @@ return { [1]="earthquake_damage_+%_per_100ms_duration" } }, - [6001]={ + [6204]={ [1]={ [1]={ limit={ @@ -137786,7 +142508,7 @@ return { [1]="earthshatter_area_of_effect_+%" } }, - [6002]={ + [6205]={ [1]={ [1]={ limit={ @@ -137815,7 +142537,7 @@ return { [1]="earthshatter_damage_+%" } }, - [6003]={ + [6206]={ [1]={ [1]={ [1]={ @@ -137839,7 +142561,7 @@ return { [1]="eat_soul_after_hex_90%_curse_expire" } }, - [6004]={ + [6207]={ [1]={ [1]={ [1]={ @@ -137876,7 +142598,7 @@ return { [1]="elemental_ailment_duration_on_self_+%_while_holding_shield" } }, - [6005]={ + [6208]={ [1]={ [1]={ limit={ @@ -137905,7 +142627,7 @@ return { [1]="elemental_ailment_on_self_duration_+%_with_rare_abyss_jewel_socketed" } }, - [6006]={ + [6209]={ [1]={ [1]={ [1]={ @@ -137925,7 +142647,7 @@ return { [1]="elemental_ailments_on_you_proliferate_to_nearby_enemies_within_x_radius" } }, - [6007]={ + [6210]={ [1]={ [1]={ limit={ @@ -137941,7 +142663,7 @@ return { [1]="elemental_ailments_reflected_to_self" } }, - [6008]={ + [6211]={ [1]={ [1]={ limit={ @@ -137970,7 +142692,60 @@ return { [1]="elemental_damage_+%_per_different_enemy_elemental_ailment" } }, - [6009]={ + [6212]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% increased Elemental Damage per 1% Fire, Cold, or Lightning Resistance above 75%" + } + }, + stats={ + [1]="elemental_damage_+%_per_lightning_cold_fire_resistance_above_75" + } + }, + [6213]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextMissingResistance" + }, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Elemental Damage per 1% Missing\nFire, Cold, or Lightning Resistance, up to a maximum of 450%" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + [2]={ + k="reminderstring", + v="ReminderTextMissingResistance" + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Elemental Damage per 1% Missing\nFire, Cold, or Lightning Resistance, up to a maximum of 450%" + } + }, + stats={ + [1]="elemental_damage_+%_per_missing_lightning_cold_fire_resistance" + } + }, + [6214]={ [1]={ [1]={ limit={ @@ -137986,7 +142761,7 @@ return { [1]="elemental_damage_additional_rolls_lucky_shocked" } }, - [6010]={ + [6215]={ [1]={ [1]={ limit={ @@ -138015,7 +142790,7 @@ return { [1]="elemental_damage_+%_final_per_righteous_charge" } }, - [6011]={ + [6216]={ [1]={ [1]={ limit={ @@ -138044,7 +142819,7 @@ return { [1]="elemental_damage_+%_if_cursed_enemy_killed_recently" } }, - [6012]={ + [6217]={ [1]={ [1]={ [1]={ @@ -138081,7 +142856,7 @@ return { [1]="elemental_damage_+%_if_enemy_chilled_recently" } }, - [6013]={ + [6218]={ [1]={ [1]={ [1]={ @@ -138118,7 +142893,7 @@ return { [1]="elemental_damage_+%_if_enemy_ignited_recently" } }, - [6014]={ + [6219]={ [1]={ [1]={ [1]={ @@ -138155,7 +142930,7 @@ return { [1]="elemental_damage_+%_if_enemy_shocked_recently" } }, - [6015]={ + [6220]={ [1]={ [1]={ [1]={ @@ -138192,7 +142967,7 @@ return { [1]="elemental_damage_+%_if_have_crit_recently" } }, - [6016]={ + [6221]={ [1]={ [1]={ [1]={ @@ -138212,7 +142987,7 @@ return { [1]="elemental_damage_+%_if_used_a_warcry_recently" } }, - [6017]={ + [6222]={ [1]={ [1]={ limit={ @@ -138241,7 +143016,7 @@ return { [1]="elemental_damage_+%_per_10_devotion" } }, - [6018]={ + [6223]={ [1]={ [1]={ limit={ @@ -138270,7 +143045,7 @@ return { [1]="elemental_damage_+%_per_10_dexterity" } }, - [6019]={ + [6224]={ [1]={ [1]={ limit={ @@ -138299,7 +143074,7 @@ return { [1]="elemental_damage_+%_per_12_int" } }, - [6020]={ + [6225]={ [1]={ [1]={ limit={ @@ -138328,7 +143103,7 @@ return { [1]="elemental_damage_+%_per_12_strength" } }, - [6021]={ + [6226]={ [1]={ [1]={ limit={ @@ -138357,7 +143132,7 @@ return { [1]="elemental_damage_+%_per_power_charge" } }, - [6022]={ + [6227]={ [1]={ [1]={ limit={ @@ -138386,7 +143161,7 @@ return { [1]="elemental_damage_+%_per_sextant_affecting_area" } }, - [6023]={ + [6228]={ [1]={ [1]={ limit={ @@ -138415,7 +143190,7 @@ return { [1]="elemental_damage_+%_while_affected_by_a_herald" } }, - [6024]={ + [6229]={ [1]={ [1]={ limit={ @@ -138444,7 +143219,7 @@ return { [1]="elemental_damage_+%_while_in_area_affected_by_sextant" } }, - [6025]={ + [6230]={ [1]={ [1]={ limit={ @@ -138473,7 +143248,7 @@ return { [1]="elemental_damage_resistance_+%" } }, - [6026]={ + [6231]={ [1]={ [1]={ limit={ @@ -138489,7 +143264,7 @@ return { [1]="elemental_damage_resisted_by_lowest_elemental_resistance" } }, - [6027]={ + [6232]={ [1]={ [1]={ limit={ @@ -138518,7 +143293,7 @@ return { [1]="elemental_damage_taken_+%_final_per_raised_zombie" } }, - [6028]={ + [6233]={ [1]={ [1]={ limit={ @@ -138547,7 +143322,7 @@ return { [1]="elemental_damage_taken_from_hits_+%_per_endurance_charge" } }, - [6029]={ + [6234]={ [1]={ [1]={ [1]={ @@ -138584,7 +143359,7 @@ return { [1]="elemental_damage_taken_+%_if_been_hit_recently" } }, - [6030]={ + [6235]={ [1]={ [1]={ [1]={ @@ -138621,7 +143396,7 @@ return { [1]="elemental_damage_taken_+%_if_not_hit_recently" } }, - [6031]={ + [6236]={ [1]={ [1]={ limit={ @@ -138650,7 +143425,7 @@ return { [1]="elemental_damage_taken_+%_if_you_have_an_endurance_charge" } }, - [6032]={ + [6237]={ [1]={ [1]={ limit={ @@ -138679,7 +143454,7 @@ return { [1]="elemental_damage_taken_+%_per_endurance_charge" } }, - [6033]={ + [6238]={ [1]={ [1]={ limit={ @@ -138708,7 +143483,7 @@ return { [1]="elemental_damage_taken_+%_while_stationary" } }, - [6034]={ + [6239]={ [1]={ [1]={ limit={ @@ -138737,7 +143512,7 @@ return { [1]="elemental_damage_with_attack_skills_+%" } }, - [6035]={ + [6240]={ [1]={ [1]={ limit={ @@ -138766,7 +143541,7 @@ return { [1]="elemental_damage_with_attack_skills_+%_per_power_charge" } }, - [6036]={ + [6241]={ [1]={ [1]={ limit={ @@ -138782,7 +143557,7 @@ return { [1]="elemental_golems_maximum_life_is_doubled" } }, - [6037]={ + [6242]={ [1]={ [1]={ [1]={ @@ -138831,7 +143606,7 @@ return { [1]="elemental_hit_and_wild_strike_chance_to_inflict_scorch_brittle_sap_%" } }, - [6038]={ + [6243]={ [1]={ [1]={ limit={ @@ -138847,7 +143622,7 @@ return { [1]="elemental_hit_cannot_roll_cold_damage" } }, - [6039]={ + [6244]={ [1]={ [1]={ limit={ @@ -138863,7 +143638,7 @@ return { [1]="elemental_hit_cannot_roll_fire_damage" } }, - [6040]={ + [6245]={ [1]={ [1]={ limit={ @@ -138879,7 +143654,7 @@ return { [1]="elemental_hit_cannot_roll_lightning_damage" } }, - [6041]={ + [6246]={ [1]={ [1]={ limit={ @@ -138895,7 +143670,7 @@ return { [1]="elemental_hit_damage_taken_%_as_physical" } }, - [6042]={ + [6247]={ [1]={ [1]={ limit={ @@ -138911,7 +143686,7 @@ return { [1]="elemental_hit_deals_50%_less_cold_damage" } }, - [6043]={ + [6248]={ [1]={ [1]={ limit={ @@ -138927,7 +143702,7 @@ return { [1]="elemental_hit_deals_50%_less_fire_damage" } }, - [6044]={ + [6249]={ [1]={ [1]={ limit={ @@ -138943,7 +143718,7 @@ return { [1]="elemental_hit_deals_50%_less_lightning_damage" } }, - [6045]={ + [6250]={ [1]={ [1]={ limit={ @@ -138959,7 +143734,7 @@ return { [1]="elemental_penetration_%_if_you_have_a_power_charge" } }, - [6046]={ + [6251]={ [1]={ [1]={ limit={ @@ -138975,7 +143750,7 @@ return { [1]="elemental_penetration_%_while_chilled" } }, - [6047]={ + [6252]={ [1]={ [1]={ limit={ @@ -139004,7 +143779,7 @@ return { [1]="elemental_reflect_damage_taken_and_minion_elemental_reflect_damage_taken_+%" } }, - [6048]={ + [6253]={ [1]={ [1]={ limit={ @@ -139033,7 +143808,7 @@ return { [1]="elemental_reflect_damage_taken_+%_while_affected_by_purity_of_elements" } }, - [6049]={ + [6254]={ [1]={ [1]={ limit={ @@ -139049,7 +143824,7 @@ return { [1]="elemental_resistance_%_per_minion_up_to_30%" } }, - [6050]={ + [6255]={ [1]={ [1]={ limit={ @@ -139065,7 +143840,7 @@ return { [1]="elemental_resistance_%_while_no_gems_in_helmet" } }, - [6051]={ + [6256]={ [1]={ [1]={ limit={ @@ -139081,7 +143856,7 @@ return { [1]="elemental_resistance_cannot_be_lowered_by_curses" } }, - [6052]={ + [6257]={ [1]={ [1]={ limit={ @@ -139097,7 +143872,7 @@ return { [1]="elemental_resistance_%_per_10_devotion" } }, - [6053]={ + [6258]={ [1]={ [1]={ limit={ @@ -139113,7 +143888,7 @@ return { [1]="elemental_resistances_are_limited_by_highest_maximum_elemental_resistance" } }, - [6054]={ + [6259]={ [1]={ [1]={ [1]={ @@ -139133,7 +143908,7 @@ return { [1]="elemental_skill_chance_to_blind_nearby_enemies_%" } }, - [6055]={ + [6260]={ [1]={ [1]={ limit={ @@ -139149,7 +143924,7 @@ return { [1]="elemental_skills_deal_triple_damage" } }, - [6056]={ + [6261]={ [1]={ [1]={ limit={ @@ -139165,7 +143940,7 @@ return { [1]="elemental_weakness_no_reservation" } }, - [6057]={ + [6262]={ [1]={ [1]={ limit={ @@ -139194,7 +143969,7 @@ return { [1]="elementalist_area_of_effect_+%_for_5_seconds" } }, - [6058]={ + [6263]={ [1]={ [1]={ limit={ @@ -139210,7 +143985,7 @@ return { [1]="elementalist_chill_maximum_magnitude_override" } }, - [6059]={ + [6264]={ [1]={ [1]={ [1]={ @@ -139247,7 +144022,7 @@ return { [1]="elementalist_elemental_damage_+%_for_5_seconds" } }, - [6060]={ + [6265]={ [1]={ [1]={ limit={ @@ -139263,7 +144038,7 @@ return { [1]="elementalist_gain_shaper_of_desolation_every_10_seconds" } }, - [6061]={ + [6266]={ [1]={ [1]={ limit={ @@ -139292,7 +144067,7 @@ return { [1]="elementalist_ignite_damage_+%_final" } }, - [6062]={ + [6267]={ [1]={ [1]={ [1]={ @@ -139329,7 +144104,27 @@ return { [1]="elusive_effect_+%" } }, - [6063]={ + [6268]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextElusive" + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Elusive has 50% chance to be removed from you at {0}% effect" + } + }, + stats={ + [1]="elusive_has_50%_chance_to_be_removed_and_reapplied_at_%_elusive_effect" + } + }, + [6269]={ [1]={ [1]={ [1]={ @@ -139366,7 +144161,7 @@ return { [1]="elusive_loss_rate_+%" } }, - [6064]={ + [6270]={ [1]={ [1]={ [1]={ @@ -139386,7 +144181,7 @@ return { [1]="elusive_minimum_effect_%" } }, - [6065]={ + [6271]={ [1]={ [1]={ limit={ @@ -139415,7 +144210,7 @@ return { [1]="ember_projectile_spread_area_+%" } }, - [6066]={ + [6272]={ [1]={ [1]={ limit={ @@ -139444,7 +144239,7 @@ return { [1]="empowered_attack_damage_+%" } }, - [6067]={ + [6273]={ [1]={ [1]={ limit={ @@ -139460,7 +144255,23 @@ return { [1]="empowered_attack_double_damage_%_chance" } }, - [6068]={ + [6274]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="+1 Ring Slot" + } + }, + stats={ + [1]="enable_ring_slot_3" + } + }, + [6275]={ [1]={ [1]={ [1]={ @@ -139497,7 +144308,7 @@ return { [1]="enchantment_boots_mana_regeneration_rate_+%_if_cast_spell_recently" } }, - [6069]={ + [6276]={ [1]={ [1]={ limit={ @@ -139513,7 +144324,7 @@ return { [1]="endurance_charge_on_hit_%_vs_no_armour" } }, - [6070]={ + [6277]={ [1]={ [1]={ limit={ @@ -139529,7 +144340,7 @@ return { [1]="endurance_charge_on_kill_percent_chance_while_holding_shield" } }, - [6071]={ + [6278]={ [1]={ [1]={ limit={ @@ -139558,7 +144369,7 @@ return { [1]="endurance_charge_on_melee_stun_damage_+%_final_per_endurance_charge" } }, - [6072]={ + [6279]={ [1]={ [1]={ limit={ @@ -139583,7 +144394,7 @@ return { [1]="enduring_cry_grants_x_additional_endurance_charges" } }, - [6073]={ + [6280]={ [1]={ [1]={ [1]={ @@ -139603,7 +144414,7 @@ return { [1]="enemies_blinded_by_you_have_malediction" } }, - [6074]={ + [6281]={ [1]={ [1]={ [1]={ @@ -139623,7 +144434,7 @@ return { [1]="enemies_blinded_by_you_while_blinded_have_malediction" } }, - [6075]={ + [6282]={ [1]={ [1]={ [1]={ @@ -139643,7 +144454,7 @@ return { [1]="enemies_chilled_by_bane_and_contagion" } }, - [6076]={ + [6283]={ [1]={ [1]={ limit={ @@ -139659,7 +144470,7 @@ return { [1]="enemies_chilled_by_hits_deal_damage_lessened_by_chill_effect" } }, - [6077]={ + [6284]={ [1]={ [1]={ limit={ @@ -139675,7 +144486,7 @@ return { [1]="enemies_chilled_by_hits_take_damage_increased_by_chill_effect" } }, - [6078]={ + [6285]={ [1]={ [1]={ [1]={ @@ -139695,7 +144506,7 @@ return { [1]="enemies_chilled_by_your_hits_are_shocked" } }, - [6079]={ + [6286]={ [1]={ [1]={ limit={ @@ -139724,7 +144535,7 @@ return { [1]="enemies_cursed_by_you_have_life_regeneration_rate_+%" } }, - [6080]={ + [6287]={ [1]={ [1]={ limit={ @@ -139740,7 +144551,7 @@ return { [1]="enemies_explode_for_%_life_as_physical_damage" } }, - [6081]={ + [6288]={ [1]={ [1]={ limit={ @@ -139756,7 +144567,7 @@ return { [1]="enemies_explode_on_death_by_attack_for_10%_life_as_physical_damage" } }, - [6082]={ + [6289]={ [1]={ [1]={ limit={ @@ -139772,7 +144583,7 @@ return { [1]="enemies_explode_on_death_by_wand_hit_for_25%_life_as_chaos_damage_%_chance" } }, - [6083]={ + [6290]={ [1]={ [1]={ limit={ @@ -139788,7 +144599,7 @@ return { [1]="enemies_explode_on_kill" } }, - [6084]={ + [6291]={ [1]={ [1]={ limit={ @@ -139804,7 +144615,44 @@ return { [1]="enemies_explode_on_kill_while_unhinged" } }, - [6085]={ + [6292]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextLucky" + }, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Physical Damage of Enemies Hitting you is Lucky" + }, + [2]={ + [1]={ + k="reminderstring", + v="ReminderTextUnlucky" + }, + [2]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Physical Damage of Enemies Hitting you is Unlucky" + } + }, + stats={ + [1]="enemies_extra_damage_rolls_with_physical_damage" + } + }, + [6293]={ [1]={ [1]={ [1]={ @@ -139824,7 +144672,7 @@ return { [1]="enemies_extra_damage_rolls_with_lightning_damage" } }, - [6086]={ + [6294]={ [1]={ [1]={ [1]={ @@ -139857,7 +144705,7 @@ return { [1]="enemies_extra_damage_rolls_with_lightning_damage_while_you_are_shocked" } }, - [6087]={ + [6295]={ [1]={ [1]={ limit={ @@ -139882,7 +144730,7 @@ return { [1]="enemies_hitting_you_drop_burning_ground_%" } }, - [6088]={ + [6296]={ [1]={ [1]={ limit={ @@ -139907,7 +144755,7 @@ return { [1]="enemies_hitting_you_drop_chilled_ground_%" } }, - [6089]={ + [6297]={ [1]={ [1]={ limit={ @@ -139932,7 +144780,7 @@ return { [1]="enemies_hitting_you_drop_shocked_ground_%" } }, - [6090]={ + [6298]={ [1]={ [1]={ limit={ @@ -139948,7 +144796,7 @@ return { [1]="enemies_ignited_by_you_have_physical_damage_%_converted_to_fire" } }, - [6091]={ + [6299]={ [1]={ [1]={ limit={ @@ -139964,7 +144812,7 @@ return { [1]="enemies_in_presence_and_you_count_as_moving_when_affected_by_elemental_ailments" } }, - [6092]={ + [6300]={ [1]={ [1]={ [1]={ @@ -139997,7 +144845,7 @@ return { [1]="enemies_killed_on_fungal_ground_explode_for_10%_chaos_damage_%_chance" } }, - [6093]={ + [6301]={ [1]={ [1]={ [1]={ @@ -140029,7 +144877,7 @@ return { [1]="enemies_near_corpses_created_recently_are_shocked_and_chilled" } }, - [6094]={ + [6302]={ [1]={ [1]={ limit={ @@ -140045,7 +144893,7 @@ return { [1]="enemies_near_cursed_corpses_are_blinded_and_explode_on_death_for_%_life_as_physical_damage" } }, - [6095]={ + [6303]={ [1]={ [1]={ [1]={ @@ -140065,7 +144913,7 @@ return { [1]="enemies_near_link_skill_target_have_exposure" } }, - [6096]={ + [6304]={ [1]={ [1]={ [1]={ @@ -140085,7 +144933,7 @@ return { [1]="enemies_near_marked_enemy_are_blinded" } }, - [6097]={ + [6305]={ [1]={ [1]={ limit={ @@ -140114,7 +144962,7 @@ return { [1]="enemies_pacified_by_you_take_+%_damage" } }, - [6098]={ + [6306]={ [1]={ [1]={ limit={ @@ -140130,7 +144978,7 @@ return { [1]="enemies_poisoned_by_you_cannot_deal_critical_strikes" } }, - [6099]={ + [6307]={ [1]={ [1]={ limit={ @@ -140146,7 +144994,7 @@ return { [1]="enemies_poisoned_by_you_cannot_regen_life" } }, - [6100]={ + [6308]={ [1]={ [1]={ limit={ @@ -140162,7 +145010,7 @@ return { [1]="enemies_poisoned_by_you_chaos_resistance_+%" } }, - [6101]={ + [6309]={ [1]={ [1]={ limit={ @@ -140178,7 +145026,7 @@ return { [1]="enemies_shocked_by_you_have_physical_damage_%_converted_to_lightning" } }, - [6102]={ + [6310]={ [1]={ [1]={ [1]={ @@ -140198,7 +145046,27 @@ return { [1]="enemies_shocked_by_your_hits_are_chilled" } }, - [6103]={ + [6311]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextDebilitate" + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Enemies Shocked by you are Debilitated" + } + }, + stats={ + [1]="enemies_shocked_by_your_hits_are_debilitated" + } + }, + [6312]={ [1]={ [1]={ limit={ @@ -140223,7 +145091,7 @@ return { [1]="enemies_taunted_by_warcry_explode_on_death_%_chance_dealing_8%_life_as_chaos_damage" } }, - [6104]={ + [6313]={ [1]={ [1]={ limit={ @@ -140239,7 +145107,7 @@ return { [1]="enemies_taunted_by_you_cannot_evade_attacks" } }, - [6105]={ + [6314]={ [1]={ [1]={ [1]={ @@ -140259,7 +145127,7 @@ return { [1]="enemies_taunted_by_your_warcies_are_intimidated" } }, - [6106]={ + [6315]={ [1]={ [1]={ [1]={ @@ -140279,7 +145147,7 @@ return { [1]="enemies_taunted_by_your_warcries_are_unnerved" } }, - [6107]={ + [6316]={ [1]={ [1]={ limit={ @@ -140295,7 +145163,7 @@ return { [1]="enemies_that_hit_you_inflict_temporal_chains" } }, - [6108]={ + [6317]={ [1]={ [1]={ [1]={ @@ -140332,7 +145200,7 @@ return { [1]="enemies_that_hit_you_with_attack_recently_attack_speed_+%" } }, - [6109]={ + [6318]={ [1]={ [1]={ limit={ @@ -140361,7 +145229,7 @@ return { [1]="enemies_you_blind_have_critical_strike_chance_+%" } }, - [6110]={ + [6319]={ [1]={ [1]={ [1]={ @@ -140381,7 +145249,7 @@ return { [1]="enemies_you_curse_are_intimidated" } }, - [6111]={ + [6320]={ [1]={ [1]={ [1]={ @@ -140401,7 +145269,7 @@ return { [1]="enemies_you_curse_are_unnerved" } }, - [6112]={ + [6321]={ [1]={ [1]={ limit={ @@ -140417,7 +145285,7 @@ return { [1]="enemies_you_curse_cannot_recharge_energy_shield" } }, - [6113]={ + [6322]={ [1]={ [1]={ [1]={ @@ -140437,7 +145305,7 @@ return { [1]="enemies_you_curse_have_15%_hinder" } }, - [6114]={ + [6323]={ [1]={ [1]={ [1]={ @@ -140474,7 +145342,7 @@ return { [1]="enemies_you_expose_have_self_elemental_status_duration_+%" } }, - [6115]={ + [6324]={ [1]={ [1]={ limit={ @@ -140503,7 +145371,7 @@ return { [1]="enemies_you_hinder_have_life_regeneration_rate_+%" } }, - [6116]={ + [6325]={ [1]={ [1]={ limit={ @@ -140519,7 +145387,7 @@ return { [1]="enemies_you_ignite_take_chaos_damage_from_ignite_instead" } }, - [6117]={ + [6326]={ [1]={ [1]={ limit={ @@ -140535,7 +145403,7 @@ return { [1]="enemies_you_ignite_wither_does_not_expire" } }, - [6118]={ + [6327]={ [1]={ [1]={ limit={ @@ -140564,7 +145432,7 @@ return { [1]="enemies_you_intimidate_have_stun_duration_on_self_+%" } }, - [6119]={ + [6328]={ [1]={ [1]={ limit={ @@ -140593,7 +145461,7 @@ return { [1]="enemies_you_maim_have_damage_taken_over_time_+%" } }, - [6120]={ + [6329]={ [1]={ [1]={ limit={ @@ -140622,7 +145490,7 @@ return { [1]="enemies_you_unnerve_have_enemy_spell_critical_strike_chance_+%_against_self" } }, - [6121]={ + [6330]={ [1]={ [1]={ limit={ @@ -140638,7 +145506,7 @@ return { [1]="enemies_you_wither_have_all_resistances_%" } }, - [6122]={ + [6331]={ [1]={ [1]={ [1]={ @@ -140675,7 +145543,7 @@ return { [1]="enemy_evasion_+%_if_you_have_hit_them_recently" } }, - [6123]={ + [6332]={ [1]={ [1]={ [1]={ @@ -140708,7 +145576,7 @@ return { [1]="enemy_extra_damage_rolls_if_magic_ring_equipped" } }, - [6124]={ + [6333]={ [1]={ [1]={ [1]={ @@ -140741,7 +145609,7 @@ return { [1]="enemy_extra_damage_rolls_when_on_full_life" } }, - [6125]={ + [6334]={ [1]={ [1]={ limit={ @@ -140766,7 +145634,7 @@ return { [1]="enemy_hits_%_chance_to_treat_elemental_resistances_as_90%" } }, - [6126]={ + [6335]={ [1]={ [1]={ [1]={ @@ -140803,7 +145671,7 @@ return { [1]="enemy_life_regeneration_rate_+%_for_4_seconds_on_hit" } }, - [6127]={ + [6336]={ [1]={ [1]={ limit={ @@ -140819,7 +145687,7 @@ return { [1]="enemy_zero_elemental_resistance_when_hit" } }, - [6128]={ + [6337]={ [1]={ [1]={ limit={ @@ -140828,7 +145696,7 @@ return { [2]="#" } }, - text="{0}% increased Maximum Energy Shield if both Equipped Rings have an Explicit Evasion Modifier" + text="{0}% increased Maximum Energy Shield if both Equipped Left and Right Rings have an Explicit Evasion Modifier" }, [2]={ [1]={ @@ -140841,14 +145709,14 @@ return { [2]=-1 } }, - text="{0}% reduced Maximum Energy Shield if both Equipped Rings have an Explicit Evasion Modifier" + text="{0}% reduced Maximum Energy Shield if both Equipped Left and Right Rings have an Explicit Evasion Modifier" } }, stats={ [1]="energy_shield_+%_if_both_rings_have_evasion_mod" } }, - [6129]={ + [6338]={ [1]={ [1]={ limit={ @@ -140864,7 +145732,7 @@ return { [1]="energy_shield_+_per_8_evasion_on_boots" } }, - [6130]={ + [6339]={ [1]={ [1]={ limit={ @@ -140880,7 +145748,7 @@ return { [1]="energy_shield_additive_modifiers_instead_apply_to_ward" } }, - [6131]={ + [6340]={ [1]={ [1]={ limit={ @@ -140909,7 +145777,7 @@ return { [1]="energy_shield_delay_-%_while_affected_by_discipline" } }, - [6132]={ + [6341]={ [1]={ [1]={ limit={ @@ -140938,7 +145806,7 @@ return { [1]="energy_shield_from_gloves_and_boots_+%" } }, - [6133]={ + [6342]={ [1]={ [1]={ limit={ @@ -140967,7 +145835,7 @@ return { [1]="energy_shield_from_helmet_+%" } }, - [6134]={ + [6343]={ [1]={ [1]={ limit={ @@ -140996,7 +145864,7 @@ return { [1]="energy_shield_gain_per_target_hit_while_affected_by_discipline" } }, - [6135]={ + [6344]={ [1]={ [1]={ limit={ @@ -141012,7 +145880,31 @@ return { [1]="energy_shield_gain_when_you_hit_enemy_affected_by_spiders_web" } }, - [6136]={ + [6345]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextOvercappedResistance" + }, + [2]={ + k="reminderstring", + v="ReminderTextUncappedResist" + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Energy Shield is increased by Overcapped Fire Resistance" + } + }, + stats={ + [1]="energy_shield_increased_by_overcapped_chaos_resistance" + } + }, + [6346]={ [1]={ [1]={ limit={ @@ -141028,7 +145920,7 @@ return { [1]="energy_shield_leech_does_not_stop_on_full_energy_shield" } }, - [6137]={ + [6347]={ [1]={ [1]={ limit={ @@ -141044,7 +145936,7 @@ return { [1]="energy_shield_leech_from_attacks_does_not_stop_on_full_energy_shield" } }, - [6138]={ + [6348]={ [1]={ [1]={ [1]={ @@ -141064,7 +145956,7 @@ return { [1]="energy_shield_leech_from_lightning_damage_permyriad_while_affected_by_wrath" } }, - [6139]={ + [6349]={ [1]={ [1]={ [1]={ @@ -141088,7 +145980,7 @@ return { [1]="energy_shield_leech_if_hit_is_at_least_25_%_fire_damage_permyriad" } }, - [6140]={ + [6350]={ [1]={ [1]={ [1]={ @@ -141112,7 +146004,7 @@ return { [1]="energy_shield_leech_permyriad_vs_frozen_enemies" } }, - [6141]={ + [6351]={ [1]={ [1]={ [1]={ @@ -141132,7 +146024,7 @@ return { [1]="energy_shield_lost_per_minute_%" } }, - [6142]={ + [6352]={ [1]={ [1]={ limit={ @@ -141148,7 +146040,7 @@ return { [1]="energy_shield_per_level" } }, - [6143]={ + [6353]={ [1]={ [1]={ limit={ @@ -141164,7 +146056,7 @@ return { [1]="energy_shield_+%_per_10_strength" } }, - [6144]={ + [6354]={ [1]={ [1]={ limit={ @@ -141180,7 +146072,7 @@ return { [1]="energy_shield_+%_per_power_charge" } }, - [6145]={ + [6355]={ [1]={ [1]={ limit={ @@ -141209,7 +146101,7 @@ return { [1]="energy_shield_recharge_+%_if_amulet_has_evasion_mod" } }, - [6146]={ + [6356]={ [1]={ [1]={ limit={ @@ -141225,7 +146117,7 @@ return { [1]="energy_shield_recharge_apply_to_mana" } }, - [6147]={ + [6357]={ [1]={ [1]={ [1]={ @@ -141254,7 +146146,7 @@ return { [1]="energy_shield_recharge_rate_+%_per_different_mastery" } }, - [6148]={ + [6358]={ [1]={ [1]={ limit={ @@ -141270,7 +146162,7 @@ return { [1]="energy_shield_recharge_start_when_stunned" } }, - [6149]={ + [6359]={ [1]={ [1]={ limit={ @@ -141286,7 +146178,7 @@ return { [1]="energy_shield_recharges_on_kill_%" } }, - [6150]={ + [6360]={ [1]={ [1]={ limit={ @@ -141302,7 +146194,7 @@ return { [1]="energy_shield_recharges_on_skill_use_chance_%" } }, - [6151]={ + [6361]={ [1]={ [1]={ [1]={ @@ -141339,7 +146231,7 @@ return { [1]="energy_shield_recovery_rate_+%_if_havent_killed_recently" } }, - [6152]={ + [6362]={ [1]={ [1]={ [1]={ @@ -141376,7 +146268,7 @@ return { [1]="energy_shield_recovery_rate_+%_if_not_hit_recently" } }, - [6153]={ + [6363]={ [1]={ [1]={ limit={ @@ -141405,7 +146297,7 @@ return { [1]="energy_shield_recovery_rate_while_affected_by_discipline_+%" } }, - [6154]={ + [6364]={ [1]={ [1]={ [1]={ @@ -141429,7 +146321,7 @@ return { [1]="energy_shield_regeneration_%_per_minute_if_enemy_cursed_recently" } }, - [6155]={ + [6365]={ [1]={ [1]={ [1]={ @@ -141453,7 +146345,7 @@ return { [1]="energy_shield_regeneration_%_per_minute_if_enemy_killed_recently" } }, - [6156]={ + [6366]={ [1]={ [1]={ [1]={ @@ -141477,7 +146369,7 @@ return { [1]="energy_shield_regeneration_rate_per_minute_%_if_consumed_corpse_recently" } }, - [6157]={ + [6367]={ [1]={ [1]={ [1]={ @@ -141497,7 +146389,7 @@ return { [1]="energy_shield_regeneration_rate_per_minute_if_rare_or_unique_enemy_nearby" } }, - [6158]={ + [6368]={ [1]={ [1]={ [1]={ @@ -141517,7 +146409,7 @@ return { [1]="energy_shield_regeneration_rate_per_minute_per_poison_stack" } }, - [6159]={ + [6369]={ [1]={ [1]={ [1]={ @@ -141541,7 +146433,7 @@ return { [1]="energy_shield_regeneration_rate_per_minute_%_if_you_have_hit_an_enemy_recently" } }, - [6160]={ + [6370]={ [1]={ [1]={ [1]={ @@ -141561,7 +146453,7 @@ return { [1]="energy_shield_regeneration_rate_per_minute_%_while_affected_by_discipline" } }, - [6161]={ + [6371]={ [1]={ [1]={ [1]={ @@ -141581,7 +146473,7 @@ return { [1]="energy_shield_regeneration_rate_per_minute_while_on_consecrated_ground" } }, - [6162]={ + [6372]={ [1]={ [1]={ limit={ @@ -141597,7 +146489,7 @@ return { [1]="energy_shield_regeneration_rate_per_second" } }, - [6163]={ + [6373]={ [1]={ [1]={ limit={ @@ -141626,7 +146518,7 @@ return { [1]="energy_shield_regeneration_rate_+%" } }, - [6164]={ + [6374]={ [1]={ [1]={ limit={ @@ -141642,7 +146534,7 @@ return { [1]="enfeeble_no_reservation" } }, - [6165]={ + [6375]={ [1]={ [1]={ limit={ @@ -141671,7 +146563,7 @@ return { [1]="ensnaring_arrow_area_of_effect_+%" } }, - [6166]={ + [6376]={ [1]={ [1]={ limit={ @@ -141700,7 +146592,7 @@ return { [1]="ensnaring_arrow_debuff_effect_+%" } }, - [6167]={ + [6377]={ [1]={ [1]={ limit={ @@ -141716,7 +146608,7 @@ return { [1]="envy_reserves_no_mana" } }, - [6168]={ + [6378]={ [1]={ [1]={ limit={ @@ -141732,7 +146624,7 @@ return { [1]="ephemeral_edge_maximum_lightning_damage_from_es_%" } }, - [6169]={ + [6379]={ [1]={ [1]={ [1]={ @@ -141752,7 +146644,7 @@ return { [1]="es_regeneration_per_minute_%_while_stationary" } }, - [6170]={ + [6380]={ [1]={ [1]={ limit={ @@ -141781,7 +146673,7 @@ return { [1]="essence_drain_soulrend_base_projectile_speed_+%" } }, - [6171]={ + [6381]={ [1]={ [1]={ limit={ @@ -141806,7 +146698,7 @@ return { [1]="essence_drain_soulrend_number_of_additional_projectiles" } }, - [6172]={ + [6382]={ [1]={ [1]={ [1]={ @@ -141873,7 +146765,7 @@ return { [1]="ethereal_knives_blade_left_in_ground_for_every_X_projectiles" } }, - [6173]={ + [6383]={ [1]={ [1]={ limit={ @@ -141898,7 +146790,7 @@ return { [1]="ethereal_knives_number_of_additional_projectiles" } }, - [6174]={ + [6384]={ [1]={ [1]={ limit={ @@ -141923,7 +146815,7 @@ return { [1]="ethereal_knives_projectile_base_number_of_targets_to_pierce" } }, - [6175]={ + [6385]={ [1]={ [1]={ limit={ @@ -141939,7 +146831,7 @@ return { [1]="ethereal_knives_projectiles_nova" } }, - [6176]={ + [6386]={ [1]={ [1]={ limit={ @@ -141968,7 +146860,7 @@ return { [1]="evasion_rating_+%_if_energy_shield_recharge_started_in_past_2_seconds" } }, - [6177]={ + [6387]={ [1]={ [1]={ limit={ @@ -141997,7 +146889,7 @@ return { [1]="evasion_rating_+%_per_5_intelligence" } }, - [6178]={ + [6388]={ [1]={ [1]={ limit={ @@ -142013,7 +146905,7 @@ return { [1]="evasion_+%_per_10_intelligence" } }, - [6179]={ + [6389]={ [1]={ [1]={ limit={ @@ -142029,7 +146921,7 @@ return { [1]="evasion_rating_+%_during_focus" } }, - [6180]={ + [6390]={ [1]={ [1]={ limit={ @@ -142045,7 +146937,68 @@ return { [1]="evasion_rating_+%_per_500_maximum_mana" } }, - [6181]={ + [6391]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% increased Evasion Rating per Endurance Charge" + } + }, + stats={ + [1]="evasion_rating_+%_per_endurance_charge" + } + }, + [6392]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Evasion Rating while stationary" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Evasion Rating while stationary" + } + }, + stats={ + [1]="evasion_rating_+%_while_stationary" + } + }, + [6393]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d} to Evasion Rating per 10 Player Maximum Life" + } + }, + stats={ + [1]="evasion_rating_+_per_10_player_life" + } + }, + [6394]={ [1]={ [1]={ limit={ @@ -142061,7 +147014,7 @@ return { [1]="evasion_rating_+_per_1_armour_on_gloves" } }, - [6182]={ + [6395]={ [1]={ [1]={ limit={ @@ -142090,7 +147043,7 @@ return { [1]="evasion_rating_from_helmet_and_boots_+%" } }, - [6183]={ + [6396]={ [1]={ [1]={ [1]={ @@ -142114,7 +147067,7 @@ return { [1]="evasion_rating_increased_by_overcapped_cold_resistance" } }, - [6184]={ + [6397]={ [1]={ [1]={ [1]={ @@ -142134,7 +147087,7 @@ return { [1]="evasion_rating_%_as_life_regeneration_per_minute_during_focus" } }, - [6185]={ + [6398]={ [1]={ [1]={ limit={ @@ -142150,7 +147103,7 @@ return { [1]="evasion_rating_%_to_add_as_armour" } }, - [6186]={ + [6399]={ [1]={ [1]={ [1]={ @@ -142170,7 +147123,7 @@ return { [1]="evasion_rating_+_if_you_have_hit_an_enemy_recently" } }, - [6187]={ + [6400]={ [1]={ [1]={ limit={ @@ -142199,7 +147152,7 @@ return { [1]="evasion_rating_+_while_phasing" } }, - [6188]={ + [6401]={ [1]={ [1]={ limit={ @@ -142215,7 +147168,7 @@ return { [1]="evasion_rating_+_while_you_have_tailwind" } }, - [6189]={ + [6402]={ [1]={ [1]={ [1]={ @@ -142252,7 +147205,7 @@ return { [1]="evasion_rating_+%_if_have_cast_dash_recently" } }, - [6190]={ + [6403]={ [1]={ [1]={ [1]={ @@ -142281,7 +147234,7 @@ return { [1]="evasion_rating_+%_if_have_not_been_hit_recently" } }, - [6191]={ + [6404]={ [1]={ [1]={ [1]={ @@ -142318,7 +147271,7 @@ return { [1]="evasion_rating_+%_if_you_have_hit_an_enemy_recently" } }, - [6192]={ + [6405]={ [1]={ [1]={ limit={ @@ -142347,7 +147300,7 @@ return { [1]="evasion_rating_+%_per_green_socket_on_main_hand_weapon" } }, - [6193]={ + [6406]={ [1]={ [1]={ limit={ @@ -142376,7 +147329,7 @@ return { [1]="evasion_rating_+%_when_on_full_life" } }, - [6194]={ + [6407]={ [1]={ [1]={ limit={ @@ -142405,7 +147358,7 @@ return { [1]="evasion_rating_+%_while_leeching" } }, - [6195]={ + [6408]={ [1]={ [1]={ limit={ @@ -142434,7 +147387,7 @@ return { [1]="evasion_rating_+%_while_moving" } }, - [6196]={ + [6409]={ [1]={ [1]={ limit={ @@ -142463,7 +147416,7 @@ return { [1]="evasion_rating_+%_while_tincture_active" } }, - [6197]={ + [6410]={ [1]={ [1]={ limit={ @@ -142492,7 +147445,7 @@ return { [1]="evasion_rating_+%_while_you_have_energy_shield" } }, - [6198]={ + [6411]={ [1]={ [1]={ limit={ @@ -142508,7 +147461,7 @@ return { [1]="every_10_seconds_physical_damage_%_to_add_as_fire_for_3_seconds" } }, - [6199]={ + [6412]={ [1]={ [1]={ limit={ @@ -142524,7 +147477,7 @@ return { [1]="every_4_seconds_%_chance_freeze_non_frozen_enemies_for_300ms" } }, - [6200]={ + [6413]={ [1]={ [1]={ limit={ @@ -142540,7 +147493,7 @@ return { [1]="every_4_seconds_regenerate_%_of_armour_and_evasion_as_life_over_1_second" } }, - [6201]={ + [6414]={ [1]={ [1]={ limit={ @@ -142556,7 +147509,7 @@ return { [1]="every_fourth_retaliation_used_is_a_critical_strike" } }, - [6202]={ + [6415]={ [1]={ [1]={ [1]={ @@ -142597,7 +147550,7 @@ return { [1]="excommunicate_on_melee_attack_hit_for_X_ms" } }, - [6203]={ + [6416]={ [1]={ [1]={ [1]={ @@ -142630,7 +147583,7 @@ return { [1]="exerted_attack_knockback_chance_%" } }, - [6204]={ + [6417]={ [1]={ [1]={ [1]={ @@ -142650,7 +147603,7 @@ return { [1]="exerted_attacks_overwhelm_%_physical_damage_reduction" } }, - [6205]={ + [6418]={ [1]={ [1]={ limit={ @@ -142666,7 +147619,7 @@ return { [1]="expanding_fire_cone_additional_maximum_number_of_stages" } }, - [6206]={ + [6419]={ [1]={ [1]={ limit={ @@ -142695,7 +147648,7 @@ return { [1]="expanding_fire_cone_area_of_effect_+%" } }, - [6207]={ + [6420]={ [1]={ [1]={ limit={ @@ -142724,7 +147677,7 @@ return { [1]="expedition_chest_logbook_chance_%" } }, - [6208]={ + [6421]={ [1]={ [1]={ limit={ @@ -142749,7 +147702,7 @@ return { [1]="expedition_monsters_logbook_chance_+%" } }, - [6209]={ + [6422]={ [1]={ [1]={ limit={ @@ -142765,7 +147718,7 @@ return { [1]="explode_burning_enemies_for_10%_life_as_fire_on_kill_chance_%" } }, - [6210]={ + [6423]={ [1]={ [1]={ limit={ @@ -142781,7 +147734,7 @@ return { [1]="explode_enemies_for_10%_life_as_fire_on_kill_chance_%" } }, - [6211]={ + [6424]={ [1]={ [1]={ limit={ @@ -142797,7 +147750,7 @@ return { [1]="explode_enemies_for_10%_life_as_physical_on_kill_chance_%_while_using_pride" } }, - [6212]={ + [6425]={ [1]={ [1]={ limit={ @@ -142813,7 +147766,7 @@ return { [1]="explode_enemies_for_500%_life_as_fire_on_kill_%_chance" } }, - [6213]={ + [6426]={ [1]={ [1]={ limit={ @@ -142829,7 +147782,7 @@ return { [1]="explode_on_death_for_%_life_as_fire_damage" } }, - [6214]={ + [6427]={ [1]={ [1]={ limit={ @@ -142858,7 +147811,7 @@ return { [1]="explosive_arrow_duration_+%" } }, - [6215]={ + [6428]={ [1]={ [1]={ limit={ @@ -142887,7 +147840,7 @@ return { [1]="explosive_concoction_damage_+%" } }, - [6216]={ + [6429]={ [1]={ [1]={ limit={ @@ -142916,7 +147869,7 @@ return { [1]="explosive_concoction_flask_charges_consumed_+%" } }, - [6217]={ + [6430]={ [1]={ [1]={ limit={ @@ -142945,7 +147898,7 @@ return { [1]="explosive_concoction_skill_area_of_effect_+%" } }, - [6218]={ + [6431]={ [1]={ [1]={ limit={ @@ -142974,7 +147927,7 @@ return { [1]="exposure_effect_+%" } }, - [6219]={ + [6432]={ [1]={ [1]={ limit={ @@ -142990,7 +147943,7 @@ return { [1]="exposure_you_inflict_applies_extra_%_to_affected_resistance" } }, - [6220]={ + [6433]={ [1]={ [1]={ limit={ @@ -143006,7 +147959,7 @@ return { [1]="exposure_you_inflict_has_minimum_resistance_%" } }, - [6221]={ + [6434]={ [1]={ [1]={ limit={ @@ -143022,7 +147975,7 @@ return { [1]="exsanguinate_additional_chain_chance_%" } }, - [6222]={ + [6435]={ [1]={ [1]={ limit={ @@ -143038,7 +147991,7 @@ return { [1]="exsanguinate_and_reap_skill_physical_damage_%_to_convert_to_fire" } }, - [6223]={ + [6436]={ [1]={ [1]={ limit={ @@ -143067,7 +148020,7 @@ return { [1]="exsanguinate_damage_+%" } }, - [6224]={ + [6437]={ [1]={ [1]={ limit={ @@ -143083,7 +148036,7 @@ return { [1]="exsanguinate_debuff_deals_fire_damage_instead_of_physical_damage" } }, - [6225]={ + [6438]={ [1]={ [1]={ limit={ @@ -143112,7 +148065,7 @@ return { [1]="exsanguinate_duration_+%" } }, - [6226]={ + [6439]={ [1]={ [1]={ [1]={ @@ -143132,7 +148085,7 @@ return { [1]="extinguish_on_hit_%_chance" } }, - [6227]={ + [6440]={ [1]={ [1]={ [1]={ @@ -143165,7 +148118,7 @@ return { [1]="extra_critical_rolls_during_focus" } }, - [6228]={ + [6441]={ [1]={ [1]={ [1]={ @@ -143206,7 +148159,106 @@ return { [1]="extra_critical_rolls_while_on_low_life" } }, - [6229]={ + [6442]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextRecently" + }, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Cold Damage with Hits is Lucky if you've Suppressed Spell Damage Recently" + }, + [2]={ + [1]={ + k="reminderstring", + v="ReminderTextRecently" + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Cold Damage with Hits is Unlucky if you've Suppressed Spell Damage Recently" + } + }, + stats={ + [1]="extra_damage_rolls_with_cold_damage_if_have_suppressed_spell_damage_recently" + } + }, + [6443]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextRecently" + }, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Fire Damage with Hits is Lucky if you've Blocked an Attack Recently" + }, + [2]={ + [1]={ + k="reminderstring", + v="ReminderTextRecently" + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Fire Damage with Hits is Unlucky if you've Blocked an Attack Recently" + } + }, + stats={ + [1]="extra_damage_rolls_with_fire_damage_if_have_blocked_attack_recently" + } + }, + [6444]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextRecently" + }, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Lightning Damage with Hits is Lucky if you've Blocked Spell Damage Recently" + }, + [2]={ + [1]={ + k="reminderstring", + v="ReminderTextRecently" + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Lightning Damage with Hits is Unlucky if you've Blocked Spell Damage Recently" + } + }, + stats={ + [1]="extra_damage_rolls_with_lightning_damage_if_have_blocked_spell_recently" + } + }, + [6445]={ [1]={ [1]={ limit={ @@ -143222,7 +148274,7 @@ return { [1]="extra_damage_rolls_with_lightning_damage_on_non_critical_hits" } }, - [6230]={ + [6446]={ [1]={ [1]={ limit={ @@ -143251,7 +148303,7 @@ return { [1]="extra_damage_taken_from_crit_+%_while_affected_by_determination" } }, - [6231]={ + [6447]={ [1]={ [1]={ limit={ @@ -143280,7 +148332,7 @@ return { [1]="extra_damage_taken_from_crit_while_no_power_charges_+%" } }, - [6232]={ + [6448]={ [1]={ [1]={ limit={ @@ -143296,7 +148348,7 @@ return { [1]="extra_target_targeting_distance_+%" } }, - [6233]={ + [6449]={ [1]={ [1]={ limit={ @@ -143312,7 +148364,7 @@ return { [1]="extreme_luck_unluck" } }, - [6234]={ + [6450]={ [1]={ [1]={ limit={ @@ -143341,7 +148393,7 @@ return { [1]="eye_of_winter_damage_+%" } }, - [6235]={ + [6451]={ [1]={ [1]={ limit={ @@ -143370,7 +148422,7 @@ return { [1]="eye_of_winter_projectile_speed_+%" } }, - [6236]={ + [6452]={ [1]={ [1]={ limit={ @@ -143399,7 +148451,7 @@ return { [1]="eye_of_winter_spiral_fire_frequency_+%" } }, - [6237]={ + [6453]={ [1]={ [1]={ [1]={ @@ -143419,7 +148471,7 @@ return { [1]="faster_bleed_per_frenzy_charge_%" } }, - [6238]={ + [6454]={ [1]={ [1]={ [1]={ @@ -143439,7 +148491,7 @@ return { [1]="faster_bleed_%" } }, - [6239]={ + [6455]={ [1]={ [1]={ [1]={ @@ -143463,7 +148515,7 @@ return { [1]="faster_poison_%" } }, - [6240]={ + [6456]={ [1]={ [1]={ limit={ @@ -143479,7 +148531,7 @@ return { [1]="final_pack_summons_nameless_seer" } }, - [6241]={ + [6457]={ [1]={ [1]={ limit={ @@ -143508,7 +148560,7 @@ return { [1]="final_repeat_of_spells_area_of_effect_+%" } }, - [6242]={ + [6458]={ [1]={ [1]={ [1]={ @@ -143545,7 +148597,7 @@ return { [1]="fire_ailment_duration_+%" } }, - [6243]={ + [6459]={ [1]={ [1]={ limit={ @@ -143561,7 +148613,7 @@ return { [1]="fire_and_chaos_damage_resistance_%" } }, - [6244]={ + [6460]={ [1]={ [1]={ limit={ @@ -143577,7 +148629,7 @@ return { [1]="fire_and_cold_hit_and_dot_damage_%_taken_as_lightning_while_affected_by_purity_of_lightning" } }, - [6245]={ + [6461]={ [1]={ [1]={ limit={ @@ -143602,7 +148654,7 @@ return { [1]="fire_and_explosive_trap_number_of_additional_traps_to_throw_if_mined" } }, - [6246]={ + [6462]={ [1]={ [1]={ limit={ @@ -143618,7 +148670,7 @@ return { [1]="fire_and_lightning_hit_and_dot_damage_%_taken_as_cold_while_affected_by_purity_of_ice" } }, - [6247]={ + [6463]={ [1]={ [1]={ limit={ @@ -143647,7 +148699,7 @@ return { [1]="fire_beam_cast_speed_+%" } }, - [6248]={ + [6464]={ [1]={ [1]={ limit={ @@ -143676,7 +148728,7 @@ return { [1]="fire_beam_damage_+%" } }, - [6249]={ + [6465]={ [1]={ [1]={ limit={ @@ -143692,7 +148744,7 @@ return { [1]="fire_beam_degen_spread_to_enemies_in_radius_on_kill" } }, - [6250]={ + [6466]={ [1]={ [1]={ limit={ @@ -143708,7 +148760,7 @@ return { [1]="fire_beam_enemy_fire_resistance_%_at_max_stacks" } }, - [6251]={ + [6467]={ [1]={ [1]={ limit={ @@ -143724,7 +148776,7 @@ return { [1]="fire_beam_enemy_fire_resistance_%_per_stack" } }, - [6252]={ + [6468]={ [1]={ [1]={ limit={ @@ -143753,7 +148805,7 @@ return { [1]="fire_beam_length_+%" } }, - [6253]={ + [6469]={ [1]={ [1]={ limit={ @@ -143769,7 +148821,7 @@ return { [1]="fire_damage_over_time_multiplier_+%_while_burning" } }, - [6254]={ + [6470]={ [1]={ [1]={ limit={ @@ -143785,7 +148837,7 @@ return { [1]="fire_damage_%_to_add_as_chaos_per_endurance_charge" } }, - [6255]={ + [6471]={ [1]={ [1]={ limit={ @@ -143814,7 +148866,7 @@ return { [1]="fire_damage_+%_if_you_have_been_hit_recently" } }, - [6256]={ + [6472]={ [1]={ [1]={ limit={ @@ -143843,7 +148895,7 @@ return { [1]="fire_damage_+%_if_you_have_used_a_cold_skill_recently" } }, - [6257]={ + [6473]={ [1]={ [1]={ limit={ @@ -143872,7 +148924,7 @@ return { [1]="fire_damage_+%_per_20_strength" } }, - [6258]={ + [6474]={ [1]={ [1]={ limit={ @@ -143901,7 +148953,7 @@ return { [1]="fire_damage_+%_per_endurance_charge" } }, - [6259]={ + [6475]={ [1]={ [1]={ limit={ @@ -143930,7 +148982,7 @@ return { [1]="fire_damage_+%_per_fire_resistance_above_75" } }, - [6260]={ + [6476]={ [1]={ [1]={ [1]={ @@ -143967,7 +149019,7 @@ return { [1]="fire_damage_+%_per_missing_fire_resistance" } }, - [6261]={ + [6477]={ [1]={ [1]={ [1]={ @@ -144004,7 +149056,7 @@ return { [1]="fire_damage_+%_vs_bleeding_enemies" } }, - [6262]={ + [6478]={ [1]={ [1]={ limit={ @@ -144033,7 +149085,7 @@ return { [1]="fire_damage_+%_while_affected_by_anger" } }, - [6263]={ + [6479]={ [1]={ [1]={ limit={ @@ -144062,7 +149114,7 @@ return { [1]="fire_damage_+%_while_affected_by_herald_of_ash" } }, - [6264]={ + [6480]={ [1]={ [1]={ limit={ @@ -144078,7 +149130,7 @@ return { [1]="fire_damage_resistance_%_while_affected_by_herald_of_ash" } }, - [6265]={ + [6481]={ [1]={ [1]={ [1]={ @@ -144098,7 +149150,7 @@ return { [1]="fire_damage_taken_goes_to_life_over_4_seconds_%" } }, - [6266]={ + [6482]={ [1]={ [1]={ limit={ @@ -144114,7 +149166,7 @@ return { [1]="fire_damage_taken_per_second_while_flame_touched" } }, - [6267]={ + [6483]={ [1]={ [1]={ limit={ @@ -144143,7 +149195,7 @@ return { [1]="fire_damage_taken_+%_while_moving" } }, - [6268]={ + [6484]={ [1]={ [1]={ limit={ @@ -144159,7 +149211,7 @@ return { [1]="fire_damage_taken_when_enemy_ignited" } }, - [6269]={ + [6485]={ [1]={ [1]={ limit={ @@ -144175,7 +149227,7 @@ return { [1]="fire_damage_to_return_on_block" } }, - [6270]={ + [6486]={ [1]={ [1]={ limit={ @@ -144204,7 +149256,7 @@ return { [1]="fire_damage_with_attack_skills_+%" } }, - [6271]={ + [6487]={ [1]={ [1]={ limit={ @@ -144233,7 +149285,23 @@ return { [1]="fire_damage_with_spell_skills_+%" } }, - [6272]={ + [6488]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Each Rage also grants {0:+d}% to Fire Damage Over Time Multiplier" + } + }, + stats={ + [1]="fire_dot_multiplier_+_per_rage" + } + }, + [6489]={ [1]={ [1]={ [1]={ @@ -144253,7 +149321,7 @@ return { [1]="fire_exposure_on_hit_magnitude" } }, - [6273]={ + [6490]={ [1]={ [1]={ limit={ @@ -144269,7 +149337,7 @@ return { [1]="fire_exposure_you_inflict_applies_extra_fire_resistance_+%" } }, - [6274]={ + [6491]={ [1]={ [1]={ limit={ @@ -144285,7 +149353,7 @@ return { [1]="fire_hit_and_dot_damage_%_taken_as_lightning" } }, - [6275]={ + [6492]={ [1]={ [1]={ limit={ @@ -144301,7 +149369,7 @@ return { [1]="fire_penetration_%_if_you_have_blocked_recently" } }, - [6276]={ + [6493]={ [1]={ [1]={ limit={ @@ -144330,7 +149398,7 @@ return { [1]="fire_reflect_damage_taken_+%_while_affected_by_purity_of_fire" } }, - [6277]={ + [6494]={ [1]={ [1]={ limit={ @@ -144346,7 +149414,7 @@ return { [1]="fire_resistance_cannot_be_penetrated" } }, - [6278]={ + [6495]={ [1]={ [1]={ [1]={ @@ -144366,7 +149434,7 @@ return { [1]="fire_skill_chance_to_inflict_fire_exposure_%" } }, - [6279]={ + [6496]={ [1]={ [1]={ limit={ @@ -144382,7 +149450,7 @@ return { [1]="fire_skill_gem_level_+" } }, - [6280]={ + [6497]={ [1]={ [1]={ [1]={ @@ -144402,7 +149470,7 @@ return { [1]="fire_skills_chance_to_poison_on_hit_%" } }, - [6281]={ + [6498]={ [1]={ [1]={ limit={ @@ -144418,7 +149486,7 @@ return { [1]="fire_spell_physical_damage_%_to_convert_to_fire" } }, - [6282]={ + [6499]={ [1]={ [1]={ limit={ @@ -144447,7 +149515,7 @@ return { [1]="fire_trap_burning_ground_duration_+%" } }, - [6283]={ + [6500]={ [1]={ [1]={ limit={ @@ -144472,7 +149540,7 @@ return { [1]="fire_trap_number_of_additional_traps_to_throw" } }, - [6284]={ + [6501]={ [1]={ [1]={ limit={ @@ -144501,7 +149569,7 @@ return { [1]="fireball_and_rolling_magma_active_skill_area_of_effect_+%_final" } }, - [6285]={ + [6502]={ [1]={ [1]={ limit={ @@ -144517,7 +149585,7 @@ return { [1]="fireball_and_rolling_magma_modifiers_to_projectile_count_do_not_apply" } }, - [6286]={ + [6503]={ [1]={ [1]={ limit={ @@ -144533,7 +149601,7 @@ return { [1]="fireball_cannot_ignite" } }, - [6287]={ + [6504]={ [1]={ [1]={ [1]={ @@ -144553,7 +149621,7 @@ return { [1]="fireball_chance_to_scorch_%" } }, - [6288]={ + [6505]={ [1]={ [1]={ limit={ @@ -144569,7 +149637,7 @@ return { [1]="firestorm_and_bladefall_chance_to_replay_when_finished_%" } }, - [6289]={ + [6506]={ [1]={ [1]={ limit={ @@ -144594,7 +149662,7 @@ return { [1]="first_X_stacks_of_tincture_toxicity_have_no_effect" } }, - [6290]={ + [6507]={ [1]={ [1]={ limit={ @@ -144610,7 +149678,7 @@ return { [1]="first_and_final_barrage_projectiles_return" } }, - [6291]={ + [6508]={ [1]={ [1]={ limit={ @@ -144626,7 +149694,7 @@ return { [1]="fish_rot_when_caught" } }, - [6292]={ + [6509]={ [1]={ [1]={ limit={ @@ -144642,7 +149710,7 @@ return { [1]="fishing_bestiary_lures_at_fishing_holes" } }, - [6293]={ + [6510]={ [1]={ [1]={ limit={ @@ -144658,7 +149726,7 @@ return { [1]="fishing_can_catch_divine_fish" } }, - [6294]={ + [6511]={ [1]={ [1]={ limit={ @@ -144687,7 +149755,7 @@ return { [1]="fishing_chance_to_catch_boots_+%" } }, - [6295]={ + [6512]={ [1]={ [1]={ limit={ @@ -144716,7 +149784,7 @@ return { [1]="fishing_chance_to_catch_divine_orb_+%" } }, - [6296]={ + [6513]={ [1]={ [1]={ limit={ @@ -144741,7 +149809,7 @@ return { [1]="fishing_corrupted_fish_cleansed_chance_%" } }, - [6297]={ + [6514]={ [1]={ [1]={ limit={ @@ -144757,7 +149825,7 @@ return { [1]="fishing_fish_always_tell_truth_with_this_rod" } }, - [6298]={ + [6515]={ [1]={ [1]={ limit={ @@ -144773,7 +149841,7 @@ return { [1]="fishing_ghastly_fisherman_cannot_spawn" } }, - [6299]={ + [6516]={ [1]={ [1]={ limit={ @@ -144789,7 +149857,7 @@ return { [1]="fishing_ghastly_fisherman_spawns_behind_you" } }, - [6300]={ + [6517]={ [1]={ [1]={ limit={ @@ -144818,7 +149886,7 @@ return { [1]="fishing_krillson_affection_per_fish_gifted_+%" } }, - [6301]={ + [6518]={ [1]={ [1]={ limit={ @@ -144847,7 +149915,7 @@ return { [1]="fishing_life_of_fish_with_this_rod_+%" } }, - [6302]={ + [6519]={ [1]={ [1]={ limit={ @@ -144863,7 +149931,7 @@ return { [1]="fishing_magmatic_fish_are_cooked" } }, - [6303]={ + [6520]={ [1]={ [1]={ limit={ @@ -144892,7 +149960,7 @@ return { [1]="fishing_molten_one_confusion_+%_per_fish_gifted" } }, - [6304]={ + [6521]={ [1]={ [1]={ limit={ @@ -144921,7 +149989,7 @@ return { [1]="fishing_reeling_stability_+%" } }, - [6305]={ + [6522]={ [1]={ [1]={ limit={ @@ -144950,7 +150018,7 @@ return { [1]="fishing_tasalio_ire_per_fish_caught_+%" } }, - [6306]={ + [6523]={ [1]={ [1]={ limit={ @@ -144979,7 +150047,7 @@ return { [1]="fishing_valako_aid_per_stormy_day_+%" } }, - [6307]={ + [6524]={ [1]={ [1]={ limit={ @@ -145008,7 +150076,7 @@ return { [1]="fishing_wish_effect_of_ancient_fish_+%" } }, - [6308]={ + [6525]={ [1]={ [1]={ limit={ @@ -145024,7 +150092,7 @@ return { [1]="fishing_wish_per_fish_+" } }, - [6309]={ + [6526]={ [1]={ [1]={ limit={ @@ -145053,7 +150121,7 @@ return { [1]="flame_link_duration_+%" } }, - [6310]={ + [6527]={ [1]={ [1]={ limit={ @@ -145082,7 +150150,7 @@ return { [1]="flame_totem_consecrated_ground_enemy_damage_taken_+%" } }, - [6311]={ + [6528]={ [1]={ [1]={ limit={ @@ -145111,7 +150179,7 @@ return { [1]="flame_wall_damage_+%" } }, - [6312]={ + [6529]={ [1]={ [1]={ limit={ @@ -145132,7 +150200,7 @@ return { [2]="flame_wall_maximum_added_fire_damage" } }, - [6313]={ + [6530]={ [1]={ [1]={ [1]={ @@ -145165,7 +150233,7 @@ return { [1]="flameblast_and_incinerate_base_cooldown_modifier_ms" } }, - [6314]={ + [6531]={ [1]={ [1]={ [1]={ @@ -145185,7 +150253,7 @@ return { [1]="flameblast_and_incinerate_cannot_inflict_status_ailments" } }, - [6315]={ + [6532]={ [1]={ [1]={ limit={ @@ -145201,7 +150269,7 @@ return { [1]="flameblast_starts_with_X_additional_stages" } }, - [6316]={ + [6533]={ [1]={ [1]={ limit={ @@ -145230,7 +150298,7 @@ return { [1]="flamethrower_seismic_lightning_spire_trap_base_cooldown_speed_+%" } }, - [6317]={ + [6534]={ [1]={ [1]={ limit={ @@ -145273,7 +150341,7 @@ return { [1]="flamethrower_seismic_lightning_spire_trap_skill_added_cooldown_count" } }, - [6318]={ + [6535]={ [1]={ [1]={ limit={ @@ -145302,7 +150370,7 @@ return { [1]="flamethrower_tower_trap_cast_speed_+%" } }, - [6319]={ + [6536]={ [1]={ [1]={ limit={ @@ -145331,7 +150399,7 @@ return { [1]="flamethrower_tower_trap_cooldown_speed_+%" } }, - [6320]={ + [6537]={ [1]={ [1]={ limit={ @@ -145360,7 +150428,7 @@ return { [1]="flamethrower_tower_trap_damage_+%" } }, - [6321]={ + [6538]={ [1]={ [1]={ limit={ @@ -145389,7 +150457,7 @@ return { [1]="flamethrower_tower_trap_duration_+%" } }, - [6322]={ + [6539]={ [1]={ [1]={ limit={ @@ -145414,7 +150482,7 @@ return { [1]="flamethrower_tower_trap_number_of_additional_flamethrowers" } }, - [6323]={ + [6540]={ [1]={ [1]={ limit={ @@ -145443,7 +150511,7 @@ return { [1]="flamethrower_tower_trap_throwing_speed_+%" } }, - [6324]={ + [6541]={ [1]={ [1]={ limit={ @@ -145472,7 +150540,7 @@ return { [1]="flamethrower_trap_damage_+%_final_vs_burning_enemies" } }, - [6325]={ + [6542]={ [1]={ [1]={ limit={ @@ -145488,7 +150556,7 @@ return { [1]="flammability_no_reservation" } }, - [6326]={ + [6543]={ [1]={ [1]={ [1]={ @@ -145525,7 +150593,7 @@ return { [1]="flask_charges_gained_+%_if_crit_recently" } }, - [6327]={ + [6544]={ [1]={ [1]={ limit={ @@ -145554,7 +150622,7 @@ return { [1]="flask_charges_gained_from_kills_+%_final_from_unique" } }, - [6328]={ + [6545]={ [1]={ [1]={ limit={ @@ -145583,7 +150651,7 @@ return { [1]="flask_charges_gained_from_marked_enemy_+%" } }, - [6329]={ + [6546]={ [1]={ [1]={ limit={ @@ -145612,7 +150680,7 @@ return { [1]="flask_charges_gained_+%_per_tincture_toxicity" } }, - [6330]={ + [6547]={ [1]={ [1]={ limit={ @@ -145641,7 +150709,7 @@ return { [1]="flask_duration_+%_per_level" } }, - [6331]={ + [6548]={ [1]={ [1]={ limit={ @@ -145670,7 +150738,7 @@ return { [1]="flask_effect_+%_per_level" } }, - [6332]={ + [6549]={ [1]={ [1]={ limit={ @@ -145699,7 +150767,7 @@ return { [1]="flask_life_and_mana_to_recover_+%" } }, - [6333]={ + [6550]={ [1]={ [1]={ limit={ @@ -145728,7 +150796,7 @@ return { [1]="flask_life_recovery_+%_while_affected_by_vitality" } }, - [6334]={ + [6551]={ [1]={ [1]={ limit={ @@ -145744,7 +150812,7 @@ return { [1]="flask_recovery_is_instant" } }, - [6335]={ + [6552]={ [1]={ [1]={ limit={ @@ -145760,7 +150828,7 @@ return { [1]="flask_throw_sulphur_flask_explode_on_kill_chance" } }, - [6336]={ + [6553]={ [1]={ [1]={ limit={ @@ -145785,7 +150853,7 @@ return { [1]="flasks_adjacent_to_active_tinctures_gain_X_charges_on_weapon_hit" } }, - [6337]={ + [6554]={ [1]={ [1]={ [1]={ @@ -145822,7 +150890,7 @@ return { [1]="flasks_adjacent_to_active_tinctures_have_effect_+%_if_hit_with_weapon_recently" } }, - [6338]={ + [6555]={ [1]={ [1]={ limit={ @@ -145838,7 +150906,7 @@ return { [1]="flasks_apply_to_your_linked_targets" } }, - [6339]={ + [6556]={ [1]={ [1]={ limit={ @@ -145854,7 +150922,7 @@ return { [1]="flasks_gain_x_charges_on_hit_once_per_second_vs_non_unique" } }, - [6340]={ + [6557]={ [1]={ [1]={ limit={ @@ -145870,7 +150938,7 @@ return { [1]="flasks_gain_x_charges_while_inactive_every_3_seconds" } }, - [6341]={ + [6558]={ [1]={ [1]={ limit={ @@ -145899,7 +150967,7 @@ return { [1]="flesh_and_stone_area_of_effect_+%" } }, - [6342]={ + [6559]={ [1]={ [1]={ [1]={ @@ -145932,7 +151000,7 @@ return { [1]="flesh_stone_mana_reservation_efficiency_-2%_per_1" } }, - [6343]={ + [6560]={ [1]={ [1]={ limit={ @@ -145961,7 +151029,7 @@ return { [1]="flesh_stone_mana_reservation_efficiency_+%" } }, - [6344]={ + [6561]={ [1]={ [1]={ limit={ @@ -145977,7 +151045,7 @@ return { [1]="flesh_stone_no_reservation" } }, - [6345]={ + [6562]={ [1]={ [1]={ limit={ @@ -145993,7 +151061,7 @@ return { [1]="focus_cooldown_modifier_ms" } }, - [6346]={ + [6563]={ [1]={ [1]={ limit={ @@ -146022,7 +151090,7 @@ return { [1]="focus_cooldown_speed_+%" } }, - [6347]={ + [6564]={ [1]={ [1]={ limit={ @@ -146038,7 +151106,7 @@ return { [1]="forbidden_rite_and_dark_pact_added_chaos_damage_%_mana_cost_if_payable" } }, - [6348]={ + [6565]={ [1]={ [1]={ limit={ @@ -146067,7 +151135,7 @@ return { [1]="forbidden_rite_damage_+%" } }, - [6349]={ + [6566]={ [1]={ [1]={ limit={ @@ -146092,7 +151160,7 @@ return { [1]="forbidden_rite_number_of_additional_projectiles" } }, - [6350]={ + [6567]={ [1]={ [1]={ limit={ @@ -146121,7 +151189,7 @@ return { [1]="forbidden_rite_projectile_speed_+%" } }, - [6351]={ + [6568]={ [1]={ [1]={ limit={ @@ -146150,7 +151218,7 @@ return { [1]="forking_angle_+%" } }, - [6352]={ + [6569]={ [1]={ [1]={ [1]={ @@ -146187,7 +151255,7 @@ return { [1]="fortification_gained_from_hits_+%" } }, - [6353]={ + [6570]={ [1]={ [1]={ [1]={ @@ -146224,7 +151292,7 @@ return { [1]="fortification_gained_from_hits_+%_against_unique_enemies" } }, - [6354]={ + [6571]={ [1]={ [1]={ limit={ @@ -146253,7 +151321,7 @@ return { [1]="fortify_duration_+%_per_10_strength" } }, - [6355]={ + [6572]={ [1]={ [1]={ limit={ @@ -146269,7 +151337,23 @@ return { [1]="fortify_on_hit" } }, - [6356]={ + [6573]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Four seconds after each Hit you take, lose Life equal to {0}% of the Damage taken from that Hit" + } + }, + stats={ + [1]="four_seconds_after_being_hit_lose_life_equal_to_x%_of_hit" + } + }, + [6574]={ [1]={ [1]={ limit={ @@ -146298,7 +151382,7 @@ return { [1]="freeze_chilled_enemies_as_though_dealt_damage_+%" } }, - [6357]={ + [6575]={ [1]={ [1]={ limit={ @@ -146327,7 +151411,7 @@ return { [1]="freeze_duration_against_cursed_enemies_+%" } }, - [6358]={ + [6576]={ [1]={ [1]={ [1]={ @@ -146364,7 +151448,7 @@ return { [1]="freeze_minimum_duration_X_ms" } }, - [6359]={ + [6577]={ [1]={ [1]={ [1]={ @@ -146384,7 +151468,7 @@ return { [1]="freezing_pulse_and_eye_of_winter_all_damage_can_poison" } }, - [6360]={ + [6578]={ [1]={ [1]={ [1]={ @@ -146404,7 +151488,7 @@ return { [1]="freezing_pulse_and_eye_of_winter_poison_damage_+100%_final_chance" } }, - [6361]={ + [6579]={ [1]={ [1]={ [1]={ @@ -146441,7 +151525,7 @@ return { [1]="freezing_pulse_damage_+%_if_enemy_shattered_recently" } }, - [6362]={ + [6580]={ [1]={ [1]={ limit={ @@ -146466,7 +151550,7 @@ return { [1]="freezing_pulse_number_of_additional_projectiles" } }, - [6363]={ + [6581]={ [1]={ [1]={ [1]={ @@ -146486,7 +151570,7 @@ return { [1]="frenzy_and_power_charge_add_duration_ms_on_cull" } }, - [6364]={ + [6582]={ [1]={ [1]={ limit={ @@ -146502,7 +151586,7 @@ return { [1]="frenzy_charge_on_hit_%_vs_no_evasion_rating" } }, - [6365]={ + [6583]={ [1]={ [1]={ limit={ @@ -146518,7 +151602,7 @@ return { [1]="frenzy_charge_on_kill_percent_chance_while_holding_shield" } }, - [6366]={ + [6584]={ [1]={ [1]={ limit={ @@ -146534,7 +151618,7 @@ return { [1]="frost_blades_melee_damage_penetrates_%_cold_resistance" } }, - [6367]={ + [6585]={ [1]={ [1]={ limit={ @@ -146563,7 +151647,7 @@ return { [1]="frost_bolt_nova_cooldown_speed_+%" } }, - [6368]={ + [6586]={ [1]={ [1]={ limit={ @@ -146592,7 +151676,7 @@ return { [1]="frost_bomb_buff_duration_+%" } }, - [6369]={ + [6587]={ [1]={ [1]={ limit={ @@ -146608,7 +151692,7 @@ return { [1]="frost_bomb_+%_area_of_effect_when_frost_blink_is_cast" } }, - [6370]={ + [6588]={ [1]={ [1]={ limit={ @@ -146624,7 +151708,7 @@ return { [1]="frost_fury_additional_max_number_of_stages" } }, - [6371]={ + [6589]={ [1]={ [1]={ limit={ @@ -146653,7 +151737,7 @@ return { [1]="frost_fury_area_of_effect_+%_per_stage" } }, - [6372]={ + [6590]={ [1]={ [1]={ limit={ @@ -146682,7 +151766,7 @@ return { [1]="frost_fury_damage_+%" } }, - [6373]={ + [6591]={ [1]={ [1]={ limit={ @@ -146707,7 +151791,7 @@ return { [1]="frost_globe_added_cooldown_count" } }, - [6374]={ + [6592]={ [1]={ [1]={ limit={ @@ -146723,7 +151807,7 @@ return { [1]="frost_globe_health_per_stage" } }, - [6375]={ + [6593]={ [1]={ [1]={ limit={ @@ -146739,7 +151823,7 @@ return { [1]="frostbite_no_reservation" } }, - [6376]={ + [6594]={ [1]={ [1]={ limit={ @@ -146755,7 +151839,7 @@ return { [1]="frostbolt_number_of_additional_projectiles" } }, - [6377]={ + [6595]={ [1]={ [1]={ limit={ @@ -146784,7 +151868,7 @@ return { [1]="frostbolt_projectile_acceleration" } }, - [6378]={ + [6596]={ [1]={ [1]={ limit={ @@ -146809,7 +151893,7 @@ return { [1]="frozen_legion_added_cooldown_count" } }, - [6379]={ + [6597]={ [1]={ [1]={ limit={ @@ -146838,7 +151922,7 @@ return { [1]="frozen_legion_and_generals_cry_active_skill_cooldown_speed_+%_final_from_skill_specific_stat" } }, - [6380]={ + [6598]={ [1]={ [1]={ limit={ @@ -146867,7 +151951,7 @@ return { [1]="frozen_legion_cooldown_speed_+%" } }, - [6381]={ + [6599]={ [1]={ [1]={ limit={ @@ -146883,7 +151967,23 @@ return { [1]="frozen_legion_%_chance_to_summon_additional_statue" } }, - [6382]={ + [6600]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Enemies Frozen by you take {0}% increased Damage" + } + }, + stats={ + [1]="frozen_monsters_take_%_increased_damage" + } + }, + [6601]={ [1]={ [1]={ limit={ @@ -146912,7 +152012,7 @@ return { [1]="frozen_sweep_damage_+%" } }, - [6383]={ + [6602]={ [1]={ [1]={ limit={ @@ -146941,7 +152041,7 @@ return { [1]="frozen_sweep_damage_+%_final" } }, - [6384]={ + [6603]={ [1]={ [1]={ limit={ @@ -146957,7 +152057,7 @@ return { [1]="full_life_threshold_%_override" } }, - [6385]={ + [6604]={ [1]={ [1]={ [1]={ @@ -146977,7 +152077,7 @@ return { [1]="fungal_ground_while_stationary_radius" } }, - [6386]={ + [6605]={ [1]={ [1]={ limit={ @@ -146993,7 +152093,7 @@ return { [1]="gain_1_rare_monster_mod_on_kill_for_10_seconds_%_chance" } }, - [6387]={ + [6606]={ [1]={ [1]={ limit={ @@ -147018,7 +152118,7 @@ return { [1]="gain_1_rare_monster_mods_on_kill_for_20_seconds_%" } }, - [6388]={ + [6607]={ [1]={ [1]={ limit={ @@ -147034,7 +152134,7 @@ return { [1]="gain_X%_armour_per_50_mana_reserved" } }, - [6389]={ + [6608]={ [1]={ [1]={ limit={ @@ -147081,7 +152181,7 @@ return { [1]="gain_X_endurance_charges_per_second" } }, - [6390]={ + [6609]={ [1]={ [1]={ [1]={ @@ -147101,7 +152201,7 @@ return { [1]="gain_X_fortification_on_killing_rare_or_unique_monster" } }, - [6391]={ + [6610]={ [1]={ [1]={ limit={ @@ -147126,7 +152226,7 @@ return { [1]="gain_X_frenzy_charges_after_spending_200_mana" } }, - [6392]={ + [6611]={ [1]={ [1]={ limit={ @@ -147173,7 +152273,7 @@ return { [1]="gain_X_frenzy_charges_per_second" } }, - [6393]={ + [6612]={ [1]={ [1]={ limit={ @@ -147189,7 +152289,7 @@ return { [1]="gain_X_life_on_stun" } }, - [6394]={ + [6613]={ [1]={ [1]={ limit={ @@ -147205,7 +152305,7 @@ return { [1]="gain_X_power_charges_on_using_a_warcry" } }, - [6395]={ + [6614]={ [1]={ [1]={ limit={ @@ -147252,7 +152352,7 @@ return { [1]="gain_X_power_charges_per_second" } }, - [6396]={ + [6615]={ [1]={ [1]={ limit={ @@ -147277,7 +152377,32 @@ return { [1]="gain_X_random_charges_every_6_seconds" } }, - [6397]={ + [6616]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Gain an Endurance Charge each second while Stationary" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Gain an Endurance Charge every {0} seconds while Stationary" + } + }, + stats={ + [1]="gain_a_endurance_charge_every_X_seconds_while_stationary" + } + }, + [6617]={ [1]={ [1]={ limit={ @@ -147302,7 +152427,7 @@ return { [1]="gain_a_frenzy_charge_every_X_seconds_while_moving" } }, - [6398]={ + [6618]={ [1]={ [1]={ [1]={ @@ -147326,7 +152451,7 @@ return { [1]="gain_absorption_charges_instead_of_power_charges" } }, - [6399]={ + [6619]={ [1]={ [1]={ limit={ @@ -147342,7 +152467,7 @@ return { [1]="gain_accuracy_rating_equal_to_2_times_strength" } }, - [6400]={ + [6620]={ [1]={ [1]={ limit={ @@ -147358,7 +152483,7 @@ return { [1]="gain_accuracy_rating_equal_to_intelligence" } }, - [6401]={ + [6621]={ [1]={ [1]={ limit={ @@ -147374,7 +152499,7 @@ return { [1]="gain_accuracy_rating_equal_to_strength" } }, - [6402]={ + [6622]={ [1]={ [1]={ [1]={ @@ -147415,7 +152540,7 @@ return { [1]="gain_adrenaline_for_X_ms_on_swapping_stance" } }, - [6403]={ + [6623]={ [1]={ [1]={ [1]={ @@ -147448,7 +152573,7 @@ return { [1]="gain_adrenaline_for_X_seconds_on_kill" } }, - [6404]={ + [6624]={ [1]={ [1]={ [1]={ @@ -147468,7 +152593,7 @@ return { [1]="gain_adrenaline_for_X_seconds_on_low_life_unless_you_have_adrenaline" } }, - [6405]={ + [6625]={ [1]={ [1]={ [1]={ @@ -147492,7 +152617,7 @@ return { [1]="gain_adrenaline_for_x_ms_per_100_ms_stun_duration_on_you" } }, - [6406]={ + [6626]={ [1]={ [1]={ [1]={ @@ -147512,7 +152637,7 @@ return { [1]="gain_adrenaline_on_gaining_flame_touched" } }, - [6407]={ + [6627]={ [1]={ [1]={ [1]={ @@ -147553,7 +152678,7 @@ return { [1]="gain_adrenaline_when_ward_breaks_ms" } }, - [6408]={ + [6628]={ [1]={ [1]={ [1]={ @@ -147573,7 +152698,7 @@ return { [1]="gain_affliction_charges_instead_of_frenzy_charges" } }, - [6409]={ + [6629]={ [1]={ [1]={ [1]={ @@ -147606,7 +152731,7 @@ return { [1]="gain_alchemists_genius_on_flask_use_%" } }, - [6410]={ + [6630]={ [1]={ [1]={ [1]={ @@ -147626,7 +152751,7 @@ return { [1]="gain_an_additional_vaal_soul_on_kill_if_have_rampaged_recently" } }, - [6411]={ + [6631]={ [1]={ [1]={ [1]={ @@ -147646,7 +152771,7 @@ return { [1]="gain_arcane_surge_for_4_seconds_after_channelling_for_1_second" } }, - [6412]={ + [6632]={ [1]={ [1]={ [1]={ @@ -147666,7 +152791,7 @@ return { [1]="gain_arcane_surge_for_4_seconds_when_you_create_consecrated_ground_while_affected_by_zealotry" } }, - [6413]={ + [6633]={ [1]={ [1]={ [1]={ @@ -147686,7 +152811,7 @@ return { [1]="gain_arcane_surge_on_200_life_spent" } }, - [6414]={ + [6634]={ [1]={ [1]={ [1]={ @@ -147719,7 +152844,7 @@ return { [1]="gain_arcane_surge_on_crit_%_chance" } }, - [6415]={ + [6635]={ [1]={ [1]={ [1]={ @@ -147739,7 +152864,7 @@ return { [1]="gain_arcane_surge_on_hit_at_devotion_threshold" } }, - [6416]={ + [6636]={ [1]={ [1]={ [1]={ @@ -147772,7 +152897,7 @@ return { [1]="gain_arcane_surge_on_hit_chance_with_spells_while_at_maximum_power_charges_%" } }, - [6417]={ + [6637]={ [1]={ [1]={ [1]={ @@ -147805,7 +152930,7 @@ return { [1]="gain_arcane_surge_on_hit_%_chance" } }, - [6418]={ + [6638]={ [1]={ [1]={ [1]={ @@ -147825,7 +152950,7 @@ return { [1]="gain_arcane_surge_on_hit_vs_unique_enemy_%_chance" } }, - [6419]={ + [6639]={ [1]={ [1]={ [1]={ @@ -147858,7 +152983,7 @@ return { [1]="gain_arcane_surge_on_kill_chance_%" } }, - [6420]={ + [6640]={ [1]={ [1]={ [1]={ @@ -147878,7 +153003,7 @@ return { [1]="gain_arcane_surge_on_spell_hit_by_you_or_your_totems" } }, - [6421]={ + [6641]={ [1]={ [1]={ [1]={ @@ -147898,7 +153023,7 @@ return { [1]="gain_arcane_surge_when_mine_detonated_targeting_an_enemy" } }, - [6422]={ + [6642]={ [1]={ [1]={ [1]={ @@ -147918,7 +153043,7 @@ return { [1]="gain_arcane_surge_when_trap_triggered_by_an_enemy" } }, - [6423]={ + [6643]={ [1]={ [1]={ [1]={ @@ -147938,7 +153063,7 @@ return { [1]="gain_arcane_surge_when_you_summon_a_totem" } }, - [6424]={ + [6644]={ [1]={ [1]={ limit={ @@ -147954,7 +153079,7 @@ return { [1]="gain_area_of_effect_+%_for_2_seconds_when_you_spend_800_mana" } }, - [6425]={ + [6645]={ [1]={ [1]={ limit={ @@ -147970,7 +153095,7 @@ return { [1]="gain_attack_speed_+%_for_20_seconds_on_killing_rare_or_unique_enemy" } }, - [6426]={ + [6646]={ [1]={ [1]={ [1]={ @@ -148003,7 +153128,7 @@ return { [1]="gain_blitz_charge_%_chance_on_crit" } }, - [6427]={ + [6647]={ [1]={ [1]={ [1]={ @@ -148023,7 +153148,7 @@ return { [1]="gain_brutal_charges_instead_of_endurance_charges" } }, - [6428]={ + [6648]={ [1]={ [1]={ limit={ @@ -148039,7 +153164,7 @@ return { [1]="gain_celestial_charge_per_X_spent_es" } }, - [6429]={ + [6649]={ [1]={ [1]={ [1]={ @@ -148072,7 +153197,7 @@ return { [1]="gain_challenger_charge_%_chance_on_hitting_rare_or_unique_enemy_in_blood_stance" } }, - [6430]={ + [6650]={ [1]={ [1]={ limit={ @@ -148097,7 +153222,7 @@ return { [1]="gain_challenger_charge_%_chance_on_kill_in_sand_stance" } }, - [6431]={ + [6651]={ [1]={ [1]={ [1]={ @@ -148138,7 +153263,7 @@ return { [1]="gain_20%_chance_to_explode_enemies_for_100%_life_on_kill_for_X_seconds_every_10_seconds" } }, - [6432]={ + [6652]={ [1]={ [1]={ [1]={ @@ -148158,7 +153283,7 @@ return { [1]="gain_critical_strike_chance_%_for_2_seconds_when_you_spend_800_mana" } }, - [6433]={ + [6653]={ [1]={ [1]={ [1]={ @@ -148178,7 +153303,7 @@ return { [1]="gain_elusive_on_reaching_low_life" } }, - [6434]={ + [6654]={ [1]={ [1]={ limit={ @@ -148194,7 +153319,7 @@ return { [1]="gain_endurance_charge_if_attack_freezes" } }, - [6435]={ + [6655]={ [1]={ [1]={ [1]={ @@ -148227,7 +153352,7 @@ return { [1]="gain_endurance_charge_per_second_if_have_been_hit_recently" } }, - [6436]={ + [6656]={ [1]={ [1]={ [1]={ @@ -148260,7 +153385,7 @@ return { [1]="gain_endurance_charge_per_second_if_have_used_warcry_recently" } }, - [6437]={ + [6657]={ [1]={ [1]={ limit={ @@ -148285,7 +153410,7 @@ return { [1]="gain_endurance_charge_%_chance_when_you_lose_fortify" } }, - [6438]={ + [6658]={ [1]={ [1]={ limit={ @@ -148301,7 +153426,7 @@ return { [1]="gain_endurance_charge_%_when_hit_while_channelling" } }, - [6439]={ + [6659]={ [1]={ [1]={ [1]={ @@ -148321,7 +153446,7 @@ return { [1]="gain_fanaticism_for_4_seconds_on_reaching_maximum_fanatic_charges" } }, - [6440]={ + [6660]={ [1]={ [1]={ limit={ @@ -148346,7 +153471,7 @@ return { [1]="gain_flask_charge_on_crit_chance_%_while_at_maximum_frenzy_charges" } }, - [6441]={ + [6661]={ [1]={ [1]={ [1]={ @@ -148379,7 +153504,7 @@ return { [1]="gain_flask_charges_every_second_if_hit_unique_enemy_recently" } }, - [6442]={ + [6662]={ [1]={ [1]={ [1]={ @@ -148399,7 +153524,7 @@ return { [1]="gain_fortify_for_x_seconds_on_melee_hit_with_mace_sceptre_staff" } }, - [6443]={ + [6663]={ [1]={ [1]={ [1]={ @@ -148419,7 +153544,7 @@ return { [1]="gain_frenzy_charge_on_critical_strike_at_close_range_%" } }, - [6444]={ + [6664]={ [1]={ [1]={ limit={ @@ -148444,7 +153569,7 @@ return { [1]="gain_frenzy_charge_on_critical_strike_%" } }, - [6445]={ + [6665]={ [1]={ [1]={ limit={ @@ -148460,7 +153585,7 @@ return { [1]="gain_frenzy_charge_on_enemy_shattered_chance_%" } }, - [6446]={ + [6666]={ [1]={ [1]={ limit={ @@ -148476,7 +153601,7 @@ return { [1]="gain_frenzy_charge_on_hit_%_while_blinded" } }, - [6447]={ + [6667]={ [1]={ [1]={ limit={ @@ -148492,7 +153617,7 @@ return { [1]="gain_frenzy_charge_on_hit_while_bleeding" } }, - [6448]={ + [6668]={ [1]={ [1]={ limit={ @@ -148508,7 +153633,7 @@ return { [1]="gain_frenzy_charge_on_hitting_marked_enemy_%" } }, - [6449]={ + [6669]={ [1]={ [1]={ limit={ @@ -148524,7 +153649,7 @@ return { [1]="gain_frenzy_charge_on_hitting_rare_or_unique_enemy_%" } }, - [6450]={ + [6670]={ [1]={ [1]={ limit={ @@ -148549,7 +153674,7 @@ return { [1]="gain_frenzy_charge_on_hitting_unique_enemy_%" } }, - [6451]={ + [6671]={ [1]={ [1]={ limit={ @@ -148565,7 +153690,7 @@ return { [1]="gain_frenzy_charge_on_kill_vs_enemies_with_5+_poisons_%" } }, - [6452]={ + [6672]={ [1]={ [1]={ limit={ @@ -148590,7 +153715,7 @@ return { [1]="gain_frenzy_charge_per_enemy_you_crit_%_chance" } }, - [6453]={ + [6673]={ [1]={ [1]={ limit={ @@ -148606,7 +153731,7 @@ return { [1]="gain_frenzy_charge_%_when_hit_while_channelling" } }, - [6454]={ + [6674]={ [1]={ [1]={ limit={ @@ -148622,7 +153747,7 @@ return { [1]="gain_frenzy_power_endurance_charges_on_vaal_skill_use" } }, - [6455]={ + [6675]={ [1]={ [1]={ [1]={ @@ -148646,7 +153771,7 @@ return { [1]="gain_her_embrace_for_x_ms_on_enemy_ignited" } }, - [6456]={ + [6676]={ [1]={ [1]={ limit={ @@ -148671,7 +153796,7 @@ return { [1]="gain_magic_monster_mods_on_kill_%_chance" } }, - [6457]={ + [6677]={ [1]={ [1]={ limit={ @@ -148687,7 +153812,7 @@ return { [1]="gain_max_rage_on_losing_temporal_chains_debuff" } }, - [6458]={ + [6678]={ [1]={ [1]={ [1]={ @@ -148707,7 +153832,7 @@ return { [1]="gain_max_rage_on_rage_gain_from_hit_%_chance" } }, - [6459]={ + [6679]={ [1]={ [1]={ limit={ @@ -148732,7 +153857,7 @@ return { [1]="gain_maximum_endurance_charges_when_crit_chance_%" } }, - [6460]={ + [6680]={ [1]={ [1]={ limit={ @@ -148748,7 +153873,7 @@ return { [1]="gain_maximum_frenzy_and_endurance_charges_when_you_gain_cats_agility" } }, - [6461]={ + [6681]={ [1]={ [1]={ limit={ @@ -148764,7 +153889,7 @@ return { [1]="gain_maximum_frenzy_and_power_charges_when_you_gain_cats_stealth" } }, - [6462]={ + [6682]={ [1]={ [1]={ limit={ @@ -148780,7 +153905,7 @@ return { [1]="gain_maximum_frenzy_charges_on_frenzy_charge_gained_%_chance" } }, - [6463]={ + [6683]={ [1]={ [1]={ limit={ @@ -148796,7 +153921,7 @@ return { [1]="gain_maximum_life_instead_of_maximum_es_from_armour" } }, - [6464]={ + [6684]={ [1]={ [1]={ limit={ @@ -148812,7 +153937,7 @@ return { [1]="gain_maximum_power_charges_on_power_charge_gained_%_chance" } }, - [6465]={ + [6685]={ [1]={ [1]={ limit={ @@ -148828,7 +153953,7 @@ return { [1]="gain_maximum_power_charges_on_vaal_skill_use" } }, - [6466]={ + [6686]={ [1]={ [1]={ limit={ @@ -148844,7 +153969,7 @@ return { [1]="gain_movement_speed_+%_for_20_seconds_on_kill" } }, - [6467]={ + [6687]={ [1]={ [1]={ limit={ @@ -148860,7 +153985,7 @@ return { [1]="gain_no_inherent_evasion_rating_+%_from_dexterity" } }, - [6468]={ + [6688]={ [1]={ [1]={ limit={ @@ -148876,7 +154001,7 @@ return { [1]="gain_onslaught_during_life_flask_effect" } }, - [6469]={ + [6689]={ [1]={ [1]={ [1]={ @@ -148896,7 +154021,7 @@ return { [1]="gain_onslaught_during_soul_gain_prevention" } }, - [6470]={ + [6690]={ [1]={ [1]={ [1]={ @@ -148929,7 +154054,7 @@ return { [1]="gain_onslaught_for_3_seconds_%_chance_when_hit" } }, - [6471]={ + [6691]={ [1]={ [1]={ [1]={ @@ -148953,7 +154078,7 @@ return { [1]="gain_onslaught_if_you_have_swapped_stance_recently" } }, - [6472]={ + [6692]={ [1]={ [1]={ [1]={ @@ -148977,7 +154102,7 @@ return { [1]="gain_onslaught_ms_on_using_a_warcry" } }, - [6473]={ + [6693]={ [1]={ [1]={ [1]={ @@ -148997,7 +154122,7 @@ return { [1]="gain_onslaught_on_200_mana_spent" } }, - [6474]={ + [6694]={ [1]={ [1]={ [1]={ @@ -149030,7 +154155,7 @@ return { [1]="gain_onslaught_on_hit_chance_while_at_maximum_frenzy_charges_%" } }, - [6475]={ + [6695]={ [1]={ [1]={ [1]={ @@ -149054,7 +154179,7 @@ return { [1]="gain_onslaught_on_hit_duration_ms" } }, - [6476]={ + [6696]={ [1]={ [1]={ [1]={ @@ -149078,7 +154203,7 @@ return { [1]="gain_onslaught_on_kill_ms_while_affected_by_haste" } }, - [6477]={ + [6697]={ [1]={ [1]={ [1]={ @@ -149098,7 +154223,7 @@ return { [1]="gain_onslaught_while_at_maximum_endurance_charges" } }, - [6478]={ + [6698]={ [1]={ [1]={ [1]={ @@ -149118,7 +154243,7 @@ return { [1]="gain_onslaught_while_not_on_low_mana" } }, - [6479]={ + [6699]={ [1]={ [1]={ [1]={ @@ -149138,7 +154263,7 @@ return { [1]="gain_onslaught_while_on_low_life" } }, - [6480]={ + [6700]={ [1]={ [1]={ limit={ @@ -149154,7 +154279,7 @@ return { [1]="gain_onslaught_while_you_have_cats_agility" } }, - [6481]={ + [6701]={ [1]={ [1]={ [1]={ @@ -149174,7 +154299,7 @@ return { [1]="gain_onslaught_while_you_have_fortify" } }, - [6482]={ + [6702]={ [1]={ [1]={ limit={ @@ -149190,7 +154315,7 @@ return { [1]="gain_%_of_phys_as_extra_chaos_per_elder_item_equipped" } }, - [6483]={ + [6703]={ [1]={ [1]={ [1]={ @@ -149210,7 +154335,7 @@ return { [1]="gain_%_total_phys_damage_prevented_in_the_past_10_sec_as_life_regen_per_sec" } }, - [6484]={ + [6704]={ [1]={ [1]={ [1]={ @@ -149234,7 +154359,7 @@ return { [1]="gain_perfect_agony_if_you_have_crit_recently" } }, - [6485]={ + [6705]={ [1]={ [1]={ [1]={ @@ -149258,7 +154383,7 @@ return { [1]="gain_phasing_if_enemy_killed_recently" } }, - [6486]={ + [6706]={ [1]={ [1]={ [1]={ @@ -149278,7 +154403,7 @@ return { [1]="gain_phasing_if_suppressed_spell_recently" } }, - [6487]={ + [6707]={ [1]={ [1]={ [1]={ @@ -149298,7 +154423,7 @@ return { [1]="gain_phasing_while_affected_by_haste" } }, - [6488]={ + [6708]={ [1]={ [1]={ limit={ @@ -149314,7 +154439,7 @@ return { [1]="gain_phasing_while_you_have_cats_stealth" } }, - [6489]={ + [6709]={ [1]={ [1]={ [1]={ @@ -149334,7 +154459,7 @@ return { [1]="gain_phasing_while_you_have_low_life" } }, - [6490]={ + [6710]={ [1]={ [1]={ limit={ @@ -149350,7 +154475,7 @@ return { [1]="gain_+%_physical_damage_as_random_element_if_cast_elemental_weakness_in_past_10_seconds" } }, - [6491]={ + [6711]={ [1]={ [1]={ limit={ @@ -149366,7 +154491,7 @@ return { [1]="gain_power_charge_for_each_second_channeling_spell" } }, - [6492]={ + [6712]={ [1]={ [1]={ limit={ @@ -149382,7 +154507,7 @@ return { [1]="gain_power_charge_on_critical_strike_with_wands_%" } }, - [6493]={ + [6713]={ [1]={ [1]={ limit={ @@ -149398,7 +154523,7 @@ return { [1]="gain_power_charge_on_curse_cast_%" } }, - [6494]={ + [6714]={ [1]={ [1]={ limit={ @@ -149423,7 +154548,23 @@ return { [1]="gain_power_charge_on_hit_%_chance_against_frozen_enemy" } }, - [6495]={ + [6715]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Gain a Power Charge on Hit while Bleeding" + } + }, + stats={ + [1]="gain_power_charge_on_hit_while_bleeding" + } + }, + [6716]={ [1]={ [1]={ limit={ @@ -149439,7 +154580,7 @@ return { [1]="gain_power_charge_on_kill_vs_enemies_with_less_than_5_poisons_%" } }, - [6496]={ + [6717]={ [1]={ [1]={ limit={ @@ -149455,7 +154596,7 @@ return { [1]="gain_power_charge_on_mana_flask_use_%_chance" } }, - [6497]={ + [6718]={ [1]={ [1]={ limit={ @@ -149480,7 +154621,7 @@ return { [1]="gain_power_charge_on_vaal_skill_use_%" } }, - [6498]={ + [6719]={ [1]={ [1]={ limit={ @@ -149496,7 +154637,7 @@ return { [1]="gain_power_charge_per_second_if_have_not_lost_power_charge_recently" } }, - [6499]={ + [6720]={ [1]={ [1]={ limit={ @@ -149512,7 +154653,7 @@ return { [1]="gain_power_or_frenzy_charge_for_each_second_channeling" } }, - [6500]={ + [6721]={ [1]={ [1]={ limit={ @@ -149528,7 +154669,7 @@ return { [1]="gain_random_charge_on_block" } }, - [6501]={ + [6722]={ [1]={ [1]={ limit={ @@ -149544,7 +154685,7 @@ return { [1]="gain_random_charge_per_second_while_stationary" } }, - [6502]={ + [6723]={ [1]={ [1]={ limit={ @@ -149560,7 +154701,7 @@ return { [1]="gain_random_retaliation_requirement_on_retaliation_used_chance_%" } }, - [6503]={ + [6724]={ [1]={ [1]={ [1]={ @@ -149584,7 +154725,7 @@ return { [1]="gain_sacrificial_zeal_on_skill_use_%_cost_as_damage_per_minute" } }, - [6504]={ + [6725]={ [1]={ [1]={ limit={ @@ -149600,7 +154741,7 @@ return { [1]="gain_scorching_sapping_brittle_confluxes_while_two_highest_attributes_equal" } }, - [6505]={ + [6726]={ [1]={ [1]={ [1]={ @@ -149624,7 +154765,7 @@ return { [1]="gain_shapers_presence_for_10_seconds_on_killing_rare_or_unique_monster" } }, - [6506]={ + [6727]={ [1]={ [1]={ limit={ @@ -149653,36 +154794,64 @@ return { [1]="gain_shrine_buff_every_x_ms" } }, - [6507]={ + [6728]={ [1]={ [1]={ + [1]={ + k="reminderstring", + v="ReminderTextRandomShrineDuration" + }, limit={ [1]={ [1]=1000, [2]=1000 } }, - text="Gain a random shrine buff every 1 second" + text="Gain a random Shrine buff every 1 second" }, [2]={ [1]={ k="milliseconds_to_seconds", v=1 }, + [2]={ + k="reminderstring", + v="ReminderTextRandomShrineDuration" + }, limit={ [1]={ [1]="#", [2]="#" } }, - text="Gain a random shrine buff every {0} seconds" + text="Gain a random Shrine buff every {0} seconds" } }, stats={ [1]="gain_shrine_buff_every_x_ms_from_ascendancy" } }, - [6508]={ + [6729]={ + [1]={ + [1]={ + [1]={ + k="divide_by_one_hundred", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Gain a random Shrine Buff for {0} seconds when you Kill a Rare or Unique Enemy" + } + }, + stats={ + [1]="gain_shrine_buff_on_rare_or_unique_kill_centiseconds" + } + }, + [6730]={ [1]={ [1]={ limit={ @@ -149716,7 +154885,7 @@ return { [1]="gain_single_conflux_for_3_seconds_every_8_seconds" } }, - [6509]={ + [6731]={ [1]={ [1]={ [1]={ @@ -149740,7 +154909,7 @@ return { [1]="gain_soul_eater_for_x_ms_on_vaal_skill_use" } }, - [6510]={ + [6732]={ [1]={ [1]={ [1]={ @@ -149781,7 +154950,7 @@ return { [1]="gain_soul_eater_stack_on_hit_vs_unique_cooldown_ms" } }, - [6511]={ + [6733]={ [1]={ [1]={ [1]={ @@ -149801,7 +154970,7 @@ return { [1]="gain_spell_cost_as_energy_shield_every_fifth_cast" } }, - [6512]={ + [6734]={ [1]={ [1]={ [1]={ @@ -149821,7 +154990,7 @@ return { [1]="gain_spell_cost_as_mana_every_fifth_cast" } }, - [6513]={ + [6735]={ [1]={ [1]={ limit={ @@ -149837,7 +155006,7 @@ return { [1]="gain_up_to_maximum_fragile_regrowth_when_hit" } }, - [6514]={ + [6736]={ [1]={ [1]={ [1]={ @@ -149861,7 +155030,7 @@ return { [1]="gain_vaal_pact_if_you_have_crit_recently" } }, - [6515]={ + [6737]={ [1]={ [1]={ [1]={ @@ -149881,7 +155050,7 @@ return { [1]="gain_vaal_pact_while_focused" } }, - [6516]={ + [6738]={ [1]={ [1]={ [1]={ @@ -149901,7 +155070,7 @@ return { [1]="gain_vaal_soul_on_hit_cooldown_ms" } }, - [6517]={ + [6739]={ [1]={ [1]={ limit={ @@ -149917,7 +155086,7 @@ return { [1]="gain_wand_accuracy_rating_equal_to_intelligence" } }, - [6518]={ + [6740]={ [1]={ [1]={ limit={ @@ -149968,7 +155137,7 @@ return { [1]="gain_x_fanatic_charges_every_second_if_have_attacked_in_past_second" } }, - [6519]={ + [6741]={ [1]={ [1]={ limit={ @@ -149997,7 +155166,7 @@ return { [1]="gain_x_fragile_regrowth_per_second" } }, - [6520]={ + [6742]={ [1]={ [1]={ [1]={ @@ -150021,7 +155190,7 @@ return { [1]="gain_x_rage_on_attack_crit" } }, - [6521]={ + [6743]={ [1]={ [1]={ [1]={ @@ -150045,7 +155214,7 @@ return { [1]="gain_x_rage_on_attack_hit" } }, - [6522]={ + [6744]={ [1]={ [1]={ [1]={ @@ -150069,7 +155238,7 @@ return { [1]="gain_x_rage_on_bow_hit" } }, - [6523]={ + [6745]={ [1]={ [1]={ [1]={ @@ -150093,7 +155262,7 @@ return { [1]="gain_x_rage_on_hit_with_axes" } }, - [6524]={ + [6746]={ [1]={ [1]={ [1]={ @@ -150117,7 +155286,7 @@ return { [1]="gain_x_rage_on_hit_with_axes_swords" } }, - [6525]={ + [6747]={ [1]={ [1]={ [1]={ @@ -150141,7 +155310,7 @@ return { [1]="gain_x_rage_on_hit_with_axes_swords_1s_cooldown" } }, - [6526]={ + [6748]={ [1]={ [1]={ [1]={ @@ -150165,7 +155334,7 @@ return { [1]="gain_x_rage_on_melee_crit" } }, - [6527]={ + [6749]={ [1]={ [1]={ [1]={ @@ -150189,7 +155358,7 @@ return { [1]="gain_x_rage_on_melee_hit" } }, - [6528]={ + [6750]={ [1]={ [1]={ [1]={ @@ -150209,7 +155378,7 @@ return { [1]="gain_x_rage_per_200_mana_spent" } }, - [6529]={ + [6751]={ [1]={ [1]={ [1]={ @@ -150233,7 +155402,7 @@ return { [1]="gain_x_rage_when_hit" } }, - [6530]={ + [6752]={ [1]={ [1]={ limit={ @@ -150258,7 +155427,7 @@ return { [1]="galvanic_arrow_and_storm_rain_skill_repeat_count_if_mined" } }, - [6531]={ + [6753]={ [1]={ [1]={ limit={ @@ -150287,7 +155456,7 @@ return { [1]="galvanic_arrow_projectile_speed_+%" } }, - [6532]={ + [6754]={ [1]={ [1]={ limit={ @@ -150312,7 +155481,7 @@ return { [1]="galvanic_field_beam_frequency_+%" } }, - [6533]={ + [6755]={ [1]={ [1]={ limit={ @@ -150328,7 +155497,7 @@ return { [1]="galvanic_field_cast_speed_+%" } }, - [6534]={ + [6756]={ [1]={ [1]={ limit={ @@ -150357,7 +155526,7 @@ return { [1]="galvanic_field_damage_+%" } }, - [6535]={ + [6757]={ [1]={ [1]={ limit={ @@ -150382,7 +155551,7 @@ return { [1]="galvanic_field_number_of_chains" } }, - [6536]={ + [6758]={ [1]={ [1]={ limit={ @@ -150398,7 +155567,7 @@ return { [1]="generals_cry_cooldown_speed_+%" } }, - [6537]={ + [6759]={ [1]={ [1]={ limit={ @@ -150414,7 +155583,7 @@ return { [1]="generals_cry_maximum_warriors_+" } }, - [6538]={ + [6760]={ [1]={ [1]={ limit={ @@ -150430,7 +155599,7 @@ return { [1]="ghost_dance_max_stacks" } }, - [6539]={ + [6761]={ [1]={ [1]={ limit={ @@ -150446,7 +155615,36 @@ return { [1]="ghost_dance_restore_%_evasion_as_energy_shield_when_hit" } }, - [6540]={ + [6762]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Skills used by Spectral Totems deal {0}% more Damage" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Skills used by Spectral Totems deal {0}% less Damage" + } + }, + stats={ + [1]="ghost_totem_skill_damage_+%_final" + } + }, + [6763]={ [1]={ [1]={ limit={ @@ -150471,7 +155669,7 @@ return { [1]="glacial_cascade_number_of_additional_bursts" } }, - [6541]={ + [6764]={ [1]={ [1]={ limit={ @@ -150487,7 +155685,7 @@ return { [1]="glacial_cascade_physical_damage_%_to_add_as_cold" } }, - [6542]={ + [6765]={ [1]={ [1]={ limit={ @@ -150503,7 +155701,7 @@ return { [1]="glacial_hammer_melee_splash_with_cold_damage" } }, - [6543]={ + [6766]={ [1]={ [1]={ limit={ @@ -150519,7 +155717,7 @@ return { [1]="glacial_hammer_physical_damage_%_to_convert_to_cold" } }, - [6544]={ + [6767]={ [1]={ [1]={ [1]={ @@ -150556,7 +155754,7 @@ return { [1]="gladiator_critical_strike_chance_+%_final_while_wielding_dagger" } }, - [6545]={ + [6768]={ [1]={ [1]={ limit={ @@ -150585,7 +155783,7 @@ return { [1]="gladiator_damage_vs_rare_unique_enemies_+%_final_per_2_seconds_in_your_presence_up_to_50%" } }, - [6546]={ + [6769]={ [1]={ [1]={ limit={ @@ -150614,7 +155812,7 @@ return { [1]="gladiator_damage_vs_rare_unique_enemies_+%_final_per_second_in_your_presence_up_to_100%" } }, - [6547]={ + [6770]={ [1]={ [1]={ limit={ @@ -150630,7 +155828,7 @@ return { [1]="leech_%_is_instant_while_wielding_claw" } }, - [6548]={ + [6771]={ [1]={ [1]={ [1]={ @@ -150667,7 +155865,7 @@ return { [1]="gladiator_damage_+%_final_against_enemies_on_low_life_while_wielding_axe" } }, - [6549]={ + [6772]={ [1]={ [1]={ limit={ @@ -150700,7 +155898,7 @@ return { [1]="global_attack_speed_+%_per_level" } }, - [6550]={ + [6773]={ [1]={ [1]={ [1]={ @@ -150720,7 +155918,7 @@ return { [1]="global_chance_to_blind_on_hit_%_vs_bleeding_enemies" } }, - [6551]={ + [6774]={ [1]={ [1]={ limit={ @@ -150749,7 +155947,65 @@ return { [1]="global_critical_strike_chance_+%_vs_chilled_enemies" } }, - [6552]={ + [6775]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="[DNT] +{0}% to Global Defenses per Minion" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="[DNT] -{0}% to Global Defenses per Minion" + } + }, + stats={ + [1]="global_defences_+%_per_active_minion" + } + }, + [6776]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Defences per Raised Spectre" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Defences per Raised Spectre" + } + }, + stats={ + [1]="global_defences_+%_per_raised_spectre" + } + }, + [6777]={ [1]={ [1]={ [1]={ @@ -150786,7 +156042,7 @@ return { [1]="global_defences_+%_per_frenzy_charge" } }, - [6553]={ + [6778]={ [1]={ [1]={ limit={ @@ -150802,7 +156058,55 @@ return { [1]="global_evasion_rating_+_while_moving" } }, - [6554]={ + [6779]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Graft Skills have {0}% increased Cooldown Recovery Rate" + } + }, + stats={ + [1]="global_graft_skill_cooldown_speed_+%" + } + }, + [6780]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Graft Skills have {0}% increased Skill Effect Duration" + } + }, + stats={ + [1]="global_graft_skill_duration_+%" + } + }, + [6781]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d} to level of Graft Skills" + } + }, + stats={ + [1]="global_graft_skill_level_+" + } + }, + [6782]={ [1]={ [1]={ limit={ @@ -150818,7 +156122,7 @@ return { [1]="global_maximum_added_lightning_damage_minus_1_per_level" } }, - [6555]={ + [6783]={ [1]={ [1]={ limit={ @@ -150839,7 +156143,7 @@ return { [2]="global_maximum_added_cold_damage_vs_chilled_or_frozen_enemies" } }, - [6556]={ + [6784]={ [1]={ [1]={ limit={ @@ -150860,7 +156164,7 @@ return { [2]="global_maximum_added_fire_damage_vs_ignited_enemies" } }, - [6557]={ + [6785]={ [1]={ [1]={ limit={ @@ -150881,7 +156185,7 @@ return { [2]="global_maximum_added_lightning_damage_vs_ignited_enemies" } }, - [6558]={ + [6786]={ [1]={ [1]={ limit={ @@ -150902,7 +156206,7 @@ return { [2]="global_maximum_added_lightning_damage_vs_shocked_enemies" } }, - [6559]={ + [6787]={ [1]={ [1]={ limit={ @@ -150923,7 +156227,7 @@ return { [2]="global_maximum_added_physical_damage_vs_bleeding_enemies" } }, - [6560]={ + [6788]={ [1]={ [1]={ limit={ @@ -150939,7 +156243,7 @@ return { [1]="global_physical_damage_reduction_rating_while_moving" } }, - [6561]={ + [6789]={ [1]={ [1]={ [1]={ @@ -150963,7 +156267,7 @@ return { [1]="glove_implicit_gain_rage_on_attack_hit_cooldown_ms" } }, - [6562]={ + [6790]={ [1]={ [1]={ limit={ @@ -150992,7 +156296,7 @@ return { [1]="gloves_mod_effect_+%" } }, - [6563]={ + [6791]={ [1]={ [1]={ limit={ @@ -151021,7 +156325,7 @@ return { [1]="golem_attack_and_cast_speed_+%" } }, - [6564]={ + [6792]={ [1]={ [1]={ limit={ @@ -151042,7 +156346,7 @@ return { [2]="golem_attack_maximum_added_physical_damage" } }, - [6565]={ + [6793]={ [1]={ [1]={ limit={ @@ -151071,7 +156375,7 @@ return { [1]="golem_buff_effect_+%" } }, - [6566]={ + [6794]={ [1]={ [1]={ limit={ @@ -151100,7 +156404,7 @@ return { [1]="golem_buff_effect_+%_per_summoned_golem" } }, - [6567]={ + [6795]={ [1]={ [1]={ [1]={ @@ -151120,7 +156424,36 @@ return { [1]="golem_life_regeneration_per_minute_%" } }, - [6568]={ + [6796]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Golems have {0}% increased Maximum Energy Shield" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Golems have {0}% reduced Maximum Energy Shield" + } + }, + stats={ + [1]="golem_maximum_energy_shield_+%" + } + }, + [6797]={ [1]={ [1]={ limit={ @@ -151149,7 +156482,7 @@ return { [1]="golem_maximum_life_+%" } }, - [6569]={ + [6798]={ [1]={ [1]={ limit={ @@ -151178,7 +156511,7 @@ return { [1]="golem_maximum_mana_+%" } }, - [6570]={ + [6799]={ [1]={ [1]={ limit={ @@ -151207,7 +156540,7 @@ return { [1]="golem_movement_speed_+%" } }, - [6571]={ + [6800]={ [1]={ [1]={ limit={ @@ -151223,7 +156556,36 @@ return { [1]="golem_physical_damage_reduction_rating" } }, - [6572]={ + [6801]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Grace has {0}% increased Aura Effect while you have no Frenzy Charges" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Grace has {0}% reduced Aura Effect while you have no Frenzy Charges" + } + }, + stats={ + [1]="grace_aura_effect_+%_while_no_frenzy_charges" + } + }, + [6802]={ [1]={ [1]={ [1]={ @@ -151256,7 +156618,7 @@ return { [1]="grace_mana_reservation_efficiency_-2%_per_1" } }, - [6573]={ + [6803]={ [1]={ [1]={ limit={ @@ -151285,7 +156647,7 @@ return { [1]="grace_mana_reservation_efficiency_+%" } }, - [6574]={ + [6804]={ [1]={ [1]={ limit={ @@ -151301,7 +156663,23 @@ return { [1]="grace_reserves_no_mana" } }, - [6575]={ + [6805]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="You can equip two Grafts" + } + }, + stats={ + [1]="graft_slot_2_unlocked" + } + }, + [6806]={ [1]={ [1]={ limit={ @@ -151330,7 +156708,7 @@ return { [1]="grant_animated_minion_melee_splash_damage_+%_final_for_splash" } }, - [6576]={ + [6807]={ [1]={ [1]={ limit={ @@ -151346,7 +156724,7 @@ return { [1]="grant_map_boss_X_azmeri_dust_primal_on_death" } }, - [6577]={ + [6808]={ [1]={ [1]={ limit={ @@ -151362,7 +156740,7 @@ return { [1]="grant_map_boss_X_azmeri_dust_voodoo_on_death" } }, - [6578]={ + [6809]={ [1]={ [1]={ limit={ @@ -151378,7 +156756,7 @@ return { [1]="grant_map_boss_X_azmeri_dust_warden_on_death" } }, - [6579]={ + [6810]={ [1]={ [1]={ limit={ @@ -151394,7 +156772,7 @@ return { [1]="grant_tailwind_to_nearby_allies_if_used_skill_recently" } }, - [6580]={ + [6811]={ [1]={ [1]={ limit={ @@ -151423,7 +156801,7 @@ return { [1]="grant_void_arrow_every_x_ms" } }, - [6581]={ + [6812]={ [1]={ [1]={ [1]={ @@ -151443,7 +156821,7 @@ return { [1]="grasping_vines_on_hit_while_life_flask_active_up_to_x" } }, - [6582]={ + [6813]={ [1]={ [1]={ limit={ @@ -151472,7 +156850,7 @@ return { [1]="gratuitous_violence_physical_damage_over_time_+%_final" } }, - [6583]={ + [6814]={ [1]={ [1]={ limit={ @@ -151501,7 +156879,7 @@ return { [1]="ground_slam_and_sunder_poison_on_non_poisoned_enemies_damage_+%" } }, - [6584]={ + [6815]={ [1]={ [1]={ limit={ @@ -151526,7 +156904,7 @@ return { [1]="ground_slam_chance_to_gain_endurance_charge_%_on_stun" } }, - [6585]={ + [6816]={ [1]={ [1]={ [1]={ @@ -151546,7 +156924,7 @@ return { [1]="ground_tar_on_block_base_area_of_effect_radius" } }, - [6586]={ + [6817]={ [1]={ [1]={ limit={ @@ -151562,7 +156940,7 @@ return { [1]="ground_tar_when_hit_%_chance" } }, - [6587]={ + [6818]={ [1]={ [1]={ limit={ @@ -151578,7 +156956,7 @@ return { [1]="guard_buff_take_damage_from_linked_target" } }, - [6588]={ + [6819]={ [1]={ [1]={ limit={ @@ -151607,7 +156985,7 @@ return { [1]="guard_skill_cooldown_recovery_+%" } }, - [6589]={ + [6820]={ [1]={ [1]={ limit={ @@ -151636,7 +157014,7 @@ return { [1]="guard_skill_effect_duration_+%" } }, - [6590]={ + [6821]={ [1]={ [1]={ limit={ @@ -151665,7 +157043,7 @@ return { [1]="guardian_damage_+%_final_to_you_and_nearby_allies_per_nearby_ally_up_to_15%" } }, - [6591]={ + [6822]={ [1]={ [1]={ limit={ @@ -151681,7 +157059,7 @@ return { [1]="guardian_every_4_seconds_remove_curses_on_you" } }, - [6592]={ + [6823]={ [1]={ [1]={ [1]={ @@ -151701,7 +157079,7 @@ return { [1]="guardian_every_4_seconds_remove_elemental_ailments_on_you" } }, - [6593]={ + [6824]={ [1]={ [1]={ [1]={ @@ -151721,7 +157099,7 @@ return { [1]="guardian_with_5_nearby_allies_you_and_allies_have_onslaught" } }, - [6594]={ + [6825]={ [1]={ [1]={ limit={ @@ -151750,7 +157128,7 @@ return { [1]="guardian_with_nearby_ally_damage_+%_final_for_you_and_allies" } }, - [6595]={ + [6826]={ [1]={ [1]={ limit={ @@ -151766,7 +157144,7 @@ return { [1]="hard_mode_utility_flask_gain_charges_while_active" } }, - [6596]={ + [6827]={ [1]={ [1]={ limit={ @@ -151782,7 +157160,7 @@ return { [1]="harvest_encounter_fluid_granted_+%" } }, - [6597]={ + [6828]={ [1]={ [1]={ [1]={ @@ -151802,7 +157180,7 @@ return { [1]="has_avoid_shock_as_avoid_all_elemental_ailments" } }, - [6598]={ + [6829]={ [1]={ [1]={ limit={ @@ -151818,7 +157196,7 @@ return { [1]="has_curse_limit_equal_to_maximum_power_charges" } }, - [6599]={ + [6830]={ [1]={ [1]={ [1]={ @@ -151838,7 +157216,7 @@ return { [1]="has_ignite_duration_on_self_as_all_elemental_ailments_on_self" } }, - [6600]={ + [6831]={ [1]={ [1]={ [1]={ @@ -151858,7 +157236,7 @@ return { [1]="has_onslaught_if_totem_summoned_recently" } }, - [6601]={ + [6832]={ [1]={ [1]={ limit={ @@ -151874,7 +157252,7 @@ return { [1]="has_stun_prevention_flask" } }, - [6602]={ + [6833]={ [1]={ [1]={ limit={ @@ -151890,7 +157268,7 @@ return { [1]="has_unique_brutal_shrine_effect" } }, - [6603]={ + [6834]={ [1]={ [1]={ limit={ @@ -151906,7 +157284,7 @@ return { [1]="has_unique_massive_shrine_effect" } }, - [6604]={ + [6835]={ [1]={ [1]={ [1]={ @@ -151939,7 +157317,7 @@ return { [1]="haste_mana_reservation_efficiency_-2%_per_1" } }, - [6605]={ + [6836]={ [1]={ [1]={ limit={ @@ -151968,7 +157346,7 @@ return { [1]="haste_mana_reservation_efficiency_+%" } }, - [6606]={ + [6837]={ [1]={ [1]={ limit={ @@ -151984,7 +157362,36 @@ return { [1]="haste_reserves_no_mana" } }, - [6607]={ + [6838]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Hatred has {0}% increased Aura Effect while at maximum Frenzy Charges" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Hatred has {0}% reduced Aura Effect while at maximum Frenzy Charges" + } + }, + stats={ + [1]="hatred_aura_effect_+%_while_at_maximum_frenzy_charges" + } + }, + [6839]={ [1]={ [1]={ [1]={ @@ -152017,7 +157424,7 @@ return { [1]="hatred_mana_reservation_efficiency_-2%_per_1" } }, - [6608]={ + [6840]={ [1]={ [1]={ limit={ @@ -152046,7 +157453,7 @@ return { [1]="hatred_mana_reservation_efficiency_+%" } }, - [6609]={ + [6841]={ [1]={ [1]={ limit={ @@ -152062,7 +157469,7 @@ return { [1]="hatred_reserves_no_mana" } }, - [6610]={ + [6842]={ [1]={ [1]={ limit={ @@ -152078,7 +157485,7 @@ return { [1]="heist_additional_abyss_rewards_from_reward_chests_%" } }, - [6611]={ + [6843]={ [1]={ [1]={ limit={ @@ -152094,7 +157501,7 @@ return { [1]="heist_additional_armour_rewards_from_reward_chests_%" } }, - [6612]={ + [6844]={ [1]={ [1]={ limit={ @@ -152110,7 +157517,7 @@ return { [1]="heist_additional_blight_rewards_from_reward_chests_%" } }, - [6613]={ + [6845]={ [1]={ [1]={ limit={ @@ -152126,7 +157533,7 @@ return { [1]="heist_additional_breach_rewards_from_reward_chests_%" } }, - [6614]={ + [6846]={ [1]={ [1]={ limit={ @@ -152142,7 +157549,7 @@ return { [1]="heist_additional_corrupted_rewards_from_reward_chests_%" } }, - [6615]={ + [6847]={ [1]={ [1]={ limit={ @@ -152158,7 +157565,7 @@ return { [1]="heist_additional_delirium_rewards_from_reward_chests_%" } }, - [6616]={ + [6848]={ [1]={ [1]={ limit={ @@ -152174,7 +157581,7 @@ return { [1]="heist_additional_delve_rewards_from_reward_chests_%" } }, - [6617]={ + [6849]={ [1]={ [1]={ limit={ @@ -152190,7 +157597,7 @@ return { [1]="heist_additional_divination_rewards_from_reward_chests_%" } }, - [6618]={ + [6850]={ [1]={ [1]={ limit={ @@ -152206,7 +157613,7 @@ return { [1]="heist_additional_essences_rewards_from_reward_chests_%" } }, - [6619]={ + [6851]={ [1]={ [1]={ limit={ @@ -152222,7 +157629,23 @@ return { [1]="heist_additional_gems_rewards_from_reward_chests_%" } }, - [6620]={ + [6852]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% chance to receive additional Gold when opening a Reward Chest in a Heist" + } + }, + stats={ + [1]="heist_additional_gold_rewards_from_reward_chests_%" + } + }, + [6853]={ [1]={ [1]={ limit={ @@ -152238,7 +157661,7 @@ return { [1]="heist_additional_harbinger_rewards_from_reward_chests_%" } }, - [6621]={ + [6854]={ [1]={ [1]={ limit={ @@ -152254,7 +157677,7 @@ return { [1]="heist_additional_jewellery_rewards_from_reward_chests_%" } }, - [6622]={ + [6855]={ [1]={ [1]={ limit={ @@ -152270,7 +157693,7 @@ return { [1]="heist_additional_legion_rewards_from_reward_chests_%" } }, - [6623]={ + [6856]={ [1]={ [1]={ limit={ @@ -152286,7 +157709,7 @@ return { [1]="heist_additional_metamorph_rewards_from_reward_chests_%" } }, - [6624]={ + [6857]={ [1]={ [1]={ limit={ @@ -152302,7 +157725,7 @@ return { [1]="heist_additional_perandus_rewards_from_reward_chests_%" } }, - [6625]={ + [6858]={ [1]={ [1]={ limit={ @@ -152318,7 +157741,7 @@ return { [1]="heist_additional_talisman_rewards_from_reward_chests_%" } }, - [6626]={ + [6859]={ [1]={ [1]={ limit={ @@ -152334,7 +157757,7 @@ return { [1]="heist_additional_uniques_rewards_from_reward_chests_%" } }, - [6627]={ + [6860]={ [1]={ [1]={ limit={ @@ -152350,7 +157773,7 @@ return { [1]="heist_additional_weapons_rewards_from_reward_chests_%" } }, - [6628]={ + [6861]={ [1]={ [1]={ limit={ @@ -152379,7 +157802,7 @@ return { [1]="heist_alert_level_gained_on_monster_death" } }, - [6629]={ + [6862]={ [1]={ [1]={ [1]={ @@ -152416,7 +157839,7 @@ return { [1]="heist_alert_level_gained_per_10_sec" } }, - [6630]={ + [6863]={ [1]={ [1]={ limit={ @@ -152432,7 +157855,7 @@ return { [1]="heist_chests_chance_for_secondary_objectives_%" } }, - [6631]={ + [6864]={ [1]={ [1]={ limit={ @@ -152457,7 +157880,7 @@ return { [1]="heist_chests_double_blighted_maps_and_catalysts_%" } }, - [6632]={ + [6865]={ [1]={ [1]={ limit={ @@ -152482,7 +157905,7 @@ return { [1]="heist_chests_double_breach_splinters_%" } }, - [6633]={ + [6866]={ [1]={ [1]={ limit={ @@ -152507,7 +157930,7 @@ return { [1]="heist_chests_double_catalysts_%" } }, - [6634]={ + [6867]={ [1]={ [1]={ limit={ @@ -152532,7 +157955,7 @@ return { [1]="heist_chests_double_currency_%" } }, - [6635]={ + [6868]={ [1]={ [1]={ limit={ @@ -152557,7 +157980,7 @@ return { [1]="heist_chests_double_delirium_orbs_and_splinters_%" } }, - [6636]={ + [6869]={ [1]={ [1]={ limit={ @@ -152582,7 +158005,7 @@ return { [1]="heist_chests_double_divination_cards_%" } }, - [6637]={ + [6870]={ [1]={ [1]={ limit={ @@ -152607,7 +158030,7 @@ return { [1]="heist_chests_double_essences_%" } }, - [6638]={ + [6871]={ [1]={ [1]={ limit={ @@ -152632,7 +158055,7 @@ return { [1]="heist_chests_double_jewels_%" } }, - [6639]={ + [6872]={ [1]={ [1]={ limit={ @@ -152657,7 +158080,7 @@ return { [1]="heist_chests_double_legion_splinters_%" } }, - [6640]={ + [6873]={ [1]={ [1]={ limit={ @@ -152682,7 +158105,7 @@ return { [1]="heist_chests_double_map_fragments_%" } }, - [6641]={ + [6874]={ [1]={ [1]={ limit={ @@ -152707,7 +158130,7 @@ return { [1]="heist_chests_double_maps_%" } }, - [6642]={ + [6875]={ [1]={ [1]={ limit={ @@ -152732,7 +158155,7 @@ return { [1]="heist_chests_double_oils_%" } }, - [6643]={ + [6876]={ [1]={ [1]={ limit={ @@ -152757,7 +158180,7 @@ return { [1]="heist_chests_double_scarabs_%" } }, - [6644]={ + [6877]={ [1]={ [1]={ limit={ @@ -152782,7 +158205,7 @@ return { [1]="heist_chests_double_sextants_%" } }, - [6645]={ + [6878]={ [1]={ [1]={ limit={ @@ -152811,7 +158234,7 @@ return { [1]="heist_chests_double_uniques_%" } }, - [6646]={ + [6879]={ [1]={ [1]={ limit={ @@ -152840,7 +158263,7 @@ return { [1]="heist_chests_unique_rarity_%" } }, - [6647]={ + [6880]={ [1]={ [1]={ limit={ @@ -152865,7 +158288,7 @@ return { [1]="heist_coins_from_world_chests_double_%" } }, - [6648]={ + [6881]={ [1]={ [1]={ limit={ @@ -152890,7 +158313,7 @@ return { [1]="heist_coins_dropped_by_monsters_double_%" } }, - [6649]={ + [6882]={ [1]={ [1]={ limit={ @@ -152919,7 +158342,7 @@ return { [1]="heist_contract_alert_level_from_chests_+%" } }, - [6650]={ + [6883]={ [1]={ [1]={ limit={ @@ -152948,7 +158371,7 @@ return { [1]="heist_contract_alert_level_from_monsters_+%" } }, - [6651]={ + [6884]={ [1]={ [1]={ limit={ @@ -152977,7 +158400,7 @@ return { [1]="heist_contract_alert_level_+%" } }, - [6652]={ + [6885]={ [1]={ [1]={ limit={ @@ -153006,7 +158429,7 @@ return { [1]="heist_contract_gang_cost_+%" } }, - [6653]={ + [6886]={ [1]={ [1]={ limit={ @@ -153022,7 +158445,7 @@ return { [1]="heist_contract_gang_takes_no_cut" } }, - [6654]={ + [6887]={ [1]={ [1]={ limit={ @@ -153038,7 +158461,7 @@ return { [1]="heist_contract_generate_secondary_objectives_chance_%" } }, - [6655]={ + [6888]={ [1]={ [1]={ limit={ @@ -153067,7 +158490,7 @@ return { [1]="heist_contract_guarding_monsters_damage_+%" } }, - [6656]={ + [6889]={ [1]={ [1]={ limit={ @@ -153096,7 +158519,7 @@ return { [1]="heist_contract_guarding_monsters_take_damage_+%" } }, - [6657]={ + [6890]={ [1]={ [1]={ limit={ @@ -153121,7 +158544,7 @@ return { [1]="heist_contract_mechanical_unlock_count" } }, - [6658]={ + [6891]={ [1]={ [1]={ limit={ @@ -153146,7 +158569,7 @@ return { [1]="heist_contract_magical_unlock_count" } }, - [6659]={ + [6892]={ [1]={ [1]={ limit={ @@ -153162,7 +158585,7 @@ return { [1]="heist_contract_no_travel_cost" } }, - [6660]={ + [6893]={ [1]={ [1]={ limit={ @@ -153191,7 +158614,7 @@ return { [1]="heist_contract_npc_cost_+%" } }, - [6661]={ + [6894]={ [1]={ [1]={ limit={ @@ -153220,7 +158643,7 @@ return { [1]="heist_contract_objective_completion_time_+%" } }, - [6662]={ + [6895]={ [1]={ [1]={ limit={ @@ -153249,7 +158672,7 @@ return { [1]="heist_contract_patrol_additional_elite_chance_+%" } }, - [6663]={ + [6896]={ [1]={ [1]={ limit={ @@ -153278,7 +158701,7 @@ return { [1]="heist_contract_patrol_damage_+%" } }, - [6664]={ + [6897]={ [1]={ [1]={ limit={ @@ -153307,7 +158730,7 @@ return { [1]="heist_contract_patrol_take_damage_+%" } }, - [6665]={ + [6898]={ [1]={ [1]={ limit={ @@ -153336,7 +158759,7 @@ return { [1]="heist_contract_side_area_monsters_damage_+%" } }, - [6666]={ + [6899]={ [1]={ [1]={ limit={ @@ -153365,7 +158788,7 @@ return { [1]="heist_contract_side_area_monsters_take_damage_+%" } }, - [6667]={ + [6900]={ [1]={ [1]={ limit={ @@ -153394,7 +158817,7 @@ return { [1]="heist_contract_total_cost_+%_final" } }, - [6668]={ + [6901]={ [1]={ [1]={ limit={ @@ -153423,7 +158846,7 @@ return { [1]="heist_contract_travel_cost_+%" } }, - [6669]={ + [6902]={ [1]={ [1]={ limit={ @@ -153448,7 +158871,7 @@ return { [1]="heist_currency_alchemy_drops_as_blessed_%" } }, - [6670]={ + [6903]={ [1]={ [1]={ limit={ @@ -153473,7 +158896,7 @@ return { [1]="heist_currency_alchemy_drops_as_divine_%" } }, - [6671]={ + [6904]={ [1]={ [1]={ limit={ @@ -153498,7 +158921,7 @@ return { [1]="heist_currency_alchemy_drops_as_exalted_%" } }, - [6672]={ + [6905]={ [1]={ [1]={ limit={ @@ -153523,7 +158946,7 @@ return { [1]="heist_currency_alteration_drops_as_alchemy_%" } }, - [6673]={ + [6906]={ [1]={ [1]={ limit={ @@ -153548,7 +158971,7 @@ return { [1]="heist_currency_alteration_drops_as_chaos_%" } }, - [6674]={ + [6907]={ [1]={ [1]={ limit={ @@ -153573,7 +158996,7 @@ return { [1]="heist_currency_alteration_drops_as_regal_%" } }, - [6675]={ + [6908]={ [1]={ [1]={ limit={ @@ -153598,7 +159021,7 @@ return { [1]="heist_currency_augmentation_drops_as_alchemy_%" } }, - [6676]={ + [6909]={ [1]={ [1]={ limit={ @@ -153623,7 +159046,7 @@ return { [1]="heist_currency_augmentation_drops_as_chaos_%" } }, - [6677]={ + [6910]={ [1]={ [1]={ limit={ @@ -153648,7 +159071,7 @@ return { [1]="heist_currency_augmentation_drops_as_regal_%" } }, - [6678]={ + [6911]={ [1]={ [1]={ limit={ @@ -153673,7 +159096,7 @@ return { [1]="heist_currency_chaos_drops_as_blessed_%" } }, - [6679]={ + [6912]={ [1]={ [1]={ limit={ @@ -153698,7 +159121,7 @@ return { [1]="heist_currency_chaos_drops_as_divine_%" } }, - [6680]={ + [6913]={ [1]={ [1]={ limit={ @@ -153723,7 +159146,7 @@ return { [1]="heist_currency_chaos_drops_as_exalted_%" } }, - [6681]={ + [6914]={ [1]={ [1]={ limit={ @@ -153748,7 +159171,7 @@ return { [1]="heist_currency_chromatic_drops_as_fusing_%" } }, - [6682]={ + [6915]={ [1]={ [1]={ limit={ @@ -153773,7 +159196,7 @@ return { [1]="heist_currency_chromatic_drops_as_jewellers_%" } }, - [6683]={ + [6916]={ [1]={ [1]={ limit={ @@ -153798,7 +159221,7 @@ return { [1]="heist_currency_jewellers_drops_as_fusing_%" } }, - [6684]={ + [6917]={ [1]={ [1]={ limit={ @@ -153823,7 +159246,7 @@ return { [1]="heist_currency_regal_drops_as_blessed_%" } }, - [6685]={ + [6918]={ [1]={ [1]={ limit={ @@ -153848,7 +159271,7 @@ return { [1]="heist_currency_regal_drops_as_divine_%" } }, - [6686]={ + [6919]={ [1]={ [1]={ limit={ @@ -153873,7 +159296,7 @@ return { [1]="heist_currency_regal_drops_as_exalted_%" } }, - [6687]={ + [6920]={ [1]={ [1]={ limit={ @@ -153898,7 +159321,7 @@ return { [1]="heist_currency_regret_drops_as_annulment_%" } }, - [6688]={ + [6921]={ [1]={ [1]={ limit={ @@ -153923,7 +159346,7 @@ return { [1]="heist_currency_scouring_drops_as_annulment_%" } }, - [6689]={ + [6922]={ [1]={ [1]={ limit={ @@ -153948,7 +159371,7 @@ return { [1]="heist_currency_scouring_drops_as_regret_%" } }, - [6690]={ + [6923]={ [1]={ [1]={ limit={ @@ -153973,7 +159396,7 @@ return { [1]="heist_currency_transmutation_drops_as_alchemy_%" } }, - [6691]={ + [6924]={ [1]={ [1]={ limit={ @@ -153998,7 +159421,7 @@ return { [1]="heist_currency_transmutation_drops_as_chaos_%" } }, - [6692]={ + [6925]={ [1]={ [1]={ limit={ @@ -154023,7 +159446,7 @@ return { [1]="heist_currency_transmutation_drops_as_regal_%" } }, - [6693]={ + [6926]={ [1]={ [1]={ limit={ @@ -154048,7 +159471,7 @@ return { [1]="heist_drops_double_currency_%" } }, - [6694]={ + [6927]={ [1]={ [1]={ limit={ @@ -154064,7 +159487,7 @@ return { [1]="heist_guards_are_magic" } }, - [6695]={ + [6928]={ [1]={ [1]={ limit={ @@ -154080,7 +159503,7 @@ return { [1]="heist_guards_are_rare" } }, - [6696]={ + [6929]={ [1]={ [1]={ limit={ @@ -154096,7 +159519,7 @@ return { [1]="heist_interruption_resistance_%" } }, - [6697]={ + [6930]={ [1]={ [1]={ limit={ @@ -154125,7 +159548,7 @@ return { [1]="heist_item_quantity_+%" } }, - [6698]={ + [6931]={ [1]={ [1]={ limit={ @@ -154154,7 +159577,7 @@ return { [1]="heist_item_rarity_+%" } }, - [6699]={ + [6932]={ [1]={ [1]={ limit={ @@ -154179,7 +159602,7 @@ return { [1]="heist_items_are_fully_linked_%" } }, - [6700]={ + [6933]={ [1]={ [1]={ limit={ @@ -154204,7 +159627,7 @@ return { [1]="heist_items_drop_corrupted_%" } }, - [6701]={ + [6934]={ [1]={ [1]={ limit={ @@ -154229,7 +159652,7 @@ return { [1]="heist_items_drop_identified_%" } }, - [6702]={ + [6935]={ [1]={ [1]={ limit={ @@ -154254,7 +159677,7 @@ return { [1]="heist_items_have_elder_influence_%" } }, - [6703]={ + [6936]={ [1]={ [1]={ limit={ @@ -154279,7 +159702,7 @@ return { [1]="heist_items_have_one_additional_socket_%" } }, - [6704]={ + [6937]={ [1]={ [1]={ limit={ @@ -154304,7 +159727,7 @@ return { [1]="heist_items_have_shaper_influence_%" } }, - [6705]={ + [6938]={ [1]={ [1]={ limit={ @@ -154320,7 +159743,7 @@ return { [1]="heist_job_agility_level_+" } }, - [6706]={ + [6939]={ [1]={ [1]={ limit={ @@ -154336,7 +159759,7 @@ return { [1]="heist_job_brute_force_level_+" } }, - [6707]={ + [6940]={ [1]={ [1]={ limit={ @@ -154352,7 +159775,7 @@ return { [1]="heist_job_counter_thaumaturgy_level_+" } }, - [6708]={ + [6941]={ [1]={ [1]={ limit={ @@ -154368,7 +159791,7 @@ return { [1]="heist_job_deception_level_+" } }, - [6709]={ + [6942]={ [1]={ [1]={ limit={ @@ -154384,7 +159807,7 @@ return { [1]="heist_job_demolition_level_+" } }, - [6710]={ + [6943]={ [1]={ [1]={ limit={ @@ -154413,7 +159836,7 @@ return { [1]="heist_job_demolition_speed_+%" } }, - [6711]={ + [6944]={ [1]={ [1]={ limit={ @@ -154429,7 +159852,7 @@ return { [1]="heist_job_engineering_level_+" } }, - [6712]={ + [6945]={ [1]={ [1]={ limit={ @@ -154445,7 +159868,7 @@ return { [1]="heist_job_lockpicking_level_+" } }, - [6713]={ + [6946]={ [1]={ [1]={ limit={ @@ -154474,7 +159897,7 @@ return { [1]="heist_job_lockpicking_speed_+%" } }, - [6714]={ + [6947]={ [1]={ [1]={ limit={ @@ -154490,7 +159913,7 @@ return { [1]="heist_job_perception_level_+" } }, - [6715]={ + [6948]={ [1]={ [1]={ limit={ @@ -154506,7 +159929,7 @@ return { [1]="heist_job_trap_disarmament_level_+" } }, - [6716]={ + [6949]={ [1]={ [1]={ limit={ @@ -154535,7 +159958,7 @@ return { [1]="heist_job_trap_disarmament_speed_+%" } }, - [6717]={ + [6950]={ [1]={ [1]={ limit={ @@ -154551,7 +159974,7 @@ return { [1]="heist_lockdown_is_instant" } }, - [6718]={ + [6951]={ [1]={ [1]={ limit={ @@ -154567,7 +159990,7 @@ return { [1]="heist_nenet_scouts_nearby_patrols_and_mini_bosses" } }, - [6719]={ + [6952]={ [1]={ [1]={ limit={ @@ -154596,7 +160019,7 @@ return { [1]="heist_npc_blueprint_reveal_cost_+%" } }, - [6720]={ + [6953]={ [1]={ [1]={ limit={ @@ -154621,7 +160044,7 @@ return { [1]="heist_npc_contract_generates_gianna_intelligence" } }, - [6721]={ + [6954]={ [1]={ [1]={ limit={ @@ -154646,7 +160069,7 @@ return { [1]="heist_npc_contract_generates_niles_intelligence" } }, - [6722]={ + [6955]={ [1]={ [1]={ limit={ @@ -154662,7 +160085,7 @@ return { [1]="heist_npc_display_huck_combat" } }, - [6723]={ + [6956]={ [1]={ [1]={ limit={ @@ -154691,7 +160114,7 @@ return { [1]="heist_npc_karst_alert_level_from_chests_+%_final" } }, - [6724]={ + [6957]={ [1]={ [1]={ limit={ @@ -154720,7 +160143,7 @@ return { [1]="heist_npc_nenet_alert_level_+%_final" } }, - [6725]={ + [6958]={ [1]={ [1]={ limit={ @@ -154749,7 +160172,7 @@ return { [1]="heist_npc_tullina_alert_level_+%_final" } }, - [6726]={ + [6959]={ [1]={ [1]={ limit={ @@ -154778,7 +160201,7 @@ return { [1]="heist_npc_vinderi_alert_level_+%_final" } }, - [6727]={ + [6960]={ [1]={ [1]={ limit={ @@ -154794,7 +160217,7 @@ return { [1]="heist_patrols_are_magic" } }, - [6728]={ + [6961]={ [1]={ [1]={ limit={ @@ -154810,7 +160233,7 @@ return { [1]="heist_patrols_are_rare" } }, - [6729]={ + [6962]={ [1]={ [1]={ limit={ @@ -154826,7 +160249,7 @@ return { [1]="heist_player_additional_maximum_resistances_%_per_25%_alert_level" } }, - [6730]={ + [6963]={ [1]={ [1]={ limit={ @@ -154855,7 +160278,7 @@ return { [1]="heist_player_armour_+%_final_per_25%_alert_level" } }, - [6731]={ + [6964]={ [1]={ [1]={ limit={ @@ -154871,7 +160294,7 @@ return { [1]="heist_player_cold_resistance_%_per_25%_alert_level" } }, - [6732]={ + [6965]={ [1]={ [1]={ limit={ @@ -154900,7 +160323,7 @@ return { [1]="heist_player_energy_shield_recovery_rate_+%_final_per_25%_alert_level" } }, - [6733]={ + [6966]={ [1]={ [1]={ limit={ @@ -154929,7 +160352,7 @@ return { [1]="heist_player_evasion_rating_+%_final_per_25%_alert_level" } }, - [6734]={ + [6967]={ [1]={ [1]={ limit={ @@ -154958,7 +160381,7 @@ return { [1]="heist_player_experience_gain_+%" } }, - [6735]={ + [6968]={ [1]={ [1]={ limit={ @@ -154974,7 +160397,7 @@ return { [1]="heist_player_fire_resistance_%_per_25%_alert_level" } }, - [6736]={ + [6969]={ [1]={ [1]={ limit={ @@ -155003,7 +160426,7 @@ return { [1]="heist_player_flask_charges_gained_+%_per_25%_alert_level" } }, - [6737]={ + [6970]={ [1]={ [1]={ limit={ @@ -155032,7 +160455,7 @@ return { [1]="heist_player_life_recovery_rate_+%_final_per_25%_alert_level" } }, - [6738]={ + [6971]={ [1]={ [1]={ limit={ @@ -155048,7 +160471,7 @@ return { [1]="heist_player_lightning_resistance_%_per_25%_alert_level" } }, - [6739]={ + [6972]={ [1]={ [1]={ limit={ @@ -155077,7 +160500,7 @@ return { [1]="heist_player_mana_recovery_rate_+%_final_per_25%_alert_level" } }, - [6740]={ + [6973]={ [1]={ [1]={ limit={ @@ -155106,7 +160529,7 @@ return { [1]="heist_reinforcements_attack_speed_+%" } }, - [6741]={ + [6974]={ [1]={ [1]={ limit={ @@ -155135,7 +160558,7 @@ return { [1]="heist_reinforcements_cast_speed_+%" } }, - [6742]={ + [6975]={ [1]={ [1]={ limit={ @@ -155164,7 +160587,7 @@ return { [1]="heist_reinforcements_movements_speed_+%" } }, - [6743]={ + [6976]={ [1]={ [1]={ limit={ @@ -155193,7 +160616,7 @@ return { [1]="heist_side_reward_room_monsters_+%" } }, - [6744]={ + [6977]={ [1]={ [1]={ limit={ @@ -155218,7 +160641,7 @@ return { [1]="hellscape_extra_item_slots" } }, - [6745]={ + [6978]={ [1]={ [1]={ limit={ @@ -155243,7 +160666,7 @@ return { [1]="hellscape_extra_map_slots" } }, - [6746]={ + [6979]={ [1]={ [1]={ limit={ @@ -155259,7 +160682,7 @@ return { [1]="hellscaping_add_corruption_implicit_chance_%" } }, - [6747]={ + [6980]={ [1]={ [1]={ limit={ @@ -155275,7 +160698,7 @@ return { [1]="hellscaping_add_explicit_mod_chance_%" } }, - [6748]={ + [6981]={ [1]={ [1]={ limit={ @@ -155291,7 +160714,7 @@ return { [1]="hellscaping_additional_link_chance_%" } }, - [6749]={ + [6982]={ [1]={ [1]={ limit={ @@ -155307,7 +160730,7 @@ return { [1]="hellscaping_additional_socket_chance_%" } }, - [6750]={ + [6983]={ [1]={ [1]={ limit={ @@ -155323,7 +160746,7 @@ return { [1]="hellscaping_additional_upside_chance_%" } }, - [6751]={ + [6984]={ [1]={ [1]={ limit={ @@ -155339,7 +160762,7 @@ return { [1]="hellscaping_downsides_tier_downgrade_chance_%" } }, - [6752]={ + [6985]={ [1]={ [1]={ limit={ @@ -155355,7 +160778,7 @@ return { [1]="hellscaping_speed_+%_per_map_hellscape_tier" } }, - [6753]={ + [6986]={ [1]={ [1]={ limit={ @@ -155371,7 +160794,7 @@ return { [1]="armour_hellscaping_speed_+%" } }, - [6754]={ + [6987]={ [1]={ [1]={ limit={ @@ -155387,7 +160810,7 @@ return { [1]="jewellery_hellscaping_speed_+%" } }, - [6755]={ + [6988]={ [1]={ [1]={ limit={ @@ -155403,7 +160826,7 @@ return { [1]="map_hellscaping_speed_+%" } }, - [6756]={ + [6989]={ [1]={ [1]={ limit={ @@ -155419,7 +160842,7 @@ return { [1]="weapon_hellscaping_speed_+%" } }, - [6757]={ + [6990]={ [1]={ [1]={ limit={ @@ -155435,7 +160858,7 @@ return { [1]="quiver_hellscaping_speed_+%" } }, - [6758]={ + [6991]={ [1]={ [1]={ limit={ @@ -155451,7 +160874,7 @@ return { [1]="hellscaping_upgrade_mod_tier_chance_%" } }, - [6759]={ + [6992]={ [1]={ [1]={ limit={ @@ -155467,7 +160890,7 @@ return { [1]="hellscaping_upsides_tier_upgrade_chance_%" } }, - [6760]={ + [6993]={ [1]={ [1]={ limit={ @@ -155483,7 +160906,7 @@ return { [1]="helmet_mod_freeze_as_though_damage_+%_final" } }, - [6761]={ + [6994]={ [1]={ [1]={ limit={ @@ -155499,7 +160922,7 @@ return { [1]="helmet_mod_shock_as_though_damage_+%_final" } }, - [6762]={ + [6995]={ [1]={ [1]={ limit={ @@ -155528,7 +160951,7 @@ return { [1]="herald_effect_on_self_+%" } }, - [6763]={ + [6996]={ [1]={ [1]={ limit={ @@ -155544,7 +160967,7 @@ return { [1]="herald_mana_reservation_override_45%" } }, - [6764]={ + [6997]={ [1]={ [1]={ [1]={ @@ -155581,7 +161004,7 @@ return { [1]="herald_of_agony_buff_drop_off_speed_+%" } }, - [6765]={ + [6998]={ [1]={ [1]={ limit={ @@ -155610,7 +161033,7 @@ return { [1]="herald_of_agony_buff_effect_+%" } }, - [6766]={ + [6999]={ [1]={ [1]={ [1]={ @@ -155643,7 +161066,7 @@ return { [1]="herald_of_agony_mana_reservation_efficiency_-2%_per_1" } }, - [6767]={ + [7000]={ [1]={ [1]={ limit={ @@ -155672,7 +161095,7 @@ return { [1]="herald_of_agony_mana_reservation_efficiency_+%" } }, - [6768]={ + [7001]={ [1]={ [1]={ limit={ @@ -155701,7 +161124,7 @@ return { [1]="herald_of_agony_mana_reservation_+%" } }, - [6769]={ + [7002]={ [1]={ [1]={ limit={ @@ -155730,7 +161153,7 @@ return { [1]="herald_of_ash_buff_effect_+%" } }, - [6770]={ + [7003]={ [1]={ [1]={ [1]={ @@ -155763,7 +161186,7 @@ return { [1]="herald_of_ash_mana_reservation_efficiency_-2%_per_1" } }, - [6771]={ + [7004]={ [1]={ [1]={ limit={ @@ -155792,7 +161215,7 @@ return { [1]="herald_of_ash_mana_reservation_efficiency_+%" } }, - [6772]={ + [7005]={ [1]={ [1]={ limit={ @@ -155821,7 +161244,7 @@ return { [1]="herald_of_ash_spell_fire_damage_+%_final" } }, - [6773]={ + [7006]={ [1]={ [1]={ limit={ @@ -155850,7 +161273,7 @@ return { [1]="herald_of_ice_buff_effect_+%" } }, - [6774]={ + [7007]={ [1]={ [1]={ [1]={ @@ -155883,7 +161306,7 @@ return { [1]="herald_of_ice_mana_reservation_efficiency_-2%_per_1" } }, - [6775]={ + [7008]={ [1]={ [1]={ limit={ @@ -155912,7 +161335,7 @@ return { [1]="herald_of_ice_mana_reservation_efficiency_+%" } }, - [6776]={ + [7009]={ [1]={ [1]={ limit={ @@ -155928,7 +161351,7 @@ return { [1]="herald_of_light_and_dominating_blow_minions_use_holy_slam" } }, - [6777]={ + [7010]={ [1]={ [1]={ limit={ @@ -155957,7 +161380,7 @@ return { [1]="herald_of_light_buff_effect_+%" } }, - [6778]={ + [7011]={ [1]={ [1]={ limit={ @@ -155986,7 +161409,7 @@ return { [1]="herald_of_light_minion_area_of_effect_+%" } }, - [6779]={ + [7012]={ [1]={ [1]={ [1]={ @@ -156019,7 +161442,7 @@ return { [1]="herald_of_purity_mana_reservation_efficiency_-2%_per_1" } }, - [6780]={ + [7013]={ [1]={ [1]={ limit={ @@ -156048,7 +161471,7 @@ return { [1]="herald_of_purity_mana_reservation_efficiency_+%" } }, - [6781]={ + [7014]={ [1]={ [1]={ limit={ @@ -156077,7 +161500,7 @@ return { [1]="herald_of_purity_mana_reservation_+%" } }, - [6782]={ + [7015]={ [1]={ [1]={ limit={ @@ -156102,7 +161525,7 @@ return { [1]="herald_of_thunder_bolt_frequency_+%" } }, - [6783]={ + [7016]={ [1]={ [1]={ limit={ @@ -156131,7 +161554,7 @@ return { [1]="herald_of_thunder_buff_effect_+%" } }, - [6784]={ + [7017]={ [1]={ [1]={ [1]={ @@ -156164,7 +161587,7 @@ return { [1]="herald_of_thunder_mana_reservation_efficiency_-2%_per_1" } }, - [6785]={ + [7018]={ [1]={ [1]={ limit={ @@ -156193,7 +161616,7 @@ return { [1]="herald_of_thunder_mana_reservation_efficiency_+%" } }, - [6786]={ + [7019]={ [1]={ [1]={ limit={ @@ -156218,7 +161641,7 @@ return { [1]="herald_scorpion_number_of_additional_projectiles" } }, - [6787]={ + [7020]={ [1]={ [1]={ limit={ @@ -156234,7 +161657,7 @@ return { [1]="herald_skill_gem_level_+" } }, - [6788]={ + [7021]={ [1]={ [1]={ [1]={ @@ -156267,7 +161690,7 @@ return { [1]="herald_skills_mana_reservation_efficiency_-2%_per_1" } }, - [6789]={ + [7022]={ [1]={ [1]={ limit={ @@ -156296,7 +161719,7 @@ return { [1]="herald_skills_mana_reservation_efficiency_+%" } }, - [6790]={ + [7023]={ [1]={ [1]={ limit={ @@ -156325,7 +161748,7 @@ return { [1]="herald_skills_mana_reservation_+%" } }, - [6791]={ + [7024]={ [1]={ [1]={ limit={ @@ -156354,7 +161777,7 @@ return { [1]="hex_skill_duration_+%" } }, - [6792]={ + [7025]={ [1]={ [1]={ [1]={ @@ -156378,7 +161801,7 @@ return { [1]="hexblast_and_doomblast_life_leech_on_overkill_damage_%" } }, - [6793]={ + [7026]={ [1]={ [1]={ limit={ @@ -156407,7 +161830,7 @@ return { [1]="hexblast_damage_+%" } }, - [6794]={ + [7027]={ [1]={ [1]={ [1]={ @@ -156432,7 +161855,7 @@ return { [2]="hexblast_%_chance_to_not_consume_hex" } }, - [6795]={ + [7028]={ [1]={ [1]={ limit={ @@ -156461,7 +161884,7 @@ return { [1]="hexblast_skill_area_of_effect_+%" } }, - [6796]={ + [7029]={ [1]={ [1]={ [1]={ @@ -156490,7 +161913,7 @@ return { [2]="hex_remove_at_effect_variance" } }, - [6797]={ + [7030]={ [1]={ [1]={ limit={ @@ -156506,7 +161929,7 @@ return { [1]="hexproof_if_right_ring_is_magic_item" } }, - [6798]={ + [7031]={ [1]={ [1]={ limit={ @@ -156522,7 +161945,7 @@ return { [1]="hierophant_area_of_effect_+%_per_50_unreserved_mana_up_to_100%" } }, - [6799]={ + [7032]={ [1]={ [1]={ [1]={ @@ -156542,7 +161965,7 @@ return { [1]="hierophant_gain_arcane_surge_on_mana_use_threshold" } }, - [6800]={ + [7033]={ [1]={ [1]={ limit={ @@ -156571,7 +161994,7 @@ return { [1]="hierophant_mana_cost_+%_final" } }, - [6801]={ + [7034]={ [1]={ [1]={ limit={ @@ -156600,7 +162023,7 @@ return { [1]="hierophant_mana_reservation_+%_final" } }, - [6802]={ + [7035]={ [1]={ [1]={ limit={ @@ -156629,7 +162052,7 @@ return { [1]="hinder_effect_on_self_+%" } }, - [6803]={ + [7036]={ [1]={ [1]={ limit={ @@ -156658,7 +162081,7 @@ return { [1]="hinder_enemy_chaos_damage_+%" } }, - [6804]={ + [7037]={ [1]={ [1]={ limit={ @@ -156687,7 +162110,7 @@ return { [1]="hinder_enemy_chaos_damage_taken_+%" } }, - [6805]={ + [7038]={ [1]={ [1]={ limit={ @@ -156703,7 +162126,7 @@ return { [1]="hinekora_belt_every_5_seconds_rotating_buff" } }, - [6806]={ + [7039]={ [1]={ [1]={ [1]={ @@ -156740,7 +162163,7 @@ return { [1]="hit_and_ailment_damage_+%_vs_bleeding_enemies" } }, - [6807]={ + [7040]={ [1]={ [1]={ [1]={ @@ -156777,7 +162200,7 @@ return { [1]="hit_and_ailment_damage_+%_vs_blinded_enemies" } }, - [6808]={ + [7041]={ [1]={ [1]={ [1]={ @@ -156814,7 +162237,7 @@ return { [1]="hit_and_ailment_damage_+%_vs_chilled_enemies" } }, - [6809]={ + [7042]={ [1]={ [1]={ limit={ @@ -156843,7 +162266,7 @@ return { [1]="hit_and_ailment_damage_+%_vs_cursed_enemies" } }, - [6810]={ + [7043]={ [1]={ [1]={ [1]={ @@ -156880,7 +162303,7 @@ return { [1]="hit_and_ailment_damage_+%_vs_enemies_affected_by_ailments" } }, - [6811]={ + [7044]={ [1]={ [1]={ [1]={ @@ -156917,7 +162340,7 @@ return { [1]="hit_and_ailment_damage_+%_vs_enemies_affected_by_at_least_3_spiders_webs" } }, - [6812]={ + [7045]={ [1]={ [1]={ limit={ @@ -156946,7 +162369,7 @@ return { [1]="hit_and_ailment_damage_+%_vs_unique_enemies" } }, - [6813]={ + [7046]={ [1]={ [1]={ limit={ @@ -156975,7 +162398,7 @@ return { [1]="hit_damage_+%_vs_ignited_enemies" } }, - [6814]={ + [7047]={ [1]={ [1]={ limit={ @@ -157004,7 +162427,7 @@ return { [1]="hit_damage_+%" } }, - [6815]={ + [7048]={ [1]={ [1]={ limit={ @@ -157020,7 +162443,7 @@ return { [1]="hits_against_marked_enemy_cannot_be_blocked_or_suppressed" } }, - [6816]={ + [7049]={ [1]={ [1]={ [1]={ @@ -157040,7 +162463,7 @@ return { [1]="hits_against_you_overwhelm_x%_of_physical_damage_reduction" } }, - [6817]={ + [7050]={ [1]={ [1]={ limit={ @@ -157056,7 +162479,23 @@ return { [1]="hits_cannot_be_evaded_vs_blinded_enemies" } }, - [6818]={ + [7051]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Your Hits cannot inflict more than 1 Impale" + } + }, + stats={ + [1]="hits_cannot_inflict_more_than_one_impale" + } + }, + [7052]={ [1]={ [1]={ [1]={ @@ -157076,7 +162515,7 @@ return { [1]="hits_from_maces_and_sceptres_crush_enemies" } }, - [6819]={ + [7053]={ [1]={ [1]={ [1]={ @@ -157096,7 +162535,7 @@ return { [1]="hits_have_critical_strike_multipler_+_per_monster_power" } }, - [6820]={ + [7054]={ [1]={ [1]={ limit={ @@ -157112,7 +162551,7 @@ return { [1]="hits_have_leech_%_is_instant_per_monster_power" } }, - [6821]={ + [7055]={ [1]={ [1]={ limit={ @@ -157128,7 +162567,7 @@ return { [1]="hits_ignore_enemy_chaos_resistance_if_all_elder_items_equipped" } }, - [6822]={ + [7056]={ [1]={ [1]={ limit={ @@ -157144,7 +162583,23 @@ return { [1]="hits_ignore_enemy_chaos_resistance_if_all_shaper_items_equipped" } }, - [6823]={ + [7057]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Your Hits ignore Enemy Monster Cold Resistances if all Equipped Rings are Cryonic Rings" + } + }, + stats={ + [1]="hits_ignore_enemy_cold_resistance_if_all_equipped_rings_are_cryonic" + } + }, + [7058]={ [1]={ [1]={ limit={ @@ -157160,7 +162615,23 @@ return { [1]="hits_ignore_enemy_fire_resistance_while_you_are_ignited" } }, - [6824]={ + [7059]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Your Hits ignore Enemy Monster Lightning Resistances if all Equipped Rings are Synaptic Rings" + } + }, + stats={ + [1]="hits_ignore_enemy_lightning_resistance_if_all_equipped_rings_are_synaptic" + } + }, + [7060]={ [1]={ [1]={ limit={ @@ -157176,7 +162647,7 @@ return { [1]="hits_ignore_enemy_monster_physical_damage_reduction_if_blocked_in_past_20_seconds" } }, - [6825]={ + [7061]={ [1]={ [1]={ limit={ @@ -157201,7 +162672,7 @@ return { [1]="hits_ignore_enemy_monster_physical_damage_reduction_%_chance" } }, - [6826]={ + [7062]={ [1]={ [1]={ limit={ @@ -157226,7 +162697,7 @@ return { [1]="hits_ignore_enemy_monster_physical_damage_reduction_%_chance_while_have_sacrificial_zeal" } }, - [6827]={ + [7063]={ [1]={ [1]={ [1]={ @@ -157250,7 +162721,7 @@ return { [1]="hoarfrost_on_non_freezing_freezing_hit" } }, - [6828]={ + [7064]={ [1]={ [1]={ limit={ @@ -157266,7 +162737,7 @@ return { [1]="holy_and_shockwave_totem_have_physical_damage_%_to_add_as_fire_damage_when_linked_by_searing_bond" } }, - [6829]={ + [7065]={ [1]={ [1]={ limit={ @@ -157282,7 +162753,7 @@ return { [1]="holy_path_teleport_range_+%" } }, - [6830]={ + [7066]={ [1]={ [1]={ limit={ @@ -157311,7 +162782,7 @@ return { [1]="holy_relic_area_of_effect_+%" } }, - [6831]={ + [7067]={ [1]={ [1]={ limit={ @@ -157327,7 +162798,7 @@ return { [1]="holy_relic_buff_effect_+%" } }, - [6832]={ + [7068]={ [1]={ [1]={ limit={ @@ -157356,7 +162827,7 @@ return { [1]="holy_relic_cooldown_recovery_+%" } }, - [6833]={ + [7069]={ [1]={ [1]={ limit={ @@ -157385,7 +162856,7 @@ return { [1]="holy_relic_damage_+%" } }, - [6834]={ + [7070]={ [1]={ [1]={ limit={ @@ -157423,7 +162894,7 @@ return { [2]="quality_display_hydrosphere_is_gem" } }, - [6835]={ + [7071]={ [1]={ [1]={ limit={ @@ -157439,7 +162910,7 @@ return { [1]="ice_and_lightning_trap_base_penetrate_elemental_resistances_%" } }, - [6836]={ + [7072]={ [1]={ [1]={ limit={ @@ -157455,7 +162926,7 @@ return { [1]="ice_and_lightning_trap_can_be_triggered_by_warcries" } }, - [6837]={ + [7073]={ [1]={ [1]={ limit={ @@ -157471,7 +162942,7 @@ return { [1]="ice_and_lightning_traps_cannot_be_triggered_by_enemies" } }, - [6838]={ + [7074]={ [1]={ [1]={ [1]={ @@ -157491,7 +162962,7 @@ return { [1]="ice_crash_and_glacial_hammer_enemies_covered_in_frost_as_unfrozen" } }, - [6839]={ + [7075]={ [1]={ [1]={ limit={ @@ -157520,7 +162991,7 @@ return { [1]="ice_crash_first_stage_damage_+%_final" } }, - [6840]={ + [7076]={ [1]={ [1]={ limit={ @@ -157549,7 +163020,7 @@ return { [1]="ice_dash_cooldown_speed_+%" } }, - [6841]={ + [7077]={ [1]={ [1]={ limit={ @@ -157578,7 +163049,7 @@ return { [1]="ice_dash_duration_+%" } }, - [6842]={ + [7078]={ [1]={ [1]={ limit={ @@ -157607,7 +163078,7 @@ return { [1]="ice_dash_travel_distance_+%" } }, - [6843]={ + [7079]={ [1]={ [1]={ limit={ @@ -157623,7 +163094,7 @@ return { [1]="ice_nova_chill_minimum_slow_%" } }, - [6844]={ + [7080]={ [1]={ [1]={ limit={ @@ -157652,7 +163123,7 @@ return { [1]="ice_shot_additional_pierce_per_10_old" } }, - [6845]={ + [7081]={ [1]={ [1]={ limit={ @@ -157681,7 +163152,7 @@ return { [1]="ice_shot_area_angle_+%" } }, - [6846]={ + [7082]={ [1]={ [1]={ limit={ @@ -157706,7 +163177,7 @@ return { [1]="ice_shot_pierce_+" } }, - [6847]={ + [7083]={ [1]={ [1]={ limit={ @@ -157735,7 +163206,7 @@ return { [1]="ice_siphon_trap_chill_effect_+%" } }, - [6848]={ + [7084]={ [1]={ [1]={ limit={ @@ -157764,7 +163235,7 @@ return { [1]="ice_siphon_trap_damage_+%" } }, - [6849]={ + [7085]={ [1]={ [1]={ limit={ @@ -157793,7 +163264,7 @@ return { [1]="ice_siphon_trap_damage_taken_+%_per_beam" } }, - [6850]={ + [7086]={ [1]={ [1]={ limit={ @@ -157822,7 +163293,7 @@ return { [1]="ice_siphon_trap_duration_+%" } }, - [6851]={ + [7087]={ [1]={ [1]={ limit={ @@ -157838,7 +163309,7 @@ return { [1]="ice_spear_and_ball_lightning_projectiles_nova" } }, - [6852]={ + [7088]={ [1]={ [1]={ limit={ @@ -157854,7 +163325,7 @@ return { [1]="ice_spear_and_ball_lightning_projectiles_return" } }, - [6853]={ + [7089]={ [1]={ [1]={ limit={ @@ -157883,7 +163354,7 @@ return { [1]="ice_spear_distance_before_form_change_+%" } }, - [6854]={ + [7090]={ [1]={ [1]={ limit={ @@ -157908,7 +163379,7 @@ return { [1]="ice_spear_number_of_additional_projectiles" } }, - [6855]={ + [7091]={ [1]={ [1]={ limit={ @@ -157924,7 +163395,7 @@ return { [1]="ice_trap_cold_resistance_penetration_%" } }, - [6856]={ + [7092]={ [1]={ [1]={ limit={ @@ -157953,7 +163424,7 @@ return { [1]="ignite_damage_+%_final_if_hit_highest_fire" } }, - [6857]={ + [7093]={ [1]={ [1]={ limit={ @@ -157982,7 +163453,7 @@ return { [1]="ignite_damage_+%_vs_chilled_enemies" } }, - [6858]={ + [7094]={ [1]={ [1]={ limit={ @@ -158011,7 +163482,7 @@ return { [1]="ignite_damage_against_cursed_enemies_+%" } }, - [6859]={ + [7095]={ [1]={ [1]={ limit={ @@ -158027,7 +163498,7 @@ return { [1]="ignite_deal_no_damage" } }, - [6860]={ + [7096]={ [1]={ [1]={ limit={ @@ -158056,7 +163527,23 @@ return { [1]="ignite_duration_-%" } }, - [6861]={ + [7097]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Ignited Enemies you Kill Explode, dealing {0}% of their Life as Fire Damage which cannot Ignite" + } + }, + stats={ + [1]="ignited_enemies_explode_for_%_life_as_fire_damage" + } + }, + [7098]={ [1]={ [1]={ limit={ @@ -158072,7 +163559,7 @@ return { [1]="ignites_and_chill_apply_elemental_resistance_+" } }, - [6862]={ + [7099]={ [1]={ [1]={ limit={ @@ -158088,7 +163575,7 @@ return { [1]="ignites_apply_fire_resistance_+" } }, - [6863]={ + [7100]={ [1]={ [1]={ limit={ @@ -158104,7 +163591,7 @@ return { [1]="ignores_enemy_cold_resistance" } }, - [6864]={ + [7101]={ [1]={ [1]={ limit={ @@ -158120,7 +163607,7 @@ return { [1]="ignores_enemy_fire_resistance" } }, - [6865]={ + [7102]={ [1]={ [1]={ limit={ @@ -158136,7 +163623,7 @@ return { [1]="ignores_enemy_lightning_resistance" } }, - [6866]={ + [7103]={ [1]={ [1]={ limit={ @@ -158165,7 +163652,7 @@ return { [1]="immortal_call_buff_effect_duration_+%_per_removable_endurance_charge" } }, - [6867]={ + [7104]={ [1]={ [1]={ [1]={ @@ -158198,7 +163685,7 @@ return { [1]="immortal_call_elemental_damage_taken_+%_final_per_endurance_charge_consumed_permyriad" } }, - [6868]={ + [7105]={ [1]={ [1]={ [1]={ @@ -158218,7 +163705,7 @@ return { [1]="immune_to_all_status_ailments" } }, - [6869]={ + [7106]={ [1]={ [1]={ limit={ @@ -158234,7 +163721,7 @@ return { [1]="immune_to_bleeding_if_helmet_grants_higher_armour_than_evasion" } }, - [6870]={ + [7107]={ [1]={ [1]={ limit={ @@ -158250,7 +163737,7 @@ return { [1]="immune_to_burning_shocks_and_chilled_ground" } }, - [6871]={ + [7108]={ [1]={ [1]={ limit={ @@ -158266,7 +163753,7 @@ return { [1]="immune_to_curses_if_cast_dispair_in_past_10_seconds" } }, - [6872]={ + [7109]={ [1]={ [1]={ limit={ @@ -158282,7 +163769,7 @@ return { [1]="immune_to_curses_on_killing_cursed_enemy_for_remaining_duration_of_curse" } }, - [6873]={ + [7110]={ [1]={ [1]={ limit={ @@ -158298,7 +163785,7 @@ return { [1]="immune_to_curses_while_at_least_X_rage" } }, - [6874]={ + [7111]={ [1]={ [1]={ limit={ @@ -158314,7 +163801,23 @@ return { [1]="immune_to_curses_while_channelling" } }, - [6875]={ + [7112]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Immune to Elemental Ailments while Bleeding" + } + }, + stats={ + [1]="immune_to_elemental_ailments_while_bleeding" + } + }, + [7113]={ [1]={ [1]={ [1]={ @@ -158334,7 +163837,7 @@ return { [1]="immune_to_elemental_ailments_while_on_consecrated_ground" } }, - [6876]={ + [7114]={ [1]={ [1]={ [1]={ @@ -158354,7 +163857,7 @@ return { [1]="immune_to_elemental_ailments_while_on_consecrated_ground_at_devotion_threshold" } }, - [6877]={ + [7115]={ [1]={ [1]={ [1]={ @@ -158374,7 +163877,7 @@ return { [1]="immune_to_elemental_ailments_while_you_have_arcane_surge" } }, - [6878]={ + [7116]={ [1]={ [1]={ limit={ @@ -158390,7 +163893,7 @@ return { [1]="immune_to_exposure" } }, - [6879]={ + [7117]={ [1]={ [1]={ limit={ @@ -158406,7 +163909,7 @@ return { [1]="immune_to_exposure_if_cast_elemental_weakness_in_past_10_seconds" } }, - [6880]={ + [7118]={ [1]={ [1]={ limit={ @@ -158422,7 +163925,7 @@ return { [1]="immune_to_freeze_and_chill_while_ignited" } }, - [6881]={ + [7119]={ [1]={ [1]={ limit={ @@ -158438,7 +163941,7 @@ return { [1]="immune_to_freeze_while_affected_by_purity_of_ice" } }, - [6882]={ + [7120]={ [1]={ [1]={ limit={ @@ -158454,7 +163957,7 @@ return { [1]="immune_to_hinder" } }, - [6883]={ + [7121]={ [1]={ [1]={ limit={ @@ -158470,7 +163973,7 @@ return { [1]="immune_to_ignite_and_shock" } }, - [6884]={ + [7122]={ [1]={ [1]={ limit={ @@ -158486,7 +163989,7 @@ return { [1]="immune_to_ignite_while_affected_by_purity_of_fire" } }, - [6885]={ + [7123]={ [1]={ [1]={ limit={ @@ -158502,7 +164005,7 @@ return { [1]="immune_to_maim" } }, - [6886]={ + [7124]={ [1]={ [1]={ limit={ @@ -158518,7 +164021,7 @@ return { [1]="immune_to_poison_if_helmet_grants_higher_evasion_than_armour" } }, - [6887]={ + [7125]={ [1]={ [1]={ limit={ @@ -158534,7 +164037,7 @@ return { [1]="immune_to_reflect_damage_if_cast_punishment_in_past_10_seconds" } }, - [6888]={ + [7126]={ [1]={ [1]={ limit={ @@ -158550,7 +164053,7 @@ return { [1]="immune_to_reflected_damage" } }, - [6889]={ + [7127]={ [1]={ [1]={ limit={ @@ -158566,7 +164069,7 @@ return { [1]="immune_to_shock_while_affected_by_purity_of_lightning" } }, - [6890]={ + [7128]={ [1]={ [1]={ [1]={ @@ -158586,7 +164089,7 @@ return { [1]="immune_to_status_ailments_while_focused" } }, - [6891]={ + [7129]={ [1]={ [1]={ limit={ @@ -158602,7 +164105,7 @@ return { [1]="immune_to_wither" } }, - [6892]={ + [7130]={ [1]={ [1]={ limit={ @@ -158618,7 +164121,7 @@ return { [1]="impacting_steel_%_chance_to_not_consume_ammo" } }, - [6893]={ + [7131]={ [1]={ [1]={ limit={ @@ -158647,7 +164150,7 @@ return { [1]="impale_debuff_effect_+%" } }, - [6894]={ + [7132]={ [1]={ [1]={ limit={ @@ -158676,7 +164179,7 @@ return { [1]="impale_debuff_effect_+%_from_hits_that_also_inflict_bleeding" } }, - [6895]={ + [7133]={ [1]={ [1]={ limit={ @@ -158705,7 +164208,7 @@ return { [1]="impale_effect_+%_per_impale_on_you" } }, - [6896]={ + [7134]={ [1]={ [1]={ [1]={ @@ -158742,7 +164245,7 @@ return { [1]="impale_effect_+%_for_impales_inficted_by_spells" } }, - [6897]={ + [7135]={ [1]={ [1]={ [1]={ @@ -158779,7 +164282,7 @@ return { [1]="impale_effect_+%_for_impales_inflicted_by_two_handed_weapons_on_non_impaled_enemies" } }, - [6898]={ + [7136]={ [1]={ [1]={ limit={ @@ -158808,7 +164311,7 @@ return { [1]="impale_effect_+%_for_impales_inflicted_on_non_impaled_enemies" } }, - [6899]={ + [7137]={ [1]={ [1]={ [1]={ @@ -158845,7 +164348,7 @@ return { [1]="impale_effect_+%_for_impales_past_1000_millisecond" } }, - [6900]={ + [7138]={ [1]={ [1]={ [1]={ @@ -158865,7 +164368,7 @@ return { [1]="impale_effect_+%_max_as_distance_travelled_increases" } }, - [6901]={ + [7139]={ [1]={ [1]={ limit={ @@ -158890,7 +164393,7 @@ return { [1]="impale_hits_ignore_enemy_monster_physical_damage_reduction_%_chance" } }, - [6902]={ + [7140]={ [1]={ [1]={ [1]={ @@ -158927,7 +164430,7 @@ return { [1]="impale_inflicted_by_two_handed_weapons_debuff_effect_+%" } }, - [6903]={ + [7141]={ [1]={ [1]={ limit={ @@ -158952,7 +164455,7 @@ return { [1]="impale_on_hit_%_chance" } }, - [6904]={ + [7142]={ [1]={ [1]={ limit={ @@ -158968,7 +164471,7 @@ return { [1]="impale_on_hit_%_chance_with_axes_swords" } }, - [6905]={ + [7143]={ [1]={ [1]={ limit={ @@ -158997,7 +164500,7 @@ return { [1]="impaled_debuff_duration_+%" } }, - [6906]={ + [7144]={ [1]={ [1]={ limit={ @@ -159022,7 +164525,7 @@ return { [1]="impaled_debuff_number_of_reflected_hits" } }, - [6907]={ + [7145]={ [1]={ [1]={ limit={ @@ -159038,7 +164541,39 @@ return { [1]="impales_do_not_consume_hit_on_hit_%_chance" } }, - [6908]={ + [7146]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% chance on Melee Hit for all Impales on the Enemy to last for an additional Hit" + } + }, + stats={ + [1]="impales_do_not_consume_hit_on_melee_hit_%_chance" + } + }, + [7147]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% chance on Melee Hit for the Strongest Impale on target to last for 1 additional Hit" + } + }, + stats={ + [1]="impales_do_not_consume_hit_strongest_impale_on_melee_hit_%_chance" + } + }, + [7148]={ [1]={ [1]={ limit={ @@ -159067,7 +164602,7 @@ return { [1]="impurity_cold_damage_taken_+%_final" } }, - [6909]={ + [7149]={ [1]={ [1]={ limit={ @@ -159096,7 +164631,7 @@ return { [1]="impurity_fire_damage_taken_+%_final" } }, - [6910]={ + [7150]={ [1]={ [1]={ limit={ @@ -159125,7 +164660,7 @@ return { [1]="impurity_lightning_damage_taken_+%_final" } }, - [6911]={ + [7151]={ [1]={ [1]={ limit={ @@ -159141,7 +164676,7 @@ return { [1]="incinerate_starts_with_X_additional_stages" } }, - [6912]={ + [7152]={ [1]={ [1]={ limit={ @@ -159157,7 +164692,7 @@ return { [1]="increase_crit_chance_by_lowest_of_str_or_int" } }, - [6913]={ + [7153]={ [1]={ [1]={ limit={ @@ -159173,7 +164708,7 @@ return { [1]="soul_eater_maximum_stacks_+" } }, - [6914]={ + [7154]={ [1]={ [1]={ limit={ @@ -159198,7 +164733,7 @@ return { [1]="infernal_blow_explosion_applies_uncharged_debuff_on_hit_%_chance" } }, - [6915]={ + [7155]={ [1]={ [1]={ limit={ @@ -159214,7 +164749,7 @@ return { [1]="infernal_blow_infernal_blow_explosion_damage_%_of_total_per_stack" } }, - [6916]={ + [7156]={ [1]={ [1]={ limit={ @@ -159230,7 +164765,7 @@ return { [1]="infernal_cry_area_of_effect_+%" } }, - [6917]={ + [7157]={ [1]={ [1]={ limit={ @@ -159246,7 +164781,7 @@ return { [1]="infernal_cry_cooldown_speed_+%" } }, - [6918]={ + [7158]={ [1]={ [1]={ limit={ @@ -159262,7 +164797,7 @@ return { [1]="infernal_cry_exerted_attacks_ignite_damage_+%_final_from_jewel" } }, - [6919]={ + [7159]={ [1]={ [1]={ [1]={ @@ -159282,7 +164817,7 @@ return { [1]="inflict_all_exposure_on_enemies_when_suppressing_their_spell" } }, - [6920]={ + [7160]={ [1]={ [1]={ [1]={ @@ -159302,7 +164837,7 @@ return { [1]="inflict_all_exposure_on_hit" } }, - [6921]={ + [7161]={ [1]={ [1]={ limit={ @@ -159318,7 +164853,7 @@ return { [1]="inflict_cold_exposure_if_cast_frostbite_in_past_10_seconds" } }, - [6922]={ + [7162]={ [1]={ [1]={ [1]={ @@ -159351,7 +164886,7 @@ return { [1]="inflict_cold_exposure_on_hit_%_chance_at_devotion_threshold" } }, - [6923]={ + [7163]={ [1]={ [1]={ limit={ @@ -159367,7 +164902,27 @@ return { [1]="inflict_fire_exposure_if_cast_flammability_in_past_10_seconds" } }, - [6924]={ + [7164]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextFireExposure" + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="[DNT] Inflict Fire Exposure on Nearby Enemies when you reach Maximum Rage" + } + }, + stats={ + [1]="inflict_fire_exposure_nearby_on_reaching_maximum_rage" + } + }, + [7165]={ [1]={ [1]={ [1]={ @@ -159400,7 +164955,7 @@ return { [1]="inflict_fire_exposure_on_hit_%_chance_at_devotion_threshold" } }, - [6925]={ + [7166]={ [1]={ [1]={ limit={ @@ -159416,7 +164971,7 @@ return { [1]="inflict_lightning_exposure_if_cast_conductivity_in_past_10_seconds" } }, - [6926]={ + [7167]={ [1]={ [1]={ [1]={ @@ -159449,7 +165004,27 @@ return { [1]="inflict_lightning_exposure_on_hit_%_chance_at_devotion_threshold" } }, - [6927]={ + [7168]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextMania" + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="While affected by Glorious Madness, inflict Mania on nearby Enemies every second" + } + }, + stats={ + [1]="inflict_mania_on_nearby_enemies_every_second_while_affected_by_glorious_madness" + } + }, + [7169]={ [1]={ [1]={ limit={ @@ -159465,7 +165040,7 @@ return { [1]="inflict_withered_for_2_seconds_on_hit_if_cast_dispair_in_past_10_seconds" } }, - [6928]={ + [7170]={ [1]={ [1]={ [1]={ @@ -159498,7 +165073,7 @@ return { [1]="inflicted_with_cold_exposure_on_taking_damage_from_cold_damage_hit_chance_%" } }, - [6929]={ + [7171]={ [1]={ [1]={ [1]={ @@ -159531,7 +165106,7 @@ return { [1]="inflicted_with_fire_exposure_on_taking_damage_from_fire_damage_hit_chance_%" } }, - [6930]={ + [7172]={ [1]={ [1]={ [1]={ @@ -159564,7 +165139,7 @@ return { [1]="inflicted_with_lightning_exposure_on_taking_damage_from_lightning_damage_hit_chance_%" } }, - [6931]={ + [7173]={ [1]={ [1]={ [1]={ @@ -159597,7 +165172,7 @@ return { [1]="inflicted_with_random_exposure_on_taking_damage_from_elemental_hit_chance_%" } }, - [6932]={ + [7174]={ [1]={ [1]={ [1]={ @@ -159630,7 +165205,7 @@ return { [1]="inflicted_with_wither_for_2_seconds_on_taking_chaos_damage_from_hit_chance_%" } }, - [6933]={ + [7175]={ [1]={ [1]={ limit={ @@ -159659,7 +165234,7 @@ return { [1]="infusion_effect_+%" } }, - [6934]={ + [7176]={ [1]={ [1]={ limit={ @@ -159688,7 +165263,7 @@ return { [1]="inquisitor_attack_damage_+%_final_per_non_instant_spell_cast_in_8_seconds_max_30%" } }, - [6935]={ + [7177]={ [1]={ [1]={ limit={ @@ -159717,7 +165292,7 @@ return { [1]="inspiration_charge_duration_+%" } }, - [6936]={ + [7178]={ [1]={ [1]={ limit={ @@ -159733,7 +165308,7 @@ return { [1]="intelligence_is_0" } }, - [6937]={ + [7179]={ [1]={ [1]={ limit={ @@ -159749,7 +165324,7 @@ return { [1]="intelligence_skill_gem_level_+" } }, - [6938]={ + [7180]={ [1]={ [1]={ limit={ @@ -159778,7 +165353,7 @@ return { [1]="intensity_loss_frequency_while_moving_+%" } }, - [6939]={ + [7181]={ [1]={ [1]={ limit={ @@ -159794,7 +165369,7 @@ return { [1]="intimidate_enemies_for_4_seconds_on_block_while_holding_a_shield" } }, - [6940]={ + [7182]={ [1]={ [1]={ limit={ @@ -159810,7 +165385,7 @@ return { [1]="intimidate_enemies_on_hit_if_cast_punishment_in_past_10_seconds" } }, - [6941]={ + [7183]={ [1]={ [1]={ [1]={ @@ -159830,7 +165405,7 @@ return { [1]="intimidate_nearby_enemies_on_use_for_ms" } }, - [6942]={ + [7184]={ [1]={ [1]={ [1]={ @@ -159863,7 +165438,7 @@ return { [1]="intimidate_on_hit_chance_with_attacks_while_at_maximum_endurance_charges_%" } }, - [6943]={ + [7185]={ [1]={ [1]={ limit={ @@ -159879,7 +165454,7 @@ return { [1]="intimidating_cry_area_of_effect_+%" } }, - [6944]={ + [7186]={ [1]={ [1]={ limit={ @@ -159895,7 +165470,7 @@ return { [1]="intimidating_cry_cooldown_speed_+%" } }, - [6945]={ + [7187]={ [1]={ [1]={ limit={ @@ -159924,7 +165499,7 @@ return { [1]="intuitive_link_duration_+%" } }, - [6946]={ + [7188]={ [1]={ [1]={ limit={ @@ -159949,7 +165524,7 @@ return { [1]="is_blighted_map" } }, - [6947]={ + [7189]={ [1]={ [1]={ [1]={ @@ -159986,7 +165561,7 @@ return { [1]="item_found_quantity_+%_per_chest_opened_recently" } }, - [6948]={ + [7190]={ [1]={ [1]={ limit={ @@ -160002,7 +165577,7 @@ return { [1]="item_found_rarity_+1%_per_X_rampage_stacks" } }, - [6949]={ + [7191]={ [1]={ [1]={ limit={ @@ -160018,7 +165593,7 @@ return { [1]="item_is_haunted" } }, - [6950]={ + [7192]={ [1]={ [1]={ [1]={ @@ -160042,7 +165617,67 @@ return { [1]="kaoms_primacy_gain_rage_on_attack_crit_cooldown_ms" } }, - [6951]={ + [7193]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextShepherdOfSouls" + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="You have Shepherd of Souls if at least 4 Corrupted Items are Equipped" + } + }, + stats={ + [1]="keystone_shepherd_of_souls_if_at_least_4_corrupted_items_equipped" + } + }, + [7194]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextKeystoneEverlastingSacrifice" + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="You have Everlasting Sacrifice if at least 6 Corrupted Items are Equipped" + } + }, + stats={ + [1]="keystone_everlasting_sacrifice_if_at_least_6_corrupted_items_equipped" + } + }, + [7195]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextKeystoneSacrificeOfBlood" + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="You have Sacrifice of Blood if at least 8 Corrupted Items are Equipped" + } + }, + stats={ + [1]="keystone_sacrifice_of_blood_if_at_least_8_corrupted_items_equipped" + } + }, + [7196]={ [1]={ [1]={ limit={ @@ -160067,7 +165702,7 @@ return { [1]="killed_enemies_apply_impale_damage_to_nearby_enemies_on_death_%_chance" } }, - [6952]={ + [7197]={ [1]={ [1]={ limit={ @@ -160096,7 +165731,7 @@ return { [1]="killed_monster_dropped_gold_+%" } }, - [6953]={ + [7198]={ [1]={ [1]={ limit={ @@ -160112,7 +165747,7 @@ return { [1]="killing_blow_consumes_corpse_restore_10%_life_chance_%" } }, - [6954]={ + [7199]={ [1]={ [1]={ limit={ @@ -160137,7 +165772,7 @@ return { [1]="kills_count_twice_for_rampage_%" } }, - [6955]={ + [7200]={ [1]={ [1]={ limit={ @@ -160153,7 +165788,7 @@ return { [1]="kinetic_blast_projectiles_gain_%_aoe_after_forking" } }, - [6956]={ + [7201]={ [1]={ [1]={ limit={ @@ -160182,7 +165817,7 @@ return { [1]="kinetic_bolt_attack_speed_+%" } }, - [6957]={ + [7202]={ [1]={ [1]={ [1]={ @@ -160219,7 +165854,7 @@ return { [1]="kinetic_bolt_blast_and_power_siphon_base_stun_threshold_reduction_+%" } }, - [6958]={ + [7203]={ [1]={ [1]={ limit={ @@ -160235,7 +165870,7 @@ return { [1]="kinetic_bolt_blast_and_power_siphon_chance_to_double_stun_duration_%" } }, - [6959]={ + [7204]={ [1]={ [1]={ limit={ @@ -160264,7 +165899,7 @@ return { [1]="kinetic_bolt_projectile_speed_+%" } }, - [6960]={ + [7205]={ [1]={ [1]={ limit={ @@ -160289,7 +165924,23 @@ return { [1]="kinetic_wand_base_number_of_zig_zags" } }, - [6961]={ + [7206]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Cannot roll Caster Modifiers" + } + }, + stats={ + [1]="kinetic_wand_implicit_cannot_roll_caster_modifiers" + } + }, + [7207]={ [1]={ [1]={ [1]={ @@ -160309,7 +165960,7 @@ return { [1]="knockback_on_crit_with_projectile_damage" } }, - [6962]={ + [7208]={ [1]={ [1]={ limit={ @@ -160334,7 +165985,7 @@ return { [1]="labyrinth_darkshrine_additional_divine_font_use_display" } }, - [6963]={ + [7209]={ [1]={ [1]={ limit={ @@ -160350,7 +166001,7 @@ return { [1]="labyrinth_darkshrine_boss_room_traps_are_disabled" } }, - [6964]={ + [7210]={ [1]={ [1]={ limit={ @@ -160375,7 +166026,7 @@ return { [1]="labyrinth_darkshrine_divine_font_grants_one_additional_enchantment_use_to_player_x" } }, - [6965]={ + [7211]={ [1]={ [1]={ limit={ @@ -160400,7 +166051,7 @@ return { [1]="labyrinth_darkshrine_izaro_dropped_unique_items_+" } }, - [6966]={ + [7212]={ [1]={ [1]={ limit={ @@ -160425,7 +166076,7 @@ return { [1]="labyrinth_darkshrine_izaro_drops_x_additional_treasure_keys" } }, - [6967]={ + [7213]={ [1]={ [1]={ limit={ @@ -160454,7 +166105,7 @@ return { [1]="labyrinth_darkshrine_players_damage_taken_from_labyrinth_traps_+%" } }, - [6968]={ + [7214]={ [1]={ [1]={ limit={ @@ -160614,7 +166265,7 @@ return { [1]="labyrinth_darkshrine_players_have_shrine_row_x_effect_for_this_labyrinth" } }, - [6969]={ + [7215]={ [1]={ [1]={ limit={ @@ -160639,7 +166290,7 @@ return { [1]="labyrinth_owner_x_addition_enchants" } }, - [6970]={ + [7216]={ [1]={ [1]={ limit={ @@ -160668,7 +166319,7 @@ return { [1]="lancing_steel_damage_+%" } }, - [6971]={ + [7217]={ [1]={ [1]={ [1]={ @@ -160701,7 +166352,7 @@ return { [1]="lancing_steel_impale_chance_%" } }, - [6972]={ + [7218]={ [1]={ [1]={ limit={ @@ -160726,7 +166377,7 @@ return { [1]="lancing_steel_number_of_additional_projectiles" } }, - [6973]={ + [7219]={ [1]={ [1]={ limit={ @@ -160742,7 +166393,7 @@ return { [1]="lancing_steel_%_chance_to_not_consume_ammo" } }, - [6974]={ + [7220]={ [1]={ [1]={ limit={ @@ -160767,7 +166418,7 @@ return { [1]="lancing_steel_primary_proj_pierce_num" } }, - [6975]={ + [7221]={ [1]={ [1]={ limit={ @@ -160783,7 +166434,7 @@ return { [1]="leech_energy_shield_instead_of_life" } }, - [6976]={ + [7222]={ [1]={ [1]={ limit={ @@ -160812,7 +166463,7 @@ return { [1]="leech_mastery_hit_damage_+%_final_vs_leech_immune" } }, - [6977]={ + [7223]={ [1]={ [1]={ limit={ @@ -160828,7 +166479,27 @@ return { [1]="leech_%_is_instant" } }, - [6978]={ + [7224]={ + [1]={ + [1]={ + [1]={ + k="permyriad_per_minute_to_%_per_second", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Lose {0}% Life and Energy Shield per Second per Minion" + } + }, + stats={ + [1]="life_and_energy_shield_degeneration_permyriad_per_minute_per_minion" + } + }, + [7225]={ [1]={ [1]={ limit={ @@ -160857,7 +166528,7 @@ return { [1]="life_and_energy_shield_recovery_rate_+%" } }, - [6979]={ + [7226]={ [1]={ [1]={ [1]={ @@ -160894,7 +166565,7 @@ return { [1]="life_and_energy_shield_recovery_rate_+%_if_stopped_taking_damage_over_time_recently" } }, - [6980]={ + [7227]={ [1]={ [1]={ limit={ @@ -160923,7 +166594,7 @@ return { [1]="life_and_energy_shield_recovery_rate_+%_per_minion_up_to_30%" } }, - [6981]={ + [7228]={ [1]={ [1]={ limit={ @@ -160952,7 +166623,7 @@ return { [1]="life_and_energy_shield_recovery_rate_+%_per_power_charge" } }, - [6982]={ + [7229]={ [1]={ [1]={ limit={ @@ -160981,7 +166652,7 @@ return { [1]="life_and_energy_shield_recovery_rate_+%_while_affected_by_malevolence" } }, - [6983]={ + [7230]={ [1]={ [1]={ [1]={ @@ -161013,7 +166684,7 @@ return { [1]="life_and_mana_leech_from_attack_damage_permyriad_if_killed_recently" } }, - [6984]={ + [7231]={ [1]={ [1]={ [1]={ @@ -161026,14 +166697,14 @@ return { [2]="#" } }, - text="Lose {0}% Life per Second for each Active Minion" + text="Lose {0}% Life per Second per Minion" } }, stats={ [1]="life_degeneration_permyriad_per_minute_per_minion" } }, - [6985]={ + [7232]={ [1]={ [1]={ limit={ @@ -161058,7 +166729,7 @@ return { [1]="life_flask_charges_recovered_per_3_seconds" } }, - [6986]={ + [7233]={ [1]={ [1]={ limit={ @@ -161074,7 +166745,7 @@ return { [1]="life_flask_effects_are_not_removed_at_full_life" } }, - [6987]={ + [7234]={ [1]={ [1]={ [1]={ @@ -161094,7 +166765,7 @@ return { [1]="life_flask_recovery_is_instant_while_on_low_life" } }, - [6988]={ + [7235]={ [1]={ [1]={ [1]={ @@ -161114,7 +166785,7 @@ return { [1]="life_flasks_gain_X_charges_every_3_seconds_if_you_have_not_used_a_life_flask_recently" } }, - [6989]={ + [7236]={ [1]={ [1]={ [1]={ @@ -161134,7 +166805,7 @@ return { [1]="life_flasks_gain_X_charges_on_suppressing_spell" } }, - [6990]={ + [7237]={ [1]={ [1]={ limit={ @@ -161150,7 +166821,7 @@ return { [1]="life_flasks_gain_a_charge_on_hit_once_per_second" } }, - [6991]={ + [7238]={ [1]={ [1]={ limit={ @@ -161175,7 +166846,7 @@ return { [1]="life_flasks_gain_x_charges_when_you_hit_your_marked_enemy" } }, - [6992]={ + [7239]={ [1]={ [1]={ limit={ @@ -161204,7 +166875,7 @@ return { [1]="life_gain_per_target_hit_while_affected_by_vitality" } }, - [6993]={ + [7240]={ [1]={ [1]={ [1]={ @@ -161241,7 +166912,7 @@ return { [1]="life_gain_per_target_if_have_used_a_vaal_skill_recently" } }, - [6994]={ + [7241]={ [1]={ [1]={ limit={ @@ -161270,7 +166941,7 @@ return { [1]="life_gained_on_attack_hit_vs_cursed_enemies" } }, - [6995]={ + [7242]={ [1]={ [1]={ limit={ @@ -161286,7 +166957,7 @@ return { [1]="life_gained_on_cull" } }, - [6996]={ + [7243]={ [1]={ [1]={ limit={ @@ -161302,7 +166973,7 @@ return { [1]="life_gained_on_kill_per_wither_stack_on_slain_enemy_%" } }, - [6997]={ + [7244]={ [1]={ [1]={ limit={ @@ -161318,7 +166989,7 @@ return { [1]="life_leech_applies_to_energy_shield_on_full_life" } }, - [6998]={ + [7245]={ [1]={ [1]={ [1]={ @@ -161338,7 +167009,7 @@ return { [1]="life_leech_from_any_damage_permyriad_while_affected_by_vitality" } }, - [6999]={ + [7246]={ [1]={ [1]={ [1]={ @@ -161362,7 +167033,7 @@ return { [1]="life_leech_from_any_damage_permyriad_while_focused" } }, - [7000]={ + [7247]={ [1]={ [1]={ [1]={ @@ -161386,7 +167057,7 @@ return { [1]="enemy_life_leech_from_any_damage_permyriad_while_focused" } }, - [7001]={ + [7248]={ [1]={ [1]={ [1]={ @@ -161410,7 +167081,7 @@ return { [1]="life_leech_from_any_damage_permyriad_with_at_least_5_total_power_frenzy_endurance_charges" } }, - [7002]={ + [7249]={ [1]={ [1]={ [1]={ @@ -161434,7 +167105,7 @@ return { [1]="life_leech_from_attack_damage_permyriad_per_frenzy_charge" } }, - [7003]={ + [7250]={ [1]={ [1]={ [1]={ @@ -161458,7 +167129,7 @@ return { [1]="life_leech_from_attack_damage_permyriad_vs_maimed_enemies" } }, - [7004]={ + [7251]={ [1]={ [1]={ [1]={ @@ -161482,7 +167153,7 @@ return { [1]="life_leech_from_attack_damage_permyriad_vs_taunted_enemies" } }, - [7005]={ + [7252]={ [1]={ [1]={ [1]={ @@ -161502,7 +167173,7 @@ return { [1]="life_leech_from_fire_damage_permyriad_while_affected_by_anger" } }, - [7006]={ + [7253]={ [1]={ [1]={ [1]={ @@ -161526,7 +167197,7 @@ return { [1]="life_leech_from_fire_damage_while_ignited_permyriad" } }, - [7007]={ + [7254]={ [1]={ [1]={ limit={ @@ -161542,7 +167213,7 @@ return { [1]="life_leech_from_minion_damage_%" } }, - [7008]={ + [7255]={ [1]={ [1]={ [1]={ @@ -161562,7 +167233,7 @@ return { [1]="life_leech_from_spell_damage_permyriad_while_you_have_arcane_surge" } }, - [7009]={ + [7256]={ [1]={ [1]={ limit={ @@ -161578,7 +167249,31 @@ return { [1]="life_leech_is_instant_for_exerted_attacks" } }, - [7010]={ + [7257]={ + [1]={ + [1]={ + [1]={ + k="divide_by_one_hundred", + v=1 + }, + [2]={ + k="reminderstring", + v="ReminderTextLifeLeech" + }, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% of Damage Taken from Hits is Leeched as Life per Socketed Red Gem" + } + }, + stats={ + [1]="life_leech_on_damage_taken_%_permyriad_per_socketed_red_gem" + } + }, + [7258]={ [1]={ [1]={ [1]={ @@ -161602,7 +167297,7 @@ return { [1]="life_leech_on_damage_taken_%_permyriad" } }, - [7011]={ + [7259]={ [1]={ [1]={ limit={ @@ -161618,7 +167313,7 @@ return { [1]="life_leech_%_is_instant" } }, - [7012]={ + [7260]={ [1]={ [1]={ limit={ @@ -161634,7 +167329,7 @@ return { [1]="life_leech_%_is_instant_per_defiance" } }, - [7013]={ + [7261]={ [1]={ [1]={ limit={ @@ -161650,7 +167345,7 @@ return { [1]="life_leech_%_is_instant_per_equipped_claw" } }, - [7014]={ + [7262]={ [1]={ [1]={ [1]={ @@ -161674,7 +167369,7 @@ return { [1]="life_leech_permyriad_vs_poisoned_enemies" } }, - [7015]={ + [7263]={ [1]={ [1]={ limit={ @@ -161690,7 +167385,7 @@ return { [1]="life_leech_speed_is_doubled" } }, - [7016]={ + [7264]={ [1]={ [1]={ [1]={ @@ -161714,7 +167409,7 @@ return { [1]="life_loss_%_per_minute_if_have_been_hit_recently" } }, - [7017]={ + [7265]={ [1]={ [1]={ [1]={ @@ -161734,7 +167429,7 @@ return { [1]="life_loss_%_per_minute_per_rage_while_not_losing_rage" } }, - [7018]={ + [7266]={ [1]={ [1]={ [1]={ @@ -161787,7 +167482,7 @@ return { [1]="life_mana_es_leech_speed_+%" } }, - [7019]={ + [7267]={ [1]={ [1]={ limit={ @@ -161816,7 +167511,7 @@ return { [1]="life_mana_es_recovery_rate_+%_per_different_tribe_tattoos_allocated" } }, - [7020]={ + [7268]={ [1]={ [1]={ limit={ @@ -161845,7 +167540,7 @@ return { [1]="life_mana_es_recovery_rate_+%_per_endurance_charge" } }, - [7021]={ + [7269]={ [1]={ [1]={ limit={ @@ -161861,7 +167556,7 @@ return { [1]="life_mastery_count_maximum_life_+%_final" } }, - [7022]={ + [7270]={ [1]={ [1]={ limit={ @@ -161877,7 +167572,7 @@ return { [1]="life_per_level" } }, - [7023]={ + [7271]={ [1]={ [1]={ [1]={ @@ -161897,7 +167592,7 @@ return { [1]="life_recoup_also_applies_to_energy_shield" } }, - [7024]={ + [7272]={ [1]={ [1]={ [1]={ @@ -161917,7 +167612,7 @@ return { [1]="life_recoup_applies_to_energy_shield_instead" } }, - [7025]={ + [7273]={ [1]={ [1]={ limit={ @@ -161933,7 +167628,7 @@ return { [1]="life_recovery_from_flasks_instead_applies_to_nearby_allies_%" } }, - [7026]={ + [7274]={ [1]={ [1]={ limit={ @@ -161949,7 +167644,7 @@ return { [1]="life_recovery_from_regeneration_is_not_applied" } }, - [7027]={ + [7275]={ [1]={ [1]={ [1]={ @@ -161986,7 +167681,7 @@ return { [1]="life_recovery_+%_from_flasks_while_on_low_life" } }, - [7028]={ + [7276]={ [1]={ [1]={ [1]={ @@ -162023,7 +167718,7 @@ return { [1]="life_recovery_rate_+%_if_have_taken_fire_damage_from_an_enemy_hit_recently" } }, - [7029]={ + [7277]={ [1]={ [1]={ [1]={ @@ -162060,7 +167755,7 @@ return { [1]="life_recovery_rate_+%_if_havent_killed_recently" } }, - [7030]={ + [7278]={ [1]={ [1]={ limit={ @@ -162089,7 +167784,7 @@ return { [1]="life_recovery_rate_+%_while_affected_by_vitality" } }, - [7031]={ + [7279]={ [1]={ [1]={ [1]={ @@ -162109,7 +167804,7 @@ return { [1]="life_regeneration_%_per_minute_if_stunned_an_enemy_recently" } }, - [7032]={ + [7280]={ [1]={ [1]={ [1]={ @@ -162133,7 +167828,7 @@ return { [1]="life_regeneration_per_minute_per_1%_uncapped_fire_damage_resistance" } }, - [7033]={ + [7281]={ [1]={ [1]={ [1]={ @@ -162153,7 +167848,7 @@ return { [1]="life_regeneration_per_minute_per_active_buff" } }, - [7034]={ + [7282]={ [1]={ [1]={ [1]={ @@ -162173,7 +167868,7 @@ return { [1]="life_regeneration_per_minute_per_nearby_corpse" } }, - [7035]={ + [7283]={ [1]={ [1]={ [1]={ @@ -162197,7 +167892,7 @@ return { [1]="life_regeneration_per_minute_%_per_ailment_affecting_you" } }, - [7036]={ + [7284]={ [1]={ [1]={ [1]={ @@ -162217,7 +167912,7 @@ return { [1]="life_regeneration_per_minute_%_per_fortification" } }, - [7037]={ + [7285]={ [1]={ [1]={ [1]={ @@ -162237,7 +167932,7 @@ return { [1]="life_regeneration_per_minute_%_while_affected_by_guard_skill" } }, - [7038]={ + [7286]={ [1]={ [1]={ [1]={ @@ -162257,7 +167952,7 @@ return { [1]="life_regeneration_per_minute_%_while_burning" } }, - [7039]={ + [7287]={ [1]={ [1]={ [1]={ @@ -162277,7 +167972,7 @@ return { [1]="life_regeneration_per_minute_%_while_channelling" } }, - [7040]={ + [7288]={ [1]={ [1]={ [1]={ @@ -162297,7 +167992,7 @@ return { [1]="life_regeneration_per_minute_while_affected_by_vitality" } }, - [7041]={ + [7289]={ [1]={ [1]={ [1]={ @@ -162317,7 +168012,7 @@ return { [1]="life_regeneration_per_minute_while_ignited" } }, - [7042]={ + [7290]={ [1]={ [1]={ [1]={ @@ -162337,7 +168032,7 @@ return { [1]="life_regeneration_per_minute_while_moving" } }, - [7043]={ + [7291]={ [1]={ [1]={ [1]={ @@ -162357,7 +168052,7 @@ return { [1]="life_regeneration_per_minute_while_you_have_avians_flight" } }, - [7044]={ + [7292]={ [1]={ [1]={ [1]={ @@ -162381,7 +168076,7 @@ return { [1]="life_regeneration_%_per_minute_if_detonated_mine_recently" } }, - [7045]={ + [7293]={ [1]={ [1]={ [1]={ @@ -162405,7 +168100,7 @@ return { [1]="life_regeneration_%_per_minute_if_player_minion_died_recently" } }, - [7046]={ + [7294]={ [1]={ [1]={ [1]={ @@ -162429,7 +168124,7 @@ return { [1]="life_regeneration_rate_per_minute_%_if_hit_cursed_enemy_recently" } }, - [7047]={ + [7295]={ [1]={ [1]={ [1]={ @@ -162449,7 +168144,7 @@ return { [1]="life_regeneration_rate_per_minute_%_while_affected_by_vitality" } }, - [7048]={ + [7296]={ [1]={ [1]={ [1]={ @@ -162473,7 +168168,7 @@ return { [1]="life_regeneration_rate_per_minute_%_if_blocked_recently" } }, - [7049]={ + [7297]={ [1]={ [1]={ [1]={ @@ -162497,7 +168192,7 @@ return { [1]="life_regeneration_rate_per_minute_%_if_consumed_corpse_recently" } }, - [7050]={ + [7298]={ [1]={ [1]={ [1]={ @@ -162517,7 +168212,7 @@ return { [1]="life_regeneration_rate_per_minute_%_if_crit_in_past_8_seconds" } }, - [7051]={ + [7299]={ [1]={ [1]={ [1]={ @@ -162541,7 +168236,7 @@ return { [1]="life_regeneration_rate_per_minute_%_if_have_been_hit_recently" } }, - [7052]={ + [7300]={ [1]={ [1]={ [1]={ @@ -162565,7 +168260,7 @@ return { [1]="life_regeneration_rate_per_minute_%_if_have_taken_fire_damage_from_an_enemy_hit_recently" } }, - [7053]={ + [7301]={ [1]={ [1]={ [1]={ @@ -162585,7 +168280,7 @@ return { [1]="life_regeneration_rate_per_minute_%_if_used_life_flask_in_past_10_seconds" } }, - [7054]={ + [7302]={ [1]={ [1]={ [1]={ @@ -162605,7 +168300,7 @@ return { [1]="life_regeneration_rate_per_minute_%_per_500_maximum_energy_shield" } }, - [7055]={ + [7303]={ [1]={ [1]={ [1]={ @@ -162629,7 +168324,7 @@ return { [1]="life_regeneration_rate_per_minute_%_per_mine_detonated_recently_up_to_20%" } }, - [7056]={ + [7304]={ [1]={ [1]={ [1]={ @@ -162649,7 +168344,7 @@ return { [1]="life_regeneration_rate_per_minute_%_per_nearby_corpse_up_to_3%" } }, - [7057]={ + [7305]={ [1]={ [1]={ [1]={ @@ -162669,7 +168364,7 @@ return { [1]="life_regeneration_rate_per_minute_%_per_power_charge" } }, - [7058]={ + [7306]={ [1]={ [1]={ [1]={ @@ -162689,7 +168384,7 @@ return { [1]="life_regeneration_rate_per_minute_%_per_raised_zombie" } }, - [7059]={ + [7307]={ [1]={ [1]={ [1]={ @@ -162713,7 +168408,7 @@ return { [1]="life_regeneration_rate_per_minute_%_per_trap_triggered_recently_up_to_20%" } }, - [7060]={ + [7308]={ [1]={ [1]={ [1]={ @@ -162733,7 +168428,7 @@ return { [1]="life_regeneration_rate_per_minute_%_while_moving" } }, - [7061]={ + [7309]={ [1]={ [1]={ [1]={ @@ -162753,7 +168448,7 @@ return { [1]="life_regeneration_rate_per_minute_%_while_stationary" } }, - [7062]={ + [7310]={ [1]={ [1]={ [1]={ @@ -162773,7 +168468,7 @@ return { [1]="life_regeneration_rate_per_minute_%_while_using_flask" } }, - [7063]={ + [7311]={ [1]={ [1]={ [1]={ @@ -162793,7 +168488,7 @@ return { [1]="life_regeneration_rate_per_minute_%_with_400_or_more_strength" } }, - [7064]={ + [7312]={ [1]={ [1]={ [1]={ @@ -162817,7 +168512,7 @@ return { [1]="life_regeneration_rate_per_minute_while_on_low_life" } }, - [7065]={ + [7313]={ [1]={ [1]={ limit={ @@ -162833,7 +168528,7 @@ return { [1]="light_radius_increases_apply_to_accuracy" } }, - [7066]={ + [7314]={ [1]={ [1]={ limit={ @@ -162849,7 +168544,7 @@ return { [1]="light_radius_increases_apply_to_area_of_effect" } }, - [7067]={ + [7315]={ [1]={ [1]={ [1]={ @@ -162886,7 +168581,7 @@ return { [1]="lightning_ailment_duration_+%" } }, - [7068]={ + [7316]={ [1]={ [1]={ [1]={ @@ -162923,7 +168618,7 @@ return { [1]="lightning_ailment_effect_+%_against_chilled_enemies" } }, - [7069]={ + [7317]={ [1]={ [1]={ [1]={ @@ -162960,7 +168655,7 @@ return { [1]="lightning_ailment_effect_+%" } }, - [7070]={ + [7318]={ [1]={ [1]={ [1]={ @@ -162997,7 +168692,7 @@ return { [1]="lightning_ailments_effect_+%_final_if_hit_highest_lightning" } }, - [7071]={ + [7319]={ [1]={ [1]={ limit={ @@ -163013,7 +168708,7 @@ return { [1]="lightning_and_chaos_damage_resistance_%" } }, - [7072]={ + [7320]={ [1]={ [1]={ [1]={ @@ -163033,7 +168728,7 @@ return { [1]="lightning_arrow_and_ice_shot_all_damage_can_ignite" } }, - [7073]={ + [7321]={ [1]={ [1]={ [1]={ @@ -163053,7 +168748,7 @@ return { [1]="lightning_arrow_and_ice_shot_ignite_damage_+100%_final_chance" } }, - [7074]={ + [7322]={ [1]={ [1]={ limit={ @@ -163078,7 +168773,7 @@ return { [1]="lightning_arrow_%_chance_to_hit_an_additional_enemy" } }, - [7075]={ + [7323]={ [1]={ [1]={ limit={ @@ -163094,7 +168789,7 @@ return { [1]="lightning_conduit_and_galvanic_field_shatter_on_killing_blow" } }, - [7076]={ + [7324]={ [1]={ [1]={ limit={ @@ -163123,7 +168818,7 @@ return { [1]="lightning_conduit_area_of_effect_+%" } }, - [7077]={ + [7325]={ [1]={ [1]={ limit={ @@ -163139,7 +168834,7 @@ return { [1]="lightning_conduit_cast_speed_+%" } }, - [7078]={ + [7326]={ [1]={ [1]={ limit={ @@ -163168,7 +168863,7 @@ return { [1]="lightning_conduit_damage_+%" } }, - [7079]={ + [7327]={ [1]={ [1]={ limit={ @@ -163184,7 +168879,7 @@ return { [1]="lightning_damage_can_ignite" } }, - [7080]={ + [7328]={ [1]={ [1]={ limit={ @@ -163200,7 +168895,7 @@ return { [1]="lightning_damage_+%_per_lightning_resistance_above_75" } }, - [7081]={ + [7329]={ [1]={ [1]={ limit={ @@ -163216,7 +168911,7 @@ return { [1]="lightning_damage_%_to_add_as_chaos_per_power_charge" } }, - [7082]={ + [7330]={ [1]={ [1]={ limit={ @@ -163232,7 +168927,7 @@ return { [1]="lightning_damage_%_to_add_as_cold_per_2%_shock_effect_on_enemy" } }, - [7083]={ + [7331]={ [1]={ [1]={ limit={ @@ -163248,7 +168943,7 @@ return { [1]="lightning_damage_%_to_add_as_cold_vs_chilled_enemies" } }, - [7084]={ + [7332]={ [1]={ [1]={ limit={ @@ -163277,7 +168972,7 @@ return { [1]="lightning_damage_+%_while_affected_by_herald_of_thunder" } }, - [7085]={ + [7333]={ [1]={ [1]={ limit={ @@ -163306,7 +169001,7 @@ return { [1]="lightning_damage_+%_while_affected_by_wrath" } }, - [7086]={ + [7334]={ [1]={ [1]={ limit={ @@ -163322,7 +169017,7 @@ return { [1]="lightning_damage_resistance_%_while_affected_by_herald_of_thunder" } }, - [7087]={ + [7335]={ [1]={ [1]={ [1]={ @@ -163342,7 +169037,7 @@ return { [1]="lightning_damage_taken_goes_to_life_over_4_seconds_%" } }, - [7088]={ + [7336]={ [1]={ [1]={ limit={ @@ -163358,7 +169053,7 @@ return { [1]="lightning_damage_taken_+" } }, - [7089]={ + [7337]={ [1]={ [1]={ limit={ @@ -163387,7 +169082,7 @@ return { [1]="lightning_damage_with_attack_skills_+%" } }, - [7090]={ + [7338]={ [1]={ [1]={ limit={ @@ -163416,7 +169111,7 @@ return { [1]="lightning_damage_with_spell_skills_+%" } }, - [7091]={ + [7339]={ [1]={ [1]={ limit={ @@ -163445,7 +169140,7 @@ return { [1]="lightning_explosion_mine_aura_effect_+%" } }, - [7092]={ + [7340]={ [1]={ [1]={ limit={ @@ -163474,7 +169169,7 @@ return { [1]="lightning_explosion_mine_damage_+%" } }, - [7093]={ + [7341]={ [1]={ [1]={ limit={ @@ -163503,7 +169198,7 @@ return { [1]="lightning_explosion_mine_throwing_speed_+%" } }, - [7094]={ + [7342]={ [1]={ [1]={ [1]={ @@ -163523,7 +169218,7 @@ return { [1]="lightning_exposure_on_hit_magnitude" } }, - [7095]={ + [7343]={ [1]={ [1]={ limit={ @@ -163539,7 +169234,7 @@ return { [1]="lightning_hit_and_dot_damage_%_taken_as_fire" } }, - [7096]={ + [7344]={ [1]={ [1]={ limit={ @@ -163568,7 +169263,7 @@ return { [1]="lightning_hit_damage_+%_vs_chilled_enemies" } }, - [7097]={ + [7345]={ [1]={ [1]={ limit={ @@ -163597,7 +169292,7 @@ return { [1]="lightning_reflect_damage_taken_+%_while_affected_by_purity_of_lightning" } }, - [7098]={ + [7346]={ [1]={ [1]={ limit={ @@ -163613,7 +169308,7 @@ return { [1]="lightning_resistance_cannot_be_penetrated" } }, - [7099]={ + [7347]={ [1]={ [1]={ limit={ @@ -163629,7 +169324,7 @@ return { [1]="lightning_resistance_does_not_apply_to_lighting_damage" } }, - [7100]={ + [7348]={ [1]={ [1]={ [1]={ @@ -163649,7 +169344,23 @@ return { [1]="lightning_skill_chance_to_inflict_lightning_exposure_%" } }, - [7101]={ + [7349]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d} to Level of all Lightning Skill Gems if at least 4 Foulborn Unique Items are Equipped" + } + }, + stats={ + [1]="lightning_skill_gem_level_+_if_at_least_4_foulborn_uniques_equipped" + } + }, + [7350]={ [1]={ [1]={ limit={ @@ -163665,7 +169376,7 @@ return { [1]="lightning_skill_gem_level_+" } }, - [7102]={ + [7351]={ [1]={ [1]={ [1]={ @@ -163702,7 +169413,7 @@ return { [1]="lightning_skill_mana_cost_+%_final_while_shocked" } }, - [7103]={ + [7352]={ [1]={ [1]={ [1]={ @@ -163739,7 +169450,7 @@ return { [1]="lightning_skill_stun_threshold_+%" } }, - [7104]={ + [7353]={ [1]={ [1]={ [1]={ @@ -163759,7 +169470,7 @@ return { [1]="lightning_skills_chance_to_poison_on_hit_%" } }, - [7105]={ + [7354]={ [1]={ [1]={ limit={ @@ -163775,7 +169486,7 @@ return { [1]="lightning_spell_physical_damage_%_to_convert_to_lightning" } }, - [7106]={ + [7355]={ [1]={ [1]={ [1]={ @@ -163795,7 +169506,7 @@ return { [1]="lightning_strike_and_frost_blades_all_damage_can_ignite" } }, - [7107]={ + [7356]={ [1]={ [1]={ [1]={ @@ -163815,7 +169526,7 @@ return { [1]="lightning_strike_and_frost_blades_ignite_damage_+100%_final_chance" } }, - [7108]={ + [7357]={ [1]={ [1]={ limit={ @@ -163844,7 +169555,7 @@ return { [1]="lightning_tendrils_skill_area_of_effect_+%_per_enemy_hit" } }, - [7109]={ + [7358]={ [1]={ [1]={ limit={ @@ -163873,7 +169584,7 @@ return { [1]="lightning_tendrils_totems_from_this_skill_grant_spark_effect_duration_+%_to_parent" } }, - [7110]={ + [7359]={ [1]={ [1]={ limit={ @@ -163898,7 +169609,7 @@ return { [1]="lightning_tower_trap_additional_number_of_beams" } }, - [7111]={ + [7360]={ [1]={ [1]={ limit={ @@ -163927,7 +169638,7 @@ return { [1]="lightning_tower_trap_cast_speed_+%" } }, - [7112]={ + [7361]={ [1]={ [1]={ limit={ @@ -163956,7 +169667,7 @@ return { [1]="lightning_tower_trap_cooldown_speed_+%" } }, - [7113]={ + [7362]={ [1]={ [1]={ limit={ @@ -163985,7 +169696,7 @@ return { [1]="lightning_tower_trap_damage_+%" } }, - [7114]={ + [7363]={ [1]={ [1]={ limit={ @@ -164014,7 +169725,7 @@ return { [1]="lightning_tower_trap_duration_+%" } }, - [7115]={ + [7364]={ [1]={ [1]={ limit={ @@ -164043,7 +169754,7 @@ return { [1]="lightning_tower_trap_throwing_speed_+%" } }, - [7116]={ + [7365]={ [1]={ [1]={ limit={ @@ -164059,7 +169770,7 @@ return { [1]="lightning_trap_lightning_resistance_penetration_%" } }, - [7117]={ + [7366]={ [1]={ [1]={ limit={ @@ -164088,7 +169799,7 @@ return { [1]="lightning_trap_shock_effect_+%" } }, - [7118]={ + [7367]={ [1]={ [1]={ limit={ @@ -164104,7 +169815,7 @@ return { [1]="link_buff_effect_+%_on_animate_guardian" } }, - [7119]={ + [7368]={ [1]={ [1]={ limit={ @@ -164133,7 +169844,7 @@ return { [1]="link_effect_+%_when_50%_expired" } }, - [7120]={ + [7369]={ [1]={ [1]={ limit={ @@ -164154,7 +169865,7 @@ return { [2]="link_grace_period_8_second_override" } }, - [7121]={ + [7370]={ [1]={ [1]={ limit={ @@ -164183,7 +169894,7 @@ return { [1]="link_skill_buff_effect_+%" } }, - [7122]={ + [7371]={ [1]={ [1]={ [1]={ @@ -164220,7 +169931,7 @@ return { [1]="link_skill_buff_effect_+%_if_linked_target_recently" } }, - [7123]={ + [7372]={ [1]={ [1]={ limit={ @@ -164249,7 +169960,7 @@ return { [1]="link_skill_cast_speed_+%" } }, - [7124]={ + [7373]={ [1]={ [1]={ limit={ @@ -164265,7 +169976,7 @@ return { [1]="link_skill_cost_life_instead_of_mana" } }, - [7125]={ + [7374]={ [1]={ [1]={ limit={ @@ -164294,7 +170005,7 @@ return { [1]="link_skill_duration_+%" } }, - [7126]={ + [7375]={ [1]={ [1]={ limit={ @@ -164310,7 +170021,7 @@ return { [1]="link_skill_gem_level_+" } }, - [7127]={ + [7376]={ [1]={ [1]={ limit={ @@ -164326,7 +170037,7 @@ return { [1]="link_skill_link_target_cannot_die_for_X_seconds" } }, - [7128]={ + [7377]={ [1]={ [1]={ limit={ @@ -164342,7 +170053,7 @@ return { [1]="link_skill_lose_no_experience_on_link_target_death" } }, - [7129]={ + [7378]={ [1]={ [1]={ limit={ @@ -164371,7 +170082,7 @@ return { [1]="link_skill_mana_cost_+%" } }, - [7130]={ + [7379]={ [1]={ [1]={ [1]={ @@ -164391,7 +170102,7 @@ return { [1]="link_skills_allies_in_beam_lucky_elemental_damage" } }, - [7131]={ + [7380]={ [1]={ [1]={ [1]={ @@ -164411,7 +170122,7 @@ return { [1]="link_skills_allies_in_beam_max_elemental_resistance_%" } }, - [7132]={ + [7381]={ [1]={ [1]={ limit={ @@ -164427,7 +170138,7 @@ return { [1]="link_skills_can_target_animate_guardian" } }, - [7133]={ + [7382]={ [1]={ [1]={ limit={ @@ -164443,7 +170154,7 @@ return { [1]="link_skills_can_target_minions" } }, - [7134]={ + [7383]={ [1]={ [1]={ [1]={ @@ -164463,7 +170174,7 @@ return { [1]="link_skills_enemies_in_beam_aoe_cannot_inflict_elemental_ailments" } }, - [7135]={ + [7384]={ [1]={ [1]={ limit={ @@ -164479,7 +170190,7 @@ return { [1]="link_skills_enemies_in_beam_elemental_resistance_%" } }, - [7136]={ + [7385]={ [1]={ [1]={ limit={ @@ -164508,7 +170219,7 @@ return { [1]="link_skills_grant_damage_+%" } }, - [7137]={ + [7386]={ [1]={ [1]={ limit={ @@ -164537,7 +170248,56 @@ return { [1]="link_skills_grant_damage_taken_+%" } }, - [7138]={ + [7387]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Your Linked Minions take {0}% more Damage" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Your Linked Minions take {0}% less Damage" + } + }, + stats={ + [1]="link_skills_grant_minions_damage_taken_+%_final_from_hallowed_monarch" + } + }, + [7388]={ + [1]={ + [1]={ + [1]={ + k="divide_by_one_hundred", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="On Killing a Rare monster, a random Linked Minion gains its Modifiers for {0} seconds" + } + }, + stats={ + [1]="link_skills_grant_random_linked_minion_rare_monster_mods_on_kill_centiseconds" + } + }, + [7389]={ [1]={ [1]={ limit={ @@ -164553,7 +170313,7 @@ return { [1]="link_skills_grant_redirect_curses_to_link_source" } }, - [7139]={ + [7390]={ [1]={ [1]={ [1]={ @@ -164573,7 +170333,7 @@ return { [1]="link_skills_grant_redirect_elemental_ailments_to_link_source" } }, - [7140]={ + [7391]={ [1]={ [1]={ limit={ @@ -164598,7 +170358,7 @@ return { [1]="link_to_X_additional_random_allies" } }, - [7141]={ + [7392]={ [1]={ [1]={ limit={ @@ -164614,7 +170374,7 @@ return { [1]="linked_targets_share_endurance_frenzy_power_charges_with_you" } }, - [7142]={ + [7393]={ [1]={ [1]={ limit={ @@ -164630,7 +170390,7 @@ return { [1]="local_accuracy_rating_+%_per_2%_quality" } }, - [7143]={ + [7394]={ [1]={ [1]={ limit={ @@ -164646,7 +170406,7 @@ return { [1]="local_affliction_jewel_display_small_nodes_grant_nothing" } }, - [7144]={ + [7395]={ [1]={ [1]={ limit={ @@ -164662,7 +170422,7 @@ return { [1]="local_affliction_jewel_small_nodes_grant_all_attributes" } }, - [7145]={ + [7396]={ [1]={ [1]={ limit={ @@ -164678,7 +170438,7 @@ return { [1]="local_affliction_jewel_small_nodes_grant_armour" } }, - [7146]={ + [7397]={ [1]={ [1]={ limit={ @@ -164694,7 +170454,7 @@ return { [1]="local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_while_affected_by_a_herald" } }, - [7147]={ + [7398]={ [1]={ [1]={ limit={ @@ -164710,7 +170470,7 @@ return { [1]="local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_with_channelling_skills" } }, - [7148]={ + [7399]={ [1]={ [1]={ limit={ @@ -164726,7 +170486,7 @@ return { [1]="local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_with_chaos_skills" } }, - [7149]={ + [7400]={ [1]={ [1]={ limit={ @@ -164742,7 +170502,7 @@ return { [1]="local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_with_cold_skills" } }, - [7150]={ + [7401]={ [1]={ [1]={ limit={ @@ -164758,7 +170518,7 @@ return { [1]="local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_with_elemental_skills" } }, - [7151]={ + [7402]={ [1]={ [1]={ limit={ @@ -164774,7 +170534,7 @@ return { [1]="local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_with_fire_skills" } }, - [7152]={ + [7403]={ [1]={ [1]={ limit={ @@ -164790,7 +170550,7 @@ return { [1]="local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_with_lightning_skills" } }, - [7153]={ + [7404]={ [1]={ [1]={ limit={ @@ -164806,7 +170566,7 @@ return { [1]="local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_with_physical_skills" } }, - [7154]={ + [7405]={ [1]={ [1]={ limit={ @@ -164822,7 +170582,7 @@ return { [1]="local_affliction_jewel_small_nodes_grant_attack_speed_+%" } }, - [7155]={ + [7406]={ [1]={ [1]={ limit={ @@ -164838,7 +170598,7 @@ return { [1]="local_affliction_jewel_small_nodes_grant_base_aura_area_of_effect_+%" } }, - [7156]={ + [7407]={ [1]={ [1]={ limit={ @@ -164854,7 +170614,7 @@ return { [1]="local_affliction_jewel_small_nodes_grant_base_cast_speed_+%" } }, - [7157]={ + [7408]={ [1]={ [1]={ limit={ @@ -164870,7 +170630,7 @@ return { [1]="local_affliction_jewel_small_nodes_grant_base_critical_strike_multiplier_+" } }, - [7158]={ + [7409]={ [1]={ [1]={ limit={ @@ -164886,7 +170646,7 @@ return { [1]="local_affliction_jewel_small_nodes_grant_base_elemental_status_ailment_duration_+%" } }, - [7159]={ + [7410]={ [1]={ [1]={ limit={ @@ -164902,7 +170662,7 @@ return { [1]="local_affliction_jewel_small_nodes_grant_base_projectile_speed_+%" } }, - [7160]={ + [7411]={ [1]={ [1]={ limit={ @@ -164918,7 +170678,7 @@ return { [1]="local_affliction_jewel_small_nodes_grant_base_skill_area_of_effect_+%" } }, - [7161]={ + [7412]={ [1]={ [1]={ limit={ @@ -164934,7 +170694,7 @@ return { [1]="local_affliction_jewel_small_nodes_grant_chaos_resistance_%" } }, - [7162]={ + [7413]={ [1]={ [1]={ limit={ @@ -164950,7 +170710,7 @@ return { [1]="local_affliction_jewel_small_nodes_grant_charges_gained_+%" } }, - [7163]={ + [7414]={ [1]={ [1]={ limit={ @@ -164966,7 +170726,7 @@ return { [1]="local_affliction_jewel_small_nodes_grant_cold_resistance_%" } }, - [7164]={ + [7415]={ [1]={ [1]={ limit={ @@ -164982,7 +170742,7 @@ return { [1]="local_affliction_jewel_small_nodes_grant_curse_area_of_effect_+%" } }, - [7165]={ + [7416]={ [1]={ [1]={ limit={ @@ -164998,7 +170758,7 @@ return { [1]="local_affliction_jewel_small_nodes_grant_damage_over_time_+%" } }, - [7166]={ + [7417]={ [1]={ [1]={ limit={ @@ -165014,7 +170774,7 @@ return { [1]="local_affliction_jewel_small_nodes_grant_damage_+%" } }, - [7167]={ + [7418]={ [1]={ [1]={ limit={ @@ -165030,7 +170790,7 @@ return { [1]="local_affliction_jewel_small_nodes_grant_dex" } }, - [7168]={ + [7419]={ [1]={ [1]={ limit={ @@ -165046,7 +170806,7 @@ return { [1]="local_affliction_jewel_small_nodes_grant_elemental_resistance_%" } }, - [7169]={ + [7420]={ [1]={ [1]={ limit={ @@ -165062,7 +170822,7 @@ return { [1]="local_affliction_jewel_small_nodes_grant_evasion" } }, - [7170]={ + [7421]={ [1]={ [1]={ limit={ @@ -165078,7 +170838,7 @@ return { [1]="local_affliction_jewel_small_nodes_grant_fire_resistance_%" } }, - [7171]={ + [7422]={ [1]={ [1]={ limit={ @@ -165094,7 +170854,7 @@ return { [1]="local_affliction_jewel_small_nodes_grant_int" } }, - [7172]={ + [7423]={ [1]={ [1]={ limit={ @@ -165110,7 +170870,7 @@ return { [1]="local_affliction_jewel_small_nodes_grant_lightning_resistance_%" } }, - [7173]={ + [7424]={ [1]={ [1]={ limit={ @@ -165126,7 +170886,7 @@ return { [1]="local_affliction_jewel_small_nodes_grant_mana_regeneration_+%" } }, - [7174]={ + [7425]={ [1]={ [1]={ limit={ @@ -165142,7 +170902,7 @@ return { [1]="local_affliction_jewel_small_nodes_grant_maximum_energy_shield" } }, - [7175]={ + [7426]={ [1]={ [1]={ limit={ @@ -165158,7 +170918,7 @@ return { [1]="local_affliction_jewel_small_nodes_grant_maximum_life" } }, - [7176]={ + [7427]={ [1]={ [1]={ limit={ @@ -165174,7 +170934,7 @@ return { [1]="local_affliction_jewel_small_nodes_grant_maximum_mana" } }, - [7177]={ + [7428]={ [1]={ [1]={ limit={ @@ -165190,7 +170950,7 @@ return { [1]="local_affliction_jewel_small_nodes_grant_minion_attack_and_cast_speed_+%" } }, - [7178]={ + [7429]={ [1]={ [1]={ limit={ @@ -165206,7 +170966,7 @@ return { [1]="local_affliction_jewel_small_nodes_grant_minion_attack_and_cast_speed_+%_while_you_are_affected_by_a_herald" } }, - [7179]={ + [7430]={ [1]={ [1]={ [1]={ @@ -165226,7 +170986,7 @@ return { [1]="local_affliction_jewel_small_nodes_grant_minion_life_regeneration_rate_per_minute_%" } }, - [7180]={ + [7431]={ [1]={ [1]={ [1]={ @@ -165250,7 +171010,7 @@ return { [1]="local_affliction_jewel_small_nodes_grant_%_life_regeneration_per_minute" } }, - [7181]={ + [7432]={ [1]={ [1]={ limit={ @@ -165266,7 +171026,7 @@ return { [1]="local_affliction_jewel_small_nodes_grant_sigil_target_search_range_+%" } }, - [7182]={ + [7433]={ [1]={ [1]={ limit={ @@ -165282,7 +171042,7 @@ return { [1]="local_affliction_jewel_small_nodes_grant_str" } }, - [7183]={ + [7434]={ [1]={ [1]={ limit={ @@ -165298,7 +171058,7 @@ return { [1]="local_affliction_jewel_small_nodes_grant_summon_totem_cast_speed_+%" } }, - [7184]={ + [7435]={ [1]={ [1]={ limit={ @@ -165314,7 +171074,7 @@ return { [1]="local_affliction_jewel_small_nodes_grant_trap_and_mine_throwing_speed_+%" } }, - [7185]={ + [7436]={ [1]={ [1]={ limit={ @@ -165330,7 +171090,7 @@ return { [1]="local_affliction_jewel_small_nodes_grant_warcry_duration_+%" } }, - [7186]={ + [7437]={ [1]={ [1]={ limit={ @@ -165346,7 +171106,7 @@ return { [1]="local_affliction_jewel_small_nodes_have_effect_+%" } }, - [7187]={ + [7438]={ [1]={ [1]={ limit={ @@ -165362,7 +171122,7 @@ return { [1]="local_affliction_notable_adrenaline" } }, - [7188]={ + [7439]={ [1]={ [1]={ limit={ @@ -165378,7 +171138,7 @@ return { [1]="local_affliction_notable_advance_guard" } }, - [7189]={ + [7440]={ [1]={ [1]={ limit={ @@ -165394,7 +171154,7 @@ return { [1]="local_affliction_notable_aerialist" } }, - [7190]={ + [7441]={ [1]={ [1]={ limit={ @@ -165410,7 +171170,7 @@ return { [1]="local_affliction_notable_aerodynamics" } }, - [7191]={ + [7442]={ [1]={ [1]={ limit={ @@ -165426,7 +171186,7 @@ return { [1]="local_affliction_notable_agent_of_destruction" } }, - [7192]={ + [7443]={ [1]={ [1]={ limit={ @@ -165442,7 +171202,7 @@ return { [1]="local_affliction_notable_aggressive_defence" } }, - [7193]={ + [7444]={ [1]={ [1]={ limit={ @@ -165458,7 +171218,7 @@ return { [1]="local_affliction_notable_alchemist" } }, - [7194]={ + [7445]={ [1]={ [1]={ limit={ @@ -165474,7 +171234,7 @@ return { [1]="local_affliction_notable_ancestral_echo" } }, - [7195]={ + [7446]={ [1]={ [1]={ limit={ @@ -165490,7 +171250,7 @@ return { [1]="local_affliction_notable_ancestral_guidance" } }, - [7196]={ + [7447]={ [1]={ [1]={ limit={ @@ -165506,7 +171266,7 @@ return { [1]="local_affliction_notable_ancestral_inspiration" } }, - [7197]={ + [7448]={ [1]={ [1]={ limit={ @@ -165522,7 +171282,7 @@ return { [1]="local_affliction_notable_ancestral_might" } }, - [7198]={ + [7449]={ [1]={ [1]={ limit={ @@ -165538,7 +171298,7 @@ return { [1]="local_affliction_notable_ancestral_preservation" } }, - [7199]={ + [7450]={ [1]={ [1]={ limit={ @@ -165554,7 +171314,7 @@ return { [1]="local_affliction_notable_ancestral_reach" } }, - [7200]={ + [7451]={ [1]={ [1]={ limit={ @@ -165570,7 +171330,7 @@ return { [1]="local_affliction_notable_antifreeze" } }, - [7201]={ + [7452]={ [1]={ [1]={ limit={ @@ -165586,7 +171346,7 @@ return { [1]="local_affliction_notable_antivenom" } }, - [7202]={ + [7453]={ [1]={ [1]={ limit={ @@ -165602,7 +171362,7 @@ return { [1]="local_affliction_notable_arcane_focus" } }, - [7203]={ + [7454]={ [1]={ [1]={ limit={ @@ -165618,7 +171378,7 @@ return { [1]="local_affliction_notable_arcane_heroism" } }, - [7204]={ + [7455]={ [1]={ [1]={ limit={ @@ -165634,7 +171394,7 @@ return { [1]="local_affliction_notable_arcane_pyrotechnics" } }, - [7205]={ + [7456]={ [1]={ [1]={ limit={ @@ -165650,7 +171410,7 @@ return { [1]="local_affliction_notable_arcing_shot" } }, - [7206]={ + [7457]={ [1]={ [1]={ limit={ @@ -165666,7 +171426,7 @@ return { [1]="local_affliction_notable_assert_dominance" } }, - [7207]={ + [7458]={ [1]={ [1]={ limit={ @@ -165682,7 +171442,7 @@ return { [1]="local_affliction_notable_astonishing_affliction" } }, - [7208]={ + [7459]={ [1]={ [1]={ limit={ @@ -165698,7 +171458,7 @@ return { [1]="local_affliction_notable_basics_of_pain" } }, - [7209]={ + [7460]={ [1]={ [1]={ limit={ @@ -165714,7 +171474,7 @@ return { [1]="local_affliction_notable_battle_hardened" } }, - [7210]={ + [7461]={ [1]={ [1]={ limit={ @@ -165730,7 +171490,7 @@ return { [1]="local_affliction_notable_battlefield_dominator" } }, - [7211]={ + [7462]={ [1]={ [1]={ limit={ @@ -165746,7 +171506,7 @@ return { [1]="local_affliction_notable_blacksmith" } }, - [7212]={ + [7463]={ [1]={ [1]={ limit={ @@ -165762,7 +171522,7 @@ return { [1]="local_affliction_notable_blanketed_snow" } }, - [7213]={ + [7464]={ [1]={ [1]={ limit={ @@ -165778,7 +171538,7 @@ return { [1]="local_affliction_notable_blast_freeze" } }, - [7214]={ + [7465]={ [1]={ [1]={ limit={ @@ -165794,7 +171554,7 @@ return { [1]="local_affliction_notable_blessed" } }, - [7215]={ + [7466]={ [1]={ [1]={ limit={ @@ -165810,7 +171570,7 @@ return { [1]="local_affliction_notable_blessed_rebirth" } }, - [7216]={ + [7467]={ [1]={ [1]={ limit={ @@ -165826,7 +171586,7 @@ return { [1]="local_affliction_notable_blood_artist" } }, - [7217]={ + [7468]={ [1]={ [1]={ limit={ @@ -165842,7 +171602,7 @@ return { [1]="local_affliction_notable_bloodscent" } }, - [7218]={ + [7469]={ [1]={ [1]={ limit={ @@ -165858,7 +171618,7 @@ return { [1]="local_affliction_notable_blowback" } }, - [7219]={ + [7470]={ [1]={ [1]={ limit={ @@ -165874,7 +171634,7 @@ return { [1]="local_affliction_notable_bodyguards" } }, - [7220]={ + [7471]={ [1]={ [1]={ limit={ @@ -165890,7 +171650,7 @@ return { [1]="local_affliction_notable_born_of_chaos" } }, - [7221]={ + [7472]={ [1]={ [1]={ limit={ @@ -165906,7 +171666,7 @@ return { [1]="local_affliction_notable_brand_loyalty" } }, - [7222]={ + [7473]={ [1]={ [1]={ limit={ @@ -165922,7 +171682,7 @@ return { [1]="local_affliction_notable_brewed_for_potency" } }, - [7223]={ + [7474]={ [1]={ [1]={ limit={ @@ -165938,7 +171698,7 @@ return { [1]="local_affliction_notable_broadside" } }, - [7224]={ + [7475]={ [1]={ [1]={ limit={ @@ -165954,7 +171714,7 @@ return { [1]="local_affliction_notable_brush_with_death" } }, - [7225]={ + [7476]={ [1]={ [1]={ limit={ @@ -165970,7 +171730,7 @@ return { [1]="local_affliction_notable_brutal_infamy" } }, - [7226]={ + [7477]={ [1]={ [1]={ limit={ @@ -165986,7 +171746,7 @@ return { [1]="local_affliction_notable_burden_projection" } }, - [7227]={ + [7478]={ [1]={ [1]={ limit={ @@ -166002,7 +171762,7 @@ return { [1]="local_affliction_notable_burning_bright" } }, - [7228]={ + [7479]={ [1]={ [1]={ limit={ @@ -166018,7 +171778,7 @@ return { [1]="local_affliction_notable_calamitous" } }, - [7229]={ + [7480]={ [1]={ [1]={ limit={ @@ -166034,7 +171794,7 @@ return { [1]="local_affliction_notable_call_to_the_slaughter" } }, - [7230]={ + [7481]={ [1]={ [1]={ limit={ @@ -166050,7 +171810,7 @@ return { [1]="local_affliction_notable_capacitor" } }, - [7231]={ + [7482]={ [1]={ [1]={ limit={ @@ -166066,7 +171826,7 @@ return { [1]="local_affliction_notable_careful_handling" } }, - [7232]={ + [7483]={ [1]={ [1]={ limit={ @@ -166082,7 +171842,7 @@ return { [1]="local_affliction_notable_chilling_presence" } }, - [7233]={ + [7484]={ [1]={ [1]={ limit={ @@ -166098,7 +171858,7 @@ return { [1]="local_affliction_notable_chip_away" } }, - [7234]={ + [7485]={ [1]={ [1]={ limit={ @@ -166114,7 +171874,7 @@ return { [1]="local_affliction_notable_circling_oblivion" } }, - [7235]={ + [7486]={ [1]={ [1]={ limit={ @@ -166130,7 +171890,7 @@ return { [1]="local_affliction_notable_clarity_of_purpose" } }, - [7236]={ + [7487]={ [1]={ [1]={ limit={ @@ -166146,7 +171906,7 @@ return { [1]="local_affliction_notable_cold_blooded_killer" } }, - [7237]={ + [7488]={ [1]={ [1]={ limit={ @@ -166162,7 +171922,7 @@ return { [1]="local_affliction_notable_cold_conduction" } }, - [7238]={ + [7489]={ [1]={ [1]={ limit={ @@ -166178,7 +171938,7 @@ return { [1]="local_affliction_notable_cold_to_the_core" } }, - [7239]={ + [7490]={ [1]={ [1]={ limit={ @@ -166194,7 +171954,7 @@ return { [1]="local_affliction_notable_combat_rhythm" } }, - [7240]={ + [7491]={ [1]={ [1]={ limit={ @@ -166210,7 +171970,7 @@ return { [1]="local_affliction_notable_compound_injury" } }, - [7241]={ + [7492]={ [1]={ [1]={ limit={ @@ -166226,7 +171986,7 @@ return { [1]="local_affliction_notable_confident_combatant" } }, - [7242]={ + [7493]={ [1]={ [1]={ limit={ @@ -166242,7 +172002,7 @@ return { [1]="local_affliction_notable_conjured_wall" } }, - [7243]={ + [7494]={ [1]={ [1]={ limit={ @@ -166258,7 +172018,7 @@ return { [1]="local_affliction_notable_conservation_of_energy" } }, - [7244]={ + [7495]={ [1]={ [1]={ limit={ @@ -166274,7 +172034,7 @@ return { [1]="local_affliction_notable_cooked_alive" } }, - [7245]={ + [7496]={ [1]={ [1]={ limit={ @@ -166290,7 +172050,7 @@ return { [1]="local_affliction_notable_corrosive_elements" } }, - [7246]={ + [7497]={ [1]={ [1]={ limit={ @@ -166306,7 +172066,7 @@ return { [1]="local_affliction_notable_cremator" } }, - [7247]={ + [7498]={ [1]={ [1]={ limit={ @@ -166322,7 +172082,7 @@ return { [1]="local_affliction_notable_cry_wolf" } }, - [7248]={ + [7499]={ [1]={ [1]={ limit={ @@ -166338,7 +172098,7 @@ return { [1]="local_affliction_notable_cult_leader" } }, - [7249]={ + [7500]={ [1]={ [1]={ limit={ @@ -166354,7 +172114,7 @@ return { [1]="local_affliction_notable_daring_ideas" } }, - [7250]={ + [7501]={ [1]={ [1]={ limit={ @@ -166370,7 +172130,7 @@ return { [1]="local_affliction_notable_dark_discourse" } }, - [7251]={ + [7502]={ [1]={ [1]={ limit={ @@ -166386,7 +172146,7 @@ return { [1]="local_affliction_notable_dark_ideation" } }, - [7252]={ + [7503]={ [1]={ [1]={ limit={ @@ -166402,7 +172162,7 @@ return { [1]="local_affliction_notable_dark_messenger" } }, - [7253]={ + [7504]={ [1]={ [1]={ limit={ @@ -166418,7 +172178,7 @@ return { [1]="local_affliction_notable_darting_movements" } }, - [7254]={ + [7505]={ [1]={ [1]={ limit={ @@ -166434,7 +172194,7 @@ return { [1]="local_affliction_notable_deadly_repartee" } }, - [7255]={ + [7506]={ [1]={ [1]={ limit={ @@ -166450,7 +172210,7 @@ return { [1]="local_affliction_notable_deep_chill" } }, - [7256]={ + [7507]={ [1]={ [1]={ limit={ @@ -166466,7 +172226,7 @@ return { [1]="local_affliction_notable_deep_cuts" } }, - [7257]={ + [7508]={ [1]={ [1]={ limit={ @@ -166482,7 +172242,7 @@ return { [1]="local_affliction_notable_depression" } }, - [7258]={ + [7509]={ [1]={ [1]={ limit={ @@ -166498,7 +172258,7 @@ return { [1]="local_affliction_notable_determined_preparation" } }, - [7259]={ + [7510]={ [1]={ [1]={ limit={ @@ -166514,7 +172274,7 @@ return { [1]="local_affliction_notable_devastator" } }, - [7260]={ + [7511]={ [1]={ [1]={ limit={ @@ -166530,7 +172290,7 @@ return { [1]="local_affliction_notable_disciples" } }, - [7261]={ + [7512]={ [1]={ [1]={ limit={ @@ -166546,7 +172306,7 @@ return { [1]="local_affliction_notable_disciplined_preparation" } }, - [7262]={ + [7513]={ [1]={ [1]={ limit={ @@ -166562,7 +172322,7 @@ return { [1]="local_affliction_notable_disease_vector" } }, - [7263]={ + [7514]={ [1]={ [1]={ limit={ @@ -166578,7 +172338,7 @@ return { [1]="local_affliction_notable_disorienting_display" } }, - [7264]={ + [7515]={ [1]={ [1]={ limit={ @@ -166594,7 +172354,7 @@ return { [1]="local_affliction_notable_disorienting_wounds" } }, - [7265]={ + [7516]={ [1]={ [1]={ limit={ @@ -166610,7 +172370,7 @@ return { [1]="local_affliction_notable_distilled_perfection" } }, - [7266]={ + [7517]={ [1]={ [1]={ limit={ @@ -166626,7 +172386,7 @@ return { [1]="local_affliction_notable_doedres_apathy" } }, - [7267]={ + [7518]={ [1]={ [1]={ limit={ @@ -166642,7 +172402,7 @@ return { [1]="local_affliction_notable_doedres_gluttony" } }, - [7268]={ + [7519]={ [1]={ [1]={ limit={ @@ -166658,7 +172418,7 @@ return { [1]="local_affliction_notable_doryanis_lesson" } }, - [7269]={ + [7520]={ [1]={ [1]={ limit={ @@ -166674,7 +172434,7 @@ return { [1]="local_affliction_notable_dragon_hunter" } }, - [7270]={ + [7521]={ [1]={ [1]={ limit={ @@ -166690,7 +172450,7 @@ return { [1]="local_affliction_notable_dread_march" } }, - [7271]={ + [7522]={ [1]={ [1]={ limit={ @@ -166706,7 +172466,7 @@ return { [1]="local_affliction_notable_drive_the_destruction" } }, - [7272]={ + [7523]={ [1]={ [1]={ limit={ @@ -166722,7 +172482,7 @@ return { [1]="local_affliction_notable_eldritch_inspiration" } }, - [7273]={ + [7524]={ [1]={ [1]={ limit={ @@ -166738,7 +172498,7 @@ return { [1]="local_affliction_notable_elegant_form" } }, - [7274]={ + [7525]={ [1]={ [1]={ limit={ @@ -166754,7 +172514,7 @@ return { [1]="local_affliction_notable_empowered_envoy" } }, - [7275]={ + [7526]={ [1]={ [1]={ limit={ @@ -166770,7 +172530,7 @@ return { [1]="local_affliction_notable_endbringer" } }, - [7276]={ + [7527]={ [1]={ [1]={ limit={ @@ -166786,7 +172546,7 @@ return { [1]="local_affliction_notable_enduring_composure" } }, - [7277]={ + [7528]={ [1]={ [1]={ limit={ @@ -166802,7 +172562,7 @@ return { [1]="local_affliction_notable_enduring_focus" } }, - [7278]={ + [7529]={ [1]={ [1]={ limit={ @@ -166818,7 +172578,7 @@ return { [1]="local_affliction_notable_enduring_ward" } }, - [7279]={ + [7530]={ [1]={ [1]={ limit={ @@ -166834,7 +172594,7 @@ return { [1]="local_affliction_notable_energy_from_naught" } }, - [7280]={ + [7531]={ [1]={ [1]={ limit={ @@ -166850,7 +172610,7 @@ return { [1]="local_affliction_notable_essence_rush" } }, - [7281]={ + [7532]={ [1]={ [1]={ limit={ @@ -166866,7 +172626,7 @@ return { [1]="local_affliction_notable_eternal_suffering" } }, - [7282]={ + [7533]={ [1]={ [1]={ limit={ @@ -166882,7 +172642,7 @@ return { [1]="local_affliction_notable_evil_eye" } }, - [7283]={ + [7534]={ [1]={ [1]={ limit={ @@ -166898,7 +172658,7 @@ return { [1]="local_affliction_notable_expansive_might" } }, - [7284]={ + [7535]={ [1]={ [1]={ limit={ @@ -166914,7 +172674,7 @@ return { [1]="local_affliction_notable_expendability" } }, - [7285]={ + [7536]={ [1]={ [1]={ limit={ @@ -166930,7 +172690,7 @@ return { [1]="local_affliction_notable_expert_sabotage" } }, - [7286]={ + [7537]={ [1]={ [1]={ limit={ @@ -166946,7 +172706,7 @@ return { [1]="local_affliction_notable_explosive_force" } }, - [7287]={ + [7538]={ [1]={ [1]={ limit={ @@ -166962,7 +172722,7 @@ return { [1]="local_affliction_notable_exposure_therapy" } }, - [7288]={ + [7539]={ [1]={ [1]={ limit={ @@ -166978,7 +172738,7 @@ return { [1]="local_affliction_notable_eye_of_the_storm" } }, - [7289]={ + [7540]={ [1]={ [1]={ limit={ @@ -166994,7 +172754,7 @@ return { [1]="local_affliction_notable_eye_to_eye" } }, - [7290]={ + [7541]={ [1]={ [1]={ limit={ @@ -167010,7 +172770,7 @@ return { [1]="local_affliction_notable_fan_of_blades" } }, - [7291]={ + [7542]={ [1]={ [1]={ limit={ @@ -167026,7 +172786,7 @@ return { [1]="local_affliction_notable_fan_the_flames" } }, - [7292]={ + [7543]={ [1]={ [1]={ limit={ @@ -167042,7 +172802,7 @@ return { [1]="local_affliction_notable_fasting" } }, - [7293]={ + [7544]={ [1]={ [1]={ limit={ @@ -167058,7 +172818,7 @@ return { [1]="local_affliction_notable_fearsome_warrior" } }, - [7294]={ + [7545]={ [1]={ [1]={ limit={ @@ -167074,7 +172834,7 @@ return { [1]="local_affliction_notable_feast_of_flesh" } }, - [7295]={ + [7546]={ [1]={ [1]={ limit={ @@ -167090,7 +172850,7 @@ return { [1]="local_affliction_notable_feasting_fiends" } }, - [7296]={ + [7547]={ [1]={ [1]={ limit={ @@ -167106,7 +172866,7 @@ return { [1]="local_affliction_notable_feed_the_fury" } }, - [7297]={ + [7548]={ [1]={ [1]={ limit={ @@ -167122,7 +172882,7 @@ return { [1]="local_affliction_notable_fettle" } }, - [7298]={ + [7549]={ [1]={ [1]={ limit={ @@ -167138,7 +172898,7 @@ return { [1]="local_affliction_notable_fire_attunement" } }, - [7299]={ + [7550]={ [1]={ [1]={ limit={ @@ -167154,7 +172914,7 @@ return { [1]="local_affliction_notable_first_among_equals" } }, - [7300]={ + [7551]={ [1]={ [1]={ limit={ @@ -167170,7 +172930,7 @@ return { [1]="local_affliction_notable_flaming_doom" } }, - [7301]={ + [7552]={ [1]={ [1]={ limit={ @@ -167186,7 +172946,7 @@ return { [1]="local_affliction_notable_flexible_sentry" } }, - [7302]={ + [7553]={ [1]={ [1]={ limit={ @@ -167202,7 +172962,7 @@ return { [1]="local_affliction_notable_flow_of_life" } }, - [7303]={ + [7554]={ [1]={ [1]={ limit={ @@ -167218,7 +172978,7 @@ return { [1]="local_affliction_notable_follow_through" } }, - [7304]={ + [7555]={ [1]={ [1]={ limit={ @@ -167234,7 +172994,7 @@ return { [1]="local_affliction_notable_force_multiplier" } }, - [7305]={ + [7556]={ [1]={ [1]={ limit={ @@ -167250,7 +173010,7 @@ return { [1]="local_affliction_notable_frost_breath" } }, - [7306]={ + [7557]={ [1]={ [1]={ limit={ @@ -167266,7 +173026,7 @@ return { [1]="local_affliction_notable_fuel_the_fight" } }, - [7307]={ + [7558]={ [1]={ [1]={ limit={ @@ -167282,7 +173042,7 @@ return { [1]="local_affliction_notable_furious_assault" } }, - [7308]={ + [7559]={ [1]={ [1]={ limit={ @@ -167298,7 +173058,7 @@ return { [1]="local_affliction_notable_genius" } }, - [7309]={ + [7560]={ [1]={ [1]={ limit={ @@ -167314,7 +173074,7 @@ return { [1]="local_affliction_notable_gladiatorial_combat" } }, - [7310]={ + [7561]={ [1]={ [1]={ limit={ @@ -167330,7 +173090,7 @@ return { [1]="local_affliction_notable_gladiators_fortitude" } }, - [7311]={ + [7562]={ [1]={ [1]={ limit={ @@ -167346,7 +173106,7 @@ return { [1]="local_affliction_notable_graceful_execution" } }, - [7312]={ + [7563]={ [1]={ [1]={ limit={ @@ -167362,7 +173122,7 @@ return { [1]="local_affliction_notable_graceful_preparation" } }, - [7313]={ + [7564]={ [1]={ [1]={ limit={ @@ -167378,7 +173138,7 @@ return { [1]="local_affliction_notable_grand_design" } }, - [7314]={ + [7565]={ [1]={ [1]={ limit={ @@ -167394,7 +173154,7 @@ return { [1]="local_affliction_notable_grim_oath" } }, - [7315]={ + [7566]={ [1]={ [1]={ limit={ @@ -167410,7 +173170,7 @@ return { [1]="local_affliction_notable_grounded_commander" } }, - [7316]={ + [7567]={ [1]={ [1]={ limit={ @@ -167426,7 +173186,7 @@ return { [1]="local_affliction_notable_guerilla_tactics" } }, - [7317]={ + [7568]={ [1]={ [1]={ limit={ @@ -167442,7 +173202,7 @@ return { [1]="local_affliction_notable_haemorrhage" } }, - [7318]={ + [7569]={ [1]={ [1]={ limit={ @@ -167458,7 +173218,7 @@ return { [1]="local_affliction_notable_haunting_shout" } }, - [7319]={ + [7570]={ [1]={ [1]={ limit={ @@ -167474,7 +173234,7 @@ return { [1]="local_affliction_notable_heart_of_iron" } }, - [7320]={ + [7571]={ [1]={ [1]={ limit={ @@ -167490,7 +173250,7 @@ return { [1]="local_affliction_notable_heavy_hitter" } }, - [7321]={ + [7572]={ [1]={ [1]={ limit={ @@ -167506,7 +173266,7 @@ return { [1]="local_affliction_notable_heavy_trauma" } }, - [7322]={ + [7573]={ [1]={ [1]={ limit={ @@ -167522,7 +173282,7 @@ return { [1]="local_affliction_notable_heraldry" } }, - [7323]={ + [7574]={ [1]={ [1]={ limit={ @@ -167538,7 +173298,7 @@ return { [1]="local_affliction_notable_hex_breaker" } }, - [7324]={ + [7575]={ [1]={ [1]={ limit={ @@ -167554,7 +173314,7 @@ return { [1]="local_affliction_notable_hibernator" } }, - [7325]={ + [7576]={ [1]={ [1]={ limit={ @@ -167570,7 +173330,7 @@ return { [1]="local_affliction_notable_hit_and_run" } }, - [7326]={ + [7577]={ [1]={ [1]={ limit={ @@ -167586,7 +173346,7 @@ return { [1]="local_affliction_notable_holistic_health" } }, - [7327]={ + [7578]={ [1]={ [1]={ limit={ @@ -167602,7 +173362,7 @@ return { [1]="local_affliction_notable_holy_conquest" } }, - [7328]={ + [7579]={ [1]={ [1]={ limit={ @@ -167618,7 +173378,7 @@ return { [1]="local_affliction_notable_hounds_mark" } }, - [7329]={ + [7580]={ [1]={ [1]={ limit={ @@ -167634,7 +173394,7 @@ return { [1]="local_affliction_notable_hulking_corpses" } }, - [7330]={ + [7581]={ [1]={ [1]={ limit={ @@ -167650,7 +173410,7 @@ return { [1]="local_affliction_notable_improvisor" } }, - [7331]={ + [7582]={ [1]={ [1]={ limit={ @@ -167666,7 +173426,7 @@ return { [1]="local_affliction_notable_insatiable_killer" } }, - [7332]={ + [7583]={ [1]={ [1]={ limit={ @@ -167682,7 +173442,7 @@ return { [1]="local_affliction_notable_inspired_oppression" } }, - [7333]={ + [7584]={ [1]={ [1]={ limit={ @@ -167698,7 +173458,7 @@ return { [1]="local_affliction_notable_insulated" } }, - [7334]={ + [7585]={ [1]={ [1]={ limit={ @@ -167714,7 +173474,7 @@ return { [1]="local_affliction_notable_intensity" } }, - [7335]={ + [7586]={ [1]={ [1]={ limit={ @@ -167730,7 +173490,7 @@ return { [1]="local_affliction_notable_invigorating_portents" } }, - [7336]={ + [7587]={ [1]={ [1]={ limit={ @@ -167746,7 +173506,7 @@ return { [1]="local_affliction_notable_iron_breaker" } }, - [7337]={ + [7588]={ [1]={ [1]={ limit={ @@ -167762,7 +173522,7 @@ return { [1]="local_affliction_notable_lasting_impression" } }, - [7338]={ + [7589]={ [1]={ [1]={ limit={ @@ -167778,7 +173538,7 @@ return { [1]="local_affliction_notable_lead_by_example" } }, - [7339]={ + [7590]={ [1]={ [1]={ limit={ @@ -167794,7 +173554,7 @@ return { [1]="local_affliction_notable_life_from_death" } }, - [7340]={ + [7591]={ [1]={ [1]={ limit={ @@ -167810,7 +173570,7 @@ return { [1]="local_affliction_notable_lightnings_call" } }, - [7341]={ + [7592]={ [1]={ [1]={ limit={ @@ -167826,7 +173586,7 @@ return { [1]="local_affliction_notable_liquid_inspiration" } }, - [7342]={ + [7593]={ [1]={ [1]={ limit={ @@ -167842,7 +173602,7 @@ return { [1]="local_affliction_notable_low_tolerance" } }, - [7343]={ + [7594]={ [1]={ [1]={ limit={ @@ -167858,7 +173618,7 @@ return { [1]="local_affliction_notable_mage_bane" } }, - [7344]={ + [7595]={ [1]={ [1]={ limit={ @@ -167874,7 +173634,7 @@ return { [1]="local_affliction_notable_mage_hunter" } }, - [7345]={ + [7596]={ [1]={ [1]={ limit={ @@ -167890,7 +173650,7 @@ return { [1]="local_affliction_notable_magnifier" } }, - [7346]={ + [7597]={ [1]={ [1]={ limit={ @@ -167906,7 +173666,7 @@ return { [1]="local_affliction_notable_martial_mastery" } }, - [7347]={ + [7598]={ [1]={ [1]={ limit={ @@ -167922,7 +173682,7 @@ return { [1]="local_affliction_notable_martial_momentum" } }, - [7348]={ + [7599]={ [1]={ [1]={ limit={ @@ -167938,7 +173698,7 @@ return { [1]="local_affliction_notable_martial_prowess" } }, - [7349]={ + [7600]={ [1]={ [1]={ limit={ @@ -167954,7 +173714,7 @@ return { [1]="local_affliction_notable_master_of_command" } }, - [7350]={ + [7601]={ [1]={ [1]={ limit={ @@ -167970,7 +173730,7 @@ return { [1]="local_affliction_notable_master_of_fear" } }, - [7351]={ + [7602]={ [1]={ [1]={ limit={ @@ -167986,7 +173746,7 @@ return { [1]="local_affliction_notable_master_of_fire" } }, - [7352]={ + [7603]={ [1]={ [1]={ limit={ @@ -168002,7 +173762,7 @@ return { [1]="local_affliction_notable_master_of_the_maelstrom" } }, - [7353]={ + [7604]={ [1]={ [1]={ limit={ @@ -168018,7 +173778,7 @@ return { [1]="local_affliction_notable_master_the_fundamentals" } }, - [7354]={ + [7605]={ [1]={ [1]={ limit={ @@ -168034,7 +173794,7 @@ return { [1]="local_affliction_notable_menders_wellspring" } }, - [7355]={ + [7606]={ [1]={ [1]={ limit={ @@ -168050,7 +173810,7 @@ return { [1]="local_affliction_notable_militarism" } }, - [7356]={ + [7607]={ [1]={ [1]={ limit={ @@ -168066,7 +173826,7 @@ return { [1]="local_affliction_notable_mindfulness" } }, - [7357]={ + [7608]={ [1]={ [1]={ limit={ @@ -168082,7 +173842,7 @@ return { [1]="local_affliction_notable_mob_mentality" } }, - [7358]={ + [7609]={ [1]={ [1]={ limit={ @@ -168098,7 +173858,7 @@ return { [1]="local_affliction_notable_molten_ones_mark" } }, - [7359]={ + [7610]={ [1]={ [1]={ limit={ @@ -168114,7 +173874,7 @@ return { [1]="local_affliction_notable_mystical_ward" } }, - [7360]={ + [7611]={ [1]={ [1]={ limit={ @@ -168130,7 +173890,7 @@ return { [1]="local_affliction_notable_natural_vigour" } }, - [7361]={ + [7612]={ [1]={ [1]={ limit={ @@ -168146,7 +173906,7 @@ return { [1]="local_affliction_notable_no_witnesses" } }, - [7362]={ + [7613]={ [1]={ [1]={ limit={ @@ -168162,7 +173922,7 @@ return { [1]="local_affliction_notable_non_flammable" } }, - [7363]={ + [7614]={ [1]={ [1]={ limit={ @@ -168178,7 +173938,7 @@ return { [1]="local_affliction_notable_numbing_elixir" } }, - [7364]={ + [7615]={ [1]={ [1]={ limit={ @@ -168194,7 +173954,7 @@ return { [1]="local_affliction_notable_one_with_the_shield" } }, - [7365]={ + [7616]={ [1]={ [1]={ limit={ @@ -168210,7 +173970,7 @@ return { [1]="local_affliction_notable_openness" } }, - [7366]={ + [7617]={ [1]={ [1]={ limit={ @@ -168226,7 +173986,7 @@ return { [1]="local_affliction_notable_opportunistic_fusilade" } }, - [7367]={ + [7618]={ [1]={ [1]={ limit={ @@ -168242,7 +174002,7 @@ return { [1]="local_affliction_notable_overlord" } }, - [7368]={ + [7619]={ [1]={ [1]={ limit={ @@ -168258,7 +174018,7 @@ return { [1]="local_affliction_notable_overshock" } }, - [7369]={ + [7620]={ [1]={ [1]={ limit={ @@ -168274,7 +174034,7 @@ return { [1]="local_affliction_notable_overwhelming_malice" } }, - [7370]={ + [7621]={ [1]={ [1]={ limit={ @@ -168290,7 +174050,7 @@ return { [1]="local_affliction_notable_paralysis" } }, - [7371]={ + [7622]={ [1]={ [1]={ limit={ @@ -168306,7 +174066,7 @@ return { [1]="local_affliction_notable_peace_amidst_chaos" } }, - [7372]={ + [7623]={ [1]={ [1]={ limit={ @@ -168322,7 +174082,7 @@ return { [1]="local_affliction_notable_peak_vigour" } }, - [7373]={ + [7624]={ [1]={ [1]={ limit={ @@ -168338,7 +174098,7 @@ return { [1]="local_affliction_notable_phlebotomist" } }, - [7374]={ + [7625]={ [1]={ [1]={ limit={ @@ -168354,7 +174114,7 @@ return { [1]="local_affliction_notable_powerful_assault" } }, - [7375]={ + [7626]={ [1]={ [1]={ limit={ @@ -168370,7 +174130,7 @@ return { [1]="local_affliction_notable_powerful_ward" } }, - [7376]={ + [7627]={ [1]={ [1]={ limit={ @@ -168386,7 +174146,7 @@ return { [1]="local_affliction_notable_practiced_caster" } }, - [7377]={ + [7628]={ [1]={ [1]={ limit={ @@ -168402,7 +174162,7 @@ return { [1]="local_affliction_notable_precise_commander" } }, - [7378]={ + [7629]={ [1]={ [1]={ limit={ @@ -168418,7 +174178,7 @@ return { [1]="local_affliction_notable_precise_focus" } }, - [7379]={ + [7630]={ [1]={ [1]={ limit={ @@ -168434,7 +174194,7 @@ return { [1]="local_affliction_notable_precise_retaliation" } }, - [7380]={ + [7631]={ [1]={ [1]={ limit={ @@ -168450,7 +174210,7 @@ return { [1]="local_affliction_notable_pressure_points" } }, - [7381]={ + [7632]={ [1]={ [1]={ limit={ @@ -168466,7 +174226,7 @@ return { [1]="local_affliction_notable_primordial_bond" } }, - [7382]={ + [7633]={ [1]={ [1]={ limit={ @@ -168482,7 +174242,7 @@ return { [1]="local_affliction_notable_prismatic_carapace" } }, - [7383]={ + [7634]={ [1]={ [1]={ limit={ @@ -168498,7 +174258,7 @@ return { [1]="local_affliction_notable_prismatic_dance" } }, - [7384]={ + [7635]={ [1]={ [1]={ limit={ @@ -168514,7 +174274,7 @@ return { [1]="local_affliction_notable_prismatic_heart" } }, - [7385]={ + [7636]={ [1]={ [1]={ limit={ @@ -168530,7 +174290,7 @@ return { [1]="local_affliction_notable_prodigious_defense" } }, - [7386]={ + [7637]={ [1]={ [1]={ limit={ @@ -168546,7 +174306,7 @@ return { [1]="local_affliction_notable_provocateur" } }, - [7387]={ + [7638]={ [1]={ [1]={ limit={ @@ -168562,7 +174322,7 @@ return { [1]="local_affliction_notable_pure_agony" } }, - [7388]={ + [7639]={ [1]={ [1]={ limit={ @@ -168578,7 +174338,7 @@ return { [1]="local_affliction_notable_pure_aptitude" } }, - [7389]={ + [7640]={ [1]={ [1]={ limit={ @@ -168594,7 +174354,7 @@ return { [1]="local_affliction_notable_pure_commander" } }, - [7390]={ + [7641]={ [1]={ [1]={ limit={ @@ -168610,7 +174370,7 @@ return { [1]="local_affliction_notable_pure_guile" } }, - [7391]={ + [7642]={ [1]={ [1]={ limit={ @@ -168626,7 +174386,7 @@ return { [1]="local_affliction_notable_pure_might" } }, - [7392]={ + [7643]={ [1]={ [1]={ limit={ @@ -168642,7 +174402,7 @@ return { [1]="local_affliction_notable_purposeful_harbinger" } }, - [7393]={ + [7644]={ [1]={ [1]={ limit={ @@ -168658,7 +174418,7 @@ return { [1]="local_affliction_notable_quick_and_deadly" } }, - [7394]={ + [7645]={ [1]={ [1]={ limit={ @@ -168674,7 +174434,7 @@ return { [1]="local_affliction_notable_quick_getaway" } }, - [7395]={ + [7646]={ [1]={ [1]={ limit={ @@ -168690,7 +174450,7 @@ return { [1]="local_affliction_notable_rapid_infusion" } }, - [7396]={ + [7647]={ [1]={ [1]={ limit={ @@ -168706,7 +174466,7 @@ return { [1]="local_affliction_notable_rattling_bellow" } }, - [7397]={ + [7648]={ [1]={ [1]={ limit={ @@ -168722,7 +174482,7 @@ return { [1]="local_affliction_notable_raze_and_pillage" } }, - [7398]={ + [7649]={ [1]={ [1]={ limit={ @@ -168738,7 +174498,7 @@ return { [1]="local_affliction_notable_readiness" } }, - [7399]={ + [7650]={ [1]={ [1]={ limit={ @@ -168754,7 +174514,7 @@ return { [1]="local_affliction_notable_remarkable" } }, - [7400]={ + [7651]={ [1]={ [1]={ limit={ @@ -168770,7 +174530,7 @@ return { [1]="local_affliction_notable_rend" } }, - [7401]={ + [7652]={ [1]={ [1]={ limit={ @@ -168786,7 +174546,7 @@ return { [1]="local_affliction_notable_renewal" } }, - [7402]={ + [7653]={ [1]={ [1]={ limit={ @@ -168802,7 +174562,7 @@ return { [1]="local_affliction_notable_repeater" } }, - [7403]={ + [7654]={ [1]={ [1]={ limit={ @@ -168818,7 +174578,7 @@ return { [1]="local_affliction_notable_replenishing_presence" } }, - [7404]={ + [7655]={ [1]={ [1]={ limit={ @@ -168834,7 +174594,7 @@ return { [1]="local_affliction_notable_riot_queller" } }, - [7405]={ + [7656]={ [1]={ [1]={ limit={ @@ -168850,7 +174610,7 @@ return { [1]="local_affliction_notable_rot_resistant" } }, - [7406]={ + [7657]={ [1]={ [1]={ limit={ @@ -168866,7 +174626,7 @@ return { [1]="local_affliction_notable_rote_reinforcement" } }, - [7407]={ + [7658]={ [1]={ [1]={ limit={ @@ -168882,7 +174642,7 @@ return { [1]="local_affliction_notable_rotten_claws" } }, - [7408]={ + [7659]={ [1]={ [1]={ limit={ @@ -168898,7 +174658,7 @@ return { [1]="local_affliction_notable_run_through" } }, - [7409]={ + [7660]={ [1]={ [1]={ limit={ @@ -168914,7 +174674,7 @@ return { [1]="local_affliction_notable_sadist" } }, - [7410]={ + [7661]={ [1]={ [1]={ limit={ @@ -168930,7 +174690,7 @@ return { [1]="local_affliction_notable_sage" } }, - [7411]={ + [7662]={ [1]={ [1]={ limit={ @@ -168946,7 +174706,7 @@ return { [1]="local_affliction_notable_sap_psyche" } }, - [7412]={ + [7663]={ [1]={ [1]={ limit={ @@ -168962,7 +174722,7 @@ return { [1]="local_affliction_notable_savage_response" } }, - [7413]={ + [7664]={ [1]={ [1]={ limit={ @@ -168978,7 +174738,7 @@ return { [1]="local_affliction_notable_savour_the_moment" } }, - [7414]={ + [7665]={ [1]={ [1]={ limit={ @@ -168994,7 +174754,7 @@ return { [1]="local_affliction_notable_scintillating_idea" } }, - [7415]={ + [7666]={ [1]={ [1]={ limit={ @@ -169010,7 +174770,7 @@ return { [1]="local_affliction_notable_seal_mender" } }, - [7416]={ + [7667]={ [1]={ [1]={ limit={ @@ -169026,7 +174786,7 @@ return { [1]="local_affliction_notable_second_skin" } }, - [7417]={ + [7668]={ [1]={ [1]={ limit={ @@ -169042,7 +174802,7 @@ return { [1]="local_affliction_notable_seeker_runes" } }, - [7418]={ + [7669]={ [1]={ [1]={ limit={ @@ -169058,7 +174818,7 @@ return { [1]="local_affliction_notable_self_fulfilling_prophecy" } }, - [7419]={ + [7670]={ [1]={ [1]={ limit={ @@ -169074,7 +174834,7 @@ return { [1]="local_affliction_notable_septic_spells" } }, - [7420]={ + [7671]={ [1]={ [1]={ limit={ @@ -169090,7 +174850,7 @@ return { [1]="local_affliction_notable_set_and_forget" } }, - [7421]={ + [7672]={ [1]={ [1]={ limit={ @@ -169106,7 +174866,7 @@ return { [1]="local_affliction_notable_shifting_shadow" } }, - [7422]={ + [7673]={ [1]={ [1]={ limit={ @@ -169122,7 +174882,7 @@ return { [1]="local_affliction_notable_shrieking_bolts" } }, - [7423]={ + [7674]={ [1]={ [1]={ limit={ @@ -169138,7 +174898,7 @@ return { [1]="local_affliction_notable_skeletal_atrophy" } }, - [7424]={ + [7675]={ [1]={ [1]={ limit={ @@ -169154,7 +174914,7 @@ return { [1]="local_affliction_notable_skullbreaker" } }, - [7425]={ + [7676]={ [1]={ [1]={ limit={ @@ -169170,7 +174930,7 @@ return { [1]="local_affliction_notable_sleepless_sentries" } }, - [7426]={ + [7677]={ [1]={ [1]={ limit={ @@ -169186,7 +174946,7 @@ return { [1]="local_affliction_notable_smite_the_weak" } }, - [7427]={ + [7678]={ [1]={ [1]={ limit={ @@ -169202,7 +174962,7 @@ return { [1]="local_affliction_notable_smoking_remains" } }, - [7428]={ + [7679]={ [1]={ [1]={ limit={ @@ -169218,7 +174978,7 @@ return { [1]="local_affliction_notable_snaring_spirits" } }, - [7429]={ + [7680]={ [1]={ [1]={ limit={ @@ -169234,7 +174994,7 @@ return { [1]="local_affliction_notable_snowstorm" } }, - [7430]={ + [7681]={ [1]={ [1]={ limit={ @@ -169250,7 +175010,7 @@ return { [1]="local_affliction_notable_special_reserve" } }, - [7431]={ + [7682]={ [1]={ [1]={ limit={ @@ -169266,7 +175026,7 @@ return { [1]="local_affliction_notable_spiked_concoction" } }, - [7432]={ + [7683]={ [1]={ [1]={ limit={ @@ -169282,7 +175042,7 @@ return { [1]="local_affliction_notable_spring_back" } }, - [7433]={ + [7684]={ [1]={ [1]={ limit={ @@ -169298,7 +175058,7 @@ return { [1]="local_affliction_notable_stalwart_commander" } }, - [7434]={ + [7685]={ [1]={ [1]={ limit={ @@ -169314,7 +175074,7 @@ return { [1]="local_affliction_notable_steady_torment" } }, - [7435]={ + [7686]={ [1]={ [1]={ limit={ @@ -169330,7 +175090,7 @@ return { [1]="local_affliction_notable_stoic_focus" } }, - [7436]={ + [7687]={ [1]={ [1]={ limit={ @@ -169346,7 +175106,7 @@ return { [1]="local_affliction_notable_storm_drinker" } }, - [7437]={ + [7688]={ [1]={ [1]={ limit={ @@ -169362,7 +175122,7 @@ return { [1]="local_affliction_notable_stormrider" } }, - [7438]={ + [7689]={ [1]={ [1]={ limit={ @@ -169378,7 +175138,7 @@ return { [1]="local_affliction_notable_storms_hand" } }, - [7439]={ + [7690]={ [1]={ [1]={ limit={ @@ -169394,7 +175154,7 @@ return { [1]="local_affliction_notable_streamlined" } }, - [7440]={ + [7691]={ [1]={ [1]={ limit={ @@ -169410,7 +175170,7 @@ return { [1]="local_affliction_notable_strike_leader" } }, - [7441]={ + [7692]={ [1]={ [1]={ limit={ @@ -169426,7 +175186,7 @@ return { [1]="local_affliction_notable_stubborn_student" } }, - [7442]={ + [7693]={ [1]={ [1]={ limit={ @@ -169442,7 +175202,7 @@ return { [1]="local_affliction_notable_student_of_decay" } }, - [7443]={ + [7694]={ [1]={ [1]={ limit={ @@ -169458,7 +175218,7 @@ return { [1]="local_affliction_notable_sublime_sensation" } }, - [7444]={ + [7695]={ [1]={ [1]={ limit={ @@ -169474,7 +175234,7 @@ return { [1]="local_affliction_notable_summer_commander" } }, - [7445]={ + [7696]={ [1]={ [1]={ limit={ @@ -169490,7 +175250,7 @@ return { [1]="local_affliction_notable_supercharge" } }, - [7446]={ + [7697]={ [1]={ [1]={ limit={ @@ -169506,7 +175266,7 @@ return { [1]="local_affliction_notable_surefooted_striker" } }, - [7447]={ + [7698]={ [1]={ [1]={ limit={ @@ -169522,7 +175282,7 @@ return { [1]="local_affliction_notable_surging_vitality" } }, - [7448]={ + [7699]={ [1]={ [1]={ limit={ @@ -169538,7 +175298,7 @@ return { [1]="local_affliction_notable_surprise_sabotage" } }, - [7449]={ + [7700]={ [1]={ [1]={ limit={ @@ -169554,7 +175314,7 @@ return { [1]="local_affliction_notable_tempered_arrowheads" } }, - [7450]={ + [7701]={ [1]={ [1]={ limit={ @@ -169570,7 +175330,7 @@ return { [1]="local_affliction_notable_thaumophage" } }, - [7451]={ + [7702]={ [1]={ [1]={ limit={ @@ -169586,7 +175346,7 @@ return { [1]="local_affliction_notable_thunderstruck" } }, - [7452]={ + [7703]={ [1]={ [1]={ limit={ @@ -169602,7 +175362,7 @@ return { [1]="local_affliction_notable_titanic_swings" } }, - [7453]={ + [7704]={ [1]={ [1]={ limit={ @@ -169618,7 +175378,7 @@ return { [1]="local_affliction_notable_touch_of_cruelty" } }, - [7454]={ + [7705]={ [1]={ [1]={ limit={ @@ -169634,7 +175394,7 @@ return { [1]="local_affliction_notable_towering_threat" } }, - [7455]={ + [7706]={ [1]={ [1]={ limit={ @@ -169650,7 +175410,7 @@ return { [1]="local_affliction_notable_unholy_grace" } }, - [7456]={ + [7707]={ [1]={ [1]={ limit={ @@ -169666,7 +175426,7 @@ return { [1]="local_affliction_notable_unspeakable_gifts" } }, - [7457]={ + [7708]={ [1]={ [1]={ limit={ @@ -169682,7 +175442,7 @@ return { [1]="local_affliction_notable_untouchable" } }, - [7458]={ + [7709]={ [1]={ [1]={ limit={ @@ -169698,7 +175458,7 @@ return { [1]="local_affliction_notable_unwavering_focus" } }, - [7459]={ + [7710]={ [1]={ [1]={ limit={ @@ -169714,7 +175474,7 @@ return { [1]="local_affliction_notable_unwaveringly_evil" } }, - [7460]={ + [7711]={ [1]={ [1]={ limit={ @@ -169730,7 +175490,7 @@ return { [1]="local_affliction_notable_vast_power" } }, - [7461]={ + [7712]={ [1]={ [1]={ limit={ @@ -169746,7 +175506,7 @@ return { [1]="local_affliction_notable_vengeful_commander" } }, - [7462]={ + [7713]={ [1]={ [1]={ limit={ @@ -169762,7 +175522,7 @@ return { [1]="local_affliction_notable_veteran_defender" } }, - [7463]={ + [7714]={ [1]={ [1]={ limit={ @@ -169778,7 +175538,7 @@ return { [1]="local_affliction_notable_vicious_bite" } }, - [7464]={ + [7715]={ [1]={ [1]={ limit={ @@ -169794,7 +175554,7 @@ return { [1]="local_affliction_notable_vicious_guard_" } }, - [7465]={ + [7716]={ [1]={ [1]={ limit={ @@ -169810,7 +175570,7 @@ return { [1]="local_affliction_notable_vicious_skewering" } }, - [7466]={ + [7717]={ [1]={ [1]={ limit={ @@ -169826,7 +175586,7 @@ return { [1]="local_affliction_notable_victim_maker" } }, - [7467]={ + [7718]={ [1]={ [1]={ limit={ @@ -169842,7 +175602,7 @@ return { [1]="local_affliction_notable_vile_reinvigoration" } }, - [7468]={ + [7719]={ [1]={ [1]={ limit={ @@ -169858,7 +175618,7 @@ return { [1]="local_affliction_notable_vital_focus" } }, - [7469]={ + [7720]={ [1]={ [1]={ limit={ @@ -169874,7 +175634,7 @@ return { [1]="local_affliction_notable_vivid_hues" } }, - [7470]={ + [7721]={ [1]={ [1]={ limit={ @@ -169890,7 +175650,7 @@ return { [1]="local_affliction_notable_wall_of_muscle" } }, - [7471]={ + [7722]={ [1]={ [1]={ limit={ @@ -169906,7 +175666,7 @@ return { [1]="local_affliction_notable_wardbreaker" } }, - [7472]={ + [7723]={ [1]={ [1]={ limit={ @@ -169922,7 +175682,7 @@ return { [1]="local_affliction_notable_warning_call" } }, - [7473]={ + [7724]={ [1]={ [1]={ limit={ @@ -169938,7 +175698,7 @@ return { [1]="local_affliction_notable_wasting_affliction" } }, - [7474]={ + [7725]={ [1]={ [1]={ limit={ @@ -169954,7 +175714,7 @@ return { [1]="local_affliction_notable_weight_advantage" } }, - [7475]={ + [7726]={ [1]={ [1]={ limit={ @@ -169970,7 +175730,7 @@ return { [1]="local_affliction_notable_whispers_of_death" } }, - [7476]={ + [7727]={ [1]={ [1]={ limit={ @@ -169986,7 +175746,7 @@ return { [1]="local_affliction_notable_wicked_pall" } }, - [7477]={ + [7728]={ [1]={ [1]={ limit={ @@ -170002,7 +175762,7 @@ return { [1]="local_affliction_notable_widespread_destruction" } }, - [7478]={ + [7729]={ [1]={ [1]={ limit={ @@ -170018,7 +175778,7 @@ return { [1]="local_affliction_notable_will_shaper" } }, - [7479]={ + [7730]={ [1]={ [1]={ limit={ @@ -170034,7 +175794,7 @@ return { [1]="local_affliction_notable_wind_up" } }, - [7480]={ + [7731]={ [1]={ [1]={ limit={ @@ -170050,7 +175810,7 @@ return { [1]="local_affliction_notable_winter_commander" } }, - [7481]={ + [7732]={ [1]={ [1]={ limit={ @@ -170066,7 +175826,7 @@ return { [1]="local_affliction_notable_winter_prowler" } }, - [7482]={ + [7733]={ [1]={ [1]={ limit={ @@ -170082,7 +175842,7 @@ return { [1]="local_affliction_notable_wish_for_death" } }, - [7483]={ + [7734]={ [1]={ [1]={ limit={ @@ -170098,7 +175858,7 @@ return { [1]="local_affliction_notable_wizardry" } }, - [7484]={ + [7735]={ [1]={ [1]={ limit={ @@ -170114,7 +175874,7 @@ return { [1]="local_affliction_notable_wound_aggravation" } }, - [7485]={ + [7736]={ [1]={ [1]={ limit={ @@ -170130,7 +175890,7 @@ return { [1]="local_affliction_notable_wrapped_in_flame" } }, - [7486]={ + [7737]={ [1]={ [1]={ limit={ @@ -170146,7 +175906,7 @@ return { [1]="local_area_of_effect_+%_per_4%_quality" } }, - [7487]={ + [7738]={ [1]={ [1]={ [1]={ @@ -170183,7 +175943,7 @@ return { [1]="local_attack_and_cast_speed_+%_if_item_corrupted" } }, - [7488]={ + [7739]={ [1]={ [1]={ [1]={ @@ -170220,7 +175980,7 @@ return { [1]="local_attack_damage_+%_if_item_corrupted" } }, - [7489]={ + [7740]={ [1]={ [1]={ limit={ @@ -170236,7 +175996,7 @@ return { [1]="local_attack_speed_+%_per_8%_quality" } }, - [7490]={ + [7741]={ [1]={ [1]={ [1]={ @@ -170256,7 +176016,7 @@ return { [1]="local_attacks_grant_onslaught_on_kill_chance_%_with_ranged_abyss_jewel_socketed" } }, - [7491]={ + [7742]={ [1]={ [1]={ [1]={ @@ -170289,7 +176049,7 @@ return { [1]="local_attacks_impale_on_hit_%_chance" } }, - [7492]={ + [7743]={ [1]={ [1]={ [1]={ @@ -170309,7 +176069,7 @@ return { [1]="local_attacks_intimidate_on_hit_for_4_seconds_with_melee_abyss_jewel_socketed" } }, - [7493]={ + [7744]={ [1]={ [1]={ [1]={ @@ -170329,7 +176089,7 @@ return { [1]="local_attacks_maim_on_hit_for_4_seconds_with_ranged_abyss_jewel_socketed" } }, - [7494]={ + [7745]={ [1]={ [1]={ [1]={ @@ -170362,7 +176122,7 @@ return { [1]="local_bleed_on_critical_strike_chance_%" } }, - [7495]={ + [7746]={ [1]={ [1]={ limit={ @@ -170378,7 +176138,7 @@ return { [1]="local_bleeding_ailment_dot_multiplier_+" } }, - [7496]={ + [7747]={ [1]={ [1]={ [1]={ @@ -170398,7 +176158,7 @@ return { [1]="local_blind_enemies_on_attack_hits_with_ranged_abyss_jewel_socketed" } }, - [7497]={ + [7748]={ [1]={ [1]={ limit={ @@ -170423,7 +176183,7 @@ return { [1]="local_can_have_X_additional_runesmith_enchantments" } }, - [7498]={ + [7749]={ [1]={ [1]={ limit={ @@ -170439,7 +176199,7 @@ return { [1]="local_can_have_any_one_hand_runesmith_enchantments" } }, - [7499]={ + [7750]={ [1]={ [1]={ limit={ @@ -170455,7 +176215,7 @@ return { [1]="local_can_only_socket_corrupted_gems" } }, - [7500]={ + [7751]={ [1]={ [1]={ [1]={ @@ -170475,7 +176235,7 @@ return { [1]="local_chance_for_bleeding_damage_+100%_final_inflicted_with_this_weapon" } }, - [7501]={ + [7752]={ [1]={ [1]={ [1]={ @@ -170495,7 +176255,7 @@ return { [1]="local_chance_for_poison_damage_+100%_final_inflicted_with_this_weapon" } }, - [7502]={ + [7753]={ [1]={ [1]={ [1]={ @@ -170515,7 +176275,7 @@ return { [1]="local_chance_for_poison_damage_+300%_final_inflicted_with_weapon" } }, - [7503]={ + [7754]={ [1]={ [1]={ [1]={ @@ -170535,7 +176295,7 @@ return { [1]="local_chance_to_bleed_on_crit_50%" } }, - [7504]={ + [7755]={ [1]={ [1]={ [1]={ @@ -170555,7 +176315,7 @@ return { [1]="local_chance_to_intimidate_on_hit_%" } }, - [7505]={ + [7756]={ [1]={ [1]={ limit={ @@ -170571,7 +176331,7 @@ return { [1]="local_chaos_penetration_%" } }, - [7506]={ + [7757]={ [1]={ [1]={ [1]={ @@ -170612,7 +176372,7 @@ return { [1]="local_chill_on_hit_ms_if_in_off_hand" } }, - [7507]={ + [7758]={ [1]={ [1]={ limit={ @@ -170628,7 +176388,7 @@ return { [1]="local_cold_resistance_%_per_2%_quality" } }, - [7508]={ + [7759]={ [1]={ [1]={ limit={ @@ -170644,7 +176404,7 @@ return { [1]="local_concoction_can_consume_sulphur_flasks" } }, - [7509]={ + [7760]={ [1]={ [1]={ limit={ @@ -170660,7 +176420,7 @@ return { [1]="local_crafting_bench_options_cost_nothing" } }, - [7510]={ + [7761]={ [1]={ [1]={ [1]={ @@ -170697,7 +176457,7 @@ return { [1]="local_critical_strike_chance_+%_if_item_corrupted" } }, - [7511]={ + [7762]={ [1]={ [1]={ limit={ @@ -170713,7 +176473,7 @@ return { [1]="local_critical_strike_chance_+%_per_4%_quality" } }, - [7512]={ + [7763]={ [1]={ [1]={ [1]={ @@ -170733,7 +176493,7 @@ return { [1]="local_crits_have_culling_strike" } }, - [7513]={ + [7764]={ [1]={ [1]={ [1]={ @@ -170757,7 +176517,7 @@ return { [1]="local_culling_strike_if_crit_recently" } }, - [7514]={ + [7765]={ [1]={ [1]={ [1]={ @@ -170777,7 +176537,7 @@ return { [1]="local_culling_strike_vs_bleeding_enemies" } }, - [7515]={ + [7766]={ [1]={ [1]={ [1]={ @@ -170814,7 +176574,7 @@ return { [1]="local_damage_+%_if_item_corrupted" } }, - [7516]={ + [7767]={ [1]={ [1]={ [1]={ @@ -170851,7 +176611,7 @@ return { [1]="local_damage_taken_+%_if_item_corrupted" } }, - [7517]={ + [7768]={ [1]={ [1]={ limit={ @@ -170867,7 +176627,7 @@ return { [1]="local_dexterity_per_2%_quality" } }, - [7518]={ + [7769]={ [1]={ [1]={ limit={ @@ -170883,7 +176643,7 @@ return { [1]="local_display_cast_fire_burst_on_hit" } }, - [7519]={ + [7770]={ [1]={ [1]={ limit={ @@ -170908,7 +176668,7 @@ return { [1]="local_display_curse_enemies_with_socketed_curse_on_hit_%_chance" } }, - [7520]={ + [7771]={ [1]={ [1]={ limit={ @@ -170924,7 +176684,7 @@ return { [1]="local_display_enemies_killed_nearby_count_as_being_killed_by_you" } }, - [7521]={ + [7772]={ [1]={ [1]={ limit={ @@ -170953,7 +176713,7 @@ return { [1]="local_display_fire_and_cold_resist_debuff" } }, - [7522]={ + [7773]={ [1]={ [1]={ limit={ @@ -170969,75 +176729,7 @@ return { [1]="local_display_gain_power_charge_on_spending_mana" } }, - [7523]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Grants Level {0} Convocation Skill" - } - }, - stats={ - [1]="local_display_grants_skil_convocation_level" - } - }, - [7524]={ - [1]={ - [1]={ - [1]={ - k="reminderstring", - v="ReminderTextDarkEffigy" - }, - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Grants Level {0} Summon Dark Effigy Skill" - } - }, - stats={ - [1]="local_display_grants_skill_voodoo_doll" - } - }, - [7525]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Grants Level {0} Swordstorm Skill" - } - }, - stats={ - [1]="local_display_grants_skill_weapon_storm" - } - }, - [7526]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="[DNT] Grants Level {0} Unleash Power" - } - }, - stats={ - [1]="local_display_grants_unleash_power" - } - }, - [7527]={ + [7774]={ [1]={ [1]={ [1]={ @@ -171057,7 +176749,7 @@ return { [1]="local_display_guardian_alternating_block_chance" } }, - [7528]={ + [7775]={ [1]={ [1]={ limit={ @@ -171086,7 +176778,7 @@ return { [1]="local_display_mod_aura_mana_regeration_rate_+%" } }, - [7529]={ + [7776]={ [1]={ [1]={ limit={ @@ -171115,7 +176807,7 @@ return { [1]="local_display_movement_speed_+%_for_you_and_nearby_allies" } }, - [7530]={ + [7777]={ [1]={ [1]={ limit={ @@ -171131,7 +176823,7 @@ return { [1]="local_display_nearby_allies_action_speed_cannot_be_reduced_below_base" } }, - [7531]={ + [7778]={ [1]={ [1]={ limit={ @@ -171147,7 +176839,7 @@ return { [1]="local_display_nearby_allies_critical_strike_multiplier_+" } }, - [7532]={ + [7779]={ [1]={ [1]={ [1]={ @@ -171167,7 +176859,7 @@ return { [1]="local_display_nearby_allies_extra_damage_rolls" } }, - [7533]={ + [7780]={ [1]={ [1]={ [1]={ @@ -171187,7 +176879,7 @@ return { [1]="local_display_nearby_allies_have_fortify" } }, - [7534]={ + [7781]={ [1]={ [1]={ [1]={ @@ -171207,7 +176899,7 @@ return { [1]="local_display_nearby_enemies_are_chilled" } }, - [7535]={ + [7782]={ [1]={ [1]={ [1]={ @@ -171227,7 +176919,27 @@ return { [1]="local_display_nearby_enemies_are_covered_in_ash" } }, - [7536]={ + [7783]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextDebilitate" + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Nearby Enemies are Debilitated" + } + }, + stats={ + [1]="local_display_nearby_enemies_are_debilitated" + } + }, + [7784]={ [1]={ [1]={ [1]={ @@ -171247,7 +176959,7 @@ return { [1]="local_display_nearby_enemies_are_intimidated" } }, - [7537]={ + [7785]={ [1]={ [1]={ limit={ @@ -171263,7 +176975,7 @@ return { [1]="local_display_nearby_enemies_cannot_crit" } }, - [7538]={ + [7786]={ [1]={ [1]={ [1]={ @@ -171283,7 +176995,7 @@ return { [1]="local_display_nearby_enemies_have_fire_exposure" } }, - [7539]={ + [7787]={ [1]={ [1]={ limit={ @@ -171299,7 +177011,7 @@ return { [1]="local_display_nearby_enemy_chaos_damage_resistance_%" } }, - [7540]={ + [7788]={ [1]={ [1]={ limit={ @@ -171315,7 +177027,7 @@ return { [1]="local_display_nearby_enemy_cold_damage_resistance_%" } }, - [7541]={ + [7789]={ [1]={ [1]={ limit={ @@ -171331,7 +177043,7 @@ return { [1]="local_display_nearby_enemy_elemental_damage_taken_+%" } }, - [7542]={ + [7790]={ [1]={ [1]={ limit={ @@ -171347,7 +177059,7 @@ return { [1]="local_display_nearby_enemy_fire_damage_resistance_%" } }, - [7543]={ + [7791]={ [1]={ [1]={ limit={ @@ -171363,7 +177075,7 @@ return { [1]="local_display_nearby_enemy_life_reserved_by_stat_%" } }, - [7544]={ + [7792]={ [1]={ [1]={ limit={ @@ -171379,7 +177091,7 @@ return { [1]="local_display_nearby_enemy_lightning_damage_resistance_%" } }, - [7545]={ + [7793]={ [1]={ [1]={ limit={ @@ -171395,7 +177107,7 @@ return { [1]="local_display_nearby_enemy_no_chaos_damage_resistance" } }, - [7546]={ + [7794]={ [1]={ [1]={ limit={ @@ -171424,7 +177136,7 @@ return { [1]="local_display_nearby_enemy_physical_damage_taken_+%" } }, - [7547]={ + [7795]={ [1]={ [1]={ [1]={ @@ -171444,7 +177156,7 @@ return { [1]="local_display_self_crushed" } }, - [7548]={ + [7796]={ [1]={ [1]={ limit={ @@ -171460,7 +177172,7 @@ return { [1]="local_display_touched_by_tormented_illegal_fisherman" } }, - [7549]={ + [7797]={ [1]={ [1]={ [1]={ @@ -171497,7 +177209,43 @@ return { [1]="local_display_trickster_heartstopper_rotating_buff" } }, - [7550]={ + [7798]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Trigger Level {0} Assassin's Mark on Attack Critical Strike against\na Rare or Unique Enemy and you have no Mark" + } + }, + stats={ + [1]="local_display_trigger_level_X_assassins_mark_when_you_critically_hit_rare_or_unique_enemy_with_attacks" + } + }, + [7799]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextSpectralTigersSkill" + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Trigger Level {0} Summon Spectral Tiger on Critical Strike" + } + }, + stats={ + [1]="local_display_trigger_level_x_summon_spectral_tiger_on_crit" + } + }, + [7800]={ [1]={ [1]={ [1]={ @@ -171517,7 +177265,7 @@ return { [1]="local_display_you_get_elemental_ailments_instead_of_allies" } }, - [7551]={ + [7801]={ [1]={ [1]={ limit={ @@ -171533,7 +177281,7 @@ return { [1]="local_double_damage_with_attacks" } }, - [7552]={ + [7802]={ [1]={ [1]={ limit={ @@ -171558,7 +177306,7 @@ return { [1]="local_double_damage_with_attacks_chance_%" } }, - [7553]={ + [7803]={ [1]={ [1]={ limit={ @@ -171587,7 +177335,7 @@ return { [1]="local_elemental_damage_+%" } }, - [7554]={ + [7804]={ [1]={ [1]={ limit={ @@ -171603,7 +177351,7 @@ return { [1]="local_elemental_damage_+%_per_2%_quality" } }, - [7555]={ + [7805]={ [1]={ [1]={ [1]={ @@ -171627,7 +177375,7 @@ return { [1]="local_energy_shield_regeneration_per_minute_%_if_crit_recently" } }, - [7556]={ + [7806]={ [1]={ [1]={ limit={ @@ -171643,7 +177391,7 @@ return { [1]="local_evasion_rating_and_energy_shield" } }, - [7557]={ + [7807]={ [1]={ [1]={ limit={ @@ -171659,7 +177407,7 @@ return { [1]="local_fire_resistance_%_per_2%_quality" } }, - [7558]={ + [7808]={ [1]={ [1]={ [1]={ @@ -171683,7 +177431,7 @@ return { [1]="local_gain_X_rage_on_attack_hit_with_melee_abyss_jewel_socketed" } }, - [7559]={ + [7809]={ [1]={ [1]={ limit={ @@ -171699,7 +177447,67 @@ return { [1]="local_gain_fortify_on_melee_hit_chance_%_with_melee_abyss_jewel_socketed" } }, - [7560]={ + [7810]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextKeystoneSoulTether" + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="You have Immortal Ambition while all Socketed Gems are Red" + } + }, + stats={ + [1]="local_gain_immortal_ambition_if_all_socketed_gems_red" + } + }, + [7811]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextAttributes" + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Ignore Attribute Requirements of Socketed Gems" + } + }, + stats={ + [1]="local_gems_socketed_have_no_attribute_requirements" + } + }, + [7812]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextAttributes" + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Ignore Attribute Requirements of Gems Socketed in Blue Sockets" + } + }, + stats={ + [1]="local_gems_socketed_in_blue_sockets_have_no_attribute_requirements" + } + }, + [7813]={ [1]={ [1]={ limit={ @@ -171724,7 +177532,7 @@ return { [1]="local_hits_ignore_enemy_monster_physical_damage_reduction_%_chance" } }, - [7561]={ + [7814]={ [1]={ [1]={ limit={ @@ -171740,7 +177548,7 @@ return { [1]="local_hits_with_this_weapon_always_hit_if_have_blocked_recently" } }, - [7562]={ + [7815]={ [1]={ [1]={ limit={ @@ -171769,7 +177577,7 @@ return { [1]="local_hits_with_this_weapon_freeze_as_though_damage_+%_final" } }, - [7563]={ + [7816]={ [1]={ [1]={ limit={ @@ -171798,7 +177606,7 @@ return { [1]="local_hits_with_this_weapon_shock_as_though_damage_+%_final" } }, - [7564]={ + [7817]={ [1]={ [1]={ limit={ @@ -171827,7 +177635,7 @@ return { [1]="local_ignite_damage_+%_final_with_this_weapon" } }, - [7565]={ + [7818]={ [1]={ [1]={ [1]={ @@ -171847,7 +177655,7 @@ return { [1]="local_immune_to_curses_if_item_corrupted" } }, - [7566]={ + [7819]={ [1]={ [1]={ [1]={ @@ -171867,7 +177675,7 @@ return { [1]="local_implicit_modifier_magnitudes_doubled" } }, - [7567]={ + [7820]={ [1]={ [1]={ [1]={ @@ -171887,7 +177695,7 @@ return { [1]="local_implicit_modifier_magnitudes_tripled" } }, - [7568]={ + [7821]={ [1]={ [1]={ [1]={ @@ -171920,7 +177728,7 @@ return { [1]="local_inflict_malignant_madness_on_critical_strike_%_if_eater_of_worlds_dominant" } }, - [7569]={ + [7822]={ [1]={ [1]={ limit={ @@ -171936,7 +177744,7 @@ return { [1]="local_intelligence_per_2%_quality" } }, - [7570]={ + [7823]={ [1]={ [1]={ limit={ @@ -171952,7 +177760,7 @@ return { [1]="local_item_can_roll_all_influences" } }, - [7571]={ + [7824]={ [1]={ [1]={ limit={ @@ -171968,7 +177776,7 @@ return { [1]="local_item_quality_+" } }, - [7572]={ + [7825]={ [1]={ [1]={ limit={ @@ -171984,7 +177792,7 @@ return { [1]="local_item_sell_price_doubled" } }, - [7573]={ + [7826]={ [1]={ [1]={ limit={ @@ -172000,7 +177808,7 @@ return { [1]="local_item_stats_are_doubled_in_breach" } }, - [7574]={ + [7827]={ [1]={ [1]={ [1]={ @@ -172020,7 +177828,23 @@ return { [1]="local_jewel_allocated_non_notable_passives_in_radius_grant_nothing" } }, - [7575]={ + [7828]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Allocated Notable Passive Skills in Radius grant nothing" + } + }, + stats={ + [1]="local_jewel_allocated_notable_passives_in_radius_grant_nothing" + } + }, + [7829]={ [1]={ [1]={ [1]={ @@ -172040,7 +177864,23 @@ return { [1]="local_jewel_copy_stats_from_unallocated_non_notable_passives_in_radius" } }, - [7576]={ + [7830]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Grants all bonuses of Unallocated Notable Passive Skills in Radius" + } + }, + stats={ + [1]="local_jewel_copy_stats_from_unallocated_notable_passives_in_radius" + } + }, + [7831]={ [1]={ [1]={ limit={ @@ -172056,7 +177896,7 @@ return { [1]="local_jewel_disable_combust_with_40_strength_in_radius" } }, - [7577]={ + [7832]={ [1]={ [1]={ limit={ @@ -172081,7 +177921,7 @@ return { [1]="local_jewel_expansion_jewels_count" } }, - [7578]={ + [7833]={ [1]={ [1]={ [1]={ @@ -172114,7 +177954,7 @@ return { [1]="local_jewel_expansion_jewels_count_override" } }, - [7579]={ + [7834]={ [1]={ [1]={ limit={ @@ -172130,7 +177970,7 @@ return { [1]="local_jewel_expansion_keystone_disciple_of_kitava" } }, - [7580]={ + [7835]={ [1]={ [1]={ limit={ @@ -172146,7 +177986,7 @@ return { [1]="local_jewel_expansion_keystone_hollow_palm_technique" } }, - [7581]={ + [7836]={ [1]={ [1]={ limit={ @@ -172162,7 +178002,7 @@ return { [1]="local_jewel_expansion_keystone_kineticism" } }, - [7582]={ + [7837]={ [1]={ [1]={ limit={ @@ -172178,7 +178018,7 @@ return { [1]="local_jewel_expansion_keystone_lone_messenger" } }, - [7583]={ + [7838]={ [1]={ [1]={ limit={ @@ -172194,7 +178034,7 @@ return { [1]="local_jewel_expansion_keystone_natures_patience" } }, - [7584]={ + [7839]={ [1]={ [1]={ limit={ @@ -172210,7 +178050,7 @@ return { [1]="local_jewel_expansion_keystone_pitfighter" } }, - [7585]={ + [7840]={ [1]={ [1]={ limit={ @@ -172226,7 +178066,7 @@ return { [1]="local_jewel_expansion_keystone_secrets_of_suffering" } }, - [7586]={ + [7841]={ [1]={ [1]={ limit={ @@ -172242,7 +178082,7 @@ return { [1]="local_jewel_expansion_keystone_veterans_awareness" } }, - [7587]={ + [7842]={ [1]={ [1]={ [1]={ @@ -172266,7 +178106,7 @@ return { [1]="local_jewel_expansion_passive_node_index" } }, - [7588]={ + [7843]={ [1]={ [1]={ limit={ @@ -172282,7 +178122,7 @@ return { [1]="local_jewel_fireball_cannot_ignite" } }, - [7589]={ + [7844]={ [1]={ [1]={ limit={ @@ -172298,7 +178138,7 @@ return { [1]="local_jewel_fireball_chance_to_scorch_%" } }, - [7590]={ + [7845]={ [1]={ [1]={ limit={ @@ -172314,7 +178154,7 @@ return { [1]="local_jewel_infernal_cry_exerted_attacks_ignite_damage_+%_final_with_for_strength_in_radius" } }, - [7591]={ + [7846]={ [1]={ [1]={ limit={ @@ -172343,7 +178183,7 @@ return { [1]="local_jewel_magma_orb_damage_+%_final_with_40_int_in_radius" } }, - [7592]={ + [7847]={ [1]={ [1]={ limit={ @@ -172372,7 +178212,7 @@ return { [1]="local_jewel_magma_orb_damage_+%_final_per_chain_with_40_int_in_radius" } }, - [7593]={ + [7848]={ [1]={ [1]={ limit={ @@ -172388,7 +178228,7 @@ return { [1]="local_jewel_molten_strike_projectiles_chain_when_impacting_ground_with_40_str_in_radius" } }, - [7594]={ + [7849]={ [1]={ [1]={ limit={ @@ -172413,7 +178253,7 @@ return { [1]="local_jewel_molten_strike_projectiles_chain_count_+_with_40_str_in_radius" } }, - [7595]={ + [7850]={ [1]={ [1]={ limit={ @@ -172442,7 +178282,7 @@ return { [1]="local_jewel_molten_strike_projectiles_count_+%_final_with_40_str_in_radius" } }, - [7596]={ + [7851]={ [1]={ [1]={ limit={ @@ -172458,7 +178298,7 @@ return { [1]="local_kill_enemy_on_hit_if_under_15%_life_if_searing_exarch_dominant" } }, - [7597]={ + [7852]={ [1]={ [1]={ [1]={ @@ -172478,7 +178318,7 @@ return { [1]="local_left_ring_slot_cover_in_ash_for_x_seconds_when_igniting_enemy" } }, - [7598]={ + [7853]={ [1]={ [1]={ limit={ @@ -172494,7 +178334,7 @@ return { [1]="local_left_ring_slot_projectiles_from_spells_cannot_chain" } }, - [7599]={ + [7854]={ [1]={ [1]={ limit={ @@ -172510,7 +178350,7 @@ return { [1]="local_left_ring_slot_projectiles_from_spells_fork" } }, - [7600]={ + [7855]={ [1]={ [1]={ limit={ @@ -172526,7 +178366,7 @@ return { [1]="local_left_ring_socketed_curse_replaces_skitterbots_chilling_aura" } }, - [7601]={ + [7856]={ [1]={ [1]={ limit={ @@ -172555,7 +178395,7 @@ return { [1]="local_life_gain_per_target_vs_blinded_enemies" } }, - [7602]={ + [7857]={ [1]={ [1]={ limit={ @@ -172584,7 +178424,7 @@ return { [1]="local_life_gain_per_target_while_leeching" } }, - [7603]={ + [7858]={ [1]={ [1]={ [1]={ @@ -172608,7 +178448,7 @@ return { [1]="local_life_leech_from_any_damage_permyriad" } }, - [7604]={ + [7859]={ [1]={ [1]={ limit={ @@ -172624,7 +178464,7 @@ return { [1]="local_lightning_resistance_%_per_2%_quality" } }, - [7605]={ + [7860]={ [1]={ [1]={ [1]={ @@ -172657,7 +178497,7 @@ return { [1]="local_maim_on_hit_%" } }, - [7606]={ + [7861]={ [1]={ [1]={ [1]={ @@ -172681,7 +178521,7 @@ return { [1]="local_mana_leech_from_any_damage_permyriad" } }, - [7607]={ + [7862]={ [1]={ [1]={ limit={ @@ -172697,7 +178537,7 @@ return { [1]="local_mana_leech_is_instant" } }, - [7608]={ + [7863]={ [1]={ [1]={ [1]={ @@ -172734,7 +178574,7 @@ return { [1]="local_maximum_energy_shield_+%_if_item_corrupted" } }, - [7609]={ + [7864]={ [1]={ [1]={ limit={ @@ -172750,7 +178590,7 @@ return { [1]="local_maximum_life_per_2%_quality" } }, - [7610]={ + [7865]={ [1]={ [1]={ [1]={ @@ -172787,7 +178627,7 @@ return { [1]="local_maximum_life_+%_if_item_corrupted" } }, - [7611]={ + [7866]={ [1]={ [1]={ limit={ @@ -172803,7 +178643,7 @@ return { [1]="local_maximum_mana_per_2%_quality" } }, - [7612]={ + [7867]={ [1]={ [1]={ limit={ @@ -172819,7 +178659,7 @@ return { [1]="local_maximum_quality_is_%" } }, - [7613]={ + [7868]={ [1]={ [1]={ limit={ @@ -172835,7 +178675,7 @@ return { [1]="local_maximum_quality_+" } }, - [7614]={ + [7869]={ [1]={ [1]={ limit={ @@ -172851,7 +178691,40 @@ return { [1]="local_minion_accuracy_rating_with_minion_abyss_jewel_socketed" } }, - [7615]={ + [7870]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextUnholyMightDuration" + }, + limit={ + [1]={ + [1]=1, + [2]=99 + } + }, + text="With a Ghastly Eye Jewel Socketed, Minions have {0}% chance to\ngain Unholy Might on Hit with Spells" + }, + [2]={ + [1]={ + k="reminderstring", + v="ReminderTextUnholyMightDuration" + }, + limit={ + [1]={ + [1]=100, + [2]="#" + } + }, + text="With a Ghastly Eye Jewel Socketed, Minions gain Unholy Might on Hit with Spells" + } + }, + stats={ + [1]="local_minions_chance_to_gain_unholy_might_on_spell_hit_4_seconds_%_with_minion_abyss_jewel_socketed" + } + }, + [7871]={ [1]={ [1]={ [1]={ @@ -172888,7 +178761,7 @@ return { [1]="local_movement_speed_+%_if_item_corrupted" } }, - [7616]={ + [7872]={ [1]={ [1]={ [1]={ @@ -172921,7 +178794,7 @@ return { [1]="local_poison_on_critical_strike_chance_%" } }, - [7617]={ + [7873]={ [1]={ [1]={ [1]={ @@ -172954,7 +178827,7 @@ return { [1]="local_poison_on_hit_%" } }, - [7618]={ + [7874]={ [1]={ [1]={ limit={ @@ -172983,7 +178856,7 @@ return { [1]="local_prefix_mod_effect_+%" } }, - [7619]={ + [7875]={ [1]={ [1]={ [1]={ @@ -173003,7 +178876,7 @@ return { [1]="local_resist_all_elements_%_if_item_corrupted" } }, - [7620]={ + [7876]={ [1]={ [1]={ [1]={ @@ -173023,7 +178896,7 @@ return { [1]="local_right_ring_slot_cover_in_frost_for_x_seconds_when_freezing_enemy" } }, - [7621]={ + [7877]={ [1]={ [1]={ limit={ @@ -173039,7 +178912,7 @@ return { [1]="local_right_ring_slot_number_of_additional_chains_for_spell_projectiles" } }, - [7622]={ + [7878]={ [1]={ [1]={ limit={ @@ -173055,7 +178928,7 @@ return { [1]="local_right_ring_slot_projectiles_from_spells_cannot_fork" } }, - [7623]={ + [7879]={ [1]={ [1]={ limit={ @@ -173071,7 +178944,7 @@ return { [1]="local_right_ring_socketed_curse_replaces_skitterbots_shocking_aura" } }, - [7624]={ + [7880]={ [1]={ [1]={ limit={ @@ -173100,7 +178973,7 @@ return { [1]="local_ring_attack_speed_+%_final" } }, - [7625]={ + [7881]={ [1]={ [1]={ limit={ @@ -173129,7 +179002,7 @@ return { [1]="local_ring_burning_damage_+%_final" } }, - [7626]={ + [7882]={ [1]={ [1]={ limit={ @@ -173158,7 +179031,7 @@ return { [1]="local_ring_nova_spells_area_of_effect_+%_final" } }, - [7627]={ + [7883]={ [1]={ [1]={ [1]={ @@ -173195,7 +179068,7 @@ return { [1]="local_sentinel_drone_difficulty_+%" } }, - [7628]={ + [7884]={ [1]={ [1]={ [1]={ @@ -173215,7 +179088,7 @@ return { [1]="local_shield_trigger_socketed_elemental_spell_on_block_display_cooldown" } }, - [7629]={ + [7885]={ [1]={ [1]={ limit={ @@ -173231,7 +179104,7 @@ return { [1]="local_socketed_gem_level_+_per_filled_socket" } }, - [7630]={ + [7886]={ [1]={ [1]={ [1]={ @@ -173268,7 +179141,7 @@ return { [1]="local_spell_damage_+%_if_item_corrupted" } }, - [7631]={ + [7887]={ [1]={ [1]={ [1]={ @@ -173288,7 +179161,7 @@ return { [1]="local_spells_gain_arcane_surge_on_hit_with_caster_abyss_jewel_socketed" } }, - [7632]={ + [7888]={ [1]={ [1]={ limit={ @@ -173304,7 +179177,7 @@ return { [1]="local_strength_per_2%_quality" } }, - [7633]={ + [7889]={ [1]={ [1]={ limit={ @@ -173333,7 +179206,7 @@ return { [1]="local_suffix_mod_effect_+%" } }, - [7634]={ + [7890]={ [1]={ [1]={ limit={ @@ -173349,7 +179222,7 @@ return { [1]="local_treat_enemy_resistances_as_negated_on_elemental_damage_hit" } }, - [7635]={ + [7891]={ [1]={ [1]={ limit={ @@ -173365,7 +179238,7 @@ return { [1]="local_unique_can_have_crucible_unique_staff_passive_tree_mods" } }, - [7636]={ + [7892]={ [1]={ [1]={ limit={ @@ -173381,7 +179254,7 @@ return { [1]="local_unique_can_have_shield_weapon_passive_tree" } }, - [7637]={ + [7893]={ [1]={ [1]={ limit={ @@ -173397,39 +179270,7 @@ return { [1]="local_unique_can_have_two_handed_sword_weapon_passive_tree" } }, - [7638]={ - [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" - } - }, - stats={ - [1]="local_unique_flask_explode_enemies_for_10%_life_as_random_element_on_kill_chance_%_during_flask_effect" - } - }, - [7639]={ - [1]={ - [1]={ - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="[DNT] Starts Energy Shield Recharge when used" - } - }, - stats={ - [1]="local_unique_flask_start_energy_shield_recharge" - } - }, - [7640]={ + [7894]={ [1]={ [1]={ limit={ @@ -173458,7 +179299,7 @@ return { [1]="local_unique_jewel_accuracy_rating_+_per_10_dex_unallocated_in_radius" } }, - [7641]={ + [7895]={ [1]={ [1]={ [1]={ @@ -173482,7 +179323,7 @@ return { [1]="local_unique_jewel_blight_applies_wither_for_ms_with_40_int_in_radius" } }, - [7642]={ + [7896]={ [1]={ [1]={ [1]={ @@ -173502,7 +179343,7 @@ return { [1]="local_unique_jewel_blight_applies_wither_for_two_seconds_with_40_int_in_radius" } }, - [7643]={ + [7897]={ [1]={ [1]={ limit={ @@ -173531,7 +179372,7 @@ return { [1]="local_unique_jewel_blight_cast_speed_+%_with_40_int_in_radius" } }, - [7644]={ + [7898]={ [1]={ [1]={ limit={ @@ -173547,7 +179388,7 @@ return { [1]="local_unique_jewel_blight_hinder_duration_+%_with_40_int_in_radius" } }, - [7645]={ + [7899]={ [1]={ [1]={ limit={ @@ -173563,7 +179404,7 @@ return { [1]="local_unique_jewel_blight_hinder_enemy_chaos_damage_taken_+%_with_40_int_in_radius" } }, - [7646]={ + [7900]={ [1]={ [1]={ limit={ @@ -173579,7 +179420,7 @@ return { [1]="local_unique_jewel_blight_skill_area_of_effect_+%_after_1_second_channelling_with_50_int_in_radius" } }, - [7647]={ + [7901]={ [1]={ [1]={ [1]={ @@ -173599,7 +179440,7 @@ return { [1]="local_unique_jewel_caustic_arrow_chance_to_poison_%_vs_enemies_on_caustic_ground_with_40_dex_in_radius" } }, - [7648]={ + [7902]={ [1]={ [1]={ limit={ @@ -173628,7 +179469,7 @@ return { [1]="local_unique_jewel_caustic_arrow_damage_over_time_+%_with_40_dex_in_radius" } }, - [7649]={ + [7903]={ [1]={ [1]={ limit={ @@ -173657,7 +179498,7 @@ return { [1]="local_unique_jewel_caustic_arrow_hit_damage_+%_with_40_dex_in_radius" } }, - [7650]={ + [7904]={ [1]={ [1]={ limit={ @@ -173673,7 +179514,23 @@ return { [1]="local_unique_jewel_cold_and_lightning_resistance_to_melee_damage" } }, - [7651]={ + [7905]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Passives granting Cold Resistance or all Elemental Resistances in Radius\nalso grant Cold Damage Converted to Chaos Damage at {0}% of its value" + } + }, + stats={ + [1]="local_unique_jewel_cold_resistance_also_grants_cold_damage_to_convert_to_chaos_%" + } + }, + [7906]={ [1]={ [1]={ limit={ @@ -173689,7 +179546,23 @@ return { [1]="local_unique_jewel_cold_resistance_also_grants_frenzy_charge_on_kill_chance" } }, - [7652]={ + [7907]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Passives granting Cold Resistance or all Elemental Resistances in Radius\nalso grant increased Maximum Mana at {0}% of its value" + } + }, + stats={ + [1]="local_unique_jewel_cold_resistance_also_grants_maximum_mana_scaled_%" + } + }, + [7908]={ [1]={ [1]={ [1]={ @@ -173709,7 +179582,7 @@ return { [1]="local_unique_jewel_cold_resistance_also_grants_spell_suppression_chance_scaled_%" } }, - [7653]={ + [7909]={ [1]={ [1]={ limit={ @@ -173725,7 +179598,7 @@ return { [1]="local_unique_jewel_cold_snap_uses_gains_power_charges_instead_of_frenzy_with_40_int_in_radius" } }, - [7654]={ + [7910]={ [1]={ [1]={ limit={ @@ -173754,7 +179627,7 @@ return { [1]="local_unique_jewel_discharge_area_of_effect_+%_final_with_40_int_in_radius" } }, - [7655]={ + [7911]={ [1]={ [1]={ limit={ @@ -173770,7 +179643,7 @@ return { [1]="local_unique_jewel_discharge_cooldown_override_ms_with_40_int_in_radius" } }, - [7656]={ + [7912]={ [1]={ [1]={ limit={ @@ -173799,27 +179672,7 @@ return { [1]="local_unique_jewel_discharge_damage_+%_final_with_40_int_in_radius" } }, - [7657]={ - [1]={ - [1]={ - [1]={ - k="passive_hash", - v=1 - }, - limit={ - [1]={ - [1]="#", - [2]="#" - } - }, - text="Passives in Radius of {} can be Allocated\nwithout being connected to your tree" - } - }, - stats={ - [1]="local_unique_jewel_disconnected_passives_can_be_allocated_around_keystone_hash" - } - }, - [7658]={ + [7913]={ [1]={ [1]={ limit={ @@ -173835,7 +179688,7 @@ return { [1]="local_unique_jewel_dot_multiplier_+_per_10_int_unallocated_in_radius" } }, - [7659]={ + [7914]={ [1]={ [1]={ limit={ @@ -173864,7 +179717,7 @@ return { [1]="local_unique_jewel_dual_strike_accuracy_rating_+%_while_wielding_sword_with_40_dex_in_radius" } }, - [7660]={ + [7915]={ [1]={ [1]={ limit={ @@ -173893,7 +179746,7 @@ return { [1]="local_unique_jewel_dual_strike_attack_speed_+%_while_wielding_claw_with_40_dex_in_radius" } }, - [7661]={ + [7916]={ [1]={ [1]={ limit={ @@ -173909,7 +179762,7 @@ return { [1]="local_unique_jewel_dual_strike_critical_strike_multiplier_+_while_wielding_dagger_with_40_dex_in_radius" } }, - [7662]={ + [7917]={ [1]={ [1]={ [1]={ @@ -173929,7 +179782,7 @@ return { [1]="local_unique_jewel_dual_strike_intimidate_on_hit_while_wielding_axe_with_40_dex_in_radius" } }, - [7663]={ + [7918]={ [1]={ [1]={ limit={ @@ -173954,7 +179807,7 @@ return { [1]="local_unique_jewel_dual_strike_main_hand_deals_double_damage_%_with_40_dex_in_radius" } }, - [7664]={ + [7919]={ [1]={ [1]={ limit={ @@ -173970,7 +179823,7 @@ return { [1]="local_unique_jewel_dual_strike_melee_splash_while_wielding_mace_with_40_dex_in_radius" } }, - [7665]={ + [7920]={ [1]={ [1]={ limit={ @@ -173986,7 +179839,7 @@ return { [1]="local_unique_jewel_dual_strike_melee_splash_with_off_hand_weapon_with_50_dex_in_radius" } }, - [7666]={ + [7921]={ [1]={ [1]={ limit={ @@ -174002,7 +179855,7 @@ return { [1]="local_unique_jewel_elemental_hit_50%_less_cold_damage_per_40_str_and_int" } }, - [7667]={ + [7922]={ [1]={ [1]={ limit={ @@ -174018,7 +179871,7 @@ return { [1]="local_unique_jewel_elemental_hit_50%_less_fire_damage_per_40_int_and_dex" } }, - [7668]={ + [7923]={ [1]={ [1]={ limit={ @@ -174034,7 +179887,7 @@ return { [1]="local_unique_jewel_elemental_hit_50%_less_lightning_damage_per_40_str_and_dex" } }, - [7669]={ + [7924]={ [1]={ [1]={ limit={ @@ -174050,7 +179903,7 @@ return { [1]="local_unique_jewel_elemental_hit_cannot_roll_cold_damage_with_40_int_+_str_in_radius" } }, - [7670]={ + [7925]={ [1]={ [1]={ limit={ @@ -174066,7 +179919,7 @@ return { [1]="local_unique_jewel_elemental_hit_cannot_roll_fire_damage_with_40_int_+_dex_in_radius" } }, - [7671]={ + [7926]={ [1]={ [1]={ limit={ @@ -174082,7 +179935,7 @@ return { [1]="local_unique_jewel_elemental_hit_cannot_roll_lightning_damage_with_40_dex_+_str_in_radius" } }, - [7672]={ + [7927]={ [1]={ [1]={ limit={ @@ -174098,7 +179951,7 @@ return { [1]="local_unique_jewel_fire_and_cold_resistance_to_spell_damage" } }, - [7673]={ + [7928]={ [1]={ [1]={ limit={ @@ -174114,7 +179967,7 @@ return { [1]="local_unique_jewel_fire_and_lightning_resistance_to_projectile_attack_damage" } }, - [7674]={ + [7929]={ [1]={ [1]={ limit={ @@ -174130,7 +179983,7 @@ return { [1]="local_unique_jewel_fire_resistance_also_grants_block_chance_scaled_%" } }, - [7675]={ + [7930]={ [1]={ [1]={ limit={ @@ -174146,7 +179999,39 @@ return { [1]="local_unique_jewel_fire_resistance_also_grants_endurance_charge_on_kill_chance" } }, - [7676]={ + [7931]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Passives granting Fire Resistance or all Elemental Resistances in Radius\nalso grant Fire Damage Converted to Chaos Damage at {0}% of its value" + } + }, + stats={ + [1]="local_unique_jewel_fire_resistance_also_grants_fire_damage_to_convert_to_chaos_%" + } + }, + [7932]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Passives granting Fire Resistance or all Elemental Resistances in Radius\nalso grant increased Maximum Life at {0}% of its value" + } + }, + stats={ + [1]="local_unique_jewel_fire_resistance_also_grants_maximum_life_scaled_%" + } + }, + [7933]={ [1]={ [1]={ limit={ @@ -174171,7 +180056,7 @@ return { [1]="local_unique_jewel_fire_trap_number_of_additional_traps_to_throw_with_40_dex_in_radius" } }, - [7677]={ + [7934]={ [1]={ [1]={ limit={ @@ -174187,7 +180072,7 @@ return { [1]="local_unique_jewel_frost_blades_melee_damage_penetrates_%_cold_resistance_with_40_dex_in_radius" } }, - [7678]={ + [7935]={ [1]={ [1]={ limit={ @@ -174216,7 +180101,7 @@ return { [1]="local_unique_jewel_frost_blades_projectile_speed_+%_with_40_dex_in_radius" } }, - [7679]={ + [7936]={ [1]={ [1]={ limit={ @@ -174241,7 +180126,7 @@ return { [1]="local_unique_jewel_frostbolt_additional_projectiles_with_40_int_in_radius" } }, - [7680]={ + [7937]={ [1]={ [1]={ limit={ @@ -174270,7 +180155,7 @@ return { [1]="local_unique_jewel_frostbolt_projectile_acceleration_with_50_int_in_radius" } }, - [7681]={ + [7938]={ [1]={ [1]={ limit={ @@ -174295,7 +180180,7 @@ return { [1]="local_unique_jewel_glacial_cascade_number_of_additional_bursts_with_40_int_in_radius" } }, - [7682]={ + [7939]={ [1]={ [1]={ limit={ @@ -174311,7 +180196,7 @@ return { [1]="local_unique_jewel_glacial_cascade_physical_damage_%_to_convert_to_cold_with_40_int_in_radius" } }, - [7683]={ + [7940]={ [1]={ [1]={ [1]={ @@ -174344,7 +180229,7 @@ return { [1]="local_unique_jewel_grants_x_empty_passives" } }, - [7684]={ + [7941]={ [1]={ [1]={ limit={ @@ -174373,7 +180258,7 @@ return { [1]="local_unique_jewel_ice_shot_additional_pierce_per_10_old_with_40_dex_in_radius" } }, - [7685]={ + [7942]={ [1]={ [1]={ limit={ @@ -174389,7 +180274,7 @@ return { [1]="local_unique_jewel_ice_shot_explosion_skill_area_of_effect_+%_with_50_dex_in_radius" } }, - [7686]={ + [7943]={ [1]={ [1]={ limit={ @@ -174414,7 +180299,7 @@ return { [1]="local_unique_jewel_ice_shot_pierce_+_with_40_dex_in_radius" } }, - [7687]={ + [7944]={ [1]={ [1]={ limit={ @@ -174443,7 +180328,7 @@ return { [1]="local_unique_jewel_life_recovery_rate_+%_per_10_str_allocated_in_radius" } }, - [7688]={ + [7945]={ [1]={ [1]={ limit={ @@ -174472,7 +180357,7 @@ return { [1]="local_unique_jewel_life_recovery_rate_+%_per_10_str_unallocated_in_radius" } }, - [7689]={ + [7946]={ [1]={ [1]={ limit={ @@ -174488,7 +180373,39 @@ return { [1]="local_unique_jewel_lightning_resistance_also_grants_block_spells_chance_scaled_%" } }, - [7690]={ + [7947]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Passives granting Lightning Resistance or all Elemental Resistances in Radius\nalso grant Lightning Damage Converted to Chaos Damage at {0}% of its value" + } + }, + stats={ + [1]="local_unique_jewel_lightning_resistance_also_grants_lightning_damage_to_convert_to_chaos_%" + } + }, + [7948]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Passives granting Lightning Resistance or all Elemental Resistances in Radius\nalso grant increased Maximum Energy Shield at {0}% of its value" + } + }, + stats={ + [1]="local_unique_jewel_lightning_resistance_also_grants_maximum_energy_shield_scaled_%" + } + }, + [7949]={ [1]={ [1]={ limit={ @@ -174504,7 +180421,7 @@ return { [1]="local_unique_jewel_lightning_resistance_also_grants_power_charge_on_kill_chance" } }, - [7691]={ + [7950]={ [1]={ [1]={ limit={ @@ -174520,7 +180437,7 @@ return { [1]="local_unique_jewel_lightning_tendrils_skill_area_of_effect_+%_per_enemy_hit_with_50_int_in_radius" } }, - [7692]={ + [7951]={ [1]={ [1]={ limit={ @@ -174545,7 +180462,7 @@ return { [1]="local_unique_jewel_magma_orb_additional_projectiles_with_40_int_in_radius" } }, - [7693]={ + [7952]={ [1]={ [1]={ limit={ @@ -174574,7 +180491,7 @@ return { [1]="local_unique_jewel_magma_orb_skill_area_of_effect_+%_per_bounce_with_50_int_in_radius" } }, - [7694]={ + [7953]={ [1]={ [1]={ limit={ @@ -174603,7 +180520,7 @@ return { [1]="local_unique_jewel_mana_recovery_rate_+%_per_10_int_allocated_in_radius" } }, - [7695]={ + [7954]={ [1]={ [1]={ limit={ @@ -174632,7 +180549,7 @@ return { [1]="local_unique_jewel_mana_recovery_rate_+%_per_10_int_unallocated_in_radius" } }, - [7696]={ + [7955]={ [1]={ [1]={ limit={ @@ -174657,7 +180574,7 @@ return { [1]="local_unique_jewel_molten_strike_number_of_additional_projectiles_with_50_str_in_radius" } }, - [7697]={ + [7956]={ [1]={ [1]={ limit={ @@ -174673,7 +180590,7 @@ return { [1]="local_unique_jewel_molten_strike_skill_area_of_effect_+%_with_50_str_in_radius" } }, - [7698]={ + [7957]={ [1]={ [1]={ limit={ @@ -174702,7 +180619,7 @@ return { [1]="local_unique_jewel_movement_speed_+%_per_10_dex_unallocated_in_radius" } }, - [7699]={ + [7958]={ [1]={ [1]={ limit={ @@ -174731,7 +180648,7 @@ return { [1]="local_unique_jewel_non_keystone_passive_in_radius_effect_+%" } }, - [7700]={ + [7959]={ [1]={ [1]={ limit={ @@ -174747,7 +180664,7 @@ return { [1]="local_unique_jewel_notable_passive_in_radius_does_nothing" } }, - [7701]={ + [7960]={ [1]={ [1]={ limit={ @@ -174776,7 +180693,7 @@ return { [1]="local_unique_jewel_passive_jewel_socket_mod_effect_+%_with_corrupted_magic_jewel_socketed" } }, - [7702]={ + [7961]={ [1]={ [1]={ limit={ @@ -174792,7 +180709,7 @@ return { [1]="local_unique_jewel_passives_in_radius_grant_additional_all_attributes" } }, - [7703]={ + [7962]={ [1]={ [1]={ limit={ @@ -174808,7 +180725,7 @@ return { [1]="local_unique_jewel_passives_in_radius_grant_base_chaos_damage_resistance_%" } }, - [7704]={ + [7963]={ [1]={ [1]={ limit={ @@ -174824,7 +180741,7 @@ return { [1]="local_unique_jewel_passives_in_radius_grant_base_maximum_life" } }, - [7705]={ + [7964]={ [1]={ [1]={ limit={ @@ -174840,7 +180757,7 @@ return { [1]="local_unique_jewel_passives_in_radius_grant_base_maximum_mana" } }, - [7706]={ + [7965]={ [1]={ [1]={ limit={ @@ -174869,7 +180786,7 @@ return { [1]="local_unique_jewel_passives_in_radius_grant_chaos_damage_+%" } }, - [7707]={ + [7966]={ [1]={ [1]={ limit={ @@ -174898,7 +180815,7 @@ return { [1]="local_unique_jewel_passives_in_radius_grant_cold_damage_+%" } }, - [7708]={ + [7967]={ [1]={ [1]={ limit={ @@ -174927,7 +180844,7 @@ return { [1]="local_unique_jewel_passives_in_radius_grant_critical_strike_chance_+%" } }, - [7709]={ + [7968]={ [1]={ [1]={ limit={ @@ -174956,7 +180873,7 @@ return { [1]="local_unique_jewel_passives_in_radius_grant_evasion_rating_+%" } }, - [7710]={ + [7969]={ [1]={ [1]={ limit={ @@ -174985,7 +180902,7 @@ return { [1]="local_unique_jewel_passives_in_radius_grant_fire_damage_+%" } }, - [7711]={ + [7970]={ [1]={ [1]={ limit={ @@ -175014,7 +180931,7 @@ return { [1]="local_unique_jewel_passives_in_radius_grant_lightning_damage_+%" } }, - [7712]={ + [7971]={ [1]={ [1]={ limit={ @@ -175043,7 +180960,7 @@ return { [1]="local_unique_jewel_passives_in_radius_grant_maximum_energy_shield_+%" } }, - [7713]={ + [7972]={ [1]={ [1]={ limit={ @@ -175072,7 +180989,7 @@ return { [1]="local_unique_jewel_passives_in_radius_grant_physical_damage_+%" } }, - [7714]={ + [7973]={ [1]={ [1]={ limit={ @@ -175101,7 +181018,7 @@ return { [1]="local_unique_jewel_passives_in_radius_grant_physical_damage_reduction_rating_+%" } }, - [7715]={ + [7974]={ [1]={ [1]={ limit={ @@ -175130,7 +181047,7 @@ return { [1]="local_unique_jewel_galvanic_arrow_area_damage_+%_with_40_dex_in_radius" } }, - [7716]={ + [7975]={ [1]={ [1]={ limit={ @@ -175155,7 +181072,7 @@ return { [1]="local_unique_jewel_skills_in_radius_grant_%_unarmed_melee_attack_speed" } }, - [7717]={ + [7976]={ [1]={ [1]={ limit={ @@ -175180,7 +181097,7 @@ return { [1]="local_unique_jewel_spark_number_of_additional_projectiles_with_40_int_in_radius" } }, - [7718]={ + [7977]={ [1]={ [1]={ limit={ @@ -175196,7 +181113,7 @@ return { [1]="local_unique_jewel_spark_projectiles_nova_with_40_int_in_radius" } }, - [7719]={ + [7978]={ [1]={ [1]={ limit={ @@ -175212,7 +181129,7 @@ return { [1]="local_unique_jewel_spectral_shield_throw_additional_chains_with_total_40_str_+_dex_in_radius" } }, - [7720]={ + [7979]={ [1]={ [1]={ limit={ @@ -175241,7 +181158,7 @@ return { [1]="local_unique_jewel_spectral_shield_throw_less_shard_projectiles_with_total_40_str_+_dex_in_radius" } }, - [7721]={ + [7980]={ [1]={ [1]={ limit={ @@ -175257,7 +181174,7 @@ return { [1]="local_unique_jewel_spectral_throw_gain_vaal_soul_for_vaal_st_on_hit_%_with_40_dex_in_radius" } }, - [7722]={ + [7981]={ [1]={ [1]={ [1]={ @@ -175277,7 +181194,7 @@ return { [1]="local_unique_jewel_spectres_gain_soul_eater_on_kill_%_chance_with_50_int_in_radius" } }, - [7723]={ + [7982]={ [1]={ [1]={ limit={ @@ -175293,7 +181210,7 @@ return { [1]="local_unique_jewel_split_arrow_projectiles_fire_in_parallel_x_dist_with_40_dex_in_radius" } }, - [7724]={ + [7983]={ [1]={ [1]={ limit={ @@ -175322,7 +181239,7 @@ return { [1]="local_unique_jewel_tattoos_in_radius_effect_+%" } }, - [7725]={ + [7984]={ [1]={ [1]={ limit={ @@ -175338,7 +181255,7 @@ return { [1]="local_unique_jewel_viper_strike_chance_to_gain_unholy_might_%_on_hit_per_poison_stack_on_enemy_with_50_dex_in_radius" } }, - [7726]={ + [7985]={ [1]={ [1]={ limit={ @@ -175354,7 +181271,7 @@ return { [1]="local_unique_jewel_zombie_slam_cooldown_speed_+%_with_50_int_in_radius" } }, - [7727]={ + [7986]={ [1]={ [1]={ limit={ @@ -175370,7 +181287,7 @@ return { [1]="local_unique_jewel_zombie_slam_damage_+%_with_50_int_in_radius" } }, - [7728]={ + [7987]={ [1]={ [1]={ limit={ @@ -175386,7 +181303,7 @@ return { [1]="local_weapon_crit_chance_is_%" } }, - [7729]={ + [7988]={ [1]={ [1]={ [1]={ @@ -175406,7 +181323,7 @@ return { [1]="local_weapon_passive_tree_granted_passive_hash" } }, - [7730]={ + [7989]={ [1]={ [1]={ [1]={ @@ -175439,7 +181356,7 @@ return { [1]="local_weapon_range_+_per_10%_quality" } }, - [7731]={ + [7990]={ [1]={ [1]={ [1]={ @@ -175459,7 +181376,7 @@ return { [1]="local_weapon_trigger_socketed_fire_spell_on_hit_display_cooldown" } }, - [7732]={ + [7991]={ [1]={ [1]={ limit={ @@ -175475,7 +181392,7 @@ return { [1]="lose_adrenaline_on_losing_flame_touched" } }, - [7733]={ + [7992]={ [1]={ [1]={ limit={ @@ -175491,7 +181408,7 @@ return { [1]="lose_all_charges_on_starting_movement" } }, - [7734]={ + [7993]={ [1]={ [1]={ limit={ @@ -175507,7 +181424,7 @@ return { [1]="lose_all_defiance_on_reaching_x_defiance" } }, - [7735]={ + [7994]={ [1]={ [1]={ limit={ @@ -175523,7 +181440,7 @@ return { [1]="lose_all_fanatic_charges_on_reaching_maximum_fanatic_charges" } }, - [7736]={ + [7995]={ [1]={ [1]={ limit={ @@ -175539,7 +181456,7 @@ return { [1]="lose_all_gale_force_when_hit" } }, - [7737]={ + [7996]={ [1]={ [1]={ limit={ @@ -175555,7 +181472,7 @@ return { [1]="lose_all_power_charges_on_block" } }, - [7738]={ + [7997]={ [1]={ [1]={ limit={ @@ -175571,7 +181488,7 @@ return { [1]="lose_%_of_es_on_crit" } }, - [7739]={ + [7998]={ [1]={ [1]={ limit={ @@ -175587,7 +181504,7 @@ return { [1]="lose_%_of_life_and_energy_shield_when_you_use_a_chaos_skill" } }, - [7740]={ + [7999]={ [1]={ [1]={ limit={ @@ -175603,7 +181520,7 @@ return { [1]="lose_%_of_life_on_crit" } }, - [7741]={ + [8000]={ [1]={ [1]={ limit={ @@ -175619,7 +181536,7 @@ return { [1]="lose_%_of_mana_when_you_use_an_attack_skill" } }, - [7742]={ + [8001]={ [1]={ [1]={ [1]={ @@ -175639,7 +181556,7 @@ return { [1]="lose_power_charge_each_second_if_not_detonated_mines_recently" } }, - [7743]={ + [8002]={ [1]={ [1]={ limit={ @@ -175655,7 +181572,7 @@ return { [1]="lose_x_mana_when_you_use_skill" } }, - [7744]={ + [8003]={ [1]={ [1]={ limit={ @@ -175680,7 +181597,7 @@ return { [1]="local_display_lose_soul_eater_stack_every_x_seconds_while_no_unique_in_your_presence" } }, - [7745]={ + [8004]={ [1]={ [1]={ limit={ @@ -175696,7 +181613,7 @@ return { [1]="low_life_threshold_%_override" } }, - [7746]={ + [8005]={ [1]={ [1]={ [1]={ @@ -175716,7 +181633,7 @@ return { [1]="lucky_or_unlucky_effects_are_instead_unexciting" } }, - [7747]={ + [8006]={ [1]={ [1]={ limit={ @@ -175745,7 +181662,7 @@ return { [1]="magic_monster_dropped_item_rarity_+%" } }, - [7748]={ + [8007]={ [1]={ [1]={ limit={ @@ -175770,7 +181687,7 @@ return { [1]="magma_orb_number_of_additional_projectiles" } }, - [7749]={ + [8008]={ [1]={ [1]={ limit={ @@ -175799,7 +181716,7 @@ return { [1]="magma_orb_skill_area_of_effect_+%_per_bounce" } }, - [7750]={ + [8009]={ [1]={ [1]={ limit={ @@ -175828,7 +181745,7 @@ return { [1]="maim_effect_+%" } }, - [7751]={ + [8010]={ [1]={ [1]={ [1]={ @@ -175848,7 +181765,7 @@ return { [1]="maim_on_crit_%_with_attacks" } }, - [7752]={ + [8011]={ [1]={ [1]={ [1]={ @@ -175881,7 +181798,7 @@ return { [1]="maim_on_hit_%" } }, - [7753]={ + [8012]={ [1]={ [1]={ limit={ @@ -175910,7 +181827,7 @@ return { [1]="main_hand_attack_damage_+%_while_wielding_two_weapon_types" } }, - [7754]={ + [8013]={ [1]={ [1]={ limit={ @@ -175939,7 +181856,7 @@ return { [1]="main_hand_attack_speed_+%_final" } }, - [7755]={ + [8014]={ [1]={ [1]={ limit={ @@ -175968,7 +181885,7 @@ return { [1]="main_hand_claw_life_gain_on_hit" } }, - [7756]={ + [8015]={ [1]={ [1]={ limit={ @@ -175993,7 +181910,7 @@ return { [1]="main_hand_critical_strike_chance_+%_per_melee_abyss_jewel_up_to_+200%" } }, - [7757]={ + [8016]={ [1]={ [1]={ limit={ @@ -176022,7 +181939,7 @@ return { [1]="main_hand_damage_+%_while_dual_wielding" } }, - [7758]={ + [8017]={ [1]={ [1]={ [1]={ @@ -176042,7 +181959,7 @@ return { [1]="malediction_on_hit" } }, - [7759]={ + [8018]={ [1]={ [1]={ [1]={ @@ -176075,7 +181992,7 @@ return { [1]="malevolence_mana_reservation_efficiency_-2%_per_1" } }, - [7760]={ + [8019]={ [1]={ [1]={ limit={ @@ -176104,7 +182021,7 @@ return { [1]="malevolence_mana_reservation_efficiency_+%" } }, - [7761]={ + [8020]={ [1]={ [1]={ limit={ @@ -176133,7 +182050,7 @@ return { [1]="mamba_strike_area_of_effect_+%" } }, - [7762]={ + [8021]={ [1]={ [1]={ limit={ @@ -176162,7 +182079,7 @@ return { [1]="mamba_strike_damage_+%" } }, - [7763]={ + [8022]={ [1]={ [1]={ limit={ @@ -176191,7 +182108,36 @@ return { [1]="mamba_strike_duration_+%" } }, - [7764]={ + [8023]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Mana Cost of Skills for 2 seconds after Spending a total of 800 Mana" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Mana Cost of Skills for 2 seconds after Spending a total of 800 Mana" + } + }, + stats={ + [1]="mana_cost_+%_for_2_seconds_when_you_spend_800_mana" + } + }, + [8024]={ [1]={ [1]={ limit={ @@ -176220,7 +182166,7 @@ return { [1]="mana_cost_+%_for_channelling_skills" } }, - [7765]={ + [8025]={ [1]={ [1]={ limit={ @@ -176249,7 +182195,7 @@ return { [1]="mana_cost_+%_for_trap_and_mine_skills" } }, - [7766]={ + [8026]={ [1]={ [1]={ limit={ @@ -176278,7 +182224,7 @@ return { [1]="mana_cost_+%_for_trap_skills" } }, - [7767]={ + [8027]={ [1]={ [1]={ limit={ @@ -176307,7 +182253,7 @@ return { [1]="mana_cost_+%_per_10_devotion" } }, - [7768]={ + [8028]={ [1]={ [1]={ [1]={ @@ -176327,7 +182273,7 @@ return { [1]="mana_degeneration_per_minute" } }, - [7769]={ + [8029]={ [1]={ [1]={ [1]={ @@ -176347,7 +182293,7 @@ return { [1]="mana_degeneration_per_minute_%" } }, - [7770]={ + [8030]={ [1]={ [1]={ limit={ @@ -176363,7 +182309,7 @@ return { [1]="mana_flask_effects_are_not_removed_at_full_mana" } }, - [7771]={ + [8031]={ [1]={ [1]={ [1]={ @@ -176383,7 +182329,7 @@ return { [1]="mana_flask_recovery_is_instant_while_on_low_mana" } }, - [7772]={ + [8032]={ [1]={ [1]={ limit={ @@ -176408,7 +182354,7 @@ return { [1]="mana_flasks_gain_X_charges_every_3_seconds" } }, - [7773]={ + [8033]={ [1]={ [1]={ limit={ @@ -176424,7 +182370,7 @@ return { [1]="mana_gained_on_attack_hit_if_used_mana_flask_in_past_10_seconds" } }, - [7774]={ + [8034]={ [1]={ [1]={ limit={ @@ -176453,7 +182399,7 @@ return { [1]="mana_gained_on_attack_hit_vs_cursed_enemies" } }, - [7775]={ + [8035]={ [1]={ [1]={ limit={ @@ -176469,7 +182415,7 @@ return { [1]="mana_gained_on_cull" } }, - [7776]={ + [8036]={ [1]={ [1]={ limit={ @@ -176498,7 +182444,7 @@ return { [1]="mana_gained_on_spell_hit" } }, - [7777]={ + [8037]={ [1]={ [1]={ limit={ @@ -176527,7 +182473,65 @@ return { [1]="mana_gained_on_spell_hit_vs_cursed_enemies" } }, - [7778]={ + [8038]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextOvercappedResistance" + }, + [2]={ + k="reminderstring", + v="ReminderTextUncappedResist" + }, + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Mana is increased by Overcapped Lightning Resistance" + }, + [2]={ + [1]={ + k="reminderstring", + v="ReminderTextOvercappedResistance" + }, + [2]={ + k="reminderstring", + v="ReminderTextUncappedResist" + }, + limit={ + [1]={ + [1]=2, + [2]=2 + } + }, + text="Mana is increased by 50% of Overcapped Lightning Resistance" + }, + [3]={ + [1]={ + k="reminderstring", + v="ReminderTextOvercappedResistance" + }, + [2]={ + k="reminderstring", + v="ReminderTextUncappedResist" + }, + limit={ + [1]={ + [1]=3, + [2]="#" + } + }, + text="Mana is increased by 1% per {0}% Overcapped Lightning Resistance" + } + }, + stats={ + [1]="mana_increased_per_x_overcapped_lightning_resistance_choir_of_the_storm" + } + }, + [8039]={ [1]={ [1]={ [1]={ @@ -176551,7 +182555,7 @@ return { [1]="mana_leech_from_attack_damage_permyriad_per_power_charge" } }, - [7779]={ + [8040]={ [1]={ [1]={ [1]={ @@ -176571,7 +182575,7 @@ return { [1]="mana_leech_from_lightning_damage_permyriad_while_affected_by_wrath" } }, - [7780]={ + [8041]={ [1]={ [1]={ [1]={ @@ -176595,7 +182599,7 @@ return { [1]="mana_leech_permyriad_vs_frozen_enemies" } }, - [7781]={ + [8042]={ [1]={ [1]={ limit={ @@ -176611,7 +182615,7 @@ return { [1]="mana_per_level" } }, - [7782]={ + [8043]={ [1]={ [1]={ limit={ @@ -176627,7 +182631,7 @@ return { [1]="mana_%_gained_on_block" } }, - [7783]={ + [8044]={ [1]={ [1]={ limit={ @@ -176643,7 +182647,7 @@ return { [1]="mana_%_to_add_as_energy_shield_at_devotion_threshold" } }, - [7784]={ + [8045]={ [1]={ [1]={ [1]={ @@ -176667,7 +182671,7 @@ return { [1]="mana_recharge_rate_per_minute_with_all_corrupted_equipped_items" } }, - [7785]={ + [8046]={ [1]={ [1]={ limit={ @@ -176683,7 +182687,7 @@ return { [1]="mana_recovery_from_regeneration_is_not_applied" } }, - [7786]={ + [8047]={ [1]={ [1]={ limit={ @@ -176712,7 +182716,7 @@ return { [1]="mana_recovery_rate_+%_while_affected_by_a_mana_flask" } }, - [7787]={ + [8048]={ [1]={ [1]={ [1]={ @@ -176749,7 +182753,7 @@ return { [1]="mana_recovery_rate_+%_if_havent_killed_recently" } }, - [7788]={ + [8049]={ [1]={ [1]={ limit={ @@ -176778,7 +182782,7 @@ return { [1]="mana_recovery_rate_+%_while_affected_by_clarity" } }, - [7789]={ + [8050]={ [1]={ [1]={ limit={ @@ -176807,7 +182811,7 @@ return { [1]="mana_regeneration_rate_+%_per_1%_spell_block_chance" } }, - [7790]={ + [8051]={ [1]={ [1]={ [1]={ @@ -176831,7 +182835,7 @@ return { [1]="mana_regeneration_rate_per_minute_%_if_consumed_corpse_recently" } }, - [7791]={ + [8052]={ [1]={ [1]={ [1]={ @@ -176855,7 +182859,7 @@ return { [1]="mana_regeneration_rate_per_minute_if_enemy_hit_recently" } }, - [7792]={ + [8053]={ [1]={ [1]={ [1]={ @@ -176879,7 +182883,7 @@ return { [1]="mana_regeneration_rate_per_minute_if_used_movement_skill_recently" } }, - [7793]={ + [8054]={ [1]={ [1]={ [1]={ @@ -176899,7 +182903,7 @@ return { [1]="mana_regeneration_rate_per_minute_per_10_devotion" } }, - [7794]={ + [8055]={ [1]={ [1]={ [1]={ @@ -176919,7 +182923,7 @@ return { [1]="mana_regeneration_rate_per_minute_per_power_charge" } }, - [7795]={ + [8056]={ [1]={ [1]={ [1]={ @@ -176943,7 +182947,7 @@ return { [1]="mana_regeneration_rate_per_minute_%_if_enemy_hit_recently" } }, - [7796]={ + [8057]={ [1]={ [1]={ [1]={ @@ -176967,7 +182971,7 @@ return { [1]="mana_regeneration_rate_per_minute_%_if_inflicted_exposure_recently" } }, - [7797]={ + [8058]={ [1]={ [1]={ [1]={ @@ -176987,7 +182991,7 @@ return { [1]="mana_regeneration_rate_per_minute_%_per_active_totem" } }, - [7798]={ + [8059]={ [1]={ [1]={ [1]={ @@ -177007,7 +183011,7 @@ return { [1]="mana_regeneration_rate_per_minute_while_dual_wielding" } }, - [7799]={ + [8060]={ [1]={ [1]={ [1]={ @@ -177027,7 +183031,7 @@ return { [1]="mana_regeneration_rate_per_minute_while_holding_shield" } }, - [7800]={ + [8061]={ [1]={ [1]={ [1]={ @@ -177047,7 +183051,7 @@ return { [1]="mana_regeneration_rate_per_minute_while_on_consecrated_ground" } }, - [7801]={ + [8062]={ [1]={ [1]={ [1]={ @@ -177071,7 +183075,7 @@ return { [1]="mana_regeneration_rate_per_minute_while_wielding_staff" } }, - [7802]={ + [8063]={ [1]={ [1]={ [1]={ @@ -177091,7 +183095,7 @@ return { [1]="mana_regeneration_rate_per_minute_while_you_have_avians_flight" } }, - [7803]={ + [8064]={ [1]={ [1]={ [1]={ @@ -177128,7 +183132,7 @@ return { [1]="mana_regeneration_rate_+%_if_enemy_frozen_recently" } }, - [7804]={ + [8065]={ [1]={ [1]={ [1]={ @@ -177165,7 +183169,7 @@ return { [1]="mana_regeneration_rate_+%_if_enemy_shocked_recently" } }, - [7805]={ + [8066]={ [1]={ [1]={ [1]={ @@ -177202,7 +183206,7 @@ return { [1]="mana_regeneration_rate_+%_if_hit_cursed_enemy_recently" } }, - [7806]={ + [8067]={ [1]={ [1]={ limit={ @@ -177231,7 +183235,7 @@ return { [1]="mana_regeneration_rate_+%_per_raised_spectre" } }, - [7807]={ + [8068]={ [1]={ [1]={ limit={ @@ -177260,7 +183264,7 @@ return { [1]="mana_regeneration_rate_+%_while_moving" } }, - [7808]={ + [8069]={ [1]={ [1]={ limit={ @@ -177289,7 +183293,7 @@ return { [1]="mana_reservation_+%_with_skills_that_throw_mines" } }, - [7809]={ + [8070]={ [1]={ [1]={ limit={ @@ -177318,7 +183322,7 @@ return { [1]="mana_reservation_efficiency_+%_for_skills_that_throw_mines" } }, - [7810]={ + [8071]={ [1]={ [1]={ [1]={ @@ -177351,7 +183355,7 @@ return { [1]="mana_reservation_efficiency_-2%_per_1_for_skills_that_throw_mines" } }, - [7811]={ + [8072]={ [1]={ [1]={ [1]={ @@ -177392,7 +183396,7 @@ return { [1]="mana_reservation_efficiency_-2%_per_250_total_attributes" } }, - [7812]={ + [8073]={ [1]={ [1]={ limit={ @@ -177421,7 +183425,7 @@ return { [1]="mana_reservation_efficiency_+%_per_250_total_attributes" } }, - [7813]={ + [8074]={ [1]={ [1]={ limit={ @@ -177450,7 +183454,7 @@ return { [1]="mana_reservation_+%_per_250_total_attributes" } }, - [7814]={ + [8075]={ [1]={ [1]={ limit={ @@ -177479,7 +183483,7 @@ return { [1]="mana_reservation_+%_with_curse_skills" } }, - [7815]={ + [8076]={ [1]={ [1]={ limit={ @@ -177495,7 +183499,7 @@ return { [1]="manabond_and_stormbind_freeze_as_though_dealt_damage_+%" } }, - [7816]={ + [8077]={ [1]={ [1]={ limit={ @@ -177511,7 +183515,7 @@ return { [1]="manabond_and_stormbind_skill_lightning_damage_%_to_convert_to_cold" } }, - [7817]={ + [8078]={ [1]={ [1]={ limit={ @@ -177540,7 +183544,7 @@ return { [1]="manabond_damage_+%" } }, - [7818]={ + [8079]={ [1]={ [1]={ [1]={ @@ -177560,7 +183564,7 @@ return { [1]="manabond_lightning_penetration_%_while_on_low_mana" } }, - [7819]={ + [8080]={ [1]={ [1]={ limit={ @@ -177589,7 +183593,7 @@ return { [1]="manabond_skill_area_of_effect_+%" } }, - [7820]={ + [8081]={ [1]={ [1]={ limit={ @@ -177614,7 +183618,7 @@ return { [1]="manifest_dancing_dervish_number_of_additional_copies" } }, - [7821]={ + [8082]={ [1]={ [1]={ limit={ @@ -177639,7 +183643,7 @@ return { [1]="map_25%_chance_for_rare_monsters_to_be_possessed_up_to_x_times" } }, - [7822]={ + [8083]={ [1]={ [1]={ limit={ @@ -177664,7 +183668,7 @@ return { [1]="map_X_additional_random_unallocated_notables" } }, - [7823]={ + [8084]={ [1]={ [1]={ limit={ @@ -177689,7 +183693,7 @@ return { [1]="map_X_bestiary_packs_are_harvest_beasts" } }, - [7824]={ + [8085]={ [1]={ [1]={ limit={ @@ -177705,7 +183709,7 @@ return { [1]="map_reliquary_must_complete_strongboxes" } }, - [7825]={ + [8086]={ [1]={ [1]={ limit={ @@ -177730,7 +183734,7 @@ return { [1]="map_abyss_depths_chance_+%" } }, - [7826]={ + [8087]={ [1]={ [1]={ limit={ @@ -177746,7 +183750,7 @@ return { [1]="map_abyss_monsters_enhanced_per_chasm_closed" } }, - [7827]={ + [8088]={ [1]={ [1]={ limit={ @@ -177775,7 +183779,7 @@ return { [1]="map_actor_scale_+%" } }, - [7828]={ + [8089]={ [1]={ [1]={ limit={ @@ -177791,7 +183795,7 @@ return { [1]="map_additional_rare_in_rare_pack_%_chance" } }, - [7829]={ + [8090]={ [1]={ [1]={ limit={ @@ -177807,7 +183811,7 @@ return { [1]="map_additional_rare_in_synthesised_rare_pack_%_chance" } }, - [7830]={ + [8091]={ [1]={ [1]={ limit={ @@ -177854,7 +183858,7 @@ return { [2]="map_bestiary_league" } }, - [7831]={ + [8092]={ [1]={ [1]={ limit={ @@ -177879,7 +183883,7 @@ return { [1]="map_adds_X_extra_synthesis_mods" } }, - [7832]={ + [8093]={ [1]={ [1]={ limit={ @@ -177904,7 +183908,7 @@ return { [1]="map_adds_X_extra_synthesis_special_mods" } }, - [7833]={ + [8094]={ [1]={ [1]={ limit={ @@ -177933,7 +183937,7 @@ return { [1]="map_affliction_pack_size_+%" } }, - [7834]={ + [8095]={ [1]={ [1]={ limit={ @@ -177962,7 +183966,7 @@ return { [1]="map_affliction_reward_kills_+%" } }, - [7835]={ + [8096]={ [1]={ [1]={ limit={ @@ -177978,7 +183982,7 @@ return { [1]="map_all_magic_monsters_in_union_of_souls" } }, - [7836]={ + [8097]={ [1]={ [1]={ limit={ @@ -177994,7 +183998,7 @@ return { [1]="map_supporter_al_hezmin_spawn_daemon" } }, - [7837]={ + [8098]={ [1]={ [1]={ limit={ @@ -178010,7 +184014,7 @@ return { [1]="map_supporter_all_spawn_daemon" } }, - [7838]={ + [8099]={ [1]={ [1]={ limit={ @@ -178026,7 +184030,7 @@ return { [1]="map_supporter_atziri_spawn_daemon" } }, - [7839]={ + [8100]={ [1]={ [1]={ limit={ @@ -178042,7 +184046,7 @@ return { [1]="map_supporter_baran_spawn_daemon" } }, - [7840]={ + [8101]={ [1]={ [1]={ limit={ @@ -178058,7 +184062,7 @@ return { [1]="map_supporter_drox_daemon" } }, - [7841]={ + [8102]={ [1]={ [1]={ limit={ @@ -178074,7 +184078,7 @@ return { [1]="map_supporter_uber_elder_spawn_daemon" } }, - [7842]={ + [8103]={ [1]={ [1]={ limit={ @@ -178090,7 +184094,7 @@ return { [1]="map_supporter_uber_shaper_spawn_daemon" } }, - [7843]={ + [8104]={ [1]={ [1]={ limit={ @@ -178106,7 +184110,7 @@ return { [1]="map_supporter_sirus_spawn_daemon" } }, - [7844]={ + [8105]={ [1]={ [1]={ limit={ @@ -178122,7 +184126,7 @@ return { [1]="map_supporter_veritania_spawn_daemon" } }, - [7845]={ + [8106]={ [1]={ [1]={ limit={ @@ -178138,7 +184142,7 @@ return { [1]="map_monsters_petrification_for_X_seconds_on_hit" } }, - [7846]={ + [8107]={ [1]={ [1]={ limit={ @@ -178163,7 +184167,7 @@ return { [1]="map_architects_drops_additional_map_currency" } }, - [7847]={ + [8108]={ [1]={ [1]={ limit={ @@ -178188,7 +184192,7 @@ return { [1]="map_atlas_influence_type" } }, - [7848]={ + [8109]={ [1]={ [1]={ limit={ @@ -178204,7 +184208,7 @@ return { [1]="map_area_contains_arcanists_strongbox" } }, - [7849]={ + [8110]={ [1]={ [1]={ limit={ @@ -178220,7 +184224,7 @@ return { [1]="map_area_contains_avatar_of_ambush" } }, - [7850]={ + [8111]={ [1]={ [1]={ limit={ @@ -178236,7 +184240,7 @@ return { [1]="map_area_contains_avatar_of_anarchy" } }, - [7851]={ + [8112]={ [1]={ [1]={ limit={ @@ -178252,7 +184256,7 @@ return { [1]="map_area_contains_avatar_of_beyond" } }, - [7852]={ + [8113]={ [1]={ [1]={ limit={ @@ -178268,7 +184272,7 @@ return { [1]="map_area_contains_avatar_of_bloodlines" } }, - [7853]={ + [8114]={ [1]={ [1]={ limit={ @@ -178284,7 +184288,7 @@ return { [1]="map_area_contains_avatar_of_breach" } }, - [7854]={ + [8115]={ [1]={ [1]={ limit={ @@ -178300,7 +184304,7 @@ return { [1]="map_area_contains_avatar_of_domination" } }, - [7855]={ + [8116]={ [1]={ [1]={ limit={ @@ -178316,7 +184320,7 @@ return { [1]="map_area_contains_avatar_of_essence" } }, - [7856]={ + [8117]={ [1]={ [1]={ limit={ @@ -178332,7 +184336,7 @@ return { [1]="map_area_contains_avatar_of_invasion" } }, - [7857]={ + [8118]={ [1]={ [1]={ limit={ @@ -178348,7 +184352,7 @@ return { [1]="map_area_contains_avatar_of_nemesis" } }, - [7858]={ + [8119]={ [1]={ [1]={ limit={ @@ -178364,7 +184368,7 @@ return { [1]="map_area_contains_avatar_of_onslaught" } }, - [7859]={ + [8120]={ [1]={ [1]={ limit={ @@ -178380,7 +184384,7 @@ return { [1]="map_area_contains_avatar_of_perandus" } }, - [7860]={ + [8121]={ [1]={ [1]={ limit={ @@ -178396,7 +184400,7 @@ return { [1]="map_area_contains_avatar_of_prophecy" } }, - [7861]={ + [8122]={ [1]={ [1]={ limit={ @@ -178412,7 +184416,7 @@ return { [1]="map_area_contains_avatar_of_rampage" } }, - [7862]={ + [8123]={ [1]={ [1]={ limit={ @@ -178428,7 +184432,7 @@ return { [1]="map_area_contains_avatar_of_talisman" } }, - [7863]={ + [8124]={ [1]={ [1]={ limit={ @@ -178444,7 +184448,7 @@ return { [1]="map_area_contains_avatar_of_tempest" } }, - [7864]={ + [8125]={ [1]={ [1]={ limit={ @@ -178460,7 +184464,7 @@ return { [1]="map_area_contains_avatar_of_torment" } }, - [7865]={ + [8126]={ [1]={ [1]={ limit={ @@ -178476,7 +184480,7 @@ return { [1]="map_area_contains_avatar_of_warbands" } }, - [7866]={ + [8127]={ [1]={ [1]={ limit={ @@ -178492,7 +184496,7 @@ return { [1]="map_area_contains_cartographers_strongbox" } }, - [7867]={ + [8128]={ [1]={ [1]={ limit={ @@ -178508,7 +184512,7 @@ return { [1]="map_area_contains_currency_chest" } }, - [7868]={ + [8129]={ [1]={ [1]={ limit={ @@ -178524,7 +184528,7 @@ return { [1]="map_area_contains_gemcutters_strongbox" } }, - [7869]={ + [8130]={ [1]={ [1]={ limit={ @@ -178540,7 +184544,7 @@ return { [1]="map_area_contains_grandmaster_ally" } }, - [7870]={ + [8131]={ [1]={ [1]={ limit={ @@ -178556,7 +184560,7 @@ return { [1]="map_area_contains_jewellery_chest" } }, - [7871]={ + [8132]={ [1]={ [1]={ limit={ @@ -178572,7 +184576,7 @@ return { [1]="map_area_contains_map_chest" } }, - [7872]={ + [8133]={ [1]={ [1]={ limit={ @@ -178588,7 +184592,7 @@ return { [1]="map_area_contains_metamorphs" } }, - [7873]={ + [8134]={ [1]={ [1]={ limit={ @@ -178604,7 +184608,7 @@ return { [1]="map_area_contains_perandus_coin_chest" } }, - [7874]={ + [8135]={ [1]={ [1]={ limit={ @@ -178620,7 +184624,7 @@ return { [1]="map_area_contains_tormented_embezzler" } }, - [7875]={ + [8136]={ [1]={ [1]={ limit={ @@ -178636,7 +184640,7 @@ return { [1]="map_area_contains_tormented_seditionist" } }, - [7876]={ + [8137]={ [1]={ [1]={ limit={ @@ -178652,7 +184656,7 @@ return { [1]="map_area_contains_tormented_vaal_cultist" } }, - [7877]={ + [8138]={ [1]={ [1]={ limit={ @@ -178668,7 +184672,7 @@ return { [1]="map_area_contains_unique_item_chest" } }, - [7878]={ + [8139]={ [1]={ [1]={ limit={ @@ -178684,7 +184688,7 @@ return { [1]="map_area_contains_unique_strongbox" } }, - [7879]={ + [8140]={ [1]={ [1]={ limit={ @@ -178700,7 +184704,7 @@ return { [1]="map_area_contains_x_additional_clusters_of_beacon_barrels" } }, - [7880]={ + [8141]={ [1]={ [1]={ limit={ @@ -178716,7 +184720,7 @@ return { [1]="map_area_contains_x_additional_clusters_of_bloodworm_barrels" } }, - [7881]={ + [8142]={ [1]={ [1]={ limit={ @@ -178732,7 +184736,7 @@ return { [1]="map_area_contains_x_additional_clusters_of_explosive_barrels" } }, - [7882]={ + [8143]={ [1]={ [1]={ limit={ @@ -178748,7 +184752,7 @@ return { [1]="map_area_contains_x_additional_clusters_of_explosive_eggs" } }, - [7883]={ + [8144]={ [1]={ [1]={ limit={ @@ -178764,7 +184768,7 @@ return { [1]="map_area_contains_x_additional_clusters_of_parasite_barrels" } }, - [7884]={ + [8145]={ [1]={ [1]={ limit={ @@ -178798,7 +184802,7 @@ return { [2]="display_stat_uber_barrels" } }, - [7885]={ + [8146]={ [1]={ [1]={ limit={ @@ -178814,7 +184818,7 @@ return { [1]="map_area_contains_x_additional_clusters_of_wealthy_barrels" } }, - [7886]={ + [8147]={ [1]={ [1]={ limit={ @@ -178839,7 +184843,7 @@ return { [1]="map_area_ritual_additional_chance_%" } }, - [7887]={ + [8148]={ [1]={ [1]={ limit={ @@ -178868,7 +184872,7 @@ return { [1]="map_bestiary_monster_damage_+%_final" } }, - [7888]={ + [8149]={ [1]={ [1]={ limit={ @@ -178897,7 +184901,7 @@ return { [1]="map_bestiary_monster_life_+%_final" } }, - [7889]={ + [8150]={ [1]={ [1]={ limit={ @@ -178926,7 +184930,7 @@ return { [1]="map_betrayal_intelligence_+%" } }, - [7890]={ + [8151]={ [1]={ [1]={ limit={ @@ -178955,7 +184959,7 @@ return { [1]="map_beyond_demon_faction_chance_+%" } }, - [7891]={ + [8152]={ [1]={ [1]={ limit={ @@ -178984,7 +184988,7 @@ return { [1]="map_beyond_flesh_faction_chance_+%" } }, - [7892]={ + [8153]={ [1]={ [1]={ limit={ @@ -179013,7 +185017,7 @@ return { [1]="map_beyond_pale_faction_chance_+%" } }, - [7893]={ + [8154]={ [1]={ [1]={ limit={ @@ -179042,7 +185046,7 @@ return { [1]="map_beyond_portal_chance_+%" } }, - [7894]={ + [8155]={ [1]={ [1]={ limit={ @@ -179067,7 +185071,7 @@ return { [1]="map_beyond_portal_spawn_additional_demon_%_chance" } }, - [7895]={ + [8156]={ [1]={ [1]={ limit={ @@ -179096,7 +185100,7 @@ return { [1]="map_beyond_unique_item_quantity_+%_final_from_flesh_faction" } }, - [7896]={ + [8157]={ [1]={ [1]={ [1]={ @@ -179133,7 +185137,7 @@ return { [1]="map_beyond_basic_currency_quantity_+%_final_from_pale_faction" } }, - [7897]={ + [8158]={ [1]={ [1]={ limit={ @@ -179162,7 +185166,7 @@ return { [1]="map_beyond_divination_card_quantity_+%_final_from_demon_faction" } }, - [7898]={ + [8159]={ [1]={ [1]={ limit={ @@ -179187,7 +185191,7 @@ return { [1]="map_blight_chest_%_chance_for_additional_drop" } }, - [7899]={ + [8160]={ [1]={ [1]={ limit={ @@ -179203,7 +185207,7 @@ return { [1]="map_blight_chests_repeat_drops_count" } }, - [7900]={ + [8161]={ [1]={ [1]={ limit={ @@ -179219,7 +185223,7 @@ return { [1]="map_blight_empowering_towers_and_upgrades_enhance_enemies" } }, - [7901]={ + [8162]={ [1]={ [1]={ limit={ @@ -179235,7 +185239,7 @@ return { [1]="map_blight_encounter_oil_reward_chance_+%" } }, - [7902]={ + [8163]={ [1]={ [1]={ limit={ @@ -179251,7 +185255,7 @@ return { [1]="map_blight_encounter_spawn_rate_+%" } }, - [7903]={ + [8164]={ [1]={ [1]={ limit={ @@ -179267,7 +185271,7 @@ return { [1]="map_blight_lane_additional_chest_chance_%" } }, - [7904]={ + [8165]={ [1]={ [1]={ limit={ @@ -179292,7 +185296,7 @@ return { [1]="map_blight_lane_additional_chests" } }, - [7905]={ + [8166]={ [1]={ [1]={ limit={ @@ -179317,7 +185321,7 @@ return { [1]="map_blight_oils_chance_to_drop_a_tier_higher_%" } }, - [7906]={ + [8167]={ [1]={ [1]={ limit={ @@ -179346,7 +185350,7 @@ return { [1]="map_blight_tower_cost_+%" } }, - [7907]={ + [8168]={ [1]={ [1]={ limit={ @@ -179362,7 +185366,7 @@ return { [1]="map_blight_tower_cost_doubled" } }, - [7908]={ + [8169]={ [1]={ [1]={ limit={ @@ -179387,7 +185391,7 @@ return { [1]="map_blight_up_to_X_additional_bosses" } }, - [7909]={ + [8170]={ [1]={ [1]={ limit={ @@ -179403,7 +185407,7 @@ return { [1]="map_blighted_map_encounter_duration_-_sec" } }, - [7910]={ + [8171]={ [1]={ [1]={ limit={ @@ -179428,7 +185432,7 @@ return { [1]="map_bloodline_packs_drop_x_additional_currency_items" } }, - [7911]={ + [8172]={ [1]={ [1]={ limit={ @@ -179453,7 +185457,7 @@ return { [1]="map_bloodline_packs_drop_x_additional_rare_items" } }, - [7912]={ + [8173]={ [1]={ [1]={ limit={ @@ -179469,7 +185473,7 @@ return { [1]="map_blueprint_drop_revealed_chance_%" } }, - [7913]={ + [8174]={ [1]={ [1]={ limit={ @@ -179485,7 +185489,7 @@ return { [1]="map_boss_accompanied_by_bodyguards" } }, - [7914]={ + [8175]={ [1]={ [1]={ limit={ @@ -179501,7 +185505,7 @@ return { [1]="map_boss_accompanied_by_harbinger" } }, - [7915]={ + [8176]={ [1]={ [1]={ limit={ @@ -179526,7 +185530,7 @@ return { [1]="map_boss_additional_currency_to_drop" } }, - [7916]={ + [8177]={ [1]={ [1]={ limit={ @@ -179551,7 +185555,7 @@ return { [1]="map_boss_additional_scarabs_to_drop" } }, - [7917]={ + [8178]={ [1]={ [1]={ limit={ @@ -179576,7 +185580,7 @@ return { [1]="map_boss_additional_uniques_to_drop" } }, - [7918]={ + [8179]={ [1]={ [1]={ limit={ @@ -179601,7 +185605,7 @@ return { [1]="map_boss_chance_to_be_surrounded_by_spirits_%" } }, - [7919]={ + [8180]={ [1]={ [1]={ limit={ @@ -179630,7 +185634,7 @@ return { [1]="map_boss_dropped_item_quantity_+%" } }, - [7920]={ + [8181]={ [1]={ [1]={ limit={ @@ -179655,7 +185659,7 @@ return { [1]="map_boss_dropped_unique_items_+" } }, - [7921]={ + [8182]={ [1]={ [1]={ limit={ @@ -179680,7 +185684,7 @@ return { [1]="map_boss_drops_X_fractured_incursion_items" } }, - [7922]={ + [8183]={ [1]={ [1]={ limit={ @@ -179696,7 +185700,7 @@ return { [1]="map_boss_drops_additional_currency_shards" } }, - [7923]={ + [8184]={ [1]={ [1]={ limit={ @@ -179712,7 +185716,7 @@ return { [1]="map_boss_drops_corrupted_items" } }, - [7924]={ + [8185]={ [1]={ [1]={ limit={ @@ -179728,7 +185732,7 @@ return { [1]="map_boss_is_possessed" } }, - [7925]={ + [8186]={ [1]={ [1]={ limit={ @@ -179757,7 +185761,7 @@ return { [1]="map_boss_item_rarity_+%" } }, - [7926]={ + [8187]={ [1]={ [1]={ limit={ @@ -179773,7 +185777,7 @@ return { [1]="map_boss_replaced_with_atziri" } }, - [7927]={ + [8188]={ [1]={ [1]={ limit={ @@ -179798,7 +185802,7 @@ return { [1]="map_boss_rose_petal_quantity_+%" } }, - [7928]={ + [8189]={ [1]={ [1]={ limit={ @@ -179814,7 +185818,7 @@ return { [1]="map_boss_surrounded_by_tormented_spirits" } }, - [7929]={ + [8190]={ [1]={ [1]={ limit={ @@ -179839,7 +185843,7 @@ return { [1]="map_boss_drops_x_additional_vaal_items" } }, - [7930]={ + [8191]={ [1]={ [1]={ limit={ @@ -179868,7 +185872,7 @@ return { [1]="map_breach_chance_to_be_esh_+%" } }, - [7931]={ + [8192]={ [1]={ [1]={ limit={ @@ -179897,7 +185901,7 @@ return { [1]="map_breach_chance_to_be_tul_+%" } }, - [7932]={ + [8193]={ [1]={ [1]={ limit={ @@ -179926,7 +185930,7 @@ return { [1]="map_breach_chance_to_be_uul_netol_+%" } }, - [7933]={ + [8194]={ [1]={ [1]={ limit={ @@ -179955,7 +185959,7 @@ return { [1]="map_breach_chance_to_be_xoph_+%" } }, - [7934]={ + [8195]={ [1]={ [1]={ limit={ @@ -179971,7 +185975,7 @@ return { [1]="map_breach_has_large_chest" } }, - [7935]={ + [8196]={ [1]={ [1]={ limit={ @@ -179987,7 +185991,7 @@ return { [1]="map_breach_monster_quantity_+%" } }, - [7936]={ + [8197]={ [1]={ [1]={ limit={ @@ -180039,7 +186043,7 @@ return { [1]="map_breach_type_override" } }, - [7937]={ + [8198]={ [1]={ [1]={ limit={ @@ -180064,7 +186068,7 @@ return { [1]="map_breaches_num_additional_chests_to_spawn" } }, - [7938]={ + [8199]={ [1]={ [1]={ [1]={ @@ -180084,7 +186088,7 @@ return { [1]="map_can_only_damage_enemies_in_X_radius" } }, - [7939]={ + [8200]={ [1]={ [1]={ limit={ @@ -180100,7 +186104,7 @@ return { [1]="map_cannot_evade" } }, - [7940]={ + [8201]={ [1]={ [1]={ limit={ @@ -180116,7 +186120,7 @@ return { [1]="map_chance_for_area_%_to_contain_harvest" } }, - [7941]={ + [8202]={ [1]={ [1]={ limit={ @@ -180132,7 +186136,7 @@ return { [1]="map_chance_to_not_consume_sextant_use_%" } }, - [7942]={ + [8203]={ [1]={ [1]={ limit={ @@ -180157,7 +186161,7 @@ return { [1]="map_contains_X_additional_village_ores" } }, - [7943]={ + [8204]={ [1]={ [1]={ limit={ @@ -180182,7 +186186,7 @@ return { [1]="map_contains_X_rogue_giants" } }, - [7944]={ + [8205]={ [1]={ [1]={ limit={ @@ -180198,7 +186202,7 @@ return { [1]="map_contains_abyss_depths" } }, - [7945]={ + [8206]={ [1]={ [1]={ limit={ @@ -180223,7 +186227,7 @@ return { [1]="map_contains_additional_atlas_bosses" } }, - [7946]={ + [8207]={ [1]={ [1]={ limit={ @@ -180239,7 +186243,7 @@ return { [1]="map_contains_additional_chrysalis_talisman" } }, - [7947]={ + [8208]={ [1]={ [1]={ limit={ @@ -180255,7 +186259,7 @@ return { [1]="map_contains_additional_clutching_talisman" } }, - [7948]={ + [8209]={ [1]={ [1]={ limit={ @@ -180271,7 +186275,7 @@ return { [1]="map_contains_additional_fangjaw_talisman" } }, - [7949]={ + [8210]={ [1]={ [1]={ limit={ @@ -180287,7 +186291,7 @@ return { [1]="map_contains_additional_mandible_talisman" } }, - [7950]={ + [8211]={ [1]={ [1]={ limit={ @@ -180303,7 +186307,7 @@ return { [1]="map_contains_additional_packs_of_chaos_monsters" } }, - [7951]={ + [8212]={ [1]={ [1]={ limit={ @@ -180319,7 +186323,7 @@ return { [1]="map_contains_additional_packs_of_cold_monsters" } }, - [7952]={ + [8213]={ [1]={ [1]={ limit={ @@ -180335,7 +186339,7 @@ return { [1]="map_contains_additional_packs_of_fire_monsters" } }, - [7953]={ + [8214]={ [1]={ [1]={ limit={ @@ -180351,7 +186355,7 @@ return { [1]="map_contains_additional_packs_of_lightning_monsters" } }, - [7954]={ + [8215]={ [1]={ [1]={ limit={ @@ -180367,7 +186371,7 @@ return { [1]="map_contains_additional_packs_of_physical_monsters" } }, - [7955]={ + [8216]={ [1]={ [1]={ limit={ @@ -180392,7 +186396,7 @@ return { [1]="map_contains_additional_packs_of_vaal_monsters" } }, - [7956]={ + [8217]={ [1]={ [1]={ limit={ @@ -180408,7 +186412,7 @@ return { [1]="map_contains_x_additional_sulphite_golem_packs" } }, - [7957]={ + [8218]={ [1]={ [1]={ limit={ @@ -180424,7 +186428,7 @@ return { [1]="map_contains_additional_three_rat_talisman" } }, - [7958]={ + [8219]={ [1]={ [1]={ limit={ @@ -180449,7 +186453,7 @@ return { [1]="map_contains_additional_tormented_betrayers" } }, - [7959]={ + [8220]={ [1]={ [1]={ limit={ @@ -180474,7 +186478,7 @@ return { [1]="map_contains_additional_tormented_graverobbers" } }, - [7960]={ + [8221]={ [1]={ [1]={ limit={ @@ -180499,7 +186503,7 @@ return { [1]="map_contains_additional_tormented_heretics" } }, - [7961]={ + [8222]={ [1]={ [1]={ limit={ @@ -180515,7 +186519,7 @@ return { [1]="map_contains_additional_unique_talisman" } }, - [7962]={ + [8223]={ [1]={ [1]={ limit={ @@ -180531,7 +186535,7 @@ return { [1]="map_contains_additional_writhing_talisman" } }, - [7963]={ + [8224]={ [1]={ [1]={ limit={ @@ -180547,7 +186551,7 @@ return { [1]="map_contains_chayula_breach" } }, - [7964]={ + [8225]={ [1]={ [1]={ limit={ @@ -180590,7 +186594,7 @@ return { [1]="map_contains_citadel" } }, - [7965]={ + [8226]={ [1]={ [1]={ limit={ @@ -180606,7 +186610,7 @@ return { [1]="map_contains_corrupted_strongbox" } }, - [7966]={ + [8227]={ [1]={ [1]={ limit={ @@ -180622,7 +186626,7 @@ return { [1]="map_contains_creeping_agony" } }, - [7967]={ + [8228]={ [1]={ [1]={ limit={ @@ -180638,7 +186642,7 @@ return { [1]="map_contains_evil_einhar" } }, - [7968]={ + [8229]={ [1]={ [1]={ limit={ @@ -180663,7 +186667,7 @@ return { [1]="map_contains_frogs" } }, - [7969]={ + [8230]={ [1]={ [1]={ limit={ @@ -180679,7 +186683,7 @@ return { [1]="map_contains_keepers_of_the_trove_bloodline_pack" } }, - [7970]={ + [8231]={ [1]={ [1]={ limit={ @@ -180695,7 +186699,7 @@ return { [1]="map_contains_master" } }, - [7971]={ + [8232]={ [1]={ [1]={ limit={ @@ -180720,7 +186724,7 @@ return { [1]="map_contains_nevalis_monkey" } }, - [7972]={ + [8233]={ [1]={ [1]={ limit={ @@ -180736,7 +186740,7 @@ return { [1]="map_contains_perandus_boss" } }, - [7973]={ + [8234]={ [1]={ [1]={ limit={ @@ -180761,7 +186765,7 @@ return { [1]="map_contains_talisman_boss_with_higher_tier" } }, - [7974]={ + [8235]={ [1]={ [1]={ limit={ @@ -180777,7 +186781,7 @@ return { [1]="map_contains_the_elderslayers" } }, - [7975]={ + [8236]={ [1]={ [1]={ limit={ @@ -180793,7 +186797,7 @@ return { [1]="map_contains_the_feared" } }, - [7976]={ + [8237]={ [1]={ [1]={ limit={ @@ -180809,7 +186813,7 @@ return { [1]="map_contains_the_forgotten" } }, - [7977]={ + [8238]={ [1]={ [1]={ limit={ @@ -180825,7 +186829,7 @@ return { [1]="map_contains_the_formed" } }, - [7978]={ + [8239]={ [1]={ [1]={ limit={ @@ -180841,7 +186845,23 @@ return { [1]="map_contains_the_hidden" } }, - [7979]={ + [8240]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Area contains The Remembered" + } + }, + stats={ + [1]="map_contains_the_remembered" + } + }, + [8241]={ [1]={ [1]={ limit={ @@ -180857,7 +186877,7 @@ return { [1]="map_contains_the_twisted" } }, - [7980]={ + [8242]={ [1]={ [1]={ limit={ @@ -180899,7 +186919,7 @@ return { [2]="map_contains_three_magic_packs_with_item_quantity_of_dropped_items_+%_final" } }, - [7981]={ + [8243]={ [1]={ [1]={ limit={ @@ -180915,7 +186935,7 @@ return { [1]="map_contains_uul_netol_breach" } }, - [7982]={ + [8244]={ [1]={ [1]={ limit={ @@ -180931,7 +186951,7 @@ return { [1]="map_contains_wealthy_pack" } }, - [7983]={ + [8245]={ [1]={ [1]={ limit={ @@ -180947,7 +186967,7 @@ return { [1]="map_contains_x_additional_animated_weapon_packs" } }, - [7984]={ + [8246]={ [1]={ [1]={ limit={ @@ -180963,7 +186983,7 @@ return { [1]="map_contains_x_additional_healing_packs" } }, - [7985]={ + [8247]={ [1]={ [1]={ limit={ @@ -180988,7 +187008,7 @@ return { [1]="map_contains_x_additional_magic_packs" } }, - [7986]={ + [8248]={ [1]={ [1]={ limit={ @@ -181004,7 +187024,7 @@ return { [1]="map_contains_x_additional_normal_packs" } }, - [7987]={ + [8249]={ [1]={ [1]={ limit={ @@ -181020,7 +187040,7 @@ return { [1]="map_contains_x_additional_packs_on_their_own_team" } }, - [7988]={ + [8250]={ [1]={ [1]={ limit={ @@ -181036,7 +187056,7 @@ return { [1]="map_contains_x_additional_packs_that_convert_on_death" } }, - [7989]={ + [8251]={ [1]={ [1]={ limit={ @@ -181052,7 +187072,7 @@ return { [1]="map_contains_x_additional_packs_with_mirrored_rare_monsters" } }, - [7990]={ + [8252]={ [1]={ [1]={ limit={ @@ -181068,7 +187088,7 @@ return { [1]="map_contains_x_additional_poison_packs" } }, - [7991]={ + [8253]={ [1]={ [1]={ limit={ @@ -181093,7 +187113,7 @@ return { [1]="map_contains_x_additional_rare_packs" } }, - [7992]={ + [8254]={ [1]={ [1]={ limit={ @@ -181109,7 +187129,7 @@ return { [1]="map_contains_X_additional_tricksters" } }, - [7993]={ + [8255]={ [1]={ [1]={ limit={ @@ -181134,7 +187154,7 @@ return { [1]="map_contains_X_additional_uber_harbingers" } }, - [7994]={ + [8256]={ [1]={ [1]={ [1]={ @@ -181154,7 +187174,7 @@ return { [1]="map_contains_X_additional_untainted_packs" } }, - [7995]={ + [8257]={ [1]={ [1]={ limit={ @@ -181170,7 +187190,7 @@ return { [1]="map_contains_x_fewer_portals" } }, - [7996]={ + [8258]={ [1]={ [1]={ limit={ @@ -181195,7 +187215,7 @@ return { [1]="map_contains_X_harvest_bear_bosses" } }, - [7997]={ + [8259]={ [1]={ [1]={ limit={ @@ -181220,7 +187240,7 @@ return { [1]="map_contains_X_harvest_bird_bosses" } }, - [7998]={ + [8260]={ [1]={ [1]={ limit={ @@ -181245,7 +187265,7 @@ return { [1]="map_contains_X_harvest_cat_bosses" } }, - [7999]={ + [8261]={ [1]={ [1]={ limit={ @@ -181270,7 +187290,7 @@ return { [1]="map_area_contains_x_rare_monsters_with_inner_treasure" } }, - [8000]={ + [8262]={ [1]={ [1]={ limit={ @@ -181286,7 +187306,7 @@ return { [1]="map_contains_X_sirus_storms" } }, - [8001]={ + [8263]={ [1]={ [1]={ limit={ @@ -181311,7 +187331,7 @@ return { [1]="map_contracts_drop_with_additional_special_implicit_%_chance" } }, - [8002]={ + [8264]={ [1]={ [1]={ limit={ @@ -181327,7 +187347,7 @@ return { [1]="map_cowards_trial_extra_ghosts" } }, - [8003]={ + [8265]={ [1]={ [1]={ limit={ @@ -181343,7 +187363,7 @@ return { [1]="map_cowards_trial_extra_oriath_citizens" } }, - [8004]={ + [8266]={ [1]={ [1]={ limit={ @@ -181359,7 +187379,7 @@ return { [1]="map_cowards_trial_extra_phantasms" } }, - [8005]={ + [8267]={ [1]={ [1]={ limit={ @@ -181375,7 +187395,7 @@ return { [1]="map_cowards_trial_extra_raging_spirits" } }, - [8006]={ + [8268]={ [1]={ [1]={ limit={ @@ -181391,7 +187411,7 @@ return { [1]="map_cowards_trial_extra_rhoas" } }, - [8007]={ + [8269]={ [1]={ [1]={ limit={ @@ -181407,7 +187427,7 @@ return { [1]="map_cowards_trial_extra_skeleton_cannons" } }, - [8008]={ + [8270]={ [1]={ [1]={ limit={ @@ -181423,7 +187443,7 @@ return { [1]="map_cowards_trial_extra_zombies" } }, - [8009]={ + [8271]={ [1]={ [1]={ limit={ @@ -181452,7 +187472,7 @@ return { [1]="map_crucible_unique_monsters_+%" } }, - [8010]={ + [8272]={ [1]={ [1]={ limit={ @@ -181481,7 +187501,7 @@ return { [1]="map_custom_league_damage_taken_+%_final" } }, - [8011]={ + [8273]={ [1]={ [1]={ limit={ @@ -181510,7 +187530,7 @@ return { [1]="map_damage_+%_per_poison_stack" } }, - [8012]={ + [8274]={ [1]={ [1]={ limit={ @@ -181526,7 +187546,7 @@ return { [1]="map_damage_+%_of_type_inflicted_by_current_ground_effect_you_are_on" } }, - [8013]={ + [8275]={ [1]={ [1]={ limit={ @@ -181542,7 +187562,7 @@ return { [1]="map_damage_removed_from_player_life_before_totem_life_%" } }, - [8014]={ + [8276]={ [1]={ [1]={ limit={ @@ -181571,7 +187591,7 @@ return { [1]="map_damage_taken_+%_from_beyond_monsters" } }, - [8015]={ + [8277]={ [1]={ [1]={ limit={ @@ -181587,7 +187607,7 @@ return { [1]="map_damage_taken_+%_per_nearby_ally" } }, - [8016]={ + [8278]={ [1]={ [1]={ limit={ @@ -181616,7 +187636,7 @@ return { [1]="map_damage_taken_while_stationary_+%" } }, - [8017]={ + [8279]={ [1]={ [1]={ limit={ @@ -181645,7 +187665,7 @@ return { [1]="map_damage_while_stationary_+%" } }, - [8018]={ + [8280]={ [1]={ [1]={ limit={ @@ -181670,7 +187690,7 @@ return { [1]="map_death_and_taxes_boss_drops_additional_currency" } }, - [8019]={ + [8281]={ [1]={ [1]={ limit={ @@ -181703,7 +187723,7 @@ return { [1]="map_debuff_time_passed_+%" } }, - [8020]={ + [8282]={ [1]={ [1]={ limit={ @@ -181719,7 +187739,7 @@ return { [1]="map_delve_rules" } }, - [8021]={ + [8283]={ [1]={ [1]={ limit={ @@ -182149,7 +188169,7 @@ return { [4]="map_fishy_effect_3" } }, - [8022]={ + [8284]={ [1]={ [1]={ limit={ @@ -182165,7 +188185,7 @@ return { [1]="map_display_strongbox_monsters_are_enraged" } }, - [8023]={ + [8285]={ [1]={ [1]={ limit={ @@ -182181,7 +188201,7 @@ return { [1]="map_divination_card_drop_chance_+%" } }, - [8024]={ + [8286]={ [1]={ [1]={ limit={ @@ -182197,7 +188217,7 @@ return { [1]="map_doesnt_consume_sextant_use" } }, - [8025]={ + [8287]={ [1]={ [1]={ limit={ @@ -182213,7 +188233,7 @@ return { [1]="map_dropped_equipment_are_converted_to_currency_based_on_rarity" } }, - [8026]={ + [8288]={ [1]={ [1]={ limit={ @@ -182229,7 +188249,7 @@ return { [1]="map_dropped_items_are_fractured_chance_%" } }, - [8027]={ + [8289]={ [1]={ [1]={ limit={ @@ -182245,7 +188265,7 @@ return { [1]="map_dropped_maps_are_corrupted_with_8_mods" } }, - [8028]={ + [8290]={ [1]={ [1]={ [1]={ @@ -182274,7 +188294,7 @@ return { [1]="map_dropped_maps_are_duplicated_chance_permillage" } }, - [8029]={ + [8291]={ [1]={ [1]={ limit={ @@ -182299,7 +188319,7 @@ return { [1]="map_duplicate_captured_beasts_chance_%" } }, - [8030]={ + [8292]={ [1]={ [1]={ limit={ @@ -182315,7 +188335,7 @@ return { [1]="map_duplicate_x_rare_monsters" } }, - [8031]={ + [8293]={ [1]={ [1]={ limit={ @@ -182331,7 +188351,7 @@ return { [1]="map_duplicate_x_synthesised_rare_monsters" } }, - [8032]={ + [8294]={ [1]={ [1]={ limit={ @@ -182374,7 +188394,7 @@ return { [1]="map_elder_boss_variation" } }, - [8033]={ + [8295]={ [1]={ [1]={ limit={ @@ -182390,7 +188410,7 @@ return { [1]="map_elder_rare_chance_+%" } }, - [8034]={ + [8296]={ [1]={ [1]={ [1]={ @@ -182410,7 +188430,7 @@ return { [1]="map_endgame_affliction_reward_1" } }, - [8035]={ + [8297]={ [1]={ [1]={ [1]={ @@ -182430,7 +188450,7 @@ return { [1]="map_endgame_affliction_reward_2" } }, - [8036]={ + [8298]={ [1]={ [1]={ [1]={ @@ -182450,7 +188470,7 @@ return { [1]="map_endgame_affliction_reward_3" } }, - [8037]={ + [8299]={ [1]={ [1]={ [1]={ @@ -182470,7 +188490,7 @@ return { [1]="map_endgame_affliction_reward_4" } }, - [8038]={ + [8300]={ [1]={ [1]={ [1]={ @@ -182490,7 +188510,7 @@ return { [1]="map_endgame_affliction_reward_5" } }, - [8039]={ + [8301]={ [1]={ [1]={ [1]={ @@ -182510,7 +188530,7 @@ return { [1]="map_endgame_affliction_reward_6" } }, - [8040]={ + [8302]={ [1]={ [1]={ [1]={ @@ -182530,7 +188550,7 @@ return { [1]="map_endgame_affliction_reward_7" } }, - [8041]={ + [8303]={ [1]={ [1]={ [1]={ @@ -182550,7 +188570,7 @@ return { [1]="map_endgame_affliction_reward_8" } }, - [8042]={ + [8304]={ [1]={ [1]={ [1]={ @@ -182570,7 +188590,7 @@ return { [1]="map_endgame_affliction_reward_9" } }, - [8043]={ + [8305]={ [1]={ [1]={ limit={ @@ -182586,7 +188606,7 @@ return { [1]="map_endgame_fog_depth" } }, - [8044]={ + [8306]={ [1]={ [1]={ limit={ @@ -182602,7 +188622,7 @@ return { [1]="map_equipment_drops_identified" } }, - [8045]={ + [8307]={ [1]={ [1]={ limit={ @@ -182627,7 +188647,7 @@ return { [1]="map_essence_monolith_contains_additional_essence_of_corruption" } }, - [8046]={ + [8308]={ [1]={ [1]={ limit={ @@ -182643,7 +188663,7 @@ return { [1]="map_essence_monolith_contains_essence_of_corruption_%" } }, - [8047]={ + [8309]={ [1]={ [1]={ limit={ @@ -182659,7 +188679,7 @@ return { [1]="map_essence_monsters_are_corrupted" } }, - [8048]={ + [8310]={ [1]={ [1]={ limit={ @@ -182675,7 +188695,7 @@ return { [1]="map_essence_monsters_chance_for_3_additional_essences_%" } }, - [8049]={ + [8311]={ [1]={ [1]={ limit={ @@ -182700,7 +188720,7 @@ return { [1]="map_essence_monsters_have_additional_essences" } }, - [8050]={ + [8312]={ [1]={ [1]={ limit={ @@ -182716,7 +188736,7 @@ return { [1]="map_essence_monsters_higher_tier" } }, - [8051]={ + [8313]={ [1]={ [1]={ limit={ @@ -182732,7 +188752,7 @@ return { [1]="map_exarch_traps" } }, - [8052]={ + [8314]={ [1]={ [1]={ limit={ @@ -182757,7 +188777,7 @@ return { [1]="map_expedition_artifact_quantity_+%" } }, - [8053]={ + [8315]={ [1]={ [1]={ limit={ @@ -182773,7 +188793,7 @@ return { [1]="map_expedition_chest_double_drops_chance_%" } }, - [8054]={ + [8316]={ [1]={ [1]={ limit={ @@ -182798,7 +188818,7 @@ return { [1]="map_expedition_chest_marker_count_+" } }, - [8055]={ + [8317]={ [1]={ [1]={ limit={ @@ -182823,7 +188843,7 @@ return { [1]="map_expedition_common_chest_marker_count_+" } }, - [8056]={ + [8318]={ [1]={ [1]={ limit={ @@ -182848,7 +188868,7 @@ return { [1]="map_expedition_elite_marker_count_+%" } }, - [8057]={ + [8319]={ [1]={ [1]={ limit={ @@ -182873,7 +188893,7 @@ return { [1]="map_expedition_encounter_additional_chance_%" } }, - [8058]={ + [8320]={ [1]={ [1]={ limit={ @@ -182898,7 +188918,7 @@ return { [1]="map_expedition_epic_chest_marker_count_+" } }, - [8059]={ + [8321]={ [1]={ [1]={ limit={ @@ -182914,7 +188934,7 @@ return { [1]="map_expedition_explosion_radius_+%" } }, - [8060]={ + [8322]={ [1]={ [1]={ limit={ @@ -182930,7 +188950,7 @@ return { [1]="map_expedition_explosives_+%" } }, - [8061]={ + [8323]={ [1]={ [1]={ limit={ @@ -182946,7 +188966,7 @@ return { [1]="map_expedition_extra_relic_suffix_chance_%" } }, - [8062]={ + [8324]={ [1]={ [1]={ limit={ @@ -182971,7 +188991,7 @@ return { [1]="map_expedition_maximum_placement_distance_+%" } }, - [8063]={ + [8325]={ [1]={ [1]={ limit={ @@ -182996,7 +189016,7 @@ return { [1]="map_expedition_number_of_monster_markers_+%" } }, - [8064]={ + [8326]={ [1]={ [1]={ limit={ @@ -183012,7 +189032,7 @@ return { [1]="map_expedition_relics_+" } }, - [8065]={ + [8327]={ [1]={ [1]={ limit={ @@ -183028,7 +189048,7 @@ return { [1]="map_expedition_relics_+%" } }, - [8066]={ + [8328]={ [1]={ [1]={ limit={ @@ -183053,7 +189073,7 @@ return { [1]="map_expedition_saga_additional_terrain_features" } }, - [8067]={ + [8329]={ [1]={ [1]={ limit={ @@ -183096,7 +189116,7 @@ return { [1]="map_expedition_saga_contains_boss" } }, - [8068]={ + [8330]={ [1]={ [1]={ limit={ @@ -183121,7 +189141,7 @@ return { [1]="map_expedition_uncommon_chest_marker_count_+" } }, - [8069]={ + [8331]={ [1]={ [1]={ limit={ @@ -183137,7 +189157,7 @@ return { [1]="map_expedition_vendor_currency_drop_as_logbook" } }, - [8070]={ + [8332]={ [1]={ [1]={ limit={ @@ -183162,7 +189182,7 @@ return { [1]="map_expedition_vendor_reroll_currency_quantity_+%" } }, - [8071]={ + [8333]={ [1]={ [1]={ limit={ @@ -183187,7 +189207,7 @@ return { [1]="map_expedition_x_extra_relic_suffixes" } }, - [8072]={ + [8334]={ [1]={ [1]={ limit={ @@ -183212,7 +189232,7 @@ return { [1]="map_extra_monoliths" } }, - [8073]={ + [8335]={ [1]={ [1]={ limit={ @@ -183237,7 +189257,7 @@ return { [1]="map_first_invasion_boss_killed_drops_x_additional_currency" } }, - [8074]={ + [8336]={ [1]={ [1]={ limit={ @@ -183262,7 +189282,7 @@ return { [1]="map_first_strongbox_contains_x_additional_rare_monsters" } }, - [8075]={ + [8337]={ [1]={ [1]={ limit={ @@ -183287,7 +189307,7 @@ return { [1]="map_first_unique_beyond_boss_slain_drops_x_beyond_uniques" } }, - [8076]={ + [8338]={ [1]={ [1]={ [1]={ @@ -183307,7 +189327,7 @@ return { [1]="map_flask_charges_recovered_per_3_seconds_%" } }, - [8077]={ + [8339]={ [1]={ [1]={ limit={ @@ -183323,7 +189343,7 @@ return { [1]="map_force_side_area" } }, - [8078]={ + [8340]={ [1]={ [1]={ limit={ @@ -183348,7 +189368,7 @@ return { [1]="map_gain_additional_zana_mission_%_chance_on_map_completion" } }, - [8079]={ + [8341]={ [1]={ [1]={ [1]={ @@ -183372,7 +189392,7 @@ return { [1]="map_gain_onslaught_for_x_ms_on_killing_rare_monster" } }, - [8080]={ + [8342]={ [1]={ [1]={ limit={ @@ -183397,7 +189417,7 @@ return { [1]="map_gain_random_map_craft_on_completion_chance_%" } }, - [8081]={ + [8343]={ [1]={ [1]={ limit={ @@ -183426,7 +189446,7 @@ return { [1]="map_gauntlet_unique_monster_life_+%" } }, - [8082]={ + [8344]={ [1]={ [1]={ limit={ @@ -183442,7 +189462,7 @@ return { [1]="map_grants_players_level_20_dash_skill" } }, - [8083]={ + [8345]={ [1]={ [1]={ limit={ @@ -183458,7 +189478,7 @@ return { [1]="map_ground_consecrated_life_regeneration_rate_per_minute_%" } }, - [8084]={ + [8346]={ [1]={ [1]={ limit={ @@ -183474,7 +189494,7 @@ return { [1]="map_ground_haste_action_speed_+%" } }, - [8085]={ + [8347]={ [1]={ [1]={ limit={ @@ -183490,7 +189510,7 @@ return { [1]="map_ground_orion_meteor" } }, - [8086]={ + [8348]={ [1]={ [1]={ limit={ @@ -183506,7 +189526,7 @@ return { [1]="map_harbinger_additional_currency_shard_stack_chance_%" } }, - [8087]={ + [8349]={ [1]={ [1]={ limit={ @@ -183522,7 +189542,7 @@ return { [1]="map_harbinger_portal_drops_additional_fragments" } }, - [8088]={ + [8350]={ [1]={ [1]={ limit={ @@ -183538,7 +189558,7 @@ return { [1]="map_harbingers_drops_additional_currency_shards" } }, - [8089]={ + [8351]={ [1]={ [1]={ limit={ @@ -183563,7 +189583,7 @@ return { [1]="map_harbingers_%_chance_to_be_replaced_as_atlas_boss" } }, - [8090]={ + [8352]={ [1]={ [1]={ limit={ @@ -183579,7 +189599,7 @@ return { [1]="map_harvest_chance_for_other_plot_to_not_wither_%" } }, - [8091]={ + [8353]={ [1]={ [1]={ limit={ @@ -183595,7 +189615,7 @@ return { [1]="map_harvest_crafting_outcomes_X_lucky_rolls" } }, - [8092]={ + [8354]={ [1]={ [1]={ limit={ @@ -183611,7 +189631,7 @@ return { [1]="map_harvest_double_lifeforce_dropped" } }, - [8093]={ + [8355]={ [1]={ [1]={ limit={ @@ -183640,7 +189660,7 @@ return { [1]="map_harvest_monster_life_+%_final_from_sextant" } }, - [8094]={ + [8356]={ [1]={ [1]={ limit={ @@ -183656,7 +189676,7 @@ return { [1]="map_harvest_seeds_%_chance_to_spawn_additional_monster" } }, - [8095]={ + [8357]={ [1]={ [1]={ limit={ @@ -183690,7 +189710,7 @@ return { [1]="map_harvest_seeds_1_of_every_2_plot_type_override" } }, - [8096]={ + [8358]={ [1]={ [1]={ limit={ @@ -183706,7 +189726,7 @@ return { [1]="map_harvest_t3_chance_+%" } }, - [8097]={ + [8359]={ [1]={ [1]={ limit={ @@ -183722,7 +189742,7 @@ return { [1]="map_has_monoliths" } }, - [8098]={ + [8360]={ [1]={ [1]={ limit={ @@ -183738,7 +189758,7 @@ return { [1]="map_has_x%_quality" } }, - [8099]={ + [8361]={ [1]={ [1]={ limit={ @@ -183763,7 +189783,7 @@ return { [1]="map_heist_contract_additional_reveals_granted" } }, - [8100]={ + [8362]={ [1]={ [1]={ limit={ @@ -183779,7 +189799,7 @@ return { [1]="map_heist_contract_chest_no_rewards_%_chance" } }, - [8101]={ + [8363]={ [1]={ [1]={ limit={ @@ -183795,7 +189815,7 @@ return { [1]="map_heist_contract_npc_items_cannot_drop" } }, - [8102]={ + [8364]={ [1]={ [1]={ limit={ @@ -183824,7 +189844,7 @@ return { [1]="map_heist_contract_primary_target_value_+%_final" } }, - [8103]={ + [8365]={ [1]={ [1]={ limit={ @@ -183853,7 +189873,7 @@ return { [1]="map_heist_monster_life_+%_final_from_sextant" } }, - [8104]={ + [8366]={ [1]={ [1]={ limit={ @@ -183878,7 +189898,7 @@ return { [1]="map_heist_npc_perks_effect_+%_final" } }, - [8105]={ + [8367]={ [1]={ [1]={ limit={ @@ -183894,7 +189914,7 @@ return { [1]="map_high_tier_maps_convert_to_conqueror_maps_%" } }, - [8106]={ + [8368]={ [1]={ [1]={ limit={ @@ -183910,7 +189930,7 @@ return { [1]="map_high_tier_maps_convert_to_elder_maps_%" } }, - [8107]={ + [8369]={ [1]={ [1]={ limit={ @@ -183926,7 +189946,7 @@ return { [1]="map_high_tier_maps_convert_to_shaper_maps_%" } }, - [8108]={ + [8370]={ [1]={ [1]={ limit={ @@ -183942,7 +189962,7 @@ return { [1]="map_high_tier_maps_convert_to_synth_maps_%" } }, - [8109]={ + [8371]={ [1]={ [1]={ [1]={ @@ -183975,7 +189995,7 @@ return { [1]="map_monsters_chance_to_impale_%" } }, - [8110]={ + [8372]={ [1]={ [1]={ limit={ @@ -183991,7 +190011,7 @@ return { [1]="map_impales_on_players_detonate_when_players_have_X_impale_debuffs" } }, - [8111]={ + [8373]={ [1]={ [1]={ limit={ @@ -184007,7 +190027,7 @@ return { [1]="map_implicit_item_drop_quantity_+%" } }, - [8112]={ + [8374]={ [1]={ [1]={ limit={ @@ -184023,7 +190043,7 @@ return { [1]="map_implicit_item_drop_rarity_+%" } }, - [8113]={ + [8375]={ [1]={ [1]={ limit={ @@ -184039,7 +190059,7 @@ return { [1]="map_implicit_pack_size_+%" } }, - [8114]={ + [8376]={ [1]={ [1]={ limit={ @@ -184068,7 +190088,7 @@ return { [1]="map_imprisoned_monsters_action_speed_+%" } }, - [8115]={ + [8377]={ [1]={ [1]={ limit={ @@ -184097,7 +190117,7 @@ return { [1]="map_imprisoned_monsters_damage_+%" } }, - [8116]={ + [8378]={ [1]={ [1]={ limit={ @@ -184113,7 +190133,7 @@ return { [1]="map_imprisoned_monsters_damage_taken_+%" } }, - [8117]={ + [8379]={ [1]={ [1]={ limit={ @@ -184129,7 +190149,7 @@ return { [1]="map_incursion_boss_possessed_by_tormented_arsonist" } }, - [8118]={ + [8380]={ [1]={ [1]={ limit={ @@ -184145,7 +190165,7 @@ return { [1]="map_incursion_boss_possessed_by_tormented_blasphemer" } }, - [8119]={ + [8381]={ [1]={ [1]={ limit={ @@ -184161,7 +190181,7 @@ return { [1]="map_incursion_boss_possessed_by_tormented_cannibal" } }, - [8120]={ + [8382]={ [1]={ [1]={ limit={ @@ -184177,7 +190197,7 @@ return { [1]="map_incursion_boss_possessed_by_tormented_charlatan" } }, - [8121]={ + [8383]={ [1]={ [1]={ limit={ @@ -184193,7 +190213,7 @@ return { [1]="map_incursion_boss_possessed_by_tormented_corrupter" } }, - [8122]={ + [8384]={ [1]={ [1]={ limit={ @@ -184209,7 +190229,7 @@ return { [1]="map_incursion_boss_possessed_by_tormented_counterfeiter" } }, - [8123]={ + [8385]={ [1]={ [1]={ limit={ @@ -184225,7 +190245,7 @@ return { [1]="map_incursion_boss_possessed_by_tormented_cutthroat" } }, - [8124]={ + [8386]={ [1]={ [1]={ limit={ @@ -184241,7 +190261,7 @@ return { [1]="map_incursion_boss_possessed_by_tormented_embezzler" } }, - [8125]={ + [8387]={ [1]={ [1]={ limit={ @@ -184257,7 +190277,7 @@ return { [1]="map_incursion_boss_possessed_by_tormented_experimenter" } }, - [8126]={ + [8388]={ [1]={ [1]={ limit={ @@ -184273,7 +190293,7 @@ return { [1]="map_incursion_boss_possessed_by_tormented_fisherman" } }, - [8127]={ + [8389]={ [1]={ [1]={ limit={ @@ -184289,7 +190309,7 @@ return { [1]="map_incursion_boss_possessed_by_tormented_freezer" } }, - [8128]={ + [8390]={ [1]={ [1]={ limit={ @@ -184305,7 +190325,7 @@ return { [1]="map_incursion_boss_possessed_by_tormented_librarian" } }, - [8129]={ + [8391]={ [1]={ [1]={ limit={ @@ -184321,7 +190341,7 @@ return { [1]="map_incursion_boss_possessed_by_tormented_martyr" } }, - [8130]={ + [8392]={ [1]={ [1]={ limit={ @@ -184337,7 +190357,7 @@ return { [1]="map_incursion_boss_possessed_by_tormented_mutilator" } }, - [8131]={ + [8393]={ [1]={ [1]={ limit={ @@ -184353,7 +190373,7 @@ return { [1]="map_incursion_boss_possessed_by_tormented_necromancer" } }, - [8132]={ + [8394]={ [1]={ [1]={ limit={ @@ -184369,7 +190389,7 @@ return { [1]="map_incursion_boss_possessed_by_tormented_poisoner" } }, - [8133]={ + [8395]={ [1]={ [1]={ limit={ @@ -184385,7 +190405,7 @@ return { [1]="map_incursion_boss_possessed_by_tormented_rogue" } }, - [8134]={ + [8396]={ [1]={ [1]={ limit={ @@ -184401,7 +190421,7 @@ return { [1]="map_incursion_boss_possessed_by_tormented_smuggler" } }, - [8135]={ + [8397]={ [1]={ [1]={ limit={ @@ -184417,7 +190437,7 @@ return { [1]="map_incursion_boss_possessed_by_tormented_spy" } }, - [8136]={ + [8398]={ [1]={ [1]={ limit={ @@ -184433,7 +190453,7 @@ return { [1]="map_incursion_boss_possessed_by_tormented_thief" } }, - [8137]={ + [8399]={ [1]={ [1]={ limit={ @@ -184449,7 +190469,7 @@ return { [1]="map_incursion_boss_possessed_by_tormented_thug" } }, - [8138]={ + [8400]={ [1]={ [1]={ limit={ @@ -184465,7 +190485,7 @@ return { [1]="map_incursion_boss_possessed_by_tormented_warlord" } }, - [8139]={ + [8401]={ [1]={ [1]={ limit={ @@ -184481,7 +190501,7 @@ return { [1]="map_incursion_spawn_large_caustic_plants" } }, - [8140]={ + [8402]={ [1]={ [1]={ limit={ @@ -184497,7 +190517,7 @@ return { [1]="map_incursion_spawn_parasitic_caustic_plants" } }, - [8141]={ + [8403]={ [1]={ [1]={ limit={ @@ -184513,7 +190533,7 @@ return { [1]="map_influence_pack_size_+%" } }, - [8142]={ + [8404]={ [1]={ [1]={ limit={ @@ -184529,7 +190549,7 @@ return { [1]="map_packs_are_bone_husks" } }, - [8143]={ + [8405]={ [1]={ [1]={ limit={ @@ -184545,7 +190565,7 @@ return { [1]="map_packs_are_kitava_heralds" } }, - [8144]={ + [8406]={ [1]={ [1]={ limit={ @@ -184561,7 +190581,7 @@ return { [1]="map_packs_are_porcupines" } }, - [8145]={ + [8407]={ [1]={ [1]={ limit={ @@ -184590,7 +190610,7 @@ return { [1]="map_inscribed_ultimatum_reward_currency_items_chance_+%" } }, - [8146]={ + [8408]={ [1]={ [1]={ limit={ @@ -184619,7 +190639,7 @@ return { [1]="map_inscribed_ultimatum_reward_divination_cards_chance_+%" } }, - [8147]={ + [8409]={ [1]={ [1]={ limit={ @@ -184648,7 +190668,7 @@ return { [1]="map_inscribed_ultimatum_reward_unique_items_chance_+%" } }, - [8148]={ + [8410]={ [1]={ [1]={ limit={ @@ -184664,7 +190684,7 @@ return { [1]="map_invasion_bosses_are_twinned" } }, - [8149]={ + [8411]={ [1]={ [1]={ limit={ @@ -184689,7 +190709,7 @@ return { [1]="map_invasion_bosses_drop_x_additional_vaal_orbs" } }, - [8150]={ + [8412]={ [1]={ [1]={ limit={ @@ -184705,7 +190725,7 @@ return { [1]="map_invasion_bosses_dropped_items_are_fully_linked" } }, - [8151]={ + [8413]={ [1]={ [1]={ limit={ @@ -184730,7 +190750,7 @@ return { [1]="map_invasion_bosses_dropped_items_have_x_additional_sockets" } }, - [8152]={ + [8414]={ [1]={ [1]={ limit={ @@ -184755,7 +190775,7 @@ return { [1]="map_invasion_monsters_guarded_by_x_magic_packs" } }, - [8153]={ + [8415]={ [1]={ [1]={ [1]={ @@ -184775,7 +190795,7 @@ return { [1]="emergency_hotfix_stat_2" } }, - [8154]={ + [8416]={ [1]={ [1]={ limit={ @@ -184791,7 +190811,7 @@ return { [1]="map_contains_additional_reviving_packs" } }, - [8155]={ + [8417]={ [1]={ [1]={ limit={ @@ -184807,7 +190827,7 @@ return { [1]="map_item_drop_quality_also_applies_to_map_item_drop_rarity" } }, - [8156]={ + [8418]={ [1]={ [1]={ limit={ @@ -184836,7 +190856,7 @@ return { [1]="map_item_drop_quantity_+%_final_from_zana_influence" } }, - [8157]={ + [8419]={ [1]={ [1]={ limit={ @@ -184865,7 +190885,7 @@ return { [1]="map_item_found_rarity_+%_per_15_rampage_stacks" } }, - [8158]={ + [8420]={ [1]={ [1]={ limit={ @@ -184881,7 +190901,7 @@ return { [1]="map_item_quantity_from_monsters_that_drop_silver_coin_+%" } }, - [8159]={ + [8421]={ [1]={ [1]={ limit={ @@ -184897,7 +190917,7 @@ return { [1]="map_item_zana_influence_+" } }, - [8160]={ + [8422]={ [1]={ [1]={ limit={ @@ -184926,7 +190946,7 @@ return { [1]="map_labyrinth_izaro_area_of_effect_+%" } }, - [8161]={ + [8423]={ [1]={ [1]={ limit={ @@ -184955,7 +190975,7 @@ return { [1]="map_labyrinth_izaro_attack_cast_move_speed_+%" } }, - [8162]={ + [8424]={ [1]={ [1]={ limit={ @@ -184984,7 +191004,7 @@ return { [1]="map_labyrinth_izaro_damage_+%" } }, - [8163]={ + [8425]={ [1]={ [1]={ limit={ @@ -185013,7 +191033,7 @@ return { [1]="map_labyrinth_izaro_life_+%" } }, - [8164]={ + [8426]={ [1]={ [1]={ limit={ @@ -185042,7 +191062,7 @@ return { [1]="map_labyrinth_monsters_attack_cast_and_movement_speed_+%" } }, - [8165]={ + [8427]={ [1]={ [1]={ limit={ @@ -185071,7 +191091,7 @@ return { [1]="map_labyrinth_monsters_damage_+%" } }, - [8166]={ + [8428]={ [1]={ [1]={ limit={ @@ -185100,7 +191120,7 @@ return { [1]="map_labyrinth_monsters_life_+%" } }, - [8167]={ + [8429]={ [1]={ [1]={ limit={ @@ -185125,7 +191145,7 @@ return { [1]="map_leaguestone_area_contains_x_additional_leaguestones" } }, - [8168]={ + [8430]={ [1]={ [1]={ limit={ @@ -185154,7 +191174,7 @@ return { [1]="map_leaguestone_beyond_monster_item_quantity_and_rarity_+%_final" } }, - [8169]={ + [8431]={ [1]={ [1]={ limit={ @@ -185170,7 +191190,7 @@ return { [1]="map_leaguestone_contains_warband_leader" } }, - [8170]={ + [8432]={ [1]={ [1]={ limit={ @@ -185213,7 +191233,7 @@ return { [1]="map_leaguestone_explicit_warband_type_override" } }, - [8171]={ + [8433]={ [1]={ [1]={ limit={ @@ -185229,7 +191249,7 @@ return { [1]="map_leaguestone_imprisoned_monsters_item_quantity_+%_final" } }, - [8172]={ + [8434]={ [1]={ [1]={ limit={ @@ -185245,7 +191265,7 @@ return { [1]="map_leaguestone_imprisoned_monsters_item_rarity_+%_final" } }, - [8173]={ + [8435]={ [1]={ [1]={ limit={ @@ -185274,7 +191294,7 @@ return { [1]="map_leaguestone_invasion_boss_item_quantity_and_rarity_+%_final" } }, - [8174]={ + [8436]={ [1]={ [1]={ limit={ @@ -185326,7 +191346,7 @@ return { [1]="map_leaguestone_monolith_contains_essence_type" } }, - [8175]={ + [8437]={ [1]={ [1]={ limit={ @@ -185351,7 +191371,7 @@ return { [1]="map_leaguestone_override_base_num_breaches" } }, - [8176]={ + [8438]={ [1]={ [1]={ limit={ @@ -185376,7 +191396,7 @@ return { [1]="map_leaguestone_override_base_num_invasion_bosses" } }, - [8177]={ + [8439]={ [1]={ [1]={ limit={ @@ -185401,7 +191421,7 @@ return { [1]="map_leaguestone_override_base_num_monoliths" } }, - [8178]={ + [8440]={ [1]={ [1]={ limit={ @@ -185426,7 +191446,7 @@ return { [1]="map_leaguestone_override_base_num_perandus_chests" } }, - [8179]={ + [8441]={ [1]={ [1]={ limit={ @@ -185451,7 +191471,7 @@ return { [1]="map_leaguestone_override_base_num_prophecy_coins" } }, - [8180]={ + [8442]={ [1]={ [1]={ limit={ @@ -185476,7 +191496,7 @@ return { [1]="map_leaguestone_override_base_num_rogue_exiles" } }, - [8181]={ + [8443]={ [1]={ [1]={ limit={ @@ -185501,7 +191521,7 @@ return { [1]="map_leaguestone_override_base_num_shrines" } }, - [8182]={ + [8444]={ [1]={ [1]={ limit={ @@ -185526,7 +191546,7 @@ return { [1]="map_leaguestone_override_base_num_strongboxes" } }, - [8183]={ + [8445]={ [1]={ [1]={ limit={ @@ -185551,7 +191571,7 @@ return { [1]="map_leaguestone_override_base_num_talismans" } }, - [8184]={ + [8446]={ [1]={ [1]={ limit={ @@ -185576,7 +191596,7 @@ return { [1]="map_leaguestone_override_base_num_tormented_spirits" } }, - [8185]={ + [8447]={ [1]={ [1]={ limit={ @@ -185601,7 +191621,7 @@ return { [1]="map_leaguestone_override_base_num_warband_packs" } }, - [8186]={ + [8448]={ [1]={ [1]={ limit={ @@ -185617,7 +191637,7 @@ return { [1]="map_leaguestone_perandus_chests_have_item_quantity_+%_final" } }, - [8187]={ + [8449]={ [1]={ [1]={ limit={ @@ -185633,7 +191653,7 @@ return { [1]="map_leaguestone_perandus_chests_have_item_rarity_+%_final" } }, - [8188]={ + [8450]={ [1]={ [1]={ limit={ @@ -185649,7 +191669,7 @@ return { [1]="map_leaguestone_rogue_exiles_dropped_item_rarity_+%_final" } }, - [8189]={ + [8451]={ [1]={ [1]={ limit={ @@ -185674,7 +191694,7 @@ return { [1]="map_leaguestone_shrine_monster_rarity_override" } }, - [8190]={ + [8452]={ [1]={ [1]={ limit={ @@ -185708,7 +191728,7 @@ return { [1]="map_leaguestone_shrine_override_type" } }, - [8191]={ + [8453]={ [1]={ [1]={ limit={ @@ -185733,7 +191753,7 @@ return { [1]="map_leaguestone_strongboxes_rarity_override" } }, - [8192]={ + [8454]={ [1]={ [1]={ limit={ @@ -185749,7 +191769,7 @@ return { [1]="map_strongboxes_vaal_orb_drop_chance_%" } }, - [8193]={ + [8455]={ [1]={ [1]={ limit={ @@ -185765,7 +191785,7 @@ return { [1]="map_leaguestone_warbands_packs_have_item_quantity_+%_final" } }, - [8194]={ + [8456]={ [1]={ [1]={ limit={ @@ -185781,7 +191801,7 @@ return { [1]="map_leaguestone_warbands_packs_have_item_rarity_+%_final" } }, - [8195]={ + [8457]={ [1]={ [1]={ limit={ @@ -185806,7 +191826,7 @@ return { [1]="map_leaguestone_x_monsters_spawn_abaxoth" } }, - [8196]={ + [8458]={ [1]={ [1]={ limit={ @@ -185831,7 +191851,7 @@ return { [1]="map_leaguestone_x_monsters_spawn_random_beyond_boss" } }, - [8197]={ + [8459]={ [1]={ [1]={ limit={ @@ -185847,7 +191867,7 @@ return { [1]="map_leaguestones_currency_items_drop_when_first_reaching_x_rampage_stacks" } }, - [8198]={ + [8460]={ [1]={ [1]={ limit={ @@ -185863,7 +191883,7 @@ return { [1]="map_leaguestones_spawn_powerful_monster_when_reaching_x_rampage_stacks" } }, - [8199]={ + [8461]={ [1]={ [1]={ limit={ @@ -185888,7 +191908,7 @@ return { [1]="map_legion_additional_number_of_sergeants" } }, - [8200]={ + [8462]={ [1]={ [1]={ limit={ @@ -185904,7 +191924,7 @@ return { [1]="map_legion_generals_spawn_both_generals" } }, - [8201]={ + [8463]={ [1]={ [1]={ limit={ @@ -185920,7 +191940,7 @@ return { [1]="map_legion_league_force_general" } }, - [8202]={ + [8464]={ [1]={ [1]={ limit={ @@ -185936,7 +191956,7 @@ return { [1]="map_legion_league_force_war_chest" } }, - [8203]={ + [8465]={ [1]={ [1]={ limit={ @@ -185965,7 +191985,7 @@ return { [1]="map_legion_monster_life_+%_final_from_sextant" } }, - [8204]={ + [8466]={ [1]={ [1]={ limit={ @@ -185981,7 +192001,7 @@ return { [1]="map_legion_monster_splinter_emblem_drops_duplicated" } }, - [8205]={ + [8467]={ [1]={ [1]={ limit={ @@ -185997,7 +192017,7 @@ return { [1]="map_lethal_after_X_seconds" } }, - [8206]={ + [8468]={ [1]={ [1]={ limit={ @@ -186013,7 +192033,7 @@ return { [1]="map_level_+" } }, - [8207]={ + [8469]={ [1]={ [1]={ limit={ @@ -186029,7 +192049,7 @@ return { [1]="map_supporter_maddening_tentacle_daemon_spawn" } }, - [8208]={ + [8470]={ [1]={ [1]={ limit={ @@ -186045,7 +192065,7 @@ return { [1]="map_magic_items_drop_as_normal" } }, - [8209]={ + [8471]={ [1]={ [1]={ [1]={ @@ -186065,7 +192085,7 @@ return { [1]="map_magic_monsters_are_maimed" } }, - [8210]={ + [8472]={ [1]={ [1]={ limit={ @@ -186094,7 +192114,7 @@ return { [1]="map_magic_monsters_damage_taken_+%" } }, - [8211]={ + [8473]={ [1]={ [1]={ limit={ @@ -186123,7 +192143,7 @@ return { [1]="map_magic_pack_size_+%" } }, - [8212]={ + [8474]={ [1]={ [1]={ limit={ @@ -186139,7 +192159,7 @@ return { [1]="map_map_item_drop_chance_+%" } }, - [8213]={ + [8475]={ [1]={ [1]={ limit={ @@ -186155,7 +192175,7 @@ return { [1]="map_melee_physical_damage_taken_%_to_deal_to_attacker" } }, - [8214]={ + [8476]={ [1]={ [1]={ limit={ @@ -186171,7 +192191,7 @@ return { [1]="map_metamorph_all_metamorphs_have_rewards" } }, - [8215]={ + [8477]={ [1]={ [1]={ limit={ @@ -186196,7 +192216,7 @@ return { [1]="map_metamorph_boss_drops_additional_itemised_organs" } }, - [8216]={ + [8478]={ [1]={ [1]={ limit={ @@ -186212,7 +192232,7 @@ return { [1]="map_metamorph_catalyst_drops_duplicated" } }, - [8217]={ + [8479]={ [1]={ [1]={ limit={ @@ -186237,7 +192257,7 @@ return { [1]="map_metamorph_itemised_boss_min_rewards" } }, - [8218]={ + [8480]={ [1]={ [1]={ limit={ @@ -186253,7 +192273,7 @@ return { [1]="map_metamorph_itemised_boss_more_difficult" } }, - [8219]={ + [8481]={ [1]={ [1]={ limit={ @@ -186282,7 +192302,7 @@ return { [1]="map_metamorph_life_+%_final_from_sextant" } }, - [8220]={ + [8482]={ [1]={ [1]={ limit={ @@ -186298,7 +192318,7 @@ return { [1]="map_metamorphosis_league" } }, - [8221]={ + [8483]={ [1]={ [1]={ limit={ @@ -186314,7 +192334,7 @@ return { [1]="map_mini_monolith_monsters_are_magic" } }, - [8222]={ + [8484]={ [1]={ [1]={ limit={ @@ -186343,7 +192363,7 @@ return { [1]="map_minion_attack_speed_+%" } }, - [8223]={ + [8485]={ [1]={ [1]={ limit={ @@ -186372,7 +192392,7 @@ return { [1]="map_minion_cast_speed_+%" } }, - [8224]={ + [8486]={ [1]={ [1]={ limit={ @@ -186401,7 +192421,7 @@ return { [1]="map_minion_movement_speed_+%" } }, - [8225]={ + [8487]={ [1]={ [1]={ limit={ @@ -186417,7 +192437,7 @@ return { [1]="map_monster_action_speed_cannot_be_reduced_below_base" } }, - [8226]={ + [8488]={ [1]={ [1]={ [1]={ @@ -186445,7 +192465,7 @@ return { [1]="map_monster_all_damage_can_ignite_freeze_shock" } }, - [8227]={ + [8489]={ [1]={ [1]={ [1]={ @@ -186482,7 +192502,7 @@ return { [1]="map_monster_and_player_onslaught_effect_+%" } }, - [8228]={ + [8490]={ [1]={ [1]={ limit={ @@ -186511,7 +192531,7 @@ return { [1]="map_monster_attack_cast_and_movement_speed_+%" } }, - [8229]={ + [8491]={ [1]={ [1]={ limit={ @@ -186540,7 +192560,7 @@ return { [1]="map_monster_beyond_portal_chance_+%" } }, - [8230]={ + [8492]={ [1]={ [1]={ limit={ @@ -186565,7 +192585,7 @@ return { [1]="map_monster_chance_to_gain_endurance_charge_when_hit_%" } }, - [8231]={ + [8493]={ [1]={ [1]={ limit={ @@ -186594,7 +192614,7 @@ return { [1]="map_monster_curse_effect_on_self_+%" } }, - [8232]={ + [8494]={ [1]={ [1]={ limit={ @@ -186623,7 +192643,7 @@ return { [1]="map_monster_damage_taken_+%_final_from_atlas_keystone" } }, - [8233]={ + [8495]={ [1]={ [1]={ limit={ @@ -186652,7 +192672,7 @@ return { [1]="map_monster_damage_taken_+%_while_possessed" } }, - [8234]={ + [8496]={ [1]={ [1]={ limit={ @@ -186685,7 +192705,7 @@ return { [1]="map_monster_debuff_time_passed_+%" } }, - [8235]={ + [8497]={ [1]={ [1]={ [1]={ @@ -186718,7 +192738,7 @@ return { [1]="map_monster_add_x_grasping_vines_on_hit" } }, - [8236]={ + [8498]={ [1]={ [1]={ [1]={ @@ -186738,7 +192758,7 @@ return { [1]="map_monster_item_rarity_+permyriad_final_per_empowered_soul" } }, - [8237]={ + [8499]={ [1]={ [1]={ limit={ @@ -186754,7 +192774,7 @@ return { [1]="map_kill_enemy_on_hit_if_under_20%_life" } }, - [8238]={ + [8500]={ [1]={ [1]={ [1]={ @@ -186774,7 +192794,7 @@ return { [1]="map_monster_malediction_on_hit" } }, - [8239]={ + [8501]={ [1]={ [1]={ limit={ @@ -186790,7 +192810,7 @@ return { [1]="map_monster_movement_speed_cannot_be_reduced_below_base" } }, - [8240]={ + [8502]={ [1]={ [1]={ limit={ @@ -186806,7 +192826,7 @@ return { [1]="map_corpse_cannot_be_destroyed" } }, - [8241]={ + [8503]={ [1]={ [1]={ [1]={ @@ -186843,7 +192863,7 @@ return { [1]="map_monster_non_damaging_ailment_effect_+%_on_self" } }, - [8242]={ + [8504]={ [1]={ [1]={ limit={ @@ -186868,7 +192888,7 @@ return { [1]="map_monster_petal_chance_+%" } }, - [8243]={ + [8505]={ [1]={ [1]={ limit={ @@ -186893,7 +192913,7 @@ return { [1]="map_monster_projectile_chain_from_terrain_chance_%" } }, - [8244]={ + [8506]={ [1]={ [1]={ limit={ @@ -186918,7 +192938,7 @@ return { [1]="map_monster_rare_and_unique_rose_petal_quantity_+%" } }, - [8245]={ + [8507]={ [1]={ [1]={ limit={ @@ -186943,7 +192963,7 @@ return { [1]="map_monster_rose_petal_quantity_+%" } }, - [8246]={ + [8508]={ [1]={ [1]={ limit={ @@ -186972,7 +192992,7 @@ return { [1]="map_monster_slain_experience_+%" } }, - [8247]={ + [8509]={ [1]={ [1]={ limit={ @@ -187001,7 +193021,7 @@ return { [1]="map_monsters_accuracy_rating_+%" } }, - [8248]={ + [8510]={ [1]={ [1]={ limit={ @@ -187030,7 +193050,7 @@ return { [1]="map_monsters_action_speed_-%" } }, - [8249]={ + [8511]={ [1]={ [1]={ limit={ @@ -187046,7 +193066,7 @@ return { [1]="map_monsters_additional_chaos_resistance" } }, - [8250]={ + [8512]={ [1]={ [1]={ limit={ @@ -187062,7 +193082,7 @@ return { [1]="map_monsters_additional_elemental_resistance" } }, - [8251]={ + [8513]={ [1]={ [1]={ [1]={ @@ -187082,7 +193102,7 @@ return { [1]="map_monsters_additional_maximum_all_elemental_resistances_%" } }, - [8252]={ + [8514]={ [1]={ [1]={ [1]={ @@ -187102,7 +193122,7 @@ return { [1]="map_monsters_all_damage_can_chill" } }, - [8253]={ + [8515]={ [1]={ [1]={ limit={ @@ -187118,7 +193138,7 @@ return { [1]="map_monsters_all_damage_can_freeze" } }, - [8254]={ + [8516]={ [1]={ [1]={ limit={ @@ -187134,7 +193154,7 @@ return { [1]="map_monsters_all_damage_can_ignite" } }, - [8255]={ + [8517]={ [1]={ [1]={ limit={ @@ -187150,7 +193170,7 @@ return { [1]="map_monsters_all_damage_can_poison" } }, - [8256]={ + [8518]={ [1]={ [1]={ [1]={ @@ -187170,7 +193190,7 @@ return { [1]="map_monsters_all_damage_can_shock" } }, - [8257]={ + [8519]={ [1]={ [1]={ limit={ @@ -187186,7 +193206,7 @@ return { [1]="map_monsters_always_crit" } }, - [8258]={ + [8520]={ [1]={ [1]={ limit={ @@ -187202,7 +193222,7 @@ return { [1]="map_monsters_always_hit" } }, - [8259]={ + [8521]={ [1]={ [1]={ [1]={ @@ -187222,7 +193242,7 @@ return { [1]="map_monsters_always_ignite" } }, - [8260]={ + [8522]={ [1]={ [1]={ limit={ @@ -187238,7 +193258,7 @@ return { [1]="map_monsters_are_converted_on_kill" } }, - [8261]={ + [8523]={ [1]={ [1]={ limit={ @@ -187254,7 +193274,7 @@ return { [1]="map_monsters_avoid_poison_bleed_impale_%" } }, - [8262]={ + [8524]={ [1]={ [1]={ limit={ @@ -187283,7 +193303,7 @@ return { [1]="map_monsters_base_bleed_duration_+%" } }, - [8263]={ + [8525]={ [1]={ [1]={ limit={ @@ -187299,7 +193319,7 @@ return { [1]="map_monsters_base_block_%" } }, - [8264]={ + [8526]={ [1]={ [1]={ limit={ @@ -187324,7 +193344,7 @@ return { [1]="map_monsters_base_chance_to_freeze_%" } }, - [8265]={ + [8527]={ [1]={ [1]={ limit={ @@ -187349,7 +193369,7 @@ return { [1]="map_monsters_base_chance_to_ignite_%" } }, - [8266]={ + [8528]={ [1]={ [1]={ limit={ @@ -187374,7 +193394,7 @@ return { [1]="map_monsters_base_chance_to_shock_%" } }, - [8267]={ + [8529]={ [1]={ [1]={ limit={ @@ -187403,7 +193423,7 @@ return { [1]="map_monsters_base_poison_duration_+%" } }, - [8268]={ + [8530]={ [1]={ [1]={ limit={ @@ -187419,7 +193439,7 @@ return { [1]="map_monsters_base_spell_block_%" } }, - [8269]={ + [8531]={ [1]={ [1]={ limit={ @@ -187435,7 +193455,7 @@ return { [1]="map_monsters_can_be_empowered_by_x_wildwood_wisps" } }, - [8270]={ + [8532]={ [1]={ [1]={ limit={ @@ -187451,7 +193471,7 @@ return { [1]="map_monsters_cannot_be_taunted" } }, - [8271]={ + [8533]={ [1]={ [1]={ [1]={ @@ -187484,7 +193504,7 @@ return { [1]="map_monsters_chance_to_blind_on_hit_%" } }, - [8272]={ + [8534]={ [1]={ [1]={ [1]={ @@ -187517,7 +193537,7 @@ return { [1]="map_monsters_chance_to_inflict_brittle_%" } }, - [8273]={ + [8535]={ [1]={ [1]={ [1]={ @@ -187550,7 +193570,7 @@ return { [1]="map_monsters_chance_to_inflict_sapped_%" } }, - [8274]={ + [8536]={ [1]={ [1]={ [1]={ @@ -187583,7 +193603,7 @@ return { [1]="map_monsters_chance_to_scorch_%" } }, - [8275]={ + [8537]={ [1]={ [1]={ limit={ @@ -187612,7 +193632,7 @@ return { [1]="map_monsters_curse_effect_on_self_+%_final" } }, - [8276]={ + [8538]={ [1]={ [1]={ limit={ @@ -187641,7 +193661,7 @@ return { [1]="map_monsters_damage_taken_+%" } }, - [8277]={ + [8539]={ [1]={ [1]={ [1]={ @@ -187661,7 +193681,7 @@ return { [1]="map_monsters_enemy_phys_reduction_%_penalty_vs_hit" } }, - [8278]={ + [8540]={ [1]={ [1]={ limit={ @@ -187686,7 +193706,7 @@ return { [1]="map_monsters_energy_shield_leech_resistance_%" } }, - [8279]={ + [8541]={ [1]={ [1]={ limit={ @@ -187702,7 +193722,7 @@ return { [1]="map_monsters_enrage_on_low_life" } }, - [8280]={ + [8542]={ [1]={ [1]={ limit={ @@ -187731,7 +193751,7 @@ return { [1]="map_monsters_freeze_duration_+%" } }, - [8281]={ + [8543]={ [1]={ [1]={ limit={ @@ -187747,7 +193767,7 @@ return { [1]="map_monsters_global_bleed_on_hit" } }, - [8282]={ + [8544]={ [1]={ [1]={ limit={ @@ -187763,7 +193783,7 @@ return { [1]="map_monsters_global_poison_on_hit" } }, - [8283]={ + [8545]={ [1]={ [1]={ limit={ @@ -187792,7 +193812,7 @@ return { [1]="map_monsters_ignite_duration_+%" } }, - [8284]={ + [8546]={ [1]={ [1]={ [1]={ @@ -187825,7 +193845,7 @@ return { [1]="map_monsters_maim_on_hit_%_chance" } }, - [8285]={ + [8547]={ [1]={ [1]={ limit={ @@ -187841,7 +193861,7 @@ return { [1]="map_monsters_maximum_life_%_to_add_to_maximum_energy_shield" } }, - [8286]={ + [8548]={ [1]={ [1]={ limit={ @@ -187857,7 +193877,7 @@ return { [1]="map_monsters_movement_speed_cannot_be_reduced_below_base" } }, - [8287]={ + [8549]={ [1]={ [1]={ [1]={ @@ -187877,7 +193897,7 @@ return { [1]="map_monsters_near_shrines_are_chilled" } }, - [8288]={ + [8550]={ [1]={ [1]={ limit={ @@ -187893,7 +193913,7 @@ return { [1]="map_monsters_penetrate_elemental_resistances_%" } }, - [8289]={ + [8551]={ [1]={ [1]={ limit={ @@ -187918,7 +193938,7 @@ return { [1]="map_monsters_%_chance_to_inflict_status_ailments" } }, - [8290]={ + [8552]={ [1]={ [1]={ limit={ @@ -187934,7 +193954,7 @@ return { [1]="map_monsters_%_physical_damage_to_add_as_chaos" } }, - [8291]={ + [8553]={ [1]={ [1]={ limit={ @@ -187950,7 +193970,7 @@ return { [1]="map_monsters_physical_damage_%_to_add_as_random_element" } }, - [8292]={ + [8554]={ [1]={ [1]={ limit={ @@ -187966,7 +193986,7 @@ return { [1]="map_monsters_reduce_enemy_chaos_resistance_%" } }, - [8293]={ + [8555]={ [1]={ [1]={ limit={ @@ -187982,7 +194002,7 @@ return { [1]="map_monsters_reduce_enemy_cold_resistance_%" } }, - [8294]={ + [8556]={ [1]={ [1]={ limit={ @@ -187998,7 +194018,7 @@ return { [1]="map_monsters_reduce_enemy_fire_resistance_%" } }, - [8295]={ + [8557]={ [1]={ [1]={ limit={ @@ -188014,7 +194034,7 @@ return { [1]="map_monsters_reduce_enemy_lightning_resistance_%" } }, - [8296]={ + [8558]={ [1]={ [1]={ limit={ @@ -188039,7 +194059,7 @@ return { [1]="map_monsters_remove_charges_on_hit_%" } }, - [8297]={ + [8559]={ [1]={ [1]={ limit={ @@ -188055,7 +194075,7 @@ return { [1]="map_monsters_remove_enemy_flask_charge_on_hit_%_chance" } }, - [8298]={ + [8560]={ [1]={ [1]={ limit={ @@ -188071,7 +194091,7 @@ return { [1]="map_monsters_remove_%_of_mana_on_hit" } }, - [8299]={ + [8561]={ [1]={ [1]={ limit={ @@ -188100,7 +194120,7 @@ return { [1]="map_monsters_shock_effect_+%" } }, - [8300]={ + [8562]={ [1]={ [1]={ limit={ @@ -188125,7 +194145,7 @@ return { [1]="map_monsters_spawned_with_talisman_drop_additional_rare_items" } }, - [8301]={ + [8563]={ [1]={ [1]={ limit={ @@ -188150,7 +194170,7 @@ return { [1]="map_monsters_spell_damage_%_suppressed" } }, - [8302]={ + [8564]={ [1]={ [1]={ [1]={ @@ -188170,7 +194190,7 @@ return { [1]="map_monsters_spell_suppression_chance_%" } }, - [8303]={ + [8565]={ [1]={ [1]={ [1]={ @@ -188203,7 +194223,7 @@ return { [1]="map_monsters_spells_chance_to_hinder_on_hit_%_chance" } }, - [8304]={ + [8566]={ [1]={ [1]={ limit={ @@ -188228,7 +194248,7 @@ return { [1]="map_monsters_steal_charges" } }, - [8305]={ + [8567]={ [1]={ [1]={ limit={ @@ -188244,7 +194264,7 @@ return { [1]="map_monsters_summon_specific_monsters_on_death" } }, - [8306]={ + [8568]={ [1]={ [1]={ limit={ @@ -188269,7 +194289,7 @@ return { [1]="map_monsters_that_drop_silver_coin_drop_x_additional_silver_coins" } }, - [8307]={ + [8569]={ [1]={ [1]={ limit={ @@ -188285,7 +194305,7 @@ return { [1]="map_monsters_unaffected_by_curses" } }, - [8308]={ + [8570]={ [1]={ [1]={ limit={ @@ -188301,7 +194321,7 @@ return { [1]="map_supporter_volatile_on_death_chance_%" } }, - [8309]={ + [8571]={ [1]={ [1]={ limit={ @@ -188326,7 +194346,7 @@ return { [1]="map_monsters_with_silver_coins_drop_x_additional_currency_items" } }, - [8310]={ + [8572]={ [1]={ [1]={ limit={ @@ -188351,7 +194371,7 @@ return { [1]="map_monsters_with_silver_coins_drop_x_additional_rare_items" } }, - [8311]={ + [8573]={ [1]={ [1]={ [1]={ @@ -188384,7 +194404,7 @@ return { [1]="map_monsters_withered_on_hit_for_2_seconds_%_chance" } }, - [8312]={ + [8574]={ [1]={ [1]={ limit={ @@ -188400,7 +194420,7 @@ return { [1]="map_monstrous_treasure_no_monsters" } }, - [8313]={ + [8575]={ [1]={ [1]={ limit={ @@ -188429,7 +194449,7 @@ return { [1]="map_movement_velocity_+%_per_poison_stack" } }, - [8314]={ + [8576]={ [1]={ [1]={ limit={ @@ -188454,7 +194474,7 @@ return { [1]="map_nemesis_dropped_items_+" } }, - [8315]={ + [8577]={ [1]={ [1]={ limit={ @@ -188479,7 +194499,7 @@ return { [1]="map_next_area_contains_x_additional_bearers_of_the_guardian_packs" } }, - [8316]={ + [8578]={ [1]={ [1]={ limit={ @@ -188504,7 +194524,7 @@ return { [1]="map_next_area_contains_x_additional_voidspawn_of_abaxoth_packs" } }, - [8317]={ + [8579]={ [1]={ [1]={ limit={ @@ -188520,7 +194540,7 @@ return { [1]="map_no_experience_gain" } }, - [8318]={ + [8580]={ [1]={ [1]={ limit={ @@ -188536,7 +194556,7 @@ return { [1]="map_no_magic_items_drop" } }, - [8319]={ + [8581]={ [1]={ [1]={ limit={ @@ -188552,7 +194572,7 @@ return { [1]="map_no_rare_items_drop" } }, - [8320]={ + [8582]={ [1]={ [1]={ limit={ @@ -188568,7 +194588,7 @@ return { [1]="map_no_stashes" } }, - [8321]={ + [8583]={ [1]={ [1]={ limit={ @@ -188584,7 +194604,7 @@ return { [1]="map_no_uniques_drop_randomly" } }, - [8322]={ + [8584]={ [1]={ [1]={ limit={ @@ -188600,7 +194620,7 @@ return { [1]="map_no_vendors" } }, - [8323]={ + [8585]={ [1]={ [1]={ limit={ @@ -188616,7 +194636,7 @@ return { [1]="map_non_unique_items_drop_normal" } }, - [8324]={ + [8586]={ [1]={ [1]={ [1]={ @@ -188636,7 +194656,7 @@ return { [1]="map_non_unique_monster_life_regeneration_rate_per_minute_%" } }, - [8325]={ + [8587]={ [1]={ [1]={ limit={ @@ -188652,7 +194672,7 @@ return { [1]="map_normal_items_drop_as_magic" } }, - [8326]={ + [8588]={ [1]={ [1]={ limit={ @@ -188668,7 +194688,7 @@ return { [1]="map_nuke_everything" } }, - [8327]={ + [8589]={ [1]={ [1]={ limit={ @@ -188693,7 +194713,7 @@ return { [1]="map_num_additional_random_scarab_effects" } }, - [8328]={ + [8590]={ [1]={ [1]={ limit={ @@ -188718,7 +194738,7 @@ return { [1]="map_num_extra_gloom_shrines" } }, - [8329]={ + [8591]={ [1]={ [1]={ limit={ @@ -188743,7 +194763,7 @@ return { [1]="map_num_extra_harbingers" } }, - [8330]={ + [8592]={ [1]={ [1]={ limit={ @@ -188768,7 +194788,7 @@ return { [1]="map_num_extra_resonating_shrines" } }, - [8331]={ + [8593]={ [1]={ [1]={ limit={ @@ -188819,7 +194839,7 @@ return { [1]="map_number_of_additional_mines_to_place" } }, - [8332]={ + [8594]={ [1]={ [1]={ limit={ @@ -188844,7 +194864,7 @@ return { [1]="map_number_of_additional_mods" } }, - [8333]={ + [8595]={ [1]={ [1]={ limit={ @@ -188869,7 +194889,7 @@ return { [1]="map_number_of_additional_prefixes" } }, - [8334]={ + [8596]={ [1]={ [1]={ limit={ @@ -188894,7 +194914,7 @@ return { [1]="map_number_of_additional_silver_coin_drops" } }, - [8335]={ + [8597]={ [1]={ [1]={ limit={ @@ -188919,7 +194939,7 @@ return { [1]="map_number_of_additional_suffixes" } }, - [8336]={ + [8598]={ [1]={ [1]={ limit={ @@ -188962,7 +194982,7 @@ return { [1]="map_number_of_additional_traps_to_throw" } }, - [8337]={ + [8599]={ [1]={ [1]={ limit={ @@ -188978,7 +194998,7 @@ return { [1]="map_number_of_additional_totems_allowed" } }, - [8338]={ + [8600]={ [1]={ [1]={ limit={ @@ -189003,7 +195023,7 @@ return { [1]="map_on_complete_drop_x_additional_forbidden_tomes" } }, - [8339]={ + [8601]={ [1]={ [1]={ limit={ @@ -189028,7 +195048,7 @@ return { [1]="map_on_complete_drop_x_additional_maps" } }, - [8340]={ + [8602]={ [1]={ [1]={ limit={ @@ -189053,7 +195073,7 @@ return { [1]="map_on_complete_drop_x_additional_memory_lines" } }, - [8341]={ + [8603]={ [1]={ [1]={ limit={ @@ -189069,7 +195089,7 @@ return { [1]="map_owner_sulphite_gained_+%" } }, - [8342]={ + [8604]={ [1]={ [1]={ limit={ @@ -189085,7 +195105,7 @@ return { [1]="map_packs_are_abomination_monsters" } }, - [8343]={ + [8605]={ [1]={ [1]={ limit={ @@ -189101,7 +195121,7 @@ return { [1]="map_packs_are_blackguards" } }, - [8344]={ + [8606]={ [1]={ [1]={ limit={ @@ -189117,7 +195137,7 @@ return { [1]="map_packs_are_ghosts" } }, - [8345]={ + [8607]={ [1]={ [1]={ limit={ @@ -189133,7 +195153,7 @@ return { [1]="map_packs_are_kitava" } }, - [8346]={ + [8608]={ [1]={ [1]={ limit={ @@ -189149,7 +195169,7 @@ return { [1]="map_packs_are_lunaris" } }, - [8347]={ + [8609]={ [1]={ [1]={ limit={ @@ -189165,7 +195185,7 @@ return { [1]="map_packs_are_solaris" } }, - [8348]={ + [8610]={ [1]={ [1]={ limit={ @@ -189181,7 +195201,7 @@ return { [1]="map_packs_are_spiders" } }, - [8349]={ + [8611]={ [1]={ [1]={ limit={ @@ -189197,7 +195217,7 @@ return { [1]="map_packs_are_vaal" } }, - [8350]={ + [8612]={ [1]={ [1]={ limit={ @@ -189213,7 +195233,7 @@ return { [1]="map_packs_have_detonate_dead_totems" } }, - [8351]={ + [8613]={ [1]={ [1]={ limit={ @@ -189229,7 +195249,7 @@ return { [1]="map_packs_have_uber_tentacle_fiends" } }, - [8352]={ + [8614]={ [1]={ [1]={ limit={ @@ -189245,7 +195265,7 @@ return { [1]="map_perandus_guards_are_rare" } }, - [8353]={ + [8615]={ [1]={ [1]={ limit={ @@ -189261,7 +195281,7 @@ return { [1]="map_perandus_monsters_drop_perandus_coin_stack_%" } }, - [8354]={ + [8616]={ [1]={ [1]={ [1]={ @@ -189290,7 +195310,7 @@ return { [1]="map_percent_increased_effect_of_atlas_passives" } }, - [8355]={ + [8617]={ [1]={ [1]={ limit={ @@ -189306,7 +195326,7 @@ return { [1]="map_petrificiation_statue_ambush" } }, - [8356]={ + [8618]={ [1]={ [1]={ limit={ @@ -189335,7 +195355,7 @@ return { [1]="map_player_accuracy_rating_+%_final" } }, - [8357]={ + [8619]={ [1]={ [1]={ [1]={ @@ -189372,7 +195392,7 @@ return { [1]="map_player_action_speed_+%_per_recent_skill_use" } }, - [8358]={ + [8620]={ [1]={ [1]={ [1]={ @@ -189409,7 +195429,7 @@ return { [1]="map_player_attack_cast_and_movement_speed_+%_during_onslaught" } }, - [8359]={ + [8621]={ [1]={ [1]={ limit={ @@ -189434,7 +195454,7 @@ return { [1]="map_player_buff_time_passed_+%_only_buff_category" } }, - [8360]={ + [8622]={ [1]={ [1]={ limit={ @@ -189450,7 +195470,7 @@ return { [1]="map_player_can_be_touched_by_tormented_spirits" } }, - [8361]={ + [8623]={ [1]={ [1]={ limit={ @@ -189466,7 +195486,7 @@ return { [1]="map_player_cannot_block" } }, - [8362]={ + [8624]={ [1]={ [1]={ limit={ @@ -189482,7 +195502,7 @@ return { [1]="map_player_cannot_block_attacks" } }, - [8363]={ + [8625]={ [1]={ [1]={ limit={ @@ -189498,7 +195518,7 @@ return { [1]="map_player_cannot_block_spells" } }, - [8364]={ + [8626]={ [1]={ [1]={ limit={ @@ -189514,7 +195534,7 @@ return { [1]="map_player_cannot_recharge_energy_shield" } }, - [8365]={ + [8627]={ [1]={ [1]={ limit={ @@ -189530,7 +195550,7 @@ return { [1]="map_player_cannot_suppress_spell_damage" } }, - [8366]={ + [8628]={ [1]={ [1]={ limit={ @@ -189555,7 +195575,7 @@ return { [1]="map_player_chance_to_gain_vaal_soul_on_kill_%" } }, - [8367]={ + [8629]={ [1]={ [1]={ limit={ @@ -189584,7 +195604,7 @@ return { [1]="map_player_charges_gained_+%" } }, - [8368]={ + [8630]={ [1]={ [1]={ limit={ @@ -189613,7 +195633,7 @@ return { [1]="map_player_cooldown_speed_+%_final" } }, - [8369]={ + [8631]={ [1]={ [1]={ limit={ @@ -189638,7 +195658,7 @@ return { [1]="map_player_create_enemy_meteor_daemon_on_flask_use_%_chance" } }, - [8370]={ + [8632]={ [1]={ [1]={ limit={ @@ -189667,7 +195687,7 @@ return { [1]="map_player_curse_effect_on_self_+%" } }, - [8371]={ + [8633]={ [1]={ [1]={ limit={ @@ -189683,7 +195703,7 @@ return { [1]="map_player_damage_+%_vs_breach_monsters" } }, - [8372]={ + [8634]={ [1]={ [1]={ limit={ @@ -189712,7 +195732,7 @@ return { [1]="map_player_damage_taken_+%_vs_breach_monsters" } }, - [8373]={ + [8635]={ [1]={ [1]={ limit={ @@ -189741,7 +195761,7 @@ return { [1]="map_player_damage_taken_+%_while_rampaging" } }, - [8374]={ + [8636]={ [1]={ [1]={ limit={ @@ -189770,7 +195790,7 @@ return { [1]="map_player_damage_while_dead_+%" } }, - [8375]={ + [8637]={ [1]={ [1]={ [1]={ @@ -189828,7 +195848,7 @@ return { [1]="map_player_death_mark_on_rare_unique_kill_ms" } }, - [8376]={ + [8638]={ [1]={ [1]={ limit={ @@ -189844,7 +195864,7 @@ return { [1]="map_player_disable_soul_gain_prevention" } }, - [8377]={ + [8639]={ [1]={ [1]={ limit={ @@ -189860,7 +195880,7 @@ return { [1]="map_player_flask_recovery_is_instant" } }, - [8378]={ + [8640]={ [1]={ [1]={ [1]={ @@ -189897,7 +195917,7 @@ return { [1]="map_player_global_defences_+%" } }, - [8379]={ + [8641]={ [1]={ [1]={ limit={ @@ -189913,7 +195933,7 @@ return { [1]="map_player_has_random_level_X_curse_every_10_seconds" } }, - [8380]={ + [8642]={ [1]={ [1]={ limit={ @@ -189942,7 +195962,7 @@ return { [1]="map_player_life_and_es_recovery_speed_+%_final" } }, - [8381]={ + [8643]={ [1]={ [1]={ [1]={ @@ -189962,7 +195982,7 @@ return { [1]="map_player_life_regeneration_rate_per_minute_%_per_25_rampage_stacks" } }, - [8382]={ + [8644]={ [1]={ [1]={ limit={ @@ -189978,7 +195998,7 @@ return { [1]="map_player_lose_no_experience_on_death" } }, - [8383]={ + [8645]={ [1]={ [1]={ limit={ @@ -190007,7 +196027,7 @@ return { [1]="map_player_maximum_leech_rate_+%" } }, - [8384]={ + [8646]={ [1]={ [1]={ limit={ @@ -190036,7 +196056,7 @@ return { [1]="map_player_movement_velocity_+%" } }, - [8385]={ + [8647]={ [1]={ [1]={ limit={ @@ -190065,7 +196085,7 @@ return { [1]="map_player_non_curse_aura_effect_+%" } }, - [8386]={ + [8648]={ [1]={ [1]={ [1]={ @@ -190098,7 +196118,7 @@ return { [1]="map_player_onslaught_on_kill_%" } }, - [8387]={ + [8649]={ [1]={ [1]={ limit={ @@ -190127,7 +196147,7 @@ return { [1]="map_player_shrine_buff_effect_on_self_+%" } }, - [8388]={ + [8650]={ [1]={ [1]={ limit={ @@ -190143,7 +196163,7 @@ return { [1]="map_player_shrine_effect_duration_+%" } }, - [8389]={ + [8651]={ [1]={ [1]={ limit={ @@ -190159,7 +196179,7 @@ return { [1]="map_player_travel_skills_disabled" } }, - [8390]={ + [8652]={ [1]={ [1]={ limit={ @@ -190188,7 +196208,7 @@ return { [1]="map_players_and_monsters_chaos_damage_taken_+%" } }, - [8391]={ + [8653]={ [1]={ [1]={ limit={ @@ -190217,7 +196237,7 @@ return { [1]="map_players_and_monsters_cold_damage_taken_+%" } }, - [8392]={ + [8654]={ [1]={ [1]={ limit={ @@ -190246,7 +196266,7 @@ return { [1]="map_players_and_monsters_critical_strike_chance_+%" } }, - [8393]={ + [8655]={ [1]={ [1]={ limit={ @@ -190262,7 +196282,7 @@ return { [1]="map_players_and_monsters_curses_are_reflected" } }, - [8394]={ + [8656]={ [1]={ [1]={ limit={ @@ -190291,7 +196311,7 @@ return { [1]="map_players_and_monsters_damage_+%_per_curse" } }, - [8395]={ + [8657]={ [1]={ [1]={ limit={ @@ -190307,7 +196327,7 @@ return { [1]="map_players_and_monsters_damage_taken_+%_while_stationary" } }, - [8396]={ + [8658]={ [1]={ [1]={ limit={ @@ -190336,7 +196356,7 @@ return { [1]="map_players_and_monsters_fire_damage_taken_+%" } }, - [8397]={ + [8659]={ [1]={ [1]={ [1]={ @@ -190360,7 +196380,7 @@ return { [1]="map_players_and_monsters_have_onslaught_if_hit_recently" } }, - [8398]={ + [8660]={ [1]={ [1]={ limit={ @@ -190376,7 +196396,7 @@ return { [1]="map_players_and_monsters_have_resolute_technique" } }, - [8399]={ + [8661]={ [1]={ [1]={ limit={ @@ -190405,7 +196425,7 @@ return { [1]="map_players_and_monsters_lightning_damage_taken_+%" } }, - [8400]={ + [8662]={ [1]={ [1]={ limit={ @@ -190421,7 +196441,7 @@ return { [1]="map_players_and_monsters_movement_speed_+%" } }, - [8401]={ + [8663]={ [1]={ [1]={ limit={ @@ -190450,7 +196470,7 @@ return { [1]="map_players_and_monsters_physical_damage_taken_+%" } }, - [8402]={ + [8664]={ [1]={ [1]={ limit={ @@ -190466,7 +196486,7 @@ return { [1]="map_display_insanity" } }, - [8403]={ + [8665]={ [1]={ [1]={ [1]={ @@ -190486,7 +196506,7 @@ return { [1]="map_players_are_poisoned_while_moving_chaos_damage_per_second" } }, - [8404]={ + [8666]={ [1]={ [1]={ limit={ @@ -190515,7 +196535,7 @@ return { [1]="map_players_armour_+%_final" } }, - [8405]={ + [8667]={ [1]={ [1]={ limit={ @@ -190544,7 +196564,7 @@ return { [1]="map_players_block_chance_+%" } }, - [8406]={ + [8668]={ [1]={ [1]={ limit={ @@ -190560,7 +196580,7 @@ return { [1]="map_players_cannot_gain_endurance_charges" } }, - [8407]={ + [8669]={ [1]={ [1]={ limit={ @@ -190576,7 +196596,7 @@ return { [1]="map_players_cannot_gain_flask_charges" } }, - [8408]={ + [8670]={ [1]={ [1]={ limit={ @@ -190592,7 +196612,7 @@ return { [1]="map_players_cannot_gain_frenzy_charges" } }, - [8409]={ + [8671]={ [1]={ [1]={ limit={ @@ -190608,7 +196628,7 @@ return { [1]="map_players_cannot_gain_power_charges" } }, - [8410]={ + [8672]={ [1]={ [1]={ limit={ @@ -190624,7 +196644,7 @@ return { [1]="map_players_cannot_take_reflected_damage" } }, - [8411]={ + [8673]={ [1]={ [1]={ [1]={ @@ -190657,7 +196677,7 @@ return { [1]="map_players_cost_+%_per_skill_used_recently" } }, - [8412]={ + [8674]={ [1]={ [1]={ limit={ @@ -190686,7 +196706,7 @@ return { [1]="map_players_damage_+%_final_per_equipped_item" } }, - [8413]={ + [8675]={ [1]={ [1]={ [1]={ @@ -190706,7 +196726,7 @@ return { [1]="map_players_gain_1_random_rare_monster_mod_on_kill_ms" } }, - [8414]={ + [8676]={ [1]={ [1]={ limit={ @@ -190731,7 +196751,7 @@ return { [1]="map_players_gain_1_rare_monster_mods_on_kill_for_20_seconds_%" } }, - [8415]={ + [8677]={ [1]={ [1]={ limit={ @@ -190747,7 +196767,7 @@ return { [1]="map_players_gain_instability_on_kill" } }, - [8416]={ + [8678]={ [1]={ [1]={ [1]={ @@ -190771,7 +196791,7 @@ return { [1]="map_players_gain_onslaught_after_opening_a_strongbox_ms" } }, - [8417]={ + [8679]={ [1]={ [1]={ limit={ @@ -190787,7 +196807,7 @@ return { [1]="map_players_gain_onslaught_during_flask_effect" } }, - [8418]={ + [8680]={ [1]={ [1]={ limit={ @@ -190812,7 +196832,7 @@ return { [1]="map_players_gain_rare_monster_mods_on_kill_%_chance" } }, - [8419]={ + [8681]={ [1]={ [1]={ limit={ @@ -190828,7 +196848,7 @@ return { [1]="map_players_have_point_blank" } }, - [8420]={ + [8682]={ [1]={ [1]={ limit={ @@ -190857,7 +196877,7 @@ return { [1]="map_players_minion_damage_+%_final_per_equipped_item" } }, - [8421]={ + [8683]={ [1]={ [1]={ limit={ @@ -190873,7 +196893,7 @@ return { [1]="map_players_movement_skills_cooldown_speed_+%" } }, - [8422]={ + [8684]={ [1]={ [1]={ limit={ @@ -190902,7 +196922,7 @@ return { [1]="map_players_movement_speed_+%" } }, - [8423]={ + [8685]={ [1]={ [1]={ limit={ @@ -190918,7 +196938,7 @@ return { [1]="map_players_no_regeneration_including_es" } }, - [8424]={ + [8686]={ [1]={ [1]={ limit={ @@ -190934,7 +196954,7 @@ return { [1]="map_players_resist_all_%" } }, - [8425]={ + [8687]={ [1]={ [1]={ [1]={ @@ -190954,7 +196974,7 @@ return { [1]="map_supporter_players_sent_to_void_league_on_death" } }, - [8426]={ + [8688]={ [1]={ [1]={ limit={ @@ -190983,7 +197003,7 @@ return { [1]="map_players_skill_area_of_effect_+%_final" } }, - [8427]={ + [8689]={ [1]={ [1]={ [1]={ @@ -191016,7 +197036,7 @@ return { [1]="map_players_spell_damage_%_suppressed" } }, - [8428]={ + [8690]={ [1]={ [1]={ limit={ @@ -191032,7 +197052,7 @@ return { [1]="map_portal_expires_every_X_seconds" } }, - [8429]={ + [8691]={ [1]={ [1]={ limit={ @@ -191057,7 +197077,7 @@ return { [1]="map_portal_limit" } }, - [8430]={ + [8692]={ [1]={ [1]={ limit={ @@ -191073,7 +197093,7 @@ return { [1]="map_portals_do_not_expire" } }, - [8431]={ + [8693]={ [1]={ [1]={ limit={ @@ -191089,7 +197109,7 @@ return { [1]="map_portals_expire_on_death_instead" } }, - [8432]={ + [8694]={ [1]={ [1]={ limit={ @@ -191114,7 +197134,7 @@ return { [1]="map_possessed_monsters_drop_gilded_scarab_chance_%" } }, - [8433]={ + [8695]={ [1]={ [1]={ limit={ @@ -191139,7 +197159,7 @@ return { [1]="map_possessed_monsters_drop_map_chance_%" } }, - [8434]={ + [8696]={ [1]={ [1]={ limit={ @@ -191164,7 +197184,7 @@ return { [1]="map_possessed_monsters_drop_polished_scarab_chance_%" } }, - [8435]={ + [8697]={ [1]={ [1]={ limit={ @@ -191189,7 +197209,7 @@ return { [1]="map_possessed_monsters_drop_rusted_scarab_chance_%" } }, - [8436]={ + [8698]={ [1]={ [1]={ limit={ @@ -191214,7 +197234,7 @@ return { [1]="map_possessed_monsters_drop_unique_chance_%" } }, - [8437]={ + [8699]={ [1]={ [1]={ limit={ @@ -191239,7 +197259,7 @@ return { [1]="map_possessed_monsters_drop_winged_scarab_chance_%" } }, - [8438]={ + [8700]={ [1]={ [1]={ limit={ @@ -191255,7 +197275,7 @@ return { [1]="map_prefixes_do_not_apply" } }, - [8439]={ + [8701]={ [1]={ [1]={ limit={ @@ -191271,7 +197291,7 @@ return { [1]="map_quality_instead_applies_to_pack_size" } }, - [8440]={ + [8702]={ [1]={ [1]={ limit={ @@ -191300,7 +197320,7 @@ return { [1]="map_rampage_time_+%" } }, - [8441]={ + [8703]={ [1]={ [1]={ limit={ @@ -191316,7 +197336,7 @@ return { [1]="map_supporter_dangerous_area" } }, - [8442]={ + [8704]={ [1]={ [1]={ limit={ @@ -191332,7 +197352,7 @@ return { [1]="map_random_unique_monster_is_possessed" } }, - [8443]={ + [8705]={ [1]={ [1]={ limit={ @@ -191348,7 +197368,7 @@ return { [1]="map_random_zana_mod" } }, - [8444]={ + [8706]={ [1]={ [1]={ limit={ @@ -191364,7 +197384,7 @@ return { [1]="map_rare_breach_monster_additional_breach_ring_drop_chance_%" } }, - [8445]={ + [8707]={ [1]={ [1]={ limit={ @@ -191389,7 +197409,7 @@ return { [1]="map_rare_breach_monsters_drop_additional_shards" } }, - [8446]={ + [8708]={ [1]={ [1]={ limit={ @@ -191405,7 +197425,7 @@ return { [1]="map_rare_monster_essence_daemon" } }, - [8447]={ + [8709]={ [1]={ [1]={ limit={ @@ -191421,7 +197441,7 @@ return { [1]="map_rare_monster_fracture_on_death_chance_%" } }, - [8448]={ + [8710]={ [1]={ [1]={ limit={ @@ -191446,7 +197466,7 @@ return { [1]="map_rare_monster_items_drop_corrupted_%" } }, - [8449]={ + [8711]={ [1]={ [1]={ limit={ @@ -191471,7 +197491,7 @@ return { [1]="map_rare_monster_num_additional_modifiers" } }, - [8450]={ + [8712]={ [1]={ [1]={ limit={ @@ -191496,7 +197516,7 @@ return { [1]="map_rare_monster_volatile_on_death_%" } }, - [8451]={ + [8713]={ [1]={ [1]={ [1]={ @@ -191533,7 +197553,7 @@ return { [1]="map_rare_monsters_are_hindered" } }, - [8452]={ + [8714]={ [1]={ [1]={ limit={ @@ -191558,7 +197578,7 @@ return { [1]="map_rare_monsters_drop_rare_prismatic_ring_on_death_%" } }, - [8453]={ + [8715]={ [1]={ [1]={ limit={ @@ -191583,7 +197603,7 @@ return { [1]="map_rare_monsters_drop_x_additional_rare_items" } }, - [8454]={ + [8716]={ [1]={ [1]={ limit={ @@ -191599,7 +197619,7 @@ return { [1]="map_rare_monsters_have_inner_treasure" } }, - [8455]={ + [8717]={ [1]={ [1]={ limit={ @@ -191615,7 +197635,7 @@ return { [1]="map_rare_monsters_possessed_chance_%" } }, - [8456]={ + [8718]={ [1]={ [1]={ limit={ @@ -191631,7 +197651,7 @@ return { [1]="map_rare_monsters_shaper_touched" } }, - [8457]={ + [8719]={ [1]={ [1]={ limit={ @@ -191647,7 +197667,7 @@ return { [1]="map_rare_monsters_spawn_map_boss_on_death_chance_%" } }, - [8458]={ + [8720]={ [1]={ [1]={ limit={ @@ -191663,7 +197683,7 @@ return { [1]="map_rare_unique_monsters_remove_%_life_mana_es_on_hit" } }, - [8459]={ + [8721]={ [1]={ [1]={ [1]={ @@ -191683,7 +197703,7 @@ return { [1]="map_rare_unique_monsters_spawn_tormented_spirit_on_low_life" } }, - [8460]={ + [8722]={ [1]={ [1]={ limit={ @@ -191708,7 +197728,7 @@ return { [1]="map_ritual_additional_reward_rerolls" } }, - [8461]={ + [8723]={ [1]={ [1]={ limit={ @@ -191733,7 +197753,7 @@ return { [1]="map_ritual_number_of_free_rerolls" } }, - [8462]={ + [8724]={ [1]={ [1]={ limit={ @@ -191762,7 +197782,7 @@ return { [1]="map_ritual_tribute_+%" } }, - [8463]={ + [8725]={ [1]={ [1]={ limit={ @@ -191791,7 +197811,7 @@ return { [1]="map_ritual_uber_rune_type_weighting_+%" } }, - [8464]={ + [8726]={ [1]={ [1]={ limit={ @@ -191807,7 +197827,7 @@ return { [1]="map_rogue_exile_attack_cast_and_movement_speed_+%" } }, - [8465]={ + [8727]={ [1]={ [1]={ limit={ @@ -191823,7 +197843,7 @@ return { [1]="map_rogue_exile_drop_skill_gem_with_quality" } }, - [8466]={ + [8728]={ [1]={ [1]={ limit={ @@ -191839,7 +197859,7 @@ return { [1]="map_rogue_exiles_are_doubled" } }, - [8467]={ + [8729]={ [1]={ [1]={ limit={ @@ -191864,7 +197884,7 @@ return { [1]="map_rogue_exiles_are_doubled_chance_%" } }, - [8468]={ + [8730]={ [1]={ [1]={ limit={ @@ -191893,7 +197913,7 @@ return { [1]="map_rogue_exiles_damage_+%" } }, - [8469]={ + [8731]={ [1]={ [1]={ limit={ @@ -191909,7 +197929,7 @@ return { [1]="map_rogue_exiles_drop_additional_currency_items_with_quality" } }, - [8470]={ + [8732]={ [1]={ [1]={ limit={ @@ -191934,7 +197954,7 @@ return { [1]="map_rogue_exiles_drop_x_additional_jewels" } }, - [8471]={ + [8733]={ [1]={ [1]={ limit={ @@ -191950,7 +197970,7 @@ return { [1]="map_rogue_exiles_dropped_items_are_corrupted" } }, - [8472]={ + [8734]={ [1]={ [1]={ limit={ @@ -191966,7 +197986,7 @@ return { [1]="map_rogue_exiles_dropped_items_are_duplicated" } }, - [8473]={ + [8735]={ [1]={ [1]={ limit={ @@ -191982,7 +198002,7 @@ return { [1]="map_rogue_exiles_dropped_items_are_fractured_chance_%" } }, - [8474]={ + [8736]={ [1]={ [1]={ limit={ @@ -191998,7 +198018,7 @@ return { [1]="map_rogue_exiles_dropped_items_are_fully_linked" } }, - [8475]={ + [8737]={ [1]={ [1]={ limit={ @@ -192027,7 +198047,7 @@ return { [1]="map_rogue_exiles_maximum_life_+%" } }, - [8476]={ + [8738]={ [1]={ [1]={ limit={ @@ -192043,7 +198063,7 @@ return { [1]="map_shaper_rare_chance_+%" } }, - [8477]={ + [8739]={ [1]={ [1]={ limit={ @@ -192059,7 +198079,7 @@ return { [1]="map_shrine_monster_life_+%_final" } }, - [8478]={ + [8740]={ [1]={ [1]={ limit={ @@ -192084,7 +198104,7 @@ return { [1]="map_shrines_drop_x_currency_items_on_activation" } }, - [8479]={ + [8741]={ [1]={ [1]={ limit={ @@ -192100,7 +198120,7 @@ return { [1]="map_shrines_grant_a_random_additional_effect" } }, - [8480]={ + [8742]={ [1]={ [1]={ limit={ @@ -192116,7 +198136,7 @@ return { [1]="map_players_have_shroud_walker" } }, - [8481]={ + [8743]={ [1]={ [1]={ limit={ @@ -192132,7 +198152,7 @@ return { [1]="map_simulacrum_reward_level_+" } }, - [8482]={ + [8744]={ [1]={ [1]={ limit={ @@ -192148,7 +198168,7 @@ return { [1]="map_solo_mode" } }, - [8483]={ + [8745]={ [1]={ [1]={ limit={ @@ -192164,7 +198184,7 @@ return { [1]="map_spawn_X_additional_incursion_architects" } }, - [8484]={ + [8746]={ [1]={ [1]={ limit={ @@ -192180,7 +198200,7 @@ return { [1]="map_spawn_abysses" } }, - [8485]={ + [8747]={ [1]={ [1]={ limit={ @@ -192205,7 +198225,7 @@ return { [1]="map_spawn_additional_empowered_vaal_chests" } }, - [8486]={ + [8748]={ [1]={ [1]={ limit={ @@ -192221,7 +198241,7 @@ return { [1]="map_spawn_affliction_mirror" } }, - [8487]={ + [8749]={ [1]={ [1]={ limit={ @@ -192237,7 +198257,7 @@ return { [1]="map_spawn_bestiary_encounters" } }, - [8488]={ + [8750]={ [1]={ [1]={ limit={ @@ -192262,7 +198282,7 @@ return { [1]="map_spawn_beyond_boss_when_beyond_boss_slain_%" } }, - [8489]={ + [8751]={ [1]={ [1]={ limit={ @@ -192287,7 +198307,7 @@ return { [1]="map_spawn_cadiro_%_chance" } }, - [8490]={ + [8752]={ [1]={ [1]={ limit={ @@ -192312,7 +198332,7 @@ return { [1]="map_spawn_extra_perandus_chests" } }, - [8491]={ + [8753]={ [1]={ [1]={ limit={ @@ -192328,7 +198348,7 @@ return { [1]="map_spawn_incursion_encounters" } }, - [8492]={ + [8754]={ [1]={ [1]={ limit={ @@ -192344,7 +198364,7 @@ return { [1]="map_spawn_settlers_ore" } }, - [8493]={ + [8755]={ [1]={ [1]={ limit={ @@ -192369,7 +198389,7 @@ return { [1]="map_spawn_x_additional_heist_smugglers_caches" } }, - [8494]={ + [8756]={ [1]={ [1]={ limit={ @@ -192394,7 +198414,7 @@ return { [1]="map_spawn_x_random_map_bosses" } }, - [8495]={ + [8757]={ [1]={ [1]={ limit={ @@ -192423,7 +198443,7 @@ return { [1]="map_storm_area_of_effect_+%" } }, - [8496]={ + [8758]={ [1]={ [1]={ limit={ @@ -192439,7 +198459,7 @@ return { [1]="map_strongbox_items_dropped_are_mirrored" } }, - [8497]={ + [8759]={ [1]={ [1]={ limit={ @@ -192455,7 +198475,7 @@ return { [1]="map_strongbox_monsters_attack_speed_+%" } }, - [8498]={ + [8760]={ [1]={ [1]={ limit={ @@ -192484,7 +198504,7 @@ return { [1]="map_strongbox_monsters_item_quantity_+%" } }, - [8499]={ + [8761]={ [1]={ [1]={ limit={ @@ -192500,7 +198520,7 @@ return { [1]="map_strongboxes_are_corrupted" } }, - [8500]={ + [8762]={ [1]={ [1]={ limit={ @@ -192516,7 +198536,7 @@ return { [1]="map_strongboxes_at_least_rare" } }, - [8501]={ + [8763]={ [1]={ [1]={ limit={ @@ -192545,7 +198565,7 @@ return { [1]="map_strongboxes_chance_to_be_unique_+%" } }, - [8502]={ + [8764]={ [1]={ [1]={ limit={ @@ -192570,7 +198590,7 @@ return { [1]="map_strongboxes_drop_x_additional_rare_items" } }, - [8503]={ + [8765]={ [1]={ [1]={ limit={ @@ -192604,7 +198624,7 @@ return { [1]="map_strongboxes_minimum_rarity" } }, - [8504]={ + [8766]={ [1]={ [1]={ limit={ @@ -192620,7 +198640,7 @@ return { [1]="map_suffixes_do_not_apply" } }, - [8505]={ + [8767]={ [1]={ [1]={ limit={ @@ -192636,7 +198656,7 @@ return { [1]="map_supporter_all_influence_packs" } }, - [8506]={ + [8768]={ [1]={ [1]={ limit={ @@ -192652,7 +198672,7 @@ return { [1]="map_supporter_comet_spawn_daemon" } }, - [8507]={ + [8769]={ [1]={ [1]={ limit={ @@ -192668,7 +198688,7 @@ return { [1]="map_supporter_curse_field_daemon_spawn" } }, - [8508]={ + [8770]={ [1]={ [1]={ limit={ @@ -192684,7 +198704,7 @@ return { [1]="map_supporter_maven_follower" } }, - [8509]={ + [8771]={ [1]={ [1]={ limit={ @@ -192700,7 +198720,7 @@ return { [1]="map_supporter_players_random_movement_velocity_+%_final_when_hit" } }, - [8510]={ + [8772]={ [1]={ [1]={ limit={ @@ -192716,7 +198736,7 @@ return { [1]="map_synthesis_league" } }, - [8511]={ + [8773]={ [1]={ [1]={ limit={ @@ -192732,7 +198752,7 @@ return { [1]="map_synthesis_spawn_additional_abyss_bone_chest_clusters" } }, - [8512]={ + [8774]={ [1]={ [1]={ limit={ @@ -192748,7 +198768,7 @@ return { [1]="map_synthesis_spawn_additional_bloodworm_barrel_clusters" } }, - [8513]={ + [8775]={ [1]={ [1]={ limit={ @@ -192764,7 +198784,7 @@ return { [1]="map_synthesis_spawn_additional_fungal_chest_clusters" } }, - [8514]={ + [8776]={ [1]={ [1]={ limit={ @@ -192789,7 +198809,7 @@ return { [1]="map_synthesis_spawn_additional_magic_ambush_chest" } }, - [8515]={ + [8777]={ [1]={ [1]={ limit={ @@ -192814,7 +198834,7 @@ return { [1]="map_synthesis_spawn_additional_normal_ambush_chest" } }, - [8516]={ + [8778]={ [1]={ [1]={ limit={ @@ -192830,7 +198850,7 @@ return { [1]="map_synthesis_spawn_additional_parasite_barrel_clusters" } }, - [8517]={ + [8779]={ [1]={ [1]={ limit={ @@ -192855,7 +198875,7 @@ return { [1]="map_synthesis_spawn_additional_rare_ambush_chest" } }, - [8518]={ + [8780]={ [1]={ [1]={ limit={ @@ -192871,7 +198891,7 @@ return { [1]="map_synthesis_spawn_additional_volatile_barrel_clusters" } }, - [8519]={ + [8781]={ [1]={ [1]={ limit={ @@ -192887,7 +198907,7 @@ return { [1]="map_synthesis_spawn_additional_wealthy_barrel_clusters" } }, - [8520]={ + [8782]={ [1]={ [1]={ limit={ @@ -192912,7 +198932,7 @@ return { [1]="map_synthesised_magic_monster_additional_breach_splinter_drop_chance_%" } }, - [8521]={ + [8783]={ [1]={ [1]={ limit={ @@ -192937,7 +198957,7 @@ return { [1]="map_synthesised_magic_monster_additional_currency_item_drop_chance_%" } }, - [8522]={ + [8784]={ [1]={ [1]={ limit={ @@ -192962,7 +198982,7 @@ return { [1]="map_synthesised_magic_monster_additional_currency_shard_drop_chance_%" } }, - [8523]={ + [8785]={ [1]={ [1]={ limit={ @@ -192987,7 +199007,7 @@ return { [1]="map_synthesised_magic_monster_additional_divination_card_drop_chance_%" } }, - [8524]={ + [8786]={ [1]={ [1]={ limit={ @@ -193012,7 +199032,7 @@ return { [1]="map_synthesised_magic_monster_additional_elder_item_drop_chance_%" } }, - [8525]={ + [8787]={ [1]={ [1]={ limit={ @@ -193037,7 +199057,7 @@ return { [1]="map_synthesised_magic_monster_additional_fossil_drop_chance_%" } }, - [8526]={ + [8788]={ [1]={ [1]={ limit={ @@ -193062,7 +199082,7 @@ return { [1]="map_synthesised_magic_monster_additional_quality_currency_item_drop_chance_%" } }, - [8527]={ + [8789]={ [1]={ [1]={ limit={ @@ -193087,7 +199107,7 @@ return { [1]="map_synthesised_magic_monster_additional_shaper_item_drop_chance_%" } }, - [8528]={ + [8790]={ [1]={ [1]={ limit={ @@ -193112,7 +199132,7 @@ return { [1]="map_synthesised_magic_monster_drop_additional_currency" } }, - [8529]={ + [8791]={ [1]={ [1]={ limit={ @@ -193137,7 +199157,7 @@ return { [1]="map_synthesised_magic_monster_drop_additional_currency_shard" } }, - [8530]={ + [8792]={ [1]={ [1]={ limit={ @@ -193162,7 +199182,7 @@ return { [1]="map_synthesised_magic_monster_drop_additional_quality_currency" } }, - [8531]={ + [8793]={ [1]={ [1]={ [1]={ @@ -193182,7 +199202,7 @@ return { [1]="map_synthesised_magic_monster_dropped_item_quantity_+%" } }, - [8532]={ + [8794]={ [1]={ [1]={ [1]={ @@ -193202,7 +199222,7 @@ return { [1]="map_synthesised_magic_monster_dropped_item_rarity_+%" } }, - [8533]={ + [8795]={ [1]={ [1]={ limit={ @@ -193218,7 +199238,7 @@ return { [1]="map_synthesised_magic_monster_fractured_item_drop_chance_+%" } }, - [8534]={ + [8796]={ [1]={ [1]={ limit={ @@ -193243,7 +199263,7 @@ return { [1]="map_synthesised_magic_monster_items_drop_corrupted_%" } }, - [8535]={ + [8797]={ [1]={ [1]={ limit={ @@ -193259,7 +199279,7 @@ return { [1]="map_synthesised_magic_monster_map_drop_chance_+%" } }, - [8536]={ + [8798]={ [1]={ [1]={ limit={ @@ -193275,7 +199295,7 @@ return { [1]="map_synthesised_magic_monster_slain_experience_+%" } }, - [8537]={ + [8799]={ [1]={ [1]={ limit={ @@ -193291,7 +199311,7 @@ return { [1]="map_synthesised_magic_monster_unique_item_drop_chance_+%" } }, - [8538]={ + [8800]={ [1]={ [1]={ limit={ @@ -193316,7 +199336,7 @@ return { [1]="map_synthesised_monster_additional_breach_splinter_drop_chance_%" } }, - [8539]={ + [8801]={ [1]={ [1]={ limit={ @@ -193341,7 +199361,7 @@ return { [1]="map_synthesised_monster_additional_currency_item_drop_chance_%" } }, - [8540]={ + [8802]={ [1]={ [1]={ limit={ @@ -193366,7 +199386,7 @@ return { [1]="map_synthesised_monster_additional_currency_shard_drop_chance_%" } }, - [8541]={ + [8803]={ [1]={ [1]={ limit={ @@ -193391,7 +199411,7 @@ return { [1]="map_synthesised_monster_additional_divination_card_drop_chance_%" } }, - [8542]={ + [8804]={ [1]={ [1]={ limit={ @@ -193416,7 +199436,7 @@ return { [1]="map_synthesised_monster_additional_elder_item_drop_chance_%" } }, - [8543]={ + [8805]={ [1]={ [1]={ limit={ @@ -193441,7 +199461,7 @@ return { [1]="map_synthesised_monster_additional_fossil_drop_chance_%" } }, - [8544]={ + [8806]={ [1]={ [1]={ limit={ @@ -193466,7 +199486,7 @@ return { [1]="map_synthesised_monster_additional_quality_currency_item_drop_chance_%" } }, - [8545]={ + [8807]={ [1]={ [1]={ limit={ @@ -193491,7 +199511,7 @@ return { [1]="map_synthesised_monster_additional_shaper_item_drop_chance_%" } }, - [8546]={ + [8808]={ [1]={ [1]={ [1]={ @@ -193511,7 +199531,7 @@ return { [1]="map_synthesised_monster_dropped_item_quantity_+%" } }, - [8547]={ + [8809]={ [1]={ [1]={ [1]={ @@ -193531,7 +199551,7 @@ return { [1]="map_synthesised_monster_dropped_item_rarity_+%" } }, - [8548]={ + [8810]={ [1]={ [1]={ limit={ @@ -193547,7 +199567,7 @@ return { [1]="map_synthesised_monster_fractured_item_drop_chance_+%" } }, - [8549]={ + [8811]={ [1]={ [1]={ limit={ @@ -193572,7 +199592,7 @@ return { [1]="map_synthesised_monster_items_drop_corrupted_%" } }, - [8550]={ + [8812]={ [1]={ [1]={ limit={ @@ -193588,7 +199608,7 @@ return { [1]="map_synthesised_monster_map_drop_chance_+%" } }, - [8551]={ + [8813]={ [1]={ [1]={ limit={ @@ -193604,7 +199624,7 @@ return { [1]="map_synthesised_monster_pack_size_+%" } }, - [8552]={ + [8814]={ [1]={ [1]={ limit={ @@ -193620,7 +199640,7 @@ return { [1]="map_synthesised_monster_slain_experience_+%" } }, - [8553]={ + [8815]={ [1]={ [1]={ limit={ @@ -193636,7 +199656,7 @@ return { [1]="map_synthesised_monster_unique_item_drop_chance_+%" } }, - [8554]={ + [8816]={ [1]={ [1]={ limit={ @@ -193661,7 +199681,7 @@ return { [1]="map_synthesised_rare_monster_additional_abyss_jewel_drop_chance_%" } }, - [8555]={ + [8817]={ [1]={ [1]={ limit={ @@ -193686,7 +199706,7 @@ return { [1]="map_synthesised_rare_monster_additional_breach_splinter_drop_chance_%" } }, - [8556]={ + [8818]={ [1]={ [1]={ limit={ @@ -193711,7 +199731,7 @@ return { [1]="map_synthesised_rare_monster_additional_currency_item_drop_chance_%" } }, - [8557]={ + [8819]={ [1]={ [1]={ limit={ @@ -193736,7 +199756,7 @@ return { [1]="map_synthesised_rare_monster_additional_currency_shard_drop_chance_%" } }, - [8558]={ + [8820]={ [1]={ [1]={ limit={ @@ -193761,7 +199781,7 @@ return { [1]="map_synthesised_rare_monster_additional_divination_card_drop_chance_%" } }, - [8559]={ + [8821]={ [1]={ [1]={ limit={ @@ -193786,7 +199806,7 @@ return { [1]="map_synthesised_rare_monster_additional_elder_item_drop_chance_%" } }, - [8560]={ + [8822]={ [1]={ [1]={ limit={ @@ -193811,7 +199831,7 @@ return { [1]="map_synthesised_rare_monster_additional_essence_drop_chance_%" } }, - [8561]={ + [8823]={ [1]={ [1]={ limit={ @@ -193836,7 +199856,7 @@ return { [1]="map_synthesised_rare_monster_additional_fossil_drop_chance_%" } }, - [8562]={ + [8824]={ [1]={ [1]={ limit={ @@ -193861,7 +199881,7 @@ return { [1]="map_synthesised_rare_monster_additional_jewel_drop_chance_%" } }, - [8563]={ + [8825]={ [1]={ [1]={ limit={ @@ -193886,7 +199906,7 @@ return { [1]="map_synthesised_rare_monster_additional_map_drop_chance_%" } }, - [8564]={ + [8826]={ [1]={ [1]={ limit={ @@ -193911,7 +199931,7 @@ return { [1]="map_synthesised_rare_monster_additional_quality_currency_item_drop_chance_%" } }, - [8565]={ + [8827]={ [1]={ [1]={ limit={ @@ -193936,7 +199956,7 @@ return { [1]="map_synthesised_rare_monster_additional_shaper_item_drop_chance_%" } }, - [8566]={ + [8828]={ [1]={ [1]={ limit={ @@ -193961,7 +199981,7 @@ return { [1]="map_synthesised_rare_monster_additional_talisman_drop_chance_%" } }, - [8567]={ + [8829]={ [1]={ [1]={ limit={ @@ -193986,7 +200006,7 @@ return { [1]="map_synthesised_rare_monster_additional_vaal_fragment_drop_chance_%" } }, - [8568]={ + [8830]={ [1]={ [1]={ limit={ @@ -194011,7 +200031,7 @@ return { [1]="map_synthesised_rare_monster_additional_veiled_item_drop_chance_%" } }, - [8569]={ + [8831]={ [1]={ [1]={ limit={ @@ -194036,7 +200056,7 @@ return { [1]="map_synthesised_rare_monster_drop_additional_breach_splinter" } }, - [8570]={ + [8832]={ [1]={ [1]={ limit={ @@ -194061,7 +200081,7 @@ return { [1]="map_synthesised_rare_monster_drop_additional_currency" } }, - [8571]={ + [8833]={ [1]={ [1]={ limit={ @@ -194086,7 +200106,7 @@ return { [1]="map_synthesised_rare_monster_drop_additional_currency_shard" } }, - [8572]={ + [8834]={ [1]={ [1]={ limit={ @@ -194111,7 +200131,7 @@ return { [1]="map_synthesised_rare_monster_drop_additional_quality_currency" } }, - [8573]={ + [8835]={ [1]={ [1]={ [1]={ @@ -194131,7 +200151,7 @@ return { [1]="map_synthesised_rare_monster_dropped_item_quantity_+%" } }, - [8574]={ + [8836]={ [1]={ [1]={ [1]={ @@ -194151,7 +200171,7 @@ return { [1]="map_synthesised_rare_monster_dropped_item_rarity_+%" } }, - [8575]={ + [8837]={ [1]={ [1]={ limit={ @@ -194167,7 +200187,7 @@ return { [1]="map_synthesised_rare_monster_fractured_item_drop_chance_+%" } }, - [8576]={ + [8838]={ [1]={ [1]={ limit={ @@ -194192,7 +200212,7 @@ return { [1]="map_synthesised_rare_monster_gives_mods_to_killer_chance_%" } }, - [8577]={ + [8839]={ [1]={ [1]={ limit={ @@ -194217,7 +200237,7 @@ return { [1]="map_synthesised_rare_monster_items_drop_corrupted_%" } }, - [8578]={ + [8840]={ [1]={ [1]={ limit={ @@ -194233,7 +200253,7 @@ return { [1]="map_synthesised_rare_monster_map_drop_chance_+%" } }, - [8579]={ + [8841]={ [1]={ [1]={ limit={ @@ -194258,7 +200278,7 @@ return { [1]="map_synthesised_rare_monster_resurrect_as_ally_chance_%" } }, - [8580]={ + [8842]={ [1]={ [1]={ limit={ @@ -194274,7 +200294,7 @@ return { [1]="map_synthesised_rare_monster_slain_experience_+%" } }, - [8581]={ + [8843]={ [1]={ [1]={ limit={ @@ -194290,7 +200310,7 @@ return { [1]="map_synthesised_rare_monster_unique_item_drop_chance_+%" } }, - [8582]={ + [8844]={ [1]={ [1]={ limit={ @@ -194306,7 +200326,7 @@ return { [1]="map_talismans_dropped_as_rare" } }, - [8583]={ + [8845]={ [1]={ [1]={ limit={ @@ -194331,7 +200351,7 @@ return { [1]="map_talismans_higher_tier" } }, - [8584]={ + [8846]={ [1]={ [1]={ limit={ @@ -194360,7 +200380,7 @@ return { [1]="map_tempest_area_of_effect_+%_visible" } }, - [8585]={ + [8847]={ [1]={ [1]={ limit={ @@ -194389,7 +200409,7 @@ return { [1]="map_tempest_frequency_+%" } }, - [8586]={ + [8848]={ [1]={ [1]={ limit={ @@ -194414,7 +200434,7 @@ return { [1]="map_tormented_spirits_drop_x_additional_rare_items" } }, - [8587]={ + [8849]={ [1]={ [1]={ limit={ @@ -194443,7 +200463,7 @@ return { [1]="map_tormented_spirits_duration_+%" } }, - [8588]={ + [8850]={ [1]={ [1]={ limit={ @@ -194472,7 +200492,7 @@ return { [1]="map_tormented_spirits_movement_speed_+%" } }, - [8589]={ + [8851]={ [1]={ [1]={ [1]={ @@ -194492,7 +200512,7 @@ return { [1]="map_tormented_spirits_possess_players_instead_of_monsters" } }, - [8590]={ + [8852]={ [1]={ [1]={ limit={ @@ -194508,7 +200528,7 @@ return { [1]="map_trialmaster_drops_stack_of_catalysts" } }, - [8591]={ + [8853]={ [1]={ [1]={ limit={ @@ -194524,7 +200544,7 @@ return { [1]="map_uber_drowning_orb_ambush" } }, - [8592]={ + [8854]={ [1]={ [1]={ limit={ @@ -194540,7 +200560,7 @@ return { [1]="map_uber_map_additional_synthesis_boss" } }, - [8593]={ + [8855]={ [1]={ [1]={ limit={ @@ -194556,7 +200576,7 @@ return { [1]="map_uber_map_player_damage_cycle" } }, - [8594]={ + [8856]={ [1]={ [1]={ limit={ @@ -194572,7 +200592,7 @@ return { [1]="map_uber_sawblades_ambush" } }, - [8595]={ + [8857]={ [1]={ [1]={ limit={ @@ -194588,7 +200608,7 @@ return { [1]="map_uber_sirus_meteor_ambush" } }, - [8596]={ + [8858]={ [1]={ [1]={ limit={ @@ -194617,7 +200637,7 @@ return { [1]="map_ultimatum_conquer_encounter_chance_+%" } }, - [8597]={ + [8859]={ [1]={ [1]={ limit={ @@ -194646,7 +200666,7 @@ return { [1]="map_ultimatum_conquer_encounter_radius_+%" } }, - [8598]={ + [8860]={ [1]={ [1]={ limit={ @@ -194675,7 +200695,7 @@ return { [1]="map_ultimatum_defense_encounter_chance_+%" } }, - [8599]={ + [8861]={ [1]={ [1]={ limit={ @@ -194704,7 +200724,7 @@ return { [1]="map_ultimatum_defense_encounter_altar_life_+%" } }, - [8600]={ + [8862]={ [1]={ [1]={ limit={ @@ -194729,7 +200749,7 @@ return { [1]="map_ultimatum_encounter_additional_chance_%" } }, - [8601]={ + [8863]={ [1]={ [1]={ limit={ @@ -194758,7 +200778,7 @@ return { [1]="map_ultimatum_exterminate_encounter_chance_+%" } }, - [8602]={ + [8864]={ [1]={ [1]={ limit={ @@ -194787,7 +200807,7 @@ return { [1]="map_ultimatum_exterminate_encounter_monsters_required_+%" } }, - [8603]={ + [8865]={ [1]={ [1]={ limit={ @@ -194803,7 +200823,7 @@ return { [1]="map_ultimatum_lasts_13_rounds" } }, - [8604]={ + [8866]={ [1]={ [1]={ limit={ @@ -194819,7 +200839,7 @@ return { [1]="map_ultimatum_modifiers_start_1_tier_higher" } }, - [8605]={ + [8867]={ [1]={ [1]={ limit={ @@ -194848,7 +200868,7 @@ return { [1]="map_ultimatum_monster_experience_+%" } }, - [8606]={ + [8868]={ [1]={ [1]={ limit={ @@ -194877,7 +200897,7 @@ return { [1]="map_ultimatum_monster_quantity_+%" } }, - [8607]={ + [8869]={ [1]={ [1]={ limit={ @@ -194906,7 +200926,7 @@ return { [1]="map_ultimatum_rare_monster_quantity_+%" } }, - [8608]={ + [8870]={ [1]={ [1]={ limit={ @@ -194935,7 +200955,7 @@ return { [1]="map_ultimatum_reward_abyss_chance_+%" } }, - [8609]={ + [8871]={ [1]={ [1]={ limit={ @@ -194964,7 +200984,7 @@ return { [1]="map_ultimatum_reward_blight_chance_+%" } }, - [8610]={ + [8872]={ [1]={ [1]={ limit={ @@ -194993,7 +201013,7 @@ return { [1]="map_ultimatum_reward_breach_chance_+%" } }, - [8611]={ + [8873]={ [1]={ [1]={ limit={ @@ -195022,7 +201042,7 @@ return { [1]="map_ultimatum_reward_catalyst_chance_+%" } }, - [8612]={ + [8874]={ [1]={ [1]={ limit={ @@ -195051,7 +201071,7 @@ return { [1]="map_ultimatum_reward_corrupted_rares_chance_+%" } }, - [8613]={ + [8875]={ [1]={ [1]={ limit={ @@ -195080,7 +201100,7 @@ return { [1]="map_ultimatum_reward_currency_items_chance_+%" } }, - [8614]={ + [8876]={ [1]={ [1]={ limit={ @@ -195109,7 +201129,7 @@ return { [1]="map_ultimatum_reward_delirium_chance_+%" } }, - [8615]={ + [8877]={ [1]={ [1]={ limit={ @@ -195138,7 +201158,7 @@ return { [1]="map_ultimatum_reward_divination_cards_chance_+%" } }, - [8616]={ + [8878]={ [1]={ [1]={ limit={ @@ -195154,7 +201174,7 @@ return { [1]="map_ultimatum_reward_duplicated_chance_%" } }, - [8617]={ + [8879]={ [1]={ [1]={ limit={ @@ -195183,7 +201203,7 @@ return { [1]="map_ultimatum_reward_essence_chance_+%" } }, - [8618]={ + [8880]={ [1]={ [1]={ limit={ @@ -195212,7 +201232,7 @@ return { [1]="map_ultimatum_reward_fossils_chance_+%" } }, - [8619]={ + [8881]={ [1]={ [1]={ limit={ @@ -195241,7 +201261,7 @@ return { [1]="map_ultimatum_reward_fragments_chance_+%" } }, - [8620]={ + [8882]={ [1]={ [1]={ limit={ @@ -195270,7 +201290,7 @@ return { [1]="map_ultimatum_reward_gem_chance_+%" } }, - [8621]={ + [8883]={ [1]={ [1]={ limit={ @@ -195299,7 +201319,7 @@ return { [1]="map_ultimatum_reward_heist_chance_+%" } }, - [8622]={ + [8884]={ [1]={ [1]={ limit={ @@ -195328,7 +201348,7 @@ return { [1]="map_ultimatum_reward_inscribed_ultimatums_chance_+%" } }, - [8623]={ + [8885]={ [1]={ [1]={ limit={ @@ -195357,7 +201377,7 @@ return { [1]="map_ultimatum_reward_jewellery_chance_+%" } }, - [8624]={ + [8886]={ [1]={ [1]={ limit={ @@ -195386,7 +201406,7 @@ return { [1]="map_ultimatum_reward_legion_chance_+%" } }, - [8625]={ + [8887]={ [1]={ [1]={ limit={ @@ -195415,7 +201435,7 @@ return { [1]="map_ultimatum_reward_maps_chance_+%" } }, - [8626]={ + [8888]={ [1]={ [1]={ limit={ @@ -195440,7 +201460,7 @@ return { [1]="map_ultimatum_reward_tiers_+" } }, - [8627]={ + [8889]={ [1]={ [1]={ limit={ @@ -195469,7 +201489,7 @@ return { [1]="map_ultimatum_reward_unique_items_chance_+%" } }, - [8628]={ + [8890]={ [1]={ [1]={ limit={ @@ -195498,7 +201518,7 @@ return { [1]="map_ultimatum_survival_encounter_chance_+%" } }, - [8629]={ + [8891]={ [1]={ [1]={ limit={ @@ -195527,7 +201547,7 @@ return { [1]="map_ultimatum_survival_encounter_time_+%" } }, - [8630]={ + [8892]={ [1]={ [1]={ limit={ @@ -195543,7 +201563,7 @@ return { [1]="map_ultimatum_trialmaster_cannot_spawn" } }, - [8631]={ + [8893]={ [1]={ [1]={ limit={ @@ -195559,7 +201579,7 @@ return { [1]="map_supporter_union_of_souls" } }, - [8632]={ + [8894]={ [1]={ [1]={ limit={ @@ -195575,7 +201595,7 @@ return { [1]="map_unique_boss_drops_divination_cards" } }, - [8633]={ + [8895]={ [1]={ [1]={ limit={ @@ -195591,7 +201611,7 @@ return { [1]="map_unique_item_drop_chance_+%" } }, - [8634]={ + [8896]={ [1]={ [1]={ limit={ @@ -195607,7 +201627,7 @@ return { [1]="map_unique_monsters_drop_corrupted_items" } }, - [8635]={ + [8897]={ [1]={ [1]={ limit={ @@ -195632,7 +201652,7 @@ return { [1]="map_unique_monsters_have_X_shrine_effects" } }, - [8636]={ + [8898]={ [1]={ [1]={ limit={ @@ -195657,7 +201677,7 @@ return { [1]="map_unique_monster_items_drop_corrupted_%" } }, - [8637]={ + [8899]={ [1]={ [1]={ limit={ @@ -195673,7 +201693,7 @@ return { [1]="map_unique_side_area_return_portal_leads_to_new_unique_side_area_chance_%" } }, - [8638]={ + [8900]={ [1]={ [1]={ limit={ @@ -195689,7 +201709,7 @@ return { [1]="map_upgrade_X_packs_to_magic" } }, - [8639]={ + [8901]={ [1]={ [1]={ limit={ @@ -195705,7 +201725,7 @@ return { [1]="map_upgrade_pack_to_magic_%_chance" } }, - [8640]={ + [8902]={ [1]={ [1]={ limit={ @@ -195721,7 +201741,7 @@ return { [1]="map_upgrade_pack_to_rare_%_chance" } }, - [8641]={ + [8903]={ [1]={ [1]={ limit={ @@ -195737,7 +201757,7 @@ return { [1]="map_upgrade_synthesised_pack_to_magic_%_chance" } }, - [8642]={ + [8904]={ [1]={ [1]={ limit={ @@ -195753,7 +201773,7 @@ return { [1]="map_upgrade_synthesised_pack_to_rare_%_chance" } }, - [8643]={ + [8905]={ [1]={ [1]={ limit={ @@ -195778,7 +201798,7 @@ return { [1]="map_vaal_monster_items_drop_corrupted_%" } }, - [8644]={ + [8906]={ [1]={ [1]={ limit={ @@ -195794,7 +201814,7 @@ return { [1]="map_vaal_mortal_strongbox_chance_per_fragment_%" } }, - [8645]={ + [8907]={ [1]={ [1]={ limit={ @@ -195810,7 +201830,7 @@ return { [1]="map_vaal_sacrifice_strongbox_chance_per_fragment_%" } }, - [8646]={ + [8908]={ [1]={ [1]={ limit={ @@ -195839,7 +201859,7 @@ return { [1]="map_vaal_side_area_boss_damage_+%_final" } }, - [8647]={ + [8909]={ [1]={ [1]={ limit={ @@ -195868,7 +201888,7 @@ return { [1]="map_vaal_side_area_boss_maximum_life_+%_final" } }, - [8648]={ + [8910]={ [1]={ [1]={ limit={ @@ -195893,7 +201913,7 @@ return { [1]="map_vaal_side_area_chance_%" } }, - [8649]={ + [8911]={ [1]={ [1]={ limit={ @@ -195909,7 +201929,7 @@ return { [1]="map_vaal_side_area_vaal_vessel_%_chance_to_duplicate_rewards" } }, - [8650]={ + [8912]={ [1]={ [1]={ limit={ @@ -195934,7 +201954,7 @@ return { [1]="map_vaal_temple_spawn_additional_vaal_vessels" } }, - [8651]={ + [8913]={ [1]={ [1]={ limit={ @@ -195959,7 +201979,7 @@ return { [1]="map_vaal_vessel_drop_X_divination_cards" } }, - [8652]={ + [8914]={ [1]={ [1]={ limit={ @@ -195984,7 +202004,7 @@ return { [1]="map_vaal_vessel_drop_X_fossils" } }, - [8653]={ + [8915]={ [1]={ [1]={ limit={ @@ -196009,7 +202029,7 @@ return { [1]="map_vaal_vessel_drop_X_level_21_gems" } }, - [8654]={ + [8916]={ [1]={ [1]={ limit={ @@ -196034,7 +202054,7 @@ return { [1]="map_vaal_vessel_drop_X_levelled_vaal_gems" } }, - [8655]={ + [8917]={ [1]={ [1]={ limit={ @@ -196059,7 +202079,7 @@ return { [1]="map_vaal_vessel_drop_X_maps_with_vaal_implicits" } }, - [8656]={ + [8918]={ [1]={ [1]={ limit={ @@ -196084,7 +202104,7 @@ return { [1]="map_vaal_vessel_drop_X_mortal_fragments" } }, - [8657]={ + [8919]={ [1]={ [1]={ limit={ @@ -196109,7 +202129,7 @@ return { [1]="map_vaal_vessel_drop_X_prophecies" } }, - [8658]={ + [8920]={ [1]={ [1]={ limit={ @@ -196134,7 +202154,7 @@ return { [1]="map_vaal_vessel_drop_X_quality_23_gems" } }, - [8659]={ + [8921]={ [1]={ [1]={ limit={ @@ -196159,7 +202179,7 @@ return { [1]="map_vaal_vessel_drop_X_rare_temple_items" } }, - [8660]={ + [8922]={ [1]={ [1]={ limit={ @@ -196184,7 +202204,7 @@ return { [1]="map_vaal_vessel_drop_X_sacrifice_fragments" } }, - [8661]={ + [8923]={ [1]={ [1]={ limit={ @@ -196200,7 +202220,7 @@ return { [1]="map_vaal_vessel_drop_X_tower_of_ordeals" } }, - [8662]={ + [8924]={ [1]={ [1]={ limit={ @@ -196225,7 +202245,7 @@ return { [1]="map_vaal_vessel_drop_X_trialmaster_fragments" } }, - [8663]={ + [8925]={ [1]={ [1]={ limit={ @@ -196250,7 +202270,7 @@ return { [1]="map_vaal_vessel_drop_X_vaal_gems" } }, - [8664]={ + [8926]={ [1]={ [1]={ limit={ @@ -196275,7 +202295,7 @@ return { [1]="map_vaal_vessel_drop_X_vaal_orbs" } }, - [8665]={ + [8927]={ [1]={ [1]={ limit={ @@ -196300,7 +202320,7 @@ return { [1]="map_vaal_vessel_drop_X_vaal_temple_maps" } }, - [8666]={ + [8928]={ [1]={ [1]={ limit={ @@ -196325,7 +202345,7 @@ return { [1]="map_vaal_vessel_drop_x_double_implicit_corrupted_uniques" } }, - [8667]={ + [8929]={ [1]={ [1]={ limit={ @@ -196350,7 +202370,7 @@ return { [1]="map_vaal_vessel_drop_x_single_implicit_corrupted_uniques" } }, - [8668]={ + [8930]={ [1]={ [1]={ limit={ @@ -196379,7 +202399,7 @@ return { [1]="map_vaal_vessel_item_drop_quantity_+%" } }, - [8669]={ + [8931]={ [1]={ [1]={ limit={ @@ -196408,7 +202428,7 @@ return { [1]="map_vaal_vessel_item_drop_rarity_+%" } }, - [8670]={ + [8932]={ [1]={ [1]={ limit={ @@ -196424,7 +202444,7 @@ return { [1]="map_village_secondary_ore_chance_+%" } }, - [8671]={ + [8933]={ [1]={ [1]={ limit={ @@ -196449,7 +202469,7 @@ return { [1]="map_warbands_packs_have_additional_elites" } }, - [8672]={ + [8934]={ [1]={ [1]={ limit={ @@ -196474,7 +202494,7 @@ return { [1]="map_warbands_packs_have_additional_grunts" } }, - [8673]={ + [8935]={ [1]={ [1]={ limit={ @@ -196499,7 +202519,7 @@ return { [1]="map_warbands_packs_have_additional_supports" } }, - [8674]={ + [8936]={ [1]={ [1]={ limit={ @@ -196515,7 +202535,7 @@ return { [1]="map_watchstone_additional_packs_of_elder_monsters" } }, - [8675]={ + [8937]={ [1]={ [1]={ limit={ @@ -196531,7 +202551,7 @@ return { [1]="map_watchstone_additional_packs_of_shaper_monsters" } }, - [8676]={ + [8938]={ [1]={ [1]={ limit={ @@ -196547,7 +202567,7 @@ return { [1]="map_watchstone_monsters_damage_+%_final" } }, - [8677]={ + [8939]={ [1]={ [1]={ limit={ @@ -196563,7 +202583,7 @@ return { [1]="map_watchstone_monsters_life_+%_final" } }, - [8678]={ + [8940]={ [1]={ [1]={ limit={ @@ -196579,7 +202599,7 @@ return { [1]="map_zana_influence" } }, - [8679]={ + [8941]={ [1]={ [1]={ limit={ @@ -196595,7 +202615,7 @@ return { [1]="map_zana_influence_additional_petal_skill_chance_%" } }, - [8680]={ + [8942]={ [1]={ [1]={ limit={ @@ -196624,7 +202644,7 @@ return { [1]="map_zana_influence_equipment_item_chance_+%" } }, - [8681]={ + [8943]={ [1]={ [1]={ limit={ @@ -196640,7 +202660,7 @@ return { [1]="map_zana_influence_number_of_influenced_magic_packs_+%" } }, - [8682]={ + [8944]={ [1]={ [1]={ limit={ @@ -196656,7 +202676,7 @@ return { [1]="map_zana_influence_number_of_influenced_rare_packs_+%" } }, - [8683]={ + [8945]={ [1]={ [1]={ limit={ @@ -196672,7 +202692,7 @@ return { [1]="map_zana_influence_pack_+" } }, - [8684]={ + [8946]={ [1]={ [1]={ limit={ @@ -196701,7 +202721,7 @@ return { [1]="marauder_hidden_ascendancy_damage_+%_final" } }, - [8685]={ + [8947]={ [1]={ [1]={ limit={ @@ -196730,7 +202750,7 @@ return { [1]="marauder_hidden_ascendancy_damage_taken_+%_final" } }, - [8686]={ + [8948]={ [1]={ [1]={ limit={ @@ -196759,7 +202779,7 @@ return { [1]="mark_skill_duration_+%" } }, - [8687]={ + [8949]={ [1]={ [1]={ limit={ @@ -196788,7 +202808,23 @@ return { [1]="mark_skill_mana_cost_+%" } }, - [8688]={ + [8950]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Mark Skills Cost no Mana" + } + }, + stats={ + [1]="mark_skills_cost_no_mana" + } + }, + [8951]={ [1]={ [1]={ limit={ @@ -196804,7 +202840,23 @@ return { [1]="marked_enemies_cannot_deal_critical_strikes" } }, - [8689]={ + [8952]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Marked Enemy cannot Evade Attacks" + } + }, + stats={ + [1]="marked_enemies_cannot_evade" + } + }, + [8953]={ [1]={ [1]={ limit={ @@ -196820,7 +202872,7 @@ return { [1]="marked_enemies_cannot_regenerate_life" } }, - [8690]={ + [8954]={ [1]={ [1]={ limit={ @@ -196849,7 +202901,7 @@ return { [1]="marked_enemy_accuracy_rating_+%" } }, - [8691]={ + [8955]={ [1]={ [1]={ limit={ @@ -196878,7 +202930,7 @@ return { [1]="marked_enemy_damage_taken_+%" } }, - [8692]={ + [8956]={ [1]={ [1]={ limit={ @@ -196894,7 +202946,7 @@ return { [1]="marks_you_inflict_remain_after_death" } }, - [8693]={ + [8957]={ [1]={ [1]={ limit={ @@ -196923,7 +202975,7 @@ return { [1]="mastery_chance_to_evade_melee_attacks_+%_final" } }, - [8694]={ + [8958]={ [1]={ [1]={ limit={ @@ -196939,7 +202991,7 @@ return { [1]="maven_fight_layout_override" } }, - [8695]={ + [8959]={ [1]={ [1]={ [1]={ @@ -196959,7 +203011,7 @@ return { [1]="max_chance_to_block_attacks_if_not_blocked_recently" } }, - [8696]={ + [8960]={ [1]={ [1]={ [1]={ @@ -196979,7 +203031,7 @@ return { [1]="max_fortification_+1_per_5" } }, - [8697]={ + [8961]={ [1]={ [1]={ [1]={ @@ -196999,7 +203051,7 @@ return { [1]="max_fortification_while_focused_+1_per_5" } }, - [8698]={ + [8962]={ [1]={ [1]={ [1]={ @@ -197019,7 +203071,7 @@ return { [1]="max_fortification_while_stationary_+1_per_5" } }, - [8699]={ + [8963]={ [1]={ [1]={ limit={ @@ -197035,7 +203087,7 @@ return { [1]="max_steel_ammo" } }, - [8700]={ + [8964]={ [1]={ [1]={ limit={ @@ -197051,7 +203103,7 @@ return { [1]="maximum_added_lightning_damage_per_10_int" } }, - [8701]={ + [8965]={ [1]={ [1]={ limit={ @@ -197080,7 +203132,7 @@ return { [1]="maximum_attack_damage_+%_final_from_ascendancy" } }, - [8702]={ + [8966]={ [1]={ [1]={ limit={ @@ -197096,7 +203148,7 @@ return { [1]="maximum_blitz_charges" } }, - [8703]={ + [8967]={ [1]={ [1]={ limit={ @@ -197112,7 +203164,7 @@ return { [1]="maximum_celestial_charges" } }, - [8704]={ + [8968]={ [1]={ [1]={ limit={ @@ -197128,7 +203180,7 @@ return { [1]="maximum_challenger_charges" } }, - [8705]={ + [8969]={ [1]={ [1]={ [1]={ @@ -197148,7 +203200,7 @@ return { [1]="maximum_cold_damage_resistance_%_while_affected_by_herald_of_ice" } }, - [8706]={ + [8970]={ [1]={ [1]={ limit={ @@ -197164,7 +203216,7 @@ return { [1]="maximum_critical_strike_chance_is_50%" } }, - [8707]={ + [8971]={ [1]={ [1]={ limit={ @@ -197180,7 +203232,7 @@ return { [1]="maximum_endurance_charges_+_while_affected_by_determination" } }, - [8708]={ + [8972]={ [1]={ [1]={ limit={ @@ -197196,7 +203248,7 @@ return { [1]="maximum_endurance_frenzy_power_charges_is_0" } }, - [8709]={ + [8973]={ [1]={ [1]={ limit={ @@ -197212,7 +203264,7 @@ return { [1]="maximum_energy_shield_from_body_armour_+%" } }, - [8710]={ + [8974]={ [1]={ [1]={ limit={ @@ -197228,7 +203280,23 @@ return { [1]="maximum_energy_shield_increased_by_spell_block_chance" } }, - [8711]={ + [8975]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Your Maximum Energy Shield is Equal to {0}% of Your Maximum Life" + } + }, + stats={ + [1]="maximum_energy_shield_is_x%_of_maximum_life" + } + }, + [8976]={ [1]={ [1]={ limit={ @@ -197244,7 +203312,7 @@ return { [1]="maximum_es_per_honoured_soul_tattoo_allocated" } }, - [8712]={ + [8977]={ [1]={ [1]={ limit={ @@ -197260,7 +203328,7 @@ return { [1]="maximum_fanaticism_charges" } }, - [8713]={ + [8978]={ [1]={ [1]={ [1]={ @@ -197280,7 +203348,7 @@ return { [1]="maximum_fire_damage_resistance_%_while_affected_by_herald_of_ash" } }, - [8714]={ + [8979]={ [1]={ [1]={ limit={ @@ -197296,7 +203364,7 @@ return { [1]="maximum_frenzy_charges_+_while_affected_by_grace" } }, - [8715]={ + [8980]={ [1]={ [1]={ limit={ @@ -197312,7 +203380,7 @@ return { [1]="maximum_frenzy_power_endurance_charges" } }, - [8716]={ + [8981]={ [1]={ [1]={ limit={ @@ -197328,7 +203396,7 @@ return { [1]="maximum_intensify_stacks" } }, - [8717]={ + [8982]={ [1]={ [1]={ limit={ @@ -197357,7 +203425,23 @@ return { [1]="maximum_leech_rate_+%" } }, - [8718]={ + [8983]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Gain {0}% of Maximum Life as Extra Maximum Energy Shield if no Equipped Items are Corrupted" + } + }, + stats={ + [1]="maximum_life_%_to_add_as_maximum_energy_shield_with_no_corrupted_equipped_items" + } + }, + [8984]={ [1]={ [1]={ limit={ @@ -197386,7 +203470,7 @@ return { [1]="maximum_life_+%_per_alive_packmate" } }, - [8719]={ + [8985]={ [1]={ [1]={ [1]={ @@ -197423,7 +203507,7 @@ return { [1]="maximum_life_+%_per_red_socket_on_staff" } }, - [8720]={ + [8986]={ [1]={ [1]={ limit={ @@ -197452,7 +203536,7 @@ return { [1]="maximum_life_+%_to_grant_packmate_on_death" } }, - [8721]={ + [8987]={ [1]={ [1]={ limit={ @@ -197481,7 +203565,7 @@ return { [1]="maximum_life_+%_while_no_gems_in_gloves" } }, - [8722]={ + [8988]={ [1]={ [1]={ [1]={ @@ -197501,7 +203585,7 @@ return { [1]="maximum_life_+_if_no_life_modifiers_on_equipment_except_body_armour" } }, - [8723]={ + [8989]={ [1]={ [1]={ limit={ @@ -197517,7 +203601,7 @@ return { [1]="maximum_life_leech_amount_per_leech_%_max_life" } }, - [8724]={ + [8990]={ [1]={ [1]={ limit={ @@ -197533,7 +203617,7 @@ return { [1]="maximum_life_leech_rate_%_per_minute_is_doubled" } }, - [8725]={ + [8991]={ [1]={ [1]={ [1]={ @@ -197578,7 +203662,7 @@ return { [1]="maximum_life_leech_rate_+%_if_crit_recently" } }, - [8726]={ + [8992]={ [1]={ [1]={ [1]={ @@ -197615,7 +203699,7 @@ return { [1]="maximum_life_leech_rate_+%_if_have_taken_a_savage_hit_recently" } }, - [8727]={ + [8993]={ [1]={ [1]={ limit={ @@ -197631,7 +203715,7 @@ return { [1]="maximum_life_per_10_dexterity" } }, - [8728]={ + [8994]={ [1]={ [1]={ limit={ @@ -197647,7 +203731,7 @@ return { [1]="maximum_life_per_10_intelligence" } }, - [8729]={ + [8995]={ [1]={ [1]={ limit={ @@ -197663,7 +203747,7 @@ return { [1]="maximum_life_per_2%_increased_item_found_rarity" } }, - [8730]={ + [8996]={ [1]={ [1]={ limit={ @@ -197679,7 +203763,7 @@ return { [1]="maximum_life_per_honoured_heart_tattoo_allocated" } }, - [8731]={ + [8997]={ [1]={ [1]={ limit={ @@ -197695,7 +203779,7 @@ return { [1]="maximum_life_%_to_add_as_maximum_armour" } }, - [8732]={ + [8998]={ [1]={ [1]={ limit={ @@ -197711,7 +203795,7 @@ return { [1]="maximum_life_%_to_add_as_maximum_energy_shield" } }, - [8733]={ + [8999]={ [1]={ [1]={ limit={ @@ -197727,7 +203811,7 @@ return { [1]="maximum_life_%_to_convert_to_maximum_energy_shield" } }, - [8734]={ + [9000]={ [1]={ [1]={ [1]={ @@ -197764,7 +203848,7 @@ return { [1]="maximum_life_+%_for_corpses_you_create" } }, - [8735]={ + [9001]={ [1]={ [1]={ limit={ @@ -197780,7 +203864,7 @@ return { [1]="maximum_life_+%_if_no_life_tags_on_body_armour" } }, - [8736]={ + [9002]={ [1]={ [1]={ limit={ @@ -197809,7 +203893,7 @@ return { [1]="maximum_life_+%_per_abyssal_jewel_affecting_you" } }, - [8737]={ + [9003]={ [1]={ [1]={ [1]={ @@ -197829,7 +203913,7 @@ return { [1]="maximum_lightning_damage_resistance_%_while_affected_by_herald_of_thunder" } }, - [8738]={ + [9004]={ [1]={ [1]={ [1]={ @@ -197866,7 +203950,7 @@ return { [1]="maximum_mana_+%_per_blue_socket_on_staff" } }, - [8739]={ + [9005]={ [1]={ [1]={ limit={ @@ -197882,7 +203966,7 @@ return { [1]="maximum_mana_leech_amount_per_leech_%_max_mana" } }, - [8740]={ + [9006]={ [1]={ [1]={ limit={ @@ -197898,7 +203982,7 @@ return { [1]="maximum_mana_per_honoured_mind_tattoo_allocated" } }, - [8741]={ + [9007]={ [1]={ [1]={ limit={ @@ -197914,7 +203998,7 @@ return { [1]="maximum_mana_%_to_add_to_energy_shield_while_affected_by_clarity" } }, - [8742]={ + [9008]={ [1]={ [1]={ limit={ @@ -197930,7 +204014,7 @@ return { [1]="maximum_mana_+_per_2_intelligence" } }, - [8743]={ + [9009]={ [1]={ [1]={ limit={ @@ -197959,7 +204043,7 @@ return { [1]="maximum_mana_+%_per_abyssal_jewel_affecting_you" } }, - [8744]={ + [9010]={ [1]={ [1]={ limit={ @@ -198086,13 +204170,22 @@ return { } }, text="Maximum number of Summoned Spectral Wolves is Doubled\nCannot have Minions other than Summoned Spectral Wolves" + }, + [15]={ + limit={ + [1]={ + [1]=15, + [2]=15 + } + }, + text="Maximum number of Living Lightning is Doubled\nCannot have Minions other than Living Lightning" } }, stats={ [1]="maximum_number_of_X_minion_type_doubled" } }, - [8745]={ + [9011]={ [1]={ [1]={ limit={ @@ -198108,7 +204201,23 @@ return { [1]="maximum_number_of_blades_left_in_ground" } }, - [8746]={ + [9012]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Maximum number of Raised Spectres is {0}" + } + }, + stats={ + [1]="maximum_number_of_raised_spectres_is_x" + } + }, + [9013]={ [1]={ [1]={ limit={ @@ -198137,7 +204246,7 @@ return { [1]="maximum_physical_attack_damage_+%_final" } }, - [8747]={ + [9014]={ [1]={ [1]={ limit={ @@ -198153,7 +204262,7 @@ return { [1]="maximum_power_and_endurance_charges_+" } }, - [8748]={ + [9015]={ [1]={ [1]={ limit={ @@ -198169,7 +204278,23 @@ return { [1]="maximum_power_charges_+_while_affected_by_discipline" } }, - [8749]={ + [9016]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Maximum Rage is Halved" + } + }, + stats={ + [1]="maximum_rage_is_halved" + } + }, + [9017]={ [1]={ [1]={ [1]={ @@ -198189,7 +204314,7 @@ return { [1]="maximum_rage_per_equipped_one_handed_sword" } }, - [8750]={ + [9018]={ [1]={ [1]={ [1]={ @@ -198226,7 +204351,7 @@ return { [1]="maximum_total_life_recovery_per_second_from_leech_+%_while_at_max_rage" } }, - [8751]={ + [9019]={ [1]={ [1]={ limit={ @@ -198247,7 +204372,7 @@ return { [2]="quality_display_herald_of_agony_is_gem" } }, - [8752]={ + [9020]={ [1]={ [1]={ limit={ @@ -198272,7 +204397,7 @@ return { [1]="melee_attack_number_of_spirit_strikes" } }, - [8753]={ + [9021]={ [1]={ [1]={ limit={ @@ -198288,7 +204413,7 @@ return { [1]="melee_attacks_usable_without_life_cost" } }, - [8754]={ + [9022]={ [1]={ [1]={ [1]={ @@ -198308,7 +204433,7 @@ return { [1]="melee_critical_strike_chance_+%_if_warcried_recently" } }, - [8755]={ + [9023]={ [1]={ [1]={ [1]={ @@ -198328,7 +204453,23 @@ return { [1]="melee_critical_strike_multiplier_+%_if_warcried_recently" } }, - [8756]={ + [9024]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Melee Damage per 20 Intelligence" + } + }, + stats={ + [1]="melee_damage_+%_per_20_intelligence" + } + }, + [9025]={ [1]={ [1]={ [1]={ @@ -198365,7 +204506,7 @@ return { [1]="melee_damage_+%_at_close_range" } }, - [8757]={ + [9026]={ [1]={ [1]={ limit={ @@ -198394,7 +204535,7 @@ return { [1]="melee_damage_+%_during_flask_effect" } }, - [8758]={ + [9027]={ [1]={ [1]={ limit={ @@ -198410,7 +204551,7 @@ return { [1]="melee_damage_+%_per_second_of_warcry_affecting_you" } }, - [8759]={ + [9028]={ [1]={ [1]={ limit={ @@ -198426,7 +204567,7 @@ return { [1]="melee_hits_cannot_be_evaded_while_wielding_sword" } }, - [8760]={ + [9029]={ [1]={ [1]={ [1]={ @@ -198446,7 +204587,7 @@ return { [1]="melee_knockback" } }, - [8761]={ + [9030]={ [1]={ [1]={ [1]={ @@ -198470,7 +204611,7 @@ return { [1]="melee_movement_skill_chance_to_fortify_on_hit_%" } }, - [8762]={ + [9031]={ [1]={ [1]={ limit={ @@ -198486,7 +204627,7 @@ return { [1]="melee_physical_damage_+%_per_10_dexterity" } }, - [8763]={ + [9032]={ [1]={ [1]={ limit={ @@ -198515,7 +204656,7 @@ return { [1]="melee_physical_damage_+%_per_10_strength_while_fortified" } }, - [8764]={ + [9033]={ [1]={ [1]={ [1]={ @@ -198556,7 +204697,7 @@ return { [1]="melee_range_+_while_at_least_5_enemies_nearby" } }, - [8765]={ + [9034]={ [1]={ [1]={ [1]={ @@ -198597,7 +204738,7 @@ return { [1]="melee_range_+_while_wielding_shield" } }, - [8766]={ + [9035]={ [1]={ [1]={ [1]={ @@ -198638,7 +204779,7 @@ return { [1]="melee_range_+_while_dual_wielding" } }, - [8767]={ + [9036]={ [1]={ [1]={ [1]={ @@ -198679,7 +204820,7 @@ return { [1]="melee_range_+_with_axe" } }, - [8768]={ + [9037]={ [1]={ [1]={ [1]={ @@ -198720,7 +204861,7 @@ return { [1]="melee_range_+_with_claw" } }, - [8769]={ + [9038]={ [1]={ [1]={ [1]={ @@ -198769,7 +204910,7 @@ return { [1]="melee_range_+_with_dagger" } }, - [8770]={ + [9039]={ [1]={ [1]={ [1]={ @@ -198810,7 +204951,7 @@ return { [1]="melee_range_+_with_mace" } }, - [8771]={ + [9040]={ [1]={ [1]={ [1]={ @@ -198851,7 +204992,7 @@ return { [1]="melee_range_+_with_one_handed" } }, - [8772]={ + [9041]={ [1]={ [1]={ [1]={ @@ -198900,7 +205041,7 @@ return { [1]="melee_range_+_with_staff" } }, - [8773]={ + [9042]={ [1]={ [1]={ [1]={ @@ -198941,7 +205082,7 @@ return { [1]="melee_range_+_with_sword" } }, - [8774]={ + [9043]={ [1]={ [1]={ [1]={ @@ -198982,7 +205123,7 @@ return { [1]="melee_range_+_with_two_handed" } }, - [8775]={ + [9044]={ [1]={ [1]={ limit={ @@ -198998,7 +205139,7 @@ return { [1]="melee_skill_gem_level_+" } }, - [8776]={ + [9045]={ [1]={ [1]={ limit={ @@ -199027,7 +205168,7 @@ return { [1]="melee_skills_area_of_effect_+%" } }, - [8777]={ + [9046]={ [1]={ [1]={ limit={ @@ -199043,7 +205184,7 @@ return { [1]="melee_splash_while_wielding_mace" } }, - [8778]={ + [9047]={ [1]={ [1]={ limit={ @@ -199059,7 +205200,7 @@ return { [1]="melee_strike_skill_strike_previous_location" } }, - [8779]={ + [9048]={ [1]={ [1]={ [1]={ @@ -199108,7 +205249,7 @@ return { [1]="melee_weapon_range_+_if_you_have_killed_recently" } }, - [8780]={ + [9049]={ [1]={ [1]={ [1]={ @@ -199149,7 +205290,7 @@ return { [1]="melee_weapon_range_+_while_at_maximum_frenzy_charges" } }, - [8781]={ + [9050]={ [1]={ [1]={ [1]={ @@ -199190,7 +205331,7 @@ return { [1]="melee_weapon_range_+_while_fortified" } }, - [8782]={ + [9051]={ [1]={ [1]={ [1]={ @@ -199227,7 +205368,7 @@ return { [1]="mine_area_damage_+%_if_detonated_mine_recently" } }, - [8783]={ + [9052]={ [1]={ [1]={ limit={ @@ -199256,7 +205397,7 @@ return { [1]="mine_area_of_effect_+%" } }, - [8784]={ + [9053]={ [1]={ [1]={ [1]={ @@ -199293,7 +205434,7 @@ return { [1]="mine_area_of_effect_+%_if_detonated_mine_recently" } }, - [8785]={ + [9054]={ [1]={ [1]={ limit={ @@ -199322,7 +205463,7 @@ return { [1]="mine_aura_effect_+%" } }, - [8786]={ + [9055]={ [1]={ [1]={ limit={ @@ -199351,7 +205492,7 @@ return { [1]="mine_detonation_speed_+%" } }, - [8787]={ + [9056]={ [1]={ [1]={ limit={ @@ -199367,7 +205508,7 @@ return { [1]="mine_%_chance_to_detonate_twice" } }, - [8788]={ + [9057]={ [1]={ [1]={ [1]={ @@ -199408,7 +205549,7 @@ return { [1]="mines_hinder_nearby_enemies_for_x_ms_on_arming" } }, - [8789]={ + [9058]={ [1]={ [1]={ limit={ @@ -199424,7 +205565,7 @@ return { [1]="mines_invulnerable" } }, - [8790]={ + [9059]={ [1]={ [1]={ [1]={ @@ -199449,7 +205590,7 @@ return { [2]="maximum_added_chaos_damage_if_have_crit_recently" } }, - [8791]={ + [9060]={ [1]={ [1]={ limit={ @@ -199470,7 +205611,7 @@ return { [2]="maximum_added_chaos_damage_per_curse_on_enemy" } }, - [8792]={ + [9061]={ [1]={ [1]={ limit={ @@ -199491,7 +205632,7 @@ return { [2]="maximum_added_chaos_damage_per_spiders_web_on_enemy" } }, - [8793]={ + [9062]={ [1]={ [1]={ limit={ @@ -199512,7 +205653,7 @@ return { [2]="maximum_added_chaos_damage_to_attacks_and_spells_per_50_strength" } }, - [8794]={ + [9063]={ [1]={ [1]={ limit={ @@ -199533,7 +205674,7 @@ return { [2]="maximum_added_chaos_damage_to_attacks_per_50_strength" } }, - [8795]={ + [9064]={ [1]={ [1]={ limit={ @@ -199554,7 +205695,7 @@ return { [2]="maximum_added_chaos_damage_vs_enemies_with_5+_poisons" } }, - [8796]={ + [9065]={ [1]={ [1]={ [1]={ @@ -199579,7 +205720,7 @@ return { [2]="maximum_added_cold_damage_if_have_crit_recently" } }, - [8797]={ + [9066]={ [1]={ [1]={ limit={ @@ -199600,7 +205741,7 @@ return { [2]="maximum_added_cold_damage_to_attacks_per_10_dexterity" } }, - [8798]={ + [9067]={ [1]={ [1]={ limit={ @@ -199621,7 +205762,7 @@ return { [2]="maximum_added_cold_damage_vs_chilled_enemies" } }, - [8799]={ + [9068]={ [1]={ [1]={ limit={ @@ -199642,7 +205783,7 @@ return { [2]="maximum_added_cold_damage_while_affected_by_hatred" } }, - [8800]={ + [9069]={ [1]={ [1]={ limit={ @@ -199663,7 +205804,7 @@ return { [2]="maximum_added_cold_damage_while_you_have_avians_might" } }, - [8801]={ + [9070]={ [1]={ [1]={ [1]={ @@ -199688,7 +205829,7 @@ return { [2]="maximum_added_fire_damage_if_have_crit_recently" } }, - [8802]={ + [9071]={ [1]={ [1]={ limit={ @@ -199709,7 +205850,7 @@ return { [2]="maximum_added_fire_damage_per_100_lowest_of_max_life_mana" } }, - [8803]={ + [9072]={ [1]={ [1]={ limit={ @@ -199730,7 +205871,28 @@ return { [2]="maximum_added_fire_damage_per_endurance_charge" } }, - [8804]={ + [9073]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + }, + [2]={ + [1]="#", + [2]="#" + } + }, + text="Adds {0} to {1} Fire Damage to Attacks for every 1% your Light Radius is above base value" + } + }, + stats={ + [1]="minimum_added_fire_damage_to_attacks_per_1%_light_radius", + [2]="maximum_added_fire_damage_to_attacks_per_1%_light_radius" + } + }, + [9074]={ [1]={ [1]={ limit={ @@ -199751,7 +205913,7 @@ return { [2]="maximum_added_fire_damage_to_attacks_per_10_strength" } }, - [8805]={ + [9075]={ [1]={ [1]={ limit={ @@ -199772,7 +205934,7 @@ return { [2]="maximum_added_fire_damage_to_hits_vs_blinded_enemies" } }, - [8806]={ + [9076]={ [1]={ [1]={ [1]={ @@ -199797,7 +205959,7 @@ return { [2]="maximum_added_lightning_damage_if_have_crit_recently" } }, - [8807]={ + [9077]={ [1]={ [1]={ limit={ @@ -199818,7 +205980,7 @@ return { [2]="maximum_added_lightning_damage_per_power_charge" } }, - [8808]={ + [9078]={ [1]={ [1]={ [1]={ @@ -199843,7 +206005,7 @@ return { [2]="maximum_added_lightning_damage_per_shocked_enemy_killed_recently" } }, - [8809]={ + [9079]={ [1]={ [1]={ limit={ @@ -199864,7 +206026,7 @@ return { [2]="maximum_added_lightning_damage_to_attacks_per_10_intelligence" } }, - [8810]={ + [9080]={ [1]={ [1]={ limit={ @@ -199885,7 +206047,7 @@ return { [2]="maximum_added_lightning_damage_to_spells_per_power_charge" } }, - [8811]={ + [9081]={ [1]={ [1]={ limit={ @@ -199906,7 +206068,7 @@ return { [2]="maximum_added_lightning_damage_while_you_have_avians_might" } }, - [8812]={ + [9082]={ [1]={ [1]={ [1]={ @@ -199931,7 +206093,7 @@ return { [2]="maximum_added_physical_damage_if_have_crit_recently" } }, - [8813]={ + [9083]={ [1]={ [1]={ limit={ @@ -199952,7 +206114,7 @@ return { [2]="maximum_added_physical_damage_per_endurance_charge" } }, - [8814]={ + [9084]={ [1]={ [1]={ limit={ @@ -199973,7 +206135,7 @@ return { [2]="maximum_added_physical_damage_per_impaled_on_enemy" } }, - [8815]={ + [9085]={ [1]={ [1]={ [1]={ @@ -199998,7 +206160,7 @@ return { [2]="maximum_added_physical_damage_vs_poisoned_enemies" } }, - [8816]={ + [9086]={ [1]={ [1]={ limit={ @@ -200019,7 +206181,7 @@ return { [2]="maximum_added_spell_cold_damage_while_no_life_is_reserved" } }, - [8817]={ + [9087]={ [1]={ [1]={ limit={ @@ -200040,7 +206202,7 @@ return { [2]="maximum_added_spell_fire_damage_while_no_life_is_reserved" } }, - [8818]={ + [9088]={ [1]={ [1]={ limit={ @@ -200061,7 +206223,7 @@ return { [2]="maximum_added_spell_lightning_damage_while_no_life_is_reserved" } }, - [8819]={ + [9089]={ [1]={ [1]={ limit={ @@ -200077,7 +206239,7 @@ return { [1]="minimum_endurance_charges_at_devotion_threshold" } }, - [8820]={ + [9090]={ [1]={ [1]={ limit={ @@ -200093,7 +206255,7 @@ return { [1]="minimum_endurance_charges_while_on_low_life_+" } }, - [8821]={ + [9091]={ [1]={ [1]={ limit={ @@ -200109,7 +206271,7 @@ return { [1]="minimum_frenzy_charges_at_devotion_threshold" } }, - [8822]={ + [9092]={ [1]={ [1]={ limit={ @@ -200125,7 +206287,7 @@ return { [1]="minimum_frenzy_endurance_power_charges_are_equal_to_maximum_while_stationary" } }, - [8823]={ + [9093]={ [1]={ [1]={ limit={ @@ -200141,7 +206303,7 @@ return { [1]="minimum_frenzy_power_endurance_charges" } }, - [8824]={ + [9094]={ [1]={ [1]={ limit={ @@ -200157,7 +206319,7 @@ return { [1]="minimum_power_charges_at_devotion_threshold" } }, - [8825]={ + [9095]={ [1]={ [1]={ limit={ @@ -200173,7 +206335,7 @@ return { [1]="minimum_power_charges_while_on_low_life_+" } }, - [8826]={ + [9096]={ [1]={ [1]={ [1]={ @@ -200193,7 +206355,7 @@ return { [1]="minimum_rage" } }, - [8827]={ + [9097]={ [1]={ [1]={ [1]={ @@ -200218,7 +206380,7 @@ return { [2]="maximum_random_movement_velocity_+%_when_hit" } }, - [8828]={ + [9098]={ [1]={ [1]={ limit={ @@ -200234,7 +206396,7 @@ return { [1]="minion_accuracy_rating" } }, - [8829]={ + [9099]={ [1]={ [1]={ limit={ @@ -200250,7 +206412,7 @@ return { [1]="minion_accuracy_rating_per_10_devotion" } }, - [8830]={ + [9100]={ [1]={ [1]={ limit={ @@ -200279,7 +206441,7 @@ return { [1]="minion_accuracy_rating_+%" } }, - [8831]={ + [9101]={ [1]={ [1]={ [1]={ @@ -200299,7 +206461,7 @@ return { [1]="minion_additional_base_critical_strike_chance" } }, - [8832]={ + [9102]={ [1]={ [1]={ [1]={ @@ -200319,7 +206481,7 @@ return { [1]="minion_are_aggressive_if_have_blocked_recently" } }, - [8833]={ + [9103]={ [1]={ [1]={ [1]={ @@ -200356,7 +206518,7 @@ return { [1]="minion_area_of_effect_+%_if_you_have_cast_a_minion_skill_recently" } }, - [8834]={ + [9104]={ [1]={ [1]={ limit={ @@ -200385,7 +206547,7 @@ return { [1]="minion_attack_and_cast_speed_+%" } }, - [8835]={ + [9105]={ [1]={ [1]={ [1]={ @@ -200422,7 +206584,7 @@ return { [1]="minion_attack_and_cast_speed_+%_if_you_or_minions_have_killed_enemy_recently" } }, - [8836]={ + [9106]={ [1]={ [1]={ limit={ @@ -200451,7 +206613,7 @@ return { [1]="minion_attack_and_cast_speed_+%_per_10_devotion" } }, - [8837]={ + [9107]={ [1]={ [1]={ limit={ @@ -200480,7 +206642,7 @@ return { [1]="minion_attack_and_cast_speed_+%_while_you_are_affected_by_a_herald" } }, - [8838]={ + [9108]={ [1]={ [1]={ limit={ @@ -200509,7 +206671,7 @@ return { [1]="minion_attack_cooldown_recovery_+%" } }, - [8839]={ + [9109]={ [1]={ [1]={ limit={ @@ -200525,7 +206687,7 @@ return { [1]="minion_attack_hits_knockback_chance_%" } }, - [8840]={ + [9110]={ [1]={ [1]={ limit={ @@ -200554,7 +206716,7 @@ return { [1]="minion_attack_speed_+%_per_50_dex" } }, - [8841]={ + [9111]={ [1]={ [1]={ [1]={ @@ -200587,7 +206749,7 @@ return { [1]="minion_attacks_chance_to_blind_on_hit_%" } }, - [8842]={ + [9112]={ [1]={ [1]={ limit={ @@ -200603,7 +206765,7 @@ return { [1]="minion_base_fire_damage_%_to_convert_to_chaos" } }, - [8843]={ + [9113]={ [1]={ [1]={ limit={ @@ -200619,7 +206781,7 @@ return { [1]="minion_cannot_crit" } }, - [8844]={ + [9114]={ [1]={ [1]={ limit={ @@ -200635,7 +206797,7 @@ return { [1]="minion_chance_to_deal_double_damage_%" } }, - [8845]={ + [9115]={ [1]={ [1]={ limit={ @@ -200651,7 +206813,7 @@ return { [1]="minion_chance_to_deal_double_damage_while_on_full_life_%" } }, - [8846]={ + [9116]={ [1]={ [1]={ [1]={ @@ -200671,7 +206833,7 @@ return { [1]="minion_chance_to_freeze_%" } }, - [8847]={ + [9117]={ [1]={ [1]={ [1]={ @@ -200720,7 +206882,7 @@ return { [1]="minion_chance_to_freeze_shock_ignite_%" } }, - [8848]={ + [9118]={ [1]={ [1]={ limit={ @@ -200736,7 +206898,7 @@ return { [1]="minion_chance_to_gain_power_charge_on_hit_%" } }, - [8849]={ + [9119]={ [1]={ [1]={ limit={ @@ -200752,7 +206914,7 @@ return { [1]="minion_chance_to_ignite_%" } }, - [8850]={ + [9120]={ [1]={ [1]={ limit={ @@ -200768,7 +206930,7 @@ return { [1]="minion_chance_to_impale_on_attack_hit_%" } }, - [8851]={ + [9121]={ [1]={ [1]={ [1]={ @@ -200788,7 +206950,7 @@ return { [1]="minion_chance_to_shock_%" } }, - [8852]={ + [9122]={ [1]={ [1]={ limit={ @@ -200817,7 +206979,7 @@ return { [1]="minion_cooldown_recovery_+%" } }, - [8853]={ + [9123]={ [1]={ [1]={ limit={ @@ -200846,7 +207008,7 @@ return { [1]="minion_critical_strike_chance_+%" } }, - [8854]={ + [9124]={ [1]={ [1]={ limit={ @@ -200875,7 +207037,7 @@ return { [1]="minion_critical_strike_chance_+%_per_maximum_power_charge" } }, - [8855]={ + [9125]={ [1]={ [1]={ limit={ @@ -200891,36 +207053,60 @@ return { [1]="minion_critical_strike_multiplier_+" } }, - [8856]={ + [9126]={ [1]={ [1]={ + [1]={ + k="reminderstring", + v="ReminderTextLowLife" + }, limit={ [1]={ [1]=1, [2]="#" } }, - text="[DNT] {0}% increased Minion Damage per Fortification" + text="Minions deal {0}% more Damage while they are on Low Life" }, [2]={ [1]={ k="negate", v=1 }, + [2]={ + k="reminderstring", + v="ReminderTextLowLife" + }, limit={ [1]={ [1]="#", [2]=-1 } }, - text="[DNT] {0}% reduced Minion Damage per Fortification" + text="Minions deal {0}% less Damage while they are on Low Life" } }, stats={ - [1]="minion_damage_+%_per_fortification" + [1]="minion_damage_+%_final_while_on_low_life_from_catarina_bloodline" } }, - [8857]={ + [9127]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Minions deal {0}% increased Damage if you have Warcried Recently" + } + }, + stats={ + [1]="minion_damage_+%_if_warcried_recently" + } + }, + [9128]={ [1]={ [1]={ limit={ @@ -200949,7 +207135,7 @@ return { [1]="minion_damage_against_ignited_enemies_+%" } }, - [8858]={ + [9129]={ [1]={ [1]={ limit={ @@ -200965,7 +207151,7 @@ return { [1]="minion_damage_over_time_multiplier_+_per_minion_abyss_jewel_up_to_+30" } }, - [8859]={ + [9130]={ [1]={ [1]={ [1]={ @@ -201002,7 +207188,7 @@ return { [1]="minion_damage_+%_if_enemy_hit_recently" } }, - [8860]={ + [9131]={ [1]={ [1]={ limit={ @@ -201031,7 +207217,7 @@ return { [1]="minion_damage_+%_vs_abyssal_monsters" } }, - [8861]={ + [9132]={ [1]={ [1]={ limit={ @@ -201060,7 +207246,7 @@ return { [1]="minion_damage_+%_while_affected_by_a_herald" } }, - [8862]={ + [9133]={ [1]={ [1]={ limit={ @@ -201089,7 +207275,7 @@ return { [1]="minion_damage_taken_+%" } }, - [8863]={ + [9134]={ [1]={ [1]={ limit={ @@ -201105,7 +207291,7 @@ return { [1]="minion_deal_no_non_cold_damage" } }, - [8864]={ + [9135]={ [1]={ [1]={ limit={ @@ -201121,7 +207307,7 @@ return { [1]="minion_elemental_damage_%_to_add_as_chaos" } }, - [8865]={ + [9136]={ [1]={ [1]={ limit={ @@ -201137,7 +207323,7 @@ return { [1]="minion_elemental_resistance_30%" } }, - [8866]={ + [9137]={ [1]={ [1]={ limit={ @@ -201166,7 +207352,7 @@ return { [1]="minion_evasion_rating_+%" } }, - [8867]={ + [9138]={ [1]={ [1]={ [1]={ @@ -201186,7 +207372,7 @@ return { [1]="minion_fire_cloud_on_death_maximum_life_per_minute_to_deal_as_fire_damage_%" } }, - [8868]={ + [9139]={ [1]={ [1]={ limit={ @@ -201202,7 +207388,7 @@ return { [1]="minion_fire_damage_resistance_%" } }, - [8869]={ + [9140]={ [1]={ [1]={ limit={ @@ -201218,7 +207404,7 @@ return { [1]="minion_global_always_hit" } }, - [8870]={ + [9141]={ [1]={ [1]={ limit={ @@ -201243,7 +207429,7 @@ return { [1]="minion_grants_rampage_kill_to_parent_on_hitting_rare_or_unique_enemy_%" } }, - [8871]={ + [9142]={ [1]={ [1]={ [1]={ @@ -201263,7 +207449,7 @@ return { [1]="minion_has_unholy_might" } }, - [8872]={ + [9143]={ [1]={ [1]={ limit={ @@ -201288,7 +207474,7 @@ return { [1]="minion_hits_ignore_enemy_monster_physical_damage_reduction_%_chance" } }, - [8873]={ + [9144]={ [1]={ [1]={ [1]={ @@ -201308,7 +207494,7 @@ return { [1]="minion_life_increased_by_overcapped_fire_resistance" } }, - [8874]={ + [9145]={ [1]={ [1]={ [1]={ @@ -201332,7 +207518,7 @@ return { [1]="minion_life_leech_permyriad_vs_poisoned_enemies" } }, - [8875]={ + [9146]={ [1]={ [1]={ [1]={ @@ -201356,7 +207542,7 @@ return { [1]="minion_life_regeneration_rate_per_minute_%_if_blocked_recently" } }, - [8876]={ + [9147]={ [1]={ [1]={ limit={ @@ -201372,7 +207558,7 @@ return { [1]="minion_life_regeneration_rate_per_second" } }, - [8877]={ + [9148]={ [1]={ [1]={ [1]={ @@ -201405,7 +207591,7 @@ return { [1]="minion_maim_on_hit_%" } }, - [8878]={ + [9149]={ [1]={ [1]={ limit={ @@ -201421,7 +207607,7 @@ return { [1]="minion_malediction_on_hit" } }, - [8879]={ + [9150]={ [1]={ [1]={ [1]={ @@ -201441,7 +207627,7 @@ return { [1]="minion_maximum_all_elemental_resistances_%" } }, - [8880]={ + [9151]={ [1]={ [1]={ limit={ @@ -201457,7 +207643,7 @@ return { [1]="minion_maximum_life_%_to_add_as_maximum_energy_shield" } }, - [8881]={ + [9152]={ [1]={ [1]={ limit={ @@ -201486,7 +207672,7 @@ return { [1]="minion_melee_damage_+%" } }, - [8882]={ + [9153]={ [1]={ [1]={ limit={ @@ -201502,7 +207688,7 @@ return { [1]="minion_minimum_power_charges" } }, - [8883]={ + [9154]={ [1]={ [1]={ limit={ @@ -201531,7 +207717,7 @@ return { [1]="minion_movement_speed_+%_per_50_dex" } }, - [8884]={ + [9155]={ [1]={ [1]={ limit={ @@ -201560,7 +207746,7 @@ return { [1]="minion_movement_velocity_+%_for_each_herald_affecting_you" } }, - [8885]={ + [9156]={ [1]={ [1]={ limit={ @@ -201576,7 +207762,7 @@ return { [1]="minion_no_critical_strike_multiplier" } }, - [8886]={ + [9157]={ [1]={ [1]={ limit={ @@ -201601,7 +207787,7 @@ return { [1]="minion_%_chance_to_be_summoned_with_maximum_frenzy_charges" } }, - [8887]={ + [9158]={ [1]={ [1]={ limit={ @@ -201617,7 +207803,7 @@ return { [1]="minion_physical_damage_%_to_add_as_fire" } }, - [8888]={ + [9159]={ [1]={ [1]={ limit={ @@ -201646,7 +207832,7 @@ return { [1]="minion_projectile_speed_+%" } }, - [8889]={ + [9160]={ [1]={ [1]={ limit={ @@ -201675,7 +207861,7 @@ return { [1]="minion_raging_spirit_maximum_life_+%" } }, - [8890]={ + [9161]={ [1]={ [1]={ [1]={ @@ -201695,7 +207881,7 @@ return { [1]="minion_raging_spirit_%_of_maximum_life_taken_per_minute_as_chaos_damage" } }, - [8891]={ + [9162]={ [1]={ [1]={ limit={ @@ -201711,7 +207897,23 @@ return { [1]="minion_recover_%_maximum_life_on_minion_death" } }, - [8892]={ + [9163]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0:+d}% to Quality of all Minion Skill Gems" + } + }, + stats={ + [1]="minion_skill_gem_quality_+" + } + }, + [9164]={ [1]={ [1]={ limit={ @@ -201740,7 +207942,7 @@ return { [1]="minion_skill_mana_cost_+%" } }, - [8893]={ + [9165]={ [1]={ [1]={ limit={ @@ -201769,7 +207971,7 @@ return { [1]="minion_spell_cooldown_recovery_+%" } }, - [8894]={ + [9166]={ [1]={ [1]={ [1]={ @@ -201789,7 +207991,7 @@ return { [1]="minion_spell_suppression_chance_%" } }, - [8895]={ + [9167]={ [1]={ [1]={ [1]={ @@ -201822,7 +208024,7 @@ return { [1]="minion_spells_chance_to_hinder_on_hit_%" } }, - [8896]={ + [9168]={ [1]={ [1]={ limit={ @@ -201851,7 +208053,7 @@ return { [1]="minion_stun_threshold_reduction_+%" } }, - [8897]={ + [9169]={ [1]={ [1]={ limit={ @@ -201880,7 +208082,7 @@ return { [1]="minion_summoned_recently_attack_and_cast_speed_+%" } }, - [8898]={ + [9170]={ [1]={ [1]={ [1]={ @@ -201900,7 +208102,7 @@ return { [1]="minion_summoned_recently_cannot_be_damaged" } }, - [8899]={ + [9171]={ [1]={ [1]={ limit={ @@ -201929,7 +208131,7 @@ return { [1]="minion_summoned_recently_critical_strike_chance_+%" } }, - [8900]={ + [9172]={ [1]={ [1]={ limit={ @@ -201958,7 +208160,7 @@ return { [1]="minion_summoned_recently_movement_speed_+%" } }, - [8901]={ + [9173]={ [1]={ [1]={ limit={ @@ -201974,7 +208176,7 @@ return { [1]="minions_accuracy_is_equal_to_yours" } }, - [8902]={ + [9174]={ [1]={ [1]={ limit={ @@ -201990,7 +208192,7 @@ return { [1]="minions_affected_by_affliction_have_onslaught" } }, - [8903]={ + [9175]={ [1]={ [1]={ [1]={ @@ -202010,7 +208212,7 @@ return { [1]="minions_attacks_overwhelm_%_physical_damage_reduction" } }, - [8904]={ + [9176]={ [1]={ [1]={ limit={ @@ -202026,7 +208228,7 @@ return { [1]="minions_cannot_attack" } }, - [8905]={ + [9177]={ [1]={ [1]={ [1]={ @@ -202059,7 +208261,32 @@ return { [1]="minions_cannot_be_damaged_after_summoned_ms" } }, - [8906]={ + [9178]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Minions cannot be Killed, but die {0} second after being reduced to 1 Life" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Minions cannot be Killed, but die {0} seconds after being reduced to 1 Life" + } + }, + stats={ + [1]="minions_cannot_be_killed_but_die_x_seconds_after_reaching_1_life" + } + }, + [9179]={ [1]={ [1]={ limit={ @@ -202075,7 +208302,7 @@ return { [1]="minions_cannot_cast_spells" } }, - [8907]={ + [9180]={ [1]={ [1]={ limit={ @@ -202091,7 +208318,7 @@ return { [1]="minions_cannot_taunt_enemies" } }, - [8908]={ + [9181]={ [1]={ [1]={ [1]={ @@ -202124,7 +208351,7 @@ return { [1]="minions_chance_to_intimidate_on_hit_%" } }, - [8909]={ + [9182]={ [1]={ [1]={ limit={ @@ -202140,7 +208367,7 @@ return { [1]="minions_deal_%_of_physical_damage_as_additional_chaos_damage" } }, - [8910]={ + [9183]={ [1]={ [1]={ limit={ @@ -202156,7 +208383,23 @@ return { [1]="minions_gain_half_your_strength_from_ascendancy" } }, - [8911]={ + [9184]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Minions gain added Resistances equal to {0}% of your Resistances" + } + }, + stats={ + [1]="minions_gain_x_percent_of_your_resistances" + } + }, + [9185]={ [1]={ [1]={ limit={ @@ -202172,7 +208415,7 @@ return { [1]="minions_gain_your_spell_suppression_chance" } }, - [8912]={ + [9186]={ [1]={ [1]={ limit={ @@ -202188,7 +208431,7 @@ return { [1]="minions_gain_your_strength" } }, - [8913]={ + [9187]={ [1]={ [1]={ [1]={ @@ -202212,7 +208455,7 @@ return { [1]="minions_go_crazy_on_crit_ms" } }, - [8914]={ + [9188]={ [1]={ [1]={ limit={ @@ -202228,7 +208471,7 @@ return { [1]="minions_have_no_armour_or_energy_shield" } }, - [8915]={ + [9189]={ [1]={ [1]={ [1]={ @@ -202248,7 +208491,7 @@ return { [1]="minions_have_%_chance_to_inflict_wither_on_hit" } }, - [8916]={ + [9190]={ [1]={ [1]={ limit={ @@ -202264,7 +208507,7 @@ return { [1]="minions_have_+%_critical_strike_multiplier_per_wither_on_enemies" } }, - [8917]={ + [9191]={ [1]={ [1]={ limit={ @@ -202280,7 +208523,7 @@ return { [1]="minions_have_same_maximum_num_of_charges_as_owner" } }, - [8918]={ + [9192]={ [1]={ [1]={ limit={ @@ -202296,7 +208539,7 @@ return { [1]="minions_have_same_num_of_charges_as_owner" } }, - [8919]={ + [9193]={ [1]={ [1]={ limit={ @@ -202312,7 +208555,7 @@ return { [1]="minions_hits_can_only_kill_ignited_enemies" } }, - [8920]={ + [9194]={ [1]={ [1]={ limit={ @@ -202328,7 +208571,7 @@ return { [1]="minions_penetrate_elemental_resistances_%_vs_cursed_enemies" } }, - [8921]={ + [9195]={ [1]={ [1]={ limit={ @@ -202344,7 +208587,7 @@ return { [1]="minions_recover_%_maximum_life_on_killing_poisoned_enemy" } }, - [8922]={ + [9196]={ [1]={ [1]={ limit={ @@ -202360,7 +208603,7 @@ return { [1]="minions_recover_%_maximum_life_when_you_focus" } }, - [8923]={ + [9197]={ [1]={ [1]={ limit={ @@ -202389,7 +208632,7 @@ return { [1]="minions_reflected_damage_taken_+%" } }, - [8924]={ + [9198]={ [1]={ [1]={ limit={ @@ -202405,7 +208648,7 @@ return { [1]="minions_take_%_of_life_as_chaos_damage_when_summoned_over_1_second" } }, - [8925]={ + [9199]={ [1]={ [1]={ limit={ @@ -202421,7 +208664,7 @@ return { [1]="minions_use_your_main_hand_base_crit_chance_from_weapon" } }, - [8926]={ + [9200]={ [1]={ [1]={ limit={ @@ -202450,7 +208693,7 @@ return { [1]="mirage_archer_duration_+%" } }, - [8927]={ + [9201]={ [1]={ [1]={ limit={ @@ -202466,7 +208709,7 @@ return { [1]="missing_unreserved_life_%_gained_as_life_before_hit_per_defiance" } }, - [8928]={ + [9202]={ [1]={ [1]={ limit={ @@ -202482,7 +208725,7 @@ return { [1]="missing_unreserved_life_%_gained_as_life_before_hit" } }, - [8929]={ + [9203]={ [1]={ [1]={ [1]={ @@ -202502,7 +208745,7 @@ return { [1]="mod_granted_passive_hash" } }, - [8930]={ + [9204]={ [1]={ [1]={ [1]={ @@ -202522,7 +208765,7 @@ return { [1]="mod_granted_passive_hash_2" } }, - [8931]={ + [9205]={ [1]={ [1]={ [1]={ @@ -202542,7 +208785,7 @@ return { [1]="mod_granted_passive_hash_3" } }, - [8932]={ + [9206]={ [1]={ [1]={ [1]={ @@ -202562,7 +208805,7 @@ return { [1]="mod_granted_passive_hash_4" } }, - [8933]={ + [9207]={ [1]={ [1]={ limit={ @@ -202578,7 +208821,7 @@ return { [1]="modifiers_to_fire_resistance_also_apply_to_cold_lightning_resistance_at_%_value" } }, - [8934]={ + [9208]={ [1]={ [1]={ limit={ @@ -202594,7 +208837,7 @@ return { [1]="modifiers_to_maximum_fire_resistance_apply_to_maximum_cold_and_lightning_resistance" } }, - [8935]={ + [9209]={ [1]={ [1]={ limit={ @@ -202610,7 +208853,7 @@ return { [1]="modifiers_to_number_of_projectiles_instead_apply_to_splitting" } }, - [8936]={ + [9210]={ [1]={ [1]={ limit={ @@ -202639,7 +208882,7 @@ return { [1]="molten_shell_duration_+%" } }, - [8937]={ + [9211]={ [1]={ [1]={ limit={ @@ -202655,7 +208898,7 @@ return { [1]="molten_shell_explosion_damage_penetrates_%_fire_resistance" } }, - [8938]={ + [9212]={ [1]={ [1]={ limit={ @@ -202671,7 +208914,7 @@ return { [1]="molten_strike_projectiles_chain_when_impacting_ground" } }, - [8939]={ + [9213]={ [1]={ [1]={ limit={ @@ -202696,7 +208939,7 @@ return { [1]="molten_strike_chain_count_+" } }, - [8940]={ + [9214]={ [1]={ [1]={ limit={ @@ -202712,7 +208955,7 @@ return { [1]="monster_converts_on_death" } }, - [8941]={ + [9215]={ [1]={ [1]={ limit={ @@ -202741,7 +208984,7 @@ return { [1]="monster_damage_+%_final_per_alive_packmate" } }, - [8942]={ + [9216]={ [1]={ [1]={ limit={ @@ -202770,7 +209013,7 @@ return { [1]="monster_dropped_item_quantity_+%" } }, - [8943]={ + [9217]={ [1]={ [1]={ limit={ @@ -202799,7 +209042,7 @@ return { [1]="monster_dropped_item_rarity_+%" } }, - [8944]={ + [9218]={ [1]={ [1]={ limit={ @@ -202815,7 +209058,7 @@ return { [1]="monster_grants_no_flask_charges" } }, - [8945]={ + [9219]={ [1]={ [1]={ limit={ @@ -202840,7 +209083,7 @@ return { [1]="primordial_altar_burning_ground_on_death_%" } }, - [8946]={ + [9220]={ [1]={ [1]={ limit={ @@ -202865,7 +209108,7 @@ return { [1]="primordial_altar_chilled_ground_on_death_%" } }, - [8947]={ + [9221]={ [1]={ [1]={ limit={ @@ -202890,7 +209133,7 @@ return { [1]="monster_remove_x_flask_charges_from_all_flasks" } }, - [8948]={ + [9222]={ [1]={ [1]={ limit={ @@ -202919,7 +209162,7 @@ return { [1]="monster_slain_experience_+%" } }, - [8949]={ + [9223]={ [1]={ [1]={ limit={ @@ -202948,7 +209191,7 @@ return { [1]="mortar_barrage_mine_damage_+%" } }, - [8950]={ + [9224]={ [1]={ [1]={ limit={ @@ -202973,7 +209216,7 @@ return { [1]="mortar_barrage_mine_num_projectiles" } }, - [8951]={ + [9225]={ [1]={ [1]={ [1]={ @@ -203010,7 +209253,7 @@ return { [1]="mortar_barrage_mine_throwing_speed_halved_+%" } }, - [8952]={ + [9226]={ [1]={ [1]={ limit={ @@ -203039,7 +209282,7 @@ return { [1]="mortar_barrage_mine_throwing_speed_+%" } }, - [8953]={ + [9227]={ [1]={ [1]={ limit={ @@ -203068,7 +209311,7 @@ return { [1]="movement_attack_skills_attack_speed_+%" } }, - [8954]={ + [9228]={ [1]={ [1]={ limit={ @@ -203097,7 +209340,7 @@ return { [1]="movement_skills_cooldown_speed_+%" } }, - [8955]={ + [9229]={ [1]={ [1]={ limit={ @@ -203126,7 +209369,7 @@ return { [1]="movement_skills_cooldown_speed_+%_while_affected_by_haste" } }, - [8956]={ + [9230]={ [1]={ [1]={ limit={ @@ -203142,7 +209385,7 @@ return { [1]="movement_skills_deal_no_physical_damage" } }, - [8957]={ + [9231]={ [1]={ [1]={ limit={ @@ -203171,7 +209414,7 @@ return { [1]="movement_speed_+%_if_below_100_dexterity" } }, - [8958]={ + [9232]={ [1]={ [1]={ [1]={ @@ -203208,7 +209451,7 @@ return { [1]="movement_speed_+%_if_placed_trap_or_mine_recently" } }, - [8959]={ + [9233]={ [1]={ [1]={ limit={ @@ -203224,7 +209467,36 @@ return { [1]="movement_speed_+%_per_nearby_corpse" } }, - [8960]={ + [9234]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Movement Speed per Summoned Phantasm" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Movement Speed per Summoned Phantasm" + } + }, + stats={ + [1]="movement_speed_+%_per_summoned_phantasm" + } + }, + [9235]={ [1]={ [1]={ limit={ @@ -203253,7 +209525,7 @@ return { [1]="movement_speed_+%_while_you_have_two_linked_targets" } }, - [8961]={ + [9236]={ [1]={ [1]={ limit={ @@ -203269,7 +209541,7 @@ return { [1]="movement_speed_is_equal_to_highest_linked_party_member" } }, - [8962]={ + [9237]={ [1]={ [1]={ limit={ @@ -203285,7 +209557,7 @@ return { [1]="movement_speed_is_%_of_base" } }, - [8963]={ + [9238]={ [1]={ [1]={ [1]={ @@ -203322,7 +209594,7 @@ return { [1]="movement_speed_+%_if_cast_a_mark_spell_recently" } }, - [8964]={ + [9239]={ [1]={ [1]={ [1]={ @@ -203359,7 +209631,7 @@ return { [1]="movement_speed_+%_if_crit_recently" } }, - [8965]={ + [9240]={ [1]={ [1]={ [1]={ @@ -203396,7 +209668,7 @@ return { [1]="movement_speed_+%_if_enemy_hit_recently" } }, - [8966]={ + [9241]={ [1]={ [1]={ [1]={ @@ -203433,7 +209705,7 @@ return { [1]="movement_speed_+%_if_enemy_hit_with_off_hand_weapon_recently" } }, - [8967]={ + [9242]={ [1]={ [1]={ [1]={ @@ -203470,7 +209742,7 @@ return { [1]="movement_speed_+%_if_have_cast_dash_recently" } }, - [8968]={ + [9243]={ [1]={ [1]={ [1]={ @@ -203507,7 +209779,7 @@ return { [1]="movement_speed_+%_if_have_not_taken_damage_recently" } }, - [8969]={ + [9244]={ [1]={ [1]={ [1]={ @@ -203544,7 +209816,7 @@ return { [1]="movement_speed_+%_if_have_used_a_vaal_skill_recently" } }, - [8970]={ + [9245]={ [1]={ [1]={ limit={ @@ -203560,7 +209832,7 @@ return { [1]="movement_speed_+%_per_5_rage" } }, - [8971]={ + [9246]={ [1]={ [1]={ [1]={ @@ -203597,7 +209869,7 @@ return { [1]="movement_speed_+%_per_chest_opened_recently" } }, - [8972]={ + [9247]={ [1]={ [1]={ limit={ @@ -203626,7 +209898,7 @@ return { [1]="movement_speed_+%_per_endurance_charge" } }, - [8973]={ + [9248]={ [1]={ [1]={ limit={ @@ -203642,7 +209914,7 @@ return { [1]="movement_speed_+%_per_nearby_enemy" } }, - [8974]={ + [9249]={ [1]={ [1]={ limit={ @@ -203671,7 +209943,7 @@ return { [1]="movement_speed_+%_per_poison_up_to_50%" } }, - [8975]={ + [9250]={ [1]={ [1]={ limit={ @@ -203700,7 +209972,7 @@ return { [1]="movement_speed_+%_per_power_charge" } }, - [8976]={ + [9251]={ [1]={ [1]={ limit={ @@ -203729,7 +210001,7 @@ return { [1]="movement_speed_+%_while_affected_by_grace" } }, - [8977]={ + [9252]={ [1]={ [1]={ limit={ @@ -203758,7 +210030,7 @@ return { [1]="movement_speed_+%_while_bleeding" } }, - [8978]={ + [9253]={ [1]={ [1]={ limit={ @@ -203787,7 +210059,7 @@ return { [1]="movement_speed_+%_while_dual_wielding" } }, - [8979]={ + [9254]={ [1]={ [1]={ limit={ @@ -203816,7 +210088,7 @@ return { [1]="movement_speed_+%_while_holding_shield" } }, - [8980]={ + [9255]={ [1]={ [1]={ limit={ @@ -203845,7 +210117,7 @@ return { [1]="movement_speed_+%_while_not_using_flask" } }, - [8981]={ + [9256]={ [1]={ [1]={ limit={ @@ -203874,7 +210146,7 @@ return { [1]="movement_speed_+%_while_on_burning_chilled_shocked_ground" } }, - [8982]={ + [9257]={ [1]={ [1]={ limit={ @@ -203903,7 +210175,7 @@ return { [1]="movement_speed_+%_while_on_burning_ground" } }, - [8983]={ + [9258]={ [1]={ [1]={ limit={ @@ -203932,7 +210204,7 @@ return { [1]="movement_speed_+%_while_poisoned" } }, - [8984]={ + [9259]={ [1]={ [1]={ limit={ @@ -203961,7 +210233,7 @@ return { [1]="movement_speed_+%_while_you_have_cats_stealth" } }, - [8985]={ + [9260]={ [1]={ [1]={ limit={ @@ -203990,7 +210262,7 @@ return { [1]="movement_speed_+%_while_you_have_energy_shield" } }, - [8986]={ + [9261]={ [1]={ [1]={ limit={ @@ -204019,7 +210291,7 @@ return { [1]="movement_speed_+%_while_you_have_infusion" } }, - [8987]={ + [9262]={ [1]={ [1]={ limit={ @@ -204048,7 +210320,7 @@ return { [1]="movement_velocity_+%_per_poison_stack" } }, - [8988]={ + [9263]={ [1]={ [1]={ limit={ @@ -204077,7 +210349,7 @@ return { [1]="movement_velocity_+%_while_no_gems_in_boots" } }, - [8989]={ + [9264]={ [1]={ [1]={ limit={ @@ -204106,7 +210378,7 @@ return { [1]="movement_velocity_+%_with_magic_abyss_jewel_socketed" } }, - [8990]={ + [9265]={ [1]={ [1]={ limit={ @@ -204135,7 +210407,7 @@ return { [1]="movement_velocity_+%_per_totem" } }, - [8991]={ + [9266]={ [1]={ [1]={ limit={ @@ -204164,7 +210436,7 @@ return { [1]="movement_velocity_+%_while_at_maximum_power_charges" } }, - [8992]={ + [9267]={ [1]={ [1]={ limit={ @@ -204193,7 +210465,7 @@ return { [1]="movement_velocity_+%_while_chilled" } }, - [8993]={ + [9268]={ [1]={ [1]={ [1]={ @@ -204213,7 +210485,7 @@ return { [1]="nearby_allies_have_onslaught" } }, - [8994]={ + [9269]={ [1]={ [1]={ limit={ @@ -204229,7 +210501,7 @@ return { [1]="nearby_corpses_explode_dealing_%_maximum_life_physical_damage_on_warcry" } }, - [8995]={ + [9270]={ [1]={ [1]={ limit={ @@ -204267,7 +210539,7 @@ return { [1]="nearby_enemies_all_exposure_%_while_phasing" } }, - [8996]={ + [9271]={ [1]={ [1]={ [1]={ @@ -204287,7 +210559,7 @@ return { [1]="nearby_enemies_are_blinded_while_you_have_active_physical_aegis" } }, - [8997]={ + [9272]={ [1]={ [1]={ [1]={ @@ -204307,7 +210579,7 @@ return { [1]="nearby_enemies_are_chilled" } }, - [8998]={ + [9273]={ [1]={ [1]={ [1]={ @@ -204331,7 +210603,7 @@ return { [1]="nearby_enemies_are_chilled_and_shocked_while_you_are_near_a_corpse" } }, - [8999]={ + [9274]={ [1]={ [1]={ [1]={ @@ -204351,7 +210623,7 @@ return { [1]="nearby_enemies_are_crushed_while_you_have_X_rage" } }, - [9000]={ + [9275]={ [1]={ [1]={ [1]={ @@ -204371,7 +210643,27 @@ return { [1]="nearby_enemies_are_intimidated_while_you_have_rage" } }, - [9001]={ + [9276]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextUnnerve" + }, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Nearby Enemies are Unnerved" + } + }, + stats={ + [1]="nearby_enemies_are_unnerved" + } + }, + [9277]={ [1]={ [1]={ [1]={ @@ -204391,7 +210683,7 @@ return { [1]="close_range_enemies_avoid_your_projectiles" } }, - [9002]={ + [9278]={ [1]={ [1]={ limit={ @@ -204407,7 +210699,7 @@ return { [1]="nearby_enemies_fire_dot_resistance_is_%_while_you_are_stationary" } }, - [9003]={ + [9279]={ [1]={ [1]={ [1]={ @@ -204427,7 +210719,7 @@ return { [1]="nearby_enemies_have_cold_exposure_while_you_are_affected_by_herald_of_ice" } }, - [9004]={ + [9280]={ [1]={ [1]={ [1]={ @@ -204447,7 +210739,27 @@ return { [1]="nearby_enemies_have_fire_exposure_while_you_are_affected_by_herald_of_ash" } }, - [9005]={ + [9281]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextFireExposure" + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Nearby Enemies have Fire Exposure while at maximum Rage" + } + }, + stats={ + [1]="nearby_enemies_have_fire_exposure_while_you_are_at_maximum_rage" + } + }, + [9282]={ [1]={ [1]={ [1]={ @@ -204467,7 +210779,7 @@ return { [1]="nearby_enemies_have_lightning_exposure_while_you_are_affected_by_herald_of_thunder" } }, - [9006]={ + [9283]={ [1]={ [1]={ limit={ @@ -204483,7 +210795,7 @@ return { [1]="nearby_enemies_lightning_resist_equal_to_yours" } }, - [9007]={ + [9284]={ [1]={ [1]={ limit={ @@ -204499,7 +210811,7 @@ return { [1]="nearby_enemies_no_fire_dot_resistance_while_you_are_stationary" } }, - [9008]={ + [9285]={ [1]={ [1]={ [1]={ @@ -204519,7 +210831,7 @@ return { [1]="nearby_enemies_physical_damage_taken_+%_per_2fortification_on_you" } }, - [9009]={ + [9286]={ [1]={ [1]={ limit={ @@ -204535,7 +210847,7 @@ return { [1]="nearby_non_player_allies_are_%_shocked_and_grant_you_charges_on_death" } }, - [9010]={ + [9287]={ [1]={ [1]={ limit={ @@ -204551,7 +210863,7 @@ return { [1]="nearby_party_members_max_endurance_charges_is_equal_to_yours" } }, - [9011]={ + [9288]={ [1]={ [1]={ limit={ @@ -204580,7 +210892,7 @@ return { [1]="necromancer_damage_+%_final_for_you_and_allies_with_nearby_corpse" } }, - [9012]={ + [9289]={ [1]={ [1]={ limit={ @@ -204609,7 +210921,7 @@ return { [1]="necromancer_damage_+%_for_nearby_enemies_with_nearby_corpse" } }, - [9013]={ + [9290]={ [1]={ [1]={ limit={ @@ -204638,7 +210950,7 @@ return { [1]="necromancer_defensive_notable_minion_maximum_life_+%_final" } }, - [9014]={ + [9291]={ [1]={ [1]={ [1]={ @@ -204658,7 +210970,7 @@ return { [1]="necromancer_energy_shield_regeneration_rate_per_minute_%_for_you_and_allies_per_nearby_corpse" } }, - [9015]={ + [9292]={ [1]={ [1]={ [1]={ @@ -204678,7 +210990,7 @@ return { [1]="necromancer_mana_regeneration_rate_per_minute_for_you_and_allies_per_nearby_corpse" } }, - [9016]={ + [9293]={ [1]={ [1]={ limit={ @@ -204707,7 +211019,7 @@ return { [1]="necromancer_minion_damage_+%_final" } }, - [9017]={ + [9294]={ [1]={ [1]={ limit={ @@ -204723,7 +211035,7 @@ return { [1]="necropolis_corrupting_tempest_on_pack_death" } }, - [9018]={ + [9295]={ [1]={ [1]={ limit={ @@ -204739,7 +211051,7 @@ return { [1]="necropolis_meteor_shower_on_pack_death" } }, - [9019]={ + [9296]={ [1]={ [1]={ limit={ @@ -204755,7 +211067,7 @@ return { [1]="necropolis_pack_monster_level_+" } }, - [9020]={ + [9297]={ [1]={ [1]={ limit={ @@ -204771,7 +211083,7 @@ return { [1]="necropolis_strongbox_on_pack_death" } }, - [9021]={ + [9298]={ [1]={ [1]={ limit={ @@ -204787,7 +211099,7 @@ return { [1]="necropolis_tormented_spirit_on_pack_death" } }, - [9022]={ + [9299]={ [1]={ [1]={ limit={ @@ -204803,7 +211115,7 @@ return { [1]="necrotic_footprints_from_item" } }, - [9023]={ + [9300]={ [1]={ [1]={ limit={ @@ -204819,7 +211131,7 @@ return { [1]="never_ignite_chill_freeze_shock" } }, - [9024]={ + [9301]={ [1]={ [1]={ limit={ @@ -204835,7 +211147,7 @@ return { [1]="nightblade_elusive_grants_critical_strike_multiplier_+_to_supported_skills" } }, - [9025]={ + [9302]={ [1]={ [1]={ limit={ @@ -204851,7 +211163,7 @@ return { [1]="no_barrage_projectile_spread" } }, - [9026]={ + [9303]={ [1]={ [1]={ limit={ @@ -204867,7 +211179,7 @@ return { [1]="no_evasion_rating" } }, - [9027]={ + [9304]={ [1]={ [1]={ limit={ @@ -204883,7 +211195,7 @@ return { [1]="no_experience_gain" } }, - [9028]={ + [9305]={ [1]={ [1]={ limit={ @@ -204899,7 +211211,7 @@ return { [1]="no_extra_bleed_damage_while_target_is_moving" } }, - [9029]={ + [9306]={ [1]={ [1]={ limit={ @@ -204915,7 +211227,7 @@ return { [1]="no_inherent_chance_to_block_while_dual_wielding" } }, - [9030]={ + [9307]={ [1]={ [1]={ limit={ @@ -204931,7 +211243,7 @@ return { [1]="non_aura_hexes_gain_20%_effect_per_second" } }, - [9031]={ + [9308]={ [1]={ [1]={ limit={ @@ -204960,7 +211272,7 @@ return { [1]="non_aura_vaal_skills_soul_requirement_+%" } }, - [9032]={ + [9309]={ [1]={ [1]={ limit={ @@ -204976,7 +211288,7 @@ return { [1]="non_chaos_damage_%_to_add_as_chaos_damage_per_void_spawn" } }, - [9033]={ + [9310]={ [1]={ [1]={ limit={ @@ -204992,7 +211304,7 @@ return { [1]="non_chaos_damage_to_add_as_chaos_damage_%" } }, - [9034]={ + [9311]={ [1]={ [1]={ [1]={ @@ -205012,7 +211324,7 @@ return { [1]="non_chilled_enemies_you_bleed_are_chilled" } }, - [9035]={ + [9312]={ [1]={ [1]={ [1]={ @@ -205032,7 +211344,7 @@ return { [1]="non_chilled_enemies_you_poison_are_chilled" } }, - [9036]={ + [9313]={ [1]={ [1]={ limit={ @@ -205048,7 +211360,7 @@ return { [1]="non_critical_strikes_deal_no_damage" } }, - [9037]={ + [9314]={ [1]={ [1]={ limit={ @@ -205077,7 +211389,7 @@ return { [1]="non_curse_aura_effect_+%_per_10_devotion" } }, - [9038]={ + [9315]={ [1]={ [1]={ limit={ @@ -205106,7 +211418,7 @@ return { [1]="non_curse_aura_effect_+%_while_linked" } }, - [9039]={ + [9316]={ [1]={ [1]={ limit={ @@ -205122,7 +211434,7 @@ return { [1]="non_curse_auras_only_apply_to_you_and_linked_targets" } }, - [9040]={ + [9317]={ [1]={ [1]={ [1]={ @@ -205142,7 +211454,81 @@ return { [1]="non_cursed_enemies_you_curse_are_blinded_for_4_seconds" } }, - [9041]={ + [9318]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextNonDamagingAilments" + }, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Effect of Non-Damaging Ailments for each Blue Skill Gem you have socketed" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + [2]={ + k="reminderstring", + v="ReminderTextNonDamagingAilments" + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Effect of Non-Damaging Ailments for each Blue Skill Gem you have socketed" + } + }, + stats={ + [1]="non_damaging_ailment_effect_+%_per_blue_skill_gem" + } + }, + [9319]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextNonDamagingAilments" + }, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Effect of Non-Damaging Ailments you inflict with Critical Strikes per 100 Player Maximum Life" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + [2]={ + k="reminderstring", + v="ReminderTextNonDamagingAilments" + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Effect of Non-Damaging Ailments you inflict with Critical Strikes per 100 Player Maximum Life" + } + }, + stats={ + [1]="non_damaging_ailment_effect_+%_with_critical_strikes_per_100_max_player_life" + } + }, + [9320]={ [1]={ [1]={ [1]={ @@ -205179,7 +211565,7 @@ return { [1]="non_damaging_ailment_effect_+%" } }, - [9042]={ + [9321]={ [1]={ [1]={ [1]={ @@ -205216,7 +211602,7 @@ return { [1]="non_damaging_ailment_effect_+%_on_self" } }, - [9043]={ + [9322]={ [1]={ [1]={ limit={ @@ -205245,7 +211631,7 @@ return { [1]="non_damaging_ailment_effect_+%_on_self_while_under_effect_of_life_or_mana_flask" } }, - [9044]={ + [9323]={ [1]={ [1]={ [1]={ @@ -205282,7 +211668,7 @@ return { [1]="non_damaging_ailment_effect_+%_per_10_devotion" } }, - [9045]={ + [9324]={ [1]={ [1]={ [1]={ @@ -205319,7 +211705,7 @@ return { [1]="non_damaging_ailment_effect_+%_with_critical_strikes" } }, - [9046]={ + [9325]={ [1]={ [1]={ [1]={ @@ -205356,7 +211742,7 @@ return { [1]="non_damaging_ailments_as_though_damage_+%_final" } }, - [9047]={ + [9326]={ [1]={ [1]={ limit={ @@ -205372,7 +211758,7 @@ return { [1]="non_damaging_ailments_reflected_to_self" } }, - [9048]={ + [9327]={ [1]={ [1]={ [1]={ @@ -205413,7 +211799,7 @@ return { [1]="ascendancy_non_damaging_elemental_ailment_proliferation_radius" } }, - [9049]={ + [9328]={ [1]={ [1]={ limit={ @@ -205429,7 +211815,7 @@ return { [1]="non_exceptional_support_gem_level_+" } }, - [9050]={ + [9329]={ [1]={ [1]={ limit={ @@ -205445,7 +211831,7 @@ return { [1]="non_exerted_attacks_deal_no_damage" } }, - [9051]={ + [9330]={ [1]={ [1]={ limit={ @@ -205461,7 +211847,7 @@ return { [1]="non_instant_warcries_have_no_cooldown" } }, - [9052]={ + [9331]={ [1]={ [1]={ limit={ @@ -205490,7 +211876,7 @@ return { [1]="non_piercing_projectiles_critical_strike_chance_+%" } }, - [9053]={ + [9332]={ [1]={ [1]={ limit={ @@ -205506,7 +211892,7 @@ return { [1]="non_projectile_chaining_lightning_skill_additional_chains" } }, - [9054]={ + [9333]={ [1]={ [1]={ limit={ @@ -205531,7 +211917,7 @@ return { [1]="non_travel_attack_skill_repeat_count" } }, - [9055]={ + [9334]={ [1]={ [1]={ limit={ @@ -205560,7 +211946,7 @@ return { [1]="normal_monster_dropped_item_quantity_+%" } }, - [9056]={ + [9335]={ [1]={ [1]={ limit={ @@ -205576,7 +211962,7 @@ return { [1]="nova_spells_cast_at_marked_target" } }, - [9057]={ + [9336]={ [1]={ [1]={ limit={ @@ -205592,7 +211978,7 @@ return { [1]="nova_spells_cast_at_target_location" } }, - [9058]={ + [9337]={ [1]={ [1]={ limit={ @@ -205617,7 +212003,7 @@ return { [1]="number_of_additional_arrows_while_main_hand_accuracy_is_3000_or_more" } }, - [9059]={ + [9338]={ [1]={ [1]={ [1]={ @@ -205637,7 +212023,7 @@ return { [1]="number_of_additional_chains_for_projectiles_while_phasing" } }, - [9060]={ + [9339]={ [1]={ [1]={ limit={ @@ -205662,7 +212048,7 @@ return { [1]="number_of_additional_curses_allowed_while_affected_by_malevolence" } }, - [9061]={ + [9340]={ [1]={ [1]={ limit={ @@ -205687,7 +212073,7 @@ return { [1]="number_of_additional_curses_allowed_while_at_maximum_power_charges" } }, - [9062]={ + [9341]={ [1]={ [1]={ limit={ @@ -205712,7 +212098,7 @@ return { [1]="number_of_additional_ignites_allowed" } }, - [9063]={ + [9342]={ [1]={ [1]={ [1]={ @@ -205745,7 +212131,7 @@ return { [1]="number_of_additional_mines_to_place_with_at_least_500_dex" } }, - [9064]={ + [9343]={ [1]={ [1]={ [1]={ @@ -205778,7 +212164,7 @@ return { [1]="number_of_additional_mines_to_place_with_at_least_500_int" } }, - [9065]={ + [9344]={ [1]={ [1]={ [1]={ @@ -205811,7 +212197,7 @@ return { [1]="number_of_additional_projectiles_if_you_have_been_hit_recently" } }, - [9066]={ + [9345]={ [1]={ [1]={ [1]={ @@ -205844,7 +212230,7 @@ return { [1]="number_of_additional_projectiles_if_you_have_used_movement_skill_recently" } }, - [9067]={ + [9346]={ [1]={ [1]={ limit={ @@ -205869,7 +212255,7 @@ return { [1]="number_of_additional_traps_to_throw" } }, - [9068]={ + [9347]={ [1]={ [1]={ limit={ @@ -205890,7 +212276,7 @@ return { [2]="quality_display_firewall_is_gem" } }, - [9069]={ + [9348]={ [1]={ [1]={ limit={ @@ -205911,7 +212297,7 @@ return { [2]="quality_display_animate_weapon_is_gem" } }, - [9070]={ + [9349]={ [1]={ [1]={ limit={ @@ -205927,7 +212313,7 @@ return { [1]="base_number_of_arbalists" } }, - [9071]={ + [9350]={ [1]={ [1]={ limit={ @@ -205952,7 +212338,23 @@ return { [1]="number_of_endurance_charges_to_gain_every_4_seconds_while_stationary" } }, - [9072]={ + [9351]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Maximum {0} Spectral Totems" + } + }, + stats={ + [1]="number_of_ghost_totems_allowed" + } + }, + [9352]={ [1]={ [1]={ limit={ @@ -205968,7 +212370,7 @@ return { [1]="number_of_golems_allowed_with_3_primordial_jewels" } }, - [9073]={ + [9353]={ [1]={ [1]={ limit={ @@ -205993,7 +212395,7 @@ return { [1]="number_of_projectiles_+%_final_from_skill" } }, - [9074]={ + [9354]={ [1]={ [1]={ limit={ @@ -206009,7 +212411,7 @@ return { [1]="number_of_raging_spirits_is_limited_to_3" } }, - [9075]={ + [9355]={ [1]={ [1]={ [1]={ @@ -206029,7 +212431,7 @@ return { [1]="number_of_skeletons_allowed_per_2_old" } }, - [9076]={ + [9356]={ [1]={ [1]={ limit={ @@ -206045,7 +212447,7 @@ return { [1]="number_of_support_ghosts_is_limited_to_3" } }, - [9077]={ + [9357]={ [1]={ [1]={ limit={ @@ -206061,7 +212463,7 @@ return { [1]="number_of_zombies_allowed_+1_per_X_strength" } }, - [9078]={ + [9358]={ [1]={ [1]={ limit={ @@ -206090,7 +212492,7 @@ return { [1]="occultist_chaos_damage_+%_final" } }, - [9079]={ + [9359]={ [1]={ [1]={ limit={ @@ -206119,7 +212521,7 @@ return { [1]="occultist_cold_damage_+%_final" } }, - [9080]={ + [9360]={ [1]={ [1]={ limit={ @@ -206135,7 +212537,7 @@ return { [1]="off_hand_accuracy_equal_to_main_hand_accuracy_while_wielding_sword" } }, - [9081]={ + [9361]={ [1]={ [1]={ limit={ @@ -206164,7 +212566,7 @@ return { [1]="off_hand_attack_speed_+%_while_dual_wielding" } }, - [9082]={ + [9362]={ [1]={ [1]={ limit={ @@ -206193,7 +212595,7 @@ return { [1]="off_hand_attack_speed_+%_while_wielding_two_weapon_types" } }, - [9083]={ + [9363]={ [1]={ [1]={ [1]={ @@ -206213,7 +212615,7 @@ return { [1]="off_hand_base_attack_time_+_ms" } }, - [9084]={ + [9364]={ [1]={ [1]={ limit={ @@ -206242,7 +212644,7 @@ return { [1]="off_hand_claw_mana_gain_on_hit" } }, - [9085]={ + [9365]={ [1]={ [1]={ [1]={ @@ -206262,7 +212664,7 @@ return { [1]="off_hand_critical_strike_chance_+_per_10_es_on_shield" } }, - [9086]={ + [9366]={ [1]={ [1]={ limit={ @@ -206278,7 +212680,7 @@ return { [1]="off_hand_critical_strike_multiplier_+_per_10_es_on_shield" } }, - [9087]={ + [9367]={ [1]={ [1]={ limit={ @@ -206294,7 +212696,7 @@ return { [1]="off_hand_critical_strike_multiplier_+_per_melee_abyss_jewel_up_to_+100" } }, - [9088]={ + [9368]={ [1]={ [1]={ limit={ @@ -206310,7 +212712,7 @@ return { [1]="off_hand_treat_enemy_resistances_as_negated_on_elemental_damage_hit" } }, - [9089]={ + [9369]={ [1]={ [1]={ limit={ @@ -206339,7 +212741,7 @@ return { [1]="offering_duration_+%" } }, - [9090]={ + [9370]={ [1]={ [1]={ limit={ @@ -206355,7 +212757,23 @@ return { [1]="offering_skills_do_not_require_corpses" } }, - [9091]={ + [9371]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Offerings Kill affected Damagable targets when Offering Duration expires" + } + }, + stats={ + [1]="offerings_kill_affected_damagable_targets_when_offering_duration_expires" + } + }, + [9372]={ [1]={ [1]={ limit={ @@ -206371,7 +212789,7 @@ return { [1]="on_cast_lose_all_mana_gain_%_as_maximum_lightning_damage_for_4_seconds" } }, - [9092]={ + [9373]={ [1]={ [1]={ limit={ @@ -206387,7 +212805,7 @@ return { [1]="on_leaving_banner_area_recover_%_of_planted_banner_resources" } }, - [9093]={ + [9374]={ [1]={ [1]={ [1]={ @@ -206407,7 +212825,7 @@ return { [1]="on_planting_banner_you_and_nearby_allies_recover_permyriad_maximum_life_per_stage" } }, - [9094]={ + [9375]={ [1]={ [1]={ limit={ @@ -206423,7 +212841,7 @@ return { [1]="open_nearby_chests_on_cast_chance_%" } }, - [9095]={ + [9376]={ [1]={ [1]={ limit={ @@ -206439,7 +212857,7 @@ return { [1]="open_nearby_chests_on_warcry" } }, - [9096]={ + [9377]={ [1]={ [1]={ limit={ @@ -206455,7 +212873,7 @@ return { [1]="orb_of_storm_strike_rate_while_channelling_+%" } }, - [9097]={ + [9378]={ [1]={ [1]={ limit={ @@ -206471,7 +212889,7 @@ return { [1]="orb_of_storms_cast_speed_+%" } }, - [9098]={ + [9379]={ [1]={ [1]={ limit={ @@ -206487,7 +212905,7 @@ return { [1]="override_maximum_damage_resistance_%" } }, - [9099]={ + [9380]={ [1]={ [1]={ [1]={ @@ -206507,7 +212925,7 @@ return { [1]="override_weapon_base_critical_strike_chance" } }, - [9100]={ + [9381]={ [1]={ [1]={ [1]={ @@ -206527,7 +212945,7 @@ return { [1]="overwhelm_phys_reduction_%_while_have_sacrificial_zeal" } }, - [9101]={ + [9382]={ [1]={ [1]={ limit={ @@ -206543,7 +212961,7 @@ return { [1]="pack_accompanied_by_a_harbinger" } }, - [9102]={ + [9383]={ [1]={ [1]={ limit={ @@ -206559,7 +212977,7 @@ return { [1]="pack_accompanied_by_a_map_boss" } }, - [9103]={ + [9384]={ [1]={ [1]={ limit={ @@ -206575,7 +212993,7 @@ return { [1]="pack_accompanied_by_a_rogue_exile" } }, - [9104]={ + [9385]={ [1]={ [1]={ limit={ @@ -206591,7 +213009,7 @@ return { [1]="pack_create_lesser_shrine_on_death" } }, - [9105]={ + [9386]={ [1]={ [1]={ limit={ @@ -206607,7 +213025,7 @@ return { [1]="pack_is_tormented" } }, - [9106]={ + [9387]={ [1]={ [1]={ limit={ @@ -206636,7 +213054,7 @@ return { [1]="pack_size_+%" } }, - [9107]={ + [9388]={ [1]={ [1]={ limit={ @@ -206652,7 +213070,7 @@ return { [1]="pack_upgrade_to_magic_chance_%" } }, - [9108]={ + [9389]={ [1]={ [1]={ limit={ @@ -206668,7 +213086,7 @@ return { [1]="pack_upgrade_to_rare_chance_%" } }, - [9109]={ + [9390]={ [1]={ [1]={ limit={ @@ -206697,7 +213115,7 @@ return { [1]="pantheon_abberath_ignite_duration_on_self_+%_final" } }, - [9110]={ + [9391]={ [1]={ [1]={ limit={ @@ -206726,7 +213144,7 @@ return { [1]="pantheon_shakari_self_poison_duration_+%_final" } }, - [9111]={ + [9392]={ [1]={ [1]={ limit={ @@ -206755,7 +213173,7 @@ return { [1]="passive_mastery_chaos_damage_+%_final_against_enemies_with_energy_shield" } }, - [9112]={ + [9393]={ [1]={ [1]={ limit={ @@ -206784,7 +213202,7 @@ return { [1]="passive_mastery_damage_taken_over_time_+%_final" } }, - [9113]={ + [9394]={ [1]={ [1]={ limit={ @@ -206813,7 +213231,7 @@ return { [1]="passive_mastery_hit_ailment_damage_+%_final_vs_enemies_with_5+_poisons" } }, - [9114]={ + [9395]={ [1]={ [1]={ limit={ @@ -206842,7 +213260,7 @@ return { [1]="passive_mastery_less_projectile_speed_+%_final" } }, - [9115]={ + [9396]={ [1]={ [1]={ limit={ @@ -206871,7 +213289,7 @@ return { [1]="passive_mastery_less_skill_effect_duration_+%_final" } }, - [9116]={ + [9397]={ [1]={ [1]={ limit={ @@ -206900,7 +213318,7 @@ return { [1]="passive_mastery_maximum_physical_attack_damage_+%_final_with_daggers" } }, - [9117]={ + [9398]={ [1]={ [1]={ limit={ @@ -206929,7 +213347,7 @@ return { [1]="passive_mastery_more_projectile_speed_+%_final" } }, - [9118]={ + [9399]={ [1]={ [1]={ limit={ @@ -206958,7 +213376,7 @@ return { [1]="passive_mastery_more_skill_effect_duration_+%_final" } }, - [9119]={ + [9400]={ [1]={ [1]={ limit={ @@ -206987,7 +213405,7 @@ return { [1]="passive_mastery_physical_damage_taken_+%_final_while_on_full_energy_shield" } }, - [9120]={ + [9401]={ [1]={ [1]={ [1]={ @@ -207020,7 +213438,7 @@ return { [1]="passive_mastery_shock_proliferation_radius" } }, - [9121]={ + [9402]={ [1]={ [1]={ limit={ @@ -207049,7 +213467,7 @@ return { [1]="passive_mastery_stun_duration_+%_final_with_two_hand_weapon" } }, - [9122]={ + [9403]={ [1]={ [1]={ limit={ @@ -207078,7 +213496,7 @@ return { [1]="passive_skill_hits_stun_as_if_dealing_melee_fire_damage_+%_final" } }, - [9123]={ + [9404]={ [1]={ [1]={ limit={ @@ -207107,7 +213525,7 @@ return { [1]="passive_skill_ignites_from_stunning_melee_hits_deal_damage_+%_final" } }, - [9124]={ + [9405]={ [1]={ [1]={ limit={ @@ -207136,7 +213554,7 @@ return { [1]="pathfinder_flask_life_to_recover_+%_final" } }, - [9125]={ + [9406]={ [1]={ [1]={ limit={ @@ -207152,7 +213570,7 @@ return { [1]="pathfinder_poison_damage_+100%_final_chance_during_flask_effect" } }, - [9126]={ + [9407]={ [1]={ [1]={ limit={ @@ -207181,7 +213599,7 @@ return { [1]="penance_brand_area_of_effect_+%" } }, - [9127]={ + [9408]={ [1]={ [1]={ limit={ @@ -207210,7 +213628,7 @@ return { [1]="penance_brand_cast_speed_+%" } }, - [9128]={ + [9409]={ [1]={ [1]={ limit={ @@ -207239,7 +213657,7 @@ return { [1]="penance_brand_damage_+%" } }, - [9129]={ + [9410]={ [1]={ [1]={ limit={ @@ -207255,7 +213673,7 @@ return { [1]="penance_mark_phantasms_chance_to_grant_vaal_soul_on_death_%" } }, - [9130]={ + [9411]={ [1]={ [1]={ limit={ @@ -207284,7 +213702,7 @@ return { [1]="penance_mark_phantasms_grant_%_increased_flask_charges" } }, - [9131]={ + [9412]={ [1]={ [1]={ limit={ @@ -207300,7 +213718,7 @@ return { [1]="penetrate_elemental_resistance_%_per_abyssal_jewel_affecting_you" } }, - [9132]={ + [9413]={ [1]={ [1]={ limit={ @@ -207316,7 +213734,7 @@ return { [1]="perandus_double_number_of_coins_found" } }, - [9133]={ + [9414]={ [1]={ [1]={ limit={ @@ -207332,7 +213750,7 @@ return { [1]="%_chance_to_deal_150%_area_damage_+%_final" } }, - [9134]={ + [9415]={ [1]={ [1]={ [1]={ @@ -207352,7 +213770,7 @@ return { [1]="%_chance_to_duplicate_dropped_currency" } }, - [9135]={ + [9416]={ [1]={ [1]={ limit={ @@ -207368,7 +213786,7 @@ return { [1]="%_chance_to_duplicate_dropped_divination_cards" } }, - [9136]={ + [9417]={ [1]={ [1]={ limit={ @@ -207384,7 +213802,7 @@ return { [1]="%_chance_to_duplicate_dropped_maps" } }, - [9137]={ + [9418]={ [1]={ [1]={ limit={ @@ -207400,7 +213818,7 @@ return { [1]="%_chance_to_duplicate_dropped_scarabs" } }, - [9138]={ + [9419]={ [1]={ [1]={ limit={ @@ -207416,7 +213834,7 @@ return { [1]="%_chance_to_duplicate_dropped_uniques" } }, - [9139]={ + [9420]={ [1]={ [1]={ limit={ @@ -207441,7 +213859,7 @@ return { [1]="%_chance_to_gain_endurance_charge_each_second_while_channelling" } }, - [9140]={ + [9421]={ [1]={ [1]={ limit={ @@ -207457,7 +213875,7 @@ return { [1]="%_chance_to_gain_random_charge_on_trap_triggered_by_an_enemy" } }, - [9141]={ + [9422]={ [1]={ [1]={ [1]={ @@ -207477,7 +213895,7 @@ return { [1]="%_maximum_es_and_life_taken_as_fire_damage_per_minute_per_level_while_in_her_embrace" } }, - [9142]={ + [9423]={ [1]={ [1]={ limit={ @@ -207506,7 +213924,7 @@ return { [1]="%_number_of_raging_spirits_allowed" } }, - [9143]={ + [9424]={ [1]={ [1]={ limit={ @@ -207531,7 +213949,7 @@ return { [1]="%_physical_damage_bypasses_energy_shield" } }, - [9144]={ + [9425]={ [1]={ [1]={ limit={ @@ -207547,7 +213965,7 @@ return { [1]="permanent_damage_+%_per_second_of_chill" } }, - [9145]={ + [9426]={ [1]={ [1]={ limit={ @@ -207563,7 +213981,7 @@ return { [1]="permanent_damage_+%_per_second_of_freeze" } }, - [9146]={ + [9427]={ [1]={ [1]={ [1]={ @@ -207583,7 +214001,7 @@ return { [1]="permanently_intimidate_enemy_on_block" } }, - [9147]={ + [9428]={ [1]={ [1]={ [1]={ @@ -207616,7 +214034,7 @@ return { [1]="petrified_blood_mana_reservation_efficiency_-2%_per_1" } }, - [9148]={ + [9429]={ [1]={ [1]={ limit={ @@ -207645,7 +214063,7 @@ return { [1]="petrified_blood_mana_reservation_efficiency_+%" } }, - [9149]={ + [9430]={ [1]={ [1]={ limit={ @@ -207674,7 +214092,7 @@ return { [1]="petrified_blood_reservation_+%" } }, - [9150]={ + [9431]={ [1]={ [1]={ limit={ @@ -207699,7 +214117,7 @@ return { [1]="phantasm_refresh_duration_on_hit_vs_rare_or_unique_%_chance" } }, - [9151]={ + [9432]={ [1]={ [1]={ limit={ @@ -207724,7 +214142,7 @@ return { [1]="phase_run_%_chance_to_not_replace_buff_on_skill_use" } }, - [9152]={ + [9433]={ [1]={ [1]={ [1]={ @@ -207744,7 +214162,7 @@ return { [1]="phasing_if_blocked_recently" } }, - [9153]={ + [9434]={ [1]={ [1]={ limit={ @@ -207773,7 +214191,7 @@ return { [1]="phys_cascade_trap_cooldown_speed_+%" } }, - [9154]={ + [9435]={ [1]={ [1]={ limit={ @@ -207802,7 +214220,7 @@ return { [1]="phys_cascade_trap_damage_+%" } }, - [9155]={ + [9436]={ [1]={ [1]={ limit={ @@ -207831,7 +214249,7 @@ return { [1]="phys_cascade_trap_duration_+%" } }, - [9156]={ + [9437]={ [1]={ [1]={ limit={ @@ -207856,7 +214274,7 @@ return { [1]="phys_cascade_trap_number_of_additional_cascades" } }, - [9157]={ + [9438]={ [1]={ [1]={ limit={ @@ -207885,7 +214303,7 @@ return { [1]="physical_and_chaos_damage_taken_+%_final_while_not_unhinged" } }, - [9158]={ + [9439]={ [1]={ [1]={ limit={ @@ -207901,7 +214319,7 @@ return { [1]="physical_damage_%_to_add_as_each_element_per_spirit_charge" } }, - [9159]={ + [9440]={ [1]={ [1]={ limit={ @@ -207917,7 +214335,7 @@ return { [1]="physical_damage_+%_per_explicit_map_mod_affecting_area" } }, - [9160]={ + [9441]={ [1]={ [1]={ limit={ @@ -207933,7 +214351,7 @@ return { [1]="physical_damage_from_hits_%_taken_as_random_element" } }, - [9161]={ + [9442]={ [1]={ [1]={ limit={ @@ -207962,7 +214380,7 @@ return { [1]="physical_damage_over_time_taken_+%_while_moving" } }, - [9162]={ + [9443]={ [1]={ [1]={ limit={ @@ -207978,7 +214396,7 @@ return { [1]="physical_damage_%_to_add_as_chaos_vs_poisoned_enemies" } }, - [9163]={ + [9444]={ [1]={ [1]={ limit={ @@ -207994,7 +214412,7 @@ return { [1]="physical_damage_%_to_add_as_fire_damage_while_affected_by_anger" } }, - [9164]={ + [9445]={ [1]={ [1]={ [1]={ @@ -208014,7 +214432,7 @@ return { [1]="physical_damage_%_to_add_as_fire_if_have_crit_recently" } }, - [9165]={ + [9446]={ [1]={ [1]={ limit={ @@ -208030,7 +214448,7 @@ return { [1]="physical_damage_%_to_add_as_fire_per_rage" } }, - [9166]={ + [9447]={ [1]={ [1]={ limit={ @@ -208046,7 +214464,7 @@ return { [1]="physical_damage_%_to_add_as_lightning_damage_while_affected_by_wrath" } }, - [9167]={ + [9448]={ [1]={ [1]={ limit={ @@ -208062,7 +214480,7 @@ return { [1]="physical_damage_%_to_add_as_random_element_while_ignited" } }, - [9168]={ + [9449]={ [1]={ [1]={ limit={ @@ -208078,7 +214496,7 @@ return { [1]="physical_damage_%_to_convert_to_cold_at_devotion_threshold" } }, - [9169]={ + [9450]={ [1]={ [1]={ limit={ @@ -208094,7 +214512,7 @@ return { [1]="physical_damage_%_to_convert_to_fire_at_devotion_threshold" } }, - [9170]={ + [9451]={ [1]={ [1]={ limit={ @@ -208110,7 +214528,7 @@ return { [1]="physical_damage_%_to_convert_to_lightning_at_devotion_threshold" } }, - [9171]={ + [9452]={ [1]={ [1]={ limit={ @@ -208139,7 +214557,7 @@ return { [1]="physical_damage_+%_if_skill_costs_life" } }, - [9172]={ + [9453]={ [1]={ [1]={ limit={ @@ -208168,7 +214586,7 @@ return { [1]="physical_damage_+%_per_10_rage" } }, - [9173]={ + [9454]={ [1]={ [1]={ [1]={ @@ -208205,7 +214623,7 @@ return { [1]="physical_damage_+%_vs_ignited_enemies" } }, - [9174]={ + [9455]={ [1]={ [1]={ limit={ @@ -208234,7 +214652,7 @@ return { [1]="physical_damage_+%_while_affected_by_herald_of_purity" } }, - [9175]={ + [9456]={ [1]={ [1]={ limit={ @@ -208263,7 +214681,7 @@ return { [1]="physical_damage_+%_with_axes_swords" } }, - [9176]={ + [9457]={ [1]={ [1]={ limit={ @@ -208292,7 +214710,7 @@ return { [1]="physical_damage_+%_with_unholy_might" } }, - [9177]={ + [9458]={ [1]={ [1]={ limit={ @@ -208308,7 +214726,7 @@ return { [1]="physical_damage_reduction_%_at_devotion_threshold" } }, - [9178]={ + [9459]={ [1]={ [1]={ limit={ @@ -208324,7 +214742,7 @@ return { [1]="physical_damage_reduction_percent_per_frenzy_charge" } }, - [9179]={ + [9460]={ [1]={ [1]={ [1]={ @@ -208344,7 +214762,7 @@ return { [1]="physical_damage_reduction_%_per_hit_you_have_taken_recently" } }, - [9180]={ + [9461]={ [1]={ [1]={ limit={ @@ -208360,7 +214778,7 @@ return { [1]="physical_damage_reduction_percent_per_power_charge" } }, - [9181]={ + [9462]={ [1]={ [1]={ limit={ @@ -208376,7 +214794,7 @@ return { [1]="physical_damage_reduction_%_while_affected_by_herald_of_purity" } }, - [9182]={ + [9463]={ [1]={ [1]={ limit={ @@ -208392,7 +214810,7 @@ return { [1]="physical_damage_reduction_rating_during_soul_gain_prevention" } }, - [9183]={ + [9464]={ [1]={ [1]={ [1]={ @@ -208412,7 +214830,7 @@ return { [1]="physical_damage_reduction_rating_if_you_have_hit_an_enemy_recently" } }, - [9184]={ + [9465]={ [1]={ [1]={ limit={ @@ -208428,7 +214846,7 @@ return { [1]="physical_damage_reduction_rating_per_endurance_charge" } }, - [9185]={ + [9466]={ [1]={ [1]={ limit={ @@ -208444,7 +214862,7 @@ return { [1]="physical_damage_reduction_%_if_only_one_enemy_nearby" } }, - [9186]={ + [9467]={ [1]={ [1]={ limit={ @@ -208460,7 +214878,7 @@ return { [1]="physical_damage_reduction_rating_+%_per_endurance_charge" } }, - [9187]={ + [9468]={ [1]={ [1]={ limit={ @@ -208476,7 +214894,7 @@ return { [1]="physical_damage_reduction_%_per_nearby_enemy" } }, - [9188]={ + [9469]={ [1]={ [1]={ limit={ @@ -208492,7 +214910,7 @@ return { [1]="physical_damage_taken_%_as_cold_while_affected_by_purity_of_elements" } }, - [9189]={ + [9470]={ [1]={ [1]={ limit={ @@ -208508,7 +214926,7 @@ return { [1]="physical_damage_taken_%_as_cold_while_affected_by_purity_of_ice" } }, - [9190]={ + [9471]={ [1]={ [1]={ limit={ @@ -208524,7 +214942,7 @@ return { [1]="physical_damage_taken_%_as_fire_while_affected_by_purity_of_elements" } }, - [9191]={ + [9472]={ [1]={ [1]={ limit={ @@ -208540,7 +214958,7 @@ return { [1]="physical_damage_taken_%_as_fire_while_affected_by_purity_of_fire" } }, - [9192]={ + [9473]={ [1]={ [1]={ limit={ @@ -208556,7 +214974,7 @@ return { [1]="physical_damage_taken_%_as_lightning_while_affected_by_purity_of_elements" } }, - [9193]={ + [9474]={ [1]={ [1]={ limit={ @@ -208572,7 +214990,7 @@ return { [1]="physical_damage_taken_%_as_lightning_while_affected_by_purity_of_lightning" } }, - [9194]={ + [9475]={ [1]={ [1]={ [1]={ @@ -208592,7 +215010,7 @@ return { [1]="physical_damage_taken_recouped_as_life_%" } }, - [9195]={ + [9476]={ [1]={ [1]={ limit={ @@ -208621,7 +215039,7 @@ return { [1]="physical_damage_with_attack_skills_+%" } }, - [9196]={ + [9477]={ [1]={ [1]={ limit={ @@ -208650,7 +215068,7 @@ return { [1]="physical_damage_with_spell_skills_+%" } }, - [9197]={ + [9478]={ [1]={ [1]={ [1]={ @@ -208670,7 +215088,7 @@ return { [1]="physical_dot_multiplier_+_if_crit_recently" } }, - [9198]={ + [9479]={ [1]={ [1]={ [1]={ @@ -208690,7 +215108,7 @@ return { [1]="physical_dot_multiplier_+_if_spent_life_recently" } }, - [9199]={ + [9480]={ [1]={ [1]={ limit={ @@ -208719,7 +215137,7 @@ return { [1]="physical_dot_multiplier_+_while_wielding_axes_swords" } }, - [9200]={ + [9481]={ [1]={ [1]={ limit={ @@ -208735,7 +215153,7 @@ return { [1]="physical_hit_and_dot_damage_%_taken_as_fire" } }, - [9201]={ + [9482]={ [1]={ [1]={ limit={ @@ -208764,7 +215182,7 @@ return { [1]="physical_reflect_damage_taken_and_minion_physical_reflect_damage_taken_+%" } }, - [9202]={ + [9483]={ [1]={ [1]={ limit={ @@ -208780,7 +215198,7 @@ return { [1]="physical_skill_gem_level_+" } }, - [9203]={ + [9484]={ [1]={ [1]={ limit={ @@ -208809,7 +215227,7 @@ return { [1]="piercing_projectiles_critical_strike_chance_+%" } }, - [9204]={ + [9485]={ [1]={ [1]={ limit={ @@ -208838,7 +215256,7 @@ return { [1]="placed_banner_attack_damage_+%" } }, - [9205]={ + [9486]={ [1]={ [1]={ limit={ @@ -208867,7 +215285,7 @@ return { [1]="plague_bearer_chaos_damage_taken_+%_while_incubating" } }, - [9206]={ + [9487]={ [1]={ [1]={ limit={ @@ -208896,7 +215314,7 @@ return { [1]="plague_bearer_maximum_stored_poison_damage_+%" } }, - [9207]={ + [9488]={ [1]={ [1]={ limit={ @@ -208925,7 +215343,7 @@ return { [1]="plague_bearer_movement_speed_+%_while_infecting" } }, - [9208]={ + [9489]={ [1]={ [1]={ limit={ @@ -208941,7 +215359,7 @@ return { [1]="player_can_be_touched_by_tormented_spirits" } }, - [9209]={ + [9490]={ [1]={ [1]={ limit={ @@ -208957,7 +215375,7 @@ return { [1]="+1_max_charged_attack_stages" } }, - [9210]={ + [9491]={ [1]={ [1]={ limit={ @@ -208986,7 +215404,7 @@ return { [1]="poison_damage_+%_per_frenzy_charge" } }, - [9211]={ + [9492]={ [1]={ [1]={ limit={ @@ -209015,7 +215433,7 @@ return { [1]="poison_damage_+%_per_power_charge" } }, - [9212]={ + [9493]={ [1]={ [1]={ limit={ @@ -209044,7 +215462,7 @@ return { [1]="poison_damage_+%_vs_bleeding_enemies" } }, - [9213]={ + [9494]={ [1]={ [1]={ limit={ @@ -209073,7 +215491,7 @@ return { [1]="poison_damage_+%_with_over_300_dexterity" } }, - [9214]={ + [9495]={ [1]={ [1]={ limit={ @@ -209089,7 +215507,7 @@ return { [1]="poison_dot_multiplier_+_per_frenzy_charge" } }, - [9215]={ + [9496]={ [1]={ [1]={ limit={ @@ -209118,7 +215536,7 @@ return { [1]="poison_dot_multiplier_+_vs_bleeding_enemies" } }, - [9216]={ + [9497]={ [1]={ [1]={ limit={ @@ -209147,7 +215565,7 @@ return { [1]="poison_dot_multiplier_+_with_spells" } }, - [9217]={ + [9498]={ [1]={ [1]={ [1]={ @@ -209160,7 +215578,7 @@ return { [2]="#" } }, - text="{0}% increased Poison Duration for each Poison you have inflicted Recently, up to a maximum of 100%" + text="{0}% increased Poison Duration for each Poison you have inflicted Recently, up\nto a maximum of 100%" }, [2]={ [1]={ @@ -209184,7 +215602,7 @@ return { [1]="poison_duration_+%_per_poison_applied_recently" } }, - [9218]={ + [9499]={ [1]={ [1]={ limit={ @@ -209213,7 +215631,7 @@ return { [1]="poison_duration_+%_per_power_charge" } }, - [9219]={ + [9500]={ [1]={ [1]={ limit={ @@ -209242,7 +215660,7 @@ return { [1]="poison_duration_+%_with_over_150_intelligence" } }, - [9220]={ + [9501]={ [1]={ [1]={ [1]={ @@ -209262,7 +215680,7 @@ return { [1]="poison_on_critical_strike" } }, - [9221]={ + [9502]={ [1]={ [1]={ limit={ @@ -209291,7 +215709,7 @@ return { [1]="poison_on_non_poisoned_enemies_damage_+%" } }, - [9222]={ + [9503]={ [1]={ [1]={ [1]={ @@ -209311,7 +215729,7 @@ return { [1]="poison_reflected_to_self" } }, - [9223]={ + [9504]={ [1]={ [1]={ limit={ @@ -209344,7 +215762,7 @@ return { [1]="poison_time_passed_+%" } }, - [9224]={ + [9505]={ [1]={ [1]={ limit={ @@ -209373,7 +215791,7 @@ return { [1]="poisonous_concoction_damage_+%" } }, - [9225]={ + [9506]={ [1]={ [1]={ limit={ @@ -209402,7 +215820,7 @@ return { [1]="poisonous_concoction_flask_charges_consumed_+%" } }, - [9226]={ + [9507]={ [1]={ [1]={ limit={ @@ -209431,7 +215849,7 @@ return { [1]="poisonous_concoction_skill_area_of_effect_+%" } }, - [9227]={ + [9508]={ [1]={ [1]={ [1]={ @@ -209451,7 +215869,7 @@ return { [1]="portal_alternate_destination_chance_permyriad" } }, - [9228]={ + [9509]={ [1]={ [1]={ limit={ @@ -209467,7 +215885,7 @@ return { [1]="posion_damage_over_time_multiplier_+%_while_wielding_claws_daggers" } }, - [9229]={ + [9510]={ [1]={ [1]={ limit={ @@ -209496,7 +215914,7 @@ return { [1]="power_charge_duration_+%_final" } }, - [9230]={ + [9511]={ [1]={ [1]={ limit={ @@ -209512,7 +215930,7 @@ return { [1]="power_charge_on_kill_percent_chance_while_holding_shield" } }, - [9231]={ + [9512]={ [1]={ [1]={ limit={ @@ -209528,7 +215946,7 @@ return { [1]="power_charge_on_non_critical_strike_%_chance_with_claws_daggers" } }, - [9232]={ + [9513]={ [1]={ [1]={ limit={ @@ -209544,7 +215962,7 @@ return { [1]="power_charge_on_spell_block_%_chance" } }, - [9233]={ + [9514]={ [1]={ [1]={ limit={ @@ -209569,7 +215987,7 @@ return { [1]="power_siphon_number_of_additional_projectiles" } }, - [9234]={ + [9515]={ [1]={ [1]={ [1]={ @@ -209602,7 +216020,7 @@ return { [1]="precision_mana_reservation_efficiency_-2%_per_1" } }, - [9235]={ + [9516]={ [1]={ [1]={ limit={ @@ -209618,7 +216036,7 @@ return { [1]="precision_mana_reservation_efficiency_+100%" } }, - [9236]={ + [9517]={ [1]={ [1]={ limit={ @@ -209647,7 +216065,7 @@ return { [1]="precision_mana_reservation_efficiency_+%" } }, - [9237]={ + [9518]={ [1]={ [1]={ limit={ @@ -209663,7 +216081,7 @@ return { [1]="precision_mana_reservation_-50%_final" } }, - [9238]={ + [9519]={ [1]={ [1]={ limit={ @@ -209692,7 +216110,7 @@ return { [1]="precision_mana_reservation_+%" } }, - [9239]={ + [9520]={ [1]={ [1]={ limit={ @@ -209708,7 +216126,7 @@ return { [1]="precision_reserves_no_mana" } }, - [9240]={ + [9521]={ [1]={ [1]={ limit={ @@ -209733,7 +216151,7 @@ return { [1]="prevent_projectile_chaining_%_chance" } }, - [9241]={ + [9522]={ [1]={ [1]={ limit={ @@ -209762,7 +216180,7 @@ return { [1]="pride_aura_effect_+%" } }, - [9242]={ + [9523]={ [1]={ [1]={ limit={ @@ -209778,7 +216196,7 @@ return { [1]="pride_chance_to_deal_double_damage_%" } }, - [9243]={ + [9524]={ [1]={ [1]={ [1]={ @@ -209811,7 +216229,7 @@ return { [1]="pride_chance_to_impale_with_attacks_%" } }, - [9244]={ + [9525]={ [1]={ [1]={ [1]={ @@ -209831,7 +216249,7 @@ return { [1]="pride_intimidate_enemy_for_4_seconds_on_hit" } }, - [9245]={ + [9526]={ [1]={ [1]={ [1]={ @@ -209864,7 +216282,7 @@ return { [1]="pride_mana_reservation_efficiency_-2%_per_1" } }, - [9246]={ + [9527]={ [1]={ [1]={ limit={ @@ -209893,7 +216311,7 @@ return { [1]="pride_mana_reservation_efficiency_+%" } }, - [9247]={ + [9528]={ [1]={ [1]={ limit={ @@ -209922,7 +216340,7 @@ return { [1]="pride_mana_reservation_+%" } }, - [9248]={ + [9529]={ [1]={ [1]={ limit={ @@ -209951,7 +216369,7 @@ return { [1]="pride_physical_damage_+%" } }, - [9249]={ + [9530]={ [1]={ [1]={ limit={ @@ -209967,7 +216385,7 @@ return { [1]="pride_reserves_no_mana" } }, - [9250]={ + [9531]={ [1]={ [1]={ limit={ @@ -209983,7 +216401,7 @@ return { [1]="pride_your_impaled_debuff_lasts_+_additional_hits" } }, - [9251]={ + [9532]={ [1]={ [1]={ limit={ @@ -209999,7 +216417,7 @@ return { [1]="primalist_ascendancy_expanded_main_inventory" } }, - [9252]={ + [9533]={ [1]={ [1]={ limit={ @@ -210028,7 +216446,67 @@ return { [1]="prismatic_rain_beam_frequency_+%" } }, - [9253]={ + [9534]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextBrittle" + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Hits with Prismatic Skills always inflict Brittle" + } + }, + stats={ + [1]="prismatic_skills_always_inflict_frostburn" + } + }, + [9535]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextSapped" + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Hits with Prismatic Skills always Sap" + } + }, + stats={ + [1]="prismatic_skills_always_inflict_sapped" + } + }, + [9536]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextScorch" + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Hits with Prismatic Skills always Scorch" + } + }, + stats={ + [1]="prismatic_skills_always_scorch" + } + }, + [9537]={ [1]={ [1]={ [1]={ @@ -210048,7 +216526,27 @@ return { [1]="profane_ground_on_crit_chance_%_if_highest_attribute_is_intelligence" } }, - [9254]={ + [9538]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextMaledictionNoDuration" + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Profane Ground you create inflicts Malediction on Enemies" + } + }, + stats={ + [1]="profane_ground_you_create_inflicts_malediction_on_enemies" + } + }, + [9539]={ [1]={ [1]={ limit={ @@ -210064,7 +216562,7 @@ return { [1]="projecitle_chance_to_be_able_to_chain_from_terrain_%_per_ranged_abyss_jewel_up_to_20%" } }, - [9255]={ + [9540]={ [1]={ [1]={ limit={ @@ -210093,7 +216591,7 @@ return { [1]="projectile_attack_damage_+%_during_flask_effect" } }, - [9256]={ + [9541]={ [1]={ [1]={ limit={ @@ -210122,7 +216620,7 @@ return { [1]="projectile_attack_damage_+%_with_claw_or_dagger" } }, - [9257]={ + [9542]={ [1]={ [1]={ limit={ @@ -210138,7 +216636,7 @@ return { [1]="projectile_attack_skill_critical_strike_multiplier_+" } }, - [9258]={ + [9543]={ [1]={ [1]={ limit={ @@ -210167,7 +216665,7 @@ return { [1]="projectile_damage_+%_max_before_distance_increase" } }, - [9259]={ + [9544]={ [1]={ [1]={ limit={ @@ -210183,7 +216681,7 @@ return { [1]="projectile_damage_+%_per_16_dexterity" } }, - [9260]={ + [9545]={ [1]={ [1]={ limit={ @@ -210199,7 +216697,7 @@ return { [1]="projectile_damage_+%_per_chain" } }, - [9261]={ + [9546]={ [1]={ [1]={ limit={ @@ -210215,7 +216713,7 @@ return { [1]="projectile_damage_+%_per_pierced_enemy" } }, - [9262]={ + [9547]={ [1]={ [1]={ limit={ @@ -210244,7 +216742,7 @@ return { [1]="projectile_damage_+%_per_remaining_chain" } }, - [9263]={ + [9548]={ [1]={ [1]={ limit={ @@ -210273,7 +216771,7 @@ return { [1]="projectile_damage_+%_vs_chained_enemy" } }, - [9264]={ + [9549]={ [1]={ [1]={ limit={ @@ -210302,7 +216800,7 @@ return { [1]="projectile_damage_+%_vs_nearby_enemies" } }, - [9265]={ + [9550]={ [1]={ [1]={ limit={ @@ -210318,7 +216816,7 @@ return { [1]="projectile_non_chaos_damage_to_add_as_chaos_damage_%_if_chained" } }, - [9266]={ + [9551]={ [1]={ [1]={ limit={ @@ -210334,7 +216832,7 @@ return { [1]="projectile_non_chaos_damage_to_add_as_chaos_damage_%_per_chain" } }, - [9267]={ + [9552]={ [1]={ [1]={ limit={ @@ -210350,7 +216848,7 @@ return { [1]="projectile_number_to_split" } }, - [9268]={ + [9553]={ [1]={ [1]={ [1]={ @@ -210370,7 +216868,23 @@ return { [1]="projectile_object_collision_behaviour_only_explode" } }, - [9269]={ + [9554]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Projectile Speed per 20 Strength" + } + }, + stats={ + [1]="projectile_speed_+%_per_20_strength" + } + }, + [9555]={ [1]={ [1]={ [1]={ @@ -210407,7 +216921,23 @@ return { [1]="projectile_speed_+%_with_daggers" } }, - [9270]={ + [9556]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="1% increased Projectile Speed per {0} Evasion Rating, up to 75%" + } + }, + stats={ + [1]="projectile_speed_+1%_per_X_evasion_rating_up_to_75%" + } + }, + [9557]={ [1]={ [1]={ limit={ @@ -210423,7 +216953,7 @@ return { [1]="projectile_speed_variation_+%_final_with_melee_weapon_attacks" } }, - [9271]={ + [9558]={ [1]={ [1]={ [1]={ @@ -210443,7 +216973,7 @@ return { [1]="projectile_spell_cooldown_modifier_ms" } }, - [9272]={ + [9559]={ [1]={ [1]={ limit={ @@ -210459,7 +216989,7 @@ return { [1]="projectiles_always_pierce_you" } }, - [9273]={ + [9560]={ [1]={ [1]={ limit={ @@ -210475,7 +217005,7 @@ return { [1]="projectiles_from_spells_cannot_pierce" } }, - [9274]={ + [9561]={ [1]={ [1]={ limit={ @@ -210491,7 +217021,7 @@ return { [1]="projectiles_move_at_player_speed" } }, - [9275]={ + [9562]={ [1]={ [1]={ limit={ @@ -210520,7 +217050,7 @@ return { [1]="projectiles_pierce_1_additional_target_per_10_stat_value" } }, - [9276]={ + [9563]={ [1]={ [1]={ limit={ @@ -210549,7 +217079,7 @@ return { [1]="projectiles_pierce_1_additional_target_per_15_stat_value" } }, - [9277]={ + [9564]={ [1]={ [1]={ limit={ @@ -210565,7 +217095,7 @@ return { [1]="projectiles_pierce_all_nearby_targets" } }, - [9278]={ + [9565]={ [1]={ [1]={ limit={ @@ -210581,7 +217111,7 @@ return { [1]="projectiles_pierce_while_phasing" } }, - [9279]={ + [9566]={ [1]={ [1]={ limit={ @@ -210606,7 +217136,7 @@ return { [1]="projectiles_pierce_x_additional_targets_while_you_have_phasing" } }, - [9280]={ + [9567]={ [1]={ [1]={ limit={ @@ -210635,7 +217165,7 @@ return { [1]="protective_link_duration_+%" } }, - [9281]={ + [9568]={ [1]={ [1]={ limit={ @@ -210651,7 +217181,7 @@ return { [1]="puncture_and_ensnaring_arrow_enemies_explode_on_death_by_attack_for_10%_life_as_physical_damage_chance_%" } }, - [9282]={ + [9569]={ [1]={ [1]={ limit={ @@ -210667,7 +217197,7 @@ return { [1]="punishment_no_reservation" } }, - [9283]={ + [9570]={ [1]={ [1]={ [1]={ @@ -210700,7 +217230,7 @@ return { [1]="puppet_master_base_duration_ms" } }, - [9284]={ + [9571]={ [1]={ [1]={ limit={ @@ -210716,7 +217246,7 @@ return { [1]="purge_additional_enemy_resistance_%" } }, - [9285]={ + [9572]={ [1]={ [1]={ limit={ @@ -210745,7 +217275,7 @@ return { [1]="purge_damage_+%" } }, - [9286]={ + [9573]={ [1]={ [1]={ limit={ @@ -210761,7 +217291,7 @@ return { [1]="purge_dot_multiplier_+_per_100ms_duration_expired" } }, - [9287]={ + [9574]={ [1]={ [1]={ limit={ @@ -210790,7 +217320,7 @@ return { [1]="purge_duration_+%" } }, - [9288]={ + [9575]={ [1]={ [1]={ limit={ @@ -210815,7 +217345,7 @@ return { [1]="purifying_flame_%_chance_to_create_consecrated_ground_around_you" } }, - [9289]={ + [9576]={ [1]={ [1]={ [1]={ @@ -210848,7 +217378,7 @@ return { [1]="purity_of_elements_mana_reservation_efficiency_-2%_per_1" } }, - [9290]={ + [9577]={ [1]={ [1]={ limit={ @@ -210877,7 +217407,7 @@ return { [1]="purity_of_elements_mana_reservation_efficiency_+%" } }, - [9291]={ + [9578]={ [1]={ [1]={ limit={ @@ -210893,7 +217423,7 @@ return { [1]="purity_of_elements_reserves_no_mana" } }, - [9292]={ + [9579]={ [1]={ [1]={ [1]={ @@ -210926,7 +217456,7 @@ return { [1]="purity_of_fire_mana_reservation_efficiency_-2%_per_1" } }, - [9293]={ + [9580]={ [1]={ [1]={ limit={ @@ -210955,7 +217485,7 @@ return { [1]="purity_of_fire_mana_reservation_efficiency_+%" } }, - [9294]={ + [9581]={ [1]={ [1]={ limit={ @@ -210971,7 +217501,7 @@ return { [1]="purity_of_fire_reserves_no_mana" } }, - [9295]={ + [9582]={ [1]={ [1]={ [1]={ @@ -211004,7 +217534,7 @@ return { [1]="purity_of_ice_mana_reservation_efficiency_-2%_per_1" } }, - [9296]={ + [9583]={ [1]={ [1]={ limit={ @@ -211033,7 +217563,7 @@ return { [1]="purity_of_ice_mana_reservation_efficiency_+%" } }, - [9297]={ + [9584]={ [1]={ [1]={ limit={ @@ -211049,7 +217579,7 @@ return { [1]="purity_of_ice_reserves_no_mana" } }, - [9298]={ + [9585]={ [1]={ [1]={ [1]={ @@ -211082,7 +217612,7 @@ return { [1]="purity_of_lightning_mana_reservation_efficiency_-2%_per_1" } }, - [9299]={ + [9586]={ [1]={ [1]={ limit={ @@ -211111,7 +217641,7 @@ return { [1]="purity_of_lightning_mana_reservation_efficiency_+%" } }, - [9300]={ + [9587]={ [1]={ [1]={ limit={ @@ -211127,7 +217657,7 @@ return { [1]="purity_of_lightning_reserves_no_mana" } }, - [9301]={ + [9588]={ [1]={ [1]={ limit={ @@ -211152,7 +217682,7 @@ return { [1]="quick_dodge_added_cooldown_count" } }, - [9302]={ + [9589]={ [1]={ [1]={ limit={ @@ -211181,7 +217711,7 @@ return { [1]="quick_dodge_travel_distance_+%" } }, - [9303]={ + [9590]={ [1]={ [1]={ limit={ @@ -211197,7 +217727,7 @@ return { [1]="quick_guard_additional_physical_damage_reduction_%" } }, - [9304]={ + [9591]={ [1]={ [1]={ limit={ @@ -211213,7 +217743,7 @@ return { [1]="quicksilver_flasks_apply_to_nearby_allies" } }, - [9305]={ + [9592]={ [1]={ [1]={ limit={ @@ -211242,7 +217772,7 @@ return { [1]="quiver_mod_effect_+%" } }, - [9306]={ + [9593]={ [1]={ [1]={ limit={ @@ -211258,7 +217788,7 @@ return { [1]="quiver_projectiles_pierce_1_additional_target" } }, - [9307]={ + [9594]={ [1]={ [1]={ limit={ @@ -211274,7 +217804,7 @@ return { [1]="quiver_projectiles_pierce_2_additional_targets" } }, - [9308]={ + [9595]={ [1]={ [1]={ limit={ @@ -211290,7 +217820,7 @@ return { [1]="quiver_projectiles_pierce_3_additional_targets" } }, - [9309]={ + [9596]={ [1]={ [1]={ [1]={ @@ -211304,13 +217834,26 @@ return { } }, text="{0:+d} to Maximum Rage" + }, + [2]={ + [1]={ + k="reminderstring", + v="ReminderTextRage" + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0:+d} to Maximum Rage" } }, stats={ [1]="maximum_rage" } }, - [9310]={ + [9597]={ [1]={ [1]={ [1]={ @@ -211330,7 +217873,7 @@ return { [1]="rage_effects_tripled" } }, - [9311]={ + [9598]={ [1]={ [1]={ [1]={ @@ -211350,7 +217893,7 @@ return { [1]="rage_effects_doubled" } }, - [9312]={ + [9599]={ [1]={ [1]={ [1]={ @@ -211370,7 +217913,7 @@ return { [1]="gain_rage_on_kill" } }, - [9313]={ + [9600]={ [1]={ [1]={ [1]={ @@ -211411,7 +217954,7 @@ return { [1]="gain_rage_on_hitting_rare_unique_enemy_%" } }, - [9314]={ + [9601]={ [1]={ [1]={ [1]={ @@ -211431,7 +217974,7 @@ return { [1]="gain_rage_when_you_use_a_warcry" } }, - [9315]={ + [9602]={ [1]={ [1]={ limit={ @@ -211447,7 +217990,7 @@ return { [1]="cannot_be_stunned_with_25_rage" } }, - [9316]={ + [9603]={ [1]={ [1]={ [1]={ @@ -211471,7 +218014,7 @@ return { [1]="gain_rage_on_hit" } }, - [9317]={ + [9604]={ [1]={ [1]={ [1]={ @@ -211508,7 +218051,7 @@ return { [1]="rage_decay_speed_+%" } }, - [9318]={ + [9605]={ [1]={ [1]={ [1]={ @@ -211545,7 +218088,7 @@ return { [1]="rage_effect_+%" } }, - [9319]={ + [9606]={ [1]={ [1]={ [1]={ @@ -211565,7 +218108,7 @@ return { [1]="rage_grants_cast_speed_instead" } }, - [9320]={ + [9607]={ [1]={ [1]={ [1]={ @@ -211585,7 +218128,7 @@ return { [1]="rage_grants_spell_damage_instead" } }, - [9321]={ + [9608]={ [1]={ [1]={ [1]={ @@ -211622,7 +218165,7 @@ return { [1]="rage_loss_delay_ms" } }, - [9322]={ + [9609]={ [1]={ [1]={ limit={ @@ -211643,7 +218186,7 @@ return { [2]="quality_display_rage_vortex_is_gem" } }, - [9323]={ + [9610]={ [1]={ [1]={ limit={ @@ -211672,7 +218215,7 @@ return { [1]="rage_vortex_area_of_effect_+%" } }, - [9324]={ + [9611]={ [1]={ [1]={ limit={ @@ -211701,7 +218244,7 @@ return { [1]="rage_vortex_damage_+%" } }, - [9325]={ + [9612]={ [1]={ [1]={ limit={ @@ -211717,7 +218260,7 @@ return { [1]="raging_spirits_always_ignite" } }, - [9326]={ + [9613]={ [1]={ [1]={ limit={ @@ -211742,7 +218285,7 @@ return { [1]="raging_spirits_refresh_duration_on_hit_vs_rare_or_unique_%_chance" } }, - [9327]={ + [9614]={ [1]={ [1]={ limit={ @@ -211758,7 +218301,7 @@ return { [1]="raging_spirits_refresh_duration_when_they_kill_ignited_enemy" } }, - [9328]={ + [9615]={ [1]={ [1]={ limit={ @@ -211787,7 +218330,7 @@ return { [1]="raider_chance_to_evade_attacks_+%_final_during_onslaught" } }, - [9329]={ + [9616]={ [1]={ [1]={ limit={ @@ -211816,7 +218359,7 @@ return { [1]="raider_nearby_enemies_accuracy_rating_+%_final_while_phasing" } }, - [9330]={ + [9617]={ [1]={ [1]={ limit={ @@ -211832,7 +218375,7 @@ return { [1]="raider_shock_maximum_effect_override_%" } }, - [9331]={ + [9618]={ [1]={ [1]={ limit={ @@ -211848,7 +218391,7 @@ return { [1]="raider_shocks_you_apply_can_stack_up_to_50_times" } }, - [9332]={ + [9619]={ [1]={ [1]={ limit={ @@ -211864,7 +218407,7 @@ return { [1]="rain_of_arrows_additional_sequence_chance_%" } }, - [9333]={ + [9620]={ [1]={ [1]={ limit={ @@ -211880,7 +218423,7 @@ return { [1]="rain_of_arrows_rain_of_arrows_additional_sequence_chance_%" } }, - [9334]={ + [9621]={ [1]={ [1]={ limit={ @@ -211909,7 +218452,7 @@ return { [1]="rain_of_arrows_toxic_rain_active_skill_bleeding_damage_+%_final" } }, - [9335]={ + [9622]={ [1]={ [1]={ limit={ @@ -211938,7 +218481,7 @@ return { [1]="raise_spectre_mana_cost_+%" } }, - [9336]={ + [9623]={ [1]={ [1]={ limit={ @@ -211954,7 +218497,83 @@ return { [1]="raise_zombie_does_not_use_corpses" } }, - [9337]={ + [9624]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextFarrulsFarricPresence" + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Raised Beast Spectres have Farrul's Farric Presence" + } + }, + stats={ + [1]="raised_beast_spectres_have_farruls_farric_presence" + } + }, + [9625]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextFarrulsFertilePresence" + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Raised Beast Spectres have Farrul's Fertile Presence" + } + }, + stats={ + [1]="raised_beast_spectres_have_farruls_fertile_presence" + } + }, + [9626]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextFarrulsWildPresence" + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Raised Beast Spectres have Farrul's Wild Presence" + } + }, + stats={ + [1]="raised_beast_spectres_have_farruls_wild_presence" + } + }, + [9627]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Raised Beast Spectres have {0} additional modifiers randomly chosen in each Area" + } + }, + stats={ + [1]="raised_beast_spectres_have_x_random_modifiers_per_area" + } + }, + [9628]={ [1]={ [1]={ limit={ @@ -211970,7 +218589,7 @@ return { [1]="raised_zombie_%_chance_to_taunt" } }, - [9338]={ + [9629]={ [1]={ [1]={ limit={ @@ -211986,7 +218605,7 @@ return { [1]="raised_zombies_are_usable_as_corpses_when_alive" } }, - [9339]={ + [9630]={ [1]={ [1]={ limit={ @@ -212011,7 +218630,7 @@ return { [1]="raised_zombies_cover_in_ash_on_hit_%" } }, - [9340]={ + [9631]={ [1]={ [1]={ [1]={ @@ -212031,7 +218650,7 @@ return { [1]="raised_zombies_fire_damage_%_of_maximum_life_taken_per_minute" } }, - [9341]={ + [9632]={ [1]={ [1]={ [1]={ @@ -212051,7 +218670,7 @@ return { [1]="raised_zombies_have_avatar_of_fire" } }, - [9342]={ + [9633]={ [1]={ [1]={ [1]={ @@ -212071,7 +218690,7 @@ return { [1]="rallying_cry_buff_effect_1%_per_3_stat_value" } }, - [9343]={ + [9634]={ [1]={ [1]={ [1]={ @@ -212091,7 +218710,7 @@ return { [1]="rallying_cry_buff_effect_1%_per_5_stat_value" } }, - [9344]={ + [9635]={ [1]={ [1]={ limit={ @@ -212116,7 +218735,7 @@ return { [1]="rallying_cry_exerts_x_additional_attacks" } }, - [9345]={ + [9636]={ [1]={ [1]={ limit={ @@ -212132,7 +218751,7 @@ return { [1]="random_curse_on_hit_%_against_uncursed_enemies" } }, - [9346]={ + [9637]={ [1]={ [1]={ limit={ @@ -212157,7 +218776,7 @@ return { [1]="random_curse_when_hit_%_ignoring_curse_limit" } }, - [9347]={ + [9638]={ [1]={ [1]={ limit={ @@ -212173,7 +218792,7 @@ return { [1]="random_projectile_direction" } }, - [9348]={ + [9639]={ [1]={ [1]={ [1]={ @@ -212210,7 +218829,23 @@ return { [1]="ranger_hidden_ascendancy_non_damaging_elemental_ailment_effect_+%_final" } }, - [9349]={ + [9640]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Rare Beasts keep their Modifiers when Raised as Spectres" + } + }, + stats={ + [1]="rare_beasts_keep_modifiers_when_raised_as_spectres" + } + }, + [9641]={ [1]={ [1]={ limit={ @@ -212239,7 +218874,7 @@ return { [1]="rare_or_unique_monster_dropped_item_rarity_+%" } }, - [9350]={ + [9642]={ [1]={ [1]={ limit={ @@ -212255,7 +218890,7 @@ return { [1]="reap_debuff_deals_fire_damage_instead_of_physical_damage" } }, - [9351]={ + [9643]={ [1]={ [1]={ limit={ @@ -212284,7 +218919,7 @@ return { [1]="recall_sigil_target_search_range_+%" } }, - [9352]={ + [9644]={ [1]={ [1]={ [1]={ @@ -212304,7 +218939,7 @@ return { [1]="receive_bleeding_chance_%_when_hit_by_attack" } }, - [9353]={ + [9645]={ [1]={ [1]={ [1]={ @@ -212324,7 +218959,7 @@ return { [1]="received_attack_hits_have_impale_chance_%" } }, - [9354]={ + [9646]={ [1]={ [1]={ limit={ @@ -212340,7 +218975,7 @@ return { [1]="recharge_flasks_on_crit_while_affected_by_precision" } }, - [9355]={ + [9647]={ [1]={ [1]={ [1]={ @@ -212360,7 +218995,7 @@ return { [1]="recoup_%_of_damage_taken_by_your_totems_as_life" } }, - [9356]={ + [9648]={ [1]={ [1]={ limit={ @@ -212376,7 +219011,7 @@ return { [1]="recoup_effects_apply_over_3_seconds_instead" } }, - [9357]={ + [9649]={ [1]={ [1]={ limit={ @@ -212392,7 +219027,7 @@ return { [1]="recoup_life_effects_apply_over_3_seconds_instead" } }, - [9358]={ + [9650]={ [1]={ [1]={ limit={ @@ -212408,7 +219043,27 @@ return { [1]="recover_%_energy_shield_over_1_second_when_you_take_physical_damage_from_enemy_hits" } }, - [9359]={ + [9651]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextChill" + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Recover {0}% of Life when you Chill a non-Chilled Enemy" + } + }, + stats={ + [1]="recover_%_life_when_you_chill_a_non_chilled_enemy" + } + }, + [9652]={ [1]={ [1]={ limit={ @@ -212424,7 +219079,7 @@ return { [1]="recover_%_maximum_energy_shield_on_killing_cursed_enemy" } }, - [9360]={ + [9653]={ [1]={ [1]={ limit={ @@ -212440,7 +219095,7 @@ return { [1]="recover_%_maximum_life_on_killing_cursed_enemy" } }, - [9361]={ + [9654]={ [1]={ [1]={ limit={ @@ -212469,7 +219124,7 @@ return { [1]="recover_%_maximum_life_on_suppressing_spell" } }, - [9362]={ + [9655]={ [1]={ [1]={ limit={ @@ -212485,7 +219140,7 @@ return { [1]="recover_%_maximum_life_when_cursing_non_cursed_enemy" } }, - [9363]={ + [9656]={ [1]={ [1]={ limit={ @@ -212501,7 +219156,7 @@ return { [1]="recover_%_maximum_mana_when_cursing_non_cursed_enemy" } }, - [9364]={ + [9657]={ [1]={ [1]={ limit={ @@ -212517,7 +219172,7 @@ return { [1]="recover_10%_mana_on_skill_use_%_chance_while_affected_by_clarity" } }, - [9365]={ + [9658]={ [1]={ [1]={ [1]={ @@ -212537,7 +219192,7 @@ return { [1]="recover_1_life_per_x_life_regeneration_per_minute_every_4_seconds" } }, - [9366]={ + [9659]={ [1]={ [1]={ limit={ @@ -212553,7 +219208,7 @@ return { [1]="recover_X_life_on_enemy_ignited" } }, - [9367]={ + [9660]={ [1]={ [1]={ limit={ @@ -212569,7 +219224,7 @@ return { [1]="recover_X_life_on_suppressing_spell" } }, - [9368]={ + [9661]={ [1]={ [1]={ [1]={ @@ -212589,7 +219244,7 @@ return { [1]="recover_X_life_when_fortification_expires_per_fortification_lost" } }, - [9369]={ + [9662]={ [1]={ [1]={ limit={ @@ -212605,7 +219260,7 @@ return { [1]="recover_X_mana_on_killing_frozen_enemy" } }, - [9370]={ + [9663]={ [1]={ [1]={ limit={ @@ -212621,7 +219276,7 @@ return { [1]="recover_energy_shield_%_on_consuming_steel_shard" } }, - [9371]={ + [9664]={ [1]={ [1]={ limit={ @@ -212637,7 +219292,7 @@ return { [1]="recover_es_as_well_as_life_from_life_regeneration" } }, - [9372]={ + [9665]={ [1]={ [1]={ limit={ @@ -212653,7 +219308,7 @@ return { [1]="recover_life_for_ancestral_totem_equal_to_damage_taken_from_hits" } }, - [9373]={ + [9666]={ [1]={ [1]={ limit={ @@ -212669,7 +219324,7 @@ return { [1]="recover_maximum_life_on_enemy_killed_chance_%" } }, - [9374]={ + [9667]={ [1]={ [1]={ [1]={ @@ -212689,7 +219344,7 @@ return { [1]="recover_%_energy_shield_when_you_block_spell_damage_while_wielding_a_staff" } }, - [9375]={ + [9668]={ [1]={ [1]={ limit={ @@ -212705,7 +219360,7 @@ return { [1]="recover_%_life_when_gaining_adrenaline" } }, - [9376]={ + [9669]={ [1]={ [1]={ [1]={ @@ -212725,7 +219380,7 @@ return { [1]="recover_%_life_when_you_block_attack_damage_while_wielding_a_staff" } }, - [9377]={ + [9670]={ [1]={ [1]={ [1]={ @@ -212745,7 +219400,7 @@ return { [1]="recover_%_life_when_you_ignite_a_non_ignited_enemy" } }, - [9378]={ + [9671]={ [1]={ [1]={ [1]={ @@ -212765,7 +219420,7 @@ return { [1]="recover_%_life_when_you_use_a_life_flask_while_on_low_life" } }, - [9379]={ + [9672]={ [1]={ [1]={ limit={ @@ -212781,7 +219436,7 @@ return { [1]="recover_%_mana_when_attached_brand_expires" } }, - [9380]={ + [9673]={ [1]={ [1]={ limit={ @@ -212797,7 +219452,7 @@ return { [1]="recover_%_maximum_life_on_killing_chilled_enemy" } }, - [9381]={ + [9674]={ [1]={ [1]={ limit={ @@ -212813,7 +219468,7 @@ return { [1]="recover_%_maximum_life_on_killing_enemy_while_you_have_rage" } }, - [9382]={ + [9675]={ [1]={ [1]={ limit={ @@ -212829,7 +219484,7 @@ return { [1]="recover_%_maximum_life_on_killing_poisoned_enemy" } }, - [9383]={ + [9676]={ [1]={ [1]={ limit={ @@ -212858,7 +219513,7 @@ return { [1]="recover_%_maximum_mana_on_activating_tincture" } }, - [9384]={ + [9677]={ [1]={ [1]={ limit={ @@ -212887,7 +219542,7 @@ return { [1]="recover_%_maximum_mana_on_kill_while_tincture_active" } }, - [9385]={ + [9678]={ [1]={ [1]={ [1]={ @@ -212907,7 +219562,7 @@ return { [1]="recover_%_maximum_mana_when_enemy_frozen_permyriad" } }, - [9386]={ + [9679]={ [1]={ [1]={ limit={ @@ -212923,7 +219578,7 @@ return { [1]="recover_%_of_maximum_mana_over_1_second_on_guard_skill_use" } }, - [9387]={ + [9680]={ [1]={ [1]={ limit={ @@ -212939,7 +219594,7 @@ return { [1]="recover_%_of_skill_mana_cost_per_unspent_chain_up_to_50%" } }, - [9388]={ + [9681]={ [1]={ [1]={ [1]={ @@ -212959,7 +219614,7 @@ return { [1]="recover_permyriad_life_on_skill_use" } }, - [9389]={ + [9682]={ [1]={ [1]={ [1]={ @@ -212979,7 +219634,7 @@ return { [1]="recover_permyriad_maximum_life_per_poison_on_enemy_on_kill" } }, - [9390]={ + [9683]={ [1]={ [1]={ limit={ @@ -212995,7 +219650,7 @@ return { [1]="recover_x_energy_shield_on_spell_block" } }, - [9391]={ + [9684]={ [1]={ [1]={ limit={ @@ -213011,7 +219666,7 @@ return { [1]="recover_x_energy_shield_on_suppressing_spell" } }, - [9392]={ + [9685]={ [1]={ [1]={ limit={ @@ -213040,7 +219695,7 @@ return { [1]="reduce_enemy_chaos_resistance_%" } }, - [9393]={ + [9686]={ [1]={ [1]={ limit={ @@ -213056,7 +219711,7 @@ return { [1]="reduce_enemy_cold_resistance_%_while_affected_by_hatred" } }, - [9394]={ + [9687]={ [1]={ [1]={ limit={ @@ -213072,7 +219727,7 @@ return { [1]="reduce_enemy_fire_resistance_%_vs_blinded_enemies" } }, - [9395]={ + [9688]={ [1]={ [1]={ limit={ @@ -213088,7 +219743,7 @@ return { [1]="reduce_enemy_fire_resistance_%_while_affected_by_anger" } }, - [9396]={ + [9689]={ [1]={ [1]={ limit={ @@ -213104,7 +219759,7 @@ return { [1]="reduce_enemy_lightning_resistance_%_while_affected_by_wrath" } }, - [9397]={ + [9690]={ [1]={ [1]={ limit={ @@ -213120,7 +219775,7 @@ return { [1]="reflect_%_of_physical_damage_prevented" } }, - [9398]={ + [9691]={ [1]={ [1]={ limit={ @@ -213145,7 +219800,7 @@ return { [1]="reflect_chill_and_freeze_%_chance" } }, - [9399]={ + [9692]={ [1]={ [1]={ limit={ @@ -213174,7 +219829,7 @@ return { [1]="reflect_damage_taken_and_minion_reflect_damage_taken_+%" } }, - [9400]={ + [9693]={ [1]={ [1]={ [1]={ @@ -213207,7 +219862,7 @@ return { [1]="reflect_non_damaging_ailments_%_chance" } }, - [9401]={ + [9694]={ [1]={ [1]={ limit={ @@ -213223,7 +219878,7 @@ return { [1]="reflect_shocks" } }, - [9402]={ + [9695]={ [1]={ [1]={ limit={ @@ -213239,7 +219894,7 @@ return { [1]="reflect_shocks_to_enemies_in_radius" } }, - [9403]={ + [9696]={ [1]={ [1]={ limit={ @@ -213268,7 +219923,7 @@ return { [1]="reflected_physical_damage_taken_+%_while_affected_by_determination" } }, - [9404]={ + [9697]={ [1]={ [1]={ limit={ @@ -213284,7 +219939,7 @@ return { [1]="refresh_duration_of_shock_chill_ignite_on_enemy_when_cursing_enemy" } }, - [9405]={ + [9698]={ [1]={ [1]={ limit={ @@ -213300,7 +219955,7 @@ return { [1]="refresh_ignite_duration_on_critical_strike_chance_%" } }, - [9406]={ + [9699]={ [1]={ [1]={ limit={ @@ -213316,7 +219971,7 @@ return { [1]="regenerate_%_energy_shield_over_1_second_when_stunned" } }, - [9407]={ + [9700]={ [1]={ [1]={ limit={ @@ -213332,7 +219987,7 @@ return { [1]="regenerate_%_life_over_1_second_when_hit_while_affected_by_vitality" } }, - [9408]={ + [9701]={ [1]={ [1]={ limit={ @@ -213348,7 +220003,7 @@ return { [1]="regenerate_%_life_over_1_second_when_stunned" } }, - [9409]={ + [9702]={ [1]={ [1]={ [1]={ @@ -213368,7 +220023,7 @@ return { [1]="regenerate_1_rage_per_x_life_regeneration" } }, - [9410]={ + [9703]={ [1]={ [1]={ limit={ @@ -213384,7 +220039,7 @@ return { [1]="regenerate_1_rage_per_x_mana_regeneration" } }, - [9411]={ + [9704]={ [1]={ [1]={ limit={ @@ -213400,7 +220055,7 @@ return { [1]="regenerate_energy_shield_equal_to_%_evasion_rating_over_1_second_every_4_seconds" } }, - [9412]={ + [9705]={ [1]={ [1]={ limit={ @@ -213416,7 +220071,7 @@ return { [1]="regenerate_%_life_over_1_second_when_hit_while_not_unhinged" } }, - [9413]={ + [9706]={ [1]={ [1]={ limit={ @@ -213432,7 +220087,7 @@ return { [1]="regenerate_%_maximum_energy_shield_over_2_seconds_on_consuming_corpse" } }, - [9414]={ + [9707]={ [1]={ [1]={ limit={ @@ -213448,7 +220103,7 @@ return { [1]="regenerate_%_maximum_mana_over_2_seconds_on_consuming_corpse" } }, - [9415]={ + [9708]={ [1]={ [1]={ [1]={ @@ -213472,7 +220127,7 @@ return { [1]="regenerate_x_mana_per_minute_while_you_have_arcane_surge" } }, - [9416]={ + [9709]={ [1]={ [1]={ [1]={ @@ -213492,7 +220147,7 @@ return { [1]="remove_ailments_and_burning_on_gaining_adrenaline" } }, - [9417]={ + [9710]={ [1]={ [1]={ [1]={ @@ -213512,7 +220167,7 @@ return { [1]="base_remove_elemental_ailments_from_you_when_you_inflict_them" } }, - [9418]={ + [9711]={ [1]={ [1]={ [1]={ @@ -213532,7 +220187,7 @@ return { [1]="remove_all_damaging_ailments_on_warcry" } }, - [9419]={ + [9712]={ [1]={ [1]={ limit={ @@ -213548,7 +220203,7 @@ return { [1]="remove_bleed_on_life_flask_use" } }, - [9420]={ + [9713]={ [1]={ [1]={ limit={ @@ -213564,7 +220219,7 @@ return { [1]="remove_bleeding_on_warcry" } }, - [9421]={ + [9714]={ [1]={ [1]={ limit={ @@ -213580,7 +220235,7 @@ return { [1]="remove_chill_and_freeze_on_flask_use" } }, - [9422]={ + [9715]={ [1]={ [1]={ limit={ @@ -213596,7 +220251,7 @@ return { [1]="remove_curse_on_mana_flask_use" } }, - [9423]={ + [9716]={ [1]={ [1]={ [1]={ @@ -213616,7 +220271,7 @@ return { [1]="remove_damaging_ailments_on_swapping_stance" } }, - [9424]={ + [9717]={ [1]={ [1]={ [1]={ @@ -213649,7 +220304,7 @@ return { [1]="remove_elemental_ailments_on_curse_cast_%" } }, - [9425]={ + [9718]={ [1]={ [1]={ limit={ @@ -213665,7 +220320,7 @@ return { [1]="remove_ignite_and_burning_on_flask_use" } }, - [9426]={ + [9719]={ [1]={ [1]={ limit={ @@ -213681,7 +220336,7 @@ return { [1]="remove_maim_and_hinder_on_flask_use" } }, - [9427]={ + [9720]={ [1]={ [1]={ limit={ @@ -213697,7 +220352,31 @@ return { [1]="remove_%_of_mana_on_hit" } }, - [9428]={ + [9721]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextRage" + }, + [2]={ + k="reminderstring", + v="ReminderTextWildSavagery" + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Lose all Rage on reaching Maximum Rage and gain Wild Savagery\nfor 1 second per {0} Rage lost this way" + } + }, + stats={ + [1]="remove_rage_on_reaching_max_to_gain_adrenaline_for_1_second_per_x_rage_lost" + } + }, + [9722]={ [1]={ [1]={ limit={ @@ -213713,7 +220392,7 @@ return { [1]="remove_random_ailment_on_flask_use_if_all_equipped_items_are_elder" } }, - [9429]={ + [9723]={ [1]={ [1]={ limit={ @@ -213729,7 +220408,7 @@ return { [1]="remove_random_ailment_when_you_warcry" } }, - [9430]={ + [9724]={ [1]={ [1]={ limit={ @@ -213745,7 +220424,7 @@ return { [1]="remove_random_charge_on_hit_%" } }, - [9431]={ + [9725]={ [1]={ [1]={ [1]={ @@ -213765,7 +220444,7 @@ return { [1]="remove_random_elemental_ailment_on_mana_flask_use" } }, - [9432]={ + [9726]={ [1]={ [1]={ limit={ @@ -213781,7 +220460,7 @@ return { [1]="remove_random_non_elemental_ailment_on_life_flask_use" } }, - [9433]={ + [9727]={ [1]={ [1]={ limit={ @@ -213797,7 +220476,7 @@ return { [1]="remove_shock_on_flask_use" } }, - [9434]={ + [9728]={ [1]={ [1]={ limit={ @@ -213822,7 +220501,7 @@ return { [1]="remove_x_curses_after_channelling_for_2_seconds" } }, - [9435]={ + [9729]={ [1]={ [1]={ limit={ @@ -213851,7 +220530,7 @@ return { [1]="replica_unique_hyrris_truth_hatred_mana_reservation_+%_final" } }, - [9436]={ + [9730]={ [1]={ [1]={ limit={ @@ -213880,7 +220559,7 @@ return { [1]="reservation_efficiency_+%_with_unique_abyss_jewel_socketed" } }, - [9437]={ + [9731]={ [1]={ [1]={ [1]={ @@ -213913,7 +220592,7 @@ return { [1]="reserve_life_instead_of_loss_from_damage_for_x_ms" } }, - [9438]={ + [9732]={ [1]={ [1]={ limit={ @@ -213929,7 +220608,7 @@ return { [1]="resist_all_%" } }, - [9439]={ + [9733]={ [1]={ [1]={ limit={ @@ -213945,7 +220624,7 @@ return { [1]="resist_all_%_for_enemies_you_inflict_spiders_web_upon" } }, - [9440]={ + [9734]={ [1]={ [1]={ limit={ @@ -213961,7 +220640,7 @@ return { [1]="restore_energy_shield_and_mana_when_you_focus_%" } }, - [9441]={ + [9735]={ [1]={ [1]={ limit={ @@ -213986,7 +220665,7 @@ return { [1]="restore_ward_on_hit_%" } }, - [9442]={ + [9736]={ [1]={ [1]={ limit={ @@ -214015,7 +220694,7 @@ return { [1]="retaliation_skill_additional_use_window_duration_ms" } }, - [9443]={ + [9737]={ [1]={ [1]={ limit={ @@ -214044,7 +220723,7 @@ return { [1]="retaliation_skill_area_of_effect_+%" } }, - [9444]={ + [9738]={ [1]={ [1]={ limit={ @@ -214073,7 +220752,7 @@ return { [1]="retaliation_skill_cost_+%" } }, - [9445]={ + [9739]={ [1]={ [1]={ limit={ @@ -214102,7 +220781,7 @@ return { [1]="retaliation_skill_damage_+%" } }, - [9446]={ + [9740]={ [1]={ [1]={ [1]={ @@ -214122,7 +220801,7 @@ return { [1]="retaliation_skill_keep_use_requirement_and_prevent_cooldown_on_use_chance_%" } }, - [9447]={ + [9741]={ [1]={ [1]={ limit={ @@ -214151,7 +220830,7 @@ return { [1]="retaliation_skill_speed_+%" } }, - [9448]={ + [9742]={ [1]={ [1]={ limit={ @@ -214180,7 +220859,7 @@ return { [1]="retaliation_skill_stun_duration_+%" } }, - [9449]={ + [9743]={ [1]={ [1]={ [1]={ @@ -214217,7 +220896,7 @@ return { [1]="retaliation_skill_stun_threshold_+%" } }, - [9450]={ + [9744]={ [1]={ [1]={ [1]={ @@ -214254,7 +220933,27 @@ return { [1]="retaliation_skills_all_ailment_duration_+%" } }, - [9451]={ + [9745]={ + [1]={ + [1]={ + [1]={ + k="milliseconds_to_seconds_2dp_if_required", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Damaging Retaliation Skills become Usable every {0} seconds" + } + }, + stats={ + [1]="retaliation_skills_become_usable_every_x_ms" + } + }, + [9746]={ [1]={ [1]={ [1]={ @@ -214295,7 +220994,7 @@ return { [1]="retaliation_skills_debilitate_on_hit_ms" } }, - [9452]={ + [9747]={ [1]={ [1]={ [1]={ @@ -214315,7 +221014,7 @@ return { [1]="retaliation_skills_fortify_on_melee_hit" } }, - [9453]={ + [9748]={ [1]={ [1]={ [1]={ @@ -214339,7 +221038,7 @@ return { [1]="retaliation_skills_gain_X_rage_per_enemy_hit" } }, - [9454]={ + [9749]={ [1]={ [1]={ limit={ @@ -214368,7 +221067,7 @@ return { [1]="retaliation_use_window_duration_+%" } }, - [9455]={ + [9750]={ [1]={ [1]={ limit={ @@ -214397,7 +221096,7 @@ return { [1]="returned_projectile_speed_+%" } }, - [9456]={ + [9751]={ [1]={ [1]={ limit={ @@ -214413,7 +221112,7 @@ return { [1]="returning_projectiles_always_pierce" } }, - [9457]={ + [9752]={ [1]={ [1]={ [1]={ @@ -214446,7 +221145,7 @@ return { [1]="revive_golems_if_killed_by_enemies_ms" } }, - [9458]={ + [9753]={ [1]={ [1]={ [1]={ @@ -214479,7 +221178,7 @@ return { [1]="revive_spectre_if_killed_by_enemies_ms" } }, - [9459]={ + [9754]={ [1]={ [1]={ limit={ @@ -214495,7 +221194,7 @@ return { [1]="righteous_fire_and_fire_beam_regenerate_x_mana_per_second_while_enemies_are_within" } }, - [9460]={ + [9755]={ [1]={ [1]={ limit={ @@ -214524,7 +221223,7 @@ return { [1]="rogue_trader_map_rogue_exile_maximum_life_+%_final" } }, - [9461]={ + [9756]={ [1]={ [1]={ limit={ @@ -214558,7 +221257,7 @@ return { [2]="gem_display_rune_blast_is_gem" } }, - [9462]={ + [9757]={ [1]={ [1]={ limit={ @@ -214574,7 +221273,7 @@ return { [1]="rune_blast_teleports_to_detonated_rune_with_150_ms_cooldown" } }, - [9463]={ + [9758]={ [1]={ [1]={ limit={ @@ -214603,7 +221302,7 @@ return { [1]="runegraft_offhand_attack_speed_+%_final" } }, - [9464]={ + [9759]={ [1]={ [1]={ [1]={ @@ -214623,7 +221322,7 @@ return { [1]="ruthless_hits_intimidate_enemies_for_4_seconds" } }, - [9465]={ + [9760]={ [1]={ [1]={ limit={ @@ -214652,7 +221351,7 @@ return { [1]="sabotuer_mines_apply_damage_+%_to_nearby_enemies_up_to_-10%" } }, - [9466]={ + [9761]={ [1]={ [1]={ limit={ @@ -214681,7 +221380,7 @@ return { [1]="sabotuer_mines_apply_damage_taken_+%_to_nearby_enemies_up_to_10%" } }, - [9467]={ + [9762]={ [1]={ [1]={ limit={ @@ -214697,7 +221396,7 @@ return { [1]="sacrifice_%_life_to_fire_additional_arrow_for_each_100_life" } }, - [9468]={ + [9763]={ [1]={ [1]={ limit={ @@ -214722,7 +221421,7 @@ return { [1]="sacrifice_minion_to_fire_X_additional_arrows" } }, - [9469]={ + [9764]={ [1]={ [1]={ limit={ @@ -214738,7 +221437,7 @@ return { [1]="sacrifice_%_life_on_spell_skill" } }, - [9470]={ + [9765]={ [1]={ [1]={ limit={ @@ -214754,7 +221453,7 @@ return { [1]="sacrifice_%_maximum_life_to_gain_as_es_on_spell_cast" } }, - [9471]={ + [9766]={ [1]={ [1]={ limit={ @@ -214783,7 +221482,7 @@ return { [1]="sanctify_area_of_effect_+%_when_targeting_consecrated_ground" } }, - [9472]={ + [9767]={ [1]={ [1]={ limit={ @@ -214812,7 +221511,7 @@ return { [1]="sanctify_consecrated_ground_enemy_damage_taken_+%" } }, - [9473]={ + [9768]={ [1]={ [1]={ limit={ @@ -214841,7 +221540,7 @@ return { [1]="sanctify_damage_+%" } }, - [9474]={ + [9769]={ [1]={ [1]={ [1]={ @@ -214861,7 +221560,7 @@ return { [1]="sap_on_critical_strike_with_lightning_skills" } }, - [9475]={ + [9770]={ [1]={ [1]={ limit={ @@ -214890,7 +221589,7 @@ return { [1]="scorch_effect_+%" } }, - [9476]={ + [9771]={ [1]={ [1]={ [1]={ @@ -214914,7 +221613,7 @@ return { [1]="scorch_enemies_in_close_range_on_block" } }, - [9477]={ + [9772]={ [1]={ [1]={ limit={ @@ -214930,7 +221629,7 @@ return { [1]="scorched_enemies_explode_on_death_for_8%_life_as_fire_degen_chance" } }, - [9478]={ + [9773]={ [1]={ [1]={ limit={ @@ -214959,7 +221658,7 @@ return { [1]="scourge_arrow_damage_+%" } }, - [9479]={ + [9774]={ [1]={ [1]={ limit={ @@ -214988,7 +221687,7 @@ return { [1]="secondary_skill_effect_duration_+%" } }, - [9480]={ + [9775]={ [1]={ [1]={ limit={ @@ -215004,7 +221703,7 @@ return { [1]="seismic_cry_exerted_attack_damage_+%" } }, - [9481]={ + [9776]={ [1]={ [1]={ limit={ @@ -215020,7 +221719,7 @@ return { [1]="seismic_cry_minimum_power" } }, - [9482]={ + [9777]={ [1]={ [1]={ limit={ @@ -215049,7 +221748,7 @@ return { [1]="self_bleed_duration_+%" } }, - [9483]={ + [9778]={ [1]={ [1]={ limit={ @@ -215065,7 +221764,7 @@ return { [1]="self_cold_damage_on_reaching_maximum_power_charges" } }, - [9484]={ + [9779]={ [1]={ [1]={ limit={ @@ -215094,7 +221793,7 @@ return { [1]="self_critical_strike_multiplier_+%_while_ignited" } }, - [9485]={ + [9780]={ [1]={ [1]={ limit={ @@ -215123,7 +221822,7 @@ return { [1]="self_curse_duration_+%_per_10_devotion" } }, - [9486]={ + [9781]={ [1]={ [1]={ [1]={ @@ -215160,7 +221859,7 @@ return { [1]="self_damaging_ailment_duration_+%_per_barkskin_stack" } }, - [9487]={ + [9782]={ [1]={ [1]={ [1]={ @@ -215180,7 +221879,7 @@ return { [1]="self_debilitated" } }, - [9488]={ + [9783]={ [1]={ [1]={ [1]={ @@ -215217,7 +221916,7 @@ return { [1]="self_elemental_status_duration_-%_per_10_devotion" } }, - [9489]={ + [9784]={ [1]={ [1]={ limit={ @@ -215233,7 +221932,7 @@ return { [1]="self_physical_damage_on_movement_skill_use" } }, - [9490]={ + [9785]={ [1]={ [1]={ limit={ @@ -215249,7 +221948,7 @@ return { [1]="self_physical_damage_on_skill_use_%_max_life_per_warcry_exerting_action" } }, - [9491]={ + [9786]={ [1]={ [1]={ limit={ @@ -215278,7 +221977,7 @@ return { [1]="self_poison_duration_+%" } }, - [9492]={ + [9787]={ [1]={ [1]={ [1]={ @@ -215298,7 +221997,7 @@ return { [1]="self_take_no_extra_damage_from_critical_strikes_if_energy_shield_recharge_started_recently" } }, - [9493]={ + [9788]={ [1]={ [1]={ [1]={ @@ -215318,7 +222017,7 @@ return { [1]="self_take_no_extra_damage_from_critical_strikes_if_have_been_crit_recently" } }, - [9494]={ + [9789]={ [1]={ [1]={ limit={ @@ -215334,7 +222033,7 @@ return { [1]="self_take_no_extra_damage_from_critical_strikes_if_left_ring_is_magic_item" } }, - [9495]={ + [9790]={ [1]={ [1]={ limit={ @@ -215350,7 +222049,7 @@ return { [1]="self_take_no_extra_damage_from_critical_strikes_if_only_one_nearby_enemy" } }, - [9496]={ + [9791]={ [1]={ [1]={ limit={ @@ -215366,7 +222065,7 @@ return { [1]="self_take_no_extra_damage_from_critical_strikes_if_there_is_at_most_1_rare_or_unique_enemy_nearby" } }, - [9497]={ + [9792]={ [1]={ [1]={ limit={ @@ -215382,7 +222081,23 @@ return { [1]="self_take_no_extra_damage_from_critical_strikes_while_affected_by_elusive" } }, - [9498]={ + [9793]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Take no Extra Damage from Critical Strikes if you have Equipped Gloves with no Socketed Gems" + } + }, + stats={ + [1]="self_take_no_extra_damage_from_critical_strikes_while_no_gems_in_gloves" + } + }, + [9794]={ [1]={ [1]={ limit={ @@ -215411,7 +222126,7 @@ return { [1]="sentinel_minion_cooldown_speed_+%" } }, - [9499]={ + [9795]={ [1]={ [1]={ limit={ @@ -215440,7 +222155,7 @@ return { [1]="sentinel_of_purity_damage_+%" } }, - [9500]={ + [9796]={ [1]={ [1]={ limit={ @@ -215465,7 +222180,7 @@ return { [1]="serpent_strike_maximum_snakes" } }, - [9501]={ + [9797]={ [1]={ [1]={ [1]={ @@ -215485,7 +222200,7 @@ return { [1]="shatter_has_%_chance_to_cover_in_frost" } }, - [9502]={ + [9798]={ [1]={ [1]={ limit={ @@ -215501,7 +222216,7 @@ return { [1]="shatter_on_kill_vs_bleeding_enemies" } }, - [9503]={ + [9799]={ [1]={ [1]={ limit={ @@ -215517,7 +222232,7 @@ return { [1]="shatter_on_kill_vs_poisoned_enemies" } }, - [9504]={ + [9800]={ [1]={ [1]={ limit={ @@ -215533,7 +222248,7 @@ return { [1]="shatter_on_killing_blow_chance_%" } }, - [9505]={ + [9801]={ [1]={ [1]={ limit={ @@ -215562,7 +222277,7 @@ return { [1]="shattering_steel_damage_+%" } }, - [9506]={ + [9802]={ [1]={ [1]={ [1]={ @@ -215590,7 +222305,7 @@ return { [1]="shattering_steel_fortify_on_hit_close_range" } }, - [9507]={ + [9803]={ [1]={ [1]={ limit={ @@ -215615,7 +222330,7 @@ return { [1]="shattering_steel_number_of_additional_projectiles" } }, - [9508]={ + [9804]={ [1]={ [1]={ limit={ @@ -215631,7 +222346,7 @@ return { [1]="shattering_steel_%_chance_to_not_consume_ammo" } }, - [9509]={ + [9805]={ [1]={ [1]={ limit={ @@ -215647,7 +222362,7 @@ return { [1]="shield_crush_and_spectral_shield_throw_cannot_add_physical_damage_per_armour_and_evasion_rating" } }, - [9510]={ + [9806]={ [1]={ [1]={ limit={ @@ -215668,7 +222383,7 @@ return { [2]="shield_crush_and_spectral_shield_throw_off_hand_maximum_added_lightning_damage_per_15_energy_shield_on_shield" } }, - [9511]={ + [9807]={ [1]={ [1]={ limit={ @@ -215684,7 +222399,7 @@ return { [1]="shield_crush_and_spectral_shield_throw_skill_physical_damage_%_to_convert_to_lightning" } }, - [9512]={ + [9808]={ [1]={ [1]={ limit={ @@ -215713,7 +222428,7 @@ return { [1]="shield_crush_attack_speed_+%" } }, - [9513]={ + [9809]={ [1]={ [1]={ limit={ @@ -215742,7 +222457,7 @@ return { [1]="shield_crush_damage_+%" } }, - [9514]={ + [9810]={ [1]={ [1]={ limit={ @@ -215771,7 +222486,7 @@ return { [1]="shield_crush_helmet_enchantment_aoe_+%_final" } }, - [9515]={ + [9811]={ [1]={ [1]={ [1]={ @@ -215808,7 +222523,7 @@ return { [1]="shield_defences_+%_per_10_devotion" } }, - [9516]={ + [9812]={ [1]={ [1]={ limit={ @@ -215837,7 +222552,7 @@ return { [1]="shock_and_freeze_apply_elemental_damage_taken_+%" } }, - [9517]={ + [9813]={ [1]={ [1]={ [1]={ @@ -215870,7 +222585,7 @@ return { [1]="shock_attackers_for_4_seconds_on_block_%_chance" } }, - [9518]={ + [9814]={ [1]={ [1]={ limit={ @@ -215899,7 +222614,7 @@ return { [1]="shock_effect_+%_while_es_leeching" } }, - [9519]={ + [9815]={ [1]={ [1]={ limit={ @@ -215928,7 +222643,7 @@ return { [1]="shock_effect_against_cursed_enemies_+%" } }, - [9520]={ + [9816]={ [1]={ [1]={ limit={ @@ -215957,7 +222672,7 @@ return { [1]="shock_effect_+%" } }, - [9521]={ + [9817]={ [1]={ [1]={ limit={ @@ -215986,7 +222701,7 @@ return { [1]="shock_effect_+%_with_critical_strikes" } }, - [9522]={ + [9818]={ [1]={ [1]={ [1]={ @@ -216006,7 +222721,7 @@ return { [1]="shock_maximum_magnitude_is_60%" } }, - [9523]={ + [9819]={ [1]={ [1]={ [1]={ @@ -216026,7 +222741,7 @@ return { [1]="shock_maximum_magnitude_+" } }, - [9524]={ + [9820]={ [1]={ [1]={ [1]={ @@ -216050,7 +222765,7 @@ return { [1]="shock_self_for_x_ms_when_you_focus" } }, - [9525]={ + [9821]={ [1]={ [1]={ [1]={ @@ -216074,7 +222789,7 @@ return { [1]="shock_nearby_enemies_for_x_ms_when_you_focus" } }, - [9526]={ + [9822]={ [1]={ [1]={ [1]={ @@ -216094,7 +222809,7 @@ return { [1]="shock_nova_and_storm_call_all_damage_can_ignite" } }, - [9527]={ + [9823]={ [1]={ [1]={ [1]={ @@ -216114,7 +222829,7 @@ return { [1]="shock_nova_and_storm_call_ignite_damage_+100%_final_chance" } }, - [9528]={ + [9824]={ [1]={ [1]={ limit={ @@ -216130,7 +222845,7 @@ return { [1]="shock_nova_ring_chance_to_shock_+%" } }, - [9529]={ + [9825]={ [1]={ [1]={ limit={ @@ -216159,7 +222874,7 @@ return { [1]="shock_nova_ring_shocks_as_if_dealing_damage_+%_final" } }, - [9530]={ + [9826]={ [1]={ [1]={ limit={ @@ -216188,7 +222903,7 @@ return { [1]="shocked_chilled_effect_on_self_+%" } }, - [9531]={ + [9827]={ [1]={ [1]={ [1]={ @@ -216225,7 +222940,7 @@ return { [1]="shocked_effect_on_self_+%" } }, - [9532]={ + [9828]={ [1]={ [1]={ limit={ @@ -216241,7 +222956,7 @@ return { [1]="shocked_enemies_explode_for_%_life_as_lightning_damage" } }, - [9533]={ + [9829]={ [1]={ [1]={ limit={ @@ -216270,7 +222985,7 @@ return { [1]="shocked_ground_base_magnitude_override" } }, - [9534]={ + [9830]={ [1]={ [1]={ limit={ @@ -216295,7 +223010,7 @@ return { [1]="shocked_ground_on_death_%" } }, - [9535]={ + [9831]={ [1]={ [1]={ limit={ @@ -216320,7 +223035,7 @@ return { [1]="shrapnel_ballista_num_additional_arrows" } }, - [9536]={ + [9832]={ [1]={ [1]={ limit={ @@ -216345,7 +223060,7 @@ return { [1]="shrapnel_ballista_num_pierce" } }, - [9537]={ + [9833]={ [1]={ [1]={ limit={ @@ -216374,7 +223089,7 @@ return { [1]="shrapnel_ballista_projectile_speed_+%" } }, - [9538]={ + [9834]={ [1]={ [1]={ limit={ @@ -216403,7 +223118,7 @@ return { [1]="shrapnel_ballista_totems_from_this_skill_grant_shrapnel_ballista_attack_speed_-%" } }, - [9539]={ + [9835]={ [1]={ [1]={ limit={ @@ -216432,7 +223147,7 @@ return { [1]="galvanic_arrow_area_damage_+%" } }, - [9540]={ + [9836]={ [1]={ [1]={ limit={ @@ -216461,7 +223176,7 @@ return { [1]="shrapnel_trap_area_of_effect_+%" } }, - [9541]={ + [9837]={ [1]={ [1]={ limit={ @@ -216490,7 +223205,7 @@ return { [1]="shrapnel_trap_damage_+%" } }, - [9542]={ + [9838]={ [1]={ [1]={ limit={ @@ -216515,7 +223230,7 @@ return { [1]="shrapnel_trap_number_of_additional_secondary_explosions" } }, - [9543]={ + [9839]={ [1]={ [1]={ limit={ @@ -216544,7 +223259,7 @@ return { [1]="siege_ballista_totems_from_this_skill_grant_siege_ballista_attack_speed_-%" } }, - [9544]={ + [9840]={ [1]={ [1]={ [1]={ @@ -216581,7 +223296,7 @@ return { [1]="sigil_attached_target_damage_+%" } }, - [9545]={ + [9841]={ [1]={ [1]={ limit={ @@ -216610,7 +223325,7 @@ return { [1]="sigil_attached_target_damage_taken_+%" } }, - [9546]={ + [9842]={ [1]={ [1]={ [1]={ @@ -216647,7 +223362,7 @@ return { [1]="sigil_critical_strike_chance_+%" } }, - [9547]={ + [9843]={ [1]={ [1]={ [1]={ @@ -216667,7 +223382,7 @@ return { [1]="sigil_critical_strike_multiplier_+" } }, - [9548]={ + [9844]={ [1]={ [1]={ [1]={ @@ -216704,7 +223419,7 @@ return { [1]="sigil_damage_+%" } }, - [9549]={ + [9845]={ [1]={ [1]={ [1]={ @@ -216741,7 +223456,7 @@ return { [1]="sigil_damage_+%_per_10_devotion" } }, - [9550]={ + [9846]={ [1]={ [1]={ limit={ @@ -216770,7 +223485,7 @@ return { [1]="sigil_duration_+%" } }, - [9551]={ + [9847]={ [1]={ [1]={ limit={ @@ -216799,7 +223514,7 @@ return { [1]="sigil_recall_cooldown_speed_+%" } }, - [9552]={ + [9848]={ [1]={ [1]={ limit={ @@ -216828,7 +223543,7 @@ return { [1]="sigil_recall_cooldown_speed_+%_per_brand_up_to_40%" } }, - [9553]={ + [9849]={ [1]={ [1]={ limit={ @@ -216857,7 +223572,7 @@ return { [1]="sigil_repeat_frequency_+%" } }, - [9554]={ + [9850]={ [1]={ [1]={ [1]={ @@ -216894,7 +223609,7 @@ return { [1]="sigil_repeat_frequency_+%_if_havent_used_a_brand_skill_recently" } }, - [9555]={ + [9851]={ [1]={ [1]={ limit={ @@ -216923,7 +223638,7 @@ return { [1]="sigil_target_search_range_+%" } }, - [9556]={ + [9852]={ [1]={ [1]={ limit={ @@ -216952,7 +223667,7 @@ return { [1]="skeletal_chains_area_of_effect_+%" } }, - [9557]={ + [9853]={ [1]={ [1]={ limit={ @@ -216981,7 +223696,7 @@ return { [1]="skeletal_chains_cast_speed_+%" } }, - [9558]={ + [9854]={ [1]={ [1]={ limit={ @@ -217010,7 +223725,7 @@ return { [1]="skeleton_attack_speed_+%" } }, - [9559]={ + [9855]={ [1]={ [1]={ limit={ @@ -217039,7 +223754,7 @@ return { [1]="skeleton_cast_speed_+%" } }, - [9560]={ + [9856]={ [1]={ [1]={ limit={ @@ -217068,7 +223783,7 @@ return { [1]="skeleton_movement_speed_+%" } }, - [9561]={ + [9857]={ [1]={ [1]={ limit={ @@ -217084,7 +223799,7 @@ return { [1]="skeletons_and_holy_relics_convert_%_physical_damage_to_a_random_element" } }, - [9562]={ + [9858]={ [1]={ [1]={ [1]={ @@ -217104,7 +223819,7 @@ return { [1]="skeletons_and_holy_relics_+%_effect_of_non_damaging_ailments" } }, - [9563]={ + [9859]={ [1]={ [1]={ limit={ @@ -217120,7 +223835,36 @@ return { [1]="skeletons_are_permanent_minions" } }, - [9564]={ + [9860]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Skill Effect Duration for each Red Skill Gem you have socketed" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Skill Effect Duration for each Red Skill Gem you have socketed" + } + }, + stats={ + [1]="skill_effect_duration_+%_per_red_skill_gem" + } + }, + [9861]={ [1]={ [1]={ limit={ @@ -217149,7 +223893,7 @@ return { [1]="skill_effect_duration_+%_while_affected_by_malevolence" } }, - [9565]={ + [9862]={ [1]={ [1]={ limit={ @@ -217178,7 +223922,7 @@ return { [1]="skill_effect_duration_+%_with_bow_skills" } }, - [9566]={ + [9863]={ [1]={ [1]={ limit={ @@ -217207,7 +223951,7 @@ return { [1]="skill_effect_duration_+%_with_non_curse_aura_skills" } }, - [9567]={ + [9864]={ [1]={ [1]={ limit={ @@ -217223,7 +223967,7 @@ return { [1]="skill_life_cost_+_with_channelling_skills" } }, - [9568]={ + [9865]={ [1]={ [1]={ limit={ @@ -217239,7 +223983,7 @@ return { [1]="skill_life_cost_+_with_non_channelling_skills" } }, - [9569]={ + [9866]={ [1]={ [1]={ [1]={ @@ -217276,7 +224020,7 @@ return { [1]="skill_life_cost_+%_final_while_on_low_life" } }, - [9570]={ + [9867]={ [1]={ [1]={ limit={ @@ -217292,7 +224036,7 @@ return { [1]="skill_mana_cost_+_while_affected_by_clarity" } }, - [9571]={ + [9868]={ [1]={ [1]={ limit={ @@ -217308,7 +224052,7 @@ return { [1]="skill_mana_cost_+_with_channelling_skills" } }, - [9572]={ + [9869]={ [1]={ [1]={ limit={ @@ -217324,7 +224068,7 @@ return { [1]="base_mana_cost_+_with_channelling_skills" } }, - [9573]={ + [9870]={ [1]={ [1]={ limit={ @@ -217340,7 +224084,7 @@ return { [1]="skill_mana_cost_+_with_non_channelling_skills" } }, - [9574]={ + [9871]={ [1]={ [1]={ limit={ @@ -217356,7 +224100,7 @@ return { [1]="base_mana_cost_+_with_non_channelling_skills" } }, - [9575]={ + [9872]={ [1]={ [1]={ limit={ @@ -217372,7 +224116,7 @@ return { [1]="skill_mana_cost_+_with_non_channelling_skills_while_affected_by_clarity" } }, - [9576]={ + [9873]={ [1]={ [1]={ limit={ @@ -217388,7 +224132,7 @@ return { [1]="skills_cost_no_mana_while_focused" } }, - [9577]={ + [9874]={ [1]={ [1]={ limit={ @@ -217413,7 +224157,7 @@ return { [1]="skills_fire_x_additional_projectiles_for_4_seconds_after_consuming_8_steel_ammo" } }, - [9578]={ + [9875]={ [1]={ [1]={ [1]={ @@ -217433,7 +224177,7 @@ return { [1]="skills_gain_intensity_every_x_milliseconds_if_gained_intensity_recently" } }, - [9579]={ + [9876]={ [1]={ [1]={ [1]={ @@ -217453,7 +224197,7 @@ return { [1]="skills_lose_intensity_every_x_milliseconds_if_gained_intensity_recently" } }, - [9580]={ + [9877]={ [1]={ [1]={ [1]={ @@ -217490,7 +224234,7 @@ return { [1]="skills_supported_by_nightblade_have_elusive_effect_+%" } }, - [9581]={ + [9878]={ [1]={ [1]={ limit={ @@ -217506,7 +224250,7 @@ return { [1]="skills_that_throw_mines_reserve_life" } }, - [9582]={ + [9879]={ [1]={ [1]={ limit={ @@ -217522,7 +224266,7 @@ return { [1]="skip_life_sacrifice_chance_%" } }, - [9583]={ + [9880]={ [1]={ [1]={ [1]={ @@ -217555,7 +224299,7 @@ return { [1]="skitterbots_mana_reservation_efficiency_-2%_per_1" } }, - [9584]={ + [9881]={ [1]={ [1]={ limit={ @@ -217584,7 +224328,7 @@ return { [1]="skitterbots_mana_reservation_efficiency_+%" } }, - [9585]={ + [9882]={ [1]={ [1]={ [1]={ @@ -217621,7 +224365,7 @@ return { [1]="slayer_area_of_effect_+%_per_enemy_killed_recently_up_to_50%" } }, - [9586]={ + [9883]={ [1]={ [1]={ limit={ @@ -217637,7 +224381,7 @@ return { [1]="slayer_critical_strike_multiplier_+_per_nearby_enemy_up_to_100" } }, - [9587]={ + [9884]={ [1]={ [1]={ limit={ @@ -217666,7 +224410,7 @@ return { [1]="slayer_damage_+%_final_against_unique_enemies" } }, - [9588]={ + [9885]={ [1]={ [1]={ limit={ @@ -217695,7 +224439,7 @@ return { [1]="slayer_damage_+%_final_from_distance" } }, - [9589]={ + [9886]={ [1]={ [1]={ [1]={ @@ -217732,7 +224476,7 @@ return { [1]="slither_elusive_effect_+%" } }, - [9590]={ + [9887]={ [1]={ [1]={ [1]={ @@ -217757,7 +224501,7 @@ return { [2]="quality_display_withering_step_is_gem" } }, - [9591]={ + [9888]={ [1]={ [1]={ limit={ @@ -217773,7 +224517,7 @@ return { [1]="smite_aura_effect_+%" } }, - [9592]={ + [9889]={ [1]={ [1]={ limit={ @@ -217789,7 +224533,7 @@ return { [1]="smite_chance_for_lighting_to_strike_extra_target_%" } }, - [9593]={ + [9890]={ [1]={ [1]={ limit={ @@ -217818,7 +224562,7 @@ return { [1]="smite_damage_+%" } }, - [9594]={ + [9891]={ [1]={ [1]={ limit={ @@ -217834,7 +224578,7 @@ return { [1]="smite_static_strike_killing_blow_consumes_corpse_restore_%_life" } }, - [9595]={ + [9892]={ [1]={ [1]={ limit={ @@ -217863,7 +224607,7 @@ return { [1]="snapping_adder_damage_+%" } }, - [9596]={ + [9893]={ [1]={ [1]={ limit={ @@ -217879,7 +224623,7 @@ return { [1]="snapping_adder_%_chance_to_retain_projectile_on_release" } }, - [9597]={ + [9894]={ [1]={ [1]={ [1]={ @@ -217912,7 +224656,7 @@ return { [1]="snapping_adder_withered_on_hit_for_2_seconds_%_chance" } }, - [9598]={ + [9895]={ [1]={ [1]={ limit={ @@ -217941,7 +224685,7 @@ return { [1]="snipe_attack_speed_+%" } }, - [9599]={ + [9896]={ [1]={ [1]={ limit={ @@ -217962,7 +224706,43 @@ return { [2]="quality_display_snipe_is_gem" } }, - [9600]={ + [9897]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Non-Cluster, Non-Passage Jewels Socketed in your Passive Skill Tree have no effect" + } + }, + stats={ + [1]="socketed_non_cluster_jewels_have_no_effect" + } + }, + [9898]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextSoulEater" + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Soul Eater" + } + }, + stats={ + [1]="soul_eater_from_unique" + } + }, + [9899]={ [1]={ [1]={ limit={ @@ -217987,7 +224767,7 @@ return { [1]="soul_eater_maximum_stacks" } }, - [9601]={ + [9900]={ [1]={ [1]={ limit={ @@ -218016,7 +224796,7 @@ return { [1]="soul_link_duration_+%" } }, - [9602]={ + [9901]={ [1]={ [1]={ limit={ @@ -218037,7 +224817,7 @@ return { [2]="quality_display_forbidden_rite_is_gem" } }, - [9603]={ + [9902]={ [1]={ [1]={ [1]={ @@ -218074,7 +224854,7 @@ return { [1]="soulrend_applies_hinder_movement_speed_+%" } }, - [9604]={ + [9903]={ [1]={ [1]={ limit={ @@ -218103,7 +224883,7 @@ return { [1]="soulrend_damage_+%" } }, - [9605]={ + [9904]={ [1]={ [1]={ limit={ @@ -218128,7 +224908,7 @@ return { [1]="soulrend_number_of_additional_projectiles" } }, - [9606]={ + [9905]={ [1]={ [1]={ limit={ @@ -218153,7 +224933,7 @@ return { [1]="spark_number_of_additional_projectiles" } }, - [9607]={ + [9906]={ [1]={ [1]={ limit={ @@ -218169,7 +224949,7 @@ return { [1]="spark_projectiles_nova" } }, - [9608]={ + [9907]={ [1]={ [1]={ limit={ @@ -218198,7 +224978,7 @@ return { [1]="spark_skill_effect_duration_+%" } }, - [9609]={ + [9908]={ [1]={ [1]={ limit={ @@ -218223,7 +225003,7 @@ return { [1]="spark_totems_from_this_skill_grant_totemified_lightning_tendrils_larger_pulse_interval_-X_to_parent" } }, - [9610]={ + [9909]={ [1]={ [1]={ limit={ @@ -218252,7 +225032,7 @@ return { [1]="spectral_helix_damage_+%" } }, - [9611]={ + [9910]={ [1]={ [1]={ limit={ @@ -218281,7 +225061,7 @@ return { [1]="spectral_helix_projectile_speed_+%" } }, - [9612]={ + [9911]={ [1]={ [1]={ [1]={ @@ -218301,7 +225081,7 @@ return { [1]="spectral_helix_rotations_%" } }, - [9613]={ + [9912]={ [1]={ [1]={ limit={ @@ -218326,7 +225106,7 @@ return { [1]="spectral_shield_throw_additional_chains" } }, - [9614]={ + [9913]={ [1]={ [1]={ limit={ @@ -218355,7 +225135,7 @@ return { [1]="spectral_shield_throw_damage_+%" } }, - [9615]={ + [9914]={ [1]={ [1]={ limit={ @@ -218380,7 +225160,7 @@ return { [1]="spectral_shield_throw_num_of_additional_projectiles" } }, - [9616]={ + [9915]={ [1]={ [1]={ limit={ @@ -218409,7 +225189,7 @@ return { [1]="spectral_shield_throw_projectile_speed_+%" } }, - [9617]={ + [9916]={ [1]={ [1]={ limit={ @@ -218425,7 +225205,7 @@ return { [1]="spectral_shield_throw_secondary_projectiles_pierce" } }, - [9618]={ + [9917]={ [1]={ [1]={ [1]={ @@ -218454,7 +225234,7 @@ return { [1]="spectral_shield_throw_shard_projectiles_+%_final" } }, - [9619]={ + [9918]={ [1]={ [1]={ limit={ @@ -218479,7 +225259,7 @@ return { [1]="spectral_spiral_weapon_base_number_of_bounces" } }, - [9620]={ + [9919]={ [1]={ [1]={ [1]={ @@ -218499,7 +225279,7 @@ return { [1]="spectral_throw_an_spectral_helix_active_skill_projectile_speed_+%_variation_final" } }, - [9621]={ + [9920]={ [1]={ [1]={ limit={ @@ -218515,7 +225295,7 @@ return { [1]="spectral_throw_gain_vaal_soul_for_vaal_spectral_throw_on_hit_%" } }, - [9622]={ + [9921]={ [1]={ [1]={ limit={ @@ -218531,7 +225311,7 @@ return { [1]="spectre_maximum_life_+" } }, - [9623]={ + [9922]={ [1]={ [1]={ limit={ @@ -218560,7 +225340,7 @@ return { [1]="spectre_zombie_skeleton_critical_strike_multiplier_+" } }, - [9624]={ + [9923]={ [1]={ [1]={ [1]={ @@ -218580,7 +225360,7 @@ return { [1]="spectres_additional_base_critical_strike_chance" } }, - [9625]={ + [9924]={ [1]={ [1]={ [1]={ @@ -218600,7 +225380,7 @@ return { [1]="spectres_and_zombies_gain_adrenaline_for_X_seconds_when_raised" } }, - [9626]={ + [9925]={ [1]={ [1]={ limit={ @@ -218616,7 +225396,7 @@ return { [1]="spectres_base_maximum_all_resistances_%" } }, - [9627]={ + [9926]={ [1]={ [1]={ limit={ @@ -218645,7 +225425,7 @@ return { [1]="spectres_base_skill_area_of_effect_+%" } }, - [9628]={ + [9927]={ [1]={ [1]={ limit={ @@ -218661,7 +225441,7 @@ return { [1]="spectres_critical_strike_chance_+%" } }, - [9629]={ + [9928]={ [1]={ [1]={ [1]={ @@ -218681,7 +225461,7 @@ return { [1]="spectres_gain_arcane_surge_when_you_do" } }, - [9630]={ + [9929]={ [1]={ [1]={ [1]={ @@ -218701,7 +225481,7 @@ return { [1]="spectres_gain_soul_eater_for_20_seconds_on_kill_%_chance" } }, - [9631]={ + [9930]={ [1]={ [1]={ [1]={ @@ -218721,7 +225501,7 @@ return { [1]="spectres_have_base_duration_ms" } }, - [9632]={ + [9931]={ [1]={ [1]={ limit={ @@ -218737,7 +225517,7 @@ return { [1]="spectres_number_of_additional_projectiles" } }, - [9633]={ + [9932]={ [1]={ [1]={ limit={ @@ -218758,7 +225538,7 @@ return { [2]="spell_maximum_added_lightning_damage_per_10_intelligence" } }, - [9634]={ + [9933]={ [1]={ [1]={ [1]={ @@ -218778,7 +225558,7 @@ return { [1]="spell_additional_critical_strike_chance_permyriad" } }, - [9635]={ + [9934]={ [1]={ [1]={ [1]={ @@ -218802,7 +225582,7 @@ return { [1]="spell_and_attack_block_chance_is_lucky_if_blocked_recently" } }, - [9636]={ + [9935]={ [1]={ [1]={ limit={ @@ -218823,7 +225603,7 @@ return { [2]="spell_and_attack_maximum_added_chaos_damage_during_flask_effect" } }, - [9637]={ + [9936]={ [1]={ [1]={ limit={ @@ -218852,7 +225632,7 @@ return { [1]="spell_area_of_effect_+%" } }, - [9638]={ + [9937]={ [1]={ [1]={ limit={ @@ -218861,14 +225641,14 @@ return { [2]="#" } }, - text="Spells have an additional Life cost equal to {0}% of your Maximum Life" + text="Spells Cost {0:+d}% of Life" } }, stats={ [1]="spell_base_life_cost_%" } }, - [9639]={ + [9938]={ [1]={ [1]={ limit={ @@ -218884,7 +225664,7 @@ return { [1]="spell_block_%_per_minion" } }, - [9640]={ + [9939]={ [1]={ [1]={ limit={ @@ -218900,7 +225680,7 @@ return { [1]="spell_block_chance_%_while_holding_staff_or_shield" } }, - [9641]={ + [9940]={ [1]={ [1]={ [1]={ @@ -218920,7 +225700,7 @@ return { [1]="spell_block_is_maximum_if_not_blocked_recently" } }, - [9642]={ + [9941]={ [1]={ [1]={ [1]={ @@ -218940,7 +225720,7 @@ return { [1]="spell_block_%_if_blocked_a_spell_recently" } }, - [9643]={ + [9942]={ [1]={ [1]={ [1]={ @@ -218960,7 +225740,7 @@ return { [1]="spell_block_%_if_blocked_an_attack_recently" } }, - [9644]={ + [9943]={ [1]={ [1]={ limit={ @@ -218976,7 +225756,7 @@ return { [1]="spell_block_%_while_at_max_power_charges" } }, - [9645]={ + [9944]={ [1]={ [1]={ limit={ @@ -219001,7 +225781,7 @@ return { [1]="spell_chance_to_deal_double_damage_%" } }, - [9646]={ + [9945]={ [1]={ [1]={ limit={ @@ -219030,7 +225810,7 @@ return { [1]="spell_critical_strike_chance_+%_if_removed_maximum_number_of_seals" } }, - [9647]={ + [9946]={ [1]={ [1]={ limit={ @@ -219059,7 +225839,7 @@ return { [1]="spell_critical_strike_chance_+%_per_100_max_life" } }, - [9648]={ + [9947]={ [1]={ [1]={ limit={ @@ -219088,7 +225868,23 @@ return { [1]="spell_critical_strike_chance_+%_per_raised_spectre" } }, - [9649]={ + [9948]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Prevent +{0}% of Suppressed Spell Damage if you have not Suppressed Spell Damage Recently" + } + }, + stats={ + [1]="spell_damage_%_suppressed_if_not_suppressed_spell_recently" + } + }, + [9949]={ [1]={ [1]={ [1]={ @@ -219116,7 +225912,7 @@ return { [1]="spell_damage_%_suppressed_if_taken_a_savage_hit_recently" } }, - [9650]={ + [9950]={ [1]={ [1]={ limit={ @@ -219132,7 +225928,7 @@ return { [1]="spell_damage_%_suppressed_per_bark_below_max" } }, - [9651]={ + [9951]={ [1]={ [1]={ [1]={ @@ -219152,7 +225948,7 @@ return { [1]="spell_damage_%_suppressed_per_hit_suppressed_recently" } }, - [9652]={ + [9952]={ [1]={ [1]={ [1]={ @@ -219189,7 +225985,7 @@ return { [1]="spell_damage_+%_final_if_you_have_been_stunned_while_casting_recently" } }, - [9653]={ + [9953]={ [1]={ [1]={ [1]={ @@ -219226,7 +226022,7 @@ return { [1]="spell_damage_+%_if_have_crit_recently" } }, - [9654]={ + [9954]={ [1]={ [1]={ limit={ @@ -219255,7 +226051,36 @@ return { [1]="spell_damage_+%_per_500_maximum_mana" } }, - [9655]={ + [9955]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Spell Damage per Summoned Skeleton" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Spell Damage per Summoned Skeleton" + } + }, + stats={ + [1]="spell_damage_+%_per_summoned_skeleton" + } + }, + [9956]={ [1]={ [1]={ limit={ @@ -219284,7 +226109,7 @@ return { [1]="spell_damage_+%_during_flask_effect" } }, - [9656]={ + [9957]={ [1]={ [1]={ limit={ @@ -219313,7 +226138,7 @@ return { [1]="spell_damage_+%_if_have_crit_in_past_8_seconds" } }, - [9657]={ + [9958]={ [1]={ [1]={ limit={ @@ -219342,7 +226167,7 @@ return { [1]="spell_damage_+%_if_you_have_blocked_recently" } }, - [9658]={ + [9959]={ [1]={ [1]={ limit={ @@ -219371,7 +226196,7 @@ return { [1]="spell_damage_+%_per_100_max_life" } }, - [9659]={ + [9960]={ [1]={ [1]={ limit={ @@ -219400,7 +226225,7 @@ return { [1]="spell_damage_+%_per_100_maximum_mana_up_to_60%" } }, - [9660]={ + [9961]={ [1]={ [1]={ limit={ @@ -219429,7 +226254,7 @@ return { [1]="spell_damage_+%_per_10_strength" } }, - [9661]={ + [9962]={ [1]={ [1]={ limit={ @@ -219458,7 +226283,7 @@ return { [1]="spell_damage_+%_per_16_dex" } }, - [9662]={ + [9963]={ [1]={ [1]={ limit={ @@ -219487,7 +226312,7 @@ return { [1]="spell_damage_+%_per_16_int" } }, - [9663]={ + [9964]={ [1]={ [1]={ limit={ @@ -219516,7 +226341,7 @@ return { [1]="spell_damage_+%_per_16_strength" } }, - [9664]={ + [9965]={ [1]={ [1]={ limit={ @@ -219532,7 +226357,7 @@ return { [1]="spell_damage_+%_per_5%_spell_block_chance" } }, - [9665]={ + [9966]={ [1]={ [1]={ limit={ @@ -219561,7 +226386,7 @@ return { [1]="spell_damage_+%_while_shocked" } }, - [9666]={ + [9967]={ [1]={ [1]={ limit={ @@ -219590,7 +226415,7 @@ return { [1]="spell_damage_+%_while_you_have_arcane_surge" } }, - [9667]={ + [9968]={ [1]={ [1]={ limit={ @@ -219615,7 +226440,7 @@ return { [1]="spell_hits_against_you_inflict_poison_%" } }, - [9668]={ + [9969]={ [1]={ [1]={ [1]={ @@ -219648,7 +226473,7 @@ return { [1]="spell_impale_on_crit_%_chance" } }, - [9669]={ + [9970]={ [1]={ [1]={ limit={ @@ -219664,7 +226489,7 @@ return { [1]="spell_physical_damage_%_to_convert_to_fire" } }, - [9670]={ + [9971]={ [1]={ [1]={ limit={ @@ -219680,7 +226505,7 @@ return { [1]="spell_projectiles_arrive_instantly" } }, - [9671]={ + [9972]={ [1]={ [1]={ limit={ @@ -219696,7 +226521,7 @@ return { [1]="spell_skills_always_crit_on_final_repeat" } }, - [9672]={ + [9973]={ [1]={ [1]={ limit={ @@ -219712,7 +226537,7 @@ return { [1]="spell_skills_critical_strike_multiplier_+_on_final_repeat" } }, - [9673]={ + [9974]={ [1]={ [1]={ limit={ @@ -219728,7 +226553,7 @@ return { [1]="spell_skills_deal_no_damage" } }, - [9674]={ + [9975]={ [1]={ [1]={ limit={ @@ -219744,7 +226569,7 @@ return { [1]="spell_skills_never_crit_except_on_final_repeat" } }, - [9675]={ + [9976]={ [1]={ [1]={ limit={ @@ -219760,7 +226585,7 @@ return { [1]="spell_suppression_chance_%_if_all_equipment_grants_evasion" } }, - [9676]={ + [9977]={ [1]={ [1]={ [1]={ @@ -219784,7 +226609,7 @@ return { [1]="spell_suppression_chance_%_if_enemy_hit_recently" } }, - [9677]={ + [9978]={ [1]={ [1]={ [1]={ @@ -219804,7 +226629,7 @@ return { [1]="spell_suppression_chance_%_per_endurance_charge" } }, - [9678]={ + [9979]={ [1]={ [1]={ [1]={ @@ -219824,7 +226649,7 @@ return { [1]="spell_suppression_chance_%_per_equipped_dagger" } }, - [9679]={ + [9980]={ [1]={ [1]={ [1]={ @@ -219844,7 +226669,7 @@ return { [1]="spell_suppression_chance_%_per_hit_suppressed_recently" } }, - [9680]={ + [9981]={ [1]={ [1]={ [1]={ @@ -219864,7 +226689,7 @@ return { [1]="spell_suppression_chance_%_per_power_charge" } }, - [9681]={ + [9982]={ [1]={ [1]={ [1]={ @@ -219884,7 +226709,7 @@ return { [1]="spell_suppression_chance_%_while_affected_by_grace" } }, - [9682]={ + [9983]={ [1]={ [1]={ [1]={ @@ -219904,7 +226729,7 @@ return { [1]="spell_suppression_chance_%_while_affected_by_haste" } }, - [9683]={ + [9984]={ [1]={ [1]={ [1]={ @@ -219924,7 +226749,7 @@ return { [1]="spell_suppression_chance_%_while_channelling" } }, - [9684]={ + [9985]={ [1]={ [1]={ [1]={ @@ -219944,7 +226769,7 @@ return { [1]="spell_suppression_chance_%_while_holding_shield" } }, - [9685]={ + [9986]={ [1]={ [1]={ [1]={ @@ -219964,7 +226789,7 @@ return { [1]="spell_suppression_chance_%_while_moving" } }, - [9686]={ + [9987]={ [1]={ [1]={ [1]={ @@ -219984,7 +226809,7 @@ return { [1]="spell_suppression_chance_%_while_off_hand_empty" } }, - [9687]={ + [9988]={ [1]={ [1]={ [1]={ @@ -220004,7 +226829,7 @@ return { [1]="spell_suppression_chance_%_while_phasing" } }, - [9688]={ + [9989]={ [1]={ [1]={ limit={ @@ -220020,7 +226845,7 @@ return { [1]="spell_suppression_chance_is_lucky" } }, - [9689]={ + [9990]={ [1]={ [1]={ [1]={ @@ -220040,7 +226865,23 @@ return { [1]="spell_suppression_chance_modifiers_apply_to_avoid_all_elemental_ailments_at_%_value" } }, - [9690]={ + [9991]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Modifiers to Chance to Suppress Spell Damage also apply to Chance to Defend with 200% of Armour at {0}% of their Value" + } + }, + stats={ + [1]="spell_suppression_chance_modifiers_apply_to_chance_to_double_armour_effect_on_hit_at_%_value" + } + }, + [9992]={ [1]={ [1]={ [1]={ @@ -220064,7 +226905,7 @@ return { [1]="spell_suppression_chance_%_if_suppressed_spell_recently" } }, - [9691]={ + [9993]={ [1]={ [1]={ [1]={ @@ -220084,7 +226925,7 @@ return { [1]="spell_suppression_chance_%_while_on_full_energy_shield" } }, - [9692]={ + [9994]={ [1]={ [1]={ [1]={ @@ -220104,7 +226945,7 @@ return { [1]="spell_suppression_chance_%_while_on_full_life" } }, - [9693]={ + [9995]={ [1]={ [1]={ [1]={ @@ -220124,7 +226965,7 @@ return { [1]="spells_chance_to_blind_on_hit_%" } }, - [9694]={ + [9996]={ [1]={ [1]={ [1]={ @@ -220157,7 +226998,7 @@ return { [1]="spells_chance_to_hinder_on_hit_%" } }, - [9695]={ + [9997]={ [1]={ [1]={ limit={ @@ -220173,7 +227014,7 @@ return { [1]="spells_chance_to_knockback_on_hit_%" } }, - [9696]={ + [9998]={ [1]={ [1]={ [1]={ @@ -220193,7 +227034,7 @@ return { [1]="spells_chance_to_poison_on_hit_%" } }, - [9697]={ + [9999]={ [1]={ [1]={ [1]={ @@ -220226,7 +227067,7 @@ return { [1]="spells_corrosion_on_hit_%" } }, - [9698]={ + [10000]={ [1]={ [1]={ [1]={ @@ -220246,7 +227087,7 @@ return { [1]="spells_impale_on_hit_%_chance" } }, - [9699]={ + [10001]={ [1]={ [1]={ [1]={ @@ -220266,7 +227107,7 @@ return { [1]="spells_inflict_intimidate_on_crit" } }, - [9700]={ + [10002]={ [1]={ [1]={ limit={ @@ -220282,7 +227123,7 @@ return { [1]="spells_you_cast_gain_%_of_weapon_damage_as_added_spell_damage" } }, - [9701]={ + [10003]={ [1]={ [1]={ limit={ @@ -220298,7 +227139,7 @@ return { [1]="spells_you_cast_gain_added_physical_damage_%_life_cost_if_payable" } }, - [9702]={ + [10004]={ [1]={ [1]={ limit={ @@ -220314,7 +227155,7 @@ return { [1]="spells_you_cast_gain_%_of_base_main_hand_weapon_damage_as_added_spell_damage" } }, - [9703]={ + [10005]={ [1]={ [1]={ limit={ @@ -220343,7 +227184,7 @@ return { [1]="spellslinger_cooldown_duration_+%" } }, - [9704]={ + [10006]={ [1]={ [1]={ [1]={ @@ -220376,7 +227217,7 @@ return { [1]="spellslinger_mana_reservation_efficiency_-2%_per_1" } }, - [9705]={ + [10007]={ [1]={ [1]={ limit={ @@ -220405,7 +227246,7 @@ return { [1]="spellslinger_mana_reservation_efficiency_+%" } }, - [9706]={ + [10008]={ [1]={ [1]={ limit={ @@ -220434,7 +227275,7 @@ return { [1]="spellslinger_mana_reservation_+%" } }, - [9707]={ + [10009]={ [1]={ [1]={ limit={ @@ -220463,7 +227304,7 @@ return { [1]="spider_aspect_debuff_duration_+%" } }, - [9708]={ + [10010]={ [1]={ [1]={ limit={ @@ -220479,7 +227320,7 @@ return { [1]="spider_aspect_reserves_no_mana" } }, - [9709]={ + [10011]={ [1]={ [1]={ limit={ @@ -220508,7 +227349,7 @@ return { [1]="spider_aspect_skill_area_of_effect_+%" } }, - [9710]={ + [10012]={ [1]={ [1]={ [1]={ @@ -220528,7 +227369,7 @@ return { [1]="spider_aspect_web_interval_ms_override" } }, - [9711]={ + [10013]={ [1]={ [1]={ limit={ @@ -220562,7 +227403,7 @@ return { [2]="quality_display_spike_slam_is_gem" } }, - [9712]={ + [10014]={ [1]={ [1]={ limit={ @@ -220591,7 +227432,7 @@ return { [1]="spirit_offering_critical_strike_chance_+%" } }, - [9713]={ + [10015]={ [1]={ [1]={ limit={ @@ -220607,7 +227448,7 @@ return { [1]="spirit_offering_critical_strike_multiplier_+" } }, - [9714]={ + [10016]={ [1]={ [1]={ limit={ @@ -220623,7 +227464,7 @@ return { [1]="split_arrow_projectiles_fire_in_parallel_x_dist" } }, - [9715]={ + [10017]={ [1]={ [1]={ limit={ @@ -220652,7 +227493,7 @@ return { [1]="splitting_steel_area_of_effect_+%" } }, - [9716]={ + [10018]={ [1]={ [1]={ limit={ @@ -220681,7 +227522,7 @@ return { [1]="splitting_steel_area_of_effect_+%" } }, - [9717]={ + [10019]={ [1]={ [1]={ limit={ @@ -220710,7 +227551,7 @@ return { [1]="splitting_steel_damage_+%" } }, - [9718]={ + [10020]={ [1]={ [1]={ limit={ @@ -220726,7 +227567,7 @@ return { [1]="spread_freeze_to_nearby_enemies" } }, - [9719]={ + [10021]={ [1]={ [1]={ limit={ @@ -220742,7 +227583,7 @@ return { [1]="spread_ignite_to_nearby_enemies" } }, - [9720]={ + [10022]={ [1]={ [1]={ [1]={ @@ -220766,7 +227607,7 @@ return { [1]="life_regeneration_per_minute_in_blood_stance" } }, - [9721]={ + [10023]={ [1]={ [1]={ [1]={ @@ -220803,7 +227644,7 @@ return { [1]="projectile_damage_+%_in_blood_stance" } }, - [9722]={ + [10024]={ [1]={ [1]={ limit={ @@ -220832,7 +227673,7 @@ return { [1]="evasion_rating_plus_in_sand_stance" } }, - [9723]={ + [10025]={ [1]={ [1]={ limit={ @@ -220861,7 +227702,7 @@ return { [1]="stance_skill_cooldown_speed_+%" } }, - [9724]={ + [10026]={ [1]={ [1]={ limit={ @@ -220890,7 +227731,7 @@ return { [1]="stance_skills_mana_reservation_efficiency_+%" } }, - [9725]={ + [10027]={ [1]={ [1]={ limit={ @@ -220919,7 +227760,7 @@ return { [1]="stance_skill_reservation_+%" } }, - [9726]={ + [10028]={ [1]={ [1]={ limit={ @@ -220948,7 +227789,7 @@ return { [1]="skill_area_of_effect_+%_in_sand_stance" } }, - [9727]={ + [10029]={ [1]={ [1]={ [1]={ @@ -220968,7 +227809,7 @@ return { [1]="stance_swap_cooldown_modifier_ms" } }, - [9728]={ + [10030]={ [1]={ [1]={ [1]={ @@ -221005,7 +227846,7 @@ return { [1]="attack_speed_+%_if_changed_stance_recently" } }, - [9729]={ + [10031]={ [1]={ [1]={ limit={ @@ -221021,7 +227862,7 @@ return { [1]="static_strike_additional_number_of_beam_targets" } }, - [9730]={ + [10032]={ [1]={ [1]={ [1]={ @@ -221058,7 +227899,7 @@ return { [1]="status_ailments_you_inflict_duration_+%_while_focused" } }, - [9731]={ + [10033]={ [1]={ [1]={ [1]={ @@ -221095,7 +227936,44 @@ return { [1]="status_ailments_you_inflict_duration_+%_with_bows" } }, - [9732]={ + [10034]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextElusive" + }, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Stealth while Elusive" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + [2]={ + k="reminderstring", + v="ReminderTextElusive" + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Stealth while Elusive" + } + }, + stats={ + [1]="stealth_+%_while_affected_by_elusive" + } + }, + [10035]={ [1]={ [1]={ limit={ @@ -221124,7 +228002,7 @@ return { [1]="stealth_+%" } }, - [9733]={ + [10036]={ [1]={ [1]={ limit={ @@ -221153,7 +228031,7 @@ return { [1]="stealth_+%_if_have_hit_with_claw_recently" } }, - [9734]={ + [10037]={ [1]={ [1]={ limit={ @@ -221182,7 +228060,7 @@ return { [1]="steel_steal_area_of_effect_+%" } }, - [9735]={ + [10038]={ [1]={ [1]={ limit={ @@ -221211,7 +228089,7 @@ return { [1]="steel_steal_cast_speed_+%" } }, - [9736]={ + [10039]={ [1]={ [1]={ limit={ @@ -221240,7 +228118,7 @@ return { [1]="steel_steal_reflect_damage_+%" } }, - [9737]={ + [10040]={ [1]={ [1]={ limit={ @@ -221269,7 +228147,7 @@ return { [1]="steelskin_damage_limit_+%" } }, - [9738]={ + [10041]={ [1]={ [1]={ limit={ @@ -221298,7 +228176,7 @@ return { [1]="stibnite_flask_evasion_rating_+%_final" } }, - [9739]={ + [10042]={ [1]={ [1]={ [1]={ @@ -221318,7 +228196,7 @@ return { [1]="stone_golem_impale_on_hit_if_same_number_of_summoned_carrion_golems" } }, - [9740]={ + [10043]={ [1]={ [1]={ limit={ @@ -221334,7 +228212,7 @@ return { [1]="storm_armageddon_sigils_can_target_reaper_minions" } }, - [9741]={ + [10044]={ [1]={ [1]={ limit={ @@ -221363,7 +228241,7 @@ return { [1]="storm_blade_has_local_attack_speed_+%" } }, - [9742]={ + [10045]={ [1]={ [1]={ limit={ @@ -221379,7 +228257,7 @@ return { [1]="storm_blade_has_local_lightning_penetration_%" } }, - [9743]={ + [10046]={ [1]={ [1]={ limit={ @@ -221395,7 +228273,7 @@ return { [1]="storm_blade_quality_attack_lightning_damage_%_to_convert_to_chaos" } }, - [9744]={ + [10047]={ [1]={ [1]={ limit={ @@ -221411,7 +228289,7 @@ return { [1]="storm_blade_quality_chance_to_shock_%" } }, - [9745]={ + [10048]={ [1]={ [1]={ limit={ @@ -221440,7 +228318,7 @@ return { [1]="storm_blade_quality_local_critical_strike_chance_+%" } }, - [9746]={ + [10049]={ [1]={ [1]={ limit={ @@ -221456,7 +228334,7 @@ return { [1]="storm_brand_additional_chain_chance_%" } }, - [9747]={ + [10050]={ [1]={ [1]={ limit={ @@ -221472,7 +228350,7 @@ return { [1]="storm_brand_attached_target_lightning_penetration_%" } }, - [9748]={ + [10051]={ [1]={ [1]={ limit={ @@ -221501,7 +228379,7 @@ return { [1]="storm_brand_damage_+%" } }, - [9749]={ + [10052]={ [1]={ [1]={ limit={ @@ -221517,7 +228395,7 @@ return { [1]="storm_burst_15_%_chance_to_create_additional_orb" } }, - [9750]={ + [10053]={ [1]={ [1]={ limit={ @@ -221533,7 +228411,7 @@ return { [1]="storm_burst_additional_object_chance_%" } }, - [9751]={ + [10054]={ [1]={ [1]={ limit={ @@ -221562,7 +228440,7 @@ return { [1]="storm_burst_area_of_effect_+%" } }, - [9752]={ + [10055]={ [1]={ [1]={ limit={ @@ -221578,7 +228456,7 @@ return { [1]="storm_burst_avoid_interruption_while_casting_%" } }, - [9753]={ + [10056]={ [1]={ [1]={ limit={ @@ -221603,7 +228481,7 @@ return { [1]="storm_burst_number_of_additional_projectiles" } }, - [9754]={ + [10057]={ [1]={ [1]={ limit={ @@ -221632,7 +228510,7 @@ return { [1]="storm_rain_damage_+%" } }, - [9755]={ + [10058]={ [1]={ [1]={ limit={ @@ -221657,7 +228535,7 @@ return { [1]="storm_rain_num_additional_arrows" } }, - [9756]={ + [10059]={ [1]={ [1]={ limit={ @@ -221686,7 +228564,7 @@ return { [1]="stormbind_skill_area_of_effect_+%" } }, - [9757]={ + [10060]={ [1]={ [1]={ limit={ @@ -221715,7 +228593,7 @@ return { [1]="stormbind_skill_damage_+%" } }, - [9758]={ + [10061]={ [1]={ [1]={ limit={ @@ -221744,7 +228622,7 @@ return { [1]="stormblast_icicle_pyroclast_mine_aura_effect_+%" } }, - [9759]={ + [10062]={ [1]={ [1]={ limit={ @@ -221760,7 +228638,7 @@ return { [1]="stormblast_icicle_pyroclast_mine_base_deal_no_damage" } }, - [9760]={ + [10063]={ [1]={ [1]={ limit={ @@ -221776,7 +228654,7 @@ return { [1]="strength_applies_to_fish_reel_speed_at_20%_value" } }, - [9761]={ + [10064]={ [1]={ [1]={ limit={ @@ -221792,7 +228670,7 @@ return { [1]="strength_damage_bonus_grants_melee_physical_damage_+3%_per_10_strength_instead" } }, - [9762]={ + [10065]={ [1]={ [1]={ limit={ @@ -221808,7 +228686,7 @@ return { [1]="strength_skill_gem_level_+" } }, - [9763]={ + [10066]={ [1]={ [1]={ [1]={ @@ -221828,7 +228706,7 @@ return { [1]="strike_skills_fortify_on_hit" } }, - [9764]={ + [10067]={ [1]={ [1]={ limit={ @@ -221844,7 +228722,7 @@ return { [1]="strike_skills_knockback_on_melee_hit" } }, - [9765]={ + [10068]={ [1]={ [1]={ limit={ @@ -221873,7 +228751,7 @@ return { [1]="strongest_packmate_multiplier_+%_final" } }, - [9766]={ + [10069]={ [1]={ [1]={ limit={ @@ -221889,7 +228767,7 @@ return { [1]="stun_duration_on_critical_strike_+%" } }, - [9767]={ + [10070]={ [1]={ [1]={ limit={ @@ -221918,7 +228796,7 @@ return { [1]="stun_duration_+%_per_15_strength" } }, - [9768]={ + [10071]={ [1]={ [1]={ limit={ @@ -221947,7 +228825,7 @@ return { [1]="stun_duration_+%_per_endurance_charge" } }, - [9769]={ + [10072]={ [1]={ [1]={ limit={ @@ -221963,7 +228841,7 @@ return { [1]="stun_nearby_enemies_when_stunned_chance_%" } }, - [9770]={ + [10073]={ [1]={ [1]={ [1]={ @@ -221983,7 +228861,31 @@ return { [1]="stun_threshold_based_on_%_energy_shield_instead_of_life" } }, - [9771]={ + [10074]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextOvercappedResistance" + }, + [2]={ + k="reminderstring", + v="ReminderTextUncappedResist" + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Stun Threshold is increased by Overcapped Fire Resistance" + } + }, + stats={ + [1]="stun_threshold_increased_by_overcapped_fire_resistance" + } + }, + [10075]={ [1]={ [1]={ [1]={ @@ -222003,7 +228905,7 @@ return { [1]="stun_threshold_+%_per_rage" } }, - [9772]={ + [10076]={ [1]={ [1]={ [1]={ @@ -222023,7 +228925,7 @@ return { [1]="stun_threshold_reduction_+%_with_500_or_more_strength" } }, - [9773]={ + [10077]={ [1]={ [1]={ limit={ @@ -222039,7 +228941,7 @@ return { [1]="summon_2_totems" } }, - [9774]={ + [10078]={ [1]={ [1]={ limit={ @@ -222068,7 +228970,7 @@ return { [1]="summon_arbalist_attack_speed_+%" } }, - [9775]={ + [10079]={ [1]={ [1]={ limit={ @@ -222084,7 +228986,7 @@ return { [1]="summon_arbalist_chains_+" } }, - [9776]={ + [10080]={ [1]={ [1]={ [1]={ @@ -222104,7 +229006,7 @@ return { [1]="summon_arbalist_chance_to_bleed_%" } }, - [9777]={ + [10081]={ [1]={ [1]={ [1]={ @@ -222124,7 +229026,7 @@ return { [1]="summon_arbalist_chance_to_crush_on_hit_%" } }, - [9778]={ + [10082]={ [1]={ [1]={ limit={ @@ -222140,7 +229042,7 @@ return { [1]="summon_arbalist_chance_to_deal_double_damage_%" } }, - [9779]={ + [10083]={ [1]={ [1]={ [1]={ @@ -222168,7 +229070,7 @@ return { [1]="summon_arbalist_chance_to_ignite_freeze_shock_%" } }, - [9780]={ + [10084]={ [1]={ [1]={ [1]={ @@ -222188,7 +229090,7 @@ return { [1]="summon_arbalist_chance_to_intimidate_for_4_seconds_on_hit_%" } }, - [9781]={ + [10085]={ [1]={ [1]={ [1]={ @@ -222208,7 +229110,7 @@ return { [1]="summon_arbalist_chance_to_maim_for_4_seconds_on_hit_%" } }, - [9782]={ + [10086]={ [1]={ [1]={ [1]={ @@ -222228,7 +229130,7 @@ return { [1]="summon_arbalist_chance_to_poison_%" } }, - [9783]={ + [10087]={ [1]={ [1]={ [1]={ @@ -222248,7 +229150,7 @@ return { [1]="summon_arbalist_chance_to_unnerve_for_4_seconds_on_hit_%" } }, - [9784]={ + [10088]={ [1]={ [1]={ limit={ @@ -222264,7 +229166,7 @@ return { [1]="summon_arbalist_number_of_additional_projectiles" } }, - [9785]={ + [10089]={ [1]={ [1]={ limit={ @@ -222280,7 +229182,7 @@ return { [1]="summon_arbalist_number_of_splits" } }, - [9786]={ + [10090]={ [1]={ [1]={ limit={ @@ -222296,7 +229198,7 @@ return { [1]="summon_arbalist_physical_damage_%_to_add_as_cold" } }, - [9787]={ + [10091]={ [1]={ [1]={ limit={ @@ -222312,7 +229214,7 @@ return { [1]="summon_arbalist_physical_damage_%_to_add_as_fire" } }, - [9788]={ + [10092]={ [1]={ [1]={ limit={ @@ -222328,7 +229230,7 @@ return { [1]="summon_arbalist_physical_damage_%_to_add_as_lightning" } }, - [9789]={ + [10093]={ [1]={ [1]={ limit={ @@ -222344,7 +229246,7 @@ return { [1]="summon_arbalist_physical_damage_%_to_convert_to_cold" } }, - [9790]={ + [10094]={ [1]={ [1]={ limit={ @@ -222360,7 +229262,7 @@ return { [1]="summon_arbalist_physical_damage_%_to_convert_to_fire" } }, - [9791]={ + [10095]={ [1]={ [1]={ limit={ @@ -222376,7 +229278,7 @@ return { [1]="summon_arbalist_physical_damage_%_to_convert_to_lightning" } }, - [9792]={ + [10096]={ [1]={ [1]={ limit={ @@ -222392,7 +229294,7 @@ return { [1]="summon_arbalist_projectiles_fork" } }, - [9793]={ + [10097]={ [1]={ [1]={ limit={ @@ -222408,7 +229310,7 @@ return { [1]="summon_arbalist_targets_to_pierce" } }, - [9794]={ + [10098]={ [1]={ [1]={ [1]={ @@ -222428,7 +229330,7 @@ return { [1]="summon_arbalist_chance_to_freeze_%" } }, - [9795]={ + [10099]={ [1]={ [1]={ [1]={ @@ -222448,7 +229350,7 @@ return { [1]="summon_arbalist_chance_to_ignite_%" } }, - [9796]={ + [10100]={ [1]={ [1]={ [1]={ @@ -222468,7 +229370,7 @@ return { [1]="summon_arbalist_chance_to_shock_%" } }, - [9797]={ + [10101]={ [1]={ [1]={ [1]={ @@ -222488,7 +229390,7 @@ return { [1]="summon_arbalist_chance_to_inflict_cold_exposure_on_hit_%" } }, - [9798]={ + [10102]={ [1]={ [1]={ [1]={ @@ -222508,7 +229410,7 @@ return { [1]="summon_arbalist_chance_to_inflict_fire_exposure_on_hit_%" } }, - [9799]={ + [10103]={ [1]={ [1]={ [1]={ @@ -222528,7 +229430,7 @@ return { [1]="summon_arbalist_chance_to_inflict_lightning_exposure_on_hit_%" } }, - [9800]={ + [10104]={ [1]={ [1]={ limit={ @@ -222544,7 +229446,7 @@ return { [1]="summon_fire_skitterbot" } }, - [9801]={ + [10105]={ [1]={ [1]={ limit={ @@ -222560,7 +229462,7 @@ return { [1]="summon_raging_spirit_melee_splash_fire_damage_only" } }, - [9802]={ + [10106]={ [1]={ [1]={ limit={ @@ -222589,7 +229491,7 @@ return { [1]="summon_reaper_cooldown_speed_+%" } }, - [9803]={ + [10107]={ [1]={ [1]={ limit={ @@ -222641,7 +229543,7 @@ return { [1]="summon_skeletons_additional_warrior_skeleton_one_twentieth_chance" } }, - [9804]={ + [10108]={ [1]={ [1]={ limit={ @@ -222657,7 +229559,7 @@ return { [1]="summon_skeletons_additional_warrior_skeleton_%_chance" } }, - [9805]={ + [10109]={ [1]={ [1]={ [1]={ @@ -222690,7 +229592,7 @@ return { [1]="summon_skeletons_cooldown_modifier_ms" } }, - [9806]={ + [10110]={ [1]={ [1]={ limit={ @@ -222719,7 +229621,7 @@ return { [1]="summon_skitterbots_area_of_effect_+%" } }, - [9807]={ + [10111]={ [1]={ [1]={ limit={ @@ -222748,7 +229650,7 @@ return { [1]="summon_skitterbots_mana_reservation_+%" } }, - [9808]={ + [10112]={ [1]={ [1]={ [1]={ @@ -222768,7 +229670,7 @@ return { [1]="summoned_phantasms_grant_buff" } }, - [9809]={ + [10113]={ [1]={ [1]={ limit={ @@ -222784,7 +229686,7 @@ return { [1]="summoned_phantasms_have_no_duration" } }, - [9810]={ + [10114]={ [1]={ [1]={ limit={ @@ -222800,7 +229702,7 @@ return { [1]="summoned_raging_spirits_have_diamond_and_massive_shrine_buff" } }, - [9811]={ + [10115]={ [1]={ [1]={ limit={ @@ -222829,7 +229731,7 @@ return { [1]="summoned_reaper_damage_+%" } }, - [9812]={ + [10116]={ [1]={ [1]={ limit={ @@ -222845,7 +229747,7 @@ return { [1]="summoned_reaper_physical_dot_multiplier_+" } }, - [9813]={ + [10117]={ [1]={ [1]={ limit={ @@ -222861,7 +229763,7 @@ return { [1]="summoned_skeleton_%_chance_to_wither_for_2_seconds" } }, - [9814]={ + [10118]={ [1]={ [1]={ limit={ @@ -222877,7 +229779,7 @@ return { [1]="summoned_skeleton_%_physical_to_chaos" } }, - [9815]={ + [10119]={ [1]={ [1]={ [1]={ @@ -222910,7 +229812,7 @@ return { [1]="summoned_skeletons_cover_in_ash_on_hit_%" } }, - [9816]={ + [10120]={ [1]={ [1]={ [1]={ @@ -222930,7 +229832,7 @@ return { [1]="summoned_skeletons_fire_damage_%_of_maximum_life_taken_per_minute" } }, - [9817]={ + [10121]={ [1]={ [1]={ limit={ @@ -222946,7 +229848,7 @@ return { [1]="summoned_skeletons_hits_cant_be_evaded" } }, - [9818]={ + [10122]={ [1]={ [1]={ limit={ @@ -222962,7 +229864,7 @@ return { [1]="summoned_skitterbots_auras_also_affect_you" } }, - [9819]={ + [10123]={ [1]={ [1]={ limit={ @@ -222991,7 +229893,7 @@ return { [1]="summoned_skitterbots_cooldown_recovery_+%" } }, - [9820]={ + [10124]={ [1]={ [1]={ [1]={ @@ -223028,7 +229930,7 @@ return { [1]="summoned_skitterbots_non_damaging_ailment_effect_+%" } }, - [9821]={ + [10125]={ [1]={ [1]={ limit={ @@ -223044,7 +229946,7 @@ return { [1]="summoned_support_ghosts_have_diamond_and_massive_shrine_buff" } }, - [9822]={ + [10126]={ [1]={ [1]={ [1]={ @@ -223064,7 +229966,7 @@ return { [1]="support_additional_trap_mine_%_chance_for_1_additional_trap_mine" } }, - [9823]={ + [10127]={ [1]={ [1]={ limit={ @@ -223093,7 +229995,7 @@ return { [1]="support_anticipation_charge_gain_frequency_+%" } }, - [9824]={ + [10128]={ [1]={ [1]={ limit={ @@ -223122,7 +230024,7 @@ return { [1]="support_maimed_enemies_physical_damage_taken_+%" } }, - [9825]={ + [10129]={ [1]={ [1]={ limit={ @@ -223143,7 +230045,7 @@ return { [2]="global_maximum_added_fire_damage_vs_burning_enemies" } }, - [9826]={ + [10130]={ [1]={ [1]={ [1]={ @@ -223163,7 +230065,7 @@ return { [1]="support_mirage_archer_base_duration" } }, - [9827]={ + [10131]={ [1]={ [1]={ limit={ @@ -223192,7 +230094,7 @@ return { [1]="support_slashing_damage_+%_final_from_distance" } }, - [9828]={ + [10132]={ [1]={ [1]={ limit={ @@ -223208,7 +230110,7 @@ return { [1]="supported_aura_skill_gem_level_+" } }, - [9829]={ + [10133]={ [1]={ [1]={ limit={ @@ -223224,7 +230126,7 @@ return { [1]="supported_cold_skill_gem_level_+" } }, - [9830]={ + [10134]={ [1]={ [1]={ limit={ @@ -223240,7 +230142,7 @@ return { [1]="supported_elemental_skill_gem_level_+" } }, - [9831]={ + [10135]={ [1]={ [1]={ limit={ @@ -223256,7 +230158,7 @@ return { [1]="supported_fire_skill_gem_level_+" } }, - [9832]={ + [10136]={ [1]={ [1]={ limit={ @@ -223272,7 +230174,7 @@ return { [1]="supported_lightning_skill_gem_level_+" } }, - [9833]={ + [10137]={ [1]={ [1]={ [1]={ @@ -223292,7 +230194,7 @@ return { [1]="suppressed_spell_damage_cannot_inflict_elemental_ailments" } }, - [9834]={ + [10138]={ [1]={ [1]={ limit={ @@ -223308,7 +230210,7 @@ return { [1]="synthesis_map_adjacent_nodes_global_mod_values_doubled" } }, - [9835]={ + [10139]={ [1]={ [1]={ limit={ @@ -223324,7 +230226,7 @@ return { [1]="synthesis_map_global_mod_values_doubled_on_this_node" } }, - [9836]={ + [10140]={ [1]={ [1]={ limit={ @@ -223340,7 +230242,7 @@ return { [1]="synthesis_map_global_mod_values_tripled_on_this_node" } }, - [9837]={ + [10141]={ [1]={ [1]={ limit={ @@ -223356,7 +230258,7 @@ return { [1]="synthesis_map_memories_do_not_collapse_on_this_node" } }, - [9838]={ + [10142]={ [1]={ [1]={ limit={ @@ -223385,7 +230287,7 @@ return { [1]="synthesis_map_monster_slain_experience_+%_on_this_node" } }, - [9839]={ + [10143]={ [1]={ [1]={ limit={ @@ -223401,7 +230303,7 @@ return { [1]="synthesis_map_nearby_memories_have_bonus" } }, - [9840]={ + [10144]={ [1]={ [1]={ limit={ @@ -223426,7 +230328,7 @@ return { [1]="synthesis_map_node_additional_uses_+" } }, - [9841]={ + [10145]={ [1]={ [1]={ limit={ @@ -223442,7 +230344,7 @@ return { [1]="synthesis_map_node_global_mod_values_tripled_if_adjacent_squares_have_memories" } }, - [9842]={ + [10146]={ [1]={ [1]={ limit={ @@ -223467,7 +230369,7 @@ return { [1]="synthesis_map_node_grants_additional_global_mod" } }, - [9843]={ + [10147]={ [1]={ [1]={ limit={ @@ -223483,7 +230385,7 @@ return { [1]="synthesis_map_node_grants_no_global_mod" } }, - [9844]={ + [10148]={ [1]={ [1]={ limit={ @@ -223499,7 +230401,7 @@ return { [1]="synthesis_map_node_guest_monsters_replaced_by_synthesised_monsters" } }, - [9845]={ + [10149]={ [1]={ [1]={ limit={ @@ -223515,7 +230417,7 @@ return { [1]="synthesis_map_node_item_quantity_increases_doubled" } }, - [9846]={ + [10150]={ [1]={ [1]={ limit={ @@ -223531,7 +230433,7 @@ return { [1]="synthesis_map_node_item_rarity_increases_doubled" } }, - [9847]={ + [10151]={ [1]={ [1]={ limit={ @@ -223556,7 +230458,7 @@ return { [1]="synthesis_map_node_level_+" } }, - [9848]={ + [10152]={ [1]={ [1]={ limit={ @@ -223572,7 +230474,7 @@ return { [1]="synthesis_map_node_monsters_drop_no_items" } }, - [9849]={ + [10153]={ [1]={ [1]={ limit={ @@ -223588,7 +230490,7 @@ return { [1]="synthesis_map_node_pack_size_increases_doubled" } }, - [9850]={ + [10154]={ [1]={ [1]={ limit={ @@ -223617,7 +230519,7 @@ return { [1]="tailwind_effect_on_self_+%" } }, - [9851]={ + [10155]={ [1]={ [1]={ [1]={ @@ -223654,7 +230556,7 @@ return { [1]="tailwind_effect_on_self_+%_per_gale_force" } }, - [9852]={ + [10156]={ [1]={ [1]={ [1]={ @@ -223674,7 +230576,27 @@ return { [1]="tailwind_if_have_crit_recently" } }, - [9853]={ + [10157]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextOvercappedResistance" + }, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% chance to take 20% less Area Damage from Hits per 2% Overcapped Cold Resistance" + } + }, + stats={ + [1]="take_20%_less_area_damage_from_hits_%_chance_per_2%_overcapped_cold_resistance" + } + }, + [10158]={ [1]={ [1]={ limit={ @@ -223690,7 +230612,7 @@ return { [1]="take_X_lightning_damage_when_herald_of_thunder_hits_an_enemy" } }, - [9854]={ + [10159]={ [1]={ [1]={ limit={ @@ -223706,7 +230628,7 @@ return { [1]="take_half_area_damage_from_hit_%_chance" } }, - [9855]={ + [10160]={ [1]={ [1]={ limit={ @@ -223722,7 +230644,7 @@ return { [1]="take_no_extra_damage_from_critical_strikes_if_cast_enfeeble_in_past_10_seconds" } }, - [9856]={ + [10161]={ [1]={ [1]={ [1]={ @@ -223742,7 +230664,7 @@ return { [1]="take_no_fire_damage_over_time_if_stopped_taking_fire_damage_over_time_recently" } }, - [9857]={ + [10162]={ [1]={ [1]={ [1]={ @@ -223775,7 +230697,7 @@ return { [1]="talisman_implicit_projectiles_pierce_1_additional_target_per_10" } }, - [9858]={ + [10163]={ [1]={ [1]={ [1]={ @@ -223795,7 +230717,7 @@ return { [1]="taunt_on_projectile_hit_chance_%" } }, - [9859]={ + [10164]={ [1]={ [1]={ [1]={ @@ -223832,7 +230754,7 @@ return { [1]="taunted_enemies_by_warcry_damage_taken_+%" } }, - [9860]={ + [10165]={ [1]={ [1]={ [1]={ @@ -223852,7 +230774,7 @@ return { [1]="tectonic_slam_1%_chance_to_do_charged_slam_per_2_stat_value" } }, - [9861]={ + [10166]={ [1]={ [1]={ limit={ @@ -223868,7 +230790,7 @@ return { [1]="tectonic_slam_and_infernal_blow_attack_damage_+%_per_450_physical_damage_reduction_rating" } }, - [9862]={ + [10167]={ [1]={ [1]={ limit={ @@ -223884,7 +230806,7 @@ return { [1]="tectonic_slam_and_infernal_blow_attack_damage_+%_per_700_physical_damage_reduction_rating" } }, - [9863]={ + [10168]={ [1]={ [1]={ limit={ @@ -223913,7 +230835,7 @@ return { [1]="tectonic_slam_area_of_effect_+%" } }, - [9864]={ + [10169]={ [1]={ [1]={ limit={ @@ -223942,7 +230864,7 @@ return { [1]="tectonic_slam_damage_+%" } }, - [9865]={ + [10170]={ [1]={ [1]={ limit={ @@ -223958,7 +230880,7 @@ return { [1]="tectonic_slam_%_chance_to_do_charged_slam" } }, - [9866]={ + [10171]={ [1]={ [1]={ [1]={ @@ -223978,7 +230900,7 @@ return { [1]="tectonic_slam_side_crack_additional_chance_1%_per_2_stat_value" } }, - [9867]={ + [10172]={ [1]={ [1]={ limit={ @@ -223999,7 +230921,7 @@ return { [2]="quality_display_tectonic_slam_is_gem" } }, - [9868]={ + [10173]={ [1]={ [1]={ limit={ @@ -224028,7 +230950,7 @@ return { [1]="tempest_shield_buff_effect_+%" } }, - [9869]={ + [10174]={ [1]={ [1]={ limit={ @@ -224044,7 +230966,7 @@ return { [1]="temporal_chains_no_reservation" } }, - [9870]={ + [10175]={ [1]={ [1]={ limit={ @@ -224060,7 +230982,7 @@ return { [1]="temporal_rift_cooldown_speed_+%" } }, - [9871]={ + [10176]={ [1]={ [1]={ [1]={ @@ -224088,7 +231010,7 @@ return { [1]="thaumaturgy_rotation_active" } }, - [9872]={ + [10177]={ [1]={ [1]={ limit={ @@ -224117,7 +231039,7 @@ return { [1]="threshold_jewel_magma_orb_damage_+%_final" } }, - [9873]={ + [10178]={ [1]={ [1]={ limit={ @@ -224146,7 +231068,7 @@ return { [1]="threshold_jewel_magma_orb_damage_+%_final_per_chain" } }, - [9874]={ + [10179]={ [1]={ [1]={ limit={ @@ -224175,7 +231097,7 @@ return { [1]="threshold_jewel_molten_strike_damage_projectile_count_+%_final" } }, - [9875]={ + [10180]={ [1]={ [1]={ limit={ @@ -224200,7 +231122,7 @@ return { [1]="throw_X_additional_traps_if_dual_wielding" } }, - [9876]={ + [10181]={ [1]={ [1]={ limit={ @@ -224229,7 +231151,7 @@ return { [1]="thrown_shield_secondary_projectile_damage_+%_final" } }, - [9877]={ + [10182]={ [1]={ [1]={ limit={ @@ -224258,7 +231180,7 @@ return { [1]="tincture_cooldown_recovery_+%" } }, - [9878]={ + [10183]={ [1]={ [1]={ limit={ @@ -224287,7 +231209,7 @@ return { [1]="tincture_effect_+%_at_high_toxicity" } }, - [9879]={ + [10184]={ [1]={ [1]={ [1]={ @@ -224324,7 +231246,7 @@ return { [1]="tincture_effect_+%_if_used_life_flask_recently" } }, - [9880]={ + [10185]={ [1]={ [1]={ [1]={ @@ -224344,7 +231266,7 @@ return { [1]="tincture_effects_linger_for_ms_per_toxicity_up_to_6_seconds" } }, - [9881]={ + [10186]={ [1]={ [1]={ limit={ @@ -224373,7 +231295,7 @@ return { [1]="tincture_mod_effect_+%_per_empty_flask_slot" } }, - [9882]={ + [10187]={ [1]={ [1]={ [1]={ @@ -224410,7 +231332,7 @@ return { [1]="tincture_toxicity_rate_+%" } }, - [9883]={ + [10188]={ [1]={ [1]={ limit={ @@ -224426,7 +231348,7 @@ return { [1]="tinctures_can_apply_to_ranged_weapons" } }, - [9884]={ + [10189]={ [1]={ [1]={ limit={ @@ -224442,7 +231364,7 @@ return { [1]="tinctures_deactivate_on_reaching_X_toxicity" } }, - [9885]={ + [10190]={ [1]={ [1]={ limit={ @@ -224471,7 +231393,7 @@ return { [1]="tornado_damage_frequency_+%" } }, - [9886]={ + [10191]={ [1]={ [1]={ limit={ @@ -224500,7 +231422,7 @@ return { [1]="tornado_damage_+%" } }, - [9887]={ + [10192]={ [1]={ [1]={ limit={ @@ -224529,7 +231451,7 @@ return { [1]="tornado_movement_speed_+%" } }, - [9888]={ + [10193]={ [1]={ [1]={ limit={ @@ -224558,7 +231480,7 @@ return { [1]="tornado_only_primary_duration_+%" } }, - [9889]={ + [10194]={ [1]={ [1]={ limit={ @@ -224587,7 +231509,7 @@ return { [1]="tornado_skill_area_of_effect_+%" } }, - [9890]={ + [10195]={ [1]={ [1]={ limit={ @@ -224603,7 +231525,7 @@ return { [1]="total_recovery_per_minute_from_life_leech_is_doubled" } }, - [9891]={ + [10196]={ [1]={ [1]={ limit={ @@ -224619,7 +231541,7 @@ return { [1]="totems_action_speed_cannot_be_modified_below_base" } }, - [9892]={ + [10197]={ [1]={ [1]={ [1]={ @@ -224643,7 +231565,7 @@ return { [1]="totem_attack_damage_leeched_as_mana_to_you_permyriad" } }, - [9893]={ + [10198]={ [1]={ [1]={ limit={ @@ -224659,7 +231581,7 @@ return { [1]="totem_chaos_immunity" } }, - [9894]={ + [10199]={ [1]={ [1]={ limit={ @@ -224688,7 +231610,7 @@ return { [1]="totem_chaos_resistance_%" } }, - [9895]={ + [10200]={ [1]={ [1]={ limit={ @@ -224717,7 +231639,7 @@ return { [1]="totem_damage_+%_if_havent_summoned_totem_in_past_2_seconds" } }, - [9896]={ + [10201]={ [1]={ [1]={ limit={ @@ -224746,7 +231668,7 @@ return { [1]="totem_damage_+%_per_10_devotion" } }, - [9897]={ + [10202]={ [1]={ [1]={ [1]={ @@ -224766,7 +231688,31 @@ return { [1]="totem_hinder_nearby_enemies_when_summoned_with_25%_reduced_movement_speed" } }, - [9898]={ + [10203]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextOvercappedResistance" + }, + [2]={ + k="reminderstring", + v="ReminderTextUncappedResist" + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Totem Life is increased by their Overcapped Fire Resistance" + } + }, + stats={ + [1]="totem_life_increased_by_overcapped_fire_resistance" + } + }, + [10204]={ [1]={ [1]={ limit={ @@ -224795,7 +231741,7 @@ return { [1]="totem_life_+%_final" } }, - [9899]={ + [10205]={ [1]={ [1]={ limit={ @@ -224811,7 +231757,7 @@ return { [1]="totem_maximum_energy_shield" } }, - [9900]={ + [10206]={ [1]={ [1]={ [1]={ @@ -224835,7 +231781,7 @@ return { [1]="totem_physical_attack_damage_leeched_as_life_to_you_permyriad" } }, - [9901]={ + [10207]={ [1]={ [1]={ limit={ @@ -224864,7 +231810,7 @@ return { [1]="totem_placement_range_+%" } }, - [9902]={ + [10208]={ [1]={ [1]={ limit={ @@ -224880,7 +231826,7 @@ return { [1]="totem_skill_gem_level_+" } }, - [9903]={ + [10209]={ [1]={ [1]={ limit={ @@ -224909,7 +231855,7 @@ return { [1]="totem_spells_damage_+%" } }, - [9904]={ + [10210]={ [1]={ [1]={ limit={ @@ -224925,7 +231871,7 @@ return { [1]="totems_explode_on_death_for_%_life_as_physical" } }, - [9905]={ + [10211]={ [1]={ [1]={ [1]={ @@ -224945,7 +231891,7 @@ return { [1]="totems_explode_on_death_for_%_life_as_physical_divide_20" } }, - [9906]={ + [10212]={ [1]={ [1]={ limit={ @@ -224974,7 +231920,7 @@ return { [1]="totems_nearby_enemies_damage_taken_+%" } }, - [9907]={ + [10213]={ [1]={ [1]={ limit={ @@ -224990,7 +231936,7 @@ return { [1]="totems_regenerate_1_life_per_x_player_life_regeneration" } }, - [9908]={ + [10214]={ [1]={ [1]={ [1]={ @@ -225010,7 +231956,7 @@ return { [1]="totems_regenerate_%_life_per_minute" } }, - [9909]={ + [10215]={ [1]={ [1]={ limit={ @@ -225035,7 +231981,7 @@ return { [1]="totems_taunt_enemies_around_them_for_x_seconds_when_summoned" } }, - [9910]={ + [10216]={ [1]={ [1]={ limit={ @@ -225064,7 +232010,7 @@ return { [1]="toxic_rain_damage_+%" } }, - [9911]={ + [10217]={ [1]={ [1]={ limit={ @@ -225089,7 +232035,7 @@ return { [1]="toxic_rain_num_of_additional_projectiles" } }, - [9912]={ + [10218]={ [1]={ [1]={ limit={ @@ -225105,7 +232051,7 @@ return { [1]="toxic_rain_physical_damage_%_to_add_as_chaos" } }, - [9913]={ + [10219]={ [1]={ [1]={ limit={ @@ -225121,7 +232067,7 @@ return { [1]="toxic_rain_skill_physical_damage_%_to_convert_to_chaos" } }, - [9914]={ + [10220]={ [1]={ [1]={ [1]={ @@ -225166,7 +232112,7 @@ return { [1]="trap_and_mine_damage_+%_if_armed_for_4_seconds" } }, - [9915]={ + [10221]={ [1]={ [1]={ limit={ @@ -225195,7 +232141,7 @@ return { [1]="trap_and_mine_throwing_speed_+%" } }, - [9916]={ + [10222]={ [1]={ [1]={ [1]={ @@ -225232,7 +232178,7 @@ return { [1]="trap_cooldown_speed_+%_per_recent_mine_detonation" } }, - [9917]={ + [10223]={ [1]={ [1]={ limit={ @@ -225257,7 +232203,7 @@ return { [1]="trap_mine_skill_num_of_additional_chains" } }, - [9918]={ + [10224]={ [1]={ [1]={ limit={ @@ -225282,7 +232228,7 @@ return { [1]="trap_skill_added_cooldown_count" } }, - [9919]={ + [10225]={ [1]={ [1]={ limit={ @@ -225311,7 +232257,7 @@ return { [1]="trap_skill_effect_duration_+%" } }, - [9920]={ + [10226]={ [1]={ [1]={ limit={ @@ -225340,7 +232286,7 @@ return { [1]="trap_spread_+%" } }, - [9921]={ + [10227]={ [1]={ [1]={ limit={ @@ -225369,7 +232315,7 @@ return { [1]="trap_throwing_speed_+%_per_frenzy_charge" } }, - [9922]={ + [10228]={ [1]={ [1]={ limit={ @@ -225385,7 +232331,7 @@ return { [1]="traps_cannot_be_triggered_by_enemies" } }, - [9923]={ + [10229]={ [1]={ [1]={ limit={ @@ -225401,7 +232347,7 @@ return { [1]="traps_invulnerable" } }, - [9924]={ + [10230]={ [1]={ [1]={ limit={ @@ -225417,7 +232363,7 @@ return { [1]="travel_skills_cannot_be_exerted" } }, - [9925]={ + [10231]={ [1]={ [1]={ limit={ @@ -225442,7 +232388,7 @@ return { [1]="travel_skills_crit_every_X_uses" } }, - [9926]={ + [10232]={ [1]={ [1]={ [1]={ @@ -225462,7 +232408,7 @@ return { [1]="travel_skills_poison_reflected_to_self_up_to_5_poisons" } }, - [9927]={ + [10233]={ [1]={ [1]={ limit={ @@ -225487,7 +232433,7 @@ return { [1]="treat_enemy_resistances_as_negated_on_elemental_damage_hit_%_chance" } }, - [9928]={ + [10234]={ [1]={ [1]={ [1]={ @@ -225520,7 +232466,7 @@ return { [1]="trickster_cannot_take_damage_over_time_for_X_ms_every_10_seconds" } }, - [9929]={ + [10235]={ [1]={ [1]={ limit={ @@ -225549,7 +232495,7 @@ return { [1]="trickster_damage_over_time_+%_final" } }, - [9930]={ + [10236]={ [1]={ [1]={ limit={ @@ -225565,7 +232511,7 @@ return { [1]="trigger_level_20_summon_spectral_wolf_on_crit" } }, - [9931]={ + [10237]={ [1]={ [1]={ limit={ @@ -225594,7 +232540,7 @@ return { [1]="triggerbots_damage_+%_final_with_triggered_spells" } }, - [9932]={ + [10238]={ [1]={ [1]={ limit={ @@ -225623,7 +232569,39 @@ return { [1]="triggered_spell_spell_damage_+%" } }, - [9933]={ + [10239]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Triggered Spells Poison on Hit" + } + }, + stats={ + [1]="triggered_spells_poison_on_hit" + } + }, + [10240]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="All Damage with Triggered Spells can Poison" + } + }, + stats={ + [1]="triggered_spells_all_damage_can_poison" + } + }, + [10241]={ [1]={ [1]={ limit={ @@ -225652,7 +232630,7 @@ return { [1]="two_handed_attack_damage_+%_per_unlinked_socket_on_weapon" } }, - [9934]={ + [10242]={ [1]={ [1]={ limit={ @@ -225681,7 +232659,7 @@ return { [1]="two_handed_melee_area_damage_+%" } }, - [9935]={ + [10243]={ [1]={ [1]={ limit={ @@ -225710,7 +232688,7 @@ return { [1]="two_handed_melee_area_of_effect_+%" } }, - [9936]={ + [10244]={ [1]={ [1]={ limit={ @@ -225726,7 +232704,7 @@ return { [1]="uber_domain_monster_additional_physical_damage_reduction_%_per_revival" } }, - [9937]={ + [10245]={ [1]={ [1]={ limit={ @@ -225742,7 +232720,7 @@ return { [1]="uber_domain_monster_all_resistances_+%_per_revival" } }, - [9938]={ + [10246]={ [1]={ [1]={ limit={ @@ -225771,7 +232749,7 @@ return { [1]="uber_domain_monster_attack_and_cast_speed_+%_per_revival" } }, - [9939]={ + [10247]={ [1]={ [1]={ limit={ @@ -225787,7 +232765,7 @@ return { [1]="uber_domain_monster_avoid_stun_%_per_revival" } }, - [9940]={ + [10248]={ [1]={ [1]={ limit={ @@ -225816,7 +232794,7 @@ return { [1]="uber_domain_monster_critical_strike_chance_+%_per_revival" } }, - [9941]={ + [10249]={ [1]={ [1]={ limit={ @@ -225832,7 +232810,7 @@ return { [1]="uber_domain_monster_critical_strike_multiplier_+%_per_revival" } }, - [9942]={ + [10250]={ [1]={ [1]={ limit={ @@ -225848,7 +232826,7 @@ return { [1]="uber_domain_monster_damage_+%_per_revival" } }, - [9943]={ + [10251]={ [1]={ [1]={ limit={ @@ -225864,7 +232842,7 @@ return { [1]="uber_domain_monster_deal_double_damage_chance_%_per_revival" } }, - [9944]={ + [10252]={ [1]={ [1]={ [1]={ @@ -225884,7 +232862,7 @@ return { [1]="uber_domain_monster_life_regeneration_rate_per_minute_%_per_revival" } }, - [9945]={ + [10253]={ [1]={ [1]={ limit={ @@ -225913,7 +232891,7 @@ return { [1]="uber_domain_monster_maximum_life_+%_per_revival" } }, - [9946]={ + [10254]={ [1]={ [1]={ limit={ @@ -225942,7 +232920,7 @@ return { [1]="uber_domain_monster_movement_speed_+%_per_revival" } }, - [9947]={ + [10255]={ [1]={ [1]={ [1]={ @@ -225962,7 +232940,7 @@ return { [1]="uber_domain_monster_overwhelm_%_physical_damage_reduction_per_revival" } }, - [9948]={ + [10256]={ [1]={ [1]={ limit={ @@ -225978,7 +232956,7 @@ return { [1]="uber_domain_monster_penetrate_all_resistances_%_per_revival" } }, - [9949]={ + [10257]={ [1]={ [1]={ limit={ @@ -226007,7 +232985,7 @@ return { [1]="uber_domain_monster_physical_damage_reduction_rating_+%_per_revival" } }, - [9950]={ + [10258]={ [1]={ [1]={ limit={ @@ -226032,7 +233010,7 @@ return { [1]="uber_domain_monster_reward_chance_+%" } }, - [9951]={ + [10259]={ [1]={ [1]={ limit={ @@ -226048,7 +233026,7 @@ return { [1]="unaffected_by_bleed_if_cast_vulnerability_in_past_10_seconds" } }, - [9952]={ + [10260]={ [1]={ [1]={ [1]={ @@ -226068,7 +233046,7 @@ return { [1]="unaffected_by_bleeding_while_affected_by_malevolence" } }, - [9953]={ + [10261]={ [1]={ [1]={ [1]={ @@ -226088,7 +233066,7 @@ return { [1]="unaffected_by_bleeding_while_leeching" } }, - [9954]={ + [10262]={ [1]={ [1]={ limit={ @@ -226104,7 +233082,7 @@ return { [1]="unaffected_by_blind" } }, - [9955]={ + [10263]={ [1]={ [1]={ [1]={ @@ -226124,7 +233102,7 @@ return { [1]="unaffected_by_burning_ground" } }, - [9956]={ + [10264]={ [1]={ [1]={ [1]={ @@ -226144,7 +233122,7 @@ return { [1]="unaffected_by_burning_ground_while_affected_by_purity_of_fire" } }, - [9957]={ + [10265]={ [1]={ [1]={ limit={ @@ -226160,7 +233138,7 @@ return { [1]="unaffected_by_chill" } }, - [9958]={ + [10266]={ [1]={ [1]={ limit={ @@ -226176,7 +233154,7 @@ return { [1]="unaffected_by_chill_while_channelling" } }, - [9959]={ + [10267]={ [1]={ [1]={ limit={ @@ -226192,7 +233170,7 @@ return { [1]="unaffected_by_chill_while_mana_leeching" } }, - [9960]={ + [10268]={ [1]={ [1]={ [1]={ @@ -226212,7 +233190,7 @@ return { [1]="unaffected_by_chilled_ground" } }, - [9961]={ + [10269]={ [1]={ [1]={ [1]={ @@ -226232,7 +233210,7 @@ return { [1]="unaffected_by_chilled_ground_while_affected_by_purity_of_ice" } }, - [9962]={ + [10270]={ [1]={ [1]={ [1]={ @@ -226252,7 +233230,7 @@ return { [1]="unaffected_by_conductivity_while_affected_by_purity_of_lightning" } }, - [9963]={ + [10271]={ [1]={ [1]={ [1]={ @@ -226272,7 +233250,7 @@ return { [1]="unaffected_by_corrupted_blood_while_leeching" } }, - [9964]={ + [10272]={ [1]={ [1]={ [1]={ @@ -226292,7 +233270,7 @@ return { [1]="unaffected_by_curses_while_affected_by_zealotry" } }, - [9965]={ + [10273]={ [1]={ [1]={ [1]={ @@ -226316,7 +233294,7 @@ return { [1]="unaffected_by_damaging_ailments" } }, - [9966]={ + [10274]={ [1]={ [1]={ [1]={ @@ -226336,7 +233314,7 @@ return { [1]="unaffected_by_desecrated_ground" } }, - [9967]={ + [10275]={ [1]={ [1]={ [1]={ @@ -226356,7 +233334,7 @@ return { [1]="unaffected_by_elemental_weakness_while_affected_by_purity_of_elements" } }, - [9968]={ + [10276]={ [1]={ [1]={ [1]={ @@ -226376,7 +233354,7 @@ return { [1]="unaffected_by_enfeeble_while_affected_by_grace" } }, - [9969]={ + [10277]={ [1]={ [1]={ [1]={ @@ -226396,7 +233374,7 @@ return { [1]="unaffected_by_flammability_while_affected_by_purity_of_fire" } }, - [9970]={ + [10278]={ [1]={ [1]={ limit={ @@ -226412,7 +233390,7 @@ return { [1]="unaffected_by_freeze_if_cast_frostbite_in_past_10_seconds" } }, - [9971]={ + [10279]={ [1]={ [1]={ [1]={ @@ -226432,7 +233410,7 @@ return { [1]="unaffected_by_frostbite_while_affected_by_purity_of_ice" } }, - [9972]={ + [10280]={ [1]={ [1]={ [1]={ @@ -226452,7 +233430,7 @@ return { [1]="unaffected_by_ignite" } }, - [9973]={ + [10281]={ [1]={ [1]={ limit={ @@ -226468,7 +233446,7 @@ return { [1]="unaffected_by_ignite_and_shock_while_max_life_mana_within_500" } }, - [9974]={ + [10282]={ [1]={ [1]={ limit={ @@ -226484,7 +233462,7 @@ return { [1]="unaffected_by_ignite_if_cast_flammability_in_past_10_seconds" } }, - [9975]={ + [10283]={ [1]={ [1]={ [1]={ @@ -226504,7 +233482,7 @@ return { [1]="unaffected_by_poison_while_affected_by_malevolence" } }, - [9976]={ + [10284]={ [1]={ [1]={ [1]={ @@ -226524,7 +233502,7 @@ return { [1]="unaffected_by_shock" } }, - [9977]={ + [10285]={ [1]={ [1]={ limit={ @@ -226540,7 +233518,7 @@ return { [1]="unaffected_by_shock_if_cast_conductivity_in_past_10_seconds" } }, - [9978]={ + [10286]={ [1]={ [1]={ limit={ @@ -226556,7 +233534,7 @@ return { [1]="unaffected_by_shock_while_channelling" } }, - [9979]={ + [10287]={ [1]={ [1]={ limit={ @@ -226572,7 +233550,7 @@ return { [1]="unaffected_by_shock_while_es_leeching" } }, - [9980]={ + [10288]={ [1]={ [1]={ [1]={ @@ -226592,7 +233570,7 @@ return { [1]="unaffected_by_shocked_ground" } }, - [9981]={ + [10289]={ [1]={ [1]={ [1]={ @@ -226612,7 +233590,7 @@ return { [1]="unaffected_by_shocked_ground_while_affected_by_purity_of_lightning" } }, - [9982]={ + [10290]={ [1]={ [1]={ [1]={ @@ -226632,7 +233610,7 @@ return { [1]="unaffected_by_temporal_chains" } }, - [9983]={ + [10291]={ [1]={ [1]={ [1]={ @@ -226652,7 +233630,7 @@ return { [1]="unaffected_by_temporal_chains_while_affected_by_haste" } }, - [9984]={ + [10292]={ [1]={ [1]={ [1]={ @@ -226672,7 +233650,7 @@ return { [1]="unaffected_by_vulnerability_while_affected_by_determination" } }, - [9985]={ + [10293]={ [1]={ [1]={ limit={ @@ -226685,7 +233663,7 @@ return { [2]="#" } }, - text="[DNT] Unarmed Attacks deal {0} to {1} added Chaos Damage for each Poison on the target" + text="[DNT] Unarmed Attacks deal {0} to {1} added Chaos Damage for each Poison on the target, up to 100" } }, stats={ @@ -226693,7 +233671,7 @@ return { [2]="maximum_unarmed_added_chaos_damage_for_each_poison_on_target" } }, - [9986]={ + [10294]={ [1]={ [1]={ limit={ @@ -226718,7 +233696,7 @@ return { [1]="unarmed_attack_number_of_spirit_strikes" } }, - [9987]={ + [10295]={ [1]={ [1]={ limit={ @@ -226734,7 +233712,7 @@ return { [1]="unarmed_melee_attack_critical_strike_multiplier_+" } }, - [9988]={ + [10296]={ [1]={ [1]={ limit={ @@ -226763,7 +233741,7 @@ return { [1]="unattached_sigil_attachment_range_+%_per_second" } }, - [9989]={ + [10297]={ [1]={ [1]={ limit={ @@ -226779,7 +233757,61 @@ return { [1]="unearth_additional_corpse_level" } }, - [9990]={ + [10298]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Attacks fire {0} additional Projectile when in Off Hand" + }, + [2]={ + limit={ + [1]={ + [1]=2, + [2]="#" + } + }, + text="Attacks fire {0} additional Projectiles when in Off Hand" + } + }, + stats={ + [1]="unique_attacks_fire_X_additional_projectiles_while_in_off_hand" + } + }, + [10299]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Attacks have {0}% increased Area of Effect when in Main Hand" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Attacks have {0}% reduced Area of Effect when in Main Hand" + } + }, + stats={ + [1]="unique_attacks_have_area_+%_while_in_main_hand" + } + }, + [10300]={ [1]={ [1]={ limit={ @@ -226804,7 +233836,7 @@ return { [1]="unique_helmet_cast_speed_+%_applies_to_attack_speed_at_%_of_original_value" } }, - [9991]={ + [10301]={ [1]={ [1]={ limit={ @@ -226833,7 +233865,7 @@ return { [1]="unique_helmet_damage_+%_final_per_warcry_exerting_action" } }, - [9992]={ + [10302]={ [1]={ [1]={ limit={ @@ -227150,7 +234182,7 @@ return { [7]="local_unique_jewel_additional_all_attributes_with_passive_tree_connected_to_scion_start" } }, - [9993]={ + [10303]={ [1]={ [1]={ [1]={ @@ -227443,7 +234475,7 @@ return { [7]="local_unique_jewel_damage_+%_with_passive_tree_connected_to_scion_start" } }, - [9994]={ + [10304]={ [1]={ [1]={ limit={ @@ -227472,7 +234504,7 @@ return { [1]="unique_jewel_flask_charges_gained_+%_final_from_kills" } }, - [9995]={ + [10305]={ [1]={ [1]={ limit={ @@ -227501,7 +234533,7 @@ return { [1]="unique_jewel_flask_duration_+%_final" } }, - [9996]={ + [10306]={ [1]={ [1]={ [1]={ @@ -227521,7 +234553,7 @@ return { [1]="unique_jewel_grants_notable_hash_part_1" } }, - [9997]={ + [10307]={ [1]={ [1]={ [1]={ @@ -227541,7 +234573,7 @@ return { [1]="unique_jewel_grants_notable_hash_part_2" } }, - [9998]={ + [10308]={ [1]={ [1]={ limit={ @@ -227570,7 +234602,7 @@ return { [1]="unique_jewel_reserved_blood_maximum_life_+%_final" } }, - [9999]={ + [10309]={ [1]={ [1]={ limit={ @@ -227586,7 +234618,7 @@ return { [1]="local_life_loss_%_to_prevent_during_flask_effect_to_lose_over_time" } }, - [10000]={ + [10310]={ [1]={ [1]={ limit={ @@ -227602,7 +234634,7 @@ return { [1]="unique_lose_a_power_charge_when_hit" } }, - [10001]={ + [10311]={ [1]={ [1]={ limit={ @@ -227631,7 +234663,7 @@ return { [1]="unique_monster_dropped_item_rarity_+%" } }, - [10002]={ + [10312]={ [1]={ [1]={ limit={ @@ -227660,7 +234692,7 @@ return { [1]="unique_quiver_chill_as_though_damage_+%_final" } }, - [10003]={ + [10313]={ [1]={ [1]={ [1]={ @@ -227680,7 +234712,7 @@ return { [1]="unique_recover_%_maximum_life_on_x_altenator" } }, - [10004]={ + [10314]={ [1]={ [1]={ limit={ @@ -227709,7 +234741,7 @@ return { [1]="unique_replica_volkuurs_guidance_ignite_duration_+%_final" } }, - [10005]={ + [10315]={ [1]={ [1]={ limit={ @@ -227738,7 +234770,7 @@ return { [1]="unique_soulless_elegance_energy_shield_recharge_rate_+%_final" } }, - [10006]={ + [10316]={ [1]={ [1]={ limit={ @@ -227754,7 +234786,7 @@ return { [1]="unique_sunblast_throw_traps_in_circle_radius" } }, - [10007]={ + [10317]={ [1]={ [1]={ [1]={ @@ -227774,7 +234806,7 @@ return { [1]="unique_voltaxic_rift_shock_maximum_magnitude_override" } }, - [10008]={ + [10318]={ [1]={ [1]={ [1]={ @@ -227794,7 +234826,7 @@ return { [1]="unnerve_for_4_seconds_on_hit_with_wands" } }, - [10009]={ + [10319]={ [1]={ [1]={ [1]={ @@ -227814,7 +234846,7 @@ return { [1]="unnerve_nearby_enemies_on_use_for_ms" } }, - [10010]={ + [10320]={ [1]={ [1]={ limit={ @@ -227839,7 +234871,7 @@ return { [1]="utility_flask_charges_recovered_per_3_seconds" } }, - [10011]={ + [10321]={ [1]={ [1]={ limit={ @@ -227868,7 +234900,7 @@ return { [1]="utility_flask_cold_damage_taken_+%_final" } }, - [10012]={ + [10322]={ [1]={ [1]={ limit={ @@ -227897,7 +234929,7 @@ return { [1]="utility_flask_fire_damage_taken_+%_final" } }, - [10013]={ + [10323]={ [1]={ [1]={ limit={ @@ -227926,7 +234958,7 @@ return { [1]="utility_flask_lightning_damage_taken_+%_final" } }, - [10014]={ + [10324]={ [1]={ [1]={ limit={ @@ -227942,7 +234974,7 @@ return { [1]="vaal_skill_gem_level_+" } }, - [10015]={ + [10325]={ [1]={ [1]={ limit={ @@ -227958,7 +234990,7 @@ return { [1]="vaal_skill_soul_refund_chance_%" } }, - [10016]={ + [10326]={ [1]={ [1]={ limit={ @@ -227987,7 +235019,90 @@ return { [1]="vaal_skill_soul_requirement_+%" } }, - [10017]={ + [10327]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=1 + } + }, + text="Vaal Skills can store {0:+d} Use" + }, + [2]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Vaal Skills can store {0:+d} Uses" + } + }, + stats={ + [1]="vaal_skill_store_uses_+" + } + }, + [10328]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Vaal Skills have {0}% increased Area of Effect" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Vaal Skills have {0}% reduced Area of Effect" + } + }, + stats={ + [1]="vaal_skills_area_of_effect_+%" + } + }, + [10329]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% increased Effect of Auras from your Vaal Skills" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% reduced Effect of Auras from your Vaal Skills" + } + }, + stats={ + [1]="vaal_skills_aura_effect_+%" + } + }, + [10330]={ [1]={ [1]={ [1]={ @@ -228020,7 +235135,7 @@ return { [1]="vaal_souls_gained_per_minute" } }, - [10018]={ + [10331]={ [1]={ [1]={ limit={ @@ -228049,7 +235164,7 @@ return { [1]="vaal_volcanic_fissure_molten_strike_soul_gain_prevention_+%" } }, - [10019]={ + [10332]={ [1]={ [1]={ limit={ @@ -228078,7 +235193,7 @@ return { [1]="vampiric_link_duration_+%" } }, - [10020]={ + [10333]={ [1]={ [1]={ limit={ @@ -228094,7 +235209,7 @@ return { [1]="vigilant_and_flicker_strike_active_skill_cooldown_bypass_type_override_to_power_charge" } }, - [10021]={ + [10334]={ [1]={ [1]={ limit={ @@ -228123,7 +235238,7 @@ return { [1]="viper_and_pestilent_strike_attack_damage_+%_per_frenzy_charge" } }, - [10022]={ + [10335]={ [1]={ [1]={ limit={ @@ -228148,7 +235263,7 @@ return { [1]="viper_strike_chance_to_gain_unholy_might_%_on_hit_per_poison_stack_on_enemy" } }, - [10023]={ + [10336]={ [1]={ [1]={ limit={ @@ -228177,7 +235292,7 @@ return { [1]="viper_strike_dual_wield_attack_speed_+%_final" } }, - [10024]={ + [10337]={ [1]={ [1]={ limit={ @@ -228206,7 +235321,7 @@ return { [1]="viper_strike_dual_wield_damage_+%_final" } }, - [10025]={ + [10338]={ [1]={ [1]={ limit={ @@ -228231,7 +235346,7 @@ return { [1]="virtual_block_%_damage_taken" } }, - [10026]={ + [10339]={ [1]={ [1]={ limit={ @@ -228256,7 +235371,7 @@ return { [1]="additional_beam_only_chains" } }, - [10027]={ + [10340]={ [1]={ [1]={ limit={ @@ -228281,7 +235396,7 @@ return { [1]="virulent_arrow_additional_spores_at_max_stages" } }, - [10028]={ + [10341]={ [1]={ [1]={ [1]={ @@ -228301,7 +235416,7 @@ return { [1]="virulent_arrow_chance_to_poison_%_per_stage" } }, - [10029]={ + [10342]={ [1]={ [1]={ [1]={ @@ -228334,7 +235449,7 @@ return { [1]="vitality_mana_reservation_efficiency_-2%_per_1" } }, - [10030]={ + [10343]={ [1]={ [1]={ limit={ @@ -228363,7 +235478,7 @@ return { [1]="vitality_mana_reservation_efficiency_+%" } }, - [10031]={ + [10344]={ [1]={ [1]={ limit={ @@ -228379,7 +235494,7 @@ return { [1]="vitality_reserves_no_mana" } }, - [10032]={ + [10345]={ [1]={ [1]={ limit={ @@ -228395,7 +235510,7 @@ return { [1]="void_sphere_cooldown_speed_+%" } }, - [10033]={ + [10346]={ [1]={ [1]={ limit={ @@ -228411,7 +235526,7 @@ return { [1]="volatile_dead_and_cremation_penetrate_%_fire_resistance_per_100_dexterity" } }, - [10034]={ + [10347]={ [1]={ [1]={ limit={ @@ -228436,7 +235551,7 @@ return { [1]="volatile_dead_base_number_of_corpses_to_consume" } }, - [10035]={ + [10348]={ [1]={ [1]={ limit={ @@ -228465,7 +235580,7 @@ return { [1]="volatile_dead_cast_speed_+%" } }, - [10036]={ + [10349]={ [1]={ [1]={ limit={ @@ -228481,7 +235596,7 @@ return { [1]="volatile_dead_consume_additional_corpse" } }, - [10037]={ + [10350]={ [1]={ [1]={ limit={ @@ -228510,7 +235625,7 @@ return { [1]="volatile_dead_damage_+%" } }, - [10038]={ + [10351]={ [1]={ [1]={ limit={ @@ -228539,7 +235654,7 @@ return { [1]="volcanic_fissure_damage_+%" } }, - [10039]={ + [10352]={ [1]={ [1]={ limit={ @@ -228564,7 +235679,7 @@ return { [1]="volcanic_fissure_number_of_additional_projectiles" } }, - [10040]={ + [10353]={ [1]={ [1]={ limit={ @@ -228593,7 +235708,7 @@ return { [1]="volcanic_fissure_speed_+%" } }, - [10041]={ + [10354]={ [1]={ [1]={ limit={ @@ -228622,7 +235737,7 @@ return { [1]="voltaxic_burst_damage_+%" } }, - [10042]={ + [10355]={ [1]={ [1]={ limit={ @@ -228651,7 +235766,7 @@ return { [1]="voltaxic_burst_damage_+%_per_100ms_duration" } }, - [10043]={ + [10356]={ [1]={ [1]={ limit={ @@ -228680,7 +235795,7 @@ return { [1]="voltaxic_burst_skill_area_of_effect_+%" } }, - [10044]={ + [10357]={ [1]={ [1]={ [1]={ @@ -228700,7 +235815,7 @@ return { [1]="vortex_active_skill_additional_critical_strike_chance_if_used_through_frostbolt" } }, - [10045]={ + [10358]={ [1]={ [1]={ limit={ @@ -228729,7 +235844,7 @@ return { [1]="vortex_area_of_effect_+%_when_cast_on_frostbolt" } }, - [10046]={ + [10359]={ [1]={ [1]={ limit={ @@ -228745,7 +235860,7 @@ return { [1]="vulnerability_no_reservation" } }, - [10047]={ + [10360]={ [1]={ [1]={ limit={ @@ -228761,7 +235876,7 @@ return { [1]="wand_attacks_fire_an_additional_projectile" } }, - [10048]={ + [10361]={ [1]={ [1]={ [1]={ @@ -228798,7 +235913,7 @@ return { [1]="wand_damage_+%_if_crit_recently" } }, - [10049]={ + [10362]={ [1]={ [1]={ limit={ @@ -228814,7 +235929,7 @@ return { [1]="wand_physical_damage_%_to_add_as_chaos" } }, - [10050]={ + [10363]={ [1]={ [1]={ limit={ @@ -228830,7 +235945,7 @@ return { [1]="wand_physical_damage_%_to_convert_to_lightning" } }, - [10051]={ + [10364]={ [1]={ [1]={ limit={ @@ -228859,7 +235974,7 @@ return { [1]="war_banner_aura_effect_+%" } }, - [10052]={ + [10365]={ [1]={ [1]={ limit={ @@ -228888,7 +236003,7 @@ return { [1]="war_banner_mana_reservation_efficiency_+%" } }, - [10053]={ + [10366]={ [1]={ [1]={ [1]={ @@ -228929,7 +236044,7 @@ return { [1]="warcries_apply_cover_in_ash_for_X_ms" } }, - [10054]={ + [10367]={ [1]={ [1]={ limit={ @@ -228945,7 +236060,7 @@ return { [1]="warcries_cost_%_of_life" } }, - [10055]={ + [10368]={ [1]={ [1]={ [1]={ @@ -228965,7 +236080,7 @@ return { [1]="warcries_debilitate_enemies_for_1_second" } }, - [10056]={ + [10369]={ [1]={ [1]={ limit={ @@ -228981,7 +236096,7 @@ return { [1]="warcries_exert_twice_as_many_attacks" } }, - [10057]={ + [10370]={ [1]={ [1]={ limit={ @@ -228997,7 +236112,7 @@ return { [1]="warcries_have_minimum_10_power" } }, - [10058]={ + [10371]={ [1]={ [1]={ limit={ @@ -229013,7 +236128,7 @@ return { [1]="warcries_knock_back_enemies" } }, - [10059]={ + [10372]={ [1]={ [1]={ limit={ @@ -229042,7 +236157,7 @@ return { [1]="warcry_buff_effect_+%" } }, - [10060]={ + [10373]={ [1]={ [1]={ [1]={ @@ -229062,7 +236177,7 @@ return { [1]="warcry_chance_to_gain_frenzy_power_endurance_charge_%_per_power" } }, - [10061]={ + [10374]={ [1]={ [1]={ [1]={ @@ -229082,7 +236197,7 @@ return { [1]="warcry_cooldown_modifier_ms" } }, - [10062]={ + [10375]={ [1]={ [1]={ [1]={ @@ -229217,7 +236332,7 @@ return { [4]="warcries_have_infinite_power" } }, - [10063]={ + [10376]={ [1]={ [1]={ limit={ @@ -229242,7 +236357,7 @@ return { [1]="warcry_empowers_next_x_melee_attacks" } }, - [10064]={ + [10377]={ [1]={ [1]={ [1]={ @@ -229262,7 +236377,7 @@ return { [1]="warcry_grant_X_rage_per_5_power" } }, - [10065]={ + [10378]={ [1]={ [1]={ limit={ @@ -229291,7 +236406,7 @@ return { [1]="warcry_monster_power_+%" } }, - [10066]={ + [10379]={ [1]={ [1]={ [1]={ @@ -229328,7 +236443,7 @@ return { [1]="warcry_physical_damage_reduction_rating_+%_per_5_power_for_8_seconds" } }, - [10067]={ + [10380]={ [1]={ [1]={ limit={ @@ -229357,7 +236472,7 @@ return { [1]="warcry_skill_area_of_effect_+%" } }, - [10068]={ + [10381]={ [1]={ [1]={ limit={ @@ -229373,7 +236488,7 @@ return { [1]="warcry_skills_cooldown_is_4_seconds" } }, - [10069]={ + [10382]={ [1]={ [1]={ [1]={ @@ -229410,7 +236525,60 @@ return { [1]="warcry_speed_+%_if_not_warcried_recently" } }, - [10070]={ + [10383]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextRecently" + }, + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="{0}% faster Restoration of Ward per Enemy Hit taken Recently" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + [2]={ + k="reminderstring", + v="ReminderTextRecently" + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="{0}% slower Restoration of Ward per Enemy Hit taken Recently" + } + }, + stats={ + [1]="ward_delay_recovery_+%_per_enemy_hit_taken_recently" + } + }, + [10384]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% increased Ward from Equipped Armour Items" + } + }, + stats={ + [1]="ward_from_armour_item_+%" + } + }, + [10385]={ [1]={ [1]={ limit={ @@ -229426,7 +236594,7 @@ return { [1]="ward_instead_of_%_body_armour_and_evasion" } }, - [10071]={ + [10386]={ [1]={ [1]={ [1]={ @@ -229463,7 +236631,7 @@ return { [1]="warden_tincture_toxicity_rate_+%_final" } }, - [10072]={ + [10387]={ [1]={ [1]={ limit={ @@ -229479,7 +236647,7 @@ return { [1]="warden_tracker" } }, - [10073]={ + [10388]={ [1]={ [1]={ limit={ @@ -229495,7 +236663,7 @@ return { [1]="water_sphere_cold_lightning_exposure_%" } }, - [10074]={ + [10389]={ [1]={ [1]={ limit={ @@ -229524,7 +236692,7 @@ return { [1]="water_sphere_damage_+%" } }, - [10075]={ + [10390]={ [1]={ [1]={ limit={ @@ -229553,7 +236721,7 @@ return { [1]="weapon_tree_cast_speed_+%_final" } }, - [10076]={ + [10391]={ [1]={ [1]={ limit={ @@ -229582,7 +236750,7 @@ return { [1]="weapon_tree_counterattacks_damage_+%_final" } }, - [10077]={ + [10392]={ [1]={ [1]={ limit={ @@ -229611,7 +236779,7 @@ return { [1]="weapon_tree_damage_+%_final" } }, - [10078]={ + [10393]={ [1]={ [1]={ limit={ @@ -229636,7 +236804,7 @@ return { [1]="weapon_tree_local_sell_price_ancient_orb" } }, - [10079]={ + [10394]={ [1]={ [1]={ limit={ @@ -229661,7 +236829,7 @@ return { [1]="weapon_tree_local_sell_price_awakened_sextant" } }, - [10080]={ + [10395]={ [1]={ [1]={ limit={ @@ -229686,7 +236854,7 @@ return { [1]="weapon_tree_local_sell_price_blessed_orb" } }, - [10081]={ + [10396]={ [1]={ [1]={ limit={ @@ -229711,7 +236879,7 @@ return { [1]="weapon_tree_local_sell_price_chaos_orb" } }, - [10082]={ + [10397]={ [1]={ [1]={ limit={ @@ -229736,7 +236904,7 @@ return { [1]="weapon_tree_local_sell_price_crystalline_geode" } }, - [10083]={ + [10398]={ [1]={ [1]={ limit={ @@ -229761,7 +236929,7 @@ return { [1]="weapon_tree_local_sell_price_divine_orb" } }, - [10084]={ + [10399]={ [1]={ [1]={ limit={ @@ -229786,7 +236954,7 @@ return { [1]="weapon_tree_local_sell_price_exalted_orb" } }, - [10085]={ + [10400]={ [1]={ [1]={ limit={ @@ -229802,7 +236970,7 @@ return { [1]="weapon_tree_local_sell_price_for_additional_crucible_experience" } }, - [10086]={ + [10401]={ [1]={ [1]={ limit={ @@ -229818,7 +236986,7 @@ return { [1]="weapon_tree_local_sell_price_for_additional_specific_currency" } }, - [10087]={ + [10402]={ [1]={ [1]={ limit={ @@ -229847,7 +237015,7 @@ return { [1]="weapon_tree_local_sell_price_for_additional_specific_unique" } }, - [10088]={ + [10403]={ [1]={ [1]={ limit={ @@ -229872,7 +237040,7 @@ return { [1]="weapon_tree_local_sell_price_gemcutters_prism" } }, - [10089]={ + [10404]={ [1]={ [1]={ limit={ @@ -229897,7 +237065,7 @@ return { [1]="weapon_tree_local_sell_price_igneous_geode" } }, - [10090]={ + [10405]={ [1]={ [1]={ limit={ @@ -229922,7 +237090,7 @@ return { [1]="weapon_tree_local_sell_price_mirror_shard" } }, - [10091]={ + [10406]={ [1]={ [1]={ limit={ @@ -229938,7 +237106,7 @@ return { [1]="weapon_tree_local_sell_price_of_tree_nodes_doubled" } }, - [10092]={ + [10407]={ [1]={ [1]={ limit={ @@ -229963,7 +237131,7 @@ return { [1]="weapon_tree_local_sell_price_orb_of_annulment" } }, - [10093]={ + [10408]={ [1]={ [1]={ limit={ @@ -229988,7 +237156,7 @@ return { [1]="weapon_tree_local_sell_price_orb_of_regret" } }, - [10094]={ + [10409]={ [1]={ [1]={ limit={ @@ -230013,7 +237181,7 @@ return { [1]="weapon_tree_local_sell_price_regal_orb" } }, - [10095]={ + [10410]={ [1]={ [1]={ limit={ @@ -230038,7 +237206,7 @@ return { [1]="weapon_tree_local_sell_price_sacred_orb" } }, - [10096]={ + [10411]={ [1]={ [1]={ limit={ @@ -230063,7 +237231,7 @@ return { [1]="weapon_tree_local_sell_price_scouring_orb" } }, - [10097]={ + [10412]={ [1]={ [1]={ limit={ @@ -230088,7 +237256,7 @@ return { [1]="weapon_tree_local_sell_price_vaal_orb" } }, - [10098]={ + [10413]={ [1]={ [1]={ limit={ @@ -230113,7 +237281,7 @@ return { [1]="weapon_tree_local_sell_price_vault_key" } }, - [10099]={ + [10414]={ [1]={ [1]={ limit={ @@ -230142,7 +237310,7 @@ return { [1]="weapon_tree_maximum_mana_+%_final" } }, - [10100]={ + [10415]={ [1]={ [1]={ limit={ @@ -230158,7 +237326,7 @@ return { [1]="weapon_tree_throw_traps_in_circle_radius" } }, - [10101]={ + [10416]={ [1]={ [1]={ [1]={ @@ -230191,7 +237359,7 @@ return { [1]="while_curse_is_25%_expired_hinder_enemy_%" } }, - [10102]={ + [10417]={ [1]={ [1]={ [1]={ @@ -230211,7 +237379,7 @@ return { [1]="while_curse_is_33%_expired_malediction" } }, - [10103]={ + [10418]={ [1]={ [1]={ limit={ @@ -230240,7 +237408,7 @@ return { [1]="while_curse_is_50%_expired_curse_effect_+%" } }, - [10104]={ + [10419]={ [1]={ [1]={ limit={ @@ -230269,7 +237437,7 @@ return { [1]="while_curse_is_75%_expired_enemy_damage_taken_+%" } }, - [10105]={ + [10420]={ [1]={ [1]={ limit={ @@ -230285,7 +237453,7 @@ return { [1]="while_stationary_gain_additional_physical_damage_reduction_%" } }, - [10106]={ + [10421]={ [1]={ [1]={ [1]={ @@ -230305,7 +237473,7 @@ return { [1]="while_stationary_gain_life_regeneration_rate_per_minute_%" } }, - [10107]={ + [10422]={ [1]={ [1]={ limit={ @@ -230334,7 +237502,7 @@ return { [1]="winter_brand_chill_effect_+%" } }, - [10108]={ + [10423]={ [1]={ [1]={ limit={ @@ -230363,7 +237531,7 @@ return { [1]="winter_brand_damage_+%" } }, - [10109]={ + [10424]={ [1]={ [1]={ limit={ @@ -230379,7 +237547,7 @@ return { [1]="winter_brand_max_number_of_stages_+" } }, - [10110]={ + [10425]={ [1]={ [1]={ limit={ @@ -230395,7 +237563,7 @@ return { [1]="wintertide_and_arcanist_brand_branded_enemy_explode_for_25%_life_as_chaos_on_death_chance_%" } }, - [10111]={ + [10426]={ [1]={ [1]={ limit={ @@ -230411,7 +237579,7 @@ return { [1]="wither_area_of_effect_+%_every_second_while_channelling_up_to_+200%" } }, - [10112]={ + [10427]={ [1]={ [1]={ limit={ @@ -230444,7 +237612,7 @@ return { [1]="wither_expire_speed_+%" } }, - [10113]={ + [10428]={ [1]={ [1]={ [1]={ @@ -230481,7 +237649,7 @@ return { [1]="withered_effect_on_self_+%" } }, - [10114]={ + [10429]={ [1]={ [1]={ [1]={ @@ -230518,7 +237686,7 @@ return { [1]="withered_effect_+%" } }, - [10115]={ + [10430]={ [1]={ [1]={ [1]={ @@ -230551,7 +237719,36 @@ return { [1]="withered_on_hit_for_2_seconds_if_enemy_has_5_or_less_withered_chance_%" } }, - [10116]={ + [10431]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]="#" + } + }, + text="Wrath has {0}% increased Aura Effect while at maximum Power Charges" + }, + [2]={ + [1]={ + k="negate", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]=-1 + } + }, + text="Wrath has {0}% reduced Aura Effect while at maximum Power Charges" + } + }, + stats={ + [1]="wrath_aura_effect_+%_while_at_maximum_power_charges" + } + }, + [10432]={ [1]={ [1]={ [1]={ @@ -230584,7 +237781,7 @@ return { [1]="wrath_mana_reservation_efficiency_-2%_per_1" } }, - [10117]={ + [10433]={ [1]={ [1]={ limit={ @@ -230613,7 +237810,7 @@ return { [1]="wrath_mana_reservation_efficiency_+%" } }, - [10118]={ + [10434]={ [1]={ [1]={ limit={ @@ -230629,7 +237826,80 @@ return { [1]="wrath_reserves_no_mana" } }, - [10119]={ + [10435]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% of Life Regeneration also applies to Energy Shield" + } + }, + stats={ + [1]="x%_life_regeneration_applies_to_energy_shield" + } + }, + [10436]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="{0}% of Life Regeneration also applies to Energy Shield if no Equipped Items are Corrupted" + } + }, + stats={ + [1]="x%_life_regeneration_applies_to_energy_shield_with_no_corrupted_equipped_items" + } + }, + [10437]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]=1, + [2]=99 + } + }, + text="{0}% chance for Wombgifts to Birth 10 additional Currency Items" + }, + [2]={ + limit={ + [1]={ + [1]=100, + [2]="#" + } + }, + text="Wombgifts Birth 10 additional Currency Items" + } + }, + stats={ + [1]="brequel_currency_fruit_additional_10_items_%" + } + }, + [10438]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Birthed Equipment has {0:+d} to Item Level" + } + }, + stats={ + [1]="brequel_equipment_fruit_item_level_+" + } + }, + [10439]={ [1]={ [1]={ [1]={ @@ -230649,7 +237919,7 @@ return { [1]="you_and_allies_additional_block_%_if_have_attacked_recently" } }, - [10120]={ + [10440]={ [1]={ [1]={ [1]={ @@ -230669,7 +237939,7 @@ return { [1]="you_and_allies_additional_spell_block_%_if_cast_spell_recently" } }, - [10121]={ + [10441]={ [1]={ [1]={ limit={ @@ -230685,7 +237955,7 @@ return { [1]="you_and_nearby_allies_armour_+_if_have_impaled_recently" } }, - [10122]={ + [10442]={ [1]={ [1]={ limit={ @@ -230714,7 +237984,7 @@ return { [1]="you_and_nearby_allies_critical_strike_chance_+%" } }, - [10123]={ + [10443]={ [1]={ [1]={ limit={ @@ -230730,7 +238000,7 @@ return { [1]="you_and_nearby_allies_critical_strike_multiplier_+" } }, - [10124]={ + [10444]={ [1]={ [1]={ [1]={ @@ -230754,7 +238024,7 @@ return { [1]="you_and_nearby_allies_life_regeneration_rate_per_minute_%_if_corpse_consumed_recently" } }, - [10125]={ + [10445]={ [1]={ [1]={ [1]={ @@ -230778,7 +238048,7 @@ return { [1]="you_and_nearby_allies_life_regeneration_rate_per_minute_%_if_have_blocked_recently" } }, - [10126]={ + [10446]={ [1]={ [1]={ [1]={ @@ -230802,7 +238072,7 @@ return { [1]="you_and_nearby_allies_life_regeneration_rate_per_minute_%_if_you_hit_an_enemy_recently" } }, - [10127]={ + [10447]={ [1]={ [1]={ [1]={ @@ -230822,7 +238092,7 @@ return { [1]="you_and_nearby_allys_gain_onslaught_for_4_seconds_on_warcry" } }, - [10128]={ + [10448]={ [1]={ [1]={ [1]={ @@ -230842,7 +238112,7 @@ return { [1]="you_and_nearby_party_members_gain_x_rage_when_you_warcry" } }, - [10129]={ + [10449]={ [1]={ [1]={ [1]={ @@ -230862,7 +238132,7 @@ return { [1]="you_and_totem_life_regeneration_rate_per_minute_%_per_active_totem" } }, - [10130]={ + [10450]={ [1]={ [1]={ [1]={ @@ -230882,7 +238152,7 @@ return { [1]="you_are_blind" } }, - [10131]={ + [10451]={ [1]={ [1]={ [1]={ @@ -230902,7 +238172,7 @@ return { [1]="you_are_cursed_with_conductivity" } }, - [10132]={ + [10452]={ [1]={ [1]={ [1]={ @@ -230922,7 +238192,7 @@ return { [1]="you_are_cursed_with_despair" } }, - [10133]={ + [10453]={ [1]={ [1]={ [1]={ @@ -230942,7 +238212,7 @@ return { [1]="you_are_cursed_with_elemental_weakness" } }, - [10134]={ + [10454]={ [1]={ [1]={ [1]={ @@ -230962,7 +238232,7 @@ return { [1]="you_are_cursed_with_enfeeble" } }, - [10135]={ + [10455]={ [1]={ [1]={ [1]={ @@ -230982,7 +238252,7 @@ return { [1]="you_are_cursed_with_flammability" } }, - [10136]={ + [10456]={ [1]={ [1]={ [1]={ @@ -231002,7 +238272,7 @@ return { [1]="you_are_cursed_with_frostbite" } }, - [10137]={ + [10457]={ [1]={ [1]={ [1]={ @@ -231022,7 +238292,7 @@ return { [1]="you_are_cursed_with_temporal_chains" } }, - [10138]={ + [10458]={ [1]={ [1]={ [1]={ @@ -231042,7 +238312,7 @@ return { [1]="you_are_cursed_with_vulnerability" } }, - [10139]={ + [10459]={ [1]={ [1]={ limit={ @@ -231058,7 +238328,7 @@ return { [1]="you_cannot_be_hindered" } }, - [10140]={ + [10460]={ [1]={ [1]={ limit={ @@ -231074,7 +238344,7 @@ return { [1]="you_cannot_have_non_animated_minions" } }, - [10141]={ + [10461]={ [1]={ [1]={ limit={ @@ -231090,7 +238360,23 @@ return { [1]="you_cannot_have_non_spectre_minions" } }, - [10142]={ + [10462]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="[DNT] Impaled Enemies Cannot be Impaled" + } + }, + stats={ + [1]="you_cannot_impale_impaled_enemies" + } + }, + [10463]={ [1]={ [1]={ limit={ @@ -231106,7 +238392,7 @@ return { [1]="you_cannot_inflict_curses" } }, - [10143]={ + [10464]={ [1]={ [1]={ limit={ @@ -231122,7 +238408,7 @@ return { [1]="you_count_as_low_life_while_not_on_full_life" } }, - [10144]={ + [10465]={ [1]={ [1]={ limit={ @@ -231138,7 +238424,7 @@ return { [1]="you_have_feeding_frenzy_if_have_blocked_recently" } }, - [10145]={ + [10466]={ [1]={ [1]={ limit={ @@ -231154,7 +238440,7 @@ return { [1]="you_have_no_armour_or_energy_shield" } }, - [10146]={ + [10467]={ [1]={ [1]={ [1]={ @@ -231174,7 +238460,7 @@ return { [1]="you_have_your_maximum_fortification" } }, - [10147]={ + [10468]={ [1]={ [1]={ [1]={ @@ -231194,7 +238480,7 @@ return { [1]="your_ailments_deal_damage_faster_%_while_affected_by_malevolence" } }, - [10148]={ + [10469]={ [1]={ [1]={ [1]={ @@ -231214,7 +238500,7 @@ return { [1]="your_ailments_deal_damage_faster_%_while_affected_by_malevolence" } }, - [10149]={ + [10470]={ [1]={ [1]={ limit={ @@ -231230,7 +238516,7 @@ return { [1]="your_attacks_cannot_be_blocked" } }, - [10150]={ + [10471]={ [1]={ [1]={ limit={ @@ -231246,7 +238532,7 @@ return { [1]="your_auras_except_anger_are_disabled" } }, - [10151]={ + [10472]={ [1]={ [1]={ limit={ @@ -231262,7 +238548,7 @@ return { [1]="your_auras_except_clarity_are_disabled" } }, - [10152]={ + [10473]={ [1]={ [1]={ limit={ @@ -231278,7 +238564,7 @@ return { [1]="your_auras_except_determination_are_disabled" } }, - [10153]={ + [10474]={ [1]={ [1]={ limit={ @@ -231294,7 +238580,7 @@ return { [1]="your_auras_except_discipline_are_disabled" } }, - [10154]={ + [10475]={ [1]={ [1]={ limit={ @@ -231310,7 +238596,7 @@ return { [1]="your_auras_except_grace_are_disabled" } }, - [10155]={ + [10476]={ [1]={ [1]={ limit={ @@ -231326,7 +238612,7 @@ return { [1]="your_auras_except_haste_are_disabled" } }, - [10156]={ + [10477]={ [1]={ [1]={ limit={ @@ -231342,7 +238628,7 @@ return { [1]="your_auras_except_hatred_are_disabled" } }, - [10157]={ + [10478]={ [1]={ [1]={ limit={ @@ -231358,7 +238644,7 @@ return { [1]="your_auras_except_malevolence_are_disabled" } }, - [10158]={ + [10479]={ [1]={ [1]={ limit={ @@ -231374,7 +238660,7 @@ return { [1]="your_auras_except_precision_are_disabled" } }, - [10159]={ + [10480]={ [1]={ [1]={ limit={ @@ -231390,7 +238676,7 @@ return { [1]="your_auras_except_pride_are_disabled" } }, - [10160]={ + [10481]={ [1]={ [1]={ limit={ @@ -231406,7 +238692,7 @@ return { [1]="your_auras_except_purity_of_elements_are_disabled" } }, - [10161]={ + [10482]={ [1]={ [1]={ limit={ @@ -231422,7 +238708,7 @@ return { [1]="your_auras_except_purity_of_fire_are_disabled" } }, - [10162]={ + [10483]={ [1]={ [1]={ limit={ @@ -231438,7 +238724,7 @@ return { [1]="your_auras_except_purity_of_ice_are_disabled" } }, - [10163]={ + [10484]={ [1]={ [1]={ limit={ @@ -231454,7 +238740,7 @@ return { [1]="your_auras_except_purity_of_lightning_are_disabled" } }, - [10164]={ + [10485]={ [1]={ [1]={ limit={ @@ -231470,7 +238756,7 @@ return { [1]="your_auras_except_vitality_are_disabled" } }, - [10165]={ + [10486]={ [1]={ [1]={ limit={ @@ -231486,7 +238772,7 @@ return { [1]="your_auras_except_wrath_are_disabled" } }, - [10166]={ + [10487]={ [1]={ [1]={ limit={ @@ -231502,7 +238788,7 @@ return { [1]="your_auras_except_zealotry_are_disabled" } }, - [10167]={ + [10488]={ [1]={ [1]={ [1]={ @@ -231522,7 +238808,7 @@ return { [1]="your_consecrated_ground_grants_max_chaos_resistance_+" } }, - [10168]={ + [10489]={ [1]={ [1]={ [1]={ @@ -231559,7 +238845,7 @@ return { [1]="your_consecrated_ground_effect_lingers_for_ms_after_leaving_the_area" } }, - [10169]={ + [10490]={ [1]={ [1]={ limit={ @@ -231584,7 +238870,7 @@ return { [1]="your_marks_transfer_to_nearby_enemies_on_death_%_chance" } }, - [10170]={ + [10491]={ [1]={ [1]={ limit={ @@ -231600,7 +238886,7 @@ return { [1]="your_minions_gain_added_physical_damage_equal_to_%_of_energy_shield_on_helmet" } }, - [10171]={ + [10492]={ [1]={ [1]={ limit={ @@ -231616,7 +238902,27 @@ return { [1]="your_movement_skills_are_disabled" } }, - [10172]={ + [10493]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextChaoticMight" + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Profane Ground you create also affects you and your Allies, granting Chaotic Might" + } + }, + stats={ + [1]="your_profane_ground_also_affects_allies_granting_chaotic_might" + } + }, + [10494]={ [1]={ [1]={ [1]={ @@ -231657,7 +238963,7 @@ return { [1]="your_profane_ground_effect_lingers_for_ms_after_leaving_the_area" } }, - [10173]={ + [10495]={ [1]={ [1]={ limit={ @@ -231673,7 +238979,7 @@ return { [1]="your_skeletons_gain_added_chaos_damage_equal_to_%_of_energy_shield_on_shield" } }, - [10174]={ + [10496]={ [1]={ [1]={ limit={ @@ -231689,7 +238995,7 @@ return { [1]="your_spells_are_disabled" } }, - [10175]={ + [10497]={ [1]={ [1]={ limit={ @@ -231705,7 +239011,7 @@ return { [1]="your_travel_skills_are_disabled" } }, - [10176]={ + [10498]={ [1]={ [1]={ limit={ @@ -231721,7 +239027,23 @@ return { [1]="your_travel_skills_except_dash_are_disabled" } }, - [10177]={ + [10499]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Your Warcries are disabled" + } + }, + stats={ + [1]="your_warcry_skills_are_disabled" + } + }, + [10500]={ [1]={ [1]={ [1]={ @@ -231741,7 +239063,7 @@ return { [1]="all_damage_can_poison_while_affected_by_glorious_madness" } }, - [10178]={ + [10501]={ [1]={ [1]={ limit={ @@ -231757,7 +239079,7 @@ return { [1]="chance_to_deal_double_damage_while_affected_by_glorious_madness_%" } }, - [10179]={ + [10502]={ [1]={ [1]={ [1]={ @@ -231777,7 +239099,7 @@ return { [1]="cold_damage_taken_per_minute_per_frenzy_charge_while_moving" } }, - [10180]={ + [10503]={ [1]={ [1]={ limit={ @@ -231793,7 +239115,7 @@ return { [1]="explode_enemies_for_25%_life_as_chaos_on_kill_while_affected_by_glorious_madness_chance_%" } }, - [10181]={ + [10504]={ [1]={ [1]={ [1]={ @@ -231817,7 +239139,7 @@ return { [1]="fire_damage_taken_per_minute_per_endurance_charge_if_you_have_been_hit_recently" } }, - [10182]={ + [10505]={ [1]={ [1]={ [1]={ @@ -231837,7 +239159,7 @@ return { [1]="gain_chilling_shocking_igniting_conflux_while_affected_by_glorious_madness" } }, - [10183]={ + [10506]={ [1]={ [1]={ [1]={ @@ -231861,7 +239183,7 @@ return { [1]="gain_debilitating_presence_ms_on_kill_vs_rare_or_unique_enemy" } }, - [10184]={ + [10507]={ [1]={ [1]={ [1]={ @@ -231881,7 +239203,7 @@ return { [1]="immune_to_elemental_status_ailments_while_affected_by_glorious_madness" } }, - [10185]={ + [10508]={ [1]={ [1]={ [1]={ @@ -231905,7 +239227,7 @@ return { [1]="lightning_damage_taken_per_minute_per_power_charge_if_have_crit_recently" } }, - [10186]={ + [10509]={ [1]={ [1]={ limit={ @@ -231921,7 +239243,7 @@ return { [1]="local_apply_extra_herald_mod_when_synthesised" } }, - [10187]={ + [10510]={ [1]={ [1]={ limit={ @@ -231937,7 +239259,7 @@ return { [1]="local_is_alternate_tree_jewel" } }, - [10188]={ + [10511]={ [1]={ [1]={ limit={ @@ -231953,7 +239275,90 @@ return { [1]="local_is_survival_jewel" } }, - [10189]={ + [10512]={ + [1]={ + [1]={ + [1]={ + k="passive_hash", + v=1 + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Passive Skills in Radius of {} can be Allocated\nwithout being connected to your tree\nPassage" + } + }, + stats={ + [1]="local_unique_jewel_disconnected_passives_can_be_allocated_around_keystone_hash" + } + }, + [10513]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Keystone Passive Skills in Radius can be Allocated without being connected to your tree\nPassage" + } + }, + stats={ + [1]="local_unique_jewel_nearby_disconnected_keystone_passives_can_be_allocated" + } + }, + [10514]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="!", + [2]=0 + }, + [2]={ + [1]=0, + [2]=0 + } + }, + text="Passive Skills in Radius can be Allocated without being connected to your tree\nPassage" + }, + [2]={ + limit={ + [1]={ + [1]=0, + [2]=0 + }, + [2]={ + [1]="!", + [2]=0 + } + }, + text="{1:+d}% to all Elemental Resistances" + }, + [3]={ + limit={ + [1]={ + [1]="!", + [2]=0 + }, + [2]={ + [1]="!", + [2]=0 + } + }, + text="Passive Skills in Radius can be Allocated without being connected to your tree\n{1:+d}% to all Elemental Resistances\nPassage" + } + }, + stats={ + [1]="local_unique_jewel_nearby_disconnected_passives_can_be_allocated", + [2]="unique_thread_of_hope_base_resist_all_elements_%" + } + }, + [10515]={ [1]={ [1]={ limit={ @@ -231969,7 +239374,7 @@ return { [1]="lose_X_bark_on_enemy_spell_hit" } }, - [10190]={ + [10516]={ [1]={ [1]={ [1]={ @@ -231989,7 +239394,7 @@ return { [1]="max_fortification_while_affected_by_glorious_madness_+1_per_4" } }, - [10191]={ + [10517]={ [1]={ [1]={ limit={ @@ -232005,7 +239410,7 @@ return { [1]="primordial_jewel_count" } }, - [10192]={ + [10518]={ [1]={ [1]={ limit={ @@ -232036,7 +239441,7 @@ return { [4]="skill_max_unleash_seals" } }, - [10193]={ + [10519]={ [1]={ [1]={ limit={ @@ -232065,7 +239470,7 @@ return { [1]="zealotry_aura_effect_+%" } }, - [10194]={ + [10520]={ [1]={ [1]={ [1]={ @@ -232098,7 +239503,7 @@ return { [1]="zealotry_mana_reservation_efficiency_-2%_per_1" } }, - [10195]={ + [10521]={ [1]={ [1]={ limit={ @@ -232127,7 +239532,7 @@ return { [1]="zealotry_mana_reservation_efficiency_+%" } }, - [10196]={ + [10522]={ [1]={ [1]={ limit={ @@ -232156,7 +239561,7 @@ return { [1]="zealotry_mana_reservation_+%" } }, - [10197]={ + [10523]={ [1]={ [1]={ limit={ @@ -232172,7 +239577,7 @@ return { [1]="zealotry_reserves_no_mana" } }, - [10198]={ + [10524]={ [1]={ [1]={ limit={ @@ -232188,7 +239593,7 @@ return { [1]="zero_chaos_resistance" } }, - [10199]={ + [10525]={ [1]={ [1]={ limit={ @@ -232204,7 +239609,7 @@ return { [1]="local_nearby_enemies_base_physical_damage_%_to_convert_to_fire" } }, - [10200]={ + [10526]={ [1]={ [1]={ limit={ @@ -232220,7 +239625,7 @@ return { [1]="map_abyss_scarab_more_likely_%" } }, - [10201]={ + [10527]={ [1]={ [1]={ limit={ @@ -232236,7 +239641,7 @@ return { [1]="map_anarchy_scarab_more_likely_%" } }, - [10202]={ + [10528]={ [1]={ [1]={ limit={ @@ -232252,7 +239657,7 @@ return { [1]="map_bestiary_scarab_more_likely_%" } }, - [10203]={ + [10529]={ [1]={ [1]={ limit={ @@ -232268,7 +239673,7 @@ return { [1]="map_betrayal_scarab_more_likely_%" } }, - [10204]={ + [10530]={ [1]={ [1]={ limit={ @@ -232284,7 +239689,7 @@ return { [1]="map_beyond_scarab_more_likely_%" } }, - [10205]={ + [10531]={ [1]={ [1]={ limit={ @@ -232300,7 +239705,7 @@ return { [1]="map_blight_scarab_more_likely_%" } }, - [10206]={ + [10532]={ [1]={ [1]={ limit={ @@ -232316,7 +239721,7 @@ return { [1]="map_breach_scarab_more_likely_%" } }, - [10207]={ + [10533]={ [1]={ [1]={ limit={ @@ -232332,7 +239737,7 @@ return { [1]="map_delirium_scarab_more_likely_%" } }, - [10208]={ + [10534]={ [1]={ [1]={ limit={ @@ -232348,7 +239753,7 @@ return { [1]="map_delve_scarab_more_likely_%" } }, - [10209]={ + [10535]={ [1]={ [1]={ limit={ @@ -232364,7 +239769,7 @@ return { [1]="map_divination_scarab_more_likely_%" } }, - [10210]={ + [10536]={ [1]={ [1]={ limit={ @@ -232380,7 +239785,7 @@ return { [1]="map_domination_scarab_more_likely_%" } }, - [10211]={ + [10537]={ [1]={ [1]={ limit={ @@ -232396,7 +239801,7 @@ return { [1]="map_essence_scarab_more_likely_%" } }, - [10212]={ + [10538]={ [1]={ [1]={ limit={ @@ -232412,7 +239817,7 @@ return { [1]="map_expedition_scarab_more_likely_%" } }, - [10213]={ + [10539]={ [1]={ [1]={ limit={ @@ -232428,7 +239833,7 @@ return { [1]="map_harbinger_scarab_more_likely_%" } }, - [10214]={ + [10540]={ [1]={ [1]={ limit={ @@ -232444,7 +239849,7 @@ return { [1]="map_harvest_scarab_more_likely_%" } }, - [10215]={ + [10541]={ [1]={ [1]={ limit={ @@ -232460,7 +239865,7 @@ return { [1]="map_incursion_scarab_more_likely_%" } }, - [10216]={ + [10542]={ [1]={ [1]={ limit={ @@ -232476,7 +239881,7 @@ return { [1]="map_legion_scarab_more_likely_%" } }, - [10217]={ + [10543]={ [1]={ [1]={ limit={ @@ -232492,7 +239897,7 @@ return { [1]="map_maps_scarab_more_likely_%" } }, - [10218]={ + [10544]={ [1]={ [1]={ limit={ @@ -232508,7 +239913,7 @@ return { [1]="map_ritual_scarab_more_likely_%" } }, - [10219]={ + [10545]={ [1]={ [1]={ limit={ @@ -232524,7 +239929,7 @@ return { [1]="map_settlers_scarab_more_likely_%" } }, - [10220]={ + [10546]={ [1]={ [1]={ limit={ @@ -232540,7 +239945,7 @@ return { [1]="map_strongbox_scarab_more_likely_%" } }, - [10221]={ + [10547]={ [1]={ [1]={ limit={ @@ -232556,7 +239961,7 @@ return { [1]="map_torment_scarab_more_likely_%" } }, - [10222]={ + [10548]={ [1]={ [1]={ limit={ @@ -232572,7 +239977,7 @@ return { [1]="map_ultimatum_scarab_more_likely_%" } }, - [10223]={ + [10549]={ [1]={ [1]={ limit={ @@ -232588,7 +239993,7 @@ return { [1]="map_uniques_scarab_more_likely_%" } }, - [10224]={ + [10550]={ [1]={ [1]={ [1]={ @@ -232608,7 +240013,7 @@ return { [1]="zombie_caustic_cloud_on_death_maximum_life_per_minute_to_deal_as_chaos_damage_%" } }, - [10225]={ + [10551]={ [1]={ [1]={ [1]={ @@ -232628,7 +240033,7 @@ return { [1]="zombie_damage_leeched_as_life_to_you_permyriad_if_over_1000_strength" } }, - [10226]={ + [10552]={ [1]={ [1]={ limit={ @@ -232657,7 +240062,7 @@ return { [1]="zombie_physical_damage_+%_final" } }, - [10227]={ + [10553]={ [1]={ [1]={ limit={ @@ -232686,7 +240091,7 @@ return { [1]="zombie_slam_area_of_effect_+%" } }, - [10228]={ + [10554]={ [1]={ [1]={ limit={ @@ -232702,7 +240107,7 @@ return { [1]="zombie_slam_cooldown_speed_+%" } }, - [10229]={ + [10555]={ [1]={ [1]={ limit={ @@ -232718,7 +240123,7 @@ return { [1]="zombie_slam_damage_+%" } }, - [10230]={ + [10556]={ [1]={ [1]={ [1]={ @@ -232738,7 +240143,7 @@ return { [1]="golems_larger_aggro_radius" } }, - [10231]={ + [10557]={ [1]={ [1]={ [1]={ @@ -232758,7 +240163,7 @@ return { [1]="minion_larger_aggro_radius" } }, - [10232]={ + [10558]={ [1]={ [1]={ limit={ @@ -232779,7 +240184,7 @@ return { [2]="local_unique_jewel_notable_passives_in_radius_instead_grant_spell_damage_+%" } }, - [10233]={ + [10559]={ [1]={ [1]={ limit={ @@ -232808,7 +240213,7 @@ return { [1]="local_unique_jewel_notable_passives_in_radius_instead_grant_minion_damage_taken_+%" } }, - [10234]={ + [10560]={ [1]={ [1]={ limit={ @@ -232837,7 +240242,7 @@ return { [1]="local_unique_jewel_notable_passives_in_radius_instead_grant_minion_movement_speed_+%" } }, - [10235]={ + [10561]={ [1]={ [1]={ limit={ @@ -232858,7 +240263,7 @@ return { [2]="local_unique_jewel_passives_in_radius_give_trap_and_mine_maximum_added_physical_damage" } }, - [10236]={ + [10562]={ [1]={ [1]={ [1]={ @@ -232878,7 +240283,7 @@ return { [1]="melee_hits_grant_rampage_stacks" } }, - [10237]={ + [10563]={ [1]={ [1]={ [1]={ @@ -232898,7 +240303,7 @@ return { [1]="player_gain_rampage_stacks" } }, - [10238]={ + [10564]={ [1]={ [1]={ [1]={ @@ -232918,7 +240323,7 @@ return { [1]="keystone_acrobatics" } }, - [10239]={ + [10565]={ [1]={ [1]={ [1]={ @@ -232942,7 +240347,7 @@ return { [1]="keystone_ailment_crit" } }, - [10240]={ + [10566]={ [1]={ [1]={ [1]={ @@ -232962,7 +240367,7 @@ return { [1]="keystone_ancestral_bond" } }, - [10241]={ + [10567]={ [1]={ [1]={ [1]={ @@ -232982,7 +240387,7 @@ return { [1]="keystone_avatar_of_fire" } }, - [10242]={ + [10568]={ [1]={ [1]={ [1]={ @@ -233002,7 +240407,7 @@ return { [1]="keystone_battlemage" } }, - [10243]={ + [10569]={ [1]={ [1]={ [1]={ @@ -233022,7 +240427,7 @@ return { [1]="keystone_blood_magic" } }, - [10244]={ + [10570]={ [1]={ [1]={ [1]={ @@ -233042,7 +240447,7 @@ return { [1]="keystone_call_to_arms" } }, - [10245]={ + [10571]={ [1]={ [1]={ [1]={ @@ -233062,7 +240467,7 @@ return { [1]="keystone_chaos_inoculation" } }, - [10246]={ + [10572]={ [1]={ [1]={ [1]={ @@ -233082,7 +240487,7 @@ return { [1]="keystone_conduit" } }, - [10247]={ + [10573]={ [1]={ [1]={ [1]={ @@ -233102,7 +240507,7 @@ return { [1]="keystone_corrupted_defences" } }, - [10248]={ + [10574]={ [1]={ [1]={ [1]={ @@ -233122,7 +240527,7 @@ return { [1]="keystone_crimson_dance" } }, - [10249]={ + [10575]={ [1]={ [1]={ [1]={ @@ -233146,7 +240551,7 @@ return { [1]="keystone_divine_flesh" } }, - [10250]={ + [10576]={ [1]={ [1]={ [1]={ @@ -233170,7 +240575,7 @@ return { [1]="keystone_divine_shield" } }, - [10251]={ + [10577]={ [1]={ [1]={ [1]={ @@ -233190,7 +240595,7 @@ return { [1]="keystone_eldritch_battery" } }, - [10252]={ + [10578]={ [1]={ [1]={ [1]={ @@ -233210,7 +240615,7 @@ return { [1]="keystone_elemental_equilibrium" } }, - [10253]={ + [10579]={ [1]={ [1]={ [1]={ @@ -233230,7 +240635,7 @@ return { [1]="keystone_elemental_overload" } }, - [10254]={ + [10580]={ [1]={ [1]={ [1]={ @@ -233250,7 +240655,7 @@ return { [1]="keystone_emperors_heart" } }, - [10255]={ + [10581]={ [1]={ [1]={ [1]={ @@ -233270,7 +240675,7 @@ return { [1]="keystone_eternal_youth" } }, - [10256]={ + [10582]={ [1]={ [1]={ [1]={ @@ -233290,7 +240695,7 @@ return { [1]="keystone_everlasting_sacrifice" } }, - [10257]={ + [10583]={ [1]={ [1]={ [1]={ @@ -233310,7 +240715,7 @@ return { [1]="keystone_ghost_dance" } }, - [10258]={ + [10584]={ [1]={ [1]={ [1]={ @@ -233330,7 +240735,7 @@ return { [1]="keystone_ghost_reaver" } }, - [10259]={ + [10585]={ [1]={ [1]={ [1]={ @@ -233350,7 +240755,27 @@ return { [1]="keystone_glancing_blows" } }, - [10260]={ + [10586]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextLoneMessenger" + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Lone Messenger" + } + }, + stats={ + [1]="keystone_herald_of_doom" + } + }, + [10587]={ [1]={ [1]={ [1]={ @@ -233370,7 +240795,7 @@ return { [1]="keystone_hex_master" } }, - [10261]={ + [10588]={ [1]={ [1]={ [1]={ @@ -233394,7 +240819,7 @@ return { [1]="keystone_hollow_palm_technique" } }, - [10262]={ + [10589]={ [1]={ [1]={ [1]={ @@ -233414,7 +240839,7 @@ return { [1]="keystone_impale" } }, - [10263]={ + [10590]={ [1]={ [1]={ [1]={ @@ -233434,7 +240859,7 @@ return { [1]="keystone_iron_reflexes" } }, - [10264]={ + [10591]={ [1]={ [1]={ [1]={ @@ -233458,7 +240883,7 @@ return { [1]="keystone_lethe_shade" } }, - [10265]={ + [10592]={ [1]={ [1]={ [1]={ @@ -233482,7 +240907,7 @@ return { [1]="keystone_magebane" } }, - [10266]={ + [10593]={ [1]={ [1]={ [1]={ @@ -233502,7 +240927,7 @@ return { [1]="keystone_mana_shield" } }, - [10267]={ + [10594]={ [1]={ [1]={ [1]={ @@ -233522,7 +240947,7 @@ return { [1]="keystone_minion_instability" } }, - [10268]={ + [10595]={ [1]={ [1]={ [1]={ @@ -233542,7 +240967,7 @@ return { [1]="keystone_miracle_of_thaumaturgy" } }, - [10269]={ + [10596]={ [1]={ [1]={ [1]={ @@ -233566,7 +240991,7 @@ return { [1]="keystone_pain_attunement" } }, - [10270]={ + [10597]={ [1]={ [1]={ [1]={ @@ -233586,7 +241011,7 @@ return { [1]="keystone_point_blank" } }, - [10271]={ + [10598]={ [1]={ [1]={ [1]={ @@ -233606,7 +241031,27 @@ return { [1]="keystone_precise_technique" } }, - [10272]={ + [10599]={ + [1]={ + [1]={ + [1]={ + k="reminderstring", + v="ReminderTextPrismaticBulwark" + }, + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Transcendence" + } + }, + stats={ + [1]="keystone_prismatic_bulwark" + } + }, + [10600]={ [1]={ [1]={ [1]={ @@ -233626,7 +241071,7 @@ return { [1]="keystone_projectile_evasion" } }, - [10273]={ + [10601]={ [1]={ [1]={ [1]={ @@ -233646,7 +241091,7 @@ return { [1]="keystone_quiet_might" } }, - [10274]={ + [10602]={ [1]={ [1]={ [1]={ @@ -233666,7 +241111,7 @@ return { [1]="regenerate_energy_shield_instead_of_life" } }, - [10275]={ + [10603]={ [1]={ [1]={ [1]={ @@ -233686,7 +241131,7 @@ return { [1]="keystone_retaliation_hits" } }, - [10276]={ + [10604]={ [1]={ [1]={ [1]={ @@ -233706,7 +241151,7 @@ return { [1]="keystone_runebinder" } }, - [10277]={ + [10605]={ [1]={ [1]={ [1]={ @@ -233730,7 +241175,23 @@ return { [1]="keystone_sacred_bastion" } }, - [10278]={ + [10606]={ + [1]={ + [1]={ + limit={ + [1]={ + [1]="#", + [2]="#" + } + }, + text="Sacrifice of Blood" + } + }, + stats={ + [1]="keystone_sacrifice_of_blood" + } + }, + [10607]={ [1]={ [1]={ [1]={ @@ -233762,7 +241223,7 @@ return { [1]="keystone_secrets_of_suffering" } }, - [10279]={ + [10608]={ [1]={ [1]={ [1]={ @@ -233786,7 +241247,7 @@ return { [1]="keystone_shared_suffering" } }, - [10280]={ + [10609]={ [1]={ [1]={ [1]={ @@ -233806,7 +241267,7 @@ return { [1]="keystone_shepherd_of_souls" } }, - [10281]={ + [10610]={ [1]={ [1]={ [1]={ @@ -233830,7 +241291,7 @@ return { [1]="keystone_solipsism" } }, - [10282]={ + [10611]={ [1]={ [1]={ [1]={ @@ -233868,7 +241329,7 @@ return { [2]="start_at_zero_energy_shield" } }, - [10283]={ + [10612]={ [1]={ [1]={ [1]={ @@ -233888,7 +241349,7 @@ return { [1]="keystone_strong_bowman" } }, - [10284]={ + [10613]={ [1]={ [1]={ [1]={ @@ -233908,7 +241369,7 @@ return { [1]="keystone_supreme_ego" } }, - [10285]={ + [10614]={ [1]={ [1]={ [1]={ @@ -233932,7 +241393,7 @@ return { [1]="keystone_tinctures_drain_life" } }, - [10286]={ + [10615]={ [1]={ [1]={ [1]={ @@ -233952,7 +241413,7 @@ return { [1]="keystone_unwavering_stance" } }, - [10287]={ + [10616]={ [1]={ [1]={ [1]={ @@ -233972,7 +241433,7 @@ return { [1]="keystone_vaal_pact" } }, - [10288]={ + [10617]={ [1]={ [1]={ [1]={ @@ -234000,7 +241461,7 @@ return { [1]="keystone_versatile_combatant" } }, - [10289]={ + [10618]={ [1]={ [1]={ [1]={ @@ -234020,7 +241481,7 @@ return { [1]="keystone_wicked_ward" } }, - [10290]={ + [10619]={ [1]={ [1]={ [1]={ @@ -234044,7 +241505,7 @@ return { [1]="keystone_wind_dancer" } }, - [10291]={ + [10620]={ [1]={ [1]={ limit={ @@ -234060,7 +241521,7 @@ return { [1]="map_items_drop_corrupted_%" } }, - [10292]={ + [10621]={ [1]={ [1]={ [1]={ @@ -234080,7 +241541,7 @@ return { [1]="player_far_shot" } }, - [10293]={ + [10622]={ [1]={ [1]={ [1]={ @@ -234100,7 +241561,7 @@ return { [1]="resolute_technique" } }, - [10294]={ + [10623]={ [1]={ [1]={ [1]={ @@ -234120,7 +241581,7 @@ return { [1]="strong_casting" } }, - [10295]={ + [10624]={ [1]={ [1]={ [1]={ @@ -234140,7 +241601,7 @@ return { [1]="summoned_skeletons_have_avatar_of_fire" } }, - [10296]={ + [10625]={ [1]={ [1]={ limit={ @@ -234156,7 +241617,7 @@ return { [1]="attacks_use_life_in_place_of_mana" } }, - [10297]={ + [10626]={ [1]={ [1]={ [1]={ @@ -234180,7 +241641,7 @@ return { [1]="gain_crimson_dance_if_have_dealt_critical_strike_recently" } }, - [10298]={ + [10627]={ [1]={ [1]={ [1]={ @@ -234200,7 +241661,7 @@ return { [1]="gain_crimson_dance_while_you_have_cat_stealth" } }, - [10299]={ + [10628]={ [1]={ [1]={ [1]={ @@ -234220,7 +241681,7 @@ return { [1]="gain_iron_reflexes_while_at_maximum_frenzy_charges" } }, - [10300]={ + [10629]={ [1]={ [1]={ [1]={ @@ -234240,7 +241701,7 @@ return { [1]="gain_mind_over_matter_while_at_maximum_power_charges" } }, - [10301]={ + [10630]={ [1]={ [1]={ [1]={ @@ -234260,7 +241721,7 @@ return { [1]="gain_vaal_pact_while_at_maximum_endurance_charges" } }, - [10302]={ + [10631]={ [1]={ [1]={ [1]={ @@ -234280,7 +241741,7 @@ return { [1]="local_gain_vaal_pact_if_all_socketed_gems_red" } }, - [10303]={ + [10632]={ [1]={ [1]={ [1]={ @@ -234300,7 +241761,7 @@ return { [1]="avatar_of_fire_rotation_active" } }, - [10304]={ + [10633]={ [1]={ [1]={ [1]={ @@ -234320,7 +241781,7 @@ return { [1]="elemental_overload_rotation_active" } }, - [10305]={ + [10634]={ [1]={ [1]={ [1]={ @@ -234340,7 +241801,7 @@ return { [1]="gain_iron_reflexes_while_stationary" } }, - [10306]={ + [10635]={ [1]={ [1]={ [1]={ @@ -234360,7 +241821,7 @@ return { [1]="gain_resolute_technique_while_do_not_have_elemental_overload" } }, - [10307]={ + [10636]={ [1]={ [1]={ [1]={ @@ -234380,7 +241841,7 @@ return { [1]="iron_reflexes_rotation_active" } }, - [10308]={ + [10637]={ [1]={ [1]={ limit={ @@ -234396,7 +241857,7 @@ return { [1]="trap_throw_skills_have_blood_magic" } }, - [10309]={ + [10638]={ [1]={ [1]={ [1]={ @@ -234420,7 +241881,7 @@ return { [1]="you_have_zealots_oath_if_you_havent_been_hit_recently" } }, - [10310]={ + [10639]={ [1]={ [1]={ limit={ @@ -234449,7 +241910,7 @@ return { [1]="physical_damage_+%_while_you_have_resolute_technique" } }, - [10311]={ + [10640]={ [1]={ [1]={ limit={ @@ -234478,7 +241939,7 @@ return { [1]="critical_strike_chance_+%_while_you_have_avatar_of_fire" } }, - [10312]={ + [10641]={ [1]={ [1]={ limit={ @@ -234494,7 +241955,7 @@ return { [1]="physical_damage_%_to_convert_to_fire_while_you_have_avatar_of_fire" } }, - [10313]={ + [10642]={ [1]={ [1]={ [1]={ @@ -234514,7 +241975,7 @@ return { [1]="unique_bow_arborix_close_range_bow_damage_+%_final_while_have_iron_reflexes" } }, - [10314]={ + [10643]={ [1]={ [1]={ [1]={ @@ -234534,7 +241995,7 @@ return { [1]="local_chance_to_bleed_%_while_you_do_not_have_avatar_of_fire" } }, - [10315]={ + [10644]={ [1]={ [1]={ limit={ @@ -234550,7 +242011,7 @@ return { [1]="armour_while_you_do_not_have_avatar_of_fire" } }, - [10316]={ + [10645]={ [1]={ [1]={ limit={ @@ -234579,7 +242040,7 @@ return { [1]="attack_cast_and_movement_speed_+%_while_do_not_have_iron_reflexes" } }, - [10317]={ + [10646]={ [1]={ [1]={ [1]={ @@ -234599,7 +242060,7 @@ return { [1]="gain_player_far_shot_while_do_not_have_iron_reflexes" } }, - [10318]={ + [10647]={ [1]={ [1]={ limit={ @@ -234615,7 +242076,7 @@ return { [1]="blood_footprints_from_item" } }, - [10319]={ + [10648]={ [1]={ [1]={ limit={ @@ -234631,7 +242092,7 @@ return { [1]="celestial_footprints_from_item" } }, - [10320]={ + [10649]={ [1]={ [1]={ limit={ @@ -234647,7 +242108,7 @@ return { [1]="demigod_footprints_from_item" } }, - [10321]={ + [10650]={ [1]={ [1]={ limit={ @@ -234663,7 +242124,7 @@ return { [1]="extra_gore" } }, - [10322]={ + [10651]={ [1]={ [1]={ limit={ @@ -234679,7 +242140,7 @@ return { [1]="goat_footprints_from_item" } }, - [10323]={ + [10652]={ [1]={ [1]={ limit={ @@ -234695,7 +242156,7 @@ return { [1]="mist_footprints_from_item" } }, - [10324]={ + [10653]={ [1]={ [1]={ limit={ @@ -234711,4146 +242172,4344 @@ return { [1]="silver_footprints_from_item" } }, - ["%_chance_to_blind_on_critical_strike"]=4163, - ["%_chance_to_blind_on_critical_strike_while_you_have_cats_stealth"]=4246, - ["%_chance_to_cause_bleeding_enemies_to_flee_on_hit"]=3687, - ["%_chance_to_create_smoke_cloud_on_mine_or_trap_creation"]=3961, - ["%_chance_to_deal_150%_area_damage_+%_final"]=9133, - ["%_chance_to_duplicate_dropped_currency"]=9134, - ["%_chance_to_duplicate_dropped_divination_cards"]=9135, - ["%_chance_to_duplicate_dropped_maps"]=9136, - ["%_chance_to_duplicate_dropped_scarabs"]=9137, - ["%_chance_to_duplicate_dropped_uniques"]=9138, - ["%_chance_to_gain_100%_non_chaos_damage_to_add_as_chaos_damage"]=4244, - ["%_chance_to_gain_25%_non_chaos_damage_to_add_as_chaos_damage"]=4242, - ["%_chance_to_gain_50%_non_chaos_damage_to_add_as_chaos_damage"]=4243, - ["%_chance_to_gain_endurance_charge_each_second_while_channelling"]=9139, - ["%_chance_to_gain_endurance_charge_on_trap_triggered_by_an_enemy"]=3488, - ["%_chance_to_gain_frenzy_charge_on_trap_triggered_by_an_enemy"]=3487, - ["%_chance_to_gain_power_charge_on_hit_against_enemies_on_full_life"]=3959, - ["%_chance_to_gain_power_charge_on_mine_detonated_targeting_an_enemy"]=2033, - ["%_chance_to_gain_power_charge_on_placing_a_totem"]=3943, - ["%_chance_to_gain_power_charge_on_trap_triggered_by_an_enemy"]=2032, - ["%_chance_to_gain_random_charge_on_trap_triggered_by_an_enemy"]=9140, - ["%_maximum_es_and_life_taken_as_fire_damage_per_minute_per_level_while_in_her_embrace"]=9141, - ["%_number_of_raging_spirits_allowed"]=9142, - ["%_physical_damage_bypasses_energy_shield"]=9143, - ["+1_max_charged_attack_stages"]=9209, - ["X_accuracy_per_2_intelligence"]=1921, - ["X_armour_if_you_have_blocked_recently"]=4383, - ["X_armour_per_active_totem"]=4384, - ["X_armour_per_stackable_unique_jewel"]=4042, - ["X_life_per_4_dexterity"]=1922, - ["X_mana_per_4_strength"]=1923, - ["X_mana_per_dexterity"]=4385, - ["X_mana_per_stackable_unique_jewel"]=4041, - ["X_to_armour_per_2_strength"]=4386, - ["absolution_cast_speed_+%"]=4388, - ["absolution_duration_+%"]=4389, - ["absolution_minion_area_of_effect_+%"]=4390, - ["abyssal_cry_damage_+%"]=3611, - ["abyssal_cry_duration_+%"]=3807, - ["accuracy_rating"]=1341, - ["accuracy_rating_+%"]=1342, - ["accuracy_rating_+%_during_onslaught"]=4401, - ["accuracy_rating_+%_final_vs_enemies_in_close_range_from_mastery"]=4391, - ["accuracy_rating_+%_final_vs_unique_enemies_from_mastery"]=4392, - ["accuracy_rating_+%_if_enemy_not_killed_recently"]=4402, - ["accuracy_rating_+%_if_have_crit_in_past_8_seconds"]=4403, - ["accuracy_rating_+%_per_frenzy_charge"]=1951, - ["accuracy_rating_+%_when_on_low_life"]=2485, - ["accuracy_rating_+_per_2_dexterity"]=4398, - ["accuracy_rating_+_per_empty_green_socket"]=4318, - ["accuracy_rating_+_per_frenzy_charge"]=4399, - ["accuracy_rating_+_per_green_socket_on_bow"]=4400, - ["accuracy_rating_against_marked_enemies_+%_final_from_crucible_tree"]=4394, - ["accuracy_rating_against_marked_enemies_+%_final_from_mastery"]=4395, - ["accuracy_rating_is_doubled"]=4396, - ["accuracy_rating_per_level"]=4397, - ["accuracy_rating_while_at_maximum_frenzy_charges"]=4404, - ["accuracy_rating_while_dual_wielding_+%"]=1343, - ["action_speed_+%_while_affected_by_haste"]=4405, - ["action_speed_+%_while_chilled"]=3475, - ["action_speed_-%"]=4407, - ["action_speed_cannot_be_reduced_below_base"]=3084, - ["action_speed_cannot_be_slowed_below_base_if_cast_temporal_chains_in_past_10_seconds"]=4406, - ["action_speed_is_at_least_108%"]=174, - ["active_skill_200%_increased_knockback_distance"]=4408, - ["active_skill_attack_speed_+%_final"]=1319, - ["active_skill_attack_speed_+%_final_per_frenzy_charge"]=3676, - ["active_skill_level_+"]=1783, - ["adaptation_duration_+%"]=1444, - ["adaptation_rating_+%"]=1441, - ["add_endurance_charge_on_critical_strike"]=1723, - ["add_endurance_charge_on_enemy_critical_strike"]=1740, - ["add_endurance_charge_on_gain_power_charge_%"]=3494, - ["add_endurance_charge_on_kill"]=2726, - ["add_endurance_charge_on_skill_hit_%"]=1737, - ["add_endurance_charge_on_status_ailment"]=1741, - ["add_frenzy_charge_every_50_rampage_stacks"]=4260, - ["add_frenzy_charge_on_critical_strike"]=1733, - ["add_frenzy_charge_on_enemy_block"]=2027, - ["add_frenzy_charge_on_kill_%_chance"]=2530, - ["add_frenzy_charge_on_kill_%_chance_while_dual_wielding"]=4409, - ["add_frenzy_charge_on_skill_hit_%"]=1738, - ["add_frenzy_charge_on_skill_hit_%_if_4_redeemer_items"]=4347, - ["add_frenzy_charge_when_hit_%"]=4410, - ["add_power_charge_on_critical_strike"]=1734, - ["add_power_charge_on_critical_strike_%"]=1735, - ["add_power_charge_on_hit_%"]=3489, - ["add_power_charge_on_hit_while_poisoned_%"]=4411, - ["add_power_charge_on_kill_%_chance"]=2532, - ["add_power_charge_on_melee_critical_strike"]=1736, - ["add_power_charge_on_minion_death"]=1959, - ["add_power_charge_on_skill_hit_%"]=1739, - ["add_power_charge_on_skill_hit_%_if_4_crusader_items"]=4348, - ["add_power_charge_when_interrupted_while_casting"]=2054, - ["add_power_charge_when_kill_shocked_enemy"]=2044, - ["add_x_grasping_vines_on_hit"]=4412, - ["added_chaos_damage_%_mana_cost_if_payable"]=4413, - ["additional_%_chance_to_evade_attacks_if_you_have_taken_a_savage_hit_recently"]=4448, - ["additional_all_attributes"]=1085, - ["additional_attack_block_%_if_used_shield_skill_recently"]=4414, - ["additional_attack_block_%_per_endurance_charge"]=4415, - ["additional_attack_block_%_per_frenzy_charge"]=4416, - ["additional_attack_block_%_per_power_charge"]=4417, - ["additional_attack_block_%_per_summoned_skeleton"]=4418, - ["additional_base_critical_strike_chance"]=1365, - ["additional_beam_only_chains"]=10026, - ["additional_block_%"]=2358, - ["additional_block_%_against_frontal_attacks"]=4419, - ["additional_block_%_if_you_have_crit_recently"]=4420, - ["additional_block_%_per_endurance_charge"]=4421, - ["additional_block_%_per_hit_you_have_blocked_in_past_10_seconds"]=4422, - ["additional_block_%_while_not_cursed"]=4423, - ["additional_block_%_while_on_consecrated_ground"]=4424, - ["additional_block_%_while_you_have_at_least_10_crab_charges"]=4238, - ["additional_block_%_while_you_have_at_least_5_crab_charges"]=4237, - ["additional_block_%_with_5_or_more_nearby_enemies"]=4425, - ["additional_block_chance_%_for_1_second_every_5_seconds"]=2359, - ["additional_block_chance_%_for_you_and_allies_affected_by_your_auras"]=3950, - ["additional_block_chance_%_when_in_off_hand"]=4070, - ["additional_block_chance_against_projectiles_%"]=2364, - ["additional_chance_to_freeze_chilled_enemies_%"]=1933, - ["additional_chaos_damage_to_spells_equal_to_%_maximum_life"]=4426, - ["additional_chaos_resistance_against_damage_over_time_%"]=5466, - ["additional_critical_strike_chance_per_10_shield_maximum_energy_shield_permyriad"]=4427, - ["additional_critical_strike_chance_per_power_charge_permyriad"]=4428, - ["additional_critical_strike_chance_permyriad_per_poison_on_enemy_up_to_2%"]=4429, - ["additional_critical_strike_chance_permyriad_per_warcry_exerting_action"]=4430, - ["additional_critical_strike_chance_permyriad_while_affected_by_cat_aspect"]=4245, - ["additional_critical_strike_chance_permyriad_while_affected_by_hatred"]=4431, - ["additional_critical_strike_chance_permyriad_while_at_maximum_power_charges"]=3357, - ["additional_critical_strike_chance_permyriad_with_herald_skills"]=4432, - ["additional_dexterity"]=1087, - ["additional_dexterity_and_intelligence"]=1091, - ["additional_dexterity_per_allocated_mastery"]=4433, - ["additional_elemental_damage_reduction_as_half_of_chaos_resistance"]=3951, - ["additional_intelligence"]=1088, - ["additional_intelligence_per_allocated_mastery"]=4434, - ["additional_max_mirage_archers"]=4300, - ["additional_max_number_of_dominated_magic_monsters"]=4435, - ["additional_max_number_of_dominated_rare_monsters"]=4436, - ["additional_maximum_all_elemental_resistances_%"]=1548, - ["additional_maximum_all_elemental_resistances_%_if_6_shaper_items"]=4365, - ["additional_maximum_all_elemental_resistances_%_if_all_equipment_grants_armour"]=4441, - ["additional_maximum_all_elemental_resistances_%_if_killed_cursed_enemy_recently"]=4437, - ["additional_maximum_all_elemental_resistances_%_if_suppressed_spell_recently"]=4438, - ["additional_maximum_all_elemental_resistances_%_while_affected_by_purity_of_elements"]=4439, - ["additional_maximum_all_elemental_resistances_%_with_reserved_life_and_mana"]=4440, - ["additional_maximum_all_resistances_%"]=1547, - ["additional_maximum_all_resistances_%_at_devotion_threshold"]=4443, - ["additional_maximum_all_resistances_%_while_poisoned"]=4442, - ["additional_maximum_all_resistances_%_with_no_endurance_charges"]=4444, - ["additional_number_of_brands_to_create"]=4445, - ["additional_off_hand_critical_strike_chance_permyriad"]=4446, - ["additional_off_hand_critical_strike_chance_while_dual_wielding"]=4447, - ["additional_physical_damage_reduction_%_during_flask_effect"]=4153, - ["additional_physical_damage_reduction_%_during_focus"]=4450, - ["additional_physical_damage_reduction_%_during_life_or_mana_flask_effect"]=4451, - ["additional_physical_damage_reduction_%_if_not_damaged_by_a_hit_recently"]=4452, - ["additional_physical_damage_reduction_%_per_keystone"]=4453, - ["additional_physical_damage_reduction_%_per_minion_up_to_10%"]=4454, - ["additional_physical_damage_reduction_%_per_summoned_sentinel_of_purity"]=4455, - ["additional_physical_damage_reduction_%_vs_abyssal_monsters"]=4456, - ["additional_physical_damage_reduction_%_when_on_low_life"]=2160, - ["additional_physical_damage_reduction_%_while_affected_by_determination"]=4457, - ["additional_physical_damage_reduction_%_while_affected_by_guard_skill"]=4458, - ["additional_physical_damage_reduction_%_while_bleeding"]=4459, - ["additional_physical_damage_reduction_%_while_channelling"]=4460, - ["additional_physical_damage_reduction_%_while_frozen"]=4461, - ["additional_physical_damage_reduction_%_while_moving"]=4462, - ["additional_physical_damage_reduction_against_hits_%_per_siphoning_charge"]=4224, - ["additional_physical_damage_reduction_if_warcried_in_past_8_seconds"]=4449, - ["additional_poison_chance_%_when_inflicting_poison"]=4463, - ["additional_projectile_if_6_hunter_items"]=4366, - ["additional_scroll_of_wisdom_drop_chance_%"]=2495, - ["additional_spectres_per_ghastly_eye_jewel"]=4464, - ["additional_spell_block_%"]=1068, - ["additional_spell_block_%_if_havent_blocked_recently"]=4466, - ["additional_spell_block_%_per_power_charge"]=4465, - ["additional_spell_block_%_while_cursed"]=4467, - ["additional_staff_block_%"]=1064, - ["additional_strength"]=1086, - ["additional_strength_and_dexterity"]=1089, - ["additional_strength_and_intelligence"]=1090, - ["additional_strength_per_allocated_mastery"]=4468, - ["additional_stun_threshold_based_on_%_of_energy_shield"]=4469, - ["additive_armour_modifiers_apply_to_energy_shield_recharge_rate_at_%_value"]=4470, - ["additive_cast_speed_modifiers_apply_to_trap_throwing_speed"]=4471, - ["additive_energy_shield_modifiers_apply_to_spell_damage_at_30%_value"]=4472, - ["additive_flask_effect_modifiers_apply_to_arcane_surge"]=4473, - ["additive_life_modifiers_apply_to_attack_damage_at_30%_value"]=4474, - ["additive_mana_modifiers_apply_to_damage_at_30%_value"]=4475, - ["additive_mana_modifiers_apply_to_shock_effect_at_30%_value"]=4476, - ["additive_minion_damage_modifiers_apply_to_you_at_150%_value"]=3638, - ["additive_minion_maximum_life_modifiers_apply_to_you_at_%_value"]=3641, - ["additive_modifiers_to_minion_attack_speed_also_affect_you"]=3639, - ["additive_modifiers_to_minion_cast_speed_also_affect_you"]=3640, - ["additive_spell_damage_modifiers_apply_to_attack_damage"]=2584, - ["additive_spell_damage_modifiers_apply_to_attack_damage_at_%_value_while_wielding_wand"]=2586, - ["additive_spell_damage_modifiers_apply_to_attack_damage_at_150%_value"]=2585, - ["additive_vaal_skill_damage_modifiers_apply_to_all_skills"]=2587, - ["aggravate_bleeding_older_than_ms_on_hit"]=4477, - ["aggravate_bleeding_on_attack_crit_chance_%"]=4478, - ["aggravate_bleeding_on_attack_knockback_chance_%"]=4480, - ["aggravate_bleeding_on_attack_stun_chance_%"]=4481, - ["aggravate_bleeding_on_exerted_attack_hit_chance_%"]=4482, - ["aggravate_inflicted_bleeding"]=4483, - ["agony_crawler_damage_+%"]=4484, - ["ailment_bearer_all_damage_can_inflict_elemental_ailments"]=4485, - ["ailment_bearer_always_freeze_shock_ignite"]=4486, - ["ailment_bearer_elemental_damage_+%_final"]=4487, - ["ailment_bearer_ignite_freeze_shock_duration_+%"]=4488, - ["ailment_bearer_scorch_effect_+%"]=4489, - ["ailment_damage_+%_per_equipped_elder_item"]=4214, - ["ailment_dot_multiplier_+"]=1152, - ["ailment_dot_multiplier_+_per_equipped_elder_item"]=4215, - ["ailment_types_apply_damage_taken_+%"]=2362, - ["alchemists_mark_curse_effect_+%"]=4490, - ["all_attributes_+%"]=1092, - ["all_attributes_+%_if_6_elder_items"]=4367, - ["all_attributes_+%_per_assigned_keystone"]=2977, - ["all_attributes_+_per_keystone"]=4491, - ["all_damage_can_chill"]=2758, - ["all_damage_can_freeze"]=4492, - ["all_damage_can_ignite"]=4493, - ["all_damage_can_poison"]=4494, - ["all_damage_can_poison_while_affected_by_glorious_madness"]=10177, - ["all_damage_can_shock"]=4495, - ["all_damage_from_mace_and_sceptre_also_chills"]=4496, - ["all_damage_taken_can_chill"]=2761, - ["all_damage_taken_can_ignite"]=4497, - ["all_damage_taken_can_sap"]=4498, - ["all_damage_taken_can_scorch"]=4499, - ["all_resistances_%_per_equipped_corrupted_item"]=2993, - ["all_skill_gem_level_+"]=4500, - ["all_skill_gem_quality_+"]=4501, - ["allow_2_active_banners"]=2914, - ["allow_2_offerings"]=4502, - ["allow_hellscaping_unique_items"]=4503, - ["allow_multiple_offerings"]=4504, - ["always_crit"]=1946, - ["always_crit_on_next_non_channelling_attack_within_X_ms_after_being_crit"]=4505, - ["always_crit_shocked_enemies"]=4021, - ["always_crit_while_holding_fishing_rod"]=4506, - ["always_freeze"]=1930, - ["always_frostburn_while_affected_by_hatred"]=4507, - ["always_ignite"]=1757, - ["always_ignite_while_burning"]=4508, - ["always_pierce"]=4509, - ["always_pierce_burning_enemies"]=4510, - ["always_sap_while_affected_by_wrath"]=4511, - ["always_scorch_while_affected_by_anger"]=4512, - ["always_shock"]=1758, - ["always_stun"]=1759, - ["always_stun_enemies_that_are_on_full_life"]=3222, - ["always_take_critical_strikes"]=4513, - ["ambush_buff_critical_strike_multiplier_+"]=4514, - ["ambush_cooldown_speed_+%"]=4515, - ["ambush_passive_critical_strike_chance_vs_enemies_on_full_life_+%_final"]=3324, - ["amulet_freeze_proliferation_radius"]=2121, - ["ancestor_totem_buff_effect_+%"]=4516, - ["ancestor_totem_buff_linger_time_ms"]=4517, - ["ancestor_totem_damage_leeched_as_energy_shield_to_you_permyriad"]=4518, - ["ancestor_totem_parent_activation_range_+%"]=4519, - ["ancestral_chance_for_no_respawn_timer_on_death_%"]=4520, - ["ancestral_channelling_damage_+%_against_totems"]=4521, - ["ancestral_channelling_interrupt_duration_+%"]=4522, - ["ancestral_cry_attacks_exerted_+"]=4523, - ["ancestral_cry_exerted_attack_damage_+%"]=4524, - ["ancestral_cry_minimum_power"]=4525, - ["ancestral_defensive_teammates_gain_charges"]=4526, - ["ancestral_life_regeneration_rate_per_minute_%_while_channelling_totem"]=4527, - ["ancestral_maximum_life_+%_on_respawn"]=4528, - ["ancestral_monster_respawn_timer_+%"]=4529, - ["ancestral_offensive_teammates_gain_adrenaline_for_x_ms_on_match_start"]=4530, - ["ancestral_slain_enemies_respawn_timer_+"]=4531, - ["ancestral_stun_nearby_enemies_on_respawn"]=4532, - ["ancestral_totem_being_channelled_doesnt_prevent_your_respawn_timer"]=4533, - ["ancestral_totem_cannot_recover_life_while_being_channelled"]=4534, - ["ancestral_totem_life_+%"]=4535, - ["ancestral_totem_life_regeneration_rate_per_minute_%"]=4536, - ["ancestral_totem_periodically_freezes_nearby_enemies"]=4537, - ["ancestral_totem_trigger_enduring_cry_on_low_life"]=4538, - ["anger_aura_effect_+%"]=3246, - ["anger_mana_reservation_+%"]=3307, - ["anger_mana_reservation_efficiency_+%"]=4540, - ["anger_mana_reservation_efficiency_-2%_per_1"]=4539, - ["anger_reserves_no_mana"]=4541, - ["animate_guardian_damage_+%"]=3592, - ["animate_guardian_damage_+%_per_animated_weapon"]=4542, - ["animate_guardian_elemental_resistances_%"]=3875, - ["animate_weapon_can_animate_bows"]=3052, - ["animate_weapon_can_animate_up_to_x_additional_ranged_weapons"]=3145, - ["animate_weapon_can_animate_wands"]=3053, - ["animate_weapon_chance_to_create_additional_copy_%"]=3881, - ["animate_weapon_damage_+%"]=3514, - ["animate_weapon_duration_+%"]=2695, - ["animate_weapon_number_of_additional_copies"]=2696, - ["animated_ethereal_blades_have_additional_critical_strike_chance"]=4543, - ["animated_guardian_damage_taken_+%_final"]=4544, - ["animated_minions_melee_splash"]=4545, - ["aoe_+%_per_second_while_stationary_up_to_50"]=4546, - ["apply_covered_in_ash_to_attacker_on_hit_%_vs_rare_or_unique_enemy"]=4547, - ["apply_covered_in_ash_to_attacker_when_hit_%"]=4548, - ["apply_maximum_wither_for_Xs_on_chaos_skill_hit"]=4549, - ["apply_maximum_wither_stacks_%_chance_when_you_apply_withered"]=4550, - ["apply_poison_on_hit_vs_bleeding_enemies_%"]=3173, - ["apply_scorch_instead_of_ignite"]=4551, - ["arc_and_crackling_lance_added_cold_damage_%_mana_cost_if_payable"]=4552, - ["arc_and_crackling_lance_base_cost_+%"]=4553, - ["arc_damage_+%"]=3547, - ["arc_damage_+%_per_chain"]=4554, - ["arc_num_of_additional_projectiles_in_chain"]=3838, - ["arc_shock_chance_%"]=3853, - ["arcane_cloak_consume_%_of_mana"]=4555, - ["arcane_cloak_gain_%_of_consumed_mana_as_life_regenerated_per_second"]=4556, - ["arcane_surge_during_mana_flask_effect"]=4557, - ["arcane_surge_effect_+%"]=3178, - ["arcane_surge_effect_+%_per_200_mana_spent_recently_up_to_50%"]=3179, - ["arcane_surge_effect_+%_per_active_totem"]=4559, - ["arcane_surge_effect_+%_while_affected_by_clarity"]=4558, - ["arcane_surge_effect_on_self_+%_per_caster_abyss_jewel_up_to_+40%"]=3177, - ["arcane_surge_on_you_spell_damage_+%_final_from_hierophant"]=4560, - ["arcane_surge_to_you_and_allies_on_warcry_with_effect_+%_per_5_power_up_to_50%"]=4561, - ["arcanist_brand_cast_speed_+%"]=4562, - ["arcanist_brand_unnerve_on_hit"]=4563, - ["archnemesis_cannot_recover_life_or_energy_shield_above_%"]=4564, - ["arctic_armour_buff_effect_+%"]=3908, - ["arctic_armour_chill_when_hit_duration"]=4565, - ["arctic_armour_mana_reservation_+%"]=3915, - ["arctic_armour_mana_reservation_efficiency_+%"]=4567, - ["arctic_armour_mana_reservation_efficiency_-2%_per_1"]=4566, - ["arctic_armour_no_reservation"]=4568, - ["arctic_breath_chilling_area_movement_velocity_+%"]=4569, - ["arctic_breath_damage_+%"]=3565, - ["arctic_breath_duration_+%"]=3818, - ["arctic_breath_radius_+%"]=3709, - ["area_damage_+%"]=1936, - ["area_damage_+%_per_10_devotion"]=4570, - ["area_damage_+%_per_12_strength"]=4571, - ["area_damage_taken_from_hits_+%"]=2140, - ["area_of_effect_+%_final_for_bow_attacks_firing_single_projectile"]=4575, - ["area_of_effect_+%_for_you_and_minions_if_consumed_corpse_recently"]=4576, - ["area_of_effect_+%_if_below_100_intelligence"]=4573, - ["area_of_effect_+%_if_culled_recently"]=4577, - ["area_of_effect_+%_if_enemy_stunned_with_two_handed_melee_weapon_recently"]=4578, - ["area_of_effect_+%_if_have_crit_recently"]=4579, - ["area_of_effect_+%_if_have_stunned_an_enemy_recently"]=4580, - ["area_of_effect_+%_if_killed_at_least_5_enemies_recently"]=4581, - ["area_of_effect_+%_if_you_have_blocked_recently"]=4582, - ["area_of_effect_+%_per_10_rage"]=4574, - ["area_of_effect_+%_per_20_int"]=2443, - ["area_of_effect_+%_per_25_rampage_stacks"]=4259, - ["area_of_effect_+%_per_50_strength"]=4583, - ["area_of_effect_+%_per_active_herald_of_light_minion"]=4584, - ["area_of_effect_+%_per_endurance_charge"]=4585, - ["area_of_effect_+%_per_enemy_killed_recently"]=4586, - ["area_of_effect_+%_while_fortified"]=4587, - ["area_of_effect_+%_while_totem_active"]=4588, - ["area_of_effect_+%_while_wielding_bow"]=4589, - ["area_of_effect_+%_while_wielding_staff"]=4590, - ["area_of_effect_+%_while_you_do_not_have_convergence"]=4328, - ["area_of_effect_+%_while_you_have_arcane_surge"]=4591, - ["area_of_effect_+%_with_500_or_more_strength"]=4592, - ["area_of_effect_+%_with_bow_skills"]=4593, - ["area_of_effect_+%_with_herald_skills"]=4594, - ["area_skill_accuracy_rating_+%"]=4595, - ["area_skill_knockback_chance_%"]=4596, - ["armageddon_brand_attached_target_fire_penetration_%"]=4597, - ["armageddon_brand_damage_+%"]=4598, - ["armageddon_brand_repeat_frequency_+%"]=4599, - ["armour_%_applies_to_fire_cold_lightning_damage"]=4600, - ["armour_%_to_leech_as_life_on_block"]=2639, - ["armour_+%_if_enemy_not_killed_recently"]=4617, - ["armour_+%_if_have_been_hit_recently"]=4601, - ["armour_+%_if_you_havent_been_hit_recently"]=4602, - ["armour_+%_per_50_str"]=4618, - ["armour_+%_per_defiance"]=4170, - ["armour_+%_per_rage"]=4619, - ["armour_+%_per_red_socket_on_main_hand_weapon"]=4620, - ["armour_+%_per_retaliation_used_in_past_10_seconds"]=4603, - ["armour_+%_per_second_while_stationary_up_to_100"]=4621, - ["armour_+%_while_bleeding"]=4622, - ["armour_+%_while_no_energy_shield"]=2634, - ["armour_+%_while_stationary"]=4623, - ["armour_+_per_10_unreserved_max_mana"]=4604, - ["armour_+_per_1_helmet_maximum_energy_shield"]=4613, - ["armour_+_while_affected_by_determination"]=4614, - ["armour_+_while_affected_by_guard_skill"]=4615, - ["armour_+_while_you_have_fortify"]=4616, - ["armour_and_energy_shield_+%_from_body_armour_if_gloves_helmet_boots_have_armour_and_energy_shield"]=4605, - ["armour_and_evasion_+%_during_onslaught"]=4606, - ["armour_and_evasion_+%_while_fortified"]=4135, - ["armour_and_evasion_on_low_life_+%"]=3103, - ["armour_and_evasion_rating_+%_if_killed_a_taunted_enemy_recently"]=4077, - ["armour_and_evasion_rating_+_per_1%_attack_block_chance"]=4607, - ["armour_and_evasion_rating_+_while_fortified"]=4608, - ["armour_evasion_+%_while_leeching"]=4609, - ["armour_from_gloves_and_boots_+%"]=4610, - ["armour_from_helmet_and_gloves_+%"]=4611, - ["armour_from_shield_doubled"]=1894, - ["armour_hellscaping_speed_+%"]=6753, - ["armour_increased_by_overcapped_fire_resistance"]=4612, - ["armour_while_stationary"]=4199, - ["armour_while_you_do_not_have_avatar_of_fire"]=10315, - ["arrow_base_number_of_targets_to_pierce"]=1696, - ["arrow_chains_+"]=1693, - ["arrow_critical_strike_chance_+%_max_as_distance_travelled_increases"]=4624, - ["arrow_damage_+%_max_as_distance_travelled_increases"]=4627, - ["arrow_damage_+%_vs_pierced_targets"]=4625, - ["arrow_damage_+50%_vs_pierced_targets"]=4626, - ["arrow_speed_additive_modifiers_also_apply_to_bow_damage"]=4629, - ["arrows_always_pierce_after_chaining"]=4191, - ["arrows_always_pierce_after_forking"]=4630, - ["arrows_fork"]=3468, - ["arrows_from_first_firing_point_always_pierce"]=4292, - ["arrows_from_fourth_firing_point_additional_chains"]=4295, - ["arrows_from_second_firing_point_fork"]=4293, - ["arrows_from_third_firing_point_return"]=4294, - ["arrows_pierce_additional_target"]=4631, - ["arrows_that_pierce_also_return"]=4632, - ["arrows_that_pierce_cause_bleeding"]=4189, - ["arrows_that_pierce_chance_to_bleed_25%"]=4190, - ["artillery_ballista_cross_strafe_pattern"]=4633, - ["artillery_ballista_fire_pen_+%"]=4634, - ["artillery_ballista_num_additional_arrows"]=4635, - ["ascendancy_non_damaging_elemental_ailment_proliferation_radius"]=9048, - ["ascendancy_pathfinder_chaos_damage_with_attack_skills_+%_final"]=4636, - ["aspect_of_the_avian_buff_effect_+%"]=4637, - ["aspect_of_the_avian_grants_avians_might_and_avians_flight_to_nearby_allies"]=4638, - ["aspect_of_the_cat_base_secondary_duration"]=4639, - ["aspect_of_the_spider_web_count_+"]=4640, - ["assassinate_passive_critical_strike_chance_vs_enemies_on_low_life_+%_final"]=3326, - ["assassins_mark_curse_effect_+%"]=3895, - ["assassins_mark_duration_+%"]=3804, - ["attack_additional_critical_strike_chance_permyriad"]=4641, - ["attack_additional_critical_strike_chance_permyriad_if_4_elder_items"]=4349, - ["attack_ailment_damage_+%"]=4642, - ["attack_ailment_damage_+%_while_dual_wielding"]=4643, - ["attack_ailment_damage_+%_while_holding_shield"]=1118, - ["attack_ailment_damage_+%_while_wielding_axe"]=4644, - ["attack_ailment_damage_+%_while_wielding_bow"]=4645, - ["attack_ailment_damage_+%_while_wielding_claw"]=4646, - ["attack_ailment_damage_+%_while_wielding_dagger"]=4647, - ["attack_ailment_damage_+%_while_wielding_mace"]=4648, - ["attack_ailment_damage_+%_while_wielding_melee_weapon"]=4649, - ["attack_ailment_damage_+%_while_wielding_one_handed_weapon"]=4650, - ["attack_ailment_damage_+%_while_wielding_staff"]=4651, - ["attack_ailment_damage_+%_while_wielding_sword"]=4652, - ["attack_ailment_damage_+%_while_wielding_two_handed_weapon"]=4653, - ["attack_ailment_damage_+%_while_wielding_wand"]=4654, - ["attack_always_crit"]=3665, - ["attack_and_cast_speed_+%"]=1947, - ["attack_and_cast_speed_+%_during_flask_effect"]=4159, - ["attack_and_cast_speed_+%_during_onslaught"]=2924, - ["attack_and_cast_speed_+%_for_3_seconds_on_attack_every_9_seconds"]=4662, - ["attack_and_cast_speed_+%_for_4_seconds_on_begin_es_recharge"]=3414, - ["attack_and_cast_speed_+%_for_4_seconds_on_movement_skill_use"]=3360, - ["attack_and_cast_speed_+%_for_you_and_allies_affected_by_your_auras"]=3952, - ["attack_and_cast_speed_+%_if_corpse_consumed_recently"]=4655, - ["attack_and_cast_speed_+%_if_enemy_hit_recently"]=4663, - ["attack_and_cast_speed_+%_if_havent_been_hit_recently"]=4664, - ["attack_and_cast_speed_+%_on_placing_totem"]=3097, - ["attack_and_cast_speed_+%_per_alive_packmate"]=4656, - ["attack_and_cast_speed_+%_per_cold_adaptation"]=4303, - ["attack_and_cast_speed_+%_per_corpse_consumed_recently"]=4139, - ["attack_and_cast_speed_+%_per_endurance_charge"]=4665, - ["attack_and_cast_speed_+%_per_frenzy_charge"]=1949, - ["attack_and_cast_speed_+%_per_power_charge"]=4666, - ["attack_and_cast_speed_+%_per_summoned_raging_spirit"]=4667, - ["attack_and_cast_speed_+%_to_grant_packmate_on_death"]=4657, - ["attack_and_cast_speed_+%_while_affected_by_a_herald"]=4668, - ["attack_and_cast_speed_+%_while_affected_by_a_mana_flask"]=4658, - ["attack_and_cast_speed_+%_while_affected_by_elusive"]=4659, - ["attack_and_cast_speed_+%_while_channelling"]=4669, - ["attack_and_cast_speed_+%_while_focused"]=4670, - ["attack_and_cast_speed_+%_while_leeching"]=3974, - ["attack_and_cast_speed_+%_while_leeching_energy_shield"]=4671, - ["attack_and_cast_speed_+%_while_not_near_ancestral_totem"]=4660, - ["attack_and_cast_speed_+%_while_on_consecrated_ground"]=4113, - ["attack_and_cast_speed_+%_while_totem_active"]=3496, - ["attack_and_cast_speed_+%_while_you_have_depleted_physical_aegis"]=4672, - ["attack_and_cast_speed_+%_while_you_have_fortify"]=2169, - ["attack_and_cast_speed_+%_with_channelling_skills"]=4673, - ["attack_and_cast_speed_+%_with_chaos_skills"]=4674, - ["attack_and_cast_speed_+%_with_cold_skills"]=4675, - ["attack_and_cast_speed_+%_with_elemental_skills"]=4676, - ["attack_and_cast_speed_+%_with_fire_skills"]=4677, - ["attack_and_cast_speed_+%_with_lightning_skills"]=4678, - ["attack_and_cast_speed_+%_with_physical_skills"]=4679, - ["attack_and_cast_speed_+%_with_shield_skills"]=4680, - ["attack_and_cast_speed_per_ghost_dance_stack_+%"]=4661, - ["attack_and_cast_speed_when_hit_+%"]=3109, - ["attack_and_movement_speed_+%_final_per_challenger_charge"]=4681, - ["attack_and_movement_speed_+%_if_you_have_beast_minion"]=4208, - ["attack_and_movement_speed_+%_with_her_blessing"]=3171, - ["attack_and_spell_maximum_added_physical_damage_per_siphoning_charge"]=4222, - ["attack_and_spell_minimum_added_physical_damage_per_siphoning_charge"]=4222, - ["attack_area_of_effect_+%"]=4682, - ["attack_block_%_if_blocked_a_spell_recently"]=4684, - ["attack_block_%_per_200_fire_hit_damage_taken_recently"]=4683, - ["attack_block_%_while_at_max_endurance_charges"]=4685, - ["attack_cast_and_movement_speed_+%_during_onslaught"]=4686, - ["attack_cast_and_movement_speed_+%_while_do_not_have_iron_reflexes"]=10316, - ["attack_cast_movement_speed_+%_for_you_and_allies_affected_by_your_auras"]=3953, - ["attack_cast_movement_speed_+%_if_taken_a_savage_hit_recently"]=4687, - ["attack_chance_to_blind_on_hit_%_vs_bleeding_enemies"]=4688, - ["attack_chance_to_maim_on_hit_%_vs_blinded_enemies"]=4689, - ["attack_cost_+%_if_you_have_at_least_20_rage"]=4690, - ["attack_critical_strike_chance_+%"]=4691, - ["attack_critical_strike_chance_+%_per_200_accuracy_rating"]=4692, - ["attack_critical_strike_damage_life_leech_permyriad"]=3654, - ["attack_critical_strike_multiplier_+"]=1398, - ["attack_critical_strikes_ignore_elemental_resistances"]=4693, - ["attack_damage_+%"]=1107, - ["attack_damage_+%_for_4_seconds_on_cast"]=3419, - ["attack_damage_+%_if_hit_recently"]=3420, - ["attack_damage_+%_if_other_ring_is_shaper_item"]=4209, - ["attack_damage_+%_per_16_strength"]=4702, - ["attack_damage_+%_per_450_evasion"]=2842, - ["attack_damage_+%_per_450_physical_damage_reduction_rating"]=4703, - ["attack_damage_+%_per_5%_block_chance"]=4694, - ["attack_damage_+%_per_500_maximum_mana"]=4695, - ["attack_damage_+%_per_75_armour_or_evasion_on_shield"]=4704, - ["attack_damage_+%_per_explicit_map_mod_affecting_area"]=4696, - ["attack_damage_+%_per_frenzy_charge"]=3175, - ["attack_damage_+%_per_level"]=2859, - ["attack_damage_+%_vs_maimed_enemies"]=4705, - ["attack_damage_+%_when_lower_percentage_life_than_target"]=4706, - ["attack_damage_+%_when_on_full_life"]=4707, - ["attack_damage_+%_while_affected_by_precision"]=4708, - ["attack_damage_+%_while_channelling"]=4709, - ["attack_damage_+%_while_holding_a_shield"]=1115, - ["attack_damage_+%_while_in_blood_stance"]=4697, - ["attack_damage_+%_while_leeching"]=4710, - ["attack_damage_+%_while_onslaught_active"]=3181, - ["attack_damage_+%_while_you_have_at_least_20_fortification"]=4698, - ["attack_damage_+%_while_you_have_fortify"]=4711, - ["attack_damage_+%_with_channelling_skills"]=4712, - ["attack_damage_+1%_per_300_of_min_of_armour_or_evasion"]=4701, - ["attack_damage_lucky_if_blocked_in_past_20_seconds"]=4699, - ["attack_damage_lucky_if_blocked_in_past_20_seconds_while_dual_wielding"]=4700, - ["attack_damage_that_stuns_also_chills"]=2907, - ["attack_damage_vs_bleeding_enemies_+%"]=2391, - ["attack_ignite_chance_%"]=2599, - ["attack_lightning_damage_%_to_convert_to_chaos"]=4713, - ["attack_mana_cost_+%"]=4714, - ["attack_maximum_added_chaos_damage"]=1295, - ["attack_maximum_added_chaos_damage_if_you_have_beast_minion"]=4207, - ["attack_maximum_added_chaos_damage_with_bows"]=2004, - ["attack_maximum_added_chaos_damage_with_claws"]=2005, - ["attack_maximum_added_chaos_damage_with_daggers"]=2006, - ["attack_maximum_added_cold_damage"]=1277, - ["attack_maximum_added_cold_damage_with_axes"]=1988, - ["attack_maximum_added_cold_damage_with_bows"]=1989, - ["attack_maximum_added_cold_damage_with_claws"]=1990, - ["attack_maximum_added_cold_damage_with_daggers"]=1991, - ["attack_maximum_added_cold_damage_with_maces"]=1992, - ["attack_maximum_added_cold_damage_with_staves"]=1993, - ["attack_maximum_added_cold_damage_with_swords"]=1994, - ["attack_maximum_added_cold_damage_with_wand"]=1995, - ["attack_maximum_added_fire_damage"]=1268, - ["attack_maximum_added_fire_damage_per_10_strength"]=4715, - ["attack_maximum_added_fire_damage_with_axes"]=1980, - ["attack_maximum_added_fire_damage_with_bow"]=1981, - ["attack_maximum_added_fire_damage_with_claws"]=1982, - ["attack_maximum_added_fire_damage_with_daggers"]=1983, - ["attack_maximum_added_fire_damage_with_maces"]=1984, - ["attack_maximum_added_fire_damage_with_staves"]=1985, - ["attack_maximum_added_fire_damage_with_swords"]=1986, - ["attack_maximum_added_fire_damage_with_wand"]=1987, - ["attack_maximum_added_lightning_damage"]=1288, - ["attack_maximum_added_lightning_damage_per_10_dex"]=4717, - ["attack_maximum_added_lightning_damage_per_10_int"]=4718, - ["attack_maximum_added_lightning_damage_per_200_accuracy_rating"]=4719, - ["attack_maximum_added_lightning_damage_with_axes"]=1996, - ["attack_maximum_added_lightning_damage_with_bows"]=1997, - ["attack_maximum_added_lightning_damage_with_claws"]=1998, - ["attack_maximum_added_lightning_damage_with_daggers"]=1999, - ["attack_maximum_added_lightning_damage_with_maces"]=2000, - ["attack_maximum_added_lightning_damage_with_staves"]=2001, - ["attack_maximum_added_lightning_damage_with_swords"]=2002, - ["attack_maximum_added_lightning_damage_with_wand"]=2003, - ["attack_maximum_added_melee_lightning_damage_while_unarmed"]=2338, - ["attack_maximum_added_physical_damage"]=1175, - ["attack_maximum_added_physical_damage_if_have_crit_recently"]=4720, - ["attack_maximum_added_physical_damage_if_you_have_beast_minion"]=4206, - ["attack_maximum_added_physical_damage_per_25_dexterity"]=3285, - ["attack_maximum_added_physical_damage_per_25_strength"]=4721, - ["attack_maximum_added_physical_damage_per_level"]=4722, - ["attack_maximum_added_physical_damage_while_holding_a_shield"]=1979, - ["attack_maximum_added_physical_damage_while_unarmed"]=1978, - ["attack_maximum_added_physical_damage_with_axes"]=1970, - ["attack_maximum_added_physical_damage_with_bow"]=1971, - ["attack_maximum_added_physical_damage_with_claws"]=1972, - ["attack_maximum_added_physical_damage_with_daggers"]=1973, - ["attack_maximum_added_physical_damage_with_maces"]=1974, - ["attack_maximum_added_physical_damage_with_staves"]=1975, - ["attack_maximum_added_physical_damage_with_swords"]=1976, - ["attack_maximum_added_physical_damage_with_wands"]=1977, - ["attack_maximum_added_physical_damage_with_weapons"]=1177, - ["attack_minimum_added_chaos_damage"]=1295, - ["attack_minimum_added_chaos_damage_if_you_have_beast_minion"]=4207, - ["attack_minimum_added_chaos_damage_with_bows"]=2004, - ["attack_minimum_added_chaos_damage_with_claws"]=2005, - ["attack_minimum_added_chaos_damage_with_daggers"]=2006, - ["attack_minimum_added_cold_damage"]=1277, - ["attack_minimum_added_cold_damage_with_axes"]=1988, - ["attack_minimum_added_cold_damage_with_bows"]=1989, - ["attack_minimum_added_cold_damage_with_claws"]=1990, - ["attack_minimum_added_cold_damage_with_daggers"]=1991, - ["attack_minimum_added_cold_damage_with_maces"]=1992, - ["attack_minimum_added_cold_damage_with_staves"]=1993, - ["attack_minimum_added_cold_damage_with_swords"]=1994, - ["attack_minimum_added_cold_damage_with_wand"]=1995, - ["attack_minimum_added_fire_damage"]=1268, - ["attack_minimum_added_fire_damage_per_10_strength"]=4715, - ["attack_minimum_added_fire_damage_with_axes"]=1980, - ["attack_minimum_added_fire_damage_with_bow"]=1981, - ["attack_minimum_added_fire_damage_with_claws"]=1982, - ["attack_minimum_added_fire_damage_with_daggers"]=1983, - ["attack_minimum_added_fire_damage_with_maces"]=1984, - ["attack_minimum_added_fire_damage_with_staves"]=1985, - ["attack_minimum_added_fire_damage_with_swords"]=1986, - ["attack_minimum_added_fire_damage_with_wand"]=1987, - ["attack_minimum_added_lightning_damage"]=1288, - ["attack_minimum_added_lightning_damage_per_10_dex"]=4717, - ["attack_minimum_added_lightning_damage_per_10_int"]=4718, - ["attack_minimum_added_lightning_damage_per_200_accuracy_rating"]=4719, - ["attack_minimum_added_lightning_damage_with_axes"]=1996, - ["attack_minimum_added_lightning_damage_with_bows"]=1997, - ["attack_minimum_added_lightning_damage_with_claws"]=1998, - ["attack_minimum_added_lightning_damage_with_daggers"]=1999, - ["attack_minimum_added_lightning_damage_with_maces"]=2000, - ["attack_minimum_added_lightning_damage_with_staves"]=2001, - ["attack_minimum_added_lightning_damage_with_swords"]=2002, - ["attack_minimum_added_lightning_damage_with_wand"]=2003, - ["attack_minimum_added_melee_lightning_damage_while_unarmed"]=2338, - ["attack_minimum_added_physical_damage"]=1175, - ["attack_minimum_added_physical_damage_if_have_crit_recently"]=4720, - ["attack_minimum_added_physical_damage_if_you_have_beast_minion"]=4206, - ["attack_minimum_added_physical_damage_per_25_dexterity"]=3285, - ["attack_minimum_added_physical_damage_per_25_strength"]=4721, - ["attack_minimum_added_physical_damage_per_level"]=4722, - ["attack_minimum_added_physical_damage_while_holding_a_shield"]=1979, - ["attack_minimum_added_physical_damage_while_unarmed"]=1978, - ["attack_minimum_added_physical_damage_with_axes"]=1970, - ["attack_minimum_added_physical_damage_with_bow"]=1971, - ["attack_minimum_added_physical_damage_with_claws"]=1972, - ["attack_minimum_added_physical_damage_with_daggers"]=1973, - ["attack_minimum_added_physical_damage_with_maces"]=1974, - ["attack_minimum_added_physical_damage_with_staves"]=1975, - ["attack_minimum_added_physical_damage_with_swords"]=1976, - ["attack_minimum_added_physical_damage_with_wands"]=1977, - ["attack_minimum_added_physical_damage_with_weapons"]=1177, - ["attack_physical_damage_%_to_add_as_cold"]=3662, - ["attack_physical_damage_%_to_add_as_fire"]=3661, - ["attack_physical_damage_%_to_add_as_lightning"]=3663, - ["attack_physical_damage_%_to_convert_to_cold"]=4724, - ["attack_physical_damage_%_to_convert_to_fire"]=4725, - ["attack_physical_damage_%_to_convert_to_lightning"]=4726, - ["attack_projectiles_fork"]=4727, - ["attack_projectiles_fork_additional_times"]=4728, - ["attack_projectiles_return"]=2722, - ["attack_repeat_count"]=1804, - ["attack_skill_additional_num_projectiles_while_wielding_claws_daggers"]=4729, - ["attack_skill_ailment_damage_+%_while_wielding_axes_swords"]=4730, - ["attack_skills_%_physical_as_extra_fire_damage_per_socketed_red_gem"]=2614, - ["attack_skills_additional_ballista_totems_allowed"]=4130, - ["attack_skills_additional_totems_allowed"]=4131, - ["attack_skills_damage_+%_while_dual_wielding"]=1185, - ["attack_skills_damage_+%_while_holding_shield"]=1116, - ["attack_skills_have_added_lightning_damage_equal_to_%_of_maximum_mana"]=4731, - ["attack_speed_+%"]=1318, - ["attack_speed_+%_during_flask_effect"]=3190, - ["attack_speed_+%_final_per_blitz_charge"]=4736, - ["attack_speed_+%_for_4_seconds_on_attack"]=3421, - ["attack_speed_+%_if_cast_a_mark_spell_recently"]=4737, - ["attack_speed_+%_if_changed_stance_recently"]=9728, - ["attack_speed_+%_if_enemy_hit_with_main_hand_weapon_recently"]=4738, - ["attack_speed_+%_if_enemy_killed_recently"]=4739, - ["attack_speed_+%_if_enemy_not_killed_recently"]=4118, - ["attack_speed_+%_if_have_been_hit_recently"]=4740, - ["attack_speed_+%_if_have_blocked_recently"]=4741, - ["attack_speed_+%_if_have_crit_recently"]=4742, - ["attack_speed_+%_if_havent_cast_dash_recently"]=4743, - ["attack_speed_+%_if_not_gained_frenzy_charge_recently"]=4744, - ["attack_speed_+%_if_rare_or_unique_enemy_nearby"]=4745, - ["attack_speed_+%_if_you_have_at_least_600_strength"]=4746, - ["attack_speed_+%_per_10_dex"]=2444, - ["attack_speed_+%_per_200_accuracy_rating"]=4123, - ["attack_speed_+%_per_25_dex"]=4747, - ["attack_speed_+%_per_enemy_in_close_range"]=4732, - ["attack_speed_+%_per_explicit_map_mod_affecting_area"]=4733, - ["attack_speed_+%_per_fortification"]=4734, - ["attack_speed_+%_per_frenzy_charge"]=1948, - ["attack_speed_+%_per_rage"]=4748, - ["attack_speed_+%_when_hit"]=3093, - ["attack_speed_+%_when_on_full_life"]=1131, - ["attack_speed_+%_when_on_low_life"]=1130, - ["attack_speed_+%_while_affected_by_precision"]=4749, - ["attack_speed_+%_while_chilled"]=4750, - ["attack_speed_+%_while_holding_shield"]=1325, - ["attack_speed_+%_while_ignited"]=2837, - ["attack_speed_+%_while_in_sand_stance"]=4735, - ["attack_speed_+%_while_leeching"]=3100, - ["attack_speed_+%_while_not_on_low_mana"]=4751, - ["attack_speed_+%_while_phasing"]=4752, - ["attack_speed_+%_with_channelling_skills"]=4753, - ["attack_speed_+%_with_movement_skills"]=1340, - ["attack_speed_while_dual_wielding_+%"]=1323, - ["attack_speed_while_fortified_+%"]=3105, - ["attacks_bleed_on_hit_while_you_have_cat_stealth"]=4755, - ["attacks_bleed_on_stun"]=2384, - ["attacks_cause_bleeding_vs_cursed_enemies"]=4756, - ["attacks_chance_to_bleed_25%_vs_cursed_enemies"]=4758, - ["attacks_chance_to_bleed_on_hit_%_vs_taunted_enemies"]=4759, - ["attacks_chance_to_blind_on_hit_%"]=4760, - ["attacks_chance_to_poison_%_on_max_frenzy_charges"]=1954, - ["attacks_chance_to_taunt_on_hit_%"]=4761, - ["attacks_corrosion_on_hit_%"]=4762, - ["attacks_deal_no_physical_damage"]=2379, - ["attacks_do_not_cost_mana"]=1797, - ["attacks_impale_on_hit_%_chance"]=4763, - ["attacks_inflict_unnerve_on_crit"]=4764, - ["attacks_intimidate_on_hit_%"]=4765, - ["attacks_num_of_additional_chains"]=4015, - ["attacks_num_of_additional_chains_when_in_main_hand"]=4080, - ["attacks_number_of_additional_projectiles"]=4081, - ["attacks_number_of_additional_projectiles_when_in_off_hand"]=4082, - ["attacks_poison_while_at_max_frenzy_charges"]=1953, - ["attacks_use_life_in_place_of_mana"]=10296, - ["attacks_with_this_weapon_maximum_added_chaos_damage_per_10_of_your_lowest_attribute"]=4768, - ["attacks_with_this_weapon_maximum_added_cold_damage_per_10_dexterity"]=4769, - ["attacks_with_this_weapon_maximum_es_%_to_add_as_cold_damage"]=4766, - ["attacks_with_this_weapon_maximum_mana_%_to_add_as_fire_damage"]=4767, - ["attacks_with_this_weapon_minimum_added_chaos_damage_per_10_of_your_lowest_attribute"]=4768, - ["attacks_with_this_weapon_minimum_added_cold_damage_per_10_dexterity"]=4769, - ["attacks_with_two_handed_weapons_impale_on_hit_%_chance"]=4770, - ["attribute_requirement_+%_for_equipped_armour"]=4771, - ["attribute_requirement_+%_for_equipped_weapons"]=4772, - ["attribute_requirements_can_be_satisfied_by_%_of_ascendance"]=1099, - ["aura_effect_+%"]=2717, - ["aura_effect_+%_on_self_from_allied_auras"]=4774, - ["aura_effect_on_self_from_skills_+%_per_herald_effecting_you"]=4773, - ["aura_effect_on_self_from_your_skills_+%"]=3456, - ["aura_grant_shield_defences_to_nearby_allies"]=3351, - ["aura_melee_physical_damage_+%_per_10_strength"]=3337, - ["auras_grant_additional_physical_damage_reduction_%_to_you_and_your_allies"]=3346, - ["auras_grant_attack_and_cast_speed_+%_to_you_and_your_allies"]=3347, - ["auras_grant_damage_+%_to_you_and_your_allies"]=3345, - ["auras_grant_life_mana_es_recovery_rate_+%_to_you_and_your_allies"]=4775, - ["avatar_of_fire_rotation_active"]=10303, - ["avians_flight_duration_ms_+"]=4776, - ["avians_might_duration_ms_+"]=4777, - ["avoid_ailments_%_from_crit"]=4778, - ["avoid_ailments_%_on_consecrated_ground"]=3442, - ["avoid_ailments_%_while_holding_shield"]=4779, - ["avoid_all_elemental_ailment_%_per_summoned_golem"]=4780, - ["avoid_all_elemental_status_%"]=1748, - ["avoid_all_elemental_status_%_per_stackable_unique_jewel"]=4043, - ["avoid_blind_%"]=2475, - ["avoid_chained_projectile_%_chance"]=4781, - ["avoid_chaos_damage_%"]=3266, - ["avoid_chill_freeze_while_casting_%"]=4782, - ["avoid_cold_damage_%"]=3264, - ["avoid_corrupted_blood_%_chance"]=4783, - ["avoid_elemental_ailments_%_while_affected_by_elusive"]=4784, - ["avoid_elemental_ailments_%_while_phasing"]=4785, - ["avoid_elemental_damage_%_per_frenzy_charge"]=3262, - ["avoid_elemental_damage_chance_%_during_soul_gain_prevention"]=4786, - ["avoid_elemental_damage_while_phasing_%"]=4787, - ["avoid_fire_damage_%"]=3263, - ["avoid_freeze_and_chill_%_if_you_have_used_a_fire_skill_recently"]=4788, - ["avoid_freeze_chill_ignite_%_while_have_onslaught"]=2933, - ["avoid_freeze_chill_ignite_%_with_her_blessing"]=3170, - ["avoid_freeze_shock_ignite_bleed_%_during_flask_effect"]=3969, - ["avoid_ignite_%_when_on_low_life"]=1752, - ["avoid_impale_%"]=4789, - ["avoid_interruption_while_casting_%"]=1803, - ["avoid_knockback_%"]=1429, - ["avoid_lightning_damage_%"]=3265, - ["avoid_maim_%_chance"]=4790, - ["avoid_non_damaging_ailments_%_per_missing_barkskin_stack"]=4791, - ["avoid_physical_damage_%"]=3261, - ["avoid_physical_damage_%_while_phasing"]=4792, - ["avoid_projectiles_%_chance_if_taken_projectile_damage_recently"]=4793, - ["avoid_projectiles_while_phasing_%_chance"]=4794, - ["avoid_shock_%_while_chilled"]=4795, - ["avoid_status_ailments_%_during_flask_effect"]=3189, - ["avoid_stun_%"]=1755, - ["avoid_stun_%_for_4_seconds_on_kill"]=3216, - ["avoid_stun_%_while_channeling_snipe"]=4797, - ["avoid_stun_%_while_channelling"]=4798, - ["avoid_stun_%_while_holding_shield"]=4799, - ["avoid_stun_35%_per_active_herald"]=4796, - ["axe_accuracy_rating"]=1908, - ["axe_accuracy_rating_+%"]=1346, - ["axe_ailment_damage_+%"]=1212, - ["axe_attack_speed_+%"]=1328, - ["axe_critical_strike_chance_+%"]=1380, - ["axe_critical_strike_multiplier_+"]=1402, - ["axe_damage_+%"]=1209, - ["axe_hit_and_ailment_damage_+%"]=1210, - ["axe_mastery_hit_and_ailment_damage_+%_final_vs_enemies_on_low_life"]=4800, - ["axe_or_sword_ailment_damage_+%"]=1259, - ["axe_or_sword_hit_and_ailment_damage_+%"]=1258, - ["azmeri_primalist_wisps_found_+%"]=4801, - ["azmeri_voodoo_shaman_wisps_found_+%"]=4802, - ["azmeri_warden_wisps_found_+%"]=4803, - ["ball_lightning_damage_+%"]=3058, - ["ball_lightning_number_of_additional_projectiles"]=4804, - ["ball_lightning_projectile_speed_+%"]=3777, - ["ball_lightning_radius_+%"]=3710, - ["banner_affected_enemies_damage_taken_+%"]=4805, - ["banner_affected_enemies_explode_for_10%_life_as_physical_on_kill_chance_%"]=4806, - ["banner_affected_enemies_maimed"]=4807, - ["banner_area_of_effect_+%"]=4808, - ["banner_aura_effect_+%"]=3252, - ["banner_buff_lingers_for_X_seconds_after_leaving_area"]=4809, - ["banner_duration_+%"]=4810, - ["banner_gain_X_endurance_charges_when_placed_with_max_resources"]=4811, - ["banner_gain_X_frenzy_charges_when_placed_with_max_resources"]=4812, - ["banner_gain_X_resources_on_warcry"]=4813, - ["banner_mana_reservation_+%"]=4814, - ["banner_recover_X%_life_when_placed_per_5_resources"]=4815, - ["banner_remove_random_ailment_when_placed_with_X_resources"]=4816, - ["banner_resist_all_elements_%"]=4817, - ["banner_resource_gained_+%"]=4818, - ["banner_resource_maximum_+"]=4819, - ["banner_skills_mana_reservation_efficiency_+%"]=4821, - ["banner_skills_mana_reservation_efficiency_-2%_per_1"]=4820, - ["banner_skills_reserve_no_mana"]=4822, - ["barrage_and_frenzy_critical_strike_chance_+%_per_endurance_charge"]=4823, - ["barrage_attack_speed_+%"]=3746, - ["barrage_damage_+%"]=3548, - ["barrage_final_volley_fires_x_additional_projectiles_simultaneously"]=3154, - ["barrage_num_of_additional_projectiles"]=3835, - ["basalt_flask_armour_+%_final"]=4824, - ["base_%_maximum_life_inflicted_as_aoe_fire_damage_when_hit"]=3674, - ["base_actor_scale_+%"]=1958, - ["base_adaptation_rating"]=1439, - ["base_additional_physical_damage_reduction_%"]=2174, - ["base_aggravate_bleeding_on_attack_hit_chance_%"]=4479, - ["base_ailment_damage_+%"]=4825, - ["base_all_ailment_duration_+%"]=1765, - ["base_all_ailment_duration_on_self_+%"]=4826, - ["base_all_damage_can_cause_elemental_ailments_you_are_suffering_from"]=2762, - ["base_always_inflict_elemental_ailments_you_are_suffering_from"]=4827, - ["base_armour_%_applies_to_chaos_damage"]=4828, - ["base_armour_applies_to_chaos_damage"]=4829, - ["base_armour_applies_to_lightning_damage"]=4830, - ["base_arrow_speed_+%"]=1702, - ["base_arrows_always_pierce"]=4831, - ["base_attack_block_luck"]=4832, - ["base_attack_damage_penetrates_chaos_resist_%"]=3450, - ["base_attack_damage_penetrates_cold_resist_%"]=3448, - ["base_attack_damage_penetrates_elemental_resist_%"]=3445, - ["base_attack_damage_penetrates_fire_resist_%"]=3447, - ["base_attack_damage_penetrates_lightning_resist_%"]=3449, - ["base_attack_skill_cost_life_instead_of_mana_%"]=3681, - ["base_attack_speed_+%_per_frenzy_charge"]=1950, - ["base_aura_area_of_effect_+%"]=2125, - ["base_aura_skills_affecting_allies_also_affect_enemies"]=4833, - ["base_avoid_bleed_%"]=4101, - ["base_avoid_chill_%"]=1749, - ["base_avoid_chill_%_while_have_onslaught"]=2925, - ["base_avoid_freeze_%"]=1750, - ["base_avoid_ignite_%"]=1751, - ["base_avoid_poison_%"]=1754, - ["base_avoid_projectiles_%_chance"]=4834, - ["base_avoid_shock_%"]=1753, - ["base_avoid_stun_%"]=1756, - ["base_bleed_duration_+%"]=4835, - ["base_block_%_damage_taken"]=4837, - ["base_block_luck"]=4836, - ["base_bone_golem_granted_buff_effect_+%"]=4838, - ["base_can_gain_banner_resource"]=1050, - ["base_cannot_be_chilled"]=1742, - ["base_cannot_be_damaged"]=1496, - ["base_cannot_be_frozen"]=1743, - ["base_cannot_be_frozen_if_6_redeemer_items"]=4368, - ["base_cannot_be_ignited"]=1744, - ["base_cannot_be_shocked"]=1746, - ["base_cannot_be_stunned"]=2074, - ["base_cannot_be_stunned_if_6_elder_items"]=4369, - ["base_cannot_evade"]=1821, - ["base_cannot_gain_bleeding"]=4100, - ["base_cannot_gain_endurance_charges"]=4839, - ["base_cannot_leech"]=2365, - ["base_cannot_leech_energy_shield"]=4840, - ["base_cannot_leech_life"]=2467, - ["base_cannot_leech_mana"]=2468, - ["base_cast_speed_+%"]=1354, - ["base_chance_to_deal_triple_damage_%"]=4841, - ["base_chance_to_freeze_%"]=1930, - ["base_chance_to_ignite_%"]=1927, - ["base_chance_to_poison_on_hit_%"]=3063, - ["base_chance_to_shock_%"]=1934, - ["base_chaos_damage_%_of_maximum_life_taken_per_minute"]=1849, - ["base_chaos_damage_can_ignite"]=4842, - ["base_chaos_damage_damages_energy_shield_%"]=4843, - ["base_chaos_damage_resistance_%"]=1546, - ["base_chaos_damage_taken_per_minute"]=1850, - ["base_chaos_golem_granted_buff_effect_+%"]=3986, - ["base_charge_duration_+%"]=4844, - ["base_cold_damage_%_to_convert_to_chaos"]=1872, - ["base_cold_damage_%_to_convert_to_fire"]=1871, - ["base_cold_damage_can_poison"]=2763, - ["base_cold_damage_heals"]=2930, - ["base_cold_damage_resistance_%"]=1537, - ["base_cold_immunity"]=3988, - ["base_convert_%_physical_damage_to_random_element"]=1864, - ["base_cooldown_refresh_chance_%"]=4845, - ["base_cooldown_speed_+%"]=4846, - ["base_cooldown_speed_+%_if_2_shaper_items"]=4329, - ["base_cost_+%"]=1786, - ["base_critical_strike_multiplier_+"]=1396, - ["base_curse_duration_+%"]=1686, - ["base_damage_bypass_ward_%"]=4847, - ["base_damage_removed_from_mana_before_life_%"]=2596, - ["base_damage_taken_+%"]=2139, - ["base_deal_no_chaos_damage"]=4848, - ["base_deal_no_cold_damage"]=2691, - ["base_deal_no_fire_damage"]=4849, - ["base_deal_no_lightning_damage"]=4850, - ["base_deal_no_physical_damage"]=2689, - ["base_elemental_damage_heals"]=2932, - ["base_elemental_skill_gem_level_+_if_6_unique_influence_amoung_equipped_non_amulet_items"]=4851, - ["base_elemental_status_ailment_duration_+%"]=1766, - ["base_elemental_support_gem_level_+_if_6_unique_influence_amoung_equipped_non_amulet_items"]=4852, - ["base_enemy_critical_strike_chance_+%_against_self"]=3020, - ["base_energy_shield_gained_on_enemy_death"]=2471, - ["base_energy_shield_leech_from_chaos_damage_permyriad"]=4853, - ["base_energy_shield_leech_from_cold_damage_permyriad"]=4854, - ["base_energy_shield_leech_from_elemental_damage_permyriad"]=4855, - ["base_energy_shield_leech_from_elemental_damage_permyriad_if_2_shaper_items"]=4330, - ["base_energy_shield_leech_from_fire_damage_permyriad"]=4856, - ["base_energy_shield_leech_from_lightning_damage_permyriad"]=4857, - ["base_energy_shield_leech_from_physical_damage_permyriad"]=4858, - ["base_energy_shield_leech_from_physical_damage_permyriad_if_2_elder_items"]=4331, - ["base_energy_shield_leech_from_spell_damage_permyriad"]=1627, - ["base_energy_shield_regeneration_rate_per_minute"]=2544, - ["base_energy_shield_regeneration_rate_per_minute_%"]=2545, - ["base_es_cost_+"]=1792, - ["base_evasion_rating"]=1451, - ["base_extra_damage_rolls"]=4859, - ["base_fire_damage_%_to_convert_to_chaos"]=1873, - ["base_fire_damage_%_to_convert_to_chaos_60%_value"]=1874, - ["base_fire_damage_can_poison"]=2764, - ["base_fire_damage_heals"]=2929, - ["base_fire_damage_resistance_%"]=1531, - ["base_fire_elemental_maximum_life_+%"]=1677, - ["base_fire_golem_granted_buff_effect_+%"]=3983, - ["base_fire_hit_damage_taken_%_as_physical"]=2345, - ["base_fire_hit_damage_taken_%_as_physical_value_negated"]=2346, - ["base_fire_immunity"]=1512, - ["base_frenzy_charge_duration_+%"]=2028, - ["base_frozen_effect_on_self_+%"]=4860, - ["base_global_chance_to_knockback_%"]=1896, - ["base_ice_golem_granted_buff_effect_+%"]=3984, - ["base_immune_to_chill"]=2792, - ["base_immune_to_cold_ailments"]=4861, - ["base_immune_to_freeze"]=4862, - ["base_immune_to_ignite"]=4863, - ["base_immune_to_shock"]=4864, - ["base_inflict_cold_exposure_on_hit_%_chance"]=4865, - ["base_inflict_fire_exposure_on_hit_%_chance"]=4866, - ["base_inflict_lightning_exposure_on_hit_%_chance"]=4867, - ["base_item_found_quantity_+%"]=1498, - ["base_item_found_rarity_+%"]=1502, - ["base_killed_monster_dropped_item_quantity_+%"]=1914, - ["base_killed_monster_dropped_item_rarity_+%"]=1913, - ["base_leech_is_instant_on_critical"]=2438, - ["base_life_cost_+"]=1793, - ["base_life_cost_+%"]=1787, - ["base_life_gain_per_target"]=1645, - ["base_life_gained_on_enemy_death"]=1653, - ["base_life_gained_on_spell_hit"]=1644, - ["base_life_leech_applies_recovery_to_energy_shield"]=4868, - ["base_life_leech_from_attack_damage_permyriad"]=1569, - ["base_life_leech_from_attack_damage_permyriad_vs_chilled_enemies"]=1598, - ["base_life_leech_from_chaos_damage_permyriad"]=1587, - ["base_life_leech_from_cold_damage_permyriad"]=1580, - ["base_life_leech_from_elemental_damage_permyriad"]=1591, - ["base_life_leech_from_fire_damage_permyriad"]=1575, - ["base_life_leech_from_lightning_damage_permyriad"]=1584, - ["base_life_leech_from_physical_damage_permyriad"]=1571, - ["base_life_leech_from_spell_damage_permyriad"]=1568, - ["base_life_leech_is_instant"]=2436, - ["base_life_leech_permyriad_vs_frozen_enemies"]=1596, - ["base_life_leech_permyriad_vs_shocked_enemies"]=1593, - ["base_life_regeneration_rate_per_minute"]=1480, - ["base_life_reservation_+%"]=2128, - ["base_life_reservation_efficiency_+%"]=2127, - ["base_lightning_damage_%_to_convert_to_chaos"]=1869, - ["base_lightning_damage_%_to_convert_to_chaos_60%_value"]=1870, - ["base_lightning_damage_%_to_convert_to_cold"]=1868, - ["base_lightning_damage_%_to_convert_to_fire"]=1867, - ["base_lightning_damage_can_poison"]=2765, - ["base_lightning_damage_heals"]=2931, - ["base_lightning_damage_resistance_%"]=1542, - ["base_lightning_golem_granted_buff_effect_+%"]=3985, - ["base_lightning_immunity"]=3989, - ["base_main_hand_damage_+%"]=1190, - ["base_main_hand_maim_on_hit_%"]=4869, - ["base_mana_cost_+"]=1794, - ["base_mana_cost_+_with_channelling_skills"]=9572, - ["base_mana_cost_+_with_non_channelling_skills"]=9574, - ["base_mana_cost_-%"]=1788, - ["base_mana_gained_on_enemy_death"]=1668, - ["base_mana_leech_from_attack_damage_permyriad"]=1610, - ["base_mana_leech_from_chaos_damage_permyriad"]=1619, - ["base_mana_leech_from_cold_damage_permyriad"]=1615, - ["base_mana_leech_from_elemental_damage_permyriad"]=1621, - ["base_mana_leech_from_fire_damage_permyriad"]=1613, - ["base_mana_leech_from_lightning_damage_permyriad"]=1617, - ["base_mana_leech_from_physical_damage_permyriad"]=1611, - ["base_mana_leech_from_spell_damage_permyriad"]=1609, - ["base_mana_leech_permyriad_vs_shocked_enemies"]=1623, - ["base_mana_regeneration_rate_per_minute"]=1488, - ["base_mana_reservation_+%"]=2130, - ["base_mana_reservation_efficiency_+%"]=2129, - ["base_max_fortification"]=4870, - ["base_max_fortification_per_endurance_charge"]=4276, - ["base_maximum_chaos_damage_resistance_%"]=1545, - ["base_maximum_chaos_damage_resistance_%_if_4_hunter_items"]=4350, - ["base_maximum_cold_damage_resistance_%"]=1535, - ["base_maximum_cold_damage_resistance_%_if_4_redeemer_items"]=4351, - ["base_maximum_energy_shield"]=1464, - ["base_maximum_energy_shield_per_blue_socket_on_item"]=2623, - ["base_maximum_fire_damage_resistance_%"]=1529, - ["base_maximum_fire_damage_resistance_%_if_4_warlord_items"]=4352, - ["base_maximum_fragile_regrowth"]=4285, - ["base_maximum_life"]=1475, - ["base_maximum_life_per_red_socket_on_item"]=2615, - ["base_maximum_lightning_damage_on_charge_expiry"]=2457, - ["base_maximum_lightning_damage_resistance_%"]=1540, - ["base_maximum_lightning_damage_resistance_%_if_4_crusader_items"]=4353, - ["base_maximum_mana"]=1485, - ["base_maximum_mana_per_green_socket_on_item"]=2619, - ["base_maximum_spell_block_%"]=1890, - ["base_maximum_spell_block_%_if_4_shaper_items"]=4354, - ["base_melee_critical_strike_chance_while_unarmed_%"]=3458, - ["base_minimum_endurance_charges"]=1708, - ["base_minimum_frenzy_charges"]=1713, - ["base_minimum_lightning_damage_on_charge_expiry"]=2457, - ["base_minimum_power_charges"]=1718, - ["base_minion_duration_+%"]=4871, - ["base_movement_velocity_+%"]=1703, - ["base_movement_velocity_+%_if_4_hunter_items"]=4355, - ["base_no_mana"]=2080, - ["base_non_chaos_damage_bypass_energy_shield_%"]=573, - ["base_number_of_animated_weapons_allowed"]=9069, - ["base_number_of_arbalists"]=9070, - ["base_number_of_champions_of_light_allowed"]=4872, - ["base_number_of_essence_spirits_allowed"]=673, - ["base_number_of_golems_allowed"]=3577, - ["base_number_of_herald_scorpions_allowed"]=4873, - ["base_number_of_raging_spirits_allowed"]=2064, - ["base_number_of_relics_allowed"]=4874, - ["base_number_of_remote_mines_allowed"]=2154, - ["base_number_of_sacred_wisps_allowed"]=4875, - ["base_number_of_sigils_allowed_per_target"]=4876, - ["base_number_of_skeletons_allowed"]=2063, - ["base_number_of_spectres_allowed"]=2062, - ["base_number_of_support_ghosts_allowed"]=4877, - ["base_number_of_totems_allowed"]=2152, - ["base_number_of_traps_allowed"]=2153, - ["base_number_of_zombies_allowed"]=2061, - ["base_off_hand_attack_speed_+%"]=1324, - ["base_off_hand_chance_to_blind_on_hit_%"]=4878, - ["base_off_hand_damage_+%"]=1191, - ["base_onlsaught_on_hit_%_chance"]=4879, - ["base_penetrate_elemental_resistances_%"]=3446, - ["base_physical_damage_%_to_convert_to_chaos"]=1865, - ["base_physical_damage_%_to_convert_to_chaos_per_level"]=4881, - ["base_physical_damage_%_to_convert_to_cold"]=1860, - ["base_physical_damage_%_to_convert_to_cold_while_affected_by_hatred"]=4882, - ["base_physical_damage_%_to_convert_to_fire"]=1858, - ["base_physical_damage_%_to_convert_to_fire_while_affected_by_anger"]=4883, - ["base_physical_damage_%_to_convert_to_lightning"]=1862, - ["base_physical_damage_%_to_convert_to_lightning_while_affected_by_wrath"]=4884, - ["base_physical_damage_over_time_taken_+%"]=4880, - ["base_physical_damage_reduction_and_evasion_rating"]=4151, - ["base_physical_damage_reduction_rating"]=1446, - ["base_poison_damage_+%"]=3071, - ["base_poison_duration_+%"]=3060, - ["base_projectile_speed_+%"]=1701, - ["base_rage_cost_+%"]=1789, - ["base_raven_maximum_life_+%"]=1678, - ["base_reduce_enemy_cold_resistance_%"]=2879, - ["base_reduce_enemy_fire_resistance_%"]=2877, - ["base_reduce_enemy_lightning_resistance_%"]=2880, - ["base_remove_elemental_ailments_from_you_when_you_inflict_them"]=9417, - ["base_reservation_+%"]=2132, - ["base_reservation_efficiency_+%"]=2131, - ["base_resist_all_elements_%"]=1525, - ["base_self_chill_duration_-%"]=1777, - ["base_self_critical_strike_multiplier_-%"]=1419, - ["base_self_freeze_duration_-%"]=1779, - ["base_self_ignite_duration_-%"]=1780, - ["base_self_shock_duration_-%"]=1778, - ["base_should_have_onslaught_from_stat"]=3484, - ["base_skill_area_of_effect_+%"]=1785, - ["base_skill_cost_life_instead_of_mana"]=175, - ["base_skill_cost_life_instead_of_mana_%"]=4885, - ["base_skill_gain_es_cost_%_of_mana_cost"]=4886, - ["base_skill_gain_life_cost_%_of_mana_cost"]=4887, - ["base_skill_reserve_life_instead_of_mana"]=176, - ["base_skills_cost_es_instead_of_mana_life"]=4888, - ["base_spectre_maximum_life_+%"]=1675, - ["base_spell_block_%"]=1070, - ["base_spell_block_luck"]=1069, - ["base_spell_critical_chance_equal_to_the_critical_strike_chance_of_main_weapon"]=4889, - ["base_spell_critical_strike_chance"]=1364, - ["base_spell_critical_strike_multiplier_+"]=1399, - ["base_spell_damage_%_suppressed"]=1054, - ["base_spell_projectile_block_%"]=4890, - ["base_spell_suppression_chance_%"]=1056, - ["base_spell_suppression_chance_150%_of_value"]=1055, - ["base_steal_power_frenzy_endurance_charges_on_hit_%"]=2888, - ["base_stone_golem_granted_buff_effect_+%"]=3982, - ["base_strength_and_intelligence"]=405, - ["base_stun_duration_+%"]=1768, - ["base_stun_recovery_+%"]=1805, - ["base_stun_threshold_reduction_+%"]=1424, - ["base_tincture_mod_effect_+%"]=4891, - ["base_total_number_of_sigils_allowed"]=4892, - ["base_unaffected_by_poison"]=4893, - ["base_unaffected_by_poison_if_2_hunter_items"]=4332, - ["base_ward"]=1434, - ["base_weapon_trap_rotation_speed_+%"]=4894, - ["base_weapon_trap_total_rotation_%"]=4895, - ["base_your_auras_are_disabled"]=4896, - ["base_zombie_maximum_life_+%"]=1676, - ["battlemages_cry_buff_effect_+%"]=4897, - ["battlemages_cry_exerts_x_additional_attacks"]=4898, - ["bear_and_siphoning_trap_debuff_grants_-%_cooldown_speed"]=4899, - ["bear_trap_additional_damage_taken_+%_from_traps_and_mines"]=4900, - ["bear_trap_cooldown_speed_+%"]=3764, - ["bear_trap_damage_+%"]=3593, - ["bear_trap_damage_taken_+%_from_traps_and_mines"]=4901, - ["bear_trap_movement_speed_+%_final"]=4902, - ["belt_enchant_enemies_you_taunt_have_area_damage_+%_final"]=4903, - ["berserk_buff_effect_+%"]=4904, - ["berserk_rage_loss_+%"]=4905, - ["berserker_damage_+%_final"]=3940, - ["berserker_gain_rage_on_attack_hit_cooldown_ms"]=4906, - ["berserker_warcry_grant_X_rage_per_5_power_while_less_than_25_rage"]=4907, - ["berserker_warcry_grant_attack_speed_+%_to_you_and_nearby_allies"]=4908, - ["berserker_warcry_grant_damage_+%_to_you_and_nearby_allies"]=4909, - ["berserker_warcry_sacrifice_25_rage_for_more_empowered_attack_damage_for_4_seconds_+%_final"]=4910, - ["bird_aspect_reserves_no_mana"]=4911, - ["blackhole_damage_taken_+%"]=4912, - ["blackhole_pulse_frequency_+%"]=4913, - ["blackstar_moonlight_cold_damage_taken_+%_final"]=4914, - ["blackstar_moonlight_fire_damage_taken_+%_final"]=4915, - ["blackstar_sunlight_cold_damage_taken_+%_final"]=4916, - ["blackstar_sunlight_fire_damage_taken_+%_final"]=4917, - ["blade_blase_damage_+%"]=4918, - ["blade_blast_skill_area_of_effect_+%"]=4919, - ["blade_blast_trigger_detonation_area_of_effect_+%"]=4920, - ["blade_trap_damage_+%"]=4921, - ["blade_trap_skill_area_of_effect_+%"]=4922, - ["blade_trap_skill_area_of_effect_+%_final"]=4923, - ["blade_vortex_blade_blast_impale_on_hit_%_chance"]=4924, - ["blade_vortex_blade_deal_no_non_physical_damage"]=4925, - ["blade_vortex_critical_strike_multiplier_+_per_blade"]=4926, - ["blade_vortex_damage_+%"]=3616, - ["blade_vortex_duration_+%"]=3811, - ["blade_vortex_radius_+%"]=3727, - ["bladefall_critical_strike_chance_+%"]=3830, - ["bladefall_damage_+%"]=3617, - ["bladefall_number_of_volleys"]=4927, - ["bladefall_radius_+%"]=3728, - ["bladestorm_and_rage_vortex_hinders_and_unnerves_enemies_within"]=4928, - ["bladestorm_damage_+%"]=4929, - ["bladestorm_maximum_number_of_storms_allowed"]=4930, - ["bladestorm_sandstorm_movement_speed_+%"]=4931, - ["blast_rain_%_chance_for_additional_blast"]=3994, - ["blast_rain_artillery_ballista_all_damage_can_poison"]=4932, - ["blast_rain_artillery_ballista_poison_damage_+100%_final_chance"]=4933, - ["blast_rain_damage_+%"]=3613, - ["blast_rain_number_of_blasts"]=3877, - ["blast_rain_radius_+%"]=3724, - ["blast_rain_single_additional_projectile"]=3878, - ["blazing_salvo_damage_+%"]=4934, - ["blazing_salvo_number_of_additional_projectiles"]=4935, - ["blazing_salvo_projectiles_fork_when_passing_a_flame_wall"]=4936, - ["bleed_damage_+%_per_endurance_charge"]=4937, - ["bleed_damage_+%_vs_maimed_enemies_final"]=4133, - ["bleed_dot_multiplier_+_per_impale_on_enemy"]=4938, - ["bleed_dot_multiplier_+_per_rage_if_equipped_axe"]=4939, - ["bleed_duration_per_12_intelligence_+%"]=3686, - ["bleed_on_bow_attack_chance_%"]=2388, - ["bleed_on_crit_%_with_attacks"]=2385, - ["bleed_on_hit_with_attacks_%"]=2389, - ["bleed_on_melee_attack_chance_%"]=2387, - ["bleed_on_melee_crit_chance_%"]=2386, - ["bleed_on_melee_critical_strike"]=4164, - ["bleeding_damage_+%"]=3059, - ["bleeding_damage_+%_vs_maimed_enemies"]=4940, - ["bleeding_damage_+%_vs_poisoned_enemies"]=4941, - ["bleeding_damage_on_self_converted_to_chaos"]=2350, - ["bleeding_dot_multiplier_+"]=1157, - ["bleeding_dot_multiplier_+_per_endurance_charge"]=4943, - ["bleeding_dot_multiplier_+_vs_poisoned_enemies"]=4944, - ["bleeding_dot_multiplier_per_frenzy_charge_+"]=4942, - ["bleeding_enemies_explode_for_%_life_as_physical_damage"]=3368, - ["bleeding_monsters_movement_velocity_+%"]=2862, - ["bleeding_on_self_expire_speed_+%_while_moving"]=4945, - ["bleeding_reflected_to_self"]=4946, - ["bleeding_stacks_up_to_x_times"]=4947, - ["blight_arc_tower_additional_chains"]=4948, - ["blight_arc_tower_additional_repeats"]=4949, - ["blight_arc_tower_chance_to_sap_%"]=4950, - ["blight_arc_tower_damage_+%"]=4951, - ["blight_arc_tower_range_+%"]=4952, - ["blight_area_of_effect_+%_every_second_while_channelling_up_to_+200%"]=4953, - ["blight_cast_speed_+%"]=4954, - ["blight_chilling_tower_chill_effect_+%"]=4955, - ["blight_chilling_tower_damage_+%"]=4956, - ["blight_chilling_tower_duration_+%"]=4957, - ["blight_chilling_tower_freeze_for_ms"]=4958, - ["blight_chilling_tower_range_+%"]=4959, - ["blight_damage_+%"]=3626, - ["blight_duration_+%"]=3813, - ["blight_empowering_tower_buff_effect_+%"]=4960, - ["blight_empowering_tower_grant_%_chance_to_deal_double_damage"]=4963, - ["blight_empowering_tower_grant_cast_speed_+%"]=4961, - ["blight_empowering_tower_grant_damage_+%"]=4962, - ["blight_empowering_tower_range_+%"]=4964, - ["blight_fireball_tower_additional_projectiles_+"]=4965, - ["blight_fireball_tower_cast_speed_+%"]=4966, - ["blight_fireball_tower_damage_+%"]=4967, - ["blight_fireball_tower_projectiles_nova"]=4968, - ["blight_fireball_tower_range_+%"]=4969, - ["blight_flamethrower_tower_cast_speed_+%"]=4970, - ["blight_flamethrower_tower_chance_to_scorch_%"]=4971, - ["blight_flamethrower_tower_damage_+%"]=4972, - ["blight_flamethrower_tower_full_damage_fire_enemies"]=4973, - ["blight_flamethrower_tower_range_+%"]=4974, - ["blight_freezebolt_tower_chance_to_brittle_%"]=4975, - ["blight_freezebolt_tower_damage_+%"]=4976, - ["blight_freezebolt_tower_full_damage_cold_enemies"]=4977, - ["blight_freezebolt_tower_projectiles_+"]=4978, - ["blight_freezebolt_tower_range_+%"]=4979, - ["blight_glacialcage_tower_area_of_effect_+%"]=4980, - ["blight_glacialcage_tower_cooldown_recovery_+%"]=4981, - ["blight_glacialcage_tower_duration_+%"]=4982, - ["blight_glacialcage_tower_enemy_damage_taken_+%"]=4983, - ["blight_glacialcage_tower_range_+%"]=4984, - ["blight_hinder_enemy_chaos_damage_taken_+%"]=4985, - ["blight_imbuing_tower_buff_effect_+%"]=4986, - ["blight_imbuing_tower_grant_critical_strike_+%"]=4987, - ["blight_imbuing_tower_grant_damage_+%"]=4988, - ["blight_imbuing_tower_grants_onslaught"]=4989, - ["blight_imbuing_tower_range_+%"]=4990, - ["blight_lightningstorm_tower_area_of_effect_+%"]=4991, - ["blight_lightningstorm_tower_damage_+%"]=4992, - ["blight_lightningstorm_tower_delay_+%"]=4993, - ["blight_lightningstorm_tower_range_+%"]=4994, - ["blight_lightningstorm_tower_storms_on_enemies"]=4995, - ["blight_meteor_tower_additional_meteor_+"]=4996, - ["blight_meteor_tower_always_stun"]=4997, - ["blight_meteor_tower_creates_burning_ground_ms"]=4998, - ["blight_meteor_tower_damage_+%"]=4999, - ["blight_meteor_tower_range_+%"]=5000, - ["blight_radius_+%"]=3733, - ["blight_scout_tower_additional_minions_+"]=5001, - ["blight_scout_tower_minion_damage_+%"]=5002, - ["blight_scout_tower_minion_life_+%"]=5003, - ["blight_scout_tower_minion_movement_speed_+%"]=5004, - ["blight_scout_tower_minions_inflict_malediction"]=5005, - ["blight_scout_tower_range_+%"]=5006, - ["blight_secondary_skill_effect_duration_+%"]=5007, - ["blight_seismic_tower_additional_cascades_+"]=5008, - ["blight_seismic_tower_cascade_range_+%"]=5009, - ["blight_seismic_tower_damage_+%"]=5010, - ["blight_seismic_tower_range_+%"]=5011, - ["blight_seismic_tower_stun_duration_+%"]=5012, - ["blight_sentinel_tower_minion_damage_+%"]=5013, - ["blight_sentinel_tower_minion_life_+%"]=5014, - ["blight_sentinel_tower_minion_movement_speed_+%"]=5015, - ["blight_sentinel_tower_minions_life_leech_%"]=5016, - ["blight_sentinel_tower_range_+%"]=5017, - ["blight_shocking_tower_damage_+%"]=5018, - ["blight_shocking_tower_range_+%"]=5019, - ["blight_shocknova_tower_full_damage_lightning_enemies"]=5020, - ["blight_shocknova_tower_shock_additional_repeats"]=5021, - ["blight_shocknova_tower_shock_effect_+%"]=5022, - ["blight_shocknova_tower_shock_repeats_with_area_effect_+%"]=5023, - ["blight_skill_area_of_effect_+%_after_1_second_channelling"]=5024, - ["blight_smothering_tower_buff_effect_+%"]=5025, - ["blight_smothering_tower_freeze_shock_ignite_%"]=5026, - ["blight_smothering_tower_grant_damage_+%"]=5027, - ["blight_smothering_tower_grant_movement_speed_+%"]=5028, - ["blight_smothering_tower_range_+%"]=5029, - ["blight_stonegaze_tower_cooldown_recovery_+%"]=5030, - ["blight_stonegaze_tower_duration_+%"]=5031, - ["blight_stonegaze_tower_petrified_enemies_take_damage_+%"]=5032, - ["blight_stonegaze_tower_petrify_tick_speed_+%"]=5033, - ["blight_stonegaze_tower_range_+%"]=5034, - ["blight_summoning_tower_minion_damage_+%"]=5035, - ["blight_summoning_tower_minion_life_+%"]=5036, - ["blight_summoning_tower_minion_movement_speed_+%"]=5037, - ["blight_summoning_tower_minions_summoned_+"]=5038, - ["blight_summoning_tower_range_+%"]=5039, - ["blight_temporal_tower_buff_effect_+%"]=5040, - ["blight_temporal_tower_grant_you_action_speed_-%"]=5041, - ["blight_temporal_tower_grants_stun_immunity"]=5042, - ["blight_temporal_tower_range_+%"]=5043, - ["blight_temporal_tower_tick_speed_+%"]=5044, - ["blight_tertiary_skill_effect_duration"]=5045, - ["blight_tower_arc_damage_+%"]=5046, - ["blight_tower_chilling_cost_+%"]=5047, - ["blight_tower_damage_per_tower_type_+%"]=5048, - ["blight_tower_fireball_additional_projectile"]=5049, - ["blighted_map_chest_reward_lucky_count"]=5050, - ["blighted_map_tower_damage_+%_final"]=5051, - ["blind_chilled_enemies_on_hit_%"]=5052, - ["blind_does_not_affect_chance_to_hit"]=5053, - ["blind_does_not_affect_light_radius"]=5054, - ["blind_duration_+%"]=3325, - ["blind_effect_+%"]=5055, - ["blind_enemies_when_hit_%_chance"]=5056, - ["blind_enemies_when_hit_while_affected_by_grace_%_chance"]=5057, - ["blind_nearby_enemies_when_gaining_her_blessing_%"]=3169, - ["blind_nearby_enemies_when_ignited_%"]=2937, - ["blind_reflected_to_self"]=5058, - ["blink_and_mirror_arrow_clones_inherit_gloves"]=5059, - ["blink_and_mirror_arrow_cooldown_speed_+%"]=5060, - ["blink_arrow_and_blink_arrow_clone_attack_speed_+%"]=3753, - ["blink_arrow_and_blink_arrow_clone_damage_+%"]=3606, - ["blink_arrow_cooldown_speed_+%"]=3769, - ["block_%_damage_taken_from_elemental"]=5065, - ["block_%_if_blocked_an_attack_recently"]=5066, - ["block_%_while_affected_by_determination"]=5067, - ["block_and_stun_+%_recovery_per_fortification"]=5061, - ["block_causes_monster_flee_%"]=2856, - ["block_chance_%_per_50_strength"]=1063, - ["block_chance_%_vs_cursed_enemies"]=5062, - ["block_chance_%_vs_taunted_enemies"]=4074, - ["block_chance_%_while_holding_shield"]=1073, - ["block_chance_+%"]=1075, - ["block_chance_+%_per_100_life_spent_recently"]=5063, - ["block_chance_from_equipped_shield_is_%"]=5064, - ["block_chance_on_damage_taken_%"]=3106, - ["block_recovery_+%"]=1076, - ["block_spells_chance_%_while_holding_shield"]=5068, - ["block_while_dual_wielding_%"]=1071, - ["block_while_dual_wielding_claws_%"]=1072, - ["blood_footprints_from_item"]=10318, - ["blood_rage_grants_additional_%_chance_to_gain_frenzy_on_kill"]=3991, - ["blood_rage_grants_additional_attack_speed_+%"]=3990, - ["blood_sand_armour_mana_reservation_+%"]=5069, - ["blood_sand_mana_reservation_efficiency_+%"]=5071, - ["blood_sand_mana_reservation_efficiency_-2%_per_1"]=5070, - ["blood_sand_stance_buff_effect_+%"]=5072, - ["blood_spears_area_of_effect_+%"]=5073, - ["blood_spears_base_number_of_spears"]=5074, - ["blood_spears_damage_+%"]=5075, - ["bloodreap_damage_+%"]=5076, - ["bloodreap_skill_area_of_effect_+%"]=5077, - ["body_armour_defences_doubled_while_no_gems_in_body_armour"]=5078, - ["body_armour_evasion_rating_+%"]=5079, - ["body_armour_implicit_damage_taken_-1%_final_per_X_dexterity"]=5080, - ["body_armour_implicit_damage_taken_-1%_final_per_X_intelligence"]=5081, - ["body_armour_implicit_damage_taken_-1%_final_per_X_strength"]=5082, - ["body_armour_implicit_gain_endurance_charge_every_x_ms"]=5083, - ["body_armour_implicit_gain_frenzy_charge_every_x_ms"]=5084, - ["body_armour_implicit_gain_power_charge_every_x_ms"]=5085, - ["body_armour_trigger_socketed_spell_on_unarmed_melee_critical_hit_cooldown"]=674, - ["bone_golem_damage_+%"]=5086, - ["bone_golem_elemental_resistances_%"]=5087, - ["bone_lance_cast_speed_+%"]=5088, - ["bone_lance_damage_+%"]=5089, - ["bone_offering_block_chance_+%"]=4006, - ["bone_offering_duration_+%"]=3787, - ["bone_offering_effect_+%"]=1081, - ["boneshatter_chance_to_gain_+1_trauma"]=5090, - ["boneshatter_damage_+%"]=5091, - ["boneshatter_stun_duration_+%"]=5092, - ["boots_implicit_accuracy_rating_+%_final"]=5093, - ["boots_implicit_ground_brittle_duration_ms"]=5094, - ["boots_implicit_ground_sapping_duration_ms"]=5095, - ["boots_implicit_ground_scorched_duration_ms"]=5096, - ["boots_mod_effect_+%"]=5097, - ["boss_maximum_life_+%_final"]=5098, - ["bow_accuracy_rating"]=1906, - ["bow_accuracy_rating_+%"]=1351, - ["bow_ailment_damage_+%"]=1242, - ["bow_attack_speed_+%"]=1333, - ["bow_attacks_have_culling_strike"]=5099, - ["bow_attacks_turn_frenzy_charges_into_additional_arrows"]=1698, - ["bow_critical_strike_chance_+%"]=1373, - ["bow_critical_strike_multiplier_+"]=1403, - ["bow_damage_+%"]=1239, - ["bow_elemental_damage_+%"]=1245, - ["bow_enemy_block_-%"]=1808, - ["bow_hit_and_ailment_damage_+%"]=1240, - ["bow_physical_damage_+%_while_holding_shield"]=1888, - ["bow_steal_power_frenzy_endurance_charges_on_hit_%"]=2848, - ["bow_stun_duration_+%"]=1770, - ["bow_stun_threshold_reduction_+%"]=1426, - ["brand_activation_rate_+%_final_during_first_20%_of_active_duration"]=5100, - ["brand_activation_rate_+%_final_during_last_20%_of_active_duration"]=5101, - ["brand_area_of_effect_+%_if_50%_attached_duration_expired"]=5102, - ["brands_reattach_on_activation"]=5103, - ["breachstone_commanders_%_drop_additional_fragments"]=5104, - ["breachstone_commanders_%_drop_additional_maps"]=5105, - ["breachstone_commanders_%_drop_additional_scarabs"]=5106, - ["breachstone_commanders_%_drop_additional_unique_items"]=5107, - ["breachstone_commanders_drop_additional_currency_items"]=5108, - ["breachstone_commanders_drop_additional_divination_cards"]=5109, - ["buff_affects_party"]=1690, - ["buff_auras_dont_affect_allies"]=2915, - ["buff_duration_+%"]=1685, - ["buff_effect_+%_on_low_energy_shield"]=5110, - ["buff_effect_on_self_+%"]=2045, - ["buff_party_effect_radius_+%"]=1691, - ["buff_time_passed_+%"]=5112, - ["buff_time_passed_+%_only_buff_category"]=5111, - ["burn_damage_+%"]=1782, - ["burning_and_explosive_arrow_shatter_on_killing_blow"]=5113, - ["burning_arrow_damage_+%"]=3515, - ["burning_arrow_debuff_effect_+%"]=5114, - ["burning_arrow_ignite_chance_%"]=3842, - ["burning_arrow_physical_damage_%_to_add_as_fire_damage"]=3843, - ["burning_damage_+%_if_ignited_an_enemy_recently"]=4185, - ["burning_damage_+%_per_non_shocked_enemy_shocked_recently_up_to_120%"]=5115, - ["burning_damage_taken_+%"]=2448, - ["burning_ground_effect_on_self_+%"]=2051, - ["can_apply_additional_scorch"]=5116, - ["can_apply_additional_tincture"]=5117, - ["can_catch_corrupted_fish"]=2753, - ["can_catch_exotic_fish"]=2752, - ["can_catch_scourged_fish"]=5118, - ["can_gain_banner_resource_while_banner_is_placed"]=1050, - ["can_inflict_multiple_ignites"]=2494, - ["can_only_have_one_ancestor_totem_buff"]=5119, - ["can_only_inflict_wither_against_full_life_enemies"]=5120, - ["can_see_corpse_types"]=666, - ["can_trigger_summon_elemental_relic_on_nearby_ally_kill_or_on_hit_rare_or_unique"]=5121, - ["cannot_adapt_to_cold"]=5122, - ["cannot_adapt_to_fire"]=5123, - ["cannot_adapt_to_lightning"]=5124, - ["cannot_be_affected_by_flasks"]=3634, - ["cannot_be_bled_by_bleeding_enemies"]=5125, - ["cannot_be_blinded"]=2870, - ["cannot_be_blinded_while_affected_by_precision"]=5126, - ["cannot_be_chilled_or_frozen_while_ice_golem_summoned"]=5127, - ["cannot_be_chilled_or_frozen_while_moving"]=5128, - ["cannot_be_chilled_while_at_maximum_frenzy_charges"]=5129, - ["cannot_be_chilled_while_burning"]=5130, - ["cannot_be_crit_if_you_have_been_stunned_recently"]=5131, - ["cannot_be_cursed_with_silence"]=2984, - ["cannot_be_frozen_if_energy_shield_recharge_has_started_recently"]=5132, - ["cannot_be_frozen_if_you_have_been_frozen_recently"]=5133, - ["cannot_be_frozen_with_dex_higher_than_int"]=5134, - ["cannot_be_ignited_by_ignited_enemies"]=5135, - ["cannot_be_ignited_if_you_have_been_ignited_recently"]=5136, - ["cannot_be_ignited_while_at_maximum_endurance_charges"]=5137, - ["cannot_be_ignited_while_flame_golem_summoned"]=5138, - ["cannot_be_ignited_with_strength_higher_than_dex"]=5139, - ["cannot_be_inflicted_by_corrupted_blood"]=5140, - ["cannot_be_killed_by_elemental_reflect"]=2573, - ["cannot_be_knocked_back"]=1428, - ["cannot_be_poisoned"]=3259, - ["cannot_be_poisoned_if_x_poisons_on_you"]=5141, - ["cannot_be_poisoned_while_bleeding"]=5142, - ["cannot_be_shocked_if_you_have_been_shocked_recently"]=5143, - ["cannot_be_shocked_or_ignited_while_moving"]=5144, - ["cannot_be_shocked_while_at_maximum_endurance_charges"]=4063, - ["cannot_be_shocked_while_at_maximum_power_charges"]=5145, - ["cannot_be_shocked_while_frozen"]=2796, - ["cannot_be_shocked_while_lightning_golem_summoned"]=5146, - ["cannot_be_shocked_with_int_higher_than_strength"]=5147, - ["cannot_be_stunned"]=2073, - ["cannot_be_stunned_by_attacks_if_other_ring_is_elder_item"]=4212, - ["cannot_be_stunned_by_blocked_hits"]=5148, - ["cannot_be_stunned_by_hits_of_only_physical_damage"]=5149, - ["cannot_be_stunned_by_spells_if_other_ring_is_shaper_item"]=4211, - ["cannot_be_stunned_by_suppressed_spell_damage"]=5150, - ["cannot_be_stunned_if_have_been_stunned_or_blocked_stunning_hit_in_past_2_seconds"]=5151, - ["cannot_be_stunned_if_have_not_been_hit_recently"]=5152, - ["cannot_be_stunned_if_you_have_10_or_more_crab_charges"]=4232, - ["cannot_be_stunned_if_you_have_been_stunned_recently"]=5153, - ["cannot_be_stunned_if_you_have_blocked_a_stun_recently"]=5154, - ["cannot_be_stunned_if_you_have_ghost_dance"]=5155, - ["cannot_be_stunned_when_on_low_life"]=2075, - ["cannot_be_stunned_while_at_max_endurance_charges"]=3937, - ["cannot_be_stunned_while_bleeding"]=5156, - ["cannot_be_stunned_while_fortified"]=5157, - ["cannot_be_stunned_while_leeching"]=3102, - ["cannot_be_stunned_while_using_chaos_skill"]=5158, - ["cannot_be_stunned_with_25_rage"]=9315, - ["cannot_block_attacks"]=2159, - ["cannot_block_spells"]=5159, - ["cannot_block_while_no_energy_shield"]=2632, - ["cannot_cast_curses"]=2581, - ["cannot_cast_spells"]=5160, - ["cannot_cause_bleeding"]=2389, - ["cannot_crit_non_shocked_enemies"]=4022, - ["cannot_critical_strike_with_attacks"]=5161, - ["cannot_fish_from_water"]=5162, - ["cannot_freeze_shock_ignite_on_critical"]=2574, - ["cannot_gain_charges"]=5163, - ["cannot_gain_corrupted_blood_while_you_have_at_least_5_stacks"]=5164, - ["cannot_gain_damaging_ailments"]=5165, - ["cannot_gain_endurance_charges_while_have_onslaught"]=2653, - ["cannot_gain_power_charges"]=5166, - ["cannot_gain_rage_during_soul_gain_prevention"]=5167, - ["cannot_have_energy_shield_leeched_from"]=5168, - ["cannot_have_life_leeched_from"]=2341, - ["cannot_have_mana_leeched_from"]=2342, - ["cannot_have_more_than_1_damaging_ailment"]=5169, - ["cannot_have_more_than_1_non_damaging_ailment"]=5170, - ["cannot_increase_quantity_of_dropped_items"]=2450, - ["cannot_increase_rarity_of_dropped_items"]=2449, - ["cannot_inflict_status_ailments"]=1767, - ["cannot_knockback"]=2906, - ["cannot_leech_life_from_critical_strikes"]=4162, - ["cannot_leech_or_regenerate_mana"]=2469, - ["cannot_leech_when_on_low_life"]=2470, - ["cannot_lose_crab_charges_if_you_have_lost_crab_charges_recently"]=4233, - ["cannot_penetrate_or_ignore_elemental_resistances"]=5171, - ["cannot_receive_elemental_ailments_from_cursed_enemies"]=5172, - ["cannot_recharge_energy_shield"]=5173, - ["cannot_regenerate_energy_shield"]=5174, - ["cannot_resist_cold_damage"]=2092, - ["cannot_stun"]=1760, - ["cannot_summon_mirage_archer_if_near_mirage_archer_radius"]=4301, - ["cannot_take_reflected_elemental_damage"]=5175, - ["cannot_take_reflected_elemental_damage_if_4_shaper_items"]=4356, - ["cannot_take_reflected_physical_damage"]=5176, - ["cannot_take_reflected_physical_damage_if_4_elder_items"]=4357, - ["cannot_taunt_enemies"]=5177, - ["cannot_use_flask_in_fifth_slot"]=5178, - ["cannot_use_life_flasks"]=5179, - ["carrion_golem_impale_on_hit_if_same_number_of_summoned_chaos_golems"]=5180, - ["cast_a_socketed_spell_on_channel_with_blade_flurry_or_charged_dash"]=5181, - ["cast_blink_arrow_on_attack_with_mirror_arrow"]=5182, - ["cast_body_swap_on_detonate_dead_cast"]=5183, - ["cast_bone_corpses_on_stun_with_heavy_strike_or_boneshatter"]=5184, - ["cast_gravity_sphere_on_cast_from_storm_burst_or_divine_ire"]=5185, - ["cast_hydrosphere_while_channeling_winter_orb"]=5186, - ["cast_ice_nova_on_final_burst_of_glacial_cascade"]=5187, - ["cast_linked_spells_on_shocked_enemy_kill_%"]=675, - ["cast_mirror_arrow_on_attack_with_blink_arrow"]=5188, - ["cast_socketed_minion_skills_on_bow_kill_%"]=676, - ["cast_socketed_spells_on_X_mana_spent"]=677, - ["cast_socketed_spells_on_mana_spent_%_chance"]=677, - ["cast_speed_+%_during_flask_effect"]=5194, - ["cast_speed_+%_final_while_holding_fishing_rod"]=5189, - ["cast_speed_+%_for_4_seconds_on_attack"]=3422, - ["cast_speed_+%_if_enemy_killed_recently"]=5195, - ["cast_speed_+%_if_have_crit_recently"]=5196, - ["cast_speed_+%_if_player_minion_has_been_killed_recently"]=5197, - ["cast_speed_+%_per_corpse_consumed_recently"]=5198, - ["cast_speed_+%_per_frenzy_charge"]=1902, - ["cast_speed_+%_per_num_unique_spells_cast_recently"]=5190, - ["cast_speed_+%_per_power_charge"]=1359, - ["cast_speed_+%_when_on_full_life"]=1901, - ["cast_speed_+%_when_on_low_life"]=1900, - ["cast_speed_+%_while_affected_by_zealotry"]=5199, - ["cast_speed_+%_while_chilled"]=5200, - ["cast_speed_+%_while_holding_bow"]=1358, - ["cast_speed_+%_while_holding_shield"]=1356, - ["cast_speed_+%_while_holding_staff"]=1357, - ["cast_speed_+%_while_ignited"]=2838, - ["cast_speed_for_brand_skills_+%"]=5191, - ["cast_speed_for_chaos_skills_+%"]=1300, - ["cast_speed_for_cold_skills_+%"]=1284, - ["cast_speed_for_elemental_skills_+%"]=5192, - ["cast_speed_for_fire_skills_+%"]=1273, - ["cast_speed_for_lightning_skills_+%"]=1292, - ["cast_speed_for_minion_skills_+%"]=5193, - ["cast_speed_increase_from_arcane_surge_also_applies_to_move_speed"]=4325, - ["cast_speed_while_dual_wielding_+%"]=1355, - ["cast_stance_change_on_attack_from_perforate_or_lacerate"]=5201, - ["cast_summon_spectral_wolf_on_crit_with_cleave_or_reave"]=5202, - ["cast_tornado_on_attack_with_split_arrow_or_tornado_shot"]=5203, - ["cat_aspect_reserves_no_mana"]=5204, - ["cats_stealth_duration_ms_+"]=5205, - ["cause_maim_on_critical_strike_attack"]=3960, - ["caustic_and_scourge_arrow_number_of_projectiles_+%_final_from_skill"]=5206, - ["caustic_arrow_chance_to_poison_%_vs_enemies_on_caustic_ground"]=5207, - ["caustic_arrow_damage_+%"]=3575, - ["caustic_arrow_damage_over_time_+%"]=5208, - ["caustic_arrow_duration_+%"]=3821, - ["caustic_arrow_hit_damage_+%"]=5209, - ["caustic_arrow_radius_+%"]=3718, - ["caustic_arrow_withered_base_duration_ms"]=3576, - ["caustic_arrow_withered_on_hit_%"]=3576, - ["caustic_cloud_on_death_maximum_life_per_minute_to_deal_as_chaos_damage_%"]=3328, - ["celestial_footprints_from_item"]=10319, - ["chain_hook_and_shield_charge_attack_speed_+%_per_10_rampage_stacks"]=5210, - ["chain_strike_cone_radius_+_per_12_rage"]=5211, - ["chain_strike_damage_+%"]=5212, - ["chain_strike_gain_rage_on_hit_%_chance"]=5213, - ["chaining_range_+%"]=5214, - ["champion_ascendancy_nearby_allies_fortification_is_equal_to_yours"]=5215, - ["chance_%_elemental_ailments_redirected_to_nearby_minion"]=5271, - ["chance_%_to_convert_armour_to_blessed_orb"]=5216, - ["chance_%_to_convert_armour_to_cartographers_chisel"]=5217, - ["chance_%_to_convert_armour_to_chromatic_orb"]=5218, - ["chance_%_to_convert_armour_to_fusing_orb"]=5219, - ["chance_%_to_convert_armour_to_jewellers_orb"]=5220, - ["chance_%_to_convert_armour_to_orb_of_alteration"]=5221, - ["chance_%_to_convert_armour_to_orb_of_binding"]=5222, - ["chance_%_to_convert_armour_to_orb_of_horizons"]=5223, - ["chance_%_to_convert_armour_to_orb_of_scouring"]=5224, - ["chance_%_to_convert_armour_to_orb_of_unmaking"]=5225, - ["chance_%_to_convert_jewellery_to_divine_orb"]=5226, - ["chance_%_to_convert_jewellery_to_exalted_orb"]=5227, - ["chance_%_to_convert_jewellery_to_orb_of_annulment"]=5228, - ["chance_%_to_convert_weapon_to_chaos_orb"]=5229, - ["chance_%_to_convert_weapon_to_enkindling_orb"]=5230, - ["chance_%_to_convert_weapon_to_gemcutters_prism"]=5231, - ["chance_%_to_convert_weapon_to_glassblowers_bauble"]=5232, - ["chance_%_to_convert_weapon_to_instilling_orb"]=5233, - ["chance_%_to_convert_weapon_to_orb_of_regret"]=5234, - ["chance_%_to_convert_weapon_to_regal_orb"]=5235, - ["chance_%_to_convert_weapon_to_vaal_orb"]=5236, - ["chance_%_to_drop_additional_awakened_sextant"]=5237, - ["chance_%_to_drop_additional_blessed_orb"]=5238, - ["chance_%_to_drop_additional_cartographers_chisel"]=5239, - ["chance_%_to_drop_additional_chaos_orb"]=5240, - ["chance_%_to_drop_additional_chromatic_orb"]=5241, - ["chance_%_to_drop_additional_cleansing_currency"]=5272, - ["chance_%_to_drop_additional_cleansing_influenced_item"]=5273, - ["chance_%_to_drop_additional_currency"]=5274, - ["chance_%_to_drop_additional_divination_cards"]=5275, - ["chance_%_to_drop_additional_divination_cards_corrupted"]=5276, - ["chance_%_to_drop_additional_divination_cards_currency"]=5277, - ["chance_%_to_drop_additional_divination_cards_currency_basic"]=5278, - ["chance_%_to_drop_additional_divination_cards_currency_exotic"]=5279, - ["chance_%_to_drop_additional_divination_cards_currency_league"]=5280, - ["chance_%_to_drop_additional_divination_cards_gems"]=5281, - ["chance_%_to_drop_additional_divination_cards_gems_levelled"]=5282, - ["chance_%_to_drop_additional_divination_cards_gems_quality"]=5283, - ["chance_%_to_drop_additional_divination_cards_gives_other_divination_cards"]=5284, - ["chance_%_to_drop_additional_divination_cards_map"]=5285, - ["chance_%_to_drop_additional_divination_cards_map_unique"]=5286, - ["chance_%_to_drop_additional_divination_cards_unique"]=5287, - ["chance_%_to_drop_additional_divination_cards_unique_armour"]=5288, - ["chance_%_to_drop_additional_divination_cards_unique_corrupted"]=5289, - ["chance_%_to_drop_additional_divination_cards_unique_jewellery"]=5290, - ["chance_%_to_drop_additional_divination_cards_unique_weapon"]=5291, - ["chance_%_to_drop_additional_divine_orb"]=5242, - ["chance_%_to_drop_additional_eldritch_chaos_orb"]=5243, - ["chance_%_to_drop_additional_eldritch_exalted_orb"]=5244, - ["chance_%_to_drop_additional_eldritch_orb_of_annulment"]=5245, - ["chance_%_to_drop_additional_enkindling_orb"]=5246, - ["chance_%_to_drop_additional_exalted_orb"]=5247, - ["chance_%_to_drop_additional_fusing_orb"]=5248, - ["chance_%_to_drop_additional_gem"]=5292, - ["chance_%_to_drop_additional_gemcutters_prism"]=5249, - ["chance_%_to_drop_additional_glassblowers_bauble"]=5250, - ["chance_%_to_drop_additional_grand_eldritch_ember"]=5251, - ["chance_%_to_drop_additional_grand_eldritch_ichor"]=5252, - ["chance_%_to_drop_additional_greater_eldritch_ember"]=5253, - ["chance_%_to_drop_additional_greater_eldritch_ichor"]=5254, - ["chance_%_to_drop_additional_instilling_orb"]=5255, - ["chance_%_to_drop_additional_jewellers_orb"]=5256, - ["chance_%_to_drop_additional_lesser_eldritch_ember"]=5257, - ["chance_%_to_drop_additional_lesser_eldritch_ichor"]=5258, - ["chance_%_to_drop_additional_map_currency"]=5294, - ["chance_%_to_drop_additional_maps"]=5293, - ["chance_%_to_drop_additional_orb_of_alteration"]=5259, - ["chance_%_to_drop_additional_orb_of_annulment"]=5260, - ["chance_%_to_drop_additional_orb_of_binding"]=5261, - ["chance_%_to_drop_additional_orb_of_horizons"]=5262, - ["chance_%_to_drop_additional_orb_of_regret"]=5263, - ["chance_%_to_drop_additional_orb_of_scouring"]=5264, - ["chance_%_to_drop_additional_orb_of_unmaking"]=5265, - ["chance_%_to_drop_additional_regal_orb"]=5266, - ["chance_%_to_drop_additional_scarab"]=5295, - ["chance_%_to_drop_additional_scarab_abyss"]=5296, - ["chance_%_to_drop_additional_scarab_abyss_gilded"]=5297, - ["chance_%_to_drop_additional_scarab_abyss_polished"]=5298, - ["chance_%_to_drop_additional_scarab_abyss_rusted"]=5299, - ["chance_%_to_drop_additional_scarab_anarchy"]=5300, - ["chance_%_to_drop_additional_scarab_beasts"]=5301, - ["chance_%_to_drop_additional_scarab_beasts_gilded"]=5302, - ["chance_%_to_drop_additional_scarab_beasts_polished"]=5303, - ["chance_%_to_drop_additional_scarab_beasts_rusted"]=5304, - ["chance_%_to_drop_additional_scarab_betrayal"]=5305, - ["chance_%_to_drop_additional_scarab_beyond"]=5306, - ["chance_%_to_drop_additional_scarab_blight"]=5307, - ["chance_%_to_drop_additional_scarab_blight_gilded"]=5308, - ["chance_%_to_drop_additional_scarab_blight_polished"]=5309, - ["chance_%_to_drop_additional_scarab_blight_rusted"]=5310, - ["chance_%_to_drop_additional_scarab_breach"]=5311, - ["chance_%_to_drop_additional_scarab_breach_gilded"]=5312, - ["chance_%_to_drop_additional_scarab_breach_polished"]=5313, - ["chance_%_to_drop_additional_scarab_breach_rusted"]=5314, - ["chance_%_to_drop_additional_scarab_delirium"]=5315, - ["chance_%_to_drop_additional_scarab_divination"]=5316, - ["chance_%_to_drop_additional_scarab_divination_cards_gilded"]=5317, - ["chance_%_to_drop_additional_scarab_divination_cards_polished"]=5318, - ["chance_%_to_drop_additional_scarab_divination_cards_rusted"]=5319, - ["chance_%_to_drop_additional_scarab_domination"]=5320, - ["chance_%_to_drop_additional_scarab_elder_gilded"]=5321, - ["chance_%_to_drop_additional_scarab_elder_polished"]=5322, - ["chance_%_to_drop_additional_scarab_elder_rusted"]=5323, - ["chance_%_to_drop_additional_scarab_essence"]=5324, - ["chance_%_to_drop_additional_scarab_expedition"]=5325, - ["chance_%_to_drop_additional_scarab_harbinger"]=5326, - ["chance_%_to_drop_additional_scarab_harbinger_gilded"]=5327, - ["chance_%_to_drop_additional_scarab_harbinger_polished"]=5328, - ["chance_%_to_drop_additional_scarab_harbinger_rusted"]=5329, - ["chance_%_to_drop_additional_scarab_harvest"]=5330, - ["chance_%_to_drop_additional_scarab_incursion"]=5331, - ["chance_%_to_drop_additional_scarab_influence"]=5332, - ["chance_%_to_drop_additional_scarab_legion"]=5333, - ["chance_%_to_drop_additional_scarab_legion_gilded"]=5334, - ["chance_%_to_drop_additional_scarab_legion_polished"]=5335, - ["chance_%_to_drop_additional_scarab_legion_rusted"]=5336, - ["chance_%_to_drop_additional_scarab_maps"]=5337, - ["chance_%_to_drop_additional_scarab_maps_gilded"]=5338, - ["chance_%_to_drop_additional_scarab_maps_polished"]=5339, - ["chance_%_to_drop_additional_scarab_maps_rusted"]=5340, - ["chance_%_to_drop_additional_scarab_metamorph_gilded"]=5341, - ["chance_%_to_drop_additional_scarab_metamorph_polished"]=5342, - ["chance_%_to_drop_additional_scarab_metamorph_rusted"]=5343, - ["chance_%_to_drop_additional_scarab_misc"]=5344, - ["chance_%_to_drop_additional_scarab_perandus_gilded"]=5345, - ["chance_%_to_drop_additional_scarab_perandus_polished"]=5346, - ["chance_%_to_drop_additional_scarab_perandus_rusted"]=5347, - ["chance_%_to_drop_additional_scarab_ritual"]=5348, - ["chance_%_to_drop_additional_scarab_settlers"]=5349, - ["chance_%_to_drop_additional_scarab_shaper_gilded"]=5350, - ["chance_%_to_drop_additional_scarab_shaper_polished"]=5351, - ["chance_%_to_drop_additional_scarab_shaper_rusted"]=5352, - ["chance_%_to_drop_additional_scarab_strongbox"]=5353, - ["chance_%_to_drop_additional_scarab_strongbox_gilded"]=5354, - ["chance_%_to_drop_additional_scarab_strongbox_polished"]=5355, - ["chance_%_to_drop_additional_scarab_strongbox_rusted"]=5356, - ["chance_%_to_drop_additional_scarab_sulphite"]=5357, - ["chance_%_to_drop_additional_scarab_sulphite_gilded"]=5358, - ["chance_%_to_drop_additional_scarab_sulphite_polished"]=5359, - ["chance_%_to_drop_additional_scarab_sulphite_rusted"]=5360, - ["chance_%_to_drop_additional_scarab_torment"]=5361, - ["chance_%_to_drop_additional_scarab_torment_gilded"]=5362, - ["chance_%_to_drop_additional_scarab_torment_polished"]=5363, - ["chance_%_to_drop_additional_scarab_torment_rusted"]=5364, - ["chance_%_to_drop_additional_scarab_ultimatum"]=5365, - ["chance_%_to_drop_additional_scarab_uniques"]=5366, - ["chance_%_to_drop_additional_scarab_uniques_gilded"]=5367, - ["chance_%_to_drop_additional_scarab_uniques_polished"]=5368, - ["chance_%_to_drop_additional_scarab_uniques_rusted"]=5369, - ["chance_%_to_drop_additional_tangled_currency"]=5370, - ["chance_%_to_drop_additional_tangled_influenced_item"]=5371, - ["chance_%_to_drop_additional_unique"]=5372, - ["chance_%_to_drop_additional_vaal_orb"]=5267, - ["chance_%_to_drop_additional_veiled_chaos_orb"]=5268, - ["chance_%_to_return_to_full_life_on_reaching_low_life"]=5373, - ["chance_for_double_items_from_heist_chests_%"]=5269, - ["chance_for_elemental_damage_to_be_added_as_additional_chaos_damage_%"]=3437, - ["chance_for_exerted_attacks_to_not_reduce_count_%"]=5270, - ["chance_per_second_of_fire_spreading_between_enemies_%"]=1781, - ["chance_to_avoid_stun_%_aura_while_wielding_a_staff"]=3205, - ["chance_to_be_frozen_%"]=2843, - ["chance_to_be_frozen_shocked_ignited_%"]=2846, - ["chance_to_be_hindered_when_hit_by_spells_%"]=5374, - ["chance_to_be_ignited_%"]=2844, - ["chance_to_be_maimed_when_hit_%"]=5375, - ["chance_to_be_poisoned_%"]=3260, - ["chance_to_be_sapped_when_hit_%"]=5376, - ["chance_to_be_scorched_when_hit_%"]=5377, - ["chance_to_be_shocked_%"]=2845, - ["chance_to_block_attack_damage_if_not_blocked_recently_%"]=5378, - ["chance_to_block_attack_damage_if_stunned_an_enemy_recently_+%"]=5379, - ["chance_to_block_attack_damage_if_used_retaliation_recently_%"]=5380, - ["chance_to_block_attack_damage_per_5%_chance_to_block_on_equipped_shield_+%"]=5381, - ["chance_to_block_attacks_%_while_channelling"]=5382, - ["chance_to_block_spells_%_if_cast_a_spell_recently"]=5384, - ["chance_to_block_spells_%_if_damaged_by_a_hit_recently"]=5385, - ["chance_to_block_spells_%_if_used_retaliation_recently"]=5383, - ["chance_to_block_spells_%_while_affected_by_discipline"]=5386, - ["chance_to_block_spells_%_while_channelling"]=5387, - ["chance_to_counter_strike_when_hit_%"]=2727, - ["chance_to_create_consecrated_ground_on_melee_kill_%"]=5388, - ["chance_to_crush_on_hit_%"]=5389, - ["chance_to_curse_self_with_punishment_on_kill_%"]=3011, - ["chance_to_deal_double_attack_damage_%_if_attack_time_longer_than_1_second"]=5390, - ["chance_to_deal_double_damage_%"]=5393, - ["chance_to_deal_double_damage_%_if_crit_with_two_handed_melee_weapon_recently"]=5394, - ["chance_to_deal_double_damage_%_if_have_stunned_an_enemy_recently"]=5395, - ["chance_to_deal_double_damage_%_if_used_a_warcry_in_past_8_seconds"]=5396, - ["chance_to_deal_double_damage_%_per_10_intelligence"]=5397, - ["chance_to_deal_double_damage_%_per_4_rage"]=5398, - ["chance_to_deal_double_damage_%_per_500_strength"]=5399, - ["chance_to_deal_double_damage_%_while_at_least_200_strength"]=5391, - ["chance_to_deal_double_damage_%_while_focused"]=5400, - ["chance_to_deal_double_damage_+%_if_cast_vulnerability_in_past_10_seconds"]=5401, - ["chance_to_deal_double_damage_for_3_seconds_on_spell_cast_every_9_seconds"]=5392, - ["chance_to_deal_double_damage_while_affected_by_glorious_madness_%"]=10178, - ["chance_to_deal_double_damage_while_on_full_life_%"]=5402, - ["chance_to_deal_triple_damage_%_while_at_least_400_strength"]=5403, - ["chance_to_defend_with_150%_armour_%_per_5%_missing_energy_shield"]=5404, - ["chance_to_double_armour_effect_on_hit_%"]=5405, - ["chance_to_double_armour_effect_on_hit_%_per_enemy_hit_taken_recently_capped"]=5406, - ["chance_to_double_stun_duration_%"]=3451, - ["chance_to_evade_%_while_you_have_energy_shield"]=5410, - ["chance_to_evade_attacks_%"]=5407, - ["chance_to_evade_attacks_%_if_havent_been_hit_recently"]=5408, - ["chance_to_evade_attacks_%_while_affected_by_grace"]=5409, - ["chance_to_fork_extra_projectile_%"]=5411, - ["chance_to_fortify_on_melee_hit_+%"]=2165, - ["chance_to_fortify_on_melee_hit_+%_if_6_warlord_items"]=4370, - ["chance_to_fortify_on_melee_stun_%"]=5412, - ["chance_to_freeze_%_while_using_flask"]=2820, - ["chance_to_freeze_enemies_for_1_second_when_hit_%"]=5413, - ["chance_to_freeze_shock_ignite_%"]=2700, - ["chance_to_freeze_shock_ignite_%_during_flask_effect"]=4111, - ["chance_to_freeze_shock_ignite_%_while_affected_by_a_herald"]=5414, - ["chance_to_gain_200_life_on_hit_with_attacks_%"]=5415, - ["chance_to_gain_3_additional_exerted_attacks_%"]=5416, - ["chance_to_gain_adrenaline_for_2_seconds_on_leech_removed_by_filling_unreserved_life_%"]=5417, - ["chance_to_gain_arohonguis_embrace_%_on_kill"]=593, - ["chance_to_gain_elusive_when_you_block_while_dual_wielding_%"]=5418, - ["chance_to_gain_endurance_charge_on_block_%"]=2025, - ["chance_to_gain_endurance_charge_on_bow_crit_%"]=1727, - ["chance_to_gain_endurance_charge_on_crit_%"]=1724, - ["chance_to_gain_endurance_charge_on_hit_%_vs_bleeding_enemy"]=5419, - ["chance_to_gain_endurance_charge_on_melee_crit_%"]=1725, - ["chance_to_gain_endurance_charge_when_hit_%"]=2650, - ["chance_to_gain_endurance_charge_when_you_stun_enemy_%"]=5420, - ["chance_to_gain_endurance_charge_when_you_taunt_enemy_%"]=5421, - ["chance_to_gain_frenzy_charge_on_block_%"]=5423, - ["chance_to_gain_frenzy_charge_on_block_attack_%"]=5422, - ["chance_to_gain_frenzy_charge_on_killing_frozen_enemy_%"]=1728, - ["chance_to_gain_frenzy_charge_on_stun_%"]=5424, - ["chance_to_gain_hinekoras_embrace_%_on_kill"]=594, - ["chance_to_gain_kitavas_embrace_%_on_kill"]=595, - ["chance_to_gain_max_crab_stacks_when_you_would_gain_a_crab_stack_%"]=4239, - ["chance_to_gain_ngamahus_embrace_%_on_kill"]=596, - ["chance_to_gain_old_unholy_might_on_kill_for_10_seconds_%"]=5434, - ["chance_to_gain_onslaught_for_4_seconds_on_leech_removed_by_filling_unreserved_life_%"]=5425, - ["chance_to_gain_onslaught_on_flask_use_%"]=5426, - ["chance_to_gain_onslaught_on_hit_%_vs_rare_or_unique_enemy"]=5427, - ["chance_to_gain_onslaught_on_kill_%"]=2889, - ["chance_to_gain_onslaught_on_kill_for_10_seconds_%"]=5428, - ["chance_to_gain_onslaught_on_kill_for_4_seconds_%"]=3270, - ["chance_to_gain_power_charge_on_hitting_enemy_affected_by_spiders_web_%"]=5429, - ["chance_to_gain_power_charge_on_killing_frozen_enemy_%"]=1729, - ["chance_to_gain_power_charge_on_melee_stun_%"]=2669, - ["chance_to_gain_power_charge_on_rare_or_unique_enemy_hit_%"]=5430, - ["chance_to_gain_power_charge_on_stun_%"]=2670, - ["chance_to_gain_power_charge_when_block_%"]=2029, - ["chance_to_gain_ramakos_embrace_%_on_kill"]=597, - ["chance_to_gain_random_curse_when_hit_%_per_10_levels"]=2662, - ["chance_to_gain_random_standard_charge_on_hit_%"]=5431, - ["chance_to_gain_rongokurais_embrace_%_on_kill"]=598, - ["chance_to_gain_skill_cost_as_mana_when_paid_%"]=5432, - ["chance_to_gain_tasalios_embrace_%_on_kill"]=599, - ["chance_to_gain_tawhoas_embrace_%_on_kill"]=600, - ["chance_to_gain_tukohamas_embrace_%_on_kill"]=601, - ["chance_to_gain_unholy_might_on_block_%"]=2941, - ["chance_to_gain_unholy_might_on_block_ms"]=2941, - ["chance_to_gain_unholy_might_on_crit_for_4_seconds_%"]=5433, - ["chance_to_gain_unholy_might_on_kill_for_3_seconds_%"]=3267, - ["chance_to_gain_unholy_might_on_kill_for_4_seconds_%"]=3268, - ["chance_to_gain_unholy_might_on_melee_kill_%"]=2973, - ["chance_to_gain_vaal_soul_on_enemy_shatter_%"]=2999, - ["chance_to_gain_vaal_soul_on_kill_%"]=2994, - ["chance_to_gain_valakos_embrace_%_on_kill"]=602, - ["chance_to_grant_endurance_charge_to_nearby_allies_on_hit_%"]=5435, - ["chance_to_grant_frenzy_charge_to_nearby_allies_on_hit_%"]=3275, - ["chance_to_grant_frenzy_charge_to_nearby_allies_on_kill_%"]=5436, - ["chance_to_grant_nearby_enemies_old_unholy_might_on_kill_%"]=3273, - ["chance_to_grant_nearby_enemies_onslaught_on_kill_%"]=3272, - ["chance_to_grant_power_charge_on_shocking_chilled_enemy_%"]=5437, - ["chance_to_grant_power_charge_to_nearby_allies_on_kill_%"]=3274, - ["chance_to_ignite_%_while_ignited"]=2839, - ["chance_to_ignite_%_while_using_flask"]=2819, - ["chance_to_ignite_freeze_shock_and_poison_+%_vs_cursed_enemies"]=5438, - ["chance_to_ignore_hexproof_%"]=5439, - ["chance_to_inflict_additional_impale_%"]=5440, - ["chance_to_inflict_brittle_on_enemy_on_block_%"]=5441, - ["chance_to_inflict_cold_exposure_on_hit_with_cold_damage_%"]=5442, - ["chance_to_inflict_fire_exposure_on_hit_with_fire_damage_%"]=5443, - ["chance_to_inflict_frostburn_%"]=1931, - ["chance_to_inflict_lightning_exposure_on_hit_with_lightning_damage_%"]=5444, - ["chance_to_inflict_sap_on_enemy_on_block_%"]=5445, - ["chance_to_inflict_sapped_%"]=1935, - ["chance_to_inflict_scorch_on_enemy_on_block_%"]=5446, - ["chance_to_intimidate_nearby_enemies_on_melee_kill_%"]=5447, - ["chance_to_intimidate_on_hit_%"]=5448, - ["chance_to_leave_2_ground_blades_%"]=5449, - ["chance_to_not_gain_tincture_toxicity_%"]=5450, - ["chance_to_place_an_additional_mine_%"]=3435, - ["chance_to_poison_%_vs_cursed_enemies"]=4093, - ["chance_to_poison_on_critical_strike_with_bow_%"]=1361, - ["chance_to_poison_on_critical_strike_with_dagger_%"]=1362, - ["chance_to_poison_on_hit_%_per_power_charge"]=5451, - ["chance_to_poison_on_hit_with_attacks_%"]=3065, - ["chance_to_poison_on_melee_hit_%"]=4144, - ["chance_to_remove_1_tincture_toxicity_on_kill_%"]=5452, - ["chance_to_sap_%_vs_enemies_in_chilling_areas"]=5453, - ["chance_to_scorch_%"]=1928, - ["chance_to_shock_%_while_using_flask"]=2821, - ["chance_to_shock_chilled_enemies_%"]=5454, - ["chance_to_start_energy_shield_recharge_%_on_linking_target"]=5455, - ["chance_to_summon_two_totems_%"]=5456, - ["chance_to_taunt_on_hit_%"]=3320, - ["chance_to_throw_4_additional_traps_%"]=5457, - ["chance_to_trigger_socketed_bow_skill_on_bow_attack_%"]=678, - ["chance_to_trigger_socketed_spell_on_bow_attack_%"]=486, - ["chance_to_unnerve_on_hit_%"]=5458, - ["chance_to_unnerve_on_hit_with_spells_%"]=5459, - ["channelled_skill_damage_+%"]=5460, - ["channelled_skill_damage_+%_per_10_devotion"]=5461, - ["chaos_critical_strike_chance_+%"]=1393, - ["chaos_critical_strike_multiplier_+"]=1418, - ["chaos_damage_%_taken_from_mana_before_life"]=5468, - ["chaos_damage_+%"]=1293, - ["chaos_damage_+%_per_100_max_mana_up_to_80"]=5469, - ["chaos_damage_+%_per_equipped_corrupted_item"]=2989, - ["chaos_damage_+%_per_level"]=2873, - ["chaos_damage_+%_while_affected_by_herald_of_agony"]=5470, - ["chaos_damage_can_chill"]=2766, - ["chaos_damage_can_freeze"]=2767, - ["chaos_damage_can_ignite_chill_and_shock"]=2785, - ["chaos_damage_can_shock"]=2768, - ["chaos_damage_cannot_poison"]=2786, - ["chaos_damage_chance_to_poison_%"]=2927, - ["chaos_damage_does_not_bypass_energy_shield"]=2410, - ["chaos_damage_does_not_bypass_energy_shield_while_not_low_life"]=5462, - ["chaos_damage_over_time_+%"]=1123, - ["chaos_damage_over_time_heals_while_leeching_life"]=5464, - ["chaos_damage_over_time_multiplier_+_per_4_chaos_resistance"]=5465, - ["chaos_damage_over_time_multiplier_+_while_affected_by_malevolence"]=1167, - ["chaos_damage_over_time_multiplier_+_with_attacks"]=1170, - ["chaos_damage_per_minute_while_affected_by_flask"]=5467, - ["chaos_damage_poisons"]=2926, - ["chaos_damage_resistance_%_per_endurance_charge"]=5471, - ["chaos_damage_resistance_%_per_poison_stack"]=5473, - ["chaos_damage_resistance_%_when_on_low_life"]=2455, - ["chaos_damage_resistance_%_when_stationary"]=5474, - ["chaos_damage_resistance_%_while_affected_by_herald_of_agony"]=5475, - ["chaos_damage_resistance_%_while_affected_by_purity_of_elements"]=5476, - ["chaos_damage_resistance_is_doubled"]=5472, - ["chaos_damage_resisted_by_highest_resistance"]=5477, - ["chaos_damage_resisted_by_lowest_resistance"]=5478, - ["chaos_damage_taken_+"]=2736, - ["chaos_damage_taken_+%"]=2144, - ["chaos_damage_taken_over_time_+%"]=1851, - ["chaos_damage_taken_over_time_+%_while_in_caustic_cloud"]=5479, - ["chaos_damage_to_return_to_melee_attacker"]=2107, - ["chaos_damage_to_return_when_hit"]=2112, - ["chaos_damage_with_attack_skills_+%"]=5480, - ["chaos_damage_with_spell_skills_+%"]=5481, - ["chaos_dot_multiplier_+"]=1168, - ["chaos_golem_damage_+%"]=3584, - ["chaos_golem_elemental_resistances_%"]=3874, - ["chaos_golem_impale_on_hit_if_same_number_of_summoned_stone_golems"]=5482, - ["chaos_hit_and_dot_damage_%_taken_as_fire"]=5483, - ["chaos_hit_and_dot_damage_%_taken_as_lightning"]=5484, - ["chaos_immunity"]=2068, - ["chaos_inoculation_keystone_energy_shield_+%_final"]=2094, - ["chaos_non_ailment_damage_over_time_multiplier_+"]=1169, - ["chaos_resistance_%_for_you_and_allies_affected_by_your_auras"]=3954, - ["chaos_resistance_+_while_using_flask"]=3191, - ["chaos_skill_chance_to_hinder_on_hit_%"]=5485, - ["chaos_skill_chance_to_ignite_%"]=5486, - ["chaos_skill_effect_duration_+%"]=1801, - ["chaos_skill_gem_level_+"]=5487, - ["chaos_skill_gem_level_+_if_6_hunter_items"]=4371, - ["chaos_skills_area_of_effect_+%"]=5488, - ["chaos_spell_skill_gem_level_+"]=1519, - ["chaos_weakness_ignores_hexproof"]=2501, - ["chaos_weakness_mana_reservation_+%"]=3931, - ["charge_duration_+%"]=2921, - ["charged_attack_damage_+%"]=4026, - ["charged_attack_radius_+%"]=4033, - ["charged_dash_area_of_effect_radius_+_of_final_explosion"]=3737, - ["charged_dash_damage_+%"]=3619, - ["charged_dash_movement_speed_+%_final"]=5489, - ["charges_gained_+%"]=2084, - ["chest_drop_additional_corrupted_item_divination_cards"]=5490, - ["chest_drop_additional_currency_item_divination_cards"]=5491, - ["chest_drop_additional_divination_cards_from_current_world_area"]=5492, - ["chest_drop_additional_divination_cards_from_same_set"]=5493, - ["chest_drop_additional_unique_item_divination_cards"]=5494, - ["chest_item_quantity_+%"]=1500, - ["chest_item_rarity_+%"]=1506, - ["chest_number_of_additional_pirate_uniques_to_drop"]=5495, - ["chest_trap_defuse_%"]=1813, - ["chieftain_body_armour_supported_by_level_x_ancestral_call"]=547, - ["chieftain_body_armour_supported_by_level_x_fist_of_war"]=548, - ["chieftain_burning_damage_+%_final"]=1929, - ["chill_and_freeze_duration_+%"]=5496, - ["chill_and_freeze_duration_based_on_%_energy_shield"]=2491, - ["chill_attackers_for_4_seconds_on_block_%_chance"]=5497, - ["chill_duration_+%"]=1761, - ["chill_effect_+%"]=5500, - ["chill_effect_+%_while_mana_leeching"]=5498, - ["chill_effect_+%_with_critical_strikes"]=5501, - ["chill_effect_is_reversed"]=5499, - ["chill_effectiveness_on_self_+%"]=1550, - ["chill_enemy_when_hit_duration_ms"]=3030, - ["chill_minimum_slow_%"]=4324, - ["chill_minimum_slow_%_from_mastery"]=5502, - ["chill_nearby_enemies_when_you_focus"]=5503, - ["chill_on_you_proliferates_to_nearby_enemies_within_x_radius"]=3511, - ["chill_prevention_ms_when_chilled"]=2791, - ["chilled_ground_effect_+%"]=5504, - ["chilled_ground_effect_on_self_+%"]=2050, - ["chilled_ground_on_freeze_%_chance_for_3_seconds"]=3297, - ["chilled_ground_when_hit_with_attack_%"]=5505, - ["chilled_monsters_take_+%_burning_damage"]=2665, - ["chilled_while_bleeding"]=5506, - ["chilled_while_poisoned"]=5507, - ["chilling_areas_also_grant_curse_effect_+%"]=5508, - ["chilling_areas_also_grant_lightning_damage_taken_+%"]=5509, - ["chills_from_your_hits_cause_shattering"]=5510, - ["chronomancer_reserves_no_mana"]=5511, - ["circle_of_power_critical_strike_chance_+%_per_stage"]=5512, - ["circle_of_power_max_added_lightning_per_stage"]=5513, - ["circle_of_power_min_added_lightning_per_stage"]=5513, - ["circle_of_power_upgrade_cost_+%"]=5514, - ["clarity_mana_reservation_+%"]=3919, - ["clarity_mana_reservation_efficiency_+%"]=5516, - ["clarity_mana_reservation_efficiency_-2%_per_1"]=5515, - ["clarity_reserves_no_mana"]=5517, - ["claw_accuracy_rating"]=1909, - ["claw_accuracy_rating_+%"]=1348, - ["claw_ailment_damage_+%"]=1224, - ["claw_attack_speed_+%"]=1330, - ["claw_critical_strike_chance_+%"]=1374, - ["claw_critical_strike_multiplier_+"]=1406, - ["claw_damage_+%"]=1221, - ["claw_damage_+%_while_on_low_life"]=5519, - ["claw_damage_against_enemies_on_low_life_+%"]=5518, - ["claw_hit_and_ailment_damage_+%"]=1222, - ["claw_or_dagger_ailment_damage_+%"]=1261, - ["claw_or_dagger_hit_and_ailment_damage_+%"]=1260, - ["claw_steal_power_frenzy_endurance_charges_on_hit_%"]=2847, - ["cleave_+1_base_radius_per_nearby_enemy_up_to_10"]=5521, - ["cleave_attack_speed_+%"]=3738, - ["cleave_damage_+%"]=3516, - ["cleave_fortify_on_hit"]=5520, - ["cleave_radius_+%"]=3692, - ["close_range_enemies_avoid_your_projectiles"]=9001, - ["cluster_burst_spawn_amount"]=3997, - ["cobra_lash_and_venom_gyre_bleeding_damage_+100%_final_chance"]=5522, - ["cobra_lash_and_venom_gyre_skill_physical_damage_%_to_convert_to_chaos"]=5523, - ["cobra_lash_damage_+%"]=5524, - ["cobra_lash_number_of_additional_chains"]=5525, - ["cobra_lash_projectile_speed_+%"]=5526, - ["cold_ailment_duration_+%"]=5527, - ["cold_ailment_effect_+%"]=5529, - ["cold_ailment_effect_+%_against_shocked_enemies"]=5528, - ["cold_ailments_effect_+%_final_if_hit_highest_cold"]=5530, - ["cold_and_chaos_damage_resistance_%"]=5531, - ["cold_and_lightning_damage_resistance_%"]=2699, - ["cold_and_lightning_hit_and_dot_damage_%_taken_as_fire_while_affected_by_purity_of_fire"]=5532, - ["cold_attack_damage_+%"]=1110, - ["cold_attack_damage_+%_while_holding_a_shield"]=1113, - ["cold_axe_damage_+%"]=1214, - ["cold_bow_damage_+%"]=1244, - ["cold_claw_damage_+%"]=1226, - ["cold_critical_strike_chance_+%"]=1391, - ["cold_critical_strike_multiplier_+"]=1416, - ["cold_dagger_damage_+%"]=1232, - ["cold_damage_%_to_add_as_chaos"]=1843, - ["cold_damage_%_to_add_as_chaos_per_frenzy_charge"]=5537, - ["cold_damage_%_to_add_as_fire"]=1842, - ["cold_damage_%_to_add_as_fire_per_1%_chill_effect_on_enemy"]=5533, - ["cold_damage_%_to_add_as_fire_vs_frozen_enemies"]=5534, - ["cold_damage_+%"]=1274, - ["cold_damage_+%_if_you_have_used_a_fire_skill_recently"]=5538, - ["cold_damage_+%_per_1%_block_chance"]=3471, - ["cold_damage_+%_per_25_dexterity"]=5539, - ["cold_damage_+%_per_25_intelligence"]=5540, - ["cold_damage_+%_per_25_strength"]=5541, - ["cold_damage_+%_per_cold_resistance_above_75"]=5535, - ["cold_damage_+%_per_frenzy_charge"]=5542, - ["cold_damage_+%_per_missing_cold_resistance"]=5543, - ["cold_damage_+%_while_affected_by_hatred"]=5544, - ["cold_damage_+%_while_affected_by_herald_of_ice"]=5545, - ["cold_damage_+%_while_off_hand_is_empty"]=5546, - ["cold_damage_can_ignite"]=2769, - ["cold_damage_can_shock"]=2770, - ["cold_damage_cannot_chill"]=2784, - ["cold_damage_cannot_freeze"]=2783, - ["cold_damage_over_time_+%"]=1122, - ["cold_damage_over_time_multiplier_+_per_4%_overcapped_cold_resistance"]=5536, - ["cold_damage_over_time_multiplier_+_while_affected_by_malevolence"]=1164, - ["cold_damage_resistance_%_while_affected_by_herald_of_ice"]=5547, - ["cold_damage_resistance_+%"]=1539, - ["cold_damage_resistance_is_%"]=1536, - ["cold_damage_taken_%_as_fire"]=3068, - ["cold_damage_taken_%_as_lightning"]=3069, - ["cold_damage_taken_+"]=5549, - ["cold_damage_taken_+%"]=3279, - ["cold_damage_taken_+%_if_have_been_hit_recently"]=5550, - ["cold_damage_taken_goes_to_life_over_4_seconds_%"]=5548, - ["cold_damage_taken_per_minute_per_frenzy_charge_while_moving"]=10179, - ["cold_damage_to_return_to_melee_attacker"]=2104, - ["cold_damage_to_return_when_hit"]=2110, - ["cold_damage_while_dual_wielding_+%"]=1189, - ["cold_damage_with_attack_skills_+%"]=5551, - ["cold_damage_with_spell_skills_+%"]=5552, - ["cold_dot_multiplier_+"]=1165, - ["cold_exposure_on_hit_magnitude"]=5553, - ["cold_exposure_you_inflict_applies_extra_cold_resistance_+%"]=5554, - ["cold_hit_and_dot_damage_%_taken_as_fire"]=5555, - ["cold_hit_and_dot_damage_%_taken_as_lightning"]=5556, - ["cold_hit_damage_+%_vs_shocked_enemies"]=5557, - ["cold_mace_damage_+%"]=1238, - ["cold_penetration_%_vs_chilled_enemies"]=5558, - ["cold_projectile_mine_critical_multiplier_+"]=5559, - ["cold_projectile_mine_damage_+%"]=5560, - ["cold_projectile_mine_throwing_speed_+%"]=5562, - ["cold_projectile_mine_throwing_speed_negated_+%"]=5561, - ["cold_reflect_damage_taken_+%_while_affected_by_purity_of_ice"]=5563, - ["cold_resistance_cannot_be_penetrated"]=5564, - ["cold_skill_chance_to_inflict_cold_exposure_%"]=5565, - ["cold_skill_gem_level_+"]=5566, - ["cold_skill_gem_level_+_if_6_redeemer_items"]=4372, - ["cold_skills_chance_to_poison_on_hit_%"]=5567, - ["cold_snap_cooldown_speed_+%"]=3762, - ["cold_snap_damage_+%"]=3590, - ["cold_snap_gain_power_charge_on_kill_%"]=3150, - ["cold_snap_radius_+%"]=3719, - ["cold_snap_uses_and_gains_power_charges_instead_of_frenzy"]=5568, - ["cold_spell_physical_damage_%_to_convert_to_cold"]=5569, - ["cold_spell_skill_gem_level_+"]=1517, - ["cold_staff_damage_+%"]=1220, - ["cold_sword_damage_+%"]=1251, - ["cold_wand_damage_+%"]=1257, - ["cold_weakness_ignores_hexproof"]=2502, - ["combust_area_of_effect_+%"]=5570, - ["combust_is_disabled"]=5571, - ["conductivity_curse_effect_+%"]=3896, - ["conductivity_duration_+%"]=3803, - ["conductivity_mana_reservation_+%"]=3932, - ["conductivity_no_reservation"]=5572, - ["consecrate_ground_for_3_seconds_when_hit_%"]=3440, - ["consecrate_ground_on_kill_%_for_3_seconds"]=3298, - ["consecrate_ground_on_shatter_%_chance_for_3_seconds"]=4013, - ["consecrate_on_block_%_chance_to_create"]=2473, - ["consecrate_on_crit_%_chance_to_create"]=2538, - ["consecrated_ground_additional_physical_damage_reduction_%"]=5573, - ["consecrated_ground_allies_recover_es_as_well_as_life_from_life_regeneration"]=5574, - ["consecrated_ground_area_+%"]=5575, - ["consecrated_ground_damaging_ailment_duration_on_self_+%"]=5576, - ["consecrated_ground_effect_+%"]=5577, - ["consecrated_ground_effect_lingers_for_ms_after_leaving_the_area_while_affected_by_zealotry"]=5582, - ["consecrated_ground_enemy_damage_taken_+%"]=5578, - ["consecrated_ground_enemy_damage_taken_+%_while_affected_by_zealotry"]=5579, - ["consecrated_ground_immune_to_curses"]=5580, - ["consecrated_ground_immune_to_status_ailments"]=5581, - ["consecrated_ground_on_death"]=5583, - ["consecrated_ground_on_hit"]=5584, - ["consecrated_ground_radius_on_hit_enemy_magic_rare_unique_every_3_seconds"]=5585, - ["consecrated_ground_while_stationary_radius"]=5586, - ["consecrated_ground_while_stationary_radius_if_2_crusader_items"]=4333, - ["consecrated_ground_while_stationary_radius_if_highest_attribute_is_strength"]=5587, - ["consecrated_path_and_purifying_flame_create_profane_ground_instead_of_consecrated_ground"]=5588, - ["consecrated_path_and_purifying_flame_skill_fire_damage_%_to_convert_to_chaos"]=5589, - ["consecrated_path_area_of_effect_+%"]=5590, - ["consecrated_path_damage_+%"]=5591, - ["consume_all_impales_remaining_hits_on_hit_%_chance"]=5592, - ["consume_nearby_corpse_every_3_seconds_to_recover_%_maximum_life"]=5593, - ["contagion_damage_+%"]=3615, - ["contagion_display_spread_on_death"]=5594, - ["contagion_duration_+%"]=3808, - ["contagion_radius_+%"]=3725, - ["contagion_spread_on_hit_affected_enemy_%"]=5594, - ["conversation_trap_converted_enemy_damage_+%"]=5595, - ["conversion_trap_converted_enemies_chance_to_taunt_on_hit_%"]=5596, - ["conversion_trap_cooldown_speed_+%"]=3775, - ["convert_all_elemental_damage_to_chaos"]=5597, - ["convert_all_physical_damage_to_fire"]=2077, - ["converted_enemies_damage_+%"]=3610, - ["convocation_buff_effect_+%"]=3909, - ["convocation_cooldown_speed_+%"]=3763, - ["cooldown_recovery_+%_if_cast_temporal_chains_in_past_10_seconds"]=5598, - ["cooldown_recovery_+%_per_power_charge"]=5599, - ["cooldown_speed_+%_per_brand_up_to_40%"]=5600, - ["corpse_erruption_base_maximum_number_of_geyers"]=5601, - ["corpse_eruption_cast_speed_+%"]=5602, - ["corpse_eruption_damage_+%"]=5603, - ["corpse_warp_cast_speed_+%"]=5604, - ["corpse_warp_damage_+%"]=5605, - ["corpses_drop_loot_again_on_warcry_chance_%"]=5606, - ["corrosive_shroud_%_of_stored_poison_damage_to_deal_per_second"]=5607, - ["corrosive_shroud_poison_dot_multiplier_+_while_aura_active"]=5608, - ["corrupted_gem_experience_gain_+%"]=3001, - ["corrupting_fever_apply_additional_corrupted_blood_%"]=5609, - ["corrupting_fever_damage_+%"]=5610, - ["corrupting_fever_duration_+%"]=5611, - ["count_as_blocking_attack_from_shield_attack_first_target"]=5612, - ["count_as_having_max_endurance_charges"]=5613, - ["count_as_having_max_endurance_frenzy_power_charges"]=5614, - ["count_as_having_max_frenzy_charges"]=5615, - ["count_as_having_max_power_charges"]=5616, - ["counter_attacks_maximum_added_cold_damage"]=4090, - ["counter_attacks_maximum_added_physical_damage"]=4083, - ["counter_attacks_minimum_added_cold_damage"]=4090, - ["counter_attacks_minimum_added_physical_damage"]=4083, - ["counterattacks_cooldown_recovery_+%"]=5617, - ["counterattacks_deal_double_damage"]=5618, - ["counterattacks_debilitate_for_1_second_on_hit_%_chance"]=5619, - ["cover_in_ash_for_x_seconds_when_igniting_enemy"]=5620, - ["cover_in_ash_on_hit_%"]=5621, - ["cover_in_ash_on_hit_%_while_you_are_burning"]=5622, - ["cover_in_frost_for_x_seconds_when_freezing_enemy"]=5623, - ["cover_in_frost_on_hit"]=5624, - ["cover_in_frost_on_hit_%"]=5625, - ["crab_aspect_crab_barrier_max_+"]=4234, - ["crackling_lance_cast_speed_+%"]=5627, - ["crackling_lance_damage_+%"]=5628, - ["create_additional_brand_%_chance"]=5629, - ["create_blighted_spore_on_killing_rare_enemy"]=5630, - ["create_consecrated_ground_on_hit_%_vs_rare_or_unique_enemy"]=5631, - ["create_consecrated_ground_on_kill_%"]=5632, - ["create_enemy_meteor_daemon_on_flask_use_%_chance"]=5633, - ["create_fungal_ground_instead_of_consecrated_ground"]=5634, - ["create_herald_of_thunder_storm_on_shocking_enemy"]=5635, - ["create_profane_ground_instead_of_consecrated_ground"]=5636, - ["create_smoke_cloud_on_kill_%_chance"]=5637, - ["creeping_frost_cold_snap_all_damage_can_sap"]=5638, - ["creeping_frost_cold_snap_chance_to_sap_%_vs_enemies_in_chilling_areas"]=5639, - ["cremation_base_fires_projectile_every_x_ms"]=5640, - ["critical_ailment_dot_multiplier_+"]=1153, - ["critical_bleeding_dot_multiplier_+"]=1158, - ["critical_ignite_dot_multiplier_+"]=1161, - ["critical_multiplier_+%_per_10_max_es_on_shield"]=5642, - ["critical_poison_dot_multiplier_+"]=1171, - ["critical_strike_%_chance_to_deal_double_damage"]=5704, - ["critical_strike_chance_+%"]=1367, - ["critical_strike_chance_+%_against_enemies_on_consecrated_ground_while_affected_by_zealotry"]=5649, - ["critical_strike_chance_+%_during_any_flask_effect"]=5650, - ["critical_strike_chance_+%_final_while_affected_by_precision"]=5643, - ["critical_strike_chance_+%_final_while_unhinged"]=5651, - ["critical_strike_chance_+%_for_4_seconds_on_kill"]=3341, - ["critical_strike_chance_+%_for_forking_arrows"]=4188, - ["critical_strike_chance_+%_for_spells_if_you_have_killed_recently"]=5652, - ["critical_strike_chance_+%_if_enemy_killed_recently"]=5653, - ["critical_strike_chance_+%_if_have_been_shocked_recently"]=5654, - ["critical_strike_chance_+%_if_have_not_crit_recently"]=5655, - ["critical_strike_chance_+%_if_havent_blocked_recently"]=5656, - ["critical_strike_chance_+%_if_not_gained_power_charge_recently"]=5657, - ["critical_strike_chance_+%_per_10_strength"]=5658, - ["critical_strike_chance_+%_per_25_intelligence"]=5659, - ["critical_strike_chance_+%_per_8_strength"]=2836, - ["critical_strike_chance_+%_per_blitz_charge"]=5660, - ["critical_strike_chance_+%_per_brand"]=5661, - ["critical_strike_chance_+%_per_endurance_charge"]=5662, - ["critical_strike_chance_+%_per_frenzy_charge"]=5663, - ["critical_strike_chance_+%_per_intensity"]=5664, - ["critical_strike_chance_+%_per_level"]=2858, - ["critical_strike_chance_+%_per_lightning_adaptation"]=4304, - ["critical_strike_chance_+%_per_mine_detonated_recently_up_to_100%"]=5665, - ["critical_strike_chance_+%_per_power_charge"]=3056, - ["critical_strike_chance_+%_per_righteous_charge"]=5666, - ["critical_strike_chance_+%_per_stackable_unique_jewel"]=4044, - ["critical_strike_chance_+%_vs_bleeding_enemies"]=3080, - ["critical_strike_chance_+%_vs_blinded_enemies"]=3296, - ["critical_strike_chance_+%_vs_enemies_with_elemental_status_ailments"]=3942, - ["critical_strike_chance_+%_vs_enemies_with_lightning_exposure"]=5644, - ["critical_strike_chance_+%_vs_enemies_without_elemental_status_ailments"]=3417, - ["critical_strike_chance_+%_vs_marked_enemy"]=5667, - ["critical_strike_chance_+%_vs_poisoned_enemies"]=3182, - ["critical_strike_chance_+%_vs_shocked_enemies"]=5641, - ["critical_strike_chance_+%_vs_taunted_enemies"]=5668, - ["critical_strike_chance_+%_when_in_main_hand"]=4069, - ["critical_strike_chance_+%_while_affected_by_wrath"]=5669, - ["critical_strike_chance_+%_while_channelling"]=5670, - ["critical_strike_chance_+%_while_you_have_avatar_of_fire"]=10311, - ["critical_strike_chance_+%_while_you_have_depleted_physical_aegis"]=5674, - ["critical_strike_chance_+%_with_at_least_200_int"]=4249, - ["critical_strike_chance_against_cursed_enemies_+%"]=5645, - ["critical_strike_chance_against_enemies_on_full_life_+%"]=3653, - ["critical_strike_chance_increased_by_lightning_resistance"]=5646, - ["critical_strike_chance_increased_by_overcapped_lightning_resistance"]=5647, - ["critical_strike_chance_increased_by_spell_suppression_chance"]=5648, - ["critical_strike_chance_while_dual_wielding_+%"]=1388, - ["critical_strike_chance_while_wielding_shield_+%"]=1381, - ["critical_strike_damage_cannot_be_reflected"]=5675, - ["critical_strike_multiplier_+%_if_cast_enfeeble_in_past_10_seconds"]=5702, - ["critical_strike_multiplier_+%_with_claws_daggers"]=5703, - ["critical_strike_multiplier_+_during_any_flask_effect"]=5680, - ["critical_strike_multiplier_+_for_spells_if_you_havent_killed_recently"]=5681, - ["critical_strike_multiplier_+_if_crit_with_a_herald_skill_recently"]=5682, - ["critical_strike_multiplier_+_if_dexterity_higher_than_intelligence"]=5683, - ["critical_strike_multiplier_+_if_enemy_killed_recently"]=5684, - ["critical_strike_multiplier_+_if_enemy_shattered_recently"]=5685, - ["critical_strike_multiplier_+_if_gained_power_charge_recently"]=5686, - ["critical_strike_multiplier_+_if_have_dealt_non_crit_recently"]=5676, - ["critical_strike_multiplier_+_if_have_not_dealt_critical_strike_recently"]=5687, - ["critical_strike_multiplier_+_if_rare_or_unique_enemy_nearby"]=5688, - ["critical_strike_multiplier_+_if_taken_a_savage_hit_recently"]=5689, - ["critical_strike_multiplier_+_if_you_have_blocked_recently"]=5690, - ["critical_strike_multiplier_+_if_youve_been_channelling_for_at_least_1_second"]=5691, - ["critical_strike_multiplier_+_per_1%_block_chance"]=3079, - ["critical_strike_multiplier_+_per_mine_detonated_recently_up_to_40"]=5692, - ["critical_strike_multiplier_+_per_power_charge"]=3172, - ["critical_strike_multiplier_+_vs_bleeding_enemies"]=3077, - ["critical_strike_multiplier_+_vs_burning_enemies"]=3078, - ["critical_strike_multiplier_+_vs_enemies_affected_by_elemental_status_ailment"]=3443, - ["critical_strike_multiplier_+_vs_stunned_enemies"]=5677, - ["critical_strike_multiplier_+_vs_taunted_enemies"]=5693, - ["critical_strike_multiplier_+_vs_unique_enemies"]=5694, - ["critical_strike_multiplier_+_while_affected_by_anger"]=5695, - ["critical_strike_multiplier_+_while_affected_by_precision"]=5696, - ["critical_strike_multiplier_+_while_have_any_frenzy_charges"]=1955, - ["critical_strike_multiplier_+_with_herald_skills"]=5700, - ["critical_strike_multiplier_for_arrows_that_pierce_+"]=5678, - ["critical_strike_multiplier_is_100"]=1422, - ["critical_strike_multiplier_is_300"]=5679, - ["critical_strike_multiplier_vs_enemies_on_full_life_+"]=3323, - ["critical_strike_multiplier_while_dual_wielding_+"]=1410, - ["critical_strike_multiplier_with_dagger_+"]=1400, - ["critical_strikes_always_knockback_shocked_enemies"]=5705, - ["critical_strikes_deal_no_damage"]=5706, - ["critical_strikes_do_not_always_apply_non_damaging_ailments"]=5707, - ["critical_strikes_do_not_always_freeze"]=1932, - ["critical_strikes_do_not_always_ignite"]=5708, - ["critical_strikes_ignore_elemental_resistances"]=3339, - ["critical_strikes_on_you_do_not_always_inflict_elemental_ailments"]=5709, - ["critical_strikes_penetrates_%_elemental_resistances_while_affected_by_zealotry"]=5710, - ["critical_support_gem_level_+"]=5711, - ["crits_have_culling_strike"]=3327, - ["cruelty_effect_+%"]=5712, - ["crush_for_2_seconds_on_hit_%_chance"]=5713, - ["crush_on_hit_ms_vs_full_life_enemies"]=5714, - ["culling_strike_on_burning_enemies"]=2733, - ["culling_strike_on_enemies_affected_by_poachers_mark"]=5715, - ["culling_strike_on_frozen_enemies"]=5716, - ["culling_strike_vs_cursed_enemies"]=5717, - ["culling_strike_vs_marked_enemy"]=5718, + ["%_chance_to_blind_on_critical_strike"]=4209, + ["%_chance_to_blind_on_critical_strike_while_you_have_cats_stealth"]=4292, + ["%_chance_to_cause_bleeding_enemies_to_flee_on_hit"]=3733, + ["%_chance_to_create_smoke_cloud_on_mine_or_trap_creation"]=4007, + ["%_chance_to_deal_150%_area_damage_+%_final"]=9414, + ["%_chance_to_duplicate_dropped_currency"]=9415, + ["%_chance_to_duplicate_dropped_divination_cards"]=9416, + ["%_chance_to_duplicate_dropped_maps"]=9417, + ["%_chance_to_duplicate_dropped_scarabs"]=9418, + ["%_chance_to_duplicate_dropped_uniques"]=9419, + ["%_chance_to_gain_100%_non_chaos_damage_to_add_as_chaos_damage"]=4290, + ["%_chance_to_gain_25%_non_chaos_damage_to_add_as_chaos_damage"]=4288, + ["%_chance_to_gain_50%_non_chaos_damage_to_add_as_chaos_damage"]=4289, + ["%_chance_to_gain_endurance_charge_each_second_while_channelling"]=9420, + ["%_chance_to_gain_endurance_charge_on_trap_triggered_by_an_enemy"]=3533, + ["%_chance_to_gain_frenzy_charge_on_trap_triggered_by_an_enemy"]=3532, + ["%_chance_to_gain_power_charge_on_hit_against_enemies_on_full_life"]=4005, + ["%_chance_to_gain_power_charge_on_mine_detonated_targeting_an_enemy"]=2065, + ["%_chance_to_gain_power_charge_on_placing_a_totem"]=3989, + ["%_chance_to_gain_power_charge_on_trap_triggered_by_an_enemy"]=2064, + ["%_chance_to_gain_random_charge_on_trap_triggered_by_an_enemy"]=9421, + ["%_maximum_es_and_life_taken_as_fire_damage_per_minute_per_level_while_in_her_embrace"]=9422, + ["%_number_of_raging_spirits_allowed"]=9423, + ["%_physical_damage_bypasses_energy_shield"]=9424, + ["+1_max_charged_attack_stages"]=9490, + ["X_accuracy_per_2_intelligence"]=1953, + ["X_armour_if_you_have_blocked_recently"]=4429, + ["X_armour_per_active_totem"]=4430, + ["X_armour_per_stackable_unique_jewel"]=4088, + ["X_life_per_4_dexterity"]=1954, + ["X_mana_per_4_strength"]=1955, + ["X_mana_per_dexterity"]=4431, + ["X_mana_per_stackable_unique_jewel"]=4087, + ["X_to_armour_per_2_strength"]=4432, + ["absolution_cast_speed_+%"]=4434, + ["absolution_duration_+%"]=4435, + ["absolution_minion_area_of_effect_+%"]=4436, + ["abyssal_cry_damage_+%"]=3656, + ["abyssal_cry_duration_+%"]=3853, + ["accuracy_rating"]=1368, + ["accuracy_rating_+%"]=1369, + ["accuracy_rating_+%_during_onslaught"]=4448, + ["accuracy_rating_+%_final_vs_enemies_in_close_range_from_mastery"]=4437, + ["accuracy_rating_+%_final_vs_unique_enemies_from_mastery"]=4438, + ["accuracy_rating_+%_if_enemy_not_killed_recently"]=4449, + ["accuracy_rating_+%_if_have_crit_in_past_8_seconds"]=4450, + ["accuracy_rating_+%_per_25_intelligence"]=4440, + ["accuracy_rating_+%_per_frenzy_charge"]=1983, + ["accuracy_rating_+%_when_on_low_life"]=2518, + ["accuracy_rating_+_per_2_dexterity"]=4445, + ["accuracy_rating_+_per_empty_green_socket"]=4364, + ["accuracy_rating_+_per_frenzy_charge"]=4446, + ["accuracy_rating_+_per_green_socket_on_bow"]=4447, + ["accuracy_rating_against_marked_enemies_+%_final_from_crucible_tree"]=4441, + ["accuracy_rating_against_marked_enemies_+%_final_from_mastery"]=4442, + ["accuracy_rating_is_doubled"]=4443, + ["accuracy_rating_per_level"]=4444, + ["accuracy_rating_while_at_maximum_frenzy_charges"]=4451, + ["accuracy_rating_while_dual_wielding_+%"]=1370, + ["action_speed_+%_while_affected_by_haste"]=4452, + ["action_speed_+%_while_chilled"]=3520, + ["action_speed_-%"]=4456, + ["action_speed_cannot_be_reduced_below_base"]=3126, + ["action_speed_cannot_be_reduced_below_base_while_ignited"]=4453, + ["action_speed_cannot_be_reduced_below_base_while_no_gems_in_boots"]=4454, + ["action_speed_cannot_be_slowed_below_base_if_cast_temporal_chains_in_past_10_seconds"]=4455, + ["action_speed_is_at_least_90%"]=175, + ["active_skill_200%_increased_knockback_distance"]=4457, + ["active_skill_attack_speed_+%_final"]=1346, + ["active_skill_attack_speed_+%_final_per_frenzy_charge"]=3721, + ["active_skill_level_+"]=1813, + ["adaptation_duration_+%"]=1472, + ["adaptation_rating_+%"]=1469, + ["add_endurance_charge_on_critical_strike"]=1753, + ["add_endurance_charge_on_enemy_critical_strike"]=1770, + ["add_endurance_charge_on_gain_power_charge_%"]=3539, + ["add_endurance_charge_on_kill"]=2761, + ["add_endurance_charge_on_skill_hit_%"]=1767, + ["add_endurance_charge_on_status_ailment"]=1771, + ["add_frenzy_charge_every_50_rampage_stacks"]=4306, + ["add_frenzy_charge_on_critical_strike"]=1763, + ["add_frenzy_charge_on_enemy_block"]=2059, + ["add_frenzy_charge_on_kill_%_chance"]=2563, + ["add_frenzy_charge_on_kill_%_chance_while_dual_wielding"]=4458, + ["add_frenzy_charge_on_skill_hit_%"]=1768, + ["add_frenzy_charge_on_skill_hit_%_if_4_redeemer_items"]=4393, + ["add_frenzy_charge_when_hit_%"]=4459, + ["add_power_charge_on_critical_strike"]=1764, + ["add_power_charge_on_critical_strike_%"]=1765, + ["add_power_charge_on_hit_%"]=3534, + ["add_power_charge_on_hit_while_poisoned_%"]=4460, + ["add_power_charge_on_kill_%_chance"]=2565, + ["add_power_charge_on_melee_critical_strike"]=1766, + ["add_power_charge_on_minion_death"]=1991, + ["add_power_charge_on_skill_hit_%"]=1769, + ["add_power_charge_on_skill_hit_%_if_4_crusader_items"]=4394, + ["add_power_charge_when_interrupted_while_casting"]=2086, + ["add_power_charge_when_kill_shocked_enemy"]=2076, + ["add_x_grasping_vines_on_hit"]=4461, + ["added_chaos_damage_%_life_cost_if_payable"]=4462, + ["added_chaos_damage_%_mana_cost_if_payable"]=4463, + ["additional_%_chance_to_evade_attacks_if_you_have_taken_a_savage_hit_recently"]=4499, + ["additional_all_attributes"]=1112, + ["additional_attack_block_%_if_used_shield_skill_recently"]=4464, + ["additional_attack_block_%_per_endurance_charge"]=4465, + ["additional_attack_block_%_per_frenzy_charge"]=4466, + ["additional_attack_block_%_per_power_charge"]=4467, + ["additional_attack_block_%_per_summoned_skeleton"]=4468, + ["additional_base_critical_strike_chance"]=1392, + ["additional_beam_only_chains"]=10339, + ["additional_block_%"]=2391, + ["additional_block_%_against_frontal_attacks"]=4469, + ["additional_block_%_if_you_have_crit_recently"]=4470, + ["additional_block_%_per_endurance_charge"]=4471, + ["additional_block_%_per_hit_you_have_blocked_in_past_10_seconds"]=4472, + ["additional_block_%_while_not_cursed"]=4473, + ["additional_block_%_while_on_consecrated_ground"]=4474, + ["additional_block_%_while_you_have_at_least_10_crab_charges"]=4284, + ["additional_block_%_while_you_have_at_least_5_crab_charges"]=4283, + ["additional_block_%_with_5_or_more_nearby_enemies"]=4475, + ["additional_block_chance_%_for_1_second_every_5_seconds"]=2392, + ["additional_block_chance_%_for_you_and_allies_affected_by_your_auras"]=3996, + ["additional_block_chance_%_when_in_off_hand"]=4116, + ["additional_block_chance_against_projectiles_%"]=2397, + ["additional_chance_to_freeze_chilled_enemies_%"]=1965, + ["additional_chaos_damage_to_spells_equal_to_%_maximum_life"]=4476, + ["additional_chaos_resistance_against_damage_over_time_%"]=5655, + ["additional_critical_strike_chance_per_10_shield_maximum_energy_shield_permyriad"]=4477, + ["additional_critical_strike_chance_per_power_charge_permyriad"]=4478, + ["additional_critical_strike_chance_permyriad_per_poison_on_enemy_up_to_2%"]=4479, + ["additional_critical_strike_chance_permyriad_per_warcry_exerting_action"]=4480, + ["additional_critical_strike_chance_permyriad_while_affected_by_cat_aspect"]=4291, + ["additional_critical_strike_chance_permyriad_while_affected_by_hatred"]=4481, + ["additional_critical_strike_chance_permyriad_while_at_maximum_power_charges"]=3402, + ["additional_critical_strike_chance_permyriad_with_herald_skills"]=4482, + ["additional_damage_rolls_while_on_low_life"]=4483, + ["additional_dexterity"]=1114, + ["additional_dexterity_and_intelligence"]=1118, + ["additional_dexterity_per_allocated_mastery"]=4484, + ["additional_elemental_damage_reduction_as_half_of_chaos_resistance"]=3997, + ["additional_intelligence"]=1115, + ["additional_intelligence_per_allocated_mastery"]=4485, + ["additional_max_mirage_archers"]=4346, + ["additional_max_number_of_dominated_magic_monsters"]=4486, + ["additional_max_number_of_dominated_rare_monsters"]=4487, + ["additional_maximum_all_elemental_resistances_%"]=1578, + ["additional_maximum_all_elemental_resistances_%_if_6_shaper_items"]=4411, + ["additional_maximum_all_elemental_resistances_%_if_all_equipment_grants_armour"]=4492, + ["additional_maximum_all_elemental_resistances_%_if_killed_cursed_enemy_recently"]=4488, + ["additional_maximum_all_elemental_resistances_%_if_suppressed_spell_recently"]=4489, + ["additional_maximum_all_elemental_resistances_%_while_affected_by_purity_of_elements"]=4490, + ["additional_maximum_all_elemental_resistances_%_with_reserved_life_and_mana"]=4491, + ["additional_maximum_all_resistances_%"]=1577, + ["additional_maximum_all_resistances_%_at_devotion_threshold"]=4494, + ["additional_maximum_all_resistances_%_while_poisoned"]=4493, + ["additional_maximum_all_resistances_%_with_no_endurance_charges"]=4495, + ["additional_number_of_brands_to_create"]=4496, + ["additional_off_hand_critical_strike_chance_permyriad"]=4497, + ["additional_off_hand_critical_strike_chance_while_dual_wielding"]=4498, + ["additional_physical_damage_reduction_%_during_flask_effect"]=4199, + ["additional_physical_damage_reduction_%_during_focus"]=4501, + ["additional_physical_damage_reduction_%_during_life_or_mana_flask_effect"]=4502, + ["additional_physical_damage_reduction_%_if_not_damaged_by_a_hit_recently"]=4503, + ["additional_physical_damage_reduction_%_per_keystone"]=4504, + ["additional_physical_damage_reduction_%_per_minion_up_to_10%"]=4505, + ["additional_physical_damage_reduction_%_per_summoned_sentinel_of_purity"]=4506, + ["additional_physical_damage_reduction_%_vs_abyssal_monsters"]=4507, + ["additional_physical_damage_reduction_%_when_on_low_life"]=2192, + ["additional_physical_damage_reduction_%_while_affected_by_determination"]=4508, + ["additional_physical_damage_reduction_%_while_affected_by_guard_skill"]=4509, + ["additional_physical_damage_reduction_%_while_bleeding"]=4510, + ["additional_physical_damage_reduction_%_while_channelling"]=4511, + ["additional_physical_damage_reduction_%_while_frozen"]=4512, + ["additional_physical_damage_reduction_%_while_moving"]=4513, + ["additional_physical_damage_reduction_against_hits_%_per_siphoning_charge"]=4270, + ["additional_physical_damage_reduction_if_warcried_in_past_8_seconds"]=4500, + ["additional_poison_chance_%_when_inflicting_poison"]=4514, + ["additional_projectile_if_6_hunter_items"]=4412, + ["additional_rage_loss_per_minute"]=4515, + ["additional_scroll_of_wisdom_drop_chance_%"]=2528, + ["additional_spectres_per_ghastly_eye_jewel"]=4516, + ["additional_spell_block_%"]=1094, + ["additional_spell_block_%_if_havent_blocked_recently"]=4518, + ["additional_spell_block_%_per_power_charge"]=4517, + ["additional_spell_block_%_while_cursed"]=4519, + ["additional_staff_block_%"]=1090, + ["additional_strength"]=1113, + ["additional_strength_and_dexterity"]=1116, + ["additional_strength_and_intelligence"]=1117, + ["additional_strength_per_allocated_mastery"]=4520, + ["additional_stun_threshold_based_on_%_of_energy_shield"]=4521, + ["additive_armour_modifiers_apply_to_energy_shield_recharge_rate_at_%_value"]=4522, + ["additive_cast_speed_modifiers_apply_to_trap_throwing_speed"]=4523, + ["additive_chaos_damage_modifiers_apply_to_chaos_aura_effect_at_%_value"]=4524, + ["additive_cold_damage_modifiers_apply_to_cold_aura_effect_at_%_value"]=4525, + ["additive_energy_shield_modifiers_apply_to_spell_damage_at_30%_value"]=4526, + ["additive_fire_damage_modifiers_apply_to_fire_aura_effect_at_%_value"]=4527, + ["additive_flask_effect_modifiers_apply_to_arcane_surge"]=4528, + ["additive_life_modifiers_apply_to_attack_damage_at_30%_value"]=4529, + ["additive_lightning_damage_modifiers_apply_to_lightning_aura_effect_at_%_value"]=4530, + ["additive_mana_modifiers_apply_to_damage_at_30%_value"]=4531, + ["additive_mana_modifiers_apply_to_shock_effect_at_30%_value"]=4532, + ["additive_minion_damage_modifiers_apply_to_you_at_150%_value"]=3683, + ["additive_minion_maximum_life_modifiers_apply_to_you_at_%_value"]=3686, + ["additive_modifiers_to_minion_attack_speed_also_affect_you"]=3684, + ["additive_modifiers_to_minion_cast_speed_also_affect_you"]=3685, + ["additive_physical_damage_modifiers_apply_to_physical_aura_effect_at_%_value"]=4533, + ["additive_spell_damage_modifiers_apply_to_attack_damage"]=2619, + ["additive_spell_damage_modifiers_apply_to_attack_damage_at_%_value_while_wielding_wand"]=2621, + ["additive_spell_damage_modifiers_apply_to_attack_damage_at_150%_value"]=2620, + ["additive_vaal_skill_damage_modifiers_apply_to_all_skills"]=2622, + ["aggravate_bleeding_older_than_ms_on_hit"]=4534, + ["aggravate_bleeding_on_attack_crit_chance_%"]=4535, + ["aggravate_bleeding_on_attack_knockback_chance_%"]=4537, + ["aggravate_bleeding_on_attack_stun_chance_%"]=4538, + ["aggravate_bleeding_on_exerted_attack_hit_chance_%"]=4539, + ["aggravate_inflicted_bleeding"]=4540, + ["agony_crawler_damage_+%"]=4541, + ["ailment_bearer_all_damage_can_inflict_elemental_ailments"]=4542, + ["ailment_bearer_always_freeze_shock_ignite"]=4543, + ["ailment_bearer_elemental_damage_+%_final"]=4544, + ["ailment_bearer_ignite_freeze_shock_duration_+%"]=4545, + ["ailment_bearer_scorch_effect_+%"]=4546, + ["ailment_damage_+%_per_equipped_elder_item"]=4260, + ["ailment_dot_multiplier_+"]=1179, + ["ailment_dot_multiplier_+_per_equipped_elder_item"]=4261, + ["ailment_types_apply_damage_taken_+%"]=2395, + ["alchemists_mark_curse_effect_+%"]=4547, + ["all_attributes_+%"]=1119, + ["all_attributes_+%_if_6_elder_items"]=4413, + ["all_attributes_+%_per_assigned_keystone"]=3019, + ["all_attributes_+_per_keystone"]=4548, + ["all_damage_can_chill"]=2794, + ["all_damage_can_freeze"]=4549, + ["all_damage_can_ignite"]=4550, + ["all_damage_can_poison"]=4551, + ["all_damage_can_poison_while_affected_by_glorious_madness"]=10500, + ["all_damage_can_shock"]=4552, + ["all_damage_from_mace_and_sceptre_also_chills"]=4553, + ["all_damage_resistance_+%"]=4554, + ["all_damage_taken_can_chill"]=2797, + ["all_damage_taken_can_ignite"]=4555, + ["all_damage_taken_can_sap"]=4556, + ["all_damage_taken_can_scorch"]=4557, + ["all_resistances_%_per_active_minion"]=4558, + ["all_resistances_%_per_active_minion_not_from_vaal_skills"]=1572, + ["all_resistances_%_per_equipped_corrupted_item"]=3035, + ["all_skill_gem_level_+"]=4559, + ["all_skill_gem_quality_+"]=4560, + ["allow_2_active_banners"]=2951, + ["allow_2_offerings"]=4561, + ["allow_hellscaping_unique_items"]=4562, + ["allow_multiple_offerings"]=4563, + ["alternate_ascendancy_damage_taken_+%_final_with_atleast_1_eshgraft"]=4564, + ["alternate_ascendancy_damage_taken_+%_final_with_atleast_1_tulgraft"]=4565, + ["alternate_ascendancy_damage_taken_+%_final_with_atleast_1_uulgraft"]=4566, + ["alternate_ascendancy_damage_taken_+%_final_with_atleast_1_xophgraft"]=4567, + ["alternate_ascendancy_damage_taken_over_time_+%_final_while_you_have_unbroken_ward"]=4568, + ["alternate_ascendancy_damage_taken_when_hit_+%_final"]=4569, + ["alternate_ascendancy_herald_buff_effect_+%_final_per_1%_mana_reserved"]=4570, + ["alternate_ascendancy_herald_minion_and_herald_damage_+%_final_per_1%_life_reserved"]=4571, + ["alternate_ascendancy_rapid_fire_support_use_damage_+%_final_per_reoccurance"]=4572, + ["alternate_ascendancy_vaal_skill_soul_requirement_+%_final"]=4573, + ["alternate_ascendancy_vaal_skills_damage_+%_final_per_soul_required"]=4574, + ["always_crit"]=1978, + ["always_crit_on_next_non_channelling_attack_within_X_ms_after_being_crit"]=4575, + ["always_crit_shocked_enemies"]=4067, + ["always_crit_while_holding_fishing_rod"]=4576, + ["always_freeze"]=1962, + ["always_frostburn_while_affected_by_hatred"]=4577, + ["always_ignite"]=1787, + ["always_ignite_while_burning"]=4578, + ["always_pierce"]=4579, + ["always_pierce_burning_enemies"]=4580, + ["always_sap_while_affected_by_wrath"]=4581, + ["always_scorch_while_affected_by_anger"]=4582, + ["always_shock"]=1788, + ["always_shock_low_life_enemies"]=4583, + ["always_stun"]=1789, + ["always_stun_enemies_that_are_on_full_life"]=3264, + ["always_take_critical_strikes"]=4584, + ["ambush_buff_critical_strike_multiplier_+"]=4585, + ["ambush_cooldown_speed_+%"]=4586, + ["ambush_passive_critical_strike_chance_vs_enemies_on_full_life_+%_final"]=3366, + ["amulet_freeze_proliferation_radius"]=2153, + ["ancestor_totem_buff_effect_+%"]=4587, + ["ancestor_totem_buff_linger_time_ms"]=4588, + ["ancestor_totem_damage_leeched_as_energy_shield_to_you_permyriad"]=4589, + ["ancestor_totem_parent_activation_range_+%"]=4590, + ["ancestral_chance_for_no_respawn_timer_on_death_%"]=4591, + ["ancestral_channelling_damage_+%_against_totems"]=4592, + ["ancestral_channelling_interrupt_duration_+%"]=4593, + ["ancestral_cry_attacks_exerted_+"]=4594, + ["ancestral_cry_exerted_attack_damage_+%"]=4595, + ["ancestral_cry_minimum_power"]=4596, + ["ancestral_defensive_teammates_gain_charges"]=4597, + ["ancestral_life_regeneration_rate_per_minute_%_while_channelling_totem"]=4598, + ["ancestral_maximum_life_+%_on_respawn"]=4599, + ["ancestral_monster_respawn_timer_+%"]=4600, + ["ancestral_offensive_teammates_gain_adrenaline_for_x_ms_on_match_start"]=4601, + ["ancestral_slain_enemies_respawn_timer_+"]=4602, + ["ancestral_stun_nearby_enemies_on_respawn"]=4603, + ["ancestral_totem_being_channelled_doesnt_prevent_your_respawn_timer"]=4604, + ["ancestral_totem_cannot_recover_life_while_being_channelled"]=4605, + ["ancestral_totem_life_+%"]=4606, + ["ancestral_totem_life_regeneration_rate_per_minute_%"]=4607, + ["ancestral_totem_periodically_freezes_nearby_enemies"]=4608, + ["ancestral_totem_trigger_enduring_cry_on_low_life"]=4609, + ["anger_aura_effect_+%"]=3288, + ["anger_aura_effect_+%_while_at_maximum_endurance_charges"]=4610, + ["anger_mana_reservation_+%"]=3349, + ["anger_mana_reservation_efficiency_+%"]=4612, + ["anger_mana_reservation_efficiency_-2%_per_1"]=4611, + ["anger_reserves_no_mana"]=4613, + ["animate_guardian_damage_+%"]=3637, + ["animate_guardian_damage_+%_per_animated_weapon"]=4614, + ["animate_guardian_elemental_resistances_%"]=3921, + ["animate_weapon_can_animate_bows"]=3094, + ["animate_weapon_can_animate_up_to_x_additional_ranged_weapons"]=3187, + ["animate_weapon_can_animate_wands"]=3095, + ["animate_weapon_chance_to_create_additional_copy_%"]=3927, + ["animate_weapon_damage_+%"]=3559, + ["animate_weapon_duration_+%"]=2730, + ["animate_weapon_number_of_additional_copies"]=2731, + ["animated_ethereal_blades_have_additional_critical_strike_chance"]=4615, + ["animated_guardian_damage_taken_+%_final"]=4616, + ["animated_minions_melee_splash"]=4617, + ["aoe_+%_per_second_while_stationary_up_to_50"]=4618, + ["apply_covered_in_ash_to_attacker_on_hit_%_vs_rare_or_unique_enemy"]=4619, + ["apply_covered_in_ash_to_attacker_when_hit_%"]=4620, + ["apply_hex_on_enemy_that_triggers_traps"]=494, + ["apply_maximum_wither_for_Xs_on_chaos_skill_hit"]=4621, + ["apply_maximum_wither_stacks_%_chance_when_you_apply_withered"]=4622, + ["apply_poison_on_hit_vs_bleeding_enemies_%"]=3215, + ["apply_scorch_instead_of_ignite"]=4623, + ["arc_and_crackling_lance_added_cold_damage_%_mana_cost_if_payable"]=4624, + ["arc_and_crackling_lance_base_cost_+%"]=4625, + ["arc_damage_+%"]=3592, + ["arc_damage_+%_per_chain"]=4626, + ["arc_num_of_additional_projectiles_in_chain"]=3884, + ["arc_shock_chance_%"]=3899, + ["arcane_cloak_consume_%_of_mana"]=4627, + ["arcane_cloak_gain_%_of_consumed_mana_as_life_regenerated_per_second"]=4628, + ["arcane_surge_during_mana_flask_effect"]=4629, + ["arcane_surge_effect_+%"]=3220, + ["arcane_surge_effect_+%_per_200_mana_spent_recently_up_to_50%"]=3221, + ["arcane_surge_effect_+%_per_active_totem"]=4631, + ["arcane_surge_effect_+%_while_affected_by_clarity"]=4630, + ["arcane_surge_effect_on_self_+%_per_caster_abyss_jewel_up_to_+40%"]=3219, + ["arcane_surge_on_you_spell_damage_+%_final_from_hierophant"]=4632, + ["arcane_surge_to_you_and_allies_on_warcry_with_effect_+%_per_5_power_up_to_50%"]=4633, + ["arcanist_brand_cast_speed_+%"]=4634, + ["arcanist_brand_unnerve_on_hit"]=4635, + ["archnemesis_cannot_recover_life_or_energy_shield_above_%"]=4636, + ["arctic_armour_buff_effect_+%"]=3954, + ["arctic_armour_chill_when_hit_duration"]=4637, + ["arctic_armour_mana_reservation_+%"]=3961, + ["arctic_armour_mana_reservation_efficiency_+%"]=4639, + ["arctic_armour_mana_reservation_efficiency_-2%_per_1"]=4638, + ["arctic_armour_no_reservation"]=4640, + ["arctic_breath_chilling_area_movement_velocity_+%"]=4641, + ["arctic_breath_damage_+%"]=3610, + ["arctic_breath_duration_+%"]=3864, + ["arctic_breath_radius_+%"]=3755, + ["area_damage_+%"]=1968, + ["area_damage_+%_per_10_devotion"]=4642, + ["area_damage_+%_per_12_strength"]=4643, + ["area_damage_taken_from_hits_+%"]=2172, + ["area_of_effect_+%_final_for_bow_attacks_firing_single_projectile"]=4647, + ["area_of_effect_+%_for_you_and_minions_if_consumed_corpse_recently"]=4648, + ["area_of_effect_+%_if_below_100_intelligence"]=4645, + ["area_of_effect_+%_if_culled_recently"]=4649, + ["area_of_effect_+%_if_enemy_stunned_with_two_handed_melee_weapon_recently"]=4650, + ["area_of_effect_+%_if_have_crit_recently"]=4651, + ["area_of_effect_+%_if_have_stunned_an_enemy_recently"]=4652, + ["area_of_effect_+%_if_killed_at_least_5_enemies_recently"]=4653, + ["area_of_effect_+%_if_you_have_blocked_recently"]=4654, + ["area_of_effect_+%_per_10_rage"]=4646, + ["area_of_effect_+%_per_20_int"]=2476, + ["area_of_effect_+%_per_25_rampage_stacks"]=4305, + ["area_of_effect_+%_per_50_strength"]=4655, + ["area_of_effect_+%_per_active_herald_of_light_minion"]=4656, + ["area_of_effect_+%_per_endurance_charge"]=4657, + ["area_of_effect_+%_per_enemy_killed_recently"]=4658, + ["area_of_effect_+%_while_fortified"]=4659, + ["area_of_effect_+%_while_totem_active"]=4660, + ["area_of_effect_+%_while_wielding_bow"]=4661, + ["area_of_effect_+%_while_wielding_staff"]=4662, + ["area_of_effect_+%_while_you_do_not_have_convergence"]=4374, + ["area_of_effect_+%_while_you_have_arcane_surge"]=4663, + ["area_of_effect_+%_with_500_or_more_strength"]=4664, + ["area_of_effect_+%_with_bow_skills"]=4665, + ["area_of_effect_+%_with_herald_skills"]=4666, + ["area_skill_accuracy_rating_+%"]=4667, + ["area_skill_knockback_chance_%"]=4668, + ["armageddon_brand_attached_target_fire_penetration_%"]=4669, + ["armageddon_brand_damage_+%"]=4670, + ["armageddon_brand_repeat_frequency_+%"]=4671, + ["armour_%_applies_to_fire_cold_lightning_damage"]=4672, + ["armour_%_applies_to_fire_cold_lightning_damage_if_have_blocked_recently"]=4673, + ["armour_%_to_leech_as_life_on_block"]=2674, + ["armour_+%_during_onslaught"]=4674, + ["armour_+%_if_enemy_not_killed_recently"]=4691, + ["armour_+%_if_have_been_hit_recently"]=4675, + ["armour_+%_if_you_havent_been_hit_recently"]=4676, + ["armour_+%_per_50_str"]=4692, + ["armour_+%_per_defiance"]=4216, + ["armour_+%_per_rage"]=4693, + ["armour_+%_per_red_socket_on_main_hand_weapon"]=4694, + ["armour_+%_per_retaliation_used_in_past_10_seconds"]=4677, + ["armour_+%_per_second_while_stationary_up_to_100"]=4695, + ["armour_+%_while_bleeding"]=4696, + ["armour_+%_while_no_energy_shield"]=2669, + ["armour_+%_while_stationary"]=4697, + ["armour_+_per_10_unreserved_max_mana"]=4678, + ["armour_+_per_1_helmet_maximum_energy_shield"]=4687, + ["armour_+_while_affected_by_determination"]=4688, + ["armour_+_while_affected_by_guard_skill"]=4689, + ["armour_+_while_you_have_fortify"]=4690, + ["armour_and_energy_shield_+%_from_body_armour_if_gloves_helmet_boots_have_armour_and_energy_shield"]=4679, + ["armour_and_evasion_+%_during_onslaught"]=4680, + ["armour_and_evasion_+%_while_fortified"]=4181, + ["armour_and_evasion_on_low_life_+%"]=3145, + ["armour_and_evasion_rating_+%_if_killed_a_taunted_enemy_recently"]=4123, + ["armour_and_evasion_rating_+_per_1%_attack_block_chance"]=4681, + ["armour_and_evasion_rating_+_while_fortified"]=4682, + ["armour_evasion_+%_while_leeching"]=4683, + ["armour_from_gloves_and_boots_+%"]=4684, + ["armour_from_helmet_and_gloves_+%"]=4685, + ["armour_from_shield_doubled"]=1926, + ["armour_hellscaping_speed_+%"]=6986, + ["armour_increased_by_overcapped_fire_resistance"]=4686, + ["armour_while_stationary"]=4245, + ["armour_while_you_do_not_have_avatar_of_fire"]=10644, + ["arrow_base_number_of_targets_to_pierce"]=1726, + ["arrow_chains_+"]=1723, + ["arrow_critical_strike_chance_+%_max_as_distance_travelled_increases"]=4698, + ["arrow_damage_+%_max_as_distance_travelled_increases"]=4701, + ["arrow_damage_+%_vs_pierced_targets"]=4699, + ["arrow_damage_+50%_vs_pierced_targets"]=4700, + ["arrow_speed_additive_modifiers_also_apply_to_bow_damage"]=4703, + ["arrows_always_pierce_after_chaining"]=4237, + ["arrows_always_pierce_after_forking"]=4704, + ["arrows_fork"]=3513, + ["arrows_from_first_firing_point_always_pierce"]=4338, + ["arrows_from_fourth_firing_point_additional_chains"]=4341, + ["arrows_from_second_firing_point_fork"]=4339, + ["arrows_from_third_firing_point_return"]=4340, + ["arrows_pierce_additional_target"]=4705, + ["arrows_that_pierce_also_return"]=4706, + ["arrows_that_pierce_cause_bleeding"]=4235, + ["arrows_that_pierce_chance_to_bleed_25%"]=4236, + ["artillery_ballista_cross_strafe_pattern"]=4707, + ["artillery_ballista_fire_pen_+%"]=4708, + ["artillery_ballista_num_additional_arrows"]=4709, + ["ascendancy_non_damaging_elemental_ailment_proliferation_radius"]=9327, + ["ascendancy_pathfinder_chaos_damage_with_attack_skills_+%_final"]=4710, + ["aspect_of_the_avian_buff_effect_+%"]=4711, + ["aspect_of_the_avian_grants_avians_might_and_avians_flight_to_nearby_allies"]=4712, + ["aspect_of_the_cat_base_secondary_duration"]=4713, + ["aspect_of_the_spider_web_count_+"]=4714, + ["assassin_critical_strike_chance_+%_final_vs_enemies_not_on_low_life"]=3368, + ["assassin_critical_strike_multiplier_+_vs_enemies_not_on_low_life"]=3369, + ["assassin_critical_strike_multiplier_+_vs_enemies_on_low_life"]=3370, + ["assassinate_passive_critical_strike_chance_vs_enemies_on_low_life_+%_final"]=3371, + ["assassins_mark_curse_effect_+%"]=3941, + ["assassins_mark_duration_+%"]=3850, + ["attack_additional_critical_strike_chance_permyriad"]=4715, + ["attack_additional_critical_strike_chance_permyriad_if_4_elder_items"]=4395, + ["attack_ailment_damage_+%"]=4716, + ["attack_ailment_damage_+%_while_dual_wielding"]=4717, + ["attack_ailment_damage_+%_while_holding_shield"]=1145, + ["attack_ailment_damage_+%_while_wielding_axe"]=4718, + ["attack_ailment_damage_+%_while_wielding_bow"]=4719, + ["attack_ailment_damage_+%_while_wielding_claw"]=4720, + ["attack_ailment_damage_+%_while_wielding_dagger"]=4721, + ["attack_ailment_damage_+%_while_wielding_mace"]=4722, + ["attack_ailment_damage_+%_while_wielding_melee_weapon"]=4723, + ["attack_ailment_damage_+%_while_wielding_one_handed_weapon"]=4724, + ["attack_ailment_damage_+%_while_wielding_staff"]=4725, + ["attack_ailment_damage_+%_while_wielding_sword"]=4726, + ["attack_ailment_damage_+%_while_wielding_two_handed_weapon"]=4727, + ["attack_ailment_damage_+%_while_wielding_wand"]=4728, + ["attack_always_crit"]=3710, + ["attack_and_cast_speed_+%"]=1979, + ["attack_and_cast_speed_+%_during_flask_effect"]=4205, + ["attack_and_cast_speed_+%_during_onslaught"]=2961, + ["attack_and_cast_speed_+%_for_3_seconds_on_attack_every_9_seconds"]=4736, + ["attack_and_cast_speed_+%_for_4_seconds_on_begin_es_recharge"]=3459, + ["attack_and_cast_speed_+%_for_4_seconds_on_movement_skill_use"]=3405, + ["attack_and_cast_speed_+%_for_you_and_allies_affected_by_your_auras"]=3998, + ["attack_and_cast_speed_+%_if_corpse_consumed_recently"]=4729, + ["attack_and_cast_speed_+%_if_enemy_hit_recently"]=4737, + ["attack_and_cast_speed_+%_if_havent_been_hit_recently"]=4738, + ["attack_and_cast_speed_+%_on_placing_totem"]=3139, + ["attack_and_cast_speed_+%_per_alive_packmate"]=4730, + ["attack_and_cast_speed_+%_per_cold_adaptation"]=4349, + ["attack_and_cast_speed_+%_per_corpse_consumed_recently"]=4185, + ["attack_and_cast_speed_+%_per_endurance_charge"]=4739, + ["attack_and_cast_speed_+%_per_frenzy_charge"]=1981, + ["attack_and_cast_speed_+%_per_power_charge"]=4740, + ["attack_and_cast_speed_+%_per_summoned_raging_spirit"]=4741, + ["attack_and_cast_speed_+%_to_grant_packmate_on_death"]=4731, + ["attack_and_cast_speed_+%_while_affected_by_a_herald"]=4742, + ["attack_and_cast_speed_+%_while_affected_by_a_mana_flask"]=4732, + ["attack_and_cast_speed_+%_while_affected_by_elusive"]=4733, + ["attack_and_cast_speed_+%_while_channelling"]=4743, + ["attack_and_cast_speed_+%_while_focused"]=4744, + ["attack_and_cast_speed_+%_while_leeching"]=4020, + ["attack_and_cast_speed_+%_while_leeching_energy_shield"]=4745, + ["attack_and_cast_speed_+%_while_not_near_ancestral_totem"]=4734, + ["attack_and_cast_speed_+%_while_on_consecrated_ground"]=4159, + ["attack_and_cast_speed_+%_while_totem_active"]=3541, + ["attack_and_cast_speed_+%_while_you_have_depleted_physical_aegis"]=4746, + ["attack_and_cast_speed_+%_while_you_have_fortify"]=2201, + ["attack_and_cast_speed_+%_with_channelling_skills"]=4747, + ["attack_and_cast_speed_+%_with_chaos_skills"]=4748, + ["attack_and_cast_speed_+%_with_cold_skills"]=4749, + ["attack_and_cast_speed_+%_with_elemental_skills"]=4750, + ["attack_and_cast_speed_+%_with_fire_skills"]=4751, + ["attack_and_cast_speed_+%_with_lightning_skills"]=4752, + ["attack_and_cast_speed_+%_with_physical_skills"]=4753, + ["attack_and_cast_speed_+%_with_shield_skills"]=4754, + ["attack_and_cast_speed_per_ghost_dance_stack_+%"]=4735, + ["attack_and_cast_speed_when_hit_+%"]=3151, + ["attack_and_movement_speed_+%_final_per_challenger_charge"]=4755, + ["attack_and_movement_speed_+%_if_you_have_beast_minion"]=4254, + ["attack_and_movement_speed_+%_with_her_blessing"]=3213, + ["attack_and_spell_maximum_added_physical_damage_per_siphoning_charge"]=4268, + ["attack_and_spell_minimum_added_physical_damage_per_siphoning_charge"]=4268, + ["attack_area_of_effect_+%"]=4756, + ["attack_block_%_if_blocked_a_spell_recently"]=4758, + ["attack_block_%_per_200_fire_hit_damage_taken_recently"]=4757, + ["attack_block_%_while_at_max_endurance_charges"]=4759, + ["attack_cast_and_movement_speed_+%_during_onslaught"]=4760, + ["attack_cast_and_movement_speed_+%_while_do_not_have_iron_reflexes"]=10645, + ["attack_cast_movement_speed_+%_for_you_and_allies_affected_by_your_auras"]=3999, + ["attack_cast_movement_speed_+%_if_taken_a_savage_hit_recently"]=4761, + ["attack_chance_to_blind_on_hit_%_vs_bleeding_enemies"]=4762, + ["attack_chance_to_maim_on_hit_%_vs_blinded_enemies"]=4763, + ["attack_cost_+%_if_you_have_at_least_20_rage"]=4764, + ["attack_critical_strike_chance_+%"]=4765, + ["attack_critical_strike_chance_+%_per_200_accuracy_rating"]=4766, + ["attack_critical_strike_damage_life_leech_permyriad"]=3699, + ["attack_critical_strike_multiplier_+"]=1426, + ["attack_critical_strikes_ignore_elemental_resistances"]=4767, + ["attack_damage_+%"]=1134, + ["attack_damage_+%_for_4_seconds_on_cast"]=3464, + ["attack_damage_+%_if_hit_recently"]=3465, + ["attack_damage_+%_if_other_ring_is_shaper_item"]=4255, + ["attack_damage_+%_per_16_strength"]=4777, + ["attack_damage_+%_per_450_evasion"]=2879, + ["attack_damage_+%_per_450_physical_damage_reduction_rating"]=4778, + ["attack_damage_+%_per_5%_block_chance"]=4768, + ["attack_damage_+%_per_500_maximum_mana"]=4769, + ["attack_damage_+%_per_75_armour_or_evasion_on_shield"]=4779, + ["attack_damage_+%_per_explicit_map_mod_affecting_area"]=4770, + ["attack_damage_+%_per_frenzy_charge"]=3217, + ["attack_damage_+%_per_level"]=2896, + ["attack_damage_+%_per_raised_zombie"]=4771, + ["attack_damage_+%_vs_maimed_enemies"]=4780, + ["attack_damage_+%_when_lower_percentage_life_than_target"]=4781, + ["attack_damage_+%_when_on_full_life"]=4782, + ["attack_damage_+%_while_affected_by_precision"]=4783, + ["attack_damage_+%_while_channelling"]=4784, + ["attack_damage_+%_while_holding_a_shield"]=1142, + ["attack_damage_+%_while_in_blood_stance"]=4772, + ["attack_damage_+%_while_leeching"]=4785, + ["attack_damage_+%_while_onslaught_active"]=3223, + ["attack_damage_+%_while_you_have_at_least_20_fortification"]=4773, + ["attack_damage_+%_while_you_have_fortify"]=4786, + ["attack_damage_+%_with_channelling_skills"]=4787, + ["attack_damage_+1%_per_300_of_min_of_armour_or_evasion"]=4776, + ["attack_damage_lucky_if_blocked_in_past_20_seconds"]=4774, + ["attack_damage_lucky_if_blocked_in_past_20_seconds_while_dual_wielding"]=4775, + ["attack_damage_that_stuns_also_chills"]=2944, + ["attack_damage_vs_bleeding_enemies_+%"]=2424, + ["attack_ignite_chance_%"]=2634, + ["attack_lightning_damage_%_to_convert_to_chaos"]=4788, + ["attack_mana_cost_+%"]=4789, + ["attack_maximum_added_chaos_damage"]=1322, + ["attack_maximum_added_chaos_damage_if_you_have_beast_minion"]=4253, + ["attack_maximum_added_chaos_damage_with_bows"]=2036, + ["attack_maximum_added_chaos_damage_with_claws"]=2037, + ["attack_maximum_added_chaos_damage_with_daggers"]=2038, + ["attack_maximum_added_cold_damage"]=1304, + ["attack_maximum_added_cold_damage_with_axes"]=2020, + ["attack_maximum_added_cold_damage_with_bows"]=2021, + ["attack_maximum_added_cold_damage_with_claws"]=2022, + ["attack_maximum_added_cold_damage_with_daggers"]=2023, + ["attack_maximum_added_cold_damage_with_maces"]=2024, + ["attack_maximum_added_cold_damage_with_staves"]=2025, + ["attack_maximum_added_cold_damage_with_swords"]=2026, + ["attack_maximum_added_cold_damage_with_wand"]=2027, + ["attack_maximum_added_fire_damage"]=1295, + ["attack_maximum_added_fire_damage_per_10_strength"]=4790, + ["attack_maximum_added_fire_damage_with_axes"]=2012, + ["attack_maximum_added_fire_damage_with_bow"]=2013, + ["attack_maximum_added_fire_damage_with_claws"]=2014, + ["attack_maximum_added_fire_damage_with_daggers"]=2015, + ["attack_maximum_added_fire_damage_with_maces"]=2016, + ["attack_maximum_added_fire_damage_with_staves"]=2017, + ["attack_maximum_added_fire_damage_with_swords"]=2018, + ["attack_maximum_added_fire_damage_with_wand"]=2019, + ["attack_maximum_added_lightning_damage"]=1315, + ["attack_maximum_added_lightning_damage_per_10_dex"]=4792, + ["attack_maximum_added_lightning_damage_per_10_int"]=4793, + ["attack_maximum_added_lightning_damage_per_200_accuracy_rating"]=4794, + ["attack_maximum_added_lightning_damage_with_axes"]=2028, + ["attack_maximum_added_lightning_damage_with_bows"]=2029, + ["attack_maximum_added_lightning_damage_with_claws"]=2030, + ["attack_maximum_added_lightning_damage_with_daggers"]=2031, + ["attack_maximum_added_lightning_damage_with_maces"]=2032, + ["attack_maximum_added_lightning_damage_with_staves"]=2033, + ["attack_maximum_added_lightning_damage_with_swords"]=2034, + ["attack_maximum_added_lightning_damage_with_wand"]=2035, + ["attack_maximum_added_melee_lightning_damage_while_unarmed"]=2370, + ["attack_maximum_added_physical_damage"]=1202, + ["attack_maximum_added_physical_damage_if_have_crit_recently"]=4795, + ["attack_maximum_added_physical_damage_if_you_have_beast_minion"]=4252, + ["attack_maximum_added_physical_damage_per_25_dexterity"]=3327, + ["attack_maximum_added_physical_damage_per_25_strength"]=4796, + ["attack_maximum_added_physical_damage_per_level"]=4797, + ["attack_maximum_added_physical_damage_while_holding_a_shield"]=2011, + ["attack_maximum_added_physical_damage_while_unarmed"]=2010, + ["attack_maximum_added_physical_damage_with_axes"]=2002, + ["attack_maximum_added_physical_damage_with_bow"]=2003, + ["attack_maximum_added_physical_damage_with_claws"]=2004, + ["attack_maximum_added_physical_damage_with_daggers"]=2005, + ["attack_maximum_added_physical_damage_with_maces"]=2006, + ["attack_maximum_added_physical_damage_with_staves"]=2007, + ["attack_maximum_added_physical_damage_with_swords"]=2008, + ["attack_maximum_added_physical_damage_with_wands"]=2009, + ["attack_maximum_added_physical_damage_with_weapons"]=1204, + ["attack_minimum_added_chaos_damage"]=1322, + ["attack_minimum_added_chaos_damage_if_you_have_beast_minion"]=4253, + ["attack_minimum_added_chaos_damage_with_bows"]=2036, + ["attack_minimum_added_chaos_damage_with_claws"]=2037, + ["attack_minimum_added_chaos_damage_with_daggers"]=2038, + ["attack_minimum_added_cold_damage"]=1304, + ["attack_minimum_added_cold_damage_with_axes"]=2020, + ["attack_minimum_added_cold_damage_with_bows"]=2021, + ["attack_minimum_added_cold_damage_with_claws"]=2022, + ["attack_minimum_added_cold_damage_with_daggers"]=2023, + ["attack_minimum_added_cold_damage_with_maces"]=2024, + ["attack_minimum_added_cold_damage_with_staves"]=2025, + ["attack_minimum_added_cold_damage_with_swords"]=2026, + ["attack_minimum_added_cold_damage_with_wand"]=2027, + ["attack_minimum_added_fire_damage"]=1295, + ["attack_minimum_added_fire_damage_per_10_strength"]=4790, + ["attack_minimum_added_fire_damage_with_axes"]=2012, + ["attack_minimum_added_fire_damage_with_bow"]=2013, + ["attack_minimum_added_fire_damage_with_claws"]=2014, + ["attack_minimum_added_fire_damage_with_daggers"]=2015, + ["attack_minimum_added_fire_damage_with_maces"]=2016, + ["attack_minimum_added_fire_damage_with_staves"]=2017, + ["attack_minimum_added_fire_damage_with_swords"]=2018, + ["attack_minimum_added_fire_damage_with_wand"]=2019, + ["attack_minimum_added_lightning_damage"]=1315, + ["attack_minimum_added_lightning_damage_per_10_dex"]=4792, + ["attack_minimum_added_lightning_damage_per_10_int"]=4793, + ["attack_minimum_added_lightning_damage_per_200_accuracy_rating"]=4794, + ["attack_minimum_added_lightning_damage_with_axes"]=2028, + ["attack_minimum_added_lightning_damage_with_bows"]=2029, + ["attack_minimum_added_lightning_damage_with_claws"]=2030, + ["attack_minimum_added_lightning_damage_with_daggers"]=2031, + ["attack_minimum_added_lightning_damage_with_maces"]=2032, + ["attack_minimum_added_lightning_damage_with_staves"]=2033, + ["attack_minimum_added_lightning_damage_with_swords"]=2034, + ["attack_minimum_added_lightning_damage_with_wand"]=2035, + ["attack_minimum_added_melee_lightning_damage_while_unarmed"]=2370, + ["attack_minimum_added_physical_damage"]=1202, + ["attack_minimum_added_physical_damage_if_have_crit_recently"]=4795, + ["attack_minimum_added_physical_damage_if_you_have_beast_minion"]=4252, + ["attack_minimum_added_physical_damage_per_25_dexterity"]=3327, + ["attack_minimum_added_physical_damage_per_25_strength"]=4796, + ["attack_minimum_added_physical_damage_per_level"]=4797, + ["attack_minimum_added_physical_damage_while_holding_a_shield"]=2011, + ["attack_minimum_added_physical_damage_while_unarmed"]=2010, + ["attack_minimum_added_physical_damage_with_axes"]=2002, + ["attack_minimum_added_physical_damage_with_bow"]=2003, + ["attack_minimum_added_physical_damage_with_claws"]=2004, + ["attack_minimum_added_physical_damage_with_daggers"]=2005, + ["attack_minimum_added_physical_damage_with_maces"]=2006, + ["attack_minimum_added_physical_damage_with_staves"]=2007, + ["attack_minimum_added_physical_damage_with_swords"]=2008, + ["attack_minimum_added_physical_damage_with_wands"]=2009, + ["attack_minimum_added_physical_damage_with_weapons"]=1204, + ["attack_physical_damage_%_to_add_as_cold"]=3707, + ["attack_physical_damage_%_to_add_as_fire"]=3706, + ["attack_physical_damage_%_to_add_as_lightning"]=3708, + ["attack_physical_damage_%_to_convert_to_cold"]=4799, + ["attack_physical_damage_%_to_convert_to_fire"]=4800, + ["attack_physical_damage_%_to_convert_to_lightning"]=4801, + ["attack_projectiles_fork"]=4802, + ["attack_projectiles_fork_additional_times"]=4803, + ["attack_projectiles_return"]=2757, + ["attack_repeat_count"]=1834, + ["attack_skill_additional_num_projectiles_while_wielding_claws_daggers"]=4804, + ["attack_skill_ailment_damage_+%_while_wielding_axes_swords"]=4805, + ["attack_skills_%_physical_as_extra_fire_damage_per_socketed_red_gem"]=2649, + ["attack_skills_additional_ballista_totems_allowed"]=4176, + ["attack_skills_additional_totems_allowed"]=4177, + ["attack_skills_damage_+%_while_dual_wielding"]=1212, + ["attack_skills_damage_+%_while_holding_shield"]=1143, + ["attack_skills_have_added_lightning_damage_equal_to_%_of_maximum_mana"]=4806, + ["attack_speed_+%"]=1345, + ["attack_speed_+%_during_flask_effect"]=3232, + ["attack_speed_+%_final_per_blitz_charge"]=4812, + ["attack_speed_+%_for_4_seconds_on_attack"]=3466, + ["attack_speed_+%_if_cast_a_mark_spell_recently"]=4813, + ["attack_speed_+%_if_changed_stance_recently"]=10030, + ["attack_speed_+%_if_enemy_hit_with_main_hand_weapon_recently"]=4814, + ["attack_speed_+%_if_enemy_killed_recently"]=4815, + ["attack_speed_+%_if_enemy_not_killed_recently"]=4164, + ["attack_speed_+%_if_have_been_hit_recently"]=4816, + ["attack_speed_+%_if_have_blocked_recently"]=4817, + ["attack_speed_+%_if_have_crit_recently"]=4818, + ["attack_speed_+%_if_havent_cast_dash_recently"]=4819, + ["attack_speed_+%_if_not_gained_frenzy_charge_recently"]=4820, + ["attack_speed_+%_if_rare_or_unique_enemy_nearby"]=4821, + ["attack_speed_+%_if_you_have_at_least_600_strength"]=4822, + ["attack_speed_+%_per_10_dex"]=2477, + ["attack_speed_+%_per_200_accuracy_rating"]=4169, + ["attack_speed_+%_per_25_dex"]=4823, + ["attack_speed_+%_per_enemy_in_close_range"]=4807, + ["attack_speed_+%_per_explicit_map_mod_affecting_area"]=4808, + ["attack_speed_+%_per_fortification"]=4809, + ["attack_speed_+%_per_frenzy_charge"]=1980, + ["attack_speed_+%_per_minion_up_to_80%"]=4810, + ["attack_speed_+%_per_rage"]=4824, + ["attack_speed_+%_when_hit"]=3135, + ["attack_speed_+%_when_on_full_life"]=1158, + ["attack_speed_+%_when_on_low_life"]=1157, + ["attack_speed_+%_while_affected_by_precision"]=4825, + ["attack_speed_+%_while_chilled"]=4826, + ["attack_speed_+%_while_holding_shield"]=1352, + ["attack_speed_+%_while_ignited"]=2873, + ["attack_speed_+%_while_in_sand_stance"]=4811, + ["attack_speed_+%_while_leeching"]=3142, + ["attack_speed_+%_while_not_on_low_mana"]=4827, + ["attack_speed_+%_while_phasing"]=4828, + ["attack_speed_+%_with_channelling_skills"]=4829, + ["attack_speed_+%_with_movement_skills"]=1367, + ["attack_speed_while_dual_wielding_+%"]=1350, + ["attack_speed_while_fortified_+%"]=3147, + ["attacks_bleed_on_hit_while_you_have_cat_stealth"]=4831, + ["attacks_bleed_on_stun"]=2417, + ["attacks_cause_bleeding_vs_cursed_enemies"]=4832, + ["attacks_chance_to_bleed_25%_vs_cursed_enemies"]=4834, + ["attacks_chance_to_bleed_on_hit_%_vs_taunted_enemies"]=4835, + ["attacks_chance_to_blind_on_hit_%"]=4836, + ["attacks_chance_to_poison_%_on_max_frenzy_charges"]=1986, + ["attacks_chance_to_taunt_on_hit_%"]=4837, + ["attacks_corrosion_on_hit_%"]=4838, + ["attacks_deal_no_physical_damage"]=2412, + ["attacks_do_not_cost_mana"]=1827, + ["attacks_impale_on_hit_%_chance"]=4839, + ["attacks_inflict_unnerve_on_crit"]=4840, + ["attacks_intimidate_on_hit_%"]=4841, + ["attacks_num_of_additional_chains"]=4061, + ["attacks_num_of_additional_chains_when_in_main_hand"]=4126, + ["attacks_number_of_additional_projectiles"]=4127, + ["attacks_number_of_additional_projectiles_when_in_off_hand"]=4128, + ["attacks_poison_while_at_max_frenzy_charges"]=1985, + ["attacks_use_life_in_place_of_mana"]=10625, + ["attacks_with_this_weapon_maximum_added_chaos_damage_per_10_of_your_lowest_attribute"]=4844, + ["attacks_with_this_weapon_maximum_added_cold_damage_per_10_dexterity"]=4845, + ["attacks_with_this_weapon_maximum_es_%_to_add_as_cold_damage"]=4842, + ["attacks_with_this_weapon_maximum_mana_%_to_add_as_fire_damage"]=4843, + ["attacks_with_this_weapon_minimum_added_chaos_damage_per_10_of_your_lowest_attribute"]=4844, + ["attacks_with_this_weapon_minimum_added_cold_damage_per_10_dexterity"]=4845, + ["attacks_with_two_handed_weapons_impale_on_hit_%_chance"]=4846, + ["attribute_requirement_+%_for_equipped_armour"]=4847, + ["attribute_requirement_+%_for_equipped_weapons"]=4848, + ["attribute_requirements_can_be_satisfied_by_%_of_ascendance"]=1126, + ["aura_effect_+%"]=2752, + ["aura_effect_+%_on_self_from_allied_auras"]=4850, + ["aura_effect_on_self_from_skills_+%_per_herald_effecting_you"]=4849, + ["aura_effect_on_self_from_your_skills_+%"]=3501, + ["aura_grant_shield_defences_to_nearby_allies"]=3396, + ["aura_melee_physical_damage_+%_per_10_strength"]=3382, + ["auras_grant_additional_physical_damage_reduction_%_to_you_and_your_allies"]=3391, + ["auras_grant_attack_and_cast_speed_+%_to_you_and_your_allies"]=3392, + ["auras_grant_damage_+%_to_you_and_your_allies"]=3390, + ["auras_grant_life_mana_es_recovery_rate_+%_to_you_and_your_allies"]=4851, + ["avatar_of_fire_rotation_active"]=10632, + ["avians_flight_duration_ms_+"]=4852, + ["avians_might_duration_ms_+"]=4853, + ["avoid_ailments_%_from_crit"]=4854, + ["avoid_ailments_%_on_consecrated_ground"]=3487, + ["avoid_ailments_%_while_holding_shield"]=4855, + ["avoid_all_elemental_ailment_%_per_summoned_golem"]=4856, + ["avoid_all_elemental_status_%"]=1778, + ["avoid_all_elemental_status_%_per_stackable_unique_jewel"]=4089, + ["avoid_blind_%"]=2508, + ["avoid_chained_projectile_%_chance"]=4857, + ["avoid_chaos_damage_%"]=3308, + ["avoid_chill_freeze_while_casting_%"]=4858, + ["avoid_cold_damage_%"]=3306, + ["avoid_corrupted_blood_%_chance"]=4859, + ["avoid_damage_%"]=4860, + ["avoid_elemental_ailments_%_while_affected_by_elusive"]=4861, + ["avoid_elemental_ailments_%_while_phasing"]=4862, + ["avoid_elemental_damage_%_per_frenzy_charge"]=3304, + ["avoid_elemental_damage_chance_%_during_soul_gain_prevention"]=4863, + ["avoid_elemental_damage_while_phasing_%"]=4864, + ["avoid_fire_damage_%"]=3305, + ["avoid_freeze_and_chill_%_if_you_have_used_a_fire_skill_recently"]=4865, + ["avoid_freeze_chill_ignite_%_while_have_onslaught"]=2970, + ["avoid_freeze_chill_ignite_%_with_her_blessing"]=3212, + ["avoid_freeze_shock_ignite_bleed_%_during_flask_effect"]=4015, + ["avoid_ignite_%_when_on_low_life"]=1782, + ["avoid_impale_%"]=4866, + ["avoid_interruption_while_casting_%"]=1833, + ["avoid_knockback_%"]=1457, + ["avoid_lightning_damage_%"]=3307, + ["avoid_maim_%_chance"]=4867, + ["avoid_non_damaging_ailments_%_per_missing_barkskin_stack"]=4868, + ["avoid_physical_damage_%"]=3303, + ["avoid_physical_damage_%_while_phasing"]=4869, + ["avoid_projectiles_%_chance_if_taken_projectile_damage_recently"]=4870, + ["avoid_projectiles_while_phasing_%_chance"]=4871, + ["avoid_shock_%_while_chilled"]=4872, + ["avoid_status_ailments_%_during_flask_effect"]=3231, + ["avoid_stun_%"]=1785, + ["avoid_stun_%_for_4_seconds_on_kill"]=3258, + ["avoid_stun_%_while_channeling_snipe"]=4874, + ["avoid_stun_%_while_channelling"]=4875, + ["avoid_stun_%_while_holding_shield"]=4876, + ["avoid_stun_35%_per_active_herald"]=4873, + ["axe_accuracy_rating"]=1940, + ["axe_accuracy_rating_+%"]=1373, + ["axe_ailment_damage_+%"]=1239, + ["axe_attack_speed_+%"]=1355, + ["axe_critical_strike_chance_+%"]=1407, + ["axe_critical_strike_multiplier_+"]=1430, + ["axe_damage_+%"]=1236, + ["axe_hit_and_ailment_damage_+%"]=1237, + ["axe_mastery_hit_and_ailment_damage_+%_final_vs_enemies_on_low_life"]=4877, + ["axe_or_sword_ailment_damage_+%"]=1286, + ["axe_or_sword_hit_and_ailment_damage_+%"]=1285, + ["azmeri_primalist_wisps_found_+%"]=4878, + ["azmeri_voodoo_shaman_wisps_found_+%"]=4879, + ["azmeri_warden_wisps_found_+%"]=4880, + ["ball_lightning_damage_+%"]=3100, + ["ball_lightning_number_of_additional_projectiles"]=4881, + ["ball_lightning_projectile_speed_+%"]=3823, + ["ball_lightning_radius_+%"]=3756, + ["banner_affected_enemies_damage_taken_+%"]=4882, + ["banner_affected_enemies_explode_for_10%_life_as_physical_on_kill_chance_%"]=4883, + ["banner_affected_enemies_maimed"]=4884, + ["banner_area_of_effect_+%"]=4885, + ["banner_aura_effect_+%"]=3294, + ["banner_buff_lingers_for_X_seconds_after_leaving_area"]=4886, + ["banner_duration_+%"]=4887, + ["banner_gain_X_endurance_charges_when_placed_with_max_resources"]=4888, + ["banner_gain_X_frenzy_charges_when_placed_with_max_resources"]=4889, + ["banner_gain_X_resources_on_warcry"]=4890, + ["banner_mana_reservation_+%"]=4891, + ["banner_recover_X%_life_when_placed_per_5_resources"]=4892, + ["banner_remove_random_ailment_when_placed_with_X_resources"]=4893, + ["banner_resist_all_elements_%"]=4894, + ["banner_resource_gained_+%"]=4895, + ["banner_resource_maximum_+"]=4896, + ["banner_skills_mana_reservation_efficiency_+%"]=4898, + ["banner_skills_mana_reservation_efficiency_-2%_per_1"]=4897, + ["banner_skills_reserve_no_mana"]=4899, + ["barrage_and_frenzy_critical_strike_chance_+%_per_endurance_charge"]=4900, + ["barrage_attack_speed_+%"]=3792, + ["barrage_damage_+%"]=3593, + ["barrage_final_volley_fires_x_additional_projectiles_simultaneously"]=3196, + ["barrage_num_of_additional_projectiles"]=3881, + ["basalt_flask_armour_+%_final"]=4901, + ["base_%_maximum_life_inflicted_as_aoe_fire_damage_when_hit"]=3719, + ["base_actor_scale_+%"]=1990, + ["base_adaptation_rating"]=1467, + ["base_additional_physical_damage_reduction_%"]=2206, + ["base_aggravate_bleeding_on_attack_hit_chance_%"]=4536, + ["base_ailment_damage_+%"]=4902, + ["base_all_ailment_duration_+%"]=1795, + ["base_all_ailment_duration_on_self_+%"]=4903, + ["base_all_damage_can_cause_elemental_ailments_you_are_suffering_from"]=2798, + ["base_always_inflict_elemental_ailments_you_are_suffering_from"]=4904, + ["base_armour_%_applies_to_chaos_damage"]=4905, + ["base_armour_applies_to_chaos_damage"]=4906, + ["base_armour_applies_to_lightning_damage"]=4907, + ["base_arrow_speed_+%"]=1732, + ["base_arrows_always_pierce"]=4908, + ["base_attack_block_luck"]=4909, + ["base_attack_damage_penetrates_chaos_resist_%"]=3495, + ["base_attack_damage_penetrates_cold_resist_%"]=3493, + ["base_attack_damage_penetrates_elemental_resist_%"]=3490, + ["base_attack_damage_penetrates_fire_resist_%"]=3492, + ["base_attack_damage_penetrates_lightning_resist_%"]=3494, + ["base_attack_skill_cost_life_instead_of_mana_%"]=3726, + ["base_attack_speed_+%_per_frenzy_charge"]=1982, + ["base_aura_area_of_effect_+%"]=2157, + ["base_aura_skills_affecting_allies_also_affect_enemies"]=4910, + ["base_avoid_bleed_%"]=4147, + ["base_avoid_chill_%"]=1779, + ["base_avoid_chill_%_while_have_onslaught"]=2962, + ["base_avoid_freeze_%"]=1780, + ["base_avoid_ignite_%"]=1781, + ["base_avoid_poison_%"]=1784, + ["base_avoid_projectiles_%_chance"]=4911, + ["base_avoid_shock_%"]=1783, + ["base_avoid_stun_%"]=1786, + ["base_bleed_duration_+%"]=4912, + ["base_block_%_damage_taken"]=4914, + ["base_block_luck"]=4913, + ["base_bone_golem_granted_buff_effect_+%"]=4915, + ["base_can_gain_banner_resource"]=1074, + ["base_cannot_be_chilled"]=1772, + ["base_cannot_be_damaged"]=1525, + ["base_cannot_be_frozen"]=1773, + ["base_cannot_be_frozen_if_6_redeemer_items"]=4414, + ["base_cannot_be_ignited"]=1774, + ["base_cannot_be_shocked"]=1776, + ["base_cannot_be_stunned"]=2106, + ["base_cannot_be_stunned_if_6_elder_items"]=4415, + ["base_cannot_evade"]=1851, + ["base_cannot_gain_bleeding"]=4146, + ["base_cannot_gain_endurance_charges"]=4916, + ["base_cannot_leech"]=2398, + ["base_cannot_leech_energy_shield"]=4917, + ["base_cannot_leech_life"]=2500, + ["base_cannot_leech_mana"]=2501, + ["base_cast_speed_+%"]=1381, + ["base_chance_to_deal_triple_damage_%"]=4918, + ["base_chance_to_freeze_%"]=1962, + ["base_chance_to_ignite_%"]=1959, + ["base_chance_to_poison_on_hit_%"]=3105, + ["base_chance_to_shock_%"]=1966, + ["base_chaos_damage_%_of_maximum_life_taken_per_minute"]=1879, + ["base_chaos_damage_can_ignite"]=4919, + ["base_chaos_damage_damages_energy_shield_%"]=4920, + ["base_chaos_damage_resistance_%"]=1576, + ["base_chaos_damage_taken_per_minute"]=1880, + ["base_chaos_golem_granted_buff_effect_+%"]=4032, + ["base_charge_duration_+%"]=4921, + ["base_cold_damage_%_to_convert_to_chaos"]=1902, + ["base_cold_damage_%_to_convert_to_fire"]=1901, + ["base_cold_damage_can_poison"]=2799, + ["base_cold_damage_heals"]=2967, + ["base_cold_damage_resistance_%"]=1566, + ["base_cold_immunity"]=4034, + ["base_convert_%_physical_damage_to_random_element"]=1894, + ["base_cooldown_refresh_chance_%"]=4922, + ["base_cooldown_speed_+%"]=4923, + ["base_cooldown_speed_+%_if_2_shaper_items"]=4375, + ["base_cost_+%"]=1816, + ["base_critical_strike_multiplier_+"]=1423, + ["base_curse_duration_+%"]=1716, + ["base_damage_bypass_ward_%"]=4924, + ["base_damage_removed_from_mana_before_life_%"]=2631, + ["base_damage_taken_+%"]=2171, + ["base_deal_no_chaos_damage"]=4925, + ["base_deal_no_cold_damage"]=2726, + ["base_deal_no_fire_damage"]=4926, + ["base_deal_no_lightning_damage"]=4927, + ["base_deal_no_physical_damage"]=2724, + ["base_elemental_damage_heals"]=2969, + ["base_elemental_skill_gem_level_+_if_6_unique_influence_amoung_equipped_non_amulet_items"]=4928, + ["base_elemental_status_ailment_duration_+%"]=1796, + ["base_elemental_support_gem_level_+_if_6_unique_influence_amoung_equipped_non_amulet_items"]=4929, + ["base_enemy_critical_strike_chance_+%_against_self"]=3062, + ["base_enemy_extra_damage_rolls"]=4930, + ["base_energy_shield_gained_on_enemy_death"]=2504, + ["base_energy_shield_leech_from_chaos_damage_permyriad"]=4931, + ["base_energy_shield_leech_from_cold_damage_permyriad"]=4932, + ["base_energy_shield_leech_from_elemental_damage_permyriad"]=4933, + ["base_energy_shield_leech_from_elemental_damage_permyriad_if_2_shaper_items"]=4376, + ["base_energy_shield_leech_from_fire_damage_permyriad"]=4934, + ["base_energy_shield_leech_from_lightning_damage_permyriad"]=4935, + ["base_energy_shield_leech_from_physical_damage_permyriad"]=4936, + ["base_energy_shield_leech_from_physical_damage_permyriad_if_2_elder_items"]=4377, + ["base_energy_shield_leech_from_spell_damage_permyriad"]=1657, + ["base_energy_shield_regeneration_rate_per_minute"]=2577, + ["base_energy_shield_regeneration_rate_per_minute_%"]=2578, + ["base_es_cost_+"]=1822, + ["base_evasion_rating"]=1479, + ["base_extra_damage_rolls"]=4937, + ["base_fire_damage_%_to_convert_to_chaos"]=1903, + ["base_fire_damage_%_to_convert_to_chaos_60%_value"]=1904, + ["base_fire_damage_can_poison"]=2800, + ["base_fire_damage_heals"]=2966, + ["base_fire_damage_resistance_%"]=1560, + ["base_fire_elemental_maximum_life_+%"]=1707, + ["base_fire_golem_granted_buff_effect_+%"]=4029, + ["base_fire_hit_damage_taken_%_as_physical"]=2378, + ["base_fire_hit_damage_taken_%_as_physical_value_negated"]=2379, + ["base_fire_immunity"]=1541, + ["base_frenzy_charge_duration_+%"]=2060, + ["base_frozen_effect_on_self_+%"]=4938, + ["base_ghost_totem_duration"]=4939, + ["base_global_chance_to_knockback_%"]=1928, + ["base_ice_golem_granted_buff_effect_+%"]=4030, + ["base_immune_to_chill"]=2828, + ["base_immune_to_cold_ailments"]=4940, + ["base_immune_to_freeze"]=4941, + ["base_immune_to_ignite"]=4942, + ["base_immune_to_shock"]=4943, + ["base_inflict_cold_exposure_on_hit_%_chance"]=4944, + ["base_inflict_fire_exposure_on_hit_%_chance"]=4945, + ["base_inflict_lightning_exposure_on_hit_%_chance"]=4946, + ["base_item_found_quantity_+%"]=1527, + ["base_item_found_rarity_+%"]=1531, + ["base_killed_monster_dropped_item_quantity_+%"]=1946, + ["base_killed_monster_dropped_item_rarity_+%"]=1945, + ["base_leech_is_instant_on_critical"]=2471, + ["base_life_cost_+"]=1823, + ["base_life_cost_+%"]=1817, + ["base_life_gain_per_target"]=1675, + ["base_life_gained_on_enemy_death"]=1683, + ["base_life_gained_on_spell_hit"]=1674, + ["base_life_leech_applies_recovery_to_energy_shield"]=4947, + ["base_life_leech_from_attack_damage_permyriad"]=1599, + ["base_life_leech_from_attack_damage_permyriad_vs_chilled_enemies"]=1628, + ["base_life_leech_from_chaos_damage_permyriad"]=1617, + ["base_life_leech_from_cold_damage_permyriad"]=1610, + ["base_life_leech_from_elemental_damage_permyriad"]=1621, + ["base_life_leech_from_fire_damage_permyriad"]=1605, + ["base_life_leech_from_lightning_damage_permyriad"]=1614, + ["base_life_leech_from_physical_damage_permyriad"]=1601, + ["base_life_leech_from_spell_damage_permyriad"]=1598, + ["base_life_leech_is_instant"]=2469, + ["base_life_leech_permyriad_vs_frozen_enemies"]=1626, + ["base_life_leech_permyriad_vs_shocked_enemies"]=1623, + ["base_life_regeneration_rate_per_minute"]=1509, + ["base_life_reservation_+%"]=2160, + ["base_life_reservation_efficiency_+%"]=2159, + ["base_lightning_damage_%_to_convert_to_chaos"]=1899, + ["base_lightning_damage_%_to_convert_to_chaos_60%_value"]=1900, + ["base_lightning_damage_%_to_convert_to_cold"]=1898, + ["base_lightning_damage_%_to_convert_to_fire"]=1897, + ["base_lightning_damage_can_poison"]=2801, + ["base_lightning_damage_heals"]=2968, + ["base_lightning_damage_resistance_%"]=1571, + ["base_lightning_golem_granted_buff_effect_+%"]=4031, + ["base_lightning_immunity"]=4035, + ["base_main_hand_damage_+%"]=1217, + ["base_main_hand_maim_on_hit_%"]=4948, + ["base_mana_cost_+"]=1824, + ["base_mana_cost_+_with_channelling_skills"]=9869, + ["base_mana_cost_+_with_non_channelling_skills"]=9871, + ["base_mana_cost_-%"]=1818, + ["base_mana_gained_on_enemy_death"]=1698, + ["base_mana_leech_from_attack_damage_permyriad"]=1640, + ["base_mana_leech_from_chaos_damage_permyriad"]=1649, + ["base_mana_leech_from_cold_damage_permyriad"]=1645, + ["base_mana_leech_from_elemental_damage_permyriad"]=1651, + ["base_mana_leech_from_fire_damage_permyriad"]=1643, + ["base_mana_leech_from_lightning_damage_permyriad"]=1647, + ["base_mana_leech_from_physical_damage_permyriad"]=1641, + ["base_mana_leech_from_spell_damage_permyriad"]=1639, + ["base_mana_leech_permyriad_vs_shocked_enemies"]=1653, + ["base_mana_regeneration_rate_per_minute"]=1517, + ["base_mana_reservation_+%"]=2162, + ["base_mana_reservation_efficiency_+%"]=2161, + ["base_max_fortification"]=4949, + ["base_max_fortification_per_endurance_charge"]=4322, + ["base_maximum_chaos_damage_resistance_%"]=1575, + ["base_maximum_chaos_damage_resistance_%_if_4_hunter_items"]=4396, + ["base_maximum_cold_damage_resistance_%"]=1564, + ["base_maximum_cold_damage_resistance_%_if_4_redeemer_items"]=4397, + ["base_maximum_energy_shield"]=1493, + ["base_maximum_energy_shield_per_blue_socket_on_item"]=2658, + ["base_maximum_fire_damage_resistance_%"]=1558, + ["base_maximum_fire_damage_resistance_%_if_4_warlord_items"]=4398, + ["base_maximum_fragile_regrowth"]=4331, + ["base_maximum_life"]=1504, + ["base_maximum_life_per_red_socket_on_item"]=2650, + ["base_maximum_lightning_damage_on_charge_expiry"]=2490, + ["base_maximum_lightning_damage_resistance_%"]=1569, + ["base_maximum_lightning_damage_resistance_%_if_4_crusader_items"]=4399, + ["base_maximum_mana"]=1514, + ["base_maximum_mana_per_green_socket_on_item"]=2654, + ["base_maximum_spell_block_%"]=1922, + ["base_maximum_spell_block_%_if_4_shaper_items"]=4400, + ["base_melee_critical_strike_chance_while_unarmed_%"]=3503, + ["base_minimum_endurance_charges"]=1738, + ["base_minimum_frenzy_charges"]=1743, + ["base_minimum_lightning_damage_on_charge_expiry"]=2490, + ["base_minimum_power_charges"]=1748, + ["base_minion_duration_+%"]=4950, + ["base_movement_velocity_+%"]=1733, + ["base_movement_velocity_+%_if_4_hunter_items"]=4401, + ["base_no_mana"]=2112, + ["base_non_chaos_damage_bypass_energy_shield_%"]=582, + ["base_number_of_animated_weapons_allowed"]=9348, + ["base_number_of_arbalists"]=9349, + ["base_number_of_champions_of_light_allowed"]=4951, + ["base_number_of_essence_spirits_allowed"]=689, + ["base_number_of_golems_allowed"]=3622, + ["base_number_of_herald_scorpions_allowed"]=4952, + ["base_number_of_raging_spirits_allowed"]=2096, + ["base_number_of_relics_allowed"]=4953, + ["base_number_of_remote_mines_allowed"]=2186, + ["base_number_of_sacred_wisps_allowed"]=4954, + ["base_number_of_sigils_allowed_per_target"]=4955, + ["base_number_of_skeletons_allowed"]=2095, + ["base_number_of_spectres_allowed"]=2094, + ["base_number_of_support_ghosts_allowed"]=4956, + ["base_number_of_totems_allowed"]=2184, + ["base_number_of_traps_allowed"]=2185, + ["base_number_of_zombies_allowed"]=2093, + ["base_off_hand_attack_speed_+%"]=1351, + ["base_off_hand_chance_to_blind_on_hit_%"]=4957, + ["base_off_hand_damage_+%"]=1218, + ["base_onlsaught_on_hit_%_chance"]=4958, + ["base_penetrate_elemental_resistances_%"]=3491, + ["base_physical_damage_%_to_convert_to_chaos"]=1895, + ["base_physical_damage_%_to_convert_to_chaos_per_level"]=4960, + ["base_physical_damage_%_to_convert_to_cold"]=1890, + ["base_physical_damage_%_to_convert_to_cold_while_affected_by_hatred"]=4961, + ["base_physical_damage_%_to_convert_to_fire"]=1888, + ["base_physical_damage_%_to_convert_to_fire_while_affected_by_anger"]=4962, + ["base_physical_damage_%_to_convert_to_lightning"]=1892, + ["base_physical_damage_%_to_convert_to_lightning_while_affected_by_wrath"]=4963, + ["base_physical_damage_over_time_taken_+%"]=4959, + ["base_physical_damage_reduction_and_evasion_rating"]=4197, + ["base_physical_damage_reduction_rating"]=1474, + ["base_poison_damage_+%"]=3113, + ["base_poison_duration_+%"]=3102, + ["base_projectile_speed_+%"]=1731, + ["base_rage_cost_+%"]=1819, + ["base_raven_maximum_life_+%"]=1708, + ["base_reduce_enemy_cold_resistance_%"]=2916, + ["base_reduce_enemy_fire_resistance_%"]=2914, + ["base_reduce_enemy_lightning_resistance_%"]=2917, + ["base_remove_elemental_ailments_from_you_when_you_inflict_them"]=9710, + ["base_reservation_+%"]=2164, + ["base_reservation_efficiency_+%"]=2163, + ["base_resist_all_elements_%"]=1554, + ["base_self_chill_duration_-%"]=1807, + ["base_self_critical_strike_multiplier_-%"]=1447, + ["base_self_freeze_duration_-%"]=1809, + ["base_self_ignite_duration_-%"]=1810, + ["base_self_shock_duration_-%"]=1808, + ["base_should_have_onslaught_from_stat"]=3529, + ["base_skill_area_of_effect_+%"]=1815, + ["base_skill_cost_life_instead_of_mana"]=176, + ["base_skill_cost_life_instead_of_mana_%"]=4964, + ["base_skill_gain_es_cost_%_of_mana_cost"]=4965, + ["base_skill_gain_life_cost_%_of_mana_cost"]=4966, + ["base_skill_reserve_life_instead_of_mana"]=177, + ["base_skills_cost_es_instead_of_mana_life"]=4967, + ["base_spectre_maximum_life_+%"]=1705, + ["base_spell_block_%"]=1096, + ["base_spell_block_luck"]=1095, + ["base_spell_critical_chance_equal_to_the_critical_strike_chance_of_main_weapon"]=4968, + ["base_spell_critical_strike_chance"]=1391, + ["base_spell_critical_strike_multiplier_+"]=1427, + ["base_spell_damage_%_suppressed"]=1078, + ["base_spell_projectile_block_%"]=4969, + ["base_spell_suppression_chance_%"]=1080, + ["base_spell_suppression_chance_150%_of_value"]=1079, + ["base_steal_power_frenzy_endurance_charges_on_hit_%"]=2925, + ["base_stone_golem_granted_buff_effect_+%"]=4028, + ["base_strength_and_intelligence"]=412, + ["base_stun_duration_+%"]=1798, + ["base_stun_recovery_+%"]=1835, + ["base_stun_threshold_reduction_+%"]=1452, + ["base_tincture_mod_effect_+%"]=4970, + ["base_total_number_of_sigils_allowed"]=4971, + ["base_unaffected_by_bleeding"]=4972, + ["base_unaffected_by_poison"]=4973, + ["base_unaffected_by_poison_if_2_hunter_items"]=4378, + ["base_ward"]=1462, + ["base_weapon_trap_rotation_speed_+%"]=4974, + ["base_weapon_trap_total_rotation_%"]=4975, + ["base_your_auras_are_disabled"]=4976, + ["base_zombie_maximum_life_+%"]=1706, + ["battlemages_cry_buff_effect_+%"]=4977, + ["battlemages_cry_exerts_x_additional_attacks"]=4978, + ["bear_and_siphoning_trap_debuff_grants_-%_cooldown_speed"]=4981, + ["bear_trap_additional_damage_taken_+%_from_traps_and_mines"]=4982, + ["bear_trap_cooldown_speed_+%"]=3810, + ["bear_trap_damage_+%"]=3638, + ["bear_trap_damage_taken_+%_from_traps_and_mines"]=4983, + ["bear_trap_movement_speed_+%_final"]=4984, + ["belt_enchant_enemies_you_taunt_have_area_damage_+%_final"]=4985, + ["berserk_buff_effect_+%"]=4986, + ["berserk_rage_loss_+%"]=4987, + ["berserker_damage_+%_final"]=3986, + ["berserker_gain_rage_on_attack_hit_cooldown_ms"]=4988, + ["berserker_warcry_grant_X_rage_per_5_power_while_less_than_25_rage"]=4989, + ["berserker_warcry_grant_attack_speed_+%_to_you_and_nearby_allies"]=4990, + ["berserker_warcry_grant_damage_+%_to_you_and_nearby_allies"]=4991, + ["berserker_warcry_sacrifice_25_rage_for_more_empowered_attack_damage_for_4_seconds_+%_final"]=4992, + ["bird_aspect_reserves_no_mana"]=4993, + ["blackhole_damage_taken_+%"]=4994, + ["blackhole_pulse_frequency_+%"]=4995, + ["blackstar_moonlight_cold_damage_taken_+%_final"]=4996, + ["blackstar_moonlight_fire_damage_taken_+%_final"]=4997, + ["blackstar_sunlight_cold_damage_taken_+%_final"]=4998, + ["blackstar_sunlight_fire_damage_taken_+%_final"]=4999, + ["blade_blase_damage_+%"]=5000, + ["blade_blast_skill_area_of_effect_+%"]=5001, + ["blade_blast_trigger_detonation_area_of_effect_+%"]=5002, + ["blade_trap_damage_+%"]=5003, + ["blade_trap_skill_area_of_effect_+%"]=5004, + ["blade_trap_skill_area_of_effect_+%_final"]=5005, + ["blade_vortex_blade_blast_impale_on_hit_%_chance"]=5006, + ["blade_vortex_blade_deal_no_non_physical_damage"]=5007, + ["blade_vortex_critical_strike_multiplier_+_per_blade"]=5008, + ["blade_vortex_damage_+%"]=3661, + ["blade_vortex_duration_+%"]=3857, + ["blade_vortex_radius_+%"]=3773, + ["bladefall_critical_strike_chance_+%"]=3876, + ["bladefall_damage_+%"]=3662, + ["bladefall_number_of_volleys"]=5009, + ["bladefall_radius_+%"]=3774, + ["bladestorm_and_rage_vortex_hinders_and_unnerves_enemies_within"]=5010, + ["bladestorm_damage_+%"]=5011, + ["bladestorm_maximum_number_of_storms_allowed"]=5012, + ["bladestorm_sandstorm_movement_speed_+%"]=5013, + ["blast_rain_%_chance_for_additional_blast"]=4040, + ["blast_rain_artillery_ballista_all_damage_can_poison"]=5014, + ["blast_rain_artillery_ballista_poison_damage_+100%_final_chance"]=5015, + ["blast_rain_damage_+%"]=3658, + ["blast_rain_number_of_blasts"]=3923, + ["blast_rain_radius_+%"]=3770, + ["blast_rain_single_additional_projectile"]=3924, + ["blazing_salvo_damage_+%"]=5016, + ["blazing_salvo_number_of_additional_projectiles"]=5017, + ["blazing_salvo_projectiles_fork_when_passing_a_flame_wall"]=5018, + ["bleed_damage_+%_per_endurance_charge"]=5019, + ["bleed_damage_+%_vs_maimed_enemies_final"]=4179, + ["bleed_dot_multiplier_+_per_impale_on_enemy"]=5020, + ["bleed_dot_multiplier_+_per_rage_if_equipped_axe"]=5021, + ["bleed_duration_per_12_intelligence_+%"]=3731, + ["bleed_on_bow_attack_chance_%"]=2421, + ["bleed_on_crit_%_with_attacks"]=2418, + ["bleed_on_hit_with_attacks_%"]=2422, + ["bleed_on_melee_attack_chance_%"]=2420, + ["bleed_on_melee_crit_chance_%"]=2419, + ["bleed_on_melee_critical_strike"]=4210, + ["bleeding_damage_+%"]=3101, + ["bleeding_damage_+%_vs_maimed_enemies"]=5022, + ["bleeding_damage_+%_vs_poisoned_enemies"]=5023, + ["bleeding_damage_on_self_converted_to_chaos"]=2383, + ["bleeding_dot_multiplier_+"]=1184, + ["bleeding_dot_multiplier_+_per_endurance_charge"]=5025, + ["bleeding_dot_multiplier_+_vs_poisoned_enemies"]=5026, + ["bleeding_dot_multiplier_per_frenzy_charge_+"]=5024, + ["bleeding_enemies_explode_for_%_life_as_physical_damage"]=3413, + ["bleeding_monsters_movement_velocity_+%"]=2899, + ["bleeding_on_self_expire_speed_+%_while_moving"]=5027, + ["bleeding_reflected_to_self"]=5028, + ["bleeding_stacks_up_to_x_times"]=5029, + ["blight_arc_tower_additional_chains"]=5030, + ["blight_arc_tower_additional_repeats"]=5031, + ["blight_arc_tower_chance_to_sap_%"]=5032, + ["blight_arc_tower_damage_+%"]=5033, + ["blight_arc_tower_range_+%"]=5034, + ["blight_area_of_effect_+%_every_second_while_channelling_up_to_+200%"]=5035, + ["blight_cast_speed_+%"]=5036, + ["blight_chilling_tower_chill_effect_+%"]=5037, + ["blight_chilling_tower_damage_+%"]=5038, + ["blight_chilling_tower_duration_+%"]=5039, + ["blight_chilling_tower_freeze_for_ms"]=5040, + ["blight_chilling_tower_range_+%"]=5041, + ["blight_damage_+%"]=3671, + ["blight_duration_+%"]=3859, + ["blight_empowering_tower_buff_effect_+%"]=5042, + ["blight_empowering_tower_grant_%_chance_to_deal_double_damage"]=5045, + ["blight_empowering_tower_grant_cast_speed_+%"]=5043, + ["blight_empowering_tower_grant_damage_+%"]=5044, + ["blight_empowering_tower_range_+%"]=5046, + ["blight_fireball_tower_additional_projectiles_+"]=5047, + ["blight_fireball_tower_cast_speed_+%"]=5048, + ["blight_fireball_tower_damage_+%"]=5049, + ["blight_fireball_tower_projectiles_nova"]=5050, + ["blight_fireball_tower_range_+%"]=5051, + ["blight_flamethrower_tower_cast_speed_+%"]=5052, + ["blight_flamethrower_tower_chance_to_scorch_%"]=5053, + ["blight_flamethrower_tower_damage_+%"]=5054, + ["blight_flamethrower_tower_full_damage_fire_enemies"]=5055, + ["blight_flamethrower_tower_range_+%"]=5056, + ["blight_freezebolt_tower_chance_to_brittle_%"]=5057, + ["blight_freezebolt_tower_damage_+%"]=5058, + ["blight_freezebolt_tower_full_damage_cold_enemies"]=5059, + ["blight_freezebolt_tower_projectiles_+"]=5060, + ["blight_freezebolt_tower_range_+%"]=5061, + ["blight_glacialcage_tower_area_of_effect_+%"]=5062, + ["blight_glacialcage_tower_cooldown_recovery_+%"]=5063, + ["blight_glacialcage_tower_duration_+%"]=5064, + ["blight_glacialcage_tower_enemy_damage_taken_+%"]=5065, + ["blight_glacialcage_tower_range_+%"]=5066, + ["blight_hinder_enemy_chaos_damage_taken_+%"]=5067, + ["blight_imbuing_tower_buff_effect_+%"]=5068, + ["blight_imbuing_tower_grant_critical_strike_+%"]=5069, + ["blight_imbuing_tower_grant_damage_+%"]=5070, + ["blight_imbuing_tower_grants_onslaught"]=5071, + ["blight_imbuing_tower_range_+%"]=5072, + ["blight_lightningstorm_tower_area_of_effect_+%"]=5073, + ["blight_lightningstorm_tower_damage_+%"]=5074, + ["blight_lightningstorm_tower_delay_+%"]=5075, + ["blight_lightningstorm_tower_range_+%"]=5076, + ["blight_lightningstorm_tower_storms_on_enemies"]=5077, + ["blight_meteor_tower_additional_meteor_+"]=5078, + ["blight_meteor_tower_always_stun"]=5079, + ["blight_meteor_tower_creates_burning_ground_ms"]=5080, + ["blight_meteor_tower_damage_+%"]=5081, + ["blight_meteor_tower_range_+%"]=5082, + ["blight_radius_+%"]=3779, + ["blight_scout_tower_additional_minions_+"]=5083, + ["blight_scout_tower_minion_damage_+%"]=5084, + ["blight_scout_tower_minion_life_+%"]=5085, + ["blight_scout_tower_minion_movement_speed_+%"]=5086, + ["blight_scout_tower_minions_inflict_malediction"]=5087, + ["blight_scout_tower_range_+%"]=5088, + ["blight_secondary_skill_effect_duration_+%"]=5089, + ["blight_seismic_tower_additional_cascades_+"]=5090, + ["blight_seismic_tower_cascade_range_+%"]=5091, + ["blight_seismic_tower_damage_+%"]=5092, + ["blight_seismic_tower_range_+%"]=5093, + ["blight_seismic_tower_stun_duration_+%"]=5094, + ["blight_sentinel_tower_minion_damage_+%"]=5095, + ["blight_sentinel_tower_minion_life_+%"]=5096, + ["blight_sentinel_tower_minion_movement_speed_+%"]=5097, + ["blight_sentinel_tower_minions_life_leech_%"]=5098, + ["blight_sentinel_tower_range_+%"]=5099, + ["blight_shocking_tower_damage_+%"]=5100, + ["blight_shocking_tower_range_+%"]=5101, + ["blight_shocknova_tower_full_damage_lightning_enemies"]=5102, + ["blight_shocknova_tower_shock_additional_repeats"]=5103, + ["blight_shocknova_tower_shock_effect_+%"]=5104, + ["blight_shocknova_tower_shock_repeats_with_area_effect_+%"]=5105, + ["blight_skill_area_of_effect_+%_after_1_second_channelling"]=5106, + ["blight_smothering_tower_buff_effect_+%"]=5107, + ["blight_smothering_tower_freeze_shock_ignite_%"]=5108, + ["blight_smothering_tower_grant_damage_+%"]=5109, + ["blight_smothering_tower_grant_movement_speed_+%"]=5110, + ["blight_smothering_tower_range_+%"]=5111, + ["blight_stonegaze_tower_cooldown_recovery_+%"]=5112, + ["blight_stonegaze_tower_duration_+%"]=5113, + ["blight_stonegaze_tower_petrified_enemies_take_damage_+%"]=5114, + ["blight_stonegaze_tower_petrify_tick_speed_+%"]=5115, + ["blight_stonegaze_tower_range_+%"]=5116, + ["blight_summoning_tower_minion_damage_+%"]=5117, + ["blight_summoning_tower_minion_life_+%"]=5118, + ["blight_summoning_tower_minion_movement_speed_+%"]=5119, + ["blight_summoning_tower_minions_summoned_+"]=5120, + ["blight_summoning_tower_range_+%"]=5121, + ["blight_temporal_tower_buff_effect_+%"]=5122, + ["blight_temporal_tower_grant_you_action_speed_-%"]=5123, + ["blight_temporal_tower_grants_stun_immunity"]=5124, + ["blight_temporal_tower_range_+%"]=5125, + ["blight_temporal_tower_tick_speed_+%"]=5126, + ["blight_tertiary_skill_effect_duration"]=5127, + ["blight_tower_arc_damage_+%"]=5128, + ["blight_tower_chilling_cost_+%"]=5129, + ["blight_tower_damage_per_tower_type_+%"]=5130, + ["blight_tower_fireball_additional_projectile"]=5131, + ["blighted_map_chest_reward_lucky_count"]=5132, + ["blighted_map_tower_damage_+%_final"]=5133, + ["blind_chilled_enemies_on_hit_%"]=5134, + ["blind_does_not_affect_chance_to_hit"]=5135, + ["blind_does_not_affect_light_radius"]=5136, + ["blind_duration_+%"]=3367, + ["blind_effect_+%"]=5137, + ["blind_enemies_when_hit_%_chance"]=5138, + ["blind_enemies_when_hit_while_affected_by_grace_%_chance"]=5139, + ["blind_nearby_enemies_when_gaining_her_blessing_%"]=3211, + ["blind_nearby_enemies_when_ignited_%"]=2974, + ["blind_reflected_to_self"]=5140, + ["blink_and_mirror_arrow_clones_inherit_gloves"]=5141, + ["blink_and_mirror_arrow_cooldown_speed_+%"]=5142, + ["blink_arrow_and_blink_arrow_clone_attack_speed_+%"]=3799, + ["blink_arrow_and_blink_arrow_clone_damage_+%"]=3651, + ["blink_arrow_cooldown_speed_+%"]=3815, + ["block_%_damage_taken_from_elemental"]=5147, + ["block_%_if_blocked_an_attack_recently"]=5148, + ["block_%_while_affected_by_determination"]=5149, + ["block_and_stun_+%_recovery_per_fortification"]=5143, + ["block_causes_monster_flee_%"]=2893, + ["block_chance_%_per_50_strength"]=1089, + ["block_chance_%_vs_cursed_enemies"]=5144, + ["block_chance_%_vs_taunted_enemies"]=4120, + ["block_chance_%_while_holding_shield"]=1100, + ["block_chance_+%"]=1102, + ["block_chance_+%_per_100_life_spent_recently"]=5145, + ["block_chance_from_equipped_shield_is_%"]=5146, + ["block_chance_on_damage_taken_%"]=3148, + ["block_recovery_+%"]=1103, + ["block_spells_chance_%_while_holding_shield"]=5150, + ["block_while_dual_wielding_%"]=1098, + ["block_while_dual_wielding_claws_%"]=1099, + ["blood_footprints_from_item"]=10647, + ["blood_rage_grants_additional_%_chance_to_gain_frenzy_on_kill"]=4037, + ["blood_rage_grants_additional_attack_speed_+%"]=4036, + ["blood_sand_armour_mana_reservation_+%"]=5151, + ["blood_sand_mana_reservation_efficiency_+%"]=5153, + ["blood_sand_mana_reservation_efficiency_-2%_per_1"]=5152, + ["blood_sand_stance_buff_effect_+%"]=5154, + ["blood_spears_area_of_effect_+%"]=5155, + ["blood_spears_base_number_of_spears"]=5156, + ["blood_spears_damage_+%"]=5157, + ["bloodreap_damage_+%"]=5158, + ["bloodreap_skill_area_of_effect_+%"]=5159, + ["body_armour_defences_doubled_while_no_gems_in_body_armour"]=5160, + ["body_armour_evasion_rating_+%"]=5161, + ["body_armour_implicit_damage_taken_-1%_final_per_X_dexterity"]=5162, + ["body_armour_implicit_damage_taken_-1%_final_per_X_intelligence"]=5163, + ["body_armour_implicit_damage_taken_-1%_final_per_X_strength"]=5164, + ["body_armour_implicit_gain_endurance_charge_every_x_ms"]=5165, + ["body_armour_implicit_gain_frenzy_charge_every_x_ms"]=5166, + ["body_armour_implicit_gain_power_charge_every_x_ms"]=5167, + ["body_armour_trigger_socketed_spell_on_unarmed_melee_critical_hit_cooldown"]=690, + ["bone_golem_damage_+%"]=5168, + ["bone_golem_elemental_resistances_%"]=5169, + ["bone_lance_cast_speed_+%"]=5170, + ["bone_lance_damage_+%"]=5171, + ["bone_offering_block_chance_+%"]=4052, + ["bone_offering_duration_+%"]=3833, + ["bone_offering_effect_+%"]=1108, + ["boneshatter_chance_to_gain_+1_trauma"]=5172, + ["boneshatter_damage_+%"]=5173, + ["boneshatter_stun_duration_+%"]=5174, + ["boots_implicit_accuracy_rating_+%_final"]=5175, + ["boots_implicit_ground_brittle_duration_ms"]=5176, + ["boots_implicit_ground_sapping_duration_ms"]=5177, + ["boots_implicit_ground_scorched_duration_ms"]=5178, + ["boots_mod_effect_+%"]=5179, + ["boss_maximum_life_+%_final"]=5180, + ["bow_accuracy_rating"]=1938, + ["bow_accuracy_rating_+%"]=1378, + ["bow_ailment_damage_+%"]=1269, + ["bow_attack_speed_+%"]=1360, + ["bow_attacks_have_culling_strike"]=5181, + ["bow_attacks_turn_frenzy_charges_into_additional_arrows"]=1728, + ["bow_attacks_usable_without_mana_cost"]=5182, + ["bow_critical_strike_chance_+%"]=1400, + ["bow_critical_strike_multiplier_+"]=1431, + ["bow_damage_+%"]=1266, + ["bow_elemental_damage_+%"]=1272, + ["bow_enemy_block_-%"]=1838, + ["bow_hit_and_ailment_damage_+%"]=1267, + ["bow_physical_damage_+%_while_holding_shield"]=1920, + ["bow_steal_power_frenzy_endurance_charges_on_hit_%"]=2885, + ["bow_stun_duration_+%"]=1800, + ["bow_stun_threshold_reduction_+%"]=1454, + ["brand_activation_rate_+%_final_during_first_20%_of_active_duration"]=5183, + ["brand_activation_rate_+%_final_during_last_20%_of_active_duration"]=5184, + ["brand_area_of_effect_+%_if_50%_attached_duration_expired"]=5185, + ["brands_reattach_on_activation"]=5186, + ["breach_ring_chayula_implicit"]=5187, + ["breach_ring_esh_implicit"]=5188, + ["breach_ring_tul_implicit"]=5189, + ["breach_ring_uulnetol_implicit"]=5190, + ["breach_ring_xoph_implicit"]=5191, + ["breachstone_commanders_%_drop_additional_fragments"]=5192, + ["breachstone_commanders_%_drop_additional_maps"]=5193, + ["breachstone_commanders_%_drop_additional_scarabs"]=5194, + ["breachstone_commanders_%_drop_additional_unique_items"]=5195, + ["breachstone_commanders_drop_additional_currency_items"]=5196, + ["breachstone_commanders_drop_additional_divination_cards"]=5197, + ["brequel_currency_fruit_X_lucky_rolls"]=5198, + ["brequel_currency_fruit_additional_10_items_%"]=10437, + ["brequel_currency_fruit_additional_3_items_%"]=5199, + ["brequel_currency_fruit_additional_item_%"]=5200, + ["brequel_currency_fruit_basic_currency_converted_to_shards"]=5201, + ["brequel_currency_fruit_can_create_graft_currency"]=5202, + ["brequel_currency_fruit_can_create_mutated_currency"]=5203, + ["brequel_currency_fruit_full_stack_chance_%"]=5204, + ["brequel_currency_fruit_gold_chance_%"]=5205, + ["brequel_currency_fruit_graft_currency_chance_+%"]=5206, + ["brequel_currency_fruit_mutated_currency_chance_+%"]=5207, + ["brequel_equipment_fruit_1h_weapon_chance_+%"]=5208, + ["brequel_equipment_fruit_2h_weapon_chance_+%"]=5209, + ["brequel_equipment_fruit_X_divine_rolls"]=5210, + ["brequel_equipment_fruit_additional_item_%"]=5211, + ["brequel_equipment_fruit_amulet_chance_+%"]=5212, + ["brequel_equipment_fruit_armour_chance_+%"]=5213, + ["brequel_equipment_fruit_attack_modifier_chance_+%"]=5214, + ["brequel_equipment_fruit_attribute_modifier_chance_+%"]=5215, + ["brequel_equipment_fruit_belt_chance_+%"]=5216, + ["brequel_equipment_fruit_body_armour_chance_+%"]=5217, + ["brequel_equipment_fruit_boots_chance_+%"]=5218, + ["brequel_equipment_fruit_caster_modifier_chance_+%"]=5219, + ["brequel_equipment_fruit_chaos_modifier_chance_+%"]=5220, + ["brequel_equipment_fruit_cold_modifier_chance_+%"]=5221, + ["brequel_equipment_fruit_critical_modifier_chance_+%"]=5222, + ["brequel_equipment_fruit_defence_modifier_chance_+%"]=5223, + ["brequel_equipment_fruit_dexterity_requirement_chance_+%_final"]=5224, + ["brequel_equipment_fruit_fire_modifier_chance_+%"]=5225, + ["brequel_equipment_fruit_fractured_chance_%"]=5226, + ["brequel_equipment_fruit_gloves_chance_+%"]=5227, + ["brequel_equipment_fruit_helmet_chance_+%"]=5228, + ["brequel_equipment_fruit_intelligence_requirement_chance_+%_final"]=5229, + ["brequel_equipment_fruit_item_level_+"]=10438, + ["brequel_equipment_fruit_item_rarity_+%"]=5230, + ["brequel_equipment_fruit_jewel_chance_+%"]=5231, + ["brequel_equipment_fruit_jewel_enabled"]=5232, + ["brequel_equipment_fruit_jewellery_chance_+%"]=5233, + ["brequel_equipment_fruit_life_modifier_chance_+%"]=5234, + ["brequel_equipment_fruit_lightning_modifier_chance_+%"]=5235, + ["brequel_equipment_fruit_mana_modifier_chance_+%"]=5236, + ["brequel_equipment_fruit_mod_tier_rating_+"]=5237, + ["brequel_equipment_fruit_physical_modifier_chance_+%"]=5238, + ["brequel_equipment_fruit_quiver_chance_+%"]=5239, + ["brequel_equipment_fruit_ranged_weapon_chance_+%"]=5240, + ["brequel_equipment_fruit_remove_lowest_level_modifier"]=5241, + ["brequel_equipment_fruit_resistance_modifier_chance_+%"]=5242, + ["brequel_equipment_fruit_ring_chance_+%"]=5243, + ["brequel_equipment_fruit_shield_chance_+%"]=5244, + ["brequel_equipment_fruit_speed_modifier_chance_+%"]=5245, + ["brequel_equipment_fruit_strength_requirement_chance_+%_final"]=5246, + ["brequel_equipment_fruit_weapon_and_armour_X_lucky_socket_number_and_links_rolls"]=5247, + ["brequel_equipment_fruit_weapon_and_armour_random_quality"]=5248, + ["brequel_equipment_fruit_weapon_chance_+%"]=5249, + ["brequel_graft_fruit_additional_item_%"]=5250, + ["brequel_graft_fruit_esh_chance_+%"]=5251, + ["brequel_graft_fruit_item_level_+"]=5252, + ["brequel_graft_fruit_item_rarity_+%"]=5253, + ["brequel_graft_fruit_mod_tier_rating_+"]=5254, + ["brequel_graft_fruit_random_quality"]=5255, + ["brequel_graft_fruit_tul_chance_+%"]=5256, + ["brequel_graft_fruit_uul_netol_chance_+%"]=5257, + ["brequel_graft_fruit_xoph_chance_+%"]=5258, + ["brequel_misc_fruit_additional_item_%"]=4979, + ["brequel_misc_fruit_common_rewards_chance_+%"]=5259, + ["brequel_misc_fruit_currency_fruit_chance_+%"]=5260, + ["brequel_misc_fruit_equipment_fruit_chance_+%"]=5261, + ["brequel_misc_fruit_graft_fruit_chance_+%"]=5262, + ["brequel_misc_fruit_other_fruits_enabled"]=5263, + ["brequel_misc_fruit_rarer_rewards_chance_+%"]=5264, + ["brequel_misc_fruit_unique_fruit_chance_+%"]=5265, + ["brequel_unique_fruit_1h_weapon_chance_+%"]=5266, + ["brequel_unique_fruit_2h_weapon_chance_+%"]=5267, + ["brequel_unique_fruit_X_divine_rolls"]=5268, + ["brequel_unique_fruit_X_lucky_rolls"]=5269, + ["brequel_unique_fruit_additional_item_%"]=5270, + ["brequel_unique_fruit_amulet_chance_+%"]=5271, + ["brequel_unique_fruit_armour_chance_+%"]=5272, + ["brequel_unique_fruit_belt_chance_+%"]=5273, + ["brequel_unique_fruit_body_armour_chance_+%"]=5274, + ["brequel_unique_fruit_boots_chance_+%"]=5275, + ["brequel_unique_fruit_dexterity_requirement_chance_+%"]=5276, + ["brequel_unique_fruit_flask_chance_+%"]=5277, + ["brequel_unique_fruit_gloves_chance_+%"]=5278, + ["brequel_unique_fruit_helmet_chance_+%"]=5279, + ["brequel_unique_fruit_intelligence_requirement_chance_+%"]=5280, + ["brequel_unique_fruit_jewel_chance_+%"]=5281, + ["brequel_unique_fruit_jewellery_chance_+%"]=5282, + ["brequel_unique_fruit_multiple_mutation_chance_%"]=5283, + ["brequel_unique_fruit_mutation_chance_+%"]=5284, + ["brequel_unique_fruit_non_mutated_items_are_corrupted"]=5285, + ["brequel_unique_fruit_quiver_chance_+%"]=5286, + ["brequel_unique_fruit_ranged_weapon_chance_+%"]=5287, + ["brequel_unique_fruit_ring_chance_+%"]=5288, + ["brequel_unique_fruit_shield_chance_+%"]=5289, + ["brequel_unique_fruit_special_unique_chance_+%"]=4980, + ["brequel_unique_fruit_strength_requirement_chance_+%"]=5290, + ["brequel_unique_fruit_weapon_and_armour_X_lucky_socket_number_and_links_rolls"]=5291, + ["brequel_unique_fruit_weapon_and_armour_random_quality"]=5292, + ["brequel_unique_fruit_weapon_chance_+%"]=5293, + ["buff_affects_party"]=1720, + ["buff_auras_dont_affect_allies"]=2952, + ["buff_duration_+%"]=1715, + ["buff_effect_+%_on_low_energy_shield"]=5294, + ["buff_effect_on_self_+%"]=2077, + ["buff_party_effect_radius_+%"]=1721, + ["buff_time_passed_+%"]=5296, + ["buff_time_passed_+%_only_buff_category"]=5295, + ["burn_damage_+%"]=1812, + ["burning_and_explosive_arrow_shatter_on_killing_blow"]=5297, + ["burning_arrow_damage_+%"]=3560, + ["burning_arrow_debuff_effect_+%"]=5298, + ["burning_arrow_ignite_chance_%"]=3888, + ["burning_arrow_physical_damage_%_to_add_as_fire_damage"]=3889, + ["burning_damage_+%_if_ignited_an_enemy_recently"]=4231, + ["burning_damage_+%_per_non_shocked_enemy_shocked_recently_up_to_120%"]=5299, + ["burning_damage_taken_+%"]=2481, + ["burning_ground_effect_on_self_+%"]=2083, + ["can_apply_additional_scorch"]=5300, + ["can_apply_additional_tincture"]=5301, + ["can_catch_corrupted_fish"]=2789, + ["can_catch_exotic_fish"]=2788, + ["can_catch_mutated_fish"]=5302, + ["can_catch_scourged_fish"]=5303, + ["can_gain_banner_resource_while_banner_is_placed"]=1074, + ["can_inflict_multiple_ignites"]=2527, + ["can_only_have_one_ancestor_totem_buff"]=5304, + ["can_only_inflict_wither_against_full_life_enemies"]=5305, + ["can_see_corpse_types"]=682, + ["can_trigger_summon_elemental_relic_on_nearby_ally_kill_or_on_hit_rare_or_unique"]=5306, + ["cannot_adapt_to_cold"]=5307, + ["cannot_adapt_to_fire"]=5308, + ["cannot_adapt_to_lightning"]=5309, + ["cannot_be_affected_by_flasks"]=3679, + ["cannot_be_bled_by_bleeding_enemies"]=5310, + ["cannot_be_blinded"]=2907, + ["cannot_be_blinded_while_affected_by_precision"]=5311, + ["cannot_be_chilled_or_frozen_while_ice_golem_summoned"]=5312, + ["cannot_be_chilled_or_frozen_while_moving"]=5313, + ["cannot_be_chilled_while_at_maximum_frenzy_charges"]=5314, + ["cannot_be_chilled_while_burning"]=5315, + ["cannot_be_crit_if_you_have_been_stunned_recently"]=5316, + ["cannot_be_cursed_with_silence"]=3026, + ["cannot_be_frozen_if_energy_shield_recharge_has_started_recently"]=5317, + ["cannot_be_frozen_if_you_have_been_frozen_recently"]=5318, + ["cannot_be_frozen_with_dex_higher_than_int"]=5319, + ["cannot_be_ignited_by_ignited_enemies"]=5320, + ["cannot_be_ignited_if_you_have_been_ignited_recently"]=5321, + ["cannot_be_ignited_while_at_maximum_endurance_charges"]=5322, + ["cannot_be_ignited_while_flame_golem_summoned"]=5323, + ["cannot_be_ignited_with_strength_higher_than_dex"]=5324, + ["cannot_be_inflicted_by_corrupted_blood"]=5325, + ["cannot_be_killed_by_elemental_reflect"]=2608, + ["cannot_be_knocked_back"]=1456, + ["cannot_be_poisoned"]=3301, + ["cannot_be_poisoned_if_x_poisons_on_you"]=5326, + ["cannot_be_poisoned_while_bleeding"]=5327, + ["cannot_be_shocked_if_you_have_been_shocked_recently"]=5328, + ["cannot_be_shocked_or_ignited_while_moving"]=5329, + ["cannot_be_shocked_while_at_maximum_endurance_charges"]=4109, + ["cannot_be_shocked_while_at_maximum_power_charges"]=5330, + ["cannot_be_shocked_while_frozen"]=2832, + ["cannot_be_shocked_while_lightning_golem_summoned"]=5331, + ["cannot_be_shocked_with_int_higher_than_strength"]=5332, + ["cannot_be_stunned"]=2105, + ["cannot_be_stunned_by_attacks_if_other_ring_is_elder_item"]=4258, + ["cannot_be_stunned_by_blocked_hits"]=5333, + ["cannot_be_stunned_by_hits_of_only_physical_damage"]=5334, + ["cannot_be_stunned_by_spells_if_other_ring_is_shaper_item"]=4257, + ["cannot_be_stunned_by_suppressed_spell_damage"]=5335, + ["cannot_be_stunned_if_have_been_stunned_or_blocked_stunning_hit_in_past_2_seconds"]=5336, + ["cannot_be_stunned_if_have_not_been_hit_recently"]=5337, + ["cannot_be_stunned_if_you_have_10_or_more_crab_charges"]=4278, + ["cannot_be_stunned_if_you_have_been_stunned_recently"]=5338, + ["cannot_be_stunned_if_you_have_blocked_a_stun_recently"]=5339, + ["cannot_be_stunned_if_you_have_ghost_dance"]=5340, + ["cannot_be_stunned_when_on_low_life"]=2107, + ["cannot_be_stunned_while_at_max_endurance_charges"]=3983, + ["cannot_be_stunned_while_bleeding"]=5341, + ["cannot_be_stunned_while_fortified"]=5342, + ["cannot_be_stunned_while_leeching"]=3144, + ["cannot_be_stunned_while_no_gems_in_helmet"]=5343, + ["cannot_be_stunned_while_using_chaos_skill"]=5344, + ["cannot_be_stunned_with_25_rage"]=9602, + ["cannot_block_attacks"]=2191, + ["cannot_block_spells"]=5345, + ["cannot_block_while_no_energy_shield"]=2667, + ["cannot_cast_curses"]=2616, + ["cannot_cast_spells"]=5346, + ["cannot_cause_bleeding"]=2422, + ["cannot_crit_non_shocked_enemies"]=4068, + ["cannot_critical_strike_with_attacks"]=5347, + ["cannot_fish_from_water"]=5348, + ["cannot_freeze_shock_ignite_on_critical"]=2609, + ["cannot_gain_charges"]=5349, + ["cannot_gain_corrupted_blood_while_you_have_at_least_5_stacks"]=5350, + ["cannot_gain_damaging_ailments"]=5351, + ["cannot_gain_endurance_charges_while_have_onslaught"]=2688, + ["cannot_gain_power_charges"]=5352, + ["cannot_gain_rage_during_soul_gain_prevention"]=5353, + ["cannot_have_energy_shield_leeched_from"]=5354, + ["cannot_have_life_leeched_from"]=2373, + ["cannot_have_mana_leeched_from"]=2374, + ["cannot_have_more_than_1_damaging_ailment"]=5355, + ["cannot_have_more_than_1_non_damaging_ailment"]=5356, + ["cannot_increase_quantity_of_dropped_items"]=2483, + ["cannot_increase_rarity_of_dropped_items"]=2482, + ["cannot_inflict_status_ailments"]=1797, + ["cannot_knockback"]=2943, + ["cannot_leech_life_from_critical_strikes"]=4208, + ["cannot_leech_or_regenerate_mana"]=2502, + ["cannot_leech_when_on_low_life"]=2503, + ["cannot_lose_crab_charges_if_you_have_lost_crab_charges_recently"]=4279, + ["cannot_penetrate_or_ignore_elemental_resistances"]=5357, + ["cannot_receive_elemental_ailments_from_cursed_enemies"]=5358, + ["cannot_receive_elemental_ailments_while_no_gems_in_body_armour"]=5359, + ["cannot_recharge_energy_shield"]=5360, + ["cannot_regenerate_energy_shield"]=5361, + ["cannot_resist_cold_damage"]=2124, + ["cannot_stun"]=1790, + ["cannot_summon_mirage_archer_if_near_mirage_archer_radius"]=4347, + ["cannot_take_reflected_elemental_damage"]=5362, + ["cannot_take_reflected_elemental_damage_if_4_shaper_items"]=4402, + ["cannot_take_reflected_physical_damage"]=5363, + ["cannot_take_reflected_physical_damage_if_4_elder_items"]=4403, + ["cannot_taunt_enemies"]=5364, + ["cannot_use_flask_in_fifth_slot"]=5365, + ["cannot_use_life_flasks"]=5366, + ["carrion_golem_impale_on_hit_if_same_number_of_summoned_chaos_golems"]=5367, + ["cast_a_socketed_spell_on_channel_with_blade_flurry_or_charged_dash"]=5368, + ["cast_blink_arrow_on_attack_with_mirror_arrow"]=5369, + ["cast_body_swap_on_detonate_dead_cast"]=5370, + ["cast_bone_corpses_on_stun_with_heavy_strike_or_boneshatter"]=5371, + ["cast_gravity_sphere_on_cast_from_storm_burst_or_divine_ire"]=5372, + ["cast_hydrosphere_while_channeling_winter_orb"]=5373, + ["cast_ice_nova_on_final_burst_of_glacial_cascade"]=5374, + ["cast_linked_spells_on_shocked_enemy_kill_%"]=691, + ["cast_mirror_arrow_on_attack_with_blink_arrow"]=5375, + ["cast_socketed_minion_skills_on_bow_kill_%"]=692, + ["cast_socketed_spells_on_X_life_spent"]=693, + ["cast_socketed_spells_on_X_mana_spent"]=694, + ["cast_socketed_spells_on_life_spent_%_chance"]=693, + ["cast_socketed_spells_on_mana_spent_%_chance"]=694, + ["cast_speed_+%_during_flask_effect"]=5382, + ["cast_speed_+%_final_while_holding_fishing_rod"]=5376, + ["cast_speed_+%_for_4_seconds_on_attack"]=3467, + ["cast_speed_+%_if_enemy_killed_recently"]=5383, + ["cast_speed_+%_if_have_crit_recently"]=5384, + ["cast_speed_+%_if_player_minion_has_been_killed_recently"]=5385, + ["cast_speed_+%_per_20_dexterity"]=5377, + ["cast_speed_+%_per_corpse_consumed_recently"]=5386, + ["cast_speed_+%_per_frenzy_charge"]=1934, + ["cast_speed_+%_per_num_unique_spells_cast_recently"]=5378, + ["cast_speed_+%_per_power_charge"]=1386, + ["cast_speed_+%_when_on_full_life"]=1933, + ["cast_speed_+%_when_on_low_life"]=1932, + ["cast_speed_+%_while_affected_by_zealotry"]=5387, + ["cast_speed_+%_while_chilled"]=5388, + ["cast_speed_+%_while_holding_bow"]=1385, + ["cast_speed_+%_while_holding_shield"]=1383, + ["cast_speed_+%_while_holding_staff"]=1384, + ["cast_speed_+%_while_ignited"]=2874, + ["cast_speed_for_brand_skills_+%"]=5379, + ["cast_speed_for_chaos_skills_+%"]=1327, + ["cast_speed_for_cold_skills_+%"]=1311, + ["cast_speed_for_elemental_skills_+%"]=5380, + ["cast_speed_for_fire_skills_+%"]=1300, + ["cast_speed_for_lightning_skills_+%"]=1319, + ["cast_speed_for_minion_skills_+%"]=5381, + ["cast_speed_increase_from_arcane_surge_also_applies_to_move_speed"]=4371, + ["cast_speed_while_dual_wielding_+%"]=1382, + ["cast_stance_change_on_attack_from_perforate_or_lacerate"]=5389, + ["cast_summon_spectral_wolf_on_crit_with_cleave_or_reave"]=5390, + ["cast_tornado_on_attack_with_split_arrow_or_tornado_shot"]=5391, + ["cat_aspect_reserves_no_mana"]=5392, + ["cats_stealth_duration_ms_+"]=5393, + ["cause_maim_on_critical_strike_attack"]=4006, + ["caustic_and_scourge_arrow_number_of_projectiles_+%_final_from_skill"]=5394, + ["caustic_arrow_chance_to_poison_%_vs_enemies_on_caustic_ground"]=5395, + ["caustic_arrow_damage_+%"]=3620, + ["caustic_arrow_damage_over_time_+%"]=5396, + ["caustic_arrow_duration_+%"]=3867, + ["caustic_arrow_hit_damage_+%"]=5397, + ["caustic_arrow_radius_+%"]=3764, + ["caustic_arrow_withered_base_duration_ms"]=3621, + ["caustic_arrow_withered_on_hit_%"]=3621, + ["caustic_cloud_on_death_maximum_life_per_minute_to_deal_as_chaos_damage_%"]=3373, + ["celestial_footprints_from_item"]=10648, + ["chain_hook_and_shield_charge_attack_speed_+%_per_10_rampage_stacks"]=5398, + ["chain_strike_cone_radius_+_per_12_rage"]=5399, + ["chain_strike_damage_+%"]=5400, + ["chain_strike_gain_rage_on_hit_%_chance"]=5401, + ["chaining_range_+%"]=5402, + ["champion_ascendancy_nearby_allies_fortification_is_equal_to_yours"]=5403, + ["chance_%_elemental_ailments_redirected_to_nearby_minion"]=5459, + ["chance_%_to_convert_armour_to_blessed_orb"]=5404, + ["chance_%_to_convert_armour_to_cartographers_chisel"]=5405, + ["chance_%_to_convert_armour_to_chromatic_orb"]=5406, + ["chance_%_to_convert_armour_to_fusing_orb"]=5407, + ["chance_%_to_convert_armour_to_jewellers_orb"]=5408, + ["chance_%_to_convert_armour_to_orb_of_alteration"]=5409, + ["chance_%_to_convert_armour_to_orb_of_binding"]=5410, + ["chance_%_to_convert_armour_to_orb_of_horizons"]=5411, + ["chance_%_to_convert_armour_to_orb_of_scouring"]=5412, + ["chance_%_to_convert_armour_to_orb_of_unmaking"]=5413, + ["chance_%_to_convert_jewellery_to_divine_orb"]=5414, + ["chance_%_to_convert_jewellery_to_exalted_orb"]=5415, + ["chance_%_to_convert_jewellery_to_orb_of_annulment"]=5416, + ["chance_%_to_convert_weapon_to_chaos_orb"]=5417, + ["chance_%_to_convert_weapon_to_enkindling_orb"]=5418, + ["chance_%_to_convert_weapon_to_gemcutters_prism"]=5419, + ["chance_%_to_convert_weapon_to_glassblowers_bauble"]=5420, + ["chance_%_to_convert_weapon_to_instilling_orb"]=5421, + ["chance_%_to_convert_weapon_to_orb_of_regret"]=5422, + ["chance_%_to_convert_weapon_to_regal_orb"]=5423, + ["chance_%_to_convert_weapon_to_vaal_orb"]=5424, + ["chance_%_to_drop_additional_awakened_sextant"]=5425, + ["chance_%_to_drop_additional_blessed_orb"]=5426, + ["chance_%_to_drop_additional_cartographers_chisel"]=5427, + ["chance_%_to_drop_additional_chaos_orb"]=5428, + ["chance_%_to_drop_additional_chromatic_orb"]=5429, + ["chance_%_to_drop_additional_cleansing_currency"]=5460, + ["chance_%_to_drop_additional_cleansing_influenced_item"]=5461, + ["chance_%_to_drop_additional_currency"]=5462, + ["chance_%_to_drop_additional_divination_cards"]=5463, + ["chance_%_to_drop_additional_divination_cards_corrupted"]=5464, + ["chance_%_to_drop_additional_divination_cards_currency"]=5465, + ["chance_%_to_drop_additional_divination_cards_currency_basic"]=5466, + ["chance_%_to_drop_additional_divination_cards_currency_exotic"]=5467, + ["chance_%_to_drop_additional_divination_cards_currency_league"]=5468, + ["chance_%_to_drop_additional_divination_cards_gems"]=5469, + ["chance_%_to_drop_additional_divination_cards_gems_levelled"]=5470, + ["chance_%_to_drop_additional_divination_cards_gems_quality"]=5471, + ["chance_%_to_drop_additional_divination_cards_gives_other_divination_cards"]=5472, + ["chance_%_to_drop_additional_divination_cards_map"]=5473, + ["chance_%_to_drop_additional_divination_cards_map_unique"]=5474, + ["chance_%_to_drop_additional_divination_cards_unique"]=5475, + ["chance_%_to_drop_additional_divination_cards_unique_armour"]=5476, + ["chance_%_to_drop_additional_divination_cards_unique_corrupted"]=5477, + ["chance_%_to_drop_additional_divination_cards_unique_jewellery"]=5478, + ["chance_%_to_drop_additional_divination_cards_unique_weapon"]=5479, + ["chance_%_to_drop_additional_divine_orb"]=5430, + ["chance_%_to_drop_additional_eldritch_chaos_orb"]=5431, + ["chance_%_to_drop_additional_eldritch_exalted_orb"]=5432, + ["chance_%_to_drop_additional_eldritch_orb_of_annulment"]=5433, + ["chance_%_to_drop_additional_enkindling_orb"]=5434, + ["chance_%_to_drop_additional_exalted_orb"]=5435, + ["chance_%_to_drop_additional_fusing_orb"]=5436, + ["chance_%_to_drop_additional_gem"]=5480, + ["chance_%_to_drop_additional_gemcutters_prism"]=5437, + ["chance_%_to_drop_additional_glassblowers_bauble"]=5438, + ["chance_%_to_drop_additional_grand_eldritch_ember"]=5439, + ["chance_%_to_drop_additional_grand_eldritch_ichor"]=5440, + ["chance_%_to_drop_additional_greater_eldritch_ember"]=5441, + ["chance_%_to_drop_additional_greater_eldritch_ichor"]=5442, + ["chance_%_to_drop_additional_instilling_orb"]=5443, + ["chance_%_to_drop_additional_jewellers_orb"]=5444, + ["chance_%_to_drop_additional_lesser_eldritch_ember"]=5445, + ["chance_%_to_drop_additional_lesser_eldritch_ichor"]=5446, + ["chance_%_to_drop_additional_map_currency"]=5482, + ["chance_%_to_drop_additional_maps"]=5481, + ["chance_%_to_drop_additional_orb_of_alteration"]=5447, + ["chance_%_to_drop_additional_orb_of_annulment"]=5448, + ["chance_%_to_drop_additional_orb_of_binding"]=5449, + ["chance_%_to_drop_additional_orb_of_horizons"]=5450, + ["chance_%_to_drop_additional_orb_of_regret"]=5451, + ["chance_%_to_drop_additional_orb_of_scouring"]=5452, + ["chance_%_to_drop_additional_orb_of_unmaking"]=5453, + ["chance_%_to_drop_additional_regal_orb"]=5454, + ["chance_%_to_drop_additional_scarab"]=5483, + ["chance_%_to_drop_additional_scarab_abyss"]=5484, + ["chance_%_to_drop_additional_scarab_abyss_gilded"]=5485, + ["chance_%_to_drop_additional_scarab_abyss_polished"]=5486, + ["chance_%_to_drop_additional_scarab_abyss_rusted"]=5487, + ["chance_%_to_drop_additional_scarab_anarchy"]=5488, + ["chance_%_to_drop_additional_scarab_beasts"]=5489, + ["chance_%_to_drop_additional_scarab_beasts_gilded"]=5490, + ["chance_%_to_drop_additional_scarab_beasts_polished"]=5491, + ["chance_%_to_drop_additional_scarab_beasts_rusted"]=5492, + ["chance_%_to_drop_additional_scarab_betrayal"]=5493, + ["chance_%_to_drop_additional_scarab_beyond"]=5494, + ["chance_%_to_drop_additional_scarab_blight"]=5495, + ["chance_%_to_drop_additional_scarab_blight_gilded"]=5496, + ["chance_%_to_drop_additional_scarab_blight_polished"]=5497, + ["chance_%_to_drop_additional_scarab_blight_rusted"]=5498, + ["chance_%_to_drop_additional_scarab_breach"]=5499, + ["chance_%_to_drop_additional_scarab_breach_gilded"]=5500, + ["chance_%_to_drop_additional_scarab_breach_polished"]=5501, + ["chance_%_to_drop_additional_scarab_breach_rusted"]=5502, + ["chance_%_to_drop_additional_scarab_delirium"]=5503, + ["chance_%_to_drop_additional_scarab_divination"]=5504, + ["chance_%_to_drop_additional_scarab_divination_cards_gilded"]=5505, + ["chance_%_to_drop_additional_scarab_divination_cards_polished"]=5506, + ["chance_%_to_drop_additional_scarab_divination_cards_rusted"]=5507, + ["chance_%_to_drop_additional_scarab_domination"]=5508, + ["chance_%_to_drop_additional_scarab_elder_gilded"]=5509, + ["chance_%_to_drop_additional_scarab_elder_polished"]=5510, + ["chance_%_to_drop_additional_scarab_elder_rusted"]=5511, + ["chance_%_to_drop_additional_scarab_essence"]=5512, + ["chance_%_to_drop_additional_scarab_expedition"]=5513, + ["chance_%_to_drop_additional_scarab_harbinger"]=5514, + ["chance_%_to_drop_additional_scarab_harbinger_gilded"]=5515, + ["chance_%_to_drop_additional_scarab_harbinger_polished"]=5516, + ["chance_%_to_drop_additional_scarab_harbinger_rusted"]=5517, + ["chance_%_to_drop_additional_scarab_harvest"]=5518, + ["chance_%_to_drop_additional_scarab_incursion"]=5519, + ["chance_%_to_drop_additional_scarab_influence"]=5520, + ["chance_%_to_drop_additional_scarab_legion"]=5521, + ["chance_%_to_drop_additional_scarab_legion_gilded"]=5522, + ["chance_%_to_drop_additional_scarab_legion_polished"]=5523, + ["chance_%_to_drop_additional_scarab_legion_rusted"]=5524, + ["chance_%_to_drop_additional_scarab_maps"]=5525, + ["chance_%_to_drop_additional_scarab_maps_gilded"]=5526, + ["chance_%_to_drop_additional_scarab_maps_polished"]=5527, + ["chance_%_to_drop_additional_scarab_maps_rusted"]=5528, + ["chance_%_to_drop_additional_scarab_metamorph_gilded"]=5529, + ["chance_%_to_drop_additional_scarab_metamorph_polished"]=5530, + ["chance_%_to_drop_additional_scarab_metamorph_rusted"]=5531, + ["chance_%_to_drop_additional_scarab_misc"]=5532, + ["chance_%_to_drop_additional_scarab_perandus_gilded"]=5533, + ["chance_%_to_drop_additional_scarab_perandus_polished"]=5534, + ["chance_%_to_drop_additional_scarab_perandus_rusted"]=5535, + ["chance_%_to_drop_additional_scarab_ritual"]=5536, + ["chance_%_to_drop_additional_scarab_settlers"]=5537, + ["chance_%_to_drop_additional_scarab_shaper_gilded"]=5538, + ["chance_%_to_drop_additional_scarab_shaper_polished"]=5539, + ["chance_%_to_drop_additional_scarab_shaper_rusted"]=5540, + ["chance_%_to_drop_additional_scarab_strongbox"]=5541, + ["chance_%_to_drop_additional_scarab_strongbox_gilded"]=5542, + ["chance_%_to_drop_additional_scarab_strongbox_polished"]=5543, + ["chance_%_to_drop_additional_scarab_strongbox_rusted"]=5544, + ["chance_%_to_drop_additional_scarab_sulphite"]=5545, + ["chance_%_to_drop_additional_scarab_sulphite_gilded"]=5546, + ["chance_%_to_drop_additional_scarab_sulphite_polished"]=5547, + ["chance_%_to_drop_additional_scarab_sulphite_rusted"]=5548, + ["chance_%_to_drop_additional_scarab_torment"]=5549, + ["chance_%_to_drop_additional_scarab_torment_gilded"]=5550, + ["chance_%_to_drop_additional_scarab_torment_polished"]=5551, + ["chance_%_to_drop_additional_scarab_torment_rusted"]=5552, + ["chance_%_to_drop_additional_scarab_ultimatum"]=5553, + ["chance_%_to_drop_additional_scarab_uniques"]=5554, + ["chance_%_to_drop_additional_scarab_uniques_gilded"]=5555, + ["chance_%_to_drop_additional_scarab_uniques_polished"]=5556, + ["chance_%_to_drop_additional_scarab_uniques_rusted"]=5557, + ["chance_%_to_drop_additional_tangled_currency"]=5558, + ["chance_%_to_drop_additional_tangled_influenced_item"]=5559, + ["chance_%_to_drop_additional_unique"]=5560, + ["chance_%_to_drop_additional_vaal_orb"]=5455, + ["chance_%_to_drop_additional_veiled_chaos_orb"]=5456, + ["chance_%_to_return_to_full_life_on_reaching_low_life"]=5561, + ["chance_for_double_items_from_heist_chests_%"]=5457, + ["chance_for_elemental_damage_to_be_added_as_additional_chaos_damage_%"]=3482, + ["chance_for_exerted_attacks_to_not_reduce_count_%"]=5458, + ["chance_per_second_of_fire_spreading_between_enemies_%"]=1811, + ["chance_to_avoid_stun_%_aura_while_wielding_a_staff"]=3247, + ["chance_to_be_frozen_%"]=2880, + ["chance_to_be_frozen_shocked_ignited_%"]=2883, + ["chance_to_be_hindered_when_hit_by_spells_%"]=5562, + ["chance_to_be_ignited_%"]=2881, + ["chance_to_be_maimed_when_hit_%"]=5563, + ["chance_to_be_poisoned_%"]=3302, + ["chance_to_be_sapped_when_hit_%"]=5564, + ["chance_to_be_scorched_when_hit_%"]=5565, + ["chance_to_be_shocked_%"]=2882, + ["chance_to_block_attack_damage_if_not_blocked_recently_%"]=5566, + ["chance_to_block_attack_damage_if_stunned_an_enemy_recently_+%"]=5567, + ["chance_to_block_attack_damage_if_used_retaliation_recently_%"]=5568, + ["chance_to_block_attack_damage_per_5%_chance_to_block_on_equipped_shield_+%"]=5569, + ["chance_to_block_attacks_%_while_channelling"]=5570, + ["chance_to_block_spells_%_if_cast_a_spell_recently"]=5572, + ["chance_to_block_spells_%_if_damaged_by_a_hit_recently"]=5573, + ["chance_to_block_spells_%_if_used_retaliation_recently"]=5571, + ["chance_to_block_spells_%_while_affected_by_discipline"]=5574, + ["chance_to_block_spells_%_while_channelling"]=5575, + ["chance_to_counter_strike_when_hit_%"]=2762, + ["chance_to_create_consecrated_ground_on_melee_kill_%"]=5576, + ["chance_to_crush_on_hit_%"]=5577, + ["chance_to_curse_self_with_punishment_on_kill_%"]=3053, + ["chance_to_deal_double_attack_damage_%_if_attack_time_longer_than_1_second"]=5578, + ["chance_to_deal_double_damage_%"]=5581, + ["chance_to_deal_double_damage_%_if_crit_with_two_handed_melee_weapon_recently"]=5582, + ["chance_to_deal_double_damage_%_if_have_stunned_an_enemy_recently"]=5583, + ["chance_to_deal_double_damage_%_if_used_a_warcry_in_past_8_seconds"]=5584, + ["chance_to_deal_double_damage_%_per_10_intelligence"]=5585, + ["chance_to_deal_double_damage_%_per_4_rage"]=5586, + ["chance_to_deal_double_damage_%_per_500_strength"]=5587, + ["chance_to_deal_double_damage_%_while_at_least_200_strength"]=5579, + ["chance_to_deal_double_damage_%_while_focused"]=5588, + ["chance_to_deal_double_damage_+%_if_cast_vulnerability_in_past_10_seconds"]=5589, + ["chance_to_deal_double_damage_for_3_seconds_on_spell_cast_every_9_seconds"]=5580, + ["chance_to_deal_double_damage_while_affected_by_glorious_madness_%"]=10501, + ["chance_to_deal_double_damage_while_on_full_life_%"]=5590, + ["chance_to_deal_triple_damage_%_while_at_least_400_strength"]=5591, + ["chance_to_defend_with_150%_armour_%_per_5%_missing_energy_shield"]=5592, + ["chance_to_double_armour_effect_on_hit_%"]=5593, + ["chance_to_double_armour_effect_on_hit_%_per_enemy_hit_taken_recently_capped"]=5594, + ["chance_to_double_stun_duration_%"]=3496, + ["chance_to_evade_%_while_you_have_energy_shield"]=5598, + ["chance_to_evade_attacks_%"]=5595, + ["chance_to_evade_attacks_%_if_havent_been_hit_recently"]=5596, + ["chance_to_evade_attacks_%_while_affected_by_grace"]=5597, + ["chance_to_fork_extra_projectile_%"]=5599, + ["chance_to_fortify_on_melee_hit_+%"]=2197, + ["chance_to_fortify_on_melee_hit_+%_if_6_warlord_items"]=4416, + ["chance_to_fortify_on_melee_stun_%"]=5600, + ["chance_to_freeze_%_while_using_flask"]=2856, + ["chance_to_freeze_enemies_for_1_second_when_hit_%"]=5601, + ["chance_to_freeze_shock_ignite_%"]=2735, + ["chance_to_freeze_shock_ignite_%_during_flask_effect"]=4157, + ["chance_to_freeze_shock_ignite_%_while_affected_by_a_herald"]=5602, + ["chance_to_gain_200_life_on_hit_with_attacks_%"]=5603, + ["chance_to_gain_3_additional_exerted_attacks_%"]=5604, + ["chance_to_gain_adrenaline_for_2_seconds_on_leech_removed_by_filling_unreserved_life_%"]=5605, + ["chance_to_gain_arohonguis_embrace_%_on_kill"]=602, + ["chance_to_gain_elusive_when_you_block_while_dual_wielding_%"]=5606, + ["chance_to_gain_endurance_charge_on_block_%"]=2057, + ["chance_to_gain_endurance_charge_on_bow_crit_%"]=1757, + ["chance_to_gain_endurance_charge_on_crit_%"]=1754, + ["chance_to_gain_endurance_charge_on_hit_%_vs_bleeding_enemy"]=5607, + ["chance_to_gain_endurance_charge_on_melee_crit_%"]=1755, + ["chance_to_gain_endurance_charge_when_hit_%"]=2685, + ["chance_to_gain_endurance_charge_when_you_stun_enemy_%"]=5608, + ["chance_to_gain_endurance_charge_when_you_taunt_enemy_%"]=5609, + ["chance_to_gain_frenzy_charge_on_block_%"]=5611, + ["chance_to_gain_frenzy_charge_on_block_attack_%"]=5610, + ["chance_to_gain_frenzy_charge_on_killing_frozen_enemy_%"]=1758, + ["chance_to_gain_frenzy_charge_on_stun_%"]=5612, + ["chance_to_gain_hinekoras_embrace_%_on_kill"]=603, + ["chance_to_gain_kitavas_embrace_%_on_kill"]=604, + ["chance_to_gain_max_crab_stacks_when_you_would_gain_a_crab_stack_%"]=4285, + ["chance_to_gain_ngamahus_embrace_%_on_kill"]=605, + ["chance_to_gain_old_unholy_might_on_kill_for_10_seconds_%"]=5622, + ["chance_to_gain_onslaught_for_4_seconds_on_leech_removed_by_filling_unreserved_life_%"]=5613, + ["chance_to_gain_onslaught_on_flask_use_%"]=5614, + ["chance_to_gain_onslaught_on_hit_%_vs_rare_or_unique_enemy"]=5615, + ["chance_to_gain_onslaught_on_kill_%"]=2926, + ["chance_to_gain_onslaught_on_kill_for_10_seconds_%"]=5616, + ["chance_to_gain_onslaught_on_kill_for_4_seconds_%"]=3312, + ["chance_to_gain_power_charge_on_hitting_enemy_affected_by_spiders_web_%"]=5617, + ["chance_to_gain_power_charge_on_killing_frozen_enemy_%"]=1759, + ["chance_to_gain_power_charge_on_melee_stun_%"]=2704, + ["chance_to_gain_power_charge_on_rare_or_unique_enemy_hit_%"]=5618, + ["chance_to_gain_power_charge_on_stun_%"]=2705, + ["chance_to_gain_power_charge_when_block_%"]=2061, + ["chance_to_gain_ramakos_embrace_%_on_kill"]=606, + ["chance_to_gain_random_curse_when_hit_%_per_10_levels"]=2697, + ["chance_to_gain_random_standard_charge_on_hit_%"]=5619, + ["chance_to_gain_rongokurais_embrace_%_on_kill"]=607, + ["chance_to_gain_skill_cost_as_mana_when_paid_%"]=5620, + ["chance_to_gain_tasalios_embrace_%_on_kill"]=608, + ["chance_to_gain_tawhoas_embrace_%_on_kill"]=609, + ["chance_to_gain_tukohamas_embrace_%_on_kill"]=610, + ["chance_to_gain_unholy_might_on_block_%"]=2978, + ["chance_to_gain_unholy_might_on_block_ms"]=2978, + ["chance_to_gain_unholy_might_on_crit_for_4_seconds_%"]=5621, + ["chance_to_gain_unholy_might_on_kill_for_3_seconds_%"]=3309, + ["chance_to_gain_unholy_might_on_kill_for_4_seconds_%"]=3310, + ["chance_to_gain_unholy_might_on_melee_kill_%"]=3015, + ["chance_to_gain_vaal_soul_on_enemy_shatter_%"]=3041, + ["chance_to_gain_vaal_soul_on_kill_%"]=3036, + ["chance_to_gain_valakos_embrace_%_on_kill"]=611, + ["chance_to_grant_endurance_charge_to_nearby_allies_on_hit_%"]=5623, + ["chance_to_grant_frenzy_charge_to_nearby_allies_on_hit_%"]=3317, + ["chance_to_grant_frenzy_charge_to_nearby_allies_on_kill_%"]=5624, + ["chance_to_grant_nearby_enemies_old_unholy_might_on_kill_%"]=3315, + ["chance_to_grant_nearby_enemies_onslaught_on_kill_%"]=3314, + ["chance_to_grant_power_charge_on_shocking_chilled_enemy_%"]=5625, + ["chance_to_grant_power_charge_to_nearby_allies_on_kill_%"]=3316, + ["chance_to_ignite_%_while_ignited"]=2875, + ["chance_to_ignite_%_while_using_flask"]=2855, + ["chance_to_ignite_freeze_shock_and_poison_+%_vs_cursed_enemies"]=5626, + ["chance_to_ignore_hexproof_%"]=5627, + ["chance_to_inflict_additional_impale_%"]=5628, + ["chance_to_inflict_brittle_on_enemy_on_block_%"]=5629, + ["chance_to_inflict_cold_exposure_on_hit_with_cold_damage_%"]=5630, + ["chance_to_inflict_fire_exposure_on_hit_with_fire_damage_%"]=5631, + ["chance_to_inflict_frostburn_%"]=1963, + ["chance_to_inflict_lightning_exposure_on_hit_with_lightning_damage_%"]=5632, + ["chance_to_inflict_sap_on_enemy_on_block_%"]=5633, + ["chance_to_inflict_sapped_%"]=1967, + ["chance_to_inflict_scorch_on_enemy_on_block_%"]=5634, + ["chance_to_intimidate_nearby_enemies_on_melee_kill_%"]=5635, + ["chance_to_intimidate_on_hit_%"]=5636, + ["chance_to_leave_2_ground_blades_%"]=5637, + ["chance_to_not_gain_tincture_toxicity_%"]=5638, + ["chance_to_place_an_additional_mine_%"]=3480, + ["chance_to_poison_%_vs_cursed_enemies"]=4139, + ["chance_to_poison_on_critical_strike_with_bow_%"]=1388, + ["chance_to_poison_on_critical_strike_with_dagger_%"]=1389, + ["chance_to_poison_on_hit_%_per_power_charge"]=5639, + ["chance_to_poison_on_hit_with_attacks_%"]=3107, + ["chance_to_poison_on_melee_hit_%"]=4190, + ["chance_to_remove_1_tincture_toxicity_on_kill_%"]=5640, + ["chance_to_sap_%_vs_enemies_in_chilling_areas"]=5641, + ["chance_to_scorch_%"]=1960, + ["chance_to_shock_%_while_using_flask"]=2857, + ["chance_to_shock_chilled_enemies_%"]=5642, + ["chance_to_start_energy_shield_recharge_%_on_linking_target"]=5643, + ["chance_to_summon_two_totems_%"]=5644, + ["chance_to_taunt_on_hit_%"]=3362, + ["chance_to_throw_4_additional_traps_%"]=5645, + ["chance_to_trigger_socketed_bow_skill_on_bow_attack_%"]=695, + ["chance_to_trigger_socketed_spell_on_bow_attack_%"]=495, + ["chance_to_unnerve_on_hit_%"]=5646, + ["chance_to_unnerve_on_hit_with_spells_%"]=5647, + ["channelled_skill_damage_+%"]=5648, + ["channelled_skill_damage_+%_per_10_devotion"]=5649, + ["chaos_critical_strike_chance_+%"]=1420, + ["chaos_critical_strike_multiplier_+"]=1446, + ["chaos_damage_%_taken_from_mana_before_life"]=5657, + ["chaos_damage_+%"]=1320, + ["chaos_damage_+%_per_100_max_mana_up_to_80"]=5658, + ["chaos_damage_+%_per_equipped_corrupted_item"]=3031, + ["chaos_damage_+%_per_level"]=2910, + ["chaos_damage_+%_while_affected_by_herald_of_agony"]=5659, + ["chaos_damage_can_chill"]=2802, + ["chaos_damage_can_freeze"]=2803, + ["chaos_damage_can_ignite_chill_and_shock"]=2821, + ["chaos_damage_can_shock"]=2804, + ["chaos_damage_cannot_poison"]=2822, + ["chaos_damage_chance_to_poison_%"]=2964, + ["chaos_damage_does_not_bypass_energy_shield"]=2443, + ["chaos_damage_does_not_bypass_energy_shield_while_not_low_life"]=5650, + ["chaos_damage_does_not_bypass_energy_shield_while_not_low_mana"]=5651, + ["chaos_damage_over_time_+%"]=1150, + ["chaos_damage_over_time_heals_while_leeching_life"]=5653, + ["chaos_damage_over_time_multiplier_+_per_4_chaos_resistance"]=5654, + ["chaos_damage_over_time_multiplier_+_while_affected_by_malevolence"]=1194, + ["chaos_damage_over_time_multiplier_+_with_attacks"]=1197, + ["chaos_damage_per_minute_while_affected_by_flask"]=5656, + ["chaos_damage_poisons"]=2963, + ["chaos_damage_resistance_%_per_endurance_charge"]=5660, + ["chaos_damage_resistance_%_per_poison_stack"]=5662, + ["chaos_damage_resistance_%_when_on_low_life"]=2488, + ["chaos_damage_resistance_%_when_stationary"]=5663, + ["chaos_damage_resistance_%_while_affected_by_herald_of_agony"]=5664, + ["chaos_damage_resistance_%_while_affected_by_purity_of_elements"]=5665, + ["chaos_damage_resistance_is_doubled"]=5661, + ["chaos_damage_resisted_by_highest_resistance"]=5666, + ["chaos_damage_resisted_by_lowest_resistance"]=5667, + ["chaos_damage_taken_+"]=2772, + ["chaos_damage_taken_+%"]=2176, + ["chaos_damage_taken_goes_to_life_over_4_seconds_%"]=5668, + ["chaos_damage_taken_over_time_+%"]=1881, + ["chaos_damage_taken_over_time_+%_while_in_caustic_cloud"]=5669, + ["chaos_damage_to_return_to_melee_attacker"]=2139, + ["chaos_damage_to_return_when_hit"]=2144, + ["chaos_damage_with_attack_skills_+%"]=5670, + ["chaos_damage_with_spell_skills_+%"]=5671, + ["chaos_dot_multiplier_+"]=1195, + ["chaos_golem_damage_+%"]=3629, + ["chaos_golem_elemental_resistances_%"]=3920, + ["chaos_golem_impale_on_hit_if_same_number_of_summoned_stone_golems"]=5672, + ["chaos_hit_and_dot_damage_%_taken_as_fire"]=5673, + ["chaos_hit_and_dot_damage_%_taken_as_lightning"]=5674, + ["chaos_immunity"]=2100, + ["chaos_inoculation_keystone_energy_shield_+%_final"]=2126, + ["chaos_non_ailment_damage_over_time_multiplier_+"]=1196, + ["chaos_resistance_%_for_you_and_allies_affected_by_your_auras"]=4000, + ["chaos_resistance_+_while_using_flask"]=3233, + ["chaos_skill_chance_to_hinder_on_hit_%"]=5675, + ["chaos_skill_chance_to_ignite_%"]=5676, + ["chaos_skill_effect_duration_+%"]=1831, + ["chaos_skill_gem_level_+"]=5677, + ["chaos_skill_gem_level_+_if_6_hunter_items"]=4417, + ["chaos_skills_area_of_effect_+%"]=5678, + ["chaos_spell_skill_gem_level_+"]=1548, + ["chaos_weakness_ignores_hexproof"]=2534, + ["chaos_weakness_mana_reservation_+%"]=3977, + ["charge_duration_+%"]=2958, + ["charged_attack_damage_+%"]=4072, + ["charged_attack_radius_+%"]=4079, + ["charged_dash_area_of_effect_radius_+_of_final_explosion"]=3783, + ["charged_dash_damage_+%"]=3664, + ["charged_dash_movement_speed_+%_final"]=5679, + ["charges_gained_+%"]=2116, + ["chest_drop_additional_corrupted_item_divination_cards"]=5680, + ["chest_drop_additional_currency_item_divination_cards"]=5681, + ["chest_drop_additional_divination_cards_from_current_world_area"]=5682, + ["chest_drop_additional_divination_cards_from_same_set"]=5683, + ["chest_drop_additional_unique_item_divination_cards"]=5684, + ["chest_item_quantity_+%"]=1529, + ["chest_item_rarity_+%"]=1535, + ["chest_number_of_additional_pirate_uniques_to_drop"]=5685, + ["chest_trap_defuse_%"]=1843, + ["chieftain_body_armour_supported_by_level_x_ancestral_call"]=556, + ["chieftain_body_armour_supported_by_level_x_fist_of_war"]=557, + ["chieftain_burning_damage_+%_final"]=1961, + ["chill_and_freeze_duration_+%"]=5686, + ["chill_and_freeze_duration_based_on_%_energy_shield"]=2524, + ["chill_attackers_for_4_seconds_on_block_%_chance"]=5687, + ["chill_duration_+%"]=1791, + ["chill_effect_+%"]=5690, + ["chill_effect_+%_while_mana_leeching"]=5688, + ["chill_effect_+%_with_critical_strikes"]=5691, + ["chill_effect_is_reversed"]=5689, + ["chill_effectiveness_on_self_+%"]=1580, + ["chill_enemy_when_hit_duration_ms"]=3072, + ["chill_minimum_slow_%"]=4370, + ["chill_minimum_slow_%_from_mastery"]=5692, + ["chill_nearby_enemies_when_you_focus"]=5693, + ["chill_on_you_proliferates_to_nearby_enemies_within_x_radius"]=3556, + ["chill_prevention_ms_when_chilled"]=2827, + ["chilled_ground_effect_+%"]=5694, + ["chilled_ground_effect_on_self_+%"]=2082, + ["chilled_ground_on_freeze_%_chance_for_3_seconds"]=3339, + ["chilled_ground_when_hit_with_attack_%"]=5695, + ["chilled_monsters_take_+%_burning_damage"]=2700, + ["chilled_while_bleeding"]=5696, + ["chilled_while_poisoned"]=5697, + ["chilling_areas_also_grant_curse_effect_+%"]=5698, + ["chilling_areas_also_grant_lightning_damage_taken_+%"]=5699, + ["chills_from_your_hits_cause_shattering"]=5700, + ["chronomancer_reserves_no_mana"]=5701, + ["circle_of_power_critical_strike_chance_+%_per_stage"]=5702, + ["circle_of_power_max_added_lightning_per_stage"]=5703, + ["circle_of_power_min_added_lightning_per_stage"]=5703, + ["circle_of_power_upgrade_cost_+%"]=5704, + ["clarity_mana_reservation_+%"]=3965, + ["clarity_mana_reservation_efficiency_+%"]=5706, + ["clarity_mana_reservation_efficiency_-2%_per_1"]=5705, + ["clarity_reserves_no_mana"]=5707, + ["claw_accuracy_rating"]=1941, + ["claw_accuracy_rating_+%"]=1375, + ["claw_ailment_damage_+%"]=1251, + ["claw_attack_speed_+%"]=1357, + ["claw_critical_strike_chance_+%"]=1401, + ["claw_critical_strike_multiplier_+"]=1434, + ["claw_damage_+%"]=1248, + ["claw_damage_+%_while_on_low_life"]=5709, + ["claw_damage_against_enemies_on_low_life_+%"]=5708, + ["claw_hit_and_ailment_damage_+%"]=1249, + ["claw_or_dagger_ailment_damage_+%"]=1288, + ["claw_or_dagger_hit_and_ailment_damage_+%"]=1287, + ["claw_steal_power_frenzy_endurance_charges_on_hit_%"]=2884, + ["cleave_+1_base_radius_per_nearby_enemy_up_to_10"]=5711, + ["cleave_attack_speed_+%"]=3784, + ["cleave_damage_+%"]=3561, + ["cleave_fortify_on_hit"]=5710, + ["cleave_radius_+%"]=3738, + ["close_range_enemies_avoid_your_projectiles"]=9277, + ["cluster_burst_spawn_amount"]=4043, + ["cobra_lash_and_venom_gyre_bleeding_damage_+100%_final_chance"]=5712, + ["cobra_lash_and_venom_gyre_skill_physical_damage_%_to_convert_to_chaos"]=5713, + ["cobra_lash_damage_+%"]=5714, + ["cobra_lash_number_of_additional_chains"]=5715, + ["cobra_lash_projectile_speed_+%"]=5716, + ["cold_ailment_duration_+%"]=5717, + ["cold_ailment_effect_+%"]=5719, + ["cold_ailment_effect_+%_against_shocked_enemies"]=5718, + ["cold_ailments_effect_+%_final_if_hit_highest_cold"]=5720, + ["cold_and_chaos_damage_resistance_%"]=5721, + ["cold_and_lightning_damage_resistance_%"]=2734, + ["cold_and_lightning_hit_and_dot_damage_%_taken_as_fire_while_affected_by_purity_of_fire"]=5722, + ["cold_attack_damage_+%"]=1137, + ["cold_attack_damage_+%_while_holding_a_shield"]=1140, + ["cold_axe_damage_+%"]=1241, + ["cold_bow_damage_+%"]=1271, + ["cold_claw_damage_+%"]=1253, + ["cold_critical_strike_chance_+%"]=1418, + ["cold_critical_strike_multiplier_+"]=1444, + ["cold_dagger_damage_+%"]=1259, + ["cold_damage_%_to_add_as_chaos"]=1873, + ["cold_damage_%_to_add_as_chaos_per_frenzy_charge"]=5728, + ["cold_damage_%_to_add_as_fire"]=1872, + ["cold_damage_%_to_add_as_fire_per_1%_chill_effect_on_enemy"]=5723, + ["cold_damage_%_to_add_as_fire_vs_frozen_enemies"]=5724, + ["cold_damage_+%"]=1301, + ["cold_damage_+%_if_you_have_used_a_fire_skill_recently"]=5729, + ["cold_damage_+%_per_1%_block_chance"]=3516, + ["cold_damage_+%_per_25_dexterity"]=5730, + ["cold_damage_+%_per_25_intelligence"]=5731, + ["cold_damage_+%_per_25_strength"]=5732, + ["cold_damage_+%_per_cold_resistance_above_75"]=5725, + ["cold_damage_+%_per_frenzy_charge"]=5733, + ["cold_damage_+%_per_missing_cold_resistance"]=5734, + ["cold_damage_+%_while_affected_by_hatred"]=5735, + ["cold_damage_+%_while_affected_by_herald_of_ice"]=5736, + ["cold_damage_+%_while_off_hand_is_empty"]=5737, + ["cold_damage_can_ignite"]=2805, + ["cold_damage_can_shock"]=2806, + ["cold_damage_cannot_chill"]=2820, + ["cold_damage_cannot_freeze"]=2819, + ["cold_damage_over_time_+%"]=1149, + ["cold_damage_over_time_multiplier_+_per_4%_overcapped_cold_resistance"]=5726, + ["cold_damage_over_time_multiplier_+_per_power_charge"]=5727, + ["cold_damage_over_time_multiplier_+_while_affected_by_malevolence"]=1191, + ["cold_damage_resistance_%_while_affected_by_herald_of_ice"]=5738, + ["cold_damage_resistance_+%"]=1568, + ["cold_damage_resistance_is_%"]=1565, + ["cold_damage_taken_%_as_fire"]=3110, + ["cold_damage_taken_%_as_lightning"]=3111, + ["cold_damage_taken_+"]=5740, + ["cold_damage_taken_+%"]=3321, + ["cold_damage_taken_+%_if_have_been_hit_recently"]=5741, + ["cold_damage_taken_goes_to_life_over_4_seconds_%"]=5739, + ["cold_damage_taken_per_minute_per_frenzy_charge_while_moving"]=10502, + ["cold_damage_to_return_to_melee_attacker"]=2136, + ["cold_damage_to_return_when_hit"]=2142, + ["cold_damage_while_dual_wielding_+%"]=1216, + ["cold_damage_with_attack_skills_+%"]=5742, + ["cold_damage_with_spell_skills_+%"]=5743, + ["cold_dot_multiplier_+"]=1192, + ["cold_exposure_on_hit_magnitude"]=5744, + ["cold_exposure_you_inflict_applies_extra_cold_resistance_+%"]=5745, + ["cold_hit_and_dot_damage_%_taken_as_fire"]=5746, + ["cold_hit_and_dot_damage_%_taken_as_lightning"]=5747, + ["cold_hit_damage_+%_vs_shocked_enemies"]=5748, + ["cold_mace_damage_+%"]=1265, + ["cold_penetration_%_vs_chilled_enemies"]=5749, + ["cold_projectile_mine_critical_multiplier_+"]=5750, + ["cold_projectile_mine_damage_+%"]=5751, + ["cold_projectile_mine_throwing_speed_+%"]=5753, + ["cold_projectile_mine_throwing_speed_negated_+%"]=5752, + ["cold_reflect_damage_taken_+%_while_affected_by_purity_of_ice"]=5754, + ["cold_resistance_cannot_be_penetrated"]=5755, + ["cold_skill_chance_to_inflict_cold_exposure_%"]=5756, + ["cold_skill_gem_level_+"]=5758, + ["cold_skill_gem_level_+_if_6_redeemer_items"]=4418, + ["cold_skill_gem_level_+_if_at_least_4_foulborn_uniques_equipped"]=5757, + ["cold_skills_chance_to_poison_on_hit_%"]=5759, + ["cold_snap_cooldown_speed_+%"]=3808, + ["cold_snap_damage_+%"]=3635, + ["cold_snap_gain_power_charge_on_kill_%"]=3192, + ["cold_snap_radius_+%"]=3765, + ["cold_snap_uses_and_gains_power_charges_instead_of_frenzy"]=5760, + ["cold_spell_physical_damage_%_to_convert_to_cold"]=5761, + ["cold_spell_skill_gem_level_+"]=1546, + ["cold_staff_damage_+%"]=1247, + ["cold_sword_damage_+%"]=1278, + ["cold_wand_damage_+%"]=1284, + ["cold_weakness_ignores_hexproof"]=2535, + ["combust_area_of_effect_+%"]=5762, + ["combust_is_disabled"]=5763, + ["conductivity_curse_effect_+%"]=3942, + ["conductivity_duration_+%"]=3849, + ["conductivity_mana_reservation_+%"]=3978, + ["conductivity_no_reservation"]=5764, + ["consecrate_ground_for_3_seconds_when_hit_%"]=3485, + ["consecrate_ground_on_kill_%_for_3_seconds"]=3340, + ["consecrate_ground_on_shatter_%_chance_for_3_seconds"]=4059, + ["consecrate_on_block_%_chance_to_create"]=2506, + ["consecrate_on_crit_%_chance_to_create"]=2571, + ["consecrated_ground_additional_physical_damage_reduction_%"]=5765, + ["consecrated_ground_allies_recover_es_as_well_as_life_from_life_regeneration"]=5766, + ["consecrated_ground_area_+%"]=5767, + ["consecrated_ground_damaging_ailment_duration_on_self_+%"]=5768, + ["consecrated_ground_effect_+%"]=5769, + ["consecrated_ground_effect_lingers_for_ms_after_leaving_the_area_while_affected_by_zealotry"]=5774, + ["consecrated_ground_enemy_damage_taken_+%"]=5770, + ["consecrated_ground_enemy_damage_taken_+%_while_affected_by_zealotry"]=5771, + ["consecrated_ground_immune_to_curses"]=5772, + ["consecrated_ground_immune_to_status_ailments"]=5773, + ["consecrated_ground_on_death"]=5775, + ["consecrated_ground_on_hit"]=5776, + ["consecrated_ground_radius_on_hit_enemy_magic_rare_unique_every_3_seconds"]=5777, + ["consecrated_ground_while_stationary_radius"]=5778, + ["consecrated_ground_while_stationary_radius_if_2_crusader_items"]=4379, + ["consecrated_ground_while_stationary_radius_if_highest_attribute_is_strength"]=5779, + ["consecrated_path_and_purifying_flame_create_profane_ground_instead_of_consecrated_ground"]=5780, + ["consecrated_path_and_purifying_flame_skill_fire_damage_%_to_convert_to_chaos"]=5781, + ["consecrated_path_area_of_effect_+%"]=5782, + ["consecrated_path_damage_+%"]=5783, + ["consume_all_impales_remaining_hits_on_hit_%_chance"]=5784, + ["consume_nearby_corpse_every_3_seconds_to_recover_%_maximum_life"]=5785, + ["contagion_damage_+%"]=3660, + ["contagion_display_spread_on_death"]=5786, + ["contagion_duration_+%"]=3854, + ["contagion_radius_+%"]=3771, + ["contagion_spread_on_hit_affected_enemy_%"]=5786, + ["conversation_trap_converted_enemy_damage_+%"]=5787, + ["conversion_trap_converted_enemies_chance_to_taunt_on_hit_%"]=5788, + ["conversion_trap_cooldown_speed_+%"]=3821, + ["convert_all_elemental_damage_to_chaos"]=5789, + ["convert_all_physical_damage_to_fire"]=2109, + ["converted_enemies_damage_+%"]=3655, + ["convocation_buff_effect_+%"]=3955, + ["convocation_cooldown_speed_+%"]=3809, + ["cooldown_recovery_+%_if_cast_temporal_chains_in_past_10_seconds"]=5790, + ["cooldown_recovery_+%_per_power_charge"]=5791, + ["cooldown_speed_+%_per_brand_up_to_40%"]=5793, + ["cooldown_speed_+%_per_green_skill_gem"]=5792, + ["corpse_erruption_base_maximum_number_of_geyers"]=5794, + ["corpse_eruption_cast_speed_+%"]=5795, + ["corpse_eruption_damage_+%"]=5796, + ["corpse_warp_cast_speed_+%"]=5797, + ["corpse_warp_damage_+%"]=5798, + ["corpses_drop_loot_again_on_warcry_chance_%"]=5799, + ["corrosive_shroud_%_of_stored_poison_damage_to_deal_per_second"]=5800, + ["corrosive_shroud_poison_dot_multiplier_+_while_aura_active"]=5801, + ["corrupted_gem_experience_gain_+%"]=3043, + ["corrupting_fever_apply_additional_corrupted_blood_%"]=5802, + ["corrupting_fever_damage_+%"]=5803, + ["corrupting_fever_duration_+%"]=5804, + ["count_as_blocking_attack_from_shield_attack_first_target"]=5805, + ["count_as_having_max_endurance_charges"]=5806, + ["count_as_having_max_endurance_frenzy_power_charges"]=5807, + ["count_as_having_max_frenzy_charges"]=5808, + ["count_as_having_max_power_charges"]=5809, + ["counter_attacks_maximum_added_cold_damage"]=4136, + ["counter_attacks_maximum_added_physical_damage"]=4129, + ["counter_attacks_minimum_added_cold_damage"]=4136, + ["counter_attacks_minimum_added_physical_damage"]=4129, + ["counterattacks_cooldown_recovery_+%"]=5810, + ["counterattacks_deal_double_damage"]=5811, + ["counterattacks_debilitate_for_1_second_on_hit_%_chance"]=5812, + ["cover_in_ash_for_x_seconds_when_igniting_enemy"]=5813, + ["cover_in_ash_on_hit_%"]=5814, + ["cover_in_ash_on_hit_%_while_you_are_burning"]=5815, + ["cover_in_frost_for_x_seconds_when_freezing_enemy"]=5816, + ["cover_in_frost_on_hit"]=5817, + ["cover_in_frost_on_hit_%"]=5818, + ["crab_aspect_crab_barrier_max_+"]=4280, + ["crackling_lance_cast_speed_+%"]=5820, + ["crackling_lance_damage_+%"]=5821, + ["create_additional_brand_%_chance"]=5822, + ["create_blighted_spore_on_killing_rare_enemy"]=5823, + ["create_consecrated_ground_on_hit_%_vs_rare_or_unique_enemy"]=5824, + ["create_consecrated_ground_on_kill_%"]=5825, + ["create_enemy_meteor_daemon_on_flask_use_%_chance"]=5826, + ["create_fungal_ground_instead_of_consecrated_ground"]=5827, + ["create_herald_of_thunder_storm_on_shocking_enemy"]=5828, + ["create_profane_ground_instead_of_consecrated_ground"]=5829, + ["create_smoke_cloud_on_kill_%_chance"]=5830, + ["creeping_frost_cold_snap_all_damage_can_sap"]=5831, + ["creeping_frost_cold_snap_chance_to_sap_%_vs_enemies_in_chilling_areas"]=5832, + ["cremation_base_fires_projectile_every_x_ms"]=5833, + ["critical_ailment_dot_multiplier_+"]=1180, + ["critical_bleeding_dot_multiplier_+"]=1185, + ["critical_ignite_dot_multiplier_+"]=1188, + ["critical_multiplier_+%_per_10_max_es_on_shield"]=5835, + ["critical_poison_dot_multiplier_+"]=1198, + ["critical_strike_%_chance_to_deal_double_damage"]=5898, + ["critical_strike_chance_+%"]=1394, + ["critical_strike_chance_+%_against_enemies_on_consecrated_ground_while_affected_by_zealotry"]=5842, + ["critical_strike_chance_+%_during_any_flask_effect"]=5843, + ["critical_strike_chance_+%_final_while_affected_by_precision"]=5836, + ["critical_strike_chance_+%_final_while_unhinged"]=5844, + ["critical_strike_chance_+%_for_4_seconds_on_kill"]=3386, + ["critical_strike_chance_+%_for_forking_arrows"]=4234, + ["critical_strike_chance_+%_for_spells_if_you_have_killed_recently"]=5845, + ["critical_strike_chance_+%_if_enemy_killed_recently"]=5846, + ["critical_strike_chance_+%_if_have_been_shocked_recently"]=5847, + ["critical_strike_chance_+%_if_have_not_crit_recently"]=5848, + ["critical_strike_chance_+%_if_havent_blocked_recently"]=5849, + ["critical_strike_chance_+%_if_not_gained_power_charge_recently"]=5850, + ["critical_strike_chance_+%_per_10_strength"]=5851, + ["critical_strike_chance_+%_per_25_intelligence"]=5852, + ["critical_strike_chance_+%_per_8_strength"]=2872, + ["critical_strike_chance_+%_per_blitz_charge"]=5853, + ["critical_strike_chance_+%_per_brand"]=5854, + ["critical_strike_chance_+%_per_endurance_charge"]=5855, + ["critical_strike_chance_+%_per_frenzy_charge"]=5856, + ["critical_strike_chance_+%_per_intensity"]=5857, + ["critical_strike_chance_+%_per_level"]=2895, + ["critical_strike_chance_+%_per_lightning_adaptation"]=4350, + ["critical_strike_chance_+%_per_mine_detonated_recently_up_to_100%"]=5858, + ["critical_strike_chance_+%_per_power_charge"]=3098, + ["critical_strike_chance_+%_per_righteous_charge"]=5859, + ["critical_strike_chance_+%_per_stackable_unique_jewel"]=4090, + ["critical_strike_chance_+%_vs_bleeding_enemies"]=3122, + ["critical_strike_chance_+%_vs_blinded_enemies"]=3338, + ["critical_strike_chance_+%_vs_enemies_with_elemental_status_ailments"]=3988, + ["critical_strike_chance_+%_vs_enemies_with_lightning_exposure"]=5837, + ["critical_strike_chance_+%_vs_enemies_without_elemental_status_ailments"]=3462, + ["critical_strike_chance_+%_vs_marked_enemy"]=5860, + ["critical_strike_chance_+%_vs_poisoned_enemies"]=3224, + ["critical_strike_chance_+%_vs_shocked_enemies"]=5834, + ["critical_strike_chance_+%_vs_taunted_enemies"]=5861, + ["critical_strike_chance_+%_when_in_main_hand"]=4115, + ["critical_strike_chance_+%_while_affected_by_wrath"]=5862, + ["critical_strike_chance_+%_while_channelling"]=5863, + ["critical_strike_chance_+%_while_you_have_avatar_of_fire"]=10640, + ["critical_strike_chance_+%_while_you_have_depleted_physical_aegis"]=5867, + ["critical_strike_chance_+%_with_at_least_200_int"]=4295, + ["critical_strike_chance_against_cursed_enemies_+%"]=5838, + ["critical_strike_chance_against_enemies_on_full_life_+%"]=3698, + ["critical_strike_chance_increased_by_lightning_resistance"]=5839, + ["critical_strike_chance_increased_by_overcapped_lightning_resistance"]=5840, + ["critical_strike_chance_increased_by_spell_suppression_chance"]=5841, + ["critical_strike_chance_while_dual_wielding_+%"]=1415, + ["critical_strike_chance_while_wielding_shield_+%"]=1408, + ["critical_strike_damage_cannot_be_reflected"]=5868, + ["critical_strike_multiplier_+%_if_cast_enfeeble_in_past_10_seconds"]=5896, + ["critical_strike_multiplier_+%_with_claws_daggers"]=5897, + ["critical_strike_multiplier_+_during_any_flask_effect"]=5874, + ["critical_strike_multiplier_+_for_spells_if_you_havent_killed_recently"]=5875, + ["critical_strike_multiplier_+_if_crit_with_a_herald_skill_recently"]=5876, + ["critical_strike_multiplier_+_if_dexterity_higher_than_intelligence"]=5877, + ["critical_strike_multiplier_+_if_enemy_killed_recently"]=5878, + ["critical_strike_multiplier_+_if_enemy_shattered_recently"]=5879, + ["critical_strike_multiplier_+_if_gained_power_charge_recently"]=5880, + ["critical_strike_multiplier_+_if_have_dealt_non_crit_recently"]=5869, + ["critical_strike_multiplier_+_if_have_not_dealt_critical_strike_recently"]=5881, + ["critical_strike_multiplier_+_if_rare_or_unique_enemy_nearby"]=5882, + ["critical_strike_multiplier_+_if_taken_a_savage_hit_recently"]=5883, + ["critical_strike_multiplier_+_if_you_have_blocked_recently"]=5884, + ["critical_strike_multiplier_+_if_youve_been_channelling_for_at_least_1_second"]=5885, + ["critical_strike_multiplier_+_per_1%_block_chance"]=3121, + ["critical_strike_multiplier_+_per_25_dexterity"]=5870, + ["critical_strike_multiplier_+_per_mine_detonated_recently_up_to_40"]=5886, + ["critical_strike_multiplier_+_per_power_charge"]=3214, + ["critical_strike_multiplier_+_vs_bleeding_enemies"]=3119, + ["critical_strike_multiplier_+_vs_burning_enemies"]=3120, + ["critical_strike_multiplier_+_vs_enemies_affected_by_elemental_status_ailment"]=3488, + ["critical_strike_multiplier_+_vs_stunned_enemies"]=5871, + ["critical_strike_multiplier_+_vs_taunted_enemies"]=5887, + ["critical_strike_multiplier_+_vs_unique_enemies"]=5888, + ["critical_strike_multiplier_+_while_affected_by_anger"]=5889, + ["critical_strike_multiplier_+_while_affected_by_precision"]=5890, + ["critical_strike_multiplier_+_while_have_any_frenzy_charges"]=1987, + ["critical_strike_multiplier_+_with_herald_skills"]=5894, + ["critical_strike_multiplier_for_arrows_that_pierce_+"]=5872, + ["critical_strike_multiplier_is_100"]=1450, + ["critical_strike_multiplier_is_300"]=5873, + ["critical_strike_multiplier_vs_enemies_on_full_life_+"]=3365, + ["critical_strike_multiplier_while_dual_wielding_+"]=1438, + ["critical_strike_multiplier_with_dagger_+"]=1428, + ["critical_strikes_always_knockback_shocked_enemies"]=5899, + ["critical_strikes_deal_no_damage"]=5900, + ["critical_strikes_do_not_always_apply_non_damaging_ailments"]=5901, + ["critical_strikes_do_not_always_freeze"]=1964, + ["critical_strikes_do_not_always_ignite"]=5902, + ["critical_strikes_ignore_elemental_resistances"]=3384, + ["critical_strikes_on_you_do_not_always_inflict_elemental_ailments"]=5903, + ["critical_strikes_penetrates_%_elemental_resistances_while_affected_by_zealotry"]=5904, + ["critical_support_gem_level_+"]=5905, + ["crits_have_culling_strike"]=3372, + ["cruelty_effect_+%"]=5906, + ["crush_for_2_seconds_on_hit_%_chance"]=5907, + ["crush_on_hit_ms_vs_full_life_enemies"]=5908, + ["culling_strike_on_burning_enemies"]=2769, + ["culling_strike_on_enemies_affected_by_poachers_mark"]=5909, + ["culling_strike_on_frozen_enemies"]=5910, + ["culling_strike_vs_cursed_enemies"]=5911, + ["culling_strike_vs_marked_enemy"]=5912, ["current_endurance_charges"]=5, ["current_frenzy_charges"]=6, ["current_power_charges"]=7, - ["curse_apply_as_aura"]=3338, - ["curse_area_of_effect_+%"]=2126, - ["curse_aura_skill_area_of_effect_+%"]=5719, - ["curse_aura_skills_mana_reservation_efficiency_+%"]=5722, - ["curse_aura_skills_mana_reservation_efficiency_-2%_per_1"]=5721, - ["curse_aura_skills_reservation_efficiency_+%"]=5720, - ["curse_cast_speed_+%"]=2115, - ["curse_effect_+%"]=2496, - ["curse_effect_+%_if_200_mana_spent_recently"]=5725, - ["curse_effect_on_self_+%"]=2071, - ["curse_effect_on_self_+%_while_on_consecrated_ground"]=5723, - ["curse_effect_on_self_+%_while_under_effect_of_life_or_mana_flask"]=5724, - ["curse_mana_cost_+%"]=5726, - ["curse_on_block_%_chance_flammability_with_+20%_effect"]=2882, - ["curse_on_block_level_5_vulnerability"]=2881, - ["curse_on_hit_%_conductivity"]=2414, - ["curse_on_hit_%_despair"]=2415, - ["curse_on_hit_%_elemental_weakness"]=2416, - ["curse_on_hit_%_enfeeble"]=2413, - ["curse_on_hit_%_flammability"]=2417, - ["curse_on_hit_%_frostbite"]=2418, - ["curse_on_hit_%_temporal_chains"]=2419, - ["curse_on_hit_%_vulnerability"]=2420, - ["curse_on_hit_level_10_vulnerability_%"]=2424, - ["curse_on_hit_level_assassins_mark"]=679, - ["curse_on_hit_level_cold_weakness"]=2426, - ["curse_on_hit_level_conductivity"]=2427, - ["curse_on_hit_level_despair"]=2428, - ["curse_on_hit_level_elemental_weakness"]=2425, - ["curse_on_hit_level_enfeeble"]=2429, - ["curse_on_hit_level_flammability"]=2430, - ["curse_on_hit_level_frostbite"]=2431, - ["curse_on_hit_level_poachers_mark"]=680, - ["curse_on_hit_level_poachers_mark_bypass_hexproof"]=681, - ["curse_on_hit_level_temporal_chains"]=2422, - ["curse_on_hit_level_vulnerability"]=2423, - ["curse_on_hit_level_warlords_mark"]=682, - ["curse_on_melee_block_level_15_punishment"]=2883, - ["curse_on_projectile_block_level_15_temporal_chains"]=2884, - ["curse_on_spell_block_level_15_elemental_weakness"]=2885, - ["curse_pillar_curse_effect_+%_final"]=2497, - ["curse_skill_effect_duration_+%"]=5727, - ["curse_skill_gem_level_+"]=5728, - ["curse_with_enfeeble_on_hit_%_against_uncursed_enemies"]=2421, - ["curse_with_punishment_on_hit_%"]=5729, - ["cursed_enemies_%_chance_to_grant_endurance_charge_when_hit"]=5731, - ["cursed_enemies_%_chance_to_grant_frenzy_charge_when_hit"]=5732, - ["cursed_enemies_%_chance_to_grant_power_charge_when_hit"]=5733, - ["cursed_enemies_are_exorcised_on_kill"]=5730, - ["cursed_with_silence_when_hit_%_chance"]=5734, - ["curses_have_no_effect_on_you_for_4_seconds_every_10_seconds"]=5735, - ["curses_never_expire"]=2065, - ["curses_reflected_to_self"]=5736, - ["curses_you_inflict_remain_after_death"]=5737, - ["cyclone_and_sweep_enemy_knockback_direction_is_reversed"]=5738, - ["cyclone_and_sweep_melee_knockback"]=5739, - ["cyclone_attack_speed_+%"]=3748, - ["cyclone_damage_+%"]=3563, - ["cyclone_max_stages_movement_speed_+%"]=5740, - ["dagger_accuracy_rating"]=1907, - ["dagger_accuracy_rating_+%"]=1349, - ["dagger_ailment_damage_+%"]=1230, - ["dagger_attack_speed_+%"]=1331, - ["dagger_critical_strike_chance_+%"]=1375, - ["dagger_damage_+%"]=1227, - ["dagger_hit_and_ailment_damage_+%"]=1228, - ["damage_+%"]=1100, - ["damage_+%_against_enemies_marked_by_you"]=5761, - ["damage_+%_during_flask_effect"]=3968, - ["damage_+%_final_if_lost_endurance_charge_in_past_8_seconds"]=5762, - ["damage_+%_final_if_there_is_at_most_1_rare_or_unique_enemy_nearby"]=5741, - ["damage_+%_final_to_grant_packmate_on_death"]=5742, - ["damage_+%_final_to_you_and_nearby_allies_per_nearby_corpses_up_to_10%"]=5743, - ["damage_+%_final_with_at_least_1_nearby_ally"]=5763, - ["damage_+%_for_4_seconds_on_crit"]=3340, - ["damage_+%_for_4_seconds_on_detonation"]=3364, - ["damage_+%_for_4_seconds_when_you_kill_a_bleeding_enemy"]=3971, - ["damage_+%_for_4_seconds_when_you_kill_a_cursed_enemy"]=3947, - ["damage_+%_for_each_herald_affecting_you"]=5764, - ["damage_+%_for_each_level_the_enemy_is_higher_than_you"]=4078, - ["damage_+%_for_each_trap_and_mine_active"]=3962, - ["damage_+%_for_enemies_you_inflict_spiders_web_upon"]=5765, - ["damage_+%_for_you_and_allies_affected_by_your_auras"]=3955, - ["damage_+%_if_enemy_killed_recently"]=5766, - ["damage_+%_if_enemy_killed_recently_final"]=4103, - ["damage_+%_if_enemy_shattered_recently"]=5767, - ["damage_+%_if_firing_atleast_7_projectiles"]=5768, - ["damage_+%_if_golem_summoned_in_past_8_seconds"]=3585, - ["damage_+%_if_have_been_ignited_recently"]=5769, - ["damage_+%_if_have_crit_in_past_8_seconds"]=5770, - ["damage_+%_if_only_one_enemy_nearby"]=5771, - ["damage_+%_if_skill_costs_life"]=5772, - ["damage_+%_if_used_travel_skill_recently"]=5773, - ["damage_+%_if_you_have_consumed_a_corpse_recently"]=4138, - ["damage_+%_if_you_have_frozen_enemy_recently"]=5774, - ["damage_+%_if_you_have_shocked_recently"]=5775, - ["damage_+%_of_each_type_that_you_have_an_active_golem_of"]=3977, - ["damage_+%_on_consecrated_ground"]=3439, - ["damage_+%_on_full_energy_shield"]=5797, - ["damage_+%_per_1%_block_chance"]=5783, - ["damage_+%_per_1%_increased_item_found_quantity"]=5784, - ["damage_+%_per_100_dexterity"]=5776, - ["damage_+%_per_100_intelligence"]=5777, - ["damage_+%_per_100_strength"]=5778, - ["damage_+%_per_10_dex"]=5779, - ["damage_+%_per_10_levels"]=2735, - ["damage_+%_per_15_dex"]=5780, - ["damage_+%_per_15_int"]=5781, - ["damage_+%_per_15_strength"]=5782, - ["damage_+%_per_5_of_your_lowest_attribute"]=5785, - ["damage_+%_per_abyss_jewel_type"]=4052, - ["damage_+%_per_active_curse_on_self"]=1125, - ["damage_+%_per_active_golem"]=5786, - ["damage_+%_per_active_link"]=5787, - ["damage_+%_per_active_trap"]=3353, - ["damage_+%_per_crab_charge"]=4235, - ["damage_+%_per_endurance_charge"]=3089, - ["damage_+%_per_equipped_magic_item"]=2970, - ["damage_+%_per_fire_adaptation"]=4302, - ["damage_+%_per_frenzy_charge"]=3176, - ["damage_+%_per_frenzy_power_or_endurance_charge"]=5788, - ["damage_+%_per_poison_stack"]=5744, - ["damage_+%_per_poison_up_to_75%"]=5789, - ["damage_+%_per_power_charge"]=5790, - ["damage_+%_per_raised_zombie"]=5745, - ["damage_+%_per_shock"]=2674, - ["damage_+%_per_warcry_used_recently"]=5791, - ["damage_+%_per_your_aura_or_herald_skill_affecting_you"]=5792, - ["damage_+%_to_rare_and_unique_enemies"]=3098, - ["damage_+%_to_you_and_nearby_allies_while_you_have_fortify"]=3972, - ["damage_+%_vs_abyssal_monsters"]=5793, - ["damage_+%_vs_bleeding_enemies"]=3367, - ["damage_+%_vs_blinded_enemies"]=2710, - ["damage_+%_vs_burning_enemies"]=3335, - ["damage_+%_vs_chilled_enemies"]=5794, - ["damage_+%_vs_demons"]=2664, - ["damage_+%_vs_enemies_affected_by_status_ailments"]=3349, - ["damage_+%_vs_enemies_on_low_life_per_frenzy_charge"]=2709, - ["damage_+%_vs_enemies_per_freeze_shock_ignite"]=1149, - ["damage_+%_vs_frozen_enemies"]=1145, - ["damage_+%_vs_frozen_shocked_ignited_enemies"]=1150, - ["damage_+%_vs_hindered_enemies"]=3993, - ["damage_+%_vs_ignited_enemies"]=2849, - ["damage_+%_vs_magic_monsters"]=5795, - ["damage_+%_vs_rare_monsters"]=2706, - ["damage_+%_vs_taunted_enemies"]=5796, - ["damage_+%_when_currently_has_no_energy_shield"]=2633, - ["damage_+%_when_not_on_low_life"]=3094, - ["damage_+%_when_on_burning_ground"]=2048, - ["damage_+%_when_on_full_life"]=5798, - ["damage_+%_when_on_low_life"]=1124, - ["damage_+%_while_affected_by_a_herald"]=5799, - ["damage_+%_while_channelling"]=5800, - ["damage_+%_while_dead"]=2986, - ["damage_+%_while_es_leeching"]=1129, - ["damage_+%_while_es_not_full"]=3964, - ["damage_+%_while_fortified"]=3087, - ["damage_+%_while_ignited"]=2701, - ["damage_+%_while_in_blood_stance"]=5801, - ["damage_+%_while_leeching"]=2956, - ["damage_+%_while_life_leeching"]=1126, - ["damage_+%_while_mana_leeching"]=1128, - ["damage_+%_while_totem_active"]=3095, - ["damage_+%_while_unarmed"]=3462, - ["damage_+%_while_wielding_bow_if_totem_summoned"]=5802, - ["damage_+%_while_wielding_two_different_weapon_types"]=5803, - ["damage_+%_while_wielding_wand"]=1252, - ["damage_+%_while_you_have_a_summoned_golem"]=5804, - ["damage_+%_with_bow_skills"]=5746, - ["damage_+%_with_herald_skills"]=5805, - ["damage_+%_with_hits_and_ailments"]=5806, - ["damage_+%_with_maces_sceptres_staves"]=5807, - ["damage_+%_with_movement_skills"]=1339, - ["damage_+%_with_non_vaal_skills_during_soul_gain_prevention"]=5808, - ["damage_+%_with_one_handed_weapons"]=3225, - ["damage_+%_with_shield_skills"]=5809, - ["damage_+%_with_shield_skills_per_2%_attack_block"]=5810, - ["damage_+%_with_two_handed_weapons"]=3226, - ["damage_+1%_per_X_strength_when_in_main_hand"]=2675, - ["damage_and_minion_damage_+%_for_4_seconds_on_consume_corpse"]=3342, - ["damage_cannot_be_reflected"]=5747, - ["damage_from_hits_always_and_only_bypasses_energy_shield_when_not_blocked"]=5748, - ["damage_over_time_+%"]=1119, - ["damage_over_time_+%_per_frenzy_charge"]=2034, - ["damage_over_time_+%_per_power_charge"]=2035, - ["damage_over_time_+%_while_affected_by_a_herald"]=5750, - ["damage_over_time_+%_while_dual_wielding"]=2036, - ["damage_over_time_+%_while_holding_a_shield"]=2037, - ["damage_over_time_+%_while_wielding_two_handed_weapon"]=2038, - ["damage_over_time_+%_with_attack_skills"]=5751, - ["damage_over_time_+%_with_bow_skills"]=5752, - ["damage_over_time_+%_with_herald_skills"]=5753, - ["damage_over_time_+%_with_spells"]=1133, - ["damage_over_time_multiplier_+_if_enemy_killed_recently"]=5749, - ["damage_over_time_multiplier_+_with_attacks"]=1155, - ["damage_over_time_multiplier_+_with_spells"]=1154, - ["damage_over_time_taken_+%_while_you_have_at_least_20_fortification"]=5754, - ["damage_penetrates_%_cold_resistance_while_affected_by_herald_of_ice"]=5755, - ["damage_penetrates_%_elemental_resistance_if_enemy_not_killed_recently"]=5756, - ["damage_penetrates_%_elemental_resistance_vs_chilled_enemies"]=5757, - ["damage_penetrates_%_elemental_resistance_vs_cursed_enemies"]=5758, - ["damage_penetrates_%_fire_resistance_while_affected_by_herald_of_ash"]=5759, - ["damage_penetrates_%_lightning_resistance_while_affected_by_herald_of_thunder"]=5760, - ["damage_recouped_as_life_%_if_leech_removed_by_filling_recently"]=5811, - ["damage_reduction_rating_%_with_active_totem"]=3229, - ["damage_reduction_rating_from_body_armour_doubled"]=3227, - ["damage_reflected_to_enemies_%_gained_as_life"]=2610, - ["damage_removed_from_mana_before_life_%_while_affected_by_clarity"]=5812, - ["damage_removed_from_mana_before_life_%_while_focused"]=5813, - ["damage_removed_from_marked_target_before_life_or_es_%"]=5814, - ["damage_removed_from_radiant_sentinel_before_life_or_es_%"]=5815, - ["damage_removed_from_spectres_before_life_or_es_%"]=5816, - ["damage_removed_from_void_spawns_before_life_or_es_per_void_spawns_%"]=5817, - ["damage_removed_from_your_nearest_totem_before_life_or_es_%"]=5818, - ["damage_taken_%_recovered_as_energy_shield_from_stunning_hits"]=5834, - ["damage_taken_%_recovered_as_life_from_stunning_hits"]=5835, - ["damage_taken_+%_final_from_enemies_near_marked_enemy"]=5836, - ["damage_taken_+%_final_if_used_retaliation_recently"]=5819, - ["damage_taken_+%_final_per_gale_force"]=5837, - ["damage_taken_+%_final_per_totem"]=5838, - ["damage_taken_+%_for_4_seconds_after_spending_200_mana"]=5820, - ["damage_taken_+%_for_4_seconds_on_kill"]=3215, - ["damage_taken_+%_for_4_seconds_on_killing_taunted_enemy"]=3322, - ["damage_taken_+%_from_bleeding_enemies"]=3206, - ["damage_taken_+%_from_blinded_enemies"]=3174, - ["damage_taken_+%_from_ghosts"]=2149, - ["damage_taken_+%_from_hits"]=2141, - ["damage_taken_+%_from_skeletons"]=2148, - ["damage_taken_+%_from_taunted_enemies"]=3973, - ["damage_taken_+%_if_have_been_frozen_recently"]=5839, - ["damage_taken_+%_if_have_not_been_hit_recently"]=5840, - ["damage_taken_+%_if_not_hit_recently_final"]=4072, - ["damage_taken_+%_if_taunted_an_enemy_recently"]=4107, - ["damage_taken_+%_if_there_are_at_least_2_rare_or_unique_enemies_nearby"]=5821, - ["damage_taken_+%_if_you_have_taken_a_savage_hit_recently"]=4058, - ["damage_taken_+%_on_full_life"]=5841, - ["damage_taken_+%_on_low_life"]=5842, - ["damage_taken_+%_per_frenzy_charge"]=2827, - ["damage_taken_+%_to_an_element_for_4_seconds_when_hit_by_damage_from_an_element"]=3502, - ["damage_taken_+%_vs_demons"]=2663, - ["damage_taken_+%_while_affected_by_elusive"]=5822, - ["damage_taken_+%_while_es_full"]=2145, - ["damage_taken_+%_while_leeching"]=5843, - ["damage_taken_+%_while_phasing"]=5844, - ["damage_taken_+_from_suppressed_hits"]=5823, - ["damage_taken_from_criticals_recouped_as_life_%"]=5824, - ["damage_taken_from_suppressed_hits_is_unlucky"]=5825, - ["damage_taken_from_traps_and_mines_+%"]=3184, - ["damage_taken_goes_to_life_mana_es_over_4_seconds_%"]=5826, - ["damage_taken_goes_to_life_over_4_seconds_%"]=5827, - ["damage_taken_goes_to_mana_%"]=2355, - ["damage_taken_goes_to_mana_%_per_power_charge"]=3055, - ["damage_taken_goes_to_mana_over_4_seconds_%_while_affected_by_clarity"]=5828, - ["damage_taken_over_time_+%_final_during_life_flask_effect"]=5829, - ["damage_taken_per_250_dexterity_+%"]=5830, - ["damage_taken_per_250_intelligence_+%"]=5831, - ["damage_taken_per_250_strength_+%"]=5832, - ["damage_taken_per_ghost_dance_stack_+%"]=5833, - ["damage_taken_while_frozen_recouped_as_life_%"]=5845, - ["damage_vs_cursed_enemies_per_enemy_curse_+%"]=2910, - ["damage_vs_enemies_on_full_life_+%"]=5846, - ["damage_vs_enemies_on_full_life_per_power_charge_+%"]=2892, - ["damage_vs_enemies_on_low_life_+%"]=2707, - ["damage_vs_enemies_on_low_life_+%_final"]=2708, - ["damage_vs_enemies_on_low_life_per_power_charge_+%"]=2893, - ["damage_vs_shocked_enemies_+%"]=1147, - ["damage_while_dual_wielding_+%"]=1186, - ["damage_while_no_damage_taken_+%"]=3107, - ["damage_while_no_frenzy_charges_+%"]=3652, - ["damage_with_cold_skills_+%"]=1283, - ["damage_with_fire_skills_+%"]=1272, - ["damage_with_lightning_skills_+%"]=1291, - ["damaging_ailments_deal_damage_+%_faster"]=5847, - ["dark_pact_minions_recover_%_life_on_hit"]=5848, - ["dark_ritual_area_of_effect_+%"]=5849, - ["dark_ritual_damage_+%"]=5850, - ["dark_ritual_linked_curse_effect_+%"]=5851, - ["daytime_fish_caught_size_+%"]=5852, - ["deadeye_accuracy_rating_+%_final_per_frenzy_charge"]=5853, - ["deadeye_damage_taken_+%_final_from_marked_enemy"]=5854, - ["deadeye_projectile_damage_+%_final_max_as_distance_travelled_increases"]=5855, - ["deal_1000_chaos_damage_per_second_for_10_seconds_on_hit"]=5856, - ["deal_300%_of_physical_damage_as_random_ailment_%_chance"]=5857, - ["deal_chaos_damage_per_second_for_10_seconds_on_hit"]=5858, - ["deal_chaos_damage_per_second_for_8_seconds_on_curse"]=5859, - ["deal_double_damage_to_enemies_on_full_life"]=5860, - ["deal_no_damage_when_not_on_low_life"]=5861, - ["deal_no_damage_yourself"]=2151, - ["deal_no_elemental_damage"]=5862, - ["deal_no_elemental_physical_damage"]=5863, - ["deal_no_non_chaos_damage"]=5864, - ["deal_no_non_elemental_damage"]=5865, - ["deal_no_non_fire_damage"]=2692, - ["deal_no_non_lightning_damage"]=2693, - ["deal_no_non_physical_damage"]=2690, - ["deal_triple_damage_if_spent_at_least_Xms_on_single_attack_recently"]=5866, - ["deaths_oath_debuff_on_kill_base_chaos_damage_to_deal_per_minute"]=2590, - ["deaths_oath_debuff_on_kill_duration_ms"]=2590, - ["debilitate_enemies_for_1_second_on_hit_%_chance"]=5867, - ["debilitate_enemies_for_x_milliseconds_when_suppressing_their_spell"]=5868, - ["debilitate_when_hit_ms"]=5869, - ["debuff_time_passed_+%"]=5871, - ["debuff_time_passed_-%_while_affected_by_haste"]=5870, - ["decoy_rejuvenation_devouring_totem_totem_%_maximum_life_inflicted_as_aoe_fire_damage_when_hit"]=5872, - ["decoy_totem_life_+%"]=3882, - ["decoy_totem_radius_+%"]=3720, - ["defences_+%_while_wielding_staff"]=5876, - ["defences_+%_while_you_have_four_linked_targets"]=5873, - ["defences_are_zero"]=5874, - ["defences_from_animated_guardians_items_apply_to_animated_weapon"]=5875, - ["defend_with_%_armour_against_ranged_attacks"]=5877, - ["defend_with_%_of_armour_while_not_on_low_energy_shield"]=5878, - ["defiance_banner_aura_effect_+%"]=5879, - ["defiance_banner_mana_reservation_efficiency_+%"]=5880, - ["degen_effect_+%"]=2146, - ["delirium_aura_effect_+%"]=5881, - ["delirium_mana_reservation_+%"]=5882, - ["delirium_reserves_no_mana"]=5883, - ["delve_biome_area_contains_x_extra_packs_of_insects"]=5884, - ["delve_biome_azurite_collected_+%"]=2189, - ["delve_biome_boss_drops_additional_unique_item"]=2180, - ["delve_biome_boss_drops_extra_precursor_component_ring"]=2181, - ["delve_biome_boss_drops_x_additional_fossils"]=2182, - ["delve_biome_boss_hits_always_crit"]=2183, - ["delve_biome_boss_life_+%_final"]=2184, - ["delve_biome_boss_physical_damage_%_to_add_as_cold"]=2185, - ["delve_biome_boss_physical_damage_%_to_add_as_fire"]=2186, - ["delve_biome_boss_physical_damage_%_to_add_as_lightning"]=2187, - ["delve_biome_city_chambers_can_contain_special_delve_chest"]=2191, - ["delve_biome_contains_delve_boss"]=2179, - ["delve_biome_encounters_extra_reward_chest_%_chance"]=2192, - ["delve_biome_monster_drop_fossil_chance_%"]=2193, - ["delve_biome_monster_projectiles_always_pierce"]=5885, - ["delve_biome_node_tier_upgrade_+%"]=2195, - ["delve_biome_off_path_reward_chests_always_azurite"]=2197, - ["delve_biome_off_path_reward_chests_always_currency"]=2198, - ["delve_biome_off_path_reward_chests_always_fossils"]=2199, - ["delve_biome_off_path_reward_chests_always_resonators"]=2200, - ["delve_biome_off_path_reward_chests_azurite_chance_+%_final"]=2201, - ["delve_biome_off_path_reward_chests_currency_chance_+%_final"]=2202, - ["delve_biome_off_path_reward_chests_fossil_chance_+%_final"]=2203, - ["delve_biome_off_path_reward_chests_resonator_chance_+%_final"]=2204, - ["delve_biome_sulphite_cost_+%_final"]=2190, - ["delve_boss_life_+%_final_from_biome"]=5886, - ["demigod_footprints_from_item"]=10320, - ["desecrate_cooldown_speed_+%"]=3768, - ["desecrate_creates_X_additional_corpses"]=4137, - ["desecrate_damage_+%"]=3605, - ["desecrate_duration_+%"]=3805, - ["desecrate_maximum_number_of_corpses"]=5887, - ["desecrate_number_of_corpses_to_create"]=4007, - ["desecrate_on_block_%_chance_to_create"]=2474, - ["desecrated_ground_effect_on_self_+%"]=2053, - ["despair_curse_effect_+%"]=5888, - ["despair_duration_+%"]=5889, - ["despair_no_reservation"]=5890, - ["destructive_link_duration_+%"]=5891, - ["detect_player_has_foolishly_drawn_attention"]=443, - ["determination_aura_effect_+%"]=3257, - ["determination_mana_reservation_+%"]=3922, - ["determination_mana_reservation_efficiency_+%"]=5893, - ["determination_mana_reservation_efficiency_-2%_per_1"]=5892, - ["determination_reserves_no_mana"]=5894, - ["detonate_dead_%_chance_to_detonate_additional_corpse"]=3880, - ["detonate_dead_damage_+%"]=3574, - ["detonate_dead_radius_+%"]=3715, - ["devouring_totem_%_chance_to_consume_additional_corpse"]=3889, - ["devouring_totem_leech_per_second_+%"]=3883, - ["dexterity_+%"]=1094, - ["dexterity_+%_if_2_redeemer_items"]=4334, - ["dexterity_+%_if_strength_higher_than_intelligence"]=5896, - ["dexterity_accuracy_bonus_grants_accuracy_rating_+3_per_dexterity_instead"]=5895, - ["dexterity_skill_gem_level_+"]=5897, - ["disable_blessing_skills_and_display_socketed_aura_gems_reserve_no_mana"]=472, - ["disable_chest_slot"]=2483, - ["disable_skill_if_melee_attack"]=2396, - ["discharge_and_voltaxic_burst_nova_spells_cast_at_target_location"]=5898, - ["discharge_area_of_effect_+%_final"]=5899, - ["discharge_chance_not_to_consume_charges_%"]=3306, - ["discharge_cooldown_override_ms"]=5900, - ["discharge_damage_+%"]=3304, - ["discharge_damage_+%_final"]=5901, - ["discharge_radius_+"]=5902, - ["discharge_radius_+%"]=3305, - ["discharge_triggered_damage_+%_final"]=5903, - ["discipline_aura_effect_+%"]=3258, - ["discipline_mana_reservation_+%"]=3923, - ["discipline_mana_reservation_efficiency_+%"]=5905, - ["discipline_mana_reservation_efficiency_-2%_per_1"]=5904, - ["discipline_reserves_no_mana"]=5906, - ["disintegrate_secondary_beam_angle_+%"]=5907, - ["dispel_bleed_on_guard_skill_use"]=5908, - ["dispel_corrupted_blood_on_guard_skill_use"]=5909, - ["dispel_status_ailments_on_flask_use"]=3188, - ["dispel_status_ailments_on_rampage_threshold"]=2851, - ["display_abberaths_hooves_skill_level"]=683, - ["display_additive_damage_modifiers_in_large_radius_of_non_unique_jewels_instead_apply_to_fire_damage"]=5910, - ["display_ailment_bearer_charge_interval"]=4321, - ["display_altar_chaos_aura"]=5911, - ["display_altar_cold_aura"]=5912, - ["display_altar_fire_aura"]=5913, - ["display_altar_lightning_aura"]=5914, - ["display_altar_tangle_tentalces_daemon"]=5915, - ["display_altleague_event"]=5916, - ["display_area_contains_alluring_vaal_side_area"]=5917, - ["display_area_contains_corrupting_tempest"]=5918, - ["display_area_contains_improved_labyrinth_trial"]=5919, - ["display_area_contains_uber_radiating_tempest"]=5920, - ["display_attack_with_commandment_of_force_on_hit_%"]=3397, - ["display_attack_with_commandment_of_fury_on_hit_%"]=3409, - ["display_attack_with_commandment_of_ire_when_hit_%"]=3907, - ["display_attack_with_commandment_of_light_when_critically_hit_%"]=3401, - ["display_attack_with_commandment_of_spite_when_hit_%"]=3413, - ["display_attack_with_decree_of_force_on_hit_%"]=3396, - ["display_attack_with_decree_of_fury_on_hit_%"]=3408, - ["display_attack_with_decree_of_ire_when_hit_%"]=3906, - ["display_attack_with_decree_of_light_when_critically_hit_%"]=3400, - ["display_attack_with_decree_of_spite_when_hit_%"]=3412, - ["display_attack_with_edict_of_force_on_hit_%"]=3395, - ["display_attack_with_edict_of_fury_on_hit_%"]=3407, - ["display_attack_with_edict_of_ire_when_hit_%"]=3905, - ["display_attack_with_edict_of_light_when_critically_hit_%"]=3399, - ["display_attack_with_edict_of_spite_when_hit_%"]=3411, - ["display_attack_with_word_of_force_on_hit_%"]=3394, - ["display_attack_with_word_of_fury_on_hit_%"]=3406, - ["display_attack_with_word_of_ire_when_hit_%"]=3904, - ["display_attack_with_word_of_light_when_critically_hit_%"]=3398, - ["display_attack_with_word_of_spite_when_hit_%"]=3410, - ["display_bow_range_+"]=2957, - ["display_cast_commandment_of_blades_on_hit_%_"]=3373, - ["display_cast_commandment_of_flames_on_hit_%"]=3426, - ["display_cast_commandment_of_frost_on_kill_%"]=3430, - ["display_cast_commandment_of_inferno_on_kill_%"]=3381, - ["display_cast_commandment_of_reflection_when_hit_%"]=3393, - ["display_cast_commandment_of_tempest_on_hit_%"]=3385, - ["display_cast_commandment_of_the_grave_on_kill_%"]=3389, - ["display_cast_commandment_of_thunder_on_kill_%"]=3434, - ["display_cast_commandment_of_war_on_kill_%"]=3405, - ["display_cast_commandment_of_winter_when_hit_%"]=3377, - ["display_cast_decree_of_blades_on_hit_%__"]=3372, - ["display_cast_decree_of_flames_on_hit_%"]=3425, - ["display_cast_decree_of_frost_on_kill_%"]=3429, - ["display_cast_decree_of_inferno_on_kill_%"]=3380, - ["display_cast_decree_of_reflection_when_hit_%"]=3392, - ["display_cast_decree_of_tempest_on_hit_%"]=3384, - ["display_cast_decree_of_the_grave_on_kill_%"]=3388, - ["display_cast_decree_of_thunder_on_kill_%"]=3433, - ["display_cast_decree_of_war_on_kill_%"]=3404, - ["display_cast_decree_of_winter_when_hit_%"]=3376, - ["display_cast_edict_of_blades_on_hit_%_"]=3371, - ["display_cast_edict_of_flames_on_hit_%"]=3424, - ["display_cast_edict_of_frost_on_kill_%"]=3428, - ["display_cast_edict_of_inferno_on_kill_%"]=3379, - ["display_cast_edict_of_reflection_when_hit_%"]=3391, - ["display_cast_edict_of_tempest_on_hit_%"]=3383, - ["display_cast_edict_of_the_grave_on_kill_%"]=3387, - ["display_cast_edict_of_thunder_on_kill_%"]=3432, - ["display_cast_edict_of_war_on_kill_%"]=3403, - ["display_cast_edict_of_winter_when_hit_%"]=3375, - ["display_cast_fire_burst_on_kill"]=684, - ["display_cast_word_of_blades_on_hit_%"]=3370, - ["display_cast_word_of_flames_on_hit_%"]=3423, - ["display_cast_word_of_frost_on_kill_%"]=3427, - ["display_cast_word_of_inferno_on_kill_%"]=3378, - ["display_cast_word_of_reflection_when_hit_%"]=3390, - ["display_cast_word_of_tempest_on_hit_%"]=3382, - ["display_cast_word_of_the_grave_on_kill_%"]=3386, - ["display_cast_word_of_thunder_on_kill_%"]=3431, - ["display_cast_word_of_war_on_kill_%"]=3402, - ["display_cast_word_of_winter_when_hit_%"]=3374, - ["display_cover_nearby_enemies_in_ash_if_havent_moved_in_past_X_seconds"]=5626, - ["display_cowards_trial_waves_of_monsters"]=5921, - ["display_cowards_trial_waves_of_undead_monsters"]=5922, - ["display_dark_ritual_curse_max_skill_level_requirement"]=5923, - ["display_golden_radiance"]=2395, - ["display_heist_contract_lockdown_timer_+%"]=5924, - ["display_herald_of_thunder_storm"]=5635, + ["curse_apply_as_aura"]=3383, + ["curse_area_of_effect_+%"]=2158, + ["curse_aura_skill_area_of_effect_+%"]=5913, + ["curse_aura_skills_mana_reservation_efficiency_+%"]=5916, + ["curse_aura_skills_mana_reservation_efficiency_-2%_per_1"]=5915, + ["curse_aura_skills_reservation_efficiency_+%"]=5914, + ["curse_cast_speed_+%"]=2147, + ["curse_effect_+%"]=2529, + ["curse_effect_+%_if_200_mana_spent_recently"]=5919, + ["curse_effect_on_self_+%"]=2103, + ["curse_effect_on_self_+%_while_on_consecrated_ground"]=5917, + ["curse_effect_on_self_+%_while_under_effect_of_life_or_mana_flask"]=5918, + ["curse_mana_cost_+%"]=5920, + ["curse_on_block_%_chance_flammability_with_+20%_effect"]=2919, + ["curse_on_block_level_5_vulnerability"]=2918, + ["curse_on_hit_%_conductivity"]=2447, + ["curse_on_hit_%_despair"]=2448, + ["curse_on_hit_%_elemental_weakness"]=2449, + ["curse_on_hit_%_enfeeble"]=2446, + ["curse_on_hit_%_flammability"]=2450, + ["curse_on_hit_%_frostbite"]=2451, + ["curse_on_hit_%_temporal_chains"]=2452, + ["curse_on_hit_%_vulnerability"]=2453, + ["curse_on_hit_level_10_vulnerability_%"]=2457, + ["curse_on_hit_level_assassins_mark"]=696, + ["curse_on_hit_level_cold_weakness"]=2459, + ["curse_on_hit_level_conductivity"]=2460, + ["curse_on_hit_level_despair"]=2461, + ["curse_on_hit_level_elemental_weakness"]=2458, + ["curse_on_hit_level_enfeeble"]=2462, + ["curse_on_hit_level_flammability"]=2463, + ["curse_on_hit_level_frostbite"]=2464, + ["curse_on_hit_level_poachers_mark"]=697, + ["curse_on_hit_level_poachers_mark_bypass_hexproof"]=698, + ["curse_on_hit_level_temporal_chains"]=2455, + ["curse_on_hit_level_vulnerability"]=2456, + ["curse_on_hit_level_warlords_mark"]=699, + ["curse_on_melee_block_level_15_punishment"]=2920, + ["curse_on_projectile_block_level_15_temporal_chains"]=2921, + ["curse_on_spell_block_level_15_elemental_weakness"]=2922, + ["curse_pillar_curse_effect_+%_final"]=2530, + ["curse_skill_effect_duration_+%"]=5921, + ["curse_skill_gem_level_+"]=5922, + ["curse_with_enfeeble_on_hit_%_against_uncursed_enemies"]=2454, + ["curse_with_punishment_on_hit_%"]=5923, + ["cursed_enemies_%_chance_to_grant_endurance_charge_when_hit"]=5925, + ["cursed_enemies_%_chance_to_grant_frenzy_charge_when_hit"]=5926, + ["cursed_enemies_%_chance_to_grant_power_charge_when_hit"]=5927, + ["cursed_enemies_are_exorcised_on_kill"]=5924, + ["cursed_with_silence_when_hit_%_chance"]=5928, + ["curses_have_no_effect_on_you_for_4_seconds_every_10_seconds"]=5929, + ["curses_never_expire"]=2097, + ["curses_reflected_to_self"]=5930, + ["curses_you_inflict_remain_after_death"]=5931, + ["cyclone_and_sweep_enemy_knockback_direction_is_reversed"]=5932, + ["cyclone_and_sweep_melee_knockback"]=5933, + ["cyclone_attack_speed_+%"]=3794, + ["cyclone_damage_+%"]=3608, + ["cyclone_max_stages_movement_speed_+%"]=5934, + ["dagger_accuracy_rating"]=1939, + ["dagger_accuracy_rating_+%"]=1376, + ["dagger_ailment_damage_+%"]=1257, + ["dagger_attack_speed_+%"]=1358, + ["dagger_critical_strike_chance_+%"]=1402, + ["dagger_damage_+%"]=1254, + ["dagger_hit_and_ailment_damage_+%"]=1255, + ["damage_+%"]=1127, + ["damage_+%_against_enemies_marked_by_you"]=5956, + ["damage_+%_during_flask_effect"]=4014, + ["damage_+%_final_if_lost_endurance_charge_in_past_8_seconds"]=5957, + ["damage_+%_final_if_there_is_at_most_1_rare_or_unique_enemy_nearby"]=5935, + ["damage_+%_final_to_grant_packmate_on_death"]=5936, + ["damage_+%_final_to_you_and_nearby_allies_per_nearby_corpses_up_to_10%"]=5937, + ["damage_+%_final_with_at_least_1_nearby_ally"]=5958, + ["damage_+%_for_4_seconds_on_crit"]=3385, + ["damage_+%_for_4_seconds_on_detonation"]=3409, + ["damage_+%_for_4_seconds_when_you_kill_a_bleeding_enemy"]=4017, + ["damage_+%_for_4_seconds_when_you_kill_a_cursed_enemy"]=3993, + ["damage_+%_for_each_herald_affecting_you"]=5959, + ["damage_+%_for_each_level_the_enemy_is_higher_than_you"]=4124, + ["damage_+%_for_each_trap_and_mine_active"]=4008, + ["damage_+%_for_enemies_you_inflict_spiders_web_upon"]=5960, + ["damage_+%_for_you_and_allies_affected_by_your_auras"]=4001, + ["damage_+%_if_enemy_killed_recently"]=5961, + ["damage_+%_if_enemy_killed_recently_final"]=4149, + ["damage_+%_if_enemy_shattered_recently"]=5962, + ["damage_+%_if_firing_atleast_7_projectiles"]=5963, + ["damage_+%_if_golem_summoned_in_past_8_seconds"]=3630, + ["damage_+%_if_have_been_ignited_recently"]=5964, + ["damage_+%_if_have_crit_in_past_8_seconds"]=5965, + ["damage_+%_if_only_one_enemy_nearby"]=5966, + ["damage_+%_if_skill_costs_life"]=5967, + ["damage_+%_if_used_travel_skill_recently"]=5968, + ["damage_+%_if_you_have_consumed_a_corpse_recently"]=4184, + ["damage_+%_if_you_have_frozen_enemy_recently"]=5969, + ["damage_+%_if_you_have_shocked_recently"]=5970, + ["damage_+%_of_each_type_that_you_have_an_active_golem_of"]=4023, + ["damage_+%_on_consecrated_ground"]=3484, + ["damage_+%_on_full_energy_shield"]=5992, + ["damage_+%_per_1%_block_chance"]=5978, + ["damage_+%_per_1%_increased_item_found_quantity"]=5979, + ["damage_+%_per_100_dexterity"]=5971, + ["damage_+%_per_100_intelligence"]=5972, + ["damage_+%_per_100_strength"]=5973, + ["damage_+%_per_10_dex"]=5974, + ["damage_+%_per_10_levels"]=2771, + ["damage_+%_per_15_dex"]=5975, + ["damage_+%_per_15_int"]=5976, + ["damage_+%_per_15_strength"]=5977, + ["damage_+%_per_5_of_your_lowest_attribute"]=5980, + ["damage_+%_per_abyss_jewel_type"]=4098, + ["damage_+%_per_active_curse_on_self"]=1152, + ["damage_+%_per_active_golem"]=5981, + ["damage_+%_per_active_link"]=5982, + ["damage_+%_per_active_trap"]=3398, + ["damage_+%_per_crab_charge"]=4281, + ["damage_+%_per_endurance_charge"]=3131, + ["damage_+%_per_equipped_magic_item"]=3012, + ["damage_+%_per_fire_adaptation"]=4348, + ["damage_+%_per_frenzy_charge"]=3218, + ["damage_+%_per_frenzy_power_or_endurance_charge"]=5983, + ["damage_+%_per_poison_stack"]=5938, + ["damage_+%_per_poison_up_to_75%"]=5984, + ["damage_+%_per_power_charge"]=5985, + ["damage_+%_per_raised_zombie"]=5939, + ["damage_+%_per_shock"]=2709, + ["damage_+%_per_warcry_used_recently"]=5986, + ["damage_+%_per_your_aura_or_herald_skill_affecting_you"]=5987, + ["damage_+%_to_rare_and_unique_enemies"]=3140, + ["damage_+%_to_you_and_nearby_allies_while_you_have_fortify"]=4018, + ["damage_+%_vs_abyssal_monsters"]=5988, + ["damage_+%_vs_bleeding_enemies"]=3412, + ["damage_+%_vs_blinded_enemies"]=2745, + ["damage_+%_vs_burning_enemies"]=3380, + ["damage_+%_vs_chilled_enemies"]=5989, + ["damage_+%_vs_demons"]=2699, + ["damage_+%_vs_enemies_affected_by_status_ailments"]=3394, + ["damage_+%_vs_enemies_on_low_life_per_frenzy_charge"]=2744, + ["damage_+%_vs_enemies_per_freeze_shock_ignite"]=1176, + ["damage_+%_vs_frozen_enemies"]=1172, + ["damage_+%_vs_frozen_shocked_ignited_enemies"]=1177, + ["damage_+%_vs_hindered_enemies"]=4039, + ["damage_+%_vs_ignited_enemies"]=2886, + ["damage_+%_vs_magic_monsters"]=5990, + ["damage_+%_vs_rare_monsters"]=2741, + ["damage_+%_vs_taunted_enemies"]=5991, + ["damage_+%_when_currently_has_no_energy_shield"]=2668, + ["damage_+%_when_not_on_low_life"]=3136, + ["damage_+%_when_on_burning_ground"]=2080, + ["damage_+%_when_on_full_life"]=5993, + ["damage_+%_when_on_low_life"]=1151, + ["damage_+%_while_affected_by_a_herald"]=5994, + ["damage_+%_while_channelling"]=5995, + ["damage_+%_while_dead"]=3028, + ["damage_+%_while_es_leeching"]=1156, + ["damage_+%_while_es_not_full"]=4010, + ["damage_+%_while_fortified"]=3129, + ["damage_+%_while_ignited"]=2736, + ["damage_+%_while_in_blood_stance"]=5996, + ["damage_+%_while_leeching"]=2995, + ["damage_+%_while_life_leeching"]=1153, + ["damage_+%_while_mana_leeching"]=1155, + ["damage_+%_while_totem_active"]=3137, + ["damage_+%_while_unarmed"]=3507, + ["damage_+%_while_wielding_bow_if_totem_summoned"]=5997, + ["damage_+%_while_wielding_two_different_weapon_types"]=5998, + ["damage_+%_while_wielding_wand"]=1279, + ["damage_+%_while_you_have_a_summoned_golem"]=5999, + ["damage_+%_with_bow_skills"]=5940, + ["damage_+%_with_herald_skills"]=6000, + ["damage_+%_with_hits_and_ailments"]=6001, + ["damage_+%_with_maces_sceptres_staves"]=6002, + ["damage_+%_with_movement_skills"]=1366, + ["damage_+%_with_non_vaal_skills_during_soul_gain_prevention"]=6003, + ["damage_+%_with_one_handed_weapons"]=3267, + ["damage_+%_with_shield_skills"]=6004, + ["damage_+%_with_shield_skills_per_2%_attack_block"]=6005, + ["damage_+%_with_two_handed_weapons"]=3268, + ["damage_+1%_per_X_strength_when_in_main_hand"]=2710, + ["damage_and_minion_damage_+%_for_4_seconds_on_consume_corpse"]=3387, + ["damage_cannot_be_reflected"]=5941, + ["damage_from_hits_always_and_only_bypasses_energy_shield_when_not_blocked"]=5942, + ["damage_over_time_+%"]=1146, + ["damage_over_time_+%_per_100_max_life"]=5943, + ["damage_over_time_+%_per_frenzy_charge"]=2066, + ["damage_over_time_+%_per_power_charge"]=2067, + ["damage_over_time_+%_while_affected_by_a_herald"]=5945, + ["damage_over_time_+%_while_dual_wielding"]=2068, + ["damage_over_time_+%_while_holding_a_shield"]=2069, + ["damage_over_time_+%_while_wielding_two_handed_weapon"]=2070, + ["damage_over_time_+%_with_attack_skills"]=5946, + ["damage_over_time_+%_with_bow_skills"]=5947, + ["damage_over_time_+%_with_herald_skills"]=5948, + ["damage_over_time_+%_with_spells"]=1160, + ["damage_over_time_multiplier_+_if_enemy_killed_recently"]=5944, + ["damage_over_time_multiplier_+_with_attacks"]=1182, + ["damage_over_time_multiplier_+_with_spells"]=1181, + ["damage_over_time_taken_+%_while_you_have_at_least_20_fortification"]=5949, + ["damage_penetrates_%_cold_resistance_while_affected_by_herald_of_ice"]=5950, + ["damage_penetrates_%_elemental_resistance_if_enemy_not_killed_recently"]=5951, + ["damage_penetrates_%_elemental_resistance_vs_chilled_enemies"]=5952, + ["damage_penetrates_%_elemental_resistance_vs_cursed_enemies"]=5953, + ["damage_penetrates_%_fire_resistance_while_affected_by_herald_of_ash"]=5954, + ["damage_penetrates_%_lightning_resistance_while_affected_by_herald_of_thunder"]=5955, + ["damage_recouped_as_life_%_if_leech_removed_by_filling_recently"]=6006, + ["damage_reduction_rating_%_with_active_totem"]=3271, + ["damage_reduction_rating_from_body_armour_doubled"]=3269, + ["damage_reflected_to_enemies_%_gained_as_life"]=2645, + ["damage_removed_from_mana_before_life_%_while_affected_by_clarity"]=6007, + ["damage_removed_from_mana_before_life_%_while_focused"]=6008, + ["damage_removed_from_marked_target_before_life_or_es_%"]=6009, + ["damage_removed_from_radiant_sentinel_before_life_or_es_%"]=6010, + ["damage_removed_from_spectres_before_life_or_es_%"]=6011, + ["damage_removed_from_void_spawns_before_life_or_es_per_void_spawns_%"]=6012, + ["damage_removed_from_your_nearest_totem_before_life_or_es_%"]=6013, + ["damage_taken_%_recovered_as_energy_shield_from_stunning_hits"]=6031, + ["damage_taken_%_recovered_as_life_from_stunning_hits"]=6032, + ["damage_taken_+%_final_from_enemies_near_marked_enemy"]=6033, + ["damage_taken_+%_final_if_used_retaliation_recently"]=6014, + ["damage_taken_+%_final_per_5_rage_from_painshed_capped_at_50%_less"]=6015, + ["damage_taken_+%_final_per_gale_force"]=6034, + ["damage_taken_+%_final_per_totem"]=6035, + ["damage_taken_+%_for_4_seconds_after_spending_200_mana"]=6016, + ["damage_taken_+%_for_4_seconds_on_kill"]=3257, + ["damage_taken_+%_for_4_seconds_on_killing_taunted_enemy"]=3364, + ["damage_taken_+%_from_bleeding_enemies"]=3248, + ["damage_taken_+%_from_blinded_enemies"]=3216, + ["damage_taken_+%_from_ghosts"]=2181, + ["damage_taken_+%_from_hits"]=2173, + ["damage_taken_+%_from_skeletons"]=2180, + ["damage_taken_+%_from_taunted_enemies"]=4019, + ["damage_taken_+%_if_have_been_frozen_recently"]=6036, + ["damage_taken_+%_if_have_not_been_hit_recently"]=6037, + ["damage_taken_+%_if_not_hit_recently_final"]=4118, + ["damage_taken_+%_if_taunted_an_enemy_recently"]=4153, + ["damage_taken_+%_if_there_are_at_least_2_rare_or_unique_enemies_nearby"]=6017, + ["damage_taken_+%_if_you_have_taken_a_savage_hit_recently"]=4104, + ["damage_taken_+%_on_full_life"]=6038, + ["damage_taken_+%_on_low_life"]=6039, + ["damage_taken_+%_per_frenzy_charge"]=2863, + ["damage_taken_+%_to_an_element_for_4_seconds_when_hit_by_damage_from_an_element"]=3547, + ["damage_taken_+%_vs_demons"]=2698, + ["damage_taken_+%_while_affected_by_elusive"]=6018, + ["damage_taken_+%_while_es_full"]=2177, + ["damage_taken_+%_while_leeching"]=6040, + ["damage_taken_+%_while_phasing"]=6041, + ["damage_taken_+_from_suppressed_hits"]=6019, + ["damage_taken_bypasses_ward_if_hits_deal_less_than_%_of_ward"]=6020, + ["damage_taken_from_criticals_recouped_as_life_%"]=6021, + ["damage_taken_from_suppressed_hits_is_unlucky"]=6022, + ["damage_taken_from_traps_and_mines_+%"]=3226, + ["damage_taken_goes_to_life_mana_es_over_4_seconds_%"]=6023, + ["damage_taken_goes_to_life_over_4_seconds_%"]=6024, + ["damage_taken_goes_to_mana_%"]=2388, + ["damage_taken_goes_to_mana_%_per_power_charge"]=3097, + ["damage_taken_goes_to_mana_over_4_seconds_%_while_affected_by_clarity"]=6025, + ["damage_taken_over_time_+%_final_during_life_flask_effect"]=6026, + ["damage_taken_per_250_dexterity_+%"]=6027, + ["damage_taken_per_250_intelligence_+%"]=6028, + ["damage_taken_per_250_strength_+%"]=6029, + ["damage_taken_per_ghost_dance_stack_+%"]=6030, + ["damage_taken_recouped_as_life_%_per_socketed_red_gem"]=6042, + ["damage_taken_while_frozen_recouped_as_life_%"]=6043, + ["damage_vs_cursed_enemies_per_enemy_curse_+%"]=2947, + ["damage_vs_enemies_on_full_life_+%"]=6044, + ["damage_vs_enemies_on_full_life_per_power_charge_+%"]=2929, + ["damage_vs_enemies_on_low_life_+%"]=2742, + ["damage_vs_enemies_on_low_life_+%_final"]=2743, + ["damage_vs_enemies_on_low_life_per_power_charge_+%"]=2930, + ["damage_vs_shocked_enemies_+%"]=1174, + ["damage_while_dual_wielding_+%"]=1213, + ["damage_while_no_damage_taken_+%"]=3149, + ["damage_while_no_frenzy_charges_+%"]=3697, + ["damage_with_cold_skills_+%"]=1310, + ["damage_with_fire_skills_+%"]=1299, + ["damage_with_lightning_skills_+%"]=1318, + ["damaging_ailments_deal_damage_+%_faster"]=6045, + ["dark_pact_minions_recover_%_life_on_hit"]=6046, + ["dark_ritual_area_of_effect_+%"]=6047, + ["dark_ritual_damage_+%"]=6048, + ["dark_ritual_linked_curse_effect_+%"]=6049, + ["daytime_fish_caught_size_+%"]=6050, + ["deadeye_accuracy_rating_+%_final_per_frenzy_charge"]=6051, + ["deadeye_damage_taken_+%_final_from_marked_enemy"]=6052, + ["deadeye_projectile_damage_+%_final_max_as_distance_travelled_increases"]=6053, + ["deal_1000_chaos_damage_per_second_for_10_seconds_on_hit"]=6054, + ["deal_300%_of_physical_damage_as_random_ailment_%_chance"]=6055, + ["deal_chaos_damage_per_second_for_10_seconds_on_hit"]=6056, + ["deal_chaos_damage_per_second_for_8_seconds_on_curse"]=6057, + ["deal_double_damage_to_enemies_on_full_life"]=6058, + ["deal_no_damage_when_not_on_low_life"]=6059, + ["deal_no_damage_yourself"]=2183, + ["deal_no_elemental_damage"]=6060, + ["deal_no_elemental_physical_damage"]=6061, + ["deal_no_non_chaos_damage"]=6062, + ["deal_no_non_elemental_damage"]=6063, + ["deal_no_non_fire_damage"]=2727, + ["deal_no_non_lightning_damage"]=2728, + ["deal_no_non_physical_damage"]=2725, + ["deal_triple_damage_if_spent_at_least_Xms_on_single_attack_recently"]=6064, + ["deaths_oath_debuff_on_kill_base_chaos_damage_to_deal_per_minute"]=2625, + ["deaths_oath_debuff_on_kill_duration_ms"]=2625, + ["debilitate_enemies_for_1_second_on_hit_%_chance"]=6065, + ["debilitate_enemies_for_x_milliseconds_when_suppressing_their_spell"]=6066, + ["debilitate_when_hit_ms"]=6067, + ["debuff_time_passed_+%"]=6069, + ["debuff_time_passed_-%_while_affected_by_haste"]=6068, + ["decoy_rejuvenation_devouring_totem_totem_%_maximum_life_inflicted_as_aoe_fire_damage_when_hit"]=6070, + ["decoy_totem_life_+%"]=3928, + ["decoy_totem_radius_+%"]=3766, + ["defences_+%_while_wielding_staff"]=6074, + ["defences_+%_while_you_have_four_linked_targets"]=6071, + ["defences_are_zero"]=6072, + ["defences_from_animated_guardians_items_apply_to_animated_weapon"]=6073, + ["defend_with_%_armour_against_ranged_attacks"]=6075, + ["defend_with_%_of_armour_while_not_on_low_energy_shield"]=6076, + ["defiance_banner_aura_effect_+%"]=6077, + ["defiance_banner_mana_reservation_efficiency_+%"]=6078, + ["degen_effect_+%"]=2178, + ["delirium_aura_effect_+%"]=6079, + ["delirium_mana_reservation_+%"]=6080, + ["delirium_reserves_no_mana"]=6081, + ["delve_biome_area_contains_x_extra_packs_of_insects"]=6082, + ["delve_biome_azurite_collected_+%"]=2221, + ["delve_biome_boss_drops_additional_unique_item"]=2212, + ["delve_biome_boss_drops_extra_precursor_component_ring"]=2213, + ["delve_biome_boss_drops_x_additional_fossils"]=2214, + ["delve_biome_boss_hits_always_crit"]=2215, + ["delve_biome_boss_life_+%_final"]=2216, + ["delve_biome_boss_physical_damage_%_to_add_as_cold"]=2217, + ["delve_biome_boss_physical_damage_%_to_add_as_fire"]=2218, + ["delve_biome_boss_physical_damage_%_to_add_as_lightning"]=2219, + ["delve_biome_city_chambers_can_contain_special_delve_chest"]=2223, + ["delve_biome_contains_delve_boss"]=2211, + ["delve_biome_encounters_extra_reward_chest_%_chance"]=2224, + ["delve_biome_monster_drop_fossil_chance_%"]=2225, + ["delve_biome_monster_projectiles_always_pierce"]=6083, + ["delve_biome_node_tier_upgrade_+%"]=2227, + ["delve_biome_off_path_reward_chests_always_azurite"]=2229, + ["delve_biome_off_path_reward_chests_always_currency"]=2230, + ["delve_biome_off_path_reward_chests_always_fossils"]=2231, + ["delve_biome_off_path_reward_chests_always_resonators"]=2232, + ["delve_biome_off_path_reward_chests_azurite_chance_+%_final"]=2233, + ["delve_biome_off_path_reward_chests_currency_chance_+%_final"]=2234, + ["delve_biome_off_path_reward_chests_fossil_chance_+%_final"]=2235, + ["delve_biome_off_path_reward_chests_resonator_chance_+%_final"]=2236, + ["delve_biome_sulphite_cost_+%_final"]=2222, + ["delve_boss_life_+%_final_from_biome"]=6084, + ["demigod_footprints_from_item"]=10649, + ["desecrate_cooldown_speed_+%"]=3814, + ["desecrate_creates_X_additional_corpses"]=4183, + ["desecrate_damage_+%"]=3650, + ["desecrate_duration_+%"]=3851, + ["desecrate_maximum_number_of_corpses"]=6085, + ["desecrate_number_of_corpses_to_create"]=4053, + ["desecrate_on_block_%_chance_to_create"]=2507, + ["desecrated_ground_effect_on_self_+%"]=2085, + ["despair_curse_effect_+%"]=6086, + ["despair_duration_+%"]=6087, + ["despair_no_reservation"]=6088, + ["destructive_link_duration_+%"]=6089, + ["detect_player_has_foolishly_drawn_attention"]=450, + ["determination_aura_effect_+%"]=3299, + ["determination_aura_effect_+%_while_no_endurance_charges"]=3006, + ["determination_mana_reservation_+%"]=3968, + ["determination_mana_reservation_efficiency_+%"]=6091, + ["determination_mana_reservation_efficiency_-2%_per_1"]=6090, + ["determination_reserves_no_mana"]=6092, + ["detonate_dead_%_chance_to_detonate_additional_corpse"]=3926, + ["detonate_dead_damage_+%"]=3619, + ["detonate_dead_radius_+%"]=3761, + ["devouring_totem_%_chance_to_consume_additional_corpse"]=3935, + ["devouring_totem_leech_per_second_+%"]=3929, + ["dexterity_+%"]=1121, + ["dexterity_+%_if_2_redeemer_items"]=4380, + ["dexterity_+%_if_strength_higher_than_intelligence"]=6094, + ["dexterity_accuracy_bonus_grants_accuracy_rating_+3_per_dexterity_instead"]=6093, + ["dexterity_skill_gem_level_+"]=6095, + ["disable_amulet_slot"]=6096, + ["disable_belt_slot"]=6097, + ["disable_blessing_skills_and_display_socketed_aura_gems_reserve_no_mana"]=480, + ["disable_chest_slot"]=2516, + ["disable_skill_if_melee_attack"]=2429, + ["disable_utility_flasks"]=6098, + ["discharge_and_voltaxic_burst_nova_spells_cast_at_target_location"]=6099, + ["discharge_area_of_effect_+%_final"]=6100, + ["discharge_chance_not_to_consume_charges_%"]=3348, + ["discharge_cooldown_override_ms"]=6101, + ["discharge_damage_+%"]=3346, + ["discharge_damage_+%_final"]=6102, + ["discharge_radius_+"]=6103, + ["discharge_radius_+%"]=3347, + ["discharge_triggered_damage_+%_final"]=6104, + ["discipline_aura_effect_+%"]=3300, + ["discipline_aura_effect_+%_while_no_power_charges"]=6105, + ["discipline_mana_reservation_+%"]=3969, + ["discipline_mana_reservation_efficiency_+%"]=6107, + ["discipline_mana_reservation_efficiency_-2%_per_1"]=6106, + ["discipline_reserves_no_mana"]=6108, + ["disintegrate_secondary_beam_angle_+%"]=6109, + ["dispel_bleed_on_guard_skill_use"]=6110, + ["dispel_corrupted_blood_on_guard_skill_use"]=6111, + ["dispel_status_ailments_on_flask_use"]=3230, + ["dispel_status_ailments_on_rampage_threshold"]=2888, + ["display_abberaths_hooves_skill_level"]=700, + ["display_additive_damage_modifiers_in_large_radius_of_non_unique_jewels_instead_apply_to_fire_damage"]=6112, + ["display_ailment_bearer_charge_interval"]=4367, + ["display_altar_chaos_aura"]=6113, + ["display_altar_cold_aura"]=6114, + ["display_altar_fire_aura"]=6115, + ["display_altar_lightning_aura"]=6116, + ["display_altar_tangle_tentalces_daemon"]=6117, + ["display_altleague_event"]=6118, + ["display_area_contains_alluring_vaal_side_area"]=6119, + ["display_area_contains_corrupting_tempest"]=6120, + ["display_area_contains_improved_labyrinth_trial"]=6121, + ["display_area_contains_uber_radiating_tempest"]=6122, + ["display_attack_with_commandment_of_force_on_hit_%"]=3442, + ["display_attack_with_commandment_of_fury_on_hit_%"]=3454, + ["display_attack_with_commandment_of_ire_when_hit_%"]=3953, + ["display_attack_with_commandment_of_light_when_critically_hit_%"]=3446, + ["display_attack_with_commandment_of_spite_when_hit_%"]=3458, + ["display_attack_with_decree_of_force_on_hit_%"]=3441, + ["display_attack_with_decree_of_fury_on_hit_%"]=3453, + ["display_attack_with_decree_of_ire_when_hit_%"]=3952, + ["display_attack_with_decree_of_light_when_critically_hit_%"]=3445, + ["display_attack_with_decree_of_spite_when_hit_%"]=3457, + ["display_attack_with_edict_of_force_on_hit_%"]=3440, + ["display_attack_with_edict_of_fury_on_hit_%"]=3452, + ["display_attack_with_edict_of_ire_when_hit_%"]=3951, + ["display_attack_with_edict_of_light_when_critically_hit_%"]=3444, + ["display_attack_with_edict_of_spite_when_hit_%"]=3456, + ["display_attack_with_word_of_force_on_hit_%"]=3439, + ["display_attack_with_word_of_fury_on_hit_%"]=3451, + ["display_attack_with_word_of_ire_when_hit_%"]=3950, + ["display_attack_with_word_of_light_when_critically_hit_%"]=3443, + ["display_attack_with_word_of_spite_when_hit_%"]=3455, + ["display_bow_range_+"]=2996, + ["display_cast_commandment_of_blades_on_hit_%_"]=3418, + ["display_cast_commandment_of_flames_on_hit_%"]=3471, + ["display_cast_commandment_of_frost_on_kill_%"]=3475, + ["display_cast_commandment_of_inferno_on_kill_%"]=3426, + ["display_cast_commandment_of_reflection_when_hit_%"]=3438, + ["display_cast_commandment_of_tempest_on_hit_%"]=3430, + ["display_cast_commandment_of_the_grave_on_kill_%"]=3434, + ["display_cast_commandment_of_thunder_on_kill_%"]=3479, + ["display_cast_commandment_of_war_on_kill_%"]=3450, + ["display_cast_commandment_of_winter_when_hit_%"]=3422, + ["display_cast_decree_of_blades_on_hit_%__"]=3417, + ["display_cast_decree_of_flames_on_hit_%"]=3470, + ["display_cast_decree_of_frost_on_kill_%"]=3474, + ["display_cast_decree_of_inferno_on_kill_%"]=3425, + ["display_cast_decree_of_reflection_when_hit_%"]=3437, + ["display_cast_decree_of_tempest_on_hit_%"]=3429, + ["display_cast_decree_of_the_grave_on_kill_%"]=3433, + ["display_cast_decree_of_thunder_on_kill_%"]=3478, + ["display_cast_decree_of_war_on_kill_%"]=3449, + ["display_cast_decree_of_winter_when_hit_%"]=3421, + ["display_cast_edict_of_blades_on_hit_%_"]=3416, + ["display_cast_edict_of_flames_on_hit_%"]=3469, + ["display_cast_edict_of_frost_on_kill_%"]=3473, + ["display_cast_edict_of_inferno_on_kill_%"]=3424, + ["display_cast_edict_of_reflection_when_hit_%"]=3436, + ["display_cast_edict_of_tempest_on_hit_%"]=3428, + ["display_cast_edict_of_the_grave_on_kill_%"]=3432, + ["display_cast_edict_of_thunder_on_kill_%"]=3477, + ["display_cast_edict_of_war_on_kill_%"]=3448, + ["display_cast_edict_of_winter_when_hit_%"]=3420, + ["display_cast_fire_burst_on_kill"]=701, + ["display_cast_word_of_blades_on_hit_%"]=3415, + ["display_cast_word_of_flames_on_hit_%"]=3468, + ["display_cast_word_of_frost_on_kill_%"]=3472, + ["display_cast_word_of_inferno_on_kill_%"]=3423, + ["display_cast_word_of_reflection_when_hit_%"]=3435, + ["display_cast_word_of_tempest_on_hit_%"]=3427, + ["display_cast_word_of_the_grave_on_kill_%"]=3431, + ["display_cast_word_of_thunder_on_kill_%"]=3476, + ["display_cast_word_of_war_on_kill_%"]=3447, + ["display_cast_word_of_winter_when_hit_%"]=3419, + ["display_cover_nearby_enemies_in_ash_if_havent_moved_in_past_X_seconds"]=5819, + ["display_cowards_trial_waves_of_monsters"]=6123, + ["display_cowards_trial_waves_of_undead_monsters"]=6124, + ["display_dark_ritual_curse_max_skill_level_requirement"]=6125, + ["display_golden_radiance"]=2428, + ["display_heist_contract_lockdown_timer_+%"]=6126, + ["display_herald_of_thunder_storm"]=5828, ["display_item_generation_can_roll_minion_affixes"]=34, ["display_item_generation_can_roll_totem_affixes"]=35, - ["display_item_quantity_increases_rewards_from_boss_by_x_percent_of_its_value"]=5925, - ["display_item_quantity_increases_rewards_from_encounter_by_x_percent_of_its_value"]=5926, - ["display_legion_uber_fragment_improved_rewards_+%"]=5927, - ["display_link_stuff"]=7120, - ["display_mana_cost_reduction_%"]=1852, - ["display_map_augmentable_boss"]=5928, - ["display_map_boss_gives_experience_+%"]=2738, - ["display_map_contains_grandmasters"]=2908, - ["display_map_final_boss_drops_higher_level_gear"]=2737, - ["display_map_has_oxygen"]=2886, - ["display_map_inhabited_by_lunaris_fanatics"]=5929, - ["display_map_inhabited_by_solaris_fanatics"]=5930, - ["display_map_inhabited_by_wild_beasts"]=2232, - ["display_map_labyrinth_chests_fortune"]=5931, - ["display_map_labyrinth_enchant_belts"]=5932, - ["display_map_large_chest"]=2442, - ["display_map_larger_maze"]=2441, + ["display_item_quantity_increases_rewards_from_boss_by_x_percent_of_its_value"]=6127, + ["display_item_quantity_increases_rewards_from_encounter_by_x_percent_of_its_value"]=6128, + ["display_legion_uber_fragment_improved_rewards_+%"]=6129, + ["display_link_stuff"]=7369, + ["display_mana_cost_reduction_%"]=1882, + ["display_map_augmentable_boss"]=6130, + ["display_map_boss_gives_experience_+%"]=2774, + ["display_map_contains_grandmasters"]=2945, + ["display_map_final_boss_drops_higher_level_gear"]=2773, + ["display_map_has_oxygen"]=2923, + ["display_map_inhabited_by_lunaris_fanatics"]=6131, + ["display_map_inhabited_by_solaris_fanatics"]=6132, + ["display_map_inhabited_by_wild_beasts"]=2264, + ["display_map_labyrinth_chests_fortune"]=6133, + ["display_map_labyrinth_enchant_belts"]=6134, + ["display_map_large_chest"]=2475, + ["display_map_larger_maze"]=2474, ["display_map_mission_id"]=97, - ["display_map_no_monsters"]=2336, - ["display_map_restless_dead"]=2440, - ["display_memory_line_abyss_beyond_monsters_from_cracks"]=5933, - ["display_memory_line_ambush_contains_standalone_map_boss"]=5934, - ["display_memory_line_ambush_strongbox_chain"]=5935, - ["display_memory_line_anarchy_rogue_exiles_equipped_with_unique_items"]=5936, - ["display_memory_line_anarchy_rogue_exiles_in_packs"]=5937, - ["display_memory_line_bestiary_capturable_harvest_monsters"]=5938, - ["display_memory_line_bestiary_great_migration"]=5939, - ["display_memory_line_betrayal_constant_interventions"]=5940, - ["display_memory_line_breach_area_is_breached"]=5941, - ["display_memory_line_breach_miniature_flash_breaches"]=5942, - ["display_memory_line_domination_multiple_modded_shrines"]=5943, - ["display_memory_line_domination_shrines_to_pantheon_gods"]=5944, - ["display_memory_line_essence_multiple_rare_monsters"]=5945, - ["display_memory_line_essence_rogue_exiles"]=5946, - ["display_memory_line_harbinger_player_is_a_harbinger"]=5947, - ["display_memory_line_harbinger_portals_everywhere"]=5948, - ["display_memory_line_harvest_larger_plot_with_premium_seeds"]=5949, - ["display_memory_line_incursion_reverse"]=5950, - ["display_memory_line_torment_player_is_possessed"]=5951, - ["display_memory_line_torment_rares_uniques_are_possessed"]=5952, - ["display_minion_maximum_life"]=1853, - ["display_monster_has_acceleration_shrine"]=5953, - ["display_monster_has_adrenaline"]=5954, - ["display_monster_has_cannot_recover_life_aura"]=5955, - ["display_monster_has_chilled_ground_trail_daemon"]=563, - ["display_monster_has_flask_gain_aura"]=5956, - ["display_monster_has_hinder_daemon"]=5957, - ["display_monster_has_lightning_thorns_daemon"]=5958, - ["display_monster_has_periodic_freeze_daemon"]=5959, - ["display_monster_has_proximity_shield_daemon"]=564, - ["display_monster_has_righteous_fire_daemon"]=5960, - ["display_monster_has_shroud_walker_daemon"]=5961, - ["display_monster_has_tailwind_aura"]=5962, - ["display_monster_no_drops"]=5963, - ["display_passives_in_large_radius_of_non_unique_jewels_grant_additional_strength"]=5964, - ["display_reave_base_maximum_stacks"]=5965, - ["display_socketed_minion_gems_supported_by_level_X_life_leech"]=467, - ["display_stat_uber_barrels"]=7884, - ["display_strongbox_drops_additional_shaper_or_elder_cards"]=5966, - ["display_tattoo_grants_random_keystone"]=5967, - ["display_trigger_arcane_wake_after_spending_200_mana_%_chance"]=685, - ["display_violent_pace_skill_level"]=5968, - ["divination_buff_on_flask_used_duration_cs"]=813, - ["divine_tempest_beam_width_+%"]=5969, - ["divine_tempest_damage_+%"]=5970, - ["divine_tempest_number_of_additional_nearby_enemies_to_zap"]=5971, - ["do_not_chain"]=1692, - ["doedre_aura_damage_+%_final"]=5972, - ["dominance_additional_block_%_on_nearby_allies_per_100_strength"]=2896, - ["dominance_cast_speed_+%_on_nearby_allies_per_100_intelligence"]=2899, - ["dominance_critical_strike_multiplier_+_on_nearby_allies_per_100_dexterity"]=2898, - ["dominance_defences_+%_on_nearby_allies_per_100_strength"]=2897, - ["dominating_blow_and_absolution_additive_minion_damage_modifiers_apply_to_you_at_150%_value"]=5973, - ["dominating_blow_duration_+%"]=3784, - ["dominating_blow_minion_damage_+%"]=3588, - ["dominating_blow_skill_attack_damage_+%"]=3589, - ["dot_multiplier_+"]=1151, - ["dot_multiplier_+_if_crit_in_past_8_seconds"]=5974, - ["dot_multiplier_+_while_affected_by_malevolence"]=5975, - ["dot_multiplier_+_with_bow_skills"]=5976, - ["double_and_dual_strike_soul_eater_for_20_seconds_on_rare_or_unique_kill_chance_%"]=5977, - ["double_damage_%_chance_while_wielding_mace_sceptre_staff"]=5979, - ["double_damage_chance_%_if_below_100_strength"]=5978, - ["double_slash_critical_strike_chance_+%"]=4032, - ["double_slash_damage_+%"]=4025, - ["double_slash_maximum_added_physical_damage_vs_bleeding_enemies"]=5980, - ["double_slash_minimum_added_physical_damage_vs_bleeding_enemies"]=5980, - ["double_slash_radius_+%"]=4034, - ["double_strike_attack_speed_+%"]=3739, - ["double_strike_chance_to_deal_double_damage_%_vs_bleeding_enemies"]=5981, - ["double_strike_chance_to_trigger_on_kill_effects_an_additional_time_%"]=3122, - ["double_strike_critical_strike_chance_+%"]=3822, - ["double_strike_damage_+%"]=3517, - ["drain_x_flask_charges_over_time_on_hit_for_6_seconds"]=5982, - ["dread_banner_aura_effect_+%"]=5983, - ["dread_banner_mana_reservation_efficiency_+%"]=5984, - ["dropped_items_are_converted_to_divination_cards"]=5985, - ["dropped_items_are_converted_to_maps"]=5986, - ["dropped_items_are_converted_to_scarabs_based_on_rarity"]=5987, - ["dual_strike_accuracy_rating_+%_while_wielding_sword"]=5988, - ["dual_strike_attack_speed_+%"]=3740, - ["dual_strike_attack_speed_+%_while_wielding_claw"]=5989, - ["dual_strike_critical_strike_chance_+%"]=3823, - ["dual_strike_critical_strike_multiplier_+_while_wielding_dagger"]=5990, - ["dual_strike_damage_+%"]=3518, - ["dual_strike_intimidate_on_hit_while_wielding_axe"]=5991, - ["dual_strike_main_hand_deals_double_damage_%"]=5992, - ["dual_strike_melee_splash_while_wielding_mace"]=5993, - ["dual_strike_melee_splash_with_off_hand_weapon"]=5994, - ["dual_wield_inherent_attack_speed_is_doubled_while_dual_wielding_claws"]=5995, - ["dual_wield_inherent_bonuses_are_doubled"]=5996, - ["dual_wield_or_shield_block_%"]=1074, - ["duelist_hidden_ascendancy_attack_skill_final_repeat_damage_+%_final"]=5997, - ["duration_of_ailments_on_self_+%_per_fortification"]=5998, - ["earthquake_and_earthshatter_shatter_on_killing_blow"]=5999, - ["earthquake_damage_+%"]=3620, - ["earthquake_damage_+%_per_100ms_duration"]=6000, - ["earthquake_duration_+%"]=3812, - ["earthquake_radius_+%"]=3730, - ["earthshatter_area_of_effect_+%"]=6001, - ["earthshatter_damage_+%"]=6002, - ["eat_soul_after_hex_90%_curse_expire"]=6003, - ["elemental_ailment_duration_on_self_+%_while_holding_shield"]=6004, - ["elemental_ailment_on_self_duration_+%_with_rare_abyss_jewel_socketed"]=6005, - ["elemental_ailments_on_you_proliferate_to_nearby_enemies_within_x_radius"]=6006, - ["elemental_ailments_reflected_to_self"]=6007, - ["elemental_critical_strike_chance_+%"]=1392, - ["elemental_critical_strike_multiplier_+"]=1417, - ["elemental_damage_%_taken_as_chaos_if_4_hunter_items"]=4358, - ["elemental_damage_%_to_add_as_chaos"]=1845, - ["elemental_damage_%_to_add_as_chaos_per_shaper_item_equipped"]=4219, - ["elemental_damage_+%"]=1881, - ["elemental_damage_+%_during_flask_effect"]=4110, - ["elemental_damage_+%_final_per_righteous_charge"]=6010, - ["elemental_damage_+%_if_cursed_enemy_killed_recently"]=6011, - ["elemental_damage_+%_if_enemy_chilled_recently"]=6012, - ["elemental_damage_+%_if_enemy_ignited_recently"]=6013, - ["elemental_damage_+%_if_enemy_shocked_recently"]=6014, - ["elemental_damage_+%_if_have_crit_recently"]=6015, - ["elemental_damage_+%_if_used_a_warcry_recently"]=6016, - ["elemental_damage_+%_per_10_devotion"]=6017, - ["elemental_damage_+%_per_10_dexterity"]=6018, - ["elemental_damage_+%_per_12_int"]=6019, - ["elemental_damage_+%_per_12_strength"]=6020, - ["elemental_damage_+%_per_different_enemy_elemental_ailment"]=6008, - ["elemental_damage_+%_per_divine_charge"]=4274, - ["elemental_damage_+%_per_frenzy_charge"]=2039, - ["elemental_damage_+%_per_level"]=2872, - ["elemental_damage_+%_per_power_charge"]=6021, - ["elemental_damage_+%_per_sextant_affecting_area"]=6022, - ["elemental_damage_+%_per_stackable_unique_jewel"]=4045, - ["elemental_damage_+%_while_affected_by_a_herald"]=6023, - ["elemental_damage_+%_while_in_area_affected_by_sextant"]=6024, - ["elemental_damage_additional_rolls_lucky_shocked"]=6009, - ["elemental_damage_can_shock"]=2771, - ["elemental_damage_reduction_%_per_endurance_charge"]=2176, - ["elemental_damage_resistance_+%"]=6025, - ["elemental_damage_resisted_by_lowest_elemental_resistance"]=6026, - ["elemental_damage_taken_%_as_chaos"]=2353, - ["elemental_damage_taken_+%"]=3183, - ["elemental_damage_taken_+%_at_maximum_endurance_charges"]=3211, - ["elemental_damage_taken_+%_during_flask_effect"]=3970, - ["elemental_damage_taken_+%_final_per_raised_zombie"]=6027, - ["elemental_damage_taken_+%_if_been_hit_recently"]=6029, - ["elemental_damage_taken_+%_if_not_hit_recently"]=6030, - ["elemental_damage_taken_+%_if_you_have_an_endurance_charge"]=6031, - ["elemental_damage_taken_+%_per_endurance_charge"]=6032, - ["elemental_damage_taken_+%_while_on_consecrated_ground"]=3941, - ["elemental_damage_taken_+%_while_stationary"]=6033, - ["elemental_damage_taken_from_hits_+%_per_endurance_charge"]=6028, - ["elemental_damage_with_attack_skills_+%"]=6034, - ["elemental_damage_with_attack_skills_+%_per_power_charge"]=6035, - ["elemental_damage_with_attack_skills_+%_while_using_flask"]=2656, - ["elemental_equilibrium_effect_+%"]=2096, - ["elemental_golem_granted_buff_effect_+%"]=3981, - ["elemental_golem_immunity_to_elemental_damage"]=3978, - ["elemental_golems_maximum_life_is_doubled"]=6036, - ["elemental_hit_and_wild_strike_chance_to_inflict_scorch_brittle_sap_%"]=6037, - ["elemental_hit_attack_speed_+%"]=3747, - ["elemental_hit_cannot_roll_cold_damage"]=6038, - ["elemental_hit_cannot_roll_fire_damage"]=6039, - ["elemental_hit_cannot_roll_lightning_damage"]=6040, - ["elemental_hit_chance_to_freeze_shock_ignite_%"]=3864, - ["elemental_hit_damage_+%"]=3562, - ["elemental_hit_damage_taken_%_as_physical"]=6041, - ["elemental_hit_deals_50%_less_cold_damage"]=6042, - ["elemental_hit_deals_50%_less_fire_damage"]=6043, - ["elemental_hit_deals_50%_less_lightning_damage"]=6044, - ["elemental_overload_rotation_active"]=10304, - ["elemental_penetration_%_during_flask_effect"]=4152, - ["elemental_penetration_%_if_you_have_a_power_charge"]=6045, - ["elemental_penetration_%_while_chilled"]=6046, - ["elemental_reflect_damage_taken_+%"]=2606, - ["elemental_reflect_damage_taken_+%_while_affected_by_purity_of_elements"]=6048, - ["elemental_reflect_damage_taken_and_minion_elemental_reflect_damage_taken_+%"]=6047, - ["elemental_resistance_%_per_10_devotion"]=6052, - ["elemental_resistance_%_per_empty_white_socket"]=4320, - ["elemental_resistance_%_per_minion_up_to_30%"]=6049, - ["elemental_resistance_%_per_stackable_unique_jewel"]=4046, - ["elemental_resistance_%_when_on_low_life"]=1528, - ["elemental_resistance_%_while_no_gems_in_helmet"]=6050, - ["elemental_resistance_+%_per_15_ascendance"]=1097, - ["elemental_resistance_cannot_be_lowered_by_curses"]=6051, - ["elemental_resistances_+%_for_you_and_allies_affected_by_your_auras"]=3956, - ["elemental_resistances_are_limited_by_highest_maximum_elemental_resistance"]=6053, - ["elemental_skill_chance_to_blind_nearby_enemies_%"]=6054, - ["elemental_skills_deal_triple_damage"]=6055, - ["elemental_spell_damage_taken_+_per_barkskin_stack"]=479, - ["elemental_status_effect_aura_radius"]=2118, - ["elemental_weakness_curse_effect_+%"]=3897, - ["elemental_weakness_duration_+%"]=3802, - ["elemental_weakness_ignores_hexproof"]=2503, - ["elemental_weakness_no_reservation"]=6056, - ["elementalist_all_damage_causes_chill_shock_and_ignite_for_4_seconds_on_kill_%"]=3508, - ["elementalist_area_of_effect_+%_for_5_seconds"]=6057, - ["elementalist_chill_maximum_magnitude_override"]=6058, - ["elementalist_cold_penetration_%_for_4_seconds_on_using_fire_skill"]=3504, - ["elementalist_damage_with_an_element_+%_for_4_seconds_after_being_hit_by_an_element"]=3501, - ["elementalist_elemental_damage_+%_for_4_seconds_every_10_seconds"]=3503, - ["elementalist_elemental_damage_+%_for_5_seconds"]=6059, - ["elementalist_elemental_status_effect_aura_radius"]=3509, - ["elementalist_fire_penetration_%_for_4_seconds_on_using_lightning_skill"]=3506, - ["elementalist_gain_shaper_of_desolation_every_10_seconds"]=6060, - ["elementalist_ignite_damage_+%_final"]=6061, - ["elementalist_lightning_penetration_%_for_4_seconds_on_using_cold_skill"]=3505, - ["elementalist_skill_area_of_effect_+%_for_4_seconds_every_10_seconds"]=4125, - ["elementalist_summon_elemental_golem_on_killing_enemy_with_element_%"]=3507, - ["elusive_effect_+%"]=6062, - ["elusive_effect_on_self_+%_per_power_charge"]=4278, - ["elusive_loss_rate_+%"]=6063, - ["elusive_minimum_effect_%"]=6064, - ["ember_projectile_spread_area_+%"]=6065, - ["emergency_hotfix_stat_2"]=8153, - ["empowered_attack_damage_+%"]=6066, - ["empowered_attack_double_damage_%_chance"]=6067, - ["enchantment_boots_added_cold_damage_when_hit_maximum"]=3129, - ["enchantment_boots_added_cold_damage_when_hit_minimum"]=3129, - ["enchantment_boots_attack_and_cast_speed_+%_for_4_seconds_on_kill"]=3128, - ["enchantment_boots_damage_penetrates_elemental_resistance_%_while_you_havent_killed_for_4_seconds"]=3197, - ["enchantment_boots_life_leech_on_kill_permyriad"]=3131, - ["enchantment_boots_life_regen_per_minute_%_for_4_seconds_when_hit"]=3057, - ["enchantment_boots_mana_costs_when_hit_+%"]=3125, - ["enchantment_boots_mana_regeneration_rate_+%_if_cast_spell_recently"]=6068, - ["enchantment_boots_maximum_added_chaos_damage_for_4_seconds_when_crit_4s"]=3199, - ["enchantment_boots_maximum_added_fire_damage_on_kill_4s"]=3132, - ["enchantment_boots_maximum_added_lightning_damage_when_you_havent_killed_for_4_seconds"]=3130, - ["enchantment_boots_minimum_added_chaos_damage_for_4_seconds_when_crit_4s"]=3199, - ["enchantment_boots_minimum_added_fire_damage_on_kill_4s"]=3132, - ["enchantment_boots_minimum_added_lightning_damage_when_you_havent_killed_for_4_seconds"]=3130, - ["enchantment_boots_movement_speed_+%_when_not_hit_for_4_seconds"]=3133, - ["enchantment_boots_physical_damage_%_added_as_elements_in_spells_that_hit_you_in_past_4_seconds"]=3198, - ["enchantment_boots_status_ailment_chance_+%_when_havent_crit_for_4_seconds"]=3134, - ["enchantment_boots_stun_avoid_%_on_kill"]=3126, - ["enchantment_critical_strike_chance_+%_if_you_havent_crit_for_4_seconds"]=3438, - ["endurance_charge_duration_+%"]=2026, - ["endurance_charge_on_hit_%_vs_no_armour"]=6069, - ["endurance_charge_on_kill_%"]=2528, - ["endurance_charge_on_kill_percent_chance_while_holding_shield"]=6070, - ["endurance_charge_on_melee_stun_damage_+%_final_per_endurance_charge"]=6071, - ["endurance_charge_on_off_hand_kill_%"]=3336, - ["endurance_only_conduit"]=2161, - ["enduring_cry_buff_effect_+%"]=3996, - ["enduring_cry_cooldown_speed_+%"]=3773, - ["enduring_cry_grants_x_additional_endurance_charges"]=6072, - ["enemies_blinded_by_you_have_malediction"]=6073, - ["enemies_blinded_by_you_while_blinded_have_malediction"]=6074, - ["enemies_chaos_resistance_%_while_cursed"]=3946, - ["enemies_chill_as_unfrozen"]=1814, - ["enemies_chilled_by_bane_and_contagion"]=6075, - ["enemies_chilled_by_hits_deal_damage_lessened_by_chill_effect"]=6076, - ["enemies_chilled_by_hits_take_damage_increased_by_chill_effect"]=6077, - ["enemies_chilled_by_your_hits_are_shocked"]=6078, - ["enemies_cursed_by_you_have_life_regeneration_rate_+%"]=6079, - ["enemies_damage_taken_+%_while_cursed"]=3645, - ["enemies_explode_for_%_life_as_physical_damage"]=6080, - ["enemies_explode_on_death_by_attack_for_10%_life_as_physical_damage"]=6081, - ["enemies_explode_on_death_by_wand_hit_for_25%_life_as_chaos_damage_%_chance"]=6082, - ["enemies_explode_on_kill"]=6083, - ["enemies_explode_on_kill_while_unhinged"]=6084, - ["enemies_extra_damage_rolls_with_lightning_damage"]=6085, - ["enemies_extra_damage_rolls_with_lightning_damage_while_you_are_shocked"]=6086, - ["enemies_hitting_you_drop_burning_ground_%"]=6087, - ["enemies_hitting_you_drop_chilled_ground_%"]=6088, - ["enemies_hitting_you_drop_shocked_ground_%"]=6089, - ["enemies_ignited_by_you_have_physical_damage_%_converted_to_fire"]=6090, - ["enemies_in_presence_and_you_count_as_moving_when_affected_by_elemental_ailments"]=6091, - ["enemies_killed_on_fungal_ground_explode_for_10%_chaos_damage_%_chance"]=6092, - ["enemies_near_corpses_created_recently_are_shocked_and_chilled"]=6093, - ["enemies_near_cursed_corpses_are_blinded_and_explode_on_death_for_%_life_as_physical_damage"]=6094, - ["enemies_near_link_skill_target_have_exposure"]=6095, - ["enemies_near_marked_enemy_are_blinded"]=6096, - ["enemies_pacified_by_you_take_+%_damage"]=6097, - ["enemies_poisoned_by_you_cannot_deal_critical_strikes"]=6098, - ["enemies_poisoned_by_you_cannot_regen_life"]=6099, - ["enemies_poisoned_by_you_chaos_resistance_+%"]=6100, - ["enemies_shocked_by_you_have_physical_damage_%_converted_to_lightning"]=6101, - ["enemies_shocked_by_your_hits_are_chilled"]=6102, - ["enemies_taunted_by_warcry_explode_on_death_%_chance_dealing_8%_life_as_chaos_damage"]=6103, - ["enemies_taunted_by_you_cannot_evade_attacks"]=6104, - ["enemies_taunted_by_your_warcies_are_intimidated"]=6105, - ["enemies_taunted_by_your_warcries_are_unnerved"]=6106, - ["enemies_that_hit_you_inflict_temporal_chains"]=6107, - ["enemies_that_hit_you_with_attack_recently_attack_speed_+%"]=6108, - ["enemies_withered_by_you_take_+%_increased_elemental_damage_from_your_hits"]=4283, - ["enemies_you_bleed_grant_flask_charges_+%"]=2393, - ["enemies_you_blind_have_critical_strike_chance_+%"]=6109, - ["enemies_you_curse_are_intimidated"]=6110, - ["enemies_you_curse_are_unnerved"]=6111, - ["enemies_you_curse_cannot_recharge_energy_shield"]=6112, - ["enemies_you_curse_have_15%_hinder"]=6113, - ["enemies_you_curse_have_malediction"]=3646, - ["enemies_you_expose_have_self_elemental_status_duration_+%"]=6114, - ["enemies_you_hinder_have_life_regeneration_rate_+%"]=6115, - ["enemies_you_ignite_take_chaos_damage_from_ignite_instead"]=6116, - ["enemies_you_ignite_wither_does_not_expire"]=6117, - ["enemies_you_intimidate_have_stun_duration_on_self_+%"]=6118, - ["enemies_you_maim_have_damage_taken_over_time_+%"]=6119, - ["enemies_you_shock_cast_speed_+%"]=4174, - ["enemies_you_shock_movement_speed_+%"]=4175, - ["enemies_you_unnerve_have_enemy_spell_critical_strike_chance_+%_against_self"]=6120, - ["enemies_you_wither_have_all_resistances_%"]=6121, - ["enemy_additional_critical_strike_chance_against_self"]=3021, - ["enemy_aggro_radius_+%"]=3033, - ["enemy_critical_strike_chance_+%_against_self_20_times_value"]=3022, - ["enemy_evasion_+%_if_you_have_hit_them_recently"]=6122, - ["enemy_extra_damage_rolls_if_magic_ring_equipped"]=6123, - ["enemy_extra_damage_rolls_when_on_full_life"]=6124, - ["enemy_extra_damage_rolls_when_on_low_life"]=2456, - ["enemy_extra_damage_rolls_while_affected_by_vulnerability"]=3007, - ["enemy_hits_%_chance_to_treat_elemental_resistances_as_90%"]=6125, - ["enemy_hits_roll_low_damage"]=2453, - ["enemy_knockback_direction_is_reversed"]=2912, - ["enemy_life_leech_from_any_damage_permyriad_while_focused"]=7000, - ["enemy_life_leech_from_chaos_damage_permyriad"]=1588, - ["enemy_life_leech_from_cold_damage_permyriad"]=1581, - ["enemy_life_leech_from_fire_damage_permyriad"]=1576, - ["enemy_life_leech_from_lightning_damage_permyriad"]=1585, - ["enemy_life_leech_from_physical_attack_damage_permyriad"]=1553, - ["enemy_life_leech_from_physical_damage_permyriad"]=1572, - ["enemy_life_regeneration_rate_+%_for_4_seconds_on_hit"]=6126, - ["enemy_mana_leech_from_chaos_damage_permyriad"]=1620, - ["enemy_mana_leech_from_fire_damage_permyriad"]=1614, - ["enemy_mana_leech_from_lightning_damage_permyriad"]=1618, - ["enemy_mana_leech_from_physical_attack_damage_permyriad"]=1603, - ["enemy_mana_leech_from_physical_damage_permyriad"]=1612, - ["enemy_on_low_life_damage_taken_+%_per_frenzy_charge"]=2536, - ["enemy_phys_reduction_%_penalty_vs_hit"]=2874, - ["enemy_physical_damage_%_as_extra_fire_vs_you"]=1834, - ["enemy_shock_on_kill"]=1815, - ["enemy_zero_elemental_resistance_when_hit"]=6127, - ["energy_shield_%_gained_on_block"]=2367, - ["energy_shield_%_of_armour_rating_gained_on_block"]=2368, - ["energy_shield_%_to_lose_on_block"]=2638, - ["energy_shield_+%_if_both_rings_have_evasion_mod"]=6128, - ["energy_shield_+%_per_10_strength"]=6143, - ["energy_shield_+%_per_power_charge"]=6144, - ["energy_shield_+_per_8_evasion_on_boots"]=6129, - ["energy_shield_additive_modifiers_instead_apply_to_ward"]=6130, - ["energy_shield_degeneration_%_per_minute_not_in_grace"]=2546, - ["energy_shield_delay_-%"]=1468, - ["energy_shield_delay_-%_while_affected_by_discipline"]=6131, - ["energy_shield_delay_during_flask_effect_-%"]=3464, - ["energy_shield_from_gloves_and_boots_+%"]=6132, - ["energy_shield_from_helmet_+%"]=6133, - ["energy_shield_gain_per_target"]=1652, - ["energy_shield_gain_per_target_hit_while_affected_by_discipline"]=6134, - ["energy_shield_gain_when_you_hit_enemy_affected_by_spiders_web"]=6135, - ["energy_shield_gained_on_block"]=1664, - ["energy_shield_gained_on_enemy_death_per_level"]=2869, - ["energy_shield_leech_does_not_stop_on_full_energy_shield"]=6136, - ["energy_shield_leech_from_any_damage_permyriad"]=1626, - ["energy_shield_leech_from_attacks_does_not_stop_on_full_energy_shield"]=6137, - ["energy_shield_leech_from_lightning_damage_permyriad_while_affected_by_wrath"]=6138, - ["energy_shield_leech_from_spell_damage_permyriad_per_curse_on_enemy"]=1628, - ["energy_shield_leech_if_hit_is_at_least_25_%_fire_damage_permyriad"]=6139, - ["energy_shield_leech_permyriad_vs_frozen_enemies"]=6140, - ["energy_shield_leech_speed_+%"]=2060, - ["energy_shield_lost_per_minute_%"]=6141, - ["energy_shield_per_level"]=6142, - ["energy_shield_protects_mana"]=3006, - ["energy_shield_recharge_+%_if_amulet_has_evasion_mod"]=6145, - ["energy_shield_recharge_apply_to_mana"]=6146, - ["energy_shield_recharge_not_delayed_by_damage"]=1469, - ["energy_shield_recharge_rate_+%"]=1471, - ["energy_shield_recharge_rate_+%_per_different_mastery"]=6147, - ["energy_shield_recharge_rate_during_flask_effect_+%"]=3466, - ["energy_shield_recharge_rate_per_minute_%"]=1470, - ["energy_shield_recharge_rate_per_minute_with_all_corrupted_equipped_items"]=4088, - ["energy_shield_recharge_start_when_stunned"]=6148, - ["energy_shield_recharges_on_block_%"]=3312, - ["energy_shield_recharges_on_kill_%"]=6149, - ["energy_shield_recharges_on_skill_use_chance_%"]=6150, - ["energy_shield_recharges_on_suppress_%"]=3313, - ["energy_shield_recovery_rate_+%"]=1474, - ["energy_shield_recovery_rate_+%_if_havent_killed_recently"]=6151, - ["energy_shield_recovery_rate_+%_if_not_hit_recently"]=6152, - ["energy_shield_recovery_rate_while_affected_by_discipline_+%"]=6153, - ["energy_shield_regeneration_%_per_minute_if_enemy_cursed_recently"]=6154, - ["energy_shield_regeneration_%_per_minute_if_enemy_killed_recently"]=6155, - ["energy_shield_regeneration_%_per_minute_while_shocked"]=2920, - ["energy_shield_regeneration_rate_+%"]=6163, - ["energy_shield_regeneration_rate_per_minute_%_if_consumed_corpse_recently"]=6156, - ["energy_shield_regeneration_rate_per_minute_%_if_you_have_hit_an_enemy_recently"]=6159, - ["energy_shield_regeneration_rate_per_minute_%_while_affected_by_discipline"]=6160, - ["energy_shield_regeneration_rate_per_minute_%_while_on_low_life"]=1706, - ["energy_shield_regeneration_rate_per_minute_if_rare_or_unique_enemy_nearby"]=6157, - ["energy_shield_regeneration_rate_per_minute_per_poison_stack"]=6158, - ["energy_shield_regeneration_rate_per_minute_while_on_consecrated_ground"]=6161, - ["energy_shield_regeneration_rate_per_second"]=6162, - ["enfeeble_curse_effect_+%"]=3898, - ["enfeeble_duration_+%"]=3801, - ["enfeeble_ignores_hexproof"]=2504, - ["enfeeble_no_reservation"]=6164, - ["ensnaring_arrow_area_of_effect_+%"]=6165, - ["ensnaring_arrow_debuff_effect_+%"]=6166, - ["envy_reserves_no_mana"]=6167, - ["ephemeral_edge_maximum_lightning_damage_from_es_%"]=6168, - ["es_and_mana_regeneration_rate_per_minute_%_while_on_consecrated_ground"]=4112, - ["es_regeneration_per_minute_%_while_stationary"]=6169, - ["essence_buff_ground_fire_damage_to_deal_per_second"]=4194, - ["essence_buff_ground_fire_duration_ms"]=4194, - ["essence_display_elemental_damage_taken_while_not_moving_+%"]=4197, - ["essence_drain_damage_+%"]=3614, - ["essence_drain_soulrend_base_projectile_speed_+%"]=6170, - ["essence_drain_soulrend_number_of_additional_projectiles"]=6171, - ["ethereal_knives_blade_left_in_ground_for_every_X_projectiles"]=6172, - ["ethereal_knives_damage_+%"]=3535, - ["ethereal_knives_number_of_additional_projectiles"]=6173, - ["ethereal_knives_projectile_base_number_of_targets_to_pierce"]=6174, - ["ethereal_knives_projectile_speed_+%"]=3781, - ["ethereal_knives_projectiles_nova"]=6175, - ["evasion_+%_if_hit_recently"]=4073, - ["evasion_+%_per_10_intelligence"]=6178, - ["evasion_and_physical_damage_reduction_rating_+%"]=1450, - ["evasion_rating_%_as_life_regeneration_per_minute_during_focus"]=6184, - ["evasion_rating_%_to_add_as_armour"]=6185, - ["evasion_rating_+%"]=1456, - ["evasion_rating_+%_during_focus"]=6179, - ["evasion_rating_+%_if_energy_shield_recharge_started_in_past_2_seconds"]=6176, - ["evasion_rating_+%_if_have_cast_dash_recently"]=6189, - ["evasion_rating_+%_if_have_not_been_hit_recently"]=6190, - ["evasion_rating_+%_if_you_have_hit_an_enemy_recently"]=6191, - ["evasion_rating_+%_per_500_maximum_mana"]=6180, - ["evasion_rating_+%_per_5_intelligence"]=6177, - ["evasion_rating_+%_per_frenzy_charge"]=1463, - ["evasion_rating_+%_per_green_socket_on_main_hand_weapon"]=6192, - ["evasion_rating_+%_when_on_full_life"]=6193, - ["evasion_rating_+%_when_on_low_life"]=2435, - ["evasion_rating_+%_while_leeching"]=6194, - ["evasion_rating_+%_while_moving"]=6195, - ["evasion_rating_+%_while_onslaught_is_active"]=1458, - ["evasion_rating_+%_while_phasing"]=2405, - ["evasion_rating_+%_while_tincture_active"]=6196, - ["evasion_rating_+%_while_you_have_energy_shield"]=6197, - ["evasion_rating_+_if_you_have_hit_an_enemy_recently"]=6186, - ["evasion_rating_+_per_1_armour_on_gloves"]=6181, - ["evasion_rating_+_per_1_helmet_energy_shield"]=1454, - ["evasion_rating_+_per_5_maximum_energy_shield_on_shield"]=4264, - ["evasion_rating_+_when_on_full_life"]=1453, - ["evasion_rating_+_when_on_low_life"]=1452, - ["evasion_rating_+_while_phasing"]=6187, - ["evasion_rating_+_while_you_have_tailwind"]=6188, - ["evasion_rating_from_helmet_and_boots_+%"]=6182, - ["evasion_rating_increased_by_overcapped_cold_resistance"]=6183, - ["evasion_rating_plus_in_sand_stance"]=9722, - ["evasion_rating_while_es_full_+%_final"]=3963, - ["every_10_seconds_physical_damage_%_to_add_as_fire_for_3_seconds"]=6198, - ["every_4_seconds_%_chance_freeze_non_frozen_enemies_for_300ms"]=6199, - ["every_4_seconds_regenerate_%_of_armour_and_evasion_as_life_over_1_second"]=6200, - ["every_fourth_retaliation_used_is_a_critical_strike"]=6201, - ["excommunicate_on_melee_attack_hit_for_X_ms"]=6202, - ["exerted_attack_knockback_chance_%"]=6203, - ["exerted_attacks_overwhelm_%_physical_damage_reduction"]=6204, - ["expanding_fire_cone_additional_maximum_number_of_stages"]=6205, - ["expanding_fire_cone_area_of_effect_+%"]=6206, - ["expedition_chest_logbook_chance_%"]=6207, - ["expedition_monsters_logbook_chance_+%"]=6208, - ["experience_gain_+%"]=1509, - ["experience_loss_on_death_-%"]=1510, - ["explode_burning_enemies_for_10%_life_as_fire_on_kill_chance_%"]=6209, - ["explode_cursed_enemies_for_25%_life_as_chaos_on_kill_chance_%"]=3196, - ["explode_enemies_for_10%_life_as_fire_on_kill_chance_%"]=6210, - ["explode_enemies_for_10%_life_as_physical_on_kill_chance_%"]=3194, - ["explode_enemies_for_10%_life_as_physical_on_kill_chance_%_while_using_pride"]=6211, - ["explode_enemies_for_25%_life_as_chaos_on_kill_chance_%"]=3195, - ["explode_enemies_for_25%_life_as_chaos_on_kill_while_affected_by_glorious_madness_chance_%"]=10180, - ["explode_enemies_for_500%_life_as_fire_on_kill_%_chance"]=6212, - ["explode_on_death_for_%_life_as_fire_damage"]=6213, - ["explode_on_kill_%_chaos_damage_to_deal"]=3193, - ["explode_on_kill_%_fire_damage_to_deal"]=2603, - ["explosive_arrow_attack_speed_+%"]=4016, - ["explosive_arrow_damage_+%"]=3566, - ["explosive_arrow_duration_+%"]=6214, - ["explosive_arrow_radius_+%"]=3711, - ["explosive_concoction_damage_+%"]=6215, - ["explosive_concoction_flask_charges_consumed_+%"]=6216, - ["explosive_concoction_skill_area_of_effect_+%"]=6217, - ["exposure_effect_+%"]=6218, - ["exposure_you_inflict_applies_extra_%_to_affected_resistance"]=6219, - ["exposure_you_inflict_has_minimum_resistance_%"]=6220, - ["exsanguinate_additional_chain_chance_%"]=6221, - ["exsanguinate_and_reap_skill_physical_damage_%_to_convert_to_fire"]=6222, - ["exsanguinate_damage_+%"]=6223, - ["exsanguinate_debuff_deals_fire_damage_instead_of_physical_damage"]=6224, - ["exsanguinate_duration_+%"]=6225, - ["extinguish_on_hit_%_chance"]=6226, - ["extra_chaos_damage_rolls"]=5463, - ["extra_critical_rolls"]=2571, - ["extra_critical_rolls_during_focus"]=6227, - ["extra_critical_rolls_while_on_low_life"]=6228, - ["extra_damage_rolls_with_lightning_damage_on_non_critical_hits"]=6229, - ["extra_damage_taken_from_crit_+%_from_cursed_enemy"]=4311, - ["extra_damage_taken_from_crit_+%_from_poisoned_enemy"]=4312, - ["extra_damage_taken_from_crit_+%_while_affected_by_determination"]=6230, - ["extra_damage_taken_from_crit_-%_if_taken_critical_strike_recently"]=3135, - ["extra_damage_taken_from_crit_while_no_power_charges_+%"]=6231, - ["extra_gore"]=10321, - ["extra_target_targeting_distance_+%"]=6232, - ["extreme_luck_unluck"]=6233, - ["eye_of_winter_damage_+%"]=6234, - ["eye_of_winter_projectile_speed_+%"]=6235, - ["eye_of_winter_spiral_fire_frequency_+%"]=6236, - ["faster_bleed_%"]=6238, - ["faster_bleed_per_frenzy_charge_%"]=6237, - ["faster_burn_%"]=2464, - ["faster_burn_from_attacks_%"]=2466, - ["faster_poison_%"]=6239, - ["final_pack_summons_nameless_seer"]=6240, - ["final_repeat_of_spells_area_of_effect_+%"]=6241, - ["fire_ailment_duration_+%"]=6242, - ["fire_and_chaos_damage_resistance_%"]=6243, - ["fire_and_cold_damage_resistance_%"]=2697, - ["fire_and_cold_hit_and_dot_damage_%_taken_as_lightning_while_affected_by_purity_of_lightning"]=6244, - ["fire_and_explosive_trap_number_of_additional_traps_to_throw_if_mined"]=6245, - ["fire_and_lightning_damage_resistance_%"]=2698, - ["fire_and_lightning_hit_and_dot_damage_%_taken_as_cold_while_affected_by_purity_of_ice"]=6246, - ["fire_attack_damage_+%"]=1111, - ["fire_attack_damage_+%_while_holding_a_shield"]=1114, - ["fire_axe_damage_+%"]=1213, - ["fire_beam_cast_speed_+%"]=6247, - ["fire_beam_damage_+%"]=6248, - ["fire_beam_degen_spread_to_enemies_in_radius_on_kill"]=6249, - ["fire_beam_enemy_fire_resistance_%_at_max_stacks"]=6250, - ["fire_beam_enemy_fire_resistance_%_per_stack"]=6251, - ["fire_beam_length_+%"]=6252, - ["fire_bow_damage_+%"]=1243, - ["fire_claw_damage_+%"]=1225, - ["fire_critical_strike_chance_+%"]=1389, - ["fire_critical_strike_multiplier_+"]=1414, - ["fire_dagger_damage_+%"]=1231, - ["fire_damage_%_to_add_as_chaos"]=1844, - ["fire_damage_%_to_add_as_chaos_per_endurance_charge"]=6254, - ["fire_damage_+%"]=1265, - ["fire_damage_+%_if_you_have_been_hit_recently"]=6255, - ["fire_damage_+%_if_you_have_used_a_cold_skill_recently"]=6256, - ["fire_damage_+%_per_20_strength"]=6257, - ["fire_damage_+%_per_endurance_charge"]=6258, - ["fire_damage_+%_per_fire_resistance_above_75"]=6259, - ["fire_damage_+%_per_missing_fire_resistance"]=6260, - ["fire_damage_+%_to_blinded_enemies"]=3110, - ["fire_damage_+%_vs_bleeding_enemies"]=6261, - ["fire_damage_+%_while_affected_by_anger"]=6262, - ["fire_damage_+%_while_affected_by_herald_of_ash"]=6263, - ["fire_damage_can_chill"]=2772, - ["fire_damage_can_freeze"]=2773, - ["fire_damage_can_shock"]=2774, - ["fire_damage_cannot_ignite"]=2782, - ["fire_damage_over_time_+%"]=1121, - ["fire_damage_over_time_multiplier_+%_while_burning"]=6253, - ["fire_damage_over_time_multiplier_+_with_attacks"]=1162, - ["fire_damage_resistance_%_when_on_low_life"]=1533, - ["fire_damage_resistance_%_while_affected_by_herald_of_ash"]=6264, - ["fire_damage_resistance_+%"]=1534, - ["fire_damage_resistance_is_%"]=1530, - ["fire_damage_taken_%_as_cold"]=3066, - ["fire_damage_taken_%_as_lightning"]=3067, - ["fire_damage_taken_%_causes_additional_physical_damage"]=2354, - ["fire_damage_taken_+"]=2138, - ["fire_damage_taken_+%"]=2143, - ["fire_damage_taken_+%_while_moving"]=6267, - ["fire_damage_taken_goes_to_life_over_4_seconds_%"]=6265, - ["fire_damage_taken_per_minute_per_endurance_charge_if_you_have_been_hit_recently"]=10181, - ["fire_damage_taken_per_second_while_flame_touched"]=6266, - ["fire_damage_taken_when_enemy_ignited"]=6268, - ["fire_damage_to_return_on_block"]=6269, - ["fire_damage_to_return_to_melee_attacker"]=2105, - ["fire_damage_to_return_when_hit"]=2109, - ["fire_damage_while_dual_wielding_+%"]=1188, - ["fire_damage_with_attack_skills_+%"]=6270, - ["fire_damage_with_spell_skills_+%"]=6271, - ["fire_dot_multiplier_+"]=1160, - ["fire_exposure_on_hit_magnitude"]=6272, - ["fire_exposure_you_inflict_applies_extra_fire_resistance_+%"]=6273, - ["fire_hit_and_dot_damage_%_taken_as_lightning"]=6274, - ["fire_mace_damage_+%"]=1237, - ["fire_nova_mine_cast_speed_+%"]=3758, - ["fire_nova_mine_damage_+%"]=3549, - ["fire_nova_mine_num_of_additional_repeats"]=3854, - ["fire_penetration_%_if_you_have_blocked_recently"]=6275, - ["fire_reflect_damage_taken_+%_while_affected_by_purity_of_fire"]=6276, - ["fire_resistance_cannot_be_penetrated"]=6277, - ["fire_skill_chance_to_inflict_fire_exposure_%"]=6278, - ["fire_skill_gem_level_+"]=6279, - ["fire_skill_gem_level_+_if_6_warlord_items"]=4373, - ["fire_skills_chance_to_poison_on_hit_%"]=6280, - ["fire_spell_physical_damage_%_to_convert_to_fire"]=6281, - ["fire_spell_skill_gem_level_+"]=1516, - ["fire_staff_damage_+%"]=1219, - ["fire_storm_damage_+%"]=3550, - ["fire_sword_damage_+%"]=1250, - ["fire_trap_burning_damage_+%"]=3845, - ["fire_trap_burning_ground_duration_+%"]=6282, - ["fire_trap_cooldown_speed_+%"]=3760, - ["fire_trap_damage_+%"]=3519, - ["fire_trap_number_of_additional_traps_to_throw"]=6283, - ["fire_wand_damage_+%"]=1256, - ["fire_weakness_ignores_hexproof"]=2505, - ["fireball_and_rolling_magma_active_skill_area_of_effect_+%_final"]=6284, - ["fireball_and_rolling_magma_modifiers_to_projectile_count_do_not_apply"]=6285, - ["fireball_base_radius_up_to_+_at_longer_ranges"]=3143, - ["fireball_cannot_ignite"]=6286, - ["fireball_cast_speed_+%"]=3757, - ["fireball_chance_to_scorch_%"]=6287, - ["fireball_damage_+%"]=3520, - ["fireball_ignite_chance_%"]=3846, - ["fireball_radius_up_to_+%_at_longer_ranges"]=3142, - ["firestorm_and_bladefall_chance_to_replay_when_finished_%"]=6288, - ["firestorm_duration_+%"]=3815, - ["firestorm_explosion_area_of_effect_+%"]=3855, - ["first_X_stacks_of_tincture_toxicity_have_no_effect"]=6289, - ["first_and_final_barrage_projectiles_return"]=6290, - ["fish_quantity_+%"]=2746, - ["fish_rarity_+%"]=2747, - ["fish_rot_when_caught"]=6291, - ["fishing_bestiary_lures_at_fishing_holes"]=6292, - ["fishing_bite_sensitivity_+%"]=3470, - ["fishing_can_catch_divine_fish"]=6293, - ["fishing_chance_to_catch_boots_+%"]=6294, - ["fishing_chance_to_catch_divine_orb_+%"]=6295, - ["fishing_corrupted_fish_cleansed_chance_%"]=6296, - ["fishing_fish_always_tell_truth_with_this_rod"]=6297, - ["fishing_ghastly_fisherman_cannot_spawn"]=6298, - ["fishing_ghastly_fisherman_spawns_behind_you"]=6299, - ["fishing_hook_type"]=2744, - ["fishing_krillson_affection_per_fish_gifted_+%"]=6300, - ["fishing_life_of_fish_with_this_rod_+%"]=6301, - ["fishing_line_strength_+%"]=2741, - ["fishing_lure_type"]=2743, - ["fishing_magmatic_fish_are_cooked"]=6302, - ["fishing_molten_one_confusion_+%_per_fish_gifted"]=6303, - ["fishing_pool_consumption_+%"]=2742, - ["fishing_range_+%"]=2745, - ["fishing_reeling_stability_+%"]=6304, - ["fishing_tasalio_ire_per_fish_caught_+%"]=6305, - ["fishing_valako_aid_per_stormy_day_+%"]=6306, - ["fishing_wish_effect_of_ancient_fish_+%"]=6307, - ["fishing_wish_per_fish_+"]=6308, - ["flame_dash_cooldown_speed_+%"]=3767, - ["flame_dash_damage_+%"]=3599, - ["flame_golem_damage_+%"]=3581, - ["flame_golem_elemental_resistances_%"]=3871, - ["flame_link_duration_+%"]=6309, - ["flame_surge_critical_strike_chance_+%"]=3827, - ["flame_surge_damage_+%"]=3551, - ["flame_surge_damage_+%_vs_burning_enemies"]=3856, - ["flame_totem_consecrated_ground_enemy_damage_taken_+%"]=6310, - ["flame_totem_damage_+%"]=3591, - ["flame_totem_num_of_additional_projectiles"]=3839, - ["flame_totem_projectile_speed_+%"]=3782, - ["flame_wall_damage_+%"]=6311, - ["flame_wall_maximum_added_fire_damage"]=6312, - ["flame_wall_minimum_added_fire_damage"]=6312, - ["flameblast_and_incinerate_base_cooldown_modifier_ms"]=6313, - ["flameblast_and_incinerate_cannot_inflict_status_ailments"]=6314, - ["flameblast_critical_strike_chance_+%"]=3826, - ["flameblast_damage_+%"]=3567, - ["flameblast_radius_+%"]=3712, - ["flameblast_starts_with_X_additional_stages"]=6315, - ["flamethrower_seismic_lightning_spire_trap_base_cooldown_speed_+%"]=6316, - ["flamethrower_seismic_lightning_spire_trap_skill_added_cooldown_count"]=6317, - ["flamethrower_tower_trap_cast_speed_+%"]=6318, - ["flamethrower_tower_trap_cooldown_speed_+%"]=6319, - ["flamethrower_tower_trap_damage_+%"]=6320, - ["flamethrower_tower_trap_duration_+%"]=6321, - ["flamethrower_tower_trap_number_of_additional_flamethrowers"]=6322, - ["flamethrower_tower_trap_throwing_speed_+%"]=6323, - ["flamethrower_trap_damage_+%_final_vs_burning_enemies"]=6324, - ["flammability_curse_effect_+%"]=3899, - ["flammability_duration_+%"]=3800, - ["flammability_mana_reservation_+%"]=3933, - ["flammability_no_reservation"]=6325, - ["flask_charges_+%_from_enemies_with_status_ailments"]=4134, - ["flask_charges_gained_+%_during_flask_effect"]=3073, - ["flask_charges_gained_+%_if_crit_recently"]=6326, - ["flask_charges_gained_+%_per_tincture_toxicity"]=6329, - ["flask_charges_gained_from_kills_+%_final_from_unique"]=6327, - ["flask_charges_gained_from_marked_enemy_+%"]=6328, - ["flask_charges_recovered_per_3_seconds"]=3365, - ["flask_charges_used_+%"]=2085, - ["flask_duration_+%"]=2088, - ["flask_duration_+%_per_level"]=6330, - ["flask_duration_on_minions_+%"]=2089, - ["flask_effect_+%"]=2641, - ["flask_effect_+%_per_level"]=6331, - ["flask_life_and_mana_to_recover_+%"]=6332, - ["flask_life_recovery_+%_while_affected_by_vitality"]=6333, - ["flask_life_recovery_rate_+%"]=2090, - ["flask_life_to_recover_+%"]=1960, - ["flask_mana_charges_used_+%"]=2086, - ["flask_mana_recovery_rate_+%"]=2091, - ["flask_mana_to_recover_+%"]=1961, - ["flask_minion_heal_%"]=2800, - ["flask_recovery_is_instant"]=6334, - ["flask_recovery_speed_+%"]=1962, - ["flask_throw_sulphur_flask_explode_on_kill_chance"]=6335, - ["flasks_%_chance_to_not_consume_charges"]=4115, - ["flasks_adjacent_to_active_tinctures_gain_X_charges_on_weapon_hit"]=6336, - ["flasks_adjacent_to_active_tinctures_have_effect_+%_if_hit_with_weapon_recently"]=6337, - ["flasks_apply_to_your_linked_targets"]=6338, - ["flasks_apply_to_your_zombies_and_spectres"]=3635, - ["flasks_dispel_burning"]=2654, - ["flasks_gain_x_charges_on_hit_once_per_second_vs_non_unique"]=6339, - ["flasks_gain_x_charges_while_inactive_every_3_seconds"]=6340, - ["flesh_and_stone_area_of_effect_+%"]=6341, - ["flesh_offering_attack_speed_+%"]=4008, - ["flesh_offering_duration_+%"]=3788, - ["flesh_offering_effect_+%"]=1082, - ["flesh_stone_mana_reservation_efficiency_+%"]=6343, - ["flesh_stone_mana_reservation_efficiency_-2%_per_1"]=6342, - ["flesh_stone_no_reservation"]=6344, - ["flicker_strike_cooldown_speed_+%"]=3761, - ["flicker_strike_damage_+%"]=3540, - ["flicker_strike_damage_+%_per_frenzy_charge"]=3851, - ["flicker_strike_more_attack_speed_+%_final"]=1320, - ["focus_cooldown_modifier_ms"]=6345, - ["focus_cooldown_speed_+%"]=6346, - ["forbidden_rite_and_dark_pact_added_chaos_damage_%_mana_cost_if_payable"]=6347, - ["forbidden_rite_damage_+%"]=6348, - ["forbidden_rite_number_of_additional_projectiles"]=6349, - ["forbidden_rite_projectile_speed_+%"]=6350, - ["forking_angle_+%"]=6351, - ["fortification_gained_from_hits_+%"]=6352, - ["fortification_gained_from_hits_+%_against_unique_enemies"]=6353, - ["fortify_duration_+%"]=2166, - ["fortify_duration_+%_per_10_strength"]=6354, - ["fortify_on_hit"]=6355, - ["freeze_as_though_dealt_damage_+%"]=2790, - ["freeze_chilled_enemies_as_though_dealt_damage_+%"]=6356, - ["freeze_duration_+%"]=1763, - ["freeze_duration_against_cursed_enemies_+%"]=6357, - ["freeze_mine_cold_resistance_+_while_frozen"]=2677, - ["freeze_mine_damage_+%"]=3600, - ["freeze_mine_radius_+%"]=3722, - ["freeze_minimum_duration_X_ms"]=6358, - ["freeze_on_you_proliferates_to_nearby_enemies_within_x_radius"]=3512, - ["freeze_prevention_ms_when_frozen"]=2793, - ["freezing_pulse_and_eye_of_winter_all_damage_can_poison"]=6359, - ["freezing_pulse_and_eye_of_winter_poison_damage_+100%_final_chance"]=6360, - ["freezing_pulse_cast_speed_+%"]=3756, - ["freezing_pulse_damage_+%"]=3521, - ["freezing_pulse_damage_+%_if_enemy_shattered_recently"]=6361, - ["freezing_pulse_number_of_additional_projectiles"]=6362, - ["freezing_pulse_projectile_speed_+%"]=3778, - ["frenzy_%_chance_to_gain_additional_frenzy_charge"]=3863, - ["frenzy_and_power_charge_add_duration_ms_on_cull"]=6363, - ["frenzy_charge_duration_+%_per_frenzy_charge"]=1952, - ["frenzy_charge_on_hit_%_vs_no_evasion_rating"]=6364, - ["frenzy_charge_on_kill_percent_chance_while_holding_shield"]=6365, - ["frenzy_damage_+%"]=3560, - ["frenzy_damage_+%_per_frenzy_charge"]=3862, - ["frenzy_only_conduit"]=2162, - ["from_self_maximum_added_attack_chaos_damage_taken"]=1296, - ["from_self_maximum_added_attack_cold_damage_taken"]=1278, - ["from_self_maximum_added_attack_fire_damage_taken"]=1269, - ["from_self_maximum_added_attack_lightning_damage_taken"]=1289, - ["from_self_maximum_added_attack_physical_damage_taken"]=1176, - ["from_self_maximum_added_cold_damage_taken"]=1275, - ["from_self_maximum_added_cold_damage_taken_per_frenzy_charge"]=4157, - ["from_self_maximum_added_fire_damage_taken"]=1266, - ["from_self_maximum_added_lightning_damage_taken"]=1286, - ["from_self_minimum_added_attack_chaos_damage_taken"]=1296, - ["from_self_minimum_added_attack_cold_damage_taken"]=1278, - ["from_self_minimum_added_attack_fire_damage_taken"]=1269, - ["from_self_minimum_added_attack_lightning_damage_taken"]=1289, - ["from_self_minimum_added_attack_physical_damage_taken"]=1176, - ["from_self_minimum_added_cold_damage_taken"]=1275, - ["from_self_minimum_added_cold_damage_taken_per_frenzy_charge"]=4157, - ["from_self_minimum_added_fire_damage_taken"]=1266, - ["from_self_minimum_added_lightning_damage_taken"]=1286, - ["frost_blades_damage_+%"]=3299, - ["frost_blades_melee_damage_penetrates_%_cold_resistance"]=6366, - ["frost_blades_number_of_additional_projectiles_in_chain"]=3301, - ["frost_blades_projectile_speed_+%"]=3300, - ["frost_bolt_cast_speed_+%"]=4035, - ["frost_bolt_damage_+%"]=4023, - ["frost_bolt_freeze_chance_%"]=4036, - ["frost_bolt_nova_cooldown_speed_+%"]=6367, - ["frost_bolt_nova_damage_+%"]=4024, - ["frost_bolt_nova_duration_+%"]=4037, - ["frost_bolt_nova_radius_+%"]=4031, - ["frost_bomb_+%_area_of_effect_when_frost_blink_is_cast"]=6369, - ["frost_bomb_buff_duration_+%"]=6368, - ["frost_bomb_cooldown_speed_+%"]=3774, - ["frost_bomb_damage_+%"]=3623, - ["frost_bomb_radius_+%"]=3731, - ["frost_fury_additional_max_number_of_stages"]=6370, - ["frost_fury_area_of_effect_+%_per_stage"]=6371, - ["frost_fury_damage_+%"]=6372, - ["frost_globe_added_cooldown_count"]=6373, - ["frost_globe_health_per_stage"]=6374, - ["frost_wall_cooldown_speed_+%"]=3765, - ["frost_wall_damage_+%"]=3594, - ["frost_wall_duration_+%"]=3791, - ["frostbite_curse_effect_+%"]=3900, - ["frostbite_duration_+%"]=3799, - ["frostbite_mana_reservation_+%"]=3934, - ["frostbite_no_reservation"]=6375, - ["frostbolt_number_of_additional_projectiles"]=6376, - ["frostbolt_projectile_acceleration"]=6377, - ["frozen_legion_%_chance_to_summon_additional_statue"]=6381, - ["frozen_legion_added_cooldown_count"]=6378, - ["frozen_legion_and_generals_cry_active_skill_cooldown_speed_+%_final_from_skill_specific_stat"]=6379, - ["frozen_legion_cooldown_speed_+%"]=6380, - ["frozen_monsters_take_increased_damage"]=2361, - ["frozen_sweep_damage_+%"]=6382, - ["frozen_sweep_damage_+%_final"]=6383, - ["full_life_threshold_%_override"]=6384, - ["fungal_ground_while_stationary_radius"]=6385, - ["gain_%_es_when_spirit_charge_expires_or_consumed"]=4271, - ["gain_%_life_when_spirit_charge_expires_or_consumed"]=4270, - ["gain_%_of_phys_as_extra_chaos_per_elder_item_equipped"]=6482, - ["gain_%_total_phys_damage_prevented_in_the_past_10_sec_as_life_regen_per_sec"]=6483, - ["gain_+%_physical_damage_as_random_element_if_cast_elemental_weakness_in_past_10_seconds"]=6490, - ["gain_1_rare_monster_mod_on_kill_for_10_seconds_%_chance"]=6386, - ["gain_1_rare_monster_mods_on_kill_for_20_seconds_%"]=6387, - ["gain_20%_chance_to_explode_enemies_for_100%_life_on_kill_for_X_seconds_every_10_seconds"]=6431, - ["gain_X%_armour_per_50_mana_reserved"]=6388, - ["gain_X_endurance_charges_per_second"]=6389, - ["gain_X_energy_shield_on_killing_shocked_enemy"]=2472, - ["gain_X_fortification_on_killing_rare_or_unique_monster"]=6390, - ["gain_X_frenzy_charges_after_spending_200_mana"]=6391, - ["gain_X_frenzy_charges_per_second"]=6392, - ["gain_X_life_on_stun"]=6393, - ["gain_X_power_charges_on_using_a_warcry"]=6394, - ["gain_X_power_charges_per_second"]=6395, - ["gain_X_random_charges_every_6_seconds"]=6396, - ["gain_X_random_rare_monster_mods_on_kill"]=2952, - ["gain_X_vaal_souls_on_rampage_threshold"]=2853, - ["gain_a_frenzy_charge_every_X_seconds_while_moving"]=6397, - ["gain_a_power_charge_when_you_or_your_totems_kill_%_chance"]=4020, - ["gain_absorption_charges_instead_of_power_charges"]=6398, - ["gain_accuracy_rating_equal_to_2_times_strength"]=6399, - ["gain_accuracy_rating_equal_to_intelligence"]=6400, - ["gain_accuracy_rating_equal_to_strength"]=6401, - ["gain_adrenaline_for_X_ms_on_swapping_stance"]=6402, - ["gain_adrenaline_for_X_seconds_on_kill"]=6403, - ["gain_adrenaline_for_X_seconds_on_low_life_unless_you_have_adrenaline"]=6404, - ["gain_adrenaline_for_x_ms_per_100_ms_stun_duration_on_you"]=6405, - ["gain_adrenaline_on_gaining_flame_touched"]=6406, - ["gain_adrenaline_when_ward_breaks_ms"]=6407, - ["gain_affliction_charges_instead_of_frenzy_charges"]=6408, - ["gain_alchemists_genius_on_flask_use_%"]=6409, - ["gain_an_additional_vaal_soul_on_kill_if_have_rampaged_recently"]=6410, - ["gain_arcane_surge_for_4_seconds_after_channelling_for_1_second"]=6411, - ["gain_arcane_surge_for_4_seconds_when_you_create_consecrated_ground_while_affected_by_zealotry"]=6412, - ["gain_arcane_surge_on_200_life_spent"]=6413, - ["gain_arcane_surge_on_crit_%_chance"]=6414, - ["gain_arcane_surge_on_hit_%_chance"]=6417, - ["gain_arcane_surge_on_hit_at_devotion_threshold"]=6415, - ["gain_arcane_surge_on_hit_chance_with_spells_while_at_maximum_power_charges_%"]=6416, - ["gain_arcane_surge_on_hit_vs_unique_enemy_%_chance"]=6418, - ["gain_arcane_surge_on_kill_chance_%"]=6419, - ["gain_arcane_surge_on_movement_skill_use"]=4323, - ["gain_arcane_surge_on_spell_hit_by_you_or_your_totems"]=6420, - ["gain_arcane_surge_when_mine_detonated_targeting_an_enemy"]=6421, - ["gain_arcane_surge_when_trap_triggered_by_an_enemy"]=6422, - ["gain_arcane_surge_when_you_summon_a_totem"]=6423, - ["gain_area_of_effect_+%_for_2_seconds_when_you_spend_800_mana"]=6424, - ["gain_attack_and_cast_speed_+%_for_4_seconds_if_taken_savage_hit"]=3939, - ["gain_attack_speed_+%_for_20_seconds_on_killing_rare_or_unique_enemy"]=6425, - ["gain_attack_speed_+%_for_4_seconds_if_taken_savage_hit"]=3334, - ["gain_blitz_charge_%_chance_on_crit"]=6426, - ["gain_brutal_charges_instead_of_endurance_charges"]=6427, - ["gain_cannot_be_stunned_aura_for_4_seconds_on_block_radius"]=3691, - ["gain_celestial_charge_per_X_spent_es"]=6428, - ["gain_challenger_charge_%_chance_on_hitting_rare_or_unique_enemy_in_blood_stance"]=6429, - ["gain_challenger_charge_%_chance_on_kill_in_sand_stance"]=6430, - ["gain_chilling_shocking_igniting_conflux_while_affected_by_glorious_madness"]=10182, - ["gain_convergence_on_hitting_unique_enemy"]=4327, - ["gain_crimson_dance_if_have_dealt_critical_strike_recently"]=10297, - ["gain_crimson_dance_while_you_have_cat_stealth"]=10298, - ["gain_critical_strike_chance_%_for_2_seconds_when_you_spend_800_mana"]=6432, - ["gain_damage_+%_for_4_seconds_if_taken_savage_hit"]=3333, - ["gain_debilitating_presence_ms_on_kill_vs_rare_or_unique_enemy"]=10183, - ["gain_defiance_when_lose_life_to_hit_once_per_x_ms"]=4169, - ["gain_divine_charge_on_hit_%"]=4273, - ["gain_divinity_ms_when_reaching_maximum_divine_charges"]=4275, - ["gain_elemental_conflux_for_X_ms_when_you_kill_a_rare_or_unique_enemy"]=3944, - ["gain_elemental_conflux_if_6_unique_influence_amoung_equipped_non_amulet_items"]=3945, - ["gain_elemental_penetration_for_4_seconds_on_mine_detonation"]=3987, - ["gain_elusive_on_crit_%_chance"]=4166, - ["gain_elusive_on_kill_chance_%"]=4167, - ["gain_elusive_on_reaching_low_life"]=6433, - ["gain_endurance_charge_%_chance_on_using_fire_skill"]=1726, - ["gain_endurance_charge_%_chance_when_you_lose_fortify"]=6437, - ["gain_endurance_charge_%_when_hit_while_channelling"]=6438, - ["gain_endurance_charge_if_attack_freezes"]=6434, - ["gain_endurance_charge_on_main_hand_kill_%"]=3214, - ["gain_endurance_charge_on_melee_stun"]=2668, - ["gain_endurance_charge_on_melee_stun_%"]=2668, - ["gain_endurance_charge_on_power_charge_expiry"]=2535, - ["gain_endurance_charge_per_second_if_have_been_hit_recently"]=6435, - ["gain_endurance_charge_per_second_if_have_been_hit_recently_if_4_warlord_items"]=4359, - ["gain_endurance_charge_per_second_if_have_used_warcry_recently"]=6436, - ["gain_fanaticism_for_4_seconds_on_reaching_maximum_fanatic_charges"]=6439, - ["gain_flask_chance_on_crit_%"]=3281, - ["gain_flask_charge_on_crit_chance_%_while_at_maximum_frenzy_charges"]=6440, - ["gain_flask_charge_when_crit_%"]=1963, - ["gain_flask_charge_when_crit_amount"]=1963, - ["gain_flask_charges_every_second_if_hit_unique_enemy_recently"]=6441, - ["gain_fortify_for_x_seconds_on_melee_hit_with_mace_sceptre_staff"]=6442, - ["gain_frenzy_and_power_charge_on_kill_%"]=2534, - ["gain_frenzy_charge_%_when_hit_while_channelling"]=6453, - ["gain_frenzy_charge_if_attack_ignites"]=2734, - ["gain_frenzy_charge_on_critical_strike_%"]=6444, - ["gain_frenzy_charge_on_critical_strike_at_close_range_%"]=6443, - ["gain_frenzy_charge_on_enemy_shattered_chance_%"]=6445, - ["gain_frenzy_charge_on_hit_%_while_blinded"]=6446, - ["gain_frenzy_charge_on_hit_while_bleeding"]=6447, - ["gain_frenzy_charge_on_hitting_marked_enemy_%"]=6448, - ["gain_frenzy_charge_on_hitting_rare_or_unique_enemy_%"]=6449, - ["gain_frenzy_charge_on_hitting_unique_enemy_%"]=6450, - ["gain_frenzy_charge_on_kill_vs_enemies_with_5+_poisons_%"]=6451, - ["gain_frenzy_charge_on_main_hand_kill_%"]=3213, - ["gain_frenzy_charge_on_reaching_maximum_power_charges"]=3492, - ["gain_frenzy_charge_per_enemy_you_crit_%_chance"]=6452, - ["gain_frenzy_power_endurance_charges_on_vaal_skill_use"]=6454, - ["gain_her_blessing_for_3_seconds_on_ignite_%"]=3168, - ["gain_her_embrace_for_x_ms_on_enemy_ignited"]=6455, - ["gain_iron_reflexes_while_at_maximum_frenzy_charges"]=10299, - ["gain_iron_reflexes_while_stationary"]=10305, - ["gain_life_and_mana_leech_on_kill_permyriad"]=3114, - ["gain_life_leech_from_any_damage_permyriad_as_life_for_4_seconds_if_taken_savage_hit"]=3332, - ["gain_life_leech_on_kill_permyriad"]=4142, - ["gain_life_regeneration_%_per_second_for_1_second_if_taken_savage_hit"]=4062, - ["gain_life_regeneration_per_minute_%_for_1_second_every_4_seconds_if_2_hunter_items"]=4335, - ["gain_magic_monster_mods_on_kill_%_chance"]=6456, - ["gain_max_rage_on_losing_temporal_chains_debuff"]=6457, - ["gain_max_rage_on_rage_gain_from_hit_%_chance"]=6458, - ["gain_maximum_endurance_charges_on_endurance_charge_gained_%_chance"]=4124, - ["gain_maximum_endurance_charges_when_crit_chance_%"]=6459, - ["gain_maximum_frenzy_and_endurance_charges_when_you_gain_cats_agility"]=6460, - ["gain_maximum_frenzy_and_power_charges_when_you_gain_cats_stealth"]=6461, - ["gain_maximum_frenzy_charges_on_frenzy_charge_gained_%_chance"]=6462, - ["gain_maximum_life_instead_of_maximum_es_from_armour"]=6463, - ["gain_maximum_power_charges_on_power_charge_gained_%_chance"]=6464, - ["gain_maximum_power_charges_on_vaal_skill_use"]=6465, - ["gain_mind_over_matter_while_at_maximum_power_charges"]=10300, - ["gain_movement_speed_+%_for_20_seconds_on_kill"]=6466, - ["gain_no_armour_from_body_armour"]=3228, - ["gain_no_inherent_bonus_from_dexterity"]=1916, - ["gain_no_inherent_bonus_from_intelligence"]=1917, - ["gain_no_inherent_bonus_from_strength"]=1918, - ["gain_no_inherent_evasion_rating_+%_from_dexterity"]=6467, - ["gain_no_maximum_life_from_strength"]=1919, - ["gain_no_maximum_mana_from_intelligence"]=1920, - ["gain_onslaught_during_life_flask_effect"]=6468, - ["gain_onslaught_during_soul_gain_prevention"]=6469, - ["gain_onslaught_for_3_seconds_%_chance_when_hit"]=6470, - ["gain_onslaught_for_X_ms_on_killing_rare_or_unique_monster"]=4096, - ["gain_onslaught_if_you_have_swapped_stance_recently"]=6471, - ["gain_onslaught_ms_on_using_a_warcry"]=6472, - ["gain_onslaught_ms_when_reaching_maximum_endurance_charges"]=2652, - ["gain_onslaught_on_200_mana_spent"]=6473, - ["gain_onslaught_on_hit_chance_while_at_maximum_frenzy_charges_%"]=6474, - ["gain_onslaught_on_hit_duration_ms"]=6475, - ["gain_onslaught_on_kill_ms_while_affected_by_haste"]=6476, - ["gain_onslaught_on_stun_duration_ms"]=2649, - ["gain_onslaught_when_ignited_ms"]=2936, - ["gain_onslaught_while_at_maximum_endurance_charges"]=6477, - ["gain_onslaught_while_frenzy_charges_full"]=3966, - ["gain_onslaught_while_not_on_low_mana"]=6478, - ["gain_onslaught_while_on_low_life"]=6479, - ["gain_onslaught_while_you_have_cats_agility"]=6480, - ["gain_onslaught_while_you_have_fortify"]=6481, - ["gain_perfect_agony_if_you_have_crit_recently"]=6484, - ["gain_permilliage_total_phys_damage_prevented_recently_as_es_regen_per_sec_if_6_crusader_items"]=4374, - ["gain_phasing_for_4_seconds_on_begin_es_recharge"]=2404, - ["gain_phasing_if_enemy_killed_recently"]=6485, - ["gain_phasing_if_suppressed_spell_recently"]=6486, - ["gain_phasing_while_affected_by_haste"]=6487, - ["gain_phasing_while_at_maximum_frenzy_charges"]=2402, - ["gain_phasing_while_you_have_cats_stealth"]=6488, - ["gain_phasing_while_you_have_low_life"]=6489, - ["gain_phasing_while_you_have_onslaught"]=2403, - ["gain_physical_damage_immunity_on_rampage_threshold_ms"]=2852, - ["gain_player_far_shot_while_do_not_have_iron_reflexes"]=10317, - ["gain_power_charge_for_each_second_channeling_spell"]=6491, - ["gain_power_charge_on_critical_strike_with_wands_%"]=6492, - ["gain_power_charge_on_curse_cast_%"]=6493, - ["gain_power_charge_on_hit_%_chance_against_frozen_enemy"]=6494, - ["gain_power_charge_on_kill_vs_enemies_with_less_than_5_poisons_%"]=6495, - ["gain_power_charge_on_mana_flask_use_%_chance"]=6496, - ["gain_power_charge_on_non_critical_strike_%"]=3295, - ["gain_power_charge_on_vaal_skill_use_%"]=6497, - ["gain_power_charge_per_enemy_you_crit"]=2447, - ["gain_power_charge_per_second_if_have_not_lost_power_charge_recently"]=6498, - ["gain_power_charge_when_throwing_trap_%"]=2835, - ["gain_power_or_frenzy_charge_for_each_second_channeling"]=6499, - ["gain_rage_on_hit"]=9316, - ["gain_rage_on_hitting_rare_unique_enemy_%"]=9313, - ["gain_rage_on_kill"]=9312, - ["gain_rage_when_you_use_a_warcry"]=9314, - ["gain_rampage_while_at_maximum_endurance_charges"]=3158, - ["gain_random_charge_on_block"]=6500, - ["gain_random_charge_per_second_while_stationary"]=6501, - ["gain_random_retaliation_requirement_on_retaliation_used_chance_%"]=6502, - ["gain_rare_monster_mods_on_kill_ms"]=2715, - ["gain_resolute_technique_while_do_not_have_elemental_overload"]=10306, - ["gain_sacrificial_zeal_on_skill_use_%_cost_as_damage_per_minute"]=6503, - ["gain_scorching_sapping_brittle_confluxes_while_two_highest_attributes_equal"]=6504, - ["gain_shapers_presence_for_10_seconds_on_killing_rare_or_unique_monster"]=6505, - ["gain_shrine_buff_every_x_ms"]=6506, - ["gain_shrine_buff_every_x_ms_from_ascendancy"]=6507, - ["gain_single_conflux_for_3_seconds_every_8_seconds"]=6508, - ["gain_siphoning_charge_on_skill_use_%_chance"]=4221, - ["gain_soul_eater_during_flask_effect"]=3317, - ["gain_soul_eater_for_x_ms_on_vaal_skill_use"]=6509, - ["gain_soul_eater_stack_on_hit_vs_unique_cooldown_ms"]=6510, - ["gain_soul_eater_with_equipped_corrupted_items_on_vaal_skill_use_ms"]=3004, - ["gain_spell_cost_as_energy_shield_every_fifth_cast"]=6511, - ["gain_spell_cost_as_mana_every_fifth_cast"]=6512, - ["gain_spirit_charge_every_x_ms"]=4267, - ["gain_spirit_charge_on_kill_%_chance"]=4268, - ["gain_unholy_might_for_2_seconds_on_crit"]=2814, - ["gain_unholy_might_for_2_seconds_on_melee_crit"]=2813, - ["gain_unholy_might_for_4_seconds_on_crit"]=2815, - ["gain_unholy_might_on_rampage_threshold_ms"]=2871, - ["gain_up_to_maximum_fragile_regrowth_when_hit"]=6513, - ["gain_vaal_pact_if_you_have_crit_recently"]=6514, - ["gain_vaal_pact_while_at_maximum_endurance_charges"]=10301, - ["gain_vaal_pact_while_focused"]=6515, - ["gain_vaal_soul_on_hit_cooldown_ms"]=6516, - ["gain_wand_accuracy_rating_equal_to_intelligence"]=6517, - ["gain_x_es_on_trap_triggered_by_an_enemy"]=4129, - ["gain_x_fanatic_charges_every_second_if_have_attacked_in_past_second"]=6518, - ["gain_x_fragile_regrowth_per_second"]=6519, - ["gain_x_grasping_vines_when_you_take_a_critical_strike"]=4308, - ["gain_x_life_on_trap_triggered_by_an_enemy"]=4128, - ["gain_x_life_when_endurance_charge_expires_or_consumed"]=2909, - ["gain_x_rage_on_attack_crit"]=6520, - ["gain_x_rage_on_attack_hit"]=6521, - ["gain_x_rage_on_bow_hit"]=6522, - ["gain_x_rage_on_hit_with_axes"]=6523, - ["gain_x_rage_on_hit_with_axes_swords"]=6524, - ["gain_x_rage_on_hit_with_axes_swords_1s_cooldown"]=6525, - ["gain_x_rage_on_melee_crit"]=6526, - ["gain_x_rage_on_melee_hit"]=6527, - ["gain_x_rage_per_200_mana_spent"]=6528, - ["gain_x_rage_when_hit"]=6529, - ["galvanic_arrow_and_storm_rain_skill_repeat_count_if_mined"]=6530, - ["galvanic_arrow_area_damage_+%"]=9539, - ["galvanic_arrow_projectile_speed_+%"]=6531, - ["galvanic_field_beam_frequency_+%"]=6532, - ["galvanic_field_cast_speed_+%"]=6533, - ["galvanic_field_damage_+%"]=6534, - ["galvanic_field_number_of_chains"]=6535, - ["gem_display_rune_blast_is_gem"]=9461, - ["gem_experience_gain_+%"]=1784, - ["generals_cry_cooldown_speed_+%"]=6536, - ["generals_cry_maximum_warriors_+"]=6537, - ["ghost_dance_max_stacks"]=6538, - ["ghost_dance_restore_%_evasion_as_energy_shield_when_hit"]=6539, - ["glacial_cascade_damage_+%"]=3568, - ["glacial_cascade_number_of_additional_bursts"]=6540, - ["glacial_cascade_physical_damage_%_to_add_as_cold"]=6541, - ["glacial_cascade_physical_damage_%_to_convert_to_cold"]=3865, - ["glacial_cascade_radius_+%"]=3713, - ["glacial_hammer_damage_+%"]=3522, - ["glacial_hammer_freeze_chance_%"]=3847, - ["glacial_hammer_item_rarity_on_shattering_enemy_+%"]=3120, - ["glacial_hammer_melee_splash_with_cold_damage"]=6542, - ["glacial_hammer_physical_damage_%_to_add_as_cold_damage"]=3866, - ["glacial_hammer_physical_damage_%_to_convert_to_cold"]=6543, - ["gladiator_accuracy_rating_+%_final_while_wielding_sword"]=4393, - ["gladiator_area_of_effect_+%_final_while_wielding_mace"]=4572, - ["gladiator_critical_strike_chance_+%_final_while_wielding_dagger"]=6544, - ["gladiator_damage_+%_final_against_enemies_on_low_life_while_wielding_axe"]=6548, - ["gladiator_damage_vs_rare_unique_enemies_+%_final_per_2_seconds_in_your_presence_up_to_50%"]=6545, - ["gladiator_damage_vs_rare_unique_enemies_+%_final_per_second_in_your_presence_up_to_100%"]=6546, - ["global_added_chaos_damage_%_of_ward"]=1969, - ["global_always_hit"]=1945, - ["global_attack_speed_+%_per_green_socket_on_item"]=2620, - ["global_attack_speed_+%_per_level"]=6549, - ["global_bleed_on_hit"]=2389, - ["global_cannot_crit"]=2079, - ["global_chance_to_blind_on_hit_%"]=2854, - ["global_chance_to_blind_on_hit_%_vs_bleeding_enemies"]=6550, - ["global_critical_strike_chance_+%_vs_chilled_enemies"]=6551, - ["global_critical_strike_chance_+%_while_holding_bow"]=2374, - ["global_critical_strike_chance_+%_while_holding_staff"]=2372, - ["global_critical_strike_chance_while_dual_wielding_+%"]=4150, - ["global_critical_strike_mulitplier_+_per_green_socket_on_item"]=2621, - ["global_critical_strike_multiplier_+_while_holding_bow"]=2375, - ["global_critical_strike_multiplier_+_while_holding_staff"]=2373, - ["global_critical_strike_multiplier_+_while_you_have_no_frenzy_charges"]=1956, - ["global_critical_strike_multiplier_while_dual_wielding_+"]=4149, - ["global_defences_+%"]=2731, - ["global_defences_+%_per_frenzy_charge"]=6552, - ["global_defences_+%_per_white_socket_on_item"]=2630, - ["global_evasion_rating_+_while_moving"]=6553, - ["global_hit_causes_monster_flee_%"]=1943, - ["global_item_attribute_requirements_+%"]=2452, - ["global_knockback"]=1427, - ["global_knockback_on_crit"]=1854, - ["global_life_leech_from_physical_attack_damage_per_red_socket_on_item_permyriad"]=2616, - ["global_mana_leech_from_physical_attack_damage_permyriad_per_blue_socket_on_item"]=2626, - ["global_maximum_added_chaos_damage"]=1294, - ["global_maximum_added_cold_damage"]=1276, - ["global_maximum_added_cold_damage_vs_chilled_or_frozen_enemies"]=6555, - ["global_maximum_added_fire_damage"]=1267, - ["global_maximum_added_fire_damage_vs_burning_enemies"]=9825, - ["global_maximum_added_fire_damage_vs_ignited_enemies"]=6556, - ["global_maximum_added_lightning_damage"]=1287, - ["global_maximum_added_lightning_damage_minus_1_per_level"]=6554, - ["global_maximum_added_lightning_damage_vs_ignited_enemies"]=6557, - ["global_maximum_added_lightning_damage_vs_shocked_enemies"]=6558, - ["global_maximum_added_physical_damage"]=1174, - ["global_maximum_added_physical_damage_vs_bleeding_enemies"]=6559, - ["global_melee_range_+_per_white_socket_on_item"]=2631, - ["global_minimum_added_chaos_damage"]=1294, - ["global_minimum_added_cold_damage"]=1276, - ["global_minimum_added_cold_damage_vs_chilled_or_frozen_enemies"]=6555, - ["global_minimum_added_fire_damage"]=1267, - ["global_minimum_added_fire_damage_vs_burning_enemies"]=9825, - ["global_minimum_added_fire_damage_vs_ignited_enemies"]=6556, - ["global_minimum_added_lightning_damage"]=1287, - ["global_minimum_added_lightning_damage_vs_ignited_enemies"]=6557, - ["global_minimum_added_lightning_damage_vs_shocked_enemies"]=6558, - ["global_minimum_added_physical_damage"]=1174, - ["global_minimum_added_physical_damage_vs_bleeding_enemies"]=6559, - ["global_physical_damage_reduction_rating_while_moving"]=6560, - ["global_poison_on_hit"]=3062, - ["global_reduce_enemy_block_%"]=1809, - ["global_weapon_physical_damage_+%_per_red_socket_on_item"]=2617, - ["glove_implicit_gain_rage_on_attack_hit_cooldown_ms"]=6561, - ["gloves_freeze_proliferation_radius"]=2122, - ["gloves_ignite_proliferation_radius"]=2119, - ["gloves_mod_effect_+%"]=6562, - ["gloves_shock_proliferation_radius"]=2123, - ["glows_in_area_with_unique_fish"]=4014, - ["goat_footprints_from_item"]=10322, - ["golem_attack_and_cast_speed_+%"]=6563, - ["golem_attack_maximum_added_physical_damage"]=6564, - ["golem_attack_minimum_added_physical_damage"]=6564, - ["golem_buff_effect_+%"]=6565, - ["golem_buff_effect_+%_per_summoned_golem"]=6566, - ["golem_cooldown_recovery_+%"]=3221, - ["golem_damage_+%_if_summoned_in_past_8_seconds"]=3586, - ["golem_damage_+%_per_active_golem"]=4085, - ["golem_damage_+%_per_active_golem_type"]=4084, - ["golem_immunity_to_elemental_damage"]=3979, - ["golem_life_regeneration_per_minute_%"]=6567, - ["golem_maximum_life_+%"]=6568, - ["golem_maximum_mana_+%"]=6569, - ["golem_movement_speed_+%"]=6570, - ["golem_physical_damage_reduction_rating"]=6571, - ["golem_scale_+%"]=3579, - ["golem_skill_cooldown_recovery_+%"]=3220, - ["golems_larger_aggro_radius"]=10230, - ["grace_aura_effect_+%"]=3253, - ["grace_mana_reservation_+%"]=3929, - ["grace_mana_reservation_efficiency_+%"]=6573, - ["grace_mana_reservation_efficiency_-2%_per_1"]=6572, - ["grace_reserves_no_mana"]=6574, - ["grant_X_frenzy_charges_to_nearby_allies_on_death"]=2797, - ["grant_animated_minion_melee_splash_damage_+%_final_for_splash"]=6575, - ["grant_map_boss_X_azmeri_dust_primal_on_death"]=6576, - ["grant_map_boss_X_azmeri_dust_voodoo_on_death"]=6577, - ["grant_map_boss_X_azmeri_dust_warden_on_death"]=6578, - ["grant_tailwind_to_nearby_allies_if_used_skill_recently"]=6579, - ["grant_void_arrow_every_x_ms"]=6580, - ["grasping_vines_on_hit_while_life_flask_active_up_to_x"]=6581, - ["gratuitous_violence_physical_damage_over_time_+%_final"]=6582, - ["ground_slam_and_sunder_poison_on_non_poisoned_enemies_damage_+%"]=6583, - ["ground_slam_angle_+%"]=3148, - ["ground_slam_chance_to_gain_endurance_charge_%_on_stun"]=6584, - ["ground_slam_damage_+%"]=3523, - ["ground_slam_radius_+%"]=3693, - ["ground_smoke_on_rampage_threshold_ms"]=2863, - ["ground_smoke_when_hit_%"]=2476, - ["ground_tar_on_block_base_area_of_effect_radius"]=6585, - ["ground_tar_on_take_crit_base_area_of_effect_radius"]=2411, - ["ground_tar_when_hit_%_chance"]=6586, - ["guard_buff_take_damage_from_linked_target"]=6587, - ["guard_skill_cooldown_recovery_+%"]=6588, - ["guard_skill_effect_duration_+%"]=6589, - ["guardian_auras_grant_life_regeneration_per_minute_%"]=3667, - ["guardian_damage_+%_final_to_you_and_nearby_allies_per_nearby_ally_up_to_15%"]=6590, - ["guardian_every_4_seconds_remove_curses_on_you"]=6591, - ["guardian_every_4_seconds_remove_elemental_ailments_on_you"]=6592, - ["guardian_gain_life_regeneration_per_minute_%_for_1_second_every_10_seconds"]=3673, - ["guardian_nearby_allies_share_charges"]=4003, - ["guardian_nearby_enemies_cannot_gain_charges"]=3668, - ["guardian_remove_curses_and_status_ailments_every_10_seconds"]=3672, - ["guardian_reserved_life_granted_to_you_and_allies_as_armour_%"]=3669, - ["guardian_reserved_mana_%_given_to_you_and_nearby_allies_as_base_maximum_energy_shield"]=3671, - ["guardian_reserved_mana_granted_to_you_and_allies_as_armour_%"]=3670, - ["guardian_warcry_grant_attack_cast_and_movement_speed_to_you_and_nearby_allies_+%"]=3204, - ["guardian_with_5_nearby_allies_you_and_allies_have_onslaught"]=6593, - ["guardian_with_nearby_ally_damage_+%_final_for_you_and_allies"]=6594, - ["half_physical_bypasses_es_half_chaos_damages_es_when_X_corrupted_items_equipped"]=3003, - ["hard_mode_utility_flask_gain_charges_while_active"]=6595, - ["harvest_encounter_fluid_granted_+%"]=6596, - ["has_avoid_shock_as_avoid_all_elemental_ailments"]=6597, - ["has_curse_limit_equal_to_maximum_power_charges"]=6598, - ["has_ignite_duration_on_self_as_all_elemental_ailments_on_self"]=6599, - ["has_onslaught_if_totem_summoned_recently"]=6600, - ["has_stun_prevention_flask"]=6601, - ["has_unique_brutal_shrine_effect"]=6602, - ["has_unique_massive_shrine_effect"]=6603, - ["haste_aura_effect_+%"]=3254, - ["haste_mana_reservation_+%"]=3930, - ["haste_mana_reservation_efficiency_+%"]=6605, - ["haste_mana_reservation_efficiency_-2%_per_1"]=6604, - ["haste_reserves_no_mana"]=6606, - ["hatred_aura_effect_+%"]=3256, - ["hatred_mana_reservation_+%"]=3920, - ["hatred_mana_reservation_efficiency_+%"]=6608, - ["hatred_mana_reservation_efficiency_-2%_per_1"]=6607, - ["hatred_reserves_no_mana"]=6609, - ["heavy_strike_attack_speed_+%"]=3741, - ["heavy_strike_chance_to_deal_double_damage_%"]=3124, - ["heavy_strike_damage_+%"]=3524, - ["heist_additional_abyss_rewards_from_reward_chests_%"]=6610, - ["heist_additional_armour_rewards_from_reward_chests_%"]=6611, - ["heist_additional_blight_rewards_from_reward_chests_%"]=6612, - ["heist_additional_breach_rewards_from_reward_chests_%"]=6613, - ["heist_additional_corrupted_rewards_from_reward_chests_%"]=6614, - ["heist_additional_delirium_rewards_from_reward_chests_%"]=6615, - ["heist_additional_delve_rewards_from_reward_chests_%"]=6616, - ["heist_additional_divination_rewards_from_reward_chests_%"]=6617, - ["heist_additional_essences_rewards_from_reward_chests_%"]=6618, - ["heist_additional_gems_rewards_from_reward_chests_%"]=6619, - ["heist_additional_harbinger_rewards_from_reward_chests_%"]=6620, - ["heist_additional_jewellery_rewards_from_reward_chests_%"]=6621, - ["heist_additional_legion_rewards_from_reward_chests_%"]=6622, - ["heist_additional_metamorph_rewards_from_reward_chests_%"]=6623, - ["heist_additional_perandus_rewards_from_reward_chests_%"]=6624, - ["heist_additional_talisman_rewards_from_reward_chests_%"]=6625, - ["heist_additional_uniques_rewards_from_reward_chests_%"]=6626, - ["heist_additional_weapons_rewards_from_reward_chests_%"]=6627, - ["heist_alert_level_gained_on_monster_death"]=6628, - ["heist_alert_level_gained_per_10_sec"]=6629, - ["heist_chests_chance_for_secondary_objectives_%"]=6630, - ["heist_chests_double_blighted_maps_and_catalysts_%"]=6631, - ["heist_chests_double_breach_splinters_%"]=6632, - ["heist_chests_double_catalysts_%"]=6633, - ["heist_chests_double_currency_%"]=6634, - ["heist_chests_double_delirium_orbs_and_splinters_%"]=6635, - ["heist_chests_double_divination_cards_%"]=6636, - ["heist_chests_double_essences_%"]=6637, - ["heist_chests_double_jewels_%"]=6638, - ["heist_chests_double_legion_splinters_%"]=6639, - ["heist_chests_double_map_fragments_%"]=6640, - ["heist_chests_double_maps_%"]=6641, - ["heist_chests_double_oils_%"]=6642, - ["heist_chests_double_scarabs_%"]=6643, - ["heist_chests_double_sextants_%"]=6644, - ["heist_chests_double_uniques_%"]=6645, - ["heist_chests_unique_rarity_%"]=6646, - ["heist_coins_dropped_by_monsters_double_%"]=6648, + ["display_map_no_monsters"]=2368, + ["display_map_restless_dead"]=2473, + ["display_memory_line_abyss_beyond_monsters_from_cracks"]=6135, + ["display_memory_line_ambush_contains_standalone_map_boss"]=6136, + ["display_memory_line_ambush_strongbox_chain"]=6137, + ["display_memory_line_anarchy_rogue_exiles_equipped_with_unique_items"]=6138, + ["display_memory_line_anarchy_rogue_exiles_in_packs"]=6139, + ["display_memory_line_bestiary_capturable_harvest_monsters"]=6140, + ["display_memory_line_bestiary_great_migration"]=6141, + ["display_memory_line_betrayal_constant_interventions"]=6142, + ["display_memory_line_breach_area_is_breached"]=6143, + ["display_memory_line_breach_miniature_flash_breaches"]=6144, + ["display_memory_line_domination_multiple_modded_shrines"]=6145, + ["display_memory_line_domination_shrines_to_pantheon_gods"]=6146, + ["display_memory_line_essence_multiple_rare_monsters"]=6147, + ["display_memory_line_essence_rogue_exiles"]=6148, + ["display_memory_line_harbinger_player_is_a_harbinger"]=6149, + ["display_memory_line_harbinger_portals_everywhere"]=6150, + ["display_memory_line_harvest_larger_plot_with_premium_seeds"]=6151, + ["display_memory_line_incursion_reverse"]=6152, + ["display_memory_line_torment_player_is_possessed"]=6153, + ["display_memory_line_torment_rares_uniques_are_possessed"]=6154, + ["display_minion_maximum_life"]=1883, + ["display_monster_has_acceleration_shrine"]=6155, + ["display_monster_has_adrenaline"]=6156, + ["display_monster_has_cannot_recover_life_aura"]=6157, + ["display_monster_has_chilled_ground_trail_daemon"]=572, + ["display_monster_has_flask_gain_aura"]=6158, + ["display_monster_has_hinder_daemon"]=6159, + ["display_monster_has_lightning_thorns_daemon"]=6160, + ["display_monster_has_periodic_freeze_daemon"]=6161, + ["display_monster_has_proximity_shield_daemon"]=573, + ["display_monster_has_righteous_fire_daemon"]=6162, + ["display_monster_has_shroud_walker_daemon"]=6163, + ["display_monster_has_tailwind_aura"]=6164, + ["display_monster_no_drops"]=6165, + ["display_passives_in_large_radius_of_non_unique_jewels_grant_additional_strength"]=6166, + ["display_reave_base_maximum_stacks"]=6167, + ["display_socketed_minion_gems_supported_by_level_X_life_leech"]=475, + ["display_stat_uber_barrels"]=8145, + ["display_strongbox_drops_additional_shaper_or_elder_cards"]=6168, + ["display_tattoo_grants_random_keystone"]=6169, + ["display_trigger_arcane_wake_after_spending_200_mana_%_chance"]=702, + ["display_violent_pace_skill_level"]=6170, + ["divination_buff_on_flask_used_duration_cs"]=836, + ["divine_tempest_beam_width_+%"]=6171, + ["divine_tempest_damage_+%"]=6172, + ["divine_tempest_number_of_additional_nearby_enemies_to_zap"]=6173, + ["do_not_chain"]=1722, + ["doedre_aura_damage_+%_final"]=6174, + ["dominance_additional_block_%_on_nearby_allies_per_100_strength"]=2933, + ["dominance_cast_speed_+%_on_nearby_allies_per_100_intelligence"]=2936, + ["dominance_critical_strike_multiplier_+_on_nearby_allies_per_100_dexterity"]=2935, + ["dominance_defences_+%_on_nearby_allies_per_100_strength"]=2934, + ["dominating_blow_and_absolution_additive_minion_damage_modifiers_apply_to_you_at_150%_value"]=6175, + ["dominating_blow_duration_+%"]=3830, + ["dominating_blow_minion_damage_+%"]=3633, + ["dominating_blow_skill_attack_damage_+%"]=3634, + ["dot_multiplier_+"]=1178, + ["dot_multiplier_+_if_crit_in_past_8_seconds"]=6176, + ["dot_multiplier_+_while_affected_by_malevolence"]=6177, + ["dot_multiplier_+_with_bow_skills"]=6178, + ["double_and_dual_strike_soul_eater_for_20_seconds_on_rare_or_unique_kill_chance_%"]=6179, + ["double_animate_weapons_limit"]=6180, + ["double_damage_%_chance_while_wielding_mace_sceptre_staff"]=6182, + ["double_damage_chance_%_if_below_100_strength"]=6181, + ["double_slash_critical_strike_chance_+%"]=4078, + ["double_slash_damage_+%"]=4071, + ["double_slash_maximum_added_physical_damage_vs_bleeding_enemies"]=6183, + ["double_slash_minimum_added_physical_damage_vs_bleeding_enemies"]=6183, + ["double_slash_radius_+%"]=4080, + ["double_strike_attack_speed_+%"]=3785, + ["double_strike_chance_to_deal_double_damage_%_vs_bleeding_enemies"]=6184, + ["double_strike_chance_to_trigger_on_kill_effects_an_additional_time_%"]=3164, + ["double_strike_critical_strike_chance_+%"]=3868, + ["double_strike_damage_+%"]=3562, + ["drain_x_flask_charges_over_time_on_hit_for_6_seconds"]=6185, + ["dread_banner_aura_effect_+%"]=6186, + ["dread_banner_mana_reservation_efficiency_+%"]=6187, + ["dropped_items_are_converted_to_divination_cards"]=6188, + ["dropped_items_are_converted_to_maps"]=6189, + ["dropped_items_are_converted_to_scarabs_based_on_rarity"]=6190, + ["dual_strike_accuracy_rating_+%_while_wielding_sword"]=6191, + ["dual_strike_attack_speed_+%"]=3786, + ["dual_strike_attack_speed_+%_while_wielding_claw"]=6192, + ["dual_strike_critical_strike_chance_+%"]=3869, + ["dual_strike_critical_strike_multiplier_+_while_wielding_dagger"]=6193, + ["dual_strike_damage_+%"]=3563, + ["dual_strike_intimidate_on_hit_while_wielding_axe"]=6194, + ["dual_strike_main_hand_deals_double_damage_%"]=6195, + ["dual_strike_melee_splash_while_wielding_mace"]=6196, + ["dual_strike_melee_splash_with_off_hand_weapon"]=6197, + ["dual_wield_inherent_attack_speed_is_doubled_while_dual_wielding_claws"]=6198, + ["dual_wield_inherent_bonuses_are_doubled"]=6199, + ["dual_wield_or_shield_block_%"]=1101, + ["duelist_hidden_ascendancy_attack_skill_final_repeat_damage_+%_final"]=6200, + ["duration_of_ailments_on_self_+%_per_fortification"]=6201, + ["earthquake_and_earthshatter_shatter_on_killing_blow"]=6202, + ["earthquake_damage_+%"]=3665, + ["earthquake_damage_+%_per_100ms_duration"]=6203, + ["earthquake_duration_+%"]=3858, + ["earthquake_radius_+%"]=3776, + ["earthshatter_area_of_effect_+%"]=6204, + ["earthshatter_damage_+%"]=6205, + ["eat_soul_after_hex_90%_curse_expire"]=6206, + ["elemental_ailment_duration_on_self_+%_while_holding_shield"]=6207, + ["elemental_ailment_on_self_duration_+%_with_rare_abyss_jewel_socketed"]=6208, + ["elemental_ailments_on_you_proliferate_to_nearby_enemies_within_x_radius"]=6209, + ["elemental_ailments_reflected_to_self"]=6210, + ["elemental_critical_strike_chance_+%"]=1419, + ["elemental_critical_strike_multiplier_+"]=1445, + ["elemental_damage_%_taken_as_chaos_if_4_hunter_items"]=4404, + ["elemental_damage_%_to_add_as_chaos"]=1875, + ["elemental_damage_%_to_add_as_chaos_per_shaper_item_equipped"]=4265, + ["elemental_damage_+%"]=1913, + ["elemental_damage_+%_during_flask_effect"]=4156, + ["elemental_damage_+%_final_per_righteous_charge"]=6215, + ["elemental_damage_+%_if_cursed_enemy_killed_recently"]=6216, + ["elemental_damage_+%_if_enemy_chilled_recently"]=6217, + ["elemental_damage_+%_if_enemy_ignited_recently"]=6218, + ["elemental_damage_+%_if_enemy_shocked_recently"]=6219, + ["elemental_damage_+%_if_have_crit_recently"]=6220, + ["elemental_damage_+%_if_used_a_warcry_recently"]=6221, + ["elemental_damage_+%_per_10_devotion"]=6222, + ["elemental_damage_+%_per_10_dexterity"]=6223, + ["elemental_damage_+%_per_12_int"]=6224, + ["elemental_damage_+%_per_12_strength"]=6225, + ["elemental_damage_+%_per_different_enemy_elemental_ailment"]=6211, + ["elemental_damage_+%_per_divine_charge"]=4320, + ["elemental_damage_+%_per_frenzy_charge"]=2071, + ["elemental_damage_+%_per_level"]=2909, + ["elemental_damage_+%_per_lightning_cold_fire_resistance_above_75"]=6212, + ["elemental_damage_+%_per_missing_lightning_cold_fire_resistance"]=6213, + ["elemental_damage_+%_per_power_charge"]=6226, + ["elemental_damage_+%_per_sextant_affecting_area"]=6227, + ["elemental_damage_+%_per_stackable_unique_jewel"]=4091, + ["elemental_damage_+%_while_affected_by_a_herald"]=6228, + ["elemental_damage_+%_while_in_area_affected_by_sextant"]=6229, + ["elemental_damage_additional_rolls_lucky_shocked"]=6214, + ["elemental_damage_can_shock"]=2807, + ["elemental_damage_reduction_%_per_endurance_charge"]=2208, + ["elemental_damage_resistance_+%"]=6230, + ["elemental_damage_resisted_by_lowest_elemental_resistance"]=6231, + ["elemental_damage_taken_%_as_chaos"]=2386, + ["elemental_damage_taken_+%"]=3225, + ["elemental_damage_taken_+%_at_maximum_endurance_charges"]=3253, + ["elemental_damage_taken_+%_during_flask_effect"]=4016, + ["elemental_damage_taken_+%_final_per_raised_zombie"]=6232, + ["elemental_damage_taken_+%_if_been_hit_recently"]=6234, + ["elemental_damage_taken_+%_if_not_hit_recently"]=6235, + ["elemental_damage_taken_+%_if_you_have_an_endurance_charge"]=6236, + ["elemental_damage_taken_+%_per_endurance_charge"]=6237, + ["elemental_damage_taken_+%_while_on_consecrated_ground"]=3987, + ["elemental_damage_taken_+%_while_stationary"]=6238, + ["elemental_damage_taken_from_hits_+%_per_endurance_charge"]=6233, + ["elemental_damage_with_attack_skills_+%"]=6239, + ["elemental_damage_with_attack_skills_+%_per_power_charge"]=6240, + ["elemental_damage_with_attack_skills_+%_while_using_flask"]=2691, + ["elemental_equilibrium_effect_+%"]=2128, + ["elemental_golem_granted_buff_effect_+%"]=4027, + ["elemental_golem_immunity_to_elemental_damage"]=4024, + ["elemental_golems_maximum_life_is_doubled"]=6241, + ["elemental_hit_and_wild_strike_chance_to_inflict_scorch_brittle_sap_%"]=6242, + ["elemental_hit_attack_speed_+%"]=3793, + ["elemental_hit_cannot_roll_cold_damage"]=6243, + ["elemental_hit_cannot_roll_fire_damage"]=6244, + ["elemental_hit_cannot_roll_lightning_damage"]=6245, + ["elemental_hit_chance_to_freeze_shock_ignite_%"]=3910, + ["elemental_hit_damage_+%"]=3607, + ["elemental_hit_damage_taken_%_as_physical"]=6246, + ["elemental_hit_deals_50%_less_cold_damage"]=6247, + ["elemental_hit_deals_50%_less_fire_damage"]=6248, + ["elemental_hit_deals_50%_less_lightning_damage"]=6249, + ["elemental_overload_rotation_active"]=10633, + ["elemental_penetration_%_during_flask_effect"]=4198, + ["elemental_penetration_%_if_you_have_a_power_charge"]=6250, + ["elemental_penetration_%_while_chilled"]=6251, + ["elemental_reflect_damage_taken_+%"]=2641, + ["elemental_reflect_damage_taken_+%_while_affected_by_purity_of_elements"]=6253, + ["elemental_reflect_damage_taken_and_minion_elemental_reflect_damage_taken_+%"]=6252, + ["elemental_resistance_%_per_10_devotion"]=6257, + ["elemental_resistance_%_per_empty_white_socket"]=4366, + ["elemental_resistance_%_per_minion_up_to_30%"]=6254, + ["elemental_resistance_%_per_stackable_unique_jewel"]=4092, + ["elemental_resistance_%_when_on_low_life"]=1557, + ["elemental_resistance_%_while_no_gems_in_helmet"]=6255, + ["elemental_resistance_+%_per_15_ascendance"]=1124, + ["elemental_resistance_cannot_be_lowered_by_curses"]=6256, + ["elemental_resistances_+%_for_you_and_allies_affected_by_your_auras"]=4002, + ["elemental_resistances_are_limited_by_highest_maximum_elemental_resistance"]=6258, + ["elemental_skill_chance_to_blind_nearby_enemies_%"]=6259, + ["elemental_skills_deal_triple_damage"]=6260, + ["elemental_spell_damage_taken_+_per_barkskin_stack"]=487, + ["elemental_status_effect_aura_radius"]=2150, + ["elemental_weakness_curse_effect_+%"]=3943, + ["elemental_weakness_duration_+%"]=3848, + ["elemental_weakness_ignores_hexproof"]=2536, + ["elemental_weakness_no_reservation"]=6261, + ["elementalist_all_damage_causes_chill_shock_and_ignite_for_4_seconds_on_kill_%"]=3553, + ["elementalist_area_of_effect_+%_for_5_seconds"]=6262, + ["elementalist_chill_maximum_magnitude_override"]=6263, + ["elementalist_cold_penetration_%_for_4_seconds_on_using_fire_skill"]=3549, + ["elementalist_damage_with_an_element_+%_for_4_seconds_after_being_hit_by_an_element"]=3546, + ["elementalist_elemental_damage_+%_for_4_seconds_every_10_seconds"]=3548, + ["elementalist_elemental_damage_+%_for_5_seconds"]=6264, + ["elementalist_elemental_status_effect_aura_radius"]=3554, + ["elementalist_fire_penetration_%_for_4_seconds_on_using_lightning_skill"]=3551, + ["elementalist_gain_shaper_of_desolation_every_10_seconds"]=6265, + ["elementalist_ignite_damage_+%_final"]=6266, + ["elementalist_lightning_penetration_%_for_4_seconds_on_using_cold_skill"]=3550, + ["elementalist_skill_area_of_effect_+%_for_4_seconds_every_10_seconds"]=4171, + ["elementalist_summon_elemental_golem_on_killing_enemy_with_element_%"]=3552, + ["elusive_effect_+%"]=6267, + ["elusive_effect_on_self_+%_per_power_charge"]=4324, + ["elusive_has_50%_chance_to_be_removed_and_reapplied_at_%_elusive_effect"]=6268, + ["elusive_loss_rate_+%"]=6269, + ["elusive_minimum_effect_%"]=6270, + ["ember_projectile_spread_area_+%"]=6271, + ["emergency_hotfix_stat_2"]=8415, + ["empowered_attack_damage_+%"]=6272, + ["empowered_attack_double_damage_%_chance"]=6273, + ["enable_ring_slot_3"]=6274, + ["enchantment_boots_added_cold_damage_when_hit_maximum"]=3171, + ["enchantment_boots_added_cold_damage_when_hit_minimum"]=3171, + ["enchantment_boots_attack_and_cast_speed_+%_for_4_seconds_on_kill"]=3170, + ["enchantment_boots_damage_penetrates_elemental_resistance_%_while_you_havent_killed_for_4_seconds"]=3239, + ["enchantment_boots_life_leech_on_kill_permyriad"]=3173, + ["enchantment_boots_life_regen_per_minute_%_for_4_seconds_when_hit"]=3099, + ["enchantment_boots_mana_costs_when_hit_+%"]=3167, + ["enchantment_boots_mana_regeneration_rate_+%_if_cast_spell_recently"]=6275, + ["enchantment_boots_maximum_added_chaos_damage_for_4_seconds_when_crit_4s"]=3241, + ["enchantment_boots_maximum_added_fire_damage_on_kill_4s"]=3174, + ["enchantment_boots_maximum_added_lightning_damage_when_you_havent_killed_for_4_seconds"]=3172, + ["enchantment_boots_minimum_added_chaos_damage_for_4_seconds_when_crit_4s"]=3241, + ["enchantment_boots_minimum_added_fire_damage_on_kill_4s"]=3174, + ["enchantment_boots_minimum_added_lightning_damage_when_you_havent_killed_for_4_seconds"]=3172, + ["enchantment_boots_movement_speed_+%_when_not_hit_for_4_seconds"]=3175, + ["enchantment_boots_physical_damage_%_added_as_elements_in_spells_that_hit_you_in_past_4_seconds"]=3240, + ["enchantment_boots_status_ailment_chance_+%_when_havent_crit_for_4_seconds"]=3176, + ["enchantment_boots_stun_avoid_%_on_kill"]=3168, + ["enchantment_critical_strike_chance_+%_if_you_havent_crit_for_4_seconds"]=3483, + ["endurance_charge_duration_+%"]=2058, + ["endurance_charge_on_hit_%_vs_no_armour"]=6276, + ["endurance_charge_on_kill_%"]=2561, + ["endurance_charge_on_kill_percent_chance_while_holding_shield"]=6277, + ["endurance_charge_on_melee_stun_damage_+%_final_per_endurance_charge"]=6278, + ["endurance_charge_on_off_hand_kill_%"]=3381, + ["endurance_only_conduit"]=2193, + ["enduring_cry_buff_effect_+%"]=4042, + ["enduring_cry_cooldown_speed_+%"]=3819, + ["enduring_cry_grants_x_additional_endurance_charges"]=6279, + ["enemies_blinded_by_you_have_malediction"]=6280, + ["enemies_blinded_by_you_while_blinded_have_malediction"]=6281, + ["enemies_chaos_resistance_%_while_cursed"]=3992, + ["enemies_chill_as_unfrozen"]=1844, + ["enemies_chilled_by_bane_and_contagion"]=6282, + ["enemies_chilled_by_hits_deal_damage_lessened_by_chill_effect"]=6283, + ["enemies_chilled_by_hits_take_damage_increased_by_chill_effect"]=6284, + ["enemies_chilled_by_your_hits_are_shocked"]=6285, + ["enemies_cursed_by_you_have_life_regeneration_rate_+%"]=6286, + ["enemies_damage_taken_+%_while_cursed"]=3690, + ["enemies_explode_for_%_life_as_physical_damage"]=6287, + ["enemies_explode_on_death_by_attack_for_10%_life_as_physical_damage"]=6288, + ["enemies_explode_on_death_by_wand_hit_for_25%_life_as_chaos_damage_%_chance"]=6289, + ["enemies_explode_on_kill"]=6290, + ["enemies_explode_on_kill_while_unhinged"]=6291, + ["enemies_extra_damage_rolls_with_lightning_damage"]=6293, + ["enemies_extra_damage_rolls_with_lightning_damage_while_you_are_shocked"]=6294, + ["enemies_extra_damage_rolls_with_physical_damage"]=6292, + ["enemies_hitting_you_drop_burning_ground_%"]=6295, + ["enemies_hitting_you_drop_chilled_ground_%"]=6296, + ["enemies_hitting_you_drop_shocked_ground_%"]=6297, + ["enemies_ignited_by_you_have_physical_damage_%_converted_to_fire"]=6298, + ["enemies_in_presence_and_you_count_as_moving_when_affected_by_elemental_ailments"]=6299, + ["enemies_killed_on_fungal_ground_explode_for_10%_chaos_damage_%_chance"]=6300, + ["enemies_near_corpses_created_recently_are_shocked_and_chilled"]=6301, + ["enemies_near_cursed_corpses_are_blinded_and_explode_on_death_for_%_life_as_physical_damage"]=6302, + ["enemies_near_link_skill_target_have_exposure"]=6303, + ["enemies_near_marked_enemy_are_blinded"]=6304, + ["enemies_pacified_by_you_take_+%_damage"]=6305, + ["enemies_poisoned_by_you_cannot_deal_critical_strikes"]=6306, + ["enemies_poisoned_by_you_cannot_regen_life"]=6307, + ["enemies_poisoned_by_you_chaos_resistance_+%"]=6308, + ["enemies_shocked_by_you_have_physical_damage_%_converted_to_lightning"]=6309, + ["enemies_shocked_by_your_hits_are_chilled"]=6310, + ["enemies_shocked_by_your_hits_are_debilitated"]=6311, + ["enemies_taunted_by_warcry_explode_on_death_%_chance_dealing_8%_life_as_chaos_damage"]=6312, + ["enemies_taunted_by_you_cannot_evade_attacks"]=6313, + ["enemies_taunted_by_your_warcies_are_intimidated"]=6314, + ["enemies_taunted_by_your_warcries_are_unnerved"]=6315, + ["enemies_that_hit_you_inflict_temporal_chains"]=6316, + ["enemies_that_hit_you_with_attack_recently_attack_speed_+%"]=6317, + ["enemies_withered_by_you_take_+%_increased_elemental_damage_from_your_hits"]=4329, + ["enemies_you_bleed_grant_flask_charges_+%"]=2426, + ["enemies_you_blind_have_critical_strike_chance_+%"]=6318, + ["enemies_you_curse_are_intimidated"]=6319, + ["enemies_you_curse_are_unnerved"]=6320, + ["enemies_you_curse_cannot_recharge_energy_shield"]=6321, + ["enemies_you_curse_have_15%_hinder"]=6322, + ["enemies_you_curse_have_malediction"]=3691, + ["enemies_you_expose_have_self_elemental_status_duration_+%"]=6323, + ["enemies_you_hinder_have_life_regeneration_rate_+%"]=6324, + ["enemies_you_ignite_take_chaos_damage_from_ignite_instead"]=6325, + ["enemies_you_ignite_wither_does_not_expire"]=6326, + ["enemies_you_intimidate_have_stun_duration_on_self_+%"]=6327, + ["enemies_you_maim_have_damage_taken_over_time_+%"]=6328, + ["enemies_you_shock_cast_speed_+%"]=4220, + ["enemies_you_shock_movement_speed_+%"]=4221, + ["enemies_you_unnerve_have_enemy_spell_critical_strike_chance_+%_against_self"]=6329, + ["enemies_you_wither_have_all_resistances_%"]=6330, + ["enemy_additional_critical_strike_chance_against_self"]=3063, + ["enemy_aggro_radius_+%"]=3075, + ["enemy_critical_strike_chance_+%_against_self_20_times_value"]=3064, + ["enemy_evasion_+%_if_you_have_hit_them_recently"]=6331, + ["enemy_extra_damage_rolls_if_magic_ring_equipped"]=6332, + ["enemy_extra_damage_rolls_when_on_full_life"]=6333, + ["enemy_extra_damage_rolls_when_on_low_life"]=2489, + ["enemy_extra_damage_rolls_while_affected_by_vulnerability"]=3049, + ["enemy_hits_%_chance_to_treat_elemental_resistances_as_90%"]=6334, + ["enemy_hits_roll_low_damage"]=2486, + ["enemy_knockback_direction_is_reversed"]=2949, + ["enemy_life_leech_from_any_damage_permyriad_while_focused"]=7247, + ["enemy_life_leech_from_chaos_damage_permyriad"]=1618, + ["enemy_life_leech_from_cold_damage_permyriad"]=1611, + ["enemy_life_leech_from_fire_damage_permyriad"]=1606, + ["enemy_life_leech_from_lightning_damage_permyriad"]=1615, + ["enemy_life_leech_from_physical_attack_damage_permyriad"]=1583, + ["enemy_life_leech_from_physical_damage_permyriad"]=1602, + ["enemy_life_regeneration_rate_+%_for_4_seconds_on_hit"]=6335, + ["enemy_mana_leech_from_chaos_damage_permyriad"]=1650, + ["enemy_mana_leech_from_fire_damage_permyriad"]=1644, + ["enemy_mana_leech_from_lightning_damage_permyriad"]=1648, + ["enemy_mana_leech_from_physical_attack_damage_permyriad"]=1633, + ["enemy_mana_leech_from_physical_damage_permyriad"]=1642, + ["enemy_on_low_life_damage_taken_+%_per_frenzy_charge"]=2569, + ["enemy_phys_reduction_%_penalty_vs_hit"]=2911, + ["enemy_physical_damage_%_as_extra_fire_vs_you"]=1864, + ["enemy_shock_on_kill"]=1845, + ["enemy_zero_elemental_resistance_when_hit"]=6336, + ["energy_shield_%_gained_on_block"]=2400, + ["energy_shield_%_of_armour_rating_gained_on_block"]=2401, + ["energy_shield_%_to_lose_on_block"]=2673, + ["energy_shield_+%_if_both_rings_have_evasion_mod"]=6337, + ["energy_shield_+%_per_10_strength"]=6353, + ["energy_shield_+%_per_power_charge"]=6354, + ["energy_shield_+_per_8_evasion_on_boots"]=6338, + ["energy_shield_additive_modifiers_instead_apply_to_ward"]=6339, + ["energy_shield_degeneration_%_per_minute_not_in_grace"]=2579, + ["energy_shield_delay_-%"]=1497, + ["energy_shield_delay_-%_while_affected_by_discipline"]=6340, + ["energy_shield_delay_during_flask_effect_-%"]=3509, + ["energy_shield_from_gloves_and_boots_+%"]=6341, + ["energy_shield_from_helmet_+%"]=6342, + ["energy_shield_gain_per_target"]=1682, + ["energy_shield_gain_per_target_hit_while_affected_by_discipline"]=6343, + ["energy_shield_gain_when_you_hit_enemy_affected_by_spiders_web"]=6344, + ["energy_shield_gained_on_block"]=1694, + ["energy_shield_gained_on_enemy_death_per_level"]=2906, + ["energy_shield_increased_by_overcapped_chaos_resistance"]=6345, + ["energy_shield_leech_does_not_stop_on_full_energy_shield"]=6346, + ["energy_shield_leech_from_any_damage_permyriad"]=1656, + ["energy_shield_leech_from_attacks_does_not_stop_on_full_energy_shield"]=6347, + ["energy_shield_leech_from_lightning_damage_permyriad_while_affected_by_wrath"]=6348, + ["energy_shield_leech_from_spell_damage_permyriad_per_curse_on_enemy"]=1658, + ["energy_shield_leech_if_hit_is_at_least_25_%_fire_damage_permyriad"]=6349, + ["energy_shield_leech_permyriad_vs_frozen_enemies"]=6350, + ["energy_shield_leech_speed_+%"]=2092, + ["energy_shield_lost_per_minute_%"]=6351, + ["energy_shield_per_level"]=6352, + ["energy_shield_protects_mana"]=3048, + ["energy_shield_recharge_+%_if_amulet_has_evasion_mod"]=6355, + ["energy_shield_recharge_apply_to_mana"]=6356, + ["energy_shield_recharge_not_delayed_by_damage"]=1498, + ["energy_shield_recharge_rate_+%"]=1500, + ["energy_shield_recharge_rate_+%_per_different_mastery"]=6357, + ["energy_shield_recharge_rate_during_flask_effect_+%"]=3511, + ["energy_shield_recharge_rate_per_minute_%"]=1499, + ["energy_shield_recharge_rate_per_minute_with_all_corrupted_equipped_items"]=4134, + ["energy_shield_recharge_start_when_stunned"]=6358, + ["energy_shield_recharges_on_block_%"]=3354, + ["energy_shield_recharges_on_kill_%"]=6359, + ["energy_shield_recharges_on_skill_use_chance_%"]=6360, + ["energy_shield_recharges_on_suppress_%"]=3355, + ["energy_shield_recovery_rate_+%"]=1503, + ["energy_shield_recovery_rate_+%_if_havent_killed_recently"]=6361, + ["energy_shield_recovery_rate_+%_if_not_hit_recently"]=6362, + ["energy_shield_recovery_rate_while_affected_by_discipline_+%"]=6363, + ["energy_shield_regeneration_%_per_minute_if_enemy_cursed_recently"]=6364, + ["energy_shield_regeneration_%_per_minute_if_enemy_killed_recently"]=6365, + ["energy_shield_regeneration_%_per_minute_while_shocked"]=2957, + ["energy_shield_regeneration_rate_+%"]=6373, + ["energy_shield_regeneration_rate_per_minute_%_if_consumed_corpse_recently"]=6366, + ["energy_shield_regeneration_rate_per_minute_%_if_you_have_hit_an_enemy_recently"]=6369, + ["energy_shield_regeneration_rate_per_minute_%_while_affected_by_discipline"]=6370, + ["energy_shield_regeneration_rate_per_minute_%_while_on_low_life"]=1736, + ["energy_shield_regeneration_rate_per_minute_if_rare_or_unique_enemy_nearby"]=6367, + ["energy_shield_regeneration_rate_per_minute_per_poison_stack"]=6368, + ["energy_shield_regeneration_rate_per_minute_while_on_consecrated_ground"]=6371, + ["energy_shield_regeneration_rate_per_second"]=6372, + ["enfeeble_curse_effect_+%"]=3944, + ["enfeeble_duration_+%"]=3847, + ["enfeeble_ignores_hexproof"]=2537, + ["enfeeble_no_reservation"]=6374, + ["ensnaring_arrow_area_of_effect_+%"]=6375, + ["ensnaring_arrow_debuff_effect_+%"]=6376, + ["envy_reserves_no_mana"]=6377, + ["ephemeral_edge_maximum_lightning_damage_from_es_%"]=6378, + ["es_and_mana_regeneration_rate_per_minute_%_while_on_consecrated_ground"]=4158, + ["es_regeneration_per_minute_%_while_stationary"]=6379, + ["essence_buff_ground_fire_damage_to_deal_per_second"]=4240, + ["essence_buff_ground_fire_duration_ms"]=4240, + ["essence_display_elemental_damage_taken_while_not_moving_+%"]=4243, + ["essence_drain_damage_+%"]=3659, + ["essence_drain_soulrend_base_projectile_speed_+%"]=6380, + ["essence_drain_soulrend_number_of_additional_projectiles"]=6381, + ["ethereal_knives_blade_left_in_ground_for_every_X_projectiles"]=6382, + ["ethereal_knives_damage_+%"]=3580, + ["ethereal_knives_number_of_additional_projectiles"]=6383, + ["ethereal_knives_projectile_base_number_of_targets_to_pierce"]=6384, + ["ethereal_knives_projectile_speed_+%"]=3827, + ["ethereal_knives_projectiles_nova"]=6385, + ["evasion_+%_if_hit_recently"]=4119, + ["evasion_+%_per_10_intelligence"]=6388, + ["evasion_and_physical_damage_reduction_rating_+%"]=1478, + ["evasion_rating_%_as_life_regeneration_per_minute_during_focus"]=6397, + ["evasion_rating_%_to_add_as_armour"]=6398, + ["evasion_rating_+%"]=1484, + ["evasion_rating_+%_during_focus"]=6389, + ["evasion_rating_+%_if_energy_shield_recharge_started_in_past_2_seconds"]=6386, + ["evasion_rating_+%_if_have_cast_dash_recently"]=6402, + ["evasion_rating_+%_if_have_not_been_hit_recently"]=6403, + ["evasion_rating_+%_if_you_have_hit_an_enemy_recently"]=6404, + ["evasion_rating_+%_per_500_maximum_mana"]=6390, + ["evasion_rating_+%_per_5_intelligence"]=6387, + ["evasion_rating_+%_per_endurance_charge"]=6391, + ["evasion_rating_+%_per_frenzy_charge"]=1491, + ["evasion_rating_+%_per_green_socket_on_main_hand_weapon"]=6405, + ["evasion_rating_+%_when_on_full_life"]=6406, + ["evasion_rating_+%_when_on_low_life"]=2468, + ["evasion_rating_+%_while_leeching"]=6407, + ["evasion_rating_+%_while_moving"]=6408, + ["evasion_rating_+%_while_onslaught_is_active"]=1486, + ["evasion_rating_+%_while_phasing"]=2438, + ["evasion_rating_+%_while_stationary"]=6392, + ["evasion_rating_+%_while_tincture_active"]=6409, + ["evasion_rating_+%_while_you_have_energy_shield"]=6410, + ["evasion_rating_+_if_you_have_hit_an_enemy_recently"]=6399, + ["evasion_rating_+_per_10_player_life"]=6393, + ["evasion_rating_+_per_1_armour_on_gloves"]=6394, + ["evasion_rating_+_per_1_helmet_energy_shield"]=1482, + ["evasion_rating_+_per_5_maximum_energy_shield_on_shield"]=4310, + ["evasion_rating_+_when_on_full_life"]=1481, + ["evasion_rating_+_when_on_low_life"]=1480, + ["evasion_rating_+_while_phasing"]=6400, + ["evasion_rating_+_while_you_have_tailwind"]=6401, + ["evasion_rating_from_helmet_and_boots_+%"]=6395, + ["evasion_rating_increased_by_overcapped_cold_resistance"]=6396, + ["evasion_rating_plus_in_sand_stance"]=10024, + ["evasion_rating_while_es_full_+%_final"]=4009, + ["every_10_seconds_physical_damage_%_to_add_as_fire_for_3_seconds"]=6411, + ["every_4_seconds_%_chance_freeze_non_frozen_enemies_for_300ms"]=6412, + ["every_4_seconds_regenerate_%_of_armour_and_evasion_as_life_over_1_second"]=6413, + ["every_fourth_retaliation_used_is_a_critical_strike"]=6414, + ["excommunicate_on_melee_attack_hit_for_X_ms"]=6415, + ["exerted_attack_knockback_chance_%"]=6416, + ["exerted_attacks_overwhelm_%_physical_damage_reduction"]=6417, + ["expanding_fire_cone_additional_maximum_number_of_stages"]=6418, + ["expanding_fire_cone_area_of_effect_+%"]=6419, + ["expedition_chest_logbook_chance_%"]=6420, + ["expedition_monsters_logbook_chance_+%"]=6421, + ["experience_gain_+%"]=1538, + ["experience_loss_on_death_-%"]=1539, + ["explode_burning_enemies_for_10%_life_as_fire_on_kill_chance_%"]=6422, + ["explode_cursed_enemies_for_25%_life_as_chaos_on_kill_chance_%"]=3238, + ["explode_enemies_for_10%_life_as_fire_on_kill_chance_%"]=6423, + ["explode_enemies_for_10%_life_as_physical_on_kill_chance_%"]=3236, + ["explode_enemies_for_10%_life_as_physical_on_kill_chance_%_while_using_pride"]=6424, + ["explode_enemies_for_25%_life_as_chaos_on_kill_chance_%"]=3237, + ["explode_enemies_for_25%_life_as_chaos_on_kill_while_affected_by_glorious_madness_chance_%"]=10503, + ["explode_enemies_for_500%_life_as_fire_on_kill_%_chance"]=6425, + ["explode_on_death_for_%_life_as_fire_damage"]=6426, + ["explode_on_kill_%_chaos_damage_to_deal"]=3235, + ["explode_on_kill_%_fire_damage_to_deal"]=2638, + ["explosive_arrow_attack_speed_+%"]=4062, + ["explosive_arrow_damage_+%"]=3611, + ["explosive_arrow_duration_+%"]=6427, + ["explosive_arrow_radius_+%"]=3757, + ["explosive_concoction_damage_+%"]=6428, + ["explosive_concoction_flask_charges_consumed_+%"]=6429, + ["explosive_concoction_skill_area_of_effect_+%"]=6430, + ["exposure_effect_+%"]=6431, + ["exposure_you_inflict_applies_extra_%_to_affected_resistance"]=6432, + ["exposure_you_inflict_has_minimum_resistance_%"]=6433, + ["exsanguinate_additional_chain_chance_%"]=6434, + ["exsanguinate_and_reap_skill_physical_damage_%_to_convert_to_fire"]=6435, + ["exsanguinate_damage_+%"]=6436, + ["exsanguinate_debuff_deals_fire_damage_instead_of_physical_damage"]=6437, + ["exsanguinate_duration_+%"]=6438, + ["extinguish_on_hit_%_chance"]=6439, + ["extra_chaos_damage_rolls"]=5652, + ["extra_critical_rolls"]=2606, + ["extra_critical_rolls_during_focus"]=6440, + ["extra_critical_rolls_while_on_low_life"]=6441, + ["extra_damage_rolls_with_cold_damage_if_have_suppressed_spell_damage_recently"]=6442, + ["extra_damage_rolls_with_fire_damage_if_have_blocked_attack_recently"]=6443, + ["extra_damage_rolls_with_lightning_damage_if_have_blocked_spell_recently"]=6444, + ["extra_damage_rolls_with_lightning_damage_on_non_critical_hits"]=6445, + ["extra_damage_taken_from_crit_+%_from_cursed_enemy"]=4357, + ["extra_damage_taken_from_crit_+%_from_poisoned_enemy"]=4358, + ["extra_damage_taken_from_crit_+%_while_affected_by_determination"]=6446, + ["extra_damage_taken_from_crit_-%_if_taken_critical_strike_recently"]=3177, + ["extra_damage_taken_from_crit_while_no_power_charges_+%"]=6447, + ["extra_gore"]=10650, + ["extra_target_targeting_distance_+%"]=6448, + ["extreme_luck_unluck"]=6449, + ["eye_of_winter_damage_+%"]=6450, + ["eye_of_winter_projectile_speed_+%"]=6451, + ["eye_of_winter_spiral_fire_frequency_+%"]=6452, + ["faster_bleed_%"]=6454, + ["faster_bleed_per_frenzy_charge_%"]=6453, + ["faster_burn_%"]=2497, + ["faster_burn_from_attacks_%"]=2499, + ["faster_poison_%"]=6455, + ["final_pack_summons_nameless_seer"]=6456, + ["final_repeat_of_spells_area_of_effect_+%"]=6457, + ["fire_ailment_duration_+%"]=6458, + ["fire_and_chaos_damage_resistance_%"]=6459, + ["fire_and_cold_damage_resistance_%"]=2732, + ["fire_and_cold_hit_and_dot_damage_%_taken_as_lightning_while_affected_by_purity_of_lightning"]=6460, + ["fire_and_explosive_trap_number_of_additional_traps_to_throw_if_mined"]=6461, + ["fire_and_lightning_damage_resistance_%"]=2733, + ["fire_and_lightning_hit_and_dot_damage_%_taken_as_cold_while_affected_by_purity_of_ice"]=6462, + ["fire_attack_damage_+%"]=1138, + ["fire_attack_damage_+%_while_holding_a_shield"]=1141, + ["fire_axe_damage_+%"]=1240, + ["fire_beam_cast_speed_+%"]=6463, + ["fire_beam_damage_+%"]=6464, + ["fire_beam_degen_spread_to_enemies_in_radius_on_kill"]=6465, + ["fire_beam_enemy_fire_resistance_%_at_max_stacks"]=6466, + ["fire_beam_enemy_fire_resistance_%_per_stack"]=6467, + ["fire_beam_length_+%"]=6468, + ["fire_bow_damage_+%"]=1270, + ["fire_claw_damage_+%"]=1252, + ["fire_critical_strike_chance_+%"]=1416, + ["fire_critical_strike_multiplier_+"]=1442, + ["fire_dagger_damage_+%"]=1258, + ["fire_damage_%_to_add_as_chaos"]=1874, + ["fire_damage_%_to_add_as_chaos_per_endurance_charge"]=6470, + ["fire_damage_+%"]=1292, + ["fire_damage_+%_if_you_have_been_hit_recently"]=6471, + ["fire_damage_+%_if_you_have_used_a_cold_skill_recently"]=6472, + ["fire_damage_+%_per_20_strength"]=6473, + ["fire_damage_+%_per_endurance_charge"]=6474, + ["fire_damage_+%_per_fire_resistance_above_75"]=6475, + ["fire_damage_+%_per_missing_fire_resistance"]=6476, + ["fire_damage_+%_to_blinded_enemies"]=3152, + ["fire_damage_+%_vs_bleeding_enemies"]=6477, + ["fire_damage_+%_while_affected_by_anger"]=6478, + ["fire_damage_+%_while_affected_by_herald_of_ash"]=6479, + ["fire_damage_can_chill"]=2808, + ["fire_damage_can_freeze"]=2809, + ["fire_damage_can_shock"]=2810, + ["fire_damage_cannot_ignite"]=2818, + ["fire_damage_over_time_+%"]=1148, + ["fire_damage_over_time_multiplier_+%_while_burning"]=6469, + ["fire_damage_over_time_multiplier_+_with_attacks"]=1189, + ["fire_damage_resistance_%_when_on_low_life"]=1562, + ["fire_damage_resistance_%_while_affected_by_herald_of_ash"]=6480, + ["fire_damage_resistance_+%"]=1563, + ["fire_damage_resistance_is_%"]=1559, + ["fire_damage_taken_%_as_cold"]=3108, + ["fire_damage_taken_%_as_lightning"]=3109, + ["fire_damage_taken_%_causes_additional_physical_damage"]=2387, + ["fire_damage_taken_+"]=2170, + ["fire_damage_taken_+%"]=2175, + ["fire_damage_taken_+%_while_moving"]=6483, + ["fire_damage_taken_goes_to_life_over_4_seconds_%"]=6481, + ["fire_damage_taken_per_minute_per_endurance_charge_if_you_have_been_hit_recently"]=10504, + ["fire_damage_taken_per_second_while_flame_touched"]=6482, + ["fire_damage_taken_when_enemy_ignited"]=6484, + ["fire_damage_to_return_on_block"]=6485, + ["fire_damage_to_return_to_melee_attacker"]=2137, + ["fire_damage_to_return_when_hit"]=2141, + ["fire_damage_while_dual_wielding_+%"]=1215, + ["fire_damage_with_attack_skills_+%"]=6486, + ["fire_damage_with_spell_skills_+%"]=6487, + ["fire_dot_multiplier_+"]=1187, + ["fire_dot_multiplier_+_per_rage"]=6488, + ["fire_exposure_on_hit_magnitude"]=6489, + ["fire_exposure_you_inflict_applies_extra_fire_resistance_+%"]=6490, + ["fire_hit_and_dot_damage_%_taken_as_lightning"]=6491, + ["fire_mace_damage_+%"]=1264, + ["fire_nova_mine_cast_speed_+%"]=3804, + ["fire_nova_mine_damage_+%"]=3594, + ["fire_nova_mine_num_of_additional_repeats"]=3900, + ["fire_penetration_%_if_you_have_blocked_recently"]=6492, + ["fire_reflect_damage_taken_+%_while_affected_by_purity_of_fire"]=6493, + ["fire_resistance_cannot_be_penetrated"]=6494, + ["fire_skill_chance_to_inflict_fire_exposure_%"]=6495, + ["fire_skill_gem_level_+"]=6496, + ["fire_skill_gem_level_+_if_6_warlord_items"]=4419, + ["fire_skills_chance_to_poison_on_hit_%"]=6497, + ["fire_spell_physical_damage_%_to_convert_to_fire"]=6498, + ["fire_spell_skill_gem_level_+"]=1545, + ["fire_staff_damage_+%"]=1246, + ["fire_storm_damage_+%"]=3595, + ["fire_sword_damage_+%"]=1277, + ["fire_trap_burning_damage_+%"]=3891, + ["fire_trap_burning_ground_duration_+%"]=6499, + ["fire_trap_cooldown_speed_+%"]=3806, + ["fire_trap_damage_+%"]=3564, + ["fire_trap_number_of_additional_traps_to_throw"]=6500, + ["fire_wand_damage_+%"]=1283, + ["fire_weakness_ignores_hexproof"]=2538, + ["fireball_and_rolling_magma_active_skill_area_of_effect_+%_final"]=6501, + ["fireball_and_rolling_magma_modifiers_to_projectile_count_do_not_apply"]=6502, + ["fireball_base_radius_up_to_+_at_longer_ranges"]=3185, + ["fireball_cannot_ignite"]=6503, + ["fireball_cast_speed_+%"]=3803, + ["fireball_chance_to_scorch_%"]=6504, + ["fireball_damage_+%"]=3565, + ["fireball_ignite_chance_%"]=3892, + ["fireball_radius_up_to_+%_at_longer_ranges"]=3184, + ["firestorm_and_bladefall_chance_to_replay_when_finished_%"]=6505, + ["firestorm_duration_+%"]=3861, + ["firestorm_explosion_area_of_effect_+%"]=3901, + ["first_X_stacks_of_tincture_toxicity_have_no_effect"]=6506, + ["first_and_final_barrage_projectiles_return"]=6507, + ["fish_quantity_+%"]=2782, + ["fish_rarity_+%"]=2783, + ["fish_rot_when_caught"]=6508, + ["fishing_bestiary_lures_at_fishing_holes"]=6509, + ["fishing_bite_sensitivity_+%"]=3515, + ["fishing_can_catch_divine_fish"]=6510, + ["fishing_chance_to_catch_boots_+%"]=6511, + ["fishing_chance_to_catch_divine_orb_+%"]=6512, + ["fishing_corrupted_fish_cleansed_chance_%"]=6513, + ["fishing_fish_always_tell_truth_with_this_rod"]=6514, + ["fishing_ghastly_fisherman_cannot_spawn"]=6515, + ["fishing_ghastly_fisherman_spawns_behind_you"]=6516, + ["fishing_hook_type"]=2780, + ["fishing_krillson_affection_per_fish_gifted_+%"]=6517, + ["fishing_life_of_fish_with_this_rod_+%"]=6518, + ["fishing_line_strength_+%"]=2777, + ["fishing_lure_type"]=2779, + ["fishing_magmatic_fish_are_cooked"]=6519, + ["fishing_molten_one_confusion_+%_per_fish_gifted"]=6520, + ["fishing_pool_consumption_+%"]=2778, + ["fishing_range_+%"]=2781, + ["fishing_reeling_stability_+%"]=6521, + ["fishing_tasalio_ire_per_fish_caught_+%"]=6522, + ["fishing_valako_aid_per_stormy_day_+%"]=6523, + ["fishing_wish_effect_of_ancient_fish_+%"]=6524, + ["fishing_wish_per_fish_+"]=6525, + ["flame_dash_cooldown_speed_+%"]=3813, + ["flame_dash_damage_+%"]=3644, + ["flame_golem_damage_+%"]=3626, + ["flame_golem_elemental_resistances_%"]=3917, + ["flame_link_duration_+%"]=6526, + ["flame_surge_critical_strike_chance_+%"]=3873, + ["flame_surge_damage_+%"]=3596, + ["flame_surge_damage_+%_vs_burning_enemies"]=3902, + ["flame_totem_consecrated_ground_enemy_damage_taken_+%"]=6527, + ["flame_totem_damage_+%"]=3636, + ["flame_totem_num_of_additional_projectiles"]=3885, + ["flame_totem_projectile_speed_+%"]=3828, + ["flame_wall_damage_+%"]=6528, + ["flame_wall_maximum_added_fire_damage"]=6529, + ["flame_wall_minimum_added_fire_damage"]=6529, + ["flameblast_and_incinerate_base_cooldown_modifier_ms"]=6530, + ["flameblast_and_incinerate_cannot_inflict_status_ailments"]=6531, + ["flameblast_critical_strike_chance_+%"]=3872, + ["flameblast_damage_+%"]=3612, + ["flameblast_radius_+%"]=3758, + ["flameblast_starts_with_X_additional_stages"]=6532, + ["flamethrower_seismic_lightning_spire_trap_base_cooldown_speed_+%"]=6533, + ["flamethrower_seismic_lightning_spire_trap_skill_added_cooldown_count"]=6534, + ["flamethrower_tower_trap_cast_speed_+%"]=6535, + ["flamethrower_tower_trap_cooldown_speed_+%"]=6536, + ["flamethrower_tower_trap_damage_+%"]=6537, + ["flamethrower_tower_trap_duration_+%"]=6538, + ["flamethrower_tower_trap_number_of_additional_flamethrowers"]=6539, + ["flamethrower_tower_trap_throwing_speed_+%"]=6540, + ["flamethrower_trap_damage_+%_final_vs_burning_enemies"]=6541, + ["flammability_curse_effect_+%"]=3945, + ["flammability_duration_+%"]=3846, + ["flammability_mana_reservation_+%"]=3979, + ["flammability_no_reservation"]=6542, + ["flask_charges_+%_from_enemies_with_status_ailments"]=4180, + ["flask_charges_gained_+%_during_flask_effect"]=3115, + ["flask_charges_gained_+%_if_crit_recently"]=6543, + ["flask_charges_gained_+%_per_tincture_toxicity"]=6546, + ["flask_charges_gained_from_kills_+%_final_from_unique"]=6544, + ["flask_charges_gained_from_marked_enemy_+%"]=6545, + ["flask_charges_recovered_per_3_seconds"]=3410, + ["flask_charges_used_+%"]=2117, + ["flask_duration_+%"]=2120, + ["flask_duration_+%_per_level"]=6547, + ["flask_duration_on_minions_+%"]=2121, + ["flask_effect_+%"]=2676, + ["flask_effect_+%_per_level"]=6548, + ["flask_life_and_mana_to_recover_+%"]=6549, + ["flask_life_recovery_+%_while_affected_by_vitality"]=6550, + ["flask_life_recovery_rate_+%"]=2122, + ["flask_life_to_recover_+%"]=1992, + ["flask_mana_charges_used_+%"]=2118, + ["flask_mana_recovery_rate_+%"]=2123, + ["flask_mana_to_recover_+%"]=1993, + ["flask_minion_heal_%"]=2836, + ["flask_recovery_is_instant"]=6551, + ["flask_recovery_speed_+%"]=1994, + ["flask_throw_sulphur_flask_explode_on_kill_chance"]=6552, + ["flasks_%_chance_to_not_consume_charges"]=4161, + ["flasks_adjacent_to_active_tinctures_gain_X_charges_on_weapon_hit"]=6553, + ["flasks_adjacent_to_active_tinctures_have_effect_+%_if_hit_with_weapon_recently"]=6554, + ["flasks_apply_to_your_linked_targets"]=6555, + ["flasks_apply_to_your_zombies_and_spectres"]=3680, + ["flasks_dispel_burning"]=2689, + ["flasks_gain_x_charges_on_hit_once_per_second_vs_non_unique"]=6556, + ["flasks_gain_x_charges_while_inactive_every_3_seconds"]=6557, + ["flesh_and_stone_area_of_effect_+%"]=6558, + ["flesh_offering_attack_speed_+%"]=4054, + ["flesh_offering_duration_+%"]=3834, + ["flesh_offering_effect_+%"]=1109, + ["flesh_stone_mana_reservation_efficiency_+%"]=6560, + ["flesh_stone_mana_reservation_efficiency_-2%_per_1"]=6559, + ["flesh_stone_no_reservation"]=6561, + ["flicker_strike_cooldown_speed_+%"]=3807, + ["flicker_strike_damage_+%"]=3585, + ["flicker_strike_damage_+%_per_frenzy_charge"]=3897, + ["flicker_strike_more_attack_speed_+%_final"]=1347, + ["focus_cooldown_modifier_ms"]=6562, + ["focus_cooldown_speed_+%"]=6563, + ["forbidden_rite_and_dark_pact_added_chaos_damage_%_mana_cost_if_payable"]=6564, + ["forbidden_rite_damage_+%"]=6565, + ["forbidden_rite_number_of_additional_projectiles"]=6566, + ["forbidden_rite_projectile_speed_+%"]=6567, + ["forking_angle_+%"]=6568, + ["fortification_gained_from_hits_+%"]=6569, + ["fortification_gained_from_hits_+%_against_unique_enemies"]=6570, + ["fortify_duration_+%"]=2198, + ["fortify_duration_+%_per_10_strength"]=6571, + ["fortify_on_hit"]=6572, + ["four_seconds_after_being_hit_lose_life_equal_to_x%_of_hit"]=6573, + ["freeze_as_though_dealt_damage_+%"]=2826, + ["freeze_chilled_enemies_as_though_dealt_damage_+%"]=6574, + ["freeze_duration_+%"]=1793, + ["freeze_duration_against_cursed_enemies_+%"]=6575, + ["freeze_mine_cold_resistance_+_while_frozen"]=2712, + ["freeze_mine_damage_+%"]=3645, + ["freeze_mine_radius_+%"]=3768, + ["freeze_minimum_duration_X_ms"]=6576, + ["freeze_on_you_proliferates_to_nearby_enemies_within_x_radius"]=3557, + ["freeze_prevention_ms_when_frozen"]=2829, + ["freezing_pulse_and_eye_of_winter_all_damage_can_poison"]=6577, + ["freezing_pulse_and_eye_of_winter_poison_damage_+100%_final_chance"]=6578, + ["freezing_pulse_cast_speed_+%"]=3802, + ["freezing_pulse_damage_+%"]=3566, + ["freezing_pulse_damage_+%_if_enemy_shattered_recently"]=6579, + ["freezing_pulse_number_of_additional_projectiles"]=6580, + ["freezing_pulse_projectile_speed_+%"]=3824, + ["frenzy_%_chance_to_gain_additional_frenzy_charge"]=3909, + ["frenzy_and_power_charge_add_duration_ms_on_cull"]=6581, + ["frenzy_charge_duration_+%_per_frenzy_charge"]=1984, + ["frenzy_charge_on_hit_%_vs_no_evasion_rating"]=6582, + ["frenzy_charge_on_kill_percent_chance_while_holding_shield"]=6583, + ["frenzy_damage_+%"]=3605, + ["frenzy_damage_+%_per_frenzy_charge"]=3908, + ["frenzy_only_conduit"]=2194, + ["from_self_maximum_added_attack_chaos_damage_taken"]=1323, + ["from_self_maximum_added_attack_cold_damage_taken"]=1305, + ["from_self_maximum_added_attack_fire_damage_taken"]=1296, + ["from_self_maximum_added_attack_lightning_damage_taken"]=1316, + ["from_self_maximum_added_attack_physical_damage_taken"]=1203, + ["from_self_maximum_added_cold_damage_taken"]=1302, + ["from_self_maximum_added_cold_damage_taken_per_frenzy_charge"]=4203, + ["from_self_maximum_added_fire_damage_taken"]=1293, + ["from_self_maximum_added_lightning_damage_taken"]=1313, + ["from_self_minimum_added_attack_chaos_damage_taken"]=1323, + ["from_self_minimum_added_attack_cold_damage_taken"]=1305, + ["from_self_minimum_added_attack_fire_damage_taken"]=1296, + ["from_self_minimum_added_attack_lightning_damage_taken"]=1316, + ["from_self_minimum_added_attack_physical_damage_taken"]=1203, + ["from_self_minimum_added_cold_damage_taken"]=1302, + ["from_self_minimum_added_cold_damage_taken_per_frenzy_charge"]=4203, + ["from_self_minimum_added_fire_damage_taken"]=1293, + ["from_self_minimum_added_lightning_damage_taken"]=1313, + ["frost_blades_damage_+%"]=3341, + ["frost_blades_melee_damage_penetrates_%_cold_resistance"]=6584, + ["frost_blades_number_of_additional_projectiles_in_chain"]=3343, + ["frost_blades_projectile_speed_+%"]=3342, + ["frost_bolt_cast_speed_+%"]=4081, + ["frost_bolt_damage_+%"]=4069, + ["frost_bolt_freeze_chance_%"]=4082, + ["frost_bolt_nova_cooldown_speed_+%"]=6585, + ["frost_bolt_nova_damage_+%"]=4070, + ["frost_bolt_nova_duration_+%"]=4083, + ["frost_bolt_nova_radius_+%"]=4077, + ["frost_bomb_+%_area_of_effect_when_frost_blink_is_cast"]=6587, + ["frost_bomb_buff_duration_+%"]=6586, + ["frost_bomb_cooldown_speed_+%"]=3820, + ["frost_bomb_damage_+%"]=3668, + ["frost_bomb_radius_+%"]=3777, + ["frost_fury_additional_max_number_of_stages"]=6588, + ["frost_fury_area_of_effect_+%_per_stage"]=6589, + ["frost_fury_damage_+%"]=6590, + ["frost_globe_added_cooldown_count"]=6591, + ["frost_globe_health_per_stage"]=6592, + ["frost_wall_cooldown_speed_+%"]=3811, + ["frost_wall_damage_+%"]=3639, + ["frost_wall_duration_+%"]=3837, + ["frostbite_curse_effect_+%"]=3946, + ["frostbite_duration_+%"]=3845, + ["frostbite_mana_reservation_+%"]=3980, + ["frostbite_no_reservation"]=6593, + ["frostbolt_number_of_additional_projectiles"]=6594, + ["frostbolt_projectile_acceleration"]=6595, + ["frozen_legion_%_chance_to_summon_additional_statue"]=6599, + ["frozen_legion_added_cooldown_count"]=6596, + ["frozen_legion_and_generals_cry_active_skill_cooldown_speed_+%_final_from_skill_specific_stat"]=6597, + ["frozen_legion_cooldown_speed_+%"]=6598, + ["frozen_monsters_take_%_increased_damage"]=6600, + ["frozen_monsters_take_increased_damage"]=2394, + ["frozen_sweep_damage_+%"]=6601, + ["frozen_sweep_damage_+%_final"]=6602, + ["full_life_threshold_%_override"]=6603, + ["fungal_ground_while_stationary_radius"]=6604, + ["gain_%_es_when_spirit_charge_expires_or_consumed"]=4317, + ["gain_%_life_when_spirit_charge_expires_or_consumed"]=4316, + ["gain_%_of_phys_as_extra_chaos_per_elder_item_equipped"]=6702, + ["gain_%_total_phys_damage_prevented_in_the_past_10_sec_as_life_regen_per_sec"]=6703, + ["gain_+%_physical_damage_as_random_element_if_cast_elemental_weakness_in_past_10_seconds"]=6710, + ["gain_1_rare_monster_mod_on_kill_for_10_seconds_%_chance"]=6605, + ["gain_1_rare_monster_mods_on_kill_for_20_seconds_%"]=6606, + ["gain_20%_chance_to_explode_enemies_for_100%_life_on_kill_for_X_seconds_every_10_seconds"]=6651, + ["gain_X%_armour_per_50_mana_reserved"]=6607, + ["gain_X_endurance_charges_per_second"]=6608, + ["gain_X_energy_shield_on_killing_shocked_enemy"]=2505, + ["gain_X_fortification_on_killing_rare_or_unique_monster"]=6609, + ["gain_X_frenzy_charges_after_spending_200_mana"]=6610, + ["gain_X_frenzy_charges_per_second"]=6611, + ["gain_X_life_on_stun"]=6612, + ["gain_X_power_charges_on_using_a_warcry"]=6613, + ["gain_X_power_charges_per_second"]=6614, + ["gain_X_random_charges_every_6_seconds"]=6615, + ["gain_X_random_rare_monster_mods_on_kill"]=2991, + ["gain_X_vaal_souls_on_rampage_threshold"]=2890, + ["gain_a_endurance_charge_every_X_seconds_while_stationary"]=6616, + ["gain_a_frenzy_charge_every_X_seconds_while_moving"]=6617, + ["gain_a_power_charge_when_you_or_your_totems_kill_%_chance"]=4066, + ["gain_absorption_charges_instead_of_power_charges"]=6618, + ["gain_accuracy_rating_equal_to_2_times_strength"]=6619, + ["gain_accuracy_rating_equal_to_intelligence"]=6620, + ["gain_accuracy_rating_equal_to_strength"]=6621, + ["gain_adrenaline_for_X_ms_on_swapping_stance"]=6622, + ["gain_adrenaline_for_X_seconds_on_kill"]=6623, + ["gain_adrenaline_for_X_seconds_on_low_life_unless_you_have_adrenaline"]=6624, + ["gain_adrenaline_for_x_ms_per_100_ms_stun_duration_on_you"]=6625, + ["gain_adrenaline_on_gaining_flame_touched"]=6626, + ["gain_adrenaline_when_ward_breaks_ms"]=6627, + ["gain_affliction_charges_instead_of_frenzy_charges"]=6628, + ["gain_alchemists_genius_on_flask_use_%"]=6629, + ["gain_an_additional_vaal_soul_on_kill_if_have_rampaged_recently"]=6630, + ["gain_arcane_surge_for_4_seconds_after_channelling_for_1_second"]=6631, + ["gain_arcane_surge_for_4_seconds_when_you_create_consecrated_ground_while_affected_by_zealotry"]=6632, + ["gain_arcane_surge_on_200_life_spent"]=6633, + ["gain_arcane_surge_on_crit_%_chance"]=6634, + ["gain_arcane_surge_on_hit_%_chance"]=6637, + ["gain_arcane_surge_on_hit_at_devotion_threshold"]=6635, + ["gain_arcane_surge_on_hit_chance_with_spells_while_at_maximum_power_charges_%"]=6636, + ["gain_arcane_surge_on_hit_vs_unique_enemy_%_chance"]=6638, + ["gain_arcane_surge_on_kill_chance_%"]=6639, + ["gain_arcane_surge_on_movement_skill_use"]=4369, + ["gain_arcane_surge_on_spell_hit_by_you_or_your_totems"]=6640, + ["gain_arcane_surge_when_mine_detonated_targeting_an_enemy"]=6641, + ["gain_arcane_surge_when_trap_triggered_by_an_enemy"]=6642, + ["gain_arcane_surge_when_you_summon_a_totem"]=6643, + ["gain_area_of_effect_+%_for_2_seconds_when_you_spend_800_mana"]=6644, + ["gain_attack_and_cast_speed_+%_for_4_seconds_if_taken_savage_hit"]=3985, + ["gain_attack_speed_+%_for_20_seconds_on_killing_rare_or_unique_enemy"]=6645, + ["gain_attack_speed_+%_for_4_seconds_if_taken_savage_hit"]=3379, + ["gain_blitz_charge_%_chance_on_crit"]=6646, + ["gain_brutal_charges_instead_of_endurance_charges"]=6647, + ["gain_cannot_be_stunned_aura_for_4_seconds_on_block_radius"]=3737, + ["gain_celestial_charge_per_X_spent_es"]=6648, + ["gain_challenger_charge_%_chance_on_hitting_rare_or_unique_enemy_in_blood_stance"]=6649, + ["gain_challenger_charge_%_chance_on_kill_in_sand_stance"]=6650, + ["gain_chilling_shocking_igniting_conflux_while_affected_by_glorious_madness"]=10505, + ["gain_convergence_on_hitting_unique_enemy"]=4373, + ["gain_crimson_dance_if_have_dealt_critical_strike_recently"]=10626, + ["gain_crimson_dance_while_you_have_cat_stealth"]=10627, + ["gain_critical_strike_chance_%_for_2_seconds_when_you_spend_800_mana"]=6652, + ["gain_damage_+%_for_4_seconds_if_taken_savage_hit"]=3378, + ["gain_debilitating_presence_ms_on_kill_vs_rare_or_unique_enemy"]=10506, + ["gain_defiance_when_lose_life_to_hit_once_per_x_ms"]=4215, + ["gain_divine_charge_on_hit_%"]=4319, + ["gain_divinity_ms_when_reaching_maximum_divine_charges"]=4321, + ["gain_elemental_conflux_for_X_ms_when_you_kill_a_rare_or_unique_enemy"]=3990, + ["gain_elemental_conflux_if_6_unique_influence_amoung_equipped_non_amulet_items"]=3991, + ["gain_elemental_penetration_for_4_seconds_on_mine_detonation"]=4033, + ["gain_elusive_on_crit_%_chance"]=4212, + ["gain_elusive_on_kill_chance_%"]=4213, + ["gain_elusive_on_reaching_low_life"]=6653, + ["gain_endurance_charge_%_chance_on_using_fire_skill"]=1756, + ["gain_endurance_charge_%_chance_when_you_lose_fortify"]=6657, + ["gain_endurance_charge_%_when_hit_while_channelling"]=6658, + ["gain_endurance_charge_if_attack_freezes"]=6654, + ["gain_endurance_charge_on_main_hand_kill_%"]=3256, + ["gain_endurance_charge_on_melee_stun"]=2703, + ["gain_endurance_charge_on_melee_stun_%"]=2703, + ["gain_endurance_charge_on_power_charge_expiry"]=2568, + ["gain_endurance_charge_per_second_if_have_been_hit_recently"]=6655, + ["gain_endurance_charge_per_second_if_have_been_hit_recently_if_4_warlord_items"]=4405, + ["gain_endurance_charge_per_second_if_have_used_warcry_recently"]=6656, + ["gain_fanaticism_for_4_seconds_on_reaching_maximum_fanatic_charges"]=6659, + ["gain_flask_chance_on_crit_%"]=3323, + ["gain_flask_charge_on_crit_chance_%_while_at_maximum_frenzy_charges"]=6660, + ["gain_flask_charge_when_crit_%"]=1995, + ["gain_flask_charge_when_crit_amount"]=1995, + ["gain_flask_charges_every_second_if_hit_unique_enemy_recently"]=6661, + ["gain_fortify_for_x_seconds_on_melee_hit_with_mace_sceptre_staff"]=6662, + ["gain_frenzy_and_power_charge_on_kill_%"]=2567, + ["gain_frenzy_charge_%_when_hit_while_channelling"]=6673, + ["gain_frenzy_charge_if_attack_ignites"]=2770, + ["gain_frenzy_charge_on_critical_strike_%"]=6664, + ["gain_frenzy_charge_on_critical_strike_at_close_range_%"]=6663, + ["gain_frenzy_charge_on_enemy_shattered_chance_%"]=6665, + ["gain_frenzy_charge_on_hit_%_while_blinded"]=6666, + ["gain_frenzy_charge_on_hit_while_bleeding"]=6667, + ["gain_frenzy_charge_on_hitting_marked_enemy_%"]=6668, + ["gain_frenzy_charge_on_hitting_rare_or_unique_enemy_%"]=6669, + ["gain_frenzy_charge_on_hitting_unique_enemy_%"]=6670, + ["gain_frenzy_charge_on_kill_vs_enemies_with_5+_poisons_%"]=6671, + ["gain_frenzy_charge_on_main_hand_kill_%"]=3255, + ["gain_frenzy_charge_on_reaching_maximum_power_charges"]=3537, + ["gain_frenzy_charge_per_enemy_you_crit_%_chance"]=6672, + ["gain_frenzy_power_endurance_charges_on_vaal_skill_use"]=6674, + ["gain_her_blessing_for_3_seconds_on_ignite_%"]=3210, + ["gain_her_embrace_for_x_ms_on_enemy_ignited"]=6675, + ["gain_iron_reflexes_while_at_maximum_frenzy_charges"]=10628, + ["gain_iron_reflexes_while_stationary"]=10634, + ["gain_life_and_mana_leech_on_kill_permyriad"]=3156, + ["gain_life_leech_from_any_damage_permyriad_as_life_for_4_seconds_if_taken_savage_hit"]=3377, + ["gain_life_leech_on_kill_permyriad"]=4188, + ["gain_life_regeneration_%_per_second_for_1_second_if_taken_savage_hit"]=4108, + ["gain_life_regeneration_per_minute_%_for_1_second_every_4_seconds_if_2_hunter_items"]=4381, + ["gain_magic_monster_mods_on_kill_%_chance"]=6676, + ["gain_max_rage_on_losing_temporal_chains_debuff"]=6677, + ["gain_max_rage_on_rage_gain_from_hit_%_chance"]=6678, + ["gain_maximum_endurance_charges_on_endurance_charge_gained_%_chance"]=4170, + ["gain_maximum_endurance_charges_when_crit_chance_%"]=6679, + ["gain_maximum_frenzy_and_endurance_charges_when_you_gain_cats_agility"]=6680, + ["gain_maximum_frenzy_and_power_charges_when_you_gain_cats_stealth"]=6681, + ["gain_maximum_frenzy_charges_on_frenzy_charge_gained_%_chance"]=6682, + ["gain_maximum_life_instead_of_maximum_es_from_armour"]=6683, + ["gain_maximum_power_charges_on_power_charge_gained_%_chance"]=6684, + ["gain_maximum_power_charges_on_vaal_skill_use"]=6685, + ["gain_mind_over_matter_while_at_maximum_power_charges"]=10629, + ["gain_movement_speed_+%_for_20_seconds_on_kill"]=6686, + ["gain_no_armour_from_body_armour"]=3270, + ["gain_no_inherent_bonus_from_dexterity"]=1948, + ["gain_no_inherent_bonus_from_intelligence"]=1949, + ["gain_no_inherent_bonus_from_strength"]=1950, + ["gain_no_inherent_evasion_rating_+%_from_dexterity"]=6687, + ["gain_no_maximum_life_from_strength"]=1951, + ["gain_no_maximum_mana_from_intelligence"]=1952, + ["gain_onslaught_during_life_flask_effect"]=6688, + ["gain_onslaught_during_soul_gain_prevention"]=6689, + ["gain_onslaught_for_3_seconds_%_chance_when_hit"]=6690, + ["gain_onslaught_for_X_ms_on_killing_rare_or_unique_monster"]=4142, + ["gain_onslaught_if_you_have_swapped_stance_recently"]=6691, + ["gain_onslaught_ms_on_using_a_warcry"]=6692, + ["gain_onslaught_ms_when_reaching_maximum_endurance_charges"]=2687, + ["gain_onslaught_on_200_mana_spent"]=6693, + ["gain_onslaught_on_hit_chance_while_at_maximum_frenzy_charges_%"]=6694, + ["gain_onslaught_on_hit_duration_ms"]=6695, + ["gain_onslaught_on_kill_ms_while_affected_by_haste"]=6696, + ["gain_onslaught_on_stun_duration_ms"]=2684, + ["gain_onslaught_when_ignited_ms"]=2973, + ["gain_onslaught_while_at_maximum_endurance_charges"]=6697, + ["gain_onslaught_while_frenzy_charges_full"]=4012, + ["gain_onslaught_while_not_on_low_mana"]=6698, + ["gain_onslaught_while_on_low_life"]=6699, + ["gain_onslaught_while_you_have_cats_agility"]=6700, + ["gain_onslaught_while_you_have_fortify"]=6701, + ["gain_perfect_agony_if_you_have_crit_recently"]=6704, + ["gain_permilliage_total_phys_damage_prevented_recently_as_es_regen_per_sec_if_6_crusader_items"]=4420, + ["gain_phasing_for_4_seconds_on_begin_es_recharge"]=2437, + ["gain_phasing_if_enemy_killed_recently"]=6705, + ["gain_phasing_if_suppressed_spell_recently"]=6706, + ["gain_phasing_while_affected_by_haste"]=6707, + ["gain_phasing_while_at_maximum_frenzy_charges"]=2435, + ["gain_phasing_while_you_have_cats_stealth"]=6708, + ["gain_phasing_while_you_have_low_life"]=6709, + ["gain_phasing_while_you_have_onslaught"]=2436, + ["gain_physical_damage_immunity_on_rampage_threshold_ms"]=2889, + ["gain_player_far_shot_while_do_not_have_iron_reflexes"]=10646, + ["gain_power_charge_for_each_second_channeling_spell"]=6711, + ["gain_power_charge_on_critical_strike_with_wands_%"]=6712, + ["gain_power_charge_on_curse_cast_%"]=6713, + ["gain_power_charge_on_hit_%_chance_against_frozen_enemy"]=6714, + ["gain_power_charge_on_hit_while_bleeding"]=6715, + ["gain_power_charge_on_kill_vs_enemies_with_less_than_5_poisons_%"]=6716, + ["gain_power_charge_on_mana_flask_use_%_chance"]=6717, + ["gain_power_charge_on_non_critical_strike_%"]=3337, + ["gain_power_charge_on_vaal_skill_use_%"]=6718, + ["gain_power_charge_per_enemy_you_crit"]=2480, + ["gain_power_charge_per_second_if_have_not_lost_power_charge_recently"]=6719, + ["gain_power_charge_when_throwing_trap_%"]=2871, + ["gain_power_or_frenzy_charge_for_each_second_channeling"]=6720, + ["gain_rage_on_hit"]=9603, + ["gain_rage_on_hitting_rare_unique_enemy_%"]=9600, + ["gain_rage_on_kill"]=9599, + ["gain_rage_when_you_use_a_warcry"]=9601, + ["gain_rampage_while_at_maximum_endurance_charges"]=3200, + ["gain_random_charge_on_block"]=6721, + ["gain_random_charge_per_second_while_stationary"]=6722, + ["gain_random_retaliation_requirement_on_retaliation_used_chance_%"]=6723, + ["gain_rare_monster_mods_on_kill_ms"]=2750, + ["gain_resolute_technique_while_do_not_have_elemental_overload"]=10635, + ["gain_sacrificial_zeal_on_skill_use_%_cost_as_damage_per_minute"]=6724, + ["gain_scorching_sapping_brittle_confluxes_while_two_highest_attributes_equal"]=6725, + ["gain_shapers_presence_for_10_seconds_on_killing_rare_or_unique_monster"]=6726, + ["gain_shrine_buff_every_x_ms"]=6727, + ["gain_shrine_buff_every_x_ms_from_ascendancy"]=6728, + ["gain_shrine_buff_on_rare_or_unique_kill_centiseconds"]=6729, + ["gain_single_conflux_for_3_seconds_every_8_seconds"]=6730, + ["gain_siphoning_charge_on_skill_use_%_chance"]=4267, + ["gain_soul_eater_during_flask_effect"]=3359, + ["gain_soul_eater_for_x_ms_on_vaal_skill_use"]=6731, + ["gain_soul_eater_stack_on_hit_vs_unique_cooldown_ms"]=6732, + ["gain_soul_eater_with_equipped_corrupted_items_on_vaal_skill_use_ms"]=3046, + ["gain_spell_cost_as_energy_shield_every_fifth_cast"]=6733, + ["gain_spell_cost_as_mana_every_fifth_cast"]=6734, + ["gain_spirit_charge_every_x_ms"]=4313, + ["gain_spirit_charge_on_kill_%_chance"]=4314, + ["gain_unholy_might_for_2_seconds_on_crit"]=2850, + ["gain_unholy_might_for_2_seconds_on_melee_crit"]=2849, + ["gain_unholy_might_for_4_seconds_on_crit"]=2851, + ["gain_unholy_might_on_rampage_threshold_ms"]=2908, + ["gain_up_to_maximum_fragile_regrowth_when_hit"]=6735, + ["gain_vaal_pact_if_you_have_crit_recently"]=6736, + ["gain_vaal_pact_while_at_maximum_endurance_charges"]=10630, + ["gain_vaal_pact_while_focused"]=6737, + ["gain_vaal_soul_on_hit_cooldown_ms"]=6738, + ["gain_wand_accuracy_rating_equal_to_intelligence"]=6739, + ["gain_x_es_on_trap_triggered_by_an_enemy"]=4175, + ["gain_x_fanatic_charges_every_second_if_have_attacked_in_past_second"]=6740, + ["gain_x_fragile_regrowth_per_second"]=6741, + ["gain_x_grasping_vines_when_you_take_a_critical_strike"]=4354, + ["gain_x_life_on_trap_triggered_by_an_enemy"]=4174, + ["gain_x_life_when_endurance_charge_expires_or_consumed"]=2946, + ["gain_x_rage_on_attack_crit"]=6742, + ["gain_x_rage_on_attack_hit"]=6743, + ["gain_x_rage_on_bow_hit"]=6744, + ["gain_x_rage_on_hit_with_axes"]=6745, + ["gain_x_rage_on_hit_with_axes_swords"]=6746, + ["gain_x_rage_on_hit_with_axes_swords_1s_cooldown"]=6747, + ["gain_x_rage_on_melee_crit"]=6748, + ["gain_x_rage_on_melee_hit"]=6749, + ["gain_x_rage_per_200_mana_spent"]=6750, + ["gain_x_rage_when_hit"]=6751, + ["galvanic_arrow_and_storm_rain_skill_repeat_count_if_mined"]=6752, + ["galvanic_arrow_area_damage_+%"]=9835, + ["galvanic_arrow_projectile_speed_+%"]=6753, + ["galvanic_field_beam_frequency_+%"]=6754, + ["galvanic_field_cast_speed_+%"]=6755, + ["galvanic_field_damage_+%"]=6756, + ["galvanic_field_number_of_chains"]=6757, + ["gem_display_rune_blast_is_gem"]=9756, + ["gem_experience_gain_+%"]=1814, + ["generals_cry_cooldown_speed_+%"]=6758, + ["generals_cry_maximum_warriors_+"]=6759, + ["ghost_dance_max_stacks"]=6760, + ["ghost_dance_restore_%_evasion_as_energy_shield_when_hit"]=6761, + ["ghost_totem_skill_damage_+%_final"]=6762, + ["glacial_cascade_damage_+%"]=3613, + ["glacial_cascade_number_of_additional_bursts"]=6763, + ["glacial_cascade_physical_damage_%_to_add_as_cold"]=6764, + ["glacial_cascade_physical_damage_%_to_convert_to_cold"]=3911, + ["glacial_cascade_radius_+%"]=3759, + ["glacial_hammer_damage_+%"]=3567, + ["glacial_hammer_freeze_chance_%"]=3893, + ["glacial_hammer_item_rarity_on_shattering_enemy_+%"]=3162, + ["glacial_hammer_melee_splash_with_cold_damage"]=6765, + ["glacial_hammer_physical_damage_%_to_add_as_cold_damage"]=3912, + ["glacial_hammer_physical_damage_%_to_convert_to_cold"]=6766, + ["gladiator_accuracy_rating_+%_final_while_wielding_sword"]=4439, + ["gladiator_area_of_effect_+%_final_while_wielding_mace"]=4644, + ["gladiator_critical_strike_chance_+%_final_while_wielding_dagger"]=6767, + ["gladiator_damage_+%_final_against_enemies_on_low_life_while_wielding_axe"]=6771, + ["gladiator_damage_vs_rare_unique_enemies_+%_final_per_2_seconds_in_your_presence_up_to_50%"]=6768, + ["gladiator_damage_vs_rare_unique_enemies_+%_final_per_second_in_your_presence_up_to_100%"]=6769, + ["global_added_chaos_damage_%_of_ward"]=2001, + ["global_always_hit"]=1977, + ["global_attack_speed_+%_per_green_socket_on_item"]=2655, + ["global_attack_speed_+%_per_level"]=6772, + ["global_bleed_on_hit"]=2422, + ["global_cannot_crit"]=2111, + ["global_chance_to_blind_on_hit_%"]=2891, + ["global_chance_to_blind_on_hit_%_vs_bleeding_enemies"]=6773, + ["global_critical_strike_chance_+%_vs_chilled_enemies"]=6774, + ["global_critical_strike_chance_+%_while_holding_bow"]=2407, + ["global_critical_strike_chance_+%_while_holding_staff"]=2405, + ["global_critical_strike_chance_while_dual_wielding_+%"]=4196, + ["global_critical_strike_mulitplier_+_per_green_socket_on_item"]=2656, + ["global_critical_strike_multiplier_+_while_holding_bow"]=2408, + ["global_critical_strike_multiplier_+_while_holding_staff"]=2406, + ["global_critical_strike_multiplier_+_while_you_have_no_frenzy_charges"]=1988, + ["global_critical_strike_multiplier_while_dual_wielding_+"]=4195, + ["global_defences_+%"]=2766, + ["global_defences_+%_per_active_minion"]=6775, + ["global_defences_+%_per_active_minion_not_from_vaal_skills"]=2767, + ["global_defences_+%_per_frenzy_charge"]=6777, + ["global_defences_+%_per_raised_spectre"]=6776, + ["global_defences_+%_per_white_socket_on_item"]=2665, + ["global_evasion_rating_+_while_moving"]=6778, + ["global_graft_skill_cooldown_speed_+%"]=6779, + ["global_graft_skill_duration_+%"]=6780, + ["global_graft_skill_level_+"]=6781, + ["global_hit_causes_monster_flee_%"]=1975, + ["global_item_attribute_requirements_+%"]=2485, + ["global_knockback"]=1455, + ["global_knockback_on_crit"]=1884, + ["global_life_leech_from_physical_attack_damage_per_red_socket_on_item_permyriad"]=2651, + ["global_mana_leech_from_physical_attack_damage_permyriad_per_blue_socket_on_item"]=2661, + ["global_maximum_added_chaos_damage"]=1321, + ["global_maximum_added_cold_damage"]=1303, + ["global_maximum_added_cold_damage_vs_chilled_or_frozen_enemies"]=6783, + ["global_maximum_added_fire_damage"]=1294, + ["global_maximum_added_fire_damage_vs_burning_enemies"]=10129, + ["global_maximum_added_fire_damage_vs_ignited_enemies"]=6784, + ["global_maximum_added_lightning_damage"]=1314, + ["global_maximum_added_lightning_damage_minus_1_per_level"]=6782, + ["global_maximum_added_lightning_damage_vs_ignited_enemies"]=6785, + ["global_maximum_added_lightning_damage_vs_shocked_enemies"]=6786, + ["global_maximum_added_physical_damage"]=1201, + ["global_maximum_added_physical_damage_vs_bleeding_enemies"]=6787, + ["global_melee_range_+_per_white_socket_on_item"]=2666, + ["global_minimum_added_chaos_damage"]=1321, + ["global_minimum_added_cold_damage"]=1303, + ["global_minimum_added_cold_damage_vs_chilled_or_frozen_enemies"]=6783, + ["global_minimum_added_fire_damage"]=1294, + ["global_minimum_added_fire_damage_vs_burning_enemies"]=10129, + ["global_minimum_added_fire_damage_vs_ignited_enemies"]=6784, + ["global_minimum_added_lightning_damage"]=1314, + ["global_minimum_added_lightning_damage_vs_ignited_enemies"]=6785, + ["global_minimum_added_lightning_damage_vs_shocked_enemies"]=6786, + ["global_minimum_added_physical_damage"]=1201, + ["global_minimum_added_physical_damage_vs_bleeding_enemies"]=6787, + ["global_physical_damage_reduction_rating_while_moving"]=6788, + ["global_poison_on_hit"]=3104, + ["global_reduce_enemy_block_%"]=1839, + ["global_weapon_physical_damage_+%_per_red_socket_on_item"]=2652, + ["glove_implicit_gain_rage_on_attack_hit_cooldown_ms"]=6789, + ["gloves_freeze_proliferation_radius"]=2154, + ["gloves_ignite_proliferation_radius"]=2151, + ["gloves_mod_effect_+%"]=6790, + ["gloves_shock_proliferation_radius"]=2155, + ["glows_in_area_with_unique_fish"]=4060, + ["goat_footprints_from_item"]=10651, + ["golem_attack_and_cast_speed_+%"]=6791, + ["golem_attack_maximum_added_physical_damage"]=6792, + ["golem_attack_minimum_added_physical_damage"]=6792, + ["golem_buff_effect_+%"]=6793, + ["golem_buff_effect_+%_per_summoned_golem"]=6794, + ["golem_cooldown_recovery_+%"]=3263, + ["golem_damage_+%_if_summoned_in_past_8_seconds"]=3631, + ["golem_damage_+%_per_active_golem"]=4131, + ["golem_damage_+%_per_active_golem_type"]=4130, + ["golem_immunity_to_elemental_damage"]=4025, + ["golem_life_regeneration_per_minute_%"]=6795, + ["golem_maximum_energy_shield_+%"]=6796, + ["golem_maximum_life_+%"]=6797, + ["golem_maximum_mana_+%"]=6798, + ["golem_movement_speed_+%"]=6799, + ["golem_physical_damage_reduction_rating"]=6800, + ["golem_scale_+%"]=3624, + ["golem_skill_cooldown_recovery_+%"]=3262, + ["golems_larger_aggro_radius"]=10556, + ["grace_aura_effect_+%"]=3295, + ["grace_aura_effect_+%_while_no_frenzy_charges"]=6801, + ["grace_mana_reservation_+%"]=3975, + ["grace_mana_reservation_efficiency_+%"]=6803, + ["grace_mana_reservation_efficiency_-2%_per_1"]=6802, + ["grace_reserves_no_mana"]=6804, + ["graft_slot_2_unlocked"]=6805, + ["grant_X_frenzy_charges_to_nearby_allies_on_death"]=2833, + ["grant_animated_minion_melee_splash_damage_+%_final_for_splash"]=6806, + ["grant_map_boss_X_azmeri_dust_primal_on_death"]=6807, + ["grant_map_boss_X_azmeri_dust_voodoo_on_death"]=6808, + ["grant_map_boss_X_azmeri_dust_warden_on_death"]=6809, + ["grant_tailwind_to_nearby_allies_if_used_skill_recently"]=6810, + ["grant_void_arrow_every_x_ms"]=6811, + ["grasping_vines_on_hit_while_life_flask_active_up_to_x"]=6812, + ["gratuitous_violence_physical_damage_over_time_+%_final"]=6813, + ["ground_slam_and_sunder_poison_on_non_poisoned_enemies_damage_+%"]=6814, + ["ground_slam_angle_+%"]=3190, + ["ground_slam_chance_to_gain_endurance_charge_%_on_stun"]=6815, + ["ground_slam_damage_+%"]=3568, + ["ground_slam_radius_+%"]=3739, + ["ground_smoke_on_rampage_threshold_ms"]=2900, + ["ground_smoke_when_hit_%"]=2509, + ["ground_tar_on_block_base_area_of_effect_radius"]=6816, + ["ground_tar_on_take_crit_base_area_of_effect_radius"]=2444, + ["ground_tar_when_hit_%_chance"]=6817, + ["guard_buff_take_damage_from_linked_target"]=6818, + ["guard_skill_cooldown_recovery_+%"]=6819, + ["guard_skill_effect_duration_+%"]=6820, + ["guardian_auras_grant_life_regeneration_per_minute_%"]=3712, + ["guardian_damage_+%_final_to_you_and_nearby_allies_per_nearby_ally_up_to_15%"]=6821, + ["guardian_every_4_seconds_remove_curses_on_you"]=6822, + ["guardian_every_4_seconds_remove_elemental_ailments_on_you"]=6823, + ["guardian_gain_life_regeneration_per_minute_%_for_1_second_every_10_seconds"]=3718, + ["guardian_nearby_allies_share_charges"]=4049, + ["guardian_nearby_enemies_cannot_gain_charges"]=3713, + ["guardian_remove_curses_and_status_ailments_every_10_seconds"]=3717, + ["guardian_reserved_life_granted_to_you_and_allies_as_armour_%"]=3714, + ["guardian_reserved_mana_%_given_to_you_and_nearby_allies_as_base_maximum_energy_shield"]=3716, + ["guardian_reserved_mana_granted_to_you_and_allies_as_armour_%"]=3715, + ["guardian_warcry_grant_attack_cast_and_movement_speed_to_you_and_nearby_allies_+%"]=3246, + ["guardian_with_5_nearby_allies_you_and_allies_have_onslaught"]=6824, + ["guardian_with_nearby_ally_damage_+%_final_for_you_and_allies"]=6825, + ["half_physical_bypasses_es_half_chaos_damages_es_when_X_corrupted_items_equipped"]=3045, + ["hard_mode_utility_flask_gain_charges_while_active"]=6826, + ["harvest_encounter_fluid_granted_+%"]=6827, + ["has_avoid_shock_as_avoid_all_elemental_ailments"]=6828, + ["has_curse_limit_equal_to_maximum_power_charges"]=6829, + ["has_ignite_duration_on_self_as_all_elemental_ailments_on_self"]=6830, + ["has_onslaught_if_totem_summoned_recently"]=6831, + ["has_stun_prevention_flask"]=6832, + ["has_unique_brutal_shrine_effect"]=6833, + ["has_unique_massive_shrine_effect"]=6834, + ["haste_aura_effect_+%"]=3296, + ["haste_mana_reservation_+%"]=3976, + ["haste_mana_reservation_efficiency_+%"]=6836, + ["haste_mana_reservation_efficiency_-2%_per_1"]=6835, + ["haste_reserves_no_mana"]=6837, + ["hatred_aura_effect_+%"]=3298, + ["hatred_aura_effect_+%_while_at_maximum_frenzy_charges"]=6838, + ["hatred_mana_reservation_+%"]=3966, + ["hatred_mana_reservation_efficiency_+%"]=6840, + ["hatred_mana_reservation_efficiency_-2%_per_1"]=6839, + ["hatred_reserves_no_mana"]=6841, + ["heavy_strike_attack_speed_+%"]=3787, + ["heavy_strike_chance_to_deal_double_damage_%"]=3166, + ["heavy_strike_damage_+%"]=3569, + ["heist_additional_abyss_rewards_from_reward_chests_%"]=6842, + ["heist_additional_armour_rewards_from_reward_chests_%"]=6843, + ["heist_additional_blight_rewards_from_reward_chests_%"]=6844, + ["heist_additional_breach_rewards_from_reward_chests_%"]=6845, + ["heist_additional_corrupted_rewards_from_reward_chests_%"]=6846, + ["heist_additional_delirium_rewards_from_reward_chests_%"]=6847, + ["heist_additional_delve_rewards_from_reward_chests_%"]=6848, + ["heist_additional_divination_rewards_from_reward_chests_%"]=6849, + ["heist_additional_essences_rewards_from_reward_chests_%"]=6850, + ["heist_additional_gems_rewards_from_reward_chests_%"]=6851, + ["heist_additional_gold_rewards_from_reward_chests_%"]=6852, + ["heist_additional_harbinger_rewards_from_reward_chests_%"]=6853, + ["heist_additional_jewellery_rewards_from_reward_chests_%"]=6854, + ["heist_additional_legion_rewards_from_reward_chests_%"]=6855, + ["heist_additional_metamorph_rewards_from_reward_chests_%"]=6856, + ["heist_additional_perandus_rewards_from_reward_chests_%"]=6857, + ["heist_additional_talisman_rewards_from_reward_chests_%"]=6858, + ["heist_additional_uniques_rewards_from_reward_chests_%"]=6859, + ["heist_additional_weapons_rewards_from_reward_chests_%"]=6860, + ["heist_alert_level_gained_on_monster_death"]=6861, + ["heist_alert_level_gained_per_10_sec"]=6862, + ["heist_chests_chance_for_secondary_objectives_%"]=6863, + ["heist_chests_double_blighted_maps_and_catalysts_%"]=6864, + ["heist_chests_double_breach_splinters_%"]=6865, + ["heist_chests_double_catalysts_%"]=6866, + ["heist_chests_double_currency_%"]=6867, + ["heist_chests_double_delirium_orbs_and_splinters_%"]=6868, + ["heist_chests_double_divination_cards_%"]=6869, + ["heist_chests_double_essences_%"]=6870, + ["heist_chests_double_jewels_%"]=6871, + ["heist_chests_double_legion_splinters_%"]=6872, + ["heist_chests_double_map_fragments_%"]=6873, + ["heist_chests_double_maps_%"]=6874, + ["heist_chests_double_oils_%"]=6875, + ["heist_chests_double_scarabs_%"]=6876, + ["heist_chests_double_sextants_%"]=6877, + ["heist_chests_double_uniques_%"]=6878, + ["heist_chests_unique_rarity_%"]=6879, + ["heist_coins_dropped_by_monsters_double_%"]=6881, ["heist_coins_from_monsters_+%"]=25, - ["heist_coins_from_world_chests_double_%"]=6647, - ["heist_contract_alert_level_+%"]=6651, - ["heist_contract_alert_level_from_chests_+%"]=6649, - ["heist_contract_alert_level_from_monsters_+%"]=6650, - ["heist_contract_gang_cost_+%"]=6652, - ["heist_contract_gang_takes_no_cut"]=6653, - ["heist_contract_generate_secondary_objectives_chance_%"]=6654, - ["heist_contract_guarding_monsters_damage_+%"]=6655, - ["heist_contract_guarding_monsters_take_damage_+%"]=6656, - ["heist_contract_magical_unlock_count"]=6658, - ["heist_contract_mechanical_unlock_count"]=6657, - ["heist_contract_no_travel_cost"]=6659, - ["heist_contract_npc_cost_+%"]=6660, - ["heist_contract_objective_completion_time_+%"]=6661, - ["heist_contract_patrol_additional_elite_chance_+%"]=6662, - ["heist_contract_patrol_damage_+%"]=6663, - ["heist_contract_patrol_take_damage_+%"]=6664, - ["heist_contract_side_area_monsters_damage_+%"]=6665, - ["heist_contract_side_area_monsters_take_damage_+%"]=6666, - ["heist_contract_total_cost_+%_final"]=6667, - ["heist_contract_travel_cost_+%"]=6668, - ["heist_currency_alchemy_drops_as_blessed_%"]=6669, - ["heist_currency_alchemy_drops_as_divine_%"]=6670, - ["heist_currency_alchemy_drops_as_exalted_%"]=6671, - ["heist_currency_alteration_drops_as_alchemy_%"]=6672, - ["heist_currency_alteration_drops_as_chaos_%"]=6673, - ["heist_currency_alteration_drops_as_regal_%"]=6674, - ["heist_currency_augmentation_drops_as_alchemy_%"]=6675, - ["heist_currency_augmentation_drops_as_chaos_%"]=6676, - ["heist_currency_augmentation_drops_as_regal_%"]=6677, - ["heist_currency_chaos_drops_as_blessed_%"]=6678, - ["heist_currency_chaos_drops_as_divine_%"]=6679, - ["heist_currency_chaos_drops_as_exalted_%"]=6680, - ["heist_currency_chromatic_drops_as_fusing_%"]=6681, - ["heist_currency_chromatic_drops_as_jewellers_%"]=6682, - ["heist_currency_jewellers_drops_as_fusing_%"]=6683, - ["heist_currency_regal_drops_as_blessed_%"]=6684, - ["heist_currency_regal_drops_as_divine_%"]=6685, - ["heist_currency_regal_drops_as_exalted_%"]=6686, - ["heist_currency_regret_drops_as_annulment_%"]=6687, - ["heist_currency_scouring_drops_as_annulment_%"]=6688, - ["heist_currency_scouring_drops_as_regret_%"]=6689, - ["heist_currency_transmutation_drops_as_alchemy_%"]=6690, - ["heist_currency_transmutation_drops_as_chaos_%"]=6691, - ["heist_currency_transmutation_drops_as_regal_%"]=6692, - ["heist_drops_double_currency_%"]=6693, + ["heist_coins_from_world_chests_double_%"]=6880, + ["heist_contract_alert_level_+%"]=6884, + ["heist_contract_alert_level_from_chests_+%"]=6882, + ["heist_contract_alert_level_from_monsters_+%"]=6883, + ["heist_contract_gang_cost_+%"]=6885, + ["heist_contract_gang_takes_no_cut"]=6886, + ["heist_contract_generate_secondary_objectives_chance_%"]=6887, + ["heist_contract_guarding_monsters_damage_+%"]=6888, + ["heist_contract_guarding_monsters_take_damage_+%"]=6889, + ["heist_contract_magical_unlock_count"]=6891, + ["heist_contract_mechanical_unlock_count"]=6890, + ["heist_contract_no_travel_cost"]=6892, + ["heist_contract_npc_cost_+%"]=6893, + ["heist_contract_objective_completion_time_+%"]=6894, + ["heist_contract_patrol_additional_elite_chance_+%"]=6895, + ["heist_contract_patrol_damage_+%"]=6896, + ["heist_contract_patrol_take_damage_+%"]=6897, + ["heist_contract_side_area_monsters_damage_+%"]=6898, + ["heist_contract_side_area_monsters_take_damage_+%"]=6899, + ["heist_contract_total_cost_+%_final"]=6900, + ["heist_contract_travel_cost_+%"]=6901, + ["heist_currency_alchemy_drops_as_blessed_%"]=6902, + ["heist_currency_alchemy_drops_as_divine_%"]=6903, + ["heist_currency_alchemy_drops_as_exalted_%"]=6904, + ["heist_currency_alteration_drops_as_alchemy_%"]=6905, + ["heist_currency_alteration_drops_as_chaos_%"]=6906, + ["heist_currency_alteration_drops_as_regal_%"]=6907, + ["heist_currency_augmentation_drops_as_alchemy_%"]=6908, + ["heist_currency_augmentation_drops_as_chaos_%"]=6909, + ["heist_currency_augmentation_drops_as_regal_%"]=6910, + ["heist_currency_chaos_drops_as_blessed_%"]=6911, + ["heist_currency_chaos_drops_as_divine_%"]=6912, + ["heist_currency_chaos_drops_as_exalted_%"]=6913, + ["heist_currency_chromatic_drops_as_fusing_%"]=6914, + ["heist_currency_chromatic_drops_as_jewellers_%"]=6915, + ["heist_currency_jewellers_drops_as_fusing_%"]=6916, + ["heist_currency_regal_drops_as_blessed_%"]=6917, + ["heist_currency_regal_drops_as_divine_%"]=6918, + ["heist_currency_regal_drops_as_exalted_%"]=6919, + ["heist_currency_regret_drops_as_annulment_%"]=6920, + ["heist_currency_scouring_drops_as_annulment_%"]=6921, + ["heist_currency_scouring_drops_as_regret_%"]=6922, + ["heist_currency_transmutation_drops_as_alchemy_%"]=6923, + ["heist_currency_transmutation_drops_as_chaos_%"]=6924, + ["heist_currency_transmutation_drops_as_regal_%"]=6925, + ["heist_drops_double_currency_%"]=6926, ["heist_enchantment_ailment_mod_effect_+%"]=44, ["heist_enchantment_attribute_mod_effect_+%"]=45, ["heist_enchantment_casterdamage_mod_effect_+%"]=46, @@ -238866,2769 +246525,2833 @@ return { ["heist_enchantment_physical_mod_effect_+%"]=56, ["heist_enchantment_resistance_mod_effect_+%"]=57, ["heist_enchantment_speed_mod_effect_+%"]=58, - ["heist_guards_are_magic"]=6694, - ["heist_guards_are_rare"]=6695, - ["heist_interruption_resistance_%"]=6696, - ["heist_item_quantity_+%"]=6697, - ["heist_item_rarity_+%"]=6698, - ["heist_items_are_fully_linked_%"]=6699, - ["heist_items_drop_corrupted_%"]=6700, - ["heist_items_drop_identified_%"]=6701, - ["heist_items_have_elder_influence_%"]=6702, - ["heist_items_have_one_additional_socket_%"]=6703, - ["heist_items_have_shaper_influence_%"]=6704, - ["heist_job_agility_level_+"]=6705, - ["heist_job_brute_force_level_+"]=6706, - ["heist_job_counter_thaumaturgy_level_+"]=6707, - ["heist_job_deception_level_+"]=6708, - ["heist_job_demolition_level_+"]=6709, - ["heist_job_demolition_speed_+%"]=6710, - ["heist_job_engineering_level_+"]=6711, - ["heist_job_lockpicking_level_+"]=6712, - ["heist_job_lockpicking_speed_+%"]=6713, - ["heist_job_perception_level_+"]=6714, - ["heist_job_trap_disarmament_level_+"]=6715, - ["heist_job_trap_disarmament_speed_+%"]=6716, - ["heist_lockdown_is_instant"]=6717, - ["heist_nenet_scouts_nearby_patrols_and_mini_bosses"]=6718, - ["heist_npc_blueprint_reveal_cost_+%"]=6719, - ["heist_npc_contract_generates_gianna_intelligence"]=6720, - ["heist_npc_contract_generates_niles_intelligence"]=6721, - ["heist_npc_display_huck_combat"]=6722, - ["heist_npc_karst_alert_level_from_chests_+%_final"]=6723, - ["heist_npc_nenet_alert_level_+%_final"]=6724, - ["heist_npc_tullina_alert_level_+%_final"]=6725, - ["heist_npc_vinderi_alert_level_+%_final"]=6726, - ["heist_patrols_are_magic"]=6727, - ["heist_patrols_are_rare"]=6728, - ["heist_player_additional_maximum_resistances_%_per_25%_alert_level"]=6729, - ["heist_player_armour_+%_final_per_25%_alert_level"]=6730, - ["heist_player_cold_resistance_%_per_25%_alert_level"]=6731, - ["heist_player_energy_shield_recovery_rate_+%_final_per_25%_alert_level"]=6732, - ["heist_player_evasion_rating_+%_final_per_25%_alert_level"]=6733, - ["heist_player_experience_gain_+%"]=6734, - ["heist_player_fire_resistance_%_per_25%_alert_level"]=6735, - ["heist_player_flask_charges_gained_+%_per_25%_alert_level"]=6736, - ["heist_player_life_recovery_rate_+%_final_per_25%_alert_level"]=6737, - ["heist_player_lightning_resistance_%_per_25%_alert_level"]=6738, - ["heist_player_mana_recovery_rate_+%_final_per_25%_alert_level"]=6739, - ["heist_reinforcements_attack_speed_+%"]=6740, - ["heist_reinforcements_cast_speed_+%"]=6741, - ["heist_reinforcements_movements_speed_+%"]=6742, - ["heist_side_reward_room_monsters_+%"]=6743, - ["hellscape_boots_action_speed_+%_minimum_value"]=3085, - ["hellscape_extra_item_slots"]=6744, - ["hellscape_extra_map_slots"]=6745, - ["hellscaping_add_corruption_implicit_chance_%"]=6746, - ["hellscaping_add_explicit_mod_chance_%"]=6747, - ["hellscaping_additional_link_chance_%"]=6748, - ["hellscaping_additional_socket_chance_%"]=6749, - ["hellscaping_additional_upside_chance_%"]=6750, - ["hellscaping_downsides_tier_downgrade_chance_%"]=6751, - ["hellscaping_speed_+%_per_map_hellscape_tier"]=6752, - ["hellscaping_upgrade_mod_tier_chance_%"]=6758, - ["hellscaping_upsides_tier_upgrade_chance_%"]=6759, - ["helmet_mod_freeze_as_though_damage_+%_final"]=6760, - ["helmet_mod_shock_as_though_damage_+%_final"]=6761, - ["herald_effect_on_self_+%"]=6762, - ["herald_mana_reservation_override_45%"]=6763, - ["herald_of_agony_buff_drop_off_speed_+%"]=6764, - ["herald_of_agony_buff_effect_+%"]=6765, - ["herald_of_agony_mana_reservation_+%"]=6768, - ["herald_of_agony_mana_reservation_efficiency_+%"]=6767, - ["herald_of_agony_mana_reservation_efficiency_-2%_per_1"]=6766, - ["herald_of_ash_buff_effect_+%"]=6769, - ["herald_of_ash_damage_+%"]=3601, - ["herald_of_ash_mana_reservation_+%"]=3916, - ["herald_of_ash_mana_reservation_efficiency_+%"]=6771, - ["herald_of_ash_mana_reservation_efficiency_-2%_per_1"]=6770, - ["herald_of_ash_spell_fire_damage_+%_final"]=6772, - ["herald_of_ice_buff_effect_+%"]=6773, - ["herald_of_ice_damage_+%"]=3602, - ["herald_of_ice_mana_reservation_+%"]=3917, - ["herald_of_ice_mana_reservation_efficiency_+%"]=6775, - ["herald_of_ice_mana_reservation_efficiency_-2%_per_1"]=6774, - ["herald_of_light_and_dominating_blow_minions_use_holy_slam"]=6776, - ["herald_of_light_buff_effect_+%"]=6777, - ["herald_of_light_minion_area_of_effect_+%"]=6778, - ["herald_of_purity_mana_reservation_+%"]=6781, - ["herald_of_purity_mana_reservation_efficiency_+%"]=6780, - ["herald_of_purity_mana_reservation_efficiency_-2%_per_1"]=6779, - ["herald_of_thunder_bolt_frequency_+%"]=6782, - ["herald_of_thunder_buff_effect_+%"]=6783, - ["herald_of_thunder_damage_+%"]=3603, - ["herald_of_thunder_mana_reservation_+%"]=3918, - ["herald_of_thunder_mana_reservation_efficiency_+%"]=6785, - ["herald_of_thunder_mana_reservation_efficiency_-2%_per_1"]=6784, - ["herald_scorpion_number_of_additional_projectiles"]=6786, - ["herald_skill_gem_level_+"]=6787, - ["herald_skills_mana_reservation_+%"]=6790, - ["herald_skills_mana_reservation_efficiency_+%"]=6789, - ["herald_skills_mana_reservation_efficiency_-2%_per_1"]=6788, - ["hex_remove_at_effect_variance"]=6796, - ["hex_skill_cast_speed_+%"]=2116, - ["hex_skill_duration_+%"]=6791, - ["hexblast_%_chance_to_not_consume_hex"]=6794, - ["hexblast_and_doomblast_life_leech_on_overkill_damage_%"]=6792, - ["hexblast_damage_+%"]=6793, - ["hexblast_display_innate_remove_hex_100%_chance"]=6794, - ["hexblast_skill_area_of_effect_+%"]=6795, - ["hexes_expire_on_reaching_200%_effect"]=6796, - ["hexproof_if_right_ring_is_magic_item"]=6797, - ["hierophant_area_of_effect_+%_per_50_unreserved_mana_up_to_100%"]=6798, - ["hierophant_boots_supported_by_life_leech"]=546, - ["hierophant_gain_arcane_surge_on_mana_use_threshold"]=6799, - ["hierophant_gloves_supported_by_increased_area_of_effect"]=545, - ["hierophant_helmet_supported_by_elemental_penetration"]=544, - ["hierophant_mana_cost_+%_final"]=6800, - ["hierophant_mana_reservation_+%_final"]=6801, - ["hierophant_passive_damage_+%_final_per_totem"]=3632, - ["hinder_effect_on_self_+%"]=6802, - ["hinder_enemy_chaos_damage_+%"]=6803, - ["hinder_enemy_chaos_damage_taken_+%"]=6804, - ["hinekora_belt_every_5_seconds_rotating_buff"]=6805, - ["hit_and_ailment_damage_+%_vs_bleeding_enemies"]=6806, - ["hit_and_ailment_damage_+%_vs_blinded_enemies"]=6807, - ["hit_and_ailment_damage_+%_vs_chilled_enemies"]=6808, - ["hit_and_ailment_damage_+%_vs_cursed_enemies"]=6809, - ["hit_and_ailment_damage_+%_vs_enemies_affected_by_ailments"]=6810, - ["hit_and_ailment_damage_+%_vs_enemies_affected_by_at_least_3_spiders_webs"]=6811, - ["hit_and_ailment_damage_+%_vs_unique_enemies"]=6812, - ["hit_damage_+%"]=6814, - ["hit_damage_+%_vs_ignited_enemies"]=6813, - ["hits_against_marked_enemy_cannot_be_blocked_or_suppressed"]=6815, - ["hits_against_you_overwhelm_x%_of_physical_damage_reduction"]=6816, - ["hits_can_only_kill_frozen_enemies"]=2916, - ["hits_cannot_be_evaded_vs_blinded_enemies"]=6817, - ["hits_from_maces_and_sceptres_crush_enemies"]=6818, - ["hits_have_critical_strike_multipler_+_per_monster_power"]=6819, - ["hits_have_leech_%_is_instant_per_monster_power"]=6820, - ["hits_ignore_enemy_chaos_resistance_if_all_elder_items_equipped"]=6821, - ["hits_ignore_enemy_chaos_resistance_if_all_shaper_items_equipped"]=6822, - ["hits_ignore_enemy_fire_resistance_while_you_are_ignited"]=6823, - ["hits_ignore_enemy_monster_physical_damage_reduction_%_chance"]=6825, - ["hits_ignore_enemy_monster_physical_damage_reduction_%_chance_while_have_sacrificial_zeal"]=6826, - ["hits_ignore_enemy_monster_physical_damage_reduction_if_blocked_in_past_20_seconds"]=6824, - ["hoarfrost_on_non_freezing_freezing_hit"]=6827, - ["holy_and_shockwave_totem_have_physical_damage_%_to_add_as_fire_damage_when_linked_by_searing_bond"]=6828, - ["holy_path_teleport_range_+%"]=6829, - ["holy_relic_area_of_effect_+%"]=6830, - ["holy_relic_buff_effect_+%"]=6831, - ["holy_relic_cooldown_recovery_+%"]=6832, - ["holy_relic_damage_+%"]=6833, - ["horrible_ugly_life_leech_from_chaos_damage_perhundredthousand"]=1589, - ["horrible_ugly_life_leech_from_cold_damage_perhundredthousand"]=1582, - ["horrible_ugly_life_leech_from_fire_damage_perhundredthousand"]=1577, - ["horrible_ugly_life_leech_from_lightning_damage_perhundredthousand"]=1586, - ["horrible_ugly_life_leech_from_physical_damage_perhundredthousand"]=1573, - ["hydro_sphere_pulse_frequency_+%"]=6834, - ["ice_and_lightning_trap_base_penetrate_elemental_resistances_%"]=6835, - ["ice_and_lightning_trap_can_be_triggered_by_warcries"]=6836, - ["ice_and_lightning_traps_cannot_be_triggered_by_enemies"]=6837, - ["ice_crash_and_glacial_hammer_enemies_covered_in_frost_as_unfrozen"]=6838, - ["ice_crash_damage_+%"]=3569, - ["ice_crash_first_stage_damage_+%_final"]=6839, - ["ice_crash_physical_damage_%_to_add_as_cold_damage"]=3867, - ["ice_crash_radius_+%"]=3716, - ["ice_dash_cooldown_speed_+%"]=6840, - ["ice_dash_duration_+%"]=6841, - ["ice_dash_travel_distance_+%"]=6842, - ["ice_golem_damage_+%"]=3582, - ["ice_golem_elemental_resistances_%"]=3872, - ["ice_nova_chill_minimum_slow_%"]=6843, - ["ice_nova_damage_+%"]=3552, - ["ice_nova_freeze_chance_%"]=3848, - ["ice_nova_radius_+%"]=3703, - ["ice_shot_additional_pierce_per_10_old"]=6844, - ["ice_shot_area_angle_+%"]=6845, - ["ice_shot_damage_+%"]=3536, - ["ice_shot_duration_+%"]=3820, - ["ice_shot_pierce_+"]=6846, - ["ice_shot_radius_+%"]=3699, - ["ice_siphon_trap_chill_effect_+%"]=6847, - ["ice_siphon_trap_damage_+%"]=6848, - ["ice_siphon_trap_damage_taken_+%_per_beam"]=6849, - ["ice_siphon_trap_duration_+%"]=6850, - ["ice_spear_%_chance_to_gain_power_charge_on_critical_strike"]=3857, - ["ice_spear_and_ball_lightning_projectiles_nova"]=6851, - ["ice_spear_and_ball_lightning_projectiles_return"]=6852, - ["ice_spear_damage_+%"]=3553, - ["ice_spear_distance_before_form_change_+%"]=6853, - ["ice_spear_number_of_additional_projectiles"]=6854, - ["ice_spear_second_form_critical_strike_chance_+%"]=4009, - ["ice_spear_second_form_critical_strike_multiplier_+"]=4010, - ["ice_spear_second_form_projectile_speed_+%_final"]=4011, - ["ice_trap_cold_resistance_penetration_%"]=6855, - ["ice_trap_cooldown_speed_+%"]=3776, - ["ice_trap_damage_+%"]=3618, - ["ice_trap_radius_+%"]=3729, - ["ignite_X_nearby_enemies_for_4_s_on_killing_ignited_enemy"]=2714, - ["ignite_damage_+%_final_if_hit_highest_fire"]=6856, - ["ignite_damage_+%_vs_chilled_enemies"]=6857, - ["ignite_damage_against_cursed_enemies_+%"]=6858, - ["ignite_deal_no_damage"]=6859, - ["ignite_dot_multiplier_+"]=1163, - ["ignite_duration_+%"]=1764, - ["ignite_duration_-%"]=6860, - ["ignite_prevention_ms_when_ignited"]=2794, - ["ignite_slower_burn_%"]=2465, - ["ignited_enemies_explode_on_kill"]=2493, - ["ignites_and_chill_apply_elemental_resistance_+"]=6861, - ["ignites_apply_fire_resistance_+"]=6862, - ["ignites_reflected_to_self"]=2934, - ["ignore_armour_movement_penalties"]=2082, - ["ignore_hexproof"]=2500, - ["ignores_enemy_cold_resistance"]=6863, - ["ignores_enemy_fire_resistance"]=6864, - ["ignores_enemy_lightning_resistance"]=6865, - ["immortal_call_%_chance_to_not_consume_endurance_charges"]=3911, - ["immortal_call_buff_effect_duration_+%_per_removable_endurance_charge"]=6866, - ["immortal_call_duration_+%"]=3786, - ["immortal_call_elemental_damage_taken_+%_final_per_endurance_charge_consumed_permyriad"]=6867, - ["immune_to_all_status_ailments"]=6868, - ["immune_to_ally_buff_auras"]=2913, - ["immune_to_bleeding"]=4099, - ["immune_to_bleeding_if_helmet_grants_higher_armour_than_evasion"]=6869, - ["immune_to_bleeding_while_leeching"]=4102, - ["immune_to_burning_shocks_and_chilled_ground"]=6870, - ["immune_to_curses_if_cast_dispair_in_past_10_seconds"]=6871, - ["immune_to_curses_on_killing_cursed_enemy_for_remaining_duration_of_curse"]=6872, - ["immune_to_curses_while_at_least_X_rage"]=6873, - ["immune_to_curses_while_channelling"]=6874, - ["immune_to_elemental_ailments_while_on_consecrated_ground"]=6875, - ["immune_to_elemental_ailments_while_on_consecrated_ground_at_devotion_threshold"]=6876, - ["immune_to_elemental_ailments_while_you_have_arcane_surge"]=6877, - ["immune_to_elemental_status_ailments_during_flask_effect"]=4109, - ["immune_to_elemental_status_ailments_while_affected_by_glorious_madness"]=10184, - ["immune_to_exposure"]=6878, - ["immune_to_exposure_if_cast_elemental_weakness_in_past_10_seconds"]=6879, - ["immune_to_freeze_and_chill_while_ignited"]=6880, - ["immune_to_freeze_while_affected_by_purity_of_ice"]=6881, - ["immune_to_hinder"]=6882, - ["immune_to_ignite_and_shock"]=6883, - ["immune_to_ignite_while_affected_by_purity_of_fire"]=6884, - ["immune_to_maim"]=6885, - ["immune_to_poison"]=3500, - ["immune_to_poison_if_helmet_grants_higher_evasion_than_armour"]=6886, - ["immune_to_reflect_damage_if_cast_punishment_in_past_10_seconds"]=6887, - ["immune_to_reflected_damage"]=6888, - ["immune_to_shock_while_affected_by_purity_of_lightning"]=6889, - ["immune_to_status_ailments_while_focused"]=6890, - ["immune_to_status_ailments_while_phased"]=3355, - ["immune_to_wither"]=6891, - ["impacting_steel_%_chance_to_not_consume_ammo"]=6892, - ["impale_debuff_effect_+%"]=6893, - ["impale_debuff_effect_+%_from_hits_that_also_inflict_bleeding"]=6894, - ["impale_effect_+%_for_impales_inficted_by_spells"]=6896, - ["impale_effect_+%_for_impales_inflicted_by_two_handed_weapons_on_non_impaled_enemies"]=6897, - ["impale_effect_+%_for_impales_inflicted_on_non_impaled_enemies"]=6898, - ["impale_effect_+%_for_impales_past_1000_millisecond"]=6899, - ["impale_effect_+%_max_as_distance_travelled_increases"]=6900, - ["impale_effect_+%_per_impale_on_you"]=6895, - ["impale_hits_ignore_enemy_monster_physical_damage_reduction_%_chance"]=6901, - ["impale_inflicted_by_two_handed_weapons_debuff_effect_+%"]=6902, - ["impale_on_hit_%_chance"]=6903, - ["impale_on_hit_%_chance_with_axes_swords"]=6904, - ["impale_phys_reduction_%_penalty"]=2875, - ["impaled_debuff_duration_+%"]=6905, - ["impaled_debuff_number_of_reflected_hits"]=6906, - ["impales_do_not_consume_hit_on_hit_%_chance"]=6907, - ["impurity_cold_damage_taken_+%_final"]=6908, - ["impurity_fire_damage_taken_+%_final"]=6909, - ["impurity_lightning_damage_taken_+%_final"]=6910, - ["incinerate_damage_+%"]=3554, - ["incinerate_damage_+%_per_stage"]=3891, - ["incinerate_projectile_speed_+%"]=3783, - ["incinerate_starts_with_X_additional_stages"]=6911, - ["increase_crit_chance_by_lowest_of_str_or_int"]=6912, - ["increased_critical_strike_chance_buff_for_x_milliseconds_on_placing_a_totem"]=1395, - ["infernal_blow_damage_+%"]=3525, - ["infernal_blow_explosion_applies_uncharged_debuff_on_hit_%_chance"]=6914, - ["infernal_blow_infernal_blow_explosion_damage_%_of_total_per_stack"]=6915, - ["infernal_blow_physical_damage_%_to_add_as_fire_damage"]=3844, - ["infernal_blow_radius_+%"]=3694, - ["infernal_cry_area_of_effect_+%"]=6916, - ["infernal_cry_cooldown_speed_+%"]=6917, - ["infernal_cry_exerted_attacks_ignite_damage_+%_final_from_jewel"]=6918, - ["inflict_all_exposure_on_enemies_when_suppressing_their_spell"]=6919, - ["inflict_all_exposure_on_hit"]=6920, - ["inflict_cold_exposure_if_cast_frostbite_in_past_10_seconds"]=6921, - ["inflict_cold_exposure_on_hit_%_chance_at_devotion_threshold"]=6922, - ["inflict_fire_exposure_if_cast_flammability_in_past_10_seconds"]=6923, - ["inflict_fire_exposure_on_hit_%_chance_at_devotion_threshold"]=6924, - ["inflict_lightning_exposure_if_cast_conductivity_in_past_10_seconds"]=6925, - ["inflict_lightning_exposure_on_hit_%_chance_at_devotion_threshold"]=6926, - ["inflict_withered_for_2_seconds_on_hit_if_cast_dispair_in_past_10_seconds"]=6927, - ["inflicted_with_cold_exposure_on_taking_damage_from_cold_damage_hit_chance_%"]=6928, - ["inflicted_with_fire_exposure_on_taking_damage_from_fire_damage_hit_chance_%"]=6929, - ["inflicted_with_lightning_exposure_on_taking_damage_from_lightning_damage_hit_chance_%"]=6930, - ["inflicted_with_random_exposure_on_taking_damage_from_elemental_hit_chance_%"]=6931, - ["inflicted_with_wither_for_2_seconds_on_taking_chaos_damage_from_hit_chance_%"]=6932, - ["infusion_effect_+%"]=6933, - ["inquisitor_attack_damage_+%_final_per_non_instant_spell_cast_in_8_seconds_max_30%"]=6934, - ["inquisitor_aura_elemental_damage_+%_final"]=3480, - ["inspiration_charge_duration_+%"]=6935, - ["intelligence_+%"]=1095, - ["intelligence_+%_if_2_crusader_items"]=4336, - ["intelligence_+%_per_equipped_unique"]=2492, - ["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_nearby_enemies_on_use_for_ms"]=6941, - ["intimidate_on_hit_chance_with_attacks_while_at_maximum_endurance_charges_%"]=6942, - ["intimidating_cry_area_of_effect_+%"]=6943, - ["intimidating_cry_cooldown_speed_+%"]=6944, - ["intuitive_link_duration_+%"]=6945, - ["iron_reflexes_rotation_active"]=10307, - ["is_blighted_map"]=6946, - ["is_hindered"]=3992, - ["is_petrified"]=3493, + ["heist_guards_are_magic"]=6927, + ["heist_guards_are_rare"]=6928, + ["heist_interruption_resistance_%"]=6929, + ["heist_item_quantity_+%"]=6930, + ["heist_item_rarity_+%"]=6931, + ["heist_items_are_fully_linked_%"]=6932, + ["heist_items_drop_corrupted_%"]=6933, + ["heist_items_drop_identified_%"]=6934, + ["heist_items_have_elder_influence_%"]=6935, + ["heist_items_have_one_additional_socket_%"]=6936, + ["heist_items_have_shaper_influence_%"]=6937, + ["heist_job_agility_level_+"]=6938, + ["heist_job_brute_force_level_+"]=6939, + ["heist_job_counter_thaumaturgy_level_+"]=6940, + ["heist_job_deception_level_+"]=6941, + ["heist_job_demolition_level_+"]=6942, + ["heist_job_demolition_speed_+%"]=6943, + ["heist_job_engineering_level_+"]=6944, + ["heist_job_lockpicking_level_+"]=6945, + ["heist_job_lockpicking_speed_+%"]=6946, + ["heist_job_perception_level_+"]=6947, + ["heist_job_trap_disarmament_level_+"]=6948, + ["heist_job_trap_disarmament_speed_+%"]=6949, + ["heist_lockdown_is_instant"]=6950, + ["heist_nenet_scouts_nearby_patrols_and_mini_bosses"]=6951, + ["heist_npc_blueprint_reveal_cost_+%"]=6952, + ["heist_npc_contract_generates_gianna_intelligence"]=6953, + ["heist_npc_contract_generates_niles_intelligence"]=6954, + ["heist_npc_display_huck_combat"]=6955, + ["heist_npc_karst_alert_level_from_chests_+%_final"]=6956, + ["heist_npc_nenet_alert_level_+%_final"]=6957, + ["heist_npc_tullina_alert_level_+%_final"]=6958, + ["heist_npc_vinderi_alert_level_+%_final"]=6959, + ["heist_patrols_are_magic"]=6960, + ["heist_patrols_are_rare"]=6961, + ["heist_player_additional_maximum_resistances_%_per_25%_alert_level"]=6962, + ["heist_player_armour_+%_final_per_25%_alert_level"]=6963, + ["heist_player_cold_resistance_%_per_25%_alert_level"]=6964, + ["heist_player_energy_shield_recovery_rate_+%_final_per_25%_alert_level"]=6965, + ["heist_player_evasion_rating_+%_final_per_25%_alert_level"]=6966, + ["heist_player_experience_gain_+%"]=6967, + ["heist_player_fire_resistance_%_per_25%_alert_level"]=6968, + ["heist_player_flask_charges_gained_+%_per_25%_alert_level"]=6969, + ["heist_player_life_recovery_rate_+%_final_per_25%_alert_level"]=6970, + ["heist_player_lightning_resistance_%_per_25%_alert_level"]=6971, + ["heist_player_mana_recovery_rate_+%_final_per_25%_alert_level"]=6972, + ["heist_reinforcements_attack_speed_+%"]=6973, + ["heist_reinforcements_cast_speed_+%"]=6974, + ["heist_reinforcements_movements_speed_+%"]=6975, + ["heist_side_reward_room_monsters_+%"]=6976, + ["hellscape_boots_action_speed_+%_minimum_value"]=3127, + ["hellscape_extra_item_slots"]=6977, + ["hellscape_extra_map_slots"]=6978, + ["hellscaping_add_corruption_implicit_chance_%"]=6979, + ["hellscaping_add_explicit_mod_chance_%"]=6980, + ["hellscaping_additional_link_chance_%"]=6981, + ["hellscaping_additional_socket_chance_%"]=6982, + ["hellscaping_additional_upside_chance_%"]=6983, + ["hellscaping_downsides_tier_downgrade_chance_%"]=6984, + ["hellscaping_speed_+%_per_map_hellscape_tier"]=6985, + ["hellscaping_upgrade_mod_tier_chance_%"]=6991, + ["hellscaping_upsides_tier_upgrade_chance_%"]=6992, + ["helmet_mod_freeze_as_though_damage_+%_final"]=6993, + ["helmet_mod_shock_as_though_damage_+%_final"]=6994, + ["herald_effect_on_self_+%"]=6995, + ["herald_mana_reservation_override_45%"]=6996, + ["herald_of_agony_buff_drop_off_speed_+%"]=6997, + ["herald_of_agony_buff_effect_+%"]=6998, + ["herald_of_agony_mana_reservation_+%"]=7001, + ["herald_of_agony_mana_reservation_efficiency_+%"]=7000, + ["herald_of_agony_mana_reservation_efficiency_-2%_per_1"]=6999, + ["herald_of_ash_buff_effect_+%"]=7002, + ["herald_of_ash_damage_+%"]=3646, + ["herald_of_ash_mana_reservation_+%"]=3962, + ["herald_of_ash_mana_reservation_efficiency_+%"]=7004, + ["herald_of_ash_mana_reservation_efficiency_-2%_per_1"]=7003, + ["herald_of_ash_spell_fire_damage_+%_final"]=7005, + ["herald_of_ice_buff_effect_+%"]=7006, + ["herald_of_ice_damage_+%"]=3647, + ["herald_of_ice_mana_reservation_+%"]=3963, + ["herald_of_ice_mana_reservation_efficiency_+%"]=7008, + ["herald_of_ice_mana_reservation_efficiency_-2%_per_1"]=7007, + ["herald_of_light_and_dominating_blow_minions_use_holy_slam"]=7009, + ["herald_of_light_buff_effect_+%"]=7010, + ["herald_of_light_minion_area_of_effect_+%"]=7011, + ["herald_of_purity_mana_reservation_+%"]=7014, + ["herald_of_purity_mana_reservation_efficiency_+%"]=7013, + ["herald_of_purity_mana_reservation_efficiency_-2%_per_1"]=7012, + ["herald_of_thunder_bolt_frequency_+%"]=7015, + ["herald_of_thunder_buff_effect_+%"]=7016, + ["herald_of_thunder_damage_+%"]=3648, + ["herald_of_thunder_mana_reservation_+%"]=3964, + ["herald_of_thunder_mana_reservation_efficiency_+%"]=7018, + ["herald_of_thunder_mana_reservation_efficiency_-2%_per_1"]=7017, + ["herald_scorpion_number_of_additional_projectiles"]=7019, + ["herald_skill_gem_level_+"]=7020, + ["herald_skills_mana_reservation_+%"]=7023, + ["herald_skills_mana_reservation_efficiency_+%"]=7022, + ["herald_skills_mana_reservation_efficiency_-2%_per_1"]=7021, + ["hex_remove_at_effect_variance"]=7029, + ["hex_skill_cast_speed_+%"]=2148, + ["hex_skill_duration_+%"]=7024, + ["hexblast_%_chance_to_not_consume_hex"]=7027, + ["hexblast_and_doomblast_life_leech_on_overkill_damage_%"]=7025, + ["hexblast_damage_+%"]=7026, + ["hexblast_display_innate_remove_hex_100%_chance"]=7027, + ["hexblast_skill_area_of_effect_+%"]=7028, + ["hexes_expire_on_reaching_200%_effect"]=7029, + ["hexproof_if_right_ring_is_magic_item"]=7030, + ["hierophant_area_of_effect_+%_per_50_unreserved_mana_up_to_100%"]=7031, + ["hierophant_boots_supported_by_life_leech"]=555, + ["hierophant_gain_arcane_surge_on_mana_use_threshold"]=7032, + ["hierophant_gloves_supported_by_increased_area_of_effect"]=554, + ["hierophant_helmet_supported_by_elemental_penetration"]=553, + ["hierophant_mana_cost_+%_final"]=7033, + ["hierophant_mana_reservation_+%_final"]=7034, + ["hierophant_passive_damage_+%_final_per_totem"]=3677, + ["hinder_effect_on_self_+%"]=7035, + ["hinder_enemy_chaos_damage_+%"]=7036, + ["hinder_enemy_chaos_damage_taken_+%"]=7037, + ["hinekora_belt_every_5_seconds_rotating_buff"]=7038, + ["hit_and_ailment_damage_+%_vs_bleeding_enemies"]=7039, + ["hit_and_ailment_damage_+%_vs_blinded_enemies"]=7040, + ["hit_and_ailment_damage_+%_vs_chilled_enemies"]=7041, + ["hit_and_ailment_damage_+%_vs_cursed_enemies"]=7042, + ["hit_and_ailment_damage_+%_vs_enemies_affected_by_ailments"]=7043, + ["hit_and_ailment_damage_+%_vs_enemies_affected_by_at_least_3_spiders_webs"]=7044, + ["hit_and_ailment_damage_+%_vs_unique_enemies"]=7045, + ["hit_damage_+%"]=7047, + ["hit_damage_+%_vs_ignited_enemies"]=7046, + ["hits_against_marked_enemy_cannot_be_blocked_or_suppressed"]=7048, + ["hits_against_you_overwhelm_x%_of_physical_damage_reduction"]=7049, + ["hits_can_only_kill_frozen_enemies"]=2953, + ["hits_cannot_be_evaded_vs_blinded_enemies"]=7050, + ["hits_cannot_inflict_more_than_one_impale"]=7051, + ["hits_from_maces_and_sceptres_crush_enemies"]=7052, + ["hits_have_critical_strike_multipler_+_per_monster_power"]=7053, + ["hits_have_leech_%_is_instant_per_monster_power"]=7054, + ["hits_ignore_enemy_chaos_resistance_if_all_elder_items_equipped"]=7055, + ["hits_ignore_enemy_chaos_resistance_if_all_shaper_items_equipped"]=7056, + ["hits_ignore_enemy_cold_resistance_if_all_equipped_rings_are_cryonic"]=7057, + ["hits_ignore_enemy_fire_resistance_while_you_are_ignited"]=7058, + ["hits_ignore_enemy_lightning_resistance_if_all_equipped_rings_are_synaptic"]=7059, + ["hits_ignore_enemy_monster_physical_damage_reduction_%_chance"]=7061, + ["hits_ignore_enemy_monster_physical_damage_reduction_%_chance_while_have_sacrificial_zeal"]=7062, + ["hits_ignore_enemy_monster_physical_damage_reduction_if_blocked_in_past_20_seconds"]=7060, + ["hoarfrost_on_non_freezing_freezing_hit"]=7063, + ["holy_and_shockwave_totem_have_physical_damage_%_to_add_as_fire_damage_when_linked_by_searing_bond"]=7064, + ["holy_path_teleport_range_+%"]=7065, + ["holy_relic_area_of_effect_+%"]=7066, + ["holy_relic_buff_effect_+%"]=7067, + ["holy_relic_cooldown_recovery_+%"]=7068, + ["holy_relic_damage_+%"]=7069, + ["horrible_ugly_life_leech_from_chaos_damage_perhundredthousand"]=1619, + ["horrible_ugly_life_leech_from_cold_damage_perhundredthousand"]=1612, + ["horrible_ugly_life_leech_from_fire_damage_perhundredthousand"]=1607, + ["horrible_ugly_life_leech_from_lightning_damage_perhundredthousand"]=1616, + ["horrible_ugly_life_leech_from_physical_damage_perhundredthousand"]=1603, + ["hydro_sphere_pulse_frequency_+%"]=7070, + ["ice_and_lightning_trap_base_penetrate_elemental_resistances_%"]=7071, + ["ice_and_lightning_trap_can_be_triggered_by_warcries"]=7072, + ["ice_and_lightning_traps_cannot_be_triggered_by_enemies"]=7073, + ["ice_crash_and_glacial_hammer_enemies_covered_in_frost_as_unfrozen"]=7074, + ["ice_crash_damage_+%"]=3614, + ["ice_crash_first_stage_damage_+%_final"]=7075, + ["ice_crash_physical_damage_%_to_add_as_cold_damage"]=3913, + ["ice_crash_radius_+%"]=3762, + ["ice_dash_cooldown_speed_+%"]=7076, + ["ice_dash_duration_+%"]=7077, + ["ice_dash_travel_distance_+%"]=7078, + ["ice_golem_damage_+%"]=3627, + ["ice_golem_elemental_resistances_%"]=3918, + ["ice_nova_chill_minimum_slow_%"]=7079, + ["ice_nova_damage_+%"]=3597, + ["ice_nova_freeze_chance_%"]=3894, + ["ice_nova_radius_+%"]=3749, + ["ice_shot_additional_pierce_per_10_old"]=7080, + ["ice_shot_area_angle_+%"]=7081, + ["ice_shot_damage_+%"]=3581, + ["ice_shot_duration_+%"]=3866, + ["ice_shot_pierce_+"]=7082, + ["ice_shot_radius_+%"]=3745, + ["ice_siphon_trap_chill_effect_+%"]=7083, + ["ice_siphon_trap_damage_+%"]=7084, + ["ice_siphon_trap_damage_taken_+%_per_beam"]=7085, + ["ice_siphon_trap_duration_+%"]=7086, + ["ice_spear_%_chance_to_gain_power_charge_on_critical_strike"]=3903, + ["ice_spear_and_ball_lightning_projectiles_nova"]=7087, + ["ice_spear_and_ball_lightning_projectiles_return"]=7088, + ["ice_spear_damage_+%"]=3598, + ["ice_spear_distance_before_form_change_+%"]=7089, + ["ice_spear_number_of_additional_projectiles"]=7090, + ["ice_spear_second_form_critical_strike_chance_+%"]=4055, + ["ice_spear_second_form_critical_strike_multiplier_+"]=4056, + ["ice_spear_second_form_projectile_speed_+%_final"]=4057, + ["ice_trap_cold_resistance_penetration_%"]=7091, + ["ice_trap_cooldown_speed_+%"]=3822, + ["ice_trap_damage_+%"]=3663, + ["ice_trap_radius_+%"]=3775, + ["ignite_X_nearby_enemies_for_4_s_on_killing_ignited_enemy"]=2749, + ["ignite_damage_+%_final_if_hit_highest_fire"]=7092, + ["ignite_damage_+%_vs_chilled_enemies"]=7093, + ["ignite_damage_against_cursed_enemies_+%"]=7094, + ["ignite_deal_no_damage"]=7095, + ["ignite_dot_multiplier_+"]=1190, + ["ignite_duration_+%"]=1794, + ["ignite_duration_-%"]=7096, + ["ignite_prevention_ms_when_ignited"]=2830, + ["ignite_slower_burn_%"]=2498, + ["ignited_enemies_explode_for_%_life_as_fire_damage"]=7097, + ["ignited_enemies_explode_on_kill"]=2526, + ["ignites_and_chill_apply_elemental_resistance_+"]=7098, + ["ignites_apply_fire_resistance_+"]=7099, + ["ignites_reflected_to_self"]=2971, + ["ignore_armour_movement_penalties"]=2114, + ["ignore_hexproof"]=2533, + ["ignores_enemy_cold_resistance"]=7100, + ["ignores_enemy_fire_resistance"]=7101, + ["ignores_enemy_lightning_resistance"]=7102, + ["immortal_call_%_chance_to_not_consume_endurance_charges"]=3957, + ["immortal_call_buff_effect_duration_+%_per_removable_endurance_charge"]=7103, + ["immortal_call_duration_+%"]=3832, + ["immortal_call_elemental_damage_taken_+%_final_per_endurance_charge_consumed_permyriad"]=7104, + ["immune_to_all_status_ailments"]=7105, + ["immune_to_ally_buff_auras"]=2950, + ["immune_to_bleeding"]=4145, + ["immune_to_bleeding_if_helmet_grants_higher_armour_than_evasion"]=7106, + ["immune_to_bleeding_while_leeching"]=4148, + ["immune_to_burning_shocks_and_chilled_ground"]=7107, + ["immune_to_curses_if_cast_dispair_in_past_10_seconds"]=7108, + ["immune_to_curses_on_killing_cursed_enemy_for_remaining_duration_of_curse"]=7109, + ["immune_to_curses_while_at_least_X_rage"]=7110, + ["immune_to_curses_while_channelling"]=7111, + ["immune_to_elemental_ailments_while_bleeding"]=7112, + ["immune_to_elemental_ailments_while_on_consecrated_ground"]=7113, + ["immune_to_elemental_ailments_while_on_consecrated_ground_at_devotion_threshold"]=7114, + ["immune_to_elemental_ailments_while_you_have_arcane_surge"]=7115, + ["immune_to_elemental_status_ailments_during_flask_effect"]=4155, + ["immune_to_elemental_status_ailments_while_affected_by_glorious_madness"]=10507, + ["immune_to_exposure"]=7116, + ["immune_to_exposure_if_cast_elemental_weakness_in_past_10_seconds"]=7117, + ["immune_to_freeze_and_chill_while_ignited"]=7118, + ["immune_to_freeze_while_affected_by_purity_of_ice"]=7119, + ["immune_to_hinder"]=7120, + ["immune_to_ignite_and_shock"]=7121, + ["immune_to_ignite_while_affected_by_purity_of_fire"]=7122, + ["immune_to_maim"]=7123, + ["immune_to_poison"]=3545, + ["immune_to_poison_if_helmet_grants_higher_evasion_than_armour"]=7124, + ["immune_to_reflect_damage_if_cast_punishment_in_past_10_seconds"]=7125, + ["immune_to_reflected_damage"]=7126, + ["immune_to_shock_while_affected_by_purity_of_lightning"]=7127, + ["immune_to_status_ailments_while_focused"]=7128, + ["immune_to_status_ailments_while_phased"]=3400, + ["immune_to_wither"]=7129, + ["impacting_steel_%_chance_to_not_consume_ammo"]=7130, + ["impale_debuff_effect_+%"]=7131, + ["impale_debuff_effect_+%_from_hits_that_also_inflict_bleeding"]=7132, + ["impale_effect_+%_for_impales_inficted_by_spells"]=7134, + ["impale_effect_+%_for_impales_inflicted_by_two_handed_weapons_on_non_impaled_enemies"]=7135, + ["impale_effect_+%_for_impales_inflicted_on_non_impaled_enemies"]=7136, + ["impale_effect_+%_for_impales_past_1000_millisecond"]=7137, + ["impale_effect_+%_max_as_distance_travelled_increases"]=7138, + ["impale_effect_+%_per_impale_on_you"]=7133, + ["impale_hits_ignore_enemy_monster_physical_damage_reduction_%_chance"]=7139, + ["impale_inflicted_by_two_handed_weapons_debuff_effect_+%"]=7140, + ["impale_on_hit_%_chance"]=7141, + ["impale_on_hit_%_chance_with_axes_swords"]=7142, + ["impale_phys_reduction_%_penalty"]=2912, + ["impaled_debuff_duration_+%"]=7143, + ["impaled_debuff_number_of_reflected_hits"]=7144, + ["impales_do_not_consume_hit_on_hit_%_chance"]=7145, + ["impales_do_not_consume_hit_on_melee_hit_%_chance"]=7146, + ["impales_do_not_consume_hit_strongest_impale_on_melee_hit_%_chance"]=7147, + ["impurity_cold_damage_taken_+%_final"]=7148, + ["impurity_fire_damage_taken_+%_final"]=7149, + ["impurity_lightning_damage_taken_+%_final"]=7150, + ["incinerate_damage_+%"]=3599, + ["incinerate_damage_+%_per_stage"]=3937, + ["incinerate_projectile_speed_+%"]=3829, + ["incinerate_starts_with_X_additional_stages"]=7151, + ["increase_crit_chance_by_lowest_of_str_or_int"]=7152, + ["increased_critical_strike_chance_buff_for_x_milliseconds_on_placing_a_totem"]=1422, + ["infernal_blow_damage_+%"]=3570, + ["infernal_blow_explosion_applies_uncharged_debuff_on_hit_%_chance"]=7154, + ["infernal_blow_infernal_blow_explosion_damage_%_of_total_per_stack"]=7155, + ["infernal_blow_physical_damage_%_to_add_as_fire_damage"]=3890, + ["infernal_blow_radius_+%"]=3740, + ["infernal_cry_area_of_effect_+%"]=7156, + ["infernal_cry_cooldown_speed_+%"]=7157, + ["infernal_cry_exerted_attacks_ignite_damage_+%_final_from_jewel"]=7158, + ["inflict_all_exposure_on_enemies_when_suppressing_their_spell"]=7159, + ["inflict_all_exposure_on_hit"]=7160, + ["inflict_cold_exposure_if_cast_frostbite_in_past_10_seconds"]=7161, + ["inflict_cold_exposure_on_hit_%_chance_at_devotion_threshold"]=7162, + ["inflict_fire_exposure_if_cast_flammability_in_past_10_seconds"]=7163, + ["inflict_fire_exposure_nearby_on_reaching_maximum_rage"]=7164, + ["inflict_fire_exposure_on_hit_%_chance_at_devotion_threshold"]=7165, + ["inflict_lightning_exposure_if_cast_conductivity_in_past_10_seconds"]=7166, + ["inflict_lightning_exposure_on_hit_%_chance_at_devotion_threshold"]=7167, + ["inflict_mania_on_nearby_enemies_every_second_while_affected_by_glorious_madness"]=7168, + ["inflict_withered_for_2_seconds_on_hit_if_cast_dispair_in_past_10_seconds"]=7169, + ["inflicted_with_cold_exposure_on_taking_damage_from_cold_damage_hit_chance_%"]=7170, + ["inflicted_with_fire_exposure_on_taking_damage_from_fire_damage_hit_chance_%"]=7171, + ["inflicted_with_lightning_exposure_on_taking_damage_from_lightning_damage_hit_chance_%"]=7172, + ["inflicted_with_random_exposure_on_taking_damage_from_elemental_hit_chance_%"]=7173, + ["inflicted_with_wither_for_2_seconds_on_taking_chaos_damage_from_hit_chance_%"]=7174, + ["infusion_effect_+%"]=7175, + ["inquisitor_attack_damage_+%_final_per_non_instant_spell_cast_in_8_seconds_max_30%"]=7176, + ["inquisitor_aura_elemental_damage_+%_final"]=3525, + ["inspiration_charge_duration_+%"]=7177, + ["intelligence_+%"]=1122, + ["intelligence_+%_if_2_crusader_items"]=4382, + ["intelligence_+%_per_equipped_unique"]=2525, + ["intelligence_is_0"]=7178, + ["intelligence_skill_gem_level_+"]=7179, + ["intensity_loss_frequency_while_moving_+%"]=7180, + ["intimidate_enemies_for_4_seconds_on_block_while_holding_a_shield"]=7181, + ["intimidate_enemies_on_hit_if_cast_punishment_in_past_10_seconds"]=7182, + ["intimidate_nearby_enemies_on_use_for_ms"]=7183, + ["intimidate_on_hit_chance_with_attacks_while_at_maximum_endurance_charges_%"]=7184, + ["intimidating_cry_area_of_effect_+%"]=7185, + ["intimidating_cry_cooldown_speed_+%"]=7186, + ["intuitive_link_duration_+%"]=7187, + ["iron_reflexes_rotation_active"]=10636, + ["is_blighted_map"]=7188, + ["is_hindered"]=4038, + ["is_petrified"]=3538, ["item_drop_slots"]=2, - ["item_drops_on_death"]=2458, - ["item_found_quality_+%"]=1507, - ["item_found_quantity_+%"]=1497, - ["item_found_quantity_+%_if_wearing_a_magic_item"]=4095, - ["item_found_quantity_+%_per_chest_opened_recently"]=6947, - ["item_found_quantity_+%_per_white_socket_on_item"]=2627, - ["item_found_quantity_+%_when_on_low_life"]=1499, - ["item_found_rarity_+%"]=1501, - ["item_found_rarity_+%_if_wearing_a_normal_item"]=4094, - ["item_found_rarity_+%_per_white_socket_on_item"]=2629, - ["item_found_rarity_+%_when_on_low_life"]=1505, - ["item_found_rarity_+%_while_phasing"]=2406, - ["item_found_rarity_+1%_per_X_rampage_stacks"]=6948, - ["item_found_relevancy_+%"]=1508, + ["item_drops_on_death"]=2491, + ["item_found_quality_+%"]=1536, + ["item_found_quantity_+%"]=1526, + ["item_found_quantity_+%_if_wearing_a_magic_item"]=4141, + ["item_found_quantity_+%_per_chest_opened_recently"]=7189, + ["item_found_quantity_+%_per_white_socket_on_item"]=2662, + ["item_found_quantity_+%_when_on_low_life"]=1528, + ["item_found_rarity_+%"]=1530, + ["item_found_rarity_+%_if_wearing_a_normal_item"]=4140, + ["item_found_rarity_+%_per_white_socket_on_item"]=2664, + ["item_found_rarity_+%_when_on_low_life"]=1534, + ["item_found_rarity_+%_while_phasing"]=2439, + ["item_found_rarity_+1%_per_X_rampage_stacks"]=7190, + ["item_found_relevancy_+%"]=1537, ["item_generation_can_have_multiple_crafted_mods"]=41, ["item_generation_cannot_change_prefixes"]=36, ["item_generation_cannot_change_suffixes"]=38, ["item_generation_cannot_roll_attack_affixes"]=40, ["item_generation_cannot_roll_caster_affixes"]=39, ["item_generation_local_maximum_mod_required_level_override"]=43, - ["item_is_haunted"]=6949, - ["item_rarity_+%_while_using_flask"]=2655, - ["jewellery_hellscaping_speed_+%"]=6754, - ["jorrhasts_blacksteel_animate_weapon_duration_+%_final"]=2694, - ["kaoms_primacy_gain_rage_on_attack_crit_cooldown_ms"]=6950, - ["keystone_acrobatics"]=10238, - ["keystone_ailment_crit"]=10239, - ["keystone_ancestral_bond"]=10240, - ["keystone_avatar_of_fire"]=10241, - ["keystone_battlemage"]=10242, - ["keystone_blood_magic"]=10243, - ["keystone_call_to_arms"]=10244, - ["keystone_chaos_inoculation"]=10245, - ["keystone_conduit"]=10246, - ["keystone_corrupted_defences"]=10247, - ["keystone_crimson_dance"]=10248, - ["keystone_divine_flesh"]=10249, - ["keystone_divine_shield"]=10250, - ["keystone_eldritch_battery"]=10251, - ["keystone_elemental_equilibrium"]=10252, - ["keystone_elemental_overload"]=10253, - ["keystone_emperors_heart"]=10254, - ["keystone_eternal_youth"]=10255, - ["keystone_everlasting_sacrifice"]=10256, - ["keystone_ghost_dance"]=10257, - ["keystone_ghost_reaver"]=10258, - ["keystone_glancing_blows"]=10259, - ["keystone_hex_master"]=10260, - ["keystone_hollow_palm_technique"]=10261, - ["keystone_impale"]=10262, - ["keystone_iron_reflexes"]=10263, - ["keystone_lethe_shade"]=10264, - ["keystone_magebane"]=10265, - ["keystone_mana_shield"]=10266, - ["keystone_minion_instability"]=10267, - ["keystone_miracle_of_thaumaturgy"]=10268, - ["keystone_pain_attunement"]=10269, - ["keystone_point_blank"]=10270, - ["keystone_precise_technique"]=10271, - ["keystone_projectile_evasion"]=10272, - ["keystone_quiet_might"]=10273, - ["keystone_retaliation_hits"]=10275, - ["keystone_runebinder"]=10276, - ["keystone_sacred_bastion"]=10277, - ["keystone_secrets_of_suffering"]=10278, - ["keystone_shared_suffering"]=10279, - ["keystone_shepherd_of_souls"]=10280, - ["keystone_solipsism"]=10281, - ["keystone_soul_tether"]=10282, - ["keystone_strong_bowman"]=10283, - ["keystone_supreme_ego"]=10284, - ["keystone_tinctures_drain_life"]=10285, - ["keystone_unwavering_stance"]=10286, - ["keystone_vaal_pact"]=10287, - ["keystone_versatile_combatant"]=10288, - ["keystone_wicked_ward"]=10289, - ["keystone_wind_dancer"]=10290, - ["kill_enemy_on_hit_if_under_10%_life"]=1940, - ["kill_enemy_on_hit_if_under_15%_life"]=4097, - ["kill_enemy_on_hit_if_under_20%_life"]=4098, - ["killed_enemies_apply_impale_damage_to_nearby_enemies_on_death_%_chance"]=6951, - ["killed_monster_dropped_gold_+%"]=6952, - ["killed_monster_dropped_item_quantity_+%_when_frozen"]=2591, - ["killed_monster_dropped_item_rarity_+%_on_crit"]=2541, - ["killed_monster_dropped_item_rarity_+%_when_frozen"]=2594, - ["killed_monster_dropped_item_rarity_+%_when_frozen_or_shocked"]=2592, - ["killed_monster_dropped_item_rarity_+%_when_shattered"]=3463, - ["killed_monster_dropped_item_rarity_+%_when_shocked"]=2593, - ["killing_blow_consumes_corpse_restore_10%_life_chance_%"]=6953, - ["kills_count_twice_for_rampage_%"]=6954, - ["kinetic_blast_%_chance_for_additional_blast"]=4002, - ["kinetic_blast_damage_+%"]=3570, - ["kinetic_blast_projectiles_gain_%_aoe_after_forking"]=6955, - ["kinetic_blast_radius_+%"]=3717, - ["kinetic_bolt_attack_speed_+%"]=6956, - ["kinetic_bolt_blast_and_power_siphon_base_stun_threshold_reduction_+%"]=6957, - ["kinetic_bolt_blast_and_power_siphon_chance_to_double_stun_duration_%"]=6958, - ["kinetic_bolt_projectile_speed_+%"]=6959, - ["kinetic_wand_base_number_of_zig_zags"]=6960, - ["knockback_distance_+%"]=1903, - ["knockback_on_counterattack_%"]=3510, - ["knockback_on_crit_with_bow"]=1855, - ["knockback_on_crit_with_projectile_damage"]=6961, - ["knockback_on_crit_with_staff"]=1856, - ["knockback_on_crit_with_wand"]=1857, - ["knockback_with_bow"]=1430, - ["knockback_with_staff"]=1431, - ["knockback_with_wand"]=1432, - ["labyrinth_darkshrine_additional_divine_font_use_display"]=6962, - ["labyrinth_darkshrine_boss_room_traps_are_disabled"]=6963, - ["labyrinth_darkshrine_divine_font_grants_one_additional_enchantment_use_to_player_x"]=6964, - ["labyrinth_darkshrine_izaro_dropped_unique_items_+"]=6965, - ["labyrinth_darkshrine_izaro_drops_x_additional_treasure_keys"]=6966, - ["labyrinth_darkshrine_players_damage_taken_from_labyrinth_traps_+%"]=6967, - ["labyrinth_darkshrine_players_have_shrine_row_x_effect_for_this_labyrinth"]=6968, - ["labyrinth_owner_x_addition_enchants"]=6969, - ["lancing_steel_%_chance_to_not_consume_ammo"]=6973, - ["lancing_steel_damage_+%"]=6970, - ["lancing_steel_impale_chance_%"]=6971, - ["lancing_steel_number_of_additional_projectiles"]=6972, - ["lancing_steel_primary_proj_pierce_num"]=6974, - ["leap_slam_attack_speed_+%"]=3744, - ["leap_slam_damage_+%"]=3541, - ["leap_slam_radius_+%"]=3701, - ["leech_%_is_instant"]=6977, - ["leech_%_is_instant_while_wielding_claw"]=6547, - ["leech_X_life_per_spell_cast"]=2728, - ["leech_energy_shield_instead_of_life"]=6975, - ["leech_mastery_hit_damage_+%_final_vs_leech_immune"]=6976, + ["item_is_haunted"]=7191, + ["item_rarity_+%_while_using_flask"]=2690, + ["jewellery_hellscaping_speed_+%"]=6987, + ["jorrhasts_blacksteel_animate_weapon_duration_+%_final"]=2729, + ["kaoms_primacy_gain_rage_on_attack_crit_cooldown_ms"]=7192, + ["keystone_acrobatics"]=10564, + ["keystone_ailment_crit"]=10565, + ["keystone_ancestral_bond"]=10566, + ["keystone_avatar_of_fire"]=10567, + ["keystone_battlemage"]=10568, + ["keystone_blood_magic"]=10569, + ["keystone_call_to_arms"]=10570, + ["keystone_chaos_inoculation"]=10571, + ["keystone_conduit"]=10572, + ["keystone_corrupted_defences"]=10573, + ["keystone_crimson_dance"]=10574, + ["keystone_divine_flesh"]=10575, + ["keystone_divine_shield"]=10576, + ["keystone_eldritch_battery"]=10577, + ["keystone_elemental_equilibrium"]=10578, + ["keystone_elemental_overload"]=10579, + ["keystone_emperors_heart"]=10580, + ["keystone_eternal_youth"]=10581, + ["keystone_everlasting_sacrifice"]=10582, + ["keystone_everlasting_sacrifice_if_at_least_6_corrupted_items_equipped"]=7194, + ["keystone_ghost_dance"]=10583, + ["keystone_ghost_reaver"]=10584, + ["keystone_glancing_blows"]=10585, + ["keystone_herald_of_doom"]=10586, + ["keystone_hex_master"]=10587, + ["keystone_hollow_palm_technique"]=10588, + ["keystone_impale"]=10589, + ["keystone_iron_reflexes"]=10590, + ["keystone_lethe_shade"]=10591, + ["keystone_magebane"]=10592, + ["keystone_mana_shield"]=10593, + ["keystone_minion_instability"]=10594, + ["keystone_miracle_of_thaumaturgy"]=10595, + ["keystone_pain_attunement"]=10596, + ["keystone_point_blank"]=10597, + ["keystone_precise_technique"]=10598, + ["keystone_prismatic_bulwark"]=10599, + ["keystone_projectile_evasion"]=10600, + ["keystone_quiet_might"]=10601, + ["keystone_retaliation_hits"]=10603, + ["keystone_runebinder"]=10604, + ["keystone_sacred_bastion"]=10605, + ["keystone_sacrifice_of_blood"]=10606, + ["keystone_sacrifice_of_blood_if_at_least_8_corrupted_items_equipped"]=7195, + ["keystone_secrets_of_suffering"]=10607, + ["keystone_shared_suffering"]=10608, + ["keystone_shepherd_of_souls"]=10609, + ["keystone_shepherd_of_souls_if_at_least_4_corrupted_items_equipped"]=7193, + ["keystone_solipsism"]=10610, + ["keystone_soul_tether"]=10611, + ["keystone_strong_bowman"]=10612, + ["keystone_supreme_ego"]=10613, + ["keystone_tinctures_drain_life"]=10614, + ["keystone_unwavering_stance"]=10615, + ["keystone_vaal_pact"]=10616, + ["keystone_versatile_combatant"]=10617, + ["keystone_wicked_ward"]=10618, + ["keystone_wind_dancer"]=10619, + ["kill_enemy_on_hit_if_under_10%_life"]=1972, + ["kill_enemy_on_hit_if_under_15%_life"]=4143, + ["kill_enemy_on_hit_if_under_20%_life"]=4144, + ["killed_enemies_apply_impale_damage_to_nearby_enemies_on_death_%_chance"]=7196, + ["killed_monster_dropped_gold_+%"]=7197, + ["killed_monster_dropped_item_quantity_+%_when_frozen"]=2626, + ["killed_monster_dropped_item_rarity_+%_on_crit"]=2574, + ["killed_monster_dropped_item_rarity_+%_when_frozen"]=2629, + ["killed_monster_dropped_item_rarity_+%_when_frozen_or_shocked"]=2627, + ["killed_monster_dropped_item_rarity_+%_when_shattered"]=3508, + ["killed_monster_dropped_item_rarity_+%_when_shocked"]=2628, + ["killing_blow_consumes_corpse_restore_10%_life_chance_%"]=7198, + ["kills_count_twice_for_rampage_%"]=7199, + ["kinetic_blast_%_chance_for_additional_blast"]=4048, + ["kinetic_blast_damage_+%"]=3615, + ["kinetic_blast_projectiles_gain_%_aoe_after_forking"]=7200, + ["kinetic_blast_radius_+%"]=3763, + ["kinetic_bolt_attack_speed_+%"]=7201, + ["kinetic_bolt_blast_and_power_siphon_base_stun_threshold_reduction_+%"]=7202, + ["kinetic_bolt_blast_and_power_siphon_chance_to_double_stun_duration_%"]=7203, + ["kinetic_bolt_projectile_speed_+%"]=7204, + ["kinetic_wand_base_number_of_zig_zags"]=7205, + ["kinetic_wand_implicit_cannot_roll_caster_modifiers"]=7206, + ["knockback_distance_+%"]=1935, + ["knockback_on_counterattack_%"]=3555, + ["knockback_on_crit_with_bow"]=1885, + ["knockback_on_crit_with_projectile_damage"]=7207, + ["knockback_on_crit_with_staff"]=1886, + ["knockback_on_crit_with_wand"]=1887, + ["knockback_with_bow"]=1458, + ["knockback_with_staff"]=1459, + ["knockback_with_wand"]=1460, + ["labyrinth_darkshrine_additional_divine_font_use_display"]=7208, + ["labyrinth_darkshrine_boss_room_traps_are_disabled"]=7209, + ["labyrinth_darkshrine_divine_font_grants_one_additional_enchantment_use_to_player_x"]=7210, + ["labyrinth_darkshrine_izaro_dropped_unique_items_+"]=7211, + ["labyrinth_darkshrine_izaro_drops_x_additional_treasure_keys"]=7212, + ["labyrinth_darkshrine_players_damage_taken_from_labyrinth_traps_+%"]=7213, + ["labyrinth_darkshrine_players_have_shrine_row_x_effect_for_this_labyrinth"]=7214, + ["labyrinth_owner_x_addition_enchants"]=7215, + ["lancing_steel_%_chance_to_not_consume_ammo"]=7219, + ["lancing_steel_damage_+%"]=7216, + ["lancing_steel_impale_chance_%"]=7217, + ["lancing_steel_number_of_additional_projectiles"]=7218, + ["lancing_steel_primary_proj_pierce_num"]=7220, + ["leap_slam_attack_speed_+%"]=3790, + ["leap_slam_damage_+%"]=3586, + ["leap_slam_radius_+%"]=3747, + ["leech_%_is_instant"]=7223, + ["leech_%_is_instant_while_wielding_claw"]=6770, + ["leech_X_life_per_spell_cast"]=2763, + ["leech_energy_shield_instead_of_life"]=7221, + ["leech_mastery_hit_damage_+%_final_vs_leech_immune"]=7222, level=1, - ["life_%_gained_on_kill_if_spent_life_recently"]=2830, - ["life_+%_with_no_corrupted_equipped_items"]=4086, - ["life_and_energy_shield_recovery_rate_+%"]=6978, - ["life_and_energy_shield_recovery_rate_+%_if_stopped_taking_damage_over_time_recently"]=6979, - ["life_and_energy_shield_recovery_rate_+%_per_minion_up_to_30%"]=6980, - ["life_and_energy_shield_recovery_rate_+%_per_power_charge"]=6981, - ["life_and_energy_shield_recovery_rate_+%_while_affected_by_malevolence"]=6982, - ["life_and_mana_gain_per_hit"]=1646, - ["life_and_mana_leech_from_attack_damage_permyriad_if_killed_recently"]=6983, - ["life_and_mana_leech_from_physical_damage_permyriad"]=1560, - ["life_degeneration_%_per_minute_not_in_grace"]=1846, - ["life_degeneration_per_minute_not_in_grace"]=1481, - ["life_degeneration_permyriad_per_minute_per_minion"]=6984, - ["life_es_and_mana_recovery_+%_for_4_seconds_on_killing_enemies_affected_by_your_degen"]=3415, - ["life_flask_charges_recovered_per_3_seconds"]=6985, - ["life_flask_effects_are_not_removed_at_full_life"]=6986, - ["life_flask_recovery_is_instant_while_on_low_life"]=6987, - ["life_flasks_gain_X_charges_every_3_seconds_if_you_have_not_used_a_life_flask_recently"]=6988, - ["life_flasks_gain_X_charges_on_suppressing_spell"]=6989, - ["life_flasks_gain_a_charge_on_hit_once_per_second"]=6990, - ["life_flasks_gain_x_charges_when_you_hit_your_marked_enemy"]=6991, - ["life_gain_on_ignited_enemy_hit"]=1648, - ["life_gain_per_target"]=1642, - ["life_gain_per_target_hit_while_affected_by_vitality"]=6992, - ["life_gain_per_target_if_have_used_a_vaal_skill_recently"]=6993, - ["life_gained_on_attack_hit_vs_cursed_enemies"]=6994, - ["life_gained_on_bleeding_enemy_hit"]=3457, - ["life_gained_on_block"]=1662, - ["life_gained_on_cull"]=6995, - ["life_gained_on_enemy_death_per_frenzy_charge"]=2829, - ["life_gained_on_enemy_death_per_level"]=2867, - ["life_gained_on_hit_per_enemy_status_ailment"]=2965, - ["life_gained_on_kill_per_wither_stack_on_slain_enemy_%"]=6996, - ["life_gained_on_killing_ignited_enemies"]=1658, - ["life_gained_on_spell_hit_per_enemy_status_ailment"]=2966, - ["life_gained_on_taunting_enemy"]=1688, - ["life_leech_%_is_instant"]=7011, - ["life_leech_%_is_instant_per_defiance"]=7012, - ["life_leech_%_is_instant_per_equipped_claw"]=7013, - ["life_leech_applies_to_enemies_%"]=3075, - ["life_leech_applies_to_energy_shield_on_full_life"]=6997, - ["life_leech_does_not_stop_at_full_life"]=3101, - ["life_leech_from_any_damage_permyriad"]=1566, - ["life_leech_from_any_damage_permyriad_per_siphoning_charge"]=4225, - ["life_leech_from_any_damage_permyriad_while_affected_by_vitality"]=6998, - ["life_leech_from_any_damage_permyriad_while_focused"]=6999, - ["life_leech_from_any_damage_permyriad_with_at_least_5_total_power_frenzy_endurance_charges"]=7001, - ["life_leech_from_attack_damage_permyriad_per_frenzy_charge"]=7002, - ["life_leech_from_attack_damage_permyriad_vs_bleeding_enemies"]=1601, - ["life_leech_from_attack_damage_permyriad_vs_maimed_enemies"]=7003, - ["life_leech_from_attack_damage_permyriad_vs_poisoned_enemies"]=4065, - ["life_leech_from_attack_damage_permyriad_vs_taunted_enemies"]=7004, - ["life_leech_from_fire_damage_permyriad_while_affected_by_anger"]=7005, - ["life_leech_from_fire_damage_while_ignited_permyriad"]=7006, - ["life_leech_from_minion_damage_%"]=7007, - ["life_leech_from_physical_attack_damage_permyriad"]=1554, - ["life_leech_from_physical_damage_with_bow_permyriad"]=1559, - ["life_leech_from_physical_damage_with_claw_permyriad"]=1558, - ["life_leech_from_skills_used_by_totems_permyriad"]=2482, - ["life_leech_from_spell_damage_permyriad_if_shield_has_30%_block_chance"]=4261, - ["life_leech_from_spell_damage_permyriad_while_you_have_arcane_surge"]=7008, - ["life_leech_is_instant_for_exerted_attacks"]=7009, - ["life_leech_on_damage_taken_%_permyriad"]=7010, - ["life_leech_on_overkill_damage_%"]=3099, - ["life_leech_permyriad_from_elemental_damage_against_enemies_with_elemental_status_ailments"]=3202, - ["life_leech_permyriad_on_crit"]=1600, - ["life_leech_permyriad_vs_cursed_enemies"]=4145, - ["life_leech_permyriad_vs_poisoned_enemies"]=7014, - ["life_leech_speed_+%"]=2058, - ["life_leech_speed_+%_per_equipped_corrupted_item"]=2990, - ["life_leech_speed_is_doubled"]=7015, - ["life_leech_uses_chaos_damage_when_X_corrupted_items_equipped"]=3002, - ["life_loss_%_per_minute_if_have_been_hit_recently"]=7016, - ["life_loss_%_per_minute_per_rage_while_not_losing_rage"]=7017, - ["life_mana_es_leech_speed_+%"]=7018, - ["life_mana_es_recovery_rate_+%_per_different_tribe_tattoos_allocated"]=7019, - ["life_mana_es_recovery_rate_+%_per_endurance_charge"]=7020, - ["life_mastery_count_maximum_life_+%_final"]=7021, - ["life_per_level"]=7022, - ["life_recoup_also_applies_to_energy_shield"]=7023, - ["life_recoup_applies_to_energy_shield_instead"]=7024, - ["life_recovery_+%_from_flasks_while_on_low_life"]=7027, - ["life_recovery_from_flasks_instead_applies_to_nearby_allies_%"]=7025, - ["life_recovery_from_regeneration_is_not_applied"]=7026, - ["life_recovery_rate_+%"]=1484, - ["life_recovery_rate_+%_if_have_taken_fire_damage_from_an_enemy_hit_recently"]=7028, - ["life_recovery_rate_+%_if_havent_killed_recently"]=7029, - ["life_recovery_rate_+%_while_affected_by_vitality"]=7030, - ["life_regen_per_minute_per_endurance_charge"]=2905, - ["life_regenerate_rate_per_second_%_while_totem_active"]=3938, - ["life_regeneration_%_per_minute_if_detonated_mine_recently"]=7044, - ["life_regeneration_%_per_minute_if_player_minion_died_recently"]=7045, - ["life_regeneration_%_per_minute_if_stunned_an_enemy_recently"]=7031, - ["life_regeneration_per_minute_%_per_ailment_affecting_you"]=7035, - ["life_regeneration_per_minute_%_per_fortification"]=7036, - ["life_regeneration_per_minute_%_while_affected_by_guard_skill"]=7037, - ["life_regeneration_per_minute_%_while_burning"]=7038, - ["life_regeneration_per_minute_%_while_channelling"]=7039, - ["life_regeneration_per_minute_%_while_fortified"]=3088, - ["life_regeneration_per_minute_%_while_frozen"]=3628, - ["life_regeneration_per_minute_if_you_have_at_least_1000_maximum_energy_shield"]=4257, - ["life_regeneration_per_minute_if_you_have_at_least_1500_maximum_energy_shield"]=4258, - ["life_regeneration_per_minute_if_you_have_at_least_500_maximum_energy_shield"]=4256, - ["life_regeneration_per_minute_in_blood_stance"]=9720, - ["life_regeneration_per_minute_per_1%_uncapped_fire_damage_resistance"]=7032, - ["life_regeneration_per_minute_per_active_buff"]=7033, - ["life_regeneration_per_minute_per_nearby_corpse"]=7034, - ["life_regeneration_per_minute_while_affected_by_vitality"]=7040, - ["life_regeneration_per_minute_while_ignited"]=7041, - ["life_regeneration_per_minute_while_moving"]=7042, - ["life_regeneration_per_minute_while_you_have_avians_flight"]=7043, - ["life_regeneration_per_minute_with_no_corrupted_equipped_items"]=4087, - ["life_regeneration_rate_+%"]=1483, - ["life_regeneration_rate_+%_while_es_full"]=2967, - ["life_regeneration_rate_per_minute_%"]=1847, - ["life_regeneration_rate_per_minute_%_if_blocked_recently"]=7048, - ["life_regeneration_rate_per_minute_%_if_consumed_corpse_recently"]=7049, - ["life_regeneration_rate_per_minute_%_if_crit_in_past_8_seconds"]=7050, - ["life_regeneration_rate_per_minute_%_if_have_been_hit_recently"]=7051, - ["life_regeneration_rate_per_minute_%_if_have_taken_fire_damage_from_an_enemy_hit_recently"]=7052, - ["life_regeneration_rate_per_minute_%_if_hit_cursed_enemy_recently"]=7046, - ["life_regeneration_rate_per_minute_%_if_taunted_an_enemy_recently"]=4108, - ["life_regeneration_rate_per_minute_%_if_used_life_flask_in_past_10_seconds"]=7053, - ["life_regeneration_rate_per_minute_%_per_500_maximum_energy_shield"]=7054, - ["life_regeneration_rate_per_minute_%_per_endurance_charge"]=1482, - ["life_regeneration_rate_per_minute_%_per_fragile_regrowth"]=4286, - ["life_regeneration_rate_per_minute_%_per_frenzy_charge"]=2527, - ["life_regeneration_rate_per_minute_%_per_mine_detonated_recently_up_to_20%"]=7055, - ["life_regeneration_rate_per_minute_%_per_nearby_corpse_up_to_3%"]=7056, - ["life_regeneration_rate_per_minute_%_per_power_charge"]=7057, - ["life_regeneration_rate_per_minute_%_per_raised_zombie"]=7058, - ["life_regeneration_rate_per_minute_%_per_trap_triggered_recently_up_to_20%"]=7059, - ["life_regeneration_rate_per_minute_%_when_on_chilled_ground"]=2049, - ["life_regeneration_rate_per_minute_%_when_on_low_life"]=1848, - ["life_regeneration_rate_per_minute_%_while_affected_by_vitality"]=7047, - ["life_regeneration_rate_per_minute_%_while_moving"]=7060, - ["life_regeneration_rate_per_minute_%_while_stationary"]=7061, - ["life_regeneration_rate_per_minute_%_while_using_flask"]=7062, - ["life_regeneration_rate_per_minute_%_with_400_or_more_strength"]=7063, - ["life_regeneration_rate_per_minute_for_each_equipped_uncorrupted_item"]=2991, - ["life_regeneration_rate_per_minute_per_level"]=2857, - ["life_regeneration_rate_per_minute_while_on_low_life"]=7064, - ["life_reserved_by_stat_%"]=2340, - ["light_radius_+%"]=2400, - ["light_radius_+%_while_phased"]=2409, - ["light_radius_additive_modifiers_apply_to_area_%_value"]=2398, - ["light_radius_additive_modifiers_apply_to_damage"]=2399, - ["light_radius_increases_apply_to_accuracy"]=7065, - ["light_radius_increases_apply_to_area_of_effect"]=7066, - ["light_radius_scales_with_energy_shield"]=2640, - ["lightning_ailment_duration_+%"]=7067, - ["lightning_ailment_effect_+%"]=7069, - ["lightning_ailment_effect_+%_against_chilled_enemies"]=7068, - ["lightning_ailments_effect_+%_final_if_hit_highest_lightning"]=7070, - ["lightning_and_chaos_damage_resistance_%"]=7071, - ["lightning_arrow_%_chance_to_hit_an_additional_enemy"]=7074, - ["lightning_arrow_and_ice_shot_all_damage_can_ignite"]=7072, - ["lightning_arrow_and_ice_shot_ignite_damage_+100%_final_chance"]=7073, - ["lightning_arrow_damage_+%"]=3542, - ["lightning_arrow_maximum_number_of_extra_targets"]=4012, - ["lightning_arrow_radius_+%"]=3702, - ["lightning_conduit_and_galvanic_field_shatter_on_killing_blow"]=7075, - ["lightning_conduit_area_of_effect_+%"]=7076, - ["lightning_conduit_cast_speed_+%"]=7077, - ["lightning_conduit_damage_+%"]=7078, - ["lightning_critical_strike_chance_+%"]=1390, - ["lightning_critical_strike_multiplier_+"]=1415, - ["lightning_damage_%_taken_from_mana_before_life"]=4053, - ["lightning_damage_%_to_add_as_chaos"]=1841, - ["lightning_damage_%_to_add_as_chaos_per_power_charge"]=7081, - ["lightning_damage_%_to_add_as_cold"]=1840, - ["lightning_damage_%_to_add_as_cold_per_2%_shock_effect_on_enemy"]=7082, - ["lightning_damage_%_to_add_as_cold_vs_chilled_enemies"]=7083, - ["lightning_damage_%_to_add_as_fire"]=1839, - ["lightning_damage_+%"]=1285, - ["lightning_damage_+%_per_10_intelligence"]=4017, - ["lightning_damage_+%_per_frenzy_charge"]=2828, - ["lightning_damage_+%_per_lightning_resistance_above_75"]=7080, - ["lightning_damage_+%_while_affected_by_herald_of_thunder"]=7084, - ["lightning_damage_+%_while_affected_by_wrath"]=7085, - ["lightning_damage_can_chill"]=2775, - ["lightning_damage_can_freeze"]=2781, - ["lightning_damage_can_ignite"]=7079, - ["lightning_damage_cannot_shock"]=2787, - ["lightning_damage_resistance_%_while_affected_by_herald_of_thunder"]=7086, - ["lightning_damage_resistance_+%"]=1544, - ["lightning_damage_resistance_is_%"]=1541, - ["lightning_damage_taken_%_as_cold"]=3072, - ["lightning_damage_taken_%_as_fire"]=3070, - ["lightning_damage_taken_+"]=7088, - ["lightning_damage_taken_+%"]=3278, - ["lightning_damage_taken_goes_to_life_over_4_seconds_%"]=7087, - ["lightning_damage_taken_per_minute_per_power_charge_if_have_crit_recently"]=10185, - ["lightning_damage_to_return_to_melee_attacker"]=2106, - ["lightning_damage_to_return_when_hit"]=2111, - ["lightning_damage_with_attack_skills_+%"]=7089, - ["lightning_damage_with_spell_skills_+%"]=7090, - ["lightning_dot_multiplier_+"]=1166, - ["lightning_explosion_mine_aura_effect_+%"]=7091, - ["lightning_explosion_mine_damage_+%"]=7092, - ["lightning_explosion_mine_throwing_speed_+%"]=7093, - ["lightning_exposure_on_hit_magnitude"]=7094, - ["lightning_golem_damage_+%"]=3583, - ["lightning_golem_elemental_resistances_%"]=3873, - ["lightning_hit_and_dot_damage_%_taken_as_fire"]=7095, - ["lightning_hit_damage_+%_vs_chilled_enemies"]=7096, - ["lightning_reflect_damage_taken_+%_while_affected_by_purity_of_lightning"]=7097, - ["lightning_resistance_cannot_be_penetrated"]=7098, - ["lightning_resistance_does_not_apply_to_lighting_damage"]=7099, - ["lightning_skill_chance_to_inflict_lightning_exposure_%"]=7100, - ["lightning_skill_gem_level_+"]=7101, - ["lightning_skill_gem_level_+_if_6_crusader_items"]=4375, - ["lightning_skill_mana_cost_+%_final_while_shocked"]=7102, - ["lightning_skill_stun_threshold_+%"]=7103, - ["lightning_skills_chance_to_poison_on_hit_%"]=7104, - ["lightning_spell_physical_damage_%_to_convert_to_lightning"]=7105, - ["lightning_spell_skill_gem_level_+"]=1518, - ["lightning_strike_additional_pierce"]=3840, - ["lightning_strike_and_frost_blades_all_damage_can_ignite"]=7106, - ["lightning_strike_and_frost_blades_ignite_damage_+100%_final_chance"]=7107, - ["lightning_strike_damage_+%"]=3526, - ["lightning_strike_num_of_additional_projectiles"]=3831, - ["lightning_tendrils_critical_strike_chance_+%"]=3998, - ["lightning_tendrils_damage_+%"]=3527, - ["lightning_tendrils_radius_+%"]=3695, - ["lightning_tendrils_skill_area_of_effect_+%_per_enemy_hit"]=7108, - ["lightning_tendrils_totems_from_this_skill_grant_spark_effect_duration_+%_to_parent"]=7109, - ["lightning_tower_trap_additional_number_of_beams"]=7110, - ["lightning_tower_trap_cast_speed_+%"]=7111, - ["lightning_tower_trap_cooldown_speed_+%"]=7112, - ["lightning_tower_trap_damage_+%"]=7113, - ["lightning_tower_trap_duration_+%"]=7114, - ["lightning_tower_trap_throwing_speed_+%"]=7115, - ["lightning_trap_additional_pierce"]=3841, - ["lightning_trap_cooldown_speed_+%"]=3310, - ["lightning_trap_damage_+%"]=3308, - ["lightning_trap_lightning_resistance_penetration_%"]=7116, - ["lightning_trap_number_of_additional_projectiles"]=3309, - ["lightning_trap_shock_effect_+%"]=7117, - ["lightning_warp_cast_speed_+%"]=3759, - ["lightning_warp_damage_+%"]=3543, - ["lightning_warp_duration_+%"]=3819, - ["lightning_weakness_ignores_hexproof"]=2506, - ["link_buff_effect_+%_on_animate_guardian"]=7118, - ["link_effect_+%_when_50%_expired"]=7119, - ["link_grace_period_8_second_override"]=7120, - ["link_skill_buff_effect_+%"]=7121, - ["link_skill_buff_effect_+%_if_linked_target_recently"]=7122, - ["link_skill_cast_speed_+%"]=7123, - ["link_skill_cost_life_instead_of_mana"]=7124, - ["link_skill_duration_+%"]=7125, - ["link_skill_gem_level_+"]=7126, - ["link_skill_link_target_cannot_die_for_X_seconds"]=7127, - ["link_skill_lose_no_experience_on_link_target_death"]=7128, - ["link_skill_mana_cost_+%"]=7129, - ["link_skills_allies_in_beam_lucky_elemental_damage"]=7130, - ["link_skills_allies_in_beam_max_elemental_resistance_%"]=7131, - ["link_skills_can_target_animate_guardian"]=7132, - ["link_skills_can_target_minions"]=7133, - ["link_skills_enemies_in_beam_aoe_cannot_inflict_elemental_ailments"]=7134, - ["link_skills_enemies_in_beam_elemental_resistance_%"]=7135, - ["link_skills_grant_damage_+%"]=7136, - ["link_skills_grant_damage_taken_+%"]=7137, - ["link_skills_grant_redirect_curses_to_link_source"]=7138, - ["link_skills_grant_redirect_elemental_ailments_to_link_source"]=7139, - ["link_to_X_additional_random_allies"]=7140, - ["linked_targets_share_endurance_frenzy_power_charges_with_you"]=7141, - ["local_accuracy_rating"]=1925, - ["local_accuracy_rating_+%"]=1926, - ["local_accuracy_rating_+%_per_2%_quality"]=7142, - ["local_adaptation_rating"]=1440, - ["local_adaptation_rating_+%"]=1442, - ["local_additional_block_chance_%"]=2150, - ["local_affliction_jewel_display_small_nodes_grant_nothing"]=7143, - ["local_affliction_jewel_small_nodes_grant_%_life_regeneration_per_minute"]=7180, - ["local_affliction_jewel_small_nodes_grant_all_attributes"]=7144, - ["local_affliction_jewel_small_nodes_grant_armour"]=7145, - ["local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_while_affected_by_a_herald"]=7146, - ["local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_with_channelling_skills"]=7147, - ["local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_with_chaos_skills"]=7148, - ["local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_with_cold_skills"]=7149, - ["local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_with_elemental_skills"]=7150, - ["local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_with_fire_skills"]=7151, - ["local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_with_lightning_skills"]=7152, - ["local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_with_physical_skills"]=7153, - ["local_affliction_jewel_small_nodes_grant_attack_speed_+%"]=7154, - ["local_affliction_jewel_small_nodes_grant_base_aura_area_of_effect_+%"]=7155, - ["local_affliction_jewel_small_nodes_grant_base_cast_speed_+%"]=7156, - ["local_affliction_jewel_small_nodes_grant_base_critical_strike_multiplier_+"]=7157, - ["local_affliction_jewel_small_nodes_grant_base_elemental_status_ailment_duration_+%"]=7158, - ["local_affliction_jewel_small_nodes_grant_base_projectile_speed_+%"]=7159, - ["local_affliction_jewel_small_nodes_grant_base_skill_area_of_effect_+%"]=7160, - ["local_affliction_jewel_small_nodes_grant_chaos_resistance_%"]=7161, - ["local_affliction_jewel_small_nodes_grant_charges_gained_+%"]=7162, - ["local_affliction_jewel_small_nodes_grant_cold_resistance_%"]=7163, - ["local_affliction_jewel_small_nodes_grant_curse_area_of_effect_+%"]=7164, - ["local_affliction_jewel_small_nodes_grant_damage_+%"]=7166, - ["local_affliction_jewel_small_nodes_grant_damage_over_time_+%"]=7165, - ["local_affliction_jewel_small_nodes_grant_dex"]=7167, - ["local_affliction_jewel_small_nodes_grant_elemental_resistance_%"]=7168, - ["local_affliction_jewel_small_nodes_grant_evasion"]=7169, - ["local_affliction_jewel_small_nodes_grant_fire_resistance_%"]=7170, - ["local_affliction_jewel_small_nodes_grant_int"]=7171, - ["local_affliction_jewel_small_nodes_grant_lightning_resistance_%"]=7172, - ["local_affliction_jewel_small_nodes_grant_mana_regeneration_+%"]=7173, - ["local_affliction_jewel_small_nodes_grant_maximum_energy_shield"]=7174, - ["local_affliction_jewel_small_nodes_grant_maximum_life"]=7175, - ["local_affliction_jewel_small_nodes_grant_maximum_mana"]=7176, - ["local_affliction_jewel_small_nodes_grant_minion_attack_and_cast_speed_+%"]=7177, - ["local_affliction_jewel_small_nodes_grant_minion_attack_and_cast_speed_+%_while_you_are_affected_by_a_herald"]=7178, - ["local_affliction_jewel_small_nodes_grant_minion_life_regeneration_rate_per_minute_%"]=7179, - ["local_affliction_jewel_small_nodes_grant_sigil_target_search_range_+%"]=7181, - ["local_affliction_jewel_small_nodes_grant_str"]=7182, - ["local_affliction_jewel_small_nodes_grant_summon_totem_cast_speed_+%"]=7183, - ["local_affliction_jewel_small_nodes_grant_trap_and_mine_throwing_speed_+%"]=7184, - ["local_affliction_jewel_small_nodes_grant_warcry_duration_+%"]=7185, - ["local_affliction_jewel_small_nodes_have_effect_+%"]=7186, - ["local_affliction_notable_adrenaline"]=7187, - ["local_affliction_notable_advance_guard"]=7188, - ["local_affliction_notable_aerialist"]=7189, - ["local_affliction_notable_aerodynamics"]=7190, - ["local_affliction_notable_agent_of_destruction"]=7191, - ["local_affliction_notable_aggressive_defence"]=7192, - ["local_affliction_notable_alchemist"]=7193, - ["local_affliction_notable_ancestral_echo"]=7194, - ["local_affliction_notable_ancestral_guidance"]=7195, - ["local_affliction_notable_ancestral_inspiration"]=7196, - ["local_affliction_notable_ancestral_might"]=7197, - ["local_affliction_notable_ancestral_preservation"]=7198, - ["local_affliction_notable_ancestral_reach"]=7199, - ["local_affliction_notable_antifreeze"]=7200, - ["local_affliction_notable_antivenom"]=7201, - ["local_affliction_notable_arcane_focus"]=7202, - ["local_affliction_notable_arcane_heroism"]=7203, - ["local_affliction_notable_arcane_pyrotechnics"]=7204, - ["local_affliction_notable_arcing_shot"]=7205, - ["local_affliction_notable_assert_dominance"]=7206, - ["local_affliction_notable_astonishing_affliction"]=7207, - ["local_affliction_notable_basics_of_pain"]=7208, - ["local_affliction_notable_battle_hardened"]=7209, - ["local_affliction_notable_battlefield_dominator"]=7210, - ["local_affliction_notable_blacksmith"]=7211, - ["local_affliction_notable_blanketed_snow"]=7212, - ["local_affliction_notable_blast_freeze"]=7213, - ["local_affliction_notable_blessed"]=7214, - ["local_affliction_notable_blessed_rebirth"]=7215, - ["local_affliction_notable_blood_artist"]=7216, - ["local_affliction_notable_bloodscent"]=7217, - ["local_affliction_notable_blowback"]=7218, - ["local_affliction_notable_bodyguards"]=7219, - ["local_affliction_notable_born_of_chaos"]=7220, - ["local_affliction_notable_brand_loyalty"]=7221, - ["local_affliction_notable_brewed_for_potency"]=7222, - ["local_affliction_notable_broadside"]=7223, - ["local_affliction_notable_brush_with_death"]=7224, - ["local_affliction_notable_brutal_infamy"]=7225, - ["local_affliction_notable_burden_projection"]=7226, - ["local_affliction_notable_burning_bright"]=7227, - ["local_affliction_notable_calamitous"]=7228, - ["local_affliction_notable_call_to_the_slaughter"]=7229, - ["local_affliction_notable_capacitor"]=7230, - ["local_affliction_notable_careful_handling"]=7231, - ["local_affliction_notable_chilling_presence"]=7232, - ["local_affliction_notable_chip_away"]=7233, - ["local_affliction_notable_circling_oblivion"]=7234, - ["local_affliction_notable_clarity_of_purpose"]=7235, - ["local_affliction_notable_cold_blooded_killer"]=7236, - ["local_affliction_notable_cold_conduction"]=7237, - ["local_affliction_notable_cold_to_the_core"]=7238, - ["local_affliction_notable_combat_rhythm"]=7239, - ["local_affliction_notable_compound_injury"]=7240, - ["local_affliction_notable_confident_combatant"]=7241, - ["local_affliction_notable_conjured_wall"]=7242, - ["local_affliction_notable_conservation_of_energy"]=7243, - ["local_affliction_notable_cooked_alive"]=7244, - ["local_affliction_notable_corrosive_elements"]=7245, - ["local_affliction_notable_cremator"]=7246, - ["local_affliction_notable_cry_wolf"]=7247, - ["local_affliction_notable_cult_leader"]=7248, - ["local_affliction_notable_daring_ideas"]=7249, - ["local_affliction_notable_dark_discourse"]=7250, - ["local_affliction_notable_dark_ideation"]=7251, - ["local_affliction_notable_dark_messenger"]=7252, - ["local_affliction_notable_darting_movements"]=7253, - ["local_affliction_notable_deadly_repartee"]=7254, - ["local_affliction_notable_deep_chill"]=7255, - ["local_affliction_notable_deep_cuts"]=7256, - ["local_affliction_notable_depression"]=7257, - ["local_affliction_notable_determined_preparation"]=7258, - ["local_affliction_notable_devastator"]=7259, - ["local_affliction_notable_disciples"]=7260, - ["local_affliction_notable_disciplined_preparation"]=7261, - ["local_affliction_notable_disease_vector"]=7262, - ["local_affliction_notable_disorienting_display"]=7263, - ["local_affliction_notable_disorienting_wounds"]=7264, - ["local_affliction_notable_distilled_perfection"]=7265, - ["local_affliction_notable_doedres_apathy"]=7266, - ["local_affliction_notable_doedres_gluttony"]=7267, - ["local_affliction_notable_doryanis_lesson"]=7268, - ["local_affliction_notable_dragon_hunter"]=7269, - ["local_affliction_notable_dread_march"]=7270, - ["local_affliction_notable_drive_the_destruction"]=7271, - ["local_affliction_notable_eldritch_inspiration"]=7272, - ["local_affliction_notable_elegant_form"]=7273, - ["local_affliction_notable_empowered_envoy"]=7274, - ["local_affliction_notable_endbringer"]=7275, - ["local_affliction_notable_enduring_composure"]=7276, - ["local_affliction_notable_enduring_focus"]=7277, - ["local_affliction_notable_enduring_ward"]=7278, - ["local_affliction_notable_energy_from_naught"]=7279, - ["local_affliction_notable_essence_rush"]=7280, - ["local_affliction_notable_eternal_suffering"]=7281, - ["local_affliction_notable_evil_eye"]=7282, - ["local_affliction_notable_expansive_might"]=7283, - ["local_affliction_notable_expendability"]=7284, - ["local_affliction_notable_expert_sabotage"]=7285, - ["local_affliction_notable_explosive_force"]=7286, - ["local_affliction_notable_exposure_therapy"]=7287, - ["local_affliction_notable_eye_of_the_storm"]=7288, - ["local_affliction_notable_eye_to_eye"]=7289, - ["local_affliction_notable_fan_of_blades"]=7290, - ["local_affliction_notable_fan_the_flames"]=7291, - ["local_affliction_notable_fasting"]=7292, - ["local_affliction_notable_fearsome_warrior"]=7293, - ["local_affliction_notable_feast_of_flesh"]=7294, - ["local_affliction_notable_feasting_fiends"]=7295, - ["local_affliction_notable_feed_the_fury"]=7296, - ["local_affliction_notable_fettle"]=7297, - ["local_affliction_notable_fire_attunement"]=7298, - ["local_affliction_notable_first_among_equals"]=7299, - ["local_affliction_notable_flaming_doom"]=7300, - ["local_affliction_notable_flexible_sentry"]=7301, - ["local_affliction_notable_flow_of_life"]=7302, - ["local_affliction_notable_follow_through"]=7303, - ["local_affliction_notable_force_multiplier"]=7304, - ["local_affliction_notable_frost_breath"]=7305, - ["local_affliction_notable_fuel_the_fight"]=7306, - ["local_affliction_notable_furious_assault"]=7307, - ["local_affliction_notable_genius"]=7308, - ["local_affliction_notable_gladiatorial_combat"]=7309, - ["local_affliction_notable_gladiators_fortitude"]=7310, - ["local_affliction_notable_graceful_execution"]=7311, - ["local_affliction_notable_graceful_preparation"]=7312, - ["local_affliction_notable_grand_design"]=7313, - ["local_affliction_notable_grim_oath"]=7314, - ["local_affliction_notable_grounded_commander"]=7315, - ["local_affliction_notable_guerilla_tactics"]=7316, - ["local_affliction_notable_haemorrhage"]=7317, - ["local_affliction_notable_haunting_shout"]=7318, - ["local_affliction_notable_heart_of_iron"]=7319, - ["local_affliction_notable_heavy_hitter"]=7320, - ["local_affliction_notable_heavy_trauma"]=7321, - ["local_affliction_notable_heraldry"]=7322, - ["local_affliction_notable_hex_breaker"]=7323, - ["local_affliction_notable_hibernator"]=7324, - ["local_affliction_notable_hit_and_run"]=7325, - ["local_affliction_notable_holistic_health"]=7326, - ["local_affliction_notable_holy_conquest"]=7327, - ["local_affliction_notable_hounds_mark"]=7328, - ["local_affliction_notable_hulking_corpses"]=7329, - ["local_affliction_notable_improvisor"]=7330, - ["local_affliction_notable_insatiable_killer"]=7331, - ["local_affliction_notable_inspired_oppression"]=7332, - ["local_affliction_notable_insulated"]=7333, - ["local_affliction_notable_intensity"]=7334, - ["local_affliction_notable_invigorating_portents"]=7335, - ["local_affliction_notable_iron_breaker"]=7336, - ["local_affliction_notable_lasting_impression"]=7337, - ["local_affliction_notable_lead_by_example"]=7338, - ["local_affliction_notable_life_from_death"]=7339, - ["local_affliction_notable_lightnings_call"]=7340, - ["local_affliction_notable_liquid_inspiration"]=7341, - ["local_affliction_notable_low_tolerance"]=7342, - ["local_affliction_notable_mage_bane"]=7343, - ["local_affliction_notable_mage_hunter"]=7344, - ["local_affliction_notable_magnifier"]=7345, - ["local_affliction_notable_martial_mastery"]=7346, - ["local_affliction_notable_martial_momentum"]=7347, - ["local_affliction_notable_martial_prowess"]=7348, - ["local_affliction_notable_master_of_command"]=7349, - ["local_affliction_notable_master_of_fear"]=7350, - ["local_affliction_notable_master_of_fire"]=7351, - ["local_affliction_notable_master_of_the_maelstrom"]=7352, - ["local_affliction_notable_master_the_fundamentals"]=7353, - ["local_affliction_notable_menders_wellspring"]=7354, - ["local_affliction_notable_militarism"]=7355, - ["local_affliction_notable_mindfulness"]=7356, - ["local_affliction_notable_mob_mentality"]=7357, - ["local_affliction_notable_molten_ones_mark"]=7358, - ["local_affliction_notable_mystical_ward"]=7359, - ["local_affliction_notable_natural_vigour"]=7360, - ["local_affliction_notable_no_witnesses"]=7361, - ["local_affliction_notable_non_flammable"]=7362, - ["local_affliction_notable_numbing_elixir"]=7363, - ["local_affliction_notable_one_with_the_shield"]=7364, - ["local_affliction_notable_openness"]=7365, - ["local_affliction_notable_opportunistic_fusilade"]=7366, - ["local_affliction_notable_overlord"]=7367, - ["local_affliction_notable_overshock"]=7368, - ["local_affliction_notable_overwhelming_malice"]=7369, - ["local_affliction_notable_paralysis"]=7370, - ["local_affliction_notable_peace_amidst_chaos"]=7371, - ["local_affliction_notable_peak_vigour"]=7372, - ["local_affliction_notable_phlebotomist"]=7373, - ["local_affliction_notable_powerful_assault"]=7374, - ["local_affliction_notable_powerful_ward"]=7375, - ["local_affliction_notable_practiced_caster"]=7376, - ["local_affliction_notable_precise_commander"]=7377, - ["local_affliction_notable_precise_focus"]=7378, - ["local_affliction_notable_precise_retaliation"]=7379, - ["local_affliction_notable_pressure_points"]=7380, - ["local_affliction_notable_primordial_bond"]=7381, - ["local_affliction_notable_prismatic_carapace"]=7382, - ["local_affliction_notable_prismatic_dance"]=7383, - ["local_affliction_notable_prismatic_heart"]=7384, - ["local_affliction_notable_prodigious_defense"]=7385, - ["local_affliction_notable_provocateur"]=7386, - ["local_affliction_notable_pure_agony"]=7387, - ["local_affliction_notable_pure_aptitude"]=7388, - ["local_affliction_notable_pure_commander"]=7389, - ["local_affliction_notable_pure_guile"]=7390, - ["local_affliction_notable_pure_might"]=7391, - ["local_affliction_notable_purposeful_harbinger"]=7392, - ["local_affliction_notable_quick_and_deadly"]=7393, - ["local_affliction_notable_quick_getaway"]=7394, - ["local_affliction_notable_rapid_infusion"]=7395, - ["local_affliction_notable_rattling_bellow"]=7396, - ["local_affliction_notable_raze_and_pillage"]=7397, - ["local_affliction_notable_readiness"]=7398, - ["local_affliction_notable_remarkable"]=7399, - ["local_affliction_notable_rend"]=7400, - ["local_affliction_notable_renewal"]=7401, - ["local_affliction_notable_repeater"]=7402, - ["local_affliction_notable_replenishing_presence"]=7403, - ["local_affliction_notable_riot_queller"]=7404, - ["local_affliction_notable_rot_resistant"]=7405, - ["local_affliction_notable_rote_reinforcement"]=7406, - ["local_affliction_notable_rotten_claws"]=7407, - ["local_affliction_notable_run_through"]=7408, - ["local_affliction_notable_sadist"]=7409, - ["local_affliction_notable_sage"]=7410, - ["local_affliction_notable_sap_psyche"]=7411, - ["local_affliction_notable_savage_response"]=7412, - ["local_affliction_notable_savour_the_moment"]=7413, - ["local_affliction_notable_scintillating_idea"]=7414, - ["local_affliction_notable_seal_mender"]=7415, - ["local_affliction_notable_second_skin"]=7416, - ["local_affliction_notable_seeker_runes"]=7417, - ["local_affliction_notable_self_fulfilling_prophecy"]=7418, - ["local_affliction_notable_septic_spells"]=7419, - ["local_affliction_notable_set_and_forget"]=7420, - ["local_affliction_notable_shifting_shadow"]=7421, - ["local_affliction_notable_shrieking_bolts"]=7422, - ["local_affliction_notable_skeletal_atrophy"]=7423, - ["local_affliction_notable_skullbreaker"]=7424, - ["local_affliction_notable_sleepless_sentries"]=7425, - ["local_affliction_notable_smite_the_weak"]=7426, - ["local_affliction_notable_smoking_remains"]=7427, - ["local_affliction_notable_snaring_spirits"]=7428, - ["local_affliction_notable_snowstorm"]=7429, - ["local_affliction_notable_special_reserve"]=7430, - ["local_affliction_notable_spiked_concoction"]=7431, - ["local_affliction_notable_spring_back"]=7432, - ["local_affliction_notable_stalwart_commander"]=7433, - ["local_affliction_notable_steady_torment"]=7434, - ["local_affliction_notable_stoic_focus"]=7435, - ["local_affliction_notable_storm_drinker"]=7436, - ["local_affliction_notable_stormrider"]=7437, - ["local_affliction_notable_storms_hand"]=7438, - ["local_affliction_notable_streamlined"]=7439, - ["local_affliction_notable_strike_leader"]=7440, - ["local_affliction_notable_stubborn_student"]=7441, - ["local_affliction_notable_student_of_decay"]=7442, - ["local_affliction_notable_sublime_sensation"]=7443, - ["local_affliction_notable_summer_commander"]=7444, - ["local_affliction_notable_supercharge"]=7445, - ["local_affliction_notable_surefooted_striker"]=7446, - ["local_affliction_notable_surging_vitality"]=7447, - ["local_affliction_notable_surprise_sabotage"]=7448, - ["local_affliction_notable_tempered_arrowheads"]=7449, - ["local_affliction_notable_thaumophage"]=7450, - ["local_affliction_notable_thunderstruck"]=7451, - ["local_affliction_notable_titanic_swings"]=7452, - ["local_affliction_notable_touch_of_cruelty"]=7453, - ["local_affliction_notable_towering_threat"]=7454, - ["local_affliction_notable_unholy_grace"]=7455, - ["local_affliction_notable_unspeakable_gifts"]=7456, - ["local_affliction_notable_untouchable"]=7457, - ["local_affliction_notable_unwavering_focus"]=7458, - ["local_affliction_notable_unwaveringly_evil"]=7459, - ["local_affliction_notable_vast_power"]=7460, - ["local_affliction_notable_vengeful_commander"]=7461, - ["local_affliction_notable_veteran_defender"]=7462, - ["local_affliction_notable_vicious_bite"]=7463, - ["local_affliction_notable_vicious_guard_"]=7464, - ["local_affliction_notable_vicious_skewering"]=7465, - ["local_affliction_notable_victim_maker"]=7466, - ["local_affliction_notable_vile_reinvigoration"]=7467, - ["local_affliction_notable_vital_focus"]=7468, - ["local_affliction_notable_vivid_hues"]=7469, - ["local_affliction_notable_wall_of_muscle"]=7470, - ["local_affliction_notable_wardbreaker"]=7471, - ["local_affliction_notable_warning_call"]=7472, - ["local_affliction_notable_wasting_affliction"]=7473, - ["local_affliction_notable_weight_advantage"]=7474, - ["local_affliction_notable_whispers_of_death"]=7475, - ["local_affliction_notable_wicked_pall"]=7476, - ["local_affliction_notable_widespread_destruction"]=7477, - ["local_affliction_notable_will_shaper"]=7478, - ["local_affliction_notable_wind_up"]=7479, - ["local_affliction_notable_winter_commander"]=7480, - ["local_affliction_notable_winter_prowler"]=7481, - ["local_affliction_notable_wish_for_death"]=7482, - ["local_affliction_notable_wizardry"]=7483, - ["local_affliction_notable_wound_aggravation"]=7484, - ["local_affliction_notable_wrapped_in_flame"]=7485, - ["local_all_damage_can_poison"]=2370, + ["life_%_gained_on_kill_if_spent_life_recently"]=2866, + ["life_+%_with_no_corrupted_equipped_items"]=4132, + ["life_and_energy_shield_degeneration_permyriad_per_minute_per_minion"]=7224, + ["life_and_energy_shield_recovery_rate_+%"]=7225, + ["life_and_energy_shield_recovery_rate_+%_if_stopped_taking_damage_over_time_recently"]=7226, + ["life_and_energy_shield_recovery_rate_+%_per_minion_up_to_30%"]=7227, + ["life_and_energy_shield_recovery_rate_+%_per_power_charge"]=7228, + ["life_and_energy_shield_recovery_rate_+%_while_affected_by_malevolence"]=7229, + ["life_and_mana_gain_per_hit"]=1676, + ["life_and_mana_leech_from_attack_damage_permyriad_if_killed_recently"]=7230, + ["life_and_mana_leech_from_physical_damage_permyriad"]=1590, + ["life_degeneration_%_per_minute_not_in_grace"]=1876, + ["life_degeneration_per_minute_not_in_grace"]=1510, + ["life_degeneration_permyriad_per_minute_per_minion"]=7231, + ["life_es_and_mana_recovery_+%_for_4_seconds_on_killing_enemies_affected_by_your_degen"]=3460, + ["life_flask_charges_recovered_per_3_seconds"]=7232, + ["life_flask_effects_are_not_removed_at_full_life"]=7233, + ["life_flask_recovery_is_instant_while_on_low_life"]=7234, + ["life_flasks_gain_X_charges_every_3_seconds_if_you_have_not_used_a_life_flask_recently"]=7235, + ["life_flasks_gain_X_charges_on_suppressing_spell"]=7236, + ["life_flasks_gain_a_charge_on_hit_once_per_second"]=7237, + ["life_flasks_gain_x_charges_when_you_hit_your_marked_enemy"]=7238, + ["life_gain_on_ignited_enemy_hit"]=1678, + ["life_gain_per_target"]=1672, + ["life_gain_per_target_hit_while_affected_by_vitality"]=7239, + ["life_gain_per_target_if_have_used_a_vaal_skill_recently"]=7240, + ["life_gained_on_attack_hit_vs_cursed_enemies"]=7241, + ["life_gained_on_bleeding_enemy_hit"]=3502, + ["life_gained_on_block"]=1692, + ["life_gained_on_cull"]=7242, + ["life_gained_on_enemy_death_per_frenzy_charge"]=2865, + ["life_gained_on_enemy_death_per_level"]=2904, + ["life_gained_on_hit_per_enemy_status_ailment"]=3007, + ["life_gained_on_kill_per_wither_stack_on_slain_enemy_%"]=7243, + ["life_gained_on_killing_ignited_enemies"]=1688, + ["life_gained_on_spell_hit_per_enemy_status_ailment"]=3008, + ["life_gained_on_taunting_enemy"]=1718, + ["life_leech_%_is_instant"]=7259, + ["life_leech_%_is_instant_per_defiance"]=7260, + ["life_leech_%_is_instant_per_equipped_claw"]=7261, + ["life_leech_applies_to_enemies_%"]=3117, + ["life_leech_applies_to_energy_shield_on_full_life"]=7244, + ["life_leech_does_not_stop_at_full_life"]=3143, + ["life_leech_from_any_damage_permyriad"]=1596, + ["life_leech_from_any_damage_permyriad_per_siphoning_charge"]=4271, + ["life_leech_from_any_damage_permyriad_while_affected_by_vitality"]=7245, + ["life_leech_from_any_damage_permyriad_while_focused"]=7246, + ["life_leech_from_any_damage_permyriad_with_at_least_5_total_power_frenzy_endurance_charges"]=7248, + ["life_leech_from_attack_damage_permyriad_per_frenzy_charge"]=7249, + ["life_leech_from_attack_damage_permyriad_vs_bleeding_enemies"]=1631, + ["life_leech_from_attack_damage_permyriad_vs_maimed_enemies"]=7250, + ["life_leech_from_attack_damage_permyriad_vs_poisoned_enemies"]=4111, + ["life_leech_from_attack_damage_permyriad_vs_taunted_enemies"]=7251, + ["life_leech_from_fire_damage_permyriad_while_affected_by_anger"]=7252, + ["life_leech_from_fire_damage_while_ignited_permyriad"]=7253, + ["life_leech_from_minion_damage_%"]=7254, + ["life_leech_from_physical_attack_damage_permyriad"]=1584, + ["life_leech_from_physical_damage_with_bow_permyriad"]=1589, + ["life_leech_from_physical_damage_with_claw_permyriad"]=1588, + ["life_leech_from_skills_used_by_totems_permyriad"]=2515, + ["life_leech_from_spell_damage_permyriad_if_shield_has_30%_block_chance"]=4307, + ["life_leech_from_spell_damage_permyriad_while_you_have_arcane_surge"]=7255, + ["life_leech_is_instant_for_exerted_attacks"]=7256, + ["life_leech_on_damage_taken_%_permyriad"]=7258, + ["life_leech_on_damage_taken_%_permyriad_per_socketed_red_gem"]=7257, + ["life_leech_on_overkill_damage_%"]=3141, + ["life_leech_permyriad_from_elemental_damage_against_enemies_with_elemental_status_ailments"]=3244, + ["life_leech_permyriad_on_crit"]=1630, + ["life_leech_permyriad_vs_cursed_enemies"]=4191, + ["life_leech_permyriad_vs_poisoned_enemies"]=7262, + ["life_leech_speed_+%"]=2090, + ["life_leech_speed_+%_per_equipped_corrupted_item"]=3032, + ["life_leech_speed_is_doubled"]=7263, + ["life_leech_uses_chaos_damage_when_X_corrupted_items_equipped"]=3044, + ["life_loss_%_per_minute_if_have_been_hit_recently"]=7264, + ["life_loss_%_per_minute_per_rage_while_not_losing_rage"]=7265, + ["life_mana_es_leech_speed_+%"]=7266, + ["life_mana_es_recovery_rate_+%_per_different_tribe_tattoos_allocated"]=7267, + ["life_mana_es_recovery_rate_+%_per_endurance_charge"]=7268, + ["life_mastery_count_maximum_life_+%_final"]=7269, + ["life_per_level"]=7270, + ["life_recoup_also_applies_to_energy_shield"]=7271, + ["life_recoup_applies_to_energy_shield_instead"]=7272, + ["life_recovery_+%_from_flasks_while_on_low_life"]=7275, + ["life_recovery_from_flasks_instead_applies_to_nearby_allies_%"]=7273, + ["life_recovery_from_regeneration_is_not_applied"]=7274, + ["life_recovery_rate_+%"]=1513, + ["life_recovery_rate_+%_if_have_taken_fire_damage_from_an_enemy_hit_recently"]=7276, + ["life_recovery_rate_+%_if_havent_killed_recently"]=7277, + ["life_recovery_rate_+%_while_affected_by_vitality"]=7278, + ["life_regen_per_minute_per_endurance_charge"]=2942, + ["life_regenerate_rate_per_second_%_while_totem_active"]=3984, + ["life_regeneration_%_per_minute_if_detonated_mine_recently"]=7292, + ["life_regeneration_%_per_minute_if_player_minion_died_recently"]=7293, + ["life_regeneration_%_per_minute_if_stunned_an_enemy_recently"]=7279, + ["life_regeneration_per_minute_%_per_ailment_affecting_you"]=7283, + ["life_regeneration_per_minute_%_per_fortification"]=7284, + ["life_regeneration_per_minute_%_while_affected_by_guard_skill"]=7285, + ["life_regeneration_per_minute_%_while_burning"]=7286, + ["life_regeneration_per_minute_%_while_channelling"]=7287, + ["life_regeneration_per_minute_%_while_fortified"]=3130, + ["life_regeneration_per_minute_%_while_frozen"]=3673, + ["life_regeneration_per_minute_if_you_have_at_least_1000_maximum_energy_shield"]=4303, + ["life_regeneration_per_minute_if_you_have_at_least_1500_maximum_energy_shield"]=4304, + ["life_regeneration_per_minute_if_you_have_at_least_500_maximum_energy_shield"]=4302, + ["life_regeneration_per_minute_in_blood_stance"]=10022, + ["life_regeneration_per_minute_per_1%_uncapped_fire_damage_resistance"]=7280, + ["life_regeneration_per_minute_per_active_buff"]=7281, + ["life_regeneration_per_minute_per_nearby_corpse"]=7282, + ["life_regeneration_per_minute_while_affected_by_vitality"]=7288, + ["life_regeneration_per_minute_while_ignited"]=7289, + ["life_regeneration_per_minute_while_moving"]=7290, + ["life_regeneration_per_minute_while_you_have_avians_flight"]=7291, + ["life_regeneration_per_minute_with_no_corrupted_equipped_items"]=4133, + ["life_regeneration_rate_+%"]=1512, + ["life_regeneration_rate_+%_while_es_full"]=3009, + ["life_regeneration_rate_per_minute_%"]=1877, + ["life_regeneration_rate_per_minute_%_if_blocked_recently"]=7296, + ["life_regeneration_rate_per_minute_%_if_consumed_corpse_recently"]=7297, + ["life_regeneration_rate_per_minute_%_if_crit_in_past_8_seconds"]=7298, + ["life_regeneration_rate_per_minute_%_if_have_been_hit_recently"]=7299, + ["life_regeneration_rate_per_minute_%_if_have_taken_fire_damage_from_an_enemy_hit_recently"]=7300, + ["life_regeneration_rate_per_minute_%_if_hit_cursed_enemy_recently"]=7294, + ["life_regeneration_rate_per_minute_%_if_taunted_an_enemy_recently"]=4154, + ["life_regeneration_rate_per_minute_%_if_used_life_flask_in_past_10_seconds"]=7301, + ["life_regeneration_rate_per_minute_%_per_500_maximum_energy_shield"]=7302, + ["life_regeneration_rate_per_minute_%_per_endurance_charge"]=1511, + ["life_regeneration_rate_per_minute_%_per_fragile_regrowth"]=4332, + ["life_regeneration_rate_per_minute_%_per_frenzy_charge"]=2560, + ["life_regeneration_rate_per_minute_%_per_mine_detonated_recently_up_to_20%"]=7303, + ["life_regeneration_rate_per_minute_%_per_nearby_corpse_up_to_3%"]=7304, + ["life_regeneration_rate_per_minute_%_per_power_charge"]=7305, + ["life_regeneration_rate_per_minute_%_per_raised_zombie"]=7306, + ["life_regeneration_rate_per_minute_%_per_trap_triggered_recently_up_to_20%"]=7307, + ["life_regeneration_rate_per_minute_%_when_on_chilled_ground"]=2081, + ["life_regeneration_rate_per_minute_%_when_on_low_life"]=1878, + ["life_regeneration_rate_per_minute_%_while_affected_by_vitality"]=7295, + ["life_regeneration_rate_per_minute_%_while_moving"]=7308, + ["life_regeneration_rate_per_minute_%_while_stationary"]=7309, + ["life_regeneration_rate_per_minute_%_while_using_flask"]=7310, + ["life_regeneration_rate_per_minute_%_with_400_or_more_strength"]=7311, + ["life_regeneration_rate_per_minute_for_each_equipped_uncorrupted_item"]=3033, + ["life_regeneration_rate_per_minute_per_level"]=2894, + ["life_regeneration_rate_per_minute_while_on_low_life"]=7312, + ["life_reserved_by_stat_%"]=2372, + ["light_radius_+%"]=2433, + ["light_radius_+%_while_phased"]=2442, + ["light_radius_additive_modifiers_apply_to_area_%_value"]=2431, + ["light_radius_additive_modifiers_apply_to_damage"]=2432, + ["light_radius_increases_apply_to_accuracy"]=7313, + ["light_radius_increases_apply_to_area_of_effect"]=7314, + ["light_radius_scales_with_energy_shield"]=2675, + ["lightning_ailment_duration_+%"]=7315, + ["lightning_ailment_effect_+%"]=7317, + ["lightning_ailment_effect_+%_against_chilled_enemies"]=7316, + ["lightning_ailments_effect_+%_final_if_hit_highest_lightning"]=7318, + ["lightning_and_chaos_damage_resistance_%"]=7319, + ["lightning_arrow_%_chance_to_hit_an_additional_enemy"]=7322, + ["lightning_arrow_and_ice_shot_all_damage_can_ignite"]=7320, + ["lightning_arrow_and_ice_shot_ignite_damage_+100%_final_chance"]=7321, + ["lightning_arrow_damage_+%"]=3587, + ["lightning_arrow_maximum_number_of_extra_targets"]=4058, + ["lightning_arrow_radius_+%"]=3748, + ["lightning_conduit_and_galvanic_field_shatter_on_killing_blow"]=7323, + ["lightning_conduit_area_of_effect_+%"]=7324, + ["lightning_conduit_cast_speed_+%"]=7325, + ["lightning_conduit_damage_+%"]=7326, + ["lightning_critical_strike_chance_+%"]=1417, + ["lightning_critical_strike_multiplier_+"]=1443, + ["lightning_damage_%_taken_from_mana_before_life"]=4099, + ["lightning_damage_%_to_add_as_chaos"]=1871, + ["lightning_damage_%_to_add_as_chaos_per_power_charge"]=7329, + ["lightning_damage_%_to_add_as_cold"]=1870, + ["lightning_damage_%_to_add_as_cold_per_2%_shock_effect_on_enemy"]=7330, + ["lightning_damage_%_to_add_as_cold_vs_chilled_enemies"]=7331, + ["lightning_damage_%_to_add_as_fire"]=1869, + ["lightning_damage_+%"]=1312, + ["lightning_damage_+%_per_10_intelligence"]=4063, + ["lightning_damage_+%_per_frenzy_charge"]=2864, + ["lightning_damage_+%_per_lightning_resistance_above_75"]=7328, + ["lightning_damage_+%_while_affected_by_herald_of_thunder"]=7332, + ["lightning_damage_+%_while_affected_by_wrath"]=7333, + ["lightning_damage_can_chill"]=2811, + ["lightning_damage_can_freeze"]=2817, + ["lightning_damage_can_ignite"]=7327, + ["lightning_damage_cannot_shock"]=2823, + ["lightning_damage_resistance_%_while_affected_by_herald_of_thunder"]=7334, + ["lightning_damage_resistance_+%"]=1574, + ["lightning_damage_resistance_is_%"]=1570, + ["lightning_damage_taken_%_as_cold"]=3114, + ["lightning_damage_taken_%_as_fire"]=3112, + ["lightning_damage_taken_+"]=7336, + ["lightning_damage_taken_+%"]=3320, + ["lightning_damage_taken_goes_to_life_over_4_seconds_%"]=7335, + ["lightning_damage_taken_per_minute_per_power_charge_if_have_crit_recently"]=10508, + ["lightning_damage_to_return_to_melee_attacker"]=2138, + ["lightning_damage_to_return_when_hit"]=2143, + ["lightning_damage_with_attack_skills_+%"]=7337, + ["lightning_damage_with_spell_skills_+%"]=7338, + ["lightning_dot_multiplier_+"]=1193, + ["lightning_explosion_mine_aura_effect_+%"]=7339, + ["lightning_explosion_mine_damage_+%"]=7340, + ["lightning_explosion_mine_throwing_speed_+%"]=7341, + ["lightning_exposure_on_hit_magnitude"]=7342, + ["lightning_golem_damage_+%"]=3628, + ["lightning_golem_elemental_resistances_%"]=3919, + ["lightning_hit_and_dot_damage_%_taken_as_fire"]=7343, + ["lightning_hit_damage_+%_vs_chilled_enemies"]=7344, + ["lightning_reflect_damage_taken_+%_while_affected_by_purity_of_lightning"]=7345, + ["lightning_resistance_cannot_be_penetrated"]=7346, + ["lightning_resistance_does_not_apply_to_lighting_damage"]=7347, + ["lightning_skill_chance_to_inflict_lightning_exposure_%"]=7348, + ["lightning_skill_gem_level_+"]=7350, + ["lightning_skill_gem_level_+_if_6_crusader_items"]=4421, + ["lightning_skill_gem_level_+_if_at_least_4_foulborn_uniques_equipped"]=7349, + ["lightning_skill_mana_cost_+%_final_while_shocked"]=7351, + ["lightning_skill_stun_threshold_+%"]=7352, + ["lightning_skills_chance_to_poison_on_hit_%"]=7353, + ["lightning_spell_physical_damage_%_to_convert_to_lightning"]=7354, + ["lightning_spell_skill_gem_level_+"]=1547, + ["lightning_strike_additional_pierce"]=3886, + ["lightning_strike_and_frost_blades_all_damage_can_ignite"]=7355, + ["lightning_strike_and_frost_blades_ignite_damage_+100%_final_chance"]=7356, + ["lightning_strike_damage_+%"]=3571, + ["lightning_strike_num_of_additional_projectiles"]=3877, + ["lightning_tendrils_critical_strike_chance_+%"]=4044, + ["lightning_tendrils_damage_+%"]=3572, + ["lightning_tendrils_radius_+%"]=3741, + ["lightning_tendrils_skill_area_of_effect_+%_per_enemy_hit"]=7357, + ["lightning_tendrils_totems_from_this_skill_grant_spark_effect_duration_+%_to_parent"]=7358, + ["lightning_tower_trap_additional_number_of_beams"]=7359, + ["lightning_tower_trap_cast_speed_+%"]=7360, + ["lightning_tower_trap_cooldown_speed_+%"]=7361, + ["lightning_tower_trap_damage_+%"]=7362, + ["lightning_tower_trap_duration_+%"]=7363, + ["lightning_tower_trap_throwing_speed_+%"]=7364, + ["lightning_trap_additional_pierce"]=3887, + ["lightning_trap_cooldown_speed_+%"]=3352, + ["lightning_trap_damage_+%"]=3350, + ["lightning_trap_lightning_resistance_penetration_%"]=7365, + ["lightning_trap_number_of_additional_projectiles"]=3351, + ["lightning_trap_shock_effect_+%"]=7366, + ["lightning_warp_cast_speed_+%"]=3805, + ["lightning_warp_damage_+%"]=3588, + ["lightning_warp_duration_+%"]=3865, + ["lightning_weakness_ignores_hexproof"]=2539, + ["link_buff_effect_+%_on_animate_guardian"]=7367, + ["link_effect_+%_when_50%_expired"]=7368, + ["link_grace_period_8_second_override"]=7369, + ["link_skill_buff_effect_+%"]=7370, + ["link_skill_buff_effect_+%_if_linked_target_recently"]=7371, + ["link_skill_cast_speed_+%"]=7372, + ["link_skill_cost_life_instead_of_mana"]=7373, + ["link_skill_duration_+%"]=7374, + ["link_skill_gem_level_+"]=7375, + ["link_skill_link_target_cannot_die_for_X_seconds"]=7376, + ["link_skill_lose_no_experience_on_link_target_death"]=7377, + ["link_skill_mana_cost_+%"]=7378, + ["link_skills_allies_in_beam_lucky_elemental_damage"]=7379, + ["link_skills_allies_in_beam_max_elemental_resistance_%"]=7380, + ["link_skills_can_target_animate_guardian"]=7381, + ["link_skills_can_target_minions"]=7382, + ["link_skills_enemies_in_beam_aoe_cannot_inflict_elemental_ailments"]=7383, + ["link_skills_enemies_in_beam_elemental_resistance_%"]=7384, + ["link_skills_grant_damage_+%"]=7385, + ["link_skills_grant_damage_taken_+%"]=7386, + ["link_skills_grant_minions_damage_taken_+%_final_from_hallowed_monarch"]=7387, + ["link_skills_grant_random_linked_minion_rare_monster_mods_on_kill_centiseconds"]=7388, + ["link_skills_grant_redirect_curses_to_link_source"]=7389, + ["link_skills_grant_redirect_elemental_ailments_to_link_source"]=7390, + ["link_to_X_additional_random_allies"]=7391, + ["linked_targets_share_endurance_frenzy_power_charges_with_you"]=7392, + ["local_accuracy_rating"]=1957, + ["local_accuracy_rating_+%"]=1958, + ["local_accuracy_rating_+%_per_2%_quality"]=7393, + ["local_adaptation_rating"]=1468, + ["local_adaptation_rating_+%"]=1470, + ["local_additional_block_chance_%"]=2182, + ["local_affliction_jewel_display_small_nodes_grant_nothing"]=7394, + ["local_affliction_jewel_small_nodes_grant_%_life_regeneration_per_minute"]=7431, + ["local_affliction_jewel_small_nodes_grant_all_attributes"]=7395, + ["local_affliction_jewel_small_nodes_grant_armour"]=7396, + ["local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_while_affected_by_a_herald"]=7397, + ["local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_with_channelling_skills"]=7398, + ["local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_with_chaos_skills"]=7399, + ["local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_with_cold_skills"]=7400, + ["local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_with_elemental_skills"]=7401, + ["local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_with_fire_skills"]=7402, + ["local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_with_lightning_skills"]=7403, + ["local_affliction_jewel_small_nodes_grant_attack_and_cast_speed_+%_with_physical_skills"]=7404, + ["local_affliction_jewel_small_nodes_grant_attack_speed_+%"]=7405, + ["local_affliction_jewel_small_nodes_grant_base_aura_area_of_effect_+%"]=7406, + ["local_affliction_jewel_small_nodes_grant_base_cast_speed_+%"]=7407, + ["local_affliction_jewel_small_nodes_grant_base_critical_strike_multiplier_+"]=7408, + ["local_affliction_jewel_small_nodes_grant_base_elemental_status_ailment_duration_+%"]=7409, + ["local_affliction_jewel_small_nodes_grant_base_projectile_speed_+%"]=7410, + ["local_affliction_jewel_small_nodes_grant_base_skill_area_of_effect_+%"]=7411, + ["local_affliction_jewel_small_nodes_grant_chaos_resistance_%"]=7412, + ["local_affliction_jewel_small_nodes_grant_charges_gained_+%"]=7413, + ["local_affliction_jewel_small_nodes_grant_cold_resistance_%"]=7414, + ["local_affliction_jewel_small_nodes_grant_curse_area_of_effect_+%"]=7415, + ["local_affliction_jewel_small_nodes_grant_damage_+%"]=7417, + ["local_affliction_jewel_small_nodes_grant_damage_over_time_+%"]=7416, + ["local_affliction_jewel_small_nodes_grant_dex"]=7418, + ["local_affliction_jewel_small_nodes_grant_elemental_resistance_%"]=7419, + ["local_affliction_jewel_small_nodes_grant_evasion"]=7420, + ["local_affliction_jewel_small_nodes_grant_fire_resistance_%"]=7421, + ["local_affliction_jewel_small_nodes_grant_int"]=7422, + ["local_affliction_jewel_small_nodes_grant_lightning_resistance_%"]=7423, + ["local_affliction_jewel_small_nodes_grant_mana_regeneration_+%"]=7424, + ["local_affliction_jewel_small_nodes_grant_maximum_energy_shield"]=7425, + ["local_affliction_jewel_small_nodes_grant_maximum_life"]=7426, + ["local_affliction_jewel_small_nodes_grant_maximum_mana"]=7427, + ["local_affliction_jewel_small_nodes_grant_minion_attack_and_cast_speed_+%"]=7428, + ["local_affliction_jewel_small_nodes_grant_minion_attack_and_cast_speed_+%_while_you_are_affected_by_a_herald"]=7429, + ["local_affliction_jewel_small_nodes_grant_minion_life_regeneration_rate_per_minute_%"]=7430, + ["local_affliction_jewel_small_nodes_grant_sigil_target_search_range_+%"]=7432, + ["local_affliction_jewel_small_nodes_grant_str"]=7433, + ["local_affliction_jewel_small_nodes_grant_summon_totem_cast_speed_+%"]=7434, + ["local_affliction_jewel_small_nodes_grant_trap_and_mine_throwing_speed_+%"]=7435, + ["local_affliction_jewel_small_nodes_grant_warcry_duration_+%"]=7436, + ["local_affliction_jewel_small_nodes_have_effect_+%"]=7437, + ["local_affliction_notable_adrenaline"]=7438, + ["local_affliction_notable_advance_guard"]=7439, + ["local_affliction_notable_aerialist"]=7440, + ["local_affliction_notable_aerodynamics"]=7441, + ["local_affliction_notable_agent_of_destruction"]=7442, + ["local_affliction_notable_aggressive_defence"]=7443, + ["local_affliction_notable_alchemist"]=7444, + ["local_affliction_notable_ancestral_echo"]=7445, + ["local_affliction_notable_ancestral_guidance"]=7446, + ["local_affliction_notable_ancestral_inspiration"]=7447, + ["local_affliction_notable_ancestral_might"]=7448, + ["local_affliction_notable_ancestral_preservation"]=7449, + ["local_affliction_notable_ancestral_reach"]=7450, + ["local_affliction_notable_antifreeze"]=7451, + ["local_affliction_notable_antivenom"]=7452, + ["local_affliction_notable_arcane_focus"]=7453, + ["local_affliction_notable_arcane_heroism"]=7454, + ["local_affliction_notable_arcane_pyrotechnics"]=7455, + ["local_affliction_notable_arcing_shot"]=7456, + ["local_affliction_notable_assert_dominance"]=7457, + ["local_affliction_notable_astonishing_affliction"]=7458, + ["local_affliction_notable_basics_of_pain"]=7459, + ["local_affliction_notable_battle_hardened"]=7460, + ["local_affliction_notable_battlefield_dominator"]=7461, + ["local_affliction_notable_blacksmith"]=7462, + ["local_affliction_notable_blanketed_snow"]=7463, + ["local_affliction_notable_blast_freeze"]=7464, + ["local_affliction_notable_blessed"]=7465, + ["local_affliction_notable_blessed_rebirth"]=7466, + ["local_affliction_notable_blood_artist"]=7467, + ["local_affliction_notable_bloodscent"]=7468, + ["local_affliction_notable_blowback"]=7469, + ["local_affliction_notable_bodyguards"]=7470, + ["local_affliction_notable_born_of_chaos"]=7471, + ["local_affliction_notable_brand_loyalty"]=7472, + ["local_affliction_notable_brewed_for_potency"]=7473, + ["local_affliction_notable_broadside"]=7474, + ["local_affliction_notable_brush_with_death"]=7475, + ["local_affliction_notable_brutal_infamy"]=7476, + ["local_affliction_notable_burden_projection"]=7477, + ["local_affliction_notable_burning_bright"]=7478, + ["local_affliction_notable_calamitous"]=7479, + ["local_affliction_notable_call_to_the_slaughter"]=7480, + ["local_affliction_notable_capacitor"]=7481, + ["local_affliction_notable_careful_handling"]=7482, + ["local_affliction_notable_chilling_presence"]=7483, + ["local_affliction_notable_chip_away"]=7484, + ["local_affliction_notable_circling_oblivion"]=7485, + ["local_affliction_notable_clarity_of_purpose"]=7486, + ["local_affliction_notable_cold_blooded_killer"]=7487, + ["local_affliction_notable_cold_conduction"]=7488, + ["local_affliction_notable_cold_to_the_core"]=7489, + ["local_affliction_notable_combat_rhythm"]=7490, + ["local_affliction_notable_compound_injury"]=7491, + ["local_affliction_notable_confident_combatant"]=7492, + ["local_affliction_notable_conjured_wall"]=7493, + ["local_affliction_notable_conservation_of_energy"]=7494, + ["local_affliction_notable_cooked_alive"]=7495, + ["local_affliction_notable_corrosive_elements"]=7496, + ["local_affliction_notable_cremator"]=7497, + ["local_affliction_notable_cry_wolf"]=7498, + ["local_affliction_notable_cult_leader"]=7499, + ["local_affliction_notable_daring_ideas"]=7500, + ["local_affliction_notable_dark_discourse"]=7501, + ["local_affliction_notable_dark_ideation"]=7502, + ["local_affliction_notable_dark_messenger"]=7503, + ["local_affliction_notable_darting_movements"]=7504, + ["local_affliction_notable_deadly_repartee"]=7505, + ["local_affliction_notable_deep_chill"]=7506, + ["local_affliction_notable_deep_cuts"]=7507, + ["local_affliction_notable_depression"]=7508, + ["local_affliction_notable_determined_preparation"]=7509, + ["local_affliction_notable_devastator"]=7510, + ["local_affliction_notable_disciples"]=7511, + ["local_affliction_notable_disciplined_preparation"]=7512, + ["local_affliction_notable_disease_vector"]=7513, + ["local_affliction_notable_disorienting_display"]=7514, + ["local_affliction_notable_disorienting_wounds"]=7515, + ["local_affliction_notable_distilled_perfection"]=7516, + ["local_affliction_notable_doedres_apathy"]=7517, + ["local_affliction_notable_doedres_gluttony"]=7518, + ["local_affliction_notable_doryanis_lesson"]=7519, + ["local_affliction_notable_dragon_hunter"]=7520, + ["local_affliction_notable_dread_march"]=7521, + ["local_affliction_notable_drive_the_destruction"]=7522, + ["local_affliction_notable_eldritch_inspiration"]=7523, + ["local_affliction_notable_elegant_form"]=7524, + ["local_affliction_notable_empowered_envoy"]=7525, + ["local_affliction_notable_endbringer"]=7526, + ["local_affliction_notable_enduring_composure"]=7527, + ["local_affliction_notable_enduring_focus"]=7528, + ["local_affliction_notable_enduring_ward"]=7529, + ["local_affliction_notable_energy_from_naught"]=7530, + ["local_affliction_notable_essence_rush"]=7531, + ["local_affliction_notable_eternal_suffering"]=7532, + ["local_affliction_notable_evil_eye"]=7533, + ["local_affliction_notable_expansive_might"]=7534, + ["local_affliction_notable_expendability"]=7535, + ["local_affliction_notable_expert_sabotage"]=7536, + ["local_affliction_notable_explosive_force"]=7537, + ["local_affliction_notable_exposure_therapy"]=7538, + ["local_affliction_notable_eye_of_the_storm"]=7539, + ["local_affliction_notable_eye_to_eye"]=7540, + ["local_affliction_notable_fan_of_blades"]=7541, + ["local_affliction_notable_fan_the_flames"]=7542, + ["local_affliction_notable_fasting"]=7543, + ["local_affliction_notable_fearsome_warrior"]=7544, + ["local_affliction_notable_feast_of_flesh"]=7545, + ["local_affliction_notable_feasting_fiends"]=7546, + ["local_affliction_notable_feed_the_fury"]=7547, + ["local_affliction_notable_fettle"]=7548, + ["local_affliction_notable_fire_attunement"]=7549, + ["local_affliction_notable_first_among_equals"]=7550, + ["local_affliction_notable_flaming_doom"]=7551, + ["local_affliction_notable_flexible_sentry"]=7552, + ["local_affliction_notable_flow_of_life"]=7553, + ["local_affliction_notable_follow_through"]=7554, + ["local_affliction_notable_force_multiplier"]=7555, + ["local_affliction_notable_frost_breath"]=7556, + ["local_affliction_notable_fuel_the_fight"]=7557, + ["local_affliction_notable_furious_assault"]=7558, + ["local_affliction_notable_genius"]=7559, + ["local_affliction_notable_gladiatorial_combat"]=7560, + ["local_affliction_notable_gladiators_fortitude"]=7561, + ["local_affliction_notable_graceful_execution"]=7562, + ["local_affliction_notable_graceful_preparation"]=7563, + ["local_affliction_notable_grand_design"]=7564, + ["local_affliction_notable_grim_oath"]=7565, + ["local_affliction_notable_grounded_commander"]=7566, + ["local_affliction_notable_guerilla_tactics"]=7567, + ["local_affliction_notable_haemorrhage"]=7568, + ["local_affliction_notable_haunting_shout"]=7569, + ["local_affliction_notable_heart_of_iron"]=7570, + ["local_affliction_notable_heavy_hitter"]=7571, + ["local_affliction_notable_heavy_trauma"]=7572, + ["local_affliction_notable_heraldry"]=7573, + ["local_affliction_notable_hex_breaker"]=7574, + ["local_affliction_notable_hibernator"]=7575, + ["local_affliction_notable_hit_and_run"]=7576, + ["local_affliction_notable_holistic_health"]=7577, + ["local_affliction_notable_holy_conquest"]=7578, + ["local_affliction_notable_hounds_mark"]=7579, + ["local_affliction_notable_hulking_corpses"]=7580, + ["local_affliction_notable_improvisor"]=7581, + ["local_affliction_notable_insatiable_killer"]=7582, + ["local_affliction_notable_inspired_oppression"]=7583, + ["local_affliction_notable_insulated"]=7584, + ["local_affliction_notable_intensity"]=7585, + ["local_affliction_notable_invigorating_portents"]=7586, + ["local_affliction_notable_iron_breaker"]=7587, + ["local_affliction_notable_lasting_impression"]=7588, + ["local_affliction_notable_lead_by_example"]=7589, + ["local_affliction_notable_life_from_death"]=7590, + ["local_affliction_notable_lightnings_call"]=7591, + ["local_affliction_notable_liquid_inspiration"]=7592, + ["local_affliction_notable_low_tolerance"]=7593, + ["local_affliction_notable_mage_bane"]=7594, + ["local_affliction_notable_mage_hunter"]=7595, + ["local_affliction_notable_magnifier"]=7596, + ["local_affliction_notable_martial_mastery"]=7597, + ["local_affliction_notable_martial_momentum"]=7598, + ["local_affliction_notable_martial_prowess"]=7599, + ["local_affliction_notable_master_of_command"]=7600, + ["local_affliction_notable_master_of_fear"]=7601, + ["local_affliction_notable_master_of_fire"]=7602, + ["local_affliction_notable_master_of_the_maelstrom"]=7603, + ["local_affliction_notable_master_the_fundamentals"]=7604, + ["local_affliction_notable_menders_wellspring"]=7605, + ["local_affliction_notable_militarism"]=7606, + ["local_affliction_notable_mindfulness"]=7607, + ["local_affliction_notable_mob_mentality"]=7608, + ["local_affliction_notable_molten_ones_mark"]=7609, + ["local_affliction_notable_mystical_ward"]=7610, + ["local_affliction_notable_natural_vigour"]=7611, + ["local_affliction_notable_no_witnesses"]=7612, + ["local_affliction_notable_non_flammable"]=7613, + ["local_affliction_notable_numbing_elixir"]=7614, + ["local_affliction_notable_one_with_the_shield"]=7615, + ["local_affliction_notable_openness"]=7616, + ["local_affliction_notable_opportunistic_fusilade"]=7617, + ["local_affliction_notable_overlord"]=7618, + ["local_affliction_notable_overshock"]=7619, + ["local_affliction_notable_overwhelming_malice"]=7620, + ["local_affliction_notable_paralysis"]=7621, + ["local_affliction_notable_peace_amidst_chaos"]=7622, + ["local_affliction_notable_peak_vigour"]=7623, + ["local_affliction_notable_phlebotomist"]=7624, + ["local_affliction_notable_powerful_assault"]=7625, + ["local_affliction_notable_powerful_ward"]=7626, + ["local_affliction_notable_practiced_caster"]=7627, + ["local_affliction_notable_precise_commander"]=7628, + ["local_affliction_notable_precise_focus"]=7629, + ["local_affliction_notable_precise_retaliation"]=7630, + ["local_affliction_notable_pressure_points"]=7631, + ["local_affliction_notable_primordial_bond"]=7632, + ["local_affliction_notable_prismatic_carapace"]=7633, + ["local_affliction_notable_prismatic_dance"]=7634, + ["local_affliction_notable_prismatic_heart"]=7635, + ["local_affliction_notable_prodigious_defense"]=7636, + ["local_affliction_notable_provocateur"]=7637, + ["local_affliction_notable_pure_agony"]=7638, + ["local_affliction_notable_pure_aptitude"]=7639, + ["local_affliction_notable_pure_commander"]=7640, + ["local_affliction_notable_pure_guile"]=7641, + ["local_affliction_notable_pure_might"]=7642, + ["local_affliction_notable_purposeful_harbinger"]=7643, + ["local_affliction_notable_quick_and_deadly"]=7644, + ["local_affliction_notable_quick_getaway"]=7645, + ["local_affliction_notable_rapid_infusion"]=7646, + ["local_affliction_notable_rattling_bellow"]=7647, + ["local_affliction_notable_raze_and_pillage"]=7648, + ["local_affliction_notable_readiness"]=7649, + ["local_affliction_notable_remarkable"]=7650, + ["local_affliction_notable_rend"]=7651, + ["local_affliction_notable_renewal"]=7652, + ["local_affliction_notable_repeater"]=7653, + ["local_affliction_notable_replenishing_presence"]=7654, + ["local_affliction_notable_riot_queller"]=7655, + ["local_affliction_notable_rot_resistant"]=7656, + ["local_affliction_notable_rote_reinforcement"]=7657, + ["local_affliction_notable_rotten_claws"]=7658, + ["local_affliction_notable_run_through"]=7659, + ["local_affliction_notable_sadist"]=7660, + ["local_affliction_notable_sage"]=7661, + ["local_affliction_notable_sap_psyche"]=7662, + ["local_affliction_notable_savage_response"]=7663, + ["local_affliction_notable_savour_the_moment"]=7664, + ["local_affliction_notable_scintillating_idea"]=7665, + ["local_affliction_notable_seal_mender"]=7666, + ["local_affliction_notable_second_skin"]=7667, + ["local_affliction_notable_seeker_runes"]=7668, + ["local_affliction_notable_self_fulfilling_prophecy"]=7669, + ["local_affliction_notable_septic_spells"]=7670, + ["local_affliction_notable_set_and_forget"]=7671, + ["local_affliction_notable_shifting_shadow"]=7672, + ["local_affliction_notable_shrieking_bolts"]=7673, + ["local_affliction_notable_skeletal_atrophy"]=7674, + ["local_affliction_notable_skullbreaker"]=7675, + ["local_affliction_notable_sleepless_sentries"]=7676, + ["local_affliction_notable_smite_the_weak"]=7677, + ["local_affliction_notable_smoking_remains"]=7678, + ["local_affliction_notable_snaring_spirits"]=7679, + ["local_affliction_notable_snowstorm"]=7680, + ["local_affliction_notable_special_reserve"]=7681, + ["local_affliction_notable_spiked_concoction"]=7682, + ["local_affliction_notable_spring_back"]=7683, + ["local_affliction_notable_stalwart_commander"]=7684, + ["local_affliction_notable_steady_torment"]=7685, + ["local_affliction_notable_stoic_focus"]=7686, + ["local_affliction_notable_storm_drinker"]=7687, + ["local_affliction_notable_stormrider"]=7688, + ["local_affliction_notable_storms_hand"]=7689, + ["local_affliction_notable_streamlined"]=7690, + ["local_affliction_notable_strike_leader"]=7691, + ["local_affliction_notable_stubborn_student"]=7692, + ["local_affliction_notable_student_of_decay"]=7693, + ["local_affliction_notable_sublime_sensation"]=7694, + ["local_affliction_notable_summer_commander"]=7695, + ["local_affliction_notable_supercharge"]=7696, + ["local_affliction_notable_surefooted_striker"]=7697, + ["local_affliction_notable_surging_vitality"]=7698, + ["local_affliction_notable_surprise_sabotage"]=7699, + ["local_affliction_notable_tempered_arrowheads"]=7700, + ["local_affliction_notable_thaumophage"]=7701, + ["local_affliction_notable_thunderstruck"]=7702, + ["local_affliction_notable_titanic_swings"]=7703, + ["local_affliction_notable_touch_of_cruelty"]=7704, + ["local_affliction_notable_towering_threat"]=7705, + ["local_affliction_notable_unholy_grace"]=7706, + ["local_affliction_notable_unspeakable_gifts"]=7707, + ["local_affliction_notable_untouchable"]=7708, + ["local_affliction_notable_unwavering_focus"]=7709, + ["local_affliction_notable_unwaveringly_evil"]=7710, + ["local_affliction_notable_vast_power"]=7711, + ["local_affliction_notable_vengeful_commander"]=7712, + ["local_affliction_notable_veteran_defender"]=7713, + ["local_affliction_notable_vicious_bite"]=7714, + ["local_affliction_notable_vicious_guard_"]=7715, + ["local_affliction_notable_vicious_skewering"]=7716, + ["local_affliction_notable_victim_maker"]=7717, + ["local_affliction_notable_vile_reinvigoration"]=7718, + ["local_affliction_notable_vital_focus"]=7719, + ["local_affliction_notable_vivid_hues"]=7720, + ["local_affliction_notable_wall_of_muscle"]=7721, + ["local_affliction_notable_wardbreaker"]=7722, + ["local_affliction_notable_warning_call"]=7723, + ["local_affliction_notable_wasting_affliction"]=7724, + ["local_affliction_notable_weight_advantage"]=7725, + ["local_affliction_notable_whispers_of_death"]=7726, + ["local_affliction_notable_wicked_pall"]=7727, + ["local_affliction_notable_widespread_destruction"]=7728, + ["local_affliction_notable_will_shaper"]=7729, + ["local_affliction_notable_wind_up"]=7730, + ["local_affliction_notable_winter_commander"]=7731, + ["local_affliction_notable_winter_prowler"]=7732, + ["local_affliction_notable_wish_for_death"]=7733, + ["local_affliction_notable_wizardry"]=7734, + ["local_affliction_notable_wound_aggravation"]=7735, + ["local_affliction_notable_wrapped_in_flame"]=7736, + ["local_all_damage_can_poison"]=2403, ["local_all_sockets_are_blue"]=77, ["local_all_sockets_are_green"]=78, ["local_all_sockets_are_red"]=79, ["local_all_sockets_are_white"]=80, ["local_all_sockets_linked"]=76, - ["local_always_hit"]=1944, - ["local_apply_extra_herald_mod_when_synthesised"]=10186, - ["local_area_of_effect_+%_per_4%_quality"]=7486, - ["local_armour_and_energy_shield_+%"]=1459, - ["local_armour_and_evasion_+%"]=1460, - ["local_armour_and_evasion_and_energy_shield_+%"]=1462, - ["local_attack_and_cast_speed_+%_if_item_corrupted"]=7487, - ["local_attack_cast_movement_speed_+%_during_flask_effect"]=960, - ["local_attack_cast_movement_speed_+%_per_second_during_flask_effect"]=961, - ["local_attack_damage_+%_if_item_corrupted"]=7488, - ["local_attack_maximum_added_physical_damage_per_3_levels"]=1178, - ["local_attack_minimum_added_physical_damage_per_3_levels"]=1178, - ["local_attack_speed_+%"]=1321, - ["local_attack_speed_+%_per_8%_quality"]=7489, - ["local_attacks_grant_onslaught_on_kill_chance_%_with_ranged_abyss_jewel_socketed"]=7490, - ["local_attacks_impale_on_hit_%_chance"]=7491, - ["local_attacks_intimidate_on_hit_for_4_seconds_with_melee_abyss_jewel_socketed"]=7492, - ["local_attacks_maim_on_hit_for_4_seconds_with_ranged_abyss_jewel_socketed"]=7493, - ["local_attacks_with_this_weapon_elemental_damage_+%"]=2826, - ["local_attacks_with_this_weapon_physical_damage_+%_per_250_evasion"]=2841, - ["local_attribute_requirements_+%"]=988, - ["local_avoid_chill_%_during_flask_effect"]=878, - ["local_avoid_freeze_%_during_flask_effect"]=879, - ["local_avoid_ignite_%_during_flask_effect"]=880, - ["local_avoid_shock_%_during_flask_effect"]=881, - ["local_base_evasion_rating"]=1455, - ["local_base_physical_damage_reduction_rating"]=1447, - ["local_bleed_on_critical_strike_chance_%"]=7494, - ["local_bleed_on_hit"]=2380, - ["local_bleeding_ailment_dot_multiplier_+"]=7495, - ["local_blind_enemies_on_attack_hits_with_ranged_abyss_jewel_socketed"]=7496, + ["local_always_hit"]=1976, + ["local_apply_extra_herald_mod_when_synthesised"]=10509, + ["local_area_of_effect_+%_per_4%_quality"]=7737, + ["local_armour_and_energy_shield_+%"]=1487, + ["local_armour_and_evasion_+%"]=1488, + ["local_armour_and_evasion_and_energy_shield_+%"]=1490, + ["local_attack_and_cast_speed_+%_if_item_corrupted"]=7738, + ["local_attack_cast_movement_speed_+%_during_flask_effect"]=985, + ["local_attack_cast_movement_speed_+%_per_second_during_flask_effect"]=986, + ["local_attack_damage_+%_if_item_corrupted"]=7739, + ["local_attack_maximum_added_physical_damage_per_3_levels"]=1205, + ["local_attack_minimum_added_physical_damage_per_3_levels"]=1205, + ["local_attack_speed_+%"]=1348, + ["local_attack_speed_+%_per_8%_quality"]=7740, + ["local_attacks_grant_onslaught_on_kill_chance_%_with_ranged_abyss_jewel_socketed"]=7741, + ["local_attacks_impale_on_hit_%_chance"]=7742, + ["local_attacks_intimidate_on_hit_for_4_seconds_with_melee_abyss_jewel_socketed"]=7743, + ["local_attacks_maim_on_hit_for_4_seconds_with_ranged_abyss_jewel_socketed"]=7744, + ["local_attacks_with_this_weapon_elemental_damage_+%"]=2862, + ["local_attacks_with_this_weapon_physical_damage_+%_per_250_evasion"]=2877, + ["local_attribute_requirements_+%"]=1012, + ["local_avoid_chill_%_during_flask_effect"]=901, + ["local_avoid_freeze_%_during_flask_effect"]=902, + ["local_avoid_ignite_%_during_flask_effect"]=903, + ["local_avoid_shock_%_during_flask_effect"]=904, + ["local_base_evasion_rating"]=1483, + ["local_base_physical_damage_reduction_rating"]=1475, + ["local_bleed_on_critical_strike_chance_%"]=7745, + ["local_bleed_on_hit"]=2413, + ["local_bleeding_ailment_dot_multiplier_+"]=7746, + ["local_blind_enemies_on_attack_hits_with_ranged_abyss_jewel_socketed"]=7747, ["local_block_chance_+%"]=94, - ["local_can_have_X_additional_runesmith_enchantments"]=7497, + ["local_can_have_X_additional_runesmith_enchantments"]=7748, ["local_can_have_additional_crafted_mods"]=42, - ["local_can_have_any_one_hand_runesmith_enchantments"]=7498, - ["local_can_only_deal_damage_with_this_weapon"]=2611, - ["local_can_only_socket_corrupted_gems"]=7499, + ["local_can_have_any_one_hand_runesmith_enchantments"]=7749, + ["local_can_only_deal_damage_with_this_weapon"]=2646, + ["local_can_only_socket_corrupted_gems"]=7750, ["local_can_socket_gems_ignoring_colour"]=95, - ["local_cannot_be_used_with_chaos_innoculation"]=989, + ["local_cannot_be_used_with_chaos_innoculation"]=1013, ["local_cannot_have_blue_sockets"]=69, ["local_cannot_have_green_sockets"]=70, ["local_cannot_have_red_sockets"]=71, - ["local_chance_bleed_on_hit_%_vs_ignited_enemies"]=4757, - ["local_chance_for_bleeding_damage_+100%_final_inflicted_with_this_weapon"]=7500, - ["local_chance_for_poison_damage_+100%_final_inflicted_with_this_weapon"]=7501, - ["local_chance_for_poison_damage_+300%_final_inflicted_with_weapon"]=7502, - ["local_chance_to_bleed_%_while_you_do_not_have_avatar_of_fire"]=10314, - ["local_chance_to_bleed_on_crit_50%"]=7503, - ["local_chance_to_bleed_on_hit_%"]=2383, - ["local_chance_to_bleed_on_hit_25%"]=2381, - ["local_chance_to_bleed_on_hit_50%"]=2382, - ["local_chance_to_blind_on_hit_%"]=2164, - ["local_chance_to_intimidate_on_hit_%"]=7504, - ["local_chance_to_poison_on_hit_%_during_flask_effect"]=882, - ["local_chaos_damage_taken_per_minute_during_flask_effect"]=955, - ["local_chaos_penetration_%"]=7505, - ["local_charges_added_+%"]=762, - ["local_charges_used_+%"]=763, - ["local_chill_on_hit_ms_if_in_off_hand"]=7506, - ["local_cold_penetration_%"]=3650, - ["local_cold_resistance_%_per_2%_quality"]=7507, - ["local_concoction_can_consume_sulphur_flasks"]=7508, - ["local_connectivity_of_sockets_+%"]=1825, - ["local_consecrate_ground_on_flask_use_radius"]=793, - ["local_crafting_bench_options_cost_nothing"]=7509, - ["local_critical_strike_chance"]=1371, - ["local_critical_strike_chance_+%"]=1372, - ["local_critical_strike_chance_+%_if_item_corrupted"]=7510, - ["local_critical_strike_chance_+%_per_4%_quality"]=7511, - ["local_critical_strike_multiplier_+"]=1397, - ["local_crits_have_culling_strike"]=7512, - ["local_culling_strike_if_crit_recently"]=7513, - ["local_culling_strike_vs_bleeding_enemies"]=7514, - ["local_damage_+%_if_item_corrupted"]=7515, - ["local_damage_taken_+%_if_item_corrupted"]=7516, - ["local_dexterity_per_2%_quality"]=7517, - ["local_dexterity_requirement_+"]=990, - ["local_dexterity_requirement_+%"]=991, - ["local_disable_gem_experience_gain"]=1822, - ["local_display_attack_with_level_X_bone_nova_on_bleeding_enemy_kill"]=686, - ["local_display_aura_allies_have_culling_strike"]=2433, - ["local_display_aura_allies_have_increased_item_rarity_+%"]=1503, - ["local_display_aura_base_chaos_damage_to_deal_per_minute"]=2589, - ["local_display_aura_curse_effect_on_self_+%"]=2598, - ["local_display_aura_damage_+%"]=2597, - ["local_display_aura_damage_+%_allies_only"]=2804, - ["local_display_avoid_interruption_%_while_using_socketed_attack_skills"]=487, - ["local_display_cast_animate_weapon_on_kill_%_chance"]=687, - ["local_display_cast_cold_aegis_on_gain_skill"]=688, - ["local_display_cast_elemental_aegis_on_gain_skill"]=689, - ["local_display_cast_fire_aegis_on_gain_skill"]=690, - ["local_display_cast_fire_burst_on_hit"]=7518, - ["local_display_cast_level_1_summon_lesser_shrine_on_kill_%"]=603, - ["local_display_cast_level_X_consecrate_on_crit"]=604, - ["local_display_cast_level_x_manifest_dancing_dervish"]=3230, - ["local_display_cast_level_x_shock_ground_on_hit"]=691, - ["local_display_cast_level_x_shock_ground_when_hit"]=605, - ["local_display_cast_lightning_aegis_on_gain_skill"]=692, - ["local_display_cast_lightning_on_critical_strike"]=693, - ["local_display_cast_physical_aegis_on_gain_skill"]=694, - ["local_display_cast_primal_aegis_on_gain_skill"]=695, - ["local_display_cast_summon_arbalists_on_gain_skill"]=696, - ["local_display_cast_triggerbots_on_gain_skill"]=697, - ["local_display_chance_to_trigger_socketed_spell_on_kill_%"]=698, - ["local_display_curse_enemies_with_socketed_curse_on_hit_%_chance"]=7519, - ["local_display_enemies_killed_nearby_count_as_being_killed_by_you"]=7520, - ["local_display_fire_and_cold_resist_debuff"]=7521, - ["local_display_fire_burst_on_hit_%"]=699, - ["local_display_gain_fragile_growth_each_second"]=4284, - ["local_display_gain_power_charge_on_spending_mana"]=7522, - ["local_display_grant_level_x_petrification_statue"]=606, + ["local_chance_bleed_on_hit_%_vs_ignited_enemies"]=4833, + ["local_chance_for_bleeding_damage_+100%_final_inflicted_with_this_weapon"]=7751, + ["local_chance_for_poison_damage_+100%_final_inflicted_with_this_weapon"]=7752, + ["local_chance_for_poison_damage_+300%_final_inflicted_with_weapon"]=7753, + ["local_chance_to_bleed_%_while_you_do_not_have_avatar_of_fire"]=10643, + ["local_chance_to_bleed_on_crit_50%"]=7754, + ["local_chance_to_bleed_on_hit_%"]=2416, + ["local_chance_to_bleed_on_hit_25%"]=2414, + ["local_chance_to_bleed_on_hit_50%"]=2415, + ["local_chance_to_blind_on_hit_%"]=2196, + ["local_chance_to_intimidate_on_hit_%"]=7755, + ["local_chance_to_poison_on_hit_%_during_flask_effect"]=905, + ["local_chaos_damage_taken_per_minute_during_flask_effect"]=980, + ["local_chaos_penetration_%"]=7756, + ["local_charges_added_+%"]=783, + ["local_charges_used_+%"]=784, + ["local_chill_on_hit_ms_if_in_off_hand"]=7757, + ["local_cold_penetration_%"]=3695, + ["local_cold_resistance_%_per_2%_quality"]=7758, + ["local_concoction_can_consume_sulphur_flasks"]=7759, + ["local_connectivity_of_sockets_+%"]=1855, + ["local_consecrate_ground_on_flask_use_radius"]=816, + ["local_crafting_bench_options_cost_nothing"]=7760, + ["local_critical_strike_chance"]=1398, + ["local_critical_strike_chance_+%"]=1399, + ["local_critical_strike_chance_+%_if_item_corrupted"]=7761, + ["local_critical_strike_chance_+%_per_4%_quality"]=7762, + ["local_critical_strike_multiplier_+"]=1424, + ["local_crits_have_culling_strike"]=7763, + ["local_culling_strike_if_crit_recently"]=7764, + ["local_culling_strike_vs_bleeding_enemies"]=7765, + ["local_damage_+%_if_item_corrupted"]=7766, + ["local_damage_taken_+%_if_item_corrupted"]=7767, + ["local_dexterity_per_2%_quality"]=7768, + ["local_dexterity_requirement_+"]=1014, + ["local_dexterity_requirement_+%"]=1015, + ["local_disable_gem_experience_gain"]=1852, + ["local_display_attack_with_level_X_bone_nova_on_bleeding_enemy_kill"]=703, + ["local_display_aura_allies_have_culling_strike"]=2466, + ["local_display_aura_allies_have_increased_item_rarity_+%"]=1532, + ["local_display_aura_base_chaos_damage_to_deal_per_minute"]=2624, + ["local_display_aura_curse_effect_on_self_+%"]=2633, + ["local_display_aura_damage_+%"]=2632, + ["local_display_aura_damage_+%_allies_only"]=2840, + ["local_display_avoid_interruption_%_while_using_socketed_attack_skills"]=496, + ["local_display_cast_animate_weapon_on_kill_%_chance"]=704, + ["local_display_cast_cold_aegis_on_gain_skill"]=705, + ["local_display_cast_elemental_aegis_on_gain_skill"]=706, + ["local_display_cast_fire_aegis_on_gain_skill"]=707, + ["local_display_cast_fire_burst_on_hit"]=7769, + ["local_display_cast_level_1_summon_lesser_shrine_on_kill_%"]=612, + ["local_display_cast_level_X_consecrate_on_crit"]=613, + ["local_display_cast_level_x_manifest_dancing_dervish"]=3272, + ["local_display_cast_level_x_shock_ground_on_hit"]=708, + ["local_display_cast_level_x_shock_ground_when_hit"]=614, + ["local_display_cast_lightning_aegis_on_gain_skill"]=709, + ["local_display_cast_lightning_on_critical_strike"]=710, + ["local_display_cast_lightning_on_melee_hit_with_this_weapon"]=711, + ["local_display_cast_physical_aegis_on_gain_skill"]=712, + ["local_display_cast_primal_aegis_on_gain_skill"]=713, + ["local_display_cast_summon_arbalists_on_gain_skill"]=714, + ["local_display_cast_triggerbots_on_gain_skill"]=715, + ["local_display_chance_to_trigger_socketed_spell_on_kill_%"]=716, + ["local_display_curse_enemies_with_socketed_curse_on_hit_%_chance"]=7770, + ["local_display_enemies_killed_nearby_count_as_being_killed_by_you"]=7771, + ["local_display_fire_and_cold_resist_debuff"]=7772, + ["local_display_fire_burst_on_hit_%"]=717, + ["local_display_gain_fragile_growth_each_second"]=4330, + ["local_display_gain_power_charge_on_spending_mana"]=7773, + ["local_display_grant_level_x_petrification_statue"]=615, ["local_display_grant_level_x_snipe_skill"]=65, ["local_display_grants_level_X_affliction"]=66, - ["local_display_grants_level_X_envy"]=584, + ["local_display_grants_level_X_envy"]=593, ["local_display_grants_level_X_pacify"]=67, ["local_display_grants_level_X_penance_mark"]=68, - ["local_display_grants_level_X_queens_demand_skill"]=672, - ["local_display_grants_level_X_reckoning"]=585, - ["local_display_grants_level_X_vengeance"]=556, - ["local_display_grants_level_x_blood_offering_skill"]=608, - ["local_display_grants_level_x_curse_pillar_skil_and_20%_less_curse_effect"]=609, - ["local_display_grants_level_x_curse_pillar_skill"]=610, - ["local_display_grants_level_x_despair"]=557, - ["local_display_grants_level_x_hidden_blade"]=700, - ["local_display_grants_level_x_summon_stone_golem"]=555, - ["local_display_grants_level_x_wintertide_brand"]=611, - ["local_display_grants_skil_convocation_level"]=7523, - ["local_display_grants_skill_abyssal_cry_level"]=612, - ["local_display_grants_skill_accuracy_crits_aura_level"]=613, - ["local_display_grants_skill_ailment_bearer"]=614, - ["local_display_grants_skill_anger_level"]=579, - ["local_display_grants_skill_barkskin"]=615, - ["local_display_grants_skill_battlemages_cry_level"]=616, - ["local_display_grants_skill_bear_trap_level"]=554, - ["local_display_grants_skill_bird_aspect_level"]=617, - ["local_display_grants_skill_blight_level"]=586, - ["local_display_grants_skill_blood_sacrament_level"]=571, - ["local_display_grants_skill_bone_armour"]=618, - ["local_display_grants_skill_brand_detonate_level"]=619, - ["local_display_grants_skill_call_of_steel"]=620, - ["local_display_grants_skill_cat_aspect_level"]=621, - ["local_display_grants_skill_clarity_level"]=570, - ["local_display_grants_skill_conductivity_level"]=565, - ["local_display_grants_skill_corpse_sacrifice"]=622, - ["local_display_grants_skill_crab_aspect_level"]=623, - ["local_display_grants_skill_critical_weakness_level"]=576, - ["local_display_grants_skill_dash_level"]=624, - ["local_display_grants_skill_death_aura_level"]=591, - ["local_display_grants_skill_death_wish_level"]=625, - ["local_display_grants_skill_decoy_totem_level"]=626, - ["local_display_grants_skill_determination_level"]=580, - ["local_display_grants_skill_discipline_level"]=583, - ["local_display_grants_skill_doryanis_touch_level"]=589, - ["local_display_grants_skill_elemental_weakness_level"]=588, - ["local_display_grants_skill_embrace_madness_level"]=627, - ["local_display_grants_skill_enduring_cry_level"]=628, - ["local_display_grants_skill_evisceration"]=629, - ["local_display_grants_skill_flammability_level"]=561, - ["local_display_grants_skill_frostbite_level"]=566, - ["local_display_grants_skill_frostblink_level"]=551, - ["local_display_grants_skill_gluttony_of_elements_level"]=575, - ["local_display_grants_skill_grace_level"]=581, - ["local_display_grants_skill_haste_level"]=568, - ["local_display_grants_skill_hatred_level"]=578, - ["local_display_grants_skill_herald_of_agony_level"]=630, - ["local_display_grants_skill_herald_of_ash_level"]=631, - ["local_display_grants_skill_herald_of_ice_level"]=632, - ["local_display_grants_skill_herald_of_purity_level"]=633, - ["local_display_grants_skill_herald_of_thunder_level"]=634, - ["local_display_grants_skill_icestorm_level"]=592, - ["local_display_grants_skill_intimidating_cry_level"]=635, - ["local_display_grants_skill_lightning_warp_level"]=636, - ["local_display_grants_skill_malevolence_level"]=637, - ["local_display_grants_skill_minion_sacrifice"]=638, - ["local_display_grants_skill_mirage_chieftain"]=639, - ["local_display_grants_skill_penance"]=640, - ["local_display_grants_skill_pride_level"]=641, - ["local_display_grants_skill_projectile_weakness_level"]=587, - ["local_display_grants_skill_purity_level"]=574, - ["local_display_grants_skill_purity_of_cold_level"]=558, - ["local_display_grants_skill_purity_of_fire_level"]=552, - ["local_display_grants_skill_purity_of_lightning_level"]=560, - ["local_display_grants_skill_quieten"]=642, - ["local_display_grants_skill_rallying_cry_level"]=643, - ["local_display_grants_skill_scorching_ray_level"]=582, - ["local_display_grants_skill_smite_level"]=644, - ["local_display_grants_skill_spider_aspect_level"]=645, - ["local_display_grants_skill_summon_radiant_sentinel"]=646, - ["local_display_grants_skill_temporal_chains_level"]=567, - ["local_display_grants_skill_touch_of_fire_level"]=647, - ["local_display_grants_skill_unhinge_level"]=648, - ["local_display_grants_skill_vaal_impurity_of_fire_level"]=649, - ["local_display_grants_skill_vaal_impurity_of_ice_level"]=650, - ["local_display_grants_skill_vaal_impurity_of_lightning_level"]=651, - ["local_display_grants_skill_vampiric_icon_level"]=652, - ["local_display_grants_skill_vitality_level"]=572, - ["local_display_grants_skill_voodoo_doll"]=7524, - ["local_display_grants_skill_vulnerability_level"]=590, - ["local_display_grants_skill_weapon_storm"]=7525, - ["local_display_grants_skill_wrath_level"]=577, - ["local_display_grants_skill_zealotry_level"]=653, - ["local_display_grants_summon_beast_companion"]=559, - ["local_display_grants_summon_void_spawn"]=654, - ["local_display_grants_unholy_might"]=2812, - ["local_display_grants_unleash_power"]=7526, - ["local_display_guardian_alternating_block_chance"]=7527, - ["local_display_has_additional_implicit_mod"]=569, - ["local_display_hits_against_nearby_enemies_critical_strike_chance_+50%"]=3290, - ["local_display_illusory_warp_level"]=553, - ["local_display_item_found_rarity_+%_for_you_and_nearby_allies"]=1504, - ["local_display_lose_soul_eater_stack_every_x_seconds_while_no_unique_in_your_presence"]=7744, - ["local_display_manifest_dancing_dervish_destroy_on_end_rampage"]=3232, - ["local_display_manifest_dancing_dervish_disables_weapons"]=3231, - ["local_display_minions_grant_onslaught"]=3233, - ["local_display_mod_aura_mana_regeration_rate_+%"]=7528, - ["local_display_molten_burst_on_melee_hit_%"]=701, - ["local_display_movement_speed_+%_for_you_and_nearby_allies"]=7529, - ["local_display_nearby_allies_action_speed_cannot_be_reduced_below_base"]=7530, - ["local_display_nearby_allies_critical_strike_multiplier_+"]=7531, - ["local_display_nearby_allies_extra_damage_rolls"]=7532, - ["local_display_nearby_allies_have_fortify"]=7533, - ["local_display_nearby_enemies_all_resistances_%"]=2894, - ["local_display_nearby_enemies_are_blinded"]=3286, - ["local_display_nearby_enemies_are_chilled"]=7534, - ["local_display_nearby_enemies_are_covered_in_ash"]=7535, - ["local_display_nearby_enemies_are_crushed"]=3287, - ["local_display_nearby_enemies_are_intimidated"]=7536, - ["local_display_nearby_enemies_cannot_crit"]=7537, - ["local_display_nearby_enemies_critical_strike_chance_+%_against_self"]=3291, - ["local_display_nearby_enemies_flask_charges_granted_+%"]=3292, - ["local_display_nearby_enemies_have_fire_exposure"]=7538, - ["local_display_nearby_enemies_have_malediction"]=3288, - ["local_display_nearby_enemies_movement_speed_+%"]=3293, - ["local_display_nearby_enemies_scorched"]=3289, - ["local_display_nearby_enemies_stun_and_block_recovery_+%"]=3294, - ["local_display_nearby_enemies_take_X_chaos_damage_per_minute"]=4089, - ["local_display_nearby_enemies_take_X_lightning_damage_per_minute"]=3054, - ["local_display_nearby_enemy_chaos_damage_resistance_%"]=7539, - ["local_display_nearby_enemy_cold_damage_resistance_%"]=7540, - ["local_display_nearby_enemy_elemental_damage_taken_+%"]=7541, - ["local_display_nearby_enemy_fire_damage_resistance_%"]=7542, - ["local_display_nearby_enemy_life_reserved_by_stat_%"]=7543, - ["local_display_nearby_enemy_lightning_damage_resistance_%"]=7544, - ["local_display_nearby_enemy_no_chaos_damage_resistance"]=7545, - ["local_display_nearby_enemy_physical_damage_taken_+%"]=7546, - ["local_display_nearby_stationary_enemies_gain_a_grasping_vine_every_x_ms"]=4309, - ["local_display_raise_spider_on_kill_%_chance"]=702, - ["local_display_self_crushed"]=7547, - ["local_display_socketed_attack_damage_+%_final"]=488, - ["local_display_socketed_attacks_additional_critical_strike_chance"]=489, - ["local_display_socketed_attacks_critical_strike_multiplier_+"]=490, - ["local_display_socketed_attacks_mana_cost_+"]=491, - ["local_display_socketed_curse_gems_have_mana_reservation_+%"]=543, - ["local_display_socketed_curse_gems_supported_by_level_x_blasphemy"]=463, - ["local_display_socketed_gems_additional_critical_strike_chance_%"]=484, - ["local_display_socketed_gems_attack_and_cast_speed_+%_final"]=492, - ["local_display_socketed_gems_chain_X_additional_times"]=483, - ["local_display_socketed_gems_curse_auras_also_affect_you"]=493, - ["local_display_socketed_gems_damage_+%_final_while_on_low_life"]=494, - ["local_display_socketed_gems_damage_over_time_+%_final"]=531, - ["local_display_socketed_gems_elemental_damage_+%_final"]=495, - ["local_display_socketed_gems_exposure_on_hit"]=496, - ["local_display_socketed_gems_get_added_chaos_damage_level"]=402, - ["local_display_socketed_gems_get_added_fire_damage_level"]=406, - ["local_display_socketed_gems_get_added_lightning_damage_level"]=411, - ["local_display_socketed_gems_get_additional_accuracy_level"]=424, - ["local_display_socketed_gems_get_blind_level"]=414, - ["local_display_socketed_gems_get_blood_magic_level"]=403, - ["local_display_socketed_gems_get_cast_on_crit_level"]=416, - ["local_display_socketed_gems_get_cast_on_death_level"]=422, - ["local_display_socketed_gems_get_cast_when_stunned_level"]=421, - ["local_display_socketed_gems_get_chance_to_bleed_level"]=428, - ["local_display_socketed_gems_get_cold_to_fire_level"]=407, - ["local_display_socketed_gems_get_concentrated_area_level"]=397, - ["local_display_socketed_gems_get_curse_reflection"]=481, - ["local_display_socketed_gems_get_echo_level"]=437, - ["local_display_socketed_gems_get_elemental_proliferation_level"]=410, - ["local_display_socketed_gems_get_faster_attacks_level"]=413, - ["local_display_socketed_gems_get_faster_cast_level"]=444, - ["local_display_socketed_gems_get_faster_projectiles_level"]=426, - ["local_display_socketed_gems_get_fire_penetration_level"]=409, - ["local_display_socketed_gems_get_flee_level"]=442, - ["local_display_socketed_gems_get_fork_level"]=430, - ["local_display_socketed_gems_get_generosity_level"]=439, - ["local_display_socketed_gems_get_increased_area_level"]=226, - ["local_display_socketed_gems_get_increased_critical_damage_level"]=429, - ["local_display_socketed_gems_get_increased_duration_level"]=404, - ["local_display_socketed_gems_get_iron_will_level"]=445, - ["local_display_socketed_gems_get_item_quantity_+%"]=480, - ["local_display_socketed_gems_get_life_leech_level"]=427, - ["local_display_socketed_gems_get_mana_multplier_%"]=473, - ["local_display_socketed_gems_get_melee_physical_damage_level"]=412, - ["local_display_socketed_gems_get_melee_splash_level"]=415, - ["local_display_socketed_gems_get_multistrike_level"]=425, - ["local_display_socketed_gems_get_pierce_level"]=453, - ["local_display_socketed_gems_get_reduced_mana_cost_level"]=438, - ["local_display_socketed_gems_get_remote_mine_level"]=441, - ["local_display_socketed_gems_get_spell_totem_level"]=408, - ["local_display_socketed_gems_get_stun_level"]=423, - ["local_display_socketed_gems_get_trap_level"]=398, - ["local_display_socketed_gems_get_weapon_elemental_damage_level"]=431, - ["local_display_socketed_gems_have_%_chance_to_ignite_with_fire_damage"]=477, - ["local_display_socketed_gems_have_blood_magic"]=470, - ["local_display_socketed_gems_have_chance_to_flee_%"]=478, - ["local_display_socketed_gems_have_elemental_equilibrium"]=532, - ["local_display_socketed_gems_have_elemental_equilibrium_effect_pluspercent"]=535, - ["local_display_socketed_gems_have_iron_will"]=482, - ["local_display_socketed_gems_have_mana_reservation_+%"]=471, - ["local_display_socketed_gems_have_number_of_additional_projectiles"]=536, - ["local_display_socketed_gems_have_secrets_of_suffering"]=534, - ["local_display_socketed_gems_mana_cost_-%"]=497, - ["local_display_socketed_gems_maximum_added_fire_damage"]=498, - ["local_display_socketed_gems_minimum_added_fire_damage"]=498, - ["local_display_socketed_gems_physical_damage_%_to_add_as_lightning"]=499, - ["local_display_socketed_gems_projectile_damage_+%_final"]=500, - ["local_display_socketed_gems_projectile_spells_cooldown_modifier_ms"]=501, - ["local_display_socketed_gems_projectiles_nova"]=538, - ["local_display_socketed_gems_skill_effect_duration_+%"]=540, - ["local_display_socketed_gems_supported_by_X_lesser_poison"]=466, - ["local_display_socketed_gems_supported_by_X_vile_toxins"]=465, - ["local_display_socketed_gems_supported_by_level_x_arcane_surge"]=227, - ["local_display_socketed_gems_supported_by_level_x_archmage"]=228, - ["local_display_socketed_gems_supported_by_level_x_aura_duration"]=229, - ["local_display_socketed_gems_supported_by_level_x_automation"]=230, - ["local_display_socketed_gems_supported_by_level_x_barrage"]=231, - ["local_display_socketed_gems_supported_by_level_x_behead"]=232, - ["local_display_socketed_gems_supported_by_level_x_bloodlust"]=233, - ["local_display_socketed_gems_supported_by_level_x_bloodthirst"]=234, - ["local_display_socketed_gems_supported_by_level_x_bonechill"]=235, - ["local_display_socketed_gems_supported_by_level_x_brutality"]=236, - ["local_display_socketed_gems_supported_by_level_x_call_to_arms"]=237, - ["local_display_socketed_gems_supported_by_level_x_cast_on_damage_taken"]=238, - ["local_display_socketed_gems_supported_by_level_x_cast_on_kill"]=239, - ["local_display_socketed_gems_supported_by_level_x_cast_while_channelling"]=240, - ["local_display_socketed_gems_supported_by_level_x_chain"]=241, - ["local_display_socketed_gems_supported_by_level_x_chance_to_bleed"]=242, - ["local_display_socketed_gems_supported_by_level_x_chance_to_ignite"]=243, - ["local_display_socketed_gems_supported_by_level_x_chaos_attacks"]=352, - ["local_display_socketed_gems_supported_by_level_x_charged_mines"]=244, - ["local_display_socketed_gems_supported_by_level_x_close_combat"]=245, - ["local_display_socketed_gems_supported_by_level_x_cluster_trap"]=399, - ["local_display_socketed_gems_supported_by_level_x_controlled_blaze"]=246, - ["local_display_socketed_gems_supported_by_level_x_corrupting_cry"]=247, - ["local_display_socketed_gems_supported_by_level_x_culling_strike"]=248, - ["local_display_socketed_gems_supported_by_level_x_curse_on_hit"]=249, - ["local_display_socketed_gems_supported_by_level_x_cursed_ground"]=250, - ["local_display_socketed_gems_supported_by_level_x_deadly_ailments"]=251, - ["local_display_socketed_gems_supported_by_level_x_deathmark"]=252, - ["local_display_socketed_gems_supported_by_level_x_decay"]=253, - ["local_display_socketed_gems_supported_by_level_x_devour"]=254, - ["local_display_socketed_gems_supported_by_level_x_earthbreaker"]=255, - ["local_display_socketed_gems_supported_by_level_x_efficacy"]=256, - ["local_display_socketed_gems_supported_by_level_x_elemental_focus"]=257, - ["local_display_socketed_gems_supported_by_level_x_elemental_penetration"]=258, - ["local_display_socketed_gems_supported_by_level_x_empower"]=259, - ["local_display_socketed_gems_supported_by_level_x_endurance_charge_on_stun"]=469, - ["local_display_socketed_gems_supported_by_level_x_energy_leech"]=260, - ["local_display_socketed_gems_supported_by_level_x_enhance"]=261, - ["local_display_socketed_gems_supported_by_level_x_enlighten"]=262, - ["local_display_socketed_gems_supported_by_level_x_eternal_blessing"]=263, - ["local_display_socketed_gems_supported_by_level_x_expert_retaliation"]=264, - ["local_display_socketed_gems_supported_by_level_x_feeding_frenzy"]=265, - ["local_display_socketed_gems_supported_by_level_x_fire_penetration"]=266, - ["local_display_socketed_gems_supported_by_level_x_fist_of_war"]=267, - ["local_display_socketed_gems_supported_by_level_x_flamewood"]=268, - ["local_display_socketed_gems_supported_by_level_x_focused_channelling"]=269, - ["local_display_socketed_gems_supported_by_level_x_focussed_ballista"]=270, - ["local_display_socketed_gems_supported_by_level_x_fortify"]=440, - ["local_display_socketed_gems_supported_by_level_x_fragility"]=271, - ["local_display_socketed_gems_supported_by_level_x_frenzy_power_on_trap_trigger"]=272, - ["local_display_socketed_gems_supported_by_level_x_fresh_meat"]=273, - ["local_display_socketed_gems_supported_by_level_x_frigid_bond"]=274, - ["local_display_socketed_gems_supported_by_level_x_greater_multiple_projectiles"]=275, - ["local_display_socketed_gems_supported_by_level_x_greater_spell_echo"]=276, - ["local_display_socketed_gems_supported_by_level_x_greater_volley"]=277, - ["local_display_socketed_gems_supported_by_level_x_guardians_blessing"]=278, - ["local_display_socketed_gems_supported_by_level_x_hex_bloom"]=279, - ["local_display_socketed_gems_supported_by_level_x_ignite_proliferation"]=280, - ["local_display_socketed_gems_supported_by_level_x_immolate"]=281, - ["local_display_socketed_gems_supported_by_level_x_impale"]=282, - ["local_display_socketed_gems_supported_by_level_x_impending_doom"]=283, - ["local_display_socketed_gems_supported_by_level_x_increased_burning_damage"]=284, - ["local_display_socketed_gems_supported_by_level_x_increased_critical_strikes"]=285, - ["local_display_socketed_gems_supported_by_level_x_increased_duration"]=286, - ["local_display_socketed_gems_supported_by_level_x_infernal_legion"]=287, - ["local_display_socketed_gems_supported_by_level_x_intensify"]=288, - ["local_display_socketed_gems_supported_by_level_x_iron_grip"]=289, - ["local_display_socketed_gems_supported_by_level_x_item_quantity"]=290, - ["local_display_socketed_gems_supported_by_level_x_item_rarity"]=291, - ["local_display_socketed_gems_supported_by_level_x_life_gain_on_hit"]=292, - ["local_display_socketed_gems_supported_by_level_x_lifetap"]=293, - ["local_display_socketed_gems_supported_by_level_x_lightning_penetration"]=294, - ["local_display_socketed_gems_supported_by_level_x_locus_mine"]=295, - ["local_display_socketed_gems_supported_by_level_x_maim"]=296, - ["local_display_socketed_gems_supported_by_level_x_manaforged_arrows"]=297, - ["local_display_socketed_gems_supported_by_level_x_mark_on_hit"]=298, - ["local_display_socketed_gems_supported_by_level_x_meat_shield"]=299, - ["local_display_socketed_gems_supported_by_level_x_melee_damage_on_full_life"]=300, - ["local_display_socketed_gems_supported_by_level_x_minefield"]=301, - ["local_display_socketed_gems_supported_by_level_x_mirage_archer"]=302, - ["local_display_socketed_gems_supported_by_level_x_multi_totem"]=303, - ["local_display_socketed_gems_supported_by_level_x_multi_trap"]=400, - ["local_display_socketed_gems_supported_by_level_x_multicast"]=304, - ["local_display_socketed_gems_supported_by_level_x_nightblade"]=305, - ["local_display_socketed_gems_supported_by_level_x_onslaught"]=306, - ["local_display_socketed_gems_supported_by_level_x_overcharge"]=307, - ["local_display_socketed_gems_supported_by_level_x_overexertion"]=308, - ["local_display_socketed_gems_supported_by_level_x_parallel_projectiles"]=309, - ["local_display_socketed_gems_supported_by_level_x_physical_projectile_attack_damage"]=310, - ["local_display_socketed_gems_supported_by_level_x_physical_to_lightning"]=311, - ["local_display_socketed_gems_supported_by_level_x_pinpoint"]=312, - ["local_display_socketed_gems_supported_by_level_x_point_blank"]=313, - ["local_display_socketed_gems_supported_by_level_x_poison"]=314, - ["local_display_socketed_gems_supported_by_level_x_power_charge_on_crit"]=315, - ["local_display_socketed_gems_supported_by_level_x_prismatic_burst"]=316, - ["local_display_socketed_gems_supported_by_level_x_pulverise"]=317, - ["local_display_socketed_gems_supported_by_level_x_rage"]=318, - ["local_display_socketed_gems_supported_by_level_x_rain"]=319, - ["local_display_socketed_gems_supported_by_level_x_ranged_attack_totem"]=320, - ["local_display_socketed_gems_supported_by_level_x_rapid_decay"]=321, - ["local_display_socketed_gems_supported_by_level_x_reduced_block_chance"]=322, - ["local_display_socketed_gems_supported_by_level_x_reduced_duration"]=323, - ["local_display_socketed_gems_supported_by_level_x_remote_mine_2"]=324, - ["local_display_socketed_gems_supported_by_level_x_returning_projectiles"]=325, - ["local_display_socketed_gems_supported_by_level_x_rupture"]=326, - ["local_display_socketed_gems_supported_by_level_x_ruthless"]=327, - ["local_display_socketed_gems_supported_by_level_x_sacred_wisps"]=328, - ["local_display_socketed_gems_supported_by_level_x_sacrifice"]=329, - ["local_display_socketed_gems_supported_by_level_x_sadism"]=330, - ["local_display_socketed_gems_supported_by_level_x_second_wind"]=331, - ["local_display_socketed_gems_supported_by_level_x_shockwave"]=332, - ["local_display_socketed_gems_supported_by_level_x_slower_projectiles"]=333, - ["local_display_socketed_gems_supported_by_level_x_snipe"]=334, - ["local_display_socketed_gems_supported_by_level_x_spell_cascade"]=335, - ["local_display_socketed_gems_supported_by_level_x_spell_focus"]=336, - ["local_display_socketed_gems_supported_by_level_x_spellblade"]=337, - ["local_display_socketed_gems_supported_by_level_x_spirit_strike"]=338, - ["local_display_socketed_gems_supported_by_level_x_storm_barrier"]=339, - ["local_display_socketed_gems_supported_by_level_x_summon_elemental_resistance"]=340, - ["local_display_socketed_gems_supported_by_level_x_summon_ghost_on_kill"]=341, - ["local_display_socketed_gems_supported_by_level_x_swift_assembly"]=342, - ["local_display_socketed_gems_supported_by_level_x_swiftbrand"]=343, - ["local_display_socketed_gems_supported_by_level_x_trap_and_mine_damage"]=401, - ["local_display_socketed_gems_supported_by_level_x_trap_cooldown"]=344, - ["local_display_socketed_gems_supported_by_level_x_trauma"]=345, - ["local_display_socketed_gems_supported_by_level_x_trinity"]=346, - ["local_display_socketed_gems_supported_by_level_x_unbound_ailments"]=347, - ["local_display_socketed_gems_supported_by_level_x_unleash"]=348, - ["local_display_socketed_gems_supported_by_level_x_urgent_orders"]=349, - ["local_display_socketed_gems_supported_by_level_x_void_manipulation"]=350, - ["local_display_socketed_gems_supported_by_level_x_volatility"]=351, - ["local_display_socketed_gems_supported_by_pierce_level"]=452, - ["local_display_socketed_gems_supported_by_x_added_cold_damage"]=461, - ["local_display_socketed_gems_supported_by_x_cold_penetration"]=456, - ["local_display_socketed_gems_supported_by_x_controlled_destruction"]=468, - ["local_display_socketed_gems_supported_by_x_hypothermia"]=454, - ["local_display_socketed_gems_supported_by_x_ice_bite"]=455, - ["local_display_socketed_gems_supported_by_x_increased_critical_damage_level"]=450, - ["local_display_socketed_gems_supported_by_x_increased_minion_damage_level"]=449, - ["local_display_socketed_gems_supported_by_x_increased_minion_life_level"]=447, - ["local_display_socketed_gems_supported_by_x_increased_minion_speed_level"]=451, - ["local_display_socketed_gems_supported_by_x_innervate_level"]=464, - ["local_display_socketed_gems_supported_by_x_knockback_level"]=446, - ["local_display_socketed_gems_supported_by_x_lesser_multiple_projectiles_level"]=448, - ["local_display_socketed_gems_supported_by_x_mana_leech"]=457, - ["local_display_socketed_gems_supported_by_x_reduced_mana_cost"]=462, - ["local_display_socketed_golem_attack_and_cast_speed_+%"]=199, - ["local_display_socketed_golem_buff_effect_+%"]=200, - ["local_display_socketed_golem_chance_to_taunt_%"]=201, - ["local_display_socketed_golem_life_regeneration_rate_per_minute_%"]=202, - ["local_display_socketed_golem_skill_grants_onslaught_when_summoned"]=203, - ["local_display_socketed_golem_skills_minions_life_%_to_add_as_energy_shield"]=204, - ["local_display_socketed_melee_gems_have_area_radius_+%"]=474, - ["local_display_socketed_movement_skills_have_no_mana_cost"]=502, - ["local_display_socketed_non_curse_aura_gems_effect_+%"]=533, - ["local_display_socketed_projectile_spells_duration_+%_final"]=541, - ["local_display_socketed_red_gems_have_%_of_physical_damage_to_add_as_fire"]=475, - ["local_display_socketed_skills_attack_speed_+%"]=503, - ["local_display_socketed_skills_cast_speed_+%"]=504, - ["local_display_socketed_skills_deal_double_damage"]=505, - ["local_display_socketed_skills_fork"]=506, - ["local_display_socketed_skills_summon_your_maximum_number_of_totems_in_formation"]=476, - ["local_display_socketed_spell_damage_+%_final"]=507, - ["local_display_socketed_spells_additional_critical_strike_chance"]=508, - ["local_display_socketed_spells_additional_projectiles"]=537, - ["local_display_socketed_spells_critical_strike_multiplier_+"]=509, - ["local_display_socketed_spells_mana_cost_+%"]=510, - ["local_display_socketed_spells_projectiles_circle"]=539, - ["local_display_socketed_spells_repeat_count"]=485, - ["local_display_socketed_trap_skills_create_smoke_cloud"]=542, - ["local_display_socketed_travel_skills_damage_+%_final"]=511, - ["local_display_socketed_triggered_skills_deal_double_damage"]=353, - ["local_display_socketed_vaal_skills_area_of_effect_+%"]=512, - ["local_display_socketed_vaal_skills_aura_effect_+%"]=513, - ["local_display_socketed_vaal_skills_damage_+%_final"]=514, - ["local_display_socketed_vaal_skills_effect_duration_+%"]=515, - ["local_display_socketed_vaal_skills_elusive_on_use"]=516, - ["local_display_socketed_vaal_skills_extra_damage_rolls"]=517, - ["local_display_socketed_vaal_skills_ignore_monster_phys_reduction"]=518, - ["local_display_socketed_vaal_skills_ignore_monster_resistances"]=519, - ["local_display_socketed_vaal_skills_no_soul_gain_prevention_duration"]=520, - ["local_display_socketed_vaal_skills_projectile_speed_+%"]=521, - ["local_display_socketed_vaal_skills_soul_gain_prevention_duration_+%"]=522, - ["local_display_socketed_vaal_skills_soul_requirement_+%_final"]=523, - ["local_display_socketed_vaal_skills_store_uses_+"]=524, - ["local_display_socketed_warcry_skills_cooldown_use_+"]=525, - ["local_display_spend_energy_shield_for_costs_before_mana_for_socketed_skills"]=526, - ["local_display_starfall_on_melee_critical_hit_%"]=703, - ["local_display_summon_harbinger_x_on_equip"]=562, - ["local_display_summon_raging_spirit_on_kill_%"]=704, - ["local_display_summon_wolf_on_kill_%"]=705, - ["local_display_summon_writhing_worm_every_2000_ms"]=549, - ["local_display_supported_by_level_10_controlled_destruction"]=354, - ["local_display_supported_by_level_10_intensify"]=355, - ["local_display_supported_by_level_10_spell_echo"]=356, - ["local_display_supported_by_level_x_awakened_added_chaos_damage"]=357, - ["local_display_supported_by_level_x_awakened_added_cold_damage"]=358, - ["local_display_supported_by_level_x_awakened_added_fire_damage"]=359, - ["local_display_supported_by_level_x_awakened_added_lightning_damage"]=360, - ["local_display_supported_by_level_x_awakened_ancestral_call"]=361, - ["local_display_supported_by_level_x_awakened_arrow_nova"]=362, - ["local_display_supported_by_level_x_awakened_blasphemy"]=363, - ["local_display_supported_by_level_x_awakened_brutality"]=364, - ["local_display_supported_by_level_x_awakened_burning_damage"]=365, - ["local_display_supported_by_level_x_awakened_cast_on_crit"]=366, - ["local_display_supported_by_level_x_awakened_cast_while_channelling"]=367, - ["local_display_supported_by_level_x_awakened_chain"]=368, - ["local_display_supported_by_level_x_awakened_cold_penetration"]=369, - ["local_display_supported_by_level_x_awakened_controlled_destruction"]=370, - ["local_display_supported_by_level_x_awakened_curse_on_hit"]=371, - ["local_display_supported_by_level_x_awakened_deadly_ailments"]=372, - ["local_display_supported_by_level_x_awakened_elemental_focus"]=373, - ["local_display_supported_by_level_x_awakened_empower"]=374, - ["local_display_supported_by_level_x_awakened_enhance"]=375, - ["local_display_supported_by_level_x_awakened_enlighten"]=376, - ["local_display_supported_by_level_x_awakened_fire_penetration"]=377, - ["local_display_supported_by_level_x_awakened_fork"]=378, - ["local_display_supported_by_level_x_awakened_generosity"]=379, - ["local_display_supported_by_level_x_awakened_greater_multiple_projectiles"]=380, - ["local_display_supported_by_level_x_awakened_increased_area_of_effect"]=381, - ["local_display_supported_by_level_x_awakened_lightning_penetration"]=382, - ["local_display_supported_by_level_x_awakened_melee_physical_damage"]=383, - ["local_display_supported_by_level_x_awakened_melee_splash"]=384, - ["local_display_supported_by_level_x_awakened_minion_damage"]=385, - ["local_display_supported_by_level_x_awakened_multistrike"]=386, - ["local_display_supported_by_level_x_awakened_spell_cascade"]=387, - ["local_display_supported_by_level_x_awakened_spell_echo"]=388, - ["local_display_supported_by_level_x_awakened_swift_affliction"]=389, - ["local_display_supported_by_level_x_awakened_unbound_ailments"]=390, - ["local_display_supported_by_level_x_awakened_unleash"]=391, - ["local_display_supported_by_level_x_awakened_vicious_projectiles"]=392, - ["local_display_supported_by_level_x_awakened_void_manipulation"]=393, - ["local_display_supported_by_level_x_awakened_weapon_elemental_damage"]=394, - ["local_display_tailwind_if_socketed_vaal_skill_used_recently"]=527, - ["local_display_tattoo_trigger_level_x_ahuana"]=655, - ["local_display_tattoo_trigger_level_x_akoya"]=656, - ["local_display_tattoo_trigger_level_x_ikiaho"]=657, - ["local_display_tattoo_trigger_level_x_kahuturoa"]=658, - ["local_display_tattoo_trigger_level_x_kaom"]=659, - ["local_display_tattoo_trigger_level_x_kiloava"]=660, - ["local_display_tattoo_trigger_level_x_maata"]=661, - ["local_display_tattoo_trigger_level_x_rakiata"]=662, - ["local_display_tattoo_trigger_level_x_tawhanuku"]=663, - ["local_display_tattoo_trigger_level_x_utula"]=664, - ["local_display_touched_by_tormented_illegal_fisherman"]=7548, - ["local_display_trickster_heartstopper_rotating_buff"]=7549, - ["local_display_trigger_commandment_of_inferno_on_crit_%"]=706, - ["local_display_trigger_corpse_walk_on_equip_level"]=707, - ["local_display_trigger_death_walk_on_equip_level"]=709, - ["local_display_trigger_ignition_blast_on_ignited_enemy_death"]=710, - ["local_display_trigger_level_18_summon_spectral_wolf_on_kill_10%_chance"]=711, - ["local_display_trigger_level_1_blood_rage_on_kill_chance_%"]=712, - ["local_display_trigger_level_20_animate_guardian_weapon_on_guardian_kill_%_chance"]=713, - ["local_display_trigger_level_20_animate_guardian_weapon_on_weapon_kill_%_chance"]=714, - ["local_display_trigger_level_20_shade_form_on_skill_use_%"]=715, - ["local_display_trigger_level_20_shade_form_when_hit_%"]=716, - ["local_display_trigger_level_20_summon_spectral_wolf_on_crit_with_this_weapon_%_chance"]=667, - ["local_display_trigger_level_20_tornado_when_you_gain_avians_flight_or_avians_might_%"]=717, - ["local_display_trigger_level_X_assassins_mark_when_you_hit_rare_or_unique_enemy"]=718, - ["local_display_trigger_level_X_atziri_flameblast"]=719, - ["local_display_trigger_level_X_atziri_storm_call"]=720, - ["local_display_trigger_level_X_blinding_aura_skill_on_equip"]=607, - ["local_display_trigger_level_X_darktongue_kiss_on_curse"]=668, - ["local_display_trigger_level_X_feast_of_flesh_every_5_seconds"]=721, - ["local_display_trigger_level_X_offering_every_5_seconds"]=722, - ["local_display_trigger_level_X_poachers_mark_when_you_hit_rare_or_unique_enemy"]=723, - ["local_display_trigger_level_X_shield_shatter_on_block"]=724, - ["local_display_trigger_level_X_void_gaze_on_skill_use"]=669, - ["local_display_trigger_level_X_warlords_mark_when_you_hit_rare_or_unique_enemy"]=725, - ["local_display_trigger_level_x_create_fungal_ground_on_kill"]=708, - ["local_display_trigger_level_x_curse_nova_on_hit_while_cursed"]=726, - ["local_display_trigger_level_x_fiery_impact_on_melee_hit_with_this_weapon"]=727, - ["local_display_trigger_level_x_flame_dash_when_you_use_a_socketed_skill"]=728, - ["local_display_trigger_level_x_gore_shockwave_on_melee_hit_with_atleast_150_strength"]=729, - ["local_display_trigger_level_x_icicle_nova_on_hit_vs_frozen_enemy"]=730, - ["local_display_trigger_level_x_intimidating_cry_when_you_lose_cats_stealth"]=731, - ["local_display_trigger_level_x_lightning_warp_on_hit_with_this_weapon"]=670, - ["local_display_trigger_level_x_rain_of_arrows_on_bow_attack"]=732, - ["local_display_trigger_level_x_reflection_skill_on_equip"]=733, - ["local_display_trigger_level_x_smoke_cloud_on_trap_triggered"]=734, - ["local_display_trigger_level_x_spirit_burst_on_skill_use_if_have_spirit_charge"]=735, - ["local_display_trigger_level_x_stalking_pustule_on_kill"]=736, - ["local_display_trigger_level_x_storm_cascade_on_attack"]=671, - ["local_display_trigger_level_x_summon_phantasm_on_corpse_consume"]=737, - ["local_display_trigger_level_x_toxic_rain_on_bow_attack"]=752, - ["local_display_trigger_level_x_void_shot_on_arrow_fire_while_you_have_void_arrow"]=738, - ["local_display_trigger_socketed_curses_on_casting_curse_%_chance"]=740, - ["local_display_trigger_summon_taunting_contraption_on_flask_use"]=739, - ["local_display_trigger_temporal_anomaly_when_hit_%_chance"]=741, - ["local_display_trigger_tentacle_smash_on_kill_%_chance"]=742, - ["local_display_trigger_void_sphere_on_kill_%_chance"]=743, - ["local_display_use_level_X_abyssal_cry_on_hit"]=744, - ["local_display_you_get_elemental_ailments_instead_of_allies"]=7550, - ["local_double_damage_to_chilled_enemies"]=3647, - ["local_double_damage_with_attacks"]=7551, - ["local_double_damage_with_attacks_chance_%"]=7552, - ["local_elemental_damage_+%"]=7553, - ["local_elemental_damage_+%_per_2%_quality"]=7554, - ["local_elemental_penetration_%"]=3648, - ["local_energy_shield"]=1465, - ["local_energy_shield_+%"]=1466, - ["local_energy_shield_regeneration_per_minute_%_if_crit_recently"]=7555, - ["local_evasion_and_energy_shield_+%"]=1461, - ["local_evasion_rating_+%"]=1457, - ["local_evasion_rating_and_energy_shield"]=7556, + ["local_display_grants_level_X_queens_demand_skill"]=688, + ["local_display_grants_level_X_reckoning"]=594, + ["local_display_grants_level_X_vengeance"]=565, + ["local_display_grants_level_x_blood_offering_skill"]=617, + ["local_display_grants_level_x_curse_pillar_skil_and_20%_less_curse_effect"]=618, + ["local_display_grants_level_x_curse_pillar_skill"]=619, + ["local_display_grants_level_x_despair"]=566, + ["local_display_grants_level_x_hidden_blade"]=718, + ["local_display_grants_level_x_misty_reflection"]=620, + ["local_display_grants_level_x_summon_stone_golem"]=564, + ["local_display_grants_level_x_wintertide_brand"]=621, + ["local_display_grants_skil_convocation_level"]=622, + ["local_display_grants_skill_abyssal_cry_level"]=623, + ["local_display_grants_skill_accuracy_crits_aura_level"]=624, + ["local_display_grants_skill_ailment_bearer"]=625, + ["local_display_grants_skill_anger_level"]=588, + ["local_display_grants_skill_barkskin"]=626, + ["local_display_grants_skill_battlemages_cry_level"]=627, + ["local_display_grants_skill_bear_trap_level"]=563, + ["local_display_grants_skill_bird_aspect_level"]=628, + ["local_display_grants_skill_blight_level"]=595, + ["local_display_grants_skill_blood_sacrament_level"]=580, + ["local_display_grants_skill_bone_armour"]=629, + ["local_display_grants_skill_brand_detonate_level"]=630, + ["local_display_grants_skill_breach_hand_trap_level"]=631, + ["local_display_grants_skill_call_of_steel"]=632, + ["local_display_grants_skill_cat_aspect_level"]=633, + ["local_display_grants_skill_clarity_level"]=579, + ["local_display_grants_skill_conductivity_level"]=574, + ["local_display_grants_skill_corpse_sacrifice"]=634, + ["local_display_grants_skill_crab_aspect_level"]=635, + ["local_display_grants_skill_critical_weakness_level"]=585, + ["local_display_grants_skill_dash_level"]=636, + ["local_display_grants_skill_death_aura_level"]=600, + ["local_display_grants_skill_death_wish_level"]=637, + ["local_display_grants_skill_decoy_totem_level"]=638, + ["local_display_grants_skill_determination_level"]=589, + ["local_display_grants_skill_discipline_level"]=592, + ["local_display_grants_skill_doryanis_touch_level"]=598, + ["local_display_grants_skill_elemental_weakness_level"]=597, + ["local_display_grants_skill_embrace_madness_level"]=639, + ["local_display_grants_skill_enduring_cry_level"]=640, + ["local_display_grants_skill_evisceration"]=641, + ["local_display_grants_skill_flammability_level"]=570, + ["local_display_grants_skill_frostbite_level"]=575, + ["local_display_grants_skill_frostblink_level"]=560, + ["local_display_grants_skill_gluttony_of_elements_level"]=584, + ["local_display_grants_skill_grace_level"]=590, + ["local_display_grants_skill_haste_level"]=577, + ["local_display_grants_skill_hatred_level"]=587, + ["local_display_grants_skill_herald_of_agony_level"]=642, + ["local_display_grants_skill_herald_of_ash_level"]=643, + ["local_display_grants_skill_herald_of_ice_level"]=644, + ["local_display_grants_skill_herald_of_purity_level"]=645, + ["local_display_grants_skill_herald_of_the_breach_level"]=646, + ["local_display_grants_skill_herald_of_thunder_level"]=647, + ["local_display_grants_skill_icestorm_level"]=601, + ["local_display_grants_skill_intimidating_cry_level"]=648, + ["local_display_grants_skill_lightning_warp_level"]=649, + ["local_display_grants_skill_malevolence_level"]=650, + ["local_display_grants_skill_minion_sacrifice"]=651, + ["local_display_grants_skill_mirage_chieftain"]=652, + ["local_display_grants_skill_penance"]=653, + ["local_display_grants_skill_pride_level"]=654, + ["local_display_grants_skill_projectile_weakness_level"]=596, + ["local_display_grants_skill_purity_level"]=583, + ["local_display_grants_skill_purity_of_cold_level"]=567, + ["local_display_grants_skill_purity_of_fire_level"]=561, + ["local_display_grants_skill_purity_of_lightning_level"]=569, + ["local_display_grants_skill_quieten"]=655, + ["local_display_grants_skill_rallying_cry_level"]=656, + ["local_display_grants_skill_scorching_ray_level"]=591, + ["local_display_grants_skill_smite_level"]=657, + ["local_display_grants_skill_spider_aspect_level"]=658, + ["local_display_grants_skill_summon_radiant_sentinel"]=659, + ["local_display_grants_skill_temporal_chains_level"]=576, + ["local_display_grants_skill_touch_of_fire_level"]=660, + ["local_display_grants_skill_unhinge_level"]=661, + ["local_display_grants_skill_vaal_impurity_of_fire_level"]=662, + ["local_display_grants_skill_vaal_impurity_of_ice_level"]=663, + ["local_display_grants_skill_vaal_impurity_of_lightning_level"]=664, + ["local_display_grants_skill_vampiric_icon_level"]=665, + ["local_display_grants_skill_vitality_level"]=581, + ["local_display_grants_skill_voodoo_doll"]=666, + ["local_display_grants_skill_vulnerability_level"]=599, + ["local_display_grants_skill_weapon_storm"]=667, + ["local_display_grants_skill_wrath_level"]=586, + ["local_display_grants_skill_zealotry_level"]=668, + ["local_display_grants_summon_beast_companion"]=568, + ["local_display_grants_summon_void_spawn"]=669, + ["local_display_grants_unholy_might"]=2848, + ["local_display_grants_unleash_power"]=670, + ["local_display_guardian_alternating_block_chance"]=7774, + ["local_display_has_additional_implicit_mod"]=578, + ["local_display_hits_against_nearby_enemies_critical_strike_chance_+50%"]=3332, + ["local_display_illusory_warp_level"]=562, + ["local_display_item_found_rarity_+%_for_you_and_nearby_allies"]=1533, + ["local_display_lose_soul_eater_stack_every_x_seconds_while_no_unique_in_your_presence"]=8003, + ["local_display_manifest_dancing_dervish_destroy_on_end_rampage"]=3274, + ["local_display_manifest_dancing_dervish_disables_weapons"]=3273, + ["local_display_minions_grant_onslaught"]=3275, + ["local_display_mod_aura_mana_regeration_rate_+%"]=7775, + ["local_display_molten_burst_on_melee_hit_%"]=719, + ["local_display_movement_speed_+%_for_you_and_nearby_allies"]=7776, + ["local_display_nearby_allies_action_speed_cannot_be_reduced_below_base"]=7777, + ["local_display_nearby_allies_critical_strike_multiplier_+"]=7778, + ["local_display_nearby_allies_extra_damage_rolls"]=7779, + ["local_display_nearby_allies_have_fortify"]=7780, + ["local_display_nearby_enemies_all_resistances_%"]=2931, + ["local_display_nearby_enemies_are_blinded"]=3328, + ["local_display_nearby_enemies_are_chilled"]=7781, + ["local_display_nearby_enemies_are_covered_in_ash"]=7782, + ["local_display_nearby_enemies_are_crushed"]=3329, + ["local_display_nearby_enemies_are_debilitated"]=7783, + ["local_display_nearby_enemies_are_intimidated"]=7784, + ["local_display_nearby_enemies_cannot_crit"]=7785, + ["local_display_nearby_enemies_critical_strike_chance_+%_against_self"]=3333, + ["local_display_nearby_enemies_flask_charges_granted_+%"]=3334, + ["local_display_nearby_enemies_have_fire_exposure"]=7786, + ["local_display_nearby_enemies_have_malediction"]=3330, + ["local_display_nearby_enemies_movement_speed_+%"]=3335, + ["local_display_nearby_enemies_scorched"]=3331, + ["local_display_nearby_enemies_stun_and_block_recovery_+%"]=3336, + ["local_display_nearby_enemies_take_X_chaos_damage_per_minute"]=4135, + ["local_display_nearby_enemies_take_X_lightning_damage_per_minute"]=3096, + ["local_display_nearby_enemy_chaos_damage_resistance_%"]=7787, + ["local_display_nearby_enemy_cold_damage_resistance_%"]=7788, + ["local_display_nearby_enemy_elemental_damage_taken_+%"]=7789, + ["local_display_nearby_enemy_fire_damage_resistance_%"]=7790, + ["local_display_nearby_enemy_life_reserved_by_stat_%"]=7791, + ["local_display_nearby_enemy_lightning_damage_resistance_%"]=7792, + ["local_display_nearby_enemy_no_chaos_damage_resistance"]=7793, + ["local_display_nearby_enemy_physical_damage_taken_+%"]=7794, + ["local_display_nearby_stationary_enemies_gain_a_grasping_vine_every_x_ms"]=4355, + ["local_display_raise_spider_on_kill_%_chance"]=720, + ["local_display_self_crushed"]=7795, + ["local_display_socketed_attack_damage_+%_final"]=497, + ["local_display_socketed_attacks_additional_critical_strike_chance"]=498, + ["local_display_socketed_attacks_critical_strike_multiplier_+"]=499, + ["local_display_socketed_attacks_mana_cost_+"]=500, + ["local_display_socketed_curse_gems_have_mana_reservation_+%"]=552, + ["local_display_socketed_curse_gems_supported_by_level_x_blasphemy"]=471, + ["local_display_socketed_gems_additional_critical_strike_chance_%"]=492, + ["local_display_socketed_gems_attack_and_cast_speed_+%_final"]=501, + ["local_display_socketed_gems_chain_X_additional_times"]=491, + ["local_display_socketed_gems_curse_auras_also_affect_you"]=502, + ["local_display_socketed_gems_damage_+%_final_while_on_low_life"]=503, + ["local_display_socketed_gems_damage_over_time_+%_final"]=540, + ["local_display_socketed_gems_elemental_damage_+%_final"]=504, + ["local_display_socketed_gems_exposure_on_hit"]=505, + ["local_display_socketed_gems_get_added_chaos_damage_level"]=409, + ["local_display_socketed_gems_get_added_fire_damage_level"]=413, + ["local_display_socketed_gems_get_added_lightning_damage_level"]=418, + ["local_display_socketed_gems_get_additional_accuracy_level"]=431, + ["local_display_socketed_gems_get_blind_level"]=421, + ["local_display_socketed_gems_get_blood_magic_level"]=410, + ["local_display_socketed_gems_get_cast_on_crit_level"]=423, + ["local_display_socketed_gems_get_cast_on_death_level"]=429, + ["local_display_socketed_gems_get_cast_when_stunned_level"]=428, + ["local_display_socketed_gems_get_chance_to_bleed_level"]=435, + ["local_display_socketed_gems_get_cold_to_fire_level"]=414, + ["local_display_socketed_gems_get_concentrated_area_level"]=404, + ["local_display_socketed_gems_get_curse_reflection"]=489, + ["local_display_socketed_gems_get_echo_level"]=444, + ["local_display_socketed_gems_get_elemental_proliferation_level"]=417, + ["local_display_socketed_gems_get_faster_attacks_level"]=420, + ["local_display_socketed_gems_get_faster_cast_level"]=451, + ["local_display_socketed_gems_get_faster_projectiles_level"]=433, + ["local_display_socketed_gems_get_fire_penetration_level"]=416, + ["local_display_socketed_gems_get_flee_level"]=449, + ["local_display_socketed_gems_get_fork_level"]=437, + ["local_display_socketed_gems_get_generosity_level"]=446, + ["local_display_socketed_gems_get_increased_area_level"]=227, + ["local_display_socketed_gems_get_increased_critical_damage_level"]=436, + ["local_display_socketed_gems_get_increased_duration_level"]=411, + ["local_display_socketed_gems_get_iron_will_level"]=452, + ["local_display_socketed_gems_get_item_quantity_+%"]=488, + ["local_display_socketed_gems_get_life_leech_level"]=434, + ["local_display_socketed_gems_get_mana_multplier_%"]=481, + ["local_display_socketed_gems_get_melee_physical_damage_level"]=419, + ["local_display_socketed_gems_get_melee_splash_level"]=422, + ["local_display_socketed_gems_get_multistrike_level"]=432, + ["local_display_socketed_gems_get_pierce_level"]=461, + ["local_display_socketed_gems_get_reduced_mana_cost_level"]=445, + ["local_display_socketed_gems_get_remote_mine_level"]=448, + ["local_display_socketed_gems_get_spell_totem_level"]=415, + ["local_display_socketed_gems_get_stun_level"]=430, + ["local_display_socketed_gems_get_trap_level"]=405, + ["local_display_socketed_gems_get_weapon_elemental_damage_level"]=438, + ["local_display_socketed_gems_have_%_chance_to_ignite_with_fire_damage"]=485, + ["local_display_socketed_gems_have_blood_magic"]=478, + ["local_display_socketed_gems_have_chance_to_flee_%"]=486, + ["local_display_socketed_gems_have_elemental_equilibrium"]=541, + ["local_display_socketed_gems_have_elemental_equilibrium_effect_pluspercent"]=544, + ["local_display_socketed_gems_have_iron_will"]=490, + ["local_display_socketed_gems_have_mana_reservation_+%"]=479, + ["local_display_socketed_gems_have_number_of_additional_projectiles"]=545, + ["local_display_socketed_gems_have_secrets_of_suffering"]=543, + ["local_display_socketed_gems_mana_cost_-%"]=506, + ["local_display_socketed_gems_maximum_added_fire_damage"]=507, + ["local_display_socketed_gems_minimum_added_fire_damage"]=507, + ["local_display_socketed_gems_physical_damage_%_to_add_as_lightning"]=508, + ["local_display_socketed_gems_projectile_damage_+%_final"]=509, + ["local_display_socketed_gems_projectile_spells_cooldown_modifier_ms"]=510, + ["local_display_socketed_gems_projectiles_nova"]=547, + ["local_display_socketed_gems_skill_effect_duration_+%"]=549, + ["local_display_socketed_gems_supported_by_X_lesser_poison"]=474, + ["local_display_socketed_gems_supported_by_X_vile_toxins"]=473, + ["local_display_socketed_gems_supported_by_level_x_arcane_surge"]=228, + ["local_display_socketed_gems_supported_by_level_x_archmage"]=229, + ["local_display_socketed_gems_supported_by_level_x_aura_duration"]=230, + ["local_display_socketed_gems_supported_by_level_x_automation"]=231, + ["local_display_socketed_gems_supported_by_level_x_barrage"]=232, + ["local_display_socketed_gems_supported_by_level_x_behead"]=233, + ["local_display_socketed_gems_supported_by_level_x_bloodlust"]=234, + ["local_display_socketed_gems_supported_by_level_x_bloodthirst"]=235, + ["local_display_socketed_gems_supported_by_level_x_bonechill"]=236, + ["local_display_socketed_gems_supported_by_level_x_brutality"]=237, + ["local_display_socketed_gems_supported_by_level_x_call_to_arms"]=238, + ["local_display_socketed_gems_supported_by_level_x_cast_on_damage_taken"]=239, + ["local_display_socketed_gems_supported_by_level_x_cast_on_kill"]=240, + ["local_display_socketed_gems_supported_by_level_x_cast_while_channelling"]=241, + ["local_display_socketed_gems_supported_by_level_x_chain"]=242, + ["local_display_socketed_gems_supported_by_level_x_chance_to_bleed"]=243, + ["local_display_socketed_gems_supported_by_level_x_chance_to_ignite"]=244, + ["local_display_socketed_gems_supported_by_level_x_chaos_attacks"]=356, + ["local_display_socketed_gems_supported_by_level_x_charged_mines"]=245, + ["local_display_socketed_gems_supported_by_level_x_close_combat"]=246, + ["local_display_socketed_gems_supported_by_level_x_cluster_trap"]=406, + ["local_display_socketed_gems_supported_by_level_x_controlled_blaze"]=247, + ["local_display_socketed_gems_supported_by_level_x_corrupting_cry"]=248, + ["local_display_socketed_gems_supported_by_level_x_culling_strike"]=249, + ["local_display_socketed_gems_supported_by_level_x_curse_on_hit"]=250, + ["local_display_socketed_gems_supported_by_level_x_cursed_ground"]=251, + ["local_display_socketed_gems_supported_by_level_x_deadly_ailments"]=252, + ["local_display_socketed_gems_supported_by_level_x_deathmark"]=253, + ["local_display_socketed_gems_supported_by_level_x_decay"]=254, + ["local_display_socketed_gems_supported_by_level_x_devour"]=255, + ["local_display_socketed_gems_supported_by_level_x_earthbreaker"]=256, + ["local_display_socketed_gems_supported_by_level_x_efficacy"]=257, + ["local_display_socketed_gems_supported_by_level_x_elemental_focus"]=258, + ["local_display_socketed_gems_supported_by_level_x_elemental_penetration"]=259, + ["local_display_socketed_gems_supported_by_level_x_empower"]=260, + ["local_display_socketed_gems_supported_by_level_x_endurance_charge_on_stun"]=477, + ["local_display_socketed_gems_supported_by_level_x_energy_leech"]=261, + ["local_display_socketed_gems_supported_by_level_x_enhance"]=262, + ["local_display_socketed_gems_supported_by_level_x_enlighten"]=263, + ["local_display_socketed_gems_supported_by_level_x_eternal_blessing"]=264, + ["local_display_socketed_gems_supported_by_level_x_expert_retaliation"]=265, + ["local_display_socketed_gems_supported_by_level_x_feeding_frenzy"]=266, + ["local_display_socketed_gems_supported_by_level_x_fire_penetration"]=267, + ["local_display_socketed_gems_supported_by_level_x_fist_of_war"]=268, + ["local_display_socketed_gems_supported_by_level_x_flamewood"]=269, + ["local_display_socketed_gems_supported_by_level_x_focused_channelling"]=270, + ["local_display_socketed_gems_supported_by_level_x_focussed_ballista"]=271, + ["local_display_socketed_gems_supported_by_level_x_fortify"]=447, + ["local_display_socketed_gems_supported_by_level_x_fragility"]=272, + ["local_display_socketed_gems_supported_by_level_x_frenzy_power_on_trap_trigger"]=273, + ["local_display_socketed_gems_supported_by_level_x_fresh_meat"]=274, + ["local_display_socketed_gems_supported_by_level_x_frigid_bond"]=275, + ["local_display_socketed_gems_supported_by_level_x_greater_multiple_projectiles"]=276, + ["local_display_socketed_gems_supported_by_level_x_greater_spell_echo"]=277, + ["local_display_socketed_gems_supported_by_level_x_greater_volley"]=278, + ["local_display_socketed_gems_supported_by_level_x_guardians_blessing"]=279, + ["local_display_socketed_gems_supported_by_level_x_hex_bloom"]=280, + ["local_display_socketed_gems_supported_by_level_x_ignite_proliferation"]=281, + ["local_display_socketed_gems_supported_by_level_x_immolate"]=282, + ["local_display_socketed_gems_supported_by_level_x_impale"]=283, + ["local_display_socketed_gems_supported_by_level_x_impending_doom"]=284, + ["local_display_socketed_gems_supported_by_level_x_increased_burning_damage"]=285, + ["local_display_socketed_gems_supported_by_level_x_increased_critical_strikes"]=286, + ["local_display_socketed_gems_supported_by_level_x_increased_duration"]=287, + ["local_display_socketed_gems_supported_by_level_x_infernal_legion"]=288, + ["local_display_socketed_gems_supported_by_level_x_intensify"]=289, + ["local_display_socketed_gems_supported_by_level_x_iron_grip"]=290, + ["local_display_socketed_gems_supported_by_level_x_item_quantity"]=291, + ["local_display_socketed_gems_supported_by_level_x_item_rarity"]=292, + ["local_display_socketed_gems_supported_by_level_x_kinetic_instability"]=293, + ["local_display_socketed_gems_supported_by_level_x_life_gain_on_hit"]=294, + ["local_display_socketed_gems_supported_by_level_x_lifetap"]=295, + ["local_display_socketed_gems_supported_by_level_x_lightning_penetration"]=296, + ["local_display_socketed_gems_supported_by_level_x_living_lightning"]=297, + ["local_display_socketed_gems_supported_by_level_x_locus_mine"]=298, + ["local_display_socketed_gems_supported_by_level_x_maim"]=299, + ["local_display_socketed_gems_supported_by_level_x_manaforged_arrows"]=300, + ["local_display_socketed_gems_supported_by_level_x_mark_on_hit"]=301, + ["local_display_socketed_gems_supported_by_level_x_meat_shield"]=302, + ["local_display_socketed_gems_supported_by_level_x_melee_damage_on_full_life"]=303, + ["local_display_socketed_gems_supported_by_level_x_minefield"]=304, + ["local_display_socketed_gems_supported_by_level_x_mirage_archer"]=305, + ["local_display_socketed_gems_supported_by_level_x_multi_totem"]=306, + ["local_display_socketed_gems_supported_by_level_x_multi_trap"]=407, + ["local_display_socketed_gems_supported_by_level_x_multicast"]=307, + ["local_display_socketed_gems_supported_by_level_x_nightblade"]=308, + ["local_display_socketed_gems_supported_by_level_x_onslaught"]=309, + ["local_display_socketed_gems_supported_by_level_x_overcharge"]=310, + ["local_display_socketed_gems_supported_by_level_x_overexertion"]=311, + ["local_display_socketed_gems_supported_by_level_x_parallel_projectiles"]=312, + ["local_display_socketed_gems_supported_by_level_x_physical_projectile_attack_damage"]=313, + ["local_display_socketed_gems_supported_by_level_x_physical_to_lightning"]=314, + ["local_display_socketed_gems_supported_by_level_x_pinpoint"]=315, + ["local_display_socketed_gems_supported_by_level_x_point_blank"]=316, + ["local_display_socketed_gems_supported_by_level_x_poison"]=317, + ["local_display_socketed_gems_supported_by_level_x_power_charge_on_crit"]=318, + ["local_display_socketed_gems_supported_by_level_x_prismatic_burst"]=319, + ["local_display_socketed_gems_supported_by_level_x_pulverise"]=320, + ["local_display_socketed_gems_supported_by_level_x_rage"]=321, + ["local_display_socketed_gems_supported_by_level_x_rain"]=322, + ["local_display_socketed_gems_supported_by_level_x_ranged_attack_totem"]=323, + ["local_display_socketed_gems_supported_by_level_x_rapid_decay"]=324, + ["local_display_socketed_gems_supported_by_level_x_reduced_block_chance"]=325, + ["local_display_socketed_gems_supported_by_level_x_reduced_duration"]=326, + ["local_display_socketed_gems_supported_by_level_x_remote_mine_2"]=327, + ["local_display_socketed_gems_supported_by_level_x_returning_projectiles"]=328, + ["local_display_socketed_gems_supported_by_level_x_rupture"]=329, + ["local_display_socketed_gems_supported_by_level_x_ruthless"]=330, + ["local_display_socketed_gems_supported_by_level_x_sacred_wisps"]=331, + ["local_display_socketed_gems_supported_by_level_x_sacrifice"]=332, + ["local_display_socketed_gems_supported_by_level_x_sadism"]=333, + ["local_display_socketed_gems_supported_by_level_x_second_wind"]=334, + ["local_display_socketed_gems_supported_by_level_x_shockwave"]=335, + ["local_display_socketed_gems_supported_by_level_x_slower_projectiles"]=336, + ["local_display_socketed_gems_supported_by_level_x_snipe"]=337, + ["local_display_socketed_gems_supported_by_level_x_spell_cascade"]=338, + ["local_display_socketed_gems_supported_by_level_x_spell_focus"]=339, + ["local_display_socketed_gems_supported_by_level_x_spellblade"]=340, + ["local_display_socketed_gems_supported_by_level_x_spirit_strike"]=341, + ["local_display_socketed_gems_supported_by_level_x_storm_barrier"]=342, + ["local_display_socketed_gems_supported_by_level_x_summon_elemental_resistance"]=343, + ["local_display_socketed_gems_supported_by_level_x_summon_ghost_on_kill"]=344, + ["local_display_socketed_gems_supported_by_level_x_swift_assembly"]=345, + ["local_display_socketed_gems_supported_by_level_x_swiftbrand"]=346, + ["local_display_socketed_gems_supported_by_level_x_tornados"]=347, + ["local_display_socketed_gems_supported_by_level_x_trap_and_mine_damage"]=408, + ["local_display_socketed_gems_supported_by_level_x_trap_cooldown"]=348, + ["local_display_socketed_gems_supported_by_level_x_trauma"]=349, + ["local_display_socketed_gems_supported_by_level_x_trinity"]=350, + ["local_display_socketed_gems_supported_by_level_x_unbound_ailments"]=351, + ["local_display_socketed_gems_supported_by_level_x_unleash"]=352, + ["local_display_socketed_gems_supported_by_level_x_urgent_orders"]=353, + ["local_display_socketed_gems_supported_by_level_x_void_manipulation"]=354, + ["local_display_socketed_gems_supported_by_level_x_volatility"]=355, + ["local_display_socketed_gems_supported_by_pierce_level"]=460, + ["local_display_socketed_gems_supported_by_x_added_cold_damage"]=469, + ["local_display_socketed_gems_supported_by_x_cold_penetration"]=464, + ["local_display_socketed_gems_supported_by_x_controlled_destruction"]=476, + ["local_display_socketed_gems_supported_by_x_focused_channelling_level"]=454, + ["local_display_socketed_gems_supported_by_x_hypothermia"]=462, + ["local_display_socketed_gems_supported_by_x_ice_bite"]=463, + ["local_display_socketed_gems_supported_by_x_increased_critical_damage_level"]=458, + ["local_display_socketed_gems_supported_by_x_increased_minion_damage_level"]=457, + ["local_display_socketed_gems_supported_by_x_increased_minion_life_level"]=455, + ["local_display_socketed_gems_supported_by_x_increased_minion_speed_level"]=459, + ["local_display_socketed_gems_supported_by_x_innervate_level"]=472, + ["local_display_socketed_gems_supported_by_x_intensify_level"]=357, + ["local_display_socketed_gems_supported_by_x_knockback_level"]=453, + ["local_display_socketed_gems_supported_by_x_lesser_multiple_projectiles_level"]=456, + ["local_display_socketed_gems_supported_by_x_mana_leech"]=465, + ["local_display_socketed_gems_supported_by_x_reduced_mana_cost"]=470, + ["local_display_socketed_gems_supported_by_x_returning_projectiles_level"]=358, + ["local_display_socketed_gems_supported_by_x_summon_phantasm_level"]=359, + ["local_display_socketed_golem_attack_and_cast_speed_+%"]=200, + ["local_display_socketed_golem_buff_effect_+%"]=201, + ["local_display_socketed_golem_chance_to_taunt_%"]=202, + ["local_display_socketed_golem_life_regeneration_rate_per_minute_%"]=203, + ["local_display_socketed_golem_skill_grants_onslaught_when_summoned"]=204, + ["local_display_socketed_golem_skills_minions_life_%_to_add_as_energy_shield"]=205, + ["local_display_socketed_melee_gems_have_area_radius_+%"]=482, + ["local_display_socketed_movement_skills_have_no_mana_cost"]=511, + ["local_display_socketed_non_curse_aura_gems_effect_+%"]=542, + ["local_display_socketed_projectile_spells_duration_+%_final"]=550, + ["local_display_socketed_red_gems_have_%_of_physical_damage_to_add_as_fire"]=483, + ["local_display_socketed_skills_attack_speed_+%"]=512, + ["local_display_socketed_skills_cast_speed_+%"]=513, + ["local_display_socketed_skills_deal_double_damage"]=514, + ["local_display_socketed_skills_fork"]=515, + ["local_display_socketed_skills_summon_your_maximum_number_of_totems_in_formation"]=484, + ["local_display_socketed_spell_damage_+%_final"]=516, + ["local_display_socketed_spells_additional_critical_strike_chance"]=517, + ["local_display_socketed_spells_additional_projectiles"]=546, + ["local_display_socketed_spells_critical_strike_multiplier_+"]=518, + ["local_display_socketed_spells_mana_cost_+%"]=519, + ["local_display_socketed_spells_projectiles_circle"]=548, + ["local_display_socketed_spells_repeat_count"]=493, + ["local_display_socketed_trap_skills_create_smoke_cloud"]=551, + ["local_display_socketed_travel_skills_damage_+%_final"]=520, + ["local_display_socketed_triggered_skills_deal_double_damage"]=360, + ["local_display_socketed_vaal_skills_area_of_effect_+%"]=521, + ["local_display_socketed_vaal_skills_aura_effect_+%"]=522, + ["local_display_socketed_vaal_skills_damage_+%_final"]=523, + ["local_display_socketed_vaal_skills_effect_duration_+%"]=524, + ["local_display_socketed_vaal_skills_elusive_on_use"]=525, + ["local_display_socketed_vaal_skills_extra_damage_rolls"]=526, + ["local_display_socketed_vaal_skills_ignore_monster_phys_reduction"]=527, + ["local_display_socketed_vaal_skills_ignore_monster_resistances"]=528, + ["local_display_socketed_vaal_skills_no_soul_gain_prevention_duration"]=529, + ["local_display_socketed_vaal_skills_projectile_speed_+%"]=530, + ["local_display_socketed_vaal_skills_soul_gain_prevention_duration_+%"]=531, + ["local_display_socketed_vaal_skills_soul_requirement_+%_final"]=532, + ["local_display_socketed_vaal_skills_store_uses_+"]=533, + ["local_display_socketed_warcry_skills_cooldown_use_+"]=534, + ["local_display_spend_energy_shield_for_costs_before_mana_for_socketed_skills"]=535, + ["local_display_starfall_on_melee_critical_hit_%"]=721, + ["local_display_summon_harbinger_x_on_equip"]=571, + ["local_display_summon_raging_spirit_on_kill_%"]=722, + ["local_display_summon_wolf_on_kill_%"]=723, + ["local_display_summon_writhing_worm_every_2000_ms"]=558, + ["local_display_supported_by_level_10_controlled_destruction"]=361, + ["local_display_supported_by_level_10_intensify"]=362, + ["local_display_supported_by_level_10_spell_echo"]=363, + ["local_display_supported_by_level_x_awakened_added_chaos_damage"]=364, + ["local_display_supported_by_level_x_awakened_added_cold_damage"]=365, + ["local_display_supported_by_level_x_awakened_added_fire_damage"]=366, + ["local_display_supported_by_level_x_awakened_added_lightning_damage"]=367, + ["local_display_supported_by_level_x_awakened_ancestral_call"]=368, + ["local_display_supported_by_level_x_awakened_arrow_nova"]=369, + ["local_display_supported_by_level_x_awakened_blasphemy"]=370, + ["local_display_supported_by_level_x_awakened_brutality"]=371, + ["local_display_supported_by_level_x_awakened_burning_damage"]=372, + ["local_display_supported_by_level_x_awakened_cast_on_crit"]=373, + ["local_display_supported_by_level_x_awakened_cast_while_channelling"]=374, + ["local_display_supported_by_level_x_awakened_chain"]=375, + ["local_display_supported_by_level_x_awakened_cold_penetration"]=376, + ["local_display_supported_by_level_x_awakened_controlled_destruction"]=377, + ["local_display_supported_by_level_x_awakened_curse_on_hit"]=378, + ["local_display_supported_by_level_x_awakened_deadly_ailments"]=379, + ["local_display_supported_by_level_x_awakened_elemental_focus"]=380, + ["local_display_supported_by_level_x_awakened_empower"]=381, + ["local_display_supported_by_level_x_awakened_enhance"]=382, + ["local_display_supported_by_level_x_awakened_enlighten"]=383, + ["local_display_supported_by_level_x_awakened_fire_penetration"]=384, + ["local_display_supported_by_level_x_awakened_fork"]=385, + ["local_display_supported_by_level_x_awakened_generosity"]=386, + ["local_display_supported_by_level_x_awakened_greater_multiple_projectiles"]=387, + ["local_display_supported_by_level_x_awakened_increased_area_of_effect"]=388, + ["local_display_supported_by_level_x_awakened_lightning_penetration"]=389, + ["local_display_supported_by_level_x_awakened_melee_physical_damage"]=390, + ["local_display_supported_by_level_x_awakened_melee_splash"]=391, + ["local_display_supported_by_level_x_awakened_minion_damage"]=392, + ["local_display_supported_by_level_x_awakened_multistrike"]=393, + ["local_display_supported_by_level_x_awakened_spell_cascade"]=394, + ["local_display_supported_by_level_x_awakened_spell_echo"]=395, + ["local_display_supported_by_level_x_awakened_swift_affliction"]=396, + ["local_display_supported_by_level_x_awakened_unbound_ailments"]=397, + ["local_display_supported_by_level_x_awakened_unleash"]=398, + ["local_display_supported_by_level_x_awakened_vicious_projectiles"]=399, + ["local_display_supported_by_level_x_awakened_void_manipulation"]=400, + ["local_display_supported_by_level_x_awakened_weapon_elemental_damage"]=401, + ["local_display_tailwind_if_socketed_vaal_skill_used_recently"]=536, + ["local_display_tattoo_trigger_level_x_ahuana"]=671, + ["local_display_tattoo_trigger_level_x_akoya"]=672, + ["local_display_tattoo_trigger_level_x_ikiaho"]=673, + ["local_display_tattoo_trigger_level_x_kahuturoa"]=674, + ["local_display_tattoo_trigger_level_x_kaom"]=675, + ["local_display_tattoo_trigger_level_x_kiloava"]=676, + ["local_display_tattoo_trigger_level_x_maata"]=677, + ["local_display_tattoo_trigger_level_x_rakiata"]=678, + ["local_display_tattoo_trigger_level_x_tawhanuku"]=679, + ["local_display_tattoo_trigger_level_x_utula"]=680, + ["local_display_touched_by_tormented_illegal_fisherman"]=7796, + ["local_display_trickster_heartstopper_rotating_buff"]=7797, + ["local_display_trigger_commandment_of_inferno_on_crit_%"]=724, + ["local_display_trigger_corpse_walk_on_equip_level"]=725, + ["local_display_trigger_death_walk_on_equip_level"]=727, + ["local_display_trigger_ignition_blast_on_ignited_enemy_death"]=728, + ["local_display_trigger_level_18_summon_spectral_wolf_on_kill_10%_chance"]=729, + ["local_display_trigger_level_1_blood_rage_on_kill_chance_%"]=730, + ["local_display_trigger_level_20_animate_guardian_weapon_on_guardian_kill_%_chance"]=731, + ["local_display_trigger_level_20_animate_guardian_weapon_on_weapon_kill_%_chance"]=732, + ["local_display_trigger_level_20_shade_form_on_skill_use_%"]=733, + ["local_display_trigger_level_20_shade_form_when_hit_%"]=734, + ["local_display_trigger_level_20_summon_spectral_wolf_on_crit_with_this_weapon_%_chance"]=683, + ["local_display_trigger_level_20_tornado_when_you_gain_avians_flight_or_avians_might_%"]=735, + ["local_display_trigger_level_X_assassins_mark_when_you_critically_hit_rare_or_unique_enemy_with_attacks"]=7798, + ["local_display_trigger_level_X_assassins_mark_when_you_hit_rare_or_unique_enemy"]=736, + ["local_display_trigger_level_X_atziri_flameblast"]=737, + ["local_display_trigger_level_X_atziri_storm_call"]=738, + ["local_display_trigger_level_X_blinding_aura_skill_on_equip"]=616, + ["local_display_trigger_level_X_darktongue_kiss_on_curse"]=684, + ["local_display_trigger_level_X_feast_of_flesh_every_5_seconds"]=739, + ["local_display_trigger_level_X_offering_every_5_seconds"]=740, + ["local_display_trigger_level_X_poachers_mark_when_you_hit_rare_or_unique_enemy"]=741, + ["local_display_trigger_level_X_shield_shatter_on_block"]=742, + ["local_display_trigger_level_X_void_gaze_on_skill_use"]=685, + ["local_display_trigger_level_X_ward_shatter_on_ward_break"]=743, + ["local_display_trigger_level_X_warlords_mark_when_you_hit_rare_or_unique_enemy"]=744, + ["local_display_trigger_level_x_create_fungal_ground_on_kill"]=726, + ["local_display_trigger_level_x_curse_nova_on_hit_while_cursed"]=745, + ["local_display_trigger_level_x_fiery_impact_on_melee_hit_with_this_weapon"]=746, + ["local_display_trigger_level_x_flame_dash_when_you_use_a_socketed_skill"]=747, + ["local_display_trigger_level_x_gore_shockwave_on_melee_hit_with_atleast_150_strength"]=748, + ["local_display_trigger_level_x_icicle_nova_on_hit_vs_frozen_enemy"]=749, + ["local_display_trigger_level_x_intimidating_cry_when_you_lose_cats_stealth"]=750, + ["local_display_trigger_level_x_lightning_warp_on_hit_with_this_weapon"]=686, + ["local_display_trigger_level_x_rain_of_arrows_on_bow_attack"]=751, + ["local_display_trigger_level_x_reflection_skill_on_equip"]=752, + ["local_display_trigger_level_x_smoke_cloud_on_trap_triggered"]=753, + ["local_display_trigger_level_x_spirit_burst_on_skill_use_if_have_spirit_charge"]=754, + ["local_display_trigger_level_x_stalking_pustule_on_kill"]=755, + ["local_display_trigger_level_x_storm_cascade_on_attack"]=687, + ["local_display_trigger_level_x_summon_phantasm_on_corpse_consume"]=756, + ["local_display_trigger_level_x_summon_spectral_tiger_on_crit"]=7799, + ["local_display_trigger_level_x_toxic_rain_on_bow_attack"]=773, + ["local_display_trigger_level_x_void_shot_on_arrow_fire_while_you_have_void_arrow"]=757, + ["local_display_trigger_socketed_curses_on_casting_curse_%_chance"]=759, + ["local_display_trigger_summon_taunting_contraption_on_flask_use"]=758, + ["local_display_trigger_temporal_anomaly_when_hit_%_chance"]=760, + ["local_display_trigger_tentacle_smash_on_kill_%_chance"]=761, + ["local_display_trigger_void_sphere_on_kill_%_chance"]=762, + ["local_display_use_level_X_abyssal_cry_on_hit"]=763, + ["local_display_you_get_elemental_ailments_instead_of_allies"]=7800, + ["local_double_damage_to_chilled_enemies"]=3692, + ["local_double_damage_with_attacks"]=7801, + ["local_double_damage_with_attacks_chance_%"]=7802, + ["local_elemental_damage_+%"]=7803, + ["local_elemental_damage_+%_per_2%_quality"]=7804, + ["local_elemental_penetration_%"]=3693, + ["local_energy_shield"]=1494, + ["local_energy_shield_+%"]=1495, + ["local_energy_shield_regeneration_per_minute_%_if_crit_recently"]=7805, + ["local_evasion_and_energy_shield_+%"]=1489, + ["local_evasion_rating_+%"]=1485, + ["local_evasion_rating_and_energy_shield"]=7806, ["local_explicit_elemental_damage_mod_effect_+%"]=59, ["local_explicit_minion_mod_effect_+%"]=60, ["local_explicit_mod_effect_+%"]=63, ["local_explicit_physical_and_chaos_damage_mod_effect_+%"]=61, - ["local_extra_max_charges"]=754, - ["local_extra_socket"]=1820, - ["local_fire_and_lightning_hit_and_dot_damage_%_taken_as_cold_during_effect"]=871, - ["local_fire_penetration_%"]=3649, - ["local_fire_resistance_%_per_2%_quality"]=7557, - ["local_flask_accuracy_rating_+%_during_effect"]=858, - ["local_flask_adapt_each_element"]=830, - ["local_flask_adaptation_rating_+%_during_effect"]=856, - ["local_flask_adaptations_apply_to_all_elements_during_effect"]=857, - ["local_flask_additional_physical_damage_reduction_%"]=883, - ["local_flask_additional_x%_life_recovery_per_second_over_10_seconds_if_not_on_full_life"]=814, - ["local_flask_adds_knockback_during_flask_effect"]=884, - ["local_flask_adds_knockback_while_healing"]=870, - ["local_flask_amount_to_recover_+%"]=771, - ["local_flask_amount_to_recover_+%_when_on_low_life"]=776, - ["local_flask_area_of_consecrated_ground_+%"]=795, - ["local_flask_area_of_effect_+%_during_flask_effect"]=885, - ["local_flask_armour_+%_while_healing"]=851, - ["local_flask_attack_speed_+%_while_healing"]=859, - ["local_flask_avoid_stun_chance_%_during_flask_effect"]=886, - ["local_flask_bleeding_immunity_if_bleeding_and_remove_corrupted_blood"]=815, - ["local_flask_bleeding_immunity_if_bleeding_and_remove_corrupted_blood_s"]=816, - ["local_flask_cannot_be_stunned_during_flask_effect"]=887, - ["local_flask_cannot_gain_charges_during_flask_effect"]=977, - ["local_flask_cast_speed_+%_while_healing"]=860, - ["local_flask_chance_to_freeze_shock_ignite_%_while_healing"]=888, - ["local_flask_chill_or_freeze_immunity_if_chilled_or_frozen"]=817, - ["local_flask_chill_or_freeze_immunity_if_chilled_or_frozen_s"]=818, - ["local_flask_chilled_ground_on_flask_use_radius"]=794, - ["local_flask_consume_charges_used_+%_when_used"]=763, - ["local_flask_consume_extra_max_charges_when_used"]=754, - ["local_flask_consume_flask_duration_+%_when_used"]=774, - ["local_flask_consume_flask_effect_+%_when_used"]=850, - ["local_flask_consumes_max_charges_on_use"]=796, - ["local_flask_consumes_x_endurance_charges_on_use"]=797, - ["local_flask_consumes_x_frenzy_charges_on_use"]=798, - ["local_flask_consumes_x_power_charges_on_use"]=799, - ["local_flask_critical_strike_chance_+%_during_flask_effect"]=890, - ["local_flask_critical_strike_chance_against_enemies_on_consecrated_ground_%_during_effect"]=889, - ["local_flask_culling_strike_during_flask_effect"]=891, - ["local_flask_deals_%_maximum_life_as_chaos_damage_on_use"]=790, - ["local_flask_debilitate_nearby_enemies_for_X_seconds_when_flask_effect_ends"]=779, - ["local_flask_deciseconds_to_recover"]=773, - ["local_flask_dispels_burning_and_ignite_immunity_during_effect"]=831, - ["local_flask_dispels_freeze_and_chill"]=829, - ["local_flask_duration_+%"]=774, - ["local_flask_duration_+%_final"]=775, - ["local_flask_during_effect_enemy_damage_taken_+%_on_consecrated_ground"]=892, - ["local_flask_effect_+%"]=850, - ["local_flask_effect_ends_when_hit_by_player"]=780, - ["local_flask_effect_not_removed_at_full_mana"]=781, - ["local_flask_enemies_ignited_during_flask_effect_damage_taken_+%"]=956, - ["local_flask_energy_shield_+%_while_healing"]=853, - ["local_flask_energy_shield_leech_from_spell_damage_permyriad_while_healing"]=865, - ["local_flask_evasion_+%_while_healing"]=852, - ["local_flask_gain_X_charges_on_consuming_ignited_corpse"]=756, - ["local_flask_gain_X_charges_when_hit"]=757, - ["local_flask_gain_charges_consumed_as_vaal_souls_on_use"]=800, - ["local_flask_gain_endurance_charge_per_second_during_flask_effect"]=893, - ["local_flask_gain_endurance_charges_on_use"]=801, - ["local_flask_gain_frenzy_charges_on_use"]=802, - ["local_flask_gain_power_charges_on_use"]=803, - ["local_flask_gain_x_seconds_of_onslaught_per_frenzy_charge_consumed"]=804, - ["local_flask_gain_x_vaal_souls_on_use"]=805, - ["local_flask_ghost_reaver"]=980, - ["local_flask_hinder_nearby_enemies_%_for_4_seconds_if_not_on_full_life"]=827, - ["local_flask_hinder_nearby_enemies_%_for_4_seconds_if_not_on_full_mana"]=828, - ["local_flask_ignite_immunity_if_ignited_and_remove_burning"]=819, - ["local_flask_ignite_immunity_if_ignited_and_remove_burning_s"]=820, - ["local_flask_ignite_proliferation_radius_during_effect"]=894, - ["local_flask_ignited_enemies_during_effect_have_malediction"]=895, - ["local_flask_immune_to_bleeding_and_corrupted_blood_during_flask_effect"]=896, - ["local_flask_immune_to_damage"]=897, - ["local_flask_immune_to_freeze_and_chill_during_flask_effect"]=898, - ["local_flask_immune_to_hinder_for_x_seconds_if_hindered"]=821, - ["local_flask_immune_to_maim_for_x_seconds_if_maimed"]=822, - ["local_flask_immune_to_poison_during_flask_effect"]=899, - ["local_flask_immune_to_shock_during_flask_effect"]=900, - ["local_flask_inflict_fire_cold_lightning_exposure_on_nearby_enemies_on_use"]=806, - ["local_flask_is_petrified"]=901, - ["local_flask_item_found_rarity_+%_during_flask_effect"]=902, - ["local_flask_life_gain_on_skill_use_%_mana_cost"]=877, - ["local_flask_life_leech_expected_ignite_damage_permyriad_during_effect"]=903, - ["local_flask_life_leech_from_attack_damage_permyriad_while_healing"]=866, - ["local_flask_life_leech_is_instant_during_flask_effect"]=904, - ["local_flask_life_leech_on_damage_taken_%_permyriad_during_flask_effect"]=905, - ["local_flask_life_leech_permyriad_while_healing"]=867, - ["local_flask_life_recovery_from_flasks_also_recovers_energy_shield"]=768, - ["local_flask_life_regeneration_per_minute_%_during_flask_effect"]=906, - ["local_flask_life_to_recover"]=765, - ["local_flask_life_to_recover_+%"]=766, - ["local_flask_lose_all_charges_on_entering_new_area"]=764, - ["local_flask_lose_all_endurance_charges_and_recover_%_life_for_each_on_use"]=807, - ["local_flask_mana_leech_permyriad_while_healing"]=869, - ["local_flask_mana_recovery_occurs_instantly_at_end_of_flask_effect"]=782, - ["local_flask_mana_to_recover"]=769, - ["local_flask_mana_to_recover_+%"]=770, - ["local_flask_minion_heal_%"]=767, - ["local_flask_movement_speed_+%_while_healing"]=861, - ["local_flask_no_mana_recovery_during_effect"]=907, - ["local_flask_non_damaging_ailment_effect_+%_during_flask_effect"]=908, - ["local_flask_number_of_additional_curses_allowed_during_effect"]=909, - ["local_flask_number_of_additional_projectiles_during_flask_effect"]=910, - ["local_flask_physical_damage_can_ignite_during_effect"]=911, - ["local_flask_poison_immunity_if_poisoned"]=823, - ["local_flask_poison_immunity_if_poisoned_s"]=824, - ["local_flask_prevents_death_while_healing"]=963, - ["local_flask_recover_%_maximum_energy_shield_on_kill_during_flask_effect"]=959, - ["local_flask_recover_%_maximum_life_on_kill_during_flask_effect"]=957, - ["local_flask_recover_%_maximum_mana_on_kill_during_flask_effect"]=958, - ["local_flask_recover_instantly_when_on_low_life"]=777, - ["local_flask_recovers_instantly"]=783, - ["local_flask_recovery_amount_%_to_recover_instantly"]=778, - ["local_flask_recovery_speed_+%"]=772, - ["local_flask_reflect_damage_taken_+%_during_flask_effect"]=912, - ["local_flask_remove_curses_on_use"]=812, - ["local_flask_remove_effect_when_ward_breaks"]=784, - ["local_flask_removes_%_maximum_energy_shield_on_use"]=789, - ["local_flask_removes_%_of_life_recovery_from_life_on_use"]=787, - ["local_flask_removes_%_of_life_recovery_from_mana_on_use"]=788, - ["local_flask_removes_%_of_mana_recovery_from_life_on_use"]=786, - ["local_flask_resistances_+%_while_healing"]=863, - ["local_flask_restore_ward"]=832, - ["local_flask_shock_immunity_if_shocked"]=825, - ["local_flask_shock_immunity_if_shocked_s"]=826, - ["local_flask_skill_mana_cost_+%_during_flask_effect"]=913, - ["local_flask_stun_recovery_+%_while_healing"]=862, - ["local_flask_taunt_enemies_on_use_radius"]=808, - ["local_flask_unholy_might_during_flask_effect"]=962, - ["local_flask_use_causes_area_knockback"]=809, - ["local_flask_use_causes_monster_flee_chance_%"]=810, - ["local_flask_use_on_adjacent_flask_use"]=834, - ["local_flask_use_on_affected_by_bleed"]=835, - ["local_flask_use_on_affected_by_chill"]=836, - ["local_flask_use_on_affected_by_freeze"]=837, - ["local_flask_use_on_affected_by_ignite"]=838, - ["local_flask_use_on_affected_by_poison"]=839, - ["local_flask_use_on_affected_by_shock"]=840, - ["local_flask_use_on_damage_blocked"]=841, - ["local_flask_use_on_flask_effect_ended"]=842, - ["local_flask_use_on_full_charges"]=843, - ["local_flask_use_on_guard_skill_expired"]=844, - ["local_flask_use_on_guard_skill_used"]=845, - ["local_flask_use_on_hitting_rare_unique_enemy_while_inactive"]=846, - ["local_flask_use_on_taking_savage_hit"]=847, - ["local_flask_use_on_travel_skill_used"]=848, - ["local_flask_use_on_using_a_life_flask"]=849, - ["local_flask_vaal_souls_gained_per_minute_during_effect"]=914, - ["local_flask_ward_+%_during_effect"]=854, - ["local_flask_ward_does_not_break_during_effect"]=855, - ["local_flask_zealots_oath"]=981, - ["local_gain_X_rage_on_attack_hit_with_melee_abyss_jewel_socketed"]=7558, - ["local_gain_fortify_on_melee_hit_chance_%_with_melee_abyss_jewel_socketed"]=7559, - ["local_gain_vaal_pact_if_all_socketed_gems_red"]=10302, - ["local_gem_experience_gain_+%"]=1823, + ["local_extra_max_charges"]=775, + ["local_extra_socket"]=1850, + ["local_fire_and_lightning_hit_and_dot_damage_%_taken_as_cold_during_effect"]=894, + ["local_fire_damage_from_life_%"]=2878, + ["local_fire_penetration_%"]=3694, + ["local_fire_resistance_%_per_2%_quality"]=7807, + ["local_flask_accuracy_rating_+%_during_effect"]=881, + ["local_flask_adapt_each_element"]=853, + ["local_flask_adaptation_rating_+%_during_effect"]=879, + ["local_flask_adaptations_apply_to_all_elements_during_effect"]=880, + ["local_flask_additional_physical_damage_reduction_%"]=906, + ["local_flask_additional_x%_life_recovery_per_second_over_10_seconds_if_not_on_full_life"]=837, + ["local_flask_adds_knockback_during_flask_effect"]=907, + ["local_flask_adds_knockback_while_healing"]=893, + ["local_flask_amount_to_recover_+%"]=792, + ["local_flask_amount_to_recover_+%_when_on_low_life"]=797, + ["local_flask_area_of_consecrated_ground_+%"]=818, + ["local_flask_area_of_effect_+%_during_flask_effect"]=908, + ["local_flask_armour_+%_while_healing"]=874, + ["local_flask_attack_speed_+%_while_healing"]=882, + ["local_flask_avoid_stun_chance_%_during_flask_effect"]=909, + ["local_flask_bleeding_immunity_if_bleeding_and_remove_corrupted_blood"]=838, + ["local_flask_bleeding_immunity_if_bleeding_and_remove_corrupted_blood_s"]=839, + ["local_flask_cannot_be_stunned_during_flask_effect"]=910, + ["local_flask_cannot_gain_charges_during_flask_effect"]=1002, + ["local_flask_cast_speed_+%_while_healing"]=883, + ["local_flask_chance_to_freeze_shock_ignite_%_while_healing"]=911, + ["local_flask_chill_or_freeze_immunity_if_chilled_or_frozen"]=840, + ["local_flask_chill_or_freeze_immunity_if_chilled_or_frozen_s"]=841, + ["local_flask_chilled_ground_on_flask_use_radius"]=817, + ["local_flask_consume_charges_used_+%_when_used"]=784, + ["local_flask_consume_extra_max_charges_when_used"]=775, + ["local_flask_consume_flask_duration_+%_when_used"]=795, + ["local_flask_consume_flask_effect_+%_when_used"]=873, + ["local_flask_consumes_max_charges_on_use"]=819, + ["local_flask_consumes_x_endurance_charges_on_use"]=820, + ["local_flask_consumes_x_frenzy_charges_on_use"]=821, + ["local_flask_consumes_x_power_charges_on_use"]=822, + ["local_flask_critical_strike_chance_+%_during_flask_effect"]=913, + ["local_flask_critical_strike_chance_against_enemies_on_consecrated_ground_%_during_effect"]=912, + ["local_flask_culling_strike_during_flask_effect"]=914, + ["local_flask_deals_%_maximum_life_as_chaos_damage_on_use"]=813, + ["local_flask_debilitate_nearby_enemies_for_X_seconds_when_flask_effect_ends"]=800, + ["local_flask_deciseconds_to_recover"]=794, + ["local_flask_dispels_burning_and_ignite_immunity_during_effect"]=854, + ["local_flask_dispels_freeze_and_chill"]=852, + ["local_flask_duration_+%"]=795, + ["local_flask_duration_+%_final"]=796, + ["local_flask_during_effect_enemy_damage_taken_+%_on_consecrated_ground"]=915, + ["local_flask_effect_+%"]=873, + ["local_flask_effect_ends_when_hit_by_player"]=801, + ["local_flask_effect_not_removed_at_full_mana"]=802, + ["local_flask_enemies_ignited_during_flask_effect_damage_taken_+%"]=981, + ["local_flask_energy_shield_+%_while_healing"]=876, + ["local_flask_energy_shield_leech_from_spell_damage_permyriad_while_healing"]=888, + ["local_flask_energy_shield_recharge_not_delayed_by_damage_during_effect"]=916, + ["local_flask_evasion_+%_while_healing"]=875, + ["local_flask_gain_X_charges_on_consuming_ignited_corpse"]=777, + ["local_flask_gain_X_charges_when_hit"]=778, + ["local_flask_gain_charges_consumed_as_vaal_souls_on_use"]=823, + ["local_flask_gain_endurance_charge_per_second_during_flask_effect"]=917, + ["local_flask_gain_endurance_charges_on_use"]=824, + ["local_flask_gain_frenzy_charges_on_use"]=825, + ["local_flask_gain_power_charges_on_use"]=826, + ["local_flask_gain_x_seconds_of_onslaught_per_frenzy_charge_consumed"]=827, + ["local_flask_gain_x_vaal_souls_on_use"]=828, + ["local_flask_ghost_reaver"]=1005, + ["local_flask_hinder_nearby_enemies_%_for_4_seconds_if_not_on_full_life"]=850, + ["local_flask_hinder_nearby_enemies_%_for_4_seconds_if_not_on_full_mana"]=851, + ["local_flask_ignite_immunity_if_ignited_and_remove_burning"]=842, + ["local_flask_ignite_immunity_if_ignited_and_remove_burning_s"]=843, + ["local_flask_ignite_proliferation_radius_during_effect"]=918, + ["local_flask_ignited_enemies_during_effect_have_malediction"]=919, + ["local_flask_immune_to_bleeding_and_corrupted_blood_during_flask_effect"]=920, + ["local_flask_immune_to_damage"]=921, + ["local_flask_immune_to_freeze_and_chill_during_flask_effect"]=922, + ["local_flask_immune_to_hinder_for_x_seconds_if_hindered"]=844, + ["local_flask_immune_to_maim_for_x_seconds_if_maimed"]=845, + ["local_flask_immune_to_poison_during_flask_effect"]=923, + ["local_flask_immune_to_shock_during_flask_effect"]=924, + ["local_flask_inflict_fire_cold_lightning_exposure_on_nearby_enemies_on_use"]=829, + ["local_flask_is_petrified"]=925, + ["local_flask_item_found_rarity_+%_during_flask_effect"]=926, + ["local_flask_life_gain_on_skill_use_%_mana_cost"]=900, + ["local_flask_life_leech_expected_ignite_damage_permyriad_during_effect"]=927, + ["local_flask_life_leech_from_attack_damage_permyriad_while_healing"]=889, + ["local_flask_life_leech_is_instant_during_flask_effect"]=928, + ["local_flask_life_leech_on_damage_taken_%_permyriad_during_flask_effect"]=929, + ["local_flask_life_leech_permyriad_while_healing"]=890, + ["local_flask_life_recovery_from_flasks_also_recovers_energy_shield"]=789, + ["local_flask_life_regeneration_per_minute_%_during_flask_effect"]=930, + ["local_flask_life_to_recover"]=786, + ["local_flask_life_to_recover_+%"]=787, + ["local_flask_lose_all_charges_on_entering_new_area"]=785, + ["local_flask_lose_all_endurance_charges_and_recover_%_life_for_each_on_use"]=830, + ["local_flask_mana_leech_permyriad_while_healing"]=892, + ["local_flask_mana_recovery_occurs_instantly_at_end_of_flask_effect"]=803, + ["local_flask_mana_to_recover"]=790, + ["local_flask_mana_to_recover_+%"]=791, + ["local_flask_minion_heal_%"]=788, + ["local_flask_movement_speed_+%_while_healing"]=884, + ["local_flask_no_mana_recovery_during_effect"]=931, + ["local_flask_non_damaging_ailment_effect_+%_during_flask_effect"]=932, + ["local_flask_number_of_additional_curses_allowed_during_effect"]=933, + ["local_flask_number_of_additional_projectiles_during_flask_effect"]=934, + ["local_flask_physical_damage_can_ignite_during_effect"]=935, + ["local_flask_poison_immunity_if_poisoned"]=846, + ["local_flask_poison_immunity_if_poisoned_s"]=847, + ["local_flask_prevents_death_while_healing"]=988, + ["local_flask_recover_%_maximum_energy_shield_on_kill_during_flask_effect"]=984, + ["local_flask_recover_%_maximum_life_on_kill_during_flask_effect"]=982, + ["local_flask_recover_%_maximum_mana_on_kill_during_flask_effect"]=983, + ["local_flask_recover_instantly_when_on_low_life"]=798, + ["local_flask_recovers_instantly"]=804, + ["local_flask_recovery_amount_%_to_recover_instantly"]=799, + ["local_flask_recovery_speed_+%"]=793, + ["local_flask_reflect_damage_taken_+%_during_flask_effect"]=936, + ["local_flask_remove_curses_on_use"]=835, + ["local_flask_remove_effect_when_ward_breaks"]=805, + ["local_flask_removes_%_maximum_energy_shield_on_use"]=812, + ["local_flask_removes_%_of_life_recovery_from_life_on_use"]=808, + ["local_flask_removes_%_of_life_recovery_from_mana_on_use"]=809, + ["local_flask_removes_%_of_mana_recovery_from_life_on_use"]=807, + ["local_flask_resistances_+%_while_healing"]=886, + ["local_flask_restore_ward"]=855, + ["local_flask_shock_immunity_if_shocked"]=848, + ["local_flask_shock_immunity_if_shocked_s"]=849, + ["local_flask_skill_mana_cost_+%_during_flask_effect"]=937, + ["local_flask_stun_recovery_+%_while_healing"]=885, + ["local_flask_taunt_enemies_on_use_radius"]=831, + ["local_flask_unholy_might_during_flask_effect"]=987, + ["local_flask_use_causes_area_knockback"]=832, + ["local_flask_use_causes_monster_flee_chance_%"]=833, + ["local_flask_use_on_adjacent_flask_use"]=857, + ["local_flask_use_on_affected_by_bleed"]=858, + ["local_flask_use_on_affected_by_chill"]=859, + ["local_flask_use_on_affected_by_freeze"]=860, + ["local_flask_use_on_affected_by_ignite"]=861, + ["local_flask_use_on_affected_by_poison"]=862, + ["local_flask_use_on_affected_by_shock"]=863, + ["local_flask_use_on_damage_blocked"]=864, + ["local_flask_use_on_flask_effect_ended"]=865, + ["local_flask_use_on_full_charges"]=866, + ["local_flask_use_on_guard_skill_expired"]=867, + ["local_flask_use_on_guard_skill_used"]=868, + ["local_flask_use_on_hitting_rare_unique_enemy_while_inactive"]=869, + ["local_flask_use_on_taking_savage_hit"]=870, + ["local_flask_use_on_travel_skill_used"]=871, + ["local_flask_use_on_using_a_life_flask"]=872, + ["local_flask_vaal_souls_gained_per_minute_during_effect"]=938, + ["local_flask_ward_+%_during_effect"]=877, + ["local_flask_ward_does_not_break_during_effect"]=878, + ["local_flask_zealots_oath"]=1006, + ["local_gain_X_rage_on_attack_hit_with_melee_abyss_jewel_socketed"]=7808, + ["local_gain_fortify_on_melee_hit_chance_%_with_melee_abyss_jewel_socketed"]=7809, + ["local_gain_immortal_ambition_if_all_socketed_gems_red"]=7810, + ["local_gain_vaal_pact_if_all_socketed_gems_red"]=10631, + ["local_gem_experience_gain_+%"]=1853, ["local_gem_level_+"]=161, - ["local_grant_eldritch_battery_during_flask_effect"]=982, - ["local_grant_perfect_agony_during_flask_effect"]=983, - ["local_grant_skeleton_warriors_triple_damage_on_hit"]=4298, - ["local_grants_aura_maximum_added_chaos_damage_per_white_socket"]=2904, - ["local_grants_aura_maximum_added_cold_damage_per_green_socket"]=2902, - ["local_grants_aura_maximum_added_fire_damage_per_red_socket"]=2901, - ["local_grants_aura_maximum_added_lightning_damage_per_blue_socket"]=2903, - ["local_grants_aura_minimum_added_chaos_damage_per_white_socket"]=2904, - ["local_grants_aura_minimum_added_cold_damage_per_green_socket"]=2902, - ["local_grants_aura_minimum_added_fire_damage_per_red_socket"]=2901, - ["local_grants_aura_minimum_added_lightning_damage_per_blue_socket"]=2903, + ["local_gems_socketed_have_no_attribute_requirements"]=7811, + ["local_gems_socketed_in_blue_sockets_have_no_attribute_requirements"]=7812, + ["local_grant_eldritch_battery_during_flask_effect"]=1007, + ["local_grant_perfect_agony_during_flask_effect"]=1008, + ["local_grant_skeleton_warriors_triple_damage_on_hit"]=4344, + ["local_grants_aura_maximum_added_chaos_damage_per_white_socket"]=2941, + ["local_grants_aura_maximum_added_cold_damage_per_green_socket"]=2939, + ["local_grants_aura_maximum_added_fire_damage_per_red_socket"]=2938, + ["local_grants_aura_maximum_added_lightning_damage_per_blue_socket"]=2940, + ["local_grants_aura_minimum_added_chaos_damage_per_white_socket"]=2941, + ["local_grants_aura_minimum_added_cold_damage_per_green_socket"]=2939, + ["local_grants_aura_minimum_added_fire_damage_per_red_socket"]=2938, + ["local_grants_aura_minimum_added_lightning_damage_per_blue_socket"]=2940, ["local_has_X_abyss_sockets"]=73, ["local_has_X_sockets"]=74, ["local_has_X_white_sockets"]=81, ["local_has_no_sockets"]=72, - ["local_hit_causes_monster_flee_%"]=1942, - ["local_hit_damage_+%_vs_frozen_enemies"]=4254, - ["local_hit_damage_+%_vs_ignited_enemies"]=4253, - ["local_hit_damage_+%_vs_shocked_enemies"]=4255, - ["local_hits_always_inflict_elemental_ailments"]=4252, - ["local_hits_ignore_enemy_monster_physical_damage_reduction_%_chance"]=7560, - ["local_hits_with_this_weapon_always_hit_if_have_blocked_recently"]=7561, - ["local_hits_with_this_weapon_freeze_as_though_damage_+%_final"]=7562, - ["local_hits_with_this_weapon_shock_as_though_damage_+%_final"]=7563, - ["local_ignite_damage_+%_final_with_this_weapon"]=7564, - ["local_immune_to_curses_if_item_corrupted"]=7565, + ["local_hit_causes_monster_flee_%"]=1974, + ["local_hit_damage_+%_vs_frozen_enemies"]=4300, + ["local_hit_damage_+%_vs_ignited_enemies"]=4299, + ["local_hit_damage_+%_vs_shocked_enemies"]=4301, + ["local_hits_always_inflict_elemental_ailments"]=4298, + ["local_hits_ignore_enemy_monster_physical_damage_reduction_%_chance"]=7813, + ["local_hits_with_this_weapon_always_hit_if_have_blocked_recently"]=7814, + ["local_hits_with_this_weapon_freeze_as_though_damage_+%_final"]=7815, + ["local_hits_with_this_weapon_shock_as_though_damage_+%_final"]=7816, + ["local_ignite_damage_+%_final_with_this_weapon"]=7817, + ["local_immune_to_curses_if_item_corrupted"]=7818, ["local_implicit_mod_cannot_be_changed"]=37, - ["local_implicit_modifier_magnitudes_doubled"]=7566, - ["local_implicit_modifier_magnitudes_tripled"]=7567, + ["local_implicit_modifier_magnitudes_doubled"]=7819, + ["local_implicit_modifier_magnitudes_tripled"]=7820, ["local_implicit_stat_magnitude_+%"]=64, - ["local_inflict_malignant_madness_on_critical_strike_%_if_eater_of_worlds_dominant"]=7568, - ["local_intelligence_per_2%_quality"]=7569, - ["local_intelligence_requirement_+"]=992, - ["local_intelligence_requirement_+%"]=993, - ["local_is_alternate_tree_jewel"]=10187, - ["local_is_max_quality"]=1817, - ["local_is_survival_jewel"]=10188, + ["local_inflict_malignant_madness_on_critical_strike_%_if_eater_of_worlds_dominant"]=7821, + ["local_intelligence_per_2%_quality"]=7822, + ["local_intelligence_requirement_+"]=1016, + ["local_intelligence_requirement_+%"]=1017, + ["local_is_alternate_tree_jewel"]=10510, + ["local_is_max_quality"]=1847, + ["local_is_survival_jewel"]=10511, ["local_item_allow_modification_while_corrupted"]=28, ["local_item_can_have_x_additional_enchantments"]=30, - ["local_item_can_roll_all_influences"]=7570, - ["local_item_drops_on_death_if_equipped_by_animate_armour"]=2459, + ["local_item_can_roll_all_influences"]=7823, + ["local_item_drops_on_death_if_equipped_by_animate_armour"]=2492, ["local_item_implicit_modifier_limit"]=31, - ["local_item_quality_+"]=7571, - ["local_item_sell_price_doubled"]=7572, - ["local_item_stats_are_doubled_in_breach"]=7573, + ["local_item_quality_+"]=7824, + ["local_item_sell_price_doubled"]=7825, + ["local_item_stats_are_doubled_in_breach"]=7826, ["local_jewel_+%_effect_per_passive_between_jewel_and_class_start"]=26, - ["local_jewel_allocated_non_notable_passives_in_radius_grant_nothing"]=7574, - ["local_jewel_copy_stats_from_unallocated_non_notable_passives_in_radius"]=7575, - ["local_jewel_disable_combust_with_40_strength_in_radius"]=7576, - ["local_jewel_expansion_jewels_count"]=7577, - ["local_jewel_expansion_jewels_count_override"]=7578, - ["local_jewel_expansion_keystone_disciple_of_kitava"]=7579, - ["local_jewel_expansion_keystone_hollow_palm_technique"]=7580, - ["local_jewel_expansion_keystone_kineticism"]=7581, - ["local_jewel_expansion_keystone_lone_messenger"]=7582, - ["local_jewel_expansion_keystone_natures_patience"]=7583, - ["local_jewel_expansion_keystone_pitfighter"]=7584, - ["local_jewel_expansion_keystone_secrets_of_suffering"]=7585, - ["local_jewel_expansion_keystone_veterans_awareness"]=7586, - ["local_jewel_expansion_passive_node_count"]=4387, - ["local_jewel_expansion_passive_node_index"]=7587, - ["local_jewel_fireball_cannot_ignite"]=7588, - ["local_jewel_fireball_chance_to_scorch_%"]=7589, - ["local_jewel_infernal_cry_exerted_attacks_ignite_damage_+%_final_with_for_strength_in_radius"]=7590, - ["local_jewel_magma_orb_damage_+%_final_per_chain_with_40_int_in_radius"]=7592, - ["local_jewel_magma_orb_damage_+%_final_with_40_int_in_radius"]=7591, - ["local_jewel_molten_strike_projectiles_chain_count_+_with_40_str_in_radius"]=7594, - ["local_jewel_molten_strike_projectiles_chain_when_impacting_ground_with_40_str_in_radius"]=7593, - ["local_jewel_molten_strike_projectiles_count_+%_final_with_40_str_in_radius"]=7595, - ["local_jewel_nearby_passives_dex_to_int"]=2945, - ["local_jewel_nearby_passives_dex_to_str"]=2944, - ["local_jewel_nearby_passives_int_to_dex"]=2947, - ["local_jewel_nearby_passives_int_to_str"]=2946, - ["local_jewel_nearby_passives_str_to_dex"]=2942, - ["local_jewel_nearby_passives_str_to_int"]=2943, + ["local_jewel_allocated_non_notable_passives_in_radius_grant_nothing"]=7827, + ["local_jewel_allocated_notable_passives_in_radius_grant_nothing"]=7828, + ["local_jewel_copy_stats_from_unallocated_non_notable_passives_in_radius"]=7829, + ["local_jewel_copy_stats_from_unallocated_notable_passives_in_radius"]=7830, + ["local_jewel_disable_combust_with_40_strength_in_radius"]=7831, + ["local_jewel_expansion_jewels_count"]=7832, + ["local_jewel_expansion_jewels_count_override"]=7833, + ["local_jewel_expansion_keystone_disciple_of_kitava"]=7834, + ["local_jewel_expansion_keystone_hollow_palm_technique"]=7835, + ["local_jewel_expansion_keystone_kineticism"]=7836, + ["local_jewel_expansion_keystone_lone_messenger"]=7837, + ["local_jewel_expansion_keystone_natures_patience"]=7838, + ["local_jewel_expansion_keystone_pitfighter"]=7839, + ["local_jewel_expansion_keystone_secrets_of_suffering"]=7840, + ["local_jewel_expansion_keystone_veterans_awareness"]=7841, + ["local_jewel_expansion_passive_node_count"]=4433, + ["local_jewel_expansion_passive_node_index"]=7842, + ["local_jewel_fireball_cannot_ignite"]=7843, + ["local_jewel_fireball_chance_to_scorch_%"]=7844, + ["local_jewel_infernal_cry_exerted_attacks_ignite_damage_+%_final_with_for_strength_in_radius"]=7845, + ["local_jewel_magma_orb_damage_+%_final_per_chain_with_40_int_in_radius"]=7847, + ["local_jewel_magma_orb_damage_+%_final_with_40_int_in_radius"]=7846, + ["local_jewel_molten_strike_projectiles_chain_count_+_with_40_str_in_radius"]=7849, + ["local_jewel_molten_strike_projectiles_chain_when_impacting_ground_with_40_str_in_radius"]=7848, + ["local_jewel_molten_strike_projectiles_count_+%_final_with_40_str_in_radius"]=7850, + ["local_jewel_nearby_passives_dex_to_int"]=2982, + ["local_jewel_nearby_passives_dex_to_str"]=2981, + ["local_jewel_nearby_passives_int_to_dex"]=2984, + ["local_jewel_nearby_passives_int_to_str"]=2983, + ["local_jewel_nearby_passives_str_to_dex"]=2979, + ["local_jewel_nearby_passives_str_to_int"]=2980, ["local_jewel_variable_ring_radius_value"]=29, - ["local_kill_enemy_on_hit_if_under_15%_life_if_searing_exarch_dominant"]=7596, - ["local_knockback"]=1433, - ["local_left_ring_slot_base_all_ailment_duration_on_self_+%"]=2552, - ["local_left_ring_slot_cold_damage_taken_%_as_fire"]=2553, - ["local_left_ring_slot_cover_in_ash_for_x_seconds_when_igniting_enemy"]=7597, - ["local_left_ring_slot_curse_effect_on_self_+%"]=2554, - ["local_left_ring_slot_elemental_reflect_damage_taken_+%"]=2608, - ["local_left_ring_slot_energy_shield"]=2569, - ["local_left_ring_slot_fire_damage_taken_%_as_lightning"]=2555, - ["local_left_ring_slot_lightning_damage_taken_%_as_cold"]=2556, - ["local_left_ring_slot_mana_regeneration_rate_+%"]=2558, - ["local_left_ring_slot_mana_regeneration_rate_per_minute"]=2557, - ["local_left_ring_slot_maximum_mana"]=2568, - ["local_left_ring_slot_minion_damage_taken_+%"]=2559, - ["local_left_ring_slot_no_energy_shield_recharge_or_regeneration"]=2551, - ["local_left_ring_slot_projectiles_from_spells_cannot_chain"]=7598, - ["local_left_ring_slot_projectiles_from_spells_fork"]=7599, - ["local_left_ring_slot_skill_effect_duration_+%"]=2560, - ["local_left_ring_socketed_curse_replaces_skitterbots_chilling_aura"]=7600, - ["local_level_requirement_-"]=994, - ["local_life_and_mana_gain_per_target"]=1647, - ["local_life_and_mana_leech_from_physical_damage_permyriad"]=1561, - ["local_life_gain_per_target"]=1643, - ["local_life_gain_per_target_vs_blinded_enemies"]=7601, - ["local_life_gain_per_target_while_leeching"]=7602, - ["local_life_leech_from_any_damage_permyriad"]=7603, - ["local_life_leech_from_physical_damage_permyriad"]=1556, - ["local_life_leech_is_instant"]=2437, - ["local_life_loss_%_to_prevent_during_flask_effect_to_lose_over_time"]=9999, - ["local_lightning_penetration_%"]=3651, - ["local_lightning_resistance_%_per_2%_quality"]=7604, - ["local_maim_on_hit"]=4018, - ["local_maim_on_hit_%"]=7605, - ["local_mana_gain_per_target"]=1650, - ["local_mana_leech_from_any_damage_permyriad"]=7606, - ["local_mana_leech_from_physical_damage_permyriad"]=1606, - ["local_mana_leech_is_instant"]=7607, - ["local_max_charges_+%"]=755, - ["local_maximum_added_chaos_damage"]=1298, - ["local_maximum_added_cold_damage"]=1279, - ["local_maximum_added_fire_damage"]=1270, - ["local_maximum_added_fire_damage_vs_bleeding_enemies"]=4716, - ["local_maximum_added_lightning_damage"]=1290, - ["local_maximum_added_physical_damage"]=1184, - ["local_maximum_added_physical_damage_vs_ignited_enemies"]=4723, - ["local_maximum_energy_shield_+%_if_item_corrupted"]=7608, - ["local_maximum_life_+%_if_item_corrupted"]=7610, - ["local_maximum_life_per_2%_quality"]=7609, - ["local_maximum_mana_per_2%_quality"]=7611, + ["local_kill_enemy_on_hit_if_under_15%_life_if_searing_exarch_dominant"]=7851, + ["local_knockback"]=1461, + ["local_left_ring_slot_base_all_ailment_duration_on_self_+%"]=2586, + ["local_left_ring_slot_cold_damage_taken_%_as_fire"]=2587, + ["local_left_ring_slot_cover_in_ash_for_x_seconds_when_igniting_enemy"]=7852, + ["local_left_ring_slot_curse_effect_on_self_+%"]=2588, + ["local_left_ring_slot_elemental_reflect_damage_taken_+%"]=2643, + ["local_left_ring_slot_energy_shield"]=2603, + ["local_left_ring_slot_evasion_rating"]=2604, + ["local_left_ring_slot_fire_damage_taken_%_as_lightning"]=2589, + ["local_left_ring_slot_lightning_damage_taken_%_as_cold"]=2590, + ["local_left_ring_slot_mana_regeneration_rate_+%"]=2592, + ["local_left_ring_slot_mana_regeneration_rate_per_minute"]=2591, + ["local_left_ring_slot_maximum_mana"]=2602, + ["local_left_ring_slot_minion_damage_taken_+%"]=2593, + ["local_left_ring_slot_no_energy_shield_recharge_or_regeneration"]=2585, + ["local_left_ring_slot_projectiles_from_spells_cannot_chain"]=7853, + ["local_left_ring_slot_projectiles_from_spells_fork"]=7854, + ["local_left_ring_slot_skill_effect_duration_+%"]=2594, + ["local_left_ring_socketed_curse_replaces_skitterbots_chilling_aura"]=7855, + ["local_level_requirement_-"]=1018, + ["local_life_and_mana_gain_per_target"]=1677, + ["local_life_and_mana_leech_from_physical_damage_permyriad"]=1591, + ["local_life_gain_per_target"]=1673, + ["local_life_gain_per_target_vs_blinded_enemies"]=7856, + ["local_life_gain_per_target_while_leeching"]=7857, + ["local_life_leech_from_any_damage_permyriad"]=7858, + ["local_life_leech_from_physical_damage_permyriad"]=1586, + ["local_life_leech_is_instant"]=2470, + ["local_life_loss_%_to_prevent_during_flask_effect_to_lose_over_time"]=10309, + ["local_lightning_penetration_%"]=3696, + ["local_lightning_resistance_%_per_2%_quality"]=7859, + ["local_maim_on_hit"]=4064, + ["local_maim_on_hit_%"]=7860, + ["local_mana_gain_per_target"]=1680, + ["local_mana_leech_from_any_damage_permyriad"]=7861, + ["local_mana_leech_from_physical_damage_permyriad"]=1636, + ["local_mana_leech_is_instant"]=7862, + ["local_max_charges_+%"]=776, + ["local_maximum_added_chaos_damage"]=1325, + ["local_maximum_added_cold_damage"]=1306, + ["local_maximum_added_fire_damage"]=1297, + ["local_maximum_added_fire_damage_vs_bleeding_enemies"]=4791, + ["local_maximum_added_lightning_damage"]=1317, + ["local_maximum_added_physical_damage"]=1211, + ["local_maximum_added_physical_damage_vs_ignited_enemies"]=4798, + ["local_maximum_energy_shield_+%_if_item_corrupted"]=7863, + ["local_maximum_life_+%_if_item_corrupted"]=7865, + ["local_maximum_life_per_2%_quality"]=7864, + ["local_maximum_mana_per_2%_quality"]=7866, ["local_maximum_prefixes_allowed_+"]=32, - ["local_maximum_quality_+"]=7613, - ["local_maximum_quality_is_%"]=7612, + ["local_maximum_quality_+"]=7868, + ["local_maximum_quality_is_%"]=7867, ["local_maximum_sockets_+"]=82, ["local_maximum_suffixes_allowed_+"]=33, - ["local_minimum_added_chaos_damage"]=1298, - ["local_minimum_added_cold_damage"]=1279, - ["local_minimum_added_fire_damage"]=1270, - ["local_minimum_added_fire_damage_vs_bleeding_enemies"]=4716, - ["local_minimum_added_lightning_damage"]=1290, - ["local_minimum_added_physical_damage"]=1184, - ["local_minimum_added_physical_damage_vs_ignited_enemies"]=4723, - ["local_minion_accuracy_rating_with_minion_abyss_jewel_socketed"]=7614, - ["local_movement_speed_+%_if_item_corrupted"]=7615, - ["local_nearby_enemies_base_physical_damage_%_to_convert_to_fire"]=10199, - ["local_no_attribute_requirements"]=995, - ["local_no_block_chance"]=3156, - ["local_no_critical_strike_multiplier_during_flask_effect"]=915, - ["local_no_energy_shield"]=996, - ["local_number_of_bloodworms_to_spawn_on_flask_use"]=833, + ["local_minimum_added_chaos_damage"]=1325, + ["local_minimum_added_cold_damage"]=1306, + ["local_minimum_added_fire_damage"]=1297, + ["local_minimum_added_fire_damage_vs_bleeding_enemies"]=4791, + ["local_minimum_added_lightning_damage"]=1317, + ["local_minimum_added_physical_damage"]=1211, + ["local_minimum_added_physical_damage_vs_ignited_enemies"]=4798, + ["local_minion_accuracy_rating_with_minion_abyss_jewel_socketed"]=7869, + ["local_minions_chance_to_gain_unholy_might_on_spell_hit_4_seconds_%_with_minion_abyss_jewel_socketed"]=7870, + ["local_movement_speed_+%_if_item_corrupted"]=7871, + ["local_nearby_enemies_base_physical_damage_%_to_convert_to_fire"]=10525, + ["local_no_attribute_requirements"]=1019, + ["local_no_block_chance"]=3198, + ["local_no_critical_strike_multiplier"]=1425, + ["local_no_critical_strike_multiplier_during_flask_effect"]=939, + ["local_no_energy_shield"]=1020, + ["local_number_of_bloodworms_to_spawn_on_flask_use"]=856, ["local_one_socket_each_colour_only"]=83, - ["local_physical_damage_%_to_convert_to_a_random_element"]=4250, - ["local_physical_damage_%_to_gain_as_cold_or_lightning"]=4251, - ["local_physical_damage_+%"]=1141, - ["local_physical_damage_reduction_rating_+%"]=1449, - ["local_poison_dot_multiplier_+"]=1173, - ["local_poison_duration_+%_during_flask_effect"]=916, - ["local_poison_on_critical_strike_chance_%"]=7616, - ["local_poison_on_hit"]=2369, - ["local_poison_on_hit_%"]=7617, - ["local_prefix_mod_effect_+%"]=7618, - ["local_quality_does_not_increase_defences"]=1818, - ["local_quality_does_not_increase_physical_damage"]=1819, - ["local_quantity_of_sockets_+%"]=1824, - ["local_random_support_gem_index"]=395, - ["local_random_support_gem_index_1"]=396, - ["local_random_support_gem_level"]=395, - ["local_random_support_gem_level_1"]=396, - ["local_recharge_on_crit"]=758, - ["local_recharge_on_crit_%"]=759, - ["local_recharge_on_demon_killed"]=760, - ["local_recharge_on_take_crit"]=761, - ["local_resist_all_elements_%_if_item_corrupted"]=7619, - ["local_right_ring_slot_base_all_ailment_duration_on_self_+%"]=2561, - ["local_right_ring_slot_base_energy_shield_regeneration_rate_per_minute_%"]=2548, - ["local_right_ring_slot_cold_damage_taken_%_as_lightning"]=2562, - ["local_right_ring_slot_cover_in_frost_for_x_seconds_when_freezing_enemy"]=7620, - ["local_right_ring_slot_curse_effect_on_self_+%"]=2563, - ["local_right_ring_slot_energy_shield"]=2550, - ["local_right_ring_slot_fire_damage_taken_%_as_cold"]=2564, - ["local_right_ring_slot_lightning_damage_taken_%_as_fire"]=2565, - ["local_right_ring_slot_maximum_mana"]=2549, - ["local_right_ring_slot_minion_damage_taken_+%"]=2566, - ["local_right_ring_slot_no_mana_regeneration"]=2547, - ["local_right_ring_slot_number_of_additional_chains_for_spell_projectiles"]=7621, - ["local_right_ring_slot_physical_reflect_damage_taken_+%"]=2609, - ["local_right_ring_slot_projectiles_from_spells_cannot_fork"]=7622, - ["local_right_ring_slot_skill_effect_duration_+%"]=2567, - ["local_right_ring_socketed_curse_replaces_skitterbots_shocking_aura"]=7623, - ["local_ring_attack_speed_+%_final"]=7624, - ["local_ring_burning_damage_+%_final"]=7625, - ["local_ring_disable_other_ring"]=1511, - ["local_ring_duplicate_other_ring"]=2751, - ["local_ring_nova_spells_area_of_effect_+%_final"]=7626, - ["local_self_bleed_duration_+%_during_flask_effect"]=917, - ["local_self_chill_effect_+%_during_flask_effect"]=918, - ["local_self_curse_effect_+%_during_flask_effect"]=919, - ["local_self_freeze_duration_+%_during_flask_effect"]=920, - ["local_self_ignite_duration_+%_during_flask_effect"]=921, - ["local_self_poison_duration_+%_during_flask_effect"]=922, - ["local_self_shock_effect_+%_during_flask_effect"]=923, - ["local_sentinel_drone_difficulty_+%"]=7627, - ["local_shield_trigger_socketed_elemental_spell_on_block_display_cooldown"]=7628, + ["local_physical_damage_%_to_convert_to_a_random_element"]=4296, + ["local_physical_damage_%_to_gain_as_cold_or_lightning"]=4297, + ["local_physical_damage_+%"]=1168, + ["local_physical_damage_reduction_rating_+%"]=1477, + ["local_poison_dot_multiplier_+"]=1200, + ["local_poison_duration_+%_during_flask_effect"]=940, + ["local_poison_on_critical_strike_chance_%"]=7872, + ["local_poison_on_hit"]=2402, + ["local_poison_on_hit_%"]=7873, + ["local_prefix_mod_effect_+%"]=7874, + ["local_quality_does_not_increase_defences"]=1848, + ["local_quality_does_not_increase_physical_damage"]=1849, + ["local_quantity_of_sockets_+%"]=1854, + ["local_random_support_gem_index"]=402, + ["local_random_support_gem_index_1"]=403, + ["local_random_support_gem_level"]=402, + ["local_random_support_gem_level_1"]=403, + ["local_recharge_on_crit"]=779, + ["local_recharge_on_crit_%"]=780, + ["local_recharge_on_demon_killed"]=781, + ["local_recharge_on_take_crit"]=782, + ["local_resist_all_elements_%_if_item_corrupted"]=7875, + ["local_right_ring_slot_base_all_ailment_duration_on_self_+%"]=2595, + ["local_right_ring_slot_base_energy_shield_regeneration_rate_per_minute_%"]=2581, + ["local_right_ring_slot_cold_damage_taken_%_as_lightning"]=2596, + ["local_right_ring_slot_cover_in_frost_for_x_seconds_when_freezing_enemy"]=7876, + ["local_right_ring_slot_curse_effect_on_self_+%"]=2597, + ["local_right_ring_slot_energy_shield"]=2584, + ["local_right_ring_slot_fire_damage_taken_%_as_cold"]=2598, + ["local_right_ring_slot_lightning_damage_taken_%_as_fire"]=2599, + ["local_right_ring_slot_maximum_mana"]=2582, + ["local_right_ring_slot_minion_damage_taken_+%"]=2600, + ["local_right_ring_slot_no_mana_regeneration"]=2580, + ["local_right_ring_slot_number_of_additional_chains_for_spell_projectiles"]=7877, + ["local_right_ring_slot_physical_damage_reduction_rating"]=2583, + ["local_right_ring_slot_physical_reflect_damage_taken_+%"]=2644, + ["local_right_ring_slot_projectiles_from_spells_cannot_fork"]=7878, + ["local_right_ring_slot_skill_effect_duration_+%"]=2601, + ["local_right_ring_socketed_curse_replaces_skitterbots_shocking_aura"]=7879, + ["local_ring_attack_speed_+%_final"]=7880, + ["local_ring_burning_damage_+%_final"]=7881, + ["local_ring_disable_other_ring"]=1540, + ["local_ring_duplicate_other_ring"]=2787, + ["local_ring_nova_spells_area_of_effect_+%_final"]=7882, + ["local_self_bleed_duration_+%_during_flask_effect"]=941, + ["local_self_chill_effect_+%_during_flask_effect"]=942, + ["local_self_curse_effect_+%_during_flask_effect"]=943, + ["local_self_freeze_duration_+%_during_flask_effect"]=944, + ["local_self_ignite_duration_+%_during_flask_effect"]=945, + ["local_self_poison_duration_+%_during_flask_effect"]=946, + ["local_self_shock_effect_+%_during_flask_effect"]=947, + ["local_sentinel_drone_difficulty_+%"]=7883, + ["local_shield_trigger_socketed_elemental_spell_on_block_display_cooldown"]=7884, ["local_six_linked_random_sockets"]=75, - ["local_smoke_ground_on_flask_use_radius"]=811, - ["local_socketed_abyss_jewel_effect_+%"]=223, - ["local_socketed_active_skill_gem_level_+"]=193, - ["local_socketed_active_skill_gem_quality_+"]=208, - ["local_socketed_area_of_effect_gem_level_+"]=179, - ["local_socketed_area_of_effect_gem_quality_+"]=209, - ["local_socketed_aura_gem_level_+"]=184, - ["local_socketed_aura_gem_quality_+"]=210, - ["local_socketed_bow_gem_level_+"]=181, - ["local_socketed_bow_gem_quality_+"]=211, - ["local_socketed_chaos_gem_level_+"]=173, - ["local_socketed_chaos_gem_quality_+"]=212, - ["local_socketed_cold_gem_level_+"]=171, - ["local_socketed_cold_gem_quality_+"]=213, - ["local_socketed_curse_gem_level_+"]=187, - ["local_socketed_dexterity_gem_level_+"]=163, - ["local_socketed_dexterity_gem_quality_+"]=214, - ["local_socketed_duration_gem_level_+"]=178, - ["local_socketed_elemental_gem_level_+"]=215, - ["local_socketed_fire_gem_level_+"]=170, - ["local_socketed_fire_gem_quality_+"]=216, - ["local_socketed_gem_level_+"]=165, - ["local_socketed_gem_level_+_per_filled_socket"]=7629, - ["local_socketed_gem_quality_+"]=206, - ["local_socketed_gems_in_blue_sockets_experience_gained_+%"]=169, - ["local_socketed_gems_in_green_sockets_get_quality_%"]=168, - ["local_socketed_gems_in_red_sockets_get_level_+"]=167, - ["local_socketed_golem_gem_level_+"]=205, - ["local_socketed_herald_gem_level_+"]=185, - ["local_socketed_hex_gem_level_+"]=188, - ["local_socketed_intelligence_gem_level_+"]=164, - ["local_socketed_intelligence_gem_quality_+"]=217, - ["local_socketed_lightning_gem_level_+"]=172, - ["local_socketed_lightning_gem_quality_+"]=218, - ["local_socketed_melee_gem_level_+"]=182, - ["local_socketed_melee_gem_quality_+"]=219, - ["local_socketed_minion_gem_level_+"]=183, - ["local_socketed_minion_gem_quality_+"]=220, - ["local_socketed_movement_gem_level_+"]=186, - ["local_socketed_non_vaal_gem_level_+"]=194, - ["local_socketed_projectile_gem_level_+"]=180, - ["local_socketed_projectile_gem_quality_+"]=221, - ["local_socketed_skill_gem_level_+1_per_x_player_levels"]=166, - ["local_socketed_spell_gem_level_+"]=177, + ["local_smoke_ground_on_flask_use_radius"]=834, + ["local_socketed_abyss_jewel_effect_+%"]=224, + ["local_socketed_active_skill_gem_level_+"]=194, + ["local_socketed_active_skill_gem_quality_+"]=209, + ["local_socketed_area_of_effect_gem_level_+"]=180, + ["local_socketed_area_of_effect_gem_quality_+"]=210, + ["local_socketed_aura_gem_level_+"]=185, + ["local_socketed_aura_gem_quality_+"]=211, + ["local_socketed_bow_gem_level_+"]=182, + ["local_socketed_bow_gem_quality_+"]=212, + ["local_socketed_chaos_gem_level_+"]=174, + ["local_socketed_chaos_gem_quality_+"]=213, + ["local_socketed_cold_gem_level_+"]=172, + ["local_socketed_cold_gem_quality_+"]=214, + ["local_socketed_curse_gem_level_+"]=188, + ["local_socketed_dexterity_gem_level_+"]=164, + ["local_socketed_dexterity_gem_quality_+"]=215, + ["local_socketed_duration_gem_level_+"]=179, + ["local_socketed_elemental_gem_level_+"]=216, + ["local_socketed_fire_gem_level_+"]=171, + ["local_socketed_fire_gem_quality_+"]=217, + ["local_socketed_gem_level_+"]=166, + ["local_socketed_gem_level_+_per_filled_socket"]=7885, + ["local_socketed_gem_quality_+"]=207, + ["local_socketed_gems_in_blue_sockets_experience_gained_+%"]=170, + ["local_socketed_gems_in_green_sockets_get_quality_%"]=169, + ["local_socketed_gems_in_red_sockets_get_level_+"]=168, + ["local_socketed_golem_gem_level_+"]=206, + ["local_socketed_herald_gem_level_+"]=186, + ["local_socketed_hex_gem_level_+"]=189, + ["local_socketed_intelligence_gem_level_+"]=165, + ["local_socketed_intelligence_gem_quality_+"]=218, + ["local_socketed_lightning_gem_level_+"]=173, + ["local_socketed_lightning_gem_quality_+"]=219, + ["local_socketed_melee_gem_level_+"]=183, + ["local_socketed_melee_gem_quality_+"]=220, + ["local_socketed_minion_gem_level_+"]=184, + ["local_socketed_minion_gem_quality_+"]=221, + ["local_socketed_movement_gem_level_+"]=187, + ["local_socketed_non_vaal_gem_level_+"]=195, + ["local_socketed_projectile_gem_level_+"]=181, + ["local_socketed_projectile_gem_quality_+"]=222, + ["local_socketed_skill_gem_level_+1_per_x_player_levels"]=167, + ["local_socketed_spell_gem_level_+"]=178, ["local_socketed_strength_gem_level_+"]=162, - ["local_socketed_strength_gem_quality_+"]=222, - ["local_socketed_support_gem_level_+"]=192, - ["local_socketed_support_gem_quality_+"]=207, - ["local_socketed_trap_and_mine_gem_level_+"]=190, - ["local_socketed_trap_gem_level_+"]=189, - ["local_socketed_vaal_gem_level_+"]=191, - ["local_socketed_warcry_gem_level_+"]=195, - ["local_spell_damage_+%_if_item_corrupted"]=7630, - ["local_spells_gain_arcane_surge_on_hit_with_caster_abyss_jewel_socketed"]=7631, - ["local_strength_and_intelligence_requirement_+"]=997, - ["local_strength_per_2%_quality"]=7632, - ["local_strength_requirement_+"]=998, - ["local_strength_requirement_+%"]=999, - ["local_stun_threshold_reduction_+%"]=2397, - ["local_suffix_mod_effect_+%"]=7633, - ["local_support_gem_max_skill_level_requirement_to_support"]=2720, - ["local_treat_enemy_resistances_as_negated_on_elemental_damage_hit"]=7634, - ["local_unique_attacks_cast_socketed_lightning_spells_%"]=745, - ["local_unique_can_be_runesmith_enchanted"]=4322, - ["local_unique_can_have_crucible_unique_staff_passive_tree_mods"]=7635, - ["local_unique_can_have_shield_weapon_passive_tree"]=7636, - ["local_unique_can_have_two_handed_sword_weapon_passive_tree"]=7637, - ["local_unique_cast_socketed_cold_skills_on_melee_critical_strike"]=746, - ["local_unique_chaos_damage_does_not_bypass_energy_shield_during_flask_effect"]=875, - ["local_unique_counts_as_dual_wielding"]=2595, - ["local_unique_expedition_flask_ward_+%_final_during_flask_effect"]=924, - ["local_unique_flask_additional_maximum_all_elemental_resistances_%_while_healing"]=925, - ["local_unique_flask_avoid_chill_%_while_healing"]=874, - ["local_unique_flask_avoid_freeze_%_while_healing"]=876, - ["local_unique_flask_block_%_while_healing"]=926, - ["local_unique_flask_cannot_recover_life_while_healing"]=927, - ["local_unique_flask_chaos_damage_%_of_maximum_life_to_deal_per_minute_while_healing"]=792, - ["local_unique_flask_charges_gained_+%_during_flask_effect"]=928, - ["local_unique_flask_critical_poison_dot_multiplier_+_during_flask_effect"]=929, - ["local_unique_flask_critical_strike_chance_+%_vs_enemies_on_consecrated_ground_during_flask_effect"]=930, - ["local_unique_flask_damage_+%_vs_demons_while_healing"]=932, - ["local_unique_flask_damage_over_time_+%_during_flask_effect"]=931, - ["local_unique_flask_damage_taken_+%_vs_demons_while_healing"]=933, - ["local_unique_flask_elemental_damage_%_to_add_as_chaos_while_healing"]=934, - ["local_unique_flask_elemental_damage_taken_+%_of_lowest_uncapped_resistance_type"]=964, - ["local_unique_flask_elemental_penetration_%_of_highest_uncapped_resistance_type"]=965, - ["local_unique_flask_explode_enemies_for_10%_life_as_random_element_on_kill_chance_%_during_flask_effect"]=7638, - ["local_unique_flask_instantly_recovers_%_maximum_life"]=791, - ["local_unique_flask_item_quantity_+%_while_healing"]=935, - ["local_unique_flask_item_rarity_+%_while_healing"]=936, - ["local_unique_flask_kiaras_determination"]=937, - ["local_unique_flask_leech_is_instant_during_flask_effect"]=976, - ["local_unique_flask_leech_lightning_damage_%_as_life_during_flask_effect"]=974, - ["local_unique_flask_leech_lightning_damage_%_as_mana_during_flask_effect"]=975, - ["local_unique_flask_life_leech_from_chaos_damage_permyriad_while_healing"]=938, - ["local_unique_flask_light_radius_+%_while_healing"]=939, - ["local_unique_flask_lightning_resistance_penetration_%_during_flask_effect"]=969, - ["local_unique_flask_maximum_added_lightning_damage_to_attacks_during_flask_effect"]=972, - ["local_unique_flask_maximum_added_lightning_damage_to_spells_during_flask_effect"]=973, - ["local_unique_flask_minimum_added_lightning_damage_to_attacks_during_flask_effect"]=972, - ["local_unique_flask_minimum_added_lightning_damage_to_spells_during_flask_effect"]=973, - ["local_unique_flask_nearby_enemies_cursed_with_level_x_despair_during_flask_effect"]=940, - ["local_unique_flask_nearby_enemies_cursed_with_level_x_vulnerability_during_flask_effect"]=941, - ["local_unique_flask_no_mana_cost_while_healing"]=942, - ["local_unique_flask_physical_damage_%_converted_to_lightning_during_flask_effect"]=968, - ["local_unique_flask_physical_damage_%_to_add_as_chaos_while_healing"]=943, - ["local_unique_flask_physical_damage_%_to_add_as_cold_while_healing"]=873, - ["local_unique_flask_physical_damage_taken_%_as_cold_while_healing"]=872, - ["local_unique_flask_recover_%_maximum_life_when_effect_reaches_duration"]=785, - ["local_unique_flask_resist_all_elements_%_during_flask_effect"]=944, - ["local_unique_flask_shock_nearby_enemies_during_flask_effect"]=966, - ["local_unique_flask_shocked_during_flask_effect"]=967, - ["local_unique_flask_spell_block_%_while_healing"]=945, - ["local_unique_flask_start_energy_shield_recharge"]=7639, - ["local_unique_flask_vaal_skill_critical_strike_chance_+%_during_flask_effect"]=946, - ["local_unique_flask_vaal_skill_damage_+%_during_flask_effect"]=947, - ["local_unique_flask_vaal_skill_damage_+%_final_during_flask_effect"]=948, - ["local_unique_flask_vaal_skill_does_not_apply_soul_gain_prevention_during_flask_effect"]=949, - ["local_unique_flask_vaal_skill_soul_cost_+%_during_flask_effect"]=950, - ["local_unique_flask_vaal_skill_soul_gain_preventation_duration_+%_during_flask_effect"]=951, + ["local_socketed_strength_gem_quality_+"]=223, + ["local_socketed_support_gem_level_+"]=193, + ["local_socketed_support_gem_quality_+"]=208, + ["local_socketed_trap_and_mine_gem_level_+"]=191, + ["local_socketed_trap_gem_level_+"]=190, + ["local_socketed_vaal_gem_level_+"]=192, + ["local_socketed_warcry_gem_level_+"]=196, + ["local_spell_damage_+%_if_item_corrupted"]=7886, + ["local_spells_gain_arcane_surge_on_hit_with_caster_abyss_jewel_socketed"]=7887, + ["local_strength_and_intelligence_requirement_+"]=1021, + ["local_strength_per_2%_quality"]=7888, + ["local_strength_requirement_+"]=1022, + ["local_strength_requirement_+%"]=1023, + ["local_stun_threshold_reduction_+%"]=2430, + ["local_suffix_mod_effect_+%"]=7889, + ["local_support_gem_max_skill_level_requirement_to_support"]=2755, + ["local_treat_enemy_resistances_as_negated_on_elemental_damage_hit"]=7890, + ["local_unique_attacks_cast_socketed_lightning_spells_%"]=764, + ["local_unique_can_be_runesmith_enchanted"]=4368, + ["local_unique_can_have_crucible_unique_staff_passive_tree_mods"]=7891, + ["local_unique_can_have_shield_weapon_passive_tree"]=7892, + ["local_unique_can_have_two_handed_sword_weapon_passive_tree"]=7893, + ["local_unique_cast_socketed_cold_skills_on_melee_critical_strike"]=765, + ["local_unique_cast_socketed_spell_on_block"]=766, + ["local_unique_chaos_damage_does_not_bypass_energy_shield_during_flask_effect"]=898, + ["local_unique_counts_as_dual_wielding"]=2630, + ["local_unique_expedition_flask_ward_+%_final_during_flask_effect"]=948, + ["local_unique_flask_additional_maximum_all_elemental_resistances_%_while_healing"]=949, + ["local_unique_flask_avoid_chill_%_while_healing"]=897, + ["local_unique_flask_avoid_freeze_%_while_healing"]=899, + ["local_unique_flask_block_%_while_healing"]=950, + ["local_unique_flask_cannot_recover_life_while_healing"]=951, + ["local_unique_flask_chaos_damage_%_of_maximum_life_to_deal_per_minute_while_healing"]=815, + ["local_unique_flask_charges_gained_+%_during_flask_effect"]=952, + ["local_unique_flask_critical_poison_dot_multiplier_+_during_flask_effect"]=953, + ["local_unique_flask_critical_strike_chance_+%_vs_enemies_on_consecrated_ground_during_flask_effect"]=954, + ["local_unique_flask_damage_+%_vs_demons_while_healing"]=956, + ["local_unique_flask_damage_over_time_+%_during_flask_effect"]=955, + ["local_unique_flask_damage_taken_+%_vs_demons_while_healing"]=957, + ["local_unique_flask_elemental_damage_%_to_add_as_chaos_while_healing"]=958, + ["local_unique_flask_elemental_damage_taken_+%_of_lowest_uncapped_resistance_type"]=989, + ["local_unique_flask_elemental_penetration_%_of_highest_uncapped_resistance_type"]=990, + ["local_unique_flask_explode_enemies_for_10%_life_as_random_element_on_kill_chance_%_during_flask_effect"]=959, + ["local_unique_flask_instantly_recovers_%_maximum_life"]=814, + ["local_unique_flask_instantly_removes_%_maximum_life"]=810, + ["local_unique_flask_item_quantity_+%_while_healing"]=960, + ["local_unique_flask_item_rarity_+%_while_healing"]=961, + ["local_unique_flask_kiaras_determination"]=962, + ["local_unique_flask_leech_is_instant_during_flask_effect"]=1001, + ["local_unique_flask_leech_lightning_damage_%_as_life_during_flask_effect"]=999, + ["local_unique_flask_leech_lightning_damage_%_as_mana_during_flask_effect"]=1000, + ["local_unique_flask_life_leech_from_chaos_damage_permyriad_while_healing"]=963, + ["local_unique_flask_light_radius_+%_while_healing"]=964, + ["local_unique_flask_lightning_resistance_penetration_%_during_flask_effect"]=994, + ["local_unique_flask_maximum_added_lightning_damage_to_attacks_during_flask_effect"]=997, + ["local_unique_flask_maximum_added_lightning_damage_to_spells_during_flask_effect"]=998, + ["local_unique_flask_minimum_added_lightning_damage_to_attacks_during_flask_effect"]=997, + ["local_unique_flask_minimum_added_lightning_damage_to_spells_during_flask_effect"]=998, + ["local_unique_flask_nearby_enemies_cursed_with_level_x_despair_during_flask_effect"]=965, + ["local_unique_flask_nearby_enemies_cursed_with_level_x_vulnerability_during_flask_effect"]=966, + ["local_unique_flask_no_mana_cost_while_healing"]=967, + ["local_unique_flask_physical_damage_%_converted_to_lightning_during_flask_effect"]=993, + ["local_unique_flask_physical_damage_%_to_add_as_chaos_while_healing"]=968, + ["local_unique_flask_physical_damage_%_to_add_as_cold_while_healing"]=896, + ["local_unique_flask_physical_damage_taken_%_as_cold_while_healing"]=895, + ["local_unique_flask_recover_%_maximum_life_when_effect_reaches_duration"]=806, + ["local_unique_flask_resist_all_elements_%_during_flask_effect"]=969, + ["local_unique_flask_shock_nearby_enemies_during_flask_effect"]=991, + ["local_unique_flask_shocked_during_flask_effect"]=992, + ["local_unique_flask_spell_block_%_while_healing"]=970, + ["local_unique_flask_start_energy_shield_recharge"]=811, + ["local_unique_flask_vaal_skill_critical_strike_chance_+%_during_flask_effect"]=971, + ["local_unique_flask_vaal_skill_damage_+%_during_flask_effect"]=972, + ["local_unique_flask_vaal_skill_damage_+%_final_during_flask_effect"]=973, + ["local_unique_flask_vaal_skill_does_not_apply_soul_gain_prevention_during_flask_effect"]=974, + ["local_unique_flask_vaal_skill_soul_cost_+%_during_flask_effect"]=975, + ["local_unique_flask_vaal_skill_soul_gain_preventation_duration_+%_during_flask_effect"]=976, ["local_unique_hungry_loop_has_consumed_gem"]=108, ["local_unique_hungry_loop_number_of_gems_to_consume"]=108, - ["local_unique_jewel_X_dexterity_per_1_dexterity_allocated_in_radius"]=2959, - ["local_unique_jewel_X_intelligence_per_1_intelligence_allocated_in_radius"]=2960, - ["local_unique_jewel_X_strength_per_1_strength_allocated_in_radius"]=2961, - ["local_unique_jewel_accuracy_rating_+_per_10_dex_unallocated_in_radius"]=7640, - ["local_unique_jewel_accuracy_rating_+_per_10_int_unallocated_in_radius"]=3048, - ["local_unique_jewel_additional_all_attributes_with_passive_tree_connected_to_scion_start"]=9992, - ["local_unique_jewel_additional_critical_strike_chance_permyriad_with_passive_tree_connected_to_shadow_start"]=9992, - ["local_unique_jewel_additional_life_per_X_int_in_radius"]=3024, - ["local_unique_jewel_additional_physical_damage_reduction_%_per_10_str_allocated_in_radius"]=3041, + ["local_unique_jewel_X_dexterity_per_1_dexterity_allocated_in_radius"]=3000, + ["local_unique_jewel_X_intelligence_per_1_intelligence_allocated_in_radius"]=3001, + ["local_unique_jewel_X_strength_per_1_strength_allocated_in_radius"]=3002, + ["local_unique_jewel_accuracy_rating_+_per_10_dex_unallocated_in_radius"]=7894, + ["local_unique_jewel_accuracy_rating_+_per_10_int_unallocated_in_radius"]=3090, + ["local_unique_jewel_additional_all_attributes_with_passive_tree_connected_to_scion_start"]=10302, + ["local_unique_jewel_additional_critical_strike_chance_permyriad_with_passive_tree_connected_to_shadow_start"]=10302, + ["local_unique_jewel_additional_life_per_X_int_in_radius"]=3066, + ["local_unique_jewel_additional_physical_damage_reduction_%_per_10_str_allocated_in_radius"]=3083, ["local_unique_jewel_alternate_tree_internal_revision"]=27, ["local_unique_jewel_alternate_tree_keystone"]=27, ["local_unique_jewel_alternate_tree_seed"]=27, ["local_unique_jewel_alternate_tree_version"]=27, - ["local_unique_jewel_animate_weapon_animates_bows_and_wands_with_x_dex_in_radius"]=3046, - ["local_unique_jewel_animate_weapon_can_animate_up_to_x_additional_ranged_weapons_with_50_dex_in_radius"]=3144, - ["local_unique_jewel_attack_and_cast_speed_+%_with_passive_tree_connected_to_shadow_start"]=9993, - ["local_unique_jewel_barrage_final_volley_fires_x_additional_projectiles_simultaneously_with_50_dex_in_radius"]=3153, - ["local_unique_jewel_blight_applies_wither_for_ms_with_40_int_in_radius"]=7641, - ["local_unique_jewel_blight_applies_wither_for_two_seconds_with_40_int_in_radius"]=7642, - ["local_unique_jewel_blight_cast_speed_+%_with_40_int_in_radius"]=7643, - ["local_unique_jewel_blight_hinder_duration_+%_with_40_int_in_radius"]=7644, - ["local_unique_jewel_blight_hinder_enemy_chaos_damage_taken_+%_with_40_int_in_radius"]=7645, - ["local_unique_jewel_blight_skill_area_of_effect_+%_after_1_second_channelling_with_50_int_in_radius"]=7646, - ["local_unique_jewel_caustic_arrow_chance_to_poison_%_vs_enemies_on_caustic_ground_with_40_dex_in_radius"]=7647, - ["local_unique_jewel_caustic_arrow_damage_over_time_+%_with_40_dex_in_radius"]=7648, - ["local_unique_jewel_caustic_arrow_hit_damage_+%_with_40_dex_in_radius"]=7649, - ["local_unique_jewel_chaos_damage_+%_per_10_int_in_radius"]=2962, - ["local_unique_jewel_chaos_damage_+%_per_X_int_in_radius"]=3025, - ["local_unique_jewel_chill_freeze_duration_-%_per_X_dex_in_radius"]=3026, - ["local_unique_jewel_claw_physical_damage_+%_per_X_dex_in_radius"]=3014, - ["local_unique_jewel_cleave_+1_base_radius_per_nearby_enemy_up_to_10_with_40_str_in_radius"]=3236, - ["local_unique_jewel_cleave_fortify_on_hit_with_50_str_in_radius"]=3235, - ["local_unique_jewel_cold_and_lightning_resistance_to_melee_damage"]=7650, - ["local_unique_jewel_cold_damage_+1%_per_x_int_in_radius"]=3038, - ["local_unique_jewel_cold_damage_increases_applies_to_physical_damage"]=3017, - ["local_unique_jewel_cold_resistance_also_grants_frenzy_charge_on_kill_chance"]=7651, - ["local_unique_jewel_cold_resistance_also_grants_spell_suppression_chance_scaled_%"]=7652, - ["local_unique_jewel_cold_snap_gain_power_charge_on_kill_%_with_50_int_in_radius"]=3149, - ["local_unique_jewel_cold_snap_uses_gains_power_charges_instead_of_frenzy_with_40_int_in_radius"]=7653, - ["local_unique_jewel_critical_strike_multiplier_+_per_10_str_unallocated_in_radius"]=3049, - ["local_unique_jewel_damage_+%_with_passive_tree_connected_to_scion_start"]=9993, - ["local_unique_jewel_damage_increases_applies_to_fire_damage"]=3015, - ["local_unique_jewel_dex_and_int_apply_to_str_melee_damage_bonus_in_radius"]=3028, - ["local_unique_jewel_discharge_area_of_effect_+%_final_with_40_int_in_radius"]=7654, - ["local_unique_jewel_discharge_cooldown_override_ms_with_40_int_in_radius"]=7655, - ["local_unique_jewel_discharge_damage_+%_final_with_40_int_in_radius"]=7656, - ["local_unique_jewel_disconnected_passives_can_be_allocated_around_keystone_hash"]=7657, - ["local_unique_jewel_dot_multiplier_+_per_10_int_unallocated_in_radius"]=7658, - ["local_unique_jewel_double_strike_chance_to_trigger_on_kill_effects_an_additional_time_%_with_50_dexterity_in_radius"]=3117, - ["local_unique_jewel_dual_strike_accuracy_rating_+%_while_wielding_sword_with_40_dex_in_radius"]=7659, - ["local_unique_jewel_dual_strike_attack_speed_+%_while_wielding_claw_with_40_dex_in_radius"]=7660, - ["local_unique_jewel_dual_strike_critical_strike_multiplier_+_while_wielding_dagger_with_40_dex_in_radius"]=7661, - ["local_unique_jewel_dual_strike_intimidate_on_hit_while_wielding_axe_with_40_dex_in_radius"]=7662, - ["local_unique_jewel_dual_strike_main_hand_deals_double_damage_%_with_40_dex_in_radius"]=7663, - ["local_unique_jewel_dual_strike_melee_splash_while_wielding_mace_with_40_dex_in_radius"]=7664, - ["local_unique_jewel_dual_strike_melee_splash_with_off_hand_weapon_with_50_dex_in_radius"]=7665, - ["local_unique_jewel_elemental_hit_50%_less_cold_damage_per_40_str_and_int"]=7666, - ["local_unique_jewel_elemental_hit_50%_less_fire_damage_per_40_int_and_dex"]=7667, - ["local_unique_jewel_elemental_hit_50%_less_lightning_damage_per_40_str_and_dex"]=7668, - ["local_unique_jewel_elemental_hit_cannot_roll_cold_damage_with_40_int_+_str_in_radius"]=7669, - ["local_unique_jewel_elemental_hit_cannot_roll_fire_damage_with_40_int_+_dex_in_radius"]=7670, - ["local_unique_jewel_elemental_hit_cannot_roll_lightning_damage_with_40_dex_+_str_in_radius"]=7671, - ["local_unique_jewel_elemental_penetration_%_with_passive_tree_connected_to_templar_start"]=9992, - ["local_unique_jewel_energy_shield_increases_applies_to_armour_doubled"]=3018, - ["local_unique_jewel_energy_shield_regeneration_rate_per_minute_%_per_10_int_allocated_in_radius"]=3042, - ["local_unique_jewel_ethereal_knives_number_of_additional_projectiles_with_50_dex_in_radius"]=3237, - ["local_unique_jewel_ethereal_knives_projectiles_nova_with_50_dex_in_radius"]=3238, - ["local_unique_jewel_evasion_rating_+%_per_X_dex_in_radius"]=3013, - ["local_unique_jewel_fire_and_cold_resistance_to_spell_damage"]=7672, - ["local_unique_jewel_fire_and_lightning_resistance_to_projectile_attack_damage"]=7673, - ["local_unique_jewel_fire_damage_+1%_per_x_int_in_radius"]=3037, - ["local_unique_jewel_fire_resistance_also_grants_block_chance_scaled_%"]=7674, - ["local_unique_jewel_fire_resistance_also_grants_endurance_charge_on_kill_chance"]=7675, - ["local_unique_jewel_fire_trap_number_of_additional_traps_to_throw_with_40_dex_in_radius"]=7676, - ["local_unique_jewel_fireball_base_radius_up_to_+_at_longer_ranges_with_40_int_in_radius"]=3141, - ["local_unique_jewel_fireball_radius_up_to_+%_at_longer_ranges_with_50_int_in_radius"]=3140, - ["local_unique_jewel_flask_charges_gained_+%_with_passive_tree_connected_to_ranger_start"]=9993, - ["local_unique_jewel_fortify_duration_+1%_per_x_int_in_radius"]=3036, - ["local_unique_jewel_freezing_pulse_damage_+%_if_enemy_shattered_recently_with_50_int_in_radius"]=3245, - ["local_unique_jewel_freezing_pulse_number_of_additional_projectiles_with_50_int_in_radius"]=3244, - ["local_unique_jewel_frost_blades_melee_damage_penetrates_%_cold_resistance_with_40_dex_in_radius"]=7677, - ["local_unique_jewel_frost_blades_projectile_speed_+%_with_40_dex_in_radius"]=7678, - ["local_unique_jewel_frostbolt_additional_projectiles_with_40_int_in_radius"]=7679, - ["local_unique_jewel_frostbolt_projectile_acceleration_with_50_int_in_radius"]=7680, - ["local_unique_jewel_galvanic_arrow_area_damage_+%_with_40_dex_in_radius"]=7715, - ["local_unique_jewel_glacial_cascade_additional_sequence_with_x_int_in_radius"]=3045, - ["local_unique_jewel_glacial_cascade_number_of_additional_bursts_with_40_int_in_radius"]=7681, - ["local_unique_jewel_glacial_cascade_physical_damage_%_to_convert_to_cold_with_40_int_in_radius"]=7682, - ["local_unique_jewel_glacial_hammer_item_rarity_on_shattering_enemy_+%_with_50_strength_in_radius"]=3115, - ["local_unique_jewel_glacial_hammer_melee_splash_with_cold_damage_with_50_str_in_radius"]=3239, - ["local_unique_jewel_glacial_hammer_physical_damage_%_to_convert_to_cold_with_50_str_in_radius"]=3240, - ["local_unique_jewel_grants_x_empty_passives"]=7683, - ["local_unique_jewel_ground_slam_angle_+%_with_50_str_in_radius"]=3147, - ["local_unique_jewel_ground_slam_chance_to_gain_endurance_charge_%_on_stun_with_50_str_in_radius"]=3146, - ["local_unique_jewel_heavy_strike_chance_to_deal_double_damage_%_with_50_strength_in_radius"]=3119, - ["local_unique_jewel_ice_shot_additional_pierce_per_10_old_with_40_dex_in_radius"]=7684, - ["local_unique_jewel_ice_shot_explosion_skill_area_of_effect_+%_with_50_dex_in_radius"]=7685, - ["local_unique_jewel_ice_shot_pierce_+_with_40_dex_in_radius"]=7686, - ["local_unique_jewel_intelligence_per_unallocated_node_in_radius"]=2981, - ["local_unique_jewel_life_increases_applies_to_energy_shield"]=3019, - ["local_unique_jewel_life_increases_applies_to_mana_doubled"]=3027, - ["local_unique_jewel_life_leech_from_attack_damage_permyriad_with_passive_tree_connected_to_duelist_start"]=9992, - ["local_unique_jewel_life_recovery_rate_+%_per_10_str_allocated_in_radius"]=7687, - ["local_unique_jewel_life_recovery_rate_+%_per_10_str_unallocated_in_radius"]=7688, - ["local_unique_jewel_life_regeneration_rate_per_minute_%_with_passive_tree_connected_to_marauder_start"]=9993, - ["local_unique_jewel_lightning_resistance_also_grants_block_spells_chance_scaled_%"]=7689, - ["local_unique_jewel_lightning_resistance_also_grants_power_charge_on_kill_chance"]=7690, - ["local_unique_jewel_lightning_tendrils_skill_area_of_effect_+%_per_enemy_hit_with_50_int_in_radius"]=7691, - ["local_unique_jewel_magma_orb_additional_projectiles_with_40_int_in_radius"]=7692, - ["local_unique_jewel_magma_orb_skill_area_of_effect_+%_per_bounce_with_50_int_in_radius"]=7693, - ["local_unique_jewel_mana_recovery_rate_+%_per_10_int_allocated_in_radius"]=7694, - ["local_unique_jewel_mana_recovery_rate_+%_per_10_int_unallocated_in_radius"]=7695, - ["local_unique_jewel_mana_regeneration_rate_per_minute_%_with_passive_tree_connected_to_witch_start"]=9992, - ["local_unique_jewel_maximum_mana_+_per_10_dex_unallocated_in_radius"]=3050, - ["local_unique_jewel_melee_applies_to_bow"]=2958, - ["local_unique_jewel_melee_range_+_with_passive_tree_connected_to_duelist_start"]=9993, - ["local_unique_jewel_melee_skills_area_of_effect_+%_with_passive_tree_connected_to_marauder_start"]=9992, - ["local_unique_jewel_molten_strike_number_of_additional_projectiles_with_50_str_in_radius"]=7696, - ["local_unique_jewel_molten_strike_skill_area_of_effect_+%_with_50_str_in_radius"]=7697, - ["local_unique_jewel_movement_speed_+%_per_10_dex_allocated_in_radius"]=3043, - ["local_unique_jewel_movement_speed_+%_per_10_dex_unallocated_in_radius"]=7698, - ["local_unique_jewel_movement_speed_+%_with_passive_tree_connected_to_ranger_start"]=9992, - ["local_unique_jewel_nearby_disconnected_passives_can_be_allocated"]=986, - ["local_unique_jewel_non_keystone_passive_in_radius_effect_+%"]=7699, - ["local_unique_jewel_notable_passive_in_radius_does_nothing"]=7700, - ["local_unique_jewel_notable_passives_in_radius_instead_grant_mana_cost_+%"]=10232, - ["local_unique_jewel_notable_passives_in_radius_instead_grant_minion_damage_taken_+%"]=10233, - ["local_unique_jewel_notable_passives_in_radius_instead_grant_minion_movement_speed_+%"]=10234, - ["local_unique_jewel_notable_passives_in_radius_instead_grant_spell_damage_+%"]=10232, - ["local_unique_jewel_one_additional_maximum_lightning_damage_per_X_dex"]=3023, - ["local_unique_jewel_passive_jewel_socket_mod_effect_+%_with_corrupted_magic_jewel_socketed"]=7701, - ["local_unique_jewel_passives_in_radius_applied_to_minions_instead"]=2963, - ["local_unique_jewel_passives_in_radius_give_trap_and_mine_maximum_added_physical_damage"]=10235, - ["local_unique_jewel_passives_in_radius_give_trap_and_mine_minimum_added_physical_damage"]=10235, - ["local_unique_jewel_passives_in_radius_grant_additional_all_attributes"]=7702, - ["local_unique_jewel_passives_in_radius_grant_base_chaos_damage_resistance_%"]=7703, - ["local_unique_jewel_passives_in_radius_grant_base_maximum_life"]=7704, - ["local_unique_jewel_passives_in_radius_grant_base_maximum_mana"]=7705, - ["local_unique_jewel_passives_in_radius_grant_chaos_damage_+%"]=7706, - ["local_unique_jewel_passives_in_radius_grant_cold_damage_+%"]=7707, - ["local_unique_jewel_passives_in_radius_grant_critical_strike_chance_+%"]=7708, - ["local_unique_jewel_passives_in_radius_grant_evasion_rating_+%"]=7709, - ["local_unique_jewel_passives_in_radius_grant_fire_damage_+%"]=7710, - ["local_unique_jewel_passives_in_radius_grant_lightning_damage_+%"]=7711, - ["local_unique_jewel_passives_in_radius_grant_maximum_energy_shield_+%"]=7712, - ["local_unique_jewel_passives_in_radius_grant_physical_damage_+%"]=7713, - ["local_unique_jewel_passives_in_radius_grant_physical_damage_reduction_rating_+%"]=7714, - ["local_unique_jewel_physical_attack_damage_+1%_per_x_dex_in_radius"]=3040, - ["local_unique_jewel_physical_attack_damage_+1%_per_x_strength_in_radius"]=3035, - ["local_unique_jewel_physical_damage_+1%_per_int_in_radius"]=3039, - ["local_unique_jewel_physical_damage_increases_applies_to_cold_damage"]=3016, - ["local_unique_jewel_projectile_damage_+1%_per_x_dex_in_radius"]=3044, - ["local_unique_jewel_shrapnel_shot_radius_+%_with_50_dex_in_radius"]=3241, - ["local_unique_jewel_skill_effect_duration_+%_with_passive_tree_connected_to_witch_start"]=9993, - ["local_unique_jewel_skills_in_radius_grant_%_unarmed_melee_attack_speed"]=7716, - ["local_unique_jewel_spark_number_of_additional_chains_with_50_int_in_radius"]=3242, - ["local_unique_jewel_spark_number_of_additional_projectiles_with_40_int_in_radius"]=7717, - ["local_unique_jewel_spark_number_of_additional_projectiles_with_50_int_in_radius"]=3243, - ["local_unique_jewel_spark_projectiles_nova_with_40_int_in_radius"]=7718, - ["local_unique_jewel_spectral_shield_throw_additional_chains_with_total_40_str_+_dex_in_radius"]=7719, - ["local_unique_jewel_spectral_shield_throw_less_shard_projectiles_with_total_40_str_+_dex_in_radius"]=7720, - ["local_unique_jewel_spectral_throw_damage_for_each_enemy_hit_with_spectral_weapon_+%_with_50_dexterity_in_radius"]=3116, - ["local_unique_jewel_spectral_throw_gain_vaal_soul_for_vaal_st_on_hit_%_with_40_dex_in_radius"]=7721, - ["local_unique_jewel_spectres_gain_soul_eater_on_kill_%_chance_with_50_int_in_radius"]=7722, - ["local_unique_jewel_spell_and_attack_block_%_with_passive_tree_connected_to_templar_start"]=9993, - ["local_unique_jewel_split_arrow_fires_additional_arrow_with_x_dex_in_radius"]=3047, - ["local_unique_jewel_split_arrow_projectiles_fire_in_parallel_x_dist_with_40_dex_in_radius"]=7723, - ["local_unique_jewel_tattoos_in_radius_effect_+%"]=7724, - ["local_unique_jewel_totem_life_+X%_per_10_str_in_radius"]=2950, - ["local_unique_jewel_unarmed_damage_+%_per_X_dex_in_radius"]=3029, - ["local_unique_jewel_vigilant_strike_fortifies_nearby_allies_for_x_seconds_with_50_str_in_radius"]=3138, - ["local_unique_jewel_viper_strike_attack_damage_per_poison_on_enemy_+%_with_50_dexterity_in_radius"]=3118, - ["local_unique_jewel_viper_strike_chance_to_gain_unholy_might_%_on_hit_per_poison_stack_on_enemy_with_50_dex_in_radius"]=7725, - ["local_unique_jewel_warcry_damage_taken_goes_to_mana_%_with_40_int_in_radius"]=3151, - ["local_unique_jewel_with_4_notables_gain_X_random_rare_monster_mods_on_kill"]=2951, - ["local_unique_jewel_with_50_int_in_radius_summon_X_melee_skeletons_as_mage_skeletons"]=3136, - ["local_unique_jewel_with_70_dex_physical_damage_to_add_as_chaos_%"]=2982, - ["local_unique_jewel_with_70_str_life_recovery_speed_+%"]=2983, - ["local_unique_jewel_with_x_int_in_radius_+1_curse"]=2968, - ["local_unique_jewel_zombie_slam_cooldown_speed_+%_with_50_int_in_radius"]=7726, - ["local_unique_jewel_zombie_slam_damage_+%_with_50_int_in_radius"]=7727, - ["local_unique_lions_roar_melee_physical_damage_+%_final_during_flask_effect"]=952, - ["local_unique_overflowing_chalice_flask_cannot_gain_flask_charges_during_flask_effect"]=978, - ["local_unique_regen_es_from_removed_life_duration_ms"]=3034, - ["local_unique_remove_life_and_regen_es_from_removed_life"]=3034, - ["local_unique_soul_ripper_flask_cannot_gain_flask_charges_during_flask_effect"]=979, - ["local_unique_vinktars_flask_shock_effect_+%_during_flask_effect"]=970, - ["local_unique_vinktars_flask_shock_proliferation_radius_during_flask_effect"]=971, - ["local_varunastra_weapon_counts_as_all_1h_melee_weapon_types"]=3666, - ["local_ward"]=1435, - ["local_ward_+%"]=1437, - ["local_weapon_crit_chance_is_%"]=7728, - ["local_weapon_crit_chance_is_100"]=3682, - ["local_weapon_enemy_phys_reduction_%_penalty"]=1142, - ["local_weapon_no_physical_damage"]=1141, - ["local_weapon_passive_tree_granted_passive_hash"]=7729, - ["local_weapon_range_+"]=2644, - ["local_weapon_range_+_per_10%_quality"]=7730, - ["local_weapon_trigger_socketed_fire_spell_on_hit_display_cooldown"]=7731, - ["local_weapon_trigger_socketed_spell_on_skill_use_display_cooldown_ms"]=749, - ["local_weapon_uses_both_hands"]=987, - ["local_withered_on_hit_for_2_seconds_%_chance"]=4296, - ["lose_%_of_es_on_crit"]=7738, - ["lose_%_of_life_and_energy_shield_when_you_use_a_chaos_skill"]=7739, - ["lose_%_of_life_on_crit"]=7740, - ["lose_%_of_mana_when_you_use_an_attack_skill"]=7741, - ["lose_10%_of_maximum_mana_on_skill_use_%_chance"]=3361, - ["lose_X_bark_on_enemy_spell_hit"]=10189, - ["lose_a_frenzy_charge_on_travel_skill_use_%_chance"]=4279, - ["lose_a_power_charge_when_you_gain_elusive_%_chance"]=4281, - ["lose_adrenaline_on_losing_flame_touched"]=7732, - ["lose_all_charges_on_starting_movement"]=7733, - ["lose_all_defiance_and_take_max_life_as_damage_on_reaching_x_defiance"]=4172, - ["lose_all_defiance_on_reaching_x_defiance"]=7734, - ["lose_all_endurance_charges_when_reaching_maximum"]=2651, - ["lose_all_fanatic_charges_on_reaching_maximum_fanatic_charges"]=7735, - ["lose_all_fragile_regrowth_when_hit"]=4287, - ["lose_all_gale_force_when_hit"]=7736, - ["lose_all_power_charges_on_block"]=7737, - ["lose_all_power_charges_on_reaching_maximum_power_charges"]=3490, - ["lose_an_endurance_charge_on_fortify_gain_%_chance"]=4280, - ["lose_endurance_charge_on_kill_%"]=2529, - ["lose_endurance_charges_on_rampage_end"]=3159, - ["lose_frenzy_charge_on_kill_%"]=2531, - ["lose_power_charge_each_second_if_not_detonated_mines_recently"]=7742, - ["lose_power_charge_on_kill_%"]=2533, - ["lose_soul_eater_souls_on_flask_use"]=3318, - ["lose_spirit_charges_on_savage_hit_taken"]=4269, - ["lose_x_mana_when_you_use_skill"]=7743, - ["low_life_threshold_%_override"]=7745, - ["lucky_or_unlucky_effects_are_instead_unexciting"]=7746, - ["mace_accuracy_rating"]=1911, - ["mace_accuracy_rating_+%"]=1350, - ["mace_ailment_damage_+%"]=1236, - ["mace_attack_speed_+%"]=1332, - ["mace_critical_strike_chance_+%"]=1377, - ["mace_critical_strike_multiplier_+"]=1401, - ["mace_damage_+%"]=1233, - ["mace_elemental_damage_+%"]=2024, - ["mace_hit_and_ailment_damage_+%"]=1234, - ["mace_or_staff_ailment_damage_+%"]=1263, - ["mace_or_staff_hit_and_ailment_damage_+%"]=1262, - ["magic_items_drop_identified"]=4040, - ["magic_monster_dropped_item_rarity_+%"]=7747, - ["magic_utility_flask_effect_+%"]=2642, - ["magic_utility_flasks_cannot_be_removed"]=4307, - ["magic_utility_flasks_cannot_be_used"]=4305, - ["magma_orb_damage_+%"]=3528, - ["magma_orb_num_of_additional_projectiles_in_chain"]=3837, - ["magma_orb_number_of_additional_projectiles"]=7748, - ["magma_orb_radius_+%"]=3696, - ["magma_orb_skill_area_of_effect_+%_per_bounce"]=7749, - ["maim_bleeding_enemies_on_hit_%"]=3207, - ["maim_effect_+%"]=7750, - ["maim_on_crit_%_with_attacks"]=7751, - ["maim_on_hit_%"]=7752, - ["maim_on_hit_%_vs_poisoned_enemies"]=3185, - ["main_hand_attack_damage_+%_while_wielding_two_weapon_types"]=7753, - ["main_hand_attack_speed_+%_final"]=7754, + ["local_unique_jewel_animate_weapon_animates_bows_and_wands_with_x_dex_in_radius"]=3088, + ["local_unique_jewel_animate_weapon_can_animate_up_to_x_additional_ranged_weapons_with_50_dex_in_radius"]=3186, + ["local_unique_jewel_armour_increases_applies_to_evasion"]=2997, + ["local_unique_jewel_attack_and_cast_speed_+%_with_passive_tree_connected_to_shadow_start"]=10303, + ["local_unique_jewel_barrage_final_volley_fires_x_additional_projectiles_simultaneously_with_50_dex_in_radius"]=3195, + ["local_unique_jewel_blight_applies_wither_for_ms_with_40_int_in_radius"]=7895, + ["local_unique_jewel_blight_applies_wither_for_two_seconds_with_40_int_in_radius"]=7896, + ["local_unique_jewel_blight_cast_speed_+%_with_40_int_in_radius"]=7897, + ["local_unique_jewel_blight_hinder_duration_+%_with_40_int_in_radius"]=7898, + ["local_unique_jewel_blight_hinder_enemy_chaos_damage_taken_+%_with_40_int_in_radius"]=7899, + ["local_unique_jewel_blight_skill_area_of_effect_+%_after_1_second_channelling_with_50_int_in_radius"]=7900, + ["local_unique_jewel_caustic_arrow_chance_to_poison_%_vs_enemies_on_caustic_ground_with_40_dex_in_radius"]=7901, + ["local_unique_jewel_caustic_arrow_damage_over_time_+%_with_40_dex_in_radius"]=7902, + ["local_unique_jewel_caustic_arrow_hit_damage_+%_with_40_dex_in_radius"]=7903, + ["local_unique_jewel_chaos_damage_+%_per_10_int_in_radius"]=3003, + ["local_unique_jewel_chaos_damage_+%_per_X_int_in_radius"]=3067, + ["local_unique_jewel_chill_freeze_duration_-%_per_X_dex_in_radius"]=3068, + ["local_unique_jewel_claw_physical_damage_+%_per_X_dex_in_radius"]=3056, + ["local_unique_jewel_cleave_+1_base_radius_per_nearby_enemy_up_to_10_with_40_str_in_radius"]=3278, + ["local_unique_jewel_cleave_fortify_on_hit_with_50_str_in_radius"]=3277, + ["local_unique_jewel_cold_and_lightning_resistance_to_melee_damage"]=7904, + ["local_unique_jewel_cold_damage_+1%_per_x_int_in_radius"]=3080, + ["local_unique_jewel_cold_damage_increases_applies_to_physical_damage"]=3059, + ["local_unique_jewel_cold_resistance_also_grants_cold_damage_to_convert_to_chaos_%"]=7905, + ["local_unique_jewel_cold_resistance_also_grants_frenzy_charge_on_kill_chance"]=7906, + ["local_unique_jewel_cold_resistance_also_grants_maximum_mana_scaled_%"]=7907, + ["local_unique_jewel_cold_resistance_also_grants_spell_suppression_chance_scaled_%"]=7908, + ["local_unique_jewel_cold_snap_gain_power_charge_on_kill_%_with_50_int_in_radius"]=3191, + ["local_unique_jewel_cold_snap_uses_gains_power_charges_instead_of_frenzy_with_40_int_in_radius"]=7909, + ["local_unique_jewel_critical_strike_multiplier_+_per_10_str_unallocated_in_radius"]=3091, + ["local_unique_jewel_damage_+%_with_passive_tree_connected_to_scion_start"]=10303, + ["local_unique_jewel_damage_increases_applies_to_fire_damage"]=3057, + ["local_unique_jewel_dex_and_int_apply_to_str_melee_damage_bonus_in_radius"]=3070, + ["local_unique_jewel_discharge_area_of_effect_+%_final_with_40_int_in_radius"]=7910, + ["local_unique_jewel_discharge_cooldown_override_ms_with_40_int_in_radius"]=7911, + ["local_unique_jewel_discharge_damage_+%_final_with_40_int_in_radius"]=7912, + ["local_unique_jewel_disconnected_passives_can_be_allocated_around_keystone_hash"]=10512, + ["local_unique_jewel_dot_multiplier_+_per_10_int_unallocated_in_radius"]=7913, + ["local_unique_jewel_double_strike_chance_to_trigger_on_kill_effects_an_additional_time_%_with_50_dexterity_in_radius"]=3159, + ["local_unique_jewel_dual_strike_accuracy_rating_+%_while_wielding_sword_with_40_dex_in_radius"]=7914, + ["local_unique_jewel_dual_strike_attack_speed_+%_while_wielding_claw_with_40_dex_in_radius"]=7915, + ["local_unique_jewel_dual_strike_critical_strike_multiplier_+_while_wielding_dagger_with_40_dex_in_radius"]=7916, + ["local_unique_jewel_dual_strike_intimidate_on_hit_while_wielding_axe_with_40_dex_in_radius"]=7917, + ["local_unique_jewel_dual_strike_main_hand_deals_double_damage_%_with_40_dex_in_radius"]=7918, + ["local_unique_jewel_dual_strike_melee_splash_while_wielding_mace_with_40_dex_in_radius"]=7919, + ["local_unique_jewel_dual_strike_melee_splash_with_off_hand_weapon_with_50_dex_in_radius"]=7920, + ["local_unique_jewel_elemental_hit_50%_less_cold_damage_per_40_str_and_int"]=7921, + ["local_unique_jewel_elemental_hit_50%_less_fire_damage_per_40_int_and_dex"]=7922, + ["local_unique_jewel_elemental_hit_50%_less_lightning_damage_per_40_str_and_dex"]=7923, + ["local_unique_jewel_elemental_hit_cannot_roll_cold_damage_with_40_int_+_str_in_radius"]=7924, + ["local_unique_jewel_elemental_hit_cannot_roll_fire_damage_with_40_int_+_dex_in_radius"]=7925, + ["local_unique_jewel_elemental_hit_cannot_roll_lightning_damage_with_40_dex_+_str_in_radius"]=7926, + ["local_unique_jewel_elemental_penetration_%_with_passive_tree_connected_to_templar_start"]=10302, + ["local_unique_jewel_energy_shield_increases_applies_to_armour_doubled"]=3060, + ["local_unique_jewel_energy_shield_regeneration_rate_per_minute_%_per_10_int_allocated_in_radius"]=3084, + ["local_unique_jewel_ethereal_knives_number_of_additional_projectiles_with_50_dex_in_radius"]=3279, + ["local_unique_jewel_ethereal_knives_projectiles_nova_with_50_dex_in_radius"]=3280, + ["local_unique_jewel_evasion_increases_applies_to_armour"]=2998, + ["local_unique_jewel_evasion_rating_+%_per_X_dex_in_radius"]=3055, + ["local_unique_jewel_fire_and_cold_resistance_to_spell_damage"]=7927, + ["local_unique_jewel_fire_and_lightning_resistance_to_projectile_attack_damage"]=7928, + ["local_unique_jewel_fire_damage_+1%_per_x_int_in_radius"]=3079, + ["local_unique_jewel_fire_resistance_also_grants_block_chance_scaled_%"]=7929, + ["local_unique_jewel_fire_resistance_also_grants_endurance_charge_on_kill_chance"]=7930, + ["local_unique_jewel_fire_resistance_also_grants_fire_damage_to_convert_to_chaos_%"]=7931, + ["local_unique_jewel_fire_resistance_also_grants_maximum_life_scaled_%"]=7932, + ["local_unique_jewel_fire_trap_number_of_additional_traps_to_throw_with_40_dex_in_radius"]=7933, + ["local_unique_jewel_fireball_base_radius_up_to_+_at_longer_ranges_with_40_int_in_radius"]=3183, + ["local_unique_jewel_fireball_radius_up_to_+%_at_longer_ranges_with_50_int_in_radius"]=3182, + ["local_unique_jewel_flask_charges_gained_+%_with_passive_tree_connected_to_ranger_start"]=10303, + ["local_unique_jewel_fortify_duration_+1%_per_x_int_in_radius"]=3078, + ["local_unique_jewel_freezing_pulse_damage_+%_if_enemy_shattered_recently_with_50_int_in_radius"]=3287, + ["local_unique_jewel_freezing_pulse_number_of_additional_projectiles_with_50_int_in_radius"]=3286, + ["local_unique_jewel_frost_blades_melee_damage_penetrates_%_cold_resistance_with_40_dex_in_radius"]=7934, + ["local_unique_jewel_frost_blades_projectile_speed_+%_with_40_dex_in_radius"]=7935, + ["local_unique_jewel_frostbolt_additional_projectiles_with_40_int_in_radius"]=7936, + ["local_unique_jewel_frostbolt_projectile_acceleration_with_50_int_in_radius"]=7937, + ["local_unique_jewel_galvanic_arrow_area_damage_+%_with_40_dex_in_radius"]=7974, + ["local_unique_jewel_glacial_cascade_additional_sequence_with_x_int_in_radius"]=3087, + ["local_unique_jewel_glacial_cascade_number_of_additional_bursts_with_40_int_in_radius"]=7938, + ["local_unique_jewel_glacial_cascade_physical_damage_%_to_convert_to_cold_with_40_int_in_radius"]=7939, + ["local_unique_jewel_glacial_hammer_item_rarity_on_shattering_enemy_+%_with_50_strength_in_radius"]=3157, + ["local_unique_jewel_glacial_hammer_melee_splash_with_cold_damage_with_50_str_in_radius"]=3281, + ["local_unique_jewel_glacial_hammer_physical_damage_%_to_convert_to_cold_with_50_str_in_radius"]=3282, + ["local_unique_jewel_grants_x_empty_passives"]=7940, + ["local_unique_jewel_ground_slam_angle_+%_with_50_str_in_radius"]=3189, + ["local_unique_jewel_ground_slam_chance_to_gain_endurance_charge_%_on_stun_with_50_str_in_radius"]=3188, + ["local_unique_jewel_heavy_strike_chance_to_deal_double_damage_%_with_50_strength_in_radius"]=3161, + ["local_unique_jewel_ice_shot_additional_pierce_per_10_old_with_40_dex_in_radius"]=7941, + ["local_unique_jewel_ice_shot_explosion_skill_area_of_effect_+%_with_50_dex_in_radius"]=7942, + ["local_unique_jewel_ice_shot_pierce_+_with_40_dex_in_radius"]=7943, + ["local_unique_jewel_intelligence_per_unallocated_node_in_radius"]=3023, + ["local_unique_jewel_life_increases_applies_to_energy_shield"]=3061, + ["local_unique_jewel_life_increases_applies_to_mana_doubled"]=3069, + ["local_unique_jewel_life_leech_from_attack_damage_permyriad_with_passive_tree_connected_to_duelist_start"]=10302, + ["local_unique_jewel_life_recovery_rate_+%_per_10_str_allocated_in_radius"]=7944, + ["local_unique_jewel_life_recovery_rate_+%_per_10_str_unallocated_in_radius"]=7945, + ["local_unique_jewel_life_regeneration_rate_per_minute_%_with_passive_tree_connected_to_marauder_start"]=10303, + ["local_unique_jewel_lightning_resistance_also_grants_block_spells_chance_scaled_%"]=7946, + ["local_unique_jewel_lightning_resistance_also_grants_lightning_damage_to_convert_to_chaos_%"]=7947, + ["local_unique_jewel_lightning_resistance_also_grants_maximum_energy_shield_scaled_%"]=7948, + ["local_unique_jewel_lightning_resistance_also_grants_power_charge_on_kill_chance"]=7949, + ["local_unique_jewel_lightning_tendrils_skill_area_of_effect_+%_per_enemy_hit_with_50_int_in_radius"]=7950, + ["local_unique_jewel_magma_orb_additional_projectiles_with_40_int_in_radius"]=7951, + ["local_unique_jewel_magma_orb_skill_area_of_effect_+%_per_bounce_with_50_int_in_radius"]=7952, + ["local_unique_jewel_mana_recovery_rate_+%_per_10_int_allocated_in_radius"]=7953, + ["local_unique_jewel_mana_recovery_rate_+%_per_10_int_unallocated_in_radius"]=7954, + ["local_unique_jewel_mana_regeneration_rate_per_minute_%_with_passive_tree_connected_to_witch_start"]=10302, + ["local_unique_jewel_maximum_mana_+_per_10_dex_unallocated_in_radius"]=3092, + ["local_unique_jewel_melee_applies_to_bow"]=2999, + ["local_unique_jewel_melee_range_+_with_passive_tree_connected_to_duelist_start"]=10303, + ["local_unique_jewel_melee_skills_area_of_effect_+%_with_passive_tree_connected_to_marauder_start"]=10302, + ["local_unique_jewel_molten_strike_number_of_additional_projectiles_with_50_str_in_radius"]=7955, + ["local_unique_jewel_molten_strike_skill_area_of_effect_+%_with_50_str_in_radius"]=7956, + ["local_unique_jewel_movement_speed_+%_per_10_dex_allocated_in_radius"]=3085, + ["local_unique_jewel_movement_speed_+%_per_10_dex_unallocated_in_radius"]=7957, + ["local_unique_jewel_movement_speed_+%_with_passive_tree_connected_to_ranger_start"]=10302, + ["local_unique_jewel_nearby_disconnected_keystone_passives_can_be_allocated"]=10513, + ["local_unique_jewel_nearby_disconnected_passives_can_be_allocated"]=10514, + ["local_unique_jewel_non_keystone_passive_in_radius_effect_+%"]=7958, + ["local_unique_jewel_notable_passive_in_radius_does_nothing"]=7959, + ["local_unique_jewel_notable_passives_in_radius_instead_grant_mana_cost_+%"]=10558, + ["local_unique_jewel_notable_passives_in_radius_instead_grant_minion_damage_taken_+%"]=10559, + ["local_unique_jewel_notable_passives_in_radius_instead_grant_minion_movement_speed_+%"]=10560, + ["local_unique_jewel_notable_passives_in_radius_instead_grant_spell_damage_+%"]=10558, + ["local_unique_jewel_one_additional_maximum_lightning_damage_per_X_dex"]=3065, + ["local_unique_jewel_passive_jewel_socket_mod_effect_+%_with_corrupted_magic_jewel_socketed"]=7960, + ["local_unique_jewel_passives_in_radius_applied_to_minions_instead"]=3004, + ["local_unique_jewel_passives_in_radius_give_trap_and_mine_maximum_added_physical_damage"]=10561, + ["local_unique_jewel_passives_in_radius_give_trap_and_mine_minimum_added_physical_damage"]=10561, + ["local_unique_jewel_passives_in_radius_grant_additional_all_attributes"]=7961, + ["local_unique_jewel_passives_in_radius_grant_base_chaos_damage_resistance_%"]=7962, + ["local_unique_jewel_passives_in_radius_grant_base_maximum_life"]=7963, + ["local_unique_jewel_passives_in_radius_grant_base_maximum_mana"]=7964, + ["local_unique_jewel_passives_in_radius_grant_chaos_damage_+%"]=7965, + ["local_unique_jewel_passives_in_radius_grant_cold_damage_+%"]=7966, + ["local_unique_jewel_passives_in_radius_grant_critical_strike_chance_+%"]=7967, + ["local_unique_jewel_passives_in_radius_grant_evasion_rating_+%"]=7968, + ["local_unique_jewel_passives_in_radius_grant_fire_damage_+%"]=7969, + ["local_unique_jewel_passives_in_radius_grant_lightning_damage_+%"]=7970, + ["local_unique_jewel_passives_in_radius_grant_maximum_energy_shield_+%"]=7971, + ["local_unique_jewel_passives_in_radius_grant_physical_damage_+%"]=7972, + ["local_unique_jewel_passives_in_radius_grant_physical_damage_reduction_rating_+%"]=7973, + ["local_unique_jewel_physical_attack_damage_+1%_per_x_dex_in_radius"]=3082, + ["local_unique_jewel_physical_attack_damage_+1%_per_x_strength_in_radius"]=3077, + ["local_unique_jewel_physical_damage_+1%_per_int_in_radius"]=3081, + ["local_unique_jewel_physical_damage_increases_applies_to_cold_damage"]=3058, + ["local_unique_jewel_projectile_damage_+1%_per_x_dex_in_radius"]=3086, + ["local_unique_jewel_shrapnel_shot_radius_+%_with_50_dex_in_radius"]=3283, + ["local_unique_jewel_skill_effect_duration_+%_with_passive_tree_connected_to_witch_start"]=10303, + ["local_unique_jewel_skills_in_radius_grant_%_unarmed_melee_attack_speed"]=7975, + ["local_unique_jewel_spark_number_of_additional_chains_with_50_int_in_radius"]=3284, + ["local_unique_jewel_spark_number_of_additional_projectiles_with_40_int_in_radius"]=7976, + ["local_unique_jewel_spark_number_of_additional_projectiles_with_50_int_in_radius"]=3285, + ["local_unique_jewel_spark_projectiles_nova_with_40_int_in_radius"]=7977, + ["local_unique_jewel_spectral_shield_throw_additional_chains_with_total_40_str_+_dex_in_radius"]=7978, + ["local_unique_jewel_spectral_shield_throw_less_shard_projectiles_with_total_40_str_+_dex_in_radius"]=7979, + ["local_unique_jewel_spectral_throw_damage_for_each_enemy_hit_with_spectral_weapon_+%_with_50_dexterity_in_radius"]=3158, + ["local_unique_jewel_spectral_throw_gain_vaal_soul_for_vaal_st_on_hit_%_with_40_dex_in_radius"]=7980, + ["local_unique_jewel_spectres_gain_soul_eater_on_kill_%_chance_with_50_int_in_radius"]=7981, + ["local_unique_jewel_spell_and_attack_block_%_with_passive_tree_connected_to_templar_start"]=10303, + ["local_unique_jewel_split_arrow_fires_additional_arrow_with_x_dex_in_radius"]=3089, + ["local_unique_jewel_split_arrow_projectiles_fire_in_parallel_x_dist_with_40_dex_in_radius"]=7982, + ["local_unique_jewel_tattoos_in_radius_effect_+%"]=7983, + ["local_unique_jewel_totem_life_+X%_per_10_str_in_radius"]=2987, + ["local_unique_jewel_unarmed_damage_+%_per_X_dex_in_radius"]=3071, + ["local_unique_jewel_vigilant_strike_fortifies_nearby_allies_for_x_seconds_with_50_str_in_radius"]=3180, + ["local_unique_jewel_viper_strike_attack_damage_per_poison_on_enemy_+%_with_50_dexterity_in_radius"]=3160, + ["local_unique_jewel_viper_strike_chance_to_gain_unholy_might_%_on_hit_per_poison_stack_on_enemy_with_50_dex_in_radius"]=7984, + ["local_unique_jewel_warcry_damage_taken_goes_to_mana_%_with_40_int_in_radius"]=3193, + ["local_unique_jewel_with_4_notables_gain_X_random_rare_monster_mods_on_kill"]=2988, + ["local_unique_jewel_with_50_int_in_radius_summon_X_melee_skeletons_as_mage_skeletons"]=3178, + ["local_unique_jewel_with_70_dex_physical_damage_to_add_as_chaos_%"]=3024, + ["local_unique_jewel_with_70_str_life_recovery_speed_+%"]=3025, + ["local_unique_jewel_with_no_notables_gain_X_random_rare_monster_mods_on_kill"]=2989, + ["local_unique_jewel_with_x_int_in_radius_+1_curse"]=3010, + ["local_unique_jewel_with_x_small_nodes_gain_1_random_rare_monster_mods_on_kill"]=2990, + ["local_unique_jewel_zombie_slam_cooldown_speed_+%_with_50_int_in_radius"]=7985, + ["local_unique_jewel_zombie_slam_damage_+%_with_50_int_in_radius"]=7986, + ["local_unique_lions_roar_melee_physical_damage_+%_final_during_flask_effect"]=977, + ["local_unique_overflowing_chalice_flask_cannot_gain_flask_charges_during_flask_effect"]=1003, + ["local_unique_regen_es_from_removed_life_duration_ms"]=3076, + ["local_unique_remove_life_and_regen_es_from_removed_life"]=3076, + ["local_unique_soul_ripper_flask_cannot_gain_flask_charges_during_flask_effect"]=1004, + ["local_unique_vinktars_flask_shock_effect_+%_during_flask_effect"]=995, + ["local_unique_vinktars_flask_shock_proliferation_radius_during_flask_effect"]=996, + ["local_varunastra_weapon_counts_as_all_1h_melee_weapon_types"]=3711, + ["local_ward"]=1463, + ["local_ward_+%"]=1465, + ["local_weapon_crit_chance_is_%"]=7987, + ["local_weapon_crit_chance_is_100"]=3727, + ["local_weapon_enemy_phys_reduction_%_penalty"]=1169, + ["local_weapon_no_physical_damage"]=1168, + ["local_weapon_passive_tree_granted_passive_hash"]=7988, + ["local_weapon_range_+"]=2679, + ["local_weapon_range_+_per_10%_quality"]=7989, + ["local_weapon_trigger_socketed_fire_spell_on_hit_display_cooldown"]=7990, + ["local_weapon_trigger_socketed_spell_on_skill_use_display_cooldown_ms"]=770, + ["local_weapon_uses_both_hands"]=1011, + ["local_withered_on_hit_for_2_seconds_%_chance"]=4342, + ["lose_%_of_es_on_crit"]=7997, + ["lose_%_of_life_and_energy_shield_when_you_use_a_chaos_skill"]=7998, + ["lose_%_of_life_on_crit"]=7999, + ["lose_%_of_mana_when_you_use_an_attack_skill"]=8000, + ["lose_10%_of_maximum_mana_on_skill_use_%_chance"]=3406, + ["lose_X_bark_on_enemy_spell_hit"]=10515, + ["lose_a_frenzy_charge_on_travel_skill_use_%_chance"]=4325, + ["lose_a_power_charge_when_you_gain_elusive_%_chance"]=4327, + ["lose_adrenaline_on_losing_flame_touched"]=7991, + ["lose_all_charges_on_starting_movement"]=7992, + ["lose_all_defiance_and_take_max_life_as_damage_on_reaching_x_defiance"]=4218, + ["lose_all_defiance_on_reaching_x_defiance"]=7993, + ["lose_all_endurance_charges_when_reaching_maximum"]=2686, + ["lose_all_fanatic_charges_on_reaching_maximum_fanatic_charges"]=7994, + ["lose_all_fragile_regrowth_when_hit"]=4333, + ["lose_all_gale_force_when_hit"]=7995, + ["lose_all_power_charges_on_block"]=7996, + ["lose_all_power_charges_on_reaching_maximum_power_charges"]=3535, + ["lose_an_endurance_charge_on_fortify_gain_%_chance"]=4326, + ["lose_endurance_charge_on_kill_%"]=2562, + ["lose_endurance_charges_on_rampage_end"]=3201, + ["lose_frenzy_charge_on_kill_%"]=2564, + ["lose_power_charge_each_second_if_not_detonated_mines_recently"]=8001, + ["lose_power_charge_on_kill_%"]=2566, + ["lose_soul_eater_souls_on_flask_use"]=3360, + ["lose_spirit_charges_on_savage_hit_taken"]=4315, + ["lose_x_mana_when_you_use_skill"]=8002, + ["low_life_threshold_%_override"]=8004, + ["lucky_or_unlucky_effects_are_instead_unexciting"]=8005, + ["mace_accuracy_rating"]=1943, + ["mace_accuracy_rating_+%"]=1377, + ["mace_ailment_damage_+%"]=1263, + ["mace_attack_speed_+%"]=1359, + ["mace_critical_strike_chance_+%"]=1404, + ["mace_critical_strike_multiplier_+"]=1429, + ["mace_damage_+%"]=1260, + ["mace_elemental_damage_+%"]=2056, + ["mace_hit_and_ailment_damage_+%"]=1261, + ["mace_or_staff_ailment_damage_+%"]=1290, + ["mace_or_staff_hit_and_ailment_damage_+%"]=1289, + ["magic_items_drop_identified"]=4086, + ["magic_monster_dropped_item_rarity_+%"]=8006, + ["magic_utility_flask_effect_+%"]=2677, + ["magic_utility_flasks_cannot_be_removed"]=4353, + ["magic_utility_flasks_cannot_be_used"]=4351, + ["magma_orb_damage_+%"]=3573, + ["magma_orb_num_of_additional_projectiles_in_chain"]=3883, + ["magma_orb_number_of_additional_projectiles"]=8007, + ["magma_orb_radius_+%"]=3742, + ["magma_orb_skill_area_of_effect_+%_per_bounce"]=8008, + ["maim_bleeding_enemies_on_hit_%"]=3249, + ["maim_effect_+%"]=8009, + ["maim_on_crit_%_with_attacks"]=8010, + ["maim_on_hit_%"]=8011, + ["maim_on_hit_%_vs_poisoned_enemies"]=3227, + ["main_hand_attack_damage_+%_while_wielding_two_weapon_types"]=8012, + ["main_hand_attack_speed_+%_final"]=8013, ["main_hand_base_weapon_attack_duration_ms"]=14, - ["main_hand_claw_life_gain_on_hit"]=7755, - ["main_hand_critical_strike_chance_+%_per_melee_abyss_jewel_up_to_+200%"]=7756, - ["main_hand_damage_+%_while_dual_wielding"]=7757, + ["main_hand_claw_life_gain_on_hit"]=8014, + ["main_hand_critical_strike_chance_+%_per_melee_abyss_jewel_up_to_+200%"]=8015, + ["main_hand_damage_+%_while_dual_wielding"]=8016, ["main_hand_maximum_attack_distance"]=18, ["main_hand_minimum_attack_distance"]=16, ["main_hand_quality"]=11, + ["main_hand_trigger_socketed_spell_on_freezing_hit"]=767, ["main_hand_weapon_type"]=3, - ["malediction_on_hit"]=7758, - ["malevolence_mana_reservation_efficiency_+%"]=7760, - ["malevolence_mana_reservation_efficiency_-2%_per_1"]=7759, - ["mamba_strike_area_of_effect_+%"]=7761, - ["mamba_strike_damage_+%"]=7762, - ["mamba_strike_duration_+%"]=7763, - ["mana_%_gained_on_block"]=7782, - ["mana_%_to_add_as_energy_shield"]=2076, - ["mana_%_to_add_as_energy_shield_at_devotion_threshold"]=7783, - ["mana_and_es_regeneration_per_minute_%_when_you_freeze_shock_or_ignite_an_enemy"]=3280, - ["mana_cost_+%_for_channelling_skills"]=7764, - ["mana_cost_+%_for_trap_and_mine_skills"]=7765, - ["mana_cost_+%_for_trap_skills"]=7766, - ["mana_cost_+%_on_consecrated_ground"]=3441, - ["mana_cost_+%_on_totemified_aura_skills"]=3000, - ["mana_cost_+%_per_10_devotion"]=7767, - ["mana_cost_+%_per_200_mana_spent_recently"]=4230, - ["mana_cost_+%_when_on_low_life"]=1791, - ["mana_cost_+%_while_not_low_mana"]=2976, - ["mana_cost_+%_while_on_full_energy_shield"]=1790, - ["mana_cost_-%_per_endurance_charge"]=3157, - ["mana_degeneration_per_minute"]=7768, - ["mana_degeneration_per_minute_%"]=7769, - ["mana_degeneration_per_minute_not_in_grace"]=1489, - ["mana_flask_effects_are_not_removed_at_full_mana"]=7770, - ["mana_flask_recovery_is_instant_while_on_low_mana"]=7771, - ["mana_flasks_gain_X_charges_every_3_seconds"]=7772, - ["mana_gain_per_target"]=1649, - ["mana_gained_on_attack_hit_if_used_mana_flask_in_past_10_seconds"]=7773, - ["mana_gained_on_attack_hit_vs_cursed_enemies"]=7774, - ["mana_gained_on_block"]=1663, - ["mana_gained_on_cull"]=7775, - ["mana_gained_on_enemy_death_per_level"]=2868, - ["mana_gained_on_hitting_taunted_enemy"]=1689, - ["mana_gained_on_spell_hit"]=7776, - ["mana_gained_on_spell_hit_vs_cursed_enemies"]=7777, - ["mana_gained_when_hit"]=2605, - ["mana_leech_from_any_damage_permyriad"]=1607, - ["mana_leech_from_attack_damage_permyriad_per_power_charge"]=7778, - ["mana_leech_from_attack_damage_permyriad_vs_poisoned_enemies"]=4066, - ["mana_leech_from_lightning_damage_permyriad_while_affected_by_wrath"]=7779, - ["mana_leech_from_physical_attack_damage_permyriad"]=1604, - ["mana_leech_from_physical_damage_permyriad_per_power_charge"]=1625, - ["mana_leech_from_physical_damage_with_bow_permyriad"]=1565, - ["mana_leech_from_physical_damage_with_claw_permyriad"]=1564, - ["mana_leech_permyriad_vs_frozen_enemies"]=7780, - ["mana_leech_speed_+%"]=2059, - ["mana_leech_speed_+%_per_equipped_corrupted_item"]=2992, - ["mana_per_level"]=7781, - ["mana_recharge_rate_per_minute_with_all_corrupted_equipped_items"]=7784, - ["mana_recovery_from_regeneration_is_not_applied"]=7785, - ["mana_recovery_rate_+%"]=1492, - ["mana_recovery_rate_+%_if_havent_killed_recently"]=7787, - ["mana_recovery_rate_+%_while_affected_by_a_mana_flask"]=7786, - ["mana_recovery_rate_+%_while_affected_by_clarity"]=7788, - ["mana_regeneration_+%_for_4_seconds_on_movement_skill_use"]=3965, - ["mana_regeneration_rate_+%"]=1490, - ["mana_regeneration_rate_+%_during_flask_effect"]=3074, - ["mana_regeneration_rate_+%_if_enemy_frozen_recently"]=7803, - ["mana_regeneration_rate_+%_if_enemy_shocked_recently"]=7804, - ["mana_regeneration_rate_+%_if_hit_cursed_enemy_recently"]=7805, - ["mana_regeneration_rate_+%_per_1%_spell_block_chance"]=7789, - ["mana_regeneration_rate_+%_per_power_charge"]=1880, - ["mana_regeneration_rate_+%_per_raised_spectre"]=7806, - ["mana_regeneration_rate_+%_while_moving"]=7807, - ["mana_regeneration_rate_+%_while_phasing"]=2407, - ["mana_regeneration_rate_+%_while_shocked"]=2408, - ["mana_regeneration_rate_+%_while_stationary"]=4201, - ["mana_regeneration_rate_per_minute_%"]=1487, - ["mana_regeneration_rate_per_minute_%_if_consumed_corpse_recently"]=7790, - ["mana_regeneration_rate_per_minute_%_if_enemy_hit_recently"]=7795, - ["mana_regeneration_rate_per_minute_%_if_inflicted_exposure_recently"]=7796, - ["mana_regeneration_rate_per_minute_%_per_active_totem"]=7797, - ["mana_regeneration_rate_per_minute_%_per_power_charge"]=1491, - ["mana_regeneration_rate_per_minute_if_enemy_hit_recently"]=7791, - ["mana_regeneration_rate_per_minute_if_used_movement_skill_recently"]=7792, - ["mana_regeneration_rate_per_minute_per_10_devotion"]=7793, - ["mana_regeneration_rate_per_minute_per_power_charge"]=7794, - ["mana_regeneration_rate_per_minute_while_dual_wielding"]=7798, - ["mana_regeneration_rate_per_minute_while_holding_shield"]=7799, - ["mana_regeneration_rate_per_minute_while_on_consecrated_ground"]=7800, - ["mana_regeneration_rate_per_minute_while_wielding_staff"]=7801, - ["mana_regeneration_rate_per_minute_while_you_have_avians_flight"]=7802, - ["mana_reservation_+%_per_250_total_attributes"]=7813, - ["mana_reservation_+%_with_curse_skills"]=7814, - ["mana_reservation_+%_with_skills_that_throw_mines"]=7808, - ["mana_reservation_efficiency_+%_for_skills_that_throw_mines"]=7809, - ["mana_reservation_efficiency_+%_per_250_total_attributes"]=7812, - ["mana_reservation_efficiency_-2%_per_1"]=2133, - ["mana_reservation_efficiency_-2%_per_1_for_skills_that_throw_mines"]=7810, - ["mana_reservation_efficiency_-2%_per_250_total_attributes"]=7811, - ["manabond_and_stormbind_freeze_as_though_dealt_damage_+%"]=7815, - ["manabond_and_stormbind_skill_lightning_damage_%_to_convert_to_cold"]=7816, - ["manabond_damage_+%"]=7817, - ["manabond_lightning_penetration_%_while_on_low_mana"]=7818, - ["manabond_skill_area_of_effect_+%"]=7819, - ["manifest_dancing_dervish_number_of_additional_copies"]=7820, - ["map_25%_chance_for_rare_monsters_to_be_possessed_up_to_x_times"]=7821, - ["map_X_additional_random_unallocated_notables"]=7822, - ["map_X_bestiary_packs_are_harvest_beasts"]=7823, - ["map_abyss_depths_chance_+%"]=7825, + ["malediction_on_hit"]=8017, + ["malevolence_mana_reservation_efficiency_+%"]=8019, + ["malevolence_mana_reservation_efficiency_-2%_per_1"]=8018, + ["mamba_strike_area_of_effect_+%"]=8020, + ["mamba_strike_damage_+%"]=8021, + ["mamba_strike_duration_+%"]=8022, + ["mana_%_gained_on_block"]=8043, + ["mana_%_to_add_as_energy_shield"]=2108, + ["mana_%_to_add_as_energy_shield_at_devotion_threshold"]=8044, + ["mana_and_es_regeneration_per_minute_%_when_you_freeze_shock_or_ignite_an_enemy"]=3322, + ["mana_cost_+%_for_2_seconds_when_you_spend_800_mana"]=8023, + ["mana_cost_+%_for_channelling_skills"]=8024, + ["mana_cost_+%_for_trap_and_mine_skills"]=8025, + ["mana_cost_+%_for_trap_skills"]=8026, + ["mana_cost_+%_on_consecrated_ground"]=3486, + ["mana_cost_+%_on_totemified_aura_skills"]=3042, + ["mana_cost_+%_per_10_devotion"]=8027, + ["mana_cost_+%_per_200_mana_spent_recently"]=4276, + ["mana_cost_+%_when_on_low_life"]=1821, + ["mana_cost_+%_while_not_low_mana"]=3018, + ["mana_cost_+%_while_on_full_energy_shield"]=1820, + ["mana_cost_-%_per_endurance_charge"]=3199, + ["mana_degeneration_per_minute"]=8028, + ["mana_degeneration_per_minute_%"]=8029, + ["mana_degeneration_per_minute_not_in_grace"]=1518, + ["mana_flask_effects_are_not_removed_at_full_mana"]=8030, + ["mana_flask_recovery_is_instant_while_on_low_mana"]=8031, + ["mana_flasks_gain_X_charges_every_3_seconds"]=8032, + ["mana_gain_per_target"]=1679, + ["mana_gained_on_attack_hit_if_used_mana_flask_in_past_10_seconds"]=8033, + ["mana_gained_on_attack_hit_vs_cursed_enemies"]=8034, + ["mana_gained_on_block"]=1693, + ["mana_gained_on_cull"]=8035, + ["mana_gained_on_enemy_death_per_level"]=2905, + ["mana_gained_on_hitting_taunted_enemy"]=1719, + ["mana_gained_on_spell_hit"]=8036, + ["mana_gained_on_spell_hit_vs_cursed_enemies"]=8037, + ["mana_gained_when_hit"]=2640, + ["mana_increased_per_x_overcapped_lightning_resistance_choir_of_the_storm"]=8038, + ["mana_leech_from_any_damage_permyriad"]=1637, + ["mana_leech_from_attack_damage_permyriad_per_power_charge"]=8039, + ["mana_leech_from_attack_damage_permyriad_vs_poisoned_enemies"]=4112, + ["mana_leech_from_lightning_damage_permyriad_while_affected_by_wrath"]=8040, + ["mana_leech_from_physical_attack_damage_permyriad"]=1634, + ["mana_leech_from_physical_damage_permyriad_per_power_charge"]=1655, + ["mana_leech_from_physical_damage_with_bow_permyriad"]=1595, + ["mana_leech_from_physical_damage_with_claw_permyriad"]=1594, + ["mana_leech_permyriad_vs_frozen_enemies"]=8041, + ["mana_leech_speed_+%"]=2091, + ["mana_leech_speed_+%_per_equipped_corrupted_item"]=3034, + ["mana_per_level"]=8042, + ["mana_recharge_rate_per_minute_with_all_corrupted_equipped_items"]=8045, + ["mana_recovery_from_regeneration_is_not_applied"]=8046, + ["mana_recovery_rate_+%"]=1521, + ["mana_recovery_rate_+%_if_havent_killed_recently"]=8048, + ["mana_recovery_rate_+%_while_affected_by_a_mana_flask"]=8047, + ["mana_recovery_rate_+%_while_affected_by_clarity"]=8049, + ["mana_regeneration_+%_for_4_seconds_on_movement_skill_use"]=4011, + ["mana_regeneration_rate_+%"]=1519, + ["mana_regeneration_rate_+%_during_flask_effect"]=3116, + ["mana_regeneration_rate_+%_if_enemy_frozen_recently"]=8064, + ["mana_regeneration_rate_+%_if_enemy_shocked_recently"]=8065, + ["mana_regeneration_rate_+%_if_hit_cursed_enemy_recently"]=8066, + ["mana_regeneration_rate_+%_per_1%_spell_block_chance"]=8050, + ["mana_regeneration_rate_+%_per_power_charge"]=1912, + ["mana_regeneration_rate_+%_per_raised_spectre"]=8067, + ["mana_regeneration_rate_+%_while_moving"]=8068, + ["mana_regeneration_rate_+%_while_phasing"]=2440, + ["mana_regeneration_rate_+%_while_shocked"]=2441, + ["mana_regeneration_rate_+%_while_stationary"]=4247, + ["mana_regeneration_rate_per_minute_%"]=1516, + ["mana_regeneration_rate_per_minute_%_if_consumed_corpse_recently"]=8051, + ["mana_regeneration_rate_per_minute_%_if_enemy_hit_recently"]=8056, + ["mana_regeneration_rate_per_minute_%_if_inflicted_exposure_recently"]=8057, + ["mana_regeneration_rate_per_minute_%_per_active_totem"]=8058, + ["mana_regeneration_rate_per_minute_%_per_power_charge"]=1520, + ["mana_regeneration_rate_per_minute_if_enemy_hit_recently"]=8052, + ["mana_regeneration_rate_per_minute_if_used_movement_skill_recently"]=8053, + ["mana_regeneration_rate_per_minute_per_10_devotion"]=8054, + ["mana_regeneration_rate_per_minute_per_power_charge"]=8055, + ["mana_regeneration_rate_per_minute_while_dual_wielding"]=8059, + ["mana_regeneration_rate_per_minute_while_holding_shield"]=8060, + ["mana_regeneration_rate_per_minute_while_on_consecrated_ground"]=8061, + ["mana_regeneration_rate_per_minute_while_wielding_staff"]=8062, + ["mana_regeneration_rate_per_minute_while_you_have_avians_flight"]=8063, + ["mana_reservation_+%_per_250_total_attributes"]=8074, + ["mana_reservation_+%_with_curse_skills"]=8075, + ["mana_reservation_+%_with_skills_that_throw_mines"]=8069, + ["mana_reservation_efficiency_+%_for_skills_that_throw_mines"]=8070, + ["mana_reservation_efficiency_+%_per_250_total_attributes"]=8073, + ["mana_reservation_efficiency_-2%_per_1"]=2165, + ["mana_reservation_efficiency_-2%_per_1_for_skills_that_throw_mines"]=8071, + ["mana_reservation_efficiency_-2%_per_250_total_attributes"]=8072, + ["manabond_and_stormbind_freeze_as_though_dealt_damage_+%"]=8076, + ["manabond_and_stormbind_skill_lightning_damage_%_to_convert_to_cold"]=8077, + ["manabond_damage_+%"]=8078, + ["manabond_lightning_penetration_%_while_on_low_mana"]=8079, + ["manabond_skill_area_of_effect_+%"]=8080, + ["manifest_dancing_dervish_number_of_additional_copies"]=8081, + ["map_25%_chance_for_rare_monsters_to_be_possessed_up_to_x_times"]=8082, + ["map_X_additional_random_unallocated_notables"]=8083, + ["map_X_bestiary_packs_are_harvest_beasts"]=8084, + ["map_abyss_depths_chance_+%"]=8086, ["map_abyss_jewels_%_chance_to_drop_corrupted_with_more_mods"]=112, ["map_abyss_monster_spawn_amount_+%"]=110, - ["map_abyss_monsters_enhanced_per_chasm_closed"]=7826, - ["map_abyss_scarab_more_likely_%"]=10200, - ["map_actor_scale_+%"]=7827, - ["map_additional_number_of_packs_to_choose"]=2196, - ["map_additional_player_maximum_resistances_%"]=2263, - ["map_additional_rare_in_rare_pack_%_chance"]=7828, - ["map_additional_rare_in_synthesised_rare_pack_%_chance"]=7829, - ["map_additional_red_beasts"]=7830, - ["map_adds_X_extra_synthesis_mods"]=7831, - ["map_adds_X_extra_synthesis_special_mods"]=7832, - ["map_affliction_pack_size_+%"]=7833, - ["map_affliction_reward_kills_+%"]=7834, - ["map_all_magic_monsters_in_union_of_souls"]=7835, - ["map_allow_shrines"]=2522, - ["map_always_has_weather"]=2521, - ["map_ambush_chests"]=2512, - ["map_anarchy_scarab_more_likely_%"]=10201, - ["map_architects_drops_additional_map_currency"]=7846, - ["map_area_contains_arcanists_strongbox"]=7848, - ["map_area_contains_avatar_of_ambush"]=7849, - ["map_area_contains_avatar_of_anarchy"]=7850, - ["map_area_contains_avatar_of_beyond"]=7851, - ["map_area_contains_avatar_of_bloodlines"]=7852, - ["map_area_contains_avatar_of_breach"]=7853, - ["map_area_contains_avatar_of_domination"]=7854, - ["map_area_contains_avatar_of_essence"]=7855, - ["map_area_contains_avatar_of_invasion"]=7856, - ["map_area_contains_avatar_of_nemesis"]=7857, - ["map_area_contains_avatar_of_onslaught"]=7858, - ["map_area_contains_avatar_of_perandus"]=7859, - ["map_area_contains_avatar_of_prophecy"]=7860, - ["map_area_contains_avatar_of_rampage"]=7861, - ["map_area_contains_avatar_of_talisman"]=7862, - ["map_area_contains_avatar_of_tempest"]=7863, - ["map_area_contains_avatar_of_torment"]=7864, - ["map_area_contains_avatar_of_warbands"]=7865, - ["map_area_contains_cartographers_strongbox"]=7866, - ["map_area_contains_currency_chest"]=7867, - ["map_area_contains_gemcutters_strongbox"]=7868, - ["map_area_contains_grandmaster_ally"]=7869, - ["map_area_contains_jewellery_chest"]=7870, - ["map_area_contains_map_chest"]=7871, - ["map_area_contains_metamorphs"]=7872, - ["map_area_contains_perandus_coin_chest"]=7873, - ["map_area_contains_rituals"]=458, - ["map_area_contains_tormented_embezzler"]=7874, - ["map_area_contains_tormented_seditionist"]=7875, - ["map_area_contains_tormented_vaal_cultist"]=7876, - ["map_area_contains_ultimatum"]=434, - ["map_area_contains_unique_item_chest"]=7877, - ["map_area_contains_unique_strongbox"]=7878, - ["map_area_contains_x_additional_clusters_of_beacon_barrels"]=7879, - ["map_area_contains_x_additional_clusters_of_bloodworm_barrels"]=7880, - ["map_area_contains_x_additional_clusters_of_explosive_barrels"]=7881, - ["map_area_contains_x_additional_clusters_of_explosive_eggs"]=7882, - ["map_area_contains_x_additional_clusters_of_parasite_barrels"]=7883, - ["map_area_contains_x_additional_clusters_of_volatile_barrels"]=7884, - ["map_area_contains_x_additional_clusters_of_wealthy_barrels"]=7885, - ["map_area_contains_x_rare_monsters_with_inner_treasure"]=7999, - ["map_area_ritual_additional_chance_%"]=7886, - ["map_atlas_influence_type"]=7847, - ["map_base_ground_desecration_damage_to_deal_per_minute"]=2212, - ["map_base_ground_fire_damage_to_deal_per_10_seconds"]=2206, - ["map_base_ground_fire_damage_to_deal_per_minute"]=2205, - ["map_bestiary_league"]=7830, - ["map_bestiary_monster_damage_+%_final"]=7887, - ["map_bestiary_monster_life_+%_final"]=7888, - ["map_bestiary_scarab_more_likely_%"]=10202, - ["map_betrayal_intelligence_+%"]=7889, - ["map_betrayal_scarab_more_likely_%"]=10203, - ["map_beyond_basic_currency_quantity_+%_final_from_pale_faction"]=7896, - ["map_beyond_demon_desecrate_on_spawn_damage_per_second"]=2524, - ["map_beyond_demon_faction_chance_+%"]=7890, - ["map_beyond_divination_card_quantity_+%_final_from_demon_faction"]=7897, - ["map_beyond_flesh_faction_chance_+%"]=7891, - ["map_beyond_pale_faction_chance_+%"]=7892, - ["map_beyond_portal_chance_+%"]=7893, - ["map_beyond_portal_spawn_additional_demon_%_chance"]=7894, - ["map_beyond_rules"]=2525, - ["map_beyond_scarab_more_likely_%"]=10204, - ["map_beyond_unique_item_quantity_+%_final_from_flesh_faction"]=7895, - ["map_blight_chest_%_chance_for_additional_drop"]=7898, - ["map_blight_chests_repeat_drops_count"]=7899, - ["map_blight_empowering_towers_and_upgrades_enhance_enemies"]=7900, - ["map_blight_encounter_oil_reward_chance_+%"]=7901, - ["map_blight_encounter_spawn_rate_+%"]=7902, - ["map_blight_lane_additional_chest_chance_%"]=7903, - ["map_blight_lane_additional_chests"]=7904, - ["map_blight_oils_chance_to_drop_a_tier_higher_%"]=7905, - ["map_blight_scarab_more_likely_%"]=10205, - ["map_blight_tower_cost_+%"]=7906, - ["map_blight_tower_cost_doubled"]=7907, - ["map_blight_up_to_X_additional_bosses"]=7908, - ["map_blighted_map_encounter_duration_-_sec"]=7909, - ["map_bloodline_packs_drop_x_additional_currency_items"]=7910, - ["map_bloodline_packs_drop_x_additional_rare_items"]=7911, - ["map_blueprint_drop_revealed_chance_%"]=7912, - ["map_boss_accompanied_by_bodyguards"]=7913, - ["map_boss_accompanied_by_harbinger"]=7914, - ["map_boss_additional_currency_to_drop"]=7915, - ["map_boss_additional_scarabs_to_drop"]=7916, - ["map_boss_additional_uniques_to_drop"]=7917, - ["map_boss_area_of_effect_+%"]=2331, - ["map_boss_attack_and_cast_speed_+%"]=2329, - ["map_boss_chance_to_be_surrounded_by_spirits_%"]=7918, - ["map_boss_damage_+%"]=2323, - ["map_boss_damage_+%_final_from_boss_drops_guardian_map_sextant"]=2324, - ["map_boss_dropped_item_quantity_+%"]=7919, - ["map_boss_dropped_unique_items_+"]=7920, - ["map_boss_drops_X_fractured_incursion_items"]=7921, - ["map_boss_drops_additional_currency_shards"]=7922, - ["map_boss_drops_corrupted_items"]=7923, - ["map_boss_drops_x_additional_vaal_items"]=7929, - ["map_boss_is_possessed"]=7924, - ["map_boss_item_rarity_+%"]=7925, - ["map_boss_life_+%_final_from_boss_drops_guardian_map_sextant"]=2325, - ["map_boss_maximum_life_+%"]=2330, - ["map_boss_replaced_with_atziri"]=7926, - ["map_boss_rose_petal_quantity_+%"]=7927, - ["map_boss_surrounded_by_tormented_spirits"]=7928, - ["map_breach_chance_to_be_esh_+%"]=7930, - ["map_breach_chance_to_be_tul_+%"]=7931, - ["map_breach_chance_to_be_uul_netol_+%"]=7932, - ["map_breach_chance_to_be_xoph_+%"]=7933, + ["map_abyss_monsters_enhanced_per_chasm_closed"]=8087, + ["map_abyss_scarab_more_likely_%"]=10526, + ["map_actor_scale_+%"]=8088, + ["map_additional_number_of_packs_to_choose"]=2228, + ["map_additional_player_maximum_resistances_%"]=2295, + ["map_additional_rare_in_rare_pack_%_chance"]=8089, + ["map_additional_rare_in_synthesised_rare_pack_%_chance"]=8090, + ["map_additional_red_beasts"]=8091, + ["map_adds_X_extra_synthesis_mods"]=8092, + ["map_adds_X_extra_synthesis_special_mods"]=8093, + ["map_affliction_pack_size_+%"]=8094, + ["map_affliction_reward_kills_+%"]=8095, + ["map_all_magic_monsters_in_union_of_souls"]=8096, + ["map_allow_shrines"]=2555, + ["map_always_has_weather"]=2554, + ["map_ambush_chests"]=2545, + ["map_anarchy_scarab_more_likely_%"]=10527, + ["map_architects_drops_additional_map_currency"]=8107, + ["map_area_contains_arcanists_strongbox"]=8109, + ["map_area_contains_avatar_of_ambush"]=8110, + ["map_area_contains_avatar_of_anarchy"]=8111, + ["map_area_contains_avatar_of_beyond"]=8112, + ["map_area_contains_avatar_of_bloodlines"]=8113, + ["map_area_contains_avatar_of_breach"]=8114, + ["map_area_contains_avatar_of_domination"]=8115, + ["map_area_contains_avatar_of_essence"]=8116, + ["map_area_contains_avatar_of_invasion"]=8117, + ["map_area_contains_avatar_of_nemesis"]=8118, + ["map_area_contains_avatar_of_onslaught"]=8119, + ["map_area_contains_avatar_of_perandus"]=8120, + ["map_area_contains_avatar_of_prophecy"]=8121, + ["map_area_contains_avatar_of_rampage"]=8122, + ["map_area_contains_avatar_of_talisman"]=8123, + ["map_area_contains_avatar_of_tempest"]=8124, + ["map_area_contains_avatar_of_torment"]=8125, + ["map_area_contains_avatar_of_warbands"]=8126, + ["map_area_contains_cartographers_strongbox"]=8127, + ["map_area_contains_currency_chest"]=8128, + ["map_area_contains_gemcutters_strongbox"]=8129, + ["map_area_contains_grandmaster_ally"]=8130, + ["map_area_contains_jewellery_chest"]=8131, + ["map_area_contains_map_chest"]=8132, + ["map_area_contains_metamorphs"]=8133, + ["map_area_contains_perandus_coin_chest"]=8134, + ["map_area_contains_rituals"]=466, + ["map_area_contains_tormented_embezzler"]=8135, + ["map_area_contains_tormented_seditionist"]=8136, + ["map_area_contains_tormented_vaal_cultist"]=8137, + ["map_area_contains_ultimatum"]=441, + ["map_area_contains_unique_item_chest"]=8138, + ["map_area_contains_unique_strongbox"]=8139, + ["map_area_contains_x_additional_clusters_of_beacon_barrels"]=8140, + ["map_area_contains_x_additional_clusters_of_bloodworm_barrels"]=8141, + ["map_area_contains_x_additional_clusters_of_explosive_barrels"]=8142, + ["map_area_contains_x_additional_clusters_of_explosive_eggs"]=8143, + ["map_area_contains_x_additional_clusters_of_parasite_barrels"]=8144, + ["map_area_contains_x_additional_clusters_of_volatile_barrels"]=8145, + ["map_area_contains_x_additional_clusters_of_wealthy_barrels"]=8146, + ["map_area_contains_x_rare_monsters_with_inner_treasure"]=8261, + ["map_area_ritual_additional_chance_%"]=8147, + ["map_atlas_influence_type"]=8108, + ["map_base_ground_desecration_damage_to_deal_per_minute"]=2244, + ["map_base_ground_fire_damage_to_deal_per_10_seconds"]=2238, + ["map_base_ground_fire_damage_to_deal_per_minute"]=2237, + ["map_bestiary_league"]=8091, + ["map_bestiary_monster_damage_+%_final"]=8148, + ["map_bestiary_monster_life_+%_final"]=8149, + ["map_bestiary_scarab_more_likely_%"]=10528, + ["map_betrayal_intelligence_+%"]=8150, + ["map_betrayal_scarab_more_likely_%"]=10529, + ["map_beyond_basic_currency_quantity_+%_final_from_pale_faction"]=8157, + ["map_beyond_demon_desecrate_on_spawn_damage_per_second"]=2557, + ["map_beyond_demon_faction_chance_+%"]=8151, + ["map_beyond_divination_card_quantity_+%_final_from_demon_faction"]=8158, + ["map_beyond_flesh_faction_chance_+%"]=8152, + ["map_beyond_pale_faction_chance_+%"]=8153, + ["map_beyond_portal_chance_+%"]=8154, + ["map_beyond_portal_spawn_additional_demon_%_chance"]=8155, + ["map_beyond_rules"]=2558, + ["map_beyond_scarab_more_likely_%"]=10530, + ["map_beyond_unique_item_quantity_+%_final_from_flesh_faction"]=8156, + ["map_blight_chest_%_chance_for_additional_drop"]=8159, + ["map_blight_chests_repeat_drops_count"]=8160, + ["map_blight_empowering_towers_and_upgrades_enhance_enemies"]=8161, + ["map_blight_encounter_oil_reward_chance_+%"]=8162, + ["map_blight_encounter_spawn_rate_+%"]=8163, + ["map_blight_lane_additional_chest_chance_%"]=8164, + ["map_blight_lane_additional_chests"]=8165, + ["map_blight_oils_chance_to_drop_a_tier_higher_%"]=8166, + ["map_blight_scarab_more_likely_%"]=10531, + ["map_blight_tower_cost_+%"]=8167, + ["map_blight_tower_cost_doubled"]=8168, + ["map_blight_up_to_X_additional_bosses"]=8169, + ["map_blighted_map_encounter_duration_-_sec"]=8170, + ["map_bloodline_packs_drop_x_additional_currency_items"]=8171, + ["map_bloodline_packs_drop_x_additional_rare_items"]=8172, + ["map_blueprint_drop_revealed_chance_%"]=8173, + ["map_boss_accompanied_by_bodyguards"]=8174, + ["map_boss_accompanied_by_harbinger"]=8175, + ["map_boss_additional_currency_to_drop"]=8176, + ["map_boss_additional_scarabs_to_drop"]=8177, + ["map_boss_additional_uniques_to_drop"]=8178, + ["map_boss_area_of_effect_+%"]=2363, + ["map_boss_attack_and_cast_speed_+%"]=2361, + ["map_boss_chance_to_be_surrounded_by_spirits_%"]=8179, + ["map_boss_damage_+%"]=2355, + ["map_boss_damage_+%_final_from_boss_drops_guardian_map_sextant"]=2356, + ["map_boss_dropped_item_quantity_+%"]=8180, + ["map_boss_dropped_unique_items_+"]=8181, + ["map_boss_drops_X_fractured_incursion_items"]=8182, + ["map_boss_drops_additional_currency_shards"]=8183, + ["map_boss_drops_corrupted_items"]=8184, + ["map_boss_drops_x_additional_vaal_items"]=8190, + ["map_boss_is_possessed"]=8185, + ["map_boss_item_rarity_+%"]=8186, + ["map_boss_life_+%_final_from_boss_drops_guardian_map_sextant"]=2357, + ["map_boss_maximum_life_+%"]=2362, + ["map_boss_replaced_with_atziri"]=8187, + ["map_boss_rose_petal_quantity_+%"]=8188, + ["map_boss_surrounded_by_tormented_spirits"]=8189, + ["map_breach_chance_to_be_esh_+%"]=8191, + ["map_breach_chance_to_be_tul_+%"]=8192, + ["map_breach_chance_to_be_uul_netol_+%"]=8193, + ["map_breach_chance_to_be_xoph_+%"]=8194, ["map_breach_hands_are_small"]=99, - ["map_breach_has_boss"]=2515, - ["map_breach_has_large_chest"]=7934, + ["map_breach_has_boss"]=2548, + ["map_breach_has_large_chest"]=8195, ["map_breach_monster_count_and_speed_+%_per_breach_opened"]=113, - ["map_breach_monster_quantity_+%"]=7935, + ["map_breach_monster_quantity_+%"]=8196, ["map_breach_monsters_damage_+%"]=156, ["map_breach_monsters_life_+%"]=145, - ["map_breach_rules"]=2513, - ["map_breach_scarab_more_likely_%"]=10206, + ["map_breach_rules"]=2546, + ["map_breach_scarab_more_likely_%"]=10532, ["map_breach_size_+%"]=124, ["map_breach_splinters_drop_as_stones_permyriad"]=125, ["map_breach_time_passed_+%"]=114, - ["map_breach_type_override"]=7936, - ["map_breaches_num_additional_chests_to_spawn"]=7937, - ["map_can_only_damage_enemies_in_X_radius"]=7938, - ["map_cannot_evade"]=7939, - ["map_chance_for_area_%_to_contain_harvest"]=7940, + ["map_breach_type_override"]=8197, + ["map_breaches_num_additional_chests_to_spawn"]=8198, + ["map_can_only_damage_enemies_in_X_radius"]=8199, + ["map_cannot_evade"]=8200, + ["map_chance_for_area_%_to_contain_harvest"]=8201, ["map_chance_for_breach_bosses_to_drop_breachstone_%"]=126, - ["map_chance_to_not_consume_sextant_use_%"]=7941, - ["map_chest_item_quantity_+%"]=2332, - ["map_chest_item_rarity_+%"]=2333, - ["map_contains_X_additional_tricksters"]=7992, - ["map_contains_X_additional_uber_harbingers"]=7993, - ["map_contains_X_additional_untainted_packs"]=7994, - ["map_contains_X_additional_village_ores"]=7942, - ["map_contains_X_harvest_bear_bosses"]=7996, - ["map_contains_X_harvest_bird_bosses"]=7997, - ["map_contains_X_harvest_cat_bosses"]=7998, - ["map_contains_X_rogue_giants"]=7943, - ["map_contains_X_sirus_storms"]=8000, - ["map_contains_abyss_depths"]=7944, - ["map_contains_additional_atlas_bosses"]=7945, - ["map_contains_additional_breaches"]=2516, - ["map_contains_additional_chrysalis_talisman"]=7946, - ["map_contains_additional_clutching_talisman"]=7947, - ["map_contains_additional_fangjaw_talisman"]=7948, - ["map_contains_additional_mandible_talisman"]=7949, - ["map_contains_additional_packs_of_chaos_monsters"]=7950, - ["map_contains_additional_packs_of_cold_monsters"]=7951, - ["map_contains_additional_packs_of_fire_monsters"]=7952, - ["map_contains_additional_packs_of_lightning_monsters"]=7953, - ["map_contains_additional_packs_of_physical_monsters"]=7954, - ["map_contains_additional_packs_of_vaal_monsters"]=7955, - ["map_contains_additional_reviving_packs"]=8154, - ["map_contains_additional_three_rat_talisman"]=7957, - ["map_contains_additional_tormented_betrayers"]=7958, - ["map_contains_additional_tormented_graverobbers"]=7959, - ["map_contains_additional_tormented_heretics"]=7960, - ["map_contains_additional_unique_talisman"]=7961, - ["map_contains_additional_writhing_talisman"]=7962, - ["map_contains_chayula_breach"]=7963, - ["map_contains_citadel"]=7964, - ["map_contains_corrupted_strongbox"]=7965, - ["map_contains_creeping_agony"]=7966, - ["map_contains_evil_einhar"]=7967, - ["map_contains_frogs"]=7968, - ["map_contains_keepers_of_the_trove_bloodline_pack"]=7969, - ["map_contains_master"]=7970, - ["map_contains_nevalis_monkey"]=7971, - ["map_contains_perandus_boss"]=7972, - ["map_contains_talisman_boss_with_higher_tier"]=7973, - ["map_contains_the_elderslayers"]=7974, - ["map_contains_the_feared"]=7975, - ["map_contains_the_forgotten"]=7976, - ["map_contains_the_formed"]=7977, - ["map_contains_the_hidden"]=7978, - ["map_contains_the_twisted"]=7979, - ["map_contains_three_magic_packs_with_attack_cast_and_movement_speed_+%"]=7980, - ["map_contains_three_magic_packs_with_item_quantity_of_dropped_items_+%_final"]=7980, - ["map_contains_uul_netol_breach"]=7981, - ["map_contains_wealthy_pack"]=7982, - ["map_contains_x_additional_animated_weapon_packs"]=7983, - ["map_contains_x_additional_healing_packs"]=7984, - ["map_contains_x_additional_magic_packs"]=7985, - ["map_contains_x_additional_normal_packs"]=7986, - ["map_contains_x_additional_packs_on_their_own_team"]=7987, - ["map_contains_x_additional_packs_that_convert_on_death"]=7988, - ["map_contains_x_additional_packs_with_mirrored_rare_monsters"]=7989, - ["map_contains_x_additional_poison_packs"]=7990, - ["map_contains_x_additional_rare_packs"]=7991, - ["map_contains_x_additional_sulphite_golem_packs"]=7956, - ["map_contains_x_fewer_portals"]=7995, - ["map_contracts_drop_with_additional_special_implicit_%_chance"]=8001, - ["map_corpse_cannot_be_destroyed"]=8240, - ["map_cowards_trial_extra_ghosts"]=8002, - ["map_cowards_trial_extra_oriath_citizens"]=8003, - ["map_cowards_trial_extra_phantasms"]=8004, - ["map_cowards_trial_extra_raging_spirits"]=8005, - ["map_cowards_trial_extra_rhoas"]=8006, - ["map_cowards_trial_extra_skeleton_cannons"]=8007, - ["map_cowards_trial_extra_zombies"]=8008, + ["map_chance_to_not_consume_sextant_use_%"]=8202, + ["map_chest_item_quantity_+%"]=2364, + ["map_chest_item_rarity_+%"]=2365, + ["map_contains_X_additional_tricksters"]=8254, + ["map_contains_X_additional_uber_harbingers"]=8255, + ["map_contains_X_additional_untainted_packs"]=8256, + ["map_contains_X_additional_village_ores"]=8203, + ["map_contains_X_harvest_bear_bosses"]=8258, + ["map_contains_X_harvest_bird_bosses"]=8259, + ["map_contains_X_harvest_cat_bosses"]=8260, + ["map_contains_X_rogue_giants"]=8204, + ["map_contains_X_sirus_storms"]=8262, + ["map_contains_abyss_depths"]=8205, + ["map_contains_additional_atlas_bosses"]=8206, + ["map_contains_additional_breaches"]=2549, + ["map_contains_additional_chrysalis_talisman"]=8207, + ["map_contains_additional_clutching_talisman"]=8208, + ["map_contains_additional_fangjaw_talisman"]=8209, + ["map_contains_additional_mandible_talisman"]=8210, + ["map_contains_additional_packs_of_chaos_monsters"]=8211, + ["map_contains_additional_packs_of_cold_monsters"]=8212, + ["map_contains_additional_packs_of_fire_monsters"]=8213, + ["map_contains_additional_packs_of_lightning_monsters"]=8214, + ["map_contains_additional_packs_of_physical_monsters"]=8215, + ["map_contains_additional_packs_of_vaal_monsters"]=8216, + ["map_contains_additional_reviving_packs"]=8416, + ["map_contains_additional_three_rat_talisman"]=8218, + ["map_contains_additional_tormented_betrayers"]=8219, + ["map_contains_additional_tormented_graverobbers"]=8220, + ["map_contains_additional_tormented_heretics"]=8221, + ["map_contains_additional_unique_talisman"]=8222, + ["map_contains_additional_writhing_talisman"]=8223, + ["map_contains_chayula_breach"]=8224, + ["map_contains_citadel"]=8225, + ["map_contains_corrupted_strongbox"]=8226, + ["map_contains_creeping_agony"]=8227, + ["map_contains_evil_einhar"]=8228, + ["map_contains_frogs"]=8229, + ["map_contains_keepers_of_the_trove_bloodline_pack"]=8230, + ["map_contains_master"]=8231, + ["map_contains_nevalis_monkey"]=8232, + ["map_contains_perandus_boss"]=8233, + ["map_contains_talisman_boss_with_higher_tier"]=8234, + ["map_contains_the_elderslayers"]=8235, + ["map_contains_the_feared"]=8236, + ["map_contains_the_forgotten"]=8237, + ["map_contains_the_formed"]=8238, + ["map_contains_the_hidden"]=8239, + ["map_contains_the_remembered"]=8240, + ["map_contains_the_twisted"]=8241, + ["map_contains_three_magic_packs_with_attack_cast_and_movement_speed_+%"]=8242, + ["map_contains_three_magic_packs_with_item_quantity_of_dropped_items_+%_final"]=8242, + ["map_contains_uul_netol_breach"]=8243, + ["map_contains_wealthy_pack"]=8244, + ["map_contains_x_additional_animated_weapon_packs"]=8245, + ["map_contains_x_additional_healing_packs"]=8246, + ["map_contains_x_additional_magic_packs"]=8247, + ["map_contains_x_additional_normal_packs"]=8248, + ["map_contains_x_additional_packs_on_their_own_team"]=8249, + ["map_contains_x_additional_packs_that_convert_on_death"]=8250, + ["map_contains_x_additional_packs_with_mirrored_rare_monsters"]=8251, + ["map_contains_x_additional_poison_packs"]=8252, + ["map_contains_x_additional_rare_packs"]=8253, + ["map_contains_x_additional_sulphite_golem_packs"]=8217, + ["map_contains_x_fewer_portals"]=8257, + ["map_contracts_drop_with_additional_special_implicit_%_chance"]=8263, + ["map_corpse_cannot_be_destroyed"]=8502, + ["map_cowards_trial_extra_ghosts"]=8264, + ["map_cowards_trial_extra_oriath_citizens"]=8265, + ["map_cowards_trial_extra_phantasms"]=8266, + ["map_cowards_trial_extra_raging_spirits"]=8267, + ["map_cowards_trial_extra_rhoas"]=8268, + ["map_cowards_trial_extra_skeleton_cannons"]=8269, + ["map_cowards_trial_extra_zombies"]=8270, ["map_crucible_combining_+_chance_%_for_upgraded_tiers"]=127, ["map_crucible_combining_additional_sell_node"]=128, ["map_crucible_combining_item_has_30_quality"]=129, @@ -241650,1203 +249373,1212 @@ return { ["map_crucible_unique_monster_drop_unique_ranged_weapon_%_chance"]=147, ["map_crucible_unique_monster_drop_unique_shield_%_chance"]=148, ["map_crucible_unique_monster_drop_unique_with_weapon_tree_%_chance"]=140, - ["map_crucible_unique_monsters_+%"]=8009, - ["map_custom_league_damage_taken_+%_final"]=8010, - ["map_damage_+%_of_type_inflicted_by_current_ground_effect_you_are_on"]=8012, - ["map_damage_+%_per_poison_stack"]=8011, - ["map_damage_removed_from_player_life_before_totem_life_%"]=8013, - ["map_damage_taken_+%_from_beyond_monsters"]=8014, - ["map_damage_taken_+%_per_nearby_ally"]=8015, - ["map_damage_taken_while_stationary_+%"]=8016, - ["map_damage_while_stationary_+%"]=8017, - ["map_death_and_taxes_boss_drops_additional_currency"]=8018, - ["map_debuff_time_passed_+%"]=8019, - ["map_delirium_scarab_more_likely_%"]=10207, - ["map_delve_rules"]=8020, - ["map_delve_scarab_more_likely_%"]=10208, - ["map_disable_ultimatum_from_chance"]=433, - ["map_display_area_contains_unbridged_gaps_to_cross"]=2194, - ["map_display_insanity"]=8402, - ["map_display_strongbox_monsters_are_enraged"]=8022, - ["map_display_unique_boss_drops_X_maps"]=2233, - ["map_divination_card_drop_chance_+%"]=8023, - ["map_divination_scarab_more_likely_%"]=10209, - ["map_doesnt_consume_sextant_use"]=8024, - ["map_domination_scarab_more_likely_%"]=10210, - ["map_dropped_equipment_are_converted_to_currency_based_on_rarity"]=8025, - ["map_dropped_items_are_fractured_chance_%"]=8026, - ["map_dropped_maps_are_corrupted_with_8_mods"]=8027, - ["map_dropped_maps_are_duplicated_chance_permillage"]=8028, - ["map_duplicate_captured_beasts_chance_%"]=8029, + ["map_crucible_unique_monsters_+%"]=8271, + ["map_custom_league_damage_taken_+%_final"]=8272, + ["map_damage_+%_of_type_inflicted_by_current_ground_effect_you_are_on"]=8274, + ["map_damage_+%_per_poison_stack"]=8273, + ["map_damage_removed_from_player_life_before_totem_life_%"]=8275, + ["map_damage_taken_+%_from_beyond_monsters"]=8276, + ["map_damage_taken_+%_per_nearby_ally"]=8277, + ["map_damage_taken_while_stationary_+%"]=8278, + ["map_damage_while_stationary_+%"]=8279, + ["map_death_and_taxes_boss_drops_additional_currency"]=8280, + ["map_debuff_time_passed_+%"]=8281, + ["map_delirium_scarab_more_likely_%"]=10533, + ["map_delve_rules"]=8282, + ["map_delve_scarab_more_likely_%"]=10534, + ["map_disable_ultimatum_from_chance"]=440, + ["map_display_area_contains_unbridged_gaps_to_cross"]=2226, + ["map_display_insanity"]=8664, + ["map_display_strongbox_monsters_are_enraged"]=8284, + ["map_display_unique_boss_drops_X_maps"]=2265, + ["map_divination_card_drop_chance_+%"]=8285, + ["map_divination_scarab_more_likely_%"]=10535, + ["map_doesnt_consume_sextant_use"]=8286, + ["map_domination_scarab_more_likely_%"]=10536, + ["map_dropped_equipment_are_converted_to_currency_based_on_rarity"]=8287, + ["map_dropped_items_are_fractured_chance_%"]=8288, + ["map_dropped_maps_are_corrupted_with_8_mods"]=8289, + ["map_dropped_maps_are_duplicated_chance_permillage"]=8290, + ["map_duplicate_captured_beasts_chance_%"]=8291, ["map_duplicate_essence_monsters_with_shrieking_essence"]=157, - ["map_duplicate_x_rare_monsters"]=8030, - ["map_duplicate_x_synthesised_rare_monsters"]=8031, - ["map_elder_boss_variation"]=8032, - ["map_elder_rare_chance_+%"]=8033, - ["map_endgame_affliction_reward_1"]=8034, - ["map_endgame_affliction_reward_2"]=8035, - ["map_endgame_affliction_reward_3"]=8036, - ["map_endgame_affliction_reward_4"]=8037, - ["map_endgame_affliction_reward_5"]=8038, - ["map_endgame_affliction_reward_6"]=8039, - ["map_endgame_affliction_reward_7"]=8040, - ["map_endgame_affliction_reward_8"]=8041, - ["map_endgame_affliction_reward_9"]=8042, - ["map_endgame_fog_depth"]=8043, - ["map_equipment_drops_identified"]=8044, + ["map_duplicate_x_rare_monsters"]=8292, + ["map_duplicate_x_synthesised_rare_monsters"]=8293, + ["map_elder_boss_variation"]=8294, + ["map_elder_rare_chance_+%"]=8295, + ["map_endgame_affliction_reward_1"]=8296, + ["map_endgame_affliction_reward_2"]=8297, + ["map_endgame_affliction_reward_3"]=8298, + ["map_endgame_affliction_reward_4"]=8299, + ["map_endgame_affliction_reward_5"]=8300, + ["map_endgame_affliction_reward_6"]=8301, + ["map_endgame_affliction_reward_7"]=8302, + ["map_endgame_affliction_reward_8"]=8303, + ["map_endgame_affliction_reward_9"]=8304, + ["map_endgame_fog_depth"]=8305, + ["map_equipment_drops_identified"]=8306, ["map_essence_corruption_cannot_release_monsters"]=149, - ["map_essence_monolith_contains_additional_essence_of_corruption"]=8045, - ["map_essence_monolith_contains_essence_of_corruption_%"]=8046, - ["map_essence_monsters_are_corrupted"]=8047, - ["map_essence_monsters_chance_for_3_additional_essences_%"]=8048, + ["map_essence_monolith_contains_additional_essence_of_corruption"]=8307, + ["map_essence_monolith_contains_essence_of_corruption_%"]=8308, + ["map_essence_monsters_are_corrupted"]=8309, + ["map_essence_monsters_chance_for_3_additional_essences_%"]=8310, ["map_essence_monsters_drop_rare_item_with_random_essence_mod_%_chance"]=159, - ["map_essence_monsters_have_additional_essences"]=8049, - ["map_essence_monsters_higher_tier"]=8050, + ["map_essence_monsters_have_additional_essences"]=8311, + ["map_essence_monsters_higher_tier"]=8312, ["map_essence_releasing_imprisoned_monsters_grants_random_essence_to_other_imprisoned_monsters_chance_%"]=141, - ["map_essence_scarab_more_likely_%"]=10211, + ["map_essence_scarab_more_likely_%"]=10537, ["map_essences_are_1_tier_higher_chance_%"]=142, ["map_essences_contains_rogue_exiles"]=119, - ["map_exarch_traps"]=8051, - ["map_expedition_artifact_quantity_+%"]=8052, - ["map_expedition_chest_double_drops_chance_%"]=8053, - ["map_expedition_chest_marker_count_+"]=8054, - ["map_expedition_common_chest_marker_count_+"]=8055, - ["map_expedition_elite_marker_count_+%"]=8056, - ["map_expedition_encounter_additional_chance_%"]=8057, - ["map_expedition_epic_chest_marker_count_+"]=8058, - ["map_expedition_explosion_radius_+%"]=8059, - ["map_expedition_explosives_+%"]=8060, - ["map_expedition_extra_relic_suffix_chance_%"]=8061, - ["map_expedition_league"]=417, - ["map_expedition_maximum_placement_distance_+%"]=8062, - ["map_expedition_number_of_monster_markers_+%"]=8063, - ["map_expedition_relics_+"]=8064, - ["map_expedition_relics_+%"]=8065, - ["map_expedition_saga_additional_terrain_features"]=8066, - ["map_expedition_saga_contains_boss"]=8067, - ["map_expedition_scarab_more_likely_%"]=10212, - ["map_expedition_uncommon_chest_marker_count_+"]=8068, - ["map_expedition_vendor_currency_drop_as_logbook"]=8069, - ["map_expedition_vendor_reroll_currency_quantity_+%"]=8070, - ["map_expedition_x_extra_relic_suffixes"]=8071, - ["map_experience_gain_+%"]=984, - ["map_extra_monoliths"]=8072, - ["map_first_invasion_boss_killed_drops_x_additional_currency"]=8073, - ["map_first_strongbox_contains_x_additional_rare_monsters"]=8074, - ["map_first_unique_beyond_boss_slain_drops_x_beyond_uniques"]=8075, - ["map_fishy_effect_0"]=8021, - ["map_fishy_effect_1"]=8021, - ["map_fishy_effect_2"]=8021, - ["map_fishy_effect_3"]=8021, - ["map_fixed_seed"]=2218, - ["map_flask_charges_recovered_per_3_seconds_%"]=8076, - ["map_force_side_area"]=8077, - ["map_force_stone_circle"]=2242, - ["map_gain_additional_zana_mission_%_chance_on_map_completion"]=8078, - ["map_gain_onslaught_for_x_ms_on_killing_rare_monster"]=8079, - ["map_gain_random_map_craft_on_completion_chance_%"]=8080, - ["map_gauntlet_unique_monster_life_+%"]=8081, - ["map_grants_players_level_20_dash_skill"]=8082, - ["map_ground_consecrated_life_regeneration_rate_per_minute_%"]=8083, - ["map_ground_haste_action_speed_+%"]=8084, - ["map_ground_ice"]=2207, - ["map_ground_ice_base_magnitude"]=2208, - ["map_ground_lightning"]=2209, - ["map_ground_lightning_base_magnitude"]=2210, - ["map_ground_orion_meteor"]=8085, - ["map_ground_tar_movement_speed_+%"]=2211, - ["map_harbinger_additional_currency_shard_stack_chance_%"]=8086, + ["map_exarch_traps"]=8313, + ["map_expedition_artifact_quantity_+%"]=8314, + ["map_expedition_chest_double_drops_chance_%"]=8315, + ["map_expedition_chest_marker_count_+"]=8316, + ["map_expedition_common_chest_marker_count_+"]=8317, + ["map_expedition_elite_marker_count_+%"]=8318, + ["map_expedition_encounter_additional_chance_%"]=8319, + ["map_expedition_epic_chest_marker_count_+"]=8320, + ["map_expedition_explosion_radius_+%"]=8321, + ["map_expedition_explosives_+%"]=8322, + ["map_expedition_extra_relic_suffix_chance_%"]=8323, + ["map_expedition_league"]=424, + ["map_expedition_maximum_placement_distance_+%"]=8324, + ["map_expedition_number_of_monster_markers_+%"]=8325, + ["map_expedition_relics_+"]=8326, + ["map_expedition_relics_+%"]=8327, + ["map_expedition_saga_additional_terrain_features"]=8328, + ["map_expedition_saga_contains_boss"]=8329, + ["map_expedition_scarab_more_likely_%"]=10538, + ["map_expedition_uncommon_chest_marker_count_+"]=8330, + ["map_expedition_vendor_currency_drop_as_logbook"]=8331, + ["map_expedition_vendor_reroll_currency_quantity_+%"]=8332, + ["map_expedition_x_extra_relic_suffixes"]=8333, + ["map_experience_gain_+%"]=1009, + ["map_extra_monoliths"]=8334, + ["map_first_invasion_boss_killed_drops_x_additional_currency"]=8335, + ["map_first_strongbox_contains_x_additional_rare_monsters"]=8336, + ["map_first_unique_beyond_boss_slain_drops_x_beyond_uniques"]=8337, + ["map_fishy_effect_0"]=8283, + ["map_fishy_effect_1"]=8283, + ["map_fishy_effect_2"]=8283, + ["map_fishy_effect_3"]=8283, + ["map_fixed_seed"]=2250, + ["map_flask_charges_recovered_per_3_seconds_%"]=8338, + ["map_force_side_area"]=8339, + ["map_force_stone_circle"]=2274, + ["map_gain_additional_zana_mission_%_chance_on_map_completion"]=8340, + ["map_gain_onslaught_for_x_ms_on_killing_rare_monster"]=8341, + ["map_gain_random_map_craft_on_completion_chance_%"]=8342, + ["map_gauntlet_unique_monster_life_+%"]=8343, + ["map_grants_players_level_20_dash_skill"]=8344, + ["map_ground_consecrated_life_regeneration_rate_per_minute_%"]=8345, + ["map_ground_haste_action_speed_+%"]=8346, + ["map_ground_ice"]=2239, + ["map_ground_ice_base_magnitude"]=2240, + ["map_ground_lightning"]=2241, + ["map_ground_lightning_base_magnitude"]=2242, + ["map_ground_orion_meteor"]=8347, + ["map_ground_tar_movement_speed_+%"]=2243, + ["map_harbinger_additional_currency_shard_stack_chance_%"]=8348, ["map_harbinger_cooldown_speed_+%"]=100, - ["map_harbinger_portal_drops_additional_fragments"]=8087, - ["map_harbinger_scarab_more_likely_%"]=10213, - ["map_harbingers_%_chance_to_be_replaced_as_atlas_boss"]=8089, - ["map_harbingers_drops_additional_currency_shards"]=8088, - ["map_harvest_chance_for_other_plot_to_not_wither_%"]=8090, - ["map_harvest_crafting_outcomes_X_lucky_rolls"]=8091, - ["map_harvest_double_lifeforce_dropped"]=8092, - ["map_harvest_monster_life_+%_final_from_sextant"]=8093, - ["map_harvest_scarab_more_likely_%"]=10214, + ["map_harbinger_portal_drops_additional_fragments"]=8349, + ["map_harbinger_scarab_more_likely_%"]=10539, + ["map_harbingers_%_chance_to_be_replaced_as_atlas_boss"]=8351, + ["map_harbingers_drops_additional_currency_shards"]=8350, + ["map_harvest_chance_for_other_plot_to_not_wither_%"]=8352, + ["map_harvest_crafting_outcomes_X_lucky_rolls"]=8353, + ["map_harvest_double_lifeforce_dropped"]=8354, + ["map_harvest_monster_life_+%_final_from_sextant"]=8355, + ["map_harvest_scarab_more_likely_%"]=10540, ["map_harvest_seed_t2_upgrade_%_chance"]=143, ["map_harvest_seed_t3_upgrade_%_chance"]=150, - ["map_harvest_seeds_%_chance_to_spawn_additional_monster"]=8094, - ["map_harvest_seeds_1_of_every_2_plot_type_override"]=8095, + ["map_harvest_seeds_%_chance_to_spawn_additional_monster"]=8356, + ["map_harvest_seeds_1_of_every_2_plot_type_override"]=8357, ["map_harvest_seeds_are_at_least_t2"]=120, - ["map_harvest_t3_chance_+%"]=8096, - ["map_has_X_seconds_between_waves"]=2335, - ["map_has_X_waves_of_monsters"]=2334, - ["map_has_monoliths"]=8097, - ["map_has_x%_quality"]=8098, - ["map_heist_contract_additional_reveals_granted"]=8099, - ["map_heist_contract_chest_no_rewards_%_chance"]=8100, - ["map_heist_contract_npc_items_cannot_drop"]=8101, - ["map_heist_contract_primary_target_value_+%_final"]=8102, - ["map_heist_monster_life_+%_final_from_sextant"]=8103, - ["map_heist_npc_perks_effect_+%_final"]=8104, - ["map_hellscape_additional_boss"]=1023, - ["map_hellscape_blood_consumed_+%_final"]=1000, - ["map_hellscape_fire_damage_taken_when_switching"]=1006, - ["map_hellscape_gimmick_%_maximum_life_and_es_taken_as_physical_damage_per_minute_per_%_hellscape_charge_while_hellscape_can_be_activated"]=1002, - ["map_hellscape_gimmick_double_debuff_gain_lose_debuff_over_time"]=1001, - ["map_hellscape_gimmick_shift_on_killing_rare_unique_kills_drain_resource"]=1003, - ["map_hellscape_gimmick_shift_on_reaching_full_resource_kills_drain_resource"]=1004, - ["map_hellscape_gimmick_shift_randomly"]=1005, - ["map_hellscape_item_drop_quantity_+%"]=1024, - ["map_hellscape_item_drop_rarity_+%"]=1025, - ["map_hellscape_lightning_damage_taken_when_switching"]=1007, - ["map_hellscape_monster_damage_+%_final"]=1008, - ["map_hellscape_monster_damage_taken_+%_final"]=1009, - ["map_hellscape_monster_life_+%_final"]=1010, - ["map_hellscape_monster_life_regeneration_rate_per_minute_%"]=1011, - ["map_hellscape_monster_slain_experience_+%_final"]=1026, - ["map_hellscape_pack_size_+%"]=1027, - ["map_hellscape_physical_damage_taken_when_switching"]=1012, - ["map_hellscape_rare_monster_drop_additional_abyss_jewel"]=1028, - ["map_hellscape_rare_monster_drop_additional_basic_currency_item"]=1029, - ["map_hellscape_rare_monster_drop_additional_blight_oil"]=1030, - ["map_hellscape_rare_monster_drop_additional_breach_splinters"]=1031, - ["map_hellscape_rare_monster_drop_additional_delirium_splinters"]=1032, - ["map_hellscape_rare_monster_drop_additional_delve_fossil"]=1033, - ["map_hellscape_rare_monster_drop_additional_enchanted_item"]=1034, - ["map_hellscape_rare_monster_drop_additional_essence"]=1035, - ["map_hellscape_rare_monster_drop_additional_expedition_currency"]=1036, - ["map_hellscape_rare_monster_drop_additional_fractured_item"]=1037, - ["map_hellscape_rare_monster_drop_additional_gem"]=1038, - ["map_hellscape_rare_monster_drop_additional_incubator"]=1039, - ["map_hellscape_rare_monster_drop_additional_influence_item"]=1040, - ["map_hellscape_rare_monster_drop_additional_legion_splinters"]=1041, - ["map_hellscape_rare_monster_drop_additional_map_item"]=1042, - ["map_hellscape_rare_monster_drop_additional_metamorph_catalyst"]=1043, - ["map_hellscape_rare_monster_drop_additional_scarab"]=1044, - ["map_hellscape_rare_monster_drop_additional_scourged_item"]=1045, - ["map_hellscape_rare_monster_drop_additional_stacked_decks"]=1046, - ["map_hellscape_rare_monster_drop_additional_tainted_currency"]=1047, - ["map_hellscape_rare_monster_drop_additional_unique_item"]=1048, - ["map_hellscape_rare_monster_drop_items_X_levels_higher"]=1049, - ["map_hellscaping_speed_+%"]=6755, - ["map_high_tier_maps_convert_to_conqueror_maps_%"]=8105, - ["map_high_tier_maps_convert_to_elder_maps_%"]=8106, - ["map_high_tier_maps_convert_to_shaper_maps_%"]=8107, - ["map_high_tier_maps_convert_to_synth_maps_%"]=8108, - ["map_ichor_pump_one_durability"]=529, - ["map_impales_on_players_detonate_when_players_have_X_impale_debuffs"]=8110, - ["map_implicit_item_drop_quantity_+%"]=8111, - ["map_implicit_item_drop_rarity_+%"]=8112, - ["map_implicit_pack_size_+%"]=8113, - ["map_imprisoned_monsters_action_speed_+%"]=8114, - ["map_imprisoned_monsters_damage_+%"]=8115, - ["map_imprisoned_monsters_damage_taken_+%"]=8116, + ["map_harvest_t3_chance_+%"]=8358, + ["map_has_X_seconds_between_waves"]=2367, + ["map_has_X_waves_of_monsters"]=2366, + ["map_has_monoliths"]=8359, + ["map_has_x%_quality"]=8360, + ["map_heist_contract_additional_reveals_granted"]=8361, + ["map_heist_contract_chest_no_rewards_%_chance"]=8362, + ["map_heist_contract_npc_items_cannot_drop"]=8363, + ["map_heist_contract_primary_target_value_+%_final"]=8364, + ["map_heist_monster_life_+%_final_from_sextant"]=8365, + ["map_heist_npc_perks_effect_+%_final"]=8366, + ["map_hellscape_additional_boss"]=1047, + ["map_hellscape_blood_consumed_+%_final"]=1024, + ["map_hellscape_fire_damage_taken_when_switching"]=1030, + ["map_hellscape_gimmick_%_maximum_life_and_es_taken_as_physical_damage_per_minute_per_%_hellscape_charge_while_hellscape_can_be_activated"]=1026, + ["map_hellscape_gimmick_double_debuff_gain_lose_debuff_over_time"]=1025, + ["map_hellscape_gimmick_shift_on_killing_rare_unique_kills_drain_resource"]=1027, + ["map_hellscape_gimmick_shift_on_reaching_full_resource_kills_drain_resource"]=1028, + ["map_hellscape_gimmick_shift_randomly"]=1029, + ["map_hellscape_item_drop_quantity_+%"]=1048, + ["map_hellscape_item_drop_rarity_+%"]=1049, + ["map_hellscape_lightning_damage_taken_when_switching"]=1031, + ["map_hellscape_monster_damage_+%_final"]=1032, + ["map_hellscape_monster_damage_taken_+%_final"]=1033, + ["map_hellscape_monster_life_+%_final"]=1034, + ["map_hellscape_monster_life_regeneration_rate_per_minute_%"]=1035, + ["map_hellscape_monster_slain_experience_+%_final"]=1050, + ["map_hellscape_pack_size_+%"]=1051, + ["map_hellscape_physical_damage_taken_when_switching"]=1036, + ["map_hellscape_rare_monster_drop_additional_abyss_jewel"]=1052, + ["map_hellscape_rare_monster_drop_additional_basic_currency_item"]=1053, + ["map_hellscape_rare_monster_drop_additional_blight_oil"]=1054, + ["map_hellscape_rare_monster_drop_additional_breach_splinters"]=1055, + ["map_hellscape_rare_monster_drop_additional_delirium_splinters"]=1056, + ["map_hellscape_rare_monster_drop_additional_delve_fossil"]=1057, + ["map_hellscape_rare_monster_drop_additional_enchanted_item"]=1058, + ["map_hellscape_rare_monster_drop_additional_essence"]=1059, + ["map_hellscape_rare_monster_drop_additional_expedition_currency"]=1060, + ["map_hellscape_rare_monster_drop_additional_fractured_item"]=1061, + ["map_hellscape_rare_monster_drop_additional_gem"]=1062, + ["map_hellscape_rare_monster_drop_additional_incubator"]=1063, + ["map_hellscape_rare_monster_drop_additional_influence_item"]=1064, + ["map_hellscape_rare_monster_drop_additional_legion_splinters"]=1065, + ["map_hellscape_rare_monster_drop_additional_map_item"]=1066, + ["map_hellscape_rare_monster_drop_additional_metamorph_catalyst"]=1067, + ["map_hellscape_rare_monster_drop_additional_scarab"]=1068, + ["map_hellscape_rare_monster_drop_additional_scourged_item"]=1069, + ["map_hellscape_rare_monster_drop_additional_stacked_decks"]=1070, + ["map_hellscape_rare_monster_drop_additional_tainted_currency"]=1071, + ["map_hellscape_rare_monster_drop_additional_unique_item"]=1072, + ["map_hellscape_rare_monster_drop_items_X_levels_higher"]=1073, + ["map_hellscaping_speed_+%"]=6988, + ["map_high_tier_maps_convert_to_conqueror_maps_%"]=8367, + ["map_high_tier_maps_convert_to_elder_maps_%"]=8368, + ["map_high_tier_maps_convert_to_shaper_maps_%"]=8369, + ["map_high_tier_maps_convert_to_synth_maps_%"]=8370, + ["map_ichor_pump_one_durability"]=538, + ["map_impales_on_players_detonate_when_players_have_X_impale_debuffs"]=8372, + ["map_implicit_item_drop_quantity_+%"]=8373, + ["map_implicit_item_drop_rarity_+%"]=8374, + ["map_implicit_pack_size_+%"]=8375, + ["map_imprisoned_monsters_action_speed_+%"]=8376, + ["map_imprisoned_monsters_damage_+%"]=8377, + ["map_imprisoned_monsters_damage_taken_+%"]=8378, ["map_incursion_architects_are_possessed_chance_%"]=96, ["map_incursion_architects_drop_incursion_rare_chance_%"]=101, - ["map_incursion_boss_possessed_by_tormented_arsonist"]=8117, - ["map_incursion_boss_possessed_by_tormented_blasphemer"]=8118, - ["map_incursion_boss_possessed_by_tormented_cannibal"]=8119, - ["map_incursion_boss_possessed_by_tormented_charlatan"]=8120, - ["map_incursion_boss_possessed_by_tormented_corrupter"]=8121, - ["map_incursion_boss_possessed_by_tormented_counterfeiter"]=8122, - ["map_incursion_boss_possessed_by_tormented_cutthroat"]=8123, - ["map_incursion_boss_possessed_by_tormented_embezzler"]=8124, - ["map_incursion_boss_possessed_by_tormented_experimenter"]=8125, - ["map_incursion_boss_possessed_by_tormented_fisherman"]=8126, - ["map_incursion_boss_possessed_by_tormented_freezer"]=8127, - ["map_incursion_boss_possessed_by_tormented_librarian"]=8128, - ["map_incursion_boss_possessed_by_tormented_martyr"]=8129, - ["map_incursion_boss_possessed_by_tormented_mutilator"]=8130, - ["map_incursion_boss_possessed_by_tormented_necromancer"]=8131, - ["map_incursion_boss_possessed_by_tormented_poisoner"]=8132, - ["map_incursion_boss_possessed_by_tormented_rogue"]=8133, - ["map_incursion_boss_possessed_by_tormented_smuggler"]=8134, - ["map_incursion_boss_possessed_by_tormented_spy"]=8135, - ["map_incursion_boss_possessed_by_tormented_thief"]=8136, - ["map_incursion_boss_possessed_by_tormented_thug"]=8137, - ["map_incursion_boss_possessed_by_tormented_warlord"]=8138, - ["map_incursion_memory_line_monster_damage_+%_final"]=4184, - ["map_incursion_memory_line_monster_life_+%_final"]=4183, - ["map_incursion_scarab_more_likely_%"]=10215, - ["map_incursion_spawn_large_caustic_plants"]=8139, - ["map_incursion_spawn_parasitic_caustic_plants"]=8140, - ["map_influence_pack_size_+%"]=8141, - ["map_inscribed_ultimatum_reward_currency_items_chance_+%"]=8145, - ["map_inscribed_ultimatum_reward_divination_cards_chance_+%"]=8146, - ["map_inscribed_ultimatum_reward_unique_items_chance_+%"]=8147, - ["map_invasion_bosses_are_twinned"]=8148, - ["map_invasion_bosses_drop_x_additional_vaal_orbs"]=8149, - ["map_invasion_bosses_dropped_items_are_fully_linked"]=8150, - ["map_invasion_bosses_dropped_items_have_x_additional_sockets"]=8151, - ["map_invasion_monster_packs"]=2518, - ["map_invasion_monsters_guarded_by_x_magic_packs"]=8152, - ["map_is_branchy"]=2188, - ["map_item_drop_quality_also_applies_to_map_item_drop_rarity"]=8155, + ["map_incursion_boss_possessed_by_tormented_arsonist"]=8379, + ["map_incursion_boss_possessed_by_tormented_blasphemer"]=8380, + ["map_incursion_boss_possessed_by_tormented_cannibal"]=8381, + ["map_incursion_boss_possessed_by_tormented_charlatan"]=8382, + ["map_incursion_boss_possessed_by_tormented_corrupter"]=8383, + ["map_incursion_boss_possessed_by_tormented_counterfeiter"]=8384, + ["map_incursion_boss_possessed_by_tormented_cutthroat"]=8385, + ["map_incursion_boss_possessed_by_tormented_embezzler"]=8386, + ["map_incursion_boss_possessed_by_tormented_experimenter"]=8387, + ["map_incursion_boss_possessed_by_tormented_fisherman"]=8388, + ["map_incursion_boss_possessed_by_tormented_freezer"]=8389, + ["map_incursion_boss_possessed_by_tormented_librarian"]=8390, + ["map_incursion_boss_possessed_by_tormented_martyr"]=8391, + ["map_incursion_boss_possessed_by_tormented_mutilator"]=8392, + ["map_incursion_boss_possessed_by_tormented_necromancer"]=8393, + ["map_incursion_boss_possessed_by_tormented_poisoner"]=8394, + ["map_incursion_boss_possessed_by_tormented_rogue"]=8395, + ["map_incursion_boss_possessed_by_tormented_smuggler"]=8396, + ["map_incursion_boss_possessed_by_tormented_spy"]=8397, + ["map_incursion_boss_possessed_by_tormented_thief"]=8398, + ["map_incursion_boss_possessed_by_tormented_thug"]=8399, + ["map_incursion_boss_possessed_by_tormented_warlord"]=8400, + ["map_incursion_memory_line_monster_damage_+%_final"]=4230, + ["map_incursion_memory_line_monster_life_+%_final"]=4229, + ["map_incursion_scarab_more_likely_%"]=10541, + ["map_incursion_spawn_large_caustic_plants"]=8401, + ["map_incursion_spawn_parasitic_caustic_plants"]=8402, + ["map_influence_pack_size_+%"]=8403, + ["map_inscribed_ultimatum_reward_currency_items_chance_+%"]=8407, + ["map_inscribed_ultimatum_reward_divination_cards_chance_+%"]=8408, + ["map_inscribed_ultimatum_reward_unique_items_chance_+%"]=8409, + ["map_invasion_bosses_are_twinned"]=8410, + ["map_invasion_bosses_drop_x_additional_vaal_orbs"]=8411, + ["map_invasion_bosses_dropped_items_are_fully_linked"]=8412, + ["map_invasion_bosses_dropped_items_have_x_additional_sockets"]=8413, + ["map_invasion_monster_packs"]=2551, + ["map_invasion_monsters_guarded_by_x_magic_packs"]=8414, + ["map_is_branchy"]=2220, + ["map_item_drop_quality_also_applies_to_map_item_drop_rarity"]=8417, ["map_item_drop_quantity_+%"]=21, - ["map_item_drop_quantity_+%_final_from_zana_influence"]=8156, + ["map_item_drop_quantity_+%_final_from_zana_influence"]=8418, ["map_item_drop_rarity_+%"]=22, - ["map_item_found_rarity_+%_per_15_rampage_stacks"]=8157, - ["map_item_level_override"]=985, - ["map_item_quantity_from_monsters_that_drop_silver_coin_+%"]=8158, - ["map_item_zana_influence_+"]=8159, - ["map_items_drop_corrupted"]=2939, - ["map_items_drop_corrupted_%"]=10291, - ["map_kill_enemy_on_hit_if_under_20%_life"]=8237, - ["map_labyrinth_izaro_area_of_effect_+%"]=8160, - ["map_labyrinth_izaro_attack_cast_move_speed_+%"]=8161, - ["map_labyrinth_izaro_damage_+%"]=8162, - ["map_labyrinth_izaro_life_+%"]=8163, - ["map_labyrinth_monsters_attack_cast_and_movement_speed_+%"]=8164, - ["map_labyrinth_monsters_damage_+%"]=8165, - ["map_labyrinth_monsters_life_+%"]=8166, - ["map_leaguestone_area_contains_x_additional_leaguestones"]=8167, - ["map_leaguestone_beyond_monster_item_quantity_and_rarity_+%_final"]=8168, - ["map_leaguestone_contains_warband_leader"]=8169, - ["map_leaguestone_explicit_warband_type_override"]=8170, - ["map_leaguestone_imprisoned_monsters_item_quantity_+%_final"]=8171, - ["map_leaguestone_imprisoned_monsters_item_rarity_+%_final"]=8172, - ["map_leaguestone_invasion_boss_item_quantity_and_rarity_+%_final"]=8173, - ["map_leaguestone_monolith_contains_essence_type"]=8174, - ["map_leaguestone_override_base_num_breaches"]=8175, - ["map_leaguestone_override_base_num_invasion_bosses"]=8176, - ["map_leaguestone_override_base_num_monoliths"]=8177, - ["map_leaguestone_override_base_num_perandus_chests"]=8178, - ["map_leaguestone_override_base_num_prophecy_coins"]=8179, - ["map_leaguestone_override_base_num_rogue_exiles"]=8180, - ["map_leaguestone_override_base_num_shrines"]=8181, - ["map_leaguestone_override_base_num_strongboxes"]=8182, - ["map_leaguestone_override_base_num_talismans"]=8183, - ["map_leaguestone_override_base_num_tormented_spirits"]=8184, - ["map_leaguestone_override_base_num_warband_packs"]=8185, - ["map_leaguestone_perandus_chests_have_item_quantity_+%_final"]=8186, - ["map_leaguestone_perandus_chests_have_item_rarity_+%_final"]=8187, - ["map_leaguestone_rogue_exiles_dropped_item_rarity_+%_final"]=8188, - ["map_leaguestone_shrine_monster_rarity_override"]=8189, - ["map_leaguestone_shrine_override_type"]=8190, - ["map_leaguestone_strongboxes_rarity_override"]=8191, - ["map_leaguestone_warbands_packs_have_item_quantity_+%_final"]=8193, - ["map_leaguestone_warbands_packs_have_item_rarity_+%_final"]=8194, - ["map_leaguestone_x_monsters_spawn_abaxoth"]=8195, - ["map_leaguestone_x_monsters_spawn_random_beyond_boss"]=8196, - ["map_leaguestones_currency_items_drop_when_first_reaching_x_rampage_stacks"]=8197, - ["map_leaguestones_spawn_powerful_monster_when_reaching_x_rampage_stacks"]=8198, - ["map_legion_additional_number_of_sergeants"]=8199, - ["map_legion_generals_spawn_both_generals"]=8200, - ["map_legion_league_extra_spawns"]=1021, - ["map_legion_league_force_general"]=8201, - ["map_legion_league_force_war_chest"]=8202, - ["map_legion_monster_life_+%_final_from_sextant"]=8203, - ["map_legion_monster_splinter_emblem_drops_duplicated"]=8204, - ["map_legion_scarab_more_likely_%"]=10216, - ["map_lethal_after_X_seconds"]=8205, - ["map_level_+"]=8206, - ["map_magic_items_drop_as_normal"]=8208, - ["map_magic_monster_life_regeneration_rate_per_minute_%"]=4177, - ["map_magic_monsters_are_maimed"]=8209, - ["map_magic_monsters_damage_taken_+%"]=8210, - ["map_magic_pack_size_+%"]=8211, - ["map_map_item_drop_chance_+%"]=8212, - ["map_maps_scarab_more_likely_%"]=10217, - ["map_melee_physical_damage_taken_%_to_deal_to_attacker"]=8213, - ["map_metamorph_all_metamorphs_have_rewards"]=8214, - ["map_metamorph_boss_drops_additional_itemised_organs"]=8215, - ["map_metamorph_catalyst_drops_duplicated"]=8216, - ["map_metamorph_itemised_boss_min_rewards"]=8217, - ["map_metamorph_itemised_boss_more_difficult"]=8218, - ["map_metamorph_life_+%_final_from_sextant"]=8219, - ["map_metamorphosis_league"]=8220, - ["map_mini_monolith_monsters_are_magic"]=8221, - ["map_minimap_revealed"]=2219, - ["map_minion_attack_speed_+%"]=8222, - ["map_minion_cast_speed_+%"]=8223, - ["map_minion_movement_speed_+%"]=8224, - ["map_monster_action_speed_cannot_be_reduced_below_base"]=8225, - ["map_monster_add_x_grasping_vines_on_hit"]=8235, - ["map_monster_all_damage_can_ignite_freeze_shock"]=8226, - ["map_monster_and_player_onslaught_effect_+%"]=8227, - ["map_monster_attack_cast_and_movement_speed_+%"]=8228, - ["map_monster_beyond_portal_chance_+%"]=8229, - ["map_monster_chance_to_gain_endurance_charge_when_hit_%"]=8230, - ["map_monster_curse_effect_on_self_+%"]=8231, - ["map_monster_damage_taken_+%_final_from_atlas_keystone"]=8232, - ["map_monster_damage_taken_+%_while_possessed"]=8233, - ["map_monster_debuff_time_passed_+%"]=8234, - ["map_monster_drop_higher_level_gear"]=3482, - ["map_monster_item_rarity_+permyriad_final_per_empowered_soul"]=8236, - ["map_monster_malediction_on_hit"]=8238, - ["map_monster_maximum_endurance_charges"]=2306, - ["map_monster_maximum_frenzy_charges"]=2303, - ["map_monster_maximum_power_charges"]=2309, - ["map_monster_melee_attacks_apply_random_curses"]=2312, - ["map_monster_melee_attacks_apply_random_curses_%_chance"]=2313, - ["map_monster_movement_speed_cannot_be_reduced_below_base"]=8239, - ["map_monster_no_drops"]=2321, - ["map_monster_non_damaging_ailment_effect_+%_on_self"]=8241, - ["map_monster_petal_chance_+%"]=8242, - ["map_monster_projectile_chain_from_terrain_chance_%"]=8243, - ["map_monster_rare_and_unique_rose_petal_quantity_+%"]=8244, - ["map_monster_rose_petal_quantity_+%"]=8245, - ["map_monster_skills_chain_X_additional_times"]=2315, - ["map_monster_slain_experience_+%"]=8246, - ["map_monster_unaffected_by_shock"]=2273, - ["map_monsters_%_chance_to_inflict_status_ailments"]=8289, - ["map_monsters_%_physical_damage_to_add_as_chaos"]=8290, - ["map_monsters_%_physical_damage_to_add_as_cold"]=2299, - ["map_monsters_%_physical_damage_to_add_as_fire"]=2298, - ["map_monsters_%_physical_damage_to_add_as_lightning"]=2300, - ["map_monsters_%_physical_damage_to_convert_to_chaos"]=2301, - ["map_monsters_%_physical_damage_to_convert_to_cold"]=2296, - ["map_monsters_%_physical_damage_to_convert_to_fire"]=2295, - ["map_monsters_%_physical_damage_to_convert_to_lightning"]=2297, - ["map_monsters_accuracy_rating_+%"]=8247, - ["map_monsters_action_speed_-%"]=8248, - ["map_monsters_add_endurance_charge_on_hit_%"]=2307, - ["map_monsters_add_frenzy_charge_on_hit_%"]=2304, - ["map_monsters_add_power_charge_on_hit_%"]=2310, - ["map_monsters_additional_chaos_resistance"]=8249, - ["map_monsters_additional_cold_resistance"]=2290, - ["map_monsters_additional_elemental_resistance"]=8250, - ["map_monsters_additional_fire_resistance"]=2289, - ["map_monsters_additional_lightning_resistance"]=2291, - ["map_monsters_additional_maximum_all_elemental_resistances_%"]=8251, - ["map_monsters_additional_number_of_projecitles"]=2288, - ["map_monsters_additional_physical_damage_reduction"]=2292, - ["map_monsters_all_damage_can_chill"]=8252, - ["map_monsters_all_damage_can_freeze"]=8253, - ["map_monsters_all_damage_can_ignite"]=8254, - ["map_monsters_all_damage_can_poison"]=8255, - ["map_monsters_all_damage_can_shock"]=8256, - ["map_monsters_always_crit"]=8257, - ["map_monsters_always_hit"]=8258, - ["map_monsters_always_ignite"]=8259, - ["map_monsters_are_converted_on_kill"]=8260, - ["map_monsters_are_hexproof"]=2319, - ["map_monsters_are_immune_to_curses"]=2318, - ["map_monsters_area_of_effect_+%"]=2269, - ["map_monsters_attack_speed_+%"]=2284, - ["map_monsters_avoid_ailments_%"]=2274, - ["map_monsters_avoid_elemental_ailments_%"]=2275, - ["map_monsters_avoid_freeze_and_chill_%"]=2270, - ["map_monsters_avoid_ignite_%"]=2271, - ["map_monsters_avoid_poison_bleed_impale_%"]=8261, - ["map_monsters_avoid_shock_%"]=2272, - ["map_monsters_base_bleed_duration_+%"]=8262, - ["map_monsters_base_block_%"]=8263, - ["map_monsters_base_chance_to_freeze_%"]=8264, - ["map_monsters_base_chance_to_ignite_%"]=8265, - ["map_monsters_base_chance_to_shock_%"]=8266, - ["map_monsters_base_poison_duration_+%"]=8267, - ["map_monsters_base_self_critical_strike_multiplier_-%"]=3498, - ["map_monsters_base_spell_block_%"]=8268, - ["map_monsters_can_be_empowered_by_x_wildwood_wisps"]=8269, - ["map_monsters_cannot_be_leeched_from"]=2278, - ["map_monsters_cannot_be_stunned"]=2293, - ["map_monsters_cannot_be_taunted"]=8270, - ["map_monsters_cast_speed_+%"]=2285, - ["map_monsters_chance_to_blind_on_hit_%"]=8271, - ["map_monsters_chance_to_impale_%"]=8109, - ["map_monsters_chance_to_inflict_brittle_%"]=8272, - ["map_monsters_chance_to_inflict_sapped_%"]=8273, - ["map_monsters_chance_to_scorch_%"]=8274, - ["map_monsters_convert_all_physical_damage_to_fire"]=2316, - ["map_monsters_critical_strike_chance_+%"]=2276, - ["map_monsters_critical_strike_multiplier_+"]=2277, - ["map_monsters_curse_effect_+%"]=2320, - ["map_monsters_curse_effect_on_self_+%_final"]=8275, - ["map_monsters_damage_+%"]=2281, - ["map_monsters_damage_taken_+%"]=8276, - ["map_monsters_drop_ground_fire_on_death_base_radius"]=2317, - ["map_monsters_enemy_phys_reduction_%_penalty_vs_hit"]=8277, - ["map_monsters_energy_shield_leech_resistance_%"]=8278, - ["map_monsters_enrage_on_low_life"]=8279, - ["map_monsters_freeze_duration_+%"]=8280, - ["map_monsters_gain_x_endurance_charges_every_20_seconds"]=2305, - ["map_monsters_gain_x_frenzy_charges_every_20_seconds"]=2302, - ["map_monsters_gain_x_power_charges_every_20_seconds"]=2308, - ["map_monsters_global_bleed_on_hit"]=8281, - ["map_monsters_global_poison_on_hit"]=8282, - ["map_monsters_have_onslaught"]=2282, - ["map_monsters_ignite_duration_+%"]=8283, - ["map_monsters_immune_to_a_random_status_ailment_or_stun"]=2311, - ["map_monsters_life_+%"]=2268, - ["map_monsters_life_leech_resistance_%"]=2279, - ["map_monsters_maim_on_hit_%_chance"]=8284, - ["map_monsters_mana_leech_resistance_%"]=2280, - ["map_monsters_maximum_life_%_to_add_to_maximum_energy_shield"]=8285, - ["map_monsters_movement_speed_+%"]=2283, - ["map_monsters_movement_speed_cannot_be_reduced_below_base"]=8286, - ["map_monsters_near_shrines_are_chilled"]=8287, - ["map_monsters_penetrate_elemental_resistances_%"]=8288, - ["map_monsters_petrification_for_X_seconds_on_hit"]=7845, - ["map_monsters_physical_damage_%_to_add_as_random_element"]=8291, - ["map_monsters_poison_on_hit"]=2294, - ["map_monsters_reduce_enemy_chaos_resistance_%"]=8292, - ["map_monsters_reduce_enemy_cold_resistance_%"]=8293, - ["map_monsters_reduce_enemy_fire_resistance_%"]=8294, - ["map_monsters_reduce_enemy_lightning_resistance_%"]=8295, - ["map_monsters_reflect_%_elemental_damage"]=2287, - ["map_monsters_reflect_%_physical_damage"]=2286, - ["map_monsters_reflect_curses"]=2314, - ["map_monsters_remove_%_of_mana_on_hit"]=8298, - ["map_monsters_remove_charges_on_hit_%"]=8296, - ["map_monsters_remove_enemy_flask_charge_on_hit_%_chance"]=8297, - ["map_monsters_shock_effect_+%"]=8299, - ["map_monsters_spawned_with_talisman_drop_additional_rare_items"]=8300, - ["map_monsters_spell_damage_%_suppressed"]=8301, - ["map_monsters_spell_suppression_chance_%"]=8302, - ["map_monsters_spells_chance_to_hinder_on_hit_%_chance"]=8303, - ["map_monsters_steal_charges"]=8304, - ["map_monsters_summon_specific_monsters_on_death"]=8305, - ["map_monsters_that_drop_silver_coin_drop_x_additional_silver_coins"]=8306, - ["map_monsters_unaffected_by_curses"]=8307, - ["map_monsters_with_silver_coins_drop_x_additional_currency_items"]=8309, - ["map_monsters_with_silver_coins_drop_x_additional_rare_items"]=8310, - ["map_monsters_withered_on_hit_for_2_seconds_%_chance"]=8311, - ["map_monstrous_treasure_no_monsters"]=8312, - ["map_movement_velocity_+%_per_poison_stack"]=8313, - ["map_nemesis_dropped_items_+"]=8314, - ["map_next_area_contains_x_additional_bearers_of_the_guardian_packs"]=8315, - ["map_next_area_contains_x_additional_voidspawn_of_abaxoth_packs"]=8316, - ["map_no_experience_gain"]=8317, - ["map_no_magic_items_drop"]=8318, - ["map_no_rare_items_drop"]=8319, - ["map_no_refills_in_town"]=2220, - ["map_no_stashes"]=8320, - ["map_no_uniques_drop_randomly"]=8321, - ["map_no_vendors"]=8322, - ["map_non_unique_equipment_drops_as_sell_price"]=2938, - ["map_non_unique_items_drop_normal"]=8323, - ["map_non_unique_monster_life_regeneration_rate_per_minute_%"]=8324, - ["map_non_unique_monsters_spawn_X_monsters_on_death"]=2247, - ["map_normal_items_drop_as_magic"]=8325, - ["map_normal_monster_life_regeneration_rate_per_minute_%"]=4176, - ["map_nuke_everything"]=8326, - ["map_num_additional_random_scarab_effects"]=8327, + ["map_item_found_rarity_+%_per_15_rampage_stacks"]=8419, + ["map_item_level_override"]=1010, + ["map_item_quantity_from_monsters_that_drop_silver_coin_+%"]=8420, + ["map_item_zana_influence_+"]=8421, + ["map_items_drop_corrupted"]=2976, + ["map_items_drop_corrupted_%"]=10620, + ["map_kill_enemy_on_hit_if_under_20%_life"]=8499, + ["map_labyrinth_izaro_area_of_effect_+%"]=8422, + ["map_labyrinth_izaro_attack_cast_move_speed_+%"]=8423, + ["map_labyrinth_izaro_damage_+%"]=8424, + ["map_labyrinth_izaro_life_+%"]=8425, + ["map_labyrinth_monsters_attack_cast_and_movement_speed_+%"]=8426, + ["map_labyrinth_monsters_damage_+%"]=8427, + ["map_labyrinth_monsters_life_+%"]=8428, + ["map_leaguestone_area_contains_x_additional_leaguestones"]=8429, + ["map_leaguestone_beyond_monster_item_quantity_and_rarity_+%_final"]=8430, + ["map_leaguestone_contains_warband_leader"]=8431, + ["map_leaguestone_explicit_warband_type_override"]=8432, + ["map_leaguestone_imprisoned_monsters_item_quantity_+%_final"]=8433, + ["map_leaguestone_imprisoned_monsters_item_rarity_+%_final"]=8434, + ["map_leaguestone_invasion_boss_item_quantity_and_rarity_+%_final"]=8435, + ["map_leaguestone_monolith_contains_essence_type"]=8436, + ["map_leaguestone_override_base_num_breaches"]=8437, + ["map_leaguestone_override_base_num_invasion_bosses"]=8438, + ["map_leaguestone_override_base_num_monoliths"]=8439, + ["map_leaguestone_override_base_num_perandus_chests"]=8440, + ["map_leaguestone_override_base_num_prophecy_coins"]=8441, + ["map_leaguestone_override_base_num_rogue_exiles"]=8442, + ["map_leaguestone_override_base_num_shrines"]=8443, + ["map_leaguestone_override_base_num_strongboxes"]=8444, + ["map_leaguestone_override_base_num_talismans"]=8445, + ["map_leaguestone_override_base_num_tormented_spirits"]=8446, + ["map_leaguestone_override_base_num_warband_packs"]=8447, + ["map_leaguestone_perandus_chests_have_item_quantity_+%_final"]=8448, + ["map_leaguestone_perandus_chests_have_item_rarity_+%_final"]=8449, + ["map_leaguestone_rogue_exiles_dropped_item_rarity_+%_final"]=8450, + ["map_leaguestone_shrine_monster_rarity_override"]=8451, + ["map_leaguestone_shrine_override_type"]=8452, + ["map_leaguestone_strongboxes_rarity_override"]=8453, + ["map_leaguestone_warbands_packs_have_item_quantity_+%_final"]=8455, + ["map_leaguestone_warbands_packs_have_item_rarity_+%_final"]=8456, + ["map_leaguestone_x_monsters_spawn_abaxoth"]=8457, + ["map_leaguestone_x_monsters_spawn_random_beyond_boss"]=8458, + ["map_leaguestones_currency_items_drop_when_first_reaching_x_rampage_stacks"]=8459, + ["map_leaguestones_spawn_powerful_monster_when_reaching_x_rampage_stacks"]=8460, + ["map_legion_additional_number_of_sergeants"]=8461, + ["map_legion_generals_spawn_both_generals"]=8462, + ["map_legion_league_extra_spawns"]=1045, + ["map_legion_league_force_general"]=8463, + ["map_legion_league_force_war_chest"]=8464, + ["map_legion_monster_life_+%_final_from_sextant"]=8465, + ["map_legion_monster_splinter_emblem_drops_duplicated"]=8466, + ["map_legion_scarab_more_likely_%"]=10542, + ["map_lethal_after_X_seconds"]=8467, + ["map_level_+"]=8468, + ["map_magic_items_drop_as_normal"]=8470, + ["map_magic_monster_life_regeneration_rate_per_minute_%"]=4223, + ["map_magic_monsters_are_maimed"]=8471, + ["map_magic_monsters_damage_taken_+%"]=8472, + ["map_magic_pack_size_+%"]=8473, + ["map_map_item_drop_chance_+%"]=8474, + ["map_maps_scarab_more_likely_%"]=10543, + ["map_melee_physical_damage_taken_%_to_deal_to_attacker"]=8475, + ["map_metamorph_all_metamorphs_have_rewards"]=8476, + ["map_metamorph_boss_drops_additional_itemised_organs"]=8477, + ["map_metamorph_catalyst_drops_duplicated"]=8478, + ["map_metamorph_itemised_boss_min_rewards"]=8479, + ["map_metamorph_itemised_boss_more_difficult"]=8480, + ["map_metamorph_life_+%_final_from_sextant"]=8481, + ["map_metamorphosis_league"]=8482, + ["map_mini_monolith_monsters_are_magic"]=8483, + ["map_minimap_revealed"]=2251, + ["map_minion_attack_speed_+%"]=8484, + ["map_minion_cast_speed_+%"]=8485, + ["map_minion_movement_speed_+%"]=8486, + ["map_monster_action_speed_cannot_be_reduced_below_base"]=8487, + ["map_monster_add_x_grasping_vines_on_hit"]=8497, + ["map_monster_all_damage_can_ignite_freeze_shock"]=8488, + ["map_monster_and_player_onslaught_effect_+%"]=8489, + ["map_monster_attack_cast_and_movement_speed_+%"]=8490, + ["map_monster_beyond_portal_chance_+%"]=8491, + ["map_monster_chance_to_gain_endurance_charge_when_hit_%"]=8492, + ["map_monster_curse_effect_on_self_+%"]=8493, + ["map_monster_damage_taken_+%_final_from_atlas_keystone"]=8494, + ["map_monster_damage_taken_+%_while_possessed"]=8495, + ["map_monster_debuff_time_passed_+%"]=8496, + ["map_monster_drop_higher_level_gear"]=3527, + ["map_monster_item_rarity_+permyriad_final_per_empowered_soul"]=8498, + ["map_monster_malediction_on_hit"]=8500, + ["map_monster_maximum_endurance_charges"]=2338, + ["map_monster_maximum_frenzy_charges"]=2335, + ["map_monster_maximum_power_charges"]=2341, + ["map_monster_melee_attacks_apply_random_curses"]=2344, + ["map_monster_melee_attacks_apply_random_curses_%_chance"]=2345, + ["map_monster_movement_speed_cannot_be_reduced_below_base"]=8501, + ["map_monster_no_drops"]=2353, + ["map_monster_non_damaging_ailment_effect_+%_on_self"]=8503, + ["map_monster_petal_chance_+%"]=8504, + ["map_monster_projectile_chain_from_terrain_chance_%"]=8505, + ["map_monster_rare_and_unique_rose_petal_quantity_+%"]=8506, + ["map_monster_rose_petal_quantity_+%"]=8507, + ["map_monster_skills_chain_X_additional_times"]=2347, + ["map_monster_slain_experience_+%"]=8508, + ["map_monster_unaffected_by_shock"]=2305, + ["map_monsters_%_chance_to_inflict_status_ailments"]=8551, + ["map_monsters_%_physical_damage_to_add_as_chaos"]=8552, + ["map_monsters_%_physical_damage_to_add_as_cold"]=2331, + ["map_monsters_%_physical_damage_to_add_as_fire"]=2330, + ["map_monsters_%_physical_damage_to_add_as_lightning"]=2332, + ["map_monsters_%_physical_damage_to_convert_to_chaos"]=2333, + ["map_monsters_%_physical_damage_to_convert_to_cold"]=2328, + ["map_monsters_%_physical_damage_to_convert_to_fire"]=2327, + ["map_monsters_%_physical_damage_to_convert_to_lightning"]=2329, + ["map_monsters_accuracy_rating_+%"]=8509, + ["map_monsters_action_speed_-%"]=8510, + ["map_monsters_add_endurance_charge_on_hit_%"]=2339, + ["map_monsters_add_frenzy_charge_on_hit_%"]=2336, + ["map_monsters_add_power_charge_on_hit_%"]=2342, + ["map_monsters_additional_chaos_resistance"]=8511, + ["map_monsters_additional_cold_resistance"]=2322, + ["map_monsters_additional_elemental_resistance"]=8512, + ["map_monsters_additional_fire_resistance"]=2321, + ["map_monsters_additional_lightning_resistance"]=2323, + ["map_monsters_additional_maximum_all_elemental_resistances_%"]=8513, + ["map_monsters_additional_number_of_projecitles"]=2320, + ["map_monsters_additional_physical_damage_reduction"]=2324, + ["map_monsters_all_damage_can_chill"]=8514, + ["map_monsters_all_damage_can_freeze"]=8515, + ["map_monsters_all_damage_can_ignite"]=8516, + ["map_monsters_all_damage_can_poison"]=8517, + ["map_monsters_all_damage_can_shock"]=8518, + ["map_monsters_always_crit"]=8519, + ["map_monsters_always_hit"]=8520, + ["map_monsters_always_ignite"]=8521, + ["map_monsters_are_converted_on_kill"]=8522, + ["map_monsters_are_hexproof"]=2351, + ["map_monsters_are_immune_to_curses"]=2350, + ["map_monsters_area_of_effect_+%"]=2301, + ["map_monsters_attack_speed_+%"]=2316, + ["map_monsters_avoid_ailments_%"]=2306, + ["map_monsters_avoid_elemental_ailments_%"]=2307, + ["map_monsters_avoid_freeze_and_chill_%"]=2302, + ["map_monsters_avoid_ignite_%"]=2303, + ["map_monsters_avoid_poison_bleed_impale_%"]=8523, + ["map_monsters_avoid_shock_%"]=2304, + ["map_monsters_base_bleed_duration_+%"]=8524, + ["map_monsters_base_block_%"]=8525, + ["map_monsters_base_chance_to_freeze_%"]=8526, + ["map_monsters_base_chance_to_ignite_%"]=8527, + ["map_monsters_base_chance_to_shock_%"]=8528, + ["map_monsters_base_poison_duration_+%"]=8529, + ["map_monsters_base_self_critical_strike_multiplier_-%"]=3543, + ["map_monsters_base_spell_block_%"]=8530, + ["map_monsters_can_be_empowered_by_x_wildwood_wisps"]=8531, + ["map_monsters_cannot_be_leeched_from"]=2310, + ["map_monsters_cannot_be_stunned"]=2325, + ["map_monsters_cannot_be_taunted"]=8532, + ["map_monsters_cast_speed_+%"]=2317, + ["map_monsters_chance_to_blind_on_hit_%"]=8533, + ["map_monsters_chance_to_impale_%"]=8371, + ["map_monsters_chance_to_inflict_brittle_%"]=8534, + ["map_monsters_chance_to_inflict_sapped_%"]=8535, + ["map_monsters_chance_to_scorch_%"]=8536, + ["map_monsters_convert_all_physical_damage_to_fire"]=2348, + ["map_monsters_critical_strike_chance_+%"]=2308, + ["map_monsters_critical_strike_multiplier_+"]=2309, + ["map_monsters_curse_effect_+%"]=2352, + ["map_monsters_curse_effect_on_self_+%_final"]=8537, + ["map_monsters_damage_+%"]=2313, + ["map_monsters_damage_taken_+%"]=8538, + ["map_monsters_drop_ground_fire_on_death_base_radius"]=2349, + ["map_monsters_enemy_phys_reduction_%_penalty_vs_hit"]=8539, + ["map_monsters_energy_shield_leech_resistance_%"]=8540, + ["map_monsters_enrage_on_low_life"]=8541, + ["map_monsters_freeze_duration_+%"]=8542, + ["map_monsters_gain_x_endurance_charges_every_20_seconds"]=2337, + ["map_monsters_gain_x_frenzy_charges_every_20_seconds"]=2334, + ["map_monsters_gain_x_power_charges_every_20_seconds"]=2340, + ["map_monsters_global_bleed_on_hit"]=8543, + ["map_monsters_global_poison_on_hit"]=8544, + ["map_monsters_have_onslaught"]=2314, + ["map_monsters_ignite_duration_+%"]=8545, + ["map_monsters_immune_to_a_random_status_ailment_or_stun"]=2343, + ["map_monsters_life_+%"]=2300, + ["map_monsters_life_leech_resistance_%"]=2311, + ["map_monsters_maim_on_hit_%_chance"]=8546, + ["map_monsters_mana_leech_resistance_%"]=2312, + ["map_monsters_maximum_life_%_to_add_to_maximum_energy_shield"]=8547, + ["map_monsters_movement_speed_+%"]=2315, + ["map_monsters_movement_speed_cannot_be_reduced_below_base"]=8548, + ["map_monsters_near_shrines_are_chilled"]=8549, + ["map_monsters_penetrate_elemental_resistances_%"]=8550, + ["map_monsters_petrification_for_X_seconds_on_hit"]=8106, + ["map_monsters_physical_damage_%_to_add_as_random_element"]=8553, + ["map_monsters_poison_on_hit"]=2326, + ["map_monsters_reduce_enemy_chaos_resistance_%"]=8554, + ["map_monsters_reduce_enemy_cold_resistance_%"]=8555, + ["map_monsters_reduce_enemy_fire_resistance_%"]=8556, + ["map_monsters_reduce_enemy_lightning_resistance_%"]=8557, + ["map_monsters_reflect_%_elemental_damage"]=2319, + ["map_monsters_reflect_%_physical_damage"]=2318, + ["map_monsters_reflect_curses"]=2346, + ["map_monsters_remove_%_of_mana_on_hit"]=8560, + ["map_monsters_remove_charges_on_hit_%"]=8558, + ["map_monsters_remove_enemy_flask_charge_on_hit_%_chance"]=8559, + ["map_monsters_shock_effect_+%"]=8561, + ["map_monsters_spawned_with_talisman_drop_additional_rare_items"]=8562, + ["map_monsters_spell_damage_%_suppressed"]=8563, + ["map_monsters_spell_suppression_chance_%"]=8564, + ["map_monsters_spells_chance_to_hinder_on_hit_%_chance"]=8565, + ["map_monsters_steal_charges"]=8566, + ["map_monsters_summon_specific_monsters_on_death"]=8567, + ["map_monsters_that_drop_silver_coin_drop_x_additional_silver_coins"]=8568, + ["map_monsters_unaffected_by_curses"]=8569, + ["map_monsters_with_silver_coins_drop_x_additional_currency_items"]=8571, + ["map_monsters_with_silver_coins_drop_x_additional_rare_items"]=8572, + ["map_monsters_withered_on_hit_for_2_seconds_%_chance"]=8573, + ["map_monstrous_treasure_no_monsters"]=8574, + ["map_movement_velocity_+%_per_poison_stack"]=8575, + ["map_nemesis_dropped_items_+"]=8576, + ["map_next_area_contains_x_additional_bearers_of_the_guardian_packs"]=8577, + ["map_next_area_contains_x_additional_voidspawn_of_abaxoth_packs"]=8578, + ["map_no_experience_gain"]=8579, + ["map_no_magic_items_drop"]=8580, + ["map_no_rare_items_drop"]=8581, + ["map_no_refills_in_town"]=2252, + ["map_no_stashes"]=8582, + ["map_no_uniques_drop_randomly"]=8583, + ["map_no_vendors"]=8584, + ["map_non_unique_equipment_drops_as_sell_price"]=2975, + ["map_non_unique_items_drop_normal"]=8585, + ["map_non_unique_monster_life_regeneration_rate_per_minute_%"]=8586, + ["map_non_unique_monsters_spawn_X_monsters_on_death"]=2279, + ["map_normal_items_drop_as_magic"]=8587, + ["map_normal_monster_life_regeneration_rate_per_minute_%"]=4222, + ["map_nuke_everything"]=8588, + ["map_num_additional_random_scarab_effects"]=8589, ["map_num_extra_abysses"]=109, - ["map_num_extra_blights_"]=528, - ["map_num_extra_gloom_shrines"]=8328, - ["map_num_extra_harbingers"]=8329, - ["map_num_extra_invasion_bosses"]=2519, - ["map_num_extra_resonating_shrines"]=8330, - ["map_num_extra_shrines"]=2236, - ["map_num_extra_strongboxes"]=2244, - ["map_number_of_additional_mines_to_place"]=8331, - ["map_number_of_additional_mods"]=8332, - ["map_number_of_additional_prefixes"]=8333, - ["map_number_of_additional_silver_coin_drops"]=8334, - ["map_number_of_additional_suffixes"]=8335, - ["map_number_of_additional_totems_allowed"]=8337, - ["map_number_of_additional_traps_to_throw"]=8336, + ["map_num_extra_blights_"]=537, + ["map_num_extra_gloom_shrines"]=8590, + ["map_num_extra_harbingers"]=8591, + ["map_num_extra_invasion_bosses"]=2552, + ["map_num_extra_resonating_shrines"]=8592, + ["map_num_extra_shrines"]=2268, + ["map_num_extra_strongboxes"]=2276, + ["map_number_of_additional_mines_to_place"]=8593, + ["map_number_of_additional_mods"]=8594, + ["map_number_of_additional_prefixes"]=8595, + ["map_number_of_additional_silver_coin_drops"]=8596, + ["map_number_of_additional_suffixes"]=8597, + ["map_number_of_additional_totems_allowed"]=8599, + ["map_number_of_additional_traps_to_throw"]=8598, ["map_number_of_harbinger_portals"]=84, - ["map_number_of_magic_packs_+%"]=2245, - ["map_number_of_rare_packs_+%"]=2246, - ["map_on_complete_drop_additional_conqueror_map"]=2326, - ["map_on_complete_drop_additional_elder_guardian_map"]=2327, - ["map_on_complete_drop_additional_shaper_guardian_map"]=2328, - ["map_on_complete_drop_x_additional_forbidden_tomes"]=8338, - ["map_on_complete_drop_x_additional_maps"]=8339, - ["map_on_complete_drop_x_additional_memory_lines"]=8340, - ["map_owner_sulphite_gained_+%"]=8341, - ["map_packs_are_abomination_monsters"]=8342, - ["map_packs_are_animals"]=2226, - ["map_packs_are_bandits"]=2224, - ["map_packs_are_blackguards"]=8343, - ["map_packs_are_bone_husks"]=8142, - ["map_packs_are_demons"]=2227, - ["map_packs_are_ghosts"]=8344, - ["map_packs_are_goatmen"]=2225, - ["map_packs_are_humanoids"]=2228, - ["map_packs_are_kitava"]=8345, - ["map_packs_are_kitava_heralds"]=8143, - ["map_packs_are_lunaris"]=8346, - ["map_packs_are_porcupines"]=8144, - ["map_packs_are_sea_witches_and_spawn"]=2229, - ["map_packs_are_skeletons"]=2223, - ["map_packs_are_solaris"]=8347, - ["map_packs_are_spiders"]=8348, - ["map_packs_are_str_mission_totems"]=2222, - ["map_packs_are_totems"]=2221, - ["map_packs_are_undead_and_necromancers"]=2230, - ["map_packs_are_vaal"]=8349, - ["map_packs_fire_projectiles"]=2231, - ["map_packs_have_detonate_dead_totems"]=8350, - ["map_packs_have_pop_up_traps"]=4168, - ["map_packs_have_uber_tentacle_fiends"]=8351, - ["map_perandus_guards_are_rare"]=8352, - ["map_perandus_monsters_drop_perandus_coin_stack_%"]=8353, - ["map_percent_increased_effect_of_atlas_passives"]=8354, - ["map_petrificiation_statue_ambush"]=8355, - ["map_player_accuracy_rating_+%_final"]=8356, - ["map_player_action_speed_+%_per_recent_skill_use"]=8357, - ["map_player_additional_physical_damage_reduction_%_in_hellscape"]=1013, - ["map_player_attack_cast_and_movement_speed_+%_during_onslaught"]=8358, - ["map_player_base_chaos_damage_taken_per_minute"]=2248, - ["map_player_block_chance_%_in_hellscape"]=1014, - ["map_player_buff_time_passed_+%_only_buff_category"]=8359, - ["map_player_can_be_touched_by_tormented_spirits"]=8360, - ["map_player_cannot_block"]=8361, - ["map_player_cannot_block_attacks"]=8362, - ["map_player_cannot_block_spells"]=8363, - ["map_player_cannot_expose"]=2250, - ["map_player_cannot_recharge_energy_shield"]=8364, - ["map_player_cannot_suppress_spell_damage"]=8365, - ["map_player_chance_to_evade_attacks_%_in_hellscape"]=1015, - ["map_player_chance_to_gain_vaal_soul_on_kill_%"]=8366, - ["map_player_charges_gained_+%"]=8367, - ["map_player_cooldown_speed_+%_final"]=8368, - ["map_player_corrupt_blood_when_hit_%_average_damage_to_deal_per_minute_per_stack"]=3083, - ["map_player_create_enemy_meteor_daemon_on_flask_use_%_chance"]=8369, - ["map_player_curse_effect_on_self_+%"]=8370, - ["map_player_damage_+%_vs_breach_monsters"]=8371, - ["map_player_damage_taken_+%_vs_breach_monsters"]=8372, - ["map_player_damage_taken_+%_while_rampaging"]=8373, - ["map_player_damage_while_dead_+%"]=8374, - ["map_player_death_mark_on_rare_unique_kill_ms"]=8375, - ["map_player_disable_soul_gain_prevention"]=8376, - ["map_player_es_loss_per_second_in_hellscape"]=1016, - ["map_player_flask_recovery_is_instant"]=8377, - ["map_player_global_defences_+%"]=8378, - ["map_player_has_blood_magic_keystone"]=2249, - ["map_player_has_chaos_inoculation_keystone"]=2251, - ["map_player_has_level_X_conductivity"]=2259, - ["map_player_has_level_X_despair"]=2260, - ["map_player_has_level_X_elemental_weakness"]=2255, - ["map_player_has_level_X_enfeeble"]=2253, - ["map_player_has_level_X_flammability"]=2257, - ["map_player_has_level_X_frostbite"]=2258, - ["map_player_has_level_X_punishment"]=2256, - ["map_player_has_level_X_silence"]=2261, - ["map_player_has_level_X_temporal_chains"]=2254, - ["map_player_has_level_X_vulnerability"]=2252, - ["map_player_has_random_level_X_curse_every_10_seconds"]=8379, - ["map_player_life_and_es_recovery_speed_+%_final"]=8380, - ["map_player_life_loss_per_second_in_hellscape"]=1017, - ["map_player_life_regeneration_rate_per_minute_%_per_25_rampage_stacks"]=8381, - ["map_player_lose_no_experience_on_death"]=8382, - ["map_player_maximum_leech_rate_+%"]=8383, - ["map_player_movement_speed_+%_final_in_hellscape"]=1018, - ["map_player_movement_velocity_+%"]=8384, - ["map_player_no_regeneration"]=2262, - ["map_player_non_curse_aura_effect_+%"]=8385, - ["map_player_onslaught_on_kill_%"]=8386, - ["map_player_projectile_damage_+%_final"]=2265, - ["map_player_shrine_buff_effect_on_self_+%"]=8387, - ["map_player_shrine_effect_duration_+%"]=8388, - ["map_player_spell_suppression_chance_%_in_hellscape"]=1019, - ["map_player_status_recovery_speed_+%"]=2264, - ["map_player_travel_skills_disabled"]=8389, - ["map_players_action_speed_+%_while_chilled"]=3474, - ["map_players_additional_number_of_projectiles"]=2288, - ["map_players_and_monsters_chaos_damage_taken_+%"]=8390, - ["map_players_and_monsters_cold_damage_taken_+%"]=8391, - ["map_players_and_monsters_critical_strike_chance_+%"]=8392, - ["map_players_and_monsters_curses_are_reflected"]=8393, - ["map_players_and_monsters_damage_+%_per_curse"]=8394, - ["map_players_and_monsters_damage_taken_+%_while_stationary"]=8395, - ["map_players_and_monsters_fire_damage_taken_+%"]=8396, - ["map_players_and_monsters_have_onslaught_if_hit_recently"]=8397, - ["map_players_and_monsters_have_resolute_technique"]=8398, - ["map_players_and_monsters_lightning_damage_taken_+%"]=8399, - ["map_players_and_monsters_movement_speed_+%"]=8400, - ["map_players_and_monsters_physical_damage_taken_+%"]=8401, - ["map_players_are_poisoned_while_moving_chaos_damage_per_second"]=8403, - ["map_players_armour_+%_final"]=8404, - ["map_players_block_chance_+%"]=8405, - ["map_players_cannot_gain_endurance_charges"]=8406, - ["map_players_cannot_gain_flask_charges"]=8407, - ["map_players_cannot_gain_frenzy_charges"]=8408, - ["map_players_cannot_gain_power_charges"]=8409, - ["map_players_cannot_take_reflected_damage"]=8410, - ["map_players_convert_all_physical_damage_to_fire"]=2266, - ["map_players_cost_+%_per_skill_used_recently"]=8411, - ["map_players_damage_+%_final_per_equipped_item"]=8412, - ["map_players_gain_1_random_rare_monster_mod_on_kill_ms"]=8413, - ["map_players_gain_1_rare_monster_mods_on_kill_for_20_seconds_%"]=8414, - ["map_players_gain_instability_on_kill"]=8415, - ["map_players_gain_onslaught_after_opening_a_strongbox_ms"]=8416, - ["map_players_gain_onslaught_during_flask_effect"]=8417, - ["map_players_gain_rampage_stacks"]=2523, - ["map_players_gain_rare_monster_mods_on_kill_%_chance"]=8418, - ["map_players_gain_rare_monster_mods_on_kill_ms"]=3314, - ["map_players_gain_soul_eater_on_rare_kill_ms"]=3316, - ["map_players_have_point_blank"]=8419, - ["map_players_have_shroud_walker"]=8480, - ["map_players_minion_damage_+%_final_per_equipped_item"]=8420, - ["map_players_movement_skills_cooldown_speed_+%"]=8421, - ["map_players_movement_speed_+%"]=8422, - ["map_players_no_regeneration_including_es"]=8423, - ["map_players_resist_all_%"]=8424, - ["map_players_skill_area_of_effect_+%_final"]=8426, - ["map_players_spell_damage_%_suppressed"]=8427, - ["map_portal_expires_every_X_seconds"]=8428, - ["map_portal_limit"]=8429, - ["map_portals_do_not_expire"]=8430, - ["map_portals_expire_on_death_instead"]=8431, - ["map_possessed_monsters_drop_gilded_scarab_chance_%"]=8432, - ["map_possessed_monsters_drop_map_chance_%"]=8433, - ["map_possessed_monsters_drop_polished_scarab_chance_%"]=8434, - ["map_possessed_monsters_drop_rusted_scarab_chance_%"]=8435, - ["map_possessed_monsters_drop_unique_chance_%"]=8436, - ["map_possessed_monsters_drop_winged_scarab_chance_%"]=8437, - ["map_prefixes_do_not_apply"]=8438, - ["map_projectile_speed_+%"]=2267, - ["map_quality_instead_applies_to_pack_size"]=8439, - ["map_rampage_time_+%"]=8440, - ["map_random_unique_monster_is_possessed"]=8442, - ["map_random_zana_mod"]=8443, - ["map_rare_breach_monster_additional_breach_ring_drop_chance_%"]=8444, - ["map_rare_breach_monsters_drop_additional_shards"]=8445, - ["map_rare_monster_essence_daemon"]=8446, - ["map_rare_monster_fracture_on_death_chance_%"]=8447, - ["map_rare_monster_items_drop_corrupted_%"]=8448, - ["map_rare_monster_life_regeneration_rate_per_minute_%"]=4178, - ["map_rare_monster_num_additional_modifiers"]=8449, - ["map_rare_monster_volatile_on_death_%"]=8450, - ["map_rare_monsters_are_hindered"]=8451, - ["map_rare_monsters_drop_rare_prismatic_ring_on_death_%"]=8452, - ["map_rare_monsters_drop_x_additional_rare_items"]=8453, - ["map_rare_monsters_have_inner_treasure"]=8454, - ["map_rare_monsters_possessed_chance_%"]=8455, - ["map_rare_monsters_shaper_touched"]=8456, - ["map_rare_monsters_spawn_map_boss_on_death_chance_%"]=8457, - ["map_rare_unique_monsters_remove_%_life_mana_es_on_hit"]=8458, - ["map_rare_unique_monsters_spawn_tormented_spirit_on_low_life"]=8459, + ["map_number_of_magic_packs_+%"]=2277, + ["map_number_of_rare_packs_+%"]=2278, + ["map_on_complete_drop_additional_conqueror_map"]=2358, + ["map_on_complete_drop_additional_elder_guardian_map"]=2359, + ["map_on_complete_drop_additional_shaper_guardian_map"]=2360, + ["map_on_complete_drop_x_additional_forbidden_tomes"]=8600, + ["map_on_complete_drop_x_additional_maps"]=8601, + ["map_on_complete_drop_x_additional_memory_lines"]=8602, + ["map_owner_sulphite_gained_+%"]=8603, + ["map_packs_are_abomination_monsters"]=8604, + ["map_packs_are_animals"]=2258, + ["map_packs_are_bandits"]=2256, + ["map_packs_are_blackguards"]=8605, + ["map_packs_are_bone_husks"]=8404, + ["map_packs_are_demons"]=2259, + ["map_packs_are_ghosts"]=8606, + ["map_packs_are_goatmen"]=2257, + ["map_packs_are_humanoids"]=2260, + ["map_packs_are_kitava"]=8607, + ["map_packs_are_kitava_heralds"]=8405, + ["map_packs_are_lunaris"]=8608, + ["map_packs_are_porcupines"]=8406, + ["map_packs_are_sea_witches_and_spawn"]=2261, + ["map_packs_are_skeletons"]=2255, + ["map_packs_are_solaris"]=8609, + ["map_packs_are_spiders"]=8610, + ["map_packs_are_str_mission_totems"]=2254, + ["map_packs_are_totems"]=2253, + ["map_packs_are_undead_and_necromancers"]=2262, + ["map_packs_are_vaal"]=8611, + ["map_packs_fire_projectiles"]=2263, + ["map_packs_have_detonate_dead_totems"]=8612, + ["map_packs_have_pop_up_traps"]=4214, + ["map_packs_have_uber_tentacle_fiends"]=8613, + ["map_perandus_guards_are_rare"]=8614, + ["map_perandus_monsters_drop_perandus_coin_stack_%"]=8615, + ["map_percent_increased_effect_of_atlas_passives"]=8616, + ["map_petrificiation_statue_ambush"]=8617, + ["map_player_accuracy_rating_+%_final"]=8618, + ["map_player_action_speed_+%_per_recent_skill_use"]=8619, + ["map_player_additional_physical_damage_reduction_%_in_hellscape"]=1037, + ["map_player_attack_cast_and_movement_speed_+%_during_onslaught"]=8620, + ["map_player_base_chaos_damage_taken_per_minute"]=2280, + ["map_player_block_chance_%_in_hellscape"]=1038, + ["map_player_buff_time_passed_+%_only_buff_category"]=8621, + ["map_player_can_be_touched_by_tormented_spirits"]=8622, + ["map_player_cannot_block"]=8623, + ["map_player_cannot_block_attacks"]=8624, + ["map_player_cannot_block_spells"]=8625, + ["map_player_cannot_expose"]=2282, + ["map_player_cannot_recharge_energy_shield"]=8626, + ["map_player_cannot_suppress_spell_damage"]=8627, + ["map_player_chance_to_evade_attacks_%_in_hellscape"]=1039, + ["map_player_chance_to_gain_vaal_soul_on_kill_%"]=8628, + ["map_player_charges_gained_+%"]=8629, + ["map_player_cooldown_speed_+%_final"]=8630, + ["map_player_corrupt_blood_when_hit_%_average_damage_to_deal_per_minute_per_stack"]=3125, + ["map_player_create_enemy_meteor_daemon_on_flask_use_%_chance"]=8631, + ["map_player_curse_effect_on_self_+%"]=8632, + ["map_player_damage_+%_vs_breach_monsters"]=8633, + ["map_player_damage_taken_+%_vs_breach_monsters"]=8634, + ["map_player_damage_taken_+%_while_rampaging"]=8635, + ["map_player_damage_while_dead_+%"]=8636, + ["map_player_death_mark_on_rare_unique_kill_ms"]=8637, + ["map_player_disable_soul_gain_prevention"]=8638, + ["map_player_es_loss_per_second_in_hellscape"]=1040, + ["map_player_flask_recovery_is_instant"]=8639, + ["map_player_global_defences_+%"]=8640, + ["map_player_has_blood_magic_keystone"]=2281, + ["map_player_has_chaos_inoculation_keystone"]=2283, + ["map_player_has_level_X_conductivity"]=2291, + ["map_player_has_level_X_despair"]=2292, + ["map_player_has_level_X_elemental_weakness"]=2287, + ["map_player_has_level_X_enfeeble"]=2285, + ["map_player_has_level_X_flammability"]=2289, + ["map_player_has_level_X_frostbite"]=2290, + ["map_player_has_level_X_punishment"]=2288, + ["map_player_has_level_X_silence"]=2293, + ["map_player_has_level_X_temporal_chains"]=2286, + ["map_player_has_level_X_vulnerability"]=2284, + ["map_player_has_random_level_X_curse_every_10_seconds"]=8641, + ["map_player_life_and_es_recovery_speed_+%_final"]=8642, + ["map_player_life_loss_per_second_in_hellscape"]=1041, + ["map_player_life_regeneration_rate_per_minute_%_per_25_rampage_stacks"]=8643, + ["map_player_lose_no_experience_on_death"]=8644, + ["map_player_maximum_leech_rate_+%"]=8645, + ["map_player_movement_speed_+%_final_in_hellscape"]=1042, + ["map_player_movement_velocity_+%"]=8646, + ["map_player_no_regeneration"]=2294, + ["map_player_non_curse_aura_effect_+%"]=8647, + ["map_player_onslaught_on_kill_%"]=8648, + ["map_player_projectile_damage_+%_final"]=2297, + ["map_player_shrine_buff_effect_on_self_+%"]=8649, + ["map_player_shrine_effect_duration_+%"]=8650, + ["map_player_spell_suppression_chance_%_in_hellscape"]=1043, + ["map_player_status_recovery_speed_+%"]=2296, + ["map_player_travel_skills_disabled"]=8651, + ["map_players_action_speed_+%_while_chilled"]=3519, + ["map_players_additional_number_of_projectiles"]=2320, + ["map_players_and_monsters_chaos_damage_taken_+%"]=8652, + ["map_players_and_monsters_cold_damage_taken_+%"]=8653, + ["map_players_and_monsters_critical_strike_chance_+%"]=8654, + ["map_players_and_monsters_curses_are_reflected"]=8655, + ["map_players_and_monsters_damage_+%_per_curse"]=8656, + ["map_players_and_monsters_damage_taken_+%_while_stationary"]=8657, + ["map_players_and_monsters_fire_damage_taken_+%"]=8658, + ["map_players_and_monsters_have_onslaught_if_hit_recently"]=8659, + ["map_players_and_monsters_have_resolute_technique"]=8660, + ["map_players_and_monsters_lightning_damage_taken_+%"]=8661, + ["map_players_and_monsters_movement_speed_+%"]=8662, + ["map_players_and_monsters_physical_damage_taken_+%"]=8663, + ["map_players_are_poisoned_while_moving_chaos_damage_per_second"]=8665, + ["map_players_armour_+%_final"]=8666, + ["map_players_block_chance_+%"]=8667, + ["map_players_cannot_gain_endurance_charges"]=8668, + ["map_players_cannot_gain_flask_charges"]=8669, + ["map_players_cannot_gain_frenzy_charges"]=8670, + ["map_players_cannot_gain_power_charges"]=8671, + ["map_players_cannot_take_reflected_damage"]=8672, + ["map_players_convert_all_physical_damage_to_fire"]=2298, + ["map_players_cost_+%_per_skill_used_recently"]=8673, + ["map_players_damage_+%_final_per_equipped_item"]=8674, + ["map_players_gain_1_random_rare_monster_mod_on_kill_ms"]=8675, + ["map_players_gain_1_rare_monster_mods_on_kill_for_20_seconds_%"]=8676, + ["map_players_gain_instability_on_kill"]=8677, + ["map_players_gain_onslaught_after_opening_a_strongbox_ms"]=8678, + ["map_players_gain_onslaught_during_flask_effect"]=8679, + ["map_players_gain_rampage_stacks"]=2556, + ["map_players_gain_rare_monster_mods_on_kill_%_chance"]=8680, + ["map_players_gain_rare_monster_mods_on_kill_ms"]=3356, + ["map_players_gain_soul_eater_on_rare_kill_ms"]=3358, + ["map_players_have_point_blank"]=8681, + ["map_players_have_shroud_walker"]=8742, + ["map_players_minion_damage_+%_final_per_equipped_item"]=8682, + ["map_players_movement_skills_cooldown_speed_+%"]=8683, + ["map_players_movement_speed_+%"]=8684, + ["map_players_no_regeneration_including_es"]=8685, + ["map_players_resist_all_%"]=8686, + ["map_players_skill_area_of_effect_+%_final"]=8688, + ["map_players_spell_damage_%_suppressed"]=8689, + ["map_portal_expires_every_X_seconds"]=8690, + ["map_portal_limit"]=8691, + ["map_portals_do_not_expire"]=8692, + ["map_portals_expire_on_death_instead"]=8693, + ["map_possessed_monsters_drop_gilded_scarab_chance_%"]=8694, + ["map_possessed_monsters_drop_map_chance_%"]=8695, + ["map_possessed_monsters_drop_polished_scarab_chance_%"]=8696, + ["map_possessed_monsters_drop_rusted_scarab_chance_%"]=8697, + ["map_possessed_monsters_drop_unique_chance_%"]=8698, + ["map_possessed_monsters_drop_winged_scarab_chance_%"]=8699, + ["map_prefixes_do_not_apply"]=8700, + ["map_projectile_speed_+%"]=2299, + ["map_quality_instead_applies_to_pack_size"]=8701, + ["map_rampage_time_+%"]=8702, + ["map_random_unique_monster_is_possessed"]=8704, + ["map_random_zana_mod"]=8705, + ["map_rare_breach_monster_additional_breach_ring_drop_chance_%"]=8706, + ["map_rare_breach_monsters_drop_additional_shards"]=8707, + ["map_rare_monster_essence_daemon"]=8708, + ["map_rare_monster_fracture_on_death_chance_%"]=8709, + ["map_rare_monster_items_drop_corrupted_%"]=8710, + ["map_rare_monster_life_regeneration_rate_per_minute_%"]=4224, + ["map_rare_monster_num_additional_modifiers"]=8711, + ["map_rare_monster_volatile_on_death_%"]=8712, + ["map_rare_monsters_are_hindered"]=8713, + ["map_rare_monsters_drop_rare_prismatic_ring_on_death_%"]=8714, + ["map_rare_monsters_drop_x_additional_rare_items"]=8715, + ["map_rare_monsters_have_inner_treasure"]=8716, + ["map_rare_monsters_possessed_chance_%"]=8717, + ["map_rare_monsters_shaper_touched"]=8718, + ["map_rare_monsters_spawn_map_boss_on_death_chance_%"]=8719, + ["map_rare_unique_monsters_remove_%_life_mana_es_on_hit"]=8720, + ["map_rare_unique_monsters_spawn_tormented_spirit_on_low_life"]=8721, ["map_reliquary_must_complete_abysses"]=111, - ["map_reliquary_must_complete_blights"]=530, - ["map_reliquary_must_complete_breaches"]=2517, - ["map_reliquary_must_complete_expedition"]=420, + ["map_reliquary_must_complete_blights"]=539, + ["map_reliquary_must_complete_breaches"]=2550, + ["map_reliquary_must_complete_expedition"]=427, ["map_reliquary_must_complete_incursions"]=98, - ["map_reliquary_must_complete_legions"]=1022, - ["map_reliquary_must_complete_rituals"]=460, - ["map_reliquary_must_complete_strongboxes"]=7824, - ["map_reliquary_must_complete_ultimatum"]=436, - ["map_reliquary_must_open_heist_caches"]=198, - ["map_ritual_additional_reward_rerolls"]=8460, - ["map_ritual_cannot_recover_life_or_energy_shield_above_X_%"]=459, - ["map_ritual_number_of_free_rerolls"]=8461, - ["map_ritual_scarab_more_likely_%"]=10218, - ["map_ritual_tribute_+%"]=8462, - ["map_ritual_uber_rune_type_weighting_+%"]=8463, - ["map_rogue_exile_attack_cast_and_movement_speed_+%"]=8464, - ["map_rogue_exile_drop_skill_gem_with_quality"]=8465, - ["map_rogue_exiles_are_doubled"]=8466, - ["map_rogue_exiles_are_doubled_chance_%"]=8467, - ["map_rogue_exiles_damage_+%"]=8468, - ["map_rogue_exiles_drop_additional_currency_items_with_quality"]=8469, - ["map_rogue_exiles_drop_x_additional_jewels"]=8470, - ["map_rogue_exiles_dropped_items_are_corrupted"]=8471, - ["map_rogue_exiles_dropped_items_are_duplicated"]=8472, - ["map_rogue_exiles_dropped_items_are_fractured_chance_%"]=8473, - ["map_rogue_exiles_dropped_items_are_fully_linked"]=8474, - ["map_rogue_exiles_maximum_life_+%"]=8475, - ["map_runic_monster_damage_+%_final"]=419, - ["map_runic_monster_life_+%_final"]=418, - ["map_settlers_scarab_more_likely_%"]=10219, - ["map_shaper_rare_chance_+%"]=8476, - ["map_shrine_monster_life_+%_final"]=8477, - ["map_shrines_are_darkshrines"]=2237, - ["map_shrines_drop_x_currency_items_on_activation"]=8478, - ["map_shrines_grant_a_random_additional_effect"]=8479, - ["map_simulacrum_reward_level_+"]=8481, - ["map_size_+%"]=2178, - ["map_solo_mode"]=8482, - ["map_spawn_X_additional_incursion_architects"]=8483, - ["map_spawn_abysses"]=8484, - ["map_spawn_additional_empowered_vaal_chests"]=8485, - ["map_spawn_affliction_mirror"]=8486, - ["map_spawn_bestiary_encounters"]=8487, - ["map_spawn_betrayals"]=2514, - ["map_spawn_beyond_boss_when_beyond_boss_slain_%"]=8488, - ["map_spawn_cadiro_%_chance"]=8489, - ["map_spawn_exile_per_area_%"]=2511, - ["map_spawn_extra_exiles"]=2234, - ["map_spawn_extra_perandus_chests"]=8490, - ["map_spawn_extra_talismans"]=2241, - ["map_spawn_extra_torment_spirits"]=2243, - ["map_spawn_extra_warbands"]=2235, - ["map_spawn_harbingers"]=2238, - ["map_spawn_heist_smugglers_cache"]=196, - ["map_spawn_incursion_encounters"]=8491, - ["map_spawn_perandus_chests"]=2240, - ["map_spawn_settlers_ore"]=8492, - ["map_spawn_talismans"]=2239, - ["map_spawn_tormented_spirits"]=2520, - ["map_spawn_two_bosses"]=2322, - ["map_spawn_x_additional_heist_smugglers_caches"]=8493, - ["map_spawn_x_random_map_bosses"]=8494, - ["map_storm_area_of_effect_+%"]=8495, + ["map_reliquary_must_complete_legions"]=1046, + ["map_reliquary_must_complete_rituals"]=468, + ["map_reliquary_must_complete_strongboxes"]=8085, + ["map_reliquary_must_complete_ultimatum"]=443, + ["map_reliquary_must_open_heist_caches"]=199, + ["map_ritual_additional_reward_rerolls"]=8722, + ["map_ritual_cannot_recover_life_or_energy_shield_above_X_%"]=467, + ["map_ritual_number_of_free_rerolls"]=8723, + ["map_ritual_scarab_more_likely_%"]=10544, + ["map_ritual_tribute_+%"]=8724, + ["map_ritual_uber_rune_type_weighting_+%"]=8725, + ["map_rogue_exile_attack_cast_and_movement_speed_+%"]=8726, + ["map_rogue_exile_drop_skill_gem_with_quality"]=8727, + ["map_rogue_exiles_are_doubled"]=8728, + ["map_rogue_exiles_are_doubled_chance_%"]=8729, + ["map_rogue_exiles_damage_+%"]=8730, + ["map_rogue_exiles_drop_additional_currency_items_with_quality"]=8731, + ["map_rogue_exiles_drop_x_additional_jewels"]=8732, + ["map_rogue_exiles_dropped_items_are_corrupted"]=8733, + ["map_rogue_exiles_dropped_items_are_duplicated"]=8734, + ["map_rogue_exiles_dropped_items_are_fractured_chance_%"]=8735, + ["map_rogue_exiles_dropped_items_are_fully_linked"]=8736, + ["map_rogue_exiles_maximum_life_+%"]=8737, + ["map_runic_monster_damage_+%_final"]=426, + ["map_runic_monster_life_+%_final"]=425, + ["map_settlers_scarab_more_likely_%"]=10545, + ["map_shaper_rare_chance_+%"]=8738, + ["map_shrine_monster_life_+%_final"]=8739, + ["map_shrines_are_darkshrines"]=2269, + ["map_shrines_drop_x_currency_items_on_activation"]=8740, + ["map_shrines_grant_a_random_additional_effect"]=8741, + ["map_simulacrum_reward_level_+"]=8743, + ["map_size_+%"]=2210, + ["map_solo_mode"]=8744, + ["map_spawn_X_additional_incursion_architects"]=8745, + ["map_spawn_abysses"]=8746, + ["map_spawn_additional_empowered_vaal_chests"]=8747, + ["map_spawn_affliction_mirror"]=8748, + ["map_spawn_bestiary_encounters"]=8749, + ["map_spawn_betrayals"]=2547, + ["map_spawn_beyond_boss_when_beyond_boss_slain_%"]=8750, + ["map_spawn_cadiro_%_chance"]=8751, + ["map_spawn_exile_per_area_%"]=2544, + ["map_spawn_extra_exiles"]=2266, + ["map_spawn_extra_perandus_chests"]=8752, + ["map_spawn_extra_talismans"]=2273, + ["map_spawn_extra_torment_spirits"]=2275, + ["map_spawn_extra_warbands"]=2267, + ["map_spawn_harbingers"]=2270, + ["map_spawn_heist_smugglers_cache"]=197, + ["map_spawn_incursion_encounters"]=8753, + ["map_spawn_perandus_chests"]=2272, + ["map_spawn_settlers_ore"]=8754, + ["map_spawn_talismans"]=2271, + ["map_spawn_tormented_spirits"]=2553, + ["map_spawn_two_bosses"]=2354, + ["map_spawn_x_additional_heist_smugglers_caches"]=8755, + ["map_spawn_x_random_map_bosses"]=8756, + ["map_storm_area_of_effect_+%"]=8757, ["map_strongbox_chain_length"]=102, - ["map_strongbox_items_dropped_are_mirrored"]=8496, - ["map_strongbox_monsters_attack_speed_+%"]=8497, + ["map_strongbox_items_dropped_are_mirrored"]=8758, + ["map_strongbox_monsters_attack_speed_+%"]=8759, ["map_strongbox_monsters_damage_+%"]=158, - ["map_strongbox_monsters_item_quantity_+%"]=8498, + ["map_strongbox_monsters_item_quantity_+%"]=8760, ["map_strongbox_monsters_life_+%"]=151, - ["map_strongbox_scarab_more_likely_%"]=10220, + ["map_strongbox_scarab_more_likely_%"]=10546, ["map_strongboxes_additional_pack_chance_%"]=144, - ["map_strongboxes_are_corrupted"]=8499, - ["map_strongboxes_at_least_rare"]=8500, - ["map_strongboxes_chance_to_be_unique_+%"]=8501, - ["map_strongboxes_drop_x_additional_rare_items"]=8502, - ["map_strongboxes_minimum_rarity"]=8503, - ["map_strongboxes_vaal_orb_drop_chance_%"]=8192, - ["map_suffixes_do_not_apply"]=8504, - ["map_supporter_al_hezmin_spawn_daemon"]=7836, - ["map_supporter_all_influence_packs"]=8505, - ["map_supporter_all_spawn_daemon"]=7837, - ["map_supporter_atziri_spawn_daemon"]=7838, - ["map_supporter_baran_spawn_daemon"]=7839, - ["map_supporter_comet_spawn_daemon"]=8506, - ["map_supporter_curse_field_daemon_spawn"]=8507, - ["map_supporter_dangerous_area"]=8441, - ["map_supporter_drox_daemon"]=7840, - ["map_supporter_heist_cache"]=197, - ["map_supporter_maddening_tentacle_daemon_spawn"]=8207, - ["map_supporter_maven_follower"]=8508, - ["map_supporter_players_random_movement_velocity_+%_final_when_hit"]=8509, - ["map_supporter_players_sent_to_void_league_on_death"]=8425, - ["map_supporter_ruin_ghost_daemon_spawn"]=432, - ["map_supporter_sirus_spawn_daemon"]=7843, - ["map_supporter_uber_elder_spawn_daemon"]=7841, - ["map_supporter_uber_shaper_spawn_daemon"]=7842, - ["map_supporter_union_of_souls"]=8631, - ["map_supporter_veritania_spawn_daemon"]=7844, - ["map_supporter_volatile_on_death_chance_%"]=8308, - ["map_supporter_volatile_on_death_chance_legion"]=1020, - ["map_synthesis_league"]=8510, - ["map_synthesis_spawn_additional_abyss_bone_chest_clusters"]=8511, - ["map_synthesis_spawn_additional_bloodworm_barrel_clusters"]=8512, - ["map_synthesis_spawn_additional_fungal_chest_clusters"]=8513, - ["map_synthesis_spawn_additional_magic_ambush_chest"]=8514, - ["map_synthesis_spawn_additional_normal_ambush_chest"]=8515, - ["map_synthesis_spawn_additional_parasite_barrel_clusters"]=8516, - ["map_synthesis_spawn_additional_rare_ambush_chest"]=8517, - ["map_synthesis_spawn_additional_volatile_barrel_clusters"]=8518, - ["map_synthesis_spawn_additional_wealthy_barrel_clusters"]=8519, - ["map_synthesised_magic_monster_additional_breach_splinter_drop_chance_%"]=8520, - ["map_synthesised_magic_monster_additional_currency_item_drop_chance_%"]=8521, - ["map_synthesised_magic_monster_additional_currency_shard_drop_chance_%"]=8522, - ["map_synthesised_magic_monster_additional_divination_card_drop_chance_%"]=8523, - ["map_synthesised_magic_monster_additional_elder_item_drop_chance_%"]=8524, - ["map_synthesised_magic_monster_additional_fossil_drop_chance_%"]=8525, - ["map_synthesised_magic_monster_additional_quality_currency_item_drop_chance_%"]=8526, - ["map_synthesised_magic_monster_additional_shaper_item_drop_chance_%"]=8527, - ["map_synthesised_magic_monster_drop_additional_currency"]=8528, - ["map_synthesised_magic_monster_drop_additional_currency_shard"]=8529, - ["map_synthesised_magic_monster_drop_additional_quality_currency"]=8530, - ["map_synthesised_magic_monster_dropped_item_quantity_+%"]=8531, - ["map_synthesised_magic_monster_dropped_item_rarity_+%"]=8532, - ["map_synthesised_magic_monster_fractured_item_drop_chance_+%"]=8533, - ["map_synthesised_magic_monster_items_drop_corrupted_%"]=8534, - ["map_synthesised_magic_monster_map_drop_chance_+%"]=8535, - ["map_synthesised_magic_monster_slain_experience_+%"]=8536, - ["map_synthesised_magic_monster_unique_item_drop_chance_+%"]=8537, - ["map_synthesised_monster_additional_breach_splinter_drop_chance_%"]=8538, - ["map_synthesised_monster_additional_currency_item_drop_chance_%"]=8539, - ["map_synthesised_monster_additional_currency_shard_drop_chance_%"]=8540, - ["map_synthesised_monster_additional_divination_card_drop_chance_%"]=8541, - ["map_synthesised_monster_additional_elder_item_drop_chance_%"]=8542, - ["map_synthesised_monster_additional_fossil_drop_chance_%"]=8543, - ["map_synthesised_monster_additional_quality_currency_item_drop_chance_%"]=8544, - ["map_synthesised_monster_additional_shaper_item_drop_chance_%"]=8545, - ["map_synthesised_monster_dropped_item_quantity_+%"]=8546, - ["map_synthesised_monster_dropped_item_rarity_+%"]=8547, - ["map_synthesised_monster_fractured_item_drop_chance_+%"]=8548, - ["map_synthesised_monster_items_drop_corrupted_%"]=8549, - ["map_synthesised_monster_map_drop_chance_+%"]=8550, - ["map_synthesised_monster_pack_size_+%"]=8551, - ["map_synthesised_monster_slain_experience_+%"]=8552, - ["map_synthesised_monster_unique_item_drop_chance_+%"]=8553, - ["map_synthesised_rare_monster_additional_abyss_jewel_drop_chance_%"]=8554, - ["map_synthesised_rare_monster_additional_breach_splinter_drop_chance_%"]=8555, - ["map_synthesised_rare_monster_additional_currency_item_drop_chance_%"]=8556, - ["map_synthesised_rare_monster_additional_currency_shard_drop_chance_%"]=8557, - ["map_synthesised_rare_monster_additional_divination_card_drop_chance_%"]=8558, - ["map_synthesised_rare_monster_additional_elder_item_drop_chance_%"]=8559, - ["map_synthesised_rare_monster_additional_essence_drop_chance_%"]=8560, - ["map_synthesised_rare_monster_additional_fossil_drop_chance_%"]=8561, - ["map_synthesised_rare_monster_additional_jewel_drop_chance_%"]=8562, - ["map_synthesised_rare_monster_additional_map_drop_chance_%"]=8563, - ["map_synthesised_rare_monster_additional_quality_currency_item_drop_chance_%"]=8564, - ["map_synthesised_rare_monster_additional_shaper_item_drop_chance_%"]=8565, - ["map_synthesised_rare_monster_additional_talisman_drop_chance_%"]=8566, - ["map_synthesised_rare_monster_additional_vaal_fragment_drop_chance_%"]=8567, - ["map_synthesised_rare_monster_additional_veiled_item_drop_chance_%"]=8568, - ["map_synthesised_rare_monster_drop_additional_breach_splinter"]=8569, - ["map_synthesised_rare_monster_drop_additional_currency"]=8570, - ["map_synthesised_rare_monster_drop_additional_currency_shard"]=8571, - ["map_synthesised_rare_monster_drop_additional_quality_currency"]=8572, - ["map_synthesised_rare_monster_dropped_item_quantity_+%"]=8573, - ["map_synthesised_rare_monster_dropped_item_rarity_+%"]=8574, - ["map_synthesised_rare_monster_fractured_item_drop_chance_+%"]=8575, - ["map_synthesised_rare_monster_gives_mods_to_killer_chance_%"]=8576, - ["map_synthesised_rare_monster_items_drop_corrupted_%"]=8577, - ["map_synthesised_rare_monster_map_drop_chance_+%"]=8578, - ["map_synthesised_rare_monster_resurrect_as_ally_chance_%"]=8579, - ["map_synthesised_rare_monster_slain_experience_+%"]=8580, - ["map_synthesised_rare_monster_unique_item_drop_chance_+%"]=8581, - ["map_talismans_dropped_as_rare"]=8582, - ["map_talismans_higher_tier"]=8583, - ["map_tempest_area_of_effect_+%_visible"]=8584, - ["map_tempest_base_ground_desecration_damage_to_deal_per_minute"]=2217, - ["map_tempest_base_ground_fire_damage_to_deal_per_minute"]=2213, + ["map_strongboxes_are_corrupted"]=8761, + ["map_strongboxes_at_least_rare"]=8762, + ["map_strongboxes_chance_to_be_unique_+%"]=8763, + ["map_strongboxes_drop_x_additional_rare_items"]=8764, + ["map_strongboxes_minimum_rarity"]=8765, + ["map_strongboxes_vaal_orb_drop_chance_%"]=8454, + ["map_suffixes_do_not_apply"]=8766, + ["map_supporter_al_hezmin_spawn_daemon"]=8097, + ["map_supporter_all_influence_packs"]=8767, + ["map_supporter_all_spawn_daemon"]=8098, + ["map_supporter_atziri_spawn_daemon"]=8099, + ["map_supporter_baran_spawn_daemon"]=8100, + ["map_supporter_comet_spawn_daemon"]=8768, + ["map_supporter_curse_field_daemon_spawn"]=8769, + ["map_supporter_dangerous_area"]=8703, + ["map_supporter_drox_daemon"]=8101, + ["map_supporter_heist_cache"]=198, + ["map_supporter_maddening_tentacle_daemon_spawn"]=8469, + ["map_supporter_maven_follower"]=8770, + ["map_supporter_players_random_movement_velocity_+%_final_when_hit"]=8771, + ["map_supporter_players_sent_to_void_league_on_death"]=8687, + ["map_supporter_ruin_ghost_daemon_spawn"]=439, + ["map_supporter_sirus_spawn_daemon"]=8104, + ["map_supporter_uber_elder_spawn_daemon"]=8102, + ["map_supporter_uber_shaper_spawn_daemon"]=8103, + ["map_supporter_union_of_souls"]=8893, + ["map_supporter_veritania_spawn_daemon"]=8105, + ["map_supporter_volatile_on_death_chance_%"]=8570, + ["map_supporter_volatile_on_death_chance_legion"]=1044, + ["map_synthesis_league"]=8772, + ["map_synthesis_spawn_additional_abyss_bone_chest_clusters"]=8773, + ["map_synthesis_spawn_additional_bloodworm_barrel_clusters"]=8774, + ["map_synthesis_spawn_additional_fungal_chest_clusters"]=8775, + ["map_synthesis_spawn_additional_magic_ambush_chest"]=8776, + ["map_synthesis_spawn_additional_normal_ambush_chest"]=8777, + ["map_synthesis_spawn_additional_parasite_barrel_clusters"]=8778, + ["map_synthesis_spawn_additional_rare_ambush_chest"]=8779, + ["map_synthesis_spawn_additional_volatile_barrel_clusters"]=8780, + ["map_synthesis_spawn_additional_wealthy_barrel_clusters"]=8781, + ["map_synthesised_magic_monster_additional_breach_splinter_drop_chance_%"]=8782, + ["map_synthesised_magic_monster_additional_currency_item_drop_chance_%"]=8783, + ["map_synthesised_magic_monster_additional_currency_shard_drop_chance_%"]=8784, + ["map_synthesised_magic_monster_additional_divination_card_drop_chance_%"]=8785, + ["map_synthesised_magic_monster_additional_elder_item_drop_chance_%"]=8786, + ["map_synthesised_magic_monster_additional_fossil_drop_chance_%"]=8787, + ["map_synthesised_magic_monster_additional_quality_currency_item_drop_chance_%"]=8788, + ["map_synthesised_magic_monster_additional_shaper_item_drop_chance_%"]=8789, + ["map_synthesised_magic_monster_drop_additional_currency"]=8790, + ["map_synthesised_magic_monster_drop_additional_currency_shard"]=8791, + ["map_synthesised_magic_monster_drop_additional_quality_currency"]=8792, + ["map_synthesised_magic_monster_dropped_item_quantity_+%"]=8793, + ["map_synthesised_magic_monster_dropped_item_rarity_+%"]=8794, + ["map_synthesised_magic_monster_fractured_item_drop_chance_+%"]=8795, + ["map_synthesised_magic_monster_items_drop_corrupted_%"]=8796, + ["map_synthesised_magic_monster_map_drop_chance_+%"]=8797, + ["map_synthesised_magic_monster_slain_experience_+%"]=8798, + ["map_synthesised_magic_monster_unique_item_drop_chance_+%"]=8799, + ["map_synthesised_monster_additional_breach_splinter_drop_chance_%"]=8800, + ["map_synthesised_monster_additional_currency_item_drop_chance_%"]=8801, + ["map_synthesised_monster_additional_currency_shard_drop_chance_%"]=8802, + ["map_synthesised_monster_additional_divination_card_drop_chance_%"]=8803, + ["map_synthesised_monster_additional_elder_item_drop_chance_%"]=8804, + ["map_synthesised_monster_additional_fossil_drop_chance_%"]=8805, + ["map_synthesised_monster_additional_quality_currency_item_drop_chance_%"]=8806, + ["map_synthesised_monster_additional_shaper_item_drop_chance_%"]=8807, + ["map_synthesised_monster_dropped_item_quantity_+%"]=8808, + ["map_synthesised_monster_dropped_item_rarity_+%"]=8809, + ["map_synthesised_monster_fractured_item_drop_chance_+%"]=8810, + ["map_synthesised_monster_items_drop_corrupted_%"]=8811, + ["map_synthesised_monster_map_drop_chance_+%"]=8812, + ["map_synthesised_monster_pack_size_+%"]=8813, + ["map_synthesised_monster_slain_experience_+%"]=8814, + ["map_synthesised_monster_unique_item_drop_chance_+%"]=8815, + ["map_synthesised_rare_monster_additional_abyss_jewel_drop_chance_%"]=8816, + ["map_synthesised_rare_monster_additional_breach_splinter_drop_chance_%"]=8817, + ["map_synthesised_rare_monster_additional_currency_item_drop_chance_%"]=8818, + ["map_synthesised_rare_monster_additional_currency_shard_drop_chance_%"]=8819, + ["map_synthesised_rare_monster_additional_divination_card_drop_chance_%"]=8820, + ["map_synthesised_rare_monster_additional_elder_item_drop_chance_%"]=8821, + ["map_synthesised_rare_monster_additional_essence_drop_chance_%"]=8822, + ["map_synthesised_rare_monster_additional_fossil_drop_chance_%"]=8823, + ["map_synthesised_rare_monster_additional_jewel_drop_chance_%"]=8824, + ["map_synthesised_rare_monster_additional_map_drop_chance_%"]=8825, + ["map_synthesised_rare_monster_additional_quality_currency_item_drop_chance_%"]=8826, + ["map_synthesised_rare_monster_additional_shaper_item_drop_chance_%"]=8827, + ["map_synthesised_rare_monster_additional_talisman_drop_chance_%"]=8828, + ["map_synthesised_rare_monster_additional_vaal_fragment_drop_chance_%"]=8829, + ["map_synthesised_rare_monster_additional_veiled_item_drop_chance_%"]=8830, + ["map_synthesised_rare_monster_drop_additional_breach_splinter"]=8831, + ["map_synthesised_rare_monster_drop_additional_currency"]=8832, + ["map_synthesised_rare_monster_drop_additional_currency_shard"]=8833, + ["map_synthesised_rare_monster_drop_additional_quality_currency"]=8834, + ["map_synthesised_rare_monster_dropped_item_quantity_+%"]=8835, + ["map_synthesised_rare_monster_dropped_item_rarity_+%"]=8836, + ["map_synthesised_rare_monster_fractured_item_drop_chance_+%"]=8837, + ["map_synthesised_rare_monster_gives_mods_to_killer_chance_%"]=8838, + ["map_synthesised_rare_monster_items_drop_corrupted_%"]=8839, + ["map_synthesised_rare_monster_map_drop_chance_+%"]=8840, + ["map_synthesised_rare_monster_resurrect_as_ally_chance_%"]=8841, + ["map_synthesised_rare_monster_slain_experience_+%"]=8842, + ["map_synthesised_rare_monster_unique_item_drop_chance_+%"]=8843, + ["map_talismans_dropped_as_rare"]=8844, + ["map_talismans_higher_tier"]=8845, + ["map_tempest_area_of_effect_+%_visible"]=8846, + ["map_tempest_base_ground_desecration_damage_to_deal_per_minute"]=2249, + ["map_tempest_base_ground_fire_damage_to_deal_per_minute"]=2245, ["map_tempest_display_prefix"]=23, ["map_tempest_display_suffix"]=24, - ["map_tempest_frequency_+%"]=8585, - ["map_tempest_ground_ice"]=2214, - ["map_tempest_ground_lightning"]=2215, - ["map_tempest_ground_tar_movement_speed_+%"]=2216, - ["map_torment_scarab_more_likely_%"]=10221, - ["map_tormented_spirits_drop_x_additional_rare_items"]=8586, - ["map_tormented_spirits_duration_+%"]=8587, - ["map_tormented_spirits_movement_speed_+%"]=8588, - ["map_tormented_spirits_possess_players_instead_of_monsters"]=8589, - ["map_trialmaster_drops_stack_of_catalysts"]=8590, - ["map_uber_drowning_orb_ambush"]=8591, - ["map_uber_map_additional_synthesis_boss"]=8592, - ["map_uber_map_player_damage_cycle"]=8593, - ["map_uber_sawblades_ambush"]=8594, - ["map_uber_sirus_meteor_ambush"]=8595, - ["map_ultimatum_conquer_encounter_chance_+%"]=8596, - ["map_ultimatum_conquer_encounter_radius_+%"]=8597, - ["map_ultimatum_defense_encounter_altar_life_+%"]=8599, - ["map_ultimatum_defense_encounter_chance_+%"]=8598, - ["map_ultimatum_encounter_additional_chance_%"]=8600, - ["map_ultimatum_exterminate_encounter_chance_+%"]=8601, - ["map_ultimatum_exterminate_encounter_monsters_required_+%"]=8602, - ["map_ultimatum_lasts_13_rounds"]=8603, - ["map_ultimatum_modifiers_are_chosen_for_you"]=435, - ["map_ultimatum_modifiers_start_1_tier_higher"]=8604, - ["map_ultimatum_monster_experience_+%"]=8605, - ["map_ultimatum_monster_quantity_+%"]=8606, - ["map_ultimatum_rare_monster_quantity_+%"]=8607, - ["map_ultimatum_reward_abyss_chance_+%"]=8608, - ["map_ultimatum_reward_blight_chance_+%"]=8609, - ["map_ultimatum_reward_breach_chance_+%"]=8610, - ["map_ultimatum_reward_catalyst_chance_+%"]=8611, - ["map_ultimatum_reward_corrupted_rares_chance_+%"]=8612, - ["map_ultimatum_reward_currency_items_chance_+%"]=8613, - ["map_ultimatum_reward_delirium_chance_+%"]=8614, - ["map_ultimatum_reward_divination_cards_chance_+%"]=8615, - ["map_ultimatum_reward_duplicated_chance_%"]=8616, - ["map_ultimatum_reward_essence_chance_+%"]=8617, - ["map_ultimatum_reward_fossils_chance_+%"]=8618, - ["map_ultimatum_reward_fragments_chance_+%"]=8619, - ["map_ultimatum_reward_gem_chance_+%"]=8620, - ["map_ultimatum_reward_heist_chance_+%"]=8621, - ["map_ultimatum_reward_inscribed_ultimatums_chance_+%"]=8622, - ["map_ultimatum_reward_jewellery_chance_+%"]=8623, - ["map_ultimatum_reward_legion_chance_+%"]=8624, - ["map_ultimatum_reward_maps_chance_+%"]=8625, - ["map_ultimatum_reward_tiers_+"]=8626, - ["map_ultimatum_reward_unique_items_chance_+%"]=8627, - ["map_ultimatum_scarab_more_likely_%"]=10222, - ["map_ultimatum_survival_encounter_chance_+%"]=8628, - ["map_ultimatum_survival_encounter_time_+%"]=8629, - ["map_ultimatum_trialmaster_cannot_spawn"]=8630, - ["map_unique_boss_drops_divination_cards"]=8632, - ["map_unique_item_drop_chance_+%"]=8633, - ["map_unique_monster_items_drop_corrupted_%"]=8636, - ["map_unique_monsters_drop_corrupted_items"]=8634, - ["map_unique_monsters_have_X_shrine_effects"]=8635, - ["map_unique_side_area_return_portal_leads_to_new_unique_side_area_chance_%"]=8637, - ["map_uniques_scarab_more_likely_%"]=10223, - ["map_upgrade_X_packs_to_magic"]=8638, - ["map_upgrade_pack_to_magic_%_chance"]=8639, - ["map_upgrade_pack_to_rare_%_chance"]=8640, - ["map_upgrade_synthesised_pack_to_magic_%_chance"]=8641, - ["map_upgrade_synthesised_pack_to_rare_%_chance"]=8642, - ["map_vaal_monster_items_drop_corrupted_%"]=8643, - ["map_vaal_mortal_strongbox_chance_per_fragment_%"]=8644, - ["map_vaal_sacrifice_strongbox_chance_per_fragment_%"]=8645, - ["map_vaal_side_area_boss_damage_+%_final"]=8646, - ["map_vaal_side_area_boss_maximum_life_+%_final"]=8647, - ["map_vaal_side_area_chance_%"]=8648, - ["map_vaal_side_area_vaal_vessel_%_chance_to_duplicate_rewards"]=8649, - ["map_vaal_temple_spawn_additional_vaal_vessels"]=8650, - ["map_vaal_vessel_drop_X_divination_cards"]=8651, - ["map_vaal_vessel_drop_X_fossils"]=8652, - ["map_vaal_vessel_drop_X_level_21_gems"]=8653, - ["map_vaal_vessel_drop_X_levelled_vaal_gems"]=8654, - ["map_vaal_vessel_drop_X_maps_with_vaal_implicits"]=8655, - ["map_vaal_vessel_drop_X_mortal_fragments"]=8656, - ["map_vaal_vessel_drop_X_prophecies"]=8657, - ["map_vaal_vessel_drop_X_quality_23_gems"]=8658, - ["map_vaal_vessel_drop_X_rare_temple_items"]=8659, - ["map_vaal_vessel_drop_X_sacrifice_fragments"]=8660, - ["map_vaal_vessel_drop_X_tower_of_ordeals"]=8661, - ["map_vaal_vessel_drop_X_trialmaster_fragments"]=8662, - ["map_vaal_vessel_drop_X_vaal_gems"]=8663, - ["map_vaal_vessel_drop_X_vaal_orbs"]=8664, - ["map_vaal_vessel_drop_X_vaal_temple_maps"]=8665, - ["map_vaal_vessel_drop_x_double_implicit_corrupted_uniques"]=8666, - ["map_vaal_vessel_drop_x_single_implicit_corrupted_uniques"]=8667, - ["map_vaal_vessel_item_drop_quantity_+%"]=8668, - ["map_vaal_vessel_item_drop_rarity_+%"]=8669, - ["map_village_secondary_ore_chance_+%"]=8670, - ["map_warbands_packs_have_additional_elites"]=8671, - ["map_warbands_packs_have_additional_grunts"]=8672, - ["map_warbands_packs_have_additional_supports"]=8673, - ["map_watchstone_additional_packs_of_elder_monsters"]=8674, - ["map_watchstone_additional_packs_of_shaper_monsters"]=8675, - ["map_watchstone_monsters_damage_+%_final"]=8676, - ["map_watchstone_monsters_life_+%_final"]=8677, + ["map_tempest_frequency_+%"]=8847, + ["map_tempest_ground_ice"]=2246, + ["map_tempest_ground_lightning"]=2247, + ["map_tempest_ground_tar_movement_speed_+%"]=2248, + ["map_torment_scarab_more_likely_%"]=10547, + ["map_tormented_spirits_drop_x_additional_rare_items"]=8848, + ["map_tormented_spirits_duration_+%"]=8849, + ["map_tormented_spirits_movement_speed_+%"]=8850, + ["map_tormented_spirits_possess_players_instead_of_monsters"]=8851, + ["map_trialmaster_drops_stack_of_catalysts"]=8852, + ["map_uber_drowning_orb_ambush"]=8853, + ["map_uber_map_additional_synthesis_boss"]=8854, + ["map_uber_map_player_damage_cycle"]=8855, + ["map_uber_sawblades_ambush"]=8856, + ["map_uber_sirus_meteor_ambush"]=8857, + ["map_ultimatum_conquer_encounter_chance_+%"]=8858, + ["map_ultimatum_conquer_encounter_radius_+%"]=8859, + ["map_ultimatum_defense_encounter_altar_life_+%"]=8861, + ["map_ultimatum_defense_encounter_chance_+%"]=8860, + ["map_ultimatum_encounter_additional_chance_%"]=8862, + ["map_ultimatum_exterminate_encounter_chance_+%"]=8863, + ["map_ultimatum_exterminate_encounter_monsters_required_+%"]=8864, + ["map_ultimatum_lasts_13_rounds"]=8865, + ["map_ultimatum_modifiers_are_chosen_for_you"]=442, + ["map_ultimatum_modifiers_start_1_tier_higher"]=8866, + ["map_ultimatum_monster_experience_+%"]=8867, + ["map_ultimatum_monster_quantity_+%"]=8868, + ["map_ultimatum_rare_monster_quantity_+%"]=8869, + ["map_ultimatum_reward_abyss_chance_+%"]=8870, + ["map_ultimatum_reward_blight_chance_+%"]=8871, + ["map_ultimatum_reward_breach_chance_+%"]=8872, + ["map_ultimatum_reward_catalyst_chance_+%"]=8873, + ["map_ultimatum_reward_corrupted_rares_chance_+%"]=8874, + ["map_ultimatum_reward_currency_items_chance_+%"]=8875, + ["map_ultimatum_reward_delirium_chance_+%"]=8876, + ["map_ultimatum_reward_divination_cards_chance_+%"]=8877, + ["map_ultimatum_reward_duplicated_chance_%"]=8878, + ["map_ultimatum_reward_essence_chance_+%"]=8879, + ["map_ultimatum_reward_fossils_chance_+%"]=8880, + ["map_ultimatum_reward_fragments_chance_+%"]=8881, + ["map_ultimatum_reward_gem_chance_+%"]=8882, + ["map_ultimatum_reward_heist_chance_+%"]=8883, + ["map_ultimatum_reward_inscribed_ultimatums_chance_+%"]=8884, + ["map_ultimatum_reward_jewellery_chance_+%"]=8885, + ["map_ultimatum_reward_legion_chance_+%"]=8886, + ["map_ultimatum_reward_maps_chance_+%"]=8887, + ["map_ultimatum_reward_tiers_+"]=8888, + ["map_ultimatum_reward_unique_items_chance_+%"]=8889, + ["map_ultimatum_scarab_more_likely_%"]=10548, + ["map_ultimatum_survival_encounter_chance_+%"]=8890, + ["map_ultimatum_survival_encounter_time_+%"]=8891, + ["map_ultimatum_trialmaster_cannot_spawn"]=8892, + ["map_unique_boss_drops_divination_cards"]=8894, + ["map_unique_item_drop_chance_+%"]=8895, + ["map_unique_monster_items_drop_corrupted_%"]=8898, + ["map_unique_monsters_drop_corrupted_items"]=8896, + ["map_unique_monsters_have_X_shrine_effects"]=8897, + ["map_unique_side_area_return_portal_leads_to_new_unique_side_area_chance_%"]=8899, + ["map_uniques_scarab_more_likely_%"]=10549, + ["map_upgrade_X_packs_to_magic"]=8900, + ["map_upgrade_pack_to_magic_%_chance"]=8901, + ["map_upgrade_pack_to_rare_%_chance"]=8902, + ["map_upgrade_synthesised_pack_to_magic_%_chance"]=8903, + ["map_upgrade_synthesised_pack_to_rare_%_chance"]=8904, + ["map_vaal_monster_items_drop_corrupted_%"]=8905, + ["map_vaal_mortal_strongbox_chance_per_fragment_%"]=8906, + ["map_vaal_sacrifice_strongbox_chance_per_fragment_%"]=8907, + ["map_vaal_side_area_boss_damage_+%_final"]=8908, + ["map_vaal_side_area_boss_maximum_life_+%_final"]=8909, + ["map_vaal_side_area_chance_%"]=8910, + ["map_vaal_side_area_vaal_vessel_%_chance_to_duplicate_rewards"]=8911, + ["map_vaal_temple_spawn_additional_vaal_vessels"]=8912, + ["map_vaal_vessel_drop_X_divination_cards"]=8913, + ["map_vaal_vessel_drop_X_fossils"]=8914, + ["map_vaal_vessel_drop_X_level_21_gems"]=8915, + ["map_vaal_vessel_drop_X_levelled_vaal_gems"]=8916, + ["map_vaal_vessel_drop_X_maps_with_vaal_implicits"]=8917, + ["map_vaal_vessel_drop_X_mortal_fragments"]=8918, + ["map_vaal_vessel_drop_X_prophecies"]=8919, + ["map_vaal_vessel_drop_X_quality_23_gems"]=8920, + ["map_vaal_vessel_drop_X_rare_temple_items"]=8921, + ["map_vaal_vessel_drop_X_sacrifice_fragments"]=8922, + ["map_vaal_vessel_drop_X_tower_of_ordeals"]=8923, + ["map_vaal_vessel_drop_X_trialmaster_fragments"]=8924, + ["map_vaal_vessel_drop_X_vaal_gems"]=8925, + ["map_vaal_vessel_drop_X_vaal_orbs"]=8926, + ["map_vaal_vessel_drop_X_vaal_temple_maps"]=8927, + ["map_vaal_vessel_drop_x_double_implicit_corrupted_uniques"]=8928, + ["map_vaal_vessel_drop_x_single_implicit_corrupted_uniques"]=8929, + ["map_vaal_vessel_item_drop_quantity_+%"]=8930, + ["map_vaal_vessel_item_drop_rarity_+%"]=8931, + ["map_village_secondary_ore_chance_+%"]=8932, + ["map_warbands_packs_have_additional_elites"]=8933, + ["map_warbands_packs_have_additional_grunts"]=8934, + ["map_warbands_packs_have_additional_supports"]=8935, + ["map_watchstone_additional_packs_of_elder_monsters"]=8936, + ["map_watchstone_additional_packs_of_shaper_monsters"]=8937, + ["map_watchstone_monsters_damage_+%_final"]=8938, + ["map_watchstone_monsters_life_+%_final"]=8939, ["map_weapon_and_shields_drop_corrupted_with_implicit_%_chance"]=152, ["map_weapon_and_shields_drop_fractured_%_chance"]=153, ["map_weapon_and_shields_drop_fully_linked_%_chance"]=154, ["map_weapon_and_shields_drop_fully_socketed_%_chance"]=155, - ["map_weapons_drop_animated"]=2940, - ["map_zana_influence"]=8678, - ["map_zana_influence_additional_petal_skill_chance_%"]=8679, - ["map_zana_influence_equipment_item_chance_+%"]=8680, - ["map_zana_influence_number_of_influenced_magic_packs_+%"]=8681, - ["map_zana_influence_number_of_influenced_rare_packs_+%"]=8682, - ["map_zana_influence_pack_+"]=8683, - ["marauder_hidden_ascendancy_damage_+%_final"]=8684, - ["marauder_hidden_ascendancy_damage_taken_+%_final"]=8685, - ["mark_skill_cast_speed_+%"]=2117, - ["mark_skill_duration_+%"]=8686, - ["mark_skill_mana_cost_+%"]=8687, - ["mark_skills_curse_effect_+%"]=2498, - ["marked_enemies_cannot_deal_critical_strikes"]=8688, - ["marked_enemies_cannot_regenerate_life"]=8689, - ["marked_enemy_accuracy_rating_+%"]=8690, - ["marked_enemy_damage_taken_+%"]=8691, - ["marks_you_inflict_remain_after_death"]=8692, - ["mastery_chance_to_evade_melee_attacks_+%_final"]=8693, - ["mastery_extra_damage_taken_from_suppressed_crit_+%_final"]=1420, - ["maven_fight_layout_override"]=8694, - ["max_adaptations_+"]=1443, - ["max_attack_added_chaos_damage_per_100_mana"]=1297, - ["max_chance_to_block_attacks_if_not_blocked_recently"]=8695, - ["max_charged_attack_stacks"]=4105, - ["max_endurance_charges"]=1709, - ["max_endurance_charges_if_6_warlord_items"]=4376, - ["max_fortification_+1_per_5"]=8696, - ["max_fortification_while_affected_by_glorious_madness_+1_per_4"]=10190, - ["max_fortification_while_focused_+1_per_5"]=8697, - ["max_fortification_while_stationary_+1_per_5"]=8698, - ["max_frenzy_charges"]=1714, - ["max_frenzy_charges_if_6_redeemer_items"]=4377, - ["max_power_charges"]=1719, - ["max_power_charges_if_6_crusader_items"]=4378, - ["max_steel_ammo"]=8699, - ["maximum_2_of_same_totem"]=2158, - ["maximum_absorption_charges_is_equal_to_maximum_power_charges"]=1722, - ["maximum_added_chaos_damage_if_have_crit_recently"]=8790, - ["maximum_added_chaos_damage_per_curse_on_enemy"]=8791, - ["maximum_added_chaos_damage_per_spiders_web_on_enemy"]=8792, - ["maximum_added_chaos_damage_to_attacks_and_spells_per_50_strength"]=8793, - ["maximum_added_chaos_damage_to_attacks_per_50_strength"]=8794, - ["maximum_added_chaos_damage_vs_enemies_with_5+_poisons"]=8795, - ["maximum_added_cold_damage_if_have_crit_recently"]=8796, - ["maximum_added_cold_damage_per_frenzy_charge"]=4158, - ["maximum_added_cold_damage_to_attacks_per_10_dexterity"]=8797, - ["maximum_added_cold_damage_vs_chilled_enemies"]=8798, - ["maximum_added_cold_damage_while_affected_by_hatred"]=8799, - ["maximum_added_cold_damage_while_you_have_avians_might"]=8800, - ["maximum_added_fire_attack_damage_per_active_buff"]=1181, - ["maximum_added_fire_damage_if_blocked_recently"]=4160, - ["maximum_added_fire_damage_if_have_crit_recently"]=8801, - ["maximum_added_fire_damage_per_100_lowest_of_max_life_mana"]=8802, - ["maximum_added_fire_damage_per_active_buff"]=1183, - ["maximum_added_fire_damage_per_endurance_charge"]=8803, - ["maximum_added_fire_damage_to_attacks_per_10_strength"]=8804, - ["maximum_added_fire_damage_to_hits_vs_blinded_enemies"]=8805, - ["maximum_added_fire_damage_vs_ignited_enemies"]=1180, - ["maximum_added_fire_spell_damage_per_active_buff"]=1182, - ["maximum_added_lightning_damage_if_have_crit_recently"]=8806, - ["maximum_added_lightning_damage_per_10_int"]=8700, - ["maximum_added_lightning_damage_per_power_charge"]=8807, - ["maximum_added_lightning_damage_per_shocked_enemy_killed_recently"]=8808, - ["maximum_added_lightning_damage_to_attacks_per_10_intelligence"]=8809, - ["maximum_added_lightning_damage_to_spells_per_power_charge"]=8810, - ["maximum_added_lightning_damage_while_you_have_avians_might"]=8811, - ["maximum_added_physical_damage_if_have_crit_recently"]=8812, - ["maximum_added_physical_damage_per_endurance_charge"]=8813, - ["maximum_added_physical_damage_per_impaled_on_enemy"]=8814, - ["maximum_added_physical_damage_vs_bleeding_enemies"]=2394, - ["maximum_added_physical_damage_vs_frozen_enemies"]=1179, - ["maximum_added_physical_damage_vs_poisoned_enemies"]=8815, - ["maximum_added_spell_cold_damage_while_no_life_is_reserved"]=8816, - ["maximum_added_spell_fire_damage_while_no_life_is_reserved"]=8817, - ["maximum_added_spell_lightning_damage_while_no_life_is_reserved"]=8818, - ["maximum_affliction_charges_is_equal_to_maximum_frenzy_charges"]=1717, - ["maximum_arrow_fire_damage_added_for_each_pierce"]=4628, - ["maximum_attack_damage_+%_final_from_ascendancy"]=8701, - ["maximum_blitz_charges"]=8702, - ["maximum_block_%"]=1889, - ["maximum_block_%_if_4_elder_items"]=4360, - ["maximum_blood_scythe_charges"]=4240, - ["maximum_brutal_charges_is_equal_to_maximum_endurance_charges"]=1712, - ["maximum_celestial_charges"]=8703, - ["maximum_challenger_charges"]=8704, - ["maximum_chaos_damage_to_return_to_melee_attacker"]=2102, - ["maximum_cold_damage_resistance_%_while_affected_by_herald_of_ice"]=8705, - ["maximum_cold_damage_to_return_to_melee_attacker"]=2100, - ["maximum_critical_strike_chance"]=2646, - ["maximum_critical_strike_chance_is_50%"]=8706, - ["maximum_divine_charges"]=4272, - ["maximum_endurance_charges_+_while_affected_by_determination"]=8707, - ["maximum_endurance_charges_is_equal_to_maximum_frenzy_charges"]=1710, - ["maximum_endurance_frenzy_power_charges_is_0"]=8708, - ["maximum_energy_shield_%_lost_on_kill"]=1661, - ["maximum_energy_shield_+%"]=1467, - ["maximum_energy_shield_+%_and_lightning_resistance_-%"]=1495, - ["maximum_energy_shield_+_per_100_life_reserved"]=1472, - ["maximum_energy_shield_+_per_5_armour_on_shield"]=4262, - ["maximum_energy_shield_+_per_5_strength"]=3664, - ["maximum_energy_shield_+_per_X_body_armour_evasion_rating"]=1473, - ["maximum_energy_shield_from_body_armour_+%"]=8709, - ["maximum_energy_shield_increased_by_spell_block_chance"]=8710, - ["maximum_energy_shield_leech_amount_per_leech_%_max_energy_shield"]=1634, - ["maximum_energy_shield_leech_amount_per_leech_+%"]=1631, - ["maximum_energy_shield_leech_rate_%_per_minute"]=1633, - ["maximum_energy_shield_leech_rate_+%"]=1639, - ["maximum_energy_shield_leech_rate_+%_while_affected_by_zealotry"]=1640, - ["maximum_es_+%_per_equipped_corrupted_item"]=2988, - ["maximum_es_leech_rate_+1%_per_6_stat_value_while_affected_by_zealotry"]=1641, - ["maximum_es_per_honoured_soul_tattoo_allocated"]=8711, - ["maximum_es_taken_as_physical_damage_on_minion_death_%"]=2918, - ["maximum_fanaticism_charges"]=8712, - ["maximum_fire_damage_resistance_%_while_affected_by_herald_of_ash"]=8713, - ["maximum_fire_damage_to_return_to_melee_attacker"]=2099, - ["maximum_frenzy_charges_+_while_affected_by_grace"]=8714, - ["maximum_frenzy_charges_is_equal_to_maximum_power_charges"]=1715, - ["maximum_frenzy_power_endurance_charges"]=8715, - ["maximum_intensify_stacks"]=8716, - ["maximum_leech_rate_+%"]=8717, - ["maximum_life_%_lost_on_kill"]=1659, - ["maximum_life_%_to_add_as_maximum_armour"]=8731, - ["maximum_life_%_to_add_as_maximum_energy_shield"]=8732, - ["maximum_life_%_to_convert_to_maximum_energy_shield"]=8733, - ["maximum_life_+%"]=1477, - ["maximum_life_+%_and_fire_resistance_-%"]=1493, - ["maximum_life_+%_for_corpses_you_create"]=8734, - ["maximum_life_+%_if_2_elder_items"]=4337, - ["maximum_life_+%_if_no_life_tags_on_body_armour"]=8735, - ["maximum_life_+%_per_abyssal_jewel_affecting_you"]=8736, - ["maximum_life_+%_per_alive_packmate"]=8718, - ["maximum_life_+%_per_equipped_corrupted_item"]=2987, - ["maximum_life_+%_per_red_socket_on_staff"]=8719, - ["maximum_life_+%_per_stackable_unique_jewel"]=4047, - ["maximum_life_+%_to_grant_packmate_on_death"]=8720, - ["maximum_life_+%_while_no_gems_in_gloves"]=8721, - ["maximum_life_+_if_no_life_modifiers_on_equipment_except_body_armour"]=8722, - ["maximum_life_+_per_empty_red_socket"]=4317, - ["maximum_life_leech_amount_per_leech_%_max_life"]=8723, - ["maximum_life_leech_amount_per_leech_+%"]=1629, - ["maximum_life_leech_rate_%_per_minute"]=1632, - ["maximum_life_leech_rate_%_per_minute_is_doubled"]=8724, - ["maximum_life_leech_rate_+%"]=1636, - ["maximum_life_leech_rate_+%_if_crit_recently"]=8725, - ["maximum_life_leech_rate_+%_if_have_taken_a_savage_hit_recently"]=8726, - ["maximum_life_leech_rate_+1%_per_12_stat_value"]=1637, - ["maximum_life_mana_and_energy_shield_+%"]=1476, - ["maximum_life_per_10_dexterity"]=8727, - ["maximum_life_per_10_intelligence"]=8728, - ["maximum_life_per_10_levels"]=2660, - ["maximum_life_per_2%_increased_item_found_rarity"]=8729, - ["maximum_life_per_equipped_elder_item"]=4213, - ["maximum_life_per_honoured_heart_tattoo_allocated"]=8730, - ["maximum_life_taken_as_physical_damage_on_minion_death_%"]=2917, - ["maximum_lightning_damage_resistance_%_while_affected_by_herald_of_thunder"]=8737, - ["maximum_lightning_damage_to_return_on_block"]=2487, - ["maximum_lightning_damage_to_return_to_melee_attacker"]=2101, - ["maximum_mana_%_gained_on_kill"]=1660, - ["maximum_mana_%_to_add_to_energy_shield_while_affected_by_clarity"]=8741, - ["maximum_mana_+%"]=1486, - ["maximum_mana_+%_and_cold_resistance_-%"]=1494, - ["maximum_mana_+%_if_2_shaper_items"]=4338, - ["maximum_mana_+%_per_2%_spell_block_chance"]=3472, - ["maximum_mana_+%_per_abyssal_jewel_affecting_you"]=8743, - ["maximum_mana_+%_per_blue_socket_on_staff"]=8738, - ["maximum_mana_+_per_2_intelligence"]=8742, - ["maximum_mana_+_per_empty_blue_socket"]=4319, - ["maximum_mana_leech_amount_per_leech_%_max_mana"]=8739, - ["maximum_mana_leech_amount_per_leech_+%"]=1630, - ["maximum_mana_leech_rate_%_per_minute"]=1635, - ["maximum_mana_leech_rate_+%"]=1638, - ["maximum_mana_per_honoured_mind_tattoo_allocated"]=8740, - ["maximum_number_of_X_minion_type_doubled"]=8744, - ["maximum_number_of_blades_left_in_ground"]=8745, - ["maximum_physical_attack_damage_+%_final"]=8746, - ["maximum_physical_damage_reduction_%"]=1445, - ["maximum_physical_damage_to_reflect_to_self_on_attack"]=2097, - ["maximum_physical_damage_to_return_on_block"]=2486, - ["maximum_physical_damage_to_return_to_melee_attacker"]=2098, - ["maximum_power_and_endurance_charges_+"]=8747, - ["maximum_power_and_frenzy_charges_+"]=1720, - ["maximum_power_charges_+_while_affected_by_discipline"]=8748, - ["maximum_rage"]=9309, - ["maximum_rage_per_equipped_one_handed_sword"]=8749, - ["maximum_random_movement_velocity_+%_when_hit"]=8827, - ["maximum_siphoning_charges_per_elder_or_shaper_item_equipped"]=4220, - ["maximum_spell_block_chance_per_50_strength"]=1891, - ["maximum_spirit_charges_per_abyss_jewel_equipped"]=4265, - ["maximum_total_life_recovery_per_second_from_leech_+%_while_at_max_rage"]=8750, - ["maximum_total_life_recovery_per_second_from_leech_+%_while_have_defiance"]=4171, - ["maximum_unarmed_added_chaos_damage_for_each_poison_on_target"]=9985, - ["maximum_virulence_stacks"]=8751, - ["maximum_void_arrows"]=4241, - ["melee_ancestor_totem_damage_+%"]=3513, - ["melee_ancestor_totem_elemental_resistance_%"]=4001, - ["melee_ancestor_totem_grant_owner_attack_speed_+%"]=3688, - ["melee_ancestor_totem_placement_speed_+%"]=3859, - ["melee_attack_number_of_spirit_strikes"]=8752, - ["melee_attack_speed_+%"]=1322, - ["melee_attacks_usable_without_life_cost"]=8753, - ["melee_attacks_usable_without_mana_cost"]=2582, - ["melee_cold_damage_+%"]=1884, - ["melee_cold_damage_+%_while_fortify_is_active"]=2170, - ["melee_cold_damage_+%_while_holding_shield"]=1887, - ["melee_critical_strike_chance_+%"]=1387, - ["melee_critical_strike_chance_+%_if_warcried_recently"]=8754, - ["melee_critical_strike_multiplier_+%_if_warcried_recently"]=8755, - ["melee_critical_strike_multiplier_+_while_wielding_shield"]=1411, - ["melee_damage_+%"]=1143, - ["melee_damage_+%_at_close_range"]=8756, - ["melee_damage_+%_during_flask_effect"]=8757, - ["melee_damage_+%_per_endurance_charge"]=4060, - ["melee_damage_+%_per_second_of_warcry_affecting_you"]=8758, - ["melee_damage_+%_vs_burning_enemies"]=1148, - ["melee_damage_+%_vs_frozen_enemies"]=1144, - ["melee_damage_+%_vs_shocked_enemies"]=1146, - ["melee_damage_+%_when_on_full_life"]=2537, - ["melee_damage_+%_while_fortified"]=4136, - ["melee_damage_taken_%_to_deal_to_attacker"]=2604, - ["melee_damage_taken_+%"]=2647, - ["melee_damage_vs_bleeding_enemies_+%"]=2392, - ["melee_fire_damage_+%"]=1883, - ["melee_fire_damage_+%_while_holding_shield"]=1886, - ["melee_hits_cannot_be_evaded_while_wielding_sword"]=8759, - ["melee_hits_grant_rampage_stacks"]=10236, - ["melee_knockback"]=8760, - ["melee_movement_skill_chance_to_fortify_on_hit_%"]=8761, - ["melee_physical_damage_+%"]=1882, - ["melee_physical_damage_+%_per_10_dexterity"]=8762, - ["melee_physical_damage_+%_per_10_strength_while_fortified"]=8763, - ["melee_physical_damage_+%_vs_ignited_enemies"]=4187, - ["melee_physical_damage_+%_while_fortify_is_active"]=2171, - ["melee_physical_damage_+%_while_holding_shield"]=1885, - ["melee_physical_damage_taken_%_to_deal_to_attacker"]=2357, - ["melee_range_+"]=2434, - ["melee_range_+_while_at_least_5_enemies_nearby"]=8764, - ["melee_range_+_while_dual_wielding"]=8766, - ["melee_range_+_while_unarmed"]=2969, - ["melee_range_+_while_wielding_shield"]=8765, - ["melee_range_+_with_axe"]=8767, - ["melee_range_+_with_claw"]=8768, - ["melee_range_+_with_dagger"]=8769, - ["melee_range_+_with_mace"]=8770, - ["melee_range_+_with_one_handed"]=8771, - ["melee_range_+_with_staff"]=8772, - ["melee_range_+_with_sword"]=8773, - ["melee_range_+_with_two_handed"]=8774, - ["melee_skill_gem_level_+"]=8775, - ["melee_skills_area_of_effect_+%"]=8776, - ["melee_splash"]=1077, - ["melee_splash_while_wielding_mace"]=8777, - ["melee_strike_skill_strike_previous_location"]=8778, - ["melee_weapon_ailment_damage_+%"]=1196, - ["melee_weapon_critical_strike_multiplier_+"]=1409, - ["melee_weapon_hit_and_ailment_damage_+%"]=1192, - ["melee_weapon_range_+_if_you_have_killed_recently"]=8779, - ["melee_weapon_range_+_while_at_maximum_frenzy_charges"]=8780, - ["melee_weapon_range_+_while_fortified"]=8781, + ["map_weapons_drop_animated"]=2977, + ["map_zana_influence"]=8940, + ["map_zana_influence_additional_petal_skill_chance_%"]=8941, + ["map_zana_influence_equipment_item_chance_+%"]=8942, + ["map_zana_influence_number_of_influenced_magic_packs_+%"]=8943, + ["map_zana_influence_number_of_influenced_rare_packs_+%"]=8944, + ["map_zana_influence_pack_+"]=8945, + ["marauder_hidden_ascendancy_damage_+%_final"]=8946, + ["marauder_hidden_ascendancy_damage_taken_+%_final"]=8947, + ["mark_skill_cast_speed_+%"]=2149, + ["mark_skill_duration_+%"]=8948, + ["mark_skill_mana_cost_+%"]=8949, + ["mark_skills_cost_no_mana"]=8950, + ["mark_skills_curse_effect_+%"]=2531, + ["marked_enemies_cannot_deal_critical_strikes"]=8951, + ["marked_enemies_cannot_evade"]=8952, + ["marked_enemies_cannot_regenerate_life"]=8953, + ["marked_enemy_accuracy_rating_+%"]=8954, + ["marked_enemy_damage_taken_+%"]=8955, + ["marks_you_inflict_remain_after_death"]=8956, + ["mastery_chance_to_evade_melee_attacks_+%_final"]=8957, + ["mastery_extra_damage_taken_from_suppressed_crit_+%_final"]=1448, + ["maven_fight_layout_override"]=8958, + ["max_adaptations_+"]=1471, + ["max_attack_added_chaos_damage_per_100_mana"]=1324, + ["max_chance_to_block_attacks_if_not_blocked_recently"]=8959, + ["max_charged_attack_stacks"]=4151, + ["max_endurance_charges"]=1739, + ["max_endurance_charges_if_6_warlord_items"]=4422, + ["max_fortification_+1_per_5"]=8960, + ["max_fortification_while_affected_by_glorious_madness_+1_per_4"]=10516, + ["max_fortification_while_focused_+1_per_5"]=8961, + ["max_fortification_while_stationary_+1_per_5"]=8962, + ["max_frenzy_charges"]=1744, + ["max_frenzy_charges_if_6_redeemer_items"]=4423, + ["max_power_charges"]=1749, + ["max_power_charges_if_6_crusader_items"]=4424, + ["max_steel_ammo"]=8963, + ["maximum_2_of_same_totem"]=2190, + ["maximum_absorption_charges_is_equal_to_maximum_power_charges"]=1752, + ["maximum_added_chaos_damage_if_have_crit_recently"]=9059, + ["maximum_added_chaos_damage_per_curse_on_enemy"]=9060, + ["maximum_added_chaos_damage_per_spiders_web_on_enemy"]=9061, + ["maximum_added_chaos_damage_to_attacks_and_spells_per_50_strength"]=9062, + ["maximum_added_chaos_damage_to_attacks_per_50_strength"]=9063, + ["maximum_added_chaos_damage_vs_enemies_with_5+_poisons"]=9064, + ["maximum_added_cold_damage_if_have_crit_recently"]=9065, + ["maximum_added_cold_damage_per_frenzy_charge"]=4204, + ["maximum_added_cold_damage_to_attacks_per_10_dexterity"]=9066, + ["maximum_added_cold_damage_vs_chilled_enemies"]=9067, + ["maximum_added_cold_damage_while_affected_by_hatred"]=9068, + ["maximum_added_cold_damage_while_you_have_avians_might"]=9069, + ["maximum_added_fire_attack_damage_per_active_buff"]=1208, + ["maximum_added_fire_damage_if_blocked_recently"]=4206, + ["maximum_added_fire_damage_if_have_crit_recently"]=9070, + ["maximum_added_fire_damage_per_100_lowest_of_max_life_mana"]=9071, + ["maximum_added_fire_damage_per_active_buff"]=1210, + ["maximum_added_fire_damage_per_endurance_charge"]=9072, + ["maximum_added_fire_damage_to_attacks_per_1%_light_radius"]=9073, + ["maximum_added_fire_damage_to_attacks_per_10_strength"]=9074, + ["maximum_added_fire_damage_to_hits_vs_blinded_enemies"]=9075, + ["maximum_added_fire_damage_vs_ignited_enemies"]=1207, + ["maximum_added_fire_spell_damage_per_active_buff"]=1209, + ["maximum_added_lightning_damage_if_have_crit_recently"]=9076, + ["maximum_added_lightning_damage_per_10_int"]=8964, + ["maximum_added_lightning_damage_per_power_charge"]=9077, + ["maximum_added_lightning_damage_per_shocked_enemy_killed_recently"]=9078, + ["maximum_added_lightning_damage_to_attacks_per_10_intelligence"]=9079, + ["maximum_added_lightning_damage_to_spells_per_power_charge"]=9080, + ["maximum_added_lightning_damage_while_you_have_avians_might"]=9081, + ["maximum_added_physical_damage_if_have_crit_recently"]=9082, + ["maximum_added_physical_damage_per_endurance_charge"]=9083, + ["maximum_added_physical_damage_per_impaled_on_enemy"]=9084, + ["maximum_added_physical_damage_vs_bleeding_enemies"]=2427, + ["maximum_added_physical_damage_vs_frozen_enemies"]=1206, + ["maximum_added_physical_damage_vs_poisoned_enemies"]=9085, + ["maximum_added_spell_cold_damage_while_no_life_is_reserved"]=9086, + ["maximum_added_spell_fire_damage_while_no_life_is_reserved"]=9087, + ["maximum_added_spell_lightning_damage_while_no_life_is_reserved"]=9088, + ["maximum_affliction_charges_is_equal_to_maximum_frenzy_charges"]=1747, + ["maximum_arrow_fire_damage_added_for_each_pierce"]=4702, + ["maximum_attack_damage_+%_final_from_ascendancy"]=8965, + ["maximum_blitz_charges"]=8966, + ["maximum_block_%"]=1921, + ["maximum_block_%_if_4_elder_items"]=4406, + ["maximum_blood_scythe_charges"]=4286, + ["maximum_brutal_charges_is_equal_to_maximum_endurance_charges"]=1742, + ["maximum_celestial_charges"]=8967, + ["maximum_challenger_charges"]=8968, + ["maximum_chaos_damage_to_return_to_melee_attacker"]=2134, + ["maximum_cold_damage_resistance_%_while_affected_by_herald_of_ice"]=8969, + ["maximum_cold_damage_to_return_to_melee_attacker"]=2132, + ["maximum_critical_strike_chance"]=2681, + ["maximum_critical_strike_chance_is_50%"]=8970, + ["maximum_divine_charges"]=4318, + ["maximum_endurance_charges_+_while_affected_by_determination"]=8971, + ["maximum_endurance_charges_is_equal_to_maximum_frenzy_charges"]=1740, + ["maximum_endurance_frenzy_power_charges_is_0"]=8972, + ["maximum_energy_shield_%_lost_on_kill"]=1691, + ["maximum_energy_shield_+%"]=1496, + ["maximum_energy_shield_+%_and_lightning_resistance_-%"]=1524, + ["maximum_energy_shield_+_per_100_life_reserved"]=1501, + ["maximum_energy_shield_+_per_5_armour_on_shield"]=4308, + ["maximum_energy_shield_+_per_5_strength"]=3709, + ["maximum_energy_shield_+_per_X_body_armour_evasion_rating"]=1502, + ["maximum_energy_shield_from_body_armour_+%"]=8973, + ["maximum_energy_shield_increased_by_spell_block_chance"]=8974, + ["maximum_energy_shield_is_x%_of_maximum_life"]=8975, + ["maximum_energy_shield_leech_amount_per_leech_%_max_energy_shield"]=1664, + ["maximum_energy_shield_leech_amount_per_leech_+%"]=1661, + ["maximum_energy_shield_leech_rate_%_per_minute"]=1663, + ["maximum_energy_shield_leech_rate_+%"]=1669, + ["maximum_energy_shield_leech_rate_+%_while_affected_by_zealotry"]=1670, + ["maximum_es_+%_per_equipped_corrupted_item"]=3030, + ["maximum_es_leech_rate_+1%_per_6_stat_value_while_affected_by_zealotry"]=1671, + ["maximum_es_per_honoured_soul_tattoo_allocated"]=8976, + ["maximum_es_taken_as_physical_damage_on_minion_death_%"]=2955, + ["maximum_fanaticism_charges"]=8977, + ["maximum_fire_damage_resistance_%_while_affected_by_herald_of_ash"]=8978, + ["maximum_fire_damage_to_return_to_melee_attacker"]=2131, + ["maximum_frenzy_charges_+_while_affected_by_grace"]=8979, + ["maximum_frenzy_charges_is_equal_to_maximum_power_charges"]=1745, + ["maximum_frenzy_power_endurance_charges"]=8980, + ["maximum_intensify_stacks"]=8981, + ["maximum_leech_rate_+%"]=8982, + ["maximum_life_%_lost_on_kill"]=1689, + ["maximum_life_%_to_add_as_maximum_armour"]=8997, + ["maximum_life_%_to_add_as_maximum_energy_shield"]=8998, + ["maximum_life_%_to_add_as_maximum_energy_shield_with_no_corrupted_equipped_items"]=8983, + ["maximum_life_%_to_convert_to_maximum_energy_shield"]=8999, + ["maximum_life_+%"]=1506, + ["maximum_life_+%_and_fire_resistance_-%"]=1522, + ["maximum_life_+%_for_corpses_you_create"]=9000, + ["maximum_life_+%_if_2_elder_items"]=4383, + ["maximum_life_+%_if_no_life_tags_on_body_armour"]=9001, + ["maximum_life_+%_per_abyssal_jewel_affecting_you"]=9002, + ["maximum_life_+%_per_alive_packmate"]=8984, + ["maximum_life_+%_per_equipped_corrupted_item"]=3029, + ["maximum_life_+%_per_red_socket_on_staff"]=8985, + ["maximum_life_+%_per_stackable_unique_jewel"]=4093, + ["maximum_life_+%_to_grant_packmate_on_death"]=8986, + ["maximum_life_+%_while_no_gems_in_gloves"]=8987, + ["maximum_life_+_if_no_life_modifiers_on_equipment_except_body_armour"]=8988, + ["maximum_life_+_per_empty_red_socket"]=4363, + ["maximum_life_leech_amount_per_leech_%_max_life"]=8989, + ["maximum_life_leech_amount_per_leech_+%"]=1659, + ["maximum_life_leech_rate_%_per_minute"]=1662, + ["maximum_life_leech_rate_%_per_minute_is_doubled"]=8990, + ["maximum_life_leech_rate_+%"]=1666, + ["maximum_life_leech_rate_+%_if_crit_recently"]=8991, + ["maximum_life_leech_rate_+%_if_have_taken_a_savage_hit_recently"]=8992, + ["maximum_life_leech_rate_+1%_per_12_stat_value"]=1667, + ["maximum_life_mana_and_energy_shield_+%"]=1505, + ["maximum_life_per_10_dexterity"]=8993, + ["maximum_life_per_10_intelligence"]=8994, + ["maximum_life_per_10_levels"]=2695, + ["maximum_life_per_2%_increased_item_found_rarity"]=8995, + ["maximum_life_per_equipped_elder_item"]=4259, + ["maximum_life_per_honoured_heart_tattoo_allocated"]=8996, + ["maximum_life_taken_as_physical_damage_on_minion_death_%"]=2954, + ["maximum_lightning_damage_resistance_%_while_affected_by_herald_of_thunder"]=9003, + ["maximum_lightning_damage_to_return_on_block"]=2520, + ["maximum_lightning_damage_to_return_to_melee_attacker"]=2133, + ["maximum_mana_%_gained_on_kill"]=1690, + ["maximum_mana_%_to_add_to_energy_shield_while_affected_by_clarity"]=9007, + ["maximum_mana_+%"]=1515, + ["maximum_mana_+%_and_cold_resistance_-%"]=1523, + ["maximum_mana_+%_if_2_shaper_items"]=4384, + ["maximum_mana_+%_per_2%_spell_block_chance"]=3517, + ["maximum_mana_+%_per_abyssal_jewel_affecting_you"]=9009, + ["maximum_mana_+%_per_blue_socket_on_staff"]=9004, + ["maximum_mana_+_per_2_intelligence"]=9008, + ["maximum_mana_+_per_empty_blue_socket"]=4365, + ["maximum_mana_leech_amount_per_leech_%_max_mana"]=9005, + ["maximum_mana_leech_amount_per_leech_+%"]=1660, + ["maximum_mana_leech_rate_%_per_minute"]=1665, + ["maximum_mana_leech_rate_+%"]=1668, + ["maximum_mana_per_honoured_mind_tattoo_allocated"]=9006, + ["maximum_number_of_X_minion_type_doubled"]=9010, + ["maximum_number_of_blades_left_in_ground"]=9011, + ["maximum_number_of_projectiles_to_fire_is_1"]=163, + ["maximum_number_of_raised_spectres_is_x"]=9012, + ["maximum_physical_attack_damage_+%_final"]=9013, + ["maximum_physical_damage_reduction_%"]=1473, + ["maximum_physical_damage_to_reflect_to_self_on_attack"]=2129, + ["maximum_physical_damage_to_return_on_block"]=2519, + ["maximum_physical_damage_to_return_to_melee_attacker"]=2130, + ["maximum_power_and_endurance_charges_+"]=9014, + ["maximum_power_and_frenzy_charges_+"]=1750, + ["maximum_power_charges_+_while_affected_by_discipline"]=9015, + ["maximum_rage"]=9596, + ["maximum_rage_is_halved"]=9016, + ["maximum_rage_per_equipped_one_handed_sword"]=9017, + ["maximum_random_movement_velocity_+%_when_hit"]=9097, + ["maximum_siphoning_charges_per_elder_or_shaper_item_equipped"]=4266, + ["maximum_spell_block_chance_per_50_strength"]=1923, + ["maximum_spirit_charges_per_abyss_jewel_equipped"]=4311, + ["maximum_total_life_recovery_per_second_from_leech_+%_while_at_max_rage"]=9018, + ["maximum_total_life_recovery_per_second_from_leech_+%_while_have_defiance"]=4217, + ["maximum_unarmed_added_chaos_damage_for_each_poison_on_target"]=10293, + ["maximum_virulence_stacks"]=9019, + ["maximum_void_arrows"]=4287, + ["melee_ancestor_totem_damage_+%"]=3558, + ["melee_ancestor_totem_elemental_resistance_%"]=4047, + ["melee_ancestor_totem_grant_owner_attack_speed_+%"]=3734, + ["melee_ancestor_totem_placement_speed_+%"]=3905, + ["melee_attack_number_of_spirit_strikes"]=9020, + ["melee_attack_speed_+%"]=1349, + ["melee_attacks_usable_without_life_cost"]=9021, + ["melee_attacks_usable_without_mana_cost"]=2617, + ["melee_cold_damage_+%"]=1916, + ["melee_cold_damage_+%_while_fortify_is_active"]=2202, + ["melee_cold_damage_+%_while_holding_shield"]=1919, + ["melee_critical_strike_chance_+%"]=1414, + ["melee_critical_strike_chance_+%_if_warcried_recently"]=9022, + ["melee_critical_strike_multiplier_+%_if_warcried_recently"]=9023, + ["melee_critical_strike_multiplier_+_while_wielding_shield"]=1439, + ["melee_damage_+%"]=1170, + ["melee_damage_+%_at_close_range"]=9025, + ["melee_damage_+%_during_flask_effect"]=9026, + ["melee_damage_+%_per_20_intelligence"]=9024, + ["melee_damage_+%_per_endurance_charge"]=4106, + ["melee_damage_+%_per_second_of_warcry_affecting_you"]=9027, + ["melee_damage_+%_vs_burning_enemies"]=1175, + ["melee_damage_+%_vs_frozen_enemies"]=1171, + ["melee_damage_+%_vs_shocked_enemies"]=1173, + ["melee_damage_+%_when_on_full_life"]=2570, + ["melee_damage_+%_while_fortified"]=4182, + ["melee_damage_taken_%_to_deal_to_attacker"]=2639, + ["melee_damage_taken_+%"]=2682, + ["melee_damage_vs_bleeding_enemies_+%"]=2425, + ["melee_fire_damage_+%"]=1915, + ["melee_fire_damage_+%_while_holding_shield"]=1918, + ["melee_hits_cannot_be_evaded_while_wielding_sword"]=9028, + ["melee_hits_grant_rampage_stacks"]=10562, + ["melee_knockback"]=9029, + ["melee_movement_skill_chance_to_fortify_on_hit_%"]=9030, + ["melee_physical_damage_+%"]=1914, + ["melee_physical_damage_+%_per_10_dexterity"]=9031, + ["melee_physical_damage_+%_per_10_strength_while_fortified"]=9032, + ["melee_physical_damage_+%_vs_ignited_enemies"]=4233, + ["melee_physical_damage_+%_while_fortify_is_active"]=2203, + ["melee_physical_damage_+%_while_holding_shield"]=1917, + ["melee_physical_damage_taken_%_to_deal_to_attacker"]=2390, + ["melee_range_+"]=2467, + ["melee_range_+_while_at_least_5_enemies_nearby"]=9033, + ["melee_range_+_while_dual_wielding"]=9035, + ["melee_range_+_while_unarmed"]=3011, + ["melee_range_+_while_wielding_shield"]=9034, + ["melee_range_+_with_axe"]=9036, + ["melee_range_+_with_claw"]=9037, + ["melee_range_+_with_dagger"]=9038, + ["melee_range_+_with_mace"]=9039, + ["melee_range_+_with_one_handed"]=9040, + ["melee_range_+_with_staff"]=9041, + ["melee_range_+_with_sword"]=9042, + ["melee_range_+_with_two_handed"]=9043, + ["melee_skill_gem_level_+"]=9044, + ["melee_skills_area_of_effect_+%"]=9045, + ["melee_splash"]=1104, + ["melee_splash_while_wielding_mace"]=9046, + ["melee_strike_skill_strike_previous_location"]=9047, + ["melee_weapon_ailment_damage_+%"]=1223, + ["melee_weapon_critical_strike_multiplier_+"]=1437, + ["melee_weapon_hit_and_ailment_damage_+%"]=1219, + ["melee_weapon_range_+_if_you_have_killed_recently"]=9048, + ["melee_weapon_range_+_while_at_maximum_frenzy_charges"]=9049, + ["melee_weapon_range_+_while_fortified"]=9050, ["memory_line_abyss_scourge_spawn_boss_chance_%"]=103, ["memory_line_all_drops_replaced_with_currency_shard_stacks_%_chance_otherwise_delete"]=121, ["memory_line_big_harvest"]=104, @@ -242861,2450 +250593,2511 @@ return { ["memory_line_number_of_essences"]=90, ["memory_line_number_of_excursions"]=91, ["memory_line_number_of_large_breach_chests"]=106, - ["memory_line_number_of_pantheon_shrines"]=4181, - ["memory_line_number_of_shrines"]=4180, + ["memory_line_number_of_pantheon_shrines"]=4227, + ["memory_line_number_of_shrines"]=4226, ["memory_line_number_of_strongboxes"]=92, ["memory_line_player_is_harbinger"]=93, ["memory_line_strongboxes_chance_to_be_operatives_%"]=123, - ["min_attack_added_chaos_damage_per_100_mana"]=1297, - ["mine_%_chance_to_detonate_twice"]=8787, - ["mine_area_damage_+%_if_detonated_mine_recently"]=8782, - ["mine_area_of_effect_+%"]=8783, - ["mine_area_of_effect_+%_if_detonated_mine_recently"]=8784, - ["mine_arming_speed_+%"]=4114, - ["mine_aura_effect_+%"]=8785, - ["mine_critical_strike_chance_+%"]=1383, - ["mine_critical_strike_multiplier_+"]=1413, - ["mine_damage_+%"]=1105, - ["mine_damage_leeched_as_life_to_you_permyriad"]=4121, - ["mine_damage_penetrates_%_elemental_resistance"]=2682, - ["mine_detonation_is_instant"]=2680, - ["mine_detonation_radius_+%"]=1829, - ["mine_detonation_speed_+%"]=8786, - ["mine_duration_+%"]=1827, - ["mine_extra_uses"]=2928, - ["mine_laying_speed_+%"]=1831, - ["mine_laying_speed_+%_for_4_seconds_on_detonation"]=3363, - ["mines_hinder_nearby_enemies_for_x_ms_on_arming"]=8788, - ["mines_invulnerable"]=8789, - ["mines_invulnerable_for_duration_ms"]=2685, - ["minimum_added_chaos_damage_if_have_crit_recently"]=8790, - ["minimum_added_chaos_damage_per_curse_on_enemy"]=8791, - ["minimum_added_chaos_damage_per_spiders_web_on_enemy"]=8792, - ["minimum_added_chaos_damage_to_attacks_and_spells_per_50_strength"]=8793, - ["minimum_added_chaos_damage_to_attacks_per_50_strength"]=8794, - ["minimum_added_chaos_damage_vs_enemies_with_5+_poisons"]=8795, - ["minimum_added_cold_damage_if_have_crit_recently"]=8796, - ["minimum_added_cold_damage_per_frenzy_charge"]=4158, - ["minimum_added_cold_damage_to_attacks_per_10_dexterity"]=8797, - ["minimum_added_cold_damage_vs_chilled_enemies"]=8798, - ["minimum_added_cold_damage_while_affected_by_hatred"]=8799, - ["minimum_added_cold_damage_while_you_have_avians_might"]=8800, - ["minimum_added_fire_attack_damage_per_active_buff"]=1181, - ["minimum_added_fire_damage_if_blocked_recently"]=4160, - ["minimum_added_fire_damage_if_have_crit_recently"]=8801, - ["minimum_added_fire_damage_per_100_lowest_of_max_life_mana"]=8802, - ["minimum_added_fire_damage_per_active_buff"]=1183, - ["minimum_added_fire_damage_per_endurance_charge"]=8803, - ["minimum_added_fire_damage_to_attacks_per_10_strength"]=8804, - ["minimum_added_fire_damage_to_hits_vs_blinded_enemies"]=8805, - ["minimum_added_fire_damage_vs_ignited_enemies"]=1180, - ["minimum_added_fire_spell_damage_per_active_buff"]=1182, - ["minimum_added_lightning_damage_if_have_crit_recently"]=8806, - ["minimum_added_lightning_damage_per_power_charge"]=8807, - ["minimum_added_lightning_damage_per_shocked_enemy_killed_recently"]=8808, - ["minimum_added_lightning_damage_to_attacks_per_10_intelligence"]=8809, - ["minimum_added_lightning_damage_to_spells_per_power_charge"]=8810, - ["minimum_added_lightning_damage_while_you_have_avians_might"]=8811, - ["minimum_added_physical_damage_if_have_crit_recently"]=8812, - ["minimum_added_physical_damage_per_endurance_charge"]=8813, - ["minimum_added_physical_damage_per_impaled_on_enemy"]=8814, - ["minimum_added_physical_damage_vs_bleeding_enemies"]=2394, - ["minimum_added_physical_damage_vs_frozen_enemies"]=1179, - ["minimum_added_physical_damage_vs_poisoned_enemies"]=8815, - ["minimum_added_spell_cold_damage_while_no_life_is_reserved"]=8816, - ["minimum_added_spell_fire_damage_while_no_life_is_reserved"]=8817, - ["minimum_added_spell_lightning_damage_while_no_life_is_reserved"]=8818, - ["minimum_arrow_fire_damage_added_for_each_pierce"]=4628, - ["minimum_chaos_damage_to_return_to_melee_attacker"]=2102, - ["minimum_cold_damage_to_return_to_melee_attacker"]=2100, - ["minimum_endurance_charges_at_devotion_threshold"]=8819, - ["minimum_endurance_charges_per_stackable_unique_jewel"]=4048, - ["minimum_endurance_charges_while_on_low_life_+"]=8820, - ["minimum_fire_damage_to_return_to_melee_attacker"]=2099, - ["minimum_frenzy_charges_at_devotion_threshold"]=8821, - ["minimum_frenzy_charges_per_stackable_unique_jewel"]=4049, - ["minimum_frenzy_endurance_power_charges_are_equal_to_maximum_while_stationary"]=8822, - ["minimum_frenzy_power_endurance_charges"]=8823, - ["minimum_lightning_damage_to_return_on_block"]=2487, - ["minimum_lightning_damage_to_return_to_melee_attacker"]=2101, - ["minimum_physical_damage_to_reflect_to_self_on_attack"]=2097, - ["minimum_physical_damage_to_return_on_block"]=2486, - ["minimum_physical_damage_to_return_to_melee_attacker"]=2098, - ["minimum_power_charges_at_devotion_threshold"]=8824, - ["minimum_power_charges_per_stackable_unique_jewel"]=4050, - ["minimum_power_charges_while_on_low_life_+"]=8825, - ["minimum_rage"]=8826, - ["minimum_random_movement_velocity_+%_when_hit"]=8827, - ["minimum_unarmed_added_chaos_damage_for_each_poison_on_target"]=9985, - ["minion_%_chance_to_be_summoned_with_maximum_frenzy_charges"]=8886, - ["minion_accuracy_rating"]=8828, - ["minion_accuracy_rating_+%"]=8830, - ["minion_accuracy_rating_per_10_devotion"]=8829, - ["minion_additional_base_critical_strike_chance"]=8831, - ["minion_additional_physical_damage_reduction_%"]=2175, - ["minion_additional_spell_block_%"]=2802, - ["minion_are_aggressive_if_have_blocked_recently"]=8832, - ["minion_area_of_effect_+%_if_you_have_cast_a_minion_skill_recently"]=8833, - ["minion_attack_and_cast_speed_+%"]=8834, - ["minion_attack_and_cast_speed_+%_if_you_or_minions_have_killed_enemy_recently"]=8835, - ["minion_attack_and_cast_speed_+%_per_10_devotion"]=8836, - ["minion_attack_and_cast_speed_+%_per_active_skeleton"]=3163, - ["minion_attack_and_cast_speed_+%_while_you_are_affected_by_a_herald"]=8837, - ["minion_attack_cooldown_recovery_+%"]=8838, - ["minion_attack_hits_knockback_chance_%"]=8839, - ["minion_attack_maximum_added_physical_damage"]=3655, - ["minion_attack_minimum_added_physical_damage"]=3655, - ["minion_attack_speed_+%"]=2805, - ["minion_attack_speed_+%_per_50_dex"]=8840, - ["minion_attacks_chance_to_blind_on_hit_%"]=8841, - ["minion_attacks_chance_to_taunt_on_hit_%"]=3321, - ["minion_base_fire_damage_%_to_convert_to_chaos"]=8842, - ["minion_base_physical_damage_%_to_convert_to_chaos"]=1866, - ["minion_base_physical_damage_%_to_convert_to_chaos_per_white_socket_on_item"]=2628, - ["minion_base_physical_damage_%_to_convert_to_cold"]=1861, - ["minion_base_physical_damage_%_to_convert_to_cold_per_green_socket_on_item"]=2622, - ["minion_base_physical_damage_%_to_convert_to_fire"]=1859, - ["minion_base_physical_damage_%_to_convert_to_fire_per_red_socket_on_item"]=2618, - ["minion_base_physical_damage_%_to_convert_to_lightning"]=1863, - ["minion_base_physical_damage_%_to_convert_to_lightning_per_blue_socket_on_item"]=2624, - ["minion_bleed_on_hit_with_attacks_%"]=2390, - ["minion_block_%"]=2801, - ["minion_cannot_crit"]=8843, - ["minion_cast_speed_+%"]=2806, - ["minion_caustic_cloud_on_death_maximum_life_per_minute_to_deal_as_chaos_damage_%"]=3329, - ["minion_chance_to_deal_double_damage_%"]=8844, - ["minion_chance_to_deal_double_damage_while_on_full_life_%"]=8845, - ["minion_chance_to_freeze_%"]=8846, - ["minion_chance_to_freeze_shock_ignite_%"]=8847, - ["minion_chance_to_gain_onslaught_on_kill_for_4_seconds_%"]=3271, - ["minion_chance_to_gain_power_charge_on_hit_%"]=8848, - ["minion_chance_to_gain_unholy_might_on_kill_for_4_seconds_%"]=3269, - ["minion_chance_to_ignite_%"]=8849, - ["minion_chance_to_impale_on_attack_hit_%"]=8850, - ["minion_chance_to_shock_%"]=8851, - ["minion_chaos_damage_does_not_bypass_energy_shield"]=4289, - ["minion_chaos_resistance_%"]=2811, - ["minion_cold_damage_resistance_%"]=4075, - ["minion_cooldown_recovery_+%"]=8852, - ["minion_critical_strike_chance_+%"]=8853, - ["minion_critical_strike_chance_+%_per_maximum_power_charge"]=8854, - ["minion_critical_strike_multiplier_+"]=8855, - ["minion_critical_strike_multiplier_+_per_stackable_unique_jewel"]=4051, - ["minion_damage_+%"]=1876, - ["minion_damage_+%_if_enemy_hit_recently"]=8859, - ["minion_damage_+%_if_have_used_a_minion_skill_recently"]=1877, - ["minion_damage_+%_per_5_dex"]=1879, - ["minion_damage_+%_per_active_spectre"]=3165, - ["minion_damage_+%_per_fortification"]=8856, - ["minion_damage_+%_vs_abyssal_monsters"]=8860, - ["minion_damage_+%_while_affected_by_a_herald"]=8861, - ["minion_damage_against_ignited_enemies_+%"]=8857, - ["minion_damage_increases_and_reductions_also_affects_you"]=3637, - ["minion_damage_over_time_multiplier_+_per_minion_abyss_jewel_up_to_+30"]=8858, - ["minion_damage_taken_+%"]=8862, - ["minion_deal_no_non_cold_damage"]=8863, - ["minion_duration_+%_per_active_zombie"]=3164, - ["minion_elemental_damage_%_to_add_as_chaos"]=8864, - ["minion_elemental_resistance_%"]=2810, - ["minion_elemental_resistance_30%"]=8865, - ["minion_energy_shield_delay_-%"]=4290, - ["minion_evasion_rating_+%"]=8866, - ["minion_fire_cloud_on_death_maximum_life_per_minute_to_deal_as_fire_damage_%"]=8867, - ["minion_fire_damage_resistance_%"]=8868, - ["minion_flask_charges_used_+%"]=2087, - ["minion_global_always_hit"]=8869, - ["minion_global_maximum_added_chaos_damage"]=3656, - ["minion_global_maximum_added_cold_damage"]=3657, - ["minion_global_maximum_added_fire_damage"]=3658, - ["minion_global_maximum_added_lightning_damage"]=3659, - ["minion_global_maximum_added_physical_damage"]=3660, - ["minion_global_minimum_added_chaos_damage"]=3656, - ["minion_global_minimum_added_cold_damage"]=3657, - ["minion_global_minimum_added_fire_damage"]=3658, - ["minion_global_minimum_added_lightning_damage"]=3659, - ["minion_global_minimum_added_physical_damage"]=3660, - ["minion_grants_rampage_kill_to_parent_on_hitting_rare_or_unique_enemy_%"]=8870, - ["minion_has_unholy_might"]=8871, - ["minion_hits_ignore_enemy_elemental_resistances_while_has_energy_shield"]=4291, - ["minion_hits_ignore_enemy_monster_physical_damage_reduction_%_chance"]=8872, - ["minion_larger_aggro_radius"]=10231, - ["minion_life_increased_by_overcapped_fire_resistance"]=8873, - ["minion_life_leech_from_any_damage_permyriad"]=2808, - ["minion_life_leech_permyriad_vs_poisoned_enemies"]=8874, - ["minion_life_recovery_rate_+%"]=1670, - ["minion_life_regeneration_per_minute_per_active_raging_spirit"]=3166, - ["minion_life_regeneration_rate_per_minute_%"]=2809, - ["minion_life_regeneration_rate_per_minute_%_if_blocked_recently"]=8875, - ["minion_life_regeneration_rate_per_second"]=8876, - ["minion_maim_on_hit_%"]=8877, - ["minion_malediction_on_hit"]=8878, - ["minion_maximum_all_elemental_resistances_%"]=8879, - ["minion_maximum_energy_shield_+%"]=1673, - ["minion_maximum_life_%_to_add_as_maximum_energy_shield"]=8880, - ["minion_maximum_life_%_to_convert_to_maximum_energy_shield_per_1%_chaos_resistance"]=4288, - ["minion_maximum_life_+%"]=1671, - ["minion_maximum_mana_+%"]=1672, - ["minion_melee_damage_+%"]=8881, - ["minion_minimum_power_charges"]=8882, - ["minion_movement_speed_+%"]=1674, - ["minion_movement_speed_+%_per_50_dex"]=8883, - ["minion_movement_velocity_+%_for_each_herald_affecting_you"]=8884, - ["minion_no_critical_strike_multiplier"]=8885, - ["minion_no_extra_bleed_damage_while_moving"]=3081, - ["minion_physical_damage_%_to_add_as_cold"]=4076, - ["minion_physical_damage_%_to_add_as_fire"]=8887, - ["minion_physical_damage_reduction_rating"]=2803, - ["minion_projectile_speed_+%"]=8888, - ["minion_raging_spirit_%_of_maximum_life_taken_per_minute_as_chaos_damage"]=8890, - ["minion_raging_spirit_maximum_life_+%"]=8889, - ["minion_recover_%_maximum_life_on_minion_death"]=8891, - ["minion_recover_%_of_maximum_life_on_block"]=2954, - ["minion_recover_X_life_on_block"]=1667, - ["minion_skill_area_of_effect_+%"]=2919, - ["minion_skill_gem_level_+"]=1520, - ["minion_skill_mana_cost_+%"]=8892, - ["minion_spell_cooldown_recovery_+%"]=8893, - ["minion_spell_suppression_chance_%"]=8894, - ["minion_spells_chance_to_hinder_on_hit_%"]=8895, - ["minion_stun_threshold_reduction_+%"]=8896, - ["minion_summoned_recently_attack_and_cast_speed_+%"]=8897, - ["minion_summoned_recently_cannot_be_damaged"]=8898, - ["minion_summoned_recently_critical_strike_chance_+%"]=8899, - ["minion_summoned_recently_movement_speed_+%"]=8900, - ["minion_unholy_might_on_kill_duration_ms"]=2816, - ["minions_%_chance_to_blind_on_hit"]=4039, - ["minions_accuracy_is_equal_to_yours"]=8901, - ["minions_affected_by_affliction_have_onslaught"]=8902, - ["minions_attacks_overwhelm_%_physical_damage_reduction"]=8903, - ["minions_cannot_attack"]=8904, - ["minions_cannot_be_blinded"]=4038, - ["minions_cannot_be_damaged_after_summoned_ms"]=8905, - ["minions_cannot_cast_spells"]=8906, - ["minions_cannot_taunt_enemies"]=8907, - ["minions_chance_to_intimidate_on_hit_%"]=8908, - ["minions_chance_to_poison_on_hit_%"]=3064, - ["minions_deal_%_of_physical_damage_as_additional_chaos_damage"]=8909, - ["minions_gain_half_your_strength_from_ascendancy"]=8910, - ["minions_gain_your_spell_suppression_chance"]=8911, - ["minions_gain_your_strength"]=8912, - ["minions_get_shield_stats_instead_of_you"]=2093, - ["minions_go_crazy_on_crit_ms"]=8913, - ["minions_grant_owner_and_owners_totems_gains_endurance_charge_on_burning_enemy_kill_%"]=3218, - ["minions_have_%_chance_to_inflict_wither_on_hit"]=8915, - ["minions_have_+%_critical_strike_multiplier_per_wither_on_enemies"]=8916, - ["minions_have_no_armour_or_energy_shield"]=8914, - ["minions_have_non_curse_aura_effect_+%_from_parent_skills"]=2046, - ["minions_have_same_maximum_num_of_charges_as_owner"]=8917, - ["minions_have_same_num_of_charges_as_owner"]=8918, - ["minions_hits_can_only_kill_ignited_enemies"]=8919, - ["minions_penetrate_elemental_resistances_%_vs_cursed_enemies"]=8920, - ["minions_recover_%_maximum_life_on_killing_poisoned_enemy"]=8921, - ["minions_recover_%_maximum_life_when_you_focus"]=8922, - ["minions_reflected_damage_taken_+%"]=8923, - ["minions_take_%_of_life_as_chaos_damage_when_summoned_over_1_second"]=8924, - ["minions_use_parents_flasks_on_summon"]=2083, - ["minions_use_your_main_hand_base_crit_chance_from_weapon"]=8925, - ["mirage_archer_duration_+%"]=8926, - ["mirage_archers_do_not_attach"]=4299, - ["mirror_arrow_and_mirror_arrow_clone_attack_speed_+%"]=3752, - ["mirror_arrow_and_mirror_arrow_clone_damage_+%"]=3607, - ["mirror_arrow_cooldown_speed_+%"]=3770, - ["missing_unreserved_life_%_gained_as_life_before_hit"]=8928, - ["missing_unreserved_life_%_gained_as_life_before_hit_per_defiance"]=8927, - ["mist_footprints_from_item"]=10323, - ["mod_granted_passive_hash"]=8929, - ["mod_granted_passive_hash_2"]=8930, - ["mod_granted_passive_hash_3"]=8931, - ["mod_granted_passive_hash_4"]=8932, - ["modifiers_to_attributes_instead_apply_to_ascendance"]=1096, - ["modifiers_to_claw_attack_speed_also_affect_unarmed_melee_attack_speed"]=3460, - ["modifiers_to_claw_critical_strike_chance_also_affect_unarmed_melee_critical_strike_chance"]=3461, - ["modifiers_to_claw_damage_also_affect_unarmed_melee_damage"]=3459, - ["modifiers_to_fire_resistance_also_apply_to_cold_lightning_resistance_at_%_value"]=8933, - ["modifiers_to_map_item_drop_quantity_also_apply_to_map_item_drop_rarity"]=3483, - ["modifiers_to_maximum_fire_resistance_apply_to_maximum_cold_and_lightning_resistance"]=8934, - ["modifiers_to_minimum_endurance_charges_instead_apply_to_brutal_charges"]=1711, - ["modifiers_to_minimum_frenzy_charges_instead_apply_to_affliction_charges"]=1716, - ["modifiers_to_minimum_power_charges_instead_apply_to_absorption_charges"]=1721, - ["modifiers_to_minion_damage_also_affect_you"]=3636, - ["modifiers_to_minion_life_regeneration_also_affect_you"]=3642, - ["modifiers_to_minion_movement_speed_also_affect_you"]=3643, - ["modifiers_to_number_of_projectiles_instead_apply_to_splitting"]=8935, - ["molten_shell_buff_effect_+%"]=3910, - ["molten_shell_damage_+%"]=3595, - ["molten_shell_duration_+%"]=8936, - ["molten_shell_explosion_damage_penetrates_%_fire_resistance"]=8937, - ["molten_strike_chain_count_+"]=8939, - ["molten_strike_damage_+%"]=3529, - ["molten_strike_num_of_additional_projectiles"]=3832, - ["molten_strike_projectiles_chain_when_impacting_ground"]=8938, - ["molten_strike_radius_+%"]=3698, - ["monster_base_block_%"]=1051, - ["monster_converts_on_death"]=8940, - ["monster_damage_+%_final_per_alive_packmate"]=8941, - ["monster_dropped_item_quantity_+%"]=8942, - ["monster_dropped_item_rarity_+%"]=8943, - ["monster_grants_no_flask_charges"]=8944, - ["monster_life_+%_final_from_map"]=1479, - ["monster_life_+%_final_from_rarity"]=1478, - ["monster_remove_x_flask_charges_from_all_flasks"]=8947, - ["monster_slain_experience_+%"]=8948, - ["mortar_barrage_mine_damage_+%"]=8949, - ["mortar_barrage_mine_num_projectiles"]=8950, - ["mortar_barrage_mine_throwing_speed_+%"]=8952, - ["mortar_barrage_mine_throwing_speed_halved_+%"]=8951, - ["movement_attack_skills_attack_speed_+%"]=8953, - ["movement_skills_cooldown_speed_+%"]=8954, - ["movement_skills_cooldown_speed_+%_while_affected_by_haste"]=8955, - ["movement_skills_cost_no_mana"]=3359, - ["movement_skills_deal_no_physical_damage"]=8956, - ["movement_skills_mana_cost_+%"]=4068, - ["movement_speed_+%_during_flask_effect"]=3076, - ["movement_speed_+%_for_4_seconds_on_block"]=3209, - ["movement_speed_+%_if_below_100_dexterity"]=8957, - ["movement_speed_+%_if_cast_a_mark_spell_recently"]=8963, - ["movement_speed_+%_if_crit_recently"]=8964, - ["movement_speed_+%_if_enemy_hit_recently"]=8965, - ["movement_speed_+%_if_enemy_hit_with_off_hand_weapon_recently"]=8966, - ["movement_speed_+%_if_enemy_killed_recently"]=4146, - ["movement_speed_+%_if_have_cast_dash_recently"]=8967, - ["movement_speed_+%_if_have_not_taken_damage_recently"]=8968, - ["movement_speed_+%_if_have_used_a_vaal_skill_recently"]=8969, - ["movement_speed_+%_if_pierced_recently"]=4091, - ["movement_speed_+%_if_placed_trap_or_mine_recently"]=8958, - ["movement_speed_+%_if_used_a_warcry_recently"]=4064, - ["movement_speed_+%_on_throwing_trap"]=2671, - ["movement_speed_+%_per_5_rage"]=8970, - ["movement_speed_+%_per_chest_opened_recently"]=8971, - ["movement_speed_+%_per_endurance_charge"]=8972, - ["movement_speed_+%_per_nearby_corpse"]=8959, - ["movement_speed_+%_per_nearby_enemy"]=8973, - ["movement_speed_+%_per_poison_up_to_50%"]=8974, - ["movement_speed_+%_per_power_charge"]=8975, - ["movement_speed_+%_while_affected_by_grace"]=8976, - ["movement_speed_+%_while_bleeding"]=8977, - ["movement_speed_+%_while_dual_wielding"]=8978, - ["movement_speed_+%_while_fortified"]=3210, - ["movement_speed_+%_while_holding_shield"]=8979, - ["movement_speed_+%_while_not_affected_by_status_ailments"]=3200, - ["movement_speed_+%_while_not_using_flask"]=8980, - ["movement_speed_+%_while_on_burning_chilled_shocked_ground"]=8981, - ["movement_speed_+%_while_on_burning_ground"]=8982, - ["movement_speed_+%_while_poisoned"]=8983, - ["movement_speed_+%_while_you_have_cats_stealth"]=8984, - ["movement_speed_+%_while_you_have_energy_shield"]=8985, - ["movement_speed_+%_while_you_have_infusion"]=8986, - ["movement_speed_+%_while_you_have_two_linked_targets"]=8960, - ["movement_speed_bonus_when_throwing_trap_ms"]=2671, - ["movement_speed_cannot_be_reduced_below_base"]=3086, - ["movement_speed_is_%_of_base"]=8962, - ["movement_speed_is_equal_to_highest_linked_party_member"]=8961, - ["movement_velocity_+%_on_full_energy_shield"]=2865, - ["movement_velocity_+%_per_frenzy_charge"]=1707, - ["movement_velocity_+%_per_poison_stack"]=8987, - ["movement_velocity_+%_per_shock"]=2705, - ["movement_velocity_+%_per_totem"]=8990, - ["movement_velocity_+%_when_on_full_life"]=1705, - ["movement_velocity_+%_when_on_low_life"]=1704, - ["movement_velocity_+%_when_on_shocked_ground"]=2047, - ["movement_velocity_+%_while_at_maximum_power_charges"]=8991, - ["movement_velocity_+%_while_chilled"]=8992, - ["movement_velocity_+%_while_cursed"]=2526, - ["movement_velocity_+%_while_ignited"]=2704, - ["movement_velocity_+%_while_no_gems_in_boots"]=8988, - ["movement_velocity_+%_while_phasing"]=2510, - ["movement_velocity_+%_with_magic_abyss_jewel_socketed"]=8989, - ["movement_velocity_+1%_per_X_evasion_rating"]=2572, - ["movement_velocity_while_not_hit_+%"]=3113, - ["nearby_allies_have_onslaught"]=8993, - ["nearby_corpses_explode_dealing_%_maximum_life_physical_damage_on_warcry"]=8994, - ["nearby_enemies_all_exposure_%_while_phasing"]=8995, - ["nearby_enemies_are_blinded_if_2_redeemer_items"]=4339, - ["nearby_enemies_are_blinded_while_you_have_active_physical_aegis"]=8996, - ["nearby_enemies_are_chilled"]=8997, - ["nearby_enemies_are_chilled_and_shocked_while_you_are_near_a_corpse"]=8998, - ["nearby_enemies_are_crushed_while_you_have_X_rage"]=8999, - ["nearby_enemies_are_intimidated_if_2_warlord_items"]=4340, - ["nearby_enemies_are_intimidated_while_you_have_rage"]=9000, - ["nearby_enemies_are_unnerved_if_2_elder_items"]=4341, - ["nearby_enemies_chilled_on_block"]=4156, - ["nearby_enemies_fire_dot_resistance_is_%_while_you_are_stationary"]=9002, - ["nearby_enemies_have_cold_exposure_while_you_are_affected_by_herald_of_ice"]=9003, - ["nearby_enemies_have_fire_exposure_while_you_are_affected_by_herald_of_ash"]=9004, - ["nearby_enemies_have_lightning_exposure_while_you_are_affected_by_herald_of_thunder"]=9005, - ["nearby_enemies_lightning_resist_equal_to_yours"]=9006, - ["nearby_enemies_no_fire_dot_resistance_while_you_are_stationary"]=9007, - ["nearby_enemies_physical_damage_taken_+%_per_2fortification_on_you"]=9008, - ["nearby_non_player_allies_are_%_shocked_and_grant_you_charges_on_death"]=9009, - ["nearby_party_members_max_endurance_charges_is_equal_to_yours"]=9010, - ["nearby_traps_within_x_units_also_trigger_on_triggering_trap"]=3369, - ["necromancer_damage_+%_final_for_you_and_allies_with_nearby_corpse"]=9011, - ["necromancer_damage_+%_for_nearby_enemies_with_nearby_corpse"]=9012, - ["necromancer_defensive_notable_minion_maximum_life_+%_final"]=9013, - ["necromancer_energy_shield_regeneration_rate_per_minute_%_for_you_and_allies_per_nearby_corpse"]=9014, - ["necromancer_mana_regeneration_rate_per_minute_for_you_and_allies_per_nearby_corpse"]=9015, - ["necromancer_minion_damage_+%_final"]=9016, - ["necropolis_corrupting_tempest_on_pack_death"]=9017, - ["necropolis_meteor_shower_on_pack_death"]=9018, - ["necropolis_pack_monster_level_+"]=9019, - ["necropolis_strongbox_on_pack_death"]=9020, - ["necropolis_tormented_spirit_on_pack_death"]=9021, - ["necrotic_footprints_from_item"]=9022, - ["never_block"]=3155, - ["never_freeze"]=2461, - ["never_freeze_or_chill"]=2462, - ["never_ignite"]=2460, - ["never_ignite_chill_freeze_shock"]=9023, - ["never_shock"]=2463, - ["new_arctic_armour_fire_damage_taken_when_hit_+%_final"]=3032, - ["new_arctic_armour_physical_damage_taken_when_hit_+%_final"]=3031, - ["nightblade_elusive_grants_critical_strike_multiplier_+_to_supported_skills"]=9024, - ["no_barrage_projectile_spread"]=9025, - ["no_critical_strike_multiplier"]=2575, - ["no_energy_shield"]=2067, - ["no_energy_shield_recharge_or_regeneration"]=2570, - ["no_energy_shield_recovery"]=3008, - ["no_evasion_rating"]=9026, - ["no_experience_gain"]=9027, - ["no_extra_bleed_damage_while_moving"]=3082, - ["no_extra_bleed_damage_while_target_is_moving"]=9028, - ["no_inherent_chance_to_block_while_dual_wielding"]=9029, - ["no_life_regeneration"]=2172, - ["no_mana"]=2081, - ["no_mana_regeneration"]=2173, - ["no_maximum_power_charges"]=2911, - ["no_physical_damage_reduction_rating"]=2066, - ["non_aura_hexes_gain_20%_effect_per_second"]=9030, - ["non_aura_vaal_skills_soul_requirement_+%"]=9031, - ["non_chaos_damage_%_to_add_as_chaos_damage_per_siphoning_charge"]=4223, - ["non_chaos_damage_%_to_add_as_chaos_damage_per_void_spawn"]=9032, - ["non_chaos_damage_to_add_as_chaos_damage_%"]=9033, - ["non_chilled_enemies_you_bleed_are_chilled"]=9034, - ["non_chilled_enemies_you_poison_are_chilled"]=9035, - ["non_critical_damage_multiplier_+%"]=2612, - ["non_critical_strikes_deal_no_damage"]=9036, - ["non_critical_strikes_penetrate_elemental_resistances_%"]=3444, - ["non_curse_aura_effect_+%"]=3453, - ["non_curse_aura_effect_+%_per_10_devotion"]=9037, - ["non_curse_aura_effect_+%_vs_enemies"]=3454, - ["non_curse_aura_effect_+%_while_linked"]=9038, - ["non_curse_auras_only_apply_to_you_and_linked_targets"]=9039, - ["non_cursed_enemies_you_curse_are_blinded_for_4_seconds"]=9040, - ["non_damaging_ailment_effect_+%"]=9041, - ["non_damaging_ailment_effect_+%_on_self"]=9042, - ["non_damaging_ailment_effect_+%_on_self_while_under_effect_of_life_or_mana_flask"]=9043, - ["non_damaging_ailment_effect_+%_on_self_while_you_have_arcane_surge"]=4216, - ["non_damaging_ailment_effect_+%_per_10_devotion"]=9044, - ["non_damaging_ailment_effect_+%_per_equipped_elder_item"]=4217, - ["non_damaging_ailment_effect_+%_with_critical_strikes"]=9045, - ["non_damaging_ailments_as_though_damage_+%_final"]=9046, - ["non_damaging_ailments_reflected_to_self"]=9047, - ["non_exceptional_support_gem_level_+"]=9049, - ["non_exceptional_support_gem_level_+_if_6_shaper_items"]=4382, - ["non_exerted_attacks_deal_no_damage"]=9050, - ["non_instant_mana_recovery_from_flasks_also_recovers_life"]=4229, - ["non_instant_warcries_have_no_cooldown"]=9051, - ["non_piercing_projectiles_critical_strike_chance_+%"]=9052, - ["non_projectile_chaining_lightning_skill_additional_chains"]=9053, - ["non_travel_attack_skill_repeat_count"]=9054, - ["non_unique_flask_effect_+%"]=2643, - ["normal_monster_dropped_item_quantity_+%"]=9055, - ["nova_spells_cast_at_marked_target"]=9056, - ["nova_spells_cast_at_target_location"]=9057, - ["num_magic_utility_flasks_always_apply"]=4306, - ["num_of_additional_chains_at_max_frenzy_charges"]=1731, - ["number_of_additional_arrows"]=1699, - ["number_of_additional_arrows_if_havent_cast_dash_recently"]=1700, - ["number_of_additional_arrows_while_main_hand_accuracy_is_3000_or_more"]=9058, - ["number_of_additional_chains_for_projectiles_while_phasing"]=9059, - ["number_of_additional_clones"]=2978, - ["number_of_additional_curses_allowed"]=2069, - ["number_of_additional_curses_allowed_if_6_hunter_items"]=4379, - ["number_of_additional_curses_allowed_on_self"]=2070, - ["number_of_additional_curses_allowed_while_affected_by_malevolence"]=9060, - ["number_of_additional_curses_allowed_while_at_maximum_power_charges"]=9061, - ["number_of_additional_ignites_allowed"]=9062, - ["number_of_additional_mines_to_place"]=3436, - ["number_of_additional_mines_to_place_with_at_least_500_dex"]=9063, - ["number_of_additional_mines_to_place_with_at_least_500_int"]=9064, - ["number_of_additional_projectiles"]=1697, - ["number_of_additional_projectiles_if_you_have_been_hit_recently"]=9065, - ["number_of_additional_projectiles_if_you_have_used_movement_skill_recently"]=9066, - ["number_of_additional_remote_mines_allowed"]=2157, - ["number_of_additional_shrapnel_ballistae_per_200_strength"]=3283, - ["number_of_additional_siege_ballistae_per_200_dexterity"]=3284, - ["number_of_additional_totems_allowed"]=2155, - ["number_of_additional_totems_allowed_on_kill_for_8_seconds"]=3497, - ["number_of_additional_traps_allowed"]=2156, - ["number_of_additional_traps_to_throw"]=9067, - ["number_of_allowed_firewalls"]=9068, - ["number_of_chains"]=1694, - ["number_of_crab_charges_lost_when_hit"]=4236, - ["number_of_endurance_charges_to_gain_every_4_seconds_while_stationary"]=9071, - ["number_of_golems_allowed_with_3_primordial_jewels"]=9072, - ["number_of_melee_skeletons_to_summon_as_mage_skeletons"]=3137, - ["number_of_projectiles_+%_final_from_skill"]=9073, - ["number_of_raging_spirits_is_limited_to_3"]=9074, - ["number_of_skeletons_allowed_per_2_old"]=9075, - ["number_of_support_ghosts_is_limited_to_3"]=9076, - ["number_of_zombies_allowed_+%"]=2488, - ["number_of_zombies_allowed_+1_per_X_strength"]=9077, - ["object_inherent_attack_skills_damage_+%_final_per_frenzy_charge"]=2979, - ["occultist_chaos_damage_+%_final"]=9078, - ["occultist_cold_damage_+%_final"]=9079, - ["occultist_energy_shield_always_recovers_for_4_seconds_after_starting_recovery"]=3631, - ["occultist_gain_%_of_non_chaos_damage_as_chaos_damage_per_curse_on_target_on_kill_for_4_seconds"]=3644, - ["occultist_immune_to_stun_while_has_energy_shield"]=3630, - ["occultist_stacking_energy_shield_regeneration_rate_per_minute_%_on_kill_for_4_seconds"]=3629, - ["off_hand_accuracy_equal_to_main_hand_accuracy_while_wielding_sword"]=9080, - ["off_hand_attack_speed_+%_while_dual_wielding"]=9081, - ["off_hand_attack_speed_+%_while_wielding_two_weapon_types"]=9082, - ["off_hand_base_attack_time_+_ms"]=9083, + ["min_attack_added_chaos_damage_per_100_mana"]=1324, + ["mine_%_chance_to_detonate_twice"]=9056, + ["mine_area_damage_+%_if_detonated_mine_recently"]=9051, + ["mine_area_of_effect_+%"]=9052, + ["mine_area_of_effect_+%_if_detonated_mine_recently"]=9053, + ["mine_arming_speed_+%"]=4160, + ["mine_aura_effect_+%"]=9054, + ["mine_critical_strike_chance_+%"]=1410, + ["mine_critical_strike_multiplier_+"]=1441, + ["mine_damage_+%"]=1132, + ["mine_damage_leeched_as_life_to_you_permyriad"]=4167, + ["mine_damage_penetrates_%_elemental_resistance"]=2717, + ["mine_detonation_is_instant"]=2715, + ["mine_detonation_radius_+%"]=1859, + ["mine_detonation_speed_+%"]=9055, + ["mine_duration_+%"]=1857, + ["mine_extra_uses"]=2965, + ["mine_laying_speed_+%"]=1861, + ["mine_laying_speed_+%_for_4_seconds_on_detonation"]=3408, + ["mines_hinder_nearby_enemies_for_x_ms_on_arming"]=9057, + ["mines_invulnerable"]=9058, + ["mines_invulnerable_for_duration_ms"]=2720, + ["minimum_added_chaos_damage_if_have_crit_recently"]=9059, + ["minimum_added_chaos_damage_per_curse_on_enemy"]=9060, + ["minimum_added_chaos_damage_per_spiders_web_on_enemy"]=9061, + ["minimum_added_chaos_damage_to_attacks_and_spells_per_50_strength"]=9062, + ["minimum_added_chaos_damage_to_attacks_per_50_strength"]=9063, + ["minimum_added_chaos_damage_vs_enemies_with_5+_poisons"]=9064, + ["minimum_added_cold_damage_if_have_crit_recently"]=9065, + ["minimum_added_cold_damage_per_frenzy_charge"]=4204, + ["minimum_added_cold_damage_to_attacks_per_10_dexterity"]=9066, + ["minimum_added_cold_damage_vs_chilled_enemies"]=9067, + ["minimum_added_cold_damage_while_affected_by_hatred"]=9068, + ["minimum_added_cold_damage_while_you_have_avians_might"]=9069, + ["minimum_added_fire_attack_damage_per_active_buff"]=1208, + ["minimum_added_fire_damage_if_blocked_recently"]=4206, + ["minimum_added_fire_damage_if_have_crit_recently"]=9070, + ["minimum_added_fire_damage_per_100_lowest_of_max_life_mana"]=9071, + ["minimum_added_fire_damage_per_active_buff"]=1210, + ["minimum_added_fire_damage_per_endurance_charge"]=9072, + ["minimum_added_fire_damage_to_attacks_per_1%_light_radius"]=9073, + ["minimum_added_fire_damage_to_attacks_per_10_strength"]=9074, + ["minimum_added_fire_damage_to_hits_vs_blinded_enemies"]=9075, + ["minimum_added_fire_damage_vs_ignited_enemies"]=1207, + ["minimum_added_fire_spell_damage_per_active_buff"]=1209, + ["minimum_added_lightning_damage_if_have_crit_recently"]=9076, + ["minimum_added_lightning_damage_per_power_charge"]=9077, + ["minimum_added_lightning_damage_per_shocked_enemy_killed_recently"]=9078, + ["minimum_added_lightning_damage_to_attacks_per_10_intelligence"]=9079, + ["minimum_added_lightning_damage_to_spells_per_power_charge"]=9080, + ["minimum_added_lightning_damage_while_you_have_avians_might"]=9081, + ["minimum_added_physical_damage_if_have_crit_recently"]=9082, + ["minimum_added_physical_damage_per_endurance_charge"]=9083, + ["minimum_added_physical_damage_per_impaled_on_enemy"]=9084, + ["minimum_added_physical_damage_vs_bleeding_enemies"]=2427, + ["minimum_added_physical_damage_vs_frozen_enemies"]=1206, + ["minimum_added_physical_damage_vs_poisoned_enemies"]=9085, + ["minimum_added_spell_cold_damage_while_no_life_is_reserved"]=9086, + ["minimum_added_spell_fire_damage_while_no_life_is_reserved"]=9087, + ["minimum_added_spell_lightning_damage_while_no_life_is_reserved"]=9088, + ["minimum_arrow_fire_damage_added_for_each_pierce"]=4702, + ["minimum_chaos_damage_to_return_to_melee_attacker"]=2134, + ["minimum_cold_damage_to_return_to_melee_attacker"]=2132, + ["minimum_endurance_charges_at_devotion_threshold"]=9089, + ["minimum_endurance_charges_per_stackable_unique_jewel"]=4094, + ["minimum_endurance_charges_while_on_low_life_+"]=9090, + ["minimum_fire_damage_to_return_to_melee_attacker"]=2131, + ["minimum_frenzy_charges_at_devotion_threshold"]=9091, + ["minimum_frenzy_charges_per_stackable_unique_jewel"]=4095, + ["minimum_frenzy_endurance_power_charges_are_equal_to_maximum_while_stationary"]=9092, + ["minimum_frenzy_power_endurance_charges"]=9093, + ["minimum_lightning_damage_to_return_on_block"]=2520, + ["minimum_lightning_damage_to_return_to_melee_attacker"]=2133, + ["minimum_physical_damage_to_reflect_to_self_on_attack"]=2129, + ["minimum_physical_damage_to_return_on_block"]=2519, + ["minimum_physical_damage_to_return_to_melee_attacker"]=2130, + ["minimum_power_charges_at_devotion_threshold"]=9094, + ["minimum_power_charges_per_stackable_unique_jewel"]=4096, + ["minimum_power_charges_while_on_low_life_+"]=9095, + ["minimum_rage"]=9096, + ["minimum_random_movement_velocity_+%_when_hit"]=9097, + ["minimum_unarmed_added_chaos_damage_for_each_poison_on_target"]=10293, + ["minion_%_chance_to_be_summoned_with_maximum_frenzy_charges"]=9157, + ["minion_accuracy_rating"]=9098, + ["minion_accuracy_rating_+%"]=9100, + ["minion_accuracy_rating_per_10_devotion"]=9099, + ["minion_additional_base_critical_strike_chance"]=9101, + ["minion_additional_physical_damage_reduction_%"]=2207, + ["minion_additional_spell_block_%"]=2838, + ["minion_are_aggressive_if_have_blocked_recently"]=9102, + ["minion_area_of_effect_+%_if_you_have_cast_a_minion_skill_recently"]=9103, + ["minion_attack_and_cast_speed_+%"]=9104, + ["minion_attack_and_cast_speed_+%_if_you_or_minions_have_killed_enemy_recently"]=9105, + ["minion_attack_and_cast_speed_+%_per_10_devotion"]=9106, + ["minion_attack_and_cast_speed_+%_per_active_skeleton"]=3205, + ["minion_attack_and_cast_speed_+%_while_you_are_affected_by_a_herald"]=9107, + ["minion_attack_cooldown_recovery_+%"]=9108, + ["minion_attack_hits_knockback_chance_%"]=9109, + ["minion_attack_maximum_added_physical_damage"]=3700, + ["minion_attack_minimum_added_physical_damage"]=3700, + ["minion_attack_speed_+%"]=2841, + ["minion_attack_speed_+%_per_50_dex"]=9110, + ["minion_attacks_chance_to_blind_on_hit_%"]=9111, + ["minion_attacks_chance_to_taunt_on_hit_%"]=3363, + ["minion_base_fire_damage_%_to_convert_to_chaos"]=9112, + ["minion_base_physical_damage_%_to_convert_to_chaos"]=1896, + ["minion_base_physical_damage_%_to_convert_to_chaos_per_white_socket_on_item"]=2663, + ["minion_base_physical_damage_%_to_convert_to_cold"]=1891, + ["minion_base_physical_damage_%_to_convert_to_cold_per_green_socket_on_item"]=2657, + ["minion_base_physical_damage_%_to_convert_to_fire"]=1889, + ["minion_base_physical_damage_%_to_convert_to_fire_per_red_socket_on_item"]=2653, + ["minion_base_physical_damage_%_to_convert_to_lightning"]=1893, + ["minion_base_physical_damage_%_to_convert_to_lightning_per_blue_socket_on_item"]=2659, + ["minion_bleed_on_hit_with_attacks_%"]=2423, + ["minion_block_%"]=2837, + ["minion_cannot_crit"]=9113, + ["minion_cast_speed_+%"]=2842, + ["minion_caustic_cloud_on_death_maximum_life_per_minute_to_deal_as_chaos_damage_%"]=3374, + ["minion_chance_to_deal_double_damage_%"]=9114, + ["minion_chance_to_deal_double_damage_%_per_fortification"]=1909, + ["minion_chance_to_deal_double_damage_while_on_full_life_%"]=9115, + ["minion_chance_to_freeze_%"]=9116, + ["minion_chance_to_freeze_shock_ignite_%"]=9117, + ["minion_chance_to_gain_onslaught_on_kill_for_4_seconds_%"]=3313, + ["minion_chance_to_gain_power_charge_on_hit_%"]=9118, + ["minion_chance_to_gain_unholy_might_on_kill_for_4_seconds_%"]=3311, + ["minion_chance_to_ignite_%"]=9119, + ["minion_chance_to_impale_on_attack_hit_%"]=9120, + ["minion_chance_to_shock_%"]=9121, + ["minion_chaos_damage_does_not_bypass_energy_shield"]=4335, + ["minion_chaos_resistance_%"]=2847, + ["minion_cold_damage_resistance_%"]=4121, + ["minion_cooldown_recovery_+%"]=9122, + ["minion_critical_strike_chance_+%"]=9123, + ["minion_critical_strike_chance_+%_per_maximum_power_charge"]=9124, + ["minion_critical_strike_multiplier_+"]=9125, + ["minion_critical_strike_multiplier_+_per_stackable_unique_jewel"]=4097, + ["minion_damage_+%"]=1906, + ["minion_damage_+%_final_while_on_low_life_from_catarina_bloodline"]=9126, + ["minion_damage_+%_if_enemy_hit_recently"]=9130, + ["minion_damage_+%_if_have_used_a_minion_skill_recently"]=1907, + ["minion_damage_+%_if_warcried_recently"]=9127, + ["minion_damage_+%_per_5_dex"]=1911, + ["minion_damage_+%_per_active_spectre"]=3207, + ["minion_damage_+%_per_fortification"]=1910, + ["minion_damage_+%_vs_abyssal_monsters"]=9131, + ["minion_damage_+%_while_affected_by_a_herald"]=9132, + ["minion_damage_against_ignited_enemies_+%"]=9128, + ["minion_damage_increases_and_reductions_also_affects_you"]=3682, + ["minion_damage_over_time_multiplier_+_per_minion_abyss_jewel_up_to_+30"]=9129, + ["minion_damage_taken_+%"]=9133, + ["minion_deal_no_non_cold_damage"]=9134, + ["minion_duration_+%_per_active_zombie"]=3206, + ["minion_elemental_damage_%_to_add_as_chaos"]=9135, + ["minion_elemental_resistance_%"]=2846, + ["minion_elemental_resistance_30%"]=9136, + ["minion_energy_shield_delay_-%"]=4336, + ["minion_evasion_rating_+%"]=9137, + ["minion_fire_cloud_on_death_maximum_life_per_minute_to_deal_as_fire_damage_%"]=9138, + ["minion_fire_damage_resistance_%"]=9139, + ["minion_flask_charges_used_+%"]=2119, + ["minion_global_always_hit"]=9140, + ["minion_global_maximum_added_chaos_damage"]=3701, + ["minion_global_maximum_added_cold_damage"]=3702, + ["minion_global_maximum_added_fire_damage"]=3703, + ["minion_global_maximum_added_lightning_damage"]=3704, + ["minion_global_maximum_added_physical_damage"]=3705, + ["minion_global_minimum_added_chaos_damage"]=3701, + ["minion_global_minimum_added_cold_damage"]=3702, + ["minion_global_minimum_added_fire_damage"]=3703, + ["minion_global_minimum_added_lightning_damage"]=3704, + ["minion_global_minimum_added_physical_damage"]=3705, + ["minion_grants_rampage_kill_to_parent_on_hitting_rare_or_unique_enemy_%"]=9141, + ["minion_has_unholy_might"]=9142, + ["minion_hits_ignore_enemy_elemental_resistances_while_has_energy_shield"]=4337, + ["minion_hits_ignore_enemy_monster_physical_damage_reduction_%_chance"]=9143, + ["minion_larger_aggro_radius"]=10557, + ["minion_life_increased_by_overcapped_fire_resistance"]=9144, + ["minion_life_leech_from_any_damage_permyriad"]=2844, + ["minion_life_leech_permyriad_vs_poisoned_enemies"]=9145, + ["minion_life_recovery_rate_+%"]=1700, + ["minion_life_regeneration_per_minute_per_active_raging_spirit"]=3208, + ["minion_life_regeneration_rate_per_minute_%"]=2845, + ["minion_life_regeneration_rate_per_minute_%_if_blocked_recently"]=9146, + ["minion_life_regeneration_rate_per_second"]=9147, + ["minion_maim_on_hit_%"]=9148, + ["minion_malediction_on_hit"]=9149, + ["minion_maximum_all_elemental_resistances_%"]=9150, + ["minion_maximum_energy_shield_+%"]=1703, + ["minion_maximum_life_%_to_add_as_maximum_energy_shield"]=9151, + ["minion_maximum_life_%_to_convert_to_maximum_energy_shield_per_1%_chaos_resistance"]=4334, + ["minion_maximum_life_+%"]=1701, + ["minion_maximum_mana_+%"]=1702, + ["minion_melee_damage_+%"]=9152, + ["minion_minimum_power_charges"]=9153, + ["minion_movement_speed_+%"]=1704, + ["minion_movement_speed_+%_per_50_dex"]=9154, + ["minion_movement_velocity_+%_for_each_herald_affecting_you"]=9155, + ["minion_no_critical_strike_multiplier"]=9156, + ["minion_no_extra_bleed_damage_while_moving"]=3123, + ["minion_physical_damage_%_to_add_as_cold"]=4122, + ["minion_physical_damage_%_to_add_as_fire"]=9158, + ["minion_physical_damage_reduction_rating"]=2839, + ["minion_projectile_speed_+%"]=9159, + ["minion_raging_spirit_%_of_maximum_life_taken_per_minute_as_chaos_damage"]=9161, + ["minion_raging_spirit_maximum_life_+%"]=9160, + ["minion_recover_%_maximum_life_on_minion_death"]=9162, + ["minion_recover_%_of_maximum_life_on_block"]=2993, + ["minion_recover_X_life_on_block"]=1697, + ["minion_skill_area_of_effect_+%"]=2956, + ["minion_skill_gem_level_+"]=1549, + ["minion_skill_gem_quality_+"]=9163, + ["minion_skill_mana_cost_+%"]=9164, + ["minion_spell_cooldown_recovery_+%"]=9165, + ["minion_spell_suppression_chance_%"]=9166, + ["minion_spells_chance_to_hinder_on_hit_%"]=9167, + ["minion_stun_threshold_reduction_+%"]=9168, + ["minion_summoned_recently_attack_and_cast_speed_+%"]=9169, + ["minion_summoned_recently_cannot_be_damaged"]=9170, + ["minion_summoned_recently_critical_strike_chance_+%"]=9171, + ["minion_summoned_recently_movement_speed_+%"]=9172, + ["minion_unholy_might_on_kill_duration_ms"]=2852, + ["minions_%_chance_to_blind_on_hit"]=4085, + ["minions_accuracy_is_equal_to_yours"]=9173, + ["minions_affected_by_affliction_have_onslaught"]=9174, + ["minions_attacks_overwhelm_%_physical_damage_reduction"]=9175, + ["minions_cannot_attack"]=9176, + ["minions_cannot_be_blinded"]=4084, + ["minions_cannot_be_damaged_after_summoned_ms"]=9177, + ["minions_cannot_be_killed_but_die_x_seconds_after_reaching_1_life"]=9178, + ["minions_cannot_cast_spells"]=9179, + ["minions_cannot_taunt_enemies"]=9180, + ["minions_chance_to_intimidate_on_hit_%"]=9181, + ["minions_chance_to_poison_on_hit_%"]=3106, + ["minions_deal_%_of_physical_damage_as_additional_chaos_damage"]=9182, + ["minions_gain_half_your_strength_from_ascendancy"]=9183, + ["minions_gain_x_percent_of_your_resistances"]=9184, + ["minions_gain_your_spell_suppression_chance"]=9185, + ["minions_gain_your_strength"]=9186, + ["minions_get_shield_stats_instead_of_you"]=2125, + ["minions_go_crazy_on_crit_ms"]=9187, + ["minions_grant_owner_and_owners_totems_gains_endurance_charge_on_burning_enemy_kill_%"]=3260, + ["minions_have_%_chance_to_inflict_wither_on_hit"]=9189, + ["minions_have_+%_critical_strike_multiplier_per_wither_on_enemies"]=9190, + ["minions_have_no_armour_or_energy_shield"]=9188, + ["minions_have_non_curse_aura_effect_+%_from_parent_skills"]=2078, + ["minions_have_same_maximum_num_of_charges_as_owner"]=9191, + ["minions_have_same_num_of_charges_as_owner"]=9192, + ["minions_hits_can_only_kill_ignited_enemies"]=9193, + ["minions_penetrate_elemental_resistances_%_vs_cursed_enemies"]=9194, + ["minions_recover_%_maximum_life_on_killing_poisoned_enemy"]=9195, + ["minions_recover_%_maximum_life_when_you_focus"]=9196, + ["minions_reflected_damage_taken_+%"]=9197, + ["minions_take_%_of_life_as_chaos_damage_when_summoned_over_1_second"]=9198, + ["minions_use_parents_flasks_on_summon"]=2115, + ["minions_use_your_main_hand_base_crit_chance_from_weapon"]=9199, + ["mirage_archer_duration_+%"]=9200, + ["mirage_archers_do_not_attach"]=4345, + ["mirror_arrow_and_mirror_arrow_clone_attack_speed_+%"]=3798, + ["mirror_arrow_and_mirror_arrow_clone_damage_+%"]=3652, + ["mirror_arrow_cooldown_speed_+%"]=3816, + ["missing_unreserved_life_%_gained_as_life_before_hit"]=9202, + ["missing_unreserved_life_%_gained_as_life_before_hit_per_defiance"]=9201, + ["mist_footprints_from_item"]=10652, + ["mod_granted_passive_hash"]=9203, + ["mod_granted_passive_hash_2"]=9204, + ["mod_granted_passive_hash_3"]=9205, + ["mod_granted_passive_hash_4"]=9206, + ["modifiers_to_attributes_instead_apply_to_ascendance"]=1123, + ["modifiers_to_claw_attack_speed_also_affect_unarmed_melee_attack_speed"]=3505, + ["modifiers_to_claw_critical_strike_chance_also_affect_unarmed_melee_critical_strike_chance"]=3506, + ["modifiers_to_claw_damage_also_affect_unarmed_melee_damage"]=3504, + ["modifiers_to_fire_resistance_also_apply_to_cold_lightning_resistance_at_%_value"]=9207, + ["modifiers_to_map_item_drop_quantity_also_apply_to_map_item_drop_rarity"]=3528, + ["modifiers_to_maximum_fire_resistance_apply_to_maximum_cold_and_lightning_resistance"]=9208, + ["modifiers_to_minimum_endurance_charges_instead_apply_to_brutal_charges"]=1741, + ["modifiers_to_minimum_frenzy_charges_instead_apply_to_affliction_charges"]=1746, + ["modifiers_to_minimum_power_charges_instead_apply_to_absorption_charges"]=1751, + ["modifiers_to_minion_damage_also_affect_you"]=3681, + ["modifiers_to_minion_life_regeneration_also_affect_you"]=3687, + ["modifiers_to_minion_movement_speed_also_affect_you"]=3688, + ["modifiers_to_number_of_projectiles_instead_apply_to_splitting"]=9209, + ["molten_shell_buff_effect_+%"]=3956, + ["molten_shell_damage_+%"]=3640, + ["molten_shell_duration_+%"]=9210, + ["molten_shell_explosion_damage_penetrates_%_fire_resistance"]=9211, + ["molten_strike_chain_count_+"]=9213, + ["molten_strike_damage_+%"]=3574, + ["molten_strike_num_of_additional_projectiles"]=3878, + ["molten_strike_projectiles_chain_when_impacting_ground"]=9212, + ["molten_strike_radius_+%"]=3744, + ["monster_base_block_%"]=1075, + ["monster_converts_on_death"]=9214, + ["monster_damage_+%_final_per_alive_packmate"]=9215, + ["monster_dropped_item_quantity_+%"]=9216, + ["monster_dropped_item_rarity_+%"]=9217, + ["monster_grants_no_flask_charges"]=9218, + ["monster_life_+%_final_from_map"]=1508, + ["monster_life_+%_final_from_rarity"]=1507, + ["monster_remove_x_flask_charges_from_all_flasks"]=9221, + ["monster_slain_experience_+%"]=9222, + ["mortar_barrage_mine_damage_+%"]=9223, + ["mortar_barrage_mine_num_projectiles"]=9224, + ["mortar_barrage_mine_throwing_speed_+%"]=9226, + ["mortar_barrage_mine_throwing_speed_halved_+%"]=9225, + ["movement_attack_skills_attack_speed_+%"]=9227, + ["movement_skills_cooldown_speed_+%"]=9228, + ["movement_skills_cooldown_speed_+%_while_affected_by_haste"]=9229, + ["movement_skills_cost_no_mana"]=3404, + ["movement_skills_deal_no_physical_damage"]=9230, + ["movement_skills_mana_cost_+%"]=4114, + ["movement_speed_+%_during_flask_effect"]=3118, + ["movement_speed_+%_for_4_seconds_on_block"]=3251, + ["movement_speed_+%_if_below_100_dexterity"]=9231, + ["movement_speed_+%_if_cast_a_mark_spell_recently"]=9238, + ["movement_speed_+%_if_crit_recently"]=9239, + ["movement_speed_+%_if_enemy_hit_recently"]=9240, + ["movement_speed_+%_if_enemy_hit_with_off_hand_weapon_recently"]=9241, + ["movement_speed_+%_if_enemy_killed_recently"]=4192, + ["movement_speed_+%_if_have_cast_dash_recently"]=9242, + ["movement_speed_+%_if_have_not_taken_damage_recently"]=9243, + ["movement_speed_+%_if_have_used_a_vaal_skill_recently"]=9244, + ["movement_speed_+%_if_pierced_recently"]=4137, + ["movement_speed_+%_if_placed_trap_or_mine_recently"]=9232, + ["movement_speed_+%_if_used_a_warcry_recently"]=4110, + ["movement_speed_+%_on_throwing_trap"]=2706, + ["movement_speed_+%_per_5_rage"]=9245, + ["movement_speed_+%_per_chest_opened_recently"]=9246, + ["movement_speed_+%_per_endurance_charge"]=9247, + ["movement_speed_+%_per_nearby_corpse"]=9233, + ["movement_speed_+%_per_nearby_enemy"]=9248, + ["movement_speed_+%_per_poison_up_to_50%"]=9249, + ["movement_speed_+%_per_power_charge"]=9250, + ["movement_speed_+%_per_summoned_phantasm"]=9234, + ["movement_speed_+%_while_affected_by_grace"]=9251, + ["movement_speed_+%_while_bleeding"]=9252, + ["movement_speed_+%_while_dual_wielding"]=9253, + ["movement_speed_+%_while_fortified"]=3252, + ["movement_speed_+%_while_holding_shield"]=9254, + ["movement_speed_+%_while_not_affected_by_status_ailments"]=3242, + ["movement_speed_+%_while_not_using_flask"]=9255, + ["movement_speed_+%_while_on_burning_chilled_shocked_ground"]=9256, + ["movement_speed_+%_while_on_burning_ground"]=9257, + ["movement_speed_+%_while_poisoned"]=9258, + ["movement_speed_+%_while_you_have_cats_stealth"]=9259, + ["movement_speed_+%_while_you_have_energy_shield"]=9260, + ["movement_speed_+%_while_you_have_infusion"]=9261, + ["movement_speed_+%_while_you_have_two_linked_targets"]=9235, + ["movement_speed_bonus_when_throwing_trap_ms"]=2706, + ["movement_speed_cannot_be_reduced_below_base"]=3128, + ["movement_speed_is_%_of_base"]=9237, + ["movement_speed_is_equal_to_highest_linked_party_member"]=9236, + ["movement_velocity_+%_on_full_energy_shield"]=2902, + ["movement_velocity_+%_per_frenzy_charge"]=1737, + ["movement_velocity_+%_per_poison_stack"]=9262, + ["movement_velocity_+%_per_shock"]=2740, + ["movement_velocity_+%_per_totem"]=9265, + ["movement_velocity_+%_when_on_full_life"]=1735, + ["movement_velocity_+%_when_on_low_life"]=1734, + ["movement_velocity_+%_when_on_shocked_ground"]=2079, + ["movement_velocity_+%_while_at_maximum_power_charges"]=9266, + ["movement_velocity_+%_while_chilled"]=9267, + ["movement_velocity_+%_while_cursed"]=2559, + ["movement_velocity_+%_while_ignited"]=2739, + ["movement_velocity_+%_while_no_gems_in_boots"]=9263, + ["movement_velocity_+%_while_phasing"]=2543, + ["movement_velocity_+%_with_magic_abyss_jewel_socketed"]=9264, + ["movement_velocity_+1%_per_X_evasion_rating"]=2607, + ["movement_velocity_while_not_hit_+%"]=3155, + ["nearby_allies_have_onslaught"]=9268, + ["nearby_corpses_explode_dealing_%_maximum_life_physical_damage_on_warcry"]=9269, + ["nearby_enemies_all_exposure_%_while_phasing"]=9270, + ["nearby_enemies_are_blinded_if_2_redeemer_items"]=4385, + ["nearby_enemies_are_blinded_while_you_have_active_physical_aegis"]=9271, + ["nearby_enemies_are_chilled"]=9272, + ["nearby_enemies_are_chilled_and_shocked_while_you_are_near_a_corpse"]=9273, + ["nearby_enemies_are_crushed_while_you_have_X_rage"]=9274, + ["nearby_enemies_are_intimidated_if_2_warlord_items"]=4386, + ["nearby_enemies_are_intimidated_while_you_have_rage"]=9275, + ["nearby_enemies_are_unnerved"]=9276, + ["nearby_enemies_are_unnerved_if_2_elder_items"]=4387, + ["nearby_enemies_chilled_on_block"]=4202, + ["nearby_enemies_fire_dot_resistance_is_%_while_you_are_stationary"]=9278, + ["nearby_enemies_have_cold_exposure_while_you_are_affected_by_herald_of_ice"]=9279, + ["nearby_enemies_have_fire_exposure_while_you_are_affected_by_herald_of_ash"]=9280, + ["nearby_enemies_have_fire_exposure_while_you_are_at_maximum_rage"]=9281, + ["nearby_enemies_have_lightning_exposure_while_you_are_affected_by_herald_of_thunder"]=9282, + ["nearby_enemies_lightning_resist_equal_to_yours"]=9283, + ["nearby_enemies_no_fire_dot_resistance_while_you_are_stationary"]=9284, + ["nearby_enemies_physical_damage_taken_+%_per_2fortification_on_you"]=9285, + ["nearby_non_player_allies_are_%_shocked_and_grant_you_charges_on_death"]=9286, + ["nearby_party_members_max_endurance_charges_is_equal_to_yours"]=9287, + ["nearby_traps_within_x_units_also_trigger_on_triggering_trap"]=3414, + ["necromancer_damage_+%_final_for_you_and_allies_with_nearby_corpse"]=9288, + ["necromancer_damage_+%_for_nearby_enemies_with_nearby_corpse"]=9289, + ["necromancer_defensive_notable_minion_maximum_life_+%_final"]=9290, + ["necromancer_energy_shield_regeneration_rate_per_minute_%_for_you_and_allies_per_nearby_corpse"]=9291, + ["necromancer_mana_regeneration_rate_per_minute_for_you_and_allies_per_nearby_corpse"]=9292, + ["necromancer_minion_damage_+%_final"]=9293, + ["necropolis_corrupting_tempest_on_pack_death"]=9294, + ["necropolis_meteor_shower_on_pack_death"]=9295, + ["necropolis_pack_monster_level_+"]=9296, + ["necropolis_strongbox_on_pack_death"]=9297, + ["necropolis_tormented_spirit_on_pack_death"]=9298, + ["necrotic_footprints_from_item"]=9299, + ["never_block"]=3197, + ["never_freeze"]=2494, + ["never_freeze_or_chill"]=2495, + ["never_ignite"]=2493, + ["never_ignite_chill_freeze_shock"]=9300, + ["never_shock"]=2496, + ["new_arctic_armour_fire_damage_taken_when_hit_+%_final"]=3074, + ["new_arctic_armour_physical_damage_taken_when_hit_+%_final"]=3073, + ["nightblade_elusive_grants_critical_strike_multiplier_+_to_supported_skills"]=9301, + ["no_barrage_projectile_spread"]=9302, + ["no_critical_strike_multiplier"]=2610, + ["no_energy_shield"]=2099, + ["no_energy_shield_recharge_or_regeneration"]=2605, + ["no_energy_shield_recovery"]=3050, + ["no_evasion_rating"]=9303, + ["no_experience_gain"]=9304, + ["no_extra_bleed_damage_while_moving"]=3124, + ["no_extra_bleed_damage_while_target_is_moving"]=9305, + ["no_inherent_chance_to_block_while_dual_wielding"]=9306, + ["no_life_regeneration"]=2204, + ["no_mana"]=2113, + ["no_mana_regeneration"]=2205, + ["no_maximum_power_charges"]=2948, + ["no_physical_damage_reduction_rating"]=2098, + ["non_aura_hexes_gain_20%_effect_per_second"]=9307, + ["non_aura_vaal_skills_soul_requirement_+%"]=9308, + ["non_chaos_damage_%_to_add_as_chaos_damage_per_siphoning_charge"]=4269, + ["non_chaos_damage_%_to_add_as_chaos_damage_per_void_spawn"]=9309, + ["non_chaos_damage_to_add_as_chaos_damage_%"]=9310, + ["non_chilled_enemies_you_bleed_are_chilled"]=9311, + ["non_chilled_enemies_you_poison_are_chilled"]=9312, + ["non_critical_damage_multiplier_+%"]=2647, + ["non_critical_strikes_deal_no_damage"]=9313, + ["non_critical_strikes_penetrate_elemental_resistances_%"]=3489, + ["non_curse_aura_effect_+%"]=3498, + ["non_curse_aura_effect_+%_per_10_devotion"]=9314, + ["non_curse_aura_effect_+%_vs_enemies"]=3499, + ["non_curse_aura_effect_+%_while_linked"]=9315, + ["non_curse_auras_only_apply_to_you_and_linked_targets"]=9316, + ["non_cursed_enemies_you_curse_are_blinded_for_4_seconds"]=9317, + ["non_damaging_ailment_effect_+%"]=9320, + ["non_damaging_ailment_effect_+%_on_self"]=9321, + ["non_damaging_ailment_effect_+%_on_self_while_under_effect_of_life_or_mana_flask"]=9322, + ["non_damaging_ailment_effect_+%_on_self_while_you_have_arcane_surge"]=4262, + ["non_damaging_ailment_effect_+%_per_10_devotion"]=9323, + ["non_damaging_ailment_effect_+%_per_blue_skill_gem"]=9318, + ["non_damaging_ailment_effect_+%_per_equipped_elder_item"]=4263, + ["non_damaging_ailment_effect_+%_with_critical_strikes"]=9324, + ["non_damaging_ailment_effect_+%_with_critical_strikes_per_100_max_player_life"]=9319, + ["non_damaging_ailments_as_though_damage_+%_final"]=9325, + ["non_damaging_ailments_reflected_to_self"]=9326, + ["non_exceptional_support_gem_level_+"]=9328, + ["non_exceptional_support_gem_level_+_if_6_shaper_items"]=4428, + ["non_exerted_attacks_deal_no_damage"]=9329, + ["non_instant_mana_recovery_from_flasks_also_recovers_life"]=4275, + ["non_instant_warcries_have_no_cooldown"]=9330, + ["non_piercing_projectiles_critical_strike_chance_+%"]=9331, + ["non_projectile_chaining_lightning_skill_additional_chains"]=9332, + ["non_travel_attack_skill_repeat_count"]=9333, + ["non_unique_flask_effect_+%"]=2678, + ["normal_monster_dropped_item_quantity_+%"]=9334, + ["nova_spells_cast_at_marked_target"]=9335, + ["nova_spells_cast_at_target_location"]=9336, + ["num_magic_utility_flasks_always_apply"]=4352, + ["num_of_additional_chains_at_max_frenzy_charges"]=1761, + ["number_of_additional_arrows"]=1729, + ["number_of_additional_arrows_if_havent_cast_dash_recently"]=1730, + ["number_of_additional_arrows_while_main_hand_accuracy_is_3000_or_more"]=9337, + ["number_of_additional_chains_for_projectiles_while_phasing"]=9338, + ["number_of_additional_clones"]=3020, + ["number_of_additional_curses_allowed"]=2101, + ["number_of_additional_curses_allowed_if_6_hunter_items"]=4425, + ["number_of_additional_curses_allowed_on_self"]=2102, + ["number_of_additional_curses_allowed_while_affected_by_malevolence"]=9339, + ["number_of_additional_curses_allowed_while_at_maximum_power_charges"]=9340, + ["number_of_additional_ignites_allowed"]=9341, + ["number_of_additional_mines_to_place"]=3481, + ["number_of_additional_mines_to_place_with_at_least_500_dex"]=9342, + ["number_of_additional_mines_to_place_with_at_least_500_int"]=9343, + ["number_of_additional_projectiles"]=1727, + ["number_of_additional_projectiles_if_you_have_been_hit_recently"]=9344, + ["number_of_additional_projectiles_if_you_have_used_movement_skill_recently"]=9345, + ["number_of_additional_remote_mines_allowed"]=2189, + ["number_of_additional_shrapnel_ballistae_per_200_strength"]=3325, + ["number_of_additional_siege_ballistae_per_200_dexterity"]=3326, + ["number_of_additional_totems_allowed"]=2187, + ["number_of_additional_totems_allowed_on_kill_for_8_seconds"]=3542, + ["number_of_additional_traps_allowed"]=2188, + ["number_of_additional_traps_to_throw"]=9346, + ["number_of_allowed_firewalls"]=9347, + ["number_of_chains"]=1724, + ["number_of_crab_charges_lost_when_hit"]=4282, + ["number_of_endurance_charges_to_gain_every_4_seconds_while_stationary"]=9350, + ["number_of_ghost_totems_allowed"]=9351, + ["number_of_golems_allowed_with_3_primordial_jewels"]=9352, + ["number_of_melee_skeletons_to_summon_as_mage_skeletons"]=3179, + ["number_of_projectiles_+%_final_from_skill"]=9353, + ["number_of_raging_spirits_is_limited_to_3"]=9354, + ["number_of_skeletons_allowed_per_2_old"]=9355, + ["number_of_support_ghosts_is_limited_to_3"]=9356, + ["number_of_zombies_allowed_+%"]=2521, + ["number_of_zombies_allowed_+1_per_X_strength"]=9357, + ["object_inherent_attack_skills_damage_+%_final_per_frenzy_charge"]=3021, + ["occultist_chaos_damage_+%_final"]=9358, + ["occultist_cold_damage_+%_final"]=9359, + ["occultist_energy_shield_always_recovers_for_4_seconds_after_starting_recovery"]=3676, + ["occultist_gain_%_of_non_chaos_damage_as_chaos_damage_per_curse_on_target_on_kill_for_4_seconds"]=3689, + ["occultist_immune_to_stun_while_has_energy_shield"]=3675, + ["occultist_stacking_energy_shield_regeneration_rate_per_minute_%_on_kill_for_4_seconds"]=3674, + ["off_hand_accuracy_equal_to_main_hand_accuracy_while_wielding_sword"]=9360, + ["off_hand_attack_speed_+%_while_dual_wielding"]=9361, + ["off_hand_attack_speed_+%_while_wielding_two_weapon_types"]=9362, + ["off_hand_base_attack_time_+_ms"]=9363, ["off_hand_base_weapon_attack_duration_ms"]=15, - ["off_hand_claw_mana_gain_on_hit"]=9084, - ["off_hand_critical_strike_chance_+_per_10_es_on_shield"]=9085, - ["off_hand_critical_strike_multiplier_+_per_10_es_on_shield"]=9086, - ["off_hand_critical_strike_multiplier_+_per_melee_abyss_jewel_up_to_+100"]=9087, + ["off_hand_claw_mana_gain_on_hit"]=9364, + ["off_hand_critical_strike_chance_+_per_10_es_on_shield"]=9365, + ["off_hand_critical_strike_multiplier_+_per_10_es_on_shield"]=9366, + ["off_hand_critical_strike_multiplier_+_per_melee_abyss_jewel_up_to_+100"]=9367, ["off_hand_maximum_attack_distance"]=19, ["off_hand_minimum_attack_distance"]=17, ["off_hand_quality"]=12, - ["off_hand_treat_enemy_resistances_as_negated_on_elemental_damage_hit"]=9088, + ["off_hand_treat_enemy_resistances_as_negated_on_elemental_damage_hit"]=9368, ["off_hand_weapon_type"]=4, - ["offering_duration_+%"]=9089, - ["offering_skills_do_not_require_corpses"]=9090, - ["offering_spells_effect_+%"]=3949, - ["offerings_also_buff_you"]=1078, - ["old_dagger_implicit_critical_strike_chance_+30%"]=1368, - ["old_dagger_implicit_critical_strike_chance_+40%"]=1369, - ["old_dagger_implicit_critical_strike_chance_+50%"]=1370, - ["old_do_not_use_base_life_leech_from_cold_damage_permyriad"]=1579, - ["old_do_not_use_base_life_leech_from_elemental_damage_permyriad"]=1590, - ["old_do_not_use_base_life_leech_from_fire_damage_permyriad"]=1574, - ["old_do_not_use_base_life_leech_from_lightning_damage_permyriad"]=1583, - ["old_do_not_use_base_life_leech_from_physical_damage_permyriad"]=1570, - ["old_do_not_use_base_mana_leech_from_lightning_damage_permyriad"]=1616, - ["old_do_not_use_global_mana_leech_from_physical_attack_damage_%_per_blue_socket_on_item"]=2625, - ["old_do_not_use_life_leech_%_vs_frozen_enemies"]=1594, - ["old_do_not_use_life_leech_from_attack_damage_permyriad_vs_chilled_enemies"]=1597, - ["old_do_not_use_life_leech_from_physical_damage_%"]=1552, - ["old_do_not_use_life_leech_from_physical_damage_with_claw_%"]=1557, - ["old_do_not_use_life_leech_from_spell_damage_%"]=1567, - ["old_do_not_use_life_leech_permyriad_on_crit"]=1599, - ["old_do_not_use_life_leech_permyriad_vs_shocked_enemies"]=1592, - ["old_do_not_use_local_flask_life_leech_%_while_healing"]=864, - ["old_do_not_use_local_flask_mana_leech_%_while_healing"]=868, - ["old_do_not_use_local_life_leech_from_physical_damage_%"]=1555, - ["old_do_not_use_local_mana_leech_from_physical_damage_%"]=1605, - ["old_do_not_use_local_unique_flask_life_leech_from_chaos_damage_permyriad_while_healing"]=953, - ["old_do_not_use_mana_leech_%_vs_shocked_enemies"]=1622, - ["old_do_not_use_mana_leech_from_physical_damage_%"]=1602, - ["old_do_not_use_mana_leech_from_physical_damage_%_per_power_charge"]=1624, - ["old_do_not_use_mana_leech_from_physical_damage_with_claw_%"]=1562, - ["old_do_not_use_mana_leech_from_spell_damage_%"]=1608, - ["old_do_not_use_minion_life_leech_from_any_damage_permyriad"]=2807, - ["old_do_not_use_spell_block_%_from_assumed_block_value"]=1065, - ["old_do_not_use_spell_block_%_while_on_low_life_from_assumed_block_value"]=1066, - ["on_cast_lose_all_mana_gain_%_as_maximum_lightning_damage_for_4_seconds"]=9091, - ["on_leaving_banner_area_recover_%_of_planted_banner_resources"]=9092, - ["on_planting_banner_you_and_nearby_allies_recover_permyriad_maximum_life_per_stage"]=9093, - ["on_weapon_global_damage_+%"]=1101, - ["one_handed_attack_speed_+%"]=3208, - ["one_handed_melee_accuracy_rating_+%"]=1344, - ["one_handed_melee_attack_speed_+%"]=1327, - ["one_handed_melee_cold_damage_+%"]=1200, - ["one_handed_melee_critical_strike_chance_+%"]=1386, - ["one_handed_melee_critical_strike_multiplier_+"]=1408, - ["one_handed_melee_fire_damage_+%"]=1199, - ["one_handed_melee_physical_damage_+%"]=1193, - ["one_handed_melee_weapon_ailment_damage_+%"]=1197, - ["one_handed_melee_weapon_hit_and_ailment_damage_+%"]=1194, - ["one_handed_weapon_ailment_damage_+%"]=1198, - ["one_handed_weapon_hit_and_ailment_damage_+%"]=1195, - ["onslaught_buff_duration_on_culling_strike_ms"]=2923, - ["onslaught_buff_duration_on_kill_ms"]=2542, - ["onslaught_buff_duration_on_killing_taunted_enemy_ms"]=2543, - ["onslaught_effect_+%"]=3180, - ["onslaught_on_crit_duration_ms"]=2576, - ["onslaught_on_vaal_skill_use_duration_ms"]=2817, - ["onslaught_time_granted_on_kill_ms"]=2889, - ["onslaught_time_granted_on_killing_shocked_enemy_ms"]=2890, - ["open_nearby_chests_on_cast_chance_%"]=9094, - ["open_nearby_chests_on_warcry"]=9095, - ["orb_of_storm_strike_rate_while_channelling_+%"]=9096, - ["orb_of_storms_cast_speed_+%"]=9097, - ["orb_of_storms_damage_+%"]=3624, - ["overcapped_fire_resistance_gain_as_fire_penetration"]=2878, - ["override_maximum_damage_resistance_%"]=9098, - ["override_weapon_base_critical_strike_chance"]=9099, - ["overwhelm_phys_reduction_%_while_have_sacrificial_zeal"]=9100, - ["pack_accompanied_by_a_harbinger"]=9101, - ["pack_accompanied_by_a_map_boss"]=9102, - ["pack_accompanied_by_a_rogue_exile"]=9103, - ["pack_create_lesser_shrine_on_death"]=9104, - ["pack_is_tormented"]=9105, - ["pack_size_+%"]=9106, - ["pack_upgrade_to_magic_chance_%"]=9107, - ["pack_upgrade_to_rare_chance_%"]=9108, - ["pain_attunement_keystone_spell_damage_+%_final"]=2095, - ["pantheon_abberath_ignite_duration_on_self_+%_final"]=9109, - ["pantheon_shakari_self_poison_duration_+%_final"]=9110, - ["passive_applies_to_minions"]=2964, - ["passive_mastery_chaos_damage_+%_final_against_enemies_with_energy_shield"]=9111, - ["passive_mastery_damage_taken_over_time_+%_final"]=9112, - ["passive_mastery_hit_ailment_damage_+%_final_vs_enemies_with_5+_poisons"]=9113, - ["passive_mastery_less_projectile_speed_+%_final"]=9114, - ["passive_mastery_less_skill_effect_duration_+%_final"]=9115, - ["passive_mastery_maximum_physical_attack_damage_+%_final_with_daggers"]=9116, - ["passive_mastery_more_projectile_speed_+%_final"]=9117, - ["passive_mastery_more_skill_effect_duration_+%_final"]=9118, - ["passive_mastery_physical_damage_taken_+%_final_while_on_full_energy_shield"]=9119, - ["passive_mastery_shock_proliferation_radius"]=9120, - ["passive_mastery_stun_duration_+%_final_with_two_hand_weapon"]=9121, - ["passive_notable_ignite_proliferation_radius"]=2120, - ["passive_skill_hits_stun_as_if_dealing_melee_fire_damage_+%_final"]=9122, - ["passive_skill_ignites_from_stunning_melee_hits_deal_damage_+%_final"]=9123, - ["pathfinder_flask_life_to_recover_+%_final"]=9124, - ["pathfinder_poison_damage_+100%_final_chance_during_flask_effect"]=9125, - ["pathfinder_skills_consume_x_charges_from_a_bismuth_diamond_or_amethyst_flask"]=4313, - ["pathfinder_skills_critical_strike_chance_+%_if_charges_consumed_from_diamond_flask"]=4314, - ["pathfinder_skills_penetrate_elemental_resistances_%_if_charges_consumed_from_bismuth_flask"]=4315, - ["pathfinder_skills_physical_damage_%_to_add_as_chaos_if_charges_consumed_from_amethyst_flask"]=4316, - ["penance_brand_area_of_effect_+%"]=9126, - ["penance_brand_cast_speed_+%"]=9127, - ["penance_brand_damage_+%"]=9128, - ["penance_mark_phantasms_chance_to_grant_vaal_soul_on_death_%"]=9129, - ["penance_mark_phantasms_grant_%_increased_flask_charges"]=9130, - ["penetrate_elemental_resistance_%_per_15_ascendance"]=1098, - ["penetrate_elemental_resistance_%_per_abyssal_jewel_affecting_you"]=9131, - ["penetrate_elemental_resistance_per_frenzy_charge_%"]=2891, - ["perandus_double_number_of_coins_found"]=9132, - ["permanent_damage_+%_per_second_of_chill"]=9144, - ["permanent_damage_+%_per_second_of_freeze"]=9145, - ["permanently_intimidate_enemies_you_hit_on_full_life"]=4140, - ["permanently_intimidate_enemy_on_block"]=9146, - ["petrified_blood_mana_reservation_efficiency_+%"]=9148, - ["petrified_blood_mana_reservation_efficiency_-2%_per_1"]=9147, - ["petrified_blood_reservation_+%"]=9149, - ["phantasm_refresh_duration_on_hit_vs_rare_or_unique_%_chance"]=9150, - ["phase_on_vaal_skill_use_duration_ms"]=2818, - ["phase_run_%_chance_to_not_consume_frenzy_charges"]=3912, - ["phase_run_%_chance_to_not_replace_buff_on_skill_use"]=9151, - ["phase_run_skill_effect_duration_+%"]=4004, - ["phase_through_objects"]=2719, - ["phasing_%_for_3_seconds_on_trap_triggered_by_an_enemy"]=4127, - ["phasing_for_4_seconds_on_kill_%"]=3352, - ["phasing_if_blocked_recently"]=9152, - ["phasing_on_rampage_threshold_ms"]=2864, - ["phasing_on_trap_triggered_by_an_enemy_ms"]=4127, - ["phys_cascade_trap_cooldown_speed_+%"]=9153, - ["phys_cascade_trap_damage_+%"]=9154, - ["phys_cascade_trap_duration_+%"]=9155, - ["phys_cascade_trap_number_of_additional_cascades"]=9156, - ["physical_and_chaos_damage_taken_+%_final_while_not_unhinged"]=9157, - ["physical_attack_damage_+%"]=1112, - ["physical_attack_damage_+%_while_holding_a_shield"]=1117, - ["physical_attack_damage_taken_+"]=2135, - ["physical_axe_damage_+%"]=1211, - ["physical_bow_damage_+%"]=1241, - ["physical_claw_damage_+%"]=1223, - ["physical_claw_damage_+%_when_on_low_life"]=2484, - ["physical_dagger_damage_+%"]=1229, - ["physical_damage_%_added_as_fire_damage_if_enemy_killed_recently_by_you_or_your_totems"]=4148, - ["physical_damage_%_added_as_fire_damage_on_kill"]=3096, - ["physical_damage_%_taken_from_mana_before_life"]=4054, - ["physical_damage_%_to_add_as_chaos"]=1838, - ["physical_damage_%_to_add_as_chaos_vs_bleeding_enemies"]=4126, - ["physical_damage_%_to_add_as_chaos_vs_poisoned_enemies"]=9162, - ["physical_damage_%_to_add_as_cold"]=1836, - ["physical_damage_%_to_add_as_each_element_if_6_shaper_items"]=4380, - ["physical_damage_%_to_add_as_each_element_per_spirit_charge"]=9158, - ["physical_damage_%_to_add_as_fire"]=1835, - ["physical_damage_%_to_add_as_fire_damage_while_affected_by_anger"]=9163, - ["physical_damage_%_to_add_as_fire_if_have_crit_recently"]=9164, - ["physical_damage_%_to_add_as_fire_per_rage"]=9165, - ["physical_damage_%_to_add_as_lightning"]=1837, - ["physical_damage_%_to_add_as_lightning_damage_while_affected_by_wrath"]=9166, - ["physical_damage_%_to_add_as_random_element"]=2833, - ["physical_damage_%_to_add_as_random_element_while_ignited"]=9167, - ["physical_damage_%_to_convert_to_cold_at_devotion_threshold"]=9168, - ["physical_damage_%_to_convert_to_fire_at_devotion_threshold"]=9169, - ["physical_damage_%_to_convert_to_fire_while_you_have_avatar_of_fire"]=10312, - ["physical_damage_%_to_convert_to_lightning_at_devotion_threshold"]=9170, - ["physical_damage_%_to_gain_as_chaos_while_at_maximum_power_charges"]=3358, - ["physical_damage_+%"]=1140, - ["physical_damage_+%_for_4_seconds_when_you_block_a_unique_enemy_hit"]=4116, - ["physical_damage_+%_if_skill_costs_life"]=9171, - ["physical_damage_+%_per_10_rage"]=9172, - ["physical_damage_+%_per_explicit_map_mod_affecting_area"]=9159, - ["physical_damage_+%_vs_ignited_enemies"]=9173, - ["physical_damage_+%_vs_poisoned_enemies"]=2855, - ["physical_damage_+%_while_affected_by_herald_of_purity"]=9174, - ["physical_damage_+%_while_at_maximum_frenzy_charges_final"]=4119, - ["physical_damage_+%_while_frozen"]=3234, - ["physical_damage_+%_while_life_leeching"]=1127, - ["physical_damage_+%_while_you_have_resolute_technique"]=10310, - ["physical_damage_+%_with_axes_swords"]=9175, - ["physical_damage_+%_with_unholy_might"]=9176, - ["physical_damage_as_fire_damage_vs_ignited_enemies_%"]=2078, - ["physical_damage_can_chill"]=2777, - ["physical_damage_can_freeze"]=2778, - ["physical_damage_can_shock"]=2779, - ["physical_damage_cannot_poison"]=2788, - ["physical_damage_from_hits_%_taken_as_random_element"]=9160, - ["physical_damage_on_block_+%"]=3108, - ["physical_damage_over_time_+%"]=1120, - ["physical_damage_over_time_multiplier_+_with_attacks"]=1159, - ["physical_damage_over_time_per_10_dexterity_+%"]=3685, - ["physical_damage_over_time_taken_+%_while_moving"]=9161, - ["physical_damage_per_endurance_charge_+%"]=2040, - ["physical_damage_reduction_%_at_devotion_threshold"]=9177, - ["physical_damage_reduction_%_if_only_one_enemy_nearby"]=9185, - ["physical_damage_reduction_%_per_endurance_charge"]=2177, - ["physical_damage_reduction_%_per_hit_you_have_taken_recently"]=9179, - ["physical_damage_reduction_%_per_nearby_enemy"]=9187, - ["physical_damage_reduction_%_while_affected_by_herald_of_purity"]=9181, - ["physical_damage_reduction_and_minion_physical_damage_reduction_%"]=3948, - ["physical_damage_reduction_and_minion_physical_damage_reduction_%_per_raised_zombie"]=3343, - ["physical_damage_reduction_percent_per_frenzy_charge"]=9178, - ["physical_damage_reduction_percent_per_power_charge"]=9180, - ["physical_damage_reduction_rating_%_while_not_moving"]=4198, - ["physical_damage_reduction_rating_+%"]=1448, - ["physical_damage_reduction_rating_+%_against_projectiles"]=2363, - ["physical_damage_reduction_rating_+%_per_endurance_charge"]=9186, - ["physical_damage_reduction_rating_+%_while_chilled_or_frozen"]=3473, - ["physical_damage_reduction_rating_+%_while_not_ignited_frozen_shocked"]=2716, - ["physical_damage_reduction_rating_+1%_per_X_strength_when_in_off_hand"]=2676, - ["physical_damage_reduction_rating_during_soul_gain_prevention"]=9182, - ["physical_damage_reduction_rating_if_you_have_hit_an_enemy_recently"]=9183, - ["physical_damage_reduction_rating_per_5_evasion_on_shield"]=4263, - ["physical_damage_reduction_rating_per_endurance_charge"]=9184, - ["physical_damage_reduction_rating_per_level"]=2659, - ["physical_damage_reduction_rating_while_frozen"]=2702, - ["physical_damage_taken_%_as_chaos"]=2351, - ["physical_damage_taken_%_as_cold"]=2348, - ["physical_damage_taken_%_as_cold_if_4_redeemer_items"]=4361, - ["physical_damage_taken_%_as_cold_while_affected_by_purity_of_elements"]=9188, - ["physical_damage_taken_%_as_cold_while_affected_by_purity_of_ice"]=9189, - ["physical_damage_taken_%_as_fire"]=2347, - ["physical_damage_taken_%_as_fire_if_4_warlord_items"]=4362, - ["physical_damage_taken_%_as_fire_while_affected_by_purity_of_elements"]=9190, - ["physical_damage_taken_%_as_fire_while_affected_by_purity_of_fire"]=9191, - ["physical_damage_taken_%_as_lightning"]=2349, - ["physical_damage_taken_%_as_lightning_if_4_crusader_items"]=4363, - ["physical_damage_taken_%_as_lightning_while_affected_by_purity_of_elements"]=9192, - ["physical_damage_taken_%_as_lightning_while_affected_by_purity_of_lightning"]=9193, - ["physical_damage_taken_+"]=2136, - ["physical_damage_taken_+%"]=2142, - ["physical_damage_taken_+%_while_at_maximum_endurance_charges"]=4120, - ["physical_damage_taken_+%_while_frozen"]=2703, - ["physical_damage_taken_+%_while_moving"]=4200, - ["physical_damage_taken_+_per_level"]=2137, - ["physical_damage_taken_+_vs_beasts"]=2825, - ["physical_damage_taken_on_minion_death"]=2922, - ["physical_damage_taken_per_minute_per_siphoning_charge_if_have_used_a_skill_recently"]=4226, - ["physical_damage_taken_recouped_as_life_%"]=9194, - ["physical_damage_to_return_to_melee_attacker"]=2103, - ["physical_damage_to_return_when_hit"]=2108, - ["physical_damage_while_dual_wielding_+%"]=1187, - ["physical_damage_with_attack_skills_+%"]=9195, - ["physical_damage_with_spell_skills_+%"]=9196, - ["physical_dot_multiplier_+"]=1156, - ["physical_dot_multiplier_+_if_crit_recently"]=9197, - ["physical_dot_multiplier_+_if_spent_life_recently"]=9198, - ["physical_dot_multiplier_+_while_wielding_axes_swords"]=9199, - ["physical_hit_and_dot_damage_%_taken_as_fire"]=9200, - ["physical_mace_damage_+%"]=1235, - ["physical_ranged_attack_damage_taken_+"]=2147, - ["physical_reflect_damage_taken_+%"]=2607, - ["physical_reflect_damage_taken_and_minion_physical_reflect_damage_taken_+%"]=9201, - ["physical_skill_gem_level_+"]=9202, - ["physical_skill_gem_level_+_if_6_elder_items"]=4381, - ["physical_spell_skill_gem_level_+"]=1515, - ["physical_staff_damage_+%"]=1215, - ["physical_sword_damage_+%"]=1246, - ["physical_wand_damage_+%"]=1253, - ["physical_weapon_damage_+%_per_10_str"]=2445, - ["piercing_attacks_cause_bleeding"]=3311, - ["piercing_projectiles_critical_strike_chance_+%"]=9203, - ["placed_banner_attack_damage_+%"]=9204, - ["placing_traps_cooldown_recovery_+%"]=3348, - ["plague_bearer_chaos_damage_taken_+%_while_incubating"]=9205, - ["plague_bearer_maximum_stored_poison_damage_+%"]=9206, - ["plague_bearer_movement_speed_+%_while_infecting"]=9207, - ["player_can_be_touched_by_tormented_spirits"]=9208, - ["player_far_shot"]=10292, - ["player_gain_rampage_stacks"]=10237, + ["offering_duration_+%"]=9369, + ["offering_skills_do_not_require_corpses"]=9370, + ["offering_spells_effect_+%"]=3995, + ["offerings_also_buff_you"]=1105, + ["offerings_kill_affected_damagable_targets_when_offering_duration_expires"]=9371, + ["old_dagger_implicit_critical_strike_chance_+30%"]=1395, + ["old_dagger_implicit_critical_strike_chance_+40%"]=1396, + ["old_dagger_implicit_critical_strike_chance_+50%"]=1397, + ["old_do_not_use_base_life_leech_from_cold_damage_permyriad"]=1609, + ["old_do_not_use_base_life_leech_from_elemental_damage_permyriad"]=1620, + ["old_do_not_use_base_life_leech_from_fire_damage_permyriad"]=1604, + ["old_do_not_use_base_life_leech_from_lightning_damage_permyriad"]=1613, + ["old_do_not_use_base_life_leech_from_physical_damage_permyriad"]=1600, + ["old_do_not_use_base_mana_leech_from_lightning_damage_permyriad"]=1646, + ["old_do_not_use_global_mana_leech_from_physical_attack_damage_%_per_blue_socket_on_item"]=2660, + ["old_do_not_use_life_leech_%_vs_frozen_enemies"]=1624, + ["old_do_not_use_life_leech_from_attack_damage_permyriad_vs_chilled_enemies"]=1627, + ["old_do_not_use_life_leech_from_physical_damage_%"]=1582, + ["old_do_not_use_life_leech_from_physical_damage_with_claw_%"]=1587, + ["old_do_not_use_life_leech_from_spell_damage_%"]=1597, + ["old_do_not_use_life_leech_permyriad_on_crit"]=1629, + ["old_do_not_use_life_leech_permyriad_vs_shocked_enemies"]=1622, + ["old_do_not_use_local_flask_life_leech_%_while_healing"]=887, + ["old_do_not_use_local_flask_mana_leech_%_while_healing"]=891, + ["old_do_not_use_local_life_leech_from_physical_damage_%"]=1585, + ["old_do_not_use_local_mana_leech_from_physical_damage_%"]=1635, + ["old_do_not_use_local_unique_flask_life_leech_from_chaos_damage_permyriad_while_healing"]=978, + ["old_do_not_use_mana_leech_%_vs_shocked_enemies"]=1652, + ["old_do_not_use_mana_leech_from_physical_damage_%"]=1632, + ["old_do_not_use_mana_leech_from_physical_damage_%_per_power_charge"]=1654, + ["old_do_not_use_mana_leech_from_physical_damage_with_claw_%"]=1592, + ["old_do_not_use_mana_leech_from_spell_damage_%"]=1638, + ["old_do_not_use_minion_life_leech_from_any_damage_permyriad"]=2843, + ["old_do_not_use_spell_block_%_from_assumed_block_value"]=1091, + ["old_do_not_use_spell_block_%_while_on_low_life_from_assumed_block_value"]=1092, + ["on_cast_lose_all_mana_gain_%_as_maximum_lightning_damage_for_4_seconds"]=9372, + ["on_leaving_banner_area_recover_%_of_planted_banner_resources"]=9373, + ["on_planting_banner_you_and_nearby_allies_recover_permyriad_maximum_life_per_stage"]=9374, + ["on_weapon_global_damage_+%"]=1128, + ["one_handed_attack_speed_+%"]=3250, + ["one_handed_melee_accuracy_rating_+%"]=1371, + ["one_handed_melee_attack_speed_+%"]=1354, + ["one_handed_melee_cold_damage_+%"]=1227, + ["one_handed_melee_critical_strike_chance_+%"]=1413, + ["one_handed_melee_critical_strike_multiplier_+"]=1436, + ["one_handed_melee_fire_damage_+%"]=1226, + ["one_handed_melee_physical_damage_+%"]=1220, + ["one_handed_melee_weapon_ailment_damage_+%"]=1224, + ["one_handed_melee_weapon_hit_and_ailment_damage_+%"]=1221, + ["one_handed_weapon_ailment_damage_+%"]=1225, + ["one_handed_weapon_hit_and_ailment_damage_+%"]=1222, + ["onslaught_buff_duration_on_culling_strike_ms"]=2960, + ["onslaught_buff_duration_on_kill_ms"]=2575, + ["onslaught_buff_duration_on_killing_taunted_enemy_ms"]=2576, + ["onslaught_effect_+%"]=3222, + ["onslaught_on_crit_duration_ms"]=2611, + ["onslaught_on_vaal_skill_use_duration_ms"]=2853, + ["onslaught_time_granted_on_kill_ms"]=2926, + ["onslaught_time_granted_on_killing_shocked_enemy_ms"]=2927, + ["open_nearby_chests_on_cast_chance_%"]=9375, + ["open_nearby_chests_on_warcry"]=9376, + ["orb_of_storm_strike_rate_while_channelling_+%"]=9377, + ["orb_of_storms_cast_speed_+%"]=9378, + ["orb_of_storms_damage_+%"]=3669, + ["overcapped_fire_resistance_gain_as_fire_penetration"]=2915, + ["override_maximum_damage_resistance_%"]=9379, + ["override_weapon_base_critical_strike_chance"]=9380, + ["overwhelm_phys_reduction_%_while_have_sacrificial_zeal"]=9381, + ["pack_accompanied_by_a_harbinger"]=9382, + ["pack_accompanied_by_a_map_boss"]=9383, + ["pack_accompanied_by_a_rogue_exile"]=9384, + ["pack_create_lesser_shrine_on_death"]=9385, + ["pack_is_tormented"]=9386, + ["pack_size_+%"]=9387, + ["pack_upgrade_to_magic_chance_%"]=9388, + ["pack_upgrade_to_rare_chance_%"]=9389, + ["pain_attunement_keystone_spell_damage_+%_final"]=2127, + ["pantheon_abberath_ignite_duration_on_self_+%_final"]=9390, + ["pantheon_shakari_self_poison_duration_+%_final"]=9391, + ["passive_applies_to_minions"]=3005, + ["passive_mastery_chaos_damage_+%_final_against_enemies_with_energy_shield"]=9392, + ["passive_mastery_damage_taken_over_time_+%_final"]=9393, + ["passive_mastery_hit_ailment_damage_+%_final_vs_enemies_with_5+_poisons"]=9394, + ["passive_mastery_less_projectile_speed_+%_final"]=9395, + ["passive_mastery_less_skill_effect_duration_+%_final"]=9396, + ["passive_mastery_maximum_physical_attack_damage_+%_final_with_daggers"]=9397, + ["passive_mastery_more_projectile_speed_+%_final"]=9398, + ["passive_mastery_more_skill_effect_duration_+%_final"]=9399, + ["passive_mastery_physical_damage_taken_+%_final_while_on_full_energy_shield"]=9400, + ["passive_mastery_shock_proliferation_radius"]=9401, + ["passive_mastery_stun_duration_+%_final_with_two_hand_weapon"]=9402, + ["passive_notable_ignite_proliferation_radius"]=2152, + ["passive_skill_hits_stun_as_if_dealing_melee_fire_damage_+%_final"]=9403, + ["passive_skill_ignites_from_stunning_melee_hits_deal_damage_+%_final"]=9404, + ["pathfinder_flask_life_to_recover_+%_final"]=9405, + ["pathfinder_poison_damage_+100%_final_chance_during_flask_effect"]=9406, + ["pathfinder_skills_consume_x_charges_from_a_bismuth_diamond_or_amethyst_flask"]=4359, + ["pathfinder_skills_critical_strike_chance_+%_if_charges_consumed_from_diamond_flask"]=4360, + ["pathfinder_skills_penetrate_elemental_resistances_%_if_charges_consumed_from_bismuth_flask"]=4361, + ["pathfinder_skills_physical_damage_%_to_add_as_chaos_if_charges_consumed_from_amethyst_flask"]=4362, + ["penance_brand_area_of_effect_+%"]=9407, + ["penance_brand_cast_speed_+%"]=9408, + ["penance_brand_damage_+%"]=9409, + ["penance_mark_phantasms_chance_to_grant_vaal_soul_on_death_%"]=9410, + ["penance_mark_phantasms_grant_%_increased_flask_charges"]=9411, + ["penetrate_elemental_resistance_%_per_15_ascendance"]=1125, + ["penetrate_elemental_resistance_%_per_abyssal_jewel_affecting_you"]=9412, + ["penetrate_elemental_resistance_per_frenzy_charge_%"]=2928, + ["perandus_double_number_of_coins_found"]=9413, + ["permanent_damage_+%_per_second_of_chill"]=9425, + ["permanent_damage_+%_per_second_of_freeze"]=9426, + ["permanently_intimidate_enemies_you_hit_on_full_life"]=4186, + ["permanently_intimidate_enemy_on_block"]=9427, + ["petrified_blood_mana_reservation_efficiency_+%"]=9429, + ["petrified_blood_mana_reservation_efficiency_-2%_per_1"]=9428, + ["petrified_blood_reservation_+%"]=9430, + ["phantasm_refresh_duration_on_hit_vs_rare_or_unique_%_chance"]=9431, + ["phase_on_vaal_skill_use_duration_ms"]=2854, + ["phase_run_%_chance_to_not_consume_frenzy_charges"]=3958, + ["phase_run_%_chance_to_not_replace_buff_on_skill_use"]=9432, + ["phase_run_skill_effect_duration_+%"]=4050, + ["phase_through_objects"]=2754, + ["phasing_%_for_3_seconds_on_trap_triggered_by_an_enemy"]=4173, + ["phasing_for_4_seconds_on_kill_%"]=3397, + ["phasing_if_blocked_recently"]=9433, + ["phasing_on_rampage_threshold_ms"]=2901, + ["phasing_on_trap_triggered_by_an_enemy_ms"]=4173, + ["phys_cascade_trap_cooldown_speed_+%"]=9434, + ["phys_cascade_trap_damage_+%"]=9435, + ["phys_cascade_trap_duration_+%"]=9436, + ["phys_cascade_trap_number_of_additional_cascades"]=9437, + ["physical_and_chaos_damage_taken_+%_final_while_not_unhinged"]=9438, + ["physical_attack_damage_+%"]=1139, + ["physical_attack_damage_+%_while_holding_a_shield"]=1144, + ["physical_attack_damage_taken_+"]=2167, + ["physical_axe_damage_+%"]=1238, + ["physical_bow_damage_+%"]=1268, + ["physical_claw_damage_+%"]=1250, + ["physical_claw_damage_+%_when_on_low_life"]=2517, + ["physical_dagger_damage_+%"]=1256, + ["physical_damage_%_added_as_fire_damage_if_enemy_killed_recently_by_you_or_your_totems"]=4194, + ["physical_damage_%_added_as_fire_damage_on_kill"]=3138, + ["physical_damage_%_taken_from_mana_before_life"]=4100, + ["physical_damage_%_to_add_as_chaos"]=1868, + ["physical_damage_%_to_add_as_chaos_vs_bleeding_enemies"]=4172, + ["physical_damage_%_to_add_as_chaos_vs_poisoned_enemies"]=9443, + ["physical_damage_%_to_add_as_cold"]=1866, + ["physical_damage_%_to_add_as_each_element_if_6_shaper_items"]=4426, + ["physical_damage_%_to_add_as_each_element_per_spirit_charge"]=9439, + ["physical_damage_%_to_add_as_fire"]=1865, + ["physical_damage_%_to_add_as_fire_damage_while_affected_by_anger"]=9444, + ["physical_damage_%_to_add_as_fire_if_have_crit_recently"]=9445, + ["physical_damage_%_to_add_as_fire_per_rage"]=9446, + ["physical_damage_%_to_add_as_lightning"]=1867, + ["physical_damage_%_to_add_as_lightning_damage_while_affected_by_wrath"]=9447, + ["physical_damage_%_to_add_as_random_element"]=2869, + ["physical_damage_%_to_add_as_random_element_while_ignited"]=9448, + ["physical_damage_%_to_convert_to_cold_at_devotion_threshold"]=9449, + ["physical_damage_%_to_convert_to_fire_at_devotion_threshold"]=9450, + ["physical_damage_%_to_convert_to_fire_while_you_have_avatar_of_fire"]=10641, + ["physical_damage_%_to_convert_to_lightning_at_devotion_threshold"]=9451, + ["physical_damage_%_to_gain_as_chaos_while_at_maximum_power_charges"]=3403, + ["physical_damage_+%"]=1167, + ["physical_damage_+%_for_4_seconds_when_you_block_a_unique_enemy_hit"]=4162, + ["physical_damage_+%_if_skill_costs_life"]=9452, + ["physical_damage_+%_per_10_rage"]=9453, + ["physical_damage_+%_per_explicit_map_mod_affecting_area"]=9440, + ["physical_damage_+%_vs_ignited_enemies"]=9454, + ["physical_damage_+%_vs_poisoned_enemies"]=2892, + ["physical_damage_+%_while_affected_by_herald_of_purity"]=9455, + ["physical_damage_+%_while_at_maximum_frenzy_charges_final"]=4165, + ["physical_damage_+%_while_frozen"]=3276, + ["physical_damage_+%_while_life_leeching"]=1154, + ["physical_damage_+%_while_you_have_resolute_technique"]=10639, + ["physical_damage_+%_with_axes_swords"]=9456, + ["physical_damage_+%_with_unholy_might"]=9457, + ["physical_damage_as_fire_damage_vs_ignited_enemies_%"]=2110, + ["physical_damage_can_chill"]=2813, + ["physical_damage_can_freeze"]=2814, + ["physical_damage_can_shock"]=2815, + ["physical_damage_cannot_poison"]=2824, + ["physical_damage_from_hits_%_taken_as_random_element"]=9441, + ["physical_damage_on_block_+%"]=3150, + ["physical_damage_over_time_+%"]=1147, + ["physical_damage_over_time_multiplier_+_with_attacks"]=1186, + ["physical_damage_over_time_per_10_dexterity_+%"]=3730, + ["physical_damage_over_time_taken_+%_while_moving"]=9442, + ["physical_damage_per_endurance_charge_+%"]=2072, + ["physical_damage_reduction_%_at_devotion_threshold"]=9458, + ["physical_damage_reduction_%_if_only_one_enemy_nearby"]=9466, + ["physical_damage_reduction_%_per_endurance_charge"]=2209, + ["physical_damage_reduction_%_per_hit_you_have_taken_recently"]=9460, + ["physical_damage_reduction_%_per_nearby_enemy"]=9468, + ["physical_damage_reduction_%_while_affected_by_herald_of_purity"]=9462, + ["physical_damage_reduction_and_minion_physical_damage_reduction_%"]=3994, + ["physical_damage_reduction_and_minion_physical_damage_reduction_%_per_raised_zombie"]=3388, + ["physical_damage_reduction_percent_per_frenzy_charge"]=9459, + ["physical_damage_reduction_percent_per_power_charge"]=9461, + ["physical_damage_reduction_rating_%_while_not_moving"]=4244, + ["physical_damage_reduction_rating_+%"]=1476, + ["physical_damage_reduction_rating_+%_against_projectiles"]=2396, + ["physical_damage_reduction_rating_+%_per_endurance_charge"]=9467, + ["physical_damage_reduction_rating_+%_per_frenzy_charge"]=1492, + ["physical_damage_reduction_rating_+%_while_chilled_or_frozen"]=3518, + ["physical_damage_reduction_rating_+%_while_not_ignited_frozen_shocked"]=2751, + ["physical_damage_reduction_rating_+1%_per_X_strength_when_in_off_hand"]=2711, + ["physical_damage_reduction_rating_during_soul_gain_prevention"]=9463, + ["physical_damage_reduction_rating_if_you_have_hit_an_enemy_recently"]=9464, + ["physical_damage_reduction_rating_per_5_evasion_on_shield"]=4309, + ["physical_damage_reduction_rating_per_endurance_charge"]=9465, + ["physical_damage_reduction_rating_per_level"]=2694, + ["physical_damage_reduction_rating_while_frozen"]=2737, + ["physical_damage_taken_%_as_chaos"]=2384, + ["physical_damage_taken_%_as_cold"]=2381, + ["physical_damage_taken_%_as_cold_if_4_redeemer_items"]=4407, + ["physical_damage_taken_%_as_cold_while_affected_by_purity_of_elements"]=9469, + ["physical_damage_taken_%_as_cold_while_affected_by_purity_of_ice"]=9470, + ["physical_damage_taken_%_as_fire"]=2380, + ["physical_damage_taken_%_as_fire_if_4_warlord_items"]=4408, + ["physical_damage_taken_%_as_fire_while_affected_by_purity_of_elements"]=9471, + ["physical_damage_taken_%_as_fire_while_affected_by_purity_of_fire"]=9472, + ["physical_damage_taken_%_as_lightning"]=2382, + ["physical_damage_taken_%_as_lightning_if_4_crusader_items"]=4409, + ["physical_damage_taken_%_as_lightning_while_affected_by_purity_of_elements"]=9473, + ["physical_damage_taken_%_as_lightning_while_affected_by_purity_of_lightning"]=9474, + ["physical_damage_taken_+"]=2168, + ["physical_damage_taken_+%"]=2174, + ["physical_damage_taken_+%_while_at_maximum_endurance_charges"]=4166, + ["physical_damage_taken_+%_while_frozen"]=2738, + ["physical_damage_taken_+%_while_moving"]=4246, + ["physical_damage_taken_+_per_level"]=2169, + ["physical_damage_taken_+_vs_beasts"]=2861, + ["physical_damage_taken_on_minion_death"]=2959, + ["physical_damage_taken_per_minute_per_siphoning_charge_if_have_used_a_skill_recently"]=4272, + ["physical_damage_taken_recouped_as_life_%"]=9475, + ["physical_damage_to_return_to_melee_attacker"]=2135, + ["physical_damage_to_return_when_hit"]=2140, + ["physical_damage_while_dual_wielding_+%"]=1214, + ["physical_damage_with_attack_skills_+%"]=9476, + ["physical_damage_with_spell_skills_+%"]=9477, + ["physical_dot_multiplier_+"]=1183, + ["physical_dot_multiplier_+_if_crit_recently"]=9478, + ["physical_dot_multiplier_+_if_spent_life_recently"]=9479, + ["physical_dot_multiplier_+_while_wielding_axes_swords"]=9480, + ["physical_hit_and_dot_damage_%_taken_as_fire"]=9481, + ["physical_mace_damage_+%"]=1262, + ["physical_ranged_attack_damage_taken_+"]=2179, + ["physical_reflect_damage_taken_+%"]=2642, + ["physical_reflect_damage_taken_and_minion_physical_reflect_damage_taken_+%"]=9482, + ["physical_skill_effect_duration_per_12_intelligence_+%"]=3732, + ["physical_skill_gem_level_+"]=9483, + ["physical_skill_gem_level_+_if_6_elder_items"]=4427, + ["physical_spell_skill_gem_level_+"]=1544, + ["physical_staff_damage_+%"]=1242, + ["physical_sword_damage_+%"]=1273, + ["physical_wand_damage_+%"]=1280, + ["physical_weapon_damage_+%_per_10_str"]=2478, + ["piercing_attacks_cause_bleeding"]=3353, + ["piercing_projectiles_critical_strike_chance_+%"]=9484, + ["placed_banner_attack_damage_+%"]=9485, + ["placing_traps_cooldown_recovery_+%"]=3393, + ["plague_bearer_chaos_damage_taken_+%_while_incubating"]=9486, + ["plague_bearer_maximum_stored_poison_damage_+%"]=9487, + ["plague_bearer_movement_speed_+%_while_infecting"]=9488, + ["player_can_be_touched_by_tormented_spirits"]=9489, + ["player_far_shot"]=10621, + ["player_gain_rampage_stacks"]=10563, ["player_is_harbinger_spawn_pack_on_kill_chance"]=107, - ["poachers_mark_curse_effect_+%"]=3892, - ["poachers_mark_duration_+%"]=3793, - ["poison_cursed_enemies_on_hit"]=4092, - ["poison_damage_+%_per_frenzy_charge"]=9210, - ["poison_damage_+%_per_power_charge"]=9211, - ["poison_damage_+%_vs_bleeding_enemies"]=9212, - ["poison_damage_+%_with_over_300_dexterity"]=9213, - ["poison_dot_multiplier_+"]=1172, - ["poison_dot_multiplier_+_per_frenzy_charge"]=9214, - ["poison_dot_multiplier_+_vs_bleeding_enemies"]=9215, - ["poison_dot_multiplier_+_with_spells"]=9216, - ["poison_duration_+%_per_poison_applied_recently"]=9217, - ["poison_duration_+%_per_power_charge"]=9218, - ["poison_duration_+%_with_over_150_intelligence"]=9219, - ["poison_from_critical_strikes_damage_+%_final"]=4132, - ["poison_on_critical_strike"]=9220, - ["poison_on_critical_strike_with_bow"]=1363, - ["poison_on_critical_strike_with_dagger"]=1360, - ["poison_on_hit_during_flask_effect_%"]=3192, - ["poison_on_melee_critical_strike_%"]=2672, - ["poison_on_melee_hit"]=4143, - ["poison_on_non_poisoned_enemies_damage_+%"]=9221, - ["poison_reflected_to_self"]=9222, - ["poison_time_passed_+%"]=9223, - ["poisonous_concoction_damage_+%"]=9224, - ["poisonous_concoction_flask_charges_consumed_+%"]=9225, - ["poisonous_concoction_skill_area_of_effect_+%"]=9226, - ["portal_alternate_destination_chance_permyriad"]=9227, - ["posion_damage_over_time_multiplier_+%_while_wielding_claws_daggers"]=9228, - ["power_charge_duration_+%"]=2043, - ["power_charge_duration_+%_final"]=9229, - ["power_charge_on_block_%_chance"]=4155, - ["power_charge_on_kill_percent_chance_while_holding_shield"]=9230, - ["power_charge_on_non_critical_strike_%_chance_with_claws_daggers"]=9231, - ["power_charge_on_spell_block_%_chance"]=9232, - ["power_frenzy_or_endurance_charge_on_kill_%"]=3499, - ["power_only_conduit"]=2163, - ["power_siphon_%_chance_to_gain_power_charge_on_kill"]=3858, - ["power_siphon_attack_speed_+%"]=3749, - ["power_siphon_damage_+%"]=3555, - ["power_siphon_number_of_additional_projectiles"]=9233, - ["precision_aura_effect_+%"]=3255, - ["precision_mana_reservation_+%"]=9238, - ["precision_mana_reservation_-50%_final"]=9237, - ["precision_mana_reservation_efficiency_+%"]=9236, - ["precision_mana_reservation_efficiency_+100%"]=9235, - ["precision_mana_reservation_efficiency_-2%_per_1"]=9234, - ["precision_reserves_no_mana"]=9239, - ["prevent_monster_heal"]=1811, - ["prevent_monster_heal_duration_+%"]=1812, - ["prevent_projectile_chaining_%_chance"]=9240, - ["pride_aura_effect_+%"]=9241, - ["pride_chance_to_deal_double_damage_%"]=9242, - ["pride_chance_to_impale_with_attacks_%"]=9243, - ["pride_intimidate_enemy_for_4_seconds_on_hit"]=9244, - ["pride_mana_reservation_+%"]=9247, - ["pride_mana_reservation_efficiency_+%"]=9246, - ["pride_mana_reservation_efficiency_-2%_per_1"]=9245, - ["pride_physical_damage_+%"]=9248, - ["pride_reserves_no_mana"]=9249, - ["pride_your_impaled_debuff_lasts_+_additional_hits"]=9250, - ["primalist_ascendancy_expanded_main_inventory"]=9251, - ["primordial_altar_burning_ground_on_death_%"]=8945, - ["primordial_altar_chilled_ground_on_death_%"]=8946, - ["primordial_jewel_count"]=10191, - ["prismatic_rain_beam_frequency_+%"]=9252, - ["profane_ground_on_crit_chance_%_if_highest_attribute_is_intelligence"]=9253, - ["projecitle_chance_to_be_able_to_chain_from_terrain_%_per_ranged_abyss_jewel_up_to_20%"]=9254, - ["projectile_attack_damage_+%"]=1898, - ["projectile_attack_damage_+%_during_flask_effect"]=9255, - ["projectile_attack_damage_+%_per_200_accuracy"]=4193, - ["projectile_attack_damage_+%_with_at_least_200_dex"]=4248, - ["projectile_attack_damage_+%_with_claw_or_dagger"]=9256, - ["projectile_attack_skill_critical_strike_chance_+%"]=4202, - ["projectile_attack_skill_critical_strike_multiplier_+"]=9257, - ["projectile_attacks_chance_to_bleed_on_hit_%_if_you_have_beast_minion"]=4203, - ["projectile_attacks_chance_to_maim_on_hit_%_if_you_have_beast_minion"]=4204, - ["projectile_attacks_chance_to_poison_on_hit_%_if_you_have_beast_minion"]=4205, - ["projectile_base_number_of_targets_to_pierce"]=1695, - ["projectile_base_number_of_targets_to_pierce_if_2_hunter_items"]=4342, - ["projectile_chain_from_terrain_chance_%"]=1732, - ["projectile_damage_+%"]=1897, - ["projectile_damage_+%_in_blood_stance"]=9721, - ["projectile_damage_+%_max_as_distance_travelled_increases"]=3967, - ["projectile_damage_+%_max_before_distance_increase"]=9258, - ["projectile_damage_+%_per_16_dexterity"]=9259, - ["projectile_damage_+%_per_chain"]=9260, - ["projectile_damage_+%_per_pierced_enemy"]=9261, - ["projectile_damage_+%_per_power_charge"]=2540, - ["projectile_damage_+%_per_remaining_chain"]=9262, - ["projectile_damage_+%_vs_chained_enemy"]=9263, - ["projectile_damage_+%_vs_nearby_enemies"]=9264, - ["projectile_damage_taken_+%"]=2648, - ["projectile_freeze_chance_%"]=2601, - ["projectile_ignite_chance_%"]=2600, - ["projectile_non_chaos_damage_to_add_as_chaos_damage_%_if_chained"]=9265, - ["projectile_non_chaos_damage_to_add_as_chaos_damage_%_per_chain"]=9266, - ["projectile_number_to_split"]=9267, - ["projectile_object_collision_behaviour_only_explode"]=9268, - ["projectile_return_%_chance"]=2721, - ["projectile_shock_chance_%"]=2602, - ["projectile_speed_+%_per_frenzy_charge"]=2539, - ["projectile_speed_+%_with_daggers"]=9269, - ["projectile_speed_variation_+%_final_with_melee_weapon_attacks"]=9270, - ["projectile_spell_cooldown_modifier_ms"]=9271, - ["projectile_weakness_curse_effect_+%"]=3893, - ["projectile_weakness_duration_+%"]=3794, - ["projectiles_always_pierce_you"]=9272, - ["projectiles_fork"]=3469, - ["projectiles_from_spells_cannot_pierce"]=9273, - ["projectiles_move_at_player_speed"]=9274, - ["projectiles_pierce_1_additional_target_per_10_stat_value"]=9275, - ["projectiles_pierce_1_additional_target_per_15_stat_value"]=9276, - ["projectiles_pierce_all_nearby_targets"]=9277, - ["projectiles_pierce_while_phasing"]=9278, - ["projectiles_pierce_x_additional_targets_while_you_have_phasing"]=9279, - ["projectiles_return"]=2721, - ["protective_link_duration_+%"]=9280, - ["puncture_and_ensnaring_arrow_enemies_explode_on_death_by_attack_for_10%_life_as_physical_damage_chance_%"]=9281, - ["puncture_damage_+%"]=3544, - ["puncture_duration_+%"]=3785, - ["puncture_maim_on_hit_%_chance"]=3852, - ["punishment_curse_effect_+%"]=3901, - ["punishment_duration_+%"]=3798, - ["punishment_ignores_hexproof"]=2507, - ["punishment_no_reservation"]=9282, - ["puppet_master_base_duration_ms"]=9283, - ["purge_additional_enemy_resistance_%"]=9284, - ["purge_damage_+%"]=9285, - ["purge_dot_multiplier_+_per_100ms_duration_expired"]=9286, - ["purge_duration_+%"]=9287, - ["purifying_flame_%_chance_to_create_consecrated_ground_around_you"]=9288, - ["purity_of_elements_aura_effect_+%"]=3247, - ["purity_of_elements_mana_reservation_+%"]=3924, - ["purity_of_elements_mana_reservation_efficiency_+%"]=9290, - ["purity_of_elements_mana_reservation_efficiency_-2%_per_1"]=9289, - ["purity_of_elements_reserves_no_mana"]=9291, - ["purity_of_fire_aura_effect_+%"]=3248, - ["purity_of_fire_mana_reservation_+%"]=3925, - ["purity_of_fire_mana_reservation_efficiency_+%"]=9293, - ["purity_of_fire_mana_reservation_efficiency_-2%_per_1"]=9292, - ["purity_of_fire_reserves_no_mana"]=9294, - ["purity_of_ice_aura_effect_+%"]=3249, - ["purity_of_ice_mana_reservation_+%"]=3921, - ["purity_of_ice_mana_reservation_efficiency_+%"]=9296, - ["purity_of_ice_mana_reservation_efficiency_-2%_per_1"]=9295, - ["purity_of_ice_reserves_no_mana"]=9297, - ["purity_of_lightning_aura_effect_+%"]=3250, - ["purity_of_lightning_mana_reservation_+%"]=3926, - ["purity_of_lightning_mana_reservation_efficiency_+%"]=9299, - ["purity_of_lightning_mana_reservation_efficiency_-2%_per_1"]=9298, - ["purity_of_lightning_reserves_no_mana"]=9300, - ["quality_display_animate_weapon_is_gem"]=9069, - ["quality_display_blade_trap_is_gem"]=4895, - ["quality_display_bladefall_is_gem"]=4927, - ["quality_display_bladestorm_is_gem"]=4930, - ["quality_display_essence_drain_is_gem"]=3879, - ["quality_display_firewall_is_gem"]=9068, - ["quality_display_forbidden_rite_is_gem"]=9602, - ["quality_display_herald_of_agony_is_gem"]=8751, - ["quality_display_hydrosphere_is_gem"]=6834, - ["quality_display_perforate_is_gem"]=5074, - ["quality_display_plague_bearer_is_gem"]=5607, - ["quality_display_rage_vortex_is_gem"]=9322, - ["quality_display_raise_zombie_is_gem"]=2061, - ["quality_display_snipe_is_gem"]=9599, - ["quality_display_spike_slam_is_gem"]=9711, - ["quality_display_summon_skeleton_is_gem"]=2063, - ["quality_display_tectonic_slam_is_gem"]=9867, - ["quality_display_tornado_shot_is_gem"]=3836, - ["quality_display_withering_step_is_gem"]=9590, - ["quantity_of_items_dropped_by_maimed_enemies_+%"]=4056, - ["quick_dodge_added_cooldown_count"]=9301, - ["quick_dodge_travel_distance_+%"]=9302, - ["quick_guard_additional_physical_damage_reduction_%"]=9303, - ["quicksilver_flasks_apply_to_nearby_allies"]=9304, - ["quiver_hellscaping_speed_+%"]=6757, - ["quiver_mod_effect_+%"]=9305, - ["quiver_projectiles_pierce_1_additional_target"]=9306, - ["quiver_projectiles_pierce_2_additional_targets"]=9307, - ["quiver_projectiles_pierce_3_additional_targets"]=9308, - ["rage_decay_speed_+%"]=9317, - ["rage_effect_+%"]=9318, - ["rage_effects_doubled"]=9311, - ["rage_effects_tripled"]=9310, - ["rage_grants_cast_speed_instead"]=9319, - ["rage_grants_spell_damage_instead"]=9320, - ["rage_loss_delay_ms"]=9321, - ["rage_slash_sacrifice_rage_%"]=9322, - ["rage_vortex_area_of_effect_+%"]=9323, - ["rage_vortex_damage_+%"]=9324, - ["raging_spirit_damage_+%"]=3538, - ["raging_spirits_always_ignite"]=9325, - ["raging_spirits_refresh_duration_on_hit_vs_rare_or_unique_%_chance"]=9326, - ["raging_spirits_refresh_duration_when_they_kill_ignited_enemy"]=9327, - ["raider_chance_to_evade_attacks_+%_final_during_onslaught"]=9328, - ["raider_nearby_enemies_accuracy_rating_+%_final_while_phasing"]=9329, - ["raider_passive_evade_melee_attacks_while_onslaughted_+%_final"]=3186, - ["raider_passive_evade_projectile_attacks_while_onslaughted_+%_final"]=3187, - ["raider_shock_maximum_effect_override_%"]=9330, - ["raider_shocks_you_apply_can_stack_up_to_50_times"]=9331, - ["rain_of_arrows_additional_sequence_chance_%"]=9332, - ["rain_of_arrows_attack_speed_+%"]=3743, - ["rain_of_arrows_damage_+%"]=3537, - ["rain_of_arrows_radius_+%"]=3700, - ["rain_of_arrows_rain_of_arrows_additional_sequence_chance_%"]=9333, - ["rain_of_arrows_toxic_rain_active_skill_bleeding_damage_+%_final"]=9334, - ["raise_spectre_gem_level_+"]=1522, - ["raise_spectre_mana_cost_+%"]=9335, - ["raise_zombie_does_not_use_corpses"]=9336, - ["raise_zombie_gem_level_+"]=1521, - ["raised_zombie_%_chance_to_taunt"]=9337, - ["raised_zombies_are_usable_as_corpses_when_alive"]=9338, - ["raised_zombies_cover_in_ash_on_hit_%"]=9339, - ["raised_zombies_fire_damage_%_of_maximum_life_taken_per_minute"]=9340, - ["raised_zombies_have_avatar_of_fire"]=9341, - ["rallying_cry_buff_effect_+%"]=4000, - ["rallying_cry_buff_effect_1%_per_3_stat_value"]=9342, - ["rallying_cry_buff_effect_1%_per_5_stat_value"]=9343, - ["rallying_cry_duration_+%"]=3806, - ["rallying_cry_exerts_x_additional_attacks"]=9344, - ["random_curse_on_hit_%"]=2412, - ["random_curse_on_hit_%_against_uncursed_enemies"]=9345, - ["random_curse_when_hit_%_ignoring_curse_limit"]=9346, - ["random_projectile_direction"]=9347, - ["random_skill_gem_level_+_index"]=1524, - ["random_skill_gem_level_+_level"]=1524, - ["randomly_cursed_when_totems_die_curse_level"]=2451, - ["ranged_weapon_physical_damage_+%"]=1899, - ["ranger_hidden_ascendancy_non_damaging_elemental_ailment_effect_+%_final"]=9348, - ["rare_or_unique_monster_dropped_item_rarity_+%"]=9349, - ["rarity_of_items_dropped_by_maimed_enemies_+%"]=4057, - ["reap_debuff_deals_fire_damage_instead_of_physical_damage"]=9350, - ["reave_attack_speed_per_reave_stack_+%"]=3849, - ["reave_damage_+%"]=3531, - ["reave_radius_+%"]=3697, - ["recall_sigil_target_search_range_+%"]=9351, - ["receive_bleeding_chance_%_when_hit_by_attack"]=9352, - ["received_attack_hits_have_impale_chance_%"]=9353, - ["recharge_flasks_on_crit"]=2861, - ["recharge_flasks_on_crit_while_affected_by_precision"]=9354, - ["reckoning_cooldown_speed_+%"]=3766, - ["reckoning_damage_+%"]=3596, - ["recoup_%_of_damage_taken_by_your_totems_as_life"]=9355, - ["recoup_effects_apply_over_3_seconds_instead"]=9356, - ["recoup_life_effects_apply_over_3_seconds_instead"]=9357, - ["recover_%_energy_shield_over_1_second_when_you_take_physical_damage_from_enemy_hits"]=9358, - ["recover_%_energy_shield_when_you_block_spell_damage_while_wielding_a_staff"]=9374, - ["recover_%_es_on_kill_per_different_mastery"]=1578, - ["recover_%_life_on_kill_per_different_mastery"]=1563, - ["recover_%_life_when_gaining_adrenaline"]=9375, - ["recover_%_life_when_you_block_attack_damage_while_wielding_a_staff"]=9376, - ["recover_%_life_when_you_ignite_a_non_ignited_enemy"]=9377, - ["recover_%_life_when_you_use_a_life_flask_while_on_low_life"]=9378, - ["recover_%_mana_on_kill_per_different_mastery"]=1595, - ["recover_%_mana_when_attached_brand_expires"]=9379, - ["recover_%_maximum_energy_shield_on_killing_cursed_enemy"]=9359, - ["recover_%_maximum_life_on_enemy_ignited"]=4186, - ["recover_%_maximum_life_on_flask_use"]=4227, - ["recover_%_maximum_life_on_kill"]=1654, - ["recover_%_maximum_life_on_killing_chilled_enemy"]=9380, - ["recover_%_maximum_life_on_killing_cursed_enemy"]=9360, - ["recover_%_maximum_life_on_killing_enemy_while_you_have_rage"]=9381, - ["recover_%_maximum_life_on_killing_poisoned_enemy"]=9382, - ["recover_%_maximum_life_on_mana_flask_use"]=4228, - ["recover_%_maximum_life_on_rampage_threshold"]=2850, - ["recover_%_maximum_life_on_suppressing_spell"]=9361, - ["recover_%_maximum_life_when_corpse_destroyed_or_consumed"]=2949, - ["recover_%_maximum_life_when_cursing_non_cursed_enemy"]=9362, - ["recover_%_maximum_mana_on_activating_tincture"]=9383, - ["recover_%_maximum_mana_on_kill"]=1656, - ["recover_%_maximum_mana_on_kill_while_tincture_active"]=9384, - ["recover_%_maximum_mana_on_killing_cursed_enemy"]=1657, - ["recover_%_maximum_mana_when_cursing_non_cursed_enemy"]=9363, - ["recover_%_maximum_mana_when_enemy_frozen_permyriad"]=9385, - ["recover_%_maximum_mana_when_enemy_shocked"]=4055, - ["recover_%_of_maximum_life_on_block"]=2953, - ["recover_%_of_maximum_mana_over_1_second_on_guard_skill_use"]=9386, - ["recover_%_of_skill_mana_cost_per_unspent_chain_up_to_50%"]=9387, - ["recover_10%_mana_on_skill_use_%_chance_while_affected_by_clarity"]=9364, - ["recover_10%_of_maximum_mana_on_skill_use_%"]=3362, - ["recover_1_life_per_x_life_regeneration_per_minute_every_4_seconds"]=9365, - ["recover_X_life_on_block"]=1665, - ["recover_X_life_on_enemy_ignited"]=9366, - ["recover_X_life_on_suppressing_spell"]=9367, - ["recover_X_life_when_fortification_expires_per_fortification_lost"]=9368, - ["recover_X_mana_on_killing_frozen_enemy"]=9369, - ["recover_energy_shield_%_on_consuming_steel_shard"]=9370, - ["recover_energy_shield_%_on_kill"]=1655, - ["recover_es_as_well_as_life_from_life_regeneration"]=9371, - ["recover_life_for_ancestral_totem_equal_to_damage_taken_from_hits"]=9372, - ["recover_maximum_life_on_enemy_killed_chance_%"]=9373, - ["recover_permyriad_life_on_skill_use"]=9388, - ["recover_permyriad_maximum_life_per_poison_on_enemy_on_kill"]=9389, - ["recover_x_energy_shield_on_spell_block"]=9390, - ["recover_x_energy_shield_on_suppressing_spell"]=9391, - ["reduce_enemy_chaos_resistance_%"]=9392, - ["reduce_enemy_chaos_resistance_with_weapons_%"]=3479, - ["reduce_enemy_cold_resistance_%_while_affected_by_hatred"]=9393, - ["reduce_enemy_cold_resistance_with_weapons_%"]=3476, - ["reduce_enemy_dodge_%"]=1810, - ["reduce_enemy_elemental_resistance_%"]=2876, - ["reduce_enemy_elemental_resistance_with_weapons_%"]=3486, - ["reduce_enemy_fire_resistance_%_vs_blinded_enemies"]=9394, - ["reduce_enemy_fire_resistance_%_while_affected_by_anger"]=9395, - ["reduce_enemy_fire_resistance_with_weapons_%"]=3477, - ["reduce_enemy_lightning_resistance_%_while_affected_by_wrath"]=9396, - ["reduce_enemy_lightning_resistance_with_weapons_%"]=3478, - ["reflect_%_of_physical_damage_prevented"]=9397, - ["reflect_chill_and_freeze_%_chance"]=9398, - ["reflect_curses"]=2376, - ["reflect_damage_taken_+%"]=4154, - ["reflect_damage_taken_and_minion_reflect_damage_taken_+%"]=9399, - ["reflect_hexes_chance_%"]=2377, - ["reflect_non_damaging_ailments_%_chance"]=9400, - ["reflect_shocks"]=9401, - ["reflect_shocks_to_enemies_in_radius"]=9402, - ["reflected_physical_damage_taken_+%_while_affected_by_determination"]=9403, - ["refresh_duration_of_shock_chill_ignite_on_enemy_when_cursing_enemy"]=9404, - ["refresh_ignite_duration_on_critical_strike_chance_%"]=9405, - ["regenerate_%_armour_as_life_over_1_second_on_block"]=2730, - ["regenerate_%_energy_shield_over_1_second_when_stunned"]=9406, - ["regenerate_%_life_over_1_second_when_hit_while_affected_by_vitality"]=9407, - ["regenerate_%_life_over_1_second_when_hit_while_not_unhinged"]=9412, - ["regenerate_%_life_over_1_second_when_stunned"]=9408, - ["regenerate_%_maximum_energy_shield_over_2_seconds_on_consuming_corpse"]=9413, - ["regenerate_%_maximum_mana_over_2_seconds_on_consuming_corpse"]=9414, - ["regenerate_1_rage_per_x_life_regeneration"]=9409, - ["regenerate_1_rage_per_x_mana_regeneration"]=9410, - ["regenerate_X_life_over_1_second_on_cast"]=2729, - ["regenerate_energy_shield_equal_to_%_evasion_rating_over_1_second_every_4_seconds"]=9411, - ["regenerate_energy_shield_instead_of_life"]=10274, - ["regenerate_x_mana_per_minute_while_you_have_arcane_surge"]=9415, - ["rejuvenation_totem_%_life_regeneration_added_as_mana_regeneration"]=3884, - ["rejuvenation_totem_aura_effect_+%"]=3885, - ["remove_%_of_mana_on_hit"]=9427, - ["remove_ailments_and_burning_on_gaining_adrenaline"]=9416, - ["remove_all_damaging_ailments_on_warcry"]=9418, - ["remove_bleed_on_flask_use"]=3276, - ["remove_bleed_on_life_flask_use"]=9419, - ["remove_bleeding_on_warcry"]=9420, - ["remove_chill_and_freeze_on_flask_use"]=9421, - ["remove_corrupted_blood_when_you_use_a_flask"]=3277, - ["remove_curse_on_mana_flask_use"]=9422, - ["remove_damaging_ailments_on_swapping_stance"]=9423, - ["remove_elemental_ailments_on_curse_cast_%"]=9424, - ["remove_ignite_and_burning_on_flask_use"]=9425, - ["remove_maim_and_hinder_on_flask_use"]=9426, - ["remove_random_ailment_on_flask_use_if_all_equipped_items_are_elder"]=9428, - ["remove_random_ailment_when_you_warcry"]=9429, - ["remove_random_charge_on_hit_%"]=9430, - ["remove_random_elemental_ailment_on_mana_flask_use"]=9431, - ["remove_random_non_elemental_ailment_on_life_flask_use"]=9432, - ["remove_shock_on_flask_use"]=9433, - ["remove_x_curses_after_channelling_for_2_seconds"]=9434, - ["replica_unique_hyrris_truth_hatred_mana_reservation_+%_final"]=9435, - ["reservation_efficiency_+%_with_unique_abyss_jewel_socketed"]=9436, - ["reservation_efficiency_-2%_per_1"]=2134, - ["reserve_life_instead_of_loss_from_damage_for_x_ms"]=9437, - ["resist_all_%"]=9438, - ["resist_all_%_for_enemies_you_inflict_spiders_web_upon"]=9439, - ["resist_all_elements_%_per_10_levels"]=2661, - ["resist_all_elements_%_per_endurance_charge"]=1526, - ["resist_all_elements_%_with_200_or_more_strength"]=4247, - ["resist_all_elements_+%_while_holding_shield"]=1527, - ["resolute_technique"]=10293, - ["restore_energy_shield_and_mana_when_you_focus_%"]=9440, - ["restore_life_and_mana_on_warcry_%"]=3090, - ["restore_life_on_warcry_%"]=3091, - ["restore_ward_on_hit_%"]=9441, - ["retaliation_skill_additional_use_window_duration_ms"]=9442, - ["retaliation_skill_area_of_effect_+%"]=9443, - ["retaliation_skill_cost_+%"]=9444, - ["retaliation_skill_damage_+%"]=9445, - ["retaliation_skill_keep_use_requirement_and_prevent_cooldown_on_use_chance_%"]=9446, - ["retaliation_skill_speed_+%"]=9447, - ["retaliation_skill_stun_duration_+%"]=9448, - ["retaliation_skill_stun_threshold_+%"]=9449, - ["retaliation_skills_all_ailment_duration_+%"]=9450, - ["retaliation_skills_debilitate_on_hit_ms"]=9451, - ["retaliation_skills_fortify_on_melee_hit"]=9452, - ["retaliation_skills_gain_X_rage_per_enemy_hit"]=9453, - ["retaliation_use_window_duration_+%"]=9454, - ["returned_projectile_speed_+%"]=9455, - ["returning_projectiles_always_pierce"]=9456, - ["revive_golems_if_killed_by_enemies_ms"]=9457, - ["revive_spectre_if_killed_by_enemies_ms"]=9458, - ["righteous_fire_and_fire_beam_regenerate_x_mana_per_second_while_enemies_are_within"]=9459, - ["righteous_fire_damage_+%"]=3561, - ["righteous_fire_radius_+%"]=3708, - ["righteous_fire_spell_damage_+%"]=3999, - ["riposte_cooldown_speed_+%"]=3771, - ["riposte_damage_+%"]=3608, - ["rogue_trader_map_rogue_exile_maximum_life_+%_final"]=9460, - ["rune_blast_teleports_to_detonated_rune_with_100_ms_cooldown"]=9461, - ["rune_blast_teleports_to_detonated_rune_with_150_ms_cooldown"]=9462, - ["runegraft_offhand_attack_speed_+%_final"]=9463, - ["ruthless_hits_intimidate_enemies_for_4_seconds"]=9464, - ["sabotuer_mines_apply_damage_+%_to_nearby_enemies_up_to_-10%"]=9465, - ["sabotuer_mines_apply_damage_taken_+%_to_nearby_enemies_up_to_10%"]=9466, - ["sacrifice_%_life_on_spell_skill"]=9469, - ["sacrifice_%_life_to_fire_additional_arrow_for_each_100_life"]=9467, - ["sacrifice_%_maximum_life_to_gain_as_es_on_spell_cast"]=9470, - ["sacrifice_minion_to_fire_X_additional_arrows"]=9468, - ["sanctify_area_of_effect_+%_when_targeting_consecrated_ground"]=9471, - ["sanctify_consecrated_ground_enemy_damage_taken_+%"]=9472, - ["sanctify_damage_+%"]=9473, - ["sap_on_critical_strike_with_lightning_skills"]=9474, - ["scion_helmet_skill_maximum_totems_+"]=550, - ["scorch_effect_+%"]=9475, - ["scorch_enemies_in_close_range_on_block"]=9476, - ["scorched_earth_ground_scorch_duration_ms"]=4195, - ["scorched_enemies_explode_on_death_for_8%_life_as_fire_degen_chance"]=9477, - ["scourge_arrow_damage_+%"]=9478, - ["searing_bond_damage_+%"]=3556, - ["searing_bond_totem_placement_speed_+%"]=3860, - ["searing_totem_elemental_resistance_+%"]=4005, - ["secondary_maximum_base_chaos_damage"]=1310, - ["secondary_maximum_base_cold_damage"]=1308, - ["secondary_maximum_base_fire_damage"]=1307, - ["secondary_maximum_base_lightning_damage"]=1309, - ["secondary_maximum_base_physical_damage"]=1306, - ["secondary_minimum_base_chaos_damage"]=1310, - ["secondary_minimum_base_cold_damage"]=1308, - ["secondary_minimum_base_fire_damage"]=1307, - ["secondary_minimum_base_lightning_damage"]=1309, - ["secondary_minimum_base_physical_damage"]=1306, - ["secondary_skill_effect_duration_+%"]=9479, - ["seismic_cry_exerted_attack_damage_+%"]=9480, - ["seismic_cry_minimum_power"]=9481, - ["self_bleed_duration_+%"]=9482, - ["self_chill_duration_-%"]=1773, - ["self_cold_damage_on_reaching_maximum_power_charges"]=9483, - ["self_critical_strike_multiplier_+%_while_ignited"]=9484, - ["self_critical_strike_multiplier_-%_per_endurance_charge"]=1421, - ["self_curse_duration_+%"]=2072, - ["self_curse_duration_+%_per_10_devotion"]=9485, - ["self_cursed_with_level_x_vulnerability"]=3012, - ["self_damaging_ailment_duration_+%_per_barkskin_stack"]=9486, - ["self_debilitated"]=9487, - ["self_elemental_status_duration_-%"]=1772, - ["self_elemental_status_duration_-%_per_10_devotion"]=9488, - ["self_fire_damage_on_skill_use"]=2113, - ["self_freeze_duration_-%"]=1775, - ["self_ignite_duration_-%"]=1776, - ["self_offering_effect_+%"]=1079, - ["self_physical_damage_on_movement_skill_use"]=9489, - ["self_physical_damage_on_skill_use_%_mana_cost"]=2114, - ["self_physical_damage_on_skill_use_%_max_life_per_warcry_exerting_action"]=9490, - ["self_poison_duration_+%"]=9491, - ["self_shock_duration_-%"]=1774, - ["self_take_no_extra_damage_from_critical_strikes"]=4173, - ["self_take_no_extra_damage_from_critical_strikes_if_energy_shield_recharge_started_recently"]=9492, - ["self_take_no_extra_damage_from_critical_strikes_if_have_been_crit_recently"]=9493, - ["self_take_no_extra_damage_from_critical_strikes_if_left_ring_is_magic_item"]=9494, - ["self_take_no_extra_damage_from_critical_strikes_if_only_one_nearby_enemy"]=9495, - ["self_take_no_extra_damage_from_critical_strikes_if_there_is_at_most_1_rare_or_unique_enemy_nearby"]=9496, - ["self_take_no_extra_damage_from_critical_strikes_while_affected_by_elusive"]=9497, - ["sentinel_minion_cooldown_speed_+%"]=9498, - ["sentinel_of_purity_damage_+%"]=9499, - ["serpent_strike_maximum_snakes"]=9500, - ["shaper_apparition_ability"]=665, - ["shapers_seed_unique_aura_life_regeneration_rate_per_minute_%"]=2895, - ["shapers_seed_unique_aura_mana_regeneration_rate_+%"]=2900, - ["share_endurance_charges_with_party_within_distance"]=2055, - ["share_frenzy_charges_with_party_within_distance"]=2056, - ["share_power_charges_with_party_within_distance"]=2057, - ["shatter_has_%_chance_to_cover_in_frost"]=9501, - ["shatter_on_kill_vs_bleeding_enemies"]=9502, - ["shatter_on_kill_vs_poisoned_enemies"]=9503, - ["shatter_on_killing_blow_chance_%"]=9504, - ["shattering_steel_%_chance_to_not_consume_ammo"]=9508, - ["shattering_steel_damage_+%"]=9505, - ["shattering_steel_fortify_on_hit_close_range"]=9506, - ["shattering_steel_number_of_additional_projectiles"]=9507, - ["shield_armour_+%"]=1895, - ["shield_attack_speed_+%"]=1336, - ["shield_block_%"]=1052, - ["shield_charge_attack_speed_+%"]=3745, - ["shield_charge_damage_+%"]=3545, - ["shield_charge_damage_per_target_hit_+%"]=3975, - ["shield_crush_and_spectral_shield_throw_cannot_add_physical_damage_per_armour_and_evasion_rating"]=9509, - ["shield_crush_and_spectral_shield_throw_off_hand_maximum_added_lightning_damage_per_15_energy_shield_on_shield"]=9510, - ["shield_crush_and_spectral_shield_throw_off_hand_minimum_added_lightning_damage_per_15_energy_shield_on_shield"]=9510, - ["shield_crush_and_spectral_shield_throw_skill_physical_damage_%_to_convert_to_lightning"]=9511, - ["shield_crush_attack_speed_+%"]=9512, - ["shield_crush_damage_+%"]=9513, - ["shield_crush_helmet_enchantment_aoe_+%_final"]=9514, - ["shield_defences_+%_per_10_devotion"]=9515, - ["shield_evasion_rating_+%"]=1892, - ["shield_maximum_energy_shield_+%"]=1875, - ["shield_physical_damage_reduction_rating_+%"]=1893, - ["shield_spell_block_%"]=1053, - ["shock_X_nearby_enemies_for_2_s_on_killing_shocked_enemy"]=2713, - ["shock_and_freeze_apply_elemental_damage_taken_+%"]=9516, - ["shock_attackers_for_4_seconds_on_block_%_chance"]=9517, - ["shock_duration_+%"]=1762, - ["shock_effect_+%"]=9520, - ["shock_effect_+%_while_es_leeching"]=9518, - ["shock_effect_+%_with_critical_strikes"]=9521, - ["shock_effect_against_cursed_enemies_+%"]=9519, - ["shock_maximum_magnitude_+"]=9523, - ["shock_maximum_magnitude_is_60%"]=9522, - ["shock_minimum_damage_taken_increase_%"]=4326, - ["shock_nearby_enemies_for_x_ms_when_you_focus"]=9525, - ["shock_nova_and_storm_call_all_damage_can_ignite"]=9526, - ["shock_nova_and_storm_call_ignite_damage_+100%_final_chance"]=9527, - ["shock_nova_damage_+%"]=3571, - ["shock_nova_radius_+%"]=3721, - ["shock_nova_ring_chance_to_shock_+%"]=9528, - ["shock_nova_ring_damage_+%"]=3876, - ["shock_nova_ring_shocks_as_if_dealing_damage_+%_final"]=9529, - ["shock_prevention_ms_when_shocked"]=2795, - ["shock_proliferation_radius_is_at_least_15"]=2124, - ["shock_self_for_x_ms_when_you_focus"]=9524, - ["shocked_chilled_effect_on_self_+%"]=9530, - ["shocked_effect_on_self_+%"]=9531, - ["shocked_enemies_explode_for_%_life_as_lightning_damage"]=9532, - ["shocked_for_4_seconds_on_reaching_maximum_power_charges"]=3491, - ["shocked_ground_base_magnitude_override"]=9533, - ["shocked_ground_effect_on_self_+%"]=2052, - ["shocked_ground_on_death_%"]=9534, - ["shocked_ground_when_hit_%"]=2477, - ["shocks_enemies_that_hit_actor_while_actor_is_casting"]=1816, - ["shocks_reflected_to_self"]=2673, - ["shockwave_slam_attack_speed_+%"]=3751, - ["shockwave_slam_damage_+%"]=3627, - ["shockwave_slam_explosion_damage_+%_final"]=3452, - ["shockwave_slam_radius_+%"]=3734, - ["shockwave_totem_cast_speed_+%"]=3888, - ["shockwave_totem_damage_+%"]=3572, - ["shockwave_totem_radius_+%"]=3736, - ["should_use_alternate_fortify"]=2167, - ["shrapnel_ballista_num_additional_arrows"]=9535, - ["shrapnel_ballista_num_pierce"]=9536, - ["shrapnel_ballista_projectile_speed_+%"]=9537, - ["shrapnel_ballista_totems_from_this_skill_grant_shrapnel_ballista_attack_speed_-%"]=9538, - ["shrapnel_shot_damage_+%"]=3612, - ["shrapnel_shot_physical_damage_%_to_add_as_lightning_damage"]=3913, - ["shrapnel_shot_radius_+%"]=3723, - ["shrapnel_trap_area_of_effect_+%"]=9540, - ["shrapnel_trap_damage_+%"]=9541, - ["shrapnel_trap_number_of_additional_secondary_explosions"]=9542, - ["shrine_buff_effect_on_self_+%"]=2711, - ["shrine_effect_duration_+%"]=2712, - ["siege_and_shrapnel_ballista_attack_speed_+%_per_maximum_totem"]=4179, - ["siege_ballista_attack_speed_+%"]=3750, - ["siege_ballista_damage_+%"]=3625, - ["siege_ballista_totem_placement_speed_+%"]=3890, - ["siege_ballista_totems_from_this_skill_grant_siege_ballista_attack_speed_-%"]=9543, - ["sigil_attached_target_damage_+%"]=9544, - ["sigil_attached_target_damage_taken_+%"]=9545, - ["sigil_critical_strike_chance_+%"]=9546, - ["sigil_critical_strike_multiplier_+"]=9547, - ["sigil_damage_+%"]=9548, - ["sigil_damage_+%_per_10_devotion"]=9549, - ["sigil_duration_+%"]=9550, - ["sigil_recall_cooldown_speed_+%"]=9551, - ["sigil_recall_cooldown_speed_+%_per_brand_up_to_40%"]=9552, - ["sigil_repeat_frequency_+%"]=9553, - ["sigil_repeat_frequency_+%_if_havent_used_a_brand_skill_recently"]=9554, - ["sigil_target_search_range_+%"]=9555, - ["silver_flask_display_onslaught"]=3485, - ["silver_footprints_from_item"]=10324, - ["siphon_duration_+%"]=3809, - ["siphon_life_leech_from_damage_permyriad"]=3879, - ["skeletal_chains_area_of_effect_+%"]=9556, - ["skeletal_chains_cast_speed_+%"]=9557, - ["skeletal_chains_damage_+%"]=3621, - ["skeleton_attack_speed_+%"]=9558, - ["skeleton_cast_speed_+%"]=9559, - ["skeleton_duration_+%"]=1684, - ["skeleton_movement_speed_+%"]=9560, - ["skeletons_and_holy_relics_+%_effect_of_non_damaging_ailments"]=9562, - ["skeletons_and_holy_relics_convert_%_physical_damage_to_a_random_element"]=9561, - ["skeletons_are_permanent_minions"]=9563, - ["skeletons_damage_+%"]=3546, - ["skill_area_of_effect_+%_if_enemy_killed_recently"]=4104, - ["skill_area_of_effect_+%_in_sand_stance"]=9726, - ["skill_area_of_effect_+%_per_active_mine"]=3354, - ["skill_area_of_effect_+%_per_power_charge"]=2030, - ["skill_area_of_effect_+%_per_power_charge_up_to_50%"]=2031, - ["skill_area_of_effect_+%_while_no_frenzy_charges"]=1957, - ["skill_area_of_effect_when_unarmed_+%"]=2948, - ["skill_cooldown_-%"]=1802, - ["skill_effect_duration_+%"]=1800, - ["skill_effect_duration_+%_if_killed_maimed_enemy_recently"]=4106, - ["skill_effect_duration_+%_per_10_strength"]=1915, - ["skill_effect_duration_+%_while_affected_by_malevolence"]=9564, - ["skill_effect_duration_+%_with_bow_skills"]=9565, - ["skill_effect_duration_+%_with_non_curse_aura_skills"]=9566, - ["skill_effect_duration_per_100_int"]=2980, - ["skill_internal_monster_responsiveness_+%"]=1832, - ["skill_life_cost_+"]=1795, - ["skill_life_cost_+%_final_while_on_low_life"]=9569, - ["skill_life_cost_+_with_channelling_skills"]=9567, - ["skill_life_cost_+_with_non_channelling_skills"]=9568, - ["skill_mana_cost_+"]=1796, - ["skill_mana_cost_+_for_each_equipped_corrupted_item"]=4218, - ["skill_mana_cost_+_while_affected_by_clarity"]=9570, - ["skill_mana_cost_+_with_channelling_skills"]=9571, - ["skill_mana_cost_+_with_non_channelling_skills"]=9573, - ["skill_mana_cost_+_with_non_channelling_skills_while_affected_by_clarity"]=9575, - ["skill_max_unleash_seals"]=10192, - ["skill_range_+%"]=1833, - ["skill_repeat_count"]=1798, + ["poachers_mark_curse_effect_+%"]=3938, + ["poachers_mark_duration_+%"]=3839, + ["poison_cursed_enemies_on_hit"]=4138, + ["poison_damage_+%_per_frenzy_charge"]=9491, + ["poison_damage_+%_per_power_charge"]=9492, + ["poison_damage_+%_vs_bleeding_enemies"]=9493, + ["poison_damage_+%_with_over_300_dexterity"]=9494, + ["poison_dot_multiplier_+"]=1199, + ["poison_dot_multiplier_+_per_frenzy_charge"]=9495, + ["poison_dot_multiplier_+_vs_bleeding_enemies"]=9496, + ["poison_dot_multiplier_+_with_spells"]=9497, + ["poison_duration_+%_per_poison_applied_recently"]=9498, + ["poison_duration_+%_per_power_charge"]=9499, + ["poison_duration_+%_with_over_150_intelligence"]=9500, + ["poison_from_critical_strikes_damage_+%_final"]=4178, + ["poison_on_critical_strike"]=9501, + ["poison_on_critical_strike_with_bow"]=1390, + ["poison_on_critical_strike_with_dagger"]=1387, + ["poison_on_hit_during_flask_effect_%"]=3234, + ["poison_on_melee_critical_strike_%"]=2707, + ["poison_on_melee_hit"]=4189, + ["poison_on_non_poisoned_enemies_damage_+%"]=9502, + ["poison_reflected_to_self"]=9503, + ["poison_time_passed_+%"]=9504, + ["poisonous_concoction_damage_+%"]=9505, + ["poisonous_concoction_flask_charges_consumed_+%"]=9506, + ["poisonous_concoction_skill_area_of_effect_+%"]=9507, + ["portal_alternate_destination_chance_permyriad"]=9508, + ["posion_damage_over_time_multiplier_+%_while_wielding_claws_daggers"]=9509, + ["power_charge_duration_+%"]=2075, + ["power_charge_duration_+%_final"]=9510, + ["power_charge_on_block_%_chance"]=4201, + ["power_charge_on_kill_percent_chance_while_holding_shield"]=9511, + ["power_charge_on_non_critical_strike_%_chance_with_claws_daggers"]=9512, + ["power_charge_on_spell_block_%_chance"]=9513, + ["power_frenzy_or_endurance_charge_on_kill_%"]=3544, + ["power_only_conduit"]=2195, + ["power_siphon_%_chance_to_gain_power_charge_on_kill"]=3904, + ["power_siphon_attack_speed_+%"]=3795, + ["power_siphon_damage_+%"]=3600, + ["power_siphon_number_of_additional_projectiles"]=9514, + ["precision_aura_effect_+%"]=3297, + ["precision_mana_reservation_+%"]=9519, + ["precision_mana_reservation_-50%_final"]=9518, + ["precision_mana_reservation_efficiency_+%"]=9517, + ["precision_mana_reservation_efficiency_+100%"]=9516, + ["precision_mana_reservation_efficiency_-2%_per_1"]=9515, + ["precision_reserves_no_mana"]=9520, + ["prevent_monster_heal"]=1841, + ["prevent_monster_heal_duration_+%"]=1842, + ["prevent_projectile_chaining_%_chance"]=9521, + ["pride_aura_effect_+%"]=9522, + ["pride_chance_to_deal_double_damage_%"]=9523, + ["pride_chance_to_impale_with_attacks_%"]=9524, + ["pride_intimidate_enemy_for_4_seconds_on_hit"]=9525, + ["pride_mana_reservation_+%"]=9528, + ["pride_mana_reservation_efficiency_+%"]=9527, + ["pride_mana_reservation_efficiency_-2%_per_1"]=9526, + ["pride_physical_damage_+%"]=9529, + ["pride_reserves_no_mana"]=9530, + ["pride_your_impaled_debuff_lasts_+_additional_hits"]=9531, + ["primalist_ascendancy_expanded_main_inventory"]=9532, + ["primordial_altar_burning_ground_on_death_%"]=9219, + ["primordial_altar_chilled_ground_on_death_%"]=9220, + ["primordial_jewel_count"]=10517, + ["prismatic_rain_beam_frequency_+%"]=9533, + ["prismatic_skills_always_inflict_frostburn"]=9534, + ["prismatic_skills_always_inflict_sapped"]=9535, + ["prismatic_skills_always_scorch"]=9536, + ["profane_ground_on_crit_chance_%_if_highest_attribute_is_intelligence"]=9537, + ["profane_ground_you_create_inflicts_malediction_on_enemies"]=9538, + ["projecitle_chance_to_be_able_to_chain_from_terrain_%_per_ranged_abyss_jewel_up_to_20%"]=9539, + ["projectile_attack_damage_+%"]=1930, + ["projectile_attack_damage_+%_during_flask_effect"]=9540, + ["projectile_attack_damage_+%_per_200_accuracy"]=4239, + ["projectile_attack_damage_+%_with_at_least_200_dex"]=4294, + ["projectile_attack_damage_+%_with_claw_or_dagger"]=9541, + ["projectile_attack_skill_critical_strike_chance_+%"]=4248, + ["projectile_attack_skill_critical_strike_multiplier_+"]=9542, + ["projectile_attacks_chance_to_bleed_on_hit_%_if_you_have_beast_minion"]=4249, + ["projectile_attacks_chance_to_maim_on_hit_%_if_you_have_beast_minion"]=4250, + ["projectile_attacks_chance_to_poison_on_hit_%_if_you_have_beast_minion"]=4251, + ["projectile_base_number_of_targets_to_pierce"]=1725, + ["projectile_base_number_of_targets_to_pierce_if_2_hunter_items"]=4388, + ["projectile_chain_from_terrain_chance_%"]=1762, + ["projectile_damage_+%"]=1929, + ["projectile_damage_+%_in_blood_stance"]=10023, + ["projectile_damage_+%_max_as_distance_travelled_increases"]=4013, + ["projectile_damage_+%_max_before_distance_increase"]=9543, + ["projectile_damage_+%_per_16_dexterity"]=9544, + ["projectile_damage_+%_per_chain"]=9545, + ["projectile_damage_+%_per_pierced_enemy"]=9546, + ["projectile_damage_+%_per_power_charge"]=2573, + ["projectile_damage_+%_per_remaining_chain"]=9547, + ["projectile_damage_+%_vs_chained_enemy"]=9548, + ["projectile_damage_+%_vs_nearby_enemies"]=9549, + ["projectile_damage_taken_+%"]=2683, + ["projectile_freeze_chance_%"]=2636, + ["projectile_ignite_chance_%"]=2635, + ["projectile_non_chaos_damage_to_add_as_chaos_damage_%_if_chained"]=9550, + ["projectile_non_chaos_damage_to_add_as_chaos_damage_%_per_chain"]=9551, + ["projectile_number_to_split"]=9552, + ["projectile_object_collision_behaviour_only_explode"]=9553, + ["projectile_return_%_chance"]=2756, + ["projectile_shock_chance_%"]=2637, + ["projectile_speed_+%_per_20_strength"]=9554, + ["projectile_speed_+%_per_frenzy_charge"]=2572, + ["projectile_speed_+%_with_daggers"]=9555, + ["projectile_speed_+1%_per_X_evasion_rating_up_to_75%"]=9556, + ["projectile_speed_variation_+%_final_with_melee_weapon_attacks"]=9557, + ["projectile_spell_cooldown_modifier_ms"]=9558, + ["projectile_weakness_curse_effect_+%"]=3939, + ["projectile_weakness_duration_+%"]=3840, + ["projectiles_always_pierce_you"]=9559, + ["projectiles_fork"]=3514, + ["projectiles_from_spells_cannot_pierce"]=9560, + ["projectiles_move_at_player_speed"]=9561, + ["projectiles_pierce_1_additional_target_per_10_stat_value"]=9562, + ["projectiles_pierce_1_additional_target_per_15_stat_value"]=9563, + ["projectiles_pierce_all_nearby_targets"]=9564, + ["projectiles_pierce_while_phasing"]=9565, + ["projectiles_pierce_x_additional_targets_while_you_have_phasing"]=9566, + ["projectiles_return"]=2756, + ["protective_link_duration_+%"]=9567, + ["puncture_and_ensnaring_arrow_enemies_explode_on_death_by_attack_for_10%_life_as_physical_damage_chance_%"]=9568, + ["puncture_damage_+%"]=3589, + ["puncture_duration_+%"]=3831, + ["puncture_maim_on_hit_%_chance"]=3898, + ["punishment_curse_effect_+%"]=3947, + ["punishment_duration_+%"]=3844, + ["punishment_ignores_hexproof"]=2540, + ["punishment_no_reservation"]=9569, + ["puppet_master_base_duration_ms"]=9570, + ["purge_additional_enemy_resistance_%"]=9571, + ["purge_damage_+%"]=9572, + ["purge_dot_multiplier_+_per_100ms_duration_expired"]=9573, + ["purge_duration_+%"]=9574, + ["purifying_flame_%_chance_to_create_consecrated_ground_around_you"]=9575, + ["purity_of_elements_aura_effect_+%"]=3289, + ["purity_of_elements_mana_reservation_+%"]=3970, + ["purity_of_elements_mana_reservation_efficiency_+%"]=9577, + ["purity_of_elements_mana_reservation_efficiency_-2%_per_1"]=9576, + ["purity_of_elements_reserves_no_mana"]=9578, + ["purity_of_fire_aura_effect_+%"]=3290, + ["purity_of_fire_mana_reservation_+%"]=3971, + ["purity_of_fire_mana_reservation_efficiency_+%"]=9580, + ["purity_of_fire_mana_reservation_efficiency_-2%_per_1"]=9579, + ["purity_of_fire_reserves_no_mana"]=9581, + ["purity_of_ice_aura_effect_+%"]=3291, + ["purity_of_ice_mana_reservation_+%"]=3967, + ["purity_of_ice_mana_reservation_efficiency_+%"]=9583, + ["purity_of_ice_mana_reservation_efficiency_-2%_per_1"]=9582, + ["purity_of_ice_reserves_no_mana"]=9584, + ["purity_of_lightning_aura_effect_+%"]=3292, + ["purity_of_lightning_mana_reservation_+%"]=3972, + ["purity_of_lightning_mana_reservation_efficiency_+%"]=9586, + ["purity_of_lightning_mana_reservation_efficiency_-2%_per_1"]=9585, + ["purity_of_lightning_reserves_no_mana"]=9587, + ["quality_display_animate_weapon_is_gem"]=9348, + ["quality_display_blade_trap_is_gem"]=4975, + ["quality_display_bladefall_is_gem"]=5009, + ["quality_display_bladestorm_is_gem"]=5012, + ["quality_display_essence_drain_is_gem"]=3925, + ["quality_display_firewall_is_gem"]=9347, + ["quality_display_forbidden_rite_is_gem"]=9901, + ["quality_display_herald_of_agony_is_gem"]=9019, + ["quality_display_hydrosphere_is_gem"]=7070, + ["quality_display_perforate_is_gem"]=5156, + ["quality_display_plague_bearer_is_gem"]=5800, + ["quality_display_rage_vortex_is_gem"]=9609, + ["quality_display_raise_zombie_is_gem"]=2093, + ["quality_display_snipe_is_gem"]=9896, + ["quality_display_spike_slam_is_gem"]=10013, + ["quality_display_summon_skeleton_is_gem"]=2095, + ["quality_display_tectonic_slam_is_gem"]=10172, + ["quality_display_tornado_shot_is_gem"]=3882, + ["quality_display_withering_step_is_gem"]=9887, + ["quantity_of_items_dropped_by_maimed_enemies_+%"]=4102, + ["quick_dodge_added_cooldown_count"]=9588, + ["quick_dodge_travel_distance_+%"]=9589, + ["quick_guard_additional_physical_damage_reduction_%"]=9590, + ["quicksilver_flasks_apply_to_nearby_allies"]=9591, + ["quiver_hellscaping_speed_+%"]=6990, + ["quiver_mod_effect_+%"]=9592, + ["quiver_projectiles_pierce_1_additional_target"]=9593, + ["quiver_projectiles_pierce_2_additional_targets"]=9594, + ["quiver_projectiles_pierce_3_additional_targets"]=9595, + ["rage_decay_speed_+%"]=9604, + ["rage_effect_+%"]=9605, + ["rage_effects_doubled"]=9598, + ["rage_effects_tripled"]=9597, + ["rage_grants_cast_speed_instead"]=9606, + ["rage_grants_spell_damage_instead"]=9607, + ["rage_loss_delay_ms"]=9608, + ["rage_slash_sacrifice_rage_%"]=9609, + ["rage_vortex_area_of_effect_+%"]=9610, + ["rage_vortex_damage_+%"]=9611, + ["raging_spirit_damage_+%"]=3583, + ["raging_spirits_always_ignite"]=9612, + ["raging_spirits_refresh_duration_on_hit_vs_rare_or_unique_%_chance"]=9613, + ["raging_spirits_refresh_duration_when_they_kill_ignited_enemy"]=9614, + ["raider_chance_to_evade_attacks_+%_final_during_onslaught"]=9615, + ["raider_nearby_enemies_accuracy_rating_+%_final_while_phasing"]=9616, + ["raider_passive_evade_melee_attacks_while_onslaughted_+%_final"]=3228, + ["raider_passive_evade_projectile_attacks_while_onslaughted_+%_final"]=3229, + ["raider_shock_maximum_effect_override_%"]=9617, + ["raider_shocks_you_apply_can_stack_up_to_50_times"]=9618, + ["rain_of_arrows_additional_sequence_chance_%"]=9619, + ["rain_of_arrows_attack_speed_+%"]=3789, + ["rain_of_arrows_damage_+%"]=3582, + ["rain_of_arrows_radius_+%"]=3746, + ["rain_of_arrows_rain_of_arrows_additional_sequence_chance_%"]=9620, + ["rain_of_arrows_toxic_rain_active_skill_bleeding_damage_+%_final"]=9621, + ["raise_spectre_gem_level_+"]=1551, + ["raise_spectre_mana_cost_+%"]=9622, + ["raise_zombie_does_not_use_corpses"]=9623, + ["raise_zombie_gem_level_+"]=1550, + ["raised_beast_spectres_have_farruls_farric_presence"]=9624, + ["raised_beast_spectres_have_farruls_fertile_presence"]=9625, + ["raised_beast_spectres_have_farruls_wild_presence"]=9626, + ["raised_beast_spectres_have_x_random_modifiers_per_area"]=9627, + ["raised_zombie_%_chance_to_taunt"]=9628, + ["raised_zombies_are_usable_as_corpses_when_alive"]=9629, + ["raised_zombies_cover_in_ash_on_hit_%"]=9630, + ["raised_zombies_fire_damage_%_of_maximum_life_taken_per_minute"]=9631, + ["raised_zombies_have_avatar_of_fire"]=9632, + ["rallying_cry_buff_effect_+%"]=4046, + ["rallying_cry_buff_effect_1%_per_3_stat_value"]=9633, + ["rallying_cry_buff_effect_1%_per_5_stat_value"]=9634, + ["rallying_cry_duration_+%"]=3852, + ["rallying_cry_exerts_x_additional_attacks"]=9635, + ["random_curse_on_hit_%"]=2445, + ["random_curse_on_hit_%_against_uncursed_enemies"]=9636, + ["random_curse_when_hit_%_ignoring_curse_limit"]=9637, + ["random_projectile_direction"]=9638, + ["random_skill_gem_level_+_index"]=1553, + ["random_skill_gem_level_+_level"]=1553, + ["randomly_cursed_when_totems_die_curse_level"]=2484, + ["ranged_weapon_physical_damage_+%"]=1931, + ["ranger_hidden_ascendancy_non_damaging_elemental_ailment_effect_+%_final"]=9639, + ["rare_beasts_keep_modifiers_when_raised_as_spectres"]=9640, + ["rare_or_unique_monster_dropped_item_rarity_+%"]=9641, + ["rarity_of_items_dropped_by_maimed_enemies_+%"]=4103, + ["reap_debuff_deals_fire_damage_instead_of_physical_damage"]=9642, + ["reave_attack_speed_per_reave_stack_+%"]=3895, + ["reave_damage_+%"]=3576, + ["reave_radius_+%"]=3743, + ["recall_sigil_target_search_range_+%"]=9643, + ["receive_bleeding_chance_%_when_hit_by_attack"]=9644, + ["received_attack_hits_have_impale_chance_%"]=9645, + ["recharge_flasks_on_crit"]=2898, + ["recharge_flasks_on_crit_while_affected_by_precision"]=9646, + ["reckoning_cooldown_speed_+%"]=3812, + ["reckoning_damage_+%"]=3641, + ["recoup_%_of_damage_taken_by_your_totems_as_life"]=9647, + ["recoup_effects_apply_over_3_seconds_instead"]=9648, + ["recoup_life_effects_apply_over_3_seconds_instead"]=9649, + ["recover_%_energy_shield_over_1_second_when_you_take_physical_damage_from_enemy_hits"]=9650, + ["recover_%_energy_shield_when_you_block_spell_damage_while_wielding_a_staff"]=9667, + ["recover_%_es_on_kill_per_different_mastery"]=1608, + ["recover_%_life_on_kill_per_different_mastery"]=1593, + ["recover_%_life_when_gaining_adrenaline"]=9668, + ["recover_%_life_when_you_block_attack_damage_while_wielding_a_staff"]=9669, + ["recover_%_life_when_you_chill_a_non_chilled_enemy"]=9651, + ["recover_%_life_when_you_ignite_a_non_ignited_enemy"]=9670, + ["recover_%_life_when_you_use_a_life_flask_while_on_low_life"]=9671, + ["recover_%_mana_on_kill_per_different_mastery"]=1625, + ["recover_%_mana_when_attached_brand_expires"]=9672, + ["recover_%_maximum_energy_shield_on_killing_cursed_enemy"]=9652, + ["recover_%_maximum_life_on_enemy_ignited"]=4232, + ["recover_%_maximum_life_on_flask_use"]=4273, + ["recover_%_maximum_life_on_kill"]=1684, + ["recover_%_maximum_life_on_killing_chilled_enemy"]=9673, + ["recover_%_maximum_life_on_killing_cursed_enemy"]=9653, + ["recover_%_maximum_life_on_killing_enemy_while_you_have_rage"]=9674, + ["recover_%_maximum_life_on_killing_poisoned_enemy"]=9675, + ["recover_%_maximum_life_on_mana_flask_use"]=4274, + ["recover_%_maximum_life_on_rampage_threshold"]=2887, + ["recover_%_maximum_life_on_suppressing_spell"]=9654, + ["recover_%_maximum_life_when_corpse_destroyed_or_consumed"]=2986, + ["recover_%_maximum_life_when_cursing_non_cursed_enemy"]=9655, + ["recover_%_maximum_mana_on_activating_tincture"]=9676, + ["recover_%_maximum_mana_on_kill"]=1686, + ["recover_%_maximum_mana_on_kill_while_tincture_active"]=9677, + ["recover_%_maximum_mana_on_killing_cursed_enemy"]=1687, + ["recover_%_maximum_mana_when_cursing_non_cursed_enemy"]=9656, + ["recover_%_maximum_mana_when_enemy_frozen_permyriad"]=9678, + ["recover_%_maximum_mana_when_enemy_shocked"]=4101, + ["recover_%_of_maximum_life_on_block"]=2992, + ["recover_%_of_maximum_mana_over_1_second_on_guard_skill_use"]=9679, + ["recover_%_of_skill_mana_cost_per_unspent_chain_up_to_50%"]=9680, + ["recover_10%_mana_on_skill_use_%_chance_while_affected_by_clarity"]=9657, + ["recover_10%_of_maximum_mana_on_skill_use_%"]=3407, + ["recover_1_life_per_x_life_regeneration_per_minute_every_4_seconds"]=9658, + ["recover_X_life_on_block"]=1695, + ["recover_X_life_on_enemy_ignited"]=9659, + ["recover_X_life_on_suppressing_spell"]=9660, + ["recover_X_life_when_fortification_expires_per_fortification_lost"]=9661, + ["recover_X_mana_on_killing_frozen_enemy"]=9662, + ["recover_energy_shield_%_on_consuming_steel_shard"]=9663, + ["recover_energy_shield_%_on_kill"]=1685, + ["recover_es_as_well_as_life_from_life_regeneration"]=9664, + ["recover_life_for_ancestral_totem_equal_to_damage_taken_from_hits"]=9665, + ["recover_maximum_life_on_enemy_killed_chance_%"]=9666, + ["recover_permyriad_life_on_skill_use"]=9681, + ["recover_permyriad_maximum_life_per_poison_on_enemy_on_kill"]=9682, + ["recover_x_energy_shield_on_spell_block"]=9683, + ["recover_x_energy_shield_on_suppressing_spell"]=9684, + ["reduce_enemy_chaos_resistance_%"]=9685, + ["reduce_enemy_chaos_resistance_with_weapons_%"]=3524, + ["reduce_enemy_cold_resistance_%_while_affected_by_hatred"]=9686, + ["reduce_enemy_cold_resistance_with_weapons_%"]=3521, + ["reduce_enemy_dodge_%"]=1840, + ["reduce_enemy_elemental_resistance_%"]=2913, + ["reduce_enemy_elemental_resistance_with_weapons_%"]=3531, + ["reduce_enemy_fire_resistance_%_vs_blinded_enemies"]=9687, + ["reduce_enemy_fire_resistance_%_while_affected_by_anger"]=9688, + ["reduce_enemy_fire_resistance_with_weapons_%"]=3522, + ["reduce_enemy_lightning_resistance_%_while_affected_by_wrath"]=9689, + ["reduce_enemy_lightning_resistance_with_weapons_%"]=3523, + ["reflect_%_of_physical_damage_prevented"]=9690, + ["reflect_chill_and_freeze_%_chance"]=9691, + ["reflect_curses"]=2409, + ["reflect_damage_taken_+%"]=4200, + ["reflect_damage_taken_and_minion_reflect_damage_taken_+%"]=9692, + ["reflect_hexes_chance_%"]=2410, + ["reflect_non_damaging_ailments_%_chance"]=9693, + ["reflect_shocks"]=9694, + ["reflect_shocks_to_enemies_in_radius"]=9695, + ["reflected_physical_damage_taken_+%_while_affected_by_determination"]=9696, + ["refresh_duration_of_shock_chill_ignite_on_enemy_when_cursing_enemy"]=9697, + ["refresh_ignite_duration_on_critical_strike_chance_%"]=9698, + ["regenerate_%_armour_as_life_over_1_second_on_block"]=2765, + ["regenerate_%_energy_shield_over_1_second_when_stunned"]=9699, + ["regenerate_%_life_over_1_second_when_hit_while_affected_by_vitality"]=9700, + ["regenerate_%_life_over_1_second_when_hit_while_not_unhinged"]=9705, + ["regenerate_%_life_over_1_second_when_stunned"]=9701, + ["regenerate_%_maximum_energy_shield_over_2_seconds_on_consuming_corpse"]=9706, + ["regenerate_%_maximum_mana_over_2_seconds_on_consuming_corpse"]=9707, + ["regenerate_1_rage_per_x_life_regeneration"]=9702, + ["regenerate_1_rage_per_x_mana_regeneration"]=9703, + ["regenerate_X_life_over_1_second_on_cast"]=2764, + ["regenerate_energy_shield_equal_to_%_evasion_rating_over_1_second_every_4_seconds"]=9704, + ["regenerate_energy_shield_instead_of_life"]=10602, + ["regenerate_x_mana_per_minute_while_you_have_arcane_surge"]=9708, + ["rejuvenation_totem_%_life_regeneration_added_as_mana_regeneration"]=3930, + ["rejuvenation_totem_aura_effect_+%"]=3931, + ["remove_%_of_mana_on_hit"]=9720, + ["remove_ailments_and_burning_on_gaining_adrenaline"]=9709, + ["remove_all_damaging_ailments_on_warcry"]=9711, + ["remove_bleed_on_flask_use"]=3318, + ["remove_bleed_on_life_flask_use"]=9712, + ["remove_bleeding_on_warcry"]=9713, + ["remove_chill_and_freeze_on_flask_use"]=9714, + ["remove_corrupted_blood_when_you_use_a_flask"]=3319, + ["remove_curse_on_mana_flask_use"]=9715, + ["remove_damaging_ailments_on_swapping_stance"]=9716, + ["remove_elemental_ailments_on_curse_cast_%"]=9717, + ["remove_ignite_and_burning_on_flask_use"]=9718, + ["remove_maim_and_hinder_on_flask_use"]=9719, + ["remove_rage_on_reaching_max_to_gain_adrenaline_for_1_second_per_x_rage_lost"]=9721, + ["remove_random_ailment_on_flask_use_if_all_equipped_items_are_elder"]=9722, + ["remove_random_ailment_when_you_warcry"]=9723, + ["remove_random_charge_on_hit_%"]=9724, + ["remove_random_elemental_ailment_on_mana_flask_use"]=9725, + ["remove_random_non_elemental_ailment_on_life_flask_use"]=9726, + ["remove_shock_on_flask_use"]=9727, + ["remove_x_curses_after_channelling_for_2_seconds"]=9728, + ["replica_unique_hyrris_truth_hatred_mana_reservation_+%_final"]=9729, + ["reservation_efficiency_+%_with_unique_abyss_jewel_socketed"]=9730, + ["reservation_efficiency_-2%_per_1"]=2166, + ["reserve_life_instead_of_loss_from_damage_for_x_ms"]=9731, + ["resist_all_%"]=9732, + ["resist_all_%_for_enemies_you_inflict_spiders_web_upon"]=9733, + ["resist_all_elements_%_per_10_levels"]=2696, + ["resist_all_elements_%_per_endurance_charge"]=1555, + ["resist_all_elements_%_with_200_or_more_strength"]=4293, + ["resist_all_elements_+%_while_holding_shield"]=1556, + ["resolute_technique"]=10622, + ["restore_energy_shield_and_mana_when_you_focus_%"]=9734, + ["restore_life_and_mana_on_warcry_%"]=3132, + ["restore_life_on_warcry_%"]=3133, + ["restore_ward_on_hit_%"]=9735, + ["retaliation_skill_additional_use_window_duration_ms"]=9736, + ["retaliation_skill_area_of_effect_+%"]=9737, + ["retaliation_skill_cost_+%"]=9738, + ["retaliation_skill_damage_+%"]=9739, + ["retaliation_skill_keep_use_requirement_and_prevent_cooldown_on_use_chance_%"]=9740, + ["retaliation_skill_speed_+%"]=9741, + ["retaliation_skill_stun_duration_+%"]=9742, + ["retaliation_skill_stun_threshold_+%"]=9743, + ["retaliation_skills_all_ailment_duration_+%"]=9744, + ["retaliation_skills_become_usable_every_x_ms"]=9745, + ["retaliation_skills_debilitate_on_hit_ms"]=9746, + ["retaliation_skills_fortify_on_melee_hit"]=9747, + ["retaliation_skills_gain_X_rage_per_enemy_hit"]=9748, + ["retaliation_use_window_duration_+%"]=9749, + ["returned_projectile_speed_+%"]=9750, + ["returning_projectiles_always_pierce"]=9751, + ["revive_golems_if_killed_by_enemies_ms"]=9752, + ["revive_spectre_if_killed_by_enemies_ms"]=9753, + ["righteous_fire_and_fire_beam_regenerate_x_mana_per_second_while_enemies_are_within"]=9754, + ["righteous_fire_damage_+%"]=3606, + ["righteous_fire_radius_+%"]=3754, + ["righteous_fire_spell_damage_+%"]=4045, + ["riposte_cooldown_speed_+%"]=3817, + ["riposte_damage_+%"]=3653, + ["rogue_trader_map_rogue_exile_maximum_life_+%_final"]=9755, + ["rune_blast_teleports_to_detonated_rune_with_100_ms_cooldown"]=9756, + ["rune_blast_teleports_to_detonated_rune_with_150_ms_cooldown"]=9757, + ["runegraft_offhand_attack_speed_+%_final"]=9758, + ["ruthless_hits_intimidate_enemies_for_4_seconds"]=9759, + ["sabotuer_mines_apply_damage_+%_to_nearby_enemies_up_to_-10%"]=9760, + ["sabotuer_mines_apply_damage_taken_+%_to_nearby_enemies_up_to_10%"]=9761, + ["sacrifice_%_life_on_spell_skill"]=9764, + ["sacrifice_%_life_to_fire_additional_arrow_for_each_100_life"]=9762, + ["sacrifice_%_maximum_life_to_gain_as_es_on_spell_cast"]=9765, + ["sacrifice_minion_to_fire_X_additional_arrows"]=9763, + ["sanctify_area_of_effect_+%_when_targeting_consecrated_ground"]=9766, + ["sanctify_consecrated_ground_enemy_damage_taken_+%"]=9767, + ["sanctify_damage_+%"]=9768, + ["sap_on_critical_strike_with_lightning_skills"]=9769, + ["scion_helmet_skill_maximum_totems_+"]=559, + ["scorch_effect_+%"]=9770, + ["scorch_enemies_in_close_range_on_block"]=9771, + ["scorched_earth_ground_scorch_duration_ms"]=4241, + ["scorched_enemies_explode_on_death_for_8%_life_as_fire_degen_chance"]=9772, + ["scourge_arrow_damage_+%"]=9773, + ["searing_bond_damage_+%"]=3601, + ["searing_bond_totem_placement_speed_+%"]=3906, + ["searing_totem_elemental_resistance_+%"]=4051, + ["secondary_maximum_base_chaos_damage"]=1337, + ["secondary_maximum_base_cold_damage"]=1335, + ["secondary_maximum_base_fire_damage"]=1334, + ["secondary_maximum_base_lightning_damage"]=1336, + ["secondary_maximum_base_physical_damage"]=1333, + ["secondary_minimum_base_chaos_damage"]=1337, + ["secondary_minimum_base_cold_damage"]=1335, + ["secondary_minimum_base_fire_damage"]=1334, + ["secondary_minimum_base_lightning_damage"]=1336, + ["secondary_minimum_base_physical_damage"]=1333, + ["secondary_skill_effect_duration_+%"]=9774, + ["seismic_cry_exerted_attack_damage_+%"]=9775, + ["seismic_cry_minimum_power"]=9776, + ["self_bleed_duration_+%"]=9777, + ["self_chill_duration_-%"]=1803, + ["self_cold_damage_on_reaching_maximum_power_charges"]=9778, + ["self_critical_strike_multiplier_+%_while_ignited"]=9779, + ["self_critical_strike_multiplier_-%_per_endurance_charge"]=1449, + ["self_curse_duration_+%"]=2104, + ["self_curse_duration_+%_per_10_devotion"]=9780, + ["self_cursed_with_level_x_vulnerability"]=3054, + ["self_damaging_ailment_duration_+%_per_barkskin_stack"]=9781, + ["self_debilitated"]=9782, + ["self_elemental_status_duration_-%"]=1802, + ["self_elemental_status_duration_-%_per_10_devotion"]=9783, + ["self_fire_damage_on_skill_use"]=2145, + ["self_freeze_duration_-%"]=1805, + ["self_ignite_duration_-%"]=1806, + ["self_offering_effect_+%"]=1106, + ["self_physical_damage_on_movement_skill_use"]=9784, + ["self_physical_damage_on_skill_use_%_mana_cost"]=2146, + ["self_physical_damage_on_skill_use_%_max_life_per_warcry_exerting_action"]=9785, + ["self_poison_duration_+%"]=9786, + ["self_shock_duration_-%"]=1804, + ["self_take_no_extra_damage_from_critical_strikes"]=4219, + ["self_take_no_extra_damage_from_critical_strikes_if_energy_shield_recharge_started_recently"]=9787, + ["self_take_no_extra_damage_from_critical_strikes_if_have_been_crit_recently"]=9788, + ["self_take_no_extra_damage_from_critical_strikes_if_left_ring_is_magic_item"]=9789, + ["self_take_no_extra_damage_from_critical_strikes_if_only_one_nearby_enemy"]=9790, + ["self_take_no_extra_damage_from_critical_strikes_if_there_is_at_most_1_rare_or_unique_enemy_nearby"]=9791, + ["self_take_no_extra_damage_from_critical_strikes_while_affected_by_elusive"]=9792, + ["self_take_no_extra_damage_from_critical_strikes_while_no_gems_in_gloves"]=9793, + ["sentinel_minion_cooldown_speed_+%"]=9794, + ["sentinel_of_purity_damage_+%"]=9795, + ["serpent_strike_maximum_snakes"]=9796, + ["shaper_apparition_ability"]=681, + ["shapers_seed_unique_aura_life_regeneration_rate_per_minute_%"]=2932, + ["shapers_seed_unique_aura_mana_regeneration_rate_+%"]=2937, + ["share_endurance_charges_with_party_within_distance"]=2087, + ["share_frenzy_charges_with_party_within_distance"]=2088, + ["share_power_charges_with_party_within_distance"]=2089, + ["shatter_has_%_chance_to_cover_in_frost"]=9797, + ["shatter_on_kill_vs_bleeding_enemies"]=9798, + ["shatter_on_kill_vs_poisoned_enemies"]=9799, + ["shatter_on_killing_blow_chance_%"]=9800, + ["shattering_steel_%_chance_to_not_consume_ammo"]=9804, + ["shattering_steel_damage_+%"]=9801, + ["shattering_steel_fortify_on_hit_close_range"]=9802, + ["shattering_steel_number_of_additional_projectiles"]=9803, + ["shield_armour_+%"]=1927, + ["shield_attack_speed_+%"]=1363, + ["shield_block_%"]=1076, + ["shield_charge_attack_speed_+%"]=3791, + ["shield_charge_damage_+%"]=3590, + ["shield_charge_damage_per_target_hit_+%"]=4021, + ["shield_crush_and_spectral_shield_throw_cannot_add_physical_damage_per_armour_and_evasion_rating"]=9805, + ["shield_crush_and_spectral_shield_throw_off_hand_maximum_added_lightning_damage_per_15_energy_shield_on_shield"]=9806, + ["shield_crush_and_spectral_shield_throw_off_hand_minimum_added_lightning_damage_per_15_energy_shield_on_shield"]=9806, + ["shield_crush_and_spectral_shield_throw_skill_physical_damage_%_to_convert_to_lightning"]=9807, + ["shield_crush_attack_speed_+%"]=9808, + ["shield_crush_damage_+%"]=9809, + ["shield_crush_helmet_enchantment_aoe_+%_final"]=9810, + ["shield_defences_+%_per_10_devotion"]=9811, + ["shield_evasion_rating_+%"]=1924, + ["shield_maximum_energy_shield_+%"]=1905, + ["shield_physical_damage_reduction_rating_+%"]=1925, + ["shield_spell_block_%"]=1077, + ["shock_X_nearby_enemies_for_2_s_on_killing_shocked_enemy"]=2748, + ["shock_and_freeze_apply_elemental_damage_taken_+%"]=9812, + ["shock_attackers_for_4_seconds_on_block_%_chance"]=9813, + ["shock_duration_+%"]=1792, + ["shock_effect_+%"]=9816, + ["shock_effect_+%_while_es_leeching"]=9814, + ["shock_effect_+%_with_critical_strikes"]=9817, + ["shock_effect_against_cursed_enemies_+%"]=9815, + ["shock_maximum_magnitude_+"]=9819, + ["shock_maximum_magnitude_is_60%"]=9818, + ["shock_minimum_damage_taken_increase_%"]=4372, + ["shock_nearby_enemies_for_x_ms_when_you_focus"]=9821, + ["shock_nova_and_storm_call_all_damage_can_ignite"]=9822, + ["shock_nova_and_storm_call_ignite_damage_+100%_final_chance"]=9823, + ["shock_nova_damage_+%"]=3616, + ["shock_nova_radius_+%"]=3767, + ["shock_nova_ring_chance_to_shock_+%"]=9824, + ["shock_nova_ring_damage_+%"]=3922, + ["shock_nova_ring_shocks_as_if_dealing_damage_+%_final"]=9825, + ["shock_prevention_ms_when_shocked"]=2831, + ["shock_proliferation_radius_is_at_least_15"]=2156, + ["shock_self_for_x_ms_when_you_focus"]=9820, + ["shocked_chilled_effect_on_self_+%"]=9826, + ["shocked_effect_on_self_+%"]=9827, + ["shocked_enemies_explode_for_%_life_as_lightning_damage"]=9828, + ["shocked_for_4_seconds_on_reaching_maximum_power_charges"]=3536, + ["shocked_ground_base_magnitude_override"]=9829, + ["shocked_ground_effect_on_self_+%"]=2084, + ["shocked_ground_on_death_%"]=9830, + ["shocked_ground_when_hit_%"]=2510, + ["shocks_enemies_that_hit_actor_while_actor_is_casting"]=1846, + ["shocks_reflected_to_self"]=2708, + ["shockwave_slam_attack_speed_+%"]=3797, + ["shockwave_slam_damage_+%"]=3672, + ["shockwave_slam_explosion_damage_+%_final"]=3497, + ["shockwave_slam_radius_+%"]=3780, + ["shockwave_totem_cast_speed_+%"]=3934, + ["shockwave_totem_damage_+%"]=3617, + ["shockwave_totem_radius_+%"]=3782, + ["should_use_alternate_fortify"]=2199, + ["shrapnel_ballista_num_additional_arrows"]=9831, + ["shrapnel_ballista_num_pierce"]=9832, + ["shrapnel_ballista_projectile_speed_+%"]=9833, + ["shrapnel_ballista_totems_from_this_skill_grant_shrapnel_ballista_attack_speed_-%"]=9834, + ["shrapnel_shot_damage_+%"]=3657, + ["shrapnel_shot_physical_damage_%_to_add_as_lightning_damage"]=3959, + ["shrapnel_shot_radius_+%"]=3769, + ["shrapnel_trap_area_of_effect_+%"]=9836, + ["shrapnel_trap_damage_+%"]=9837, + ["shrapnel_trap_number_of_additional_secondary_explosions"]=9838, + ["shrine_buff_effect_on_self_+%"]=2746, + ["shrine_effect_duration_+%"]=2747, + ["siege_and_shrapnel_ballista_attack_speed_+%_per_maximum_totem"]=4225, + ["siege_ballista_attack_speed_+%"]=3796, + ["siege_ballista_damage_+%"]=3670, + ["siege_ballista_totem_placement_speed_+%"]=3936, + ["siege_ballista_totems_from_this_skill_grant_siege_ballista_attack_speed_-%"]=9839, + ["sigil_attached_target_damage_+%"]=9840, + ["sigil_attached_target_damage_taken_+%"]=9841, + ["sigil_critical_strike_chance_+%"]=9842, + ["sigil_critical_strike_multiplier_+"]=9843, + ["sigil_damage_+%"]=9844, + ["sigil_damage_+%_per_10_devotion"]=9845, + ["sigil_duration_+%"]=9846, + ["sigil_recall_cooldown_speed_+%"]=9847, + ["sigil_recall_cooldown_speed_+%_per_brand_up_to_40%"]=9848, + ["sigil_repeat_frequency_+%"]=9849, + ["sigil_repeat_frequency_+%_if_havent_used_a_brand_skill_recently"]=9850, + ["sigil_target_search_range_+%"]=9851, + ["silver_flask_display_onslaught"]=3530, + ["silver_footprints_from_item"]=10653, + ["siphon_duration_+%"]=3855, + ["siphon_life_leech_from_damage_permyriad"]=3925, + ["skeletal_chains_area_of_effect_+%"]=9852, + ["skeletal_chains_cast_speed_+%"]=9853, + ["skeletal_chains_damage_+%"]=3666, + ["skeleton_attack_speed_+%"]=9854, + ["skeleton_cast_speed_+%"]=9855, + ["skeleton_duration_+%"]=1714, + ["skeleton_movement_speed_+%"]=9856, + ["skeletons_and_holy_relics_+%_effect_of_non_damaging_ailments"]=9858, + ["skeletons_and_holy_relics_convert_%_physical_damage_to_a_random_element"]=9857, + ["skeletons_are_permanent_minions"]=9859, + ["skeletons_damage_+%"]=3591, + ["skill_area_of_effect_+%_if_enemy_killed_recently"]=4150, + ["skill_area_of_effect_+%_in_sand_stance"]=10028, + ["skill_area_of_effect_+%_per_active_mine"]=3399, + ["skill_area_of_effect_+%_per_power_charge"]=2062, + ["skill_area_of_effect_+%_per_power_charge_up_to_50%"]=2063, + ["skill_area_of_effect_+%_while_no_frenzy_charges"]=1989, + ["skill_area_of_effect_when_unarmed_+%"]=2985, + ["skill_cooldown_-%"]=1832, + ["skill_effect_duration_+%"]=1830, + ["skill_effect_duration_+%_if_killed_maimed_enemy_recently"]=4152, + ["skill_effect_duration_+%_per_10_strength"]=1947, + ["skill_effect_duration_+%_per_red_skill_gem"]=9860, + ["skill_effect_duration_+%_while_affected_by_malevolence"]=9861, + ["skill_effect_duration_+%_with_bow_skills"]=9862, + ["skill_effect_duration_+%_with_non_curse_aura_skills"]=9863, + ["skill_effect_duration_per_100_int"]=3022, + ["skill_internal_monster_responsiveness_+%"]=1862, + ["skill_life_cost_+"]=1825, + ["skill_life_cost_+%_final_while_on_low_life"]=9866, + ["skill_life_cost_+_with_channelling_skills"]=9864, + ["skill_life_cost_+_with_non_channelling_skills"]=9865, + ["skill_mana_cost_+"]=1826, + ["skill_mana_cost_+_for_each_equipped_corrupted_item"]=4264, + ["skill_mana_cost_+_while_affected_by_clarity"]=9867, + ["skill_mana_cost_+_with_channelling_skills"]=9868, + ["skill_mana_cost_+_with_non_channelling_skills"]=9870, + ["skill_mana_cost_+_with_non_channelling_skills_while_affected_by_clarity"]=9872, + ["skill_max_unleash_seals"]=10518, + ["skill_range_+%"]=1863, + ["skill_repeat_count"]=1828, ["skill_visual_scale_+%"]=13, - ["skills_cost_no_mana_while_focused"]=9576, - ["skills_fire_x_additional_projectiles_for_4_seconds_after_consuming_8_steel_ammo"]=9577, - ["skills_gain_intensity_every_x_milliseconds_if_gained_intensity_recently"]=9578, - ["skills_lose_intensity_every_x_milliseconds_if_gained_intensity_recently"]=9579, - ["skills_supported_by_nightblade_have_elusive_effect_+%"]=9580, - ["skills_that_throw_mines_reserve_life"]=9581, - ["skip_life_sacrifice_chance_%"]=9582, - ["skitterbots_mana_reservation_efficiency_+%"]=9584, - ["skitterbots_mana_reservation_efficiency_-2%_per_1"]=9583, - ["slam_ancestor_totem_damage_+%"]=4027, - ["slam_ancestor_totem_grant_owner_melee_damage_+%"]=3690, - ["slam_ancestor_totem_radius_+%"]=4030, - ["slash_ancestor_totem_damage_+%"]=4028, - ["slash_ancestor_totem_elemental_resistance_%"]=2687, - ["slash_ancestor_totem_grant_owner_physical_damage_added_as_fire_+%"]=3689, - ["slash_ancestor_totem_radius_+%"]=4029, - ["slayer_area_of_effect_+%_per_enemy_killed_recently_up_to_50%"]=9585, - ["slayer_ascendancy_melee_splash_damage_+%_final_for_splash"]=1084, - ["slayer_critical_strike_multiplier_+_per_nearby_enemy_up_to_100"]=9586, - ["slayer_damage_+%_final_against_unique_enemies"]=9587, - ["slayer_damage_+%_final_from_distance"]=9588, - ["slither_elusive_effect_+%"]=9589, - ["slither_wither_stacks"]=9590, - ["smite_aura_effect_+%"]=9591, - ["smite_chance_for_lighting_to_strike_extra_target_%"]=9592, - ["smite_damage_+%"]=9593, - ["smite_static_strike_killing_blow_consumes_corpse_restore_%_life"]=9594, - ["smoke_mine_base_movement_velocity_+%"]=3995, - ["smoke_mine_duration_+%"]=3790, - ["snapping_adder_%_chance_to_retain_projectile_on_release"]=9596, - ["snapping_adder_damage_+%"]=9595, - ["snapping_adder_withered_on_hit_for_2_seconds_%_chance"]=9597, - ["snipe_attack_speed_+%"]=9598, - ["snipe_max_stacks"]=9599, - ["soul_eater_maximum_stacks"]=9600, - ["soul_eater_maximum_stacks_+"]=6913, - ["soul_eater_on_rare_kill_ms"]=3315, - ["soul_link_duration_+%"]=9601, - ["soulfeast_number_of_secondary_projectiles"]=9602, - ["soulrend_applies_hinder_movement_speed_+%"]=9603, - ["soulrend_damage_+%"]=9604, - ["soulrend_number_of_additional_projectiles"]=9605, - ["spark_damage_+%"]=3532, - ["spark_num_of_additional_projectiles"]=3833, - ["spark_number_of_additional_projectiles"]=9606, - ["spark_projectile_speed_+%"]=3779, - ["spark_projectiles_nova"]=9607, - ["spark_skill_effect_duration_+%"]=9608, - ["spark_totems_from_this_skill_grant_totemified_lightning_tendrils_larger_pulse_interval_-X_to_parent"]=9609, - ["spectral_helix_damage_+%"]=9610, - ["spectral_helix_projectile_speed_+%"]=9611, - ["spectral_helix_rotations_%"]=9612, - ["spectral_shield_throw_additional_chains"]=9613, - ["spectral_shield_throw_damage_+%"]=9614, - ["spectral_shield_throw_num_of_additional_projectiles"]=9615, - ["spectral_shield_throw_projectile_speed_+%"]=9616, - ["spectral_shield_throw_secondary_projectiles_pierce"]=9617, - ["spectral_shield_throw_shard_projectiles_+%_final"]=9618, - ["spectral_spiral_weapon_base_number_of_bounces"]=9619, - ["spectral_throw_an_spectral_helix_active_skill_projectile_speed_+%_variation_final"]=9620, - ["spectral_throw_damage_+%"]=3533, - ["spectral_throw_damage_for_each_enemy_hit_with_spectral_weapon_+%"]=3121, - ["spectral_throw_gain_vaal_soul_for_vaal_spectral_throw_on_hit_%"]=9621, - ["spectral_throw_projectile_deceleration_+%"]=3850, - ["spectral_throw_projectile_speed_+%"]=3780, - ["spectre_attack_and_cast_speed_+%"]=3755, - ["spectre_damage_+%"]=3344, - ["spectre_elemental_resistances_%"]=3868, - ["spectre_maximum_life_+"]=9622, - ["spectre_zombie_skeleton_critical_strike_multiplier_+"]=9623, - ["spectres_additional_base_critical_strike_chance"]=9624, - ["spectres_and_zombies_gain_adrenaline_for_X_seconds_when_raised"]=9625, - ["spectres_base_maximum_all_resistances_%"]=9626, - ["spectres_base_skill_area_of_effect_+%"]=9627, - ["spectres_critical_strike_chance_+%"]=9628, - ["spectres_gain_arcane_surge_when_you_do"]=9629, - ["spectres_gain_soul_eater_for_20_seconds_on_kill_%_chance"]=9630, - ["spectres_have_base_duration_ms"]=9631, - ["spectres_number_of_additional_projectiles"]=9632, - ["spell_additional_critical_strike_chance_permyriad"]=9634, - ["spell_additional_critical_strike_chance_permyriad_if_4_shaper_items"]=4364, - ["spell_and_attack_block_chance_is_lucky_if_blocked_recently"]=9635, - ["spell_and_attack_maximum_added_chaos_damage_during_flask_effect"]=9636, - ["spell_and_attack_maximum_added_cold_damage"]=1282, - ["spell_and_attack_maximum_added_fire_damage"]=1281, - ["spell_and_attack_maximum_added_lightning_damage"]=1317, - ["spell_and_attack_minimum_added_chaos_damage_during_flask_effect"]=9636, - ["spell_and_attack_minimum_added_cold_damage"]=1282, - ["spell_and_attack_minimum_added_fire_damage"]=1281, - ["spell_and_attack_minimum_added_lightning_damage"]=1317, - ["spell_area_of_effect_+%"]=9637, - ["spell_base_fire_damage_%_maximum_life"]=1302, - ["spell_base_life_cost_%"]=9638, - ["spell_block_%_if_blocked_a_spell_recently"]=9642, - ["spell_block_%_if_blocked_an_attack_recently"]=9643, - ["spell_block_%_per_5_attack_block"]=1666, - ["spell_block_%_per_minion"]=9639, - ["spell_block_%_while_at_max_power_charges"]=9644, - ["spell_block_%_while_on_low_life"]=1058, - ["spell_block_chance_%_while_holding_staff_or_shield"]=9640, - ["spell_block_equals_attack_block"]=1067, - ["spell_block_is_maximum_if_not_blocked_recently"]=9641, - ["spell_block_while_dual_wielding_%"]=1057, - ["spell_block_with_bow_%"]=1060, - ["spell_block_with_staff_%"]=1061, - ["spell_bow_damage_+%"]=1137, - ["spell_chance_to_deal_double_damage_%"]=9645, - ["spell_chance_to_shock_frozen_enemies_%"]=2823, - ["spell_cold_damage_+%"]=1135, - ["spell_critical_strike_chance_+%"]=1366, - ["spell_critical_strike_chance_+%_if_removed_maximum_number_of_seals"]=9646, - ["spell_critical_strike_chance_+%_per_100_max_life"]=9647, - ["spell_critical_strike_chance_+%_per_raised_spectre"]=9648, - ["spell_critical_strike_chance_+%_while_dual_wielding"]=5671, - ["spell_critical_strike_chance_+%_while_holding_shield"]=5672, - ["spell_critical_strike_chance_+%_while_wielding_staff"]=5673, - ["spell_critical_strike_multiplier_+_while_dual_wielding"]=5697, - ["spell_critical_strike_multiplier_+_while_holding_shield"]=5698, - ["spell_critical_strike_multiplier_+_while_wielding_staff"]=5699, - ["spell_damage_%_suppressed_if_taken_a_savage_hit_recently"]=9649, - ["spell_damage_%_suppressed_per_bark_below_max"]=9650, - ["spell_damage_%_suppressed_per_hit_suppressed_recently"]=9651, - ["spell_damage_%_suppressed_while_on_full_energy_shield"]=1059, - ["spell_damage_+%"]=1132, - ["spell_damage_+%_during_flask_effect"]=9655, - ["spell_damage_+%_final_if_you_have_been_stunned_while_casting_recently"]=9652, - ["spell_damage_+%_for_4_seconds_on_cast"]=3418, - ["spell_damage_+%_if_have_crit_in_past_8_seconds"]=9656, - ["spell_damage_+%_if_have_crit_recently"]=9653, - ["spell_damage_+%_if_other_ring_is_elder_item"]=4210, - ["spell_damage_+%_if_you_have_blocked_recently"]=9657, - ["spell_damage_+%_per_100_max_life"]=9658, - ["spell_damage_+%_per_100_maximum_mana_up_to_60%"]=9659, - ["spell_damage_+%_per_10_int"]=2637, - ["spell_damage_+%_per_10_strength"]=9660, - ["spell_damage_+%_per_16_dex"]=9661, - ["spell_damage_+%_per_16_int"]=9662, - ["spell_damage_+%_per_16_strength"]=9663, - ["spell_damage_+%_per_200_mana_spent_recently"]=4231, - ["spell_damage_+%_per_5%_block_chance"]=2636, - ["spell_damage_+%_per_5%_spell_block_chance"]=9664, - ["spell_damage_+%_per_500_maximum_mana"]=9654, - ["spell_damage_+%_per_level"]=2860, - ["spell_damage_+%_per_power_charge"]=2041, - ["spell_damage_+%_while_dual_wielding"]=1139, - ["spell_damage_+%_while_es_full"]=2971, - ["spell_damage_+%_while_holding_shield"]=1138, - ["spell_damage_+%_while_no_mana_reserved"]=2974, - ["spell_damage_+%_while_not_low_mana"]=2975, - ["spell_damage_+%_while_shocked"]=9665, - ["spell_damage_+%_while_you_have_arcane_surge"]=9666, - ["spell_damage_modifiers_apply_to_attack_damage"]=2583, - ["spell_damage_taken_+%_from_blinded_enemies"]=3111, - ["spell_damage_taken_+%_when_on_low_mana"]=2371, - ["spell_elemental_damage_+%"]=1968, - ["spell_fire_damage_+%"]=1134, - ["spell_hits_against_you_inflict_poison_%"]=9667, - ["spell_impale_on_crit_%_chance"]=9668, - ["spell_maximum_added_chaos_damage"]=1315, - ["spell_maximum_added_chaos_damage_while_dual_wielding"]=2007, - ["spell_maximum_added_chaos_damage_while_holding_a_shield"]=2008, - ["spell_maximum_added_chaos_damage_while_wielding_two_handed_weapon"]=2009, - ["spell_maximum_added_cold_damage"]=1313, - ["spell_maximum_added_cold_damage_per_power_charge"]=1730, - ["spell_maximum_added_cold_damage_while_dual_wielding"]=2010, - ["spell_maximum_added_cold_damage_while_holding_a_shield"]=2011, - ["spell_maximum_added_cold_damage_while_wielding_two_handed_weapon"]=2012, - ["spell_maximum_added_fire_damage"]=1312, - ["spell_maximum_added_fire_damage_while_dual_wielding"]=2013, - ["spell_maximum_added_fire_damage_while_holding_a_shield"]=2014, - ["spell_maximum_added_fire_damage_while_wielding_two_handed_weapon"]=2015, - ["spell_maximum_added_lightning_damage"]=1314, - ["spell_maximum_added_lightning_damage_per_10_intelligence"]=9633, - ["spell_maximum_added_lightning_damage_while_dual_wielding"]=2016, - ["spell_maximum_added_lightning_damage_while_holding_a_shield"]=2017, - ["spell_maximum_added_lightning_damage_while_unarmed"]=2339, - ["spell_maximum_added_lightning_damage_while_wielding_two_handed_weapon"]=2018, - ["spell_maximum_added_physical_damage"]=1311, - ["spell_maximum_added_physical_damage_while_dual_wielding"]=2019, - ["spell_maximum_added_physical_damage_while_holding_a_shield"]=2020, - ["spell_maximum_added_physical_damage_while_wielding_two_handed_weapon"]=2021, - ["spell_maximum_base_chaos_damage"]=1305, - ["spell_maximum_base_cold_damage"]=1303, - ["spell_maximum_base_cold_damage_+_per_10_intelligence"]=1316, - ["spell_maximum_base_fire_damage"]=1302, - ["spell_maximum_base_lightning_damage"]=1304, - ["spell_maximum_base_physical_damage"]=1301, - ["spell_minimum_added_chaos_damage"]=1315, - ["spell_minimum_added_chaos_damage_while_dual_wielding"]=2007, - ["spell_minimum_added_chaos_damage_while_holding_a_shield"]=2008, - ["spell_minimum_added_chaos_damage_while_wielding_two_handed_weapon"]=2009, - ["spell_minimum_added_cold_damage"]=1313, - ["spell_minimum_added_cold_damage_per_power_charge"]=1730, - ["spell_minimum_added_cold_damage_while_dual_wielding"]=2010, - ["spell_minimum_added_cold_damage_while_holding_a_shield"]=2011, - ["spell_minimum_added_cold_damage_while_wielding_two_handed_weapon"]=2012, - ["spell_minimum_added_fire_damage"]=1312, - ["spell_minimum_added_fire_damage_while_dual_wielding"]=2013, - ["spell_minimum_added_fire_damage_while_holding_a_shield"]=2014, - ["spell_minimum_added_fire_damage_while_wielding_two_handed_weapon"]=2015, - ["spell_minimum_added_lightning_damage"]=1314, - ["spell_minimum_added_lightning_damage_per_10_intelligence"]=9633, - ["spell_minimum_added_lightning_damage_while_dual_wielding"]=2016, - ["spell_minimum_added_lightning_damage_while_holding_a_shield"]=2017, - ["spell_minimum_added_lightning_damage_while_unarmed"]=2339, - ["spell_minimum_added_lightning_damage_while_wielding_two_handed_weapon"]=2018, - ["spell_minimum_added_physical_damage"]=1311, - ["spell_minimum_added_physical_damage_while_dual_wielding"]=2019, - ["spell_minimum_added_physical_damage_while_holding_a_shield"]=2020, - ["spell_minimum_added_physical_damage_while_wielding_two_handed_weapon"]=2021, - ["spell_minimum_base_chaos_damage"]=1305, - ["spell_minimum_base_cold_damage"]=1303, - ["spell_minimum_base_cold_damage_+_per_10_intelligence"]=1316, - ["spell_minimum_base_fire_damage"]=1302, - ["spell_minimum_base_lightning_damage"]=1304, - ["spell_minimum_base_physical_damage"]=1301, - ["spell_physical_damage_%_to_convert_to_fire"]=9669, - ["spell_projectiles_arrive_instantly"]=9670, - ["spell_repeat_count"]=1799, - ["spell_skill_gem_level_+"]=1514, - ["spell_skills_always_crit_on_final_repeat"]=9671, - ["spell_skills_critical_strike_multiplier_+_on_final_repeat"]=9672, - ["spell_skills_deal_no_damage"]=9673, - ["spell_skills_never_crit_except_on_final_repeat"]=9674, - ["spell_staff_damage_+%"]=1136, - ["spell_suppression_chance_%_if_all_equipment_grants_evasion"]=9675, - ["spell_suppression_chance_%_if_enemy_hit_recently"]=9676, - ["spell_suppression_chance_%_if_suppressed_spell_recently"]=9690, - ["spell_suppression_chance_%_if_taken_spell_damage_recently"]=3127, - ["spell_suppression_chance_%_per_endurance_charge"]=9677, - ["spell_suppression_chance_%_per_equipped_dagger"]=9678, - ["spell_suppression_chance_%_per_fortification"]=2168, - ["spell_suppression_chance_%_per_frenzy_charge"]=2446, - ["spell_suppression_chance_%_per_hit_suppressed_recently"]=9679, - ["spell_suppression_chance_%_per_power_charge"]=9680, - ["spell_suppression_chance_%_while_affected_by_grace"]=9681, - ["spell_suppression_chance_%_while_affected_by_haste"]=9682, - ["spell_suppression_chance_%_while_channelling"]=9683, - ["spell_suppression_chance_%_while_holding_shield"]=9684, - ["spell_suppression_chance_%_while_moving"]=9685, - ["spell_suppression_chance_%_while_off_hand_empty"]=9686, - ["spell_suppression_chance_%_while_on_full_energy_shield"]=9691, - ["spell_suppression_chance_%_while_on_full_life"]=9692, - ["spell_suppression_chance_%_while_phasing"]=9687, - ["spell_suppression_chance_is_lucky"]=9688, - ["spell_suppression_chance_modifiers_apply_to_avoid_all_elemental_ailments_at_%_value"]=9689, - ["spells_chance_to_blind_on_hit_%"]=9693, - ["spells_chance_to_hinder_on_hit_%"]=9694, - ["spells_chance_to_knockback_on_hit_%"]=9695, - ["spells_chance_to_poison_on_hit_%"]=9696, - ["spells_corrosion_on_hit_%"]=9697, - ["spells_have_culling_strike"]=2432, - ["spells_impale_on_hit_%_chance"]=9698, - ["spells_inflict_intimidate_on_crit"]=9699, - ["spells_number_of_additional_projectiles"]=4192, - ["spells_you_cast_gain_%_of_base_main_hand_weapon_damage_as_added_spell_damage"]=9702, - ["spells_you_cast_gain_%_of_weapon_damage_as_added_spell_damage"]=9700, - ["spells_you_cast_gain_added_physical_damage_%_life_cost_if_payable"]=9701, - ["spellslinger_cooldown_duration_+%"]=9703, - ["spellslinger_mana_reservation_+%"]=9706, - ["spellslinger_mana_reservation_efficiency_+%"]=9705, - ["spellslinger_mana_reservation_efficiency_-2%_per_1"]=9704, - ["spend_energy_shield_for_costs_before_mana"]=3005, - ["spider_aspect_debuff_duration_+%"]=9707, - ["spider_aspect_reserves_no_mana"]=9708, - ["spider_aspect_skill_area_of_effect_+%"]=9709, - ["spider_aspect_web_interval_ms_override"]=9710, - ["spike_slam_num_spikes"]=9711, - ["spirit_offering_critical_strike_chance_+%"]=9712, - ["spirit_offering_critical_strike_multiplier_+"]=9713, - ["spirit_offering_duration_+%"]=3789, - ["spirit_offering_effect_+%"]=1083, - ["spirit_offering_physical_damage_%_to_add_as_chaos"]=4071, - ["split_arrow_critical_strike_chance_+%"]=3824, - ["split_arrow_damage_+%"]=3534, - ["split_arrow_num_of_additional_projectiles"]=3834, - ["split_arrow_number_of_additional_arrows"]=3051, - ["split_arrow_projectiles_fire_in_parallel_x_dist"]=9714, - ["splitting_steel_area_of_effect_+%"]=9716, - ["splitting_steel_damage_+%"]=9717, - ["spread_freeze_to_nearby_enemies"]=9718, - ["spread_ignite_to_nearby_enemies"]=9719, - ["stacking_damage_+%_on_kill_for_4_seconds"]=3495, - ["stacking_spell_damage_+%_when_you_or_your_totems_kill_an_enemy_for_2_seconds"]=3201, - ["staff_accuracy_rating"]=1910, - ["staff_accuracy_rating_+%"]=1347, - ["staff_ailment_damage_+%"]=1218, - ["staff_attack_speed_+%"]=1329, - ["staff_block_%"]=1062, - ["staff_critical_strike_chance_+%"]=1378, - ["staff_critical_strike_multiplier_+"]=1407, - ["staff_damage_+%"]=1216, - ["staff_elemental_damage_+%"]=2023, - ["staff_hit_and_ailment_damage_+%"]=1217, - ["staff_stun_duration_+%"]=1771, - ["stance_skill_cooldown_speed_+%"]=9723, - ["stance_skill_reservation_+%"]=9725, - ["stance_skills_mana_reservation_efficiency_+%"]=9724, - ["stance_swap_cooldown_modifier_ms"]=9727, - ["start_at_zero_energy_shield"]=10282, - ["static_strike_additional_number_of_beam_targets"]=9729, - ["static_strike_damage_+%"]=3557, - ["static_strike_duration_+%"]=3816, - ["static_strike_radius_+%"]=3704, - ["status_ailments_removed_at_low_life"]=3212, - ["status_ailments_you_inflict_duration_+%_while_focused"]=9730, - ["status_ailments_you_inflict_duration_+%_with_bows"]=9731, - ["stealth_+%"]=9732, - ["stealth_+%_if_have_hit_with_claw_recently"]=9733, - ["steel_ammo_consumed_per_use_with_attacks_that_fire_projectiles"]=4754, - ["steel_steal_area_of_effect_+%"]=9734, - ["steel_steal_cast_speed_+%"]=9735, - ["steel_steal_reflect_damage_+%"]=9736, - ["steelskin_damage_limit_+%"]=9737, - ["stibnite_flask_evasion_rating_+%_final"]=9738, - ["stone_golem_damage_+%"]=3580, - ["stone_golem_elemental_resistances_%"]=3870, - ["stone_golem_impale_on_hit_if_same_number_of_summoned_carrion_golems"]=9739, - ["storm_armageddon_sigils_can_target_reaper_minions"]=9740, - ["storm_blade_has_local_attack_speed_+%"]=9741, - ["storm_blade_has_local_lightning_penetration_%"]=9742, - ["storm_blade_quality_attack_lightning_damage_%_to_convert_to_chaos"]=9743, - ["storm_blade_quality_chance_to_shock_%"]=9744, - ["storm_blade_quality_local_critical_strike_chance_+%"]=9745, - ["storm_brand_additional_chain_chance_%"]=9746, - ["storm_brand_attached_target_lightning_penetration_%"]=9747, - ["storm_brand_damage_+%"]=9748, - ["storm_burst_15_%_chance_to_create_additional_orb"]=9749, - ["storm_burst_additional_object_chance_%"]=9750, - ["storm_burst_area_of_effect_+%"]=9751, - ["storm_burst_avoid_interruption_while_casting_%"]=9752, - ["storm_burst_damage_+%"]=3622, - ["storm_burst_number_of_additional_projectiles"]=9753, - ["storm_call_damage_+%"]=3558, - ["storm_call_duration_+%"]=3817, - ["storm_call_radius_+%"]=3705, - ["storm_cloud_charge_count"]=3330, - ["storm_cloud_charged_damage_+%_final"]=3331, - ["storm_cloud_critical_strike_chance_+%"]=3829, - ["storm_cloud_radius_+%"]=3732, - ["storm_rain_damage_+%"]=9754, - ["storm_rain_num_additional_arrows"]=9755, - ["stormbind_skill_area_of_effect_+%"]=9756, - ["stormbind_skill_damage_+%"]=9757, - ["stormblast_icicle_pyroclast_mine_aura_effect_+%"]=9758, - ["stormblast_icicle_pyroclast_mine_base_deal_no_damage"]=9759, - ["strength_+%"]=1093, - ["strength_+%_if_2_warlord_items"]=4343, - ["strength_applies_to_fish_reel_speed_at_20%_value"]=9760, - ["strength_damage_bonus_grants_melee_physical_damage_+3%_per_10_strength_instead"]=9761, - ["strength_skill_gem_level_+"]=9762, - ["strike_skills_fortify_on_hit"]=9763, - ["strike_skills_knockback_on_melee_hit"]=9764, - ["strong_casting"]=10294, - ["strongest_packmate_multiplier_+%_final"]=9765, - ["stun_duration_+%"]=1904, - ["stun_duration_+%_per_15_strength"]=9767, - ["stun_duration_+%_per_endurance_charge"]=9768, - ["stun_duration_+%_vs_enemies_that_are_on_full_life"]=3223, - ["stun_duration_+%_vs_enemies_that_are_on_low_life"]=3224, - ["stun_duration_on_critical_strike_+%"]=9766, - ["stun_duration_on_self_+%"]=4059, - ["stun_nearby_enemies_when_stunned_chance_%"]=9769, - ["stun_recovery_+%_per_frenzy_charge"]=1806, - ["stun_threshold_+%"]=3162, - ["stun_threshold_+%_per_rage"]=9771, - ["stun_threshold_based_on_%_energy_shield_instead_of_life"]=9770, - ["stun_threshold_based_on_%_mana_instead_of_life"]=3161, - ["stun_threshold_based_on_energy_shield_instead_of_life"]=4161, - ["stun_threshold_reduction_+%_while_using_flask"]=2824, - ["stun_threshold_reduction_+%_with_500_or_more_strength"]=9772, - ["stuns_have_culling_strike"]=1941, - ["summon_2_totems"]=9773, - ["summon_arbalist_attack_speed_+%"]=9774, - ["summon_arbalist_chains_+"]=9775, - ["summon_arbalist_chance_to_bleed_%"]=9776, - ["summon_arbalist_chance_to_crush_on_hit_%"]=9777, - ["summon_arbalist_chance_to_deal_double_damage_%"]=9778, - ["summon_arbalist_chance_to_freeze_%"]=9794, - ["summon_arbalist_chance_to_ignite_%"]=9795, - ["summon_arbalist_chance_to_ignite_freeze_shock_%"]=9779, - ["summon_arbalist_chance_to_inflict_cold_exposure_on_hit_%"]=9797, - ["summon_arbalist_chance_to_inflict_fire_exposure_on_hit_%"]=9798, - ["summon_arbalist_chance_to_inflict_lightning_exposure_on_hit_%"]=9799, - ["summon_arbalist_chance_to_intimidate_for_4_seconds_on_hit_%"]=9780, - ["summon_arbalist_chance_to_maim_for_4_seconds_on_hit_%"]=9781, - ["summon_arbalist_chance_to_poison_%"]=9782, - ["summon_arbalist_chance_to_shock_%"]=9796, - ["summon_arbalist_chance_to_unnerve_for_4_seconds_on_hit_%"]=9783, - ["summon_arbalist_number_of_additional_projectiles"]=9784, - ["summon_arbalist_number_of_splits"]=9785, - ["summon_arbalist_physical_damage_%_to_add_as_cold"]=9786, - ["summon_arbalist_physical_damage_%_to_add_as_fire"]=9787, - ["summon_arbalist_physical_damage_%_to_add_as_lightning"]=9788, - ["summon_arbalist_physical_damage_%_to_convert_to_cold"]=9789, - ["summon_arbalist_physical_damage_%_to_convert_to_fire"]=9790, - ["summon_arbalist_physical_damage_%_to_convert_to_lightning"]=9791, - ["summon_arbalist_projectiles_fork"]=9792, - ["summon_arbalist_targets_to_pierce"]=9793, - ["summon_fire_skitterbot"]=9800, - ["summon_raging_spirit_melee_splash_fire_damage_only"]=9801, - ["summon_reaper_cooldown_speed_+%"]=9802, - ["summon_skeleton_gem_level_+"]=1523, - ["summon_skeletons_additional_warrior_skeleton_%_chance"]=9804, - ["summon_skeletons_additional_warrior_skeleton_one_twentieth_chance"]=9803, - ["summon_skeletons_cooldown_modifier_ms"]=9805, - ["summon_skeletons_num_additional_warrior_skeletons"]=3887, - ["summon_skitterbots_area_of_effect_+%"]=9806, - ["summon_skitterbots_mana_reservation_+%"]=9807, - ["summon_totem_cast_speed_+%"]=2478, - ["summoned_phantasms_grant_buff"]=9808, - ["summoned_phantasms_have_no_duration"]=9809, - ["summoned_raging_spirit_chance_to_spawn_additional_minion_%"]=3303, - ["summoned_raging_spirit_duration_+%"]=3302, - ["summoned_raging_spirits_have_diamond_and_massive_shrine_buff"]=9810, - ["summoned_reaper_damage_+%"]=9811, - ["summoned_reaper_physical_dot_multiplier_+"]=9812, - ["summoned_skeleton_%_chance_to_wither_for_2_seconds"]=9813, - ["summoned_skeleton_%_physical_to_chaos"]=9814, - ["summoned_skeleton_warriors_get_weapon_stats_in_main_hand"]=4297, - ["summoned_skeletons_cover_in_ash_on_hit_%"]=9815, - ["summoned_skeletons_fire_damage_%_of_maximum_life_taken_per_minute"]=9816, - ["summoned_skeletons_have_avatar_of_fire"]=10295, - ["summoned_skeletons_hits_cant_be_evaded"]=9817, - ["summoned_skitterbots_auras_also_affect_you"]=9818, - ["summoned_skitterbots_cooldown_recovery_+%"]=9819, - ["summoned_skitterbots_non_damaging_ailment_effect_+%"]=9820, - ["summoned_support_ghosts_have_diamond_and_massive_shrine_buff"]=9821, - ["sunder_wave_delay_+%"]=3735, - ["support_additional_trap_mine_%_chance_for_1_additional_trap_mine"]=9822, - ["support_anticipation_charge_gain_frequency_+%"]=9823, - ["support_anticipation_charge_gain_interval_ms"]=10192, - ["support_anticipation_rapid_fire_count"]=10192, - ["support_gem_elemental_damage_+%_final"]=3481, - ["support_gems_socketed_in_amulet_also_support_body_skills"]=224, - ["support_gems_socketed_in_off_hand_also_support_main_hand_skills"]=225, - ["support_maimed_enemies_physical_damage_taken_+%"]=9824, - ["support_minion_maximum_life_+%_final"]=1669, - ["support_mirage_archer_base_duration"]=9826, - ["support_slashing_damage_+%_final_from_distance"]=9827, - ["support_slower_projectiles_damage_+%_final"]=2740, - ["supported_active_skill_gem_expereince_gained_+%"]=2789, - ["supported_active_skill_gem_level_+"]=2658, - ["supported_active_skill_gem_quality_%"]=2718, - ["supported_aura_skill_gem_level_+"]=9828, - ["supported_cold_skill_gem_level_+"]=9829, - ["supported_elemental_skill_gem_level_+"]=9830, - ["supported_fire_skill_gem_level_+"]=9831, - ["supported_lightning_skill_gem_level_+"]=9832, - ["suppressed_spell_damage_cannot_inflict_elemental_ailments"]=9833, - ["sweep_add_endurance_charge_on_hit_%"]=3706, - ["sweep_damage_+%"]=3559, - ["sweep_knockback_chance_%"]=3861, - ["sweep_radius_+%"]=3707, - ["sword_accuracy_rating"]=1905, - ["sword_accuracy_rating_+%"]=1352, - ["sword_ailment_damage_+%"]=1249, - ["sword_attack_speed_+%"]=1334, - ["sword_critical_strike_chance_+%"]=1376, - ["sword_critical_strike_multiplier_+"]=1404, - ["sword_damage_+%"]=1247, - ["sword_hit_and_ailment_damage_+%"]=1248, - ["sword_physical_damage_%_to_add_as_fire"]=2935, - ["synthesis_map_adjacent_nodes_global_mod_values_doubled"]=9834, - ["synthesis_map_global_mod_values_doubled_on_this_node"]=9835, - ["synthesis_map_global_mod_values_tripled_on_this_node"]=9836, - ["synthesis_map_memories_do_not_collapse_on_this_node"]=9837, - ["synthesis_map_monster_slain_experience_+%_on_this_node"]=9838, - ["synthesis_map_nearby_memories_have_bonus"]=9839, - ["synthesis_map_node_additional_uses_+"]=9840, - ["synthesis_map_node_global_mod_values_tripled_if_adjacent_squares_have_memories"]=9841, - ["synthesis_map_node_grants_additional_global_mod"]=9842, - ["synthesis_map_node_grants_no_global_mod"]=9843, - ["synthesis_map_node_guest_monsters_replaced_by_synthesised_monsters"]=9844, - ["synthesis_map_node_item_quantity_increases_doubled"]=9845, - ["synthesis_map_node_item_rarity_increases_doubled"]=9846, - ["synthesis_map_node_level_+"]=9847, - ["synthesis_map_node_monsters_drop_no_items"]=9848, - ["synthesis_map_node_pack_size_increases_doubled"]=9849, - ["tailwind_effect_on_self_+%"]=9850, - ["tailwind_effect_on_self_+%_per_gale_force"]=9851, - ["tailwind_if_have_crit_recently"]=9852, - ["take_X_lightning_damage_when_herald_of_thunder_hits_an_enemy"]=9853, - ["take_chaos_damage_from_ignite_instead"]=2352, - ["take_half_area_damage_from_hit_%_chance"]=9854, - ["take_no_extra_damage_from_critical_strikes_if_cast_enfeeble_in_past_10_seconds"]=9855, - ["take_no_fire_damage_over_time_if_stopped_taking_fire_damage_over_time_recently"]=9856, - ["talisman_implicit_projectiles_pierce_1_additional_target_per_10"]=9857, - ["targets_are_unaffected_by_your_hexes"]=2499, - ["taunt_duration_+%"]=1687, - ["taunt_on_projectile_hit_chance_%"]=9858, - ["taunted_enemies_by_warcry_damage_taken_+%"]=9859, - ["taunted_enemies_chance_to_be_stunned_+%"]=3104, - ["taunted_enemies_damage_+%_final_vs_non_taunt_target"]=4141, - ["taunted_enemies_damage_taken_+%"]=4165, - ["tectonic_slam_%_chance_to_do_charged_slam"]=9865, - ["tectonic_slam_1%_chance_to_do_charged_slam_per_2_stat_value"]=9860, - ["tectonic_slam_and_infernal_blow_attack_damage_+%_per_450_physical_damage_reduction_rating"]=9861, - ["tectonic_slam_and_infernal_blow_attack_damage_+%_per_700_physical_damage_reduction_rating"]=9862, - ["tectonic_slam_area_of_effect_+%"]=9863, - ["tectonic_slam_damage_+%"]=9864, - ["tectonic_slam_side_crack_additional_chance_%"]=9867, - ["tectonic_slam_side_crack_additional_chance_1%_per_2_stat_value"]=9866, - ["tempest_shield_buff_effect_+%"]=9868, - ["tempest_shield_damage_+%"]=3604, - ["tempest_shield_num_of_additional_projectiles_in_chain"]=3914, - ["temporal_chains_curse_effect_+%"]=3894, - ["temporal_chains_duration_+%"]=3795, - ["temporal_chains_effeciveness_+%"]=1549, - ["temporal_chains_ignores_hexproof"]=2508, - ["temporal_chains_mana_reservation_+%"]=3935, - ["temporal_chains_no_reservation"]=9869, - ["temporal_rift_cooldown_speed_+%"]=9870, - ["thaumaturgy_rotation_active"]=9871, - ["threshold_jewel_magma_orb_damage_+%_final"]=9872, - ["threshold_jewel_magma_orb_damage_+%_final_per_chain"]=9873, - ["threshold_jewel_molten_strike_damage_projectile_count_+%_final"]=9874, - ["throw_X_additional_traps_if_dual_wielding"]=9875, - ["thrown_shield_secondary_projectile_damage_+%_final"]=9876, - ["tincture_cooldown_recovery_+%"]=9877, - ["tincture_effect_+%_at_high_toxicity"]=9878, - ["tincture_effect_+%_if_used_life_flask_recently"]=9879, - ["tincture_effects_linger_for_ms_per_toxicity_up_to_6_seconds"]=9880, - ["tincture_mod_effect_+%_per_empty_flask_slot"]=9881, - ["tincture_toxicity_rate_+%"]=9882, - ["tinctures_can_apply_to_ranged_weapons"]=9883, - ["tinctures_deactivate_on_reaching_X_toxicity"]=9884, - ["tornado_damage_+%"]=9886, - ["tornado_damage_frequency_+%"]=9885, - ["tornado_movement_speed_+%"]=9887, - ["tornado_only_primary_duration_+%"]=9888, - ["tornado_shot_critical_strike_chance_+%"]=3828, - ["tornado_shot_damage_+%"]=3564, - ["tornado_shot_num_of_secondary_projectiles"]=3836, - ["tornado_skill_area_of_effect_+%"]=9889, - ["total_recovery_per_minute_from_life_leech_is_doubled"]=9890, - ["totem_%_maximum_life_inflicted_as_aoe_fire_damage_when_hit"]=3675, - ["totem_additional_physical_damage_reduction_%"]=2688, - ["totem_attack_damage_leeched_as_mana_to_you_permyriad"]=9892, - ["totem_aura_enemy_damage_+%_final"]=3677, - ["totem_aura_enemy_fire_and_physical_damage_taken_+%"]=3678, - ["totem_chaos_immunity"]=9893, - ["totem_chaos_resistance_%"]=9894, - ["totem_critical_strike_chance_+%"]=1394, - ["totem_critical_strike_multiplier_+"]=1423, - ["totem_damage_+%"]=1102, - ["totem_damage_+%_final_per_active_totem"]=3633, - ["totem_damage_+%_if_havent_summoned_totem_in_past_2_seconds"]=9895, - ["totem_damage_+%_per_10_devotion"]=9896, - ["totem_damage_leeched_as_life_to_you_permyriad"]=4122, - ["totem_duration_+%"]=1683, - ["totem_elemental_resistance_%"]=2686, - ["totem_energy_shield_+%"]=1681, - ["totem_fire_immunity"]=1513, - ["totem_hinder_nearby_enemies_when_summoned_with_25%_reduced_movement_speed"]=9897, - ["totem_life_+%"]=1679, - ["totem_life_+%_final"]=9898, - ["totem_mana_+%"]=1680, - ["totem_maximum_energy_shield"]=9899, - ["totem_number_of_additional_projectiles"]=2972, - ["totem_physical_attack_damage_leeched_as_life_to_you_permyriad"]=9900, - ["totem_placement_range_+%"]=9901, - ["totem_range_+%"]=1682, - ["totem_skill_area_of_effect_+%"]=2481, - ["totem_skill_attack_speed_+%"]=2480, - ["totem_skill_cast_speed_+%"]=2479, - ["totem_skill_gem_level_+"]=9902, - ["totem_spells_damage_+%"]=9903, - ["totemified_skills_taunt_on_hit_%"]=3319, - ["totems_action_speed_cannot_be_modified_below_base"]=9891, - ["totems_attack_speed_+%_per_active_totem"]=4079, - ["totems_cannot_be_stunned"]=2955, - ["totems_explode_for_%_of_max_life_as_fire_damage_on_low_life"]=3203, - ["totems_explode_on_death_for_%_life_as_physical"]=9904, - ["totems_explode_on_death_for_%_life_as_physical_divide_20"]=9905, - ["totems_gain_%_of_players_armour"]=3112, - ["totems_nearby_enemies_damage_taken_+%"]=9906, - ["totems_regenerate_%_life_per_minute"]=9908, - ["totems_regenerate_1_life_per_x_player_life_regeneration"]=9907, - ["totems_resist_all_elements_+%_per_active_totem"]=4061, - ["totems_spells_cast_speed_+%_per_active_totem"]=4067, - ["totems_taunt_enemies_around_them_for_x_seconds_when_summoned"]=9909, - ["toxic_rain_damage_+%"]=9910, - ["toxic_rain_num_of_additional_projectiles"]=9911, - ["toxic_rain_physical_damage_%_to_add_as_chaos"]=9912, - ["toxic_rain_skill_physical_damage_%_to_convert_to_chaos"]=9913, - ["transfer_hexes_to_X_nearby_enemies_on_kill"]=2831, - ["trap_%_chance_to_trigger_twice"]=3684, - ["trap_and_mine_damage_+%_if_armed_for_4_seconds"]=9914, - ["trap_and_mine_damage_penetrates_%_elemental_resistance"]=2683, - ["trap_and_mine_maximum_added_physical_damage"]=3683, - ["trap_and_mine_minimum_added_physical_damage"]=3683, - ["trap_and_mine_throwing_speed_+%"]=9915, - ["trap_cooldown_speed_+%_per_recent_mine_detonation"]=9916, - ["trap_critical_strike_chance_+%"]=1382, - ["trap_critical_strike_multiplier_+"]=1412, - ["trap_damage_+%"]=1103, - ["trap_damage_buildup_damage_+%_final_after_4_seconds"]=3680, - ["trap_damage_buildup_damage_+%_final_when_first_set"]=3679, - ["trap_damage_penetrates_%_elemental_resistance"]=2681, - ["trap_duration_+%"]=1826, - ["trap_mine_skill_num_of_additional_chains"]=9917, - ["trap_or_mine_damage_+%"]=1104, - ["trap_skill_added_cooldown_count"]=9918, - ["trap_skill_area_of_effect_+%"]=3366, - ["trap_skill_effect_duration_+%"]=9919, - ["trap_spread_+%"]=9920, - ["trap_throw_skills_have_blood_magic"]=10308, - ["trap_throwing_speed_+%"]=1830, - ["trap_throwing_speed_+%_per_frenzy_charge"]=9921, - ["trap_trigger_radius_+%"]=1828, - ["traps_and_mines_%_chance_to_poison"]=3976, - ["traps_cannot_be_triggered_by_enemies"]=9922, - ["traps_do_not_explode_on_timeout"]=2678, - ["traps_explode_on_timeout"]=2679, - ["traps_invulnerable"]=9923, - ["traps_invulnerable_for_duration_ms"]=2684, - ["travel_skill_cooldown_speed_+%"]=4266, - ["travel_skills_cannot_be_exerted"]=9924, - ["travel_skills_cooldown_speed_+%_per_frenzy_charge"]=4277, - ["travel_skills_crit_every_X_uses"]=9925, - ["travel_skills_poison_reflected_to_self_up_to_5_poisons"]=9926, - ["treat_enemy_resistances_as_negated_on_elemental_damage_hit_%_chance"]=9927, - ["trickster_cannot_take_damage_over_time_for_X_ms_every_10_seconds"]=9928, - ["trickster_damage_+%_final_per_different_mastery"]=1551, - ["trickster_damage_over_time_+%_final"]=9929, - ["trickster_passive_chance_to_evade_attacks_while_not_on_full_energy_shield_+%_final"]=3416, - ["trigger_level_20_summon_spectral_wolf_on_crit"]=9930, - ["trigger_socketed_bow_skills_on_spell_cast_while_wielding_a_bow_%"]=747, - ["trigger_socketed_spell_on_attack_%"]=748, - ["trigger_socketed_spell_on_skill_use_%"]=750, - ["trigger_socketed_spells_when_you_focus_%"]=751, + ["skills_cost_no_mana_while_focused"]=9873, + ["skills_fire_x_additional_projectiles_for_4_seconds_after_consuming_8_steel_ammo"]=9874, + ["skills_gain_intensity_every_x_milliseconds_if_gained_intensity_recently"]=9875, + ["skills_lose_intensity_every_x_milliseconds_if_gained_intensity_recently"]=9876, + ["skills_supported_by_nightblade_have_elusive_effect_+%"]=9877, + ["skills_that_throw_mines_reserve_life"]=9878, + ["skip_life_sacrifice_chance_%"]=9879, + ["skitterbots_mana_reservation_efficiency_+%"]=9881, + ["skitterbots_mana_reservation_efficiency_-2%_per_1"]=9880, + ["slam_ancestor_totem_damage_+%"]=4073, + ["slam_ancestor_totem_grant_owner_melee_damage_+%"]=3736, + ["slam_ancestor_totem_radius_+%"]=4076, + ["slash_ancestor_totem_damage_+%"]=4074, + ["slash_ancestor_totem_elemental_resistance_%"]=2722, + ["slash_ancestor_totem_grant_owner_physical_damage_added_as_fire_+%"]=3735, + ["slash_ancestor_totem_radius_+%"]=4075, + ["slayer_area_of_effect_+%_per_enemy_killed_recently_up_to_50%"]=9882, + ["slayer_ascendancy_melee_splash_damage_+%_final_for_splash"]=1111, + ["slayer_critical_strike_multiplier_+_per_nearby_enemy_up_to_100"]=9883, + ["slayer_damage_+%_final_against_unique_enemies"]=9884, + ["slayer_damage_+%_final_from_distance"]=9885, + ["slither_elusive_effect_+%"]=9886, + ["slither_wither_stacks"]=9887, + ["smite_aura_effect_+%"]=9888, + ["smite_chance_for_lighting_to_strike_extra_target_%"]=9889, + ["smite_damage_+%"]=9890, + ["smite_static_strike_killing_blow_consumes_corpse_restore_%_life"]=9891, + ["smoke_mine_base_movement_velocity_+%"]=4041, + ["smoke_mine_duration_+%"]=3836, + ["snapping_adder_%_chance_to_retain_projectile_on_release"]=9893, + ["snapping_adder_damage_+%"]=9892, + ["snapping_adder_withered_on_hit_for_2_seconds_%_chance"]=9894, + ["snipe_attack_speed_+%"]=9895, + ["snipe_max_stacks"]=9896, + ["socketed_non_cluster_jewels_have_no_effect"]=9897, + ["soul_eater_from_unique"]=9898, + ["soul_eater_maximum_stacks"]=9899, + ["soul_eater_maximum_stacks_+"]=7153, + ["soul_eater_on_rare_kill_ms"]=3357, + ["soul_link_duration_+%"]=9900, + ["soulfeast_number_of_secondary_projectiles"]=9901, + ["soulrend_applies_hinder_movement_speed_+%"]=9902, + ["soulrend_damage_+%"]=9903, + ["soulrend_number_of_additional_projectiles"]=9904, + ["spark_damage_+%"]=3577, + ["spark_num_of_additional_projectiles"]=3879, + ["spark_number_of_additional_projectiles"]=9905, + ["spark_projectile_speed_+%"]=3825, + ["spark_projectiles_nova"]=9906, + ["spark_skill_effect_duration_+%"]=9907, + ["spark_totems_from_this_skill_grant_totemified_lightning_tendrils_larger_pulse_interval_-X_to_parent"]=9908, + ["spectral_helix_damage_+%"]=9909, + ["spectral_helix_projectile_speed_+%"]=9910, + ["spectral_helix_rotations_%"]=9911, + ["spectral_shield_throw_additional_chains"]=9912, + ["spectral_shield_throw_damage_+%"]=9913, + ["spectral_shield_throw_num_of_additional_projectiles"]=9914, + ["spectral_shield_throw_projectile_speed_+%"]=9915, + ["spectral_shield_throw_secondary_projectiles_pierce"]=9916, + ["spectral_shield_throw_shard_projectiles_+%_final"]=9917, + ["spectral_spiral_weapon_base_number_of_bounces"]=9918, + ["spectral_throw_an_spectral_helix_active_skill_projectile_speed_+%_variation_final"]=9919, + ["spectral_throw_damage_+%"]=3578, + ["spectral_throw_damage_for_each_enemy_hit_with_spectral_weapon_+%"]=3163, + ["spectral_throw_gain_vaal_soul_for_vaal_spectral_throw_on_hit_%"]=9920, + ["spectral_throw_projectile_deceleration_+%"]=3896, + ["spectral_throw_projectile_speed_+%"]=3826, + ["spectre_attack_and_cast_speed_+%"]=3801, + ["spectre_damage_+%"]=3389, + ["spectre_elemental_resistances_%"]=3914, + ["spectre_maximum_life_+"]=9921, + ["spectre_zombie_skeleton_critical_strike_multiplier_+"]=9922, + ["spectres_additional_base_critical_strike_chance"]=9923, + ["spectres_and_zombies_gain_adrenaline_for_X_seconds_when_raised"]=9924, + ["spectres_base_maximum_all_resistances_%"]=9925, + ["spectres_base_skill_area_of_effect_+%"]=9926, + ["spectres_critical_strike_chance_+%"]=9927, + ["spectres_gain_arcane_surge_when_you_do"]=9928, + ["spectres_gain_soul_eater_for_20_seconds_on_kill_%_chance"]=9929, + ["spectres_have_base_duration_ms"]=9930, + ["spectres_number_of_additional_projectiles"]=9931, + ["spell_additional_critical_strike_chance_permyriad"]=9933, + ["spell_additional_critical_strike_chance_permyriad_if_4_shaper_items"]=4410, + ["spell_and_attack_block_chance_is_lucky_if_blocked_recently"]=9934, + ["spell_and_attack_maximum_added_chaos_damage_during_flask_effect"]=9935, + ["spell_and_attack_maximum_added_cold_damage"]=1309, + ["spell_and_attack_maximum_added_fire_damage"]=1308, + ["spell_and_attack_maximum_added_lightning_damage"]=1344, + ["spell_and_attack_minimum_added_chaos_damage_during_flask_effect"]=9935, + ["spell_and_attack_minimum_added_cold_damage"]=1309, + ["spell_and_attack_minimum_added_fire_damage"]=1308, + ["spell_and_attack_minimum_added_lightning_damage"]=1344, + ["spell_area_of_effect_+%"]=9936, + ["spell_base_fire_damage_%_maximum_life"]=1329, + ["spell_base_life_cost_%"]=9937, + ["spell_block_%_if_blocked_a_spell_recently"]=9941, + ["spell_block_%_if_blocked_an_attack_recently"]=9942, + ["spell_block_%_per_5_attack_block"]=1696, + ["spell_block_%_per_minion"]=9938, + ["spell_block_%_while_at_max_power_charges"]=9943, + ["spell_block_%_while_on_low_life"]=1082, + ["spell_block_chance_%_while_holding_staff_or_shield"]=9939, + ["spell_block_equals_attack_block"]=1093, + ["spell_block_is_maximum_if_not_blocked_recently"]=9940, + ["spell_block_while_dual_wielding_%"]=1081, + ["spell_block_with_bow_%"]=1086, + ["spell_block_with_staff_%"]=1087, + ["spell_bow_damage_+%"]=1164, + ["spell_chance_to_deal_double_damage_%"]=9944, + ["spell_chance_to_shock_frozen_enemies_%"]=2859, + ["spell_cold_damage_+%"]=1162, + ["spell_critical_strike_chance_+%"]=1393, + ["spell_critical_strike_chance_+%_if_removed_maximum_number_of_seals"]=9945, + ["spell_critical_strike_chance_+%_per_100_max_life"]=9946, + ["spell_critical_strike_chance_+%_per_raised_spectre"]=9947, + ["spell_critical_strike_chance_+%_while_dual_wielding"]=5864, + ["spell_critical_strike_chance_+%_while_holding_shield"]=5865, + ["spell_critical_strike_chance_+%_while_wielding_staff"]=5866, + ["spell_critical_strike_multiplier_+_while_dual_wielding"]=5891, + ["spell_critical_strike_multiplier_+_while_holding_shield"]=5892, + ["spell_critical_strike_multiplier_+_while_wielding_staff"]=5893, + ["spell_damage_%_suppressed_if_not_suppressed_spell_recently"]=9948, + ["spell_damage_%_suppressed_if_taken_a_savage_hit_recently"]=9949, + ["spell_damage_%_suppressed_per_bark_below_max"]=9950, + ["spell_damage_%_suppressed_per_hit_suppressed_recently"]=9951, + ["spell_damage_%_suppressed_while_on_full_energy_shield"]=1083, + ["spell_damage_+%"]=1159, + ["spell_damage_+%_during_flask_effect"]=9956, + ["spell_damage_+%_final_if_you_have_been_stunned_while_casting_recently"]=9952, + ["spell_damage_+%_for_4_seconds_on_cast"]=3463, + ["spell_damage_+%_if_have_crit_in_past_8_seconds"]=9957, + ["spell_damage_+%_if_have_crit_recently"]=9953, + ["spell_damage_+%_if_other_ring_is_elder_item"]=4256, + ["spell_damage_+%_if_you_have_blocked_recently"]=9958, + ["spell_damage_+%_per_100_max_life"]=9959, + ["spell_damage_+%_per_100_maximum_mana_up_to_60%"]=9960, + ["spell_damage_+%_per_10_int"]=2672, + ["spell_damage_+%_per_10_strength"]=9961, + ["spell_damage_+%_per_16_dex"]=9962, + ["spell_damage_+%_per_16_int"]=9963, + ["spell_damage_+%_per_16_strength"]=9964, + ["spell_damage_+%_per_200_mana_spent_recently"]=4277, + ["spell_damage_+%_per_5%_block_chance"]=2671, + ["spell_damage_+%_per_5%_spell_block_chance"]=9965, + ["spell_damage_+%_per_500_maximum_mana"]=9954, + ["spell_damage_+%_per_level"]=2897, + ["spell_damage_+%_per_power_charge"]=2073, + ["spell_damage_+%_per_summoned_skeleton"]=9955, + ["spell_damage_+%_while_dual_wielding"]=1166, + ["spell_damage_+%_while_es_full"]=3013, + ["spell_damage_+%_while_holding_shield"]=1165, + ["spell_damage_+%_while_no_mana_reserved"]=3016, + ["spell_damage_+%_while_not_low_mana"]=3017, + ["spell_damage_+%_while_shocked"]=9966, + ["spell_damage_+%_while_you_have_arcane_surge"]=9967, + ["spell_damage_modifiers_apply_to_attack_damage"]=2618, + ["spell_damage_taken_+%_from_blinded_enemies"]=3153, + ["spell_damage_taken_+%_when_on_low_mana"]=2404, + ["spell_elemental_damage_+%"]=2000, + ["spell_fire_damage_+%"]=1161, + ["spell_hits_against_you_inflict_poison_%"]=9968, + ["spell_impale_on_crit_%_chance"]=9969, + ["spell_maximum_added_chaos_damage"]=1342, + ["spell_maximum_added_chaos_damage_while_dual_wielding"]=2039, + ["spell_maximum_added_chaos_damage_while_holding_a_shield"]=2040, + ["spell_maximum_added_chaos_damage_while_wielding_two_handed_weapon"]=2041, + ["spell_maximum_added_cold_damage"]=1340, + ["spell_maximum_added_cold_damage_per_power_charge"]=1760, + ["spell_maximum_added_cold_damage_while_dual_wielding"]=2042, + ["spell_maximum_added_cold_damage_while_holding_a_shield"]=2043, + ["spell_maximum_added_cold_damage_while_wielding_two_handed_weapon"]=2044, + ["spell_maximum_added_fire_damage"]=1339, + ["spell_maximum_added_fire_damage_while_dual_wielding"]=2045, + ["spell_maximum_added_fire_damage_while_holding_a_shield"]=2046, + ["spell_maximum_added_fire_damage_while_wielding_two_handed_weapon"]=2047, + ["spell_maximum_added_lightning_damage"]=1341, + ["spell_maximum_added_lightning_damage_per_10_intelligence"]=9932, + ["spell_maximum_added_lightning_damage_while_dual_wielding"]=2048, + ["spell_maximum_added_lightning_damage_while_holding_a_shield"]=2049, + ["spell_maximum_added_lightning_damage_while_unarmed"]=2371, + ["spell_maximum_added_lightning_damage_while_wielding_two_handed_weapon"]=2050, + ["spell_maximum_added_physical_damage"]=1338, + ["spell_maximum_added_physical_damage_while_dual_wielding"]=2051, + ["spell_maximum_added_physical_damage_while_holding_a_shield"]=2052, + ["spell_maximum_added_physical_damage_while_wielding_two_handed_weapon"]=2053, + ["spell_maximum_base_chaos_damage"]=1332, + ["spell_maximum_base_cold_damage"]=1330, + ["spell_maximum_base_cold_damage_+_per_10_intelligence"]=1343, + ["spell_maximum_base_fire_damage"]=1329, + ["spell_maximum_base_lightning_damage"]=1331, + ["spell_maximum_base_physical_damage"]=1328, + ["spell_minimum_added_chaos_damage"]=1342, + ["spell_minimum_added_chaos_damage_while_dual_wielding"]=2039, + ["spell_minimum_added_chaos_damage_while_holding_a_shield"]=2040, + ["spell_minimum_added_chaos_damage_while_wielding_two_handed_weapon"]=2041, + ["spell_minimum_added_cold_damage"]=1340, + ["spell_minimum_added_cold_damage_per_power_charge"]=1760, + ["spell_minimum_added_cold_damage_while_dual_wielding"]=2042, + ["spell_minimum_added_cold_damage_while_holding_a_shield"]=2043, + ["spell_minimum_added_cold_damage_while_wielding_two_handed_weapon"]=2044, + ["spell_minimum_added_fire_damage"]=1339, + ["spell_minimum_added_fire_damage_while_dual_wielding"]=2045, + ["spell_minimum_added_fire_damage_while_holding_a_shield"]=2046, + ["spell_minimum_added_fire_damage_while_wielding_two_handed_weapon"]=2047, + ["spell_minimum_added_lightning_damage"]=1341, + ["spell_minimum_added_lightning_damage_per_10_intelligence"]=9932, + ["spell_minimum_added_lightning_damage_while_dual_wielding"]=2048, + ["spell_minimum_added_lightning_damage_while_holding_a_shield"]=2049, + ["spell_minimum_added_lightning_damage_while_unarmed"]=2371, + ["spell_minimum_added_lightning_damage_while_wielding_two_handed_weapon"]=2050, + ["spell_minimum_added_physical_damage"]=1338, + ["spell_minimum_added_physical_damage_while_dual_wielding"]=2051, + ["spell_minimum_added_physical_damage_while_holding_a_shield"]=2052, + ["spell_minimum_added_physical_damage_while_wielding_two_handed_weapon"]=2053, + ["spell_minimum_base_chaos_damage"]=1332, + ["spell_minimum_base_cold_damage"]=1330, + ["spell_minimum_base_cold_damage_+_per_10_intelligence"]=1343, + ["spell_minimum_base_fire_damage"]=1329, + ["spell_minimum_base_lightning_damage"]=1331, + ["spell_minimum_base_physical_damage"]=1328, + ["spell_physical_damage_%_to_convert_to_fire"]=9970, + ["spell_projectiles_arrive_instantly"]=9971, + ["spell_repeat_count"]=1829, + ["spell_skill_gem_level_+"]=1543, + ["spell_skills_always_crit_on_final_repeat"]=9972, + ["spell_skills_critical_strike_multiplier_+_on_final_repeat"]=9973, + ["spell_skills_deal_no_damage"]=9974, + ["spell_skills_never_crit_except_on_final_repeat"]=9975, + ["spell_staff_damage_+%"]=1163, + ["spell_suppression_chance_%_if_all_equipment_grants_evasion"]=9976, + ["spell_suppression_chance_%_if_enemy_hit_recently"]=9977, + ["spell_suppression_chance_%_if_suppressed_spell_recently"]=9992, + ["spell_suppression_chance_%_if_taken_spell_damage_recently"]=3169, + ["spell_suppression_chance_%_per_endurance_charge"]=9978, + ["spell_suppression_chance_%_per_equipped_dagger"]=9979, + ["spell_suppression_chance_%_per_fortification"]=2200, + ["spell_suppression_chance_%_per_frenzy_charge"]=2479, + ["spell_suppression_chance_%_per_hit_suppressed_recently"]=9980, + ["spell_suppression_chance_%_per_power_charge"]=9981, + ["spell_suppression_chance_%_while_affected_by_grace"]=9982, + ["spell_suppression_chance_%_while_affected_by_haste"]=9983, + ["spell_suppression_chance_%_while_channelling"]=9984, + ["spell_suppression_chance_%_while_holding_shield"]=9985, + ["spell_suppression_chance_%_while_moving"]=9986, + ["spell_suppression_chance_%_while_off_hand_empty"]=9987, + ["spell_suppression_chance_%_while_on_full_energy_shield"]=9993, + ["spell_suppression_chance_%_while_on_full_life"]=9994, + ["spell_suppression_chance_%_while_phasing"]=9988, + ["spell_suppression_chance_is_lucky"]=9989, + ["spell_suppression_chance_modifiers_apply_to_avoid_all_elemental_ailments_at_%_value"]=9990, + ["spell_suppression_chance_modifiers_apply_to_chance_to_double_armour_effect_on_hit_at_%_value"]=9991, + ["spells_chance_to_blind_on_hit_%"]=9995, + ["spells_chance_to_hinder_on_hit_%"]=9996, + ["spells_chance_to_knockback_on_hit_%"]=9997, + ["spells_chance_to_poison_on_hit_%"]=9998, + ["spells_corrosion_on_hit_%"]=9999, + ["spells_have_culling_strike"]=2465, + ["spells_impale_on_hit_%_chance"]=10000, + ["spells_inflict_intimidate_on_crit"]=10001, + ["spells_number_of_additional_projectiles"]=4238, + ["spells_you_cast_gain_%_of_base_main_hand_weapon_damage_as_added_spell_damage"]=10004, + ["spells_you_cast_gain_%_of_weapon_damage_as_added_spell_damage"]=10002, + ["spells_you_cast_gain_added_physical_damage_%_life_cost_if_payable"]=10003, + ["spellslinger_cooldown_duration_+%"]=10005, + ["spellslinger_mana_reservation_+%"]=10008, + ["spellslinger_mana_reservation_efficiency_+%"]=10007, + ["spellslinger_mana_reservation_efficiency_-2%_per_1"]=10006, + ["spend_energy_shield_for_costs_before_mana"]=3047, + ["spider_aspect_debuff_duration_+%"]=10009, + ["spider_aspect_reserves_no_mana"]=10010, + ["spider_aspect_skill_area_of_effect_+%"]=10011, + ["spider_aspect_web_interval_ms_override"]=10012, + ["spike_slam_num_spikes"]=10013, + ["spirit_offering_critical_strike_chance_+%"]=10014, + ["spirit_offering_critical_strike_multiplier_+"]=10015, + ["spirit_offering_duration_+%"]=3835, + ["spirit_offering_effect_+%"]=1110, + ["spirit_offering_physical_damage_%_to_add_as_chaos"]=4117, + ["split_arrow_critical_strike_chance_+%"]=3870, + ["split_arrow_damage_+%"]=3579, + ["split_arrow_num_of_additional_projectiles"]=3880, + ["split_arrow_number_of_additional_arrows"]=3093, + ["split_arrow_projectiles_fire_in_parallel_x_dist"]=10016, + ["splitting_steel_area_of_effect_+%"]=10018, + ["splitting_steel_damage_+%"]=10019, + ["spread_freeze_to_nearby_enemies"]=10020, + ["spread_ignite_to_nearby_enemies"]=10021, + ["stacking_damage_+%_on_kill_for_4_seconds"]=3540, + ["stacking_spell_damage_+%_when_you_or_your_totems_kill_an_enemy_for_2_seconds"]=3243, + ["staff_accuracy_rating"]=1942, + ["staff_accuracy_rating_+%"]=1374, + ["staff_ailment_damage_+%"]=1245, + ["staff_attack_speed_+%"]=1356, + ["staff_block_%"]=1088, + ["staff_critical_strike_chance_+%"]=1405, + ["staff_critical_strike_multiplier_+"]=1435, + ["staff_damage_+%"]=1243, + ["staff_elemental_damage_+%"]=2055, + ["staff_hit_and_ailment_damage_+%"]=1244, + ["staff_stun_duration_+%"]=1801, + ["stance_skill_cooldown_speed_+%"]=10025, + ["stance_skill_reservation_+%"]=10027, + ["stance_skills_mana_reservation_efficiency_+%"]=10026, + ["stance_swap_cooldown_modifier_ms"]=10029, + ["start_at_zero_energy_shield"]=10611, + ["static_strike_additional_number_of_beam_targets"]=10031, + ["static_strike_damage_+%"]=3602, + ["static_strike_duration_+%"]=3862, + ["static_strike_radius_+%"]=3750, + ["status_ailments_removed_at_low_life"]=3254, + ["status_ailments_you_inflict_duration_+%_while_focused"]=10032, + ["status_ailments_you_inflict_duration_+%_with_bows"]=10033, + ["stealth_+%"]=10035, + ["stealth_+%_if_have_hit_with_claw_recently"]=10036, + ["stealth_+%_while_affected_by_elusive"]=10034, + ["steel_ammo_consumed_per_use_with_attacks_that_fire_projectiles"]=4830, + ["steel_steal_area_of_effect_+%"]=10037, + ["steel_steal_cast_speed_+%"]=10038, + ["steel_steal_reflect_damage_+%"]=10039, + ["steelskin_damage_limit_+%"]=10040, + ["stibnite_flask_evasion_rating_+%_final"]=10041, + ["stone_golem_damage_+%"]=3625, + ["stone_golem_elemental_resistances_%"]=3916, + ["stone_golem_impale_on_hit_if_same_number_of_summoned_carrion_golems"]=10042, + ["storm_armageddon_sigils_can_target_reaper_minions"]=10043, + ["storm_blade_has_local_attack_speed_+%"]=10044, + ["storm_blade_has_local_lightning_penetration_%"]=10045, + ["storm_blade_quality_attack_lightning_damage_%_to_convert_to_chaos"]=10046, + ["storm_blade_quality_chance_to_shock_%"]=10047, + ["storm_blade_quality_local_critical_strike_chance_+%"]=10048, + ["storm_brand_additional_chain_chance_%"]=10049, + ["storm_brand_attached_target_lightning_penetration_%"]=10050, + ["storm_brand_damage_+%"]=10051, + ["storm_burst_15_%_chance_to_create_additional_orb"]=10052, + ["storm_burst_additional_object_chance_%"]=10053, + ["storm_burst_area_of_effect_+%"]=10054, + ["storm_burst_avoid_interruption_while_casting_%"]=10055, + ["storm_burst_damage_+%"]=3667, + ["storm_burst_number_of_additional_projectiles"]=10056, + ["storm_call_damage_+%"]=3603, + ["storm_call_duration_+%"]=3863, + ["storm_call_radius_+%"]=3751, + ["storm_cloud_charge_count"]=3375, + ["storm_cloud_charged_damage_+%_final"]=3376, + ["storm_cloud_critical_strike_chance_+%"]=3875, + ["storm_cloud_radius_+%"]=3778, + ["storm_rain_damage_+%"]=10057, + ["storm_rain_num_additional_arrows"]=10058, + ["stormbind_skill_area_of_effect_+%"]=10059, + ["stormbind_skill_damage_+%"]=10060, + ["stormblast_icicle_pyroclast_mine_aura_effect_+%"]=10061, + ["stormblast_icicle_pyroclast_mine_base_deal_no_damage"]=10062, + ["strength_+%"]=1120, + ["strength_+%_if_2_warlord_items"]=4389, + ["strength_applies_to_fish_reel_speed_at_20%_value"]=10063, + ["strength_damage_bonus_grants_melee_physical_damage_+3%_per_10_strength_instead"]=10064, + ["strength_skill_gem_level_+"]=10065, + ["strike_skills_fortify_on_hit"]=10066, + ["strike_skills_knockback_on_melee_hit"]=10067, + ["strong_casting"]=10623, + ["strongest_packmate_multiplier_+%_final"]=10068, + ["stun_duration_+%"]=1936, + ["stun_duration_+%_per_15_strength"]=10070, + ["stun_duration_+%_per_endurance_charge"]=10071, + ["stun_duration_+%_vs_enemies_that_are_on_full_life"]=3265, + ["stun_duration_+%_vs_enemies_that_are_on_low_life"]=3266, + ["stun_duration_on_critical_strike_+%"]=10069, + ["stun_duration_on_self_+%"]=4105, + ["stun_nearby_enemies_when_stunned_chance_%"]=10072, + ["stun_recovery_+%_per_frenzy_charge"]=1836, + ["stun_threshold_+%"]=3204, + ["stun_threshold_+%_per_rage"]=10075, + ["stun_threshold_based_on_%_energy_shield_instead_of_life"]=10073, + ["stun_threshold_based_on_%_mana_instead_of_life"]=3203, + ["stun_threshold_based_on_energy_shield_instead_of_life"]=4207, + ["stun_threshold_increased_by_overcapped_fire_resistance"]=10074, + ["stun_threshold_reduction_+%_while_using_flask"]=2860, + ["stun_threshold_reduction_+%_with_500_or_more_strength"]=10076, + ["stuns_have_culling_strike"]=1973, + ["summon_2_totems"]=10077, + ["summon_arbalist_attack_speed_+%"]=10078, + ["summon_arbalist_chains_+"]=10079, + ["summon_arbalist_chance_to_bleed_%"]=10080, + ["summon_arbalist_chance_to_crush_on_hit_%"]=10081, + ["summon_arbalist_chance_to_deal_double_damage_%"]=10082, + ["summon_arbalist_chance_to_freeze_%"]=10098, + ["summon_arbalist_chance_to_ignite_%"]=10099, + ["summon_arbalist_chance_to_ignite_freeze_shock_%"]=10083, + ["summon_arbalist_chance_to_inflict_cold_exposure_on_hit_%"]=10101, + ["summon_arbalist_chance_to_inflict_fire_exposure_on_hit_%"]=10102, + ["summon_arbalist_chance_to_inflict_lightning_exposure_on_hit_%"]=10103, + ["summon_arbalist_chance_to_intimidate_for_4_seconds_on_hit_%"]=10084, + ["summon_arbalist_chance_to_maim_for_4_seconds_on_hit_%"]=10085, + ["summon_arbalist_chance_to_poison_%"]=10086, + ["summon_arbalist_chance_to_shock_%"]=10100, + ["summon_arbalist_chance_to_unnerve_for_4_seconds_on_hit_%"]=10087, + ["summon_arbalist_number_of_additional_projectiles"]=10088, + ["summon_arbalist_number_of_splits"]=10089, + ["summon_arbalist_physical_damage_%_to_add_as_cold"]=10090, + ["summon_arbalist_physical_damage_%_to_add_as_fire"]=10091, + ["summon_arbalist_physical_damage_%_to_add_as_lightning"]=10092, + ["summon_arbalist_physical_damage_%_to_convert_to_cold"]=10093, + ["summon_arbalist_physical_damage_%_to_convert_to_fire"]=10094, + ["summon_arbalist_physical_damage_%_to_convert_to_lightning"]=10095, + ["summon_arbalist_projectiles_fork"]=10096, + ["summon_arbalist_targets_to_pierce"]=10097, + ["summon_fire_skitterbot"]=10104, + ["summon_raging_spirit_melee_splash_fire_damage_only"]=10105, + ["summon_reaper_cooldown_speed_+%"]=10106, + ["summon_skeleton_gem_level_+"]=1552, + ["summon_skeletons_additional_warrior_skeleton_%_chance"]=10108, + ["summon_skeletons_additional_warrior_skeleton_one_twentieth_chance"]=10107, + ["summon_skeletons_cooldown_modifier_ms"]=10109, + ["summon_skeletons_num_additional_warrior_skeletons"]=3933, + ["summon_skitterbots_area_of_effect_+%"]=10110, + ["summon_skitterbots_mana_reservation_+%"]=10111, + ["summon_totem_cast_speed_+%"]=2511, + ["summoned_phantasms_grant_buff"]=10112, + ["summoned_phantasms_have_no_duration"]=10113, + ["summoned_raging_spirit_chance_to_spawn_additional_minion_%"]=3345, + ["summoned_raging_spirit_duration_+%"]=3344, + ["summoned_raging_spirits_have_diamond_and_massive_shrine_buff"]=10114, + ["summoned_reaper_damage_+%"]=10115, + ["summoned_reaper_physical_dot_multiplier_+"]=10116, + ["summoned_skeleton_%_chance_to_wither_for_2_seconds"]=10117, + ["summoned_skeleton_%_physical_to_chaos"]=10118, + ["summoned_skeleton_warriors_get_weapon_stats_in_main_hand"]=4343, + ["summoned_skeletons_cover_in_ash_on_hit_%"]=10119, + ["summoned_skeletons_fire_damage_%_of_maximum_life_taken_per_minute"]=10120, + ["summoned_skeletons_have_avatar_of_fire"]=10624, + ["summoned_skeletons_hits_cant_be_evaded"]=10121, + ["summoned_skitterbots_auras_also_affect_you"]=10122, + ["summoned_skitterbots_cooldown_recovery_+%"]=10123, + ["summoned_skitterbots_non_damaging_ailment_effect_+%"]=10124, + ["summoned_support_ghosts_have_diamond_and_massive_shrine_buff"]=10125, + ["sunder_wave_delay_+%"]=3781, + ["support_additional_trap_mine_%_chance_for_1_additional_trap_mine"]=10126, + ["support_anticipation_charge_gain_frequency_+%"]=10127, + ["support_anticipation_charge_gain_interval_ms"]=10518, + ["support_anticipation_rapid_fire_count"]=10518, + ["support_gem_elemental_damage_+%_final"]=3526, + ["support_gems_socketed_in_amulet_also_support_body_skills"]=225, + ["support_gems_socketed_in_off_hand_also_support_main_hand_skills"]=226, + ["support_maimed_enemies_physical_damage_taken_+%"]=10128, + ["support_minion_maximum_life_+%_final"]=1699, + ["support_mirage_archer_base_duration"]=10130, + ["support_slashing_damage_+%_final_from_distance"]=10131, + ["support_slower_projectiles_damage_+%_final"]=2776, + ["supported_active_skill_gem_expereince_gained_+%"]=2825, + ["supported_active_skill_gem_level_+"]=2693, + ["supported_active_skill_gem_quality_%"]=2753, + ["supported_aura_skill_gem_level_+"]=10132, + ["supported_cold_skill_gem_level_+"]=10133, + ["supported_elemental_skill_gem_level_+"]=10134, + ["supported_fire_skill_gem_level_+"]=10135, + ["supported_lightning_skill_gem_level_+"]=10136, + ["suppressed_spell_damage_bypass_energy_shield_%"]=1084, + ["suppressed_spell_damage_cannot_inflict_elemental_ailments"]=10137, + ["suppressed_spell_damage_taken_%_recouped_as_es"]=1085, + ["sweep_add_endurance_charge_on_hit_%"]=3752, + ["sweep_damage_+%"]=3604, + ["sweep_knockback_chance_%"]=3907, + ["sweep_radius_+%"]=3753, + ["sword_accuracy_rating"]=1937, + ["sword_accuracy_rating_+%"]=1379, + ["sword_ailment_damage_+%"]=1276, + ["sword_attack_speed_+%"]=1361, + ["sword_critical_strike_chance_+%"]=1403, + ["sword_critical_strike_multiplier_+"]=1432, + ["sword_damage_+%"]=1274, + ["sword_hit_and_ailment_damage_+%"]=1275, + ["sword_physical_damage_%_to_add_as_fire"]=2972, + ["synthesis_map_adjacent_nodes_global_mod_values_doubled"]=10138, + ["synthesis_map_global_mod_values_doubled_on_this_node"]=10139, + ["synthesis_map_global_mod_values_tripled_on_this_node"]=10140, + ["synthesis_map_memories_do_not_collapse_on_this_node"]=10141, + ["synthesis_map_monster_slain_experience_+%_on_this_node"]=10142, + ["synthesis_map_nearby_memories_have_bonus"]=10143, + ["synthesis_map_node_additional_uses_+"]=10144, + ["synthesis_map_node_global_mod_values_tripled_if_adjacent_squares_have_memories"]=10145, + ["synthesis_map_node_grants_additional_global_mod"]=10146, + ["synthesis_map_node_grants_no_global_mod"]=10147, + ["synthesis_map_node_guest_monsters_replaced_by_synthesised_monsters"]=10148, + ["synthesis_map_node_item_quantity_increases_doubled"]=10149, + ["synthesis_map_node_item_rarity_increases_doubled"]=10150, + ["synthesis_map_node_level_+"]=10151, + ["synthesis_map_node_monsters_drop_no_items"]=10152, + ["synthesis_map_node_pack_size_increases_doubled"]=10153, + ["tailwind_effect_on_self_+%"]=10154, + ["tailwind_effect_on_self_+%_per_gale_force"]=10155, + ["tailwind_if_have_crit_recently"]=10156, + ["take_20%_less_area_damage_from_hits_%_chance_per_2%_overcapped_cold_resistance"]=10157, + ["take_X_lightning_damage_when_herald_of_thunder_hits_an_enemy"]=10158, + ["take_chaos_damage_from_ignite_instead"]=2385, + ["take_half_area_damage_from_hit_%_chance"]=10159, + ["take_no_extra_damage_from_critical_strikes_if_cast_enfeeble_in_past_10_seconds"]=10160, + ["take_no_fire_damage_over_time_if_stopped_taking_fire_damage_over_time_recently"]=10161, + ["talisman_implicit_projectiles_pierce_1_additional_target_per_10"]=10162, + ["targets_are_unaffected_by_your_hexes"]=2532, + ["taunt_duration_+%"]=1717, + ["taunt_on_projectile_hit_chance_%"]=10163, + ["taunted_enemies_by_warcry_damage_taken_+%"]=10164, + ["taunted_enemies_chance_to_be_stunned_+%"]=3146, + ["taunted_enemies_damage_+%_final_vs_non_taunt_target"]=4187, + ["taunted_enemies_damage_taken_+%"]=4211, + ["tectonic_slam_%_chance_to_do_charged_slam"]=10170, + ["tectonic_slam_1%_chance_to_do_charged_slam_per_2_stat_value"]=10165, + ["tectonic_slam_and_infernal_blow_attack_damage_+%_per_450_physical_damage_reduction_rating"]=10166, + ["tectonic_slam_and_infernal_blow_attack_damage_+%_per_700_physical_damage_reduction_rating"]=10167, + ["tectonic_slam_area_of_effect_+%"]=10168, + ["tectonic_slam_damage_+%"]=10169, + ["tectonic_slam_side_crack_additional_chance_%"]=10172, + ["tectonic_slam_side_crack_additional_chance_1%_per_2_stat_value"]=10171, + ["tempest_shield_buff_effect_+%"]=10173, + ["tempest_shield_damage_+%"]=3649, + ["tempest_shield_num_of_additional_projectiles_in_chain"]=3960, + ["temporal_chains_curse_effect_+%"]=3940, + ["temporal_chains_duration_+%"]=3841, + ["temporal_chains_effeciveness_+%"]=1579, + ["temporal_chains_ignores_hexproof"]=2541, + ["temporal_chains_mana_reservation_+%"]=3981, + ["temporal_chains_no_reservation"]=10174, + ["temporal_rift_cooldown_speed_+%"]=10175, + ["thaumaturgy_rotation_active"]=10176, + ["threshold_jewel_magma_orb_damage_+%_final"]=10177, + ["threshold_jewel_magma_orb_damage_+%_final_per_chain"]=10178, + ["threshold_jewel_molten_strike_damage_projectile_count_+%_final"]=10179, + ["throw_X_additional_traps_if_dual_wielding"]=10180, + ["thrown_shield_secondary_projectile_damage_+%_final"]=10181, + ["tincture_cooldown_recovery_+%"]=10182, + ["tincture_effect_+%_at_high_toxicity"]=10183, + ["tincture_effect_+%_if_used_life_flask_recently"]=10184, + ["tincture_effects_linger_for_ms_per_toxicity_up_to_6_seconds"]=10185, + ["tincture_mod_effect_+%_per_empty_flask_slot"]=10186, + ["tincture_toxicity_rate_+%"]=10187, + ["tinctures_can_apply_to_ranged_weapons"]=10188, + ["tinctures_deactivate_on_reaching_X_toxicity"]=10189, + ["tornado_damage_+%"]=10191, + ["tornado_damage_frequency_+%"]=10190, + ["tornado_movement_speed_+%"]=10192, + ["tornado_only_primary_duration_+%"]=10193, + ["tornado_shot_critical_strike_chance_+%"]=3874, + ["tornado_shot_damage_+%"]=3609, + ["tornado_shot_num_of_secondary_projectiles"]=3882, + ["tornado_skill_area_of_effect_+%"]=10194, + ["total_recovery_per_minute_from_life_leech_is_doubled"]=10195, + ["totem_%_maximum_life_inflicted_as_aoe_fire_damage_when_hit"]=3720, + ["totem_additional_physical_damage_reduction_%"]=2723, + ["totem_attack_damage_leeched_as_mana_to_you_permyriad"]=10197, + ["totem_aura_enemy_damage_+%_final"]=3722, + ["totem_aura_enemy_fire_and_physical_damage_taken_+%"]=3723, + ["totem_chaos_immunity"]=10198, + ["totem_chaos_resistance_%"]=10199, + ["totem_critical_strike_chance_+%"]=1421, + ["totem_critical_strike_multiplier_+"]=1451, + ["totem_damage_+%"]=1129, + ["totem_damage_+%_final_per_active_totem"]=3678, + ["totem_damage_+%_if_havent_summoned_totem_in_past_2_seconds"]=10200, + ["totem_damage_+%_per_10_devotion"]=10201, + ["totem_damage_leeched_as_life_to_you_permyriad"]=4168, + ["totem_duration_+%"]=1713, + ["totem_elemental_resistance_%"]=2721, + ["totem_energy_shield_+%"]=1711, + ["totem_fire_immunity"]=1542, + ["totem_hinder_nearby_enemies_when_summoned_with_25%_reduced_movement_speed"]=10202, + ["totem_life_+%"]=1709, + ["totem_life_+%_final"]=10204, + ["totem_life_increased_by_overcapped_fire_resistance"]=10203, + ["totem_mana_+%"]=1710, + ["totem_maximum_energy_shield"]=10205, + ["totem_number_of_additional_projectiles"]=3014, + ["totem_physical_attack_damage_leeched_as_life_to_you_permyriad"]=10206, + ["totem_placement_range_+%"]=10207, + ["totem_range_+%"]=1712, + ["totem_skill_area_of_effect_+%"]=2514, + ["totem_skill_attack_speed_+%"]=2513, + ["totem_skill_cast_speed_+%"]=2512, + ["totem_skill_gem_level_+"]=10208, + ["totem_spells_damage_+%"]=10209, + ["totemified_skills_taunt_on_hit_%"]=3361, + ["totems_action_speed_cannot_be_modified_below_base"]=10196, + ["totems_attack_speed_+%_per_active_totem"]=4125, + ["totems_cannot_be_stunned"]=2994, + ["totems_explode_for_%_of_max_life_as_fire_damage_on_low_life"]=3245, + ["totems_explode_on_death_for_%_life_as_physical"]=10210, + ["totems_explode_on_death_for_%_life_as_physical_divide_20"]=10211, + ["totems_gain_%_of_players_armour"]=3154, + ["totems_nearby_enemies_damage_taken_+%"]=10212, + ["totems_regenerate_%_life_per_minute"]=10214, + ["totems_regenerate_1_life_per_x_player_life_regeneration"]=10213, + ["totems_resist_all_elements_+%_per_active_totem"]=4107, + ["totems_spells_cast_speed_+%_per_active_totem"]=4113, + ["totems_taunt_enemies_around_them_for_x_seconds_when_summoned"]=10215, + ["toxic_rain_damage_+%"]=10216, + ["toxic_rain_num_of_additional_projectiles"]=10217, + ["toxic_rain_physical_damage_%_to_add_as_chaos"]=10218, + ["toxic_rain_skill_physical_damage_%_to_convert_to_chaos"]=10219, + ["transfer_hexes_to_X_nearby_enemies_on_kill"]=2867, + ["trap_%_chance_to_trigger_twice"]=3729, + ["trap_and_mine_damage_+%_if_armed_for_4_seconds"]=10220, + ["trap_and_mine_damage_penetrates_%_elemental_resistance"]=2718, + ["trap_and_mine_maximum_added_physical_damage"]=3728, + ["trap_and_mine_minimum_added_physical_damage"]=3728, + ["trap_and_mine_throwing_speed_+%"]=10221, + ["trap_cooldown_speed_+%_per_recent_mine_detonation"]=10222, + ["trap_critical_strike_chance_+%"]=1409, + ["trap_critical_strike_multiplier_+"]=1440, + ["trap_damage_+%"]=1130, + ["trap_damage_buildup_damage_+%_final_after_4_seconds"]=3725, + ["trap_damage_buildup_damage_+%_final_when_first_set"]=3724, + ["trap_damage_penetrates_%_elemental_resistance"]=2716, + ["trap_duration_+%"]=1856, + ["trap_mine_skill_num_of_additional_chains"]=10223, + ["trap_or_mine_damage_+%"]=1131, + ["trap_skill_added_cooldown_count"]=10224, + ["trap_skill_area_of_effect_+%"]=3411, + ["trap_skill_effect_duration_+%"]=10225, + ["trap_spread_+%"]=10226, + ["trap_throw_skills_have_blood_magic"]=10637, + ["trap_throwing_speed_+%"]=1860, + ["trap_throwing_speed_+%_per_frenzy_charge"]=10227, + ["trap_trigger_radius_+%"]=1858, + ["traps_and_mines_%_chance_to_poison"]=4022, + ["traps_cannot_be_triggered_by_enemies"]=10228, + ["traps_do_not_explode_on_timeout"]=2713, + ["traps_explode_on_timeout"]=2714, + ["traps_invulnerable"]=10229, + ["traps_invulnerable_for_duration_ms"]=2719, + ["travel_skill_cooldown_speed_+%"]=4312, + ["travel_skills_cannot_be_exerted"]=10230, + ["travel_skills_cooldown_speed_+%_per_frenzy_charge"]=4323, + ["travel_skills_crit_every_X_uses"]=10231, + ["travel_skills_poison_reflected_to_self_up_to_5_poisons"]=10232, + ["treat_enemy_resistances_as_negated_on_elemental_damage_hit_%_chance"]=10233, + ["trickster_cannot_take_damage_over_time_for_X_ms_every_10_seconds"]=10234, + ["trickster_damage_+%_final_per_different_mastery"]=1581, + ["trickster_damage_over_time_+%_final"]=10235, + ["trickster_passive_chance_to_evade_attacks_while_not_on_full_energy_shield_+%_final"]=3461, + ["trigger_level_20_summon_spectral_wolf_on_crit"]=10236, + ["trigger_socketed_bow_skills_on_spell_cast_while_wielding_a_bow_%"]=768, + ["trigger_socketed_spell_on_attack_%"]=769, + ["trigger_socketed_spell_on_skill_use_%"]=771, + ["trigger_socketed_spells_when_you_focus_%"]=772, ["trigger_socketed_warcry_when_endurance_charge_expires_or_consumed_%_chance"]=160, - ["triggerbots_damage_+%_final_with_triggered_spells"]=9931, - ["triggered_spell_spell_damage_+%"]=9932, - ["two_handed_attack_damage_+%_per_unlinked_socket_on_weapon"]=9933, - ["two_handed_melee_accuracy_rating_+%"]=1345, - ["two_handed_melee_area_damage_+%"]=9934, - ["two_handed_melee_area_of_effect_+%"]=9935, - ["two_handed_melee_attack_speed_+%"]=1326, - ["two_handed_melee_cold_damage_+%"]=1207, - ["two_handed_melee_critical_strike_chance_+%"]=1384, - ["two_handed_melee_critical_strike_multiplier_+"]=1385, - ["two_handed_melee_fire_damage_+%"]=1206, - ["two_handed_melee_physical_damage_+%"]=1201, - ["two_handed_melee_stun_duration_+%"]=1769, - ["two_handed_melee_weapon_ailment_damage_+%"]=1204, - ["two_handed_melee_weapon_hit_and_ailment_damage_+%"]=1202, - ["two_handed_weapon_ailment_damage_+%"]=1205, - ["two_handed_weapon_hit_and_ailment_damage_+%"]=1203, - ["uber_domain_monster_additional_physical_damage_reduction_%_per_revival"]=9936, - ["uber_domain_monster_all_resistances_+%_per_revival"]=9937, - ["uber_domain_monster_attack_and_cast_speed_+%_per_revival"]=9938, - ["uber_domain_monster_avoid_stun_%_per_revival"]=9939, - ["uber_domain_monster_critical_strike_chance_+%_per_revival"]=9940, - ["uber_domain_monster_critical_strike_multiplier_+%_per_revival"]=9941, - ["uber_domain_monster_damage_+%_per_revival"]=9942, - ["uber_domain_monster_deal_double_damage_chance_%_per_revival"]=9943, - ["uber_domain_monster_life_regeneration_rate_per_minute_%_per_revival"]=9944, - ["uber_domain_monster_maximum_life_+%_per_revival"]=9945, - ["uber_domain_monster_movement_speed_+%_per_revival"]=9946, - ["uber_domain_monster_overwhelm_%_physical_damage_reduction_per_revival"]=9947, - ["uber_domain_monster_penetrate_all_resistances_%_per_revival"]=9948, - ["uber_domain_monster_physical_damage_reduction_rating_+%_per_revival"]=9949, - ["uber_domain_monster_reward_chance_+%"]=9950, - ["unaffected_by_bleed_if_cast_vulnerability_in_past_10_seconds"]=9951, - ["unaffected_by_bleeding_while_affected_by_malevolence"]=9952, - ["unaffected_by_bleeding_while_leeching"]=9953, - ["unaffected_by_blind"]=9954, - ["unaffected_by_burning_ground"]=9955, - ["unaffected_by_burning_ground_while_affected_by_purity_of_fire"]=9956, - ["unaffected_by_chill"]=9957, - ["unaffected_by_chill_if_2_redeemer_items"]=4344, - ["unaffected_by_chill_while_channelling"]=9958, - ["unaffected_by_chill_while_mana_leeching"]=9959, - ["unaffected_by_chilled_ground"]=9960, - ["unaffected_by_chilled_ground_while_affected_by_purity_of_ice"]=9961, - ["unaffected_by_conductivity_while_affected_by_purity_of_lightning"]=9962, - ["unaffected_by_corrupted_blood_while_leeching"]=9963, - ["unaffected_by_curses"]=2378, - ["unaffected_by_curses_while_affected_by_zealotry"]=9964, - ["unaffected_by_damaging_ailments"]=9965, - ["unaffected_by_desecrated_ground"]=9966, - ["unaffected_by_elemental_weakness_while_affected_by_purity_of_elements"]=9967, - ["unaffected_by_enfeeble_while_affected_by_grace"]=9968, - ["unaffected_by_flammability_while_affected_by_purity_of_fire"]=9969, - ["unaffected_by_freeze_if_cast_frostbite_in_past_10_seconds"]=9970, - ["unaffected_by_frostbite_while_affected_by_purity_of_ice"]=9971, - ["unaffected_by_ignite"]=9972, - ["unaffected_by_ignite_and_shock_while_max_life_mana_within_500"]=9973, - ["unaffected_by_ignite_if_2_warlord_items"]=4345, - ["unaffected_by_ignite_if_cast_flammability_in_past_10_seconds"]=9974, - ["unaffected_by_poison_while_affected_by_malevolence"]=9975, - ["unaffected_by_shock"]=9976, - ["unaffected_by_shock_if_2_crusader_items"]=4346, - ["unaffected_by_shock_if_cast_conductivity_in_past_10_seconds"]=9977, - ["unaffected_by_shock_while_channelling"]=9978, - ["unaffected_by_shock_while_es_leeching"]=9979, - ["unaffected_by_shocked_ground"]=9980, - ["unaffected_by_shocked_ground_while_affected_by_purity_of_lightning"]=9981, - ["unaffected_by_temporal_chains"]=9982, - ["unaffected_by_temporal_chains_while_affected_by_haste"]=9983, - ["unaffected_by_vulnerability_while_affected_by_determination"]=9984, - ["unarmed_attack_critical_strike_multiplier_+"]=5701, - ["unarmed_attack_number_of_spirit_strikes"]=9986, - ["unarmed_damage_+%_vs_bleeding_enemies"]=3455, - ["unarmed_melee_attack_critical_strike_multiplier_+"]=9987, - ["unarmed_melee_attack_speed_+%"]=1337, - ["unarmed_melee_physical_damage_+%"]=1208, - ["unattached_sigil_attachment_range_+%_per_second"]=9988, - ["unearth_additional_corpse_level"]=9989, - ["unholy_might_while_you_have_no_energy_shield"]=2635, - ["unique_add_power_charge_on_melee_knockback_%"]=2834, - ["unique_body_armour_unarmed_melee_attack_speed_+%_final"]=1338, - ["unique_boots_all_damage_inflicts_poison_against_enemies_with_at_least_x_grasping_vines"]=4310, - ["unique_bow_arborix_close_range_bow_damage_+%_final_while_have_iron_reflexes"]=10313, - ["unique_chaos_damage_to_reflect_to_self_on_attack_%_chance"]=2866, - ["unique_chill_duration_+%_when_in_off_hand"]=2667, - ["unique_chin_sol_close_range_bow_damage_+%_final"]=2343, - ["unique_chin_sol_close_range_knockback"]=2344, - ["unique_cold_damage_can_also_ignite"]=2780, - ["unique_cold_damage_ignites"]=2755, - ["unique_cold_damage_resistance_%_when_green_gem_socketed"]=1538, - ["unique_critical_strike_chance_+%_final"]=2723, - ["unique_dewaths_hide_physical_attack_damage_dealt_-"]=2366, - ["unique_facebreaker_unarmed_melee_physical_damage_+%_final"]=2337, - ["unique_fire_damage_resistance_%_when_red_gem_socketed"]=1532, - ["unique_fire_damage_shocks"]=2754, - ["unique_gain_onslaught_when_hit_duration_ms"]=2725, - ["unique_gain_onslaught_when_hit_duration_ms_per_endurance_charge"]=2739, - ["unique_gain_power_charge_on_non_crit"]=2798, - ["unique_helmet_cast_speed_+%_applies_to_attack_speed_at_%_of_original_value"]=9990, - ["unique_helmet_damage_+%_final_per_warcry_exerting_action"]=9991, - ["unique_ignite_chance_%_when_in_main_hand"]=2666, - ["unique_jewel_flask_charges_gained_+%_final_from_kills"]=9994, - ["unique_jewel_flask_duration_+%_final"]=9995, - ["unique_jewel_grants_notable_hash_part_1"]=9996, - ["unique_jewel_grants_notable_hash_part_2"]=9997, - ["unique_jewel_reserved_blood_maximum_life_+%_final"]=9998, - ["unique_lightning_damage_freezes"]=2756, - ["unique_lightning_damage_resistance_%_when_blue_gem_socketed"]=1543, - ["unique_local_maximum_added_chaos_damage_when_in_off_hand"]=1299, - ["unique_local_maximum_added_cold_damage_when_in_off_hand"]=1280, - ["unique_local_maximum_added_fire_damage_when_in_main_hand"]=1271, - ["unique_local_minimum_added_chaos_damage_when_in_off_hand"]=1299, - ["unique_local_minimum_added_cold_damage_when_in_off_hand"]=1280, - ["unique_local_minimum_added_fire_damage_when_in_main_hand"]=1271, - ["unique_loris_lantern_golden_light"]=2454, - ["unique_lose_a_power_charge_when_hit"]=10000, - ["unique_lose_all_endurance_charges_when_hit"]=2724, - ["unique_lose_all_power_charges_on_crit"]=2799, - ["unique_map_boss_class_of_rare_items_to_drop"]=2613, - ["unique_map_boss_number_of_rare_items_to_drop"]=2613, - ["unique_maximum_chaos_damage_to_reflect_to_self_on_attack"]=2866, - ["unique_mine_damage_+%_final"]=1106, - ["unique_minimum_chaos_damage_to_reflect_to_self_on_attack"]=2866, - ["unique_monster_dropped_item_rarity_+%"]=10001, - ["unique_nearby_allies_recover_permyriad_max_life_on_death"]=2887, - ["unique_primordial_tether_golem_damage_+%_final"]=3587, - ["unique_primordial_tether_golem_life_+%_final"]=3980, - ["unique_quill_rain_damage_+%_final"]=2356, - ["unique_quiver_chill_as_though_damage_+%_final"]=10002, - ["unique_recover_%_maximum_life_on_x_altenator"]=10003, - ["unique_replica_volkuurs_guidance_ignite_duration_+%_final"]=10004, - ["unique_ryuslathas_clutches_maximum_physical_attack_damage_+%_final"]=1108, - ["unique_ryuslathas_clutches_minimum_physical_attack_damage_+%_final"]=1109, - ["unique_soulless_elegance_energy_shield_recharge_rate_+%_final"]=10005, - ["unique_spread_poison_to_nearby_allies_as_200_life_regeneration_per_second_on_kill"]=2749, - ["unique_spread_poison_to_nearby_allies_as_regeneration_on_kill"]=2750, - ["unique_spread_poison_to_nearby_enemies_during_flask_effect"]=954, - ["unique_spread_poison_to_nearby_enemies_on_kill"]=2748, - ["unique_sunblast_throw_traps_in_circle_radius"]=10006, - ["unique_volkuurs_clutch_poison_duration_+%_final"]=3061, - ["unique_voltaxic_rift_shock_as_though_damage_+%_final"]=2822, - ["unique_voltaxic_rift_shock_maximum_magnitude_override"]=10007, - ["unnerve_for_4_seconds_on_hit_with_wands"]=10008, - ["unnerve_nearby_enemies_on_use_for_ms"]=10009, - ["unqiue_atzitis_acuity_instant_leech_60%_effectiveness_on_crit"]=2439, + ["triggerbots_damage_+%_final_with_triggered_spells"]=10237, + ["triggered_spell_spell_damage_+%"]=10238, + ["triggered_spells_all_damage_can_poison"]=10240, + ["triggered_spells_poison_on_hit"]=10239, + ["two_handed_attack_damage_+%_per_unlinked_socket_on_weapon"]=10241, + ["two_handed_melee_accuracy_rating_+%"]=1372, + ["two_handed_melee_area_damage_+%"]=10242, + ["two_handed_melee_area_of_effect_+%"]=10243, + ["two_handed_melee_attack_speed_+%"]=1353, + ["two_handed_melee_cold_damage_+%"]=1234, + ["two_handed_melee_critical_strike_chance_+%"]=1411, + ["two_handed_melee_critical_strike_multiplier_+"]=1412, + ["two_handed_melee_fire_damage_+%"]=1233, + ["two_handed_melee_physical_damage_+%"]=1228, + ["two_handed_melee_stun_duration_+%"]=1799, + ["two_handed_melee_weapon_ailment_damage_+%"]=1231, + ["two_handed_melee_weapon_hit_and_ailment_damage_+%"]=1229, + ["two_handed_weapon_ailment_damage_+%"]=1232, + ["two_handed_weapon_hit_and_ailment_damage_+%"]=1230, + ["uber_domain_monster_additional_physical_damage_reduction_%_per_revival"]=10244, + ["uber_domain_monster_all_resistances_+%_per_revival"]=10245, + ["uber_domain_monster_attack_and_cast_speed_+%_per_revival"]=10246, + ["uber_domain_monster_avoid_stun_%_per_revival"]=10247, + ["uber_domain_monster_critical_strike_chance_+%_per_revival"]=10248, + ["uber_domain_monster_critical_strike_multiplier_+%_per_revival"]=10249, + ["uber_domain_monster_damage_+%_per_revival"]=10250, + ["uber_domain_monster_deal_double_damage_chance_%_per_revival"]=10251, + ["uber_domain_monster_life_regeneration_rate_per_minute_%_per_revival"]=10252, + ["uber_domain_monster_maximum_life_+%_per_revival"]=10253, + ["uber_domain_monster_movement_speed_+%_per_revival"]=10254, + ["uber_domain_monster_overwhelm_%_physical_damage_reduction_per_revival"]=10255, + ["uber_domain_monster_penetrate_all_resistances_%_per_revival"]=10256, + ["uber_domain_monster_physical_damage_reduction_rating_+%_per_revival"]=10257, + ["uber_domain_monster_reward_chance_+%"]=10258, + ["unaffected_by_bleed_if_cast_vulnerability_in_past_10_seconds"]=10259, + ["unaffected_by_bleeding_while_affected_by_malevolence"]=10260, + ["unaffected_by_bleeding_while_leeching"]=10261, + ["unaffected_by_blind"]=10262, + ["unaffected_by_burning_ground"]=10263, + ["unaffected_by_burning_ground_while_affected_by_purity_of_fire"]=10264, + ["unaffected_by_chill"]=10265, + ["unaffected_by_chill_if_2_redeemer_items"]=4390, + ["unaffected_by_chill_while_channelling"]=10266, + ["unaffected_by_chill_while_mana_leeching"]=10267, + ["unaffected_by_chilled_ground"]=10268, + ["unaffected_by_chilled_ground_while_affected_by_purity_of_ice"]=10269, + ["unaffected_by_conductivity_while_affected_by_purity_of_lightning"]=10270, + ["unaffected_by_corrupted_blood_while_leeching"]=10271, + ["unaffected_by_curses"]=2411, + ["unaffected_by_curses_while_affected_by_zealotry"]=10272, + ["unaffected_by_damaging_ailments"]=10273, + ["unaffected_by_desecrated_ground"]=10274, + ["unaffected_by_elemental_weakness_while_affected_by_purity_of_elements"]=10275, + ["unaffected_by_enfeeble_while_affected_by_grace"]=10276, + ["unaffected_by_flammability_while_affected_by_purity_of_fire"]=10277, + ["unaffected_by_freeze_if_cast_frostbite_in_past_10_seconds"]=10278, + ["unaffected_by_frostbite_while_affected_by_purity_of_ice"]=10279, + ["unaffected_by_ignite"]=10280, + ["unaffected_by_ignite_and_shock_while_max_life_mana_within_500"]=10281, + ["unaffected_by_ignite_if_2_warlord_items"]=4391, + ["unaffected_by_ignite_if_cast_flammability_in_past_10_seconds"]=10282, + ["unaffected_by_poison_while_affected_by_malevolence"]=10283, + ["unaffected_by_shock"]=10284, + ["unaffected_by_shock_if_2_crusader_items"]=4392, + ["unaffected_by_shock_if_cast_conductivity_in_past_10_seconds"]=10285, + ["unaffected_by_shock_while_channelling"]=10286, + ["unaffected_by_shock_while_es_leeching"]=10287, + ["unaffected_by_shocked_ground"]=10288, + ["unaffected_by_shocked_ground_while_affected_by_purity_of_lightning"]=10289, + ["unaffected_by_temporal_chains"]=10290, + ["unaffected_by_temporal_chains_while_affected_by_haste"]=10291, + ["unaffected_by_vulnerability_while_affected_by_determination"]=10292, + ["unarmed_attack_critical_strike_multiplier_+"]=5895, + ["unarmed_attack_number_of_spirit_strikes"]=10294, + ["unarmed_damage_+%_vs_bleeding_enemies"]=3500, + ["unarmed_melee_attack_critical_strike_multiplier_+"]=10295, + ["unarmed_melee_attack_speed_+%"]=1364, + ["unarmed_melee_physical_damage_+%"]=1235, + ["unattached_sigil_attachment_range_+%_per_second"]=10296, + ["unearth_additional_corpse_level"]=10297, + ["unholy_might_while_you_have_no_energy_shield"]=2670, + ["unique_add_power_charge_on_melee_knockback_%"]=2870, + ["unique_attacks_fire_X_additional_projectiles_while_in_off_hand"]=10298, + ["unique_attacks_have_area_+%_while_in_main_hand"]=10299, + ["unique_body_armour_unarmed_melee_attack_speed_+%_final"]=1365, + ["unique_boots_all_damage_inflicts_poison_against_enemies_with_at_least_x_grasping_vines"]=4356, + ["unique_bow_arborix_close_range_bow_damage_+%_final_while_have_iron_reflexes"]=10642, + ["unique_chaos_damage_to_reflect_to_self_on_attack_%_chance"]=2903, + ["unique_chill_duration_+%_when_in_off_hand"]=2702, + ["unique_chin_sol_close_range_bow_damage_+%_final"]=2375, + ["unique_chin_sol_close_range_knockback"]=2377, + ["unique_cold_damage_can_also_ignite"]=2816, + ["unique_cold_damage_ignites"]=2791, + ["unique_cold_damage_resistance_%_when_green_gem_socketed"]=1567, + ["unique_critical_strike_chance_+%_final"]=2758, + ["unique_dewaths_hide_physical_attack_damage_dealt_-"]=2399, + ["unique_facebreaker_unarmed_melee_physical_damage_+%_final"]=2369, + ["unique_fire_damage_resistance_%_when_red_gem_socketed"]=1561, + ["unique_fire_damage_shocks"]=2790, + ["unique_foulborn_chin_sol_not_close_range_bow_damage_+%_final"]=2376, + ["unique_gain_onslaught_when_hit_duration_ms"]=2760, + ["unique_gain_onslaught_when_hit_duration_ms_per_endurance_charge"]=2775, + ["unique_gain_power_charge_on_non_crit"]=2834, + ["unique_helmet_cast_speed_+%_applies_to_attack_speed_at_%_of_original_value"]=10300, + ["unique_helmet_damage_+%_final_per_warcry_exerting_action"]=10301, + ["unique_ignite_chance_%_when_in_main_hand"]=2701, + ["unique_jewel_flask_charges_gained_+%_final_from_kills"]=10304, + ["unique_jewel_flask_duration_+%_final"]=10305, + ["unique_jewel_grants_notable_hash_part_1"]=10306, + ["unique_jewel_grants_notable_hash_part_2"]=10307, + ["unique_jewel_reserved_blood_maximum_life_+%_final"]=10308, + ["unique_lightning_damage_freezes"]=2792, + ["unique_lightning_damage_resistance_%_when_blue_gem_socketed"]=1573, + ["unique_local_maximum_added_chaos_damage_when_in_off_hand"]=1326, + ["unique_local_maximum_added_cold_damage_when_in_off_hand"]=1307, + ["unique_local_maximum_added_fire_damage_when_in_main_hand"]=1298, + ["unique_local_minimum_added_chaos_damage_when_in_off_hand"]=1326, + ["unique_local_minimum_added_cold_damage_when_in_off_hand"]=1307, + ["unique_local_minimum_added_fire_damage_when_in_main_hand"]=1298, + ["unique_loris_lantern_golden_light"]=2487, + ["unique_lose_a_power_charge_when_hit"]=10310, + ["unique_lose_all_endurance_charges_when_hit"]=2759, + ["unique_lose_all_power_charges_on_crit"]=2835, + ["unique_map_boss_class_of_rare_items_to_drop"]=2648, + ["unique_map_boss_number_of_rare_items_to_drop"]=2648, + ["unique_maximum_chaos_damage_to_reflect_to_self_on_attack"]=2903, + ["unique_mine_damage_+%_final"]=1133, + ["unique_minimum_chaos_damage_to_reflect_to_self_on_attack"]=2903, + ["unique_monster_dropped_item_rarity_+%"]=10311, + ["unique_nearby_allies_recover_permyriad_max_life_on_death"]=2924, + ["unique_primordial_tether_golem_damage_+%_final"]=3632, + ["unique_primordial_tether_golem_life_+%_final"]=4026, + ["unique_quill_rain_damage_+%_final"]=2389, + ["unique_quiver_chill_as_though_damage_+%_final"]=10312, + ["unique_recover_%_maximum_life_on_x_altenator"]=10313, + ["unique_replica_volkuurs_guidance_ignite_duration_+%_final"]=10314, + ["unique_ryuslathas_clutches_maximum_physical_attack_damage_+%_final"]=1135, + ["unique_ryuslathas_clutches_minimum_physical_attack_damage_+%_final"]=1136, + ["unique_soulless_elegance_energy_shield_recharge_rate_+%_final"]=10315, + ["unique_spell_block_%_when_in_off_hand"]=1097, + ["unique_spread_poison_to_nearby_allies_as_200_life_regeneration_per_second_on_kill"]=2785, + ["unique_spread_poison_to_nearby_allies_as_regeneration_on_kill"]=2786, + ["unique_spread_poison_to_nearby_enemies_during_flask_effect"]=979, + ["unique_spread_poison_to_nearby_enemies_on_kill"]=2784, + ["unique_sunblast_throw_traps_in_circle_radius"]=10316, + ["unique_thread_of_hope_base_resist_all_elements_%"]=10514, + ["unique_volkuurs_clutch_poison_duration_+%_final"]=3103, + ["unique_voltaxic_rift_shock_as_though_damage_+%_final"]=2858, + ["unique_voltaxic_rift_shock_maximum_magnitude_override"]=10317, + ["unnerve_for_4_seconds_on_hit_with_wands"]=10318, + ["unnerve_nearby_enemies_on_use_for_ms"]=10319, + ["unqiue_atzitis_acuity_instant_leech_60%_effectiveness_on_crit"]=2472, ["unveiled_mod_effect_+%"]=62, - ["utility_flask_charges_recovered_per_3_seconds"]=10010, - ["utility_flask_cold_damage_taken_+%_final"]=10011, - ["utility_flask_fire_damage_taken_+%_final"]=10012, - ["utility_flask_lightning_damage_taken_+%_final"]=10013, - ["vaal_attack_rage_cost_instead_of_souls_per_use"]=2588, - ["vaal_skill_critical_strike_chance_+%"]=2997, - ["vaal_skill_critical_strike_multiplier_+"]=2998, - ["vaal_skill_damage_+%"]=2985, - ["vaal_skill_effect_duration_+%"]=2995, - ["vaal_skill_gem_level_+"]=10014, - ["vaal_skill_soul_gain_preventation_duration_+%"]=2996, - ["vaal_skill_soul_refund_chance_%"]=10015, - ["vaal_skill_soul_requirement_+%"]=10016, - ["vaal_souls_gained_per_minute"]=10017, - ["vaal_volcanic_fissure_molten_strike_soul_gain_prevention_+%"]=10018, - ["vampiric_link_duration_+%"]=10019, - ["vengeance_cooldown_speed_+%"]=3772, - ["vengeance_damage_+%"]=3609, - ["vigilant_and_flicker_strike_active_skill_cooldown_bypass_type_override_to_power_charge"]=10020, - ["vigilant_strike_applies_to_nearby_allies_for_X_seconds"]=3139, - ["vigilant_strike_damage_+%"]=3597, - ["vigilant_strike_fortify_duration_+%"]=3792, - ["viper_and_pestilent_strike_attack_damage_+%_per_frenzy_charge"]=10021, - ["viper_strike_attack_damage_per_poison_on_enemy_+%"]=3123, - ["viper_strike_chance_to_gain_unholy_might_%_on_hit_per_poison_stack_on_enemy"]=10022, - ["viper_strike_critical_strike_chance_+%"]=3825, - ["viper_strike_damage_+%"]=3539, - ["viper_strike_dual_wield_attack_speed_+%_final"]=10023, - ["viper_strike_dual_wield_damage_+%_final"]=10024, - ["viper_strike_poison_duration_+%"]=3814, - ["virtual_base_maximum_energy_shield_to_grant_to_you_and_nearby_allies"]=3282, - ["virtual_block_%_damage_taken"]=10025, - ["virtual_energy_shield_delay_-%"]=3465, - ["virtual_energy_shield_recharge_rate_+%"]=3467, - ["virtual_light_radius_+%"]=2401, - ["virtual_mana_gain_per_target"]=1651, - ["virtual_minion_damage_+%"]=1878, - ["virtual_number_of_ranged_animated_weapons_allowed"]=3160, - ["virtual_support_anticipation_charge_gain_interval_ms"]=10192, - ["virulent_arrow_additional_spores_at_max_stages"]=10027, - ["virulent_arrow_chance_to_poison_%_per_stage"]=10028, - ["vitality_mana_reservation_+%"]=3927, - ["vitality_mana_reservation_efficiency_+%"]=10030, - ["vitality_mana_reservation_efficiency_-2%_per_1"]=10029, - ["vitality_reserves_no_mana"]=10031, - ["void_sphere_cooldown_speed_+%"]=10032, - ["volatile_dead_and_cremation_penetrate_%_fire_resistance_per_100_dexterity"]=10033, - ["volatile_dead_base_number_of_corpses_to_consume"]=10034, - ["volatile_dead_cast_speed_+%"]=10035, - ["volatile_dead_consume_additional_corpse"]=10036, - ["volatile_dead_damage_+%"]=10037, - ["volcanic_fissure_damage_+%"]=10038, - ["volcanic_fissure_number_of_additional_projectiles"]=10039, - ["volcanic_fissure_speed_+%"]=10040, - ["voltaxic_burst_damage_+%"]=10041, - ["voltaxic_burst_damage_+%_per_100ms_duration"]=10042, - ["voltaxic_burst_skill_area_of_effect_+%"]=10043, - ["vortex_active_skill_additional_critical_strike_chance_if_used_through_frostbolt"]=10044, - ["vortex_area_of_effect_+%_when_cast_on_frostbolt"]=10045, - ["vulnerability_curse_effect_+%"]=3902, - ["vulnerability_duration_+%"]=3797, - ["vulnerability_ignores_hexproof"]=2509, - ["vulnerability_mana_reservation_+%"]=3936, - ["vulnerability_no_reservation"]=10046, - ["wake_of_destruction_ground_lightning_duration_ms"]=4196, - ["wand_accuracy_rating"]=1912, - ["wand_accuracy_rating_+%"]=1353, - ["wand_ailment_damage_+%"]=1255, - ["wand_attack_speed_+%"]=1335, - ["wand_attacks_fire_an_additional_projectile"]=10047, - ["wand_critical_strike_chance_+%"]=1379, - ["wand_critical_strike_multiplier_+"]=1405, - ["wand_damage_+%"]=2840, - ["wand_damage_+%_if_crit_recently"]=10048, - ["wand_damage_+%_per_power_charge"]=2042, - ["wand_elemental_damage_+%"]=2022, - ["wand_hit_and_ailment_damage_+%"]=1254, - ["wand_physical_damage_%_to_add_as_chaos"]=10049, - ["wand_physical_damage_%_to_add_as_cold"]=1938, - ["wand_physical_damage_%_to_add_as_fire"]=1937, - ["wand_physical_damage_%_to_add_as_lightning"]=1939, - ["wand_physical_damage_%_to_convert_to_lightning"]=10050, - ["war_banner_aura_effect_+%"]=10051, - ["war_banner_mana_reservation_efficiency_+%"]=10052, - ["warcries_apply_cover_in_ash_for_X_ms"]=10053, - ["warcries_are_instant"]=3350, - ["warcries_cost_%_of_life"]=10054, - ["warcries_cost_no_mana"]=4019, - ["warcries_debilitate_enemies_for_1_second"]=10055, - ["warcries_exert_twice_as_many_attacks"]=10056, - ["warcries_have_infinite_power"]=10062, - ["warcries_have_minimum_10_power"]=10057, - ["warcries_knock_back_enemies"]=10058, - ["warcry_buff_effect_+%"]=10059, - ["warcry_chance_to_gain_frenzy_power_endurance_charge_%_per_power"]=10060, - ["warcry_cooldown_modifier_ms"]=10061, - ["warcry_cooldown_speed_+%"]=3219, - ["warcry_count_power_from_enemies"]=10062, - ["warcry_damage_taken_goes_to_mana_%"]=3152, - ["warcry_duration_+%"]=3092, - ["warcry_empowers_next_x_melee_attacks"]=10063, - ["warcry_gain_mp_from_allies"]=10062, - ["warcry_gain_mp_from_corpses"]=10062, - ["warcry_grant_X_rage_per_5_power"]=10064, - ["warcry_monster_power_+%"]=10065, - ["warcry_physical_damage_reduction_rating_+%_per_5_power_for_8_seconds"]=10066, - ["warcry_skill_area_of_effect_+%"]=10067, - ["warcry_skills_cooldown_is_4_seconds"]=10068, - ["warcry_speed_+%"]=3167, - ["warcry_speed_+%_if_not_warcried_recently"]=10069, - ["ward_+%"]=1436, - ["ward_delay_recovery_+%"]=1438, - ["ward_instead_of_%_body_armour_and_evasion"]=10070, - ["warden_tincture_toxicity_rate_+%_final"]=10071, - ["warden_tracker"]=10072, - ["warlords_mark_curse_effect_+%"]=3903, - ["warlords_mark_duration_+%"]=3796, - ["water_sphere_cold_lightning_exposure_%"]=10073, - ["water_sphere_damage_+%"]=10074, - ["weapon_chaos_damage_+%"]=1967, - ["weapon_cold_damage_+%"]=1965, - ["weapon_elemental_damage_+%"]=1264, - ["weapon_elemental_damage_+%_per_power_charge"]=2580, - ["weapon_elemental_damage_+%_while_using_flask"]=2657, - ["weapon_fire_damage_+%"]=1964, - ["weapon_hellscaping_speed_+%"]=6756, - ["weapon_lightning_damage_+%"]=1966, - ["weapon_physical_damage_%_to_add_as_each_element"]=4147, - ["weapon_physical_damage_%_to_add_as_random_element"]=2832, - ["weapon_physical_damage_+%"]=2645, - ["weapon_tree_cast_speed_+%_final"]=10075, - ["weapon_tree_counterattacks_damage_+%_final"]=10076, - ["weapon_tree_damage_+%_final"]=10077, - ["weapon_tree_local_sell_price_ancient_orb"]=10078, - ["weapon_tree_local_sell_price_awakened_sextant"]=10079, - ["weapon_tree_local_sell_price_blessed_orb"]=10080, - ["weapon_tree_local_sell_price_chaos_orb"]=10081, - ["weapon_tree_local_sell_price_crystalline_geode"]=10082, - ["weapon_tree_local_sell_price_divine_orb"]=10083, - ["weapon_tree_local_sell_price_exalted_orb"]=10084, - ["weapon_tree_local_sell_price_for_additional_crucible_experience"]=10085, - ["weapon_tree_local_sell_price_for_additional_specific_currency"]=10086, - ["weapon_tree_local_sell_price_for_additional_specific_unique"]=10087, - ["weapon_tree_local_sell_price_gemcutters_prism"]=10088, - ["weapon_tree_local_sell_price_igneous_geode"]=10089, - ["weapon_tree_local_sell_price_mirror_shard"]=10090, - ["weapon_tree_local_sell_price_of_tree_nodes_doubled"]=10091, - ["weapon_tree_local_sell_price_orb_of_annulment"]=10092, - ["weapon_tree_local_sell_price_orb_of_regret"]=10093, - ["weapon_tree_local_sell_price_regal_orb"]=10094, - ["weapon_tree_local_sell_price_sacred_orb"]=10095, - ["weapon_tree_local_sell_price_scouring_orb"]=10096, - ["weapon_tree_local_sell_price_vaal_orb"]=10097, - ["weapon_tree_local_sell_price_vault_key"]=10098, - ["weapon_tree_maximum_mana_+%_final"]=10099, - ["weapon_tree_throw_traps_in_circle_radius"]=10100, - ["while_curse_is_25%_expired_hinder_enemy_%"]=10101, - ["while_curse_is_33%_expired_malediction"]=10102, - ["while_curse_is_50%_expired_curse_effect_+%"]=10103, - ["while_curse_is_75%_expired_enemy_damage_taken_+%"]=10104, - ["while_stationary_gain_additional_physical_damage_reduction_%"]=10105, - ["while_stationary_gain_life_regeneration_rate_per_minute_%"]=10106, - ["while_using_mace_stun_threshold_reduction_+%"]=1425, - ["while_using_sword_reduce_enemy_block_%"]=1807, - ["whirling_blades_attack_speed_+%"]=3754, - ["whirling_blades_damage_+%"]=3598, - ["wild_strike_damage_+%"]=3573, - ["wild_strike_num_of_additional_projectiles_in_chain"]=3886, - ["wild_strike_radius_+%"]=3714, - ["winter_brand_chill_effect_+%"]=10107, - ["winter_brand_damage_+%"]=10108, - ["winter_brand_max_number_of_stages_+"]=10109, - ["wintertide_and_arcanist_brand_branded_enemy_explode_for_25%_life_as_chaos_on_death_chance_%"]=10110, - ["with_bow_additional_block_%"]=2360, - ["wither_area_of_effect_+%_every_second_while_channelling_up_to_+200%"]=10111, - ["wither_duration_+%"]=3810, - ["wither_expire_speed_+%"]=10112, - ["wither_radius_+%"]=3726, - ["withered_effect_+%"]=10114, - ["withered_effect_on_self_+%"]=10113, - ["withered_on_hit_for_2_seconds_%_chance"]=4282, - ["withered_on_hit_for_2_seconds_if_enemy_has_5_or_less_withered_chance_%"]=10115, - ["wrath_aura_effect_+%"]=3251, - ["wrath_mana_reservation_+%"]=3928, - ["wrath_mana_reservation_efficiency_+%"]=10117, - ["wrath_mana_reservation_efficiency_-2%_per_1"]=10116, - ["wrath_reserves_no_mana"]=10118, - ["x_to_maximum_life_per_2_intelligence"]=1924, - ["you_and_allies_additional_block_%_if_have_attacked_recently"]=10119, - ["you_and_allies_additional_spell_block_%_if_cast_spell_recently"]=10120, - ["you_and_allies_affected_by_your_placed_banners_regenerate_%_life_per_minute_per_resource"]=3957, - ["you_and_minion_attack_and_cast_speed_+%_for_4_seconds_when_corpse_destroyed"]=3958, - ["you_and_nearby_allies_armour_+_if_have_impaled_recently"]=10121, - ["you_and_nearby_allies_critical_strike_chance_+%"]=10122, - ["you_and_nearby_allies_critical_strike_multiplier_+"]=10123, - ["you_and_nearby_allies_life_regeneration_rate_per_minute_%_if_corpse_consumed_recently"]=10124, - ["you_and_nearby_allies_life_regeneration_rate_per_minute_%_if_have_blocked_recently"]=10125, - ["you_and_nearby_allies_life_regeneration_rate_per_minute_%_if_you_hit_an_enemy_recently"]=10126, - ["you_and_nearby_allys_gain_onslaught_for_4_seconds_on_warcry"]=10127, - ["you_and_nearby_party_members_gain_x_rage_when_you_warcry"]=10128, - ["you_and_totem_life_regeneration_rate_per_minute_%_per_active_totem"]=10129, - ["you_and_your_totems_gain_an_endurance_charge_on_burning_enemy_kill_%"]=3217, - ["you_are_blind"]=10130, - ["you_are_cursed_with_conductivity"]=10131, - ["you_are_cursed_with_despair"]=10132, - ["you_are_cursed_with_elemental_weakness"]=10133, - ["you_are_cursed_with_enfeeble"]=10134, - ["you_are_cursed_with_flammability"]=10135, - ["you_are_cursed_with_frostbite"]=10136, - ["you_are_cursed_with_temporal_chains"]=10137, - ["you_are_cursed_with_vulnerability"]=10138, - ["you_cannot_be_hindered"]=10139, - ["you_cannot_have_non_animated_minions"]=10140, - ["you_cannot_have_non_golem_minions"]=3578, - ["you_cannot_have_non_spectre_minions"]=10141, - ["you_cannot_inflict_curses"]=10142, - ["you_count_as_full_life_while_affected_by_vulnerability"]=3009, - ["you_count_as_low_life_while_affected_by_vulnerability"]=3010, - ["you_count_as_low_life_while_not_on_full_life"]=10143, - ["you_have_feeding_frenzy_if_have_blocked_recently"]=10144, - ["you_have_no_armour_or_energy_shield"]=10145, - ["you_have_your_maximum_fortification"]=10146, - ["you_have_zealots_oath_if_you_havent_been_hit_recently"]=10309, - ["your_aegis_skills_except_primal_are_disabled"]=753, - ["your_ailments_deal_damage_faster_%_while_affected_by_malevolence"]=10148, - ["your_attacks_cannot_be_blocked"]=10149, - ["your_auras_except_anger_are_disabled"]=10150, - ["your_auras_except_clarity_are_disabled"]=10151, - ["your_auras_except_determination_are_disabled"]=10152, - ["your_auras_except_discipline_are_disabled"]=10153, - ["your_auras_except_grace_are_disabled"]=10154, - ["your_auras_except_haste_are_disabled"]=10155, - ["your_auras_except_hatred_are_disabled"]=10156, - ["your_auras_except_malevolence_are_disabled"]=10157, - ["your_auras_except_precision_are_disabled"]=10158, - ["your_auras_except_pride_are_disabled"]=10159, - ["your_auras_except_purity_of_elements_are_disabled"]=10160, - ["your_auras_except_purity_of_fire_are_disabled"]=10161, - ["your_auras_except_purity_of_ice_are_disabled"]=10162, - ["your_auras_except_purity_of_lightning_are_disabled"]=10163, - ["your_auras_except_vitality_are_disabled"]=10164, - ["your_auras_except_wrath_are_disabled"]=10165, - ["your_auras_except_zealotry_are_disabled"]=10166, - ["your_consecrated_ground_effect_lingers_for_ms_after_leaving_the_area"]=10168, - ["your_consecrated_ground_grants_damage_+%"]=4117, - ["your_consecrated_ground_grants_max_chaos_resistance_+"]=10167, - ["your_marks_transfer_to_nearby_enemies_on_death_%_chance"]=10169, - ["your_minions_gain_added_physical_damage_equal_to_%_of_energy_shield_on_helmet"]=10170, - ["your_movement_skills_are_disabled"]=10171, - ["your_profane_ground_effect_lingers_for_ms_after_leaving_the_area"]=10172, - ["your_skeletons_gain_added_chaos_damage_equal_to_%_of_energy_shield_on_shield"]=10173, - ["your_spells_are_disabled"]=10174, - ["your_travel_skills_are_disabled"]=10175, - ["your_travel_skills_except_dash_are_disabled"]=10176, - ["zealotry_aura_effect_+%"]=10193, - ["zealotry_mana_reservation_+%"]=10196, - ["zealotry_mana_reservation_efficiency_+%"]=10195, - ["zealotry_mana_reservation_efficiency_-2%_per_1"]=10194, - ["zealotry_reserves_no_mana"]=10197, - ["zero_chaos_resistance"]=10198, - ["zero_elemental_resistance"]=2732, - ["zombie_attack_speed_+%"]=3742, - ["zombie_caustic_cloud_on_death_maximum_life_per_minute_to_deal_as_chaos_damage_%"]=10224, - ["zombie_chaos_elemental_damage_resistance_%"]=2490, - ["zombie_damage_+%"]=3530, - ["zombie_damage_leeched_as_life_to_you_permyriad_if_over_1000_strength"]=10225, - ["zombie_elemental_resistances_%"]=3869, - ["zombie_explode_on_kill_%_fire_damage_to_deal"]=2579, - ["zombie_maximum_life_+"]=2489, - ["zombie_physical_damage_+%"]=2578, - ["zombie_physical_damage_+%_final"]=10226, - ["zombie_scale_+%"]=2577, - ["zombie_slam_area_of_effect_+%"]=10227, - ["zombie_slam_cooldown_speed_+%"]=10228, - ["zombie_slam_damage_+%"]=10229 + ["utility_flask_charges_recovered_per_3_seconds"]=10320, + ["utility_flask_cold_damage_taken_+%_final"]=10321, + ["utility_flask_fire_damage_taken_+%_final"]=10322, + ["utility_flask_lightning_damage_taken_+%_final"]=10323, + ["vaal_attack_rage_cost_instead_of_souls_per_use"]=2623, + ["vaal_skill_critical_strike_chance_+%"]=3039, + ["vaal_skill_critical_strike_multiplier_+"]=3040, + ["vaal_skill_damage_+%"]=3027, + ["vaal_skill_effect_duration_+%"]=3037, + ["vaal_skill_gem_level_+"]=10324, + ["vaal_skill_soul_gain_preventation_duration_+%"]=3038, + ["vaal_skill_soul_refund_chance_%"]=10325, + ["vaal_skill_soul_requirement_+%"]=10326, + ["vaal_skill_store_uses_+"]=10327, + ["vaal_skills_area_of_effect_+%"]=10328, + ["vaal_skills_aura_effect_+%"]=10329, + ["vaal_souls_gained_per_minute"]=10330, + ["vaal_volcanic_fissure_molten_strike_soul_gain_prevention_+%"]=10331, + ["vampiric_link_duration_+%"]=10332, + ["vengeance_cooldown_speed_+%"]=3818, + ["vengeance_damage_+%"]=3654, + ["vigilant_and_flicker_strike_active_skill_cooldown_bypass_type_override_to_power_charge"]=10333, + ["vigilant_strike_applies_to_nearby_allies_for_X_seconds"]=3181, + ["vigilant_strike_damage_+%"]=3642, + ["vigilant_strike_fortify_duration_+%"]=3838, + ["viper_and_pestilent_strike_attack_damage_+%_per_frenzy_charge"]=10334, + ["viper_strike_attack_damage_per_poison_on_enemy_+%"]=3165, + ["viper_strike_chance_to_gain_unholy_might_%_on_hit_per_poison_stack_on_enemy"]=10335, + ["viper_strike_critical_strike_chance_+%"]=3871, + ["viper_strike_damage_+%"]=3584, + ["viper_strike_dual_wield_attack_speed_+%_final"]=10336, + ["viper_strike_dual_wield_damage_+%_final"]=10337, + ["viper_strike_poison_duration_+%"]=3860, + ["virtual_base_maximum_energy_shield_to_grant_to_you_and_nearby_allies"]=3324, + ["virtual_block_%_damage_taken"]=10338, + ["virtual_energy_shield_delay_-%"]=3510, + ["virtual_energy_shield_recharge_rate_+%"]=3512, + ["virtual_light_radius_+%"]=2434, + ["virtual_mana_gain_per_target"]=1681, + ["virtual_minion_damage_+%"]=1908, + ["virtual_number_of_ranged_animated_weapons_allowed"]=3202, + ["virtual_support_anticipation_charge_gain_interval_ms"]=10518, + ["virulent_arrow_additional_spores_at_max_stages"]=10340, + ["virulent_arrow_chance_to_poison_%_per_stage"]=10341, + ["vitality_mana_reservation_+%"]=3973, + ["vitality_mana_reservation_efficiency_+%"]=10343, + ["vitality_mana_reservation_efficiency_-2%_per_1"]=10342, + ["vitality_reserves_no_mana"]=10344, + ["void_sphere_cooldown_speed_+%"]=10345, + ["volatile_dead_and_cremation_penetrate_%_fire_resistance_per_100_dexterity"]=10346, + ["volatile_dead_base_number_of_corpses_to_consume"]=10347, + ["volatile_dead_cast_speed_+%"]=10348, + ["volatile_dead_consume_additional_corpse"]=10349, + ["volatile_dead_damage_+%"]=10350, + ["volcanic_fissure_damage_+%"]=10351, + ["volcanic_fissure_number_of_additional_projectiles"]=10352, + ["volcanic_fissure_speed_+%"]=10353, + ["voltaxic_burst_damage_+%"]=10354, + ["voltaxic_burst_damage_+%_per_100ms_duration"]=10355, + ["voltaxic_burst_skill_area_of_effect_+%"]=10356, + ["vortex_active_skill_additional_critical_strike_chance_if_used_through_frostbolt"]=10357, + ["vortex_area_of_effect_+%_when_cast_on_frostbolt"]=10358, + ["vulnerability_curse_effect_+%"]=3948, + ["vulnerability_duration_+%"]=3843, + ["vulnerability_ignores_hexproof"]=2542, + ["vulnerability_mana_reservation_+%"]=3982, + ["vulnerability_no_reservation"]=10359, + ["wake_of_destruction_ground_lightning_duration_ms"]=4242, + ["wand_accuracy_rating"]=1944, + ["wand_accuracy_rating_+%"]=1380, + ["wand_ailment_damage_+%"]=1282, + ["wand_attack_speed_+%"]=1362, + ["wand_attacks_fire_an_additional_projectile"]=10360, + ["wand_critical_strike_chance_+%"]=1406, + ["wand_critical_strike_multiplier_+"]=1433, + ["wand_damage_+%"]=2876, + ["wand_damage_+%_if_crit_recently"]=10361, + ["wand_damage_+%_per_power_charge"]=2074, + ["wand_elemental_damage_+%"]=2054, + ["wand_hit_and_ailment_damage_+%"]=1281, + ["wand_physical_damage_%_to_add_as_chaos"]=10362, + ["wand_physical_damage_%_to_add_as_cold"]=1970, + ["wand_physical_damage_%_to_add_as_fire"]=1969, + ["wand_physical_damage_%_to_add_as_lightning"]=1971, + ["wand_physical_damage_%_to_convert_to_lightning"]=10363, + ["war_banner_aura_effect_+%"]=10364, + ["war_banner_mana_reservation_efficiency_+%"]=10365, + ["warcries_apply_cover_in_ash_for_X_ms"]=10366, + ["warcries_are_instant"]=3395, + ["warcries_cost_%_of_life"]=10367, + ["warcries_cost_no_mana"]=4065, + ["warcries_debilitate_enemies_for_1_second"]=10368, + ["warcries_exert_twice_as_many_attacks"]=10369, + ["warcries_have_infinite_power"]=10375, + ["warcries_have_minimum_10_power"]=10370, + ["warcries_knock_back_enemies"]=10371, + ["warcry_buff_effect_+%"]=10372, + ["warcry_chance_to_gain_frenzy_power_endurance_charge_%_per_power"]=10373, + ["warcry_cooldown_modifier_ms"]=10374, + ["warcry_cooldown_speed_+%"]=3261, + ["warcry_count_power_from_enemies"]=10375, + ["warcry_damage_taken_goes_to_mana_%"]=3194, + ["warcry_duration_+%"]=3134, + ["warcry_empowers_next_x_melee_attacks"]=10376, + ["warcry_gain_mp_from_allies"]=10375, + ["warcry_gain_mp_from_corpses"]=10375, + ["warcry_grant_X_rage_per_5_power"]=10377, + ["warcry_monster_power_+%"]=10378, + ["warcry_physical_damage_reduction_rating_+%_per_5_power_for_8_seconds"]=10379, + ["warcry_skill_area_of_effect_+%"]=10380, + ["warcry_skills_cooldown_is_4_seconds"]=10381, + ["warcry_speed_+%"]=3209, + ["warcry_speed_+%_if_not_warcried_recently"]=10382, + ["ward_+%"]=1464, + ["ward_delay_recovery_+%"]=1466, + ["ward_delay_recovery_+%_per_enemy_hit_taken_recently"]=10383, + ["ward_from_armour_item_+%"]=10384, + ["ward_instead_of_%_body_armour_and_evasion"]=10385, + ["warden_tincture_toxicity_rate_+%_final"]=10386, + ["warden_tracker"]=10387, + ["warlords_mark_curse_effect_+%"]=3949, + ["warlords_mark_duration_+%"]=3842, + ["water_sphere_cold_lightning_exposure_%"]=10388, + ["water_sphere_damage_+%"]=10389, + ["weapon_chaos_damage_+%"]=1999, + ["weapon_cold_damage_+%"]=1997, + ["weapon_elemental_damage_+%"]=1291, + ["weapon_elemental_damage_+%_per_power_charge"]=2615, + ["weapon_elemental_damage_+%_while_using_flask"]=2692, + ["weapon_fire_damage_+%"]=1996, + ["weapon_hellscaping_speed_+%"]=6989, + ["weapon_lightning_damage_+%"]=1998, + ["weapon_physical_damage_%_to_add_as_each_element"]=4193, + ["weapon_physical_damage_%_to_add_as_random_element"]=2868, + ["weapon_physical_damage_+%"]=2680, + ["weapon_tree_cast_speed_+%_final"]=10390, + ["weapon_tree_counterattacks_damage_+%_final"]=10391, + ["weapon_tree_damage_+%_final"]=10392, + ["weapon_tree_local_sell_price_ancient_orb"]=10393, + ["weapon_tree_local_sell_price_awakened_sextant"]=10394, + ["weapon_tree_local_sell_price_blessed_orb"]=10395, + ["weapon_tree_local_sell_price_chaos_orb"]=10396, + ["weapon_tree_local_sell_price_crystalline_geode"]=10397, + ["weapon_tree_local_sell_price_divine_orb"]=10398, + ["weapon_tree_local_sell_price_exalted_orb"]=10399, + ["weapon_tree_local_sell_price_for_additional_crucible_experience"]=10400, + ["weapon_tree_local_sell_price_for_additional_specific_currency"]=10401, + ["weapon_tree_local_sell_price_for_additional_specific_unique"]=10402, + ["weapon_tree_local_sell_price_gemcutters_prism"]=10403, + ["weapon_tree_local_sell_price_igneous_geode"]=10404, + ["weapon_tree_local_sell_price_mirror_shard"]=10405, + ["weapon_tree_local_sell_price_of_tree_nodes_doubled"]=10406, + ["weapon_tree_local_sell_price_orb_of_annulment"]=10407, + ["weapon_tree_local_sell_price_orb_of_regret"]=10408, + ["weapon_tree_local_sell_price_regal_orb"]=10409, + ["weapon_tree_local_sell_price_sacred_orb"]=10410, + ["weapon_tree_local_sell_price_scouring_orb"]=10411, + ["weapon_tree_local_sell_price_vaal_orb"]=10412, + ["weapon_tree_local_sell_price_vault_key"]=10413, + ["weapon_tree_maximum_mana_+%_final"]=10414, + ["weapon_tree_throw_traps_in_circle_radius"]=10415, + ["while_curse_is_25%_expired_hinder_enemy_%"]=10416, + ["while_curse_is_33%_expired_malediction"]=10417, + ["while_curse_is_50%_expired_curse_effect_+%"]=10418, + ["while_curse_is_75%_expired_enemy_damage_taken_+%"]=10419, + ["while_stationary_gain_additional_physical_damage_reduction_%"]=10420, + ["while_stationary_gain_life_regeneration_rate_per_minute_%"]=10421, + ["while_using_mace_stun_threshold_reduction_+%"]=1453, + ["while_using_sword_reduce_enemy_block_%"]=1837, + ["whirling_blades_attack_speed_+%"]=3800, + ["whirling_blades_damage_+%"]=3643, + ["wild_strike_damage_+%"]=3618, + ["wild_strike_num_of_additional_projectiles_in_chain"]=3932, + ["wild_strike_radius_+%"]=3760, + ["winter_brand_chill_effect_+%"]=10422, + ["winter_brand_damage_+%"]=10423, + ["winter_brand_max_number_of_stages_+"]=10424, + ["wintertide_and_arcanist_brand_branded_enemy_explode_for_25%_life_as_chaos_on_death_chance_%"]=10425, + ["with_bow_additional_block_%"]=2393, + ["wither_area_of_effect_+%_every_second_while_channelling_up_to_+200%"]=10426, + ["wither_duration_+%"]=3856, + ["wither_expire_speed_+%"]=10427, + ["wither_radius_+%"]=3772, + ["withered_effect_+%"]=10429, + ["withered_effect_on_self_+%"]=10428, + ["withered_on_hit_for_2_seconds_%_chance"]=4328, + ["withered_on_hit_for_2_seconds_if_enemy_has_5_or_less_withered_chance_%"]=10430, + ["wrath_aura_effect_+%"]=3293, + ["wrath_aura_effect_+%_while_at_maximum_power_charges"]=10431, + ["wrath_mana_reservation_+%"]=3974, + ["wrath_mana_reservation_efficiency_+%"]=10433, + ["wrath_mana_reservation_efficiency_-2%_per_1"]=10432, + ["wrath_reserves_no_mana"]=10434, + ["x%_life_regeneration_applies_to_energy_shield"]=10435, + ["x%_life_regeneration_applies_to_energy_shield_with_no_corrupted_equipped_items"]=10436, + ["x_to_maximum_life_per_2_intelligence"]=1956, + ["you_and_allies_additional_block_%_if_have_attacked_recently"]=10439, + ["you_and_allies_additional_spell_block_%_if_cast_spell_recently"]=10440, + ["you_and_allies_affected_by_your_placed_banners_regenerate_%_life_per_minute_per_resource"]=4003, + ["you_and_minion_attack_and_cast_speed_+%_for_4_seconds_when_corpse_destroyed"]=4004, + ["you_and_nearby_allies_armour_+_if_have_impaled_recently"]=10441, + ["you_and_nearby_allies_critical_strike_chance_+%"]=10442, + ["you_and_nearby_allies_critical_strike_multiplier_+"]=10443, + ["you_and_nearby_allies_life_regeneration_rate_per_minute_%_if_corpse_consumed_recently"]=10444, + ["you_and_nearby_allies_life_regeneration_rate_per_minute_%_if_have_blocked_recently"]=10445, + ["you_and_nearby_allies_life_regeneration_rate_per_minute_%_if_you_hit_an_enemy_recently"]=10446, + ["you_and_nearby_allys_gain_onslaught_for_4_seconds_on_warcry"]=10447, + ["you_and_nearby_party_members_gain_x_rage_when_you_warcry"]=10448, + ["you_and_totem_life_regeneration_rate_per_minute_%_per_active_totem"]=10449, + ["you_and_your_totems_gain_an_endurance_charge_on_burning_enemy_kill_%"]=3259, + ["you_are_blind"]=10450, + ["you_are_cursed_with_conductivity"]=10451, + ["you_are_cursed_with_despair"]=10452, + ["you_are_cursed_with_elemental_weakness"]=10453, + ["you_are_cursed_with_enfeeble"]=10454, + ["you_are_cursed_with_flammability"]=10455, + ["you_are_cursed_with_frostbite"]=10456, + ["you_are_cursed_with_temporal_chains"]=10457, + ["you_are_cursed_with_vulnerability"]=10458, + ["you_cannot_be_hindered"]=10459, + ["you_cannot_have_non_animated_minions"]=10460, + ["you_cannot_have_non_golem_minions"]=3623, + ["you_cannot_have_non_spectre_minions"]=10461, + ["you_cannot_impale_impaled_enemies"]=10462, + ["you_cannot_inflict_curses"]=10463, + ["you_count_as_full_life_while_affected_by_vulnerability"]=3051, + ["you_count_as_low_life_while_affected_by_vulnerability"]=3052, + ["you_count_as_low_life_while_not_on_full_life"]=10464, + ["you_have_feeding_frenzy_if_have_blocked_recently"]=10465, + ["you_have_no_armour_or_energy_shield"]=10466, + ["you_have_your_maximum_fortification"]=10467, + ["you_have_zealots_oath_if_you_havent_been_hit_recently"]=10638, + ["your_aegis_skills_except_primal_are_disabled"]=774, + ["your_ailments_deal_damage_faster_%_while_affected_by_malevolence"]=10469, + ["your_attacks_cannot_be_blocked"]=10470, + ["your_auras_except_anger_are_disabled"]=10471, + ["your_auras_except_clarity_are_disabled"]=10472, + ["your_auras_except_determination_are_disabled"]=10473, + ["your_auras_except_discipline_are_disabled"]=10474, + ["your_auras_except_grace_are_disabled"]=10475, + ["your_auras_except_haste_are_disabled"]=10476, + ["your_auras_except_hatred_are_disabled"]=10477, + ["your_auras_except_malevolence_are_disabled"]=10478, + ["your_auras_except_precision_are_disabled"]=10479, + ["your_auras_except_pride_are_disabled"]=10480, + ["your_auras_except_purity_of_elements_are_disabled"]=10481, + ["your_auras_except_purity_of_fire_are_disabled"]=10482, + ["your_auras_except_purity_of_ice_are_disabled"]=10483, + ["your_auras_except_purity_of_lightning_are_disabled"]=10484, + ["your_auras_except_vitality_are_disabled"]=10485, + ["your_auras_except_wrath_are_disabled"]=10486, + ["your_auras_except_zealotry_are_disabled"]=10487, + ["your_consecrated_ground_effect_lingers_for_ms_after_leaving_the_area"]=10489, + ["your_consecrated_ground_grants_damage_+%"]=4163, + ["your_consecrated_ground_grants_max_chaos_resistance_+"]=10488, + ["your_marks_transfer_to_nearby_enemies_on_death_%_chance"]=10490, + ["your_minions_gain_added_physical_damage_equal_to_%_of_energy_shield_on_helmet"]=10491, + ["your_movement_skills_are_disabled"]=10492, + ["your_profane_ground_also_affects_allies_granting_chaotic_might"]=10493, + ["your_profane_ground_effect_lingers_for_ms_after_leaving_the_area"]=10494, + ["your_skeletons_gain_added_chaos_damage_equal_to_%_of_energy_shield_on_shield"]=10495, + ["your_spells_are_disabled"]=10496, + ["your_travel_skills_are_disabled"]=10497, + ["your_travel_skills_except_dash_are_disabled"]=10498, + ["your_warcry_skills_are_disabled"]=10499, + ["zealotry_aura_effect_+%"]=10519, + ["zealotry_mana_reservation_+%"]=10522, + ["zealotry_mana_reservation_efficiency_+%"]=10521, + ["zealotry_mana_reservation_efficiency_-2%_per_1"]=10520, + ["zealotry_reserves_no_mana"]=10523, + ["zero_chaos_resistance"]=10524, + ["zero_elemental_resistance"]=2768, + ["zombie_attack_speed_+%"]=3788, + ["zombie_caustic_cloud_on_death_maximum_life_per_minute_to_deal_as_chaos_damage_%"]=10550, + ["zombie_chaos_elemental_damage_resistance_%"]=2523, + ["zombie_damage_+%"]=3575, + ["zombie_damage_leeched_as_life_to_you_permyriad_if_over_1000_strength"]=10551, + ["zombie_elemental_resistances_%"]=3915, + ["zombie_explode_on_kill_%_fire_damage_to_deal"]=2614, + ["zombie_maximum_life_+"]=2522, + ["zombie_physical_damage_+%"]=2613, + ["zombie_physical_damage_+%_final"]=10552, + ["zombie_scale_+%"]=2612, + ["zombie_slam_area_of_effect_+%"]=10553, + ["zombie_slam_cooldown_speed_+%"]=10554, + ["zombie_slam_damage_+%"]=10555 } \ No newline at end of file diff --git a/src/Data/TattooPassives.lua b/src/Data/TattooPassives.lua index d3e9254bca..f22ff21f76 100644 --- a/src/Data/TattooPassives.lua +++ b/src/Data/TattooPassives.lua @@ -36,7 +36,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10324, + ["statOrder"] = 10653, }, }, ["targetType"] = "Keystone", @@ -65,7 +65,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10318, + ["statOrder"] = 10647, }, }, ["targetType"] = "Keystone", @@ -122,7 +122,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10329, + ["statOrder"] = 10658, }, }, ["targetType"] = "Keystone", @@ -151,7 +151,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10316, + ["statOrder"] = 10645, }, }, ["targetType"] = "Keystone", @@ -182,7 +182,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10330, + ["statOrder"] = 10659, }, }, ["targetType"] = "Keystone", @@ -211,7 +211,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10372, + ["statOrder"] = 10701, }, }, ["targetType"] = "Keystone", @@ -239,7 +239,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10333, + ["statOrder"] = 10662, }, }, ["targetType"] = "Keystone", @@ -267,7 +267,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10328, + ["statOrder"] = 10657, }, }, ["targetType"] = "Keystone", @@ -297,7 +297,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10361, + ["statOrder"] = 10690, }, }, ["targetType"] = "Keystone", @@ -326,7 +326,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10376, + ["statOrder"] = 10705, }, }, ["targetType"] = "Keystone", @@ -356,7 +356,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10317, + ["statOrder"] = 10646, }, }, ["targetType"] = "Keystone", @@ -385,7 +385,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10332, + ["statOrder"] = 10661, }, }, ["targetType"] = "Keystone", @@ -415,7 +415,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10377, + ["statOrder"] = 10706, }, }, ["targetType"] = "Keystone", @@ -445,7 +445,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10379, + ["statOrder"] = 10708, }, }, ["targetType"] = "Keystone", @@ -475,7 +475,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10381, + ["statOrder"] = 10710, }, }, ["targetType"] = "Keystone", @@ -505,7 +505,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10382, + ["statOrder"] = 10711, }, }, ["targetType"] = "Keystone", @@ -535,7 +535,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10383, + ["statOrder"] = 10712, }, }, ["targetType"] = "Keystone", @@ -564,7 +564,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10385, + ["statOrder"] = 10714, }, }, ["targetType"] = "Keystone", @@ -1091,7 +1091,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10400, + ["statOrder"] = 10729, }, }, ["targetType"] = "Keystone", @@ -1119,7 +1119,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10326, + ["statOrder"] = 10655, }, }, ["targetType"] = "Keystone", @@ -1147,7 +1147,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10315, + ["statOrder"] = 10644, }, }, ["targetType"] = "Keystone", @@ -1175,7 +1175,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10416, + ["statOrder"] = 10745, }, }, ["targetType"] = "Keystone", @@ -1282,7 +1282,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10387, + ["statOrder"] = 10716, }, }, ["targetType"] = "Keystone", @@ -1627,7 +1627,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10388, + ["statOrder"] = 10717, }, }, ["targetType"] = "Keystone", @@ -1655,7 +1655,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10340, + ["statOrder"] = 10669, }, }, ["targetType"] = "Keystone", @@ -1683,7 +1683,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10331, + ["statOrder"] = 10660, }, }, ["targetType"] = "Keystone", @@ -1711,7 +1711,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 2069, + ["statOrder"] = 2101, }, }, ["targetType"] = "Keystone", @@ -1739,7 +1739,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10325, + ["statOrder"] = 10654, }, }, ["targetType"] = "Keystone", @@ -1769,7 +1769,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10369, + ["statOrder"] = 10698, }, }, ["targetType"] = "Keystone", @@ -1797,7 +1797,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10327, + ["statOrder"] = 10656, }, }, ["targetType"] = "Keystone", @@ -1826,7 +1826,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10394, + ["statOrder"] = 10723, }, }, ["targetType"] = "Keystone", @@ -1855,7 +1855,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10341, + ["statOrder"] = 10670, }, }, ["targetType"] = "Keystone", @@ -1884,7 +1884,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10399, + ["statOrder"] = 10728, }, }, ["targetType"] = "Keystone", @@ -2037,11 +2037,11 @@ return { ["targetType"] = "Mastery", ["targetValue"] = "", }, - ["Runegraft of Recompense"] = { + ["Runegraft of Refraction"] = { ["MaximumConnected"] = 100, ["MinimumConnected"] = 0, ["activeEffectImage"] = "Art/2DArt/UIImages/InGame/Village/RuneCraftingPassiveBG.png", - ["dn"] = "Runegraft of Recompense", + ["dn"] = "Runegraft of Refraction", ["icon"] = "Art/2DArt/SkillIcons/passives/AtlasTrees/RuneGraftingIcon7.png", ["id"] = "runegraft_21", ["isTattoo"] = true, @@ -2052,14 +2052,26 @@ return { ["not"] = false, ["overrideType"] = "AlternateMastery", ["sd"] = { - [1] = "Recover 10% of Skill Mana Cost per unspent Chain when Projectiles end, up to 50%", - [2] = "Limited to 1 Runegraft of Recompense", + [1] = "Fire at most 1 Projectile", + [2] = "Skills Chain +1 times", + [3] = "Projectiles Fork", + [4] = "Limited to 1 Runegraft of Refraction", }, ["stats"] = { - ["recover_%_of_skill_mana_cost_per_unspent_chain_up_to_50%"] = { + ["maximum_number_of_projectiles_to_fire_is_1"] = { ["fmt"] = "d", - ["max"] = 10, - ["min"] = 10, + ["max"] = 1, + ["min"] = 1, + }, + ["number_of_chains"] = { + ["fmt"] = "d", + ["max"] = 1, + ["min"] = 1, + }, + ["projectiles_fork"] = { + ["fmt"] = "d", + ["max"] = 1, + ["min"] = 1, }, }, ["targetType"] = "Mastery", @@ -2526,7 +2538,7 @@ return { ["overrideType"] = "AlternateMastery", ["sd"] = { [1] = "Spells deal added Chaos Damage equal to 2% of your maximum Life", - [2] = "Spells have an additional Life cost equal to 8% of your Maximum Life", + [2] = "Spells Cost +8% of Life", [3] = "Limited to 1 Runegraft of the Witchmark", }, ["stats"] = { @@ -2567,7 +2579,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10404, + ["statOrder"] = 10733, }, }, ["targetType"] = "Keystone", @@ -2597,7 +2609,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10407, + ["statOrder"] = 10736, }, }, ["targetType"] = "Keystone", @@ -4212,7 +4224,7 @@ return { ["not"] = false, ["overrideType"] = "KeystoneTattoo", ["sd"] = { - [1] = "Maximum Energy Shield is 0", + [1] = "Removes all Energy Shield", [2] = "While not on Full Life, Sacrifice 20% of Mana per Second to Recover that much Life", [3] = "Limited to 1 Keystone Tattoo", }, @@ -4222,7 +4234,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10391, + ["statOrder"] = 10720, }, }, ["targetType"] = "Keystone", @@ -4252,7 +4264,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10386, + ["statOrder"] = 10715, }, }, ["targetType"] = "Keystone", @@ -4281,7 +4293,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10342, + ["statOrder"] = 10671, }, }, ["targetType"] = "Keystone", @@ -4310,7 +4322,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10334, + ["statOrder"] = 10663, }, }, ["targetType"] = "Keystone", @@ -4340,7 +4352,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10412, + ["statOrder"] = 10741, }, }, ["targetType"] = "Keystone", @@ -4369,7 +4381,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10414, + ["statOrder"] = 10743, }, }, ["targetType"] = "Keystone", @@ -4399,7 +4411,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10415, + ["statOrder"] = 10744, }, }, ["targetType"] = "Keystone", @@ -4427,7 +4439,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10335, + ["statOrder"] = 10664, }, }, ["targetType"] = "Keystone", diff --git a/src/Data/TimelessJewelData/LegionPassives.lua b/src/Data/TimelessJewelData/LegionPassives.lua index e1dafddc9a..297b436422 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"] = 1241, + ["statOrder"] = 1268, }, }, }, @@ -37,7 +37,7 @@ return { ["index"] = 1, ["max"] = 12, ["min"] = 7, - ["statOrder"] = 1250, + ["statOrder"] = 1277, }, }, }, @@ -56,7 +56,7 @@ return { ["index"] = 1, ["max"] = 12, ["min"] = 7, - ["statOrder"] = 1261, + ["statOrder"] = 1288, }, }, }, @@ -75,7 +75,7 @@ return { ["index"] = 1, ["max"] = 12, ["min"] = 7, - ["statOrder"] = 10364, + ["statOrder"] = 10693, }, }, }, @@ -94,7 +94,7 @@ return { ["index"] = 1, ["max"] = 12, ["min"] = 7, - ["statOrder"] = 1269, + ["statOrder"] = 1296, }, }, }, @@ -113,7 +113,7 @@ return { ["index"] = 1, ["max"] = 13, ["min"] = 8, - ["statOrder"] = 1852, + ["statOrder"] = 1882, }, }, }, @@ -132,7 +132,7 @@ return { ["index"] = 1, ["max"] = 12, ["min"] = 7, - ["statOrder"] = 1083, + ["statOrder"] = 1110, }, }, }, @@ -151,7 +151,7 @@ return { ["index"] = 1, ["max"] = 12, ["min"] = 7, - ["statOrder"] = 1108, + ["statOrder"] = 1135, }, }, }, @@ -170,7 +170,7 @@ return { ["index"] = 1, ["max"] = 12, ["min"] = 7, - ["statOrder"] = 1912, + ["statOrder"] = 1944, }, }, }, @@ -189,7 +189,7 @@ return { ["index"] = 1, ["max"] = 12, ["min"] = 7, - ["statOrder"] = 1873, + ["statOrder"] = 1905, }, }, }, @@ -208,7 +208,7 @@ return { ["index"] = 1, ["max"] = 12, ["min"] = 7, - ["statOrder"] = 1095, + ["statOrder"] = 1122, }, }, }, @@ -227,7 +227,7 @@ return { ["index"] = 1, ["max"] = 7, ["min"] = 4, - ["statOrder"] = 1761, + ["statOrder"] = 1791, }, }, }, @@ -246,7 +246,7 @@ return { ["index"] = 1, ["max"] = 12, ["min"] = 7, - ["statOrder"] = 1677, + ["statOrder"] = 1707, }, }, }, @@ -265,7 +265,7 @@ return { ["index"] = 1, ["max"] = 14, ["min"] = 7, - ["statOrder"] = 10336, + ["statOrder"] = 10665, }, }, }, @@ -284,7 +284,7 @@ return { ["index"] = 1, ["max"] = 10, ["min"] = 6, - ["statOrder"] = 10337, + ["statOrder"] = 10666, }, }, }, @@ -303,7 +303,7 @@ return { ["index"] = 1, ["max"] = 4, ["min"] = 3, - ["statOrder"] = 1294, + ["statOrder"] = 1321, }, }, }, @@ -322,7 +322,7 @@ return { ["index"] = 1, ["max"] = 3, ["min"] = 2, - ["statOrder"] = 1330, + ["statOrder"] = 1357, }, }, }, @@ -341,7 +341,7 @@ return { ["index"] = 1, ["max"] = 3, ["min"] = 2, - ["statOrder"] = 1679, + ["statOrder"] = 1709, }, }, }, @@ -360,7 +360,7 @@ return { ["index"] = 1, ["max"] = 6, ["min"] = 3, - ["statOrder"] = 1903, + ["statOrder"] = 1935, }, }, }, @@ -379,7 +379,7 @@ return { ["index"] = 1, ["max"] = 6, ["min"] = 3, - ["statOrder"] = 1906, + ["statOrder"] = 1938, }, }, }, @@ -398,7 +398,7 @@ return { ["index"] = 1, ["max"] = 6, ["min"] = 3, - ["statOrder"] = 1910, + ["statOrder"] = 1942, }, }, }, @@ -417,7 +417,7 @@ return { ["index"] = 1, ["max"] = 7, ["min"] = 4, - ["statOrder"] = 1776, + ["statOrder"] = 1806, }, }, }, @@ -436,7 +436,7 @@ return { ["index"] = 1, ["max"] = 4, ["min"] = 2, - ["statOrder"] = 1453, + ["statOrder"] = 1482, }, }, }, @@ -455,7 +455,7 @@ return { ["index"] = 1, ["max"] = 6, ["min"] = 4, - ["statOrder"] = 1462, + ["statOrder"] = 1491, }, }, }, @@ -474,7 +474,7 @@ return { ["index"] = 1, ["max"] = 17, ["min"] = 12, - ["statOrder"] = 1466, + ["statOrder"] = 1495, }, }, }, @@ -493,7 +493,7 @@ return { ["index"] = 1, ["max"] = 12, ["min"] = 7, - ["statOrder"] = 1424, + ["statOrder"] = 1452, }, }, }, @@ -512,7 +512,7 @@ return { ["index"] = 1, ["max"] = 12, ["min"] = 7, - ["statOrder"] = 1432, + ["statOrder"] = 1460, }, }, }, @@ -531,7 +531,7 @@ return { ["index"] = 1, ["max"] = 5, ["min"] = 3, - ["statOrder"] = 1443, + ["statOrder"] = 1472, }, }, }, @@ -550,7 +550,7 @@ return { ["index"] = 1, ["max"] = 2, ["min"] = 2, - ["statOrder"] = 2334, + ["statOrder"] = 2367, }, }, }, @@ -569,7 +569,7 @@ return { ["index"] = 1, ["max"] = 2, ["min"] = 2, - ["statOrder"] = 1046, + ["statOrder"] = 1072, }, }, }, @@ -588,7 +588,7 @@ return { ["index"] = 1, ["max"] = 3, ["min"] = 3, - ["statOrder"] = 1724, + ["statOrder"] = 1754, }, }, }, @@ -607,7 +607,7 @@ return { ["index"] = 1, ["max"] = 4, ["min"] = 4, - ["statOrder"] = 1032, + ["statOrder"] = 1056, }, }, }, @@ -626,7 +626,7 @@ return { ["index"] = 1, ["max"] = 4, ["min"] = 2, - ["statOrder"] = 3429, + ["statOrder"] = 3474, }, }, }, @@ -645,7 +645,7 @@ return { ["index"] = 1, ["max"] = 2, ["min"] = 2, - ["statOrder"] = 2472, + ["statOrder"] = 2505, }, }, }, @@ -664,7 +664,7 @@ return { ["index"] = 1, ["max"] = 14, ["min"] = 9, - ["statOrder"] = 1507, + ["statOrder"] = 1536, }, }, }, @@ -683,7 +683,7 @@ return { ["index"] = 1, ["max"] = 14, ["min"] = 9, - ["statOrder"] = 1513, + ["statOrder"] = 1542, }, }, }, @@ -702,7 +702,7 @@ return { ["index"] = 1, ["max"] = 14, ["min"] = 9, - ["statOrder"] = 1518, + ["statOrder"] = 1547, }, }, }, @@ -721,7 +721,7 @@ return { ["index"] = 1, ["max"] = 10, ["min"] = 6, - ["statOrder"] = 1522, + ["statOrder"] = 1552, }, }, }, @@ -740,7 +740,7 @@ return { ["index"] = 1, ["max"] = 2, ["min"] = 2, - ["statOrder"] = 10302, + ["statOrder"] = 10631, }, }, }, @@ -759,7 +759,7 @@ return { ["index"] = 1, ["max"] = 4, ["min"] = 4, - ["statOrder"] = 10302, + ["statOrder"] = 10631, }, }, }, @@ -778,7 +778,7 @@ return { ["index"] = 1, ["max"] = 20, ["min"] = 20, - ["statOrder"] = 10302, + ["statOrder"] = 10631, }, }, }, @@ -797,7 +797,7 @@ return { ["index"] = 1, ["max"] = 5, ["min"] = 5, - ["statOrder"] = 10303, + ["statOrder"] = 10632, }, }, }, @@ -816,7 +816,7 @@ return { ["index"] = 1, ["max"] = 20, ["min"] = 20, - ["statOrder"] = 1424, + ["statOrder"] = 1452, }, }, }, @@ -835,7 +835,7 @@ return { ["index"] = 1, ["max"] = 0.4, ["min"] = 0.4, - ["statOrder"] = 1545, + ["statOrder"] = 1575, }, }, }, @@ -854,7 +854,7 @@ return { ["index"] = 1, ["max"] = 5, ["min"] = 5, - ["statOrder"] = 5369, + ["statOrder"] = 5557, }, }, }, @@ -873,7 +873,7 @@ return { ["index"] = 1, ["max"] = 4, ["min"] = 4, - ["statOrder"] = 1453, + ["statOrder"] = 1482, }, }, }, @@ -892,7 +892,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 4846, + ["statOrder"] = 4925, }, }, }, @@ -911,7 +911,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 1823, + ["statOrder"] = 1853, }, }, }, @@ -930,7 +930,7 @@ return { ["index"] = 1, ["max"] = 20, ["min"] = 20, - ["statOrder"] = 1507, + ["statOrder"] = 1536, }, }, }, @@ -949,7 +949,7 @@ return { ["index"] = 1, ["max"] = 20, ["min"] = 20, - ["statOrder"] = 1119, + ["statOrder"] = 1146, }, }, }, @@ -968,7 +968,7 @@ return { ["index"] = 1, ["max"] = 10, ["min"] = 10, - ["statOrder"] = 1395, + ["statOrder"] = 1423, }, }, }, @@ -987,7 +987,7 @@ return { ["index"] = 1, ["max"] = 30, ["min"] = 30, - ["statOrder"] = 1363, + ["statOrder"] = 1390, }, }, }, @@ -1006,7 +1006,7 @@ return { ["index"] = 1, ["max"] = 20, ["min"] = 20, - ["statOrder"] = 1758, + ["statOrder"] = 1788, }, }, }, @@ -1025,7 +1025,7 @@ return { ["index"] = 1, ["max"] = 20, ["min"] = 20, - ["statOrder"] = 1078, + ["statOrder"] = 1105, }, }, }, @@ -1044,7 +1044,7 @@ return { ["index"] = 1, ["max"] = 15, ["min"] = 15, - ["statOrder"] = 1385, + ["statOrder"] = 1413, }, }, }, @@ -1063,7 +1063,7 @@ return { ["index"] = 1, ["max"] = 20, ["min"] = 20, - ["statOrder"] = 10364, + ["statOrder"] = 10693, }, }, }, @@ -1082,7 +1082,7 @@ return { ["index"] = 1, ["max"] = 8, ["min"] = 8, - ["statOrder"] = 10035, + ["statOrder"] = 10348, }, }, }, @@ -1101,7 +1101,7 @@ return { ["index"] = 1, ["max"] = 12, ["min"] = 12, - ["statOrder"] = 2454, + ["statOrder"] = 2487, }, }, }, @@ -1120,7 +1120,7 @@ return { ["index"] = 1, ["max"] = 20, ["min"] = 20, - ["statOrder"] = 1744, + ["statOrder"] = 1774, }, }, }, @@ -1139,7 +1139,7 @@ return { ["index"] = 1, ["max"] = 10, ["min"] = 10, - ["statOrder"] = 2440, + ["statOrder"] = 2473, }, }, }, @@ -1158,7 +1158,7 @@ return { ["index"] = 1, ["max"] = 10, ["min"] = 10, - ["statOrder"] = 1400, + ["statOrder"] = 1428, }, }, }, @@ -1177,7 +1177,7 @@ return { ["index"] = 1, ["max"] = 5, ["min"] = 5, - ["statOrder"] = 1811, + ["statOrder"] = 1841, }, }, }, @@ -1196,7 +1196,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 6503, + ["statOrder"] = 6725, }, }, }, @@ -1215,7 +1215,7 @@ return { ["index"] = 1, ["max"] = 5, ["min"] = 5, - ["statOrder"] = 2504, + ["statOrder"] = 2537, }, }, }, @@ -1234,7 +1234,7 @@ return { ["index"] = 1, ["max"] = 10, ["min"] = 10, - ["statOrder"] = 5424, + ["statOrder"] = 5612, }, }, }, @@ -1253,7 +1253,7 @@ return { ["index"] = 1, ["max"] = 2, ["min"] = 2, - ["statOrder"] = 10304, + ["statOrder"] = 10633, }, }, }, @@ -1272,7 +1272,7 @@ return { ["index"] = 1, ["max"] = 4, ["min"] = 4, - ["statOrder"] = 10304, + ["statOrder"] = 10633, }, }, }, @@ -1291,7 +1291,7 @@ return { ["index"] = 1, ["max"] = 20, ["min"] = 20, - ["statOrder"] = 10304, + ["statOrder"] = 10633, }, }, }, @@ -1310,7 +1310,7 @@ return { ["index"] = 1, ["max"] = 5, ["min"] = 5, - ["statOrder"] = 10305, + ["statOrder"] = 10634, }, }, }, @@ -1329,7 +1329,7 @@ return { ["index"] = 1, ["max"] = 20, ["min"] = 20, - ["statOrder"] = 1432, + ["statOrder"] = 1460, }, }, }, @@ -1348,7 +1348,7 @@ return { ["index"] = 1, ["max"] = 10, ["min"] = 10, - ["statOrder"] = 2060, + ["statOrder"] = 2092, }, }, }, @@ -1367,7 +1367,7 @@ return { ["index"] = 1, ["max"] = 5, ["min"] = 5, - ["statOrder"] = 1923, + ["statOrder"] = 1955, }, }, }, @@ -1386,7 +1386,7 @@ return { ["index"] = 1, ["max"] = 4, ["min"] = 4, - ["statOrder"] = 1453, + ["statOrder"] = 1482, }, }, }, @@ -1405,7 +1405,7 @@ return { ["index"] = 1, ["max"] = 5, ["min"] = 5, - ["statOrder"] = 10347, + ["statOrder"] = 10676, }, }, }, @@ -1424,7 +1424,7 @@ return { ["index"] = 1, ["max"] = 5, ["min"] = 5, - ["statOrder"] = 1679, + ["statOrder"] = 1709, }, }, }, @@ -1443,7 +1443,7 @@ return { ["index"] = 1, ["max"] = 20, ["min"] = 20, - ["statOrder"] = 1513, + ["statOrder"] = 1542, }, }, }, @@ -1462,7 +1462,7 @@ return { ["index"] = 1, ["max"] = 20, ["min"] = 20, - ["statOrder"] = 1873, + ["statOrder"] = 1905, }, }, }, @@ -1481,7 +1481,7 @@ return { ["index"] = 1, ["max"] = 20, ["min"] = 20, - ["statOrder"] = 1732, + ["statOrder"] = 1762, }, }, }, @@ -1500,7 +1500,7 @@ return { ["index"] = 1, ["max"] = 25, ["min"] = 25, - ["statOrder"] = 10336, + ["statOrder"] = 10665, }, }, }, @@ -1519,7 +1519,7 @@ return { ["index"] = 1, ["max"] = 20, ["min"] = 20, - ["statOrder"] = 3047, + ["statOrder"] = 3089, }, }, }, @@ -1538,7 +1538,7 @@ return { ["index"] = 1, ["max"] = 20, ["min"] = 20, - ["statOrder"] = 1852, + ["statOrder"] = 1882, }, }, }, @@ -1557,7 +1557,7 @@ return { ["index"] = 1, ["max"] = 5, ["min"] = 5, - ["statOrder"] = 1318, + ["statOrder"] = 1345, }, }, }, @@ -1576,7 +1576,7 @@ return { ["index"] = 1, ["max"] = 20, ["min"] = 20, - ["statOrder"] = 1857, + ["statOrder"] = 1889, }, }, }, @@ -1595,7 +1595,7 @@ return { ["index"] = 1, ["max"] = 8, ["min"] = 8, - ["statOrder"] = 3429, + ["statOrder"] = 3474, }, }, }, @@ -1614,7 +1614,7 @@ return { ["index"] = 1, ["max"] = 15, ["min"] = 15, - ["statOrder"] = 1650, + ["statOrder"] = 1680, }, }, }, @@ -1633,7 +1633,7 @@ return { ["index"] = 1, ["max"] = 10, ["min"] = 10, - ["statOrder"] = 1742, + ["statOrder"] = 1772, }, }, }, @@ -1652,7 +1652,7 @@ return { ["index"] = 1, ["max"] = 10, ["min"] = 10, - ["statOrder"] = 6215, + ["statOrder"] = 6431, }, }, }, @@ -1671,7 +1671,7 @@ return { ["index"] = 1, ["max"] = 10, ["min"] = 10, - ["statOrder"] = 9017, + ["statOrder"] = 9296, }, }, }, @@ -1690,7 +1690,7 @@ return { ["index"] = 1, ["max"] = 5, ["min"] = 5, - ["statOrder"] = 1812, + ["statOrder"] = 1842, }, }, }, @@ -1709,7 +1709,7 @@ return { ["index"] = 1, ["max"] = 25, ["min"] = 25, - ["statOrder"] = 6385, + ["statOrder"] = 6605, }, }, }, @@ -1728,7 +1728,7 @@ return { ["index"] = 1, ["max"] = 5, ["min"] = 5, - ["statOrder"] = 2506, + ["statOrder"] = 2539, }, }, }, @@ -1747,7 +1747,7 @@ return { ["index"] = 1, ["max"] = 8, ["min"] = 8, - ["statOrder"] = 2518, + ["statOrder"] = 2551, }, }, }, @@ -1766,7 +1766,7 @@ return { ["index"] = 1, ["max"] = 5, ["min"] = 5, - ["statOrder"] = 10301, + ["statOrder"] = 10630, }, }, }, @@ -1785,7 +1785,7 @@ return { ["index"] = 1, ["max"] = 5, ["min"] = 5, - ["statOrder"] = 10301, + ["statOrder"] = 10630, }, }, }, @@ -1993,7 +1993,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10375, + ["statOrder"] = 10704, }, }, }, @@ -2034,7 +2034,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10379, + ["statOrder"] = 10708, }, }, }, @@ -2116,7 +2116,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10373, + ["statOrder"] = 10702, }, }, }, @@ -2136,7 +2136,7 @@ return { ["m"] = false, ["not"] = false, ["o"] = 3, - ["oidx"] = 98220, + ["oidx"] = 79420, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -2155,7 +2155,7 @@ return { ["index"] = 1, ["max"] = 12, ["min"] = 7, - ["statOrder"] = 1241, + ["statOrder"] = 1268, }, }, }, @@ -2175,7 +2175,7 @@ return { ["m"] = false, ["not"] = false, ["o"] = 3, - ["oidx"] = 7137, + ["oidx"] = 69885, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -2194,7 +2194,7 @@ return { ["index"] = 1, ["max"] = 12, ["min"] = 7, - ["statOrder"] = 1250, + ["statOrder"] = 1277, }, }, }, @@ -2214,7 +2214,7 @@ return { ["m"] = false, ["not"] = false, ["o"] = 3, - ["oidx"] = 13428, + ["oidx"] = 59010, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -2233,7 +2233,7 @@ return { ["index"] = 1, ["max"] = 12, ["min"] = 7, - ["statOrder"] = 1261, + ["statOrder"] = 1288, }, }, }, @@ -2253,7 +2253,7 @@ return { ["m"] = false, ["not"] = false, ["o"] = 3, - ["oidx"] = 67816, + ["oidx"] = 75322, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -2272,7 +2272,7 @@ return { ["index"] = 1, ["max"] = 12, ["min"] = 7, - ["statOrder"] = 10364, + ["statOrder"] = 10693, }, }, }, @@ -2292,7 +2292,7 @@ return { ["m"] = false, ["not"] = false, ["o"] = 3, - ["oidx"] = 62260, + ["oidx"] = 8097, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -2311,7 +2311,7 @@ return { ["index"] = 1, ["max"] = 12, ["min"] = 7, - ["statOrder"] = 1269, + ["statOrder"] = 1296, }, }, }, @@ -2331,7 +2331,7 @@ return { ["m"] = false, ["not"] = false, ["o"] = 3, - ["oidx"] = 17537, + ["oidx"] = 66110, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -2350,7 +2350,7 @@ return { ["index"] = 1, ["max"] = 13, ["min"] = 8, - ["statOrder"] = 1852, + ["statOrder"] = 1882, }, }, }, @@ -2370,7 +2370,7 @@ return { ["m"] = false, ["not"] = false, ["o"] = 3, - ["oidx"] = 95064, + ["oidx"] = 33933, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -2389,7 +2389,7 @@ return { ["index"] = 1, ["max"] = 12, ["min"] = 7, - ["statOrder"] = 1083, + ["statOrder"] = 1110, }, }, }, @@ -2409,7 +2409,7 @@ return { ["m"] = false, ["not"] = false, ["o"] = 3, - ["oidx"] = 95448, + ["oidx"] = 73573, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -2428,7 +2428,7 @@ return { ["index"] = 1, ["max"] = 12, ["min"] = 7, - ["statOrder"] = 1108, + ["statOrder"] = 1135, }, }, }, @@ -2448,7 +2448,7 @@ return { ["m"] = false, ["not"] = false, ["o"] = 3, - ["oidx"] = 8122, + ["oidx"] = 42668, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -2467,7 +2467,7 @@ return { ["index"] = 1, ["max"] = 12, ["min"] = 7, - ["statOrder"] = 1912, + ["statOrder"] = 1944, }, }, }, @@ -2487,7 +2487,7 @@ return { ["m"] = false, ["not"] = false, ["o"] = 3, - ["oidx"] = 43980, + ["oidx"] = 56859, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -2506,7 +2506,7 @@ return { ["index"] = 1, ["max"] = 12, ["min"] = 7, - ["statOrder"] = 1873, + ["statOrder"] = 1905, }, }, }, @@ -2526,7 +2526,7 @@ return { ["m"] = false, ["not"] = false, ["o"] = 3, - ["oidx"] = 46039, + ["oidx"] = 11446, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -2545,7 +2545,7 @@ return { ["index"] = 1, ["max"] = 12, ["min"] = 7, - ["statOrder"] = 1095, + ["statOrder"] = 1122, }, }, }, @@ -2565,7 +2565,7 @@ return { ["m"] = false, ["not"] = false, ["o"] = 3, - ["oidx"] = 34853, + ["oidx"] = 5489, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -2584,7 +2584,7 @@ return { ["index"] = 1, ["max"] = 7, ["min"] = 4, - ["statOrder"] = 1761, + ["statOrder"] = 1791, }, }, }, @@ -2604,7 +2604,7 @@ return { ["m"] = false, ["not"] = false, ["o"] = 3, - ["oidx"] = 66640, + ["oidx"] = 97416, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -2623,7 +2623,7 @@ return { ["index"] = 1, ["max"] = 12, ["min"] = 7, - ["statOrder"] = 1677, + ["statOrder"] = 1707, }, }, }, @@ -2643,7 +2643,7 @@ return { ["m"] = false, ["not"] = false, ["o"] = 3, - ["oidx"] = 94069, + ["oidx"] = 70539, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -2662,7 +2662,7 @@ return { ["index"] = 1, ["max"] = 14, ["min"] = 7, - ["statOrder"] = 10336, + ["statOrder"] = 10665, }, }, }, @@ -2682,7 +2682,7 @@ return { ["m"] = false, ["not"] = false, ["o"] = 3, - ["oidx"] = 6640, + ["oidx"] = 17595, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -2701,7 +2701,7 @@ return { ["index"] = 1, ["max"] = 10, ["min"] = 6, - ["statOrder"] = 10337, + ["statOrder"] = 10666, }, }, }, @@ -2721,7 +2721,7 @@ return { ["m"] = false, ["not"] = false, ["o"] = 3, - ["oidx"] = 93998, + ["oidx"] = 97479, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -2740,7 +2740,7 @@ return { ["index"] = 1, ["max"] = 4, ["min"] = 3, - ["statOrder"] = 1294, + ["statOrder"] = 1321, }, }, }, @@ -2760,7 +2760,7 @@ return { ["m"] = false, ["not"] = false, ["o"] = 3, - ["oidx"] = 57475, + ["oidx"] = 27693, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -2779,7 +2779,7 @@ return { ["index"] = 1, ["max"] = 3, ["min"] = 2, - ["statOrder"] = 1330, + ["statOrder"] = 1357, }, }, }, @@ -2799,7 +2799,7 @@ return { ["m"] = false, ["not"] = false, ["o"] = 3, - ["oidx"] = 40883, + ["oidx"] = 35409, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -2818,7 +2818,7 @@ return { ["index"] = 1, ["max"] = 3, ["min"] = 2, - ["statOrder"] = 1679, + ["statOrder"] = 1709, }, }, }, @@ -2838,7 +2838,7 @@ return { ["m"] = false, ["not"] = false, ["o"] = 3, - ["oidx"] = 18380, + ["oidx"] = 47236, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -2857,7 +2857,7 @@ return { ["index"] = 1, ["max"] = 6, ["min"] = 3, - ["statOrder"] = 1903, + ["statOrder"] = 1935, }, }, }, @@ -2877,7 +2877,7 @@ return { ["m"] = false, ["not"] = false, ["o"] = 3, - ["oidx"] = 47407, + ["oidx"] = 67900, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -2896,7 +2896,7 @@ return { ["index"] = 1, ["max"] = 6, ["min"] = 3, - ["statOrder"] = 1906, + ["statOrder"] = 1938, }, }, }, @@ -2916,7 +2916,7 @@ return { ["m"] = false, ["not"] = false, ["o"] = 3, - ["oidx"] = 81366, + ["oidx"] = 57514, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -2935,7 +2935,7 @@ return { ["index"] = 1, ["max"] = 6, ["min"] = 3, - ["statOrder"] = 1910, + ["statOrder"] = 1942, }, }, }, @@ -2955,7 +2955,7 @@ return { ["m"] = false, ["not"] = false, ["o"] = 3, - ["oidx"] = 68237, + ["oidx"] = 79693, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -2974,7 +2974,7 @@ return { ["index"] = 1, ["max"] = 7, ["min"] = 4, - ["statOrder"] = 1776, + ["statOrder"] = 1806, }, }, }, @@ -2994,7 +2994,7 @@ return { ["m"] = false, ["not"] = false, ["o"] = 3, - ["oidx"] = 20276, + ["oidx"] = 45174, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -3013,7 +3013,7 @@ return { ["index"] = 1, ["max"] = 4, ["min"] = 2, - ["statOrder"] = 1453, + ["statOrder"] = 1482, }, }, }, @@ -3033,7 +3033,7 @@ return { ["m"] = false, ["not"] = false, ["o"] = 3, - ["oidx"] = 43388, + ["oidx"] = 18201, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -3052,7 +3052,7 @@ return { ["index"] = 1, ["max"] = 6, ["min"] = 4, - ["statOrder"] = 1462, + ["statOrder"] = 1491, }, }, }, @@ -3072,7 +3072,7 @@ return { ["m"] = false, ["not"] = false, ["o"] = 3, - ["oidx"] = 35894, + ["oidx"] = 65999, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -3091,7 +3091,7 @@ return { ["index"] = 1, ["max"] = 17, ["min"] = 12, - ["statOrder"] = 1466, + ["statOrder"] = 1495, }, }, }, @@ -3111,7 +3111,7 @@ return { ["m"] = false, ["not"] = false, ["o"] = 3, - ["oidx"] = 34185, + ["oidx"] = 21117, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -3130,7 +3130,7 @@ return { ["index"] = 1, ["max"] = 12, ["min"] = 7, - ["statOrder"] = 1424, + ["statOrder"] = 1452, }, }, }, @@ -3150,7 +3150,7 @@ return { ["m"] = false, ["not"] = false, ["o"] = 3, - ["oidx"] = 19799, + ["oidx"] = 59672, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -3169,7 +3169,7 @@ return { ["index"] = 1, ["max"] = 12, ["min"] = 7, - ["statOrder"] = 1432, + ["statOrder"] = 1460, }, }, }, @@ -3189,7 +3189,7 @@ return { ["m"] = false, ["not"] = false, ["o"] = 3, - ["oidx"] = 16330, + ["oidx"] = 14411, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -3208,7 +3208,7 @@ return { ["index"] = 1, ["max"] = 5, ["min"] = 3, - ["statOrder"] = 1443, + ["statOrder"] = 1472, }, }, }, @@ -3228,7 +3228,7 @@ return { ["m"] = false, ["not"] = false, ["o"] = 3, - ["oidx"] = 33633, + ["oidx"] = 82991, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -3247,7 +3247,7 @@ return { ["index"] = 1, ["max"] = 2, ["min"] = 2, - ["statOrder"] = 2334, + ["statOrder"] = 2367, }, }, }, @@ -3267,7 +3267,7 @@ return { ["m"] = false, ["not"] = false, ["o"] = 3, - ["oidx"] = 35417, + ["oidx"] = 58330, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -3286,7 +3286,7 @@ return { ["index"] = 1, ["max"] = 2, ["min"] = 2, - ["statOrder"] = 1046, + ["statOrder"] = 1072, }, }, }, @@ -3306,7 +3306,7 @@ return { ["m"] = false, ["not"] = false, ["o"] = 3, - ["oidx"] = 94569, + ["oidx"] = 2479, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -3325,7 +3325,7 @@ return { ["index"] = 1, ["max"] = 3, ["min"] = 3, - ["statOrder"] = 1724, + ["statOrder"] = 1754, }, }, }, @@ -3345,7 +3345,7 @@ return { ["m"] = false, ["not"] = false, ["o"] = 3, - ["oidx"] = 39288, + ["oidx"] = 83640, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -3364,7 +3364,7 @@ return { ["index"] = 1, ["max"] = 4, ["min"] = 4, - ["statOrder"] = 1032, + ["statOrder"] = 1056, }, }, }, @@ -3384,7 +3384,7 @@ return { ["m"] = false, ["not"] = false, ["o"] = 3, - ["oidx"] = 45885, + ["oidx"] = 4960, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -3403,7 +3403,7 @@ return { ["index"] = 1, ["max"] = 4, ["min"] = 2, - ["statOrder"] = 3429, + ["statOrder"] = 3474, }, }, }, @@ -3423,7 +3423,7 @@ return { ["m"] = false, ["not"] = false, ["o"] = 3, - ["oidx"] = 95501, + ["oidx"] = 82957, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -3442,7 +3442,7 @@ return { ["index"] = 1, ["max"] = 2, ["min"] = 2, - ["statOrder"] = 2472, + ["statOrder"] = 2505, }, }, }, @@ -3462,7 +3462,7 @@ return { ["m"] = false, ["not"] = false, ["o"] = 3, - ["oidx"] = 87649, + ["oidx"] = 62650, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -3481,7 +3481,7 @@ return { ["index"] = 1, ["max"] = 14, ["min"] = 9, - ["statOrder"] = 1507, + ["statOrder"] = 1536, }, }, }, @@ -3501,7 +3501,7 @@ return { ["m"] = false, ["not"] = false, ["o"] = 3, - ["oidx"] = 70570, + ["oidx"] = 82675, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -3520,7 +3520,7 @@ return { ["index"] = 1, ["max"] = 14, ["min"] = 9, - ["statOrder"] = 1513, + ["statOrder"] = 1542, }, }, }, @@ -3540,7 +3540,7 @@ return { ["m"] = false, ["not"] = false, ["o"] = 3, - ["oidx"] = 17559, + ["oidx"] = 18075, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -3559,7 +3559,7 @@ return { ["index"] = 1, ["max"] = 14, ["min"] = 9, - ["statOrder"] = 1518, + ["statOrder"] = 1547, }, }, }, @@ -3579,7 +3579,7 @@ return { ["m"] = false, ["not"] = false, ["o"] = 3, - ["oidx"] = 99956, + ["oidx"] = 25548, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -3598,7 +3598,7 @@ return { ["index"] = 1, ["max"] = 10, ["min"] = 6, - ["statOrder"] = 1522, + ["statOrder"] = 1552, }, }, }, @@ -3618,7 +3618,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 52933, + ["oidx"] = 92114, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -3639,14 +3639,14 @@ return { ["index"] = 2, ["max"] = 4, ["min"] = 2, - ["statOrder"] = 2853, + ["statOrder"] = 2890, }, ["fire_damage_+%"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 35, ["min"] = 25, - ["statOrder"] = 1241, + ["statOrder"] = 1268, }, }, }, @@ -3666,7 +3666,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 71887, + ["oidx"] = 31696, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -3687,14 +3687,14 @@ return { ["index"] = 2, ["max"] = 0.2, ["min"] = 0.2, - ["statOrder"] = 1551, + ["statOrder"] = 1581, }, ["fire_damage_+%"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 35, ["min"] = 25, - ["statOrder"] = 1241, + ["statOrder"] = 1268, }, }, }, @@ -3714,7 +3714,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 29046, + ["oidx"] = 7855, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -3735,14 +3735,14 @@ return { ["index"] = 2, ["max"] = 10, ["min"] = 10, - ["statOrder"] = 1834, + ["statOrder"] = 1864, }, ["fire_damage_+%"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 35, ["min"] = 25, - ["statOrder"] = 1241, + ["statOrder"] = 1268, }, }, }, @@ -3762,7 +3762,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 15916, + ["oidx"] = 35484, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -3783,14 +3783,14 @@ return { ["index"] = 2, ["max"] = 4, ["min"] = 2, - ["statOrder"] = 2855, + ["statOrder"] = 2892, }, ["cold_damage_+%"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 35, ["min"] = 25, - ["statOrder"] = 1250, + ["statOrder"] = 1277, }, }, }, @@ -3810,7 +3810,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 97164, + ["oidx"] = 92100, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -3831,14 +3831,14 @@ return { ["index"] = 2, ["max"] = 0.2, ["min"] = 0.2, - ["statOrder"] = 1556, + ["statOrder"] = 1586, }, ["cold_damage_+%"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 35, ["min"] = 25, - ["statOrder"] = 1250, + ["statOrder"] = 1277, }, }, }, @@ -3858,7 +3858,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 81535, + ["oidx"] = 2503, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -3879,14 +3879,14 @@ return { ["index"] = 2, ["max"] = 10, ["min"] = 10, - ["statOrder"] = 1836, + ["statOrder"] = 1866, }, ["cold_damage_+%"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 35, ["min"] = 25, - ["statOrder"] = 1250, + ["statOrder"] = 1277, }, }, }, @@ -3906,7 +3906,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 60524, + ["oidx"] = 67692, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -3927,14 +3927,14 @@ return { ["index"] = 2, ["max"] = 4, ["min"] = 2, - ["statOrder"] = 2856, + ["statOrder"] = 2893, }, ["lightning_damage_+%"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 35, ["min"] = 25, - ["statOrder"] = 1261, + ["statOrder"] = 1288, }, }, }, @@ -3954,7 +3954,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 75296, + ["oidx"] = 74451, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -3975,14 +3975,14 @@ return { ["index"] = 2, ["max"] = 0.2, ["min"] = 0.2, - ["statOrder"] = 1560, + ["statOrder"] = 1590, }, ["lightning_damage_+%"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 35, ["min"] = 25, - ["statOrder"] = 1261, + ["statOrder"] = 1288, }, }, }, @@ -4002,7 +4002,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 25942, + ["oidx"] = 55329, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -4023,14 +4023,14 @@ return { ["index"] = 2, ["max"] = 10, ["min"] = 10, - ["statOrder"] = 1838, + ["statOrder"] = 1868, }, ["lightning_damage_+%"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 35, ["min"] = 25, - ["statOrder"] = 1261, + ["statOrder"] = 1288, }, }, }, @@ -4050,7 +4050,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 10040, + ["oidx"] = 11777, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -4071,14 +4071,14 @@ return { ["index"] = 2, ["max"] = 4, ["min"] = 2, - ["statOrder"] = 5369, + ["statOrder"] = 5557, }, ["physical_damage_+%"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 35, ["min"] = 25, - ["statOrder"] = 10364, + ["statOrder"] = 10693, }, }, }, @@ -4098,7 +4098,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 30013, + ["oidx"] = 13357, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -4119,14 +4119,14 @@ return { ["index"] = 2, ["max"] = 0.2, ["min"] = 0.2, - ["statOrder"] = 1547, + ["statOrder"] = 1577, }, ["physical_damage_+%"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 35, ["min"] = 25, - ["statOrder"] = 10364, + ["statOrder"] = 10693, }, }, }, @@ -4146,7 +4146,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 69758, + ["oidx"] = 3316, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -4167,14 +4167,14 @@ return { ["index"] = 2, ["max"] = 10, ["min"] = 10, - ["statOrder"] = 6214, + ["statOrder"] = 6430, }, ["physical_damage_+%"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 35, ["min"] = 25, - ["statOrder"] = 10364, + ["statOrder"] = 10693, }, }, }, @@ -4194,7 +4194,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 6256, + ["oidx"] = 49930, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -4215,14 +4215,14 @@ return { ["index"] = 1, ["max"] = 35, ["min"] = 25, - ["statOrder"] = 1269, + ["statOrder"] = 1296, }, ["withered_on_hit_for_2_seconds_%_chance"] = { ["fmt"] = "d", ["index"] = 2, ["max"] = 25, ["min"] = 25, - ["statOrder"] = 4258, + ["statOrder"] = 4304, }, }, }, @@ -4242,7 +4242,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 70619, + ["oidx"] = 68927, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -4263,14 +4263,14 @@ return { ["index"] = 2, ["max"] = 0.2, ["min"] = 0.2, - ["statOrder"] = 1563, + ["statOrder"] = 1593, }, ["chaos_damage_+%"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 35, ["min"] = 25, - ["statOrder"] = 1269, + ["statOrder"] = 1296, }, }, }, @@ -4290,7 +4290,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 89997, + ["oidx"] = 50654, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -4311,14 +4311,14 @@ return { ["index"] = 2, ["max"] = 50, ["min"] = 35, - ["statOrder"] = 1342, + ["statOrder"] = 1369, }, ["spell_damage_+%"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 35, ["min"] = 25, - ["statOrder"] = 1108, + ["statOrder"] = 1135, }, }, }, @@ -4338,7 +4338,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 50380, + ["oidx"] = 85555, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -4359,14 +4359,14 @@ return { ["index"] = 1, ["max"] = 35, ["min"] = 25, - ["statOrder"] = 1852, + ["statOrder"] = 1882, }, ["minion_maximum_life_+%"] = { ["fmt"] = "d", ["index"] = 2, ["max"] = 20, ["min"] = 15, - ["statOrder"] = 1647, + ["statOrder"] = 1677, }, }, }, @@ -4386,7 +4386,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 2326, + ["oidx"] = 13953, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -4407,14 +4407,14 @@ return { ["index"] = 1, ["max"] = 35, ["min"] = 25, - ["statOrder"] = 1095, + ["statOrder"] = 1122, }, ["skill_effect_duration_+%"] = { ["fmt"] = "d", ["index"] = 2, ["max"] = 11, ["min"] = 7, - ["statOrder"] = 1776, + ["statOrder"] = 1806, }, }, }, @@ -4434,7 +4434,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 47657, + ["oidx"] = 29305, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -4455,14 +4455,14 @@ return { ["index"] = 2, ["max"] = 1.2, ["min"] = 0.7, - ["statOrder"] = 1823, + ["statOrder"] = 1853, }, ["maximum_life_+%"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 10, ["min"] = 6, - ["statOrder"] = 1453, + ["statOrder"] = 1482, }, }, }, @@ -4482,7 +4482,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 41430, + ["oidx"] = 87752, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -4503,14 +4503,14 @@ return { ["index"] = 2, ["max"] = 0.4, ["min"] = 0.4, - ["statOrder"] = 1545, + ["statOrder"] = 1575, }, ["maximum_life_+%"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 10, ["min"] = 6, - ["statOrder"] = 1453, + ["statOrder"] = 1482, }, }, }, @@ -4530,7 +4530,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 12334, + ["oidx"] = 76549, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -4551,14 +4551,14 @@ return { ["index"] = 2, ["max"] = 25, ["min"] = 15, - ["statOrder"] = 1466, + ["statOrder"] = 1495, }, ["maximum_mana_+%"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 23, ["min"] = 17, - ["statOrder"] = 1462, + ["statOrder"] = 1491, }, }, }, @@ -4578,7 +4578,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 66231, + ["oidx"] = 69557, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -4599,14 +4599,14 @@ return { ["index"] = 2, ["max"] = 4, ["min"] = 3, - ["statOrder"] = 2150, + ["statOrder"] = 2182, }, ["physical_damage_reduction_rating_+%"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 40, ["min"] = 30, - ["statOrder"] = 1424, + ["statOrder"] = 1452, }, }, }, @@ -4626,7 +4626,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 99316, + ["oidx"] = 64898, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -4647,14 +4647,14 @@ return { ["index"] = 1, ["max"] = 40, ["min"] = 30, - ["statOrder"] = 1432, + ["statOrder"] = 1460, }, ["global_chance_to_blind_on_hit_%"] = { ["fmt"] = "d", ["index"] = 2, ["max"] = 7, ["min"] = 5, - ["statOrder"] = 10347, + ["statOrder"] = 10676, }, }, }, @@ -4674,7 +4674,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 86754, + ["oidx"] = 83885, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -4695,14 +4695,14 @@ return { ["index"] = 2, ["max"] = 15, ["min"] = 10, - ["statOrder"] = 1447, + ["statOrder"] = 1476, }, ["maximum_energy_shield_+%"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 12, ["min"] = 8, - ["statOrder"] = 1443, + ["statOrder"] = 1472, }, }, }, @@ -4722,7 +4722,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 62680, + ["oidx"] = 1049, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -4743,14 +4743,14 @@ return { ["index"] = 2, ["max"] = 0.3, ["min"] = 0.3, - ["statOrder"] = 1603, + ["statOrder"] = 1633, }, ["maximum_energy_shield_+%"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 12, ["min"] = 8, - ["statOrder"] = 1443, + ["statOrder"] = 1472, }, }, }, @@ -4770,7 +4770,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 52197, + ["oidx"] = 5394, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -4791,14 +4791,14 @@ return { ["index"] = 1, ["max"] = 8, ["min"] = 8, - ["statOrder"] = 2334, + ["statOrder"] = 2367, }, ["life_gained_on_block"] = { ["fmt"] = "d", ["index"] = 2, ["max"] = 10, ["min"] = 6, - ["statOrder"] = 1638, + ["statOrder"] = 1668, }, }, }, @@ -4818,7 +4818,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 56626, + ["oidx"] = 76907, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -4839,14 +4839,14 @@ return { ["index"] = 1, ["max"] = 8, ["min"] = 8, - ["statOrder"] = 1046, + ["statOrder"] = 1072, }, ["shield_armour_+%"] = { ["fmt"] = "d", ["index"] = 2, ["max"] = 30, ["min"] = 20, - ["statOrder"] = 1871, + ["statOrder"] = 1903, }, }, }, @@ -4866,7 +4866,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 76804, + ["oidx"] = 40498, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -4887,14 +4887,14 @@ return { ["index"] = 1, ["max"] = 10, ["min"] = 8, - ["statOrder"] = 1724, + ["statOrder"] = 1754, }, ["base_avoid_stun_%"] = { ["fmt"] = "d", ["index"] = 2, ["max"] = 10, ["min"] = 8, - ["statOrder"] = 1732, + ["statOrder"] = 1762, }, }, }, @@ -4914,7 +4914,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 68568, + ["oidx"] = 95964, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -4935,14 +4935,14 @@ return { ["index"] = 2, ["max"] = 10, ["min"] = 8, - ["statOrder"] = 1501, + ["statOrder"] = 1530, }, ["base_spell_suppression_chance_%"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 6, ["min"] = 6, - ["statOrder"] = 1032, + ["statOrder"] = 1056, }, }, }, @@ -4962,7 +4962,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 71976, + ["oidx"] = 98699, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -4983,14 +4983,14 @@ return { ["index"] = 2, ["max"] = 20, ["min"] = 20, - ["statOrder"] = 2101, + ["statOrder"] = 2133, }, ["non_curse_aura_effect_+%"] = { ["fmt"] = "d", ["index"] = 1, ["max"] = 10, ["min"] = 7, - ["statOrder"] = 3429, + ["statOrder"] = 3474, }, }, }, @@ -5010,7 +5010,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 47786, + ["oidx"] = 38490, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -5031,14 +5031,14 @@ return { ["index"] = 1, ["max"] = 6, ["min"] = 4, - ["statOrder"] = 2472, + ["statOrder"] = 2505, }, ["curse_skill_effect_duration_+%"] = { ["fmt"] = "d", ["index"] = 2, ["max"] = 20, ["min"] = 20, - ["statOrder"] = 5703, + ["statOrder"] = 5897, }, }, }, @@ -5058,7 +5058,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 13733, + ["oidx"] = 29481, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -5079,14 +5079,14 @@ return { ["index"] = 1, ["max"] = 30, ["min"] = 20, - ["statOrder"] = 1507, + ["statOrder"] = 1536, }, ["base_maximum_fire_damage_resistance_%"] = { ["fmt"] = "d", ["index"] = 2, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 1505, + ["statOrder"] = 1534, }, }, }, @@ -5106,7 +5106,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 43355, + ["oidx"] = 27195, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -5127,14 +5127,14 @@ return { ["index"] = 1, ["max"] = 30, ["min"] = 20, - ["statOrder"] = 1513, + ["statOrder"] = 1542, }, ["base_maximum_cold_damage_resistance_%"] = { ["fmt"] = "d", ["index"] = 2, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 1511, + ["statOrder"] = 1540, }, }, }, @@ -5154,7 +5154,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 22479, + ["oidx"] = 88478, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -5175,14 +5175,14 @@ return { ["index"] = 1, ["max"] = 30, ["min"] = 20, - ["statOrder"] = 1518, + ["statOrder"] = 1547, }, ["base_maximum_lightning_damage_resistance_%"] = { ["fmt"] = "d", ["index"] = 2, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 1516, + ["statOrder"] = 1545, }, }, }, @@ -5202,7 +5202,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 87047, + ["oidx"] = 95624, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -5223,14 +5223,14 @@ return { ["index"] = 1, ["max"] = 19, ["min"] = 13, - ["statOrder"] = 1522, + ["statOrder"] = 1552, }, ["base_maximum_chaos_damage_resistance_%"] = { ["fmt"] = "d", ["index"] = 2, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 1521, + ["statOrder"] = 1551, }, }, }, @@ -5250,7 +5250,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 84753, + ["oidx"] = 59351, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -5280,7 +5280,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 44440, + ["oidx"] = 75827, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -5330,7 +5330,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10406, + ["statOrder"] = 10735, }, }, }, @@ -5371,7 +5371,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10409, + ["statOrder"] = 10738, }, }, }, @@ -5412,7 +5412,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10383, + ["statOrder"] = 10712, }, }, }, @@ -5454,7 +5454,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10380, + ["statOrder"] = 10709, }, }, }, @@ -5495,7 +5495,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10415, + ["statOrder"] = 10744, }, }, }, @@ -5534,7 +5534,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10393, + ["statOrder"] = 10722, }, }, }, @@ -5576,7 +5576,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10403, + ["statOrder"] = 10732, }, }, }, @@ -5617,7 +5617,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10371, + ["statOrder"] = 10700, }, }, }, @@ -5643,7 +5643,7 @@ return { ["passivePointsGranted"] = 0, ["sa"] = 0, ["sd"] = { - [1] = "Maximum Energy Shield is 0", + [1] = "Removes all Energy Shield", [2] = "While not on Full Life, Sacrifice 20% of Mana per Second to Recover that much Life", }, ["sortedStats"] = { @@ -5657,7 +5657,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10391, + ["statOrder"] = 10720, }, }, }, @@ -5697,7 +5697,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10396, + ["statOrder"] = 10725, }, }, }, @@ -5737,7 +5737,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10397, + ["statOrder"] = 10726, }, }, }, @@ -5776,7 +5776,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10390, + ["statOrder"] = 10719, }, }, }, @@ -5796,7 +5796,7 @@ return { ["m"] = false, ["not"] = false, ["o"] = 3, - ["oidx"] = 63801, + ["oidx"] = 6194, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -5815,7 +5815,7 @@ return { ["index"] = 1, ["max"] = 10, ["min"] = 10, - ["statOrder"] = 10301, + ["statOrder"] = 10630, }, }, }, @@ -5835,7 +5835,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 83058, + ["oidx"] = 36277, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -5854,7 +5854,7 @@ return { ["index"] = 1, ["max"] = 15, ["min"] = 15, - ["statOrder"] = 9145, + ["statOrder"] = 9426, }, }, }, @@ -5874,7 +5874,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 20011, + ["oidx"] = 64088, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -5893,7 +5893,7 @@ return { ["index"] = 1, ["max"] = 15, ["min"] = 15, - ["statOrder"] = 9144, + ["statOrder"] = 9425, }, }, }, @@ -5913,7 +5913,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 22356, + ["oidx"] = 94707, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -5932,7 +5932,7 @@ return { ["index"] = 1, ["max"] = 15, ["min"] = 15, - ["statOrder"] = 9146, + ["statOrder"] = 9427, }, }, }, @@ -5952,7 +5952,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 82022, + ["oidx"] = 74973, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -5971,7 +5971,7 @@ return { ["index"] = 1, ["max"] = 5, ["min"] = 5, - ["statOrder"] = 7759, + ["statOrder"] = 8020, }, }, }, @@ -5991,7 +5991,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 29871, + ["oidx"] = 10172, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -6010,7 +6010,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 6391, + ["statOrder"] = 6611, }, }, }, @@ -6030,7 +6030,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 66167, + ["oidx"] = 17606, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -6049,7 +6049,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 8795, + ["statOrder"] = 9065, }, }, }, @@ -6069,7 +6069,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 99369, + ["oidx"] = 5178, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -6088,7 +6088,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 8800, + ["statOrder"] = 9070, }, }, }, @@ -6108,7 +6108,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 50523, + ["oidx"] = 22257, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -6127,7 +6127,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 8797, + ["statOrder"] = 9067, }, }, }, @@ -6147,7 +6147,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 98702, + ["oidx"] = 14760, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -6166,7 +6166,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 6852, + ["statOrder"] = 7090, }, }, }, @@ -6186,7 +6186,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 74425, + ["oidx"] = 42889, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -6205,7 +6205,7 @@ return { ["index"] = 1, ["max"] = 5, ["min"] = 5, - ["statOrder"] = 9153, + ["statOrder"] = 9434, }, }, }, @@ -6225,7 +6225,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 31677, + ["oidx"] = 60270, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -6244,7 +6244,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 4419, + ["statOrder"] = 4470, }, }, }, @@ -6264,7 +6264,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 70721, + ["oidx"] = 27127, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -6283,7 +6283,7 @@ return { ["index"] = 1, ["max"] = 10, ["min"] = 10, - ["statOrder"] = 6900, + ["statOrder"] = 7141, }, }, }, @@ -6303,7 +6303,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 93064, + ["oidx"] = 82503, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -6322,7 +6322,7 @@ return { ["index"] = 1, ["max"] = 10, ["min"] = 10, - ["statOrder"] = 6898, + ["statOrder"] = 7138, }, }, }, @@ -6342,7 +6342,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 55442, + ["oidx"] = 28525, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -6361,7 +6361,7 @@ return { ["index"] = 1, ["max"] = 10, ["min"] = 10, - ["statOrder"] = 6902, + ["statOrder"] = 7143, }, }, }, @@ -6401,7 +6401,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10378, + ["statOrder"] = 10707, }, }, }, @@ -6442,7 +6442,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10389, + ["statOrder"] = 10718, }, }, }, @@ -6483,7 +6483,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10407, + ["statOrder"] = 10736, }, }, }, @@ -6523,7 +6523,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 10408, + ["statOrder"] = 10737, }, }, }, @@ -6543,7 +6543,7 @@ return { ["m"] = false, ["not"] = false, ["o"] = 3, - ["oidx"] = 72485, + ["oidx"] = 20196, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -6573,7 +6573,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 35408, + ["oidx"] = 14977, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -6592,7 +6592,7 @@ return { ["index"] = 1, ["max"] = 80, ["min"] = 80, - ["statOrder"] = 10336, + ["statOrder"] = 10665, }, }, }, @@ -6612,7 +6612,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 75267, + ["oidx"] = 76777, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -6631,7 +6631,7 @@ return { ["index"] = 1, ["max"] = 40, ["min"] = 40, - ["statOrder"] = 10337, + ["statOrder"] = 10666, }, }, }, @@ -6651,7 +6651,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 72038, + ["oidx"] = 5183, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -6670,7 +6670,7 @@ return { ["index"] = 1, ["max"] = 1, ["min"] = 1, - ["statOrder"] = 6411, + ["statOrder"] = 6631, }, }, }, @@ -6690,7 +6690,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 64314, + ["oidx"] = 80316, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -6709,7 +6709,7 @@ return { ["index"] = 1, ["max"] = 8, ["min"] = 8, - ["statOrder"] = 9162, + ["statOrder"] = 9443, }, }, }, @@ -6729,7 +6729,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 2735, + ["oidx"] = 68905, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -6748,7 +6748,7 @@ return { ["index"] = 1, ["max"] = 10, ["min"] = 10, - ["statOrder"] = 3065, + ["statOrder"] = 3107, }, }, }, @@ -6768,7 +6768,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 86420, + ["oidx"] = 14480, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -6787,7 +6787,7 @@ return { ["index"] = 1, ["max"] = 10, ["min"] = 10, - ["statOrder"] = 1714, + ["statOrder"] = 1744, }, }, }, @@ -6807,7 +6807,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 25280, + ["oidx"] = 93682, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -6826,7 +6826,7 @@ return { ["index"] = 1, ["max"] = 8, ["min"] = 8, - ["statOrder"] = 1439, + ["statOrder"] = 1467, }, }, }, @@ -6846,7 +6846,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 92044, + ["oidx"] = 80835, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -6865,7 +6865,7 @@ return { ["index"] = 1, ["max"] = 10, ["min"] = 10, - ["statOrder"] = 3152, + ["statOrder"] = 3194, }, }, }, @@ -6885,7 +6885,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 86291, + ["oidx"] = 38654, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -6904,7 +6904,7 @@ return { ["index"] = 1, ["max"] = 15, ["min"] = 15, - ["statOrder"] = 1711, + ["statOrder"] = 1741, }, }, }, @@ -6924,7 +6924,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 57368, + ["oidx"] = 79623, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -6943,7 +6943,7 @@ return { ["index"] = 1, ["max"] = 4, ["min"] = 4, - ["statOrder"] = 6120, + ["statOrder"] = 6330, }, }, }, @@ -6963,7 +6963,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 91895, + ["oidx"] = 6774, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -6982,7 +6982,7 @@ return { ["index"] = 1, ["max"] = 10, ["min"] = 10, - ["statOrder"] = 5766, + ["statOrder"] = 5961, }, }, }, @@ -7002,7 +7002,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 52613, + ["oidx"] = 68329, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -7021,7 +7021,7 @@ return { ["index"] = 1, ["max"] = 30, ["min"] = 30, - ["statOrder"] = 10357, + ["statOrder"] = 10686, }, }, }, @@ -7041,7 +7041,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 85933, + ["oidx"] = 52806, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -7060,7 +7060,7 @@ return { ["index"] = 1, ["max"] = 80, ["min"] = 80, - ["statOrder"] = 1725, + ["statOrder"] = 1755, }, }, }, @@ -7080,7 +7080,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 53562, + ["oidx"] = 79878, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -7099,7 +7099,7 @@ return { ["index"] = 1, ["max"] = 30, ["min"] = 30, - ["statOrder"] = 10365, + ["statOrder"] = 10694, }, }, }, @@ -7119,7 +7119,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 48415, + ["oidx"] = 7265, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -7138,7 +7138,7 @@ return { ["index"] = 1, ["max"] = 80, ["min"] = 80, - ["statOrder"] = 1729, + ["statOrder"] = 1759, }, }, }, @@ -7158,7 +7158,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 93237, + ["oidx"] = 51502, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -7177,7 +7177,7 @@ return { ["index"] = 1, ["max"] = 12, ["min"] = 12, - ["statOrder"] = 2334, + ["statOrder"] = 2367, }, }, }, @@ -7197,7 +7197,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 23045, + ["oidx"] = 69709, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -7216,7 +7216,7 @@ return { ["index"] = 1, ["max"] = 12, ["min"] = 12, - ["statOrder"] = 1046, + ["statOrder"] = 1072, }, }, }, @@ -7236,7 +7236,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 18513, + ["oidx"] = 54984, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -7255,7 +7255,7 @@ return { ["index"] = 1, ["max"] = 20, ["min"] = 20, - ["statOrder"] = 1724, + ["statOrder"] = 1754, }, }, }, @@ -7275,7 +7275,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 80506, + ["oidx"] = 9731, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -7294,7 +7294,7 @@ return { ["index"] = 1, ["max"] = 12, ["min"] = 12, - ["statOrder"] = 1032, + ["statOrder"] = 1056, }, }, }, @@ -7314,7 +7314,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 79668, + ["oidx"] = 65124, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -7333,7 +7333,7 @@ return { ["index"] = 1, ["max"] = 12, ["min"] = 12, - ["statOrder"] = 3429, + ["statOrder"] = 3474, }, }, }, @@ -7353,7 +7353,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 72832, + ["oidx"] = 7309, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -7372,7 +7372,7 @@ return { ["index"] = 1, ["max"] = 80, ["min"] = 80, - ["statOrder"] = 1852, + ["statOrder"] = 1882, }, }, }, @@ -7392,7 +7392,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 13983, + ["oidx"] = 19927, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -7411,7 +7411,7 @@ return { ["index"] = 1, ["max"] = 80, ["min"] = 80, - ["statOrder"] = 1647, + ["statOrder"] = 1677, }, }, }, @@ -7431,7 +7431,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 11401, + ["oidx"] = 80563, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -7450,7 +7450,7 @@ return { ["index"] = 1, ["max"] = 80, ["min"] = 80, - ["statOrder"] = 1108, + ["statOrder"] = 1135, }, }, }, @@ -7470,7 +7470,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 43999, + ["oidx"] = 68382, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -7489,7 +7489,7 @@ return { ["index"] = 1, ["max"] = 80, ["min"] = 80, - ["statOrder"] = 1342, + ["statOrder"] = 1369, }, }, }, @@ -7509,7 +7509,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 98232, + ["oidx"] = 99311, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -7528,7 +7528,7 @@ return { ["index"] = 1, ["max"] = 80, ["min"] = 80, - ["statOrder"] = 6246, + ["statOrder"] = 6462, }, }, }, @@ -7548,7 +7548,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 98726, + ["oidx"] = 67225, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -7567,7 +7567,7 @@ return { ["index"] = 1, ["max"] = 80, ["min"] = 80, - ["statOrder"] = 5527, + ["statOrder"] = 5718, }, }, }, @@ -7587,7 +7587,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 55290, + ["oidx"] = 82524, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -7606,7 +7606,7 @@ return { ["index"] = 1, ["max"] = 80, ["min"] = 80, - ["statOrder"] = 7065, + ["statOrder"] = 7313, }, }, }, @@ -7626,7 +7626,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 90707, + ["oidx"] = 98014, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -7645,7 +7645,7 @@ return { ["index"] = 1, ["max"] = 80, ["min"] = 80, - ["statOrder"] = 10364, + ["statOrder"] = 10693, }, }, }, @@ -7665,7 +7665,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 73230, + ["oidx"] = 36656, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -7684,7 +7684,7 @@ return { ["index"] = 1, ["max"] = 80, ["min"] = 80, - ["statOrder"] = 1858, + ["statOrder"] = 1890, }, }, }, @@ -7704,7 +7704,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 55833, + ["oidx"] = 36158, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -7725,14 +7725,14 @@ return { ["index"] = 1, ["max"] = 50, ["min"] = 50, - ["statOrder"] = 3035, + ["statOrder"] = 3077, }, ["faster_bleed_%"] = { ["fmt"] = "d", ["index"] = 2, ["max"] = 10, ["min"] = 10, - ["statOrder"] = 6214, + ["statOrder"] = 6430, }, }, }, @@ -7752,7 +7752,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 64478, + ["oidx"] = 94297, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -7771,7 +7771,7 @@ return { ["index"] = 1, ["max"] = 80, ["min"] = 80, - ["statOrder"] = 1874, + ["statOrder"] = 1906, }, }, }, @@ -7791,7 +7791,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 94537, + ["oidx"] = 94732, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -7810,7 +7810,7 @@ return { ["index"] = 1, ["max"] = 15, ["min"] = 15, - ["statOrder"] = 1294, + ["statOrder"] = 1321, }, }, }, @@ -7830,7 +7830,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 42182, + ["oidx"] = 81833, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -7849,7 +7849,7 @@ return { ["index"] = 1, ["max"] = 15, ["min"] = 15, - ["statOrder"] = 1330, + ["statOrder"] = 1357, }, }, }, @@ -7869,7 +7869,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 26769, + ["oidx"] = 86198, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -7888,7 +7888,7 @@ return { ["index"] = 1, ["max"] = 12, ["min"] = 12, - ["statOrder"] = 2105, + ["statOrder"] = 2137, }, }, }, @@ -7908,7 +7908,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 530, + ["oidx"] = 67997, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -7927,7 +7927,7 @@ return { ["index"] = 1, ["max"] = 80, ["min"] = 80, - ["statOrder"] = 1424, + ["statOrder"] = 1452, }, }, }, @@ -7947,7 +7947,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 6454, + ["oidx"] = 65414, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -7966,7 +7966,7 @@ return { ["index"] = 1, ["max"] = 80, ["min"] = 80, - ["statOrder"] = 1432, + ["statOrder"] = 1460, }, }, }, @@ -7986,7 +7986,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 14226, + ["oidx"] = 54300, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -8005,7 +8005,7 @@ return { ["index"] = 1, ["max"] = 50, ["min"] = 50, - ["statOrder"] = 1507, + ["statOrder"] = 1536, }, }, }, @@ -8025,7 +8025,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 18093, + ["oidx"] = 88577, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -8044,7 +8044,7 @@ return { ["index"] = 1, ["max"] = 50, ["min"] = 50, - ["statOrder"] = 1513, + ["statOrder"] = 1542, }, }, }, @@ -8064,7 +8064,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 67080, + ["oidx"] = 40681, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -8083,7 +8083,7 @@ return { ["index"] = 1, ["max"] = 50, ["min"] = 50, - ["statOrder"] = 1518, + ["statOrder"] = 1547, }, }, }, @@ -8103,7 +8103,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 11587, + ["oidx"] = 5337, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -8122,7 +8122,7 @@ return { ["index"] = 1, ["max"] = 37, ["min"] = 37, - ["statOrder"] = 1522, + ["statOrder"] = 1552, }, }, }, @@ -8142,7 +8142,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 24432, + ["oidx"] = 35290, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -8161,7 +8161,7 @@ return { ["index"] = 1, ["max"] = 10, ["min"] = 10, - ["statOrder"] = 1453, + ["statOrder"] = 1482, }, }, }, @@ -8181,7 +8181,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 78089, + ["oidx"] = 1685, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -8200,7 +8200,7 @@ return { ["index"] = 1, ["max"] = 30, ["min"] = 30, - ["statOrder"] = 1462, + ["statOrder"] = 1491, }, }, }, @@ -8220,7 +8220,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 50503, + ["oidx"] = 9588, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -8239,7 +8239,7 @@ return { ["index"] = 1, ["max"] = 50, ["min"] = 50, - ["statOrder"] = 1466, + ["statOrder"] = 1495, }, }, }, @@ -8259,7 +8259,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 90860, + ["oidx"] = 56816, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -8278,7 +8278,7 @@ return { ["index"] = 1, ["max"] = 25, ["min"] = 25, - ["statOrder"] = 1318, + ["statOrder"] = 1345, }, }, }, @@ -8298,7 +8298,7 @@ return { ["m"] = false, ["not"] = true, ["o"] = 3, - ["oidx"] = 26101, + ["oidx"] = 66099, ["out"] = { }, ["passivePointsGranted"] = 0, @@ -8317,7 +8317,7 @@ return { ["index"] = 1, ["max"] = 20, ["min"] = 20, - ["statOrder"] = 2064, + ["statOrder"] = 2096, }, }, }, diff --git a/src/Data/Uniques/Special/BoundByDestiny.lua b/src/Data/Uniques/Special/BoundByDestiny.lua index 521b579f83..d22a0f42f5 100644 --- a/src/Data/Uniques/Special/BoundByDestiny.lua +++ b/src/Data/Uniques/Special/BoundByDestiny.lua @@ -2,58 +2,58 @@ -- Item data (c) Grinding Gear Games return { - ["MaximumLifeIncreasePercent2ElderItemsUnique__1"] = { type = "2Elder", affix = "", "(10-15)% increased maximum Life if 2 Elder Items are Equipped", statOrder = { 4313 }, level = 1, group = "MaximumLifeIncreasePercent2ElderItems", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, - ["NearbyEnemiesAreUnnerved2ElderItemsUnique__1"] = { type = "2Elder", affix = "", "Nearby Enemies are Unnerved if 2 Elder Items are Equipped", statOrder = { 4317 }, level = 1, group = "NearbyEnemiesAreUnnerved2ElderItems", weightKey = { }, weightVal = { }, modTags = { }, }, - ["PhysicalEnergyShieldLeechPermyriad2ElderItemsUnique__1"] = { type = "2Elder", affix = "", "(1-3)% of Physical Damage Leeched as Energy Shield if 2 Elder Items are Equipped", statOrder = { 4307 }, level = 1, group = "PhysicalEnergyShieldLeechPermyriad2ElderItems", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["MaximumManaIncreasePercent2ShaperItemsUnique__1"] = { type = "2Shaper", affix = "", "(10-15)% increased maximum Mana if 2 Shaper Items are Equipped", statOrder = { 4314 }, level = 1, group = "MaximumManaIncreasePercent2ShaperItems", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["GlobalCooldownRecovery2ShaperItemsUnique__1"] = { type = "2Shaper", affix = "", "(10-20)% increased Cooldown Recovery Rate if 2 Shaper Items are Equipped", statOrder = { 4305 }, level = 1, group = "GlobalCooldownRecovery2ShaperItems", weightKey = { }, weightVal = { }, modTags = { }, }, - ["ElementalEnergyShieldLeechPermyriad2ShaperItemsUnique__1"] = { type = "2Shaper", affix = "", "(1-3)% of Elemental Damage Leeched as Energy Shield if 2 Shaper Items are Equipped", statOrder = { 4306 }, level = 1, group = "ElementalEnergyShieldLeechPermyriad2ShaperItems", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["UnaffectedByPoison2HunterItemsUnique__1"] = { type = "2Hunter", affix = "", "Unaffected by Poison if 2 Hunter Items are Equipped", statOrder = { 4308 }, level = 1, group = "UnaffectedByPoison2HunterItems", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, }, - ["RegenerateLifeOver1Second2HunterItemsUnique__1"] = { type = "2Hunter", affix = "", "Every 4 seconds, Regenerate 35% of Life over one second if 2 Hunter Items are Equipped", statOrder = { 4311 }, level = 1, group = "RegenerateLifeOver1Second2HunterItems", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, - ["AdditionalPierce2HunterItemsUnique__1"] = { type = "2Hunter", affix = "", "Projectiles Pierce 2 additional Targets if 2 Hunter Items are Equipped", statOrder = { 4318 }, level = 1, group = "AdditionalPierce2HunterItems", weightKey = { }, weightVal = { }, modTags = { }, }, - ["UnaffectedByIgnite2WarlordItemsUnique__1"] = { type = "2Warlord", affix = "", "Unaffected by Ignite if 2 Warlord Items are Equipped", statOrder = { 4321 }, level = 1, group = "UnaffectedByIgnite2WarlordItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, - ["NearbyEnemiesAreIntimidated2WarlordItemsUnique__1"] = { type = "2Warlord", affix = "", "Nearby Enemies are Intimidated if 2 Warlord Items are Equipped", statOrder = { 4316 }, level = 1, group = "NearbyEnemiesAreIntimidated2WarlordItems", weightKey = { }, weightVal = { }, modTags = { }, }, - ["PercentageStrength2WarlordItemsUnique__1"] = { type = "2Warlord", affix = "", "(10-15)% increased Strength if 2 Warlord Items are Equipped", statOrder = { 4319 }, level = 1, group = "PercentageStrength2WarlordItems", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["UnaffectedByChill2RedeemerItemsUnique__1"] = { type = "2Redeemer", affix = "", "Unaffected by Chill if 2 Redeemer Items are Equipped", statOrder = { 4320 }, level = 1, group = "UnaffectedByChill2RedeemerItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, - ["NearbyEnemiesAreBlinded2RedeemerItemsUnique__1"] = { type = "2Redeemer", affix = "", "Nearby Enemies are Blinded if 2 Redeemer Items are Equipped", statOrder = { 4315 }, level = 1, group = "NearbyEnemiesAreBlinded2RedeemerItems", weightKey = { }, weightVal = { }, modTags = { }, }, - ["PercentageDexterity2RedeemerItemsUnique__1"] = { type = "2Redeemer", affix = "", "(10-15)% increased Dexterity if 2 Redeemer Items are Equipped", statOrder = { 4310 }, level = 1, group = "PercentageDexterity2RedeemerItems", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["UnaffectedByShock2CrusaderItemsUnique__1"] = { type = "2Crusader", affix = "", "Unaffected by Shock if 2 Crusader Items are Equipped", statOrder = { 4322 }, level = 1, group = "UnaffectedByShock2CrusaderItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ConsecratedGroundStationary2CrusaderItemsUnique__1"] = { type = "2Crusader", affix = "", "Consecrated Ground around you while stationary if 2 Crusader Items are Equipped", statOrder = { 4309 }, level = 1, group = "ConsecratedGroundStationary2CrusaderItems", weightKey = { }, weightVal = { }, modTags = { }, }, - ["PercentageIntelligence2CrusaderItemsUnique__1"] = { type = "2Crusader", affix = "", "(10-15)% increased Intelligence if 2 Crusader Items are Equipped", statOrder = { 4312 }, level = 1, group = "PercentageIntelligence2CrusaderItems", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["MaximumBlockChance4ElderItemsUnique__1"] = { type = "4Elder", affix = "", "+3% to maximum Chance to Block Attack Damage if 4 Elder Items are Equipped", statOrder = { 4336 }, level = 1, group = "MaximumBlockChance4ElderItems", weightKey = { }, weightVal = { }, modTags = { "block" }, }, - ["PhysicalReflectImmune4ElderItemsUnique__1"] = { type = "4Elder", affix = "", "Cannot take Reflected Physical Damage if 4 Elder Items are Equipped", statOrder = { 4333 }, level = 1, group = "PhysicalReflectImmune4ElderItems", weightKey = { }, weightVal = { }, modTags = { }, }, - ["AdditionalCriticalStrikeChanceWithAttacks4ElderItemsUnique__1"] = { type = "4Elder", affix = "", "Attacks have +(1-1.5)% to Critical Strike Chance if 4 Elder Items are Equipped", statOrder = { 4325 }, level = 1, group = "AdditionalCriticalStrikeChanceWithAttacks4ElderItems", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, - ["MaximumSpellBlockChance4ShaperItemsUnique__1"] = { type = "4Shaper", affix = "", "+3% to maximum Chance to Block Spell Damage if 4 Shaper Items are Equipped", statOrder = { 4330 }, level = 1, group = "MaximumSpellBlockChance4ShaperItems", weightKey = { }, weightVal = { }, modTags = { "block" }, }, - ["ElementalReflectImmune4ShaperItemsUnique__1"] = { type = "4Shaper", affix = "", "Cannot take Reflected Elemental Damage if 4 Shaper Items are Equipped", statOrder = { 4332 }, level = 1, group = "ElementalReflectImmune4ShaperItems", weightKey = { }, weightVal = { }, modTags = { }, }, - ["AdditionalCriticalStrikeChanceWithSpells4ShaperItemsUnique__1"] = { type = "4Shaper", affix = "", "+(1-1.5)% to Spell Critical Strike Chance if 4 Shaper Items are Equipped", statOrder = { 4340 }, level = 1, group = "AdditionalCriticalStrikeChanceWithSpells4ShaperItems", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, }, - ["ElementalDamageTakenAsChaos4HunterItemsUnique__1"] = { type = "4Hunter", affix = "", "(5-10)% of Elemental taken as Chaos Damage if 4 Hunter Items are Equipped", statOrder = { 4334 }, level = 1, group = "ElementalDamageTakenAsChaos4HunterItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "chaos" }, }, - ["MovementVelocity4HunterItemsUnique__1"] = { type = "4Hunter", affix = "", "(10-15)% increased Movement Speed if 4 Hunter Items are Equipped", statOrder = { 4331 }, level = 1, group = "MovementVelocity4HunterItems", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, - ["MaximumChaosResistance4HunterItemsUnique__1"] = { type = "4Hunter", affix = "", "+(2-3)% to maximum Chaos Resistance if 4 Hunter Items are Equipped", statOrder = { 4326 }, level = 1, group = "MaximumChaosResistance4HunterItems", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, - ["PhysicalDamageTakenAsFirePercent4WarlordItemsUnique__1"] = { type = "4Warlord", affix = "", "(5-10)% of Physical Damage taken as Fire Damage if 4 Warlord Items are Equipped", statOrder = { 4338 }, level = 1, group = "PhysicalDamageTakenAsFirePercent4WarlordItems", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "fire" }, }, - ["EnduranceChargeIfHitRecently4WarlordItemsUnique__1"] = { type = "4Warlord", affix = "", "Gain 1 Endurance Charge every second if you've been Hit Recently and", "4 Warlord Items are Equipped", statOrder = { 4335, 4335.1 }, level = 1, group = "EnduranceChargeIfHitRecently4WarlordItems", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, }, - ["MaximumFireResist4WarlordItemsUnique__1"] = { type = "4Warlord", affix = "", "+(2-3)% to maximum Fire Resistance if 4 Warlord Items are Equipped", statOrder = { 4328 }, level = 1, group = "MaximumFireResist4WarlordItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, - ["PhysicalDamageTakenAsCold4RedeemerItemsUnique__1"] = { type = "4Redeemer", affix = "", "(5-10)% of Physical Damage taken as Cold Damage if 4 Redeemer Items are Equipped", statOrder = { 4337 }, level = 1, group = "PhysicalDamageTakenAsCold4RedeemerItems", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "cold" }, }, - ["FrenzyChargeOnHitChance4RedeemerItemsUnique__1"] = { type = "4Redeemer", affix = "", "(10-15)% chance to gain a Frenzy Charge on Hit if 4 Redeemer Items are Equipped", statOrder = { 4323 }, level = 1, group = "FrenzyChargeOnHitChance4RedeemerItems", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, }, - ["MaximumColdResist4RedeemerItemsUnique__1"] = { type = "4Redeemer", affix = "", "+(2-3)% to maximum Cold Resistance if 4 Redeemer Items are Equipped", statOrder = { 4327 }, level = 1, group = "MaximumColdResist4RedeemerItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, - ["PhysicalDamageTakenAsLightningPercent4CrusaderItemsUnique__1"] = { type = "4Crusader", affix = "", "(5-10)% of Physical Damage taken as Lightning Damage if 4 Crusader Items are Equipped", statOrder = { 4339 }, level = 1, group = "PhysicalDamageTakenAsLightningPercent4CrusaderItems", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "lightning" }, }, - ["PowerChargeOnHit4CrusaderItemsUnique__1"] = { type = "4Crusader", affix = "", "(10-15)% chance to gain a Power Charge on Hit if 4 Crusader Items are Equipped", statOrder = { 4324 }, level = 1, group = "PowerChargeOnHit4CrusaderItems", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, }, - ["MaximumLightningResistance4CrusaderItemsUnique__1"] = { type = "4Crusader", affix = "", "+(2-3)% to maximum Lightning Resistance if 4 Crusader Items are Equipped", statOrder = { 4329 }, level = 1, group = "MaximumLightningResistance4CrusaderItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, - ["CannotBeStunned6ElderItemsUnique__1"] = { type = "6Elder", affix = "", "Cannot be Stunned if 6 Elder Items are Equipped", statOrder = { 4345 }, level = 1, group = "CannotBeStunned6ElderItems", weightKey = { }, weightVal = { }, modTags = { }, }, - ["GlobalPhysicalGemLevel6ElderItemsUnique__1"] = { type = "6Elder", affix = "", "+1 to Level of all Physical Skill Gems if 6 Elder Items are Equipped", statOrder = { 4357 }, level = 1, group = "GlobalPhysicalGemLevel6ElderItems", weightKey = { }, weightVal = { }, modTags = { "physical", "gem" }, }, - ["PercentageAllAttributes6ElderItemsUnique__1"] = { type = "6Elder", affix = "", "(10-15)% increased Attributes if 6 Elder Items are Equipped", statOrder = { 4343 }, level = 1, group = "PercentageAllAttributes6ElderItems", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["PhysAddedAsEachElement6ShaperItemsUnique__1"] = { type = "6Shaper", affix = "", "Gain (10-15)% of Physical Damage as Extra Damage of each Element if", "6 Shaper Items are Equipped", statOrder = { 4356, 4356.1 }, level = 1, group = "PhysAddedAsEachElement6ShaperItems", weightKey = { }, weightVal = { }, modTags = { "earth_elemental", "physical" }, }, - ["MaximumElementalResistance6ShaperItemsUnique__1"] = { type = "6Shaper", affix = "", "+(1-2)% to all maximum Elemental Resistances if 6 Shaper Items are Equipped", statOrder = { 4341 }, level = 1, group = "MaximumElementalResistance6ShaperItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, - ["GlobalSupportGemLevel6ShaperItemsUnique__1"] = { type = "6Shaper", affix = "", "+1 to Level of all non-Exceptional Support Gems if 6 Shaper Items are Equipped", statOrder = { 4358 }, level = 1, group = "GlobalSupportGemLevel6ShaperItems", weightKey = { }, weightVal = { }, modTags = { "physical", "gem" }, }, - ["AdditionalCurseOnEnemies6HunterItemsUnique__1"] = { type = "6Hunter", affix = "", "You can apply an additional Curse if 6 Hunter Items are Equipped", statOrder = { 4355 }, level = 1, group = "AdditionalCurseOnEnemies6HunterItems", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, - ["GlobalChaosGemLevel6HunterItemsUnique__1"] = { type = "6Hunter", affix = "", "+1 to Level of all Chaos Skill Gems if 6 Hunter Items are Equipped", statOrder = { 4347 }, level = 1, group = "GlobalChaosGemLevel6HunterItems", weightKey = { }, weightVal = { }, modTags = { "chaos", "gem" }, }, - ["AdditionalProjectile6HunterItemsUnique__1"] = { type = "6Hunter", affix = "", "Skills fire an additional Projectile if 6 Hunter Items are Equipped", statOrder = { 4342 }, level = 1, group = "AdditionalProjectile6HunterItems", weightKey = { }, weightVal = { }, modTags = { }, }, - ["FortifyOnMeleeHit6WarlordItemsUnique__1"] = { type = "6Warlord", affix = "", "Melee Hits Fortify if 6 Warlord Items are Equipped", statOrder = { 4346 }, level = 1, group = "FortifyOnMeleeHit6WarlordItems", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, - ["GlobalFireGemLevel6WarlordItemsUnique__1"] = { type = "6Warlord", affix = "", "+1 to Level of all Fire Skill Gems if 6 Warlord Items are Equipped", statOrder = { 4349 }, level = 1, group = "GlobalFireGemLevel6WarlordItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "gem" }, }, - ["MaximumEnduranceCharges6WarlordItemsUnique__1"] = { type = "6Warlord", affix = "", "+1 to Maximum Endurance Charges if 6 Warlord Items are Equipped", statOrder = { 4352 }, level = 1, group = "MaximumEnduranceCharges6WarlordItems", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, }, - ["CannotBeFrozen6RedeemerItemsUnique__1"] = { type = "6Redeemer", affix = "", "Cannot be Frozen if 6 Redeemer Items are Equipped", statOrder = { 4344 }, level = 1, group = "CannotBeFrozen6RedeemerItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, - ["GlobalColdGemLevel6RedeemerItemsUnique__1"] = { type = "6Redeemer", affix = "", "+1 to Level of all Cold Skill Gems if 6 Redeemer Items are Equipped", statOrder = { 4348 }, level = 1, group = "GlobalColdGemLevel6RedeemerItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "gem" }, }, - ["MaximumFrenzyCharges6RedeemerItemsUnique__1"] = { type = "6Redeemer", affix = "", "+1 to Maximum Frenzy Charges if 6 Redeemer Items are Equipped", statOrder = { 4353 }, level = 1, group = "MaximumFrenzyCharges6RedeemerItems", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, }, - ["PhysicalDamagePreventedAsEnergyShieldRegen6CrusaderItemsUnique__1"] = { type = "6Crusader", affix = "", "(1-3)% of Physical Damage Prevented Recently is Regenerated as Energy Shield Per Second if 6 Crusader Items are Equipped", statOrder = { 4350 }, level = 1, group = "PhysicalDamagePreventedAsEnergyShieldRegen6CrusaderItems", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, }, - ["GlobalLightningGemLevel6CrusaderItemsUnique__1"] = { type = "6Crusader", affix = "", "+1 to Level of all Lightning Skill Gems if 6 Crusader Items are Equipped", statOrder = { 4351 }, level = 1, group = "GlobalLightningGemLevel6CrusaderItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "gem" }, }, - ["IncreasedMaximumPowerCharges6CrusaderItemsUnique__1"] = { type = "6Crusader", affix = "", "+1 to Maximum Power Charges if 6 Crusader Items are Equipped", statOrder = { 4354 }, level = 1, group = "IncreasedMaximumPowerCharges6CrusaderItems", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, }, + ["MaximumLifeIncreasePercent2ElderItemsUnique__1"] = { type = "2Elder", affix = "", "(10-15)% increased maximum Life if 2 Elder Items are Equipped", statOrder = { 4359 }, level = 1, group = "MaximumLifeIncreasePercent2ElderItems", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["NearbyEnemiesAreUnnerved2ElderItemsUnique__1"] = { type = "2Elder", affix = "", "Nearby Enemies are Unnerved if 2 Elder Items are Equipped", statOrder = { 4363 }, level = 1, group = "NearbyEnemiesAreUnnerved2ElderItems", weightKey = { }, weightVal = { }, modTags = { }, }, + ["PhysicalEnergyShieldLeechPermyriad2ElderItemsUnique__1"] = { type = "2Elder", affix = "", "(1-3)% of Physical Damage Leeched as Energy Shield if 2 Elder Items are Equipped", statOrder = { 4353 }, level = 1, group = "PhysicalEnergyShieldLeechPermyriad2ElderItems", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["MaximumManaIncreasePercent2ShaperItemsUnique__1"] = { type = "2Shaper", affix = "", "(10-15)% increased maximum Mana if 2 Shaper Items are Equipped", statOrder = { 4360 }, level = 1, group = "MaximumManaIncreasePercent2ShaperItems", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["GlobalCooldownRecovery2ShaperItemsUnique__1"] = { type = "2Shaper", affix = "", "(10-20)% increased Cooldown Recovery Rate if 2 Shaper Items are Equipped", statOrder = { 4351 }, level = 1, group = "GlobalCooldownRecovery2ShaperItems", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ElementalEnergyShieldLeechPermyriad2ShaperItemsUnique__1"] = { type = "2Shaper", affix = "", "(1-3)% of Elemental Damage Leeched as Energy Shield if 2 Shaper Items are Equipped", statOrder = { 4352 }, level = 1, group = "ElementalEnergyShieldLeechPermyriad2ShaperItems", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["UnaffectedByPoison2HunterItemsUnique__1"] = { type = "2Hunter", affix = "", "Unaffected by Poison if 2 Hunter Items are Equipped", statOrder = { 4354 }, level = 1, group = "UnaffectedByPoison2HunterItems", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, }, + ["RegenerateLifeOver1Second2HunterItemsUnique__1"] = { type = "2Hunter", affix = "", "Every 4 seconds, Regenerate 35% of Life over one second if 2 Hunter Items are Equipped", statOrder = { 4357 }, level = 1, group = "RegenerateLifeOver1Second2HunterItems", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["AdditionalPierce2HunterItemsUnique__1"] = { type = "2Hunter", affix = "", "Projectiles Pierce 2 additional Targets if 2 Hunter Items are Equipped", statOrder = { 4364 }, level = 1, group = "AdditionalPierce2HunterItems", weightKey = { }, weightVal = { }, modTags = { }, }, + ["UnaffectedByIgnite2WarlordItemsUnique__1"] = { type = "2Warlord", affix = "", "Unaffected by Ignite if 2 Warlord Items are Equipped", statOrder = { 4367 }, level = 1, group = "UnaffectedByIgnite2WarlordItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, + ["NearbyEnemiesAreIntimidated2WarlordItemsUnique__1"] = { type = "2Warlord", affix = "", "Nearby Enemies are Intimidated if 2 Warlord Items are Equipped", statOrder = { 4362 }, level = 1, group = "NearbyEnemiesAreIntimidated2WarlordItems", weightKey = { }, weightVal = { }, modTags = { }, }, + ["PercentageStrength2WarlordItemsUnique__1"] = { type = "2Warlord", affix = "", "(10-15)% increased Strength if 2 Warlord Items are Equipped", statOrder = { 4365 }, level = 1, group = "PercentageStrength2WarlordItems", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["UnaffectedByChill2RedeemerItemsUnique__1"] = { type = "2Redeemer", affix = "", "Unaffected by Chill if 2 Redeemer Items are Equipped", statOrder = { 4366 }, level = 1, group = "UnaffectedByChill2RedeemerItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["NearbyEnemiesAreBlinded2RedeemerItemsUnique__1"] = { type = "2Redeemer", affix = "", "Nearby Enemies are Blinded if 2 Redeemer Items are Equipped", statOrder = { 4361 }, level = 1, group = "NearbyEnemiesAreBlinded2RedeemerItems", weightKey = { }, weightVal = { }, modTags = { }, }, + ["PercentageDexterity2RedeemerItemsUnique__1"] = { type = "2Redeemer", affix = "", "(10-15)% increased Dexterity if 2 Redeemer Items are Equipped", statOrder = { 4356 }, level = 1, group = "PercentageDexterity2RedeemerItems", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["UnaffectedByShock2CrusaderItemsUnique__1"] = { type = "2Crusader", affix = "", "Unaffected by Shock if 2 Crusader Items are Equipped", statOrder = { 4368 }, level = 1, group = "UnaffectedByShock2CrusaderItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ConsecratedGroundStationary2CrusaderItemsUnique__1"] = { type = "2Crusader", affix = "", "Consecrated Ground around you while stationary if 2 Crusader Items are Equipped", statOrder = { 4355 }, level = 1, group = "ConsecratedGroundStationary2CrusaderItems", weightKey = { }, weightVal = { }, modTags = { }, }, + ["PercentageIntelligence2CrusaderItemsUnique__1"] = { type = "2Crusader", affix = "", "(10-15)% increased Intelligence if 2 Crusader Items are Equipped", statOrder = { 4358 }, level = 1, group = "PercentageIntelligence2CrusaderItems", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["MaximumBlockChance4ElderItemsUnique__1"] = { type = "4Elder", affix = "", "+3% to maximum Chance to Block Attack Damage if 4 Elder Items are Equipped", statOrder = { 4382 }, level = 1, group = "MaximumBlockChance4ElderItems", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["PhysicalReflectImmune4ElderItemsUnique__1"] = { type = "4Elder", affix = "", "Cannot take Reflected Physical Damage if 4 Elder Items are Equipped", statOrder = { 4379 }, level = 1, group = "PhysicalReflectImmune4ElderItems", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AdditionalCriticalStrikeChanceWithAttacks4ElderItemsUnique__1"] = { type = "4Elder", affix = "", "Attacks have +(1-1.5)% to Critical Strike Chance if 4 Elder Items are Equipped", statOrder = { 4371 }, level = 1, group = "AdditionalCriticalStrikeChanceWithAttacks4ElderItems", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, + ["MaximumSpellBlockChance4ShaperItemsUnique__1"] = { type = "4Shaper", affix = "", "+3% to maximum Chance to Block Spell Damage if 4 Shaper Items are Equipped", statOrder = { 4376 }, level = 1, group = "MaximumSpellBlockChance4ShaperItems", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["ElementalReflectImmune4ShaperItemsUnique__1"] = { type = "4Shaper", affix = "", "Cannot take Reflected Elemental Damage if 4 Shaper Items are Equipped", statOrder = { 4378 }, level = 1, group = "ElementalReflectImmune4ShaperItems", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AdditionalCriticalStrikeChanceWithSpells4ShaperItemsUnique__1"] = { type = "4Shaper", affix = "", "+(1-1.5)% to Spell Critical Strike Chance if 4 Shaper Items are Equipped", statOrder = { 4386 }, level = 1, group = "AdditionalCriticalStrikeChanceWithSpells4ShaperItems", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, }, + ["ElementalDamageTakenAsChaos4HunterItemsUnique__1"] = { type = "4Hunter", affix = "", "(5-10)% of Elemental Damage taken as Chaos Damage if 4 Hunter Items are Equipped", statOrder = { 4380 }, level = 1, group = "ElementalDamageTakenAsChaos4HunterItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "chaos" }, }, + ["MovementVelocity4HunterItemsUnique__1"] = { type = "4Hunter", affix = "", "(10-15)% increased Movement Speed if 4 Hunter Items are Equipped", statOrder = { 4377 }, level = 1, group = "MovementVelocity4HunterItems", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MaximumChaosResistance4HunterItemsUnique__1"] = { type = "4Hunter", affix = "", "+(2-3)% to maximum Chaos Resistance if 4 Hunter Items are Equipped", statOrder = { 4372 }, level = 1, group = "MaximumChaosResistance4HunterItems", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, + ["PhysicalDamageTakenAsFirePercent4WarlordItemsUnique__1"] = { type = "4Warlord", affix = "", "(5-10)% of Physical Damage taken as Fire Damage if 4 Warlord Items are Equipped", statOrder = { 4384 }, level = 1, group = "PhysicalDamageTakenAsFirePercent4WarlordItems", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "fire" }, }, + ["EnduranceChargeIfHitRecently4WarlordItemsUnique__1"] = { type = "4Warlord", affix = "", "Gain 1 Endurance Charge every second if you've been Hit Recently and", "4 Warlord Items are Equipped", statOrder = { 4381, 4381.1 }, level = 1, group = "EnduranceChargeIfHitRecently4WarlordItems", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, }, + ["MaximumFireResist4WarlordItemsUnique__1"] = { type = "4Warlord", affix = "", "+(2-3)% to maximum Fire Resistance if 4 Warlord Items are Equipped", statOrder = { 4374 }, level = 1, group = "MaximumFireResist4WarlordItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["PhysicalDamageTakenAsCold4RedeemerItemsUnique__1"] = { type = "4Redeemer", affix = "", "(5-10)% of Physical Damage taken as Cold Damage if 4 Redeemer Items are Equipped", statOrder = { 4383 }, level = 1, group = "PhysicalDamageTakenAsCold4RedeemerItems", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "cold" }, }, + ["FrenzyChargeOnHitChance4RedeemerItemsUnique__1"] = { type = "4Redeemer", affix = "", "(10-15)% chance to gain a Frenzy Charge on Hit if 4 Redeemer Items are Equipped", statOrder = { 4369 }, level = 1, group = "FrenzyChargeOnHitChance4RedeemerItems", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, }, + ["MaximumColdResist4RedeemerItemsUnique__1"] = { type = "4Redeemer", affix = "", "+(2-3)% to maximum Cold Resistance if 4 Redeemer Items are Equipped", statOrder = { 4373 }, level = 1, group = "MaximumColdResist4RedeemerItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["PhysicalDamageTakenAsLightningPercent4CrusaderItemsUnique__1"] = { type = "4Crusader", affix = "", "(5-10)% of Physical Damage taken as Lightning Damage if 4 Crusader Items are Equipped", statOrder = { 4385 }, level = 1, group = "PhysicalDamageTakenAsLightningPercent4CrusaderItems", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "lightning" }, }, + ["PowerChargeOnHit4CrusaderItemsUnique__1"] = { type = "4Crusader", affix = "", "(10-15)% chance to gain a Power Charge on Hit if 4 Crusader Items are Equipped", statOrder = { 4370 }, level = 1, group = "PowerChargeOnHit4CrusaderItems", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, }, + ["MaximumLightningResistance4CrusaderItemsUnique__1"] = { type = "4Crusader", affix = "", "+(2-3)% to maximum Lightning Resistance if 4 Crusader Items are Equipped", statOrder = { 4375 }, level = 1, group = "MaximumLightningResistance4CrusaderItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, + ["CannotBeStunned6ElderItemsUnique__1"] = { type = "6Elder", affix = "", "Cannot be Stunned if 6 Elder Items are Equipped", statOrder = { 4391 }, level = 1, group = "CannotBeStunned6ElderItems", weightKey = { }, weightVal = { }, modTags = { }, }, + ["GlobalPhysicalGemLevel6ElderItemsUnique__1"] = { type = "6Elder", affix = "", "+1 to Level of all Physical Skill Gems if 6 Elder Items are Equipped", statOrder = { 4403 }, level = 1, group = "GlobalPhysicalGemLevel6ElderItems", weightKey = { }, weightVal = { }, modTags = { "physical", "gem" }, }, + ["PercentageAllAttributes6ElderItemsUnique__1"] = { type = "6Elder", affix = "", "(10-15)% increased Attributes if 6 Elder Items are Equipped", statOrder = { 4389 }, level = 1, group = "PercentageAllAttributes6ElderItems", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["PhysAddedAsEachElement6ShaperItemsUnique__1"] = { type = "6Shaper", affix = "", "Gain (10-15)% of Physical Damage as Extra Damage of each Element if", "6 Shaper Items are Equipped", statOrder = { 4402, 4402.1 }, level = 1, group = "PhysAddedAsEachElement6ShaperItems", weightKey = { }, weightVal = { }, modTags = { "earth_elemental", "physical" }, }, + ["MaximumElementalResistance6ShaperItemsUnique__1"] = { type = "6Shaper", affix = "", "+(1-2)% to all maximum Elemental Resistances if 6 Shaper Items are Equipped", statOrder = { 4387 }, level = 1, group = "MaximumElementalResistance6ShaperItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["GlobalSupportGemLevel6ShaperItemsUnique__1"] = { type = "6Shaper", affix = "", "+1 to Level of all non-Exceptional Support Gems if 6 Shaper Items are Equipped", statOrder = { 4404 }, level = 1, group = "GlobalSupportGemLevel6ShaperItems", weightKey = { }, weightVal = { }, modTags = { "physical", "gem" }, }, + ["AdditionalCurseOnEnemies6HunterItemsUnique__1"] = { type = "6Hunter", affix = "", "You can apply an additional Curse if 6 Hunter Items are Equipped", statOrder = { 4401 }, level = 1, group = "AdditionalCurseOnEnemies6HunterItems", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["GlobalChaosGemLevel6HunterItemsUnique__1"] = { type = "6Hunter", affix = "", "+1 to Level of all Chaos Skill Gems if 6 Hunter Items are Equipped", statOrder = { 4393 }, level = 1, group = "GlobalChaosGemLevel6HunterItems", weightKey = { }, weightVal = { }, modTags = { "chaos", "gem" }, }, + ["AdditionalProjectile6HunterItemsUnique__1"] = { type = "6Hunter", affix = "", "Skills fire an additional Projectile if 6 Hunter Items are Equipped", statOrder = { 4388 }, level = 1, group = "AdditionalProjectile6HunterItems", weightKey = { }, weightVal = { }, modTags = { }, }, + ["FortifyOnMeleeHit6WarlordItemsUnique__1"] = { type = "6Warlord", affix = "", "Melee Hits Fortify if 6 Warlord Items are Equipped", statOrder = { 4392 }, level = 1, group = "FortifyOnMeleeHit6WarlordItems", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["GlobalFireGemLevel6WarlordItemsUnique__1"] = { type = "6Warlord", affix = "", "+1 to Level of all Fire Skill Gems if 6 Warlord Items are Equipped", statOrder = { 4395 }, level = 1, group = "GlobalFireGemLevel6WarlordItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "gem" }, }, + ["MaximumEnduranceCharges6WarlordItemsUnique__1"] = { type = "6Warlord", affix = "", "+1 to Maximum Endurance Charges if 6 Warlord Items are Equipped", statOrder = { 4398 }, level = 1, group = "MaximumEnduranceCharges6WarlordItems", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, }, + ["CannotBeFrozen6RedeemerItemsUnique__1"] = { type = "6Redeemer", affix = "", "Cannot be Frozen if 6 Redeemer Items are Equipped", statOrder = { 4390 }, level = 1, group = "CannotBeFrozen6RedeemerItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["GlobalColdGemLevel6RedeemerItemsUnique__1"] = { type = "6Redeemer", affix = "", "+1 to Level of all Cold Skill Gems if 6 Redeemer Items are Equipped", statOrder = { 4394 }, level = 1, group = "GlobalColdGemLevel6RedeemerItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "gem" }, }, + ["MaximumFrenzyCharges6RedeemerItemsUnique__1"] = { type = "6Redeemer", affix = "", "+1 to Maximum Frenzy Charges if 6 Redeemer Items are Equipped", statOrder = { 4399 }, level = 1, group = "MaximumFrenzyCharges6RedeemerItems", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, }, + ["PhysicalDamagePreventedAsEnergyShieldRegen6CrusaderItemsUnique__1"] = { type = "6Crusader", affix = "", "(1-3)% of Physical Damage Prevented Recently is Regenerated as Energy Shield Per Second if 6 Crusader Items are Equipped", statOrder = { 4396 }, level = 1, group = "PhysicalDamagePreventedAsEnergyShieldRegen6CrusaderItems", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, }, + ["GlobalLightningGemLevel6CrusaderItemsUnique__1"] = { type = "6Crusader", affix = "", "+1 to Level of all Lightning Skill Gems if 6 Crusader Items are Equipped", statOrder = { 4397 }, level = 1, group = "GlobalLightningGemLevel6CrusaderItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "gem" }, }, + ["IncreasedMaximumPowerCharges6CrusaderItemsUnique__1"] = { type = "6Crusader", affix = "", "+1 to Maximum Power Charges if 6 Crusader Items are Equipped", statOrder = { 4400 }, level = 1, group = "IncreasedMaximumPowerCharges6CrusaderItems", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, }, } \ No newline at end of file diff --git a/src/Data/Uniques/Special/WatchersEye.lua b/src/Data/Uniques/Special/WatchersEye.lua index 863239ab39..4fd775e705 100644 --- a/src/Data/Uniques/Special/WatchersEye.lua +++ b/src/Data/Uniques/Special/WatchersEye.lua @@ -2,149 +2,149 @@ -- Item data (c) Grinding Gear Games return { - ["DeterminationPhysicalDamageReduction"] = { affix = "", "(5-8)% additional Physical Damage Reduction while affected by Determination", statOrder = { 4433 }, level = 1, group = "DeterminationPhysicalDamageReduction", weightKey = { }, weightVal = { }, modTags = { "physical" }, }, - ["DeterminationAdditionalBlock"] = { affix = "", "+(5-8)% Chance to Block Attack Damage while affected by Determination", statOrder = { 5043 }, level = 1, group = "DeterminationAdditionalBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, }, - ["DeterminationUnaffectedByVulnerability"] = { affix = "", "Unaffected by Vulnerability while affected by Determination", statOrder = { 9960 }, level = 1, group = "DeterminationUnaffectedByVulnerability", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, - ["DeterminationReducedExtraDamageFromCrits"] = { affix = "", "You take (40-60)% reduced Extra Damage from Critical Strikes while affected by Determination", statOrder = { 6206 }, level = 1, group = "DeterminationReducedExtraDamageFromCrits", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, - ["DeterminationReducedReflectedPhysicalDamage"] = { affix = "", "(40-50)% reduced Reflected Physical Damage taken while affected by Determination", statOrder = { 9379 }, level = 1, group = "DeterminationReducedReflectedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical" }, }, - ["DeterminationAdditionalArmour"] = { affix = "", "+(600-1000) to Armour while affected by Determination", statOrder = { 4590 }, level = 1, group = "DeterminationAdditionalArmour", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, - ["GraceAdditionalChanceToEvade"] = { affix = "", "+(5-8)% chance to Evade Attack Hits while affected by Grace", statOrder = { 5385 }, level = 1, group = "GraceAdditionalChanceToEvade", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, - ["GraceChanceToDodge"] = { affix = "", "+(12-15)% chance to Suppress Spell Damage while affected by Grace", statOrder = { 9657 }, level = 1, group = "GraceChanceToDodge", weightKey = { }, weightVal = { }, modTags = { }, }, - ["GraceUnaffectedByEnfeeble"] = { affix = "", "Unaffected by Enfeeble while affected by Grace", statOrder = { 9944 }, level = 1, group = "GraceUnaffectedByEnfeeble", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, - ["GraceIncreasedMovementSpeed"] = { affix = "", "(10-15)% increased Movement Speed while affected by Grace", statOrder = { 8952 }, level = 1, group = "GraceIncreasedMovementSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, - ["GraceBlindEnemiesWhenHit"] = { affix = "", "(30-50)% chance to Blind Enemies which Hit you while affected by Grace", statOrder = { 5033 }, level = 1, group = "GraceBlindEnemiesWhenHit", weightKey = { }, weightVal = { }, modTags = { }, }, - ["DisciplineEnergyShieldRegen"] = { affix = "", "Regenerate (1.5-2.5)% of Energy Shield per Second while affected by Discipline", statOrder = { 6136 }, level = 1, group = "DisciplineEnergyShieldRegen", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["DisciplineAdditionalSpellBlock"] = { affix = "", "+(5-8)% Chance to Block Spell Damage while affected by Discipline", statOrder = { 5362 }, level = 1, group = "DisciplineAdditionalSpellBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, }, - ["DisciplineFasterStartOfRecharge"] = { affix = "", "(30-40)% faster start of Energy Shield Recharge while affected by Discipline", statOrder = { 6107 }, level = 1, group = "DisciplineFasterStartOfRecharge", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["DisciplineEnergyShieldPerHit"] = { affix = "", "Gain (20-30) Energy Shield per Enemy Hit while affected by Discipline", statOrder = { 6110 }, level = 1, group = "DisciplineEnergyShieldPerHit", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["DisciplineEnergyShieldRecoveryRate"] = { affix = "", "(10-15)% increased Energy Shield Recovery Rate while affected by Discipline", statOrder = { 6129 }, level = 1, group = "DisciplineEnergyShieldRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["WrathLightningPenetration"] = { affix = "", "Damage Penetrates (10-15)% Lightning Resistance while affected by Wrath", statOrder = { 9372 }, level = 1, group = "WrathLightningPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["WrathLightningDamageManaLeech"] = { affix = "", "(1-1.5)% of Lightning Damage is Leeched as Mana while affected by Wrath", statOrder = { 7755 }, level = 1, group = "WrathLightningDamageManaLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "elemental", "lightning" }, }, - ["WrathLightningDamageESLeech"] = { affix = "", "(1-1.5)% of Lightning Damage is Leeched as Energy Shield while affected by Wrath", statOrder = { 6114 }, level = 1, group = "WrathLightningDamageESLeech", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield", "elemental", "lightning" }, }, - ["WrathPhysicalAddedAsLightning_"] = { affix = "", "Gain (15-25)% of Physical Damage as Extra Lightning Damage while affected by Wrath", statOrder = { 9142 }, level = 1, group = "WrathPhysicalAddedAsLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, - ["WrathPhysicalConvertedToLightning"] = { affix = "", "(25-40)% of Physical Damage Converted to Lightning Damage while affected by Wrath", statOrder = { 4860 }, level = 1, group = "WrathPhysicalConvertedToLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, - ["WrathIncreasedLightningDamage"] = { affix = "", "(40-60)% increased Lightning Damage while affected by Wrath", statOrder = { 7061 }, level = 1, group = "WrathIncreasedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["WrathIncreasedCriticalStrikeChance"] = { affix = "", "(70-100)% increased Critical Strike Chance while affected by Wrath", statOrder = { 5645 }, level = 1, group = "WrathIncreasedCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, - ["AngerFirePenetration"] = { affix = "", "Damage Penetrates (10-15)% Fire Resistance while affected by Anger", statOrder = { 9371 }, level = 1, group = "AngerFirePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["AngerFireDamageLifeLeech_"] = { affix = "", "(1-1.5)% of Fire Damage Leeched as Life while affected by Anger", statOrder = { 6981 }, level = 1, group = "AngerFireDamageLifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "elemental", "fire" }, }, - ["AngerPhysicalAddedAsFire"] = { affix = "", "Gain (15-25)% of Physical Damage as Extra Fire Damage while affected by Anger", statOrder = { 9139 }, level = 1, group = "AngerPhysicalAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, - ["AngerPhysicalConvertedToFire"] = { affix = "", "(25-40)% of Physical Damage Converted to Fire Damage while affected by Anger", statOrder = { 4859 }, level = 1, group = "AngerPhysicalConvertedToFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, - ["AngerIncreasedFireDamage"] = { affix = "", "(40-60)% increased Fire Damage while affected by Anger", statOrder = { 6238 }, level = 1, group = "AngerIncreasedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["AngerIncreasedCriticalStrikeMultiplier"] = { affix = "", "+(30-50)% to Critical Strike Multiplier while affected by Anger", statOrder = { 5671 }, level = 1, group = "AngerIncreasedCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, - ["HatredColdPenetration"] = { affix = "", "Damage Penetrates (10-15)% Cold Resistance while affected by Hatred", statOrder = { 9369 }, level = 1, group = "HatredColdPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["HatredAdditionalCriticalStrikeChance"] = { affix = "", "+(1.2-1.8)% to Critical Strike Chance while affected by Hatred", statOrder = { 4407 }, level = 1, group = "HatredAdditionalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, - ["HatredAddedColdDamage"] = { affix = "", "Adds (58-70) to (88-104) Cold Damage while affected by Hatred", statOrder = { 8775 }, level = 1, group = "HatredAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["HatredPhysicalConvertedToCold"] = { affix = "", "(25-40)% of Physical Damage Converted to Cold Damage while affected by Hatred", statOrder = { 4858 }, level = 1, group = "HatredPhysicalConvertedToCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, - ["HatredIncreasedColdDamage"] = { affix = "", "(40-60)% increased Cold Damage while affected by Hatred", statOrder = { 5520 }, level = 1, group = "HatredIncreasedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["VitalityDamageLifeLeech"] = { affix = "", "(0.8-1.2)% of Damage leeched as Life while affected by Vitality", statOrder = { 6974 }, level = 1, group = "VitalityDamageLifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, - ["VitalityFlatLifeRegen"] = { affix = "", "Regenerate (100-140) Life per Second while affected by Vitality", statOrder = { 7016 }, level = 1, group = "VitalityFlatLifeRegen", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, - ["VitalityPercentLifeRegen"] = { affix = "", "Regenerate (1-1.5)% of Life per second while affected by Vitality", statOrder = { 7023 }, level = 1, group = "VitalityPercentLifeRegen", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, - ["VitalityLifeRecoveryRate"] = { affix = "", "(10-15)% increased Life Recovery Rate while affected by Vitality", statOrder = { 7006 }, level = 1, group = "VitalityLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, - ["VitalityLifeGainPerHit"] = { affix = "", "Gain (20-30) Life per Enemy Hit while affected by Vitality", statOrder = { 6968 }, level = 1, group = "VitalityLifeGainPerHit", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, - ["VitalityLifeRecoveryFromFlasks_"] = { affix = "", "(50-70)% increased Life Recovery from Flasks while affected by Vitality", statOrder = { 6309 }, level = 1, group = "VitalityLifeRecoveryFromFlasks", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, }, - ["ClarityReducedManaCost"] = { affix = "", "-(10-5) to Total Mana Cost of Skills while affected by Clarity", statOrder = { 9546 }, level = 1, group = "ClarityReducedManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["ClarityReducedManaCostNonChannelled"] = { affix = "", "Non-Channelling Skills have -(10-5) to Total Mana Cost while affected by Clarity", statOrder = { 9551 }, level = 1, group = "ClarityReducedManaCostNonChannelled", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["ClarityDamageTakenFromManaBeforeLife"] = { affix = "", "(6-10)% of Damage taken from Mana before Life while affected by Clarity", statOrder = { 5788 }, level = 1, group = "ClarityDamageTakenFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, }, - ["ClarityRecoverManaOnSkillUse"] = { affix = "", "(10-15)% chance to Recover 10% of Mana when you use a Skill while affected by Clarity", statOrder = { 9340 }, level = 1, group = "ClarityRecoverManaOnSkillUse", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["ClarityManaAddedAsEnergyShield"] = { affix = "", "Gain (6-10)% of Maximum Mana as Extra Maximum Energy Shield while affected by Clarity", statOrder = { 8717 }, level = 1, group = "ClarityManaAddedAsEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["ClarityManaRecoveryRate"] = { affix = "", "(10-15)% increased Mana Recovery Rate while affected by Clarity", statOrder = { 7764 }, level = 1, group = "ClarityManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["ClarityDamageTakenGainedAsMana"] = { affix = "", "(15-20)% of Damage taken while affected by Clarity Recouped as Mana", statOrder = { 5804 }, level = 1, group = "ClarityDamageTakenGainedAsMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["HasteChanceToDodgeSpells"] = { affix = "", "+(5-8)% chance to Suppress Spell Damage while affected by Haste", statOrder = { 9658 }, level = 1, group = "HasteChanceToDodgeSpells", weightKey = { }, weightVal = { }, modTags = { }, }, - ["HasteGainOnslaughtOnKill"] = { affix = "", "You gain Onslaught for 4 seconds on Kill while affected by Haste", statOrder = { 6452 }, level = 1, group = "HasteGainOnslaughtOnKill", weightKey = { }, weightVal = { }, modTags = { }, }, - ["HasteGainPhasing"] = { affix = "", "You have Phasing while affected by Haste", statOrder = { 6463 }, level = 1, group = "HasteGainPhasing", weightKey = { }, weightVal = { }, modTags = { }, }, - ["HasteUnaffectedByTemporalChains"] = { affix = "", "Unaffected by Temporal Chains while affected by Haste", statOrder = { 9959 }, level = 1, group = "HasteUnaffectedByTemporalChains", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, - ["HasteDebuffsExpireFaster"] = { affix = "", "Debuffs on you expire (15-20)% faster while affected by Haste", statOrder = { 5846 }, level = 1, group = "HasteDebuffsExpireFaster", weightKey = { }, weightVal = { }, modTags = { }, }, - ["HasteCooldownRecoveryForMovementSkills"] = { affix = "", "(30-50)% increased Cooldown Recovery Rate of Movement Skills used while affected by Haste", statOrder = { 8931 }, level = 1, group = "HasteCooldownRecoveryForMovementSkills", weightKey = { }, weightVal = { }, modTags = { }, }, - ["PurityOfFireTakePhysicalAsFire"] = { affix = "", "(6-10)% of Physical Damage from Hits taken as Fire Damage while affected by Purity of Fire", statOrder = { 9167 }, level = 1, group = "PurityOfFireTakePhysicalAsFire", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "fire" }, }, - ["PurityOfFireImmuneToIgnite"] = { affix = "", "Immune to Ignite while affected by Purity of Fire", statOrder = { 6860 }, level = 1, group = "PurityOfFireImmuneToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, - ["PurityOfFireUnaffectedByBurningGround"] = { affix = "", "Unaffected by Burning Ground while affected by Purity of Fire", statOrder = { 9932 }, level = 1, group = "PurityOfFireUnaffectedByBurningGround", weightKey = { }, weightVal = { }, modTags = { }, }, - ["PurityOfFireUnaffectedByFlammability__"] = { affix = "", "Unaffected by Flammability while affected by Purity of Fire", statOrder = { 9945 }, level = 1, group = "PurityOfFireUnaffectedByFlammability", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, - ["PurityOfFireReducedReflectedFireDamage"] = { affix = "", "(40-50)% reduced Reflected Fire Damage taken while affected by Purity of Fire", statOrder = { 6252 }, level = 1, group = "PurityOfFireReducedReflectedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, }, - ["PurityOfFireColdAndLightningTakenAsFire"] = { affix = "", "(10-20)% of Cold and Lightning Damage taken as Fire Damage while affected by Purity of Fire", statOrder = { 5508 }, level = 1, group = "PurityOfFireColdAndLightningTakenAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, }, - ["PurityOfIceTakePhysicalAsIce"] = { affix = "", "(6-10)% of Physical Damage from Hits taken as Cold Damage while affected by Purity of Ice", statOrder = { 9165 }, level = 1, group = "PurityOfIceTakePhysicalAsIce", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "cold" }, }, - ["PurityOfIceImmuneToFreeze"] = { affix = "", "Immune to Freeze while affected by Purity of Ice", statOrder = { 6857 }, level = 1, group = "PurityOfIceImmuneToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, - ["PurityOfIceUnaffectedByChilledGround"] = { affix = "", "Unaffected by Chilled Ground while affected by Purity of Ice", statOrder = { 9937 }, level = 1, group = "PurityOfIceUnaffectedByChilledGround", weightKey = { }, weightVal = { }, modTags = { }, }, - ["PurityOfIceUnaffectedByFrostbite"] = { affix = "", "Unaffected by Frostbite while affected by Purity of Ice", statOrder = { 9947 }, level = 1, group = "PurityOfIceUnaffectedByFrostbite", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, - ["PurityOfIceReducedReflectedColdDamage"] = { affix = "", "(40-50)% reduced Reflected Cold Damage taken while affected by Purity of Ice", statOrder = { 5539 }, level = 1, group = "PurityOfIceReducedReflectedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, }, - ["PurityOfIceFireAndLightningTakenAsCold"] = { affix = "", "(10-20)% of Fire and Lightning Damage taken as Cold Damage while affected by Purity of Ice", statOrder = { 6222 }, level = 1, group = "PurityOfIceFireAndLightningTakenAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, }, - ["PurityOfLightningTakePhysicalAsLightning"] = { affix = "", "(6-10)% of Physical Damage from Hits taken as Lightning Damage while affected by Purity of Lightning", statOrder = { 9169 }, level = 1, group = "PurityOfLightningTakePhysicalAsLightning", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "lightning" }, }, - ["PurityOfLightningImmuneToShock_"] = { affix = "", "Immune to Shock while affected by Purity of Lightning", statOrder = { 6865 }, level = 1, group = "PurityOfLightningImmuneToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, - ["PurityOfLightningUnaffectedByShockedGround"] = { affix = "", "Unaffected by Shocked Ground while affected by Purity of Lightning", statOrder = { 9957 }, level = 1, group = "PurityOfLightningUnaffectedByShockedGround", weightKey = { }, weightVal = { }, modTags = { }, }, - ["PurityOfLightningUnaffectedByConductivity_____"] = { affix = "", "Unaffected by Conductivity while affected by Purity of Lightning", statOrder = { 9938 }, level = 1, group = "PurityOfLightningUnaffectedByConductivity", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, - ["PurityOfLightningReducedReflectedLightningDamage"] = { affix = "", "(40-50)% reduced Reflected Lightning Damage taken while affected by Purity of Lightning", statOrder = { 7073 }, level = 1, group = "PurityOfLightningReducedReflectedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, }, - ["PurityOfLightningFireAndColdTakenAsLightning"] = { affix = "", "(10-20)% of Fire and Cold Damage taken as Lightning Damage while", "affected by Purity of Lightning", statOrder = { 6220, 6220.1 }, level = 1, group = "PurityOfLightningFireAndColdTakenAsLightning", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, }, - ["PurityOfElementsTakePhysicalAsFire_"] = { affix = "", "(8-12)% of Physical Damage from Hits taken as Fire Damage while affected by Purity of Elements", statOrder = { 9166 }, level = 1, group = "PurityOfElementsTakePhysicalAsFire", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "fire" }, }, - ["PurityOfElementsTakePhysicalAsCold"] = { affix = "", "(8-12)% of Physical Damage from Hits taken as Cold Damage while affected by Purity of Elements", statOrder = { 9164 }, level = 1, group = "PurityOfElementsTakePhysicalAsCold", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "cold" }, }, - ["PurityOfElementsTakePhysicalAsLightning"] = { affix = "", "(8-12)% of Physical Damage from Hits taken as Lightning Damage while affected by Purity of Elements", statOrder = { 9168 }, level = 1, group = "PurityOfElementsTakePhysicalAsLightning", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "lightning" }, }, - ["PurityOfElementsUnaffectedByElementalWeakness"] = { affix = "", "Unaffected by Elemental Weakness while affected by Purity of Elements", statOrder = { 9943 }, level = 1, group = "PurityOfElementsUnaffectedByElementalWeakness", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, - ["PurityOfElementsReducedReflectedElementalDamage"] = { affix = "", "(40-50)% reduced Reflected Elemental Damage taken while affected by Purity of Elements", statOrder = { 6024 }, level = 1, group = "PurityOfElementsReducedReflectedElementalDamage", weightKey = { }, weightVal = { }, modTags = { "elemental" }, }, - ["PurityOfElementsChaosResistance"] = { affix = "", "+(30-50)% to Chaos Resistance while affected by Purity of Elements", statOrder = { 5452 }, level = 1, group = "PurityOfElementsChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, - ["PurityOfElementsMaximumElementalResistances"] = { affix = "", "+1% to all maximum Elemental Resistances while affected by Purity of Elements", statOrder = { 4415 }, level = 1, group = "PurityOfElementsMaximumElementalResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, - ["PrecisionIncreasedCriticalStrikeMultiplier"] = { affix = "", "+(20-30)% to Critical Strike Multiplier while affected by Precision", statOrder = { 5672 }, level = 1, group = "PrecisionIncreasedCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, - ["PrecisionIncreasedAttackDamage"] = { affix = "", "(40-60)% increased Attack Damage while affected by Precision", statOrder = { 4684 }, level = 1, group = "PrecisionIncreasedAttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, - ["PrecisionFlaskChargeOnCrit_"] = { affix = "", "Gain a Flask Charge when you deal a Critical Strike while affected by Precision", statOrder = { 9330 }, level = 1, group = "PrecisionFlaskChargeOnCrit", weightKey = { }, weightVal = { }, modTags = { "flask", "critical" }, }, - ["PrecisionIncreasedAttackSpeed"] = { affix = "", "(10-15)% increased Attack Speed while affected by Precision", statOrder = { 4725 }, level = 1, group = "PrecisionIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, - ["PrecisionCannotBeBlinded"] = { affix = "", "Cannot be Blinded while affected by Precision", statOrder = { 5102 }, level = 1, group = "PrecisionCannotBeBlinded", weightKey = { }, weightVal = { }, modTags = { }, }, - ["PrideChanceForDoubleDamage"] = { affix = "", "(8-12)% chance to deal Double Damage while using Pride", statOrder = { 9218 }, level = 1, group = "PrideChanceForDoubleDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["PrideIntimidateOnHit"] = { affix = "", "Your Hits Intimidate Enemies for 4 seconds while you are using Pride", statOrder = { 9220 }, level = 1, group = "PrideIntimidateOnHit", weightKey = { }, weightVal = { }, modTags = { }, }, - ["PrideIncreasedPhysicalDamage_"] = { affix = "", "(40-60)% increased Physical Damage while using Pride", statOrder = { 9224 }, level = 1, group = "PrideIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, - ["PrideChanceToImpale"] = { affix = "", "25% chance to Impale Enemies on Hit with Attacks while using Pride", statOrder = { 9219 }, level = 1, group = "PrideChanceToImpale", weightKey = { }, weightVal = { }, modTags = { "physical" }, }, - ["PrideImpaleAdditionalHits"] = { affix = "", "Impales you inflict last 2 additional Hits while using Pride", statOrder = { 9226 }, level = 1, group = "PrideImpaleAdditionalHits", weightKey = { }, weightVal = { }, modTags = { "physical" }, }, - ["SublimeVisionAnger"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "Always Scorch while affected by Anger", "Aura Skills other than Anger are Disabled", statOrder = { 3432, 4488, 10126 }, level = 1, group = "SublimeVisionAnger", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, - ["SublimeVisionClarity"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "80% increased Effect of Arcane Surge on you while affected by Clarity", "Aura Skills other than Clarity are Disabled", statOrder = { 3432, 4534, 10127 }, level = 1, group = "SublimeVisionClarity", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SublimeVisionDetermination"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "+1 to Maximum Endurance Charges while affected by Determination", "Aura Skills other than Determination are Disabled", statOrder = { 3432, 8683, 10128 }, level = 1, group = "SublimeVisionDetermination", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SublimeVisionDiscipline"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "+1 to Maximum Power Charges while affected by Discipline", "Aura Skills other than Discipline are Disabled", statOrder = { 3432, 8724, 10129 }, level = 1, group = "SublimeVisionDiscipline", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SublimeVisionGrace"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "+1 to Maximum Frenzy Charges while affected by Grace", "Aura Skills other than Grace are Disabled", statOrder = { 3432, 8690, 10130 }, level = 1, group = "SublimeVisionGrace", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SublimeVisionHaste"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "10% increased Action Speed while affected by Haste", "Aura Skills other than Haste are Disabled", statOrder = { 3432, 4381, 10131 }, level = 1, group = "SublimeVisionHaste", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, - ["SublimeVisionHatred"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "Always inflict Brittle while affected by Hatred", "Aura Skills other than Hatred are Disabled", statOrder = { 3432, 4483, 10132 }, level = 1, group = "SublimeVisionHatred", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, - ["SublimeVisionMalevolence"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "You can apply an additional Curse while affected by Malevolence", "Aura Skills other than Malevolence are Disabled", statOrder = { 3432, 9036, 10133 }, level = 1, group = "SublimeVisionMalevolence", weightKey = { }, weightVal = { }, modTags = { "curse" }, }, - ["SublimeVisionPrecision"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "25% more Critical Strike chance while affected by Precision", "Aura Skills other than Precision are Disabled", statOrder = { 3432, 5619, 10134 }, level = 1, group = "SublimeVisionPrecision", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, - ["SublimeVisionPride"] = { affix = "", "(20-40)% increased Effect of Non-Curse Auras from your Skills on Enemies", "Enemies you Kill while using Pride have 25% chance to Explode, dealing a tenth of their maximum Life as Physical Damage", "Aura Skills other than Pride are Disabled", statOrder = { 3430, 6187, 10135 }, level = 1, group = "SublimeVisionPride", weightKey = { }, weightVal = { }, modTags = { "physical" }, }, - ["SublimeVisionPurityOfElements"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "+3% to all maximum Elemental Resistances while affected by Purity of Elements", "Aura Skills other than Purity of Elements are Disabled", statOrder = { 3432, 4415, 10136 }, level = 1, group = "SublimeVisionPurityOfElements", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, - ["SublimeVisionPurityOfIce"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "30% of Fire and Lightning Damage taken as Cold Damage while affected by Purity of Ice", "Aura Skills other than Purity of Ice are Disabled", statOrder = { 3432, 6222, 10138 }, level = 1, group = "SublimeVisionPurityOfIce", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, }, - ["SublimeVisionPurityOfLightning"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "30% of Fire and Cold Damage taken as Lightning Damage while", "affected by Purity of Lightning", "Aura Skills other than Purity of Lightning are Disabled", statOrder = { 3432, 6220, 6220.1, 10139 }, level = 1, group = "SublimeVisionPurityOfLightning", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, }, - ["SublimeVisionPurityOfFire"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "30% of Cold and Lightning Damage taken as Fire Damage while affected by Purity of Fire", "Aura Skills other than Purity of Fire are Disabled", statOrder = { 3432, 5508, 10137 }, level = 1, group = "SublimeVisionPurityOfFire", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, }, - ["SublimeVisionVitality"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "Regenerate 15% Life over one second when hit while affected by Vitality", "Aura Skills other than Vitality are Disabled", statOrder = { 3432, 9383, 10140 }, level = 1, group = "SublimeVisionVitality", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, - ["SublimeVisionWrath"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "Always Sap while affected by Wrath", "Aura Skills other than Wrath are Disabled", statOrder = { 3432, 4487, 10141 }, level = 1, group = "SublimeVisionWrath", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, - ["SublimeVisionZealotry"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "Unaffected by Curses while affected by Zealotry", "Aura Skills other than Zealotry are Disabled", statOrder = { 3432, 9940, 10142 }, level = 1, group = "SublimeVisionZealotry", weightKey = { }, weightVal = { }, modTags = { "curse" }, }, - ["MalevolenceSkillEffectDuration"] = { affix = "", "(20-30)% increased Skill Effect Duration while affected by Malevolence", statOrder = { 9540 }, level = 1, group = "MalevolenceSkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, }, - ["MalevolenceChaosNonAilmentDamageOverTimeMultiplier"] = { affix = "", "+(18-22)% to Damage over Time Multiplier while affected by Malevolence", statOrder = { 5951 }, level = 1, group = "MalevolenceDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["MalevolenceColdDamageOverTimeMultiplier"] = { affix = "", "+(18-22)% to Damage over Time Multiplier while affected by Malevolence", statOrder = { 5951 }, level = 1, group = "MalevolenceDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["MalevolenceLifeAndEnergyShieldRecoveryRate"] = { affix = "", "(8-12)% increased Recovery rate of Life and Energy Shield while affected by Malevolence", statOrder = { 6958 }, level = 1, group = "MalevolenceLifeAndEnergyShieldRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, }, - ["MalevolenceUnaffectedByPoison"] = { affix = "", "Unaffected by Poison while affected by Malevolence", statOrder = { 9951 }, level = 1, group = "MalevolenceUnaffectedByPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, }, - ["MalevolenceUnaffectedByBleeding_"] = { affix = "", "Unaffected by Bleeding while affected by Malevolence", statOrder = { 9928 }, level = 1, group = "MalevolenceUnaffectedByBleeding", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["MalevolenceYourAilmentsDealDamageFaster__"] = { affix = "", "Damaging Ailments you inflict deal Damage (10-15)% faster while affected by Malevolence", statOrder = { 10124 }, level = 1, group = "MalevolenceYourAilmentsDealDamageFaster", weightKey = { }, weightVal = { }, modTags = { "damage", "ailment" }, }, - ["MalevolenceDamageOverTimeMultiplier"] = { affix = "", "+(18-22)% to Damage over Time Multiplier while affected by Malevolence", statOrder = { 5951 }, level = 1, group = "MalevolenceDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["ZealotryCriticalStrikesPenetratesElementalResistances"] = { affix = "", "Critical Strikes Penetrate (8-10)% of Enemy Elemental Resistances while affected by Zealotry", statOrder = { 5686 }, level = 1, group = "ZealotryCriticalStrikesPenetratesElementalResistances", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "critical" }, }, - ["ZealotryCastSpeed"] = { affix = "", "(10-15)% increased Cast Speed while affected by Zealotry", statOrder = { 5175 }, level = 1, group = "ZealotryCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, - ["ZealotryConsecratedGroundEffectLingersForMsAfterLeavingTheArea"] = { affix = "", "Effects of Consecrated Ground you create while affected by Zealotry Linger for 2 seconds", statOrder = { 5558 }, level = 1, group = "ZealotryConsecratedGroundEffectLingersForMsAfterLeavingTheArea", weightKey = { }, weightVal = { }, modTags = { }, }, - ["ZealotryConsecratedGroundEnemyDamageTaken"] = { affix = "", "Consecrated Ground you create while affected by Zealotry causes enemies to take (8-10)% increased Damage", statOrder = { 5555 }, level = 1, group = "ZealotryConsecratedGroundEnemyDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, }, - ["ZealotryGainArcaneSurgeFor4SecondsWhenYouCreateConsecratedGround"] = { affix = "", "Gain Arcane Surge for 4 seconds when you create Consecrated Ground while affected by Zealotry", statOrder = { 6388 }, level = 1, group = "ZealotryGainArcaneSurgeFor4SecondsWhenYouCreateConsecratedGround", weightKey = { }, weightVal = { }, modTags = { }, }, - ["ZealotryMaximumEnergyShieldPerSecondToMaximumEnergyShieldLeechRate"] = { affix = "", "30% increased Maximum total Energy Shield Recovery per second from Leech while affected by Zealotry", statOrder = { 1617 }, level = 1, group = "ZealotryMaximumEnergyShieldPerSecondToMaximumEnergyShieldLeechRateOld", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["ZealotryMaximumEnergyShieldPerSecondToMaximumEnergyShieldLeechRateNew"] = { affix = "", "30% increased Maximum total Energy Shield Recovery per second from Leech while affected by Zealotry", statOrder = { 1616 }, level = 1, group = "ZealotryMaximumEnergyShieldPerSecondToMaximumEnergyShieldLeechRate", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["ZealotryCriticalStrikeChanceAgainstEnemiesOnConsecratedGround"] = { affix = "", "(100-120)% increased Critical Strike Chance against Enemies on Consecrated Ground while affected by Zealotry", statOrder = { 5625 }, level = 1, group = "ZealotryCriticalStrikeChanceAgainstEnemiesOnConsecratedGround", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, - ["SummonArbalistNumberOfArbalistsAllowed"] = { affix = "", "+1 to number of Summoned Arbalists", statOrder = { 9046 }, level = 1, group = "SummonArbalistNumberOfArbalistsAllowed", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SummonArbalistNumberOfAdditionalProjectiles_"] = { affix = "", "Summoned Arbalists fire (2-4) additional Projectiles", statOrder = { 9760 }, level = 1, group = "SummonArbalistNumberOfAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SummonArbalistAttackSpeed_"] = { affix = "", "Summoned Arbalists have (30-40)% increased Attack Speed", statOrder = { 9750 }, level = 1, group = "SummonArbalistAttackSpeed", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SummonArbalistTargetsToPierce"] = { affix = "", "Summoned Arbalists' Projectiles Pierce (2-4) additional Targets", statOrder = { 9769 }, level = 1, group = "SummonArbalistTargetsToPierce", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SummonArbalistProjectilesFork"] = { affix = "", "Summoned Arbalists' Projectiles Fork", statOrder = { 9768 }, level = 1, group = "SummonArbalistProjectilesFork", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SummonArbalistChains_"] = { affix = "", "Summoned Arbalists' Projectiles Chain +2 times", statOrder = { 9751 }, level = 1, group = "SummonArbalistChains", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SummonArbalistNumberOfSplits__"] = { affix = "", "Summoned Arbalists' Projectiles Split into 3", statOrder = { 9761 }, level = 1, group = "SummonArbalistNumberOfSplits", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SummonArbalistChanceToDealDoubleDamage___"] = { affix = "", "Summoned Arbalists have (25-35)% chance to deal Double Damage", statOrder = { 9754 }, level = 1, group = "SummonArbalistChanceToDealDoubleDamage", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SummonArbalistChanceToMaimfor4secondsOnHit_"] = { affix = "", "Summoned Arbalists have (20-30)% chance to Maim for 4 seconds on Hit", statOrder = { 9757 }, level = 1, group = "SummonArbalistChanceToMaimfor4secondsOnHit", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SummonArbalistChanceToIntimidateFor4SecondsOnHit"] = { affix = "", "Summoned Arbalists have (20-30)% chance to Intimidate for 4 seconds on Hit", statOrder = { 9756 }, level = 1, group = "SummonArbalistChanceToIntimidateFor4SecondsOnHit", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SummonArbalistChanceToUnnerveFor4SecondsOnHit_"] = { affix = "", "Summoned Arbalists have (20-30)% chance to Unnerve for 4 seconds on Hit", statOrder = { 9759 }, level = 1, group = "SummonArbalistChanceToUnnerveFor4SecondsOnHit", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SummonArbalistChanceToInflictFireExposureOnHit_"] = { affix = "", "Summoned Arbalists have (10-20)% chance to inflict Fire Exposure on Hit", statOrder = { 9774 }, level = 1, group = "SummonArbalistChanceToInflictFireExposureOnHit", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SummonArbalistChanceToInflictColdExposureonHit"] = { affix = "", "Summoned Arbalists have (10-20)% chance to inflict Cold Exposure on Hit", statOrder = { 9773 }, level = 1, group = "SummonArbalistChanceToInflictColdExposureonHit", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SummonArbalistChanceToInflictLightningExposureOnHit_"] = { affix = "", "Summoned Arbalists have (10-20)% chance to inflict Lightning Exposure on Hit", statOrder = { 9775 }, level = 1, group = "SummonArbalistChanceToInflictLightningExposureOnHit", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SummonArbalistChanceToCrushOnHit"] = { affix = "", "Summoned Arbalists have (10-20)% chance to Crush on Hit", statOrder = { 9753 }, level = 1, group = "SummonArbalistChanceToCrushOnHit", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SummonArbalistPhysicalDamagePercentToConvertToFire"] = { affix = "", "Summoned Arbalists Convert 100% of Physical Damage to Fire Damage", "Summoned Arbalists have (10-20)% chance to Ignite", statOrder = { 9766, 9771 }, level = 1, group = "SummonArbalistPhysicalDamageToConvertToFire", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SummonArbalistPhysicalDamagePercentToConvertToCold_"] = { affix = "", "Summoned Arbalists Convert 100% of Physical Damage to Cold Damage", "Summoned Arbalists have (10-20)% chance to Freeze", statOrder = { 9765, 9770 }, level = 1, group = "SummonArbalistPhysicalDamageToConvertToCold", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SummonArbalistPhysicalDamagePercentToConvertToLightning"] = { affix = "", "Summoned Arbalists Convert 100% of Physical Damage to Lightning Damage", "Summoned Arbalists have (10-20)% chance to Shock", statOrder = { 9767, 9772 }, level = 1, group = "SummonArbalistPhysicalDamageToConvertToLightning", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SummonArbalistPhysicalDamagePercentToAddAsFire"] = { affix = "", "Summoned Arbalists gain (30-40)% of Physical Damage as Extra Fire Damage", "Summoned Arbalists have 20% chance to inflict Fire Exposure on Hit", statOrder = { 9763, 9774 }, level = 1, group = "SummonArbalistPhysicalDamageToAddAsFire", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SummonArbalistPhysicalDamagePercentToAddAsCold_"] = { affix = "", "Summoned Arbalists gain (30-40)% of Physical Damage as Extra Cold Damage", "Summoned Arbalists have 20% chance to inflict Cold Exposure on Hit", statOrder = { 9762, 9773 }, level = 1, group = "SummonArbalistPhysicalDamageToAddAsCold", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SummonArbalistPhysicalDamagePercentToAddAsLightning"] = { affix = "", "Summoned Arbalists gain (30-40)% of Physical Damage as Extra Lightning Damage", "Summoned Arbalists have 20% chance to inflict Lightning Exposure on Hit", statOrder = { 9764, 9775 }, level = 1, group = "SummonArbalistPhysicalDamageToAddAsLightning", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SummonArbalistChanceToBleedPercent_"] = { affix = "", "Summoned Arbalists' Attacks have (40-60)% chance to inflict Bleeding", statOrder = { 9752 }, level = 1, group = "SummonArbalistChanceToBleed", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SummonArbalistChanceToPoisonPercent"] = { affix = "", "Summoned Arbalists have (40-60)% chance to Poison", statOrder = { 9758 }, level = 1, group = "SummonArbalistChanceToPoison", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SummonArbalistChanceToIgniteFreezeShockPercent"] = { affix = "", "Summoned Arbalists have (15-25)% chance to Freeze, Shock, and Ignite", statOrder = { 9755 }, level = 1, group = "SummonArbalistChanceToIgniteFreezeShock", weightKey = { }, weightVal = { }, modTags = { }, }, + ["DeterminationPhysicalDamageReduction"] = { affix = "", "(5-8)% additional Physical Damage Reduction while affected by Determination", statOrder = { 4484 }, level = 1, group = "DeterminationPhysicalDamageReduction", weightKey = { }, weightVal = { }, modTags = { "physical" }, }, + ["DeterminationAdditionalBlock"] = { affix = "", "+(5-8)% Chance to Block Attack Damage while affected by Determination", statOrder = { 5125 }, level = 1, group = "DeterminationAdditionalBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["DeterminationUnaffectedByVulnerability"] = { affix = "", "Unaffected by Vulnerability while affected by Determination", statOrder = { 10268 }, level = 1, group = "DeterminationUnaffectedByVulnerability", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["DeterminationReducedExtraDamageFromCrits"] = { affix = "", "You take (40-60)% reduced Extra Damage from Critical Strikes while affected by Determination", statOrder = { 6422 }, level = 1, group = "DeterminationReducedExtraDamageFromCrits", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["DeterminationReducedReflectedPhysicalDamage"] = { affix = "", "(40-50)% reduced Reflected Physical Damage taken while affected by Determination", statOrder = { 9672 }, level = 1, group = "DeterminationReducedReflectedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical" }, }, + ["DeterminationAdditionalArmour"] = { affix = "", "+(600-1000) to Armour while affected by Determination", statOrder = { 4664 }, level = 1, group = "DeterminationAdditionalArmour", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["GraceAdditionalChanceToEvade"] = { affix = "", "+(5-8)% chance to Evade Attack Hits while affected by Grace", statOrder = { 5573 }, level = 1, group = "GraceAdditionalChanceToEvade", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["GraceChanceToDodge"] = { affix = "", "+(12-15)% chance to Suppress Spell Damage while affected by Grace", statOrder = { 9958 }, level = 1, group = "GraceChanceToDodge", weightKey = { }, weightVal = { }, modTags = { }, }, + ["GraceUnaffectedByEnfeeble"] = { affix = "", "Unaffected by Enfeeble while affected by Grace", statOrder = { 10252 }, level = 1, group = "GraceUnaffectedByEnfeeble", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["GraceIncreasedMovementSpeed"] = { affix = "", "(10-15)% increased Movement Speed while affected by Grace", statOrder = { 9227 }, level = 1, group = "GraceIncreasedMovementSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["GraceBlindEnemiesWhenHit"] = { affix = "", "(30-50)% chance to Blind Enemies which Hit you while affected by Grace", statOrder = { 5115 }, level = 1, group = "GraceBlindEnemiesWhenHit", weightKey = { }, weightVal = { }, modTags = { }, }, + ["DisciplineEnergyShieldRegen"] = { affix = "", "Regenerate (1.5-2.5)% of Energy Shield per Second while affected by Discipline", statOrder = { 6346 }, level = 1, group = "DisciplineEnergyShieldRegen", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["DisciplineAdditionalSpellBlock"] = { affix = "", "+(5-8)% Chance to Block Spell Damage while affected by Discipline", statOrder = { 5550 }, level = 1, group = "DisciplineAdditionalSpellBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["DisciplineFasterStartOfRecharge"] = { affix = "", "(30-40)% faster start of Energy Shield Recharge while affected by Discipline", statOrder = { 6316 }, level = 1, group = "DisciplineFasterStartOfRecharge", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["DisciplineEnergyShieldPerHit"] = { affix = "", "Gain (20-30) Energy Shield per Enemy Hit while affected by Discipline", statOrder = { 6319 }, level = 1, group = "DisciplineEnergyShieldPerHit", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["DisciplineEnergyShieldRecoveryRate"] = { affix = "", "(10-15)% increased Energy Shield Recovery Rate while affected by Discipline", statOrder = { 6339 }, level = 1, group = "DisciplineEnergyShieldRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["WrathLightningPenetration"] = { affix = "", "Damage Penetrates (10-15)% Lightning Resistance while affected by Wrath", statOrder = { 9665 }, level = 1, group = "WrathLightningPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["WrathLightningDamageManaLeech"] = { affix = "", "(1-1.5)% of Lightning Damage is Leeched as Mana while affected by Wrath", statOrder = { 8016 }, level = 1, group = "WrathLightningDamageManaLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "elemental", "lightning" }, }, + ["WrathLightningDamageESLeech"] = { affix = "", "(1-1.5)% of Lightning Damage is Leeched as Energy Shield while affected by Wrath", statOrder = { 6324 }, level = 1, group = "WrathLightningDamageESLeech", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield", "elemental", "lightning" }, }, + ["WrathPhysicalAddedAsLightning_"] = { affix = "", "Gain (15-25)% of Physical Damage as Extra Lightning Damage while affected by Wrath", statOrder = { 9423 }, level = 1, group = "WrathPhysicalAddedAsLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, + ["WrathPhysicalConvertedToLightning"] = { affix = "", "(25-40)% of Physical Damage Converted to Lightning Damage while affected by Wrath", statOrder = { 4939 }, level = 1, group = "WrathPhysicalConvertedToLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, + ["WrathIncreasedLightningDamage"] = { affix = "", "(40-60)% increased Lightning Damage while affected by Wrath", statOrder = { 7309 }, level = 1, group = "WrathIncreasedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["WrathIncreasedCriticalStrikeChance"] = { affix = "", "(70-100)% increased Critical Strike Chance while affected by Wrath", statOrder = { 5838 }, level = 1, group = "WrathIncreasedCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["AngerFirePenetration"] = { affix = "", "Damage Penetrates (10-15)% Fire Resistance while affected by Anger", statOrder = { 9664 }, level = 1, group = "AngerFirePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["AngerFireDamageLifeLeech_"] = { affix = "", "(1-1.5)% of Fire Damage Leeched as Life while affected by Anger", statOrder = { 7228 }, level = 1, group = "AngerFireDamageLifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "elemental", "fire" }, }, + ["AngerPhysicalAddedAsFire"] = { affix = "", "Gain (15-25)% of Physical Damage as Extra Fire Damage while affected by Anger", statOrder = { 9420 }, level = 1, group = "AngerPhysicalAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["AngerPhysicalConvertedToFire"] = { affix = "", "(25-40)% of Physical Damage Converted to Fire Damage while affected by Anger", statOrder = { 4938 }, level = 1, group = "AngerPhysicalConvertedToFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["AngerIncreasedFireDamage"] = { affix = "", "(40-60)% increased Fire Damage while affected by Anger", statOrder = { 6454 }, level = 1, group = "AngerIncreasedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["AngerIncreasedCriticalStrikeMultiplier"] = { affix = "", "+(30-50)% to Critical Strike Multiplier while affected by Anger", statOrder = { 5865 }, level = 1, group = "AngerIncreasedCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, + ["HatredColdPenetration"] = { affix = "", "Damage Penetrates (10-15)% Cold Resistance while affected by Hatred", statOrder = { 9662 }, level = 1, group = "HatredColdPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["HatredAdditionalCriticalStrikeChance"] = { affix = "", "+(1.2-1.8)% to Critical Strike Chance while affected by Hatred", statOrder = { 4457 }, level = 1, group = "HatredAdditionalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["HatredAddedColdDamage"] = { affix = "", "Adds (58-70) to (88-104) Cold Damage while affected by Hatred", statOrder = { 9044 }, level = 1, group = "HatredAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["HatredPhysicalConvertedToCold"] = { affix = "", "(25-40)% of Physical Damage Converted to Cold Damage while affected by Hatred", statOrder = { 4937 }, level = 1, group = "HatredPhysicalConvertedToCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, + ["HatredIncreasedColdDamage"] = { affix = "", "(40-60)% increased Cold Damage while affected by Hatred", statOrder = { 5711 }, level = 1, group = "HatredIncreasedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["VitalityDamageLifeLeech"] = { affix = "", "(0.8-1.2)% of Damage leeched as Life while affected by Vitality", statOrder = { 7221 }, level = 1, group = "VitalityDamageLifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["VitalityFlatLifeRegen"] = { affix = "", "Regenerate (100-140) Life per Second while affected by Vitality", statOrder = { 7264 }, level = 1, group = "VitalityFlatLifeRegen", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["VitalityPercentLifeRegen"] = { affix = "", "Regenerate (1-1.5)% of Life per second while affected by Vitality", statOrder = { 7271 }, level = 1, group = "VitalityPercentLifeRegen", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["VitalityLifeRecoveryRate"] = { affix = "", "(10-15)% increased Life Recovery Rate while affected by Vitality", statOrder = { 7254 }, level = 1, group = "VitalityLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["VitalityLifeGainPerHit"] = { affix = "", "Gain (20-30) Life per Enemy Hit while affected by Vitality", statOrder = { 7215 }, level = 1, group = "VitalityLifeGainPerHit", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["VitalityLifeRecoveryFromFlasks_"] = { affix = "", "(50-70)% increased Life Recovery from Flasks while affected by Vitality", statOrder = { 6526 }, level = 1, group = "VitalityLifeRecoveryFromFlasks", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, }, + ["ClarityReducedManaCost"] = { affix = "", "-(10-5) to Total Mana Cost of Skills while affected by Clarity", statOrder = { 9843 }, level = 1, group = "ClarityReducedManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["ClarityReducedManaCostNonChannelled"] = { affix = "", "Non-Channelling Skills have -(10-5) to Total Mana Cost while affected by Clarity", statOrder = { 9848 }, level = 1, group = "ClarityReducedManaCostNonChannelled", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["ClarityDamageTakenFromManaBeforeLife"] = { affix = "", "(6-10)% of Damage taken from Mana before Life while affected by Clarity", statOrder = { 5983 }, level = 1, group = "ClarityDamageTakenFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, }, + ["ClarityRecoverManaOnSkillUse"] = { affix = "", "(10-15)% chance to Recover 10% of Mana when you use a Skill while affected by Clarity", statOrder = { 9633 }, level = 1, group = "ClarityRecoverManaOnSkillUse", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["ClarityManaAddedAsEnergyShield"] = { affix = "", "Gain (6-10)% of Maximum Mana as Extra Maximum Energy Shield while affected by Clarity", statOrder = { 8983 }, level = 1, group = "ClarityManaAddedAsEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["ClarityManaRecoveryRate"] = { affix = "", "(10-15)% increased Mana Recovery Rate while affected by Clarity", statOrder = { 8025 }, level = 1, group = "ClarityManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["ClarityDamageTakenGainedAsMana"] = { affix = "", "(15-20)% of Damage taken while affected by Clarity Recouped as Mana", statOrder = { 6001 }, level = 1, group = "ClarityDamageTakenGainedAsMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["HasteChanceToDodgeSpells"] = { affix = "", "+(5-8)% chance to Suppress Spell Damage while affected by Haste", statOrder = { 9959 }, level = 1, group = "HasteChanceToDodgeSpells", weightKey = { }, weightVal = { }, modTags = { }, }, + ["HasteGainOnslaughtOnKill"] = { affix = "", "You gain Onslaught for 4 seconds on Kill while affected by Haste", statOrder = { 6672 }, level = 1, group = "HasteGainOnslaughtOnKill", weightKey = { }, weightVal = { }, modTags = { }, }, + ["HasteGainPhasing"] = { affix = "", "You have Phasing while affected by Haste", statOrder = { 6683 }, level = 1, group = "HasteGainPhasing", weightKey = { }, weightVal = { }, modTags = { }, }, + ["HasteUnaffectedByTemporalChains"] = { affix = "", "Unaffected by Temporal Chains while affected by Haste", statOrder = { 10267 }, level = 1, group = "HasteUnaffectedByTemporalChains", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["HasteDebuffsExpireFaster"] = { affix = "", "Debuffs on you expire (15-20)% faster while affected by Haste", statOrder = { 6044 }, level = 1, group = "HasteDebuffsExpireFaster", weightKey = { }, weightVal = { }, modTags = { }, }, + ["HasteCooldownRecoveryForMovementSkills"] = { affix = "", "(30-50)% increased Cooldown Recovery Rate of Movement Skills used while affected by Haste", statOrder = { 9205 }, level = 1, group = "HasteCooldownRecoveryForMovementSkills", weightKey = { }, weightVal = { }, modTags = { }, }, + ["PurityOfFireTakePhysicalAsFire"] = { affix = "", "(6-10)% of Physical Damage from Hits taken as Fire Damage while affected by Purity of Fire", statOrder = { 9448 }, level = 1, group = "PurityOfFireTakePhysicalAsFire", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "fire" }, }, + ["PurityOfFireImmuneToIgnite"] = { affix = "", "Immune to Ignite while affected by Purity of Fire", statOrder = { 7098 }, level = 1, group = "PurityOfFireImmuneToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, + ["PurityOfFireUnaffectedByBurningGround"] = { affix = "", "Unaffected by Burning Ground while affected by Purity of Fire", statOrder = { 10240 }, level = 1, group = "PurityOfFireUnaffectedByBurningGround", weightKey = { }, weightVal = { }, modTags = { }, }, + ["PurityOfFireUnaffectedByFlammability__"] = { affix = "", "Unaffected by Flammability while affected by Purity of Fire", statOrder = { 10253 }, level = 1, group = "PurityOfFireUnaffectedByFlammability", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["PurityOfFireReducedReflectedFireDamage"] = { affix = "", "(40-50)% reduced Reflected Fire Damage taken while affected by Purity of Fire", statOrder = { 6469 }, level = 1, group = "PurityOfFireReducedReflectedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, }, + ["PurityOfFireColdAndLightningTakenAsFire"] = { affix = "", "(10-20)% of Cold and Lightning Damage taken as Fire Damage while affected by Purity of Fire", statOrder = { 5698 }, level = 1, group = "PurityOfFireColdAndLightningTakenAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, }, + ["PurityOfIceTakePhysicalAsIce"] = { affix = "", "(6-10)% of Physical Damage from Hits taken as Cold Damage while affected by Purity of Ice", statOrder = { 9446 }, level = 1, group = "PurityOfIceTakePhysicalAsIce", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "cold" }, }, + ["PurityOfIceImmuneToFreeze"] = { affix = "", "Immune to Freeze while affected by Purity of Ice", statOrder = { 7095 }, level = 1, group = "PurityOfIceImmuneToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["PurityOfIceUnaffectedByChilledGround"] = { affix = "", "Unaffected by Chilled Ground while affected by Purity of Ice", statOrder = { 10245 }, level = 1, group = "PurityOfIceUnaffectedByChilledGround", weightKey = { }, weightVal = { }, modTags = { }, }, + ["PurityOfIceUnaffectedByFrostbite"] = { affix = "", "Unaffected by Frostbite while affected by Purity of Ice", statOrder = { 10255 }, level = 1, group = "PurityOfIceUnaffectedByFrostbite", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["PurityOfIceReducedReflectedColdDamage"] = { affix = "", "(40-50)% reduced Reflected Cold Damage taken while affected by Purity of Ice", statOrder = { 5730 }, level = 1, group = "PurityOfIceReducedReflectedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, }, + ["PurityOfIceFireAndLightningTakenAsCold"] = { affix = "", "(10-20)% of Fire and Lightning Damage taken as Cold Damage while affected by Purity of Ice", statOrder = { 6438 }, level = 1, group = "PurityOfIceFireAndLightningTakenAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, }, + ["PurityOfLightningTakePhysicalAsLightning"] = { affix = "", "(6-10)% of Physical Damage from Hits taken as Lightning Damage while affected by Purity of Lightning", statOrder = { 9450 }, level = 1, group = "PurityOfLightningTakePhysicalAsLightning", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "lightning" }, }, + ["PurityOfLightningImmuneToShock_"] = { affix = "", "Immune to Shock while affected by Purity of Lightning", statOrder = { 7103 }, level = 1, group = "PurityOfLightningImmuneToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["PurityOfLightningUnaffectedByShockedGround"] = { affix = "", "Unaffected by Shocked Ground while affected by Purity of Lightning", statOrder = { 10265 }, level = 1, group = "PurityOfLightningUnaffectedByShockedGround", weightKey = { }, weightVal = { }, modTags = { }, }, + ["PurityOfLightningUnaffectedByConductivity_____"] = { affix = "", "Unaffected by Conductivity while affected by Purity of Lightning", statOrder = { 10246 }, level = 1, group = "PurityOfLightningUnaffectedByConductivity", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["PurityOfLightningReducedReflectedLightningDamage"] = { affix = "", "(40-50)% reduced Reflected Lightning Damage taken while affected by Purity of Lightning", statOrder = { 7321 }, level = 1, group = "PurityOfLightningReducedReflectedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, }, + ["PurityOfLightningFireAndColdTakenAsLightning"] = { affix = "", "(10-20)% of Fire and Cold Damage taken as Lightning Damage while", "affected by Purity of Lightning", statOrder = { 6436, 6436.1 }, level = 1, group = "PurityOfLightningFireAndColdTakenAsLightning", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, }, + ["PurityOfElementsTakePhysicalAsFire_"] = { affix = "", "(8-12)% of Physical Damage from Hits taken as Fire Damage while affected by Purity of Elements", statOrder = { 9447 }, level = 1, group = "PurityOfElementsTakePhysicalAsFire", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "fire" }, }, + ["PurityOfElementsTakePhysicalAsCold"] = { affix = "", "(8-12)% of Physical Damage from Hits taken as Cold Damage while affected by Purity of Elements", statOrder = { 9445 }, level = 1, group = "PurityOfElementsTakePhysicalAsCold", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "cold" }, }, + ["PurityOfElementsTakePhysicalAsLightning"] = { affix = "", "(8-12)% of Physical Damage from Hits taken as Lightning Damage while affected by Purity of Elements", statOrder = { 9449 }, level = 1, group = "PurityOfElementsTakePhysicalAsLightning", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "lightning" }, }, + ["PurityOfElementsUnaffectedByElementalWeakness"] = { affix = "", "Unaffected by Elemental Weakness while affected by Purity of Elements", statOrder = { 10251 }, level = 1, group = "PurityOfElementsUnaffectedByElementalWeakness", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["PurityOfElementsReducedReflectedElementalDamage"] = { affix = "", "(40-50)% reduced Reflected Elemental Damage taken while affected by Purity of Elements", statOrder = { 6229 }, level = 1, group = "PurityOfElementsReducedReflectedElementalDamage", weightKey = { }, weightVal = { }, modTags = { "elemental" }, }, + ["PurityOfElementsChaosResistance"] = { affix = "", "+(30-50)% to Chaos Resistance while affected by Purity of Elements", statOrder = { 5641 }, level = 1, group = "PurityOfElementsChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, + ["PurityOfElementsMaximumElementalResistances"] = { affix = "", "+1% to all maximum Elemental Resistances while affected by Purity of Elements", statOrder = { 4466 }, level = 1, group = "PurityOfElementsMaximumElementalResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["PrecisionIncreasedCriticalStrikeMultiplier"] = { affix = "", "+(20-30)% to Critical Strike Multiplier while affected by Precision", statOrder = { 5866 }, level = 1, group = "PrecisionIncreasedCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, + ["PrecisionIncreasedAttackDamage"] = { affix = "", "(40-60)% increased Attack Damage while affected by Precision", statOrder = { 4759 }, level = 1, group = "PrecisionIncreasedAttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, + ["PrecisionFlaskChargeOnCrit_"] = { affix = "", "Gain a Flask Charge when you deal a Critical Strike while affected by Precision", statOrder = { 9622 }, level = 1, group = "PrecisionFlaskChargeOnCrit", weightKey = { }, weightVal = { }, modTags = { "flask", "critical" }, }, + ["PrecisionIncreasedAttackSpeed"] = { affix = "", "(10-15)% increased Attack Speed while affected by Precision", statOrder = { 4801 }, level = 1, group = "PrecisionIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["PrecisionCannotBeBlinded"] = { affix = "", "Cannot be Blinded while affected by Precision", statOrder = { 5287 }, level = 1, group = "PrecisionCannotBeBlinded", weightKey = { }, weightVal = { }, modTags = { }, }, + ["PrideChanceForDoubleDamage"] = { affix = "", "(8-12)% chance to deal Double Damage while using Pride", statOrder = { 9499 }, level = 1, group = "PrideChanceForDoubleDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["PrideIntimidateOnHit"] = { affix = "", "Your Hits Intimidate Enemies for 4 seconds while you are using Pride", statOrder = { 9501 }, level = 1, group = "PrideIntimidateOnHit", weightKey = { }, weightVal = { }, modTags = { }, }, + ["PrideIncreasedPhysicalDamage_"] = { affix = "", "(40-60)% increased Physical Damage while using Pride", statOrder = { 9505 }, level = 1, group = "PrideIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["PrideChanceToImpale"] = { affix = "", "25% chance to Impale Enemies on Hit with Attacks while using Pride", statOrder = { 9500 }, level = 1, group = "PrideChanceToImpale", weightKey = { }, weightVal = { }, modTags = { "physical" }, }, + ["PrideImpaleAdditionalHits"] = { affix = "", "Impales you inflict last 2 additional Hits while using Pride", statOrder = { 9507 }, level = 1, group = "PrideImpaleAdditionalHits", weightKey = { }, weightVal = { }, modTags = { "physical" }, }, + ["SublimeVisionAnger"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "Always Scorch while affected by Anger", "Aura Skills other than Anger are Disabled", statOrder = { 3477, 4558, 10447 }, level = 1, group = "SublimeVisionAnger", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, + ["SublimeVisionClarity"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "80% increased Effect of Arcane Surge on you while affected by Clarity", "Aura Skills other than Clarity are Disabled", statOrder = { 3477, 4606, 10448 }, level = 1, group = "SublimeVisionClarity", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SublimeVisionDetermination"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "+1 to Maximum Endurance Charges while affected by Determination", "Aura Skills other than Determination are Disabled", statOrder = { 3477, 8947, 10449 }, level = 1, group = "SublimeVisionDetermination", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SublimeVisionDiscipline"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "+1 to Maximum Power Charges while affected by Discipline", "Aura Skills other than Discipline are Disabled", statOrder = { 3477, 8991, 10450 }, level = 1, group = "SublimeVisionDiscipline", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SublimeVisionGrace"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "+1 to Maximum Frenzy Charges while affected by Grace", "Aura Skills other than Grace are Disabled", statOrder = { 3477, 8955, 10451 }, level = 1, group = "SublimeVisionGrace", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SublimeVisionHaste"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "10% increased Action Speed while affected by Haste", "Aura Skills other than Haste are Disabled", statOrder = { 3477, 4428, 10452 }, level = 1, group = "SublimeVisionHaste", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["SublimeVisionHatred"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "Always inflict Brittle while affected by Hatred", "Aura Skills other than Hatred are Disabled", statOrder = { 3477, 4553, 10453 }, level = 1, group = "SublimeVisionHatred", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["SublimeVisionMalevolence"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "You can apply an additional Curse while affected by Malevolence", "Aura Skills other than Malevolence are Disabled", statOrder = { 3477, 9315, 10454 }, level = 1, group = "SublimeVisionMalevolence", weightKey = { }, weightVal = { }, modTags = { "curse" }, }, + ["SublimeVisionPrecision"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "25% more Critical Strike chance while affected by Precision", "Aura Skills other than Precision are Disabled", statOrder = { 3477, 5812, 10455 }, level = 1, group = "SublimeVisionPrecision", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["SublimeVisionPride"] = { affix = "", "(20-40)% increased Effect of Non-Curse Auras from your Skills on Enemies", "Enemies you Kill while using Pride have 25% chance to Explode, dealing a tenth of their maximum Life as Physical Damage", "Aura Skills other than Pride are Disabled", statOrder = { 3475, 6400, 10456 }, level = 1, group = "SublimeVisionPride", weightKey = { }, weightVal = { }, modTags = { "physical" }, }, + ["SublimeVisionPurityOfElements"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "+3% to all maximum Elemental Resistances while affected by Purity of Elements", "Aura Skills other than Purity of Elements are Disabled", statOrder = { 3477, 4466, 10457 }, level = 1, group = "SublimeVisionPurityOfElements", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["SublimeVisionPurityOfIce"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "30% of Fire and Lightning Damage taken as Cold Damage while affected by Purity of Ice", "Aura Skills other than Purity of Ice are Disabled", statOrder = { 3477, 6438, 10459 }, level = 1, group = "SublimeVisionPurityOfIce", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, }, + ["SublimeVisionPurityOfLightning"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "30% of Fire and Cold Damage taken as Lightning Damage while", "affected by Purity of Lightning", "Aura Skills other than Purity of Lightning are Disabled", statOrder = { 3477, 6436, 6436.1, 10460 }, level = 1, group = "SublimeVisionPurityOfLightning", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, }, + ["SublimeVisionPurityOfFire"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "30% of Cold and Lightning Damage taken as Fire Damage while affected by Purity of Fire", "Aura Skills other than Purity of Fire are Disabled", statOrder = { 3477, 5698, 10458 }, level = 1, group = "SublimeVisionPurityOfFire", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, }, + ["SublimeVisionVitality"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "Regenerate 15% Life over one second when hit while affected by Vitality", "Aura Skills other than Vitality are Disabled", statOrder = { 3477, 9676, 10461 }, level = 1, group = "SublimeVisionVitality", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["SublimeVisionWrath"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "Always Sap while affected by Wrath", "Aura Skills other than Wrath are Disabled", statOrder = { 3477, 4557, 10462 }, level = 1, group = "SublimeVisionWrath", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["SublimeVisionZealotry"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "Unaffected by Curses while affected by Zealotry", "Aura Skills other than Zealotry are Disabled", statOrder = { 3477, 10248, 10463 }, level = 1, group = "SublimeVisionZealotry", weightKey = { }, weightVal = { }, modTags = { "curse" }, }, + ["MalevolenceSkillEffectDuration"] = { affix = "", "(20-30)% increased Skill Effect Duration while affected by Malevolence", statOrder = { 9837 }, level = 1, group = "MalevolenceSkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, }, + ["MalevolenceChaosNonAilmentDamageOverTimeMultiplier"] = { affix = "", "+(18-22)% to Damage over Time Multiplier while affected by Malevolence", statOrder = { 6153 }, level = 1, group = "MalevolenceDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["MalevolenceColdDamageOverTimeMultiplier"] = { affix = "", "+(18-22)% to Damage over Time Multiplier while affected by Malevolence", statOrder = { 6153 }, level = 1, group = "MalevolenceDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["MalevolenceLifeAndEnergyShieldRecoveryRate"] = { affix = "", "(8-12)% increased Recovery rate of Life and Energy Shield while affected by Malevolence", statOrder = { 7205 }, level = 1, group = "MalevolenceLifeAndEnergyShieldRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, }, + ["MalevolenceUnaffectedByPoison"] = { affix = "", "Unaffected by Poison while affected by Malevolence", statOrder = { 10259 }, level = 1, group = "MalevolenceUnaffectedByPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, }, + ["MalevolenceUnaffectedByBleeding_"] = { affix = "", "Unaffected by Bleeding while affected by Malevolence", statOrder = { 10236 }, level = 1, group = "MalevolenceUnaffectedByBleeding", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["MalevolenceYourAilmentsDealDamageFaster__"] = { affix = "", "Damaging Ailments you inflict deal Damage (10-15)% faster while affected by Malevolence", statOrder = { 10445 }, level = 1, group = "MalevolenceYourAilmentsDealDamageFaster", weightKey = { }, weightVal = { }, modTags = { "damage", "ailment" }, }, + ["MalevolenceDamageOverTimeMultiplier"] = { affix = "", "+(18-22)% to Damage over Time Multiplier while affected by Malevolence", statOrder = { 6153 }, level = 1, group = "MalevolenceDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["ZealotryCriticalStrikesPenetratesElementalResistances"] = { affix = "", "Critical Strikes Penetrate (8-10)% of Enemy Elemental Resistances while affected by Zealotry", statOrder = { 5880 }, level = 1, group = "ZealotryCriticalStrikesPenetratesElementalResistances", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "critical" }, }, + ["ZealotryCastSpeed"] = { affix = "", "(10-15)% increased Cast Speed while affected by Zealotry", statOrder = { 5363 }, level = 1, group = "ZealotryCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["ZealotryConsecratedGroundEffectLingersForMsAfterLeavingTheArea"] = { affix = "", "Effects of Consecrated Ground you create while affected by Zealotry Linger for 2 seconds", statOrder = { 5750 }, level = 1, group = "ZealotryConsecratedGroundEffectLingersForMsAfterLeavingTheArea", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ZealotryConsecratedGroundEnemyDamageTaken"] = { affix = "", "Consecrated Ground you create while affected by Zealotry causes enemies to take (8-10)% increased Damage", statOrder = { 5747 }, level = 1, group = "ZealotryConsecratedGroundEnemyDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ZealotryGainArcaneSurgeFor4SecondsWhenYouCreateConsecratedGround"] = { affix = "", "Gain Arcane Surge for 4 seconds when you create Consecrated Ground while affected by Zealotry", statOrder = { 6608 }, level = 1, group = "ZealotryGainArcaneSurgeFor4SecondsWhenYouCreateConsecratedGround", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ZealotryMaximumEnergyShieldPerSecondToMaximumEnergyShieldLeechRate"] = { affix = "", "30% increased Maximum total Energy Shield Recovery per second from Leech while affected by Zealotry", statOrder = { 1647 }, level = 1, group = "ZealotryMaximumEnergyShieldPerSecondToMaximumEnergyShieldLeechRateOld", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["ZealotryMaximumEnergyShieldPerSecondToMaximumEnergyShieldLeechRateNew"] = { affix = "", "30% increased Maximum total Energy Shield Recovery per second from Leech while affected by Zealotry", statOrder = { 1646 }, level = 1, group = "ZealotryMaximumEnergyShieldPerSecondToMaximumEnergyShieldLeechRate", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["ZealotryCriticalStrikeChanceAgainstEnemiesOnConsecratedGround"] = { affix = "", "(100-120)% increased Critical Strike Chance against Enemies on Consecrated Ground while affected by Zealotry", statOrder = { 5818 }, level = 1, group = "ZealotryCriticalStrikeChanceAgainstEnemiesOnConsecratedGround", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["SummonArbalistNumberOfArbalistsAllowed"] = { affix = "", "+1 to number of Summoned Arbalists", statOrder = { 9325 }, level = 1, group = "SummonArbalistNumberOfArbalistsAllowed", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SummonArbalistNumberOfAdditionalProjectiles_"] = { affix = "", "Summoned Arbalists fire (2-4) additional Projectiles", statOrder = { 10064 }, level = 1, group = "SummonArbalistNumberOfAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SummonArbalistAttackSpeed_"] = { affix = "", "Summoned Arbalists have (30-40)% increased Attack Speed", statOrder = { 10054 }, level = 1, group = "SummonArbalistAttackSpeed", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SummonArbalistTargetsToPierce"] = { affix = "", "Summoned Arbalists' Projectiles Pierce (2-4) additional Targets", statOrder = { 10073 }, level = 1, group = "SummonArbalistTargetsToPierce", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SummonArbalistProjectilesFork"] = { affix = "", "Summoned Arbalists' Projectiles Fork", statOrder = { 10072 }, level = 1, group = "SummonArbalistProjectilesFork", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SummonArbalistChains_"] = { affix = "", "Summoned Arbalists' Projectiles Chain +2 times", statOrder = { 10055 }, level = 1, group = "SummonArbalistChains", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SummonArbalistNumberOfSplits__"] = { affix = "", "Summoned Arbalists' Projectiles Split into 3", statOrder = { 10065 }, level = 1, group = "SummonArbalistNumberOfSplits", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SummonArbalistChanceToDealDoubleDamage___"] = { affix = "", "Summoned Arbalists have (25-35)% chance to deal Double Damage", statOrder = { 10058 }, level = 1, group = "SummonArbalistChanceToDealDoubleDamage", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SummonArbalistChanceToMaimfor4secondsOnHit_"] = { affix = "", "Summoned Arbalists have (20-30)% chance to Maim for 4 seconds on Hit", statOrder = { 10061 }, level = 1, group = "SummonArbalistChanceToMaimfor4secondsOnHit", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SummonArbalistChanceToIntimidateFor4SecondsOnHit"] = { affix = "", "Summoned Arbalists have (20-30)% chance to Intimidate for 4 seconds on Hit", statOrder = { 10060 }, level = 1, group = "SummonArbalistChanceToIntimidateFor4SecondsOnHit", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SummonArbalistChanceToUnnerveFor4SecondsOnHit_"] = { affix = "", "Summoned Arbalists have (20-30)% chance to Unnerve for 4 seconds on Hit", statOrder = { 10063 }, level = 1, group = "SummonArbalistChanceToUnnerveFor4SecondsOnHit", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SummonArbalistChanceToInflictFireExposureOnHit_"] = { affix = "", "Summoned Arbalists have (10-20)% chance to inflict Fire Exposure on Hit", statOrder = { 10078 }, level = 1, group = "SummonArbalistChanceToInflictFireExposureOnHit", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SummonArbalistChanceToInflictColdExposureonHit"] = { affix = "", "Summoned Arbalists have (10-20)% chance to inflict Cold Exposure on Hit", statOrder = { 10077 }, level = 1, group = "SummonArbalistChanceToInflictColdExposureonHit", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SummonArbalistChanceToInflictLightningExposureOnHit_"] = { affix = "", "Summoned Arbalists have (10-20)% chance to inflict Lightning Exposure on Hit", statOrder = { 10079 }, level = 1, group = "SummonArbalistChanceToInflictLightningExposureOnHit", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SummonArbalistChanceToCrushOnHit"] = { affix = "", "Summoned Arbalists have (10-20)% chance to Crush on Hit", statOrder = { 10057 }, level = 1, group = "SummonArbalistChanceToCrushOnHit", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SummonArbalistPhysicalDamagePercentToConvertToFire"] = { affix = "", "Summoned Arbalists Convert 100% of Physical Damage to Fire Damage", "Summoned Arbalists have (10-20)% chance to Ignite", statOrder = { 10070, 10075 }, level = 1, group = "SummonArbalistPhysicalDamageToConvertToFire", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SummonArbalistPhysicalDamagePercentToConvertToCold_"] = { affix = "", "Summoned Arbalists Convert 100% of Physical Damage to Cold Damage", "Summoned Arbalists have (10-20)% chance to Freeze", statOrder = { 10069, 10074 }, level = 1, group = "SummonArbalistPhysicalDamageToConvertToCold", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SummonArbalistPhysicalDamagePercentToConvertToLightning"] = { affix = "", "Summoned Arbalists Convert 100% of Physical Damage to Lightning Damage", "Summoned Arbalists have (10-20)% chance to Shock", statOrder = { 10071, 10076 }, level = 1, group = "SummonArbalistPhysicalDamageToConvertToLightning", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SummonArbalistPhysicalDamagePercentToAddAsFire"] = { affix = "", "Summoned Arbalists gain (30-40)% of Physical Damage as Extra Fire Damage", "Summoned Arbalists have 20% chance to inflict Fire Exposure on Hit", statOrder = { 10067, 10078 }, level = 1, group = "SummonArbalistPhysicalDamageToAddAsFire", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SummonArbalistPhysicalDamagePercentToAddAsCold_"] = { affix = "", "Summoned Arbalists gain (30-40)% of Physical Damage as Extra Cold Damage", "Summoned Arbalists have 20% chance to inflict Cold Exposure on Hit", statOrder = { 10066, 10077 }, level = 1, group = "SummonArbalistPhysicalDamageToAddAsCold", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SummonArbalistPhysicalDamagePercentToAddAsLightning"] = { affix = "", "Summoned Arbalists gain (30-40)% of Physical Damage as Extra Lightning Damage", "Summoned Arbalists have 20% chance to inflict Lightning Exposure on Hit", statOrder = { 10068, 10079 }, level = 1, group = "SummonArbalistPhysicalDamageToAddAsLightning", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SummonArbalistChanceToBleedPercent_"] = { affix = "", "Summoned Arbalists' Attacks have (40-60)% chance to inflict Bleeding", statOrder = { 10056 }, level = 1, group = "SummonArbalistChanceToBleed", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SummonArbalistChanceToPoisonPercent"] = { affix = "", "Summoned Arbalists have (40-60)% chance to Poison", statOrder = { 10062 }, level = 1, group = "SummonArbalistChanceToPoison", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SummonArbalistChanceToIgniteFreezeShockPercent"] = { affix = "", "Summoned Arbalists have (15-25)% chance to Freeze, Shock, and Ignite", statOrder = { 10059 }, level = 1, group = "SummonArbalistChanceToIgniteFreezeShock", weightKey = { }, weightVal = { }, modTags = { }, }, } \ No newline at end of file diff --git a/src/Export/Bases/ring.txt b/src/Export/Bases/ring.txt index eed55e8bb8..26d72e9aad 100644 --- a/src/Export/Bases/ring.txt +++ b/src/Export/Bases/ring.txt @@ -13,6 +13,7 @@ local itemBases = ... #baseMatch Metadata/Items/Rings/RingE%d+ #baseMatch Metadata/Items/Rings/RingK%d+ #baseMatch Metadata/Items/Rings/RingR%d+ +#baseMatch Metadata/Items/Rings/RingB%d+ #baseMatch Metadata/Items/Rings/MirrorRing #forceShow false diff --git a/src/Export/Bases/wand.txt b/src/Export/Bases/wand.txt index 5d63cf45b7..ec44f606a4 100644 --- a/src/Export/Bases/wand.txt +++ b/src/Export/Bases/wand.txt @@ -4,7 +4,7 @@ local itemBases = ... #type Wand #influenceBaseTag wand #socketLimit 3 -#baseMatch Metadata/Items/Weapons/OneHandWeapons/Wands/Wand[ME]?%d+ +#baseMatch Metadata/Items/Weapons/OneHandWeapons/Wands/Wand[MEK]?%d+ #type Wand #influenceBaseTag wand diff --git a/src/Export/Classes/GGPKData.lua b/src/Export/Classes/GGPKData.lua index 38d113ec40..cee4a7e4df 100644 --- a/src/Export/Classes/GGPKData.lua +++ b/src/Export/Classes/GGPKData.lua @@ -251,9 +251,6 @@ function GGPKClass:GetNeededFiles() "Data/WeaponClasses.dat", "Data/MonsterConditions.dat", "Data/Rarity.dat", - "Data/TradeMarketCategory.dat", - "Data/TradeMarketCategoryGroups.dat", - "Data/TradeMarketCategoryListAllClass.dat", "Data/Commands.dat", "Data/ModEquivalencies.dat", "Data/InfluenceTags.dat", @@ -275,7 +272,6 @@ function GGPKClass:GetNeededFiles() "Data/MiscBeamsArtVariations.dat", "Data/MiscBeams.dat", "Data/MiscEffectPacksArtVariations.dat", - "Data/MiscObjectArtVariations.dat", "Data/ProjectilesArtVariations.dat", "Data/MonsterVarietiesArtVariations.dat", "Data/PreloadGroups.dat", diff --git a/src/Export/Main.lua b/src/Export/Main.lua index d05c7c5378..b99172ac07 100644 --- a/src/Export/Main.lua +++ b/src/Export/Main.lua @@ -195,7 +195,7 @@ function main:Init() end } - self.controls.clearOutput = new("ButtonControl", nil, {1190, 10, 100, 18}, "Clear", function() + self.controls.clearOutput = new("ButtonControl", nil, {1230, 10, 100, 18}, "Clear", function() wipeTable(self.scriptOutput) end) { shown = function() diff --git a/src/Export/Minions/Minions.txt b/src/Export/Minions/Minions.txt index a1ed95bd04..4179a20935 100644 --- a/src/Export/Minions/Minions.txt +++ b/src/Export/Minions/Minions.txt @@ -238,4 +238,8 @@ minions["GuardianRelicAll"] = { #emit #monster Metadata/Monsters/LeagueAncestral/AncestralUtulaMinion_ AncestralUtulaMinion +#emit + +#monster Metadata/Monsters/LivingLightning/LivingLightningSummoned LivingLightningMinion +#limit ActiveLivingLightningLimit #emit \ No newline at end of file diff --git a/src/Export/Scripts/bases.lua b/src/Export/Scripts/bases.lua index 9e67913019..136751d257 100644 --- a/src/Export/Scripts/bases.lua +++ b/src/Export/Scripts/bases.lua @@ -79,7 +79,7 @@ directiveTable.base = function(state, args, out) if state.subType and #state.subType > 0 then out:write('\tsubType = "', state.subType, '",\n') end - if (baseItemType.Hidden == 0 or state.forceHide) and not baseTypeId:match("Talisman") and not state.forceShow then + if state.forceHide and not baseTypeId:match("Talisman") and not state.forceShow then out:write('\thidden = true,\n') end if state.socketLimit then @@ -227,7 +227,7 @@ directiveTable.base = function(state, args, out) end out:write('},\n}\n') - if not ((baseItemType.Hidden == 0 or state.forceHide) and not baseTypeId:match("Talisman") and not state.forceShow) then + if not (state.forceHide and not baseTypeId:match("Talisman") and not state.forceShow) then bases[state.type] = bases[state.type] or {} local subtype = state.subType and #state.subType and state.subType or "" if not bases[state.type][subtype] or itemValueSum > bases[state.type][subtype][2] then diff --git a/src/Export/Scripts/skills.lua b/src/Export/Scripts/skills.lua index e02fdc7fa8..e59c8c180a 100644 --- a/src/Export/Scripts/skills.lua +++ b/src/Export/Scripts/skills.lua @@ -125,6 +125,7 @@ local skillTypes = { "ProjectileCannotReturn", "Offering", "SupportedByBane", + "WandAttack", } -- This is here to fix name collisions like in the case of Barrage diff --git a/src/Export/Scripts/tattooPassives.lua b/src/Export/Scripts/tattooPassives.lua index 4d458222b1..5a13a5c4a3 100644 --- a/src/Export/Scripts/tattooPassives.lua +++ b/src/Export/Scripts/tattooPassives.lua @@ -176,7 +176,7 @@ for i=1, passiveSkillOverridesDat.rowCount do tattooPassiveNode.dn = datFileRow.Name -- legacy tattoo if tattooPassiveNode.dn and tattooPassiveNode.ks == false then - tattooPassiveNode.legacy = baseItemTypes:GetRow("Name", datFileRow.Name) and baseItemTypes:GetRow("Name", datFileRow.Name).Hidden == 2 and true or false + --tattooPassiveNode.legacy = baseItemTypes:GetRow("Name", datFileRow.Name) and baseItemTypes:GetRow("Name", datFileRow.Name).Hidden == 2 and true or false end -- icon diff --git a/src/Export/Skills/SkillGems.txt b/src/Export/Skills/SkillGems.txt index e0802b54cd..9c48217a1e 100644 --- a/src/Export/Skills/SkillGems.txt +++ b/src/Export/Skills/SkillGems.txt @@ -20,6 +20,7 @@ Blood and Sand ---- BloodAndSand Boneshatter ---- Boneshatter Boneshatter of Carnage ---- BoneshatterAltY Boneshatter of Complex Trauma ---- BoneshatterAltX +Call the Pyre ---- GraftSkillXophFlamePillars Chain Hook ---- ChainHook Chain Hook of Trarthus ---- ChainHookAltY Cleave ---- Cleave @@ -54,10 +55,12 @@ Glacial Hammer ---- GlacialHammer Glacial Hammer of Shattering ---- GlacialHammerAltX Ground Slam ---- GroundSlam Ground Slam of Earthshaking ---- GroundSlamAltX +Heart of Flame ---- GraftSkillXophMoltenShell Heavy Strike ---- HeavyStrike Heavy Strike of Trarthus ---- HeavyStrikeAltY Herald of Ash ---- HeraldOfAsh Herald of Purity ---- HeraldOfPurity +His Burning Message ---- GraftSkillXophGeyserExplosion Holy Flame Totem ---- HolyFlameTotem Holy Flame Totem of Ire ---- HolyFlameTotemAltX Ice Crash ---- IceCrash @@ -87,8 +90,10 @@ Rage Vortex of Berserking ---- RageVortexAltX Rallying Cry ---- RallyingCry Reap ---- Reap Rejuvenation Totem ---- RejuvenationTotem +Return to Dust ---- GraftSkillUulNetolHandSlam Searing Bond ---- SearingBond Seismic Cry ---- SeismicCry +Seize the Flesh ---- GraftSkillUulNetolBoneSpires Shield Charge ---- ShieldCharge Shield Crush ---- ShieldCrush Shield Crush of the Chieftain ---- ShieldCrushAltX @@ -110,6 +115,8 @@ Sweep ---- Sweep Swordstorm ---- Swordstorm Tectonic Slam ---- TectonicSlam Tectonic Slam of Cataclysm ---- TectonicSlamAltX +Tender Embrace ---- GraftSkillUulNetolLowlife +The Grey Wind Howls ---- GraftSkillXophAilmentBuff Vaal Absolution ---- VaalAbsolution Vaal Ancestral Warchief ---- VaalAncestralWarchief Vaal Cleave ---- VaalCleave @@ -129,6 +136,7 @@ Vaal Sweep ---- VaalSweep Vaal Volcanic Fissure ---- VaalVolcanicFissure Vengeful Cry ---- VengefulCry Vigilant Strike ---- VigilantStrike +Violent Desire ---- GraftSkillUulNetolImpaleBuff Vitality ---- Vitality Volcanic Fissure ---- VolcanicFissure Volcanic Fissure of Snaking ---- VolcanicFissureAltX @@ -248,11 +256,13 @@ Caustic Arrow ---- CausticArrow Caustic Arrow of Poison ---- CausticArrowAltX Charged Dash ---- ChargedDash Cobra Lash ---- CobraLash +Conflagration ---- Conflagration Cremation ---- Cremation Cremation of Exhuming ---- CremationAltX Cremation of the Volcano ---- CremationAltY Cyclone ---- Cyclone Cyclone of Tumult ---- CycloneAltX +Dance in the White ---- GraftSkillTulTornado GraftSkillTulTornadoProjectile Dash ---- Dash Desecrate ---- Desecrate Detonate Dead ---- DetonateDead @@ -275,6 +285,7 @@ Explosive Concoction of Destruction ---- ExplosiveConcoctionAltX Explosive Trap ---- ExplosiveTrap Explosive Trap of Magnitude ---- ExplosiveTrapAltY Explosive Trap of Shrapnel ---- ExplosiveTrapAltX +Falling Crystals ---- GraftSkillTulIceMortar Fire Trap ---- FireTrap Fire Trap of Blasting ---- FireTrapAltX Flamethrower Trap ---- FlamethrowerTrap @@ -319,6 +330,7 @@ Poacher's Mark ---- PoachersMark Poisonous Concoction ---- PoisonousConcoction Poisonous Concoction of Bouncing ---- PoisonousConcoctionAltX Precision ---- Precision +Preserving Stillness ---- GraftSkillTulAegis Puncture ---- Puncture Puncture of Shanking ---- PunctureAltX Purity of Ice ---- PurityOfIce @@ -363,6 +375,7 @@ Summon Ice Golem of Hordes ---- SummonIceGolemAltX Summon Ice Golem of Shattering ---- SummonIceGolemAltY Temporal Chains ---- TemporalChains Temporal Rift ---- TemporalRift +Thunderstorm ---- Thunderstorm ThunderstormMiniTornados Tornado ---- Tornado Tornado Shot ---- TornadoShot Tornado Shot of Cloudburst ---- TornadoShotAltX @@ -472,6 +485,7 @@ Vicious Projectiles Support ---- SupportViciousProjectiles Vile Toxins Support ---- SupportVileToxins Void Manipulation Support ---- SupportVoidManipulation Volley Support ---- SupportVolley +Windburst Support ---- SupportWindburst TriggeredSupportWindburst Withering Touch Support ---- SupportWitheringTouch --------- Active Intelligence --------- @@ -508,8 +522,6 @@ Contagion ---- Contagion Contagion of Subsiding ---- ContagionAltX Contagion of Transference ---- ContagionAltY Conversion Trap ---- ConversionTrap -Convocation ---- Convocation -Convocation ---- ConvocationOld Crackling Lance ---- CracklingLance Crackling Lance of Branching ---- CracklingLanceAltX Crackling Lance of Disintegration ---- CracklingLanceAltY @@ -529,6 +541,7 @@ Divine Retribution ---- DivineRetribution Elemental Projectiles ---- ElementalProjectiles Elemental Weakness ---- ElementalWeakness Energy Blade ---- EnergyBlade +Enervating Grasp ---- GraftSkillEshLightningHands Enfeeble ---- Enfeeble Envy ---- Envy Essence Drain ---- EssenceDrain @@ -569,6 +582,7 @@ Galvanic Field ---- GalvanicField Galvanic Field of Intensity ---- GalvanicFieldAltX Glacial Cascade ---- GlacialCascade Glacial Cascade of the Fissure ---- GlacialCascadeAltX +Glowing Silhouette ---- GraftSkillEshLightningClones Herald of Thunder ---- HeraldOfThunder Hexblast ---- Hexblast Hexblast of Contradiction ---- HexblastAltX @@ -591,6 +605,9 @@ Kinetic Blast ---- KineticBlast Kinetic Blast of Clustering ---- KineticBlastAltX Kinetic Bolt ---- KineticBolt Kinetic Bolt of Fragmentation ---- KineticBoltAltX +Kinetic Fusillade ---- KineticFusillade +Kinetic Rain ---- KineticRain KineticRainKineticInstability +Kinetic Rain of Impact ---- KineticRainAltX Lightning Conduit ---- LightningConduit Lightning Conduit of the Heavens ---- LightningConduitAltX Lightning Spire Trap ---- LightningSpireTrap @@ -606,6 +623,7 @@ Lightning Warp ---- LightningWarp Malevolence ---- Malevolence Manabond ---- Manabond Orb of Storms ---- OrbOfStorms +Overcharged Sinews ---- GraftSkillEshJoltBuff Penance Brand ---- PenanceBrand Penance Brand of Conduction ---- PenanceBrandAltY Penance Brand of Dissipation ---- PenanceBrandAltX @@ -633,6 +651,7 @@ Shock Nova ---- NewShockNova Shock Nova ---- ShockNova Sigil of Power ---- SigilOfPower Siphoning Trap ---- SiphoningTrap +Somatic Shell ---- SomaticShell Soul Link ---- SoulLink Soulrend ---- Soulrend Soulrend of Reaping ---- SoulrendAltX @@ -671,6 +690,7 @@ Summon Skeletons of Archers ---- SummonSkeletonsAltX Summon Skeletons of Mages ---- SummonSkeletonsAltY Summon Skitterbots ---- SummonSkitterbots Tempest Shield ---- TempestShield +The Great Avalanche ---- GraftSkillTulSummon Vaal Arc ---- VaalArc Vaal Blight ---- VaalBlight Vaal Clarity ---- VaalClarity @@ -694,6 +714,7 @@ Void Sphere of Rending ---- VoidSphereAltX Voltaxic Burst ---- VoltaxicBurst Vortex ---- Vortex Vortex of Projection ---- VortexAltX +Wall of Force ---- WallOfForce Wave of Conviction ---- WaveOfConviction Wave of Conviction of Trarthus ---- WaveOfConvictionAltY Wildfire ---- InfernalSwarm @@ -701,6 +722,7 @@ Winter Orb ---- WinterOrb Wintertide Brand ---- WintertideBrand Wither ---- Wither Wrath ---- Wrath +Wreathed in Light ---- GraftSkillEshLightningRing Zealotry ---- Zealotry --------- Support Intelligence --------- @@ -761,7 +783,9 @@ Infused Channelling Support ---- SupportInfusedChannelling Innervate Support ---- SupportInnervate Intensify Support ---- SupportIntensify Item Rarity Support ---- SupportItemRarity +Kinetic Instability Support ---- SupportKineticInstability TriggeredSupportKineticInstability Lightning Penetration Support ---- SupportLightningPenetration +Living Lightning Support ---- SupportLivingLightning TriggeredSupportLivingLightning Meat Shield Support ---- SupportMeatShield Minefield Support ---- SupportMinefield Minion Damage Support ---- SupportMinionDamage @@ -787,6 +811,8 @@ Unleash Support ---- SupportUnleash --------- Active Other --------- Blinding Aura ---- BlindingAura Capture Monster ---- CaptureMonster +Convocation ---- Convocation +Convocation ---- ConvocationOld Death Aura ---- DeathAura Detonate Mines ---- GemDetonateMines Gluttony of Elements ---- GluttonyOfElements diff --git a/src/Export/Skills/act_dex.txt b/src/Export/Skills/act_dex.txt index 72151cdda5..e7a6b02b4d 100644 --- a/src/Export/Skills/act_dex.txt +++ b/src/Export/Skills/act_dex.txt @@ -726,6 +726,27 @@ local skills, mod, flag, skill = ... }, #mods +#skill Conflagration +#flags attack projectile area duration + parts = { + { + name = "Projectile", + }, + { + name = "Explosion", + }, + }, + statMap = { + ["napalm_arrow_detonation_hit_damage_+%_final"] = { + mod("Damage", "MORE", nil, 0, bit.bor(KeywordFlag.Hit, KeywordFlag.Ailment), { type = "SkillPart", skillPart = 2 } ) + }, + ["base_fire_damage_to_deal_per_minute"] = { + skill("FireDot", nil, { type = "SkillPart", skillPart = 2 }), + div = 60, + }, + }, +#mods + #skill Cremation #flags spell projectile area preDamageFunc = function(activeSkill, output) @@ -3421,6 +3442,51 @@ local skills, mod, flag, skill = ... }, #mods +#skill Thunderstorm +#flags attack projectile area duration + parts = { + { + name = "Projectile", + }, + { + name = "Storm Explosion", + stages = true, + }, + }, + statMap = { + ["windstorm_storm_hit_damage_+%_final_on_detonation"] = { + mod("Damage", "MORE", nil, 0, bit.bor(KeywordFlag.Hit, KeywordFlag.Ailment), { type = "SkillPart", skillPart = 2 } ) + }, + ["windstorm_storm_maximum_stages"] = { + mod("Multiplier:ThunderstormMaxStages", "BASE", nil, 0, 0, { type = "SkillPart", skillPart = 2 }), + }, + ["windstorm_storm_area_of_effect_+%_final_per_stage"] = { + mod("AreaOfEffect", "MORE", nil, 0, 0, { type = "Multiplier", var = "ThunderstormStage" }, { type = "SkillPart", skillPart = 2 }), + }, + ["base_windstorm_storm_stage_gained_per_X_ms"] = { + skill("hitTimeOverride", nil, { type = "Multiplier", var = "ThunderstormStage" }, { type = "SkillPart", skillPart = 2 }), + div = 1000, + }, + ["base_skill_show_average_damage_instead_of_dps"] = { + skill("showAverage", true, { type = "SkillPart", skillPart = 2 }), + }, + }, +#mods + +#skill ThunderstormMiniTornados +#flags attack duration + parts = { + { + name = "Projectile", + projectile = true, + }, + { + name = "Explosion", + area = true, + }, + }, +#mods + #skill Tornado #flags spell duration physical area preDamageFunc = function(activeSkill, output) diff --git a/src/Export/Skills/act_int.txt b/src/Export/Skills/act_int.txt index eb6ced5569..755a6b503b 100644 --- a/src/Export/Skills/act_int.txt +++ b/src/Export/Skills/act_int.txt @@ -714,18 +714,6 @@ local skills, mod, flag, skill = ... #flags spell duration trap #mods -#skill Convocation -#flags spell duration - statMap = { - ["base_life_regeneration_rate_per_minute"] = { - mod("LifeRegen", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff" }), - div = 60, - }, - }, -#baseMod skill("buffMinions", true) -#baseMod skill("buffNotPlayer", true) -#mods - #skill CracklingLance #flags spell area statMap = { @@ -2275,6 +2263,22 @@ local skills, mod, flag, skill = ... #flags attack projectile #mods +#skill KineticFusillade +#flags attack projectile area duration +#mods + +#skill KineticRain +#flags attack projectile area +#mods + +#skill KineticRainKineticInstability +#flags attack area duration +#mods + +#skill KineticRainAltX +#flags attack projectile area +#mods + #skill LightningSpireTrap #flags spell trap duration area preDamageFunc = function(activeSkill, output, breakdown) @@ -3118,17 +3122,9 @@ local skills, mod, flag, skill = ... #skill PyroclastMine #flags spell area projectile mine statMap = { - ["mortar_barrage_mine_minimum_added_fire_damage_taken"] = { - mod("SelfFireMin", "BASE", nil, 0, 0, { type = "Limit", limitVar = "PyroclastSelfFireMinLimit" }, { type = "GlobalEffect", effectType = "AuraDebuff", effectStackVar = "ActiveMineCount" }), - }, - ["mortar_barrage_mine_maximum_added_fire_damage_taken"] = { - mod("SelfFireMax", "BASE", nil, 0, 0, { type = "Limit", limitVar = "PyroclastSelfFireMaxLimit" }, { type = "GlobalEffect", effectType = "AuraDebuff", effectStackVar = "ActiveMineCount" }), - }, - ["mortar_barrage_mine_minimum_added_fire_damage_taken_limit"] = { - mod("Multiplier:PyroclastSelfFireMinLimit", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "AuraDebuff", unscalable = true, effectName = "Pyroclast Mine Limit" }), - }, - ["mortar_barrage_mine_maximum_added_fire_damage_taken_limit"] = { - mod("Multiplier:PyroclastSelfFireMaxLimit", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "AuraDebuff", unscalable = true, effectName = "Pyroclast Mine Limit" }), + ["pyroclast_mine_aura_fire_exposure_%_to_apply"] = { + mod("FireExposure", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "AuraDebuff", unscalable = true, effectName = "Pyroclast Mine Fire Exposure" }), + mult = -1, }, }, #baseMod skill("radius", 20) @@ -3142,17 +3138,9 @@ local skills, mod, flag, skill = ... #skill PyroclastMineAltX #flags spell area projectile mine statMap = { - ["mortar_barrage_mine_minimum_added_fire_damage_taken"] = { - mod("SelfFireMin", "BASE", nil, 0, 0, { type = "Limit", limitVar = "PyroclastSelfFireMinLimit" }, { type = "GlobalEffect", effectType = "AuraDebuff", effectStackVar = "ActiveMineCount" }), - }, - ["mortar_barrage_mine_maximum_added_fire_damage_taken"] = { - mod("SelfFireMax", "BASE", nil, 0, 0, { type = "Limit", limitVar = "PyroclastSelfFireMaxLimit" }, { type = "GlobalEffect", effectType = "AuraDebuff", effectStackVar = "ActiveMineCount" }), - }, - ["mortar_barrage_mine_minimum_added_fire_damage_taken_limit"] = { - mod("Multiplier:PyroclastSelfFireMinLimit", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "AuraDebuff", unscalable = true, effectName = "Pyroclast Mine Limit" }), - }, - ["mortar_barrage_mine_maximum_added_fire_damage_taken_limit"] = { - mod("Multiplier:PyroclastSelfFireMaxLimit", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "AuraDebuff", unscalable = true, effectName = "Pyroclast Mine Limit" }), + ["pyroclast_mine_aura_fire_exposure_%_to_apply"] = { + mod("FireExposure", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "AuraDebuff", unscalable = true, effectName = "Pyroclast Mine Fire Exposure" }), + mult = -1, }, }, #baseMod skill("radius", 20) @@ -3168,9 +3156,6 @@ local skills, mod, flag, skill = ... minionList = { }, statMap = { - ["accuracy_rating"] = { - mod("MinionModifier", "LIST", { mod = mod("Accuracy", "BASE", nil) }) - }, ["raised_spectre_level"] = { skill("minionLevel", nil), }, @@ -3182,9 +3167,6 @@ local skills, mod, flag, skill = ... minionList = { }, statMap = { - ["accuracy_rating"] = { - mod("MinionModifier", "LIST", { mod = mod("Accuracy", "BASE", nil) }) - }, ["raised_spectre_level"] = { skill("minionLevel", nil), }, @@ -3450,6 +3432,20 @@ local skills, mod, flag, skill = ... }, #mods +#skill SomaticShell +#flags attack + parts = { + { + name = "Projectile", + projectile = true, + }, + { + name = "Explosion", + area = true, + }, + }, +#mods + #skill Soulrend #flags spell projectile duration #baseMod skill("debuff", true) @@ -4134,6 +4130,10 @@ local skills, mod, flag, skill = ... #baseMod skill("radiusSecondaryLabel", "Ground Degen:") #mods +#skill WallOfForce +#flags spell duration +#mods + #skill WaveOfConviction #flags spell area duration preDamageFunc = function(activeSkill, output) diff --git a/src/Export/Skills/minion.txt b/src/Export/Skills/minion.txt index b46ff24dff..415e039b32 100644 --- a/src/Export/Skills/minion.txt +++ b/src/Export/Skills/minion.txt @@ -427,4 +427,8 @@ skills["GuardianSentinelFireAura"] = { #skill ElderTentacleMinionProjectileDeepcaller Projectile Spell #flags spell projectile +#mods + +#skill SummonedLivingLightningZap +#flags attack melee #mods \ No newline at end of file diff --git a/src/Export/Skills/other.txt b/src/Export/Skills/other.txt index a9ac88eea3..56cf9ff65d 100644 --- a/src/Export/Skills/other.txt +++ b/src/Export/Skills/other.txt @@ -253,6 +253,18 @@ local skills, mod, flag, skill = ... fromItem = true, #mods +#skill Convocation +#flags spell duration + statMap = { + ["base_life_regeneration_rate_per_minute"] = { + mod("LifeRegen", "BASE", nil, 0, 0, { type = "GlobalEffect", effectType = "Buff" }), + div = 60, + }, + }, +#baseMod skill("buffMinions", true) +#baseMod skill("buffNotPlayer", true) +#mods + #skill CorpseWalk #flags area fromItem = true, diff --git a/src/Export/Skills/sup_dex.txt b/src/Export/Skills/sup_dex.txt index 334b89673a..66a984c783 100644 --- a/src/Export/Skills/sup_dex.txt +++ b/src/Export/Skills/sup_dex.txt @@ -314,6 +314,22 @@ local skills, mod, flag, skill = ... #skill SupportManaLeech #mods +#skill SupportManaforgedArrows + statMap = { + ["support_manaforged_arrows_damage_+%_final"] = { + mod("Damage", "MORE", nil, 0, 0), + }, + ["support_manaforged_arrows_damage_+%_final_per_mana_spent"] = { + mod("Damage", "MORE", nil, 0, 0, { type = "PerStat", stat = "ManaCost" }), + }, + ["support_manaforged_arrows_mana_cost_%_threshold"] = { + skill("triggeredByManaforged", true, { type = "SkillType", skillType = SkillType.Triggerable }), + skill("ManaForgedArrowsPercentThreshold", nil), + div = 100, + }, + }, +#mods + #skill SupportMarkOnHit #mods @@ -335,6 +351,24 @@ local skills, mod, flag, skill = ... }, #mods +#skill SupportMomentum + statMap = { + ["support_momentum_max_stacks"] = { + mod("MomentumStacksMax", "BASE", nil, 0, 0), + }, + ["count_as_momentum_+_if_not_channelled"] = { + mod("MomentumStacksExtra", "BASE", nil, 0, 0), + }, + ["support_momentum_attack_speed_+%_per_stack"] = { + mod("Speed", "INC", nil, ModFlag.Attack, 0, { type = "Multiplier", var = "MomentumStacks" }), + }, + ["support_momentum_movement_speed_+%_per_stack_removed"] = { + mod("MovementSpeed", "INC", nil, 0, 0, { type = "Multiplier", var = "MomentumStacksRemoved" }, { type = "GlobalEffect", effectType = "Buff" }), + }, + }, +#baseMod flag("SupportedByMomentum") +#mods + #skill SupportMultipleTraps statMap = { ["support_multithrow_damage_+%_final"] = { @@ -532,39 +566,23 @@ local skills, mod, flag, skill = ... }, #mods -#skill SupportWitheringTouch +#skill SupportWindburst #mods -#skill SupportManaforgedArrows - statMap = { - ["support_manaforged_arrows_damage_+%_final"] = { - mod("Damage", "MORE", nil, 0, 0), - }, - ["support_manaforged_arrows_damage_+%_final_per_mana_spent"] = { - mod("Damage", "MORE", nil, 0, 0, { type = "PerStat", stat = "ManaCost" }), +#skill TriggeredSupportWindburst +#flags attack projectile duration + parts = { + { + name = "Projectile", + projectile = true, }, - ["support_manaforged_arrows_mana_cost_%_threshold"] = { - skill("triggeredByManaforged", true, { type = "SkillType", skillType = SkillType.Triggerable }), - skill("ManaForgedArrowsPercentThreshold", nil), - div = 100, + { + name = "Explosion", + area = true, }, }, +#baseMod skill("showAverage", true) #mods -#skill SupportMomentum - statMap = { - ["support_momentum_max_stacks"] = { - mod("MomentumStacksMax", "BASE", nil, 0, 0), - }, - ["count_as_momentum_+_if_not_channelled"] = { - mod("MomentumStacksExtra", "BASE", nil, 0, 0), - }, - ["support_momentum_attack_speed_+%_per_stack"] = { - mod("Speed", "INC", nil, ModFlag.Attack, 0, { type = "Multiplier", var = "MomentumStacks" }), - }, - ["support_momentum_movement_speed_+%_per_stack_removed"] = { - mod("MovementSpeed", "INC", nil, 0, 0, { type = "Multiplier", var = "MomentumStacksRemoved" }, { type = "GlobalEffect", effectType = "Buff" }), - }, - }, -#baseMod flag("SupportedByMomentum") +#skill SupportWitheringTouch #mods \ No newline at end of file diff --git a/src/Export/Skills/sup_int.txt b/src/Export/Skills/sup_int.txt index 14090d3b5d..1c80eca6fe 100644 --- a/src/Export/Skills/sup_int.txt +++ b/src/Export/Skills/sup_int.txt @@ -174,6 +174,8 @@ local skills, mod, flag, skill = ... }, ["support_hextouch_curse_effect_+%_final"] = { }, + ["hextouch_support_curse_duration_+%_final"] = { + }, }, #mods @@ -186,6 +188,9 @@ local skills, mod, flag, skill = ... ["support_hextouch_curse_effect_+%_final"] = { mod("CurseEffect", "MORE", nil), }, + ["hextouch_support_curse_duration_+%_final"] = { + mod("Duration", "MORE", nil, 0, KeywordFlag.Curse), + }, }, #mods @@ -196,6 +201,8 @@ local skills, mod, flag, skill = ... }, ["support_hextouch_curse_effect_+%_final"] = { }, + ["hextouch_support_curse_duration_+%_final"] = { + }, }, #mods @@ -208,6 +215,9 @@ local skills, mod, flag, skill = ... ["support_hextouch_curse_effect_+%_final"] = { mod("CurseEffect", "MORE", nil), }, + ["hextouch_support_curse_duration_+%_final"] = { + mod("Duration", "MORE", nil, 0, KeywordFlag.Curse), + }, }, #mods @@ -274,9 +284,6 @@ local skills, mod, flag, skill = ... ["support_energy_shield_leech_damage_+%_on_full_energy_shield_final"] = { mod("Damage", "MORE", nil, 0, 0, { type = "Condition", var = "FullEnergyShield" }), }, - ["support_energy_shield_leech_damage_+%_while_leeching_energy_shield_final"] = { - mod("Damage", "MORE", nil, 0, 0, { type = "Condition", var = "LeechingEnergyShield" }), - }, }, #mods @@ -441,9 +448,32 @@ local skills, mod, flag, skill = ... #skill SupportItemRarity #mods +#skill SupportKineticInstability +#mods + +#skill TriggeredSupportKineticInstability +#flags attack area duration +#baseMod skill("showAverage", true) +#mods + #skill SupportLightningPenetration #mods +#skill SupportLivingLightning +#mods + +#skill TriggeredSupportLivingLightning +#flags spell minion + addMinionList = { + "LivingLightningMinion" + }, + statMap = { + ["number_of_chains"] = { + mod("MinionModifier", "LIST", { mod = mod("ChainCountMax", "BASE", nil) }), + }, + }, +#mods + #skill SupportAwakenedLightningPenetration #mods diff --git a/src/Export/spec.lua b/src/Export/spec.lua index c7aa23aca3..f529a4ec5a 100644 --- a/src/Export/spec.lua +++ b/src/Export/spec.lua @@ -1790,146 +1790,132 @@ return { width=80 }, [14]={ - list=false, - name="Hidden", - refTo="", - type="Int", - width=50 - }, - [15]={ list=false, name="ItemVisualIdentityKey", refTo="ItemVisualIdentity", type="Key", width=150 }, - [16]={ + [15]={ list=false, name="HASH32", refTo="", type="UInt", width=100 }, - [17]={ + [16]={ list=true, name="VendorRecipeAchievement", refTo="AchievementItems", type="Key", width=180 }, - [18]={ + [17]={ list=false, name="Inflection", refTo="", type="String", width=80 }, - [19]={ + [18]={ list=false, name="EquipAchievement", refTo="AchievementItems", type="Key", width=150 }, - [20]={ + [19]={ list=false, name="IsCorrupted", refTo="", type="Bool", width=90 }, - [21]={ + [20]={ list=true, name="IdentifyAchievement", refTo="AchievementItems", type="Key", width=150 }, - [22]={ + [21]={ list=true, name="IdentifyMagicAchievement", refTo="AchievementItems", type="Key", width=150 }, - [23]={ + [22]={ list=false, name="FragmentBaseItemTypesKey", refTo="BaseItemTypes", type="ShortKey", width=150 }, - [24]={ + [23]={ list=false, name="", refTo="", type="Bool", width=50 }, - [25]={ + [24]={ list=false, name="", refTo="", type="Key", width=100 }, - [26]={ + [25]={ list=false, name="", refTo="", type="Key", width=100 }, - [27]={ + [26]={ list=false, name="", refTo="", type="Bool", width=150 }, - [28]={ - list=false, - name="TradeMarketCategory", - refTo="TradeMarketCategory", - type="Key", - width=150 - }, - [29]={ + [27]={ list=false, name="", refTo="", type="Bool", width=50 }, - [30]={ + [28]={ list=true, name="Achievement", refTo="AchievementItems", type="Key", width=280 }, - [31]={ + [29]={ list=true, name="Achievement2", refTo="AchievementItems", type="Key", width=150 }, - [32]={ + [30]={ list=false, name="IgnoreQuantBonus", refTo="", type="Bool", width=150 }, - [33]={ + [31]={ list=false, name="", refTo="", type="Bool", - width=50 + width=150 }, - [34]={ + [32]={ list=false, name="", refTo="", @@ -3456,6 +3442,13 @@ return { refTo="", type="Float", width=50 + }, + [63]={ + list=false, + name="", + refTo="", + type="Key", + width=150 } }, characterstartitems={ @@ -4041,6 +4034,13 @@ return { refTo="Tags", type="Key", width=150 + }, + [37]={ + list=true, + name="", + refTo="", + type="Int", + width=60 } }, craftingbenchsortcategories={ @@ -4338,6 +4338,13 @@ return { refTo="", type="Int", width=110 + }, + [17]={ + list=false, + name="", + refTo="", + type="Int", + width=100 } }, deliriumstashtablayout={ @@ -7722,6 +7729,13 @@ return { refTo="", type="Int", width=100 + }, + [12]={ + list=true, + name="", + refTo="", + type="Key", + width=150 } }, mercenarywieldabletypes={ @@ -7925,6 +7939,13 @@ return { refTo="", type="Bool", width=50 + }, + [14]={ + list=false, + name="", + refTo="", + type="Bool", + width=50 } }, miniqueststates={ @@ -8713,13 +8734,20 @@ return { width=400 }, [2]={ + list=true, + name="Stat", + refTo="Stats", + type="Key", + width=610 + }, + [3]={ list=true, name="ModSellPriceTypesKeys", refTo="ModSellPriceTypes", type="Key", width=190 }, - [3]={ + [4]={ list=false, name="", refTo="", @@ -9149,76 +9177,69 @@ return { width=300 }, [2]={ - list=false, - name="OTFile", - refTo="", - type="String", - width=150 - }, - [3]={ list=false, name="Accuracy", refTo="", type="Int", width=70 }, - [4]={ + [3]={ list=false, name="IsPlayerMinion", refTo="", type="Bool", width=80 }, - [5]={ + [4]={ list=false, name="Armour", refTo="", type="Int", width=60 }, - [6]={ + [5]={ list=false, name="Evasion", refTo="", type="Int", width=60 }, - [7]={ + [6]={ list=false, name="EnergyShield", refTo="", type="Int", width=70 }, - [8]={ + [7]={ list=false, name="DamageSpread", refTo="", type="Int", width=100 }, - [9]={ + [8]={ list=false, name="Resistances", refTo="MonsterResistances", type="Key", width=150 }, - [10]={ + [9]={ list=false, name="AltLife1", refTo="", type="Bool", width=50 }, - [11]={ + [10]={ list=false, name="AltLife2", refTo="", type="Bool", width=50 }, - [12]={ + [11]={ list=false, name="BaseDamageIgnoresAttackSpeed", refTo="", @@ -10173,6 +10194,13 @@ return { refTo="", type="Bool", width=50 + }, + [18]={ + list=false, + name="", + refTo="", + type="Int", + width=100 } }, npcshop={ @@ -10426,6 +10454,13 @@ return { refTo="", type="Int", width=100 + }, + [5]={ + list=false, + name="", + refTo="", + type="Key", + width=150 } }, passivejewelslots={ @@ -11098,6 +11133,34 @@ return { refTo="GrantedEffectsPerLevel", type="Key", width=150 + }, + [47]={ + list=false, + name="", + refTo="", + type="Key", + width=150 + }, + [48]={ + list=false, + name="", + refTo="", + type="Bool", + width=50 + }, + [49]={ + list=false, + name="", + refTo="", + type="Bool", + width=50 + }, + [50]={ + list=false, + name="", + refTo="", + type="Bool", + width=50 } }, passiveskillstatcategories={ @@ -12442,97 +12505,90 @@ return { width=70 }, [6]={ - list=false, - name="Name", - refTo="", - type="String", - width=300 - }, - [7]={ list=false, name="", refTo="", type="Bool", width=80 }, - [8]={ + [7]={ list=false, name="Virtual", refTo="", type="Bool", width=50 }, - [9]={ + [8]={ list=false, name="Main Hand Stat", refTo="Stats", type="ShortKey", width=350 }, - [10]={ + [9]={ list=false, name="Off Hand Stat", refTo="Stats", type="ShortKey", width=350 }, - [11]={ + [10]={ list=false, name="", refTo="", type="Bool", width=50 }, - [12]={ + [11]={ list=false, name="Hash", refTo="", type="UInt", width=80 }, - [13]={ + [12]={ list=true, name="Skills", refTo="", type="String", width=150 }, - [14]={ + [13]={ list=false, name="PassiveCategory", refTo="PassiveSkillStatCategories", type="Key", width=110 }, - [15]={ + [14]={ list=false, name="CannotGrantToMinion", refTo="", type="Bool", width=150 }, - [16]={ + [15]={ list=false, name="", refTo="", type="Bool", width=50 }, - [17]={ + [16]={ list=false, name="IsScalable", refTo="", type="Bool", width=70 }, - [18]={ + [17]={ list=true, name="ContextFlags", refTo="VirtualStatContextFlags", type="Key", width=270 }, - [19]={ + [18]={ list=true, name="DotFlag", refTo="VirtualStatContextFlags", @@ -13088,91 +13144,6 @@ return { }, tormentspirits={ }, - trademarketcategory={ - [1]={ - list=false, - name="Id", - refTo="", - type="String", - width=200 - }, - [2]={ - list=false, - name="Name", - refTo="", - type="String", - width=300 - }, - [3]={ - list=false, - name="StyleFlag", - refTo="", - type="Enum", - width=150 - }, - [4]={ - list=false, - name="Group", - refTo="TradeMarketCategoryGroups", - type="Key", - width=200 - }, - [5]={ - list=true, - name="", - refTo="", - type="Int", - width=150 - }, - [6]={ - list=false, - name="", - refTo="", - type="Bool", - width=150 - }, - [7]={ - list=false, - name="IsDisabled", - refTo="", - type="Bool", - width=150 - } - }, - trademarketcategorygroups={ - [1]={ - list=false, - name="Id", - refTo="", - type="String", - width=200 - }, - [2]={ - list=false, - name="Name", - refTo="", - type="String", - width=200 - } - }, - trademarketcategorylistallclass={ - [1]={ - list=false, - name="TradeCategory", - refTo="TradeMarketCategory", - type="Key", - width=200 - }, - [2]={ - list=false, - name="ItemClass", - refTo="ItemClasses", - type="Key", - width=200 - } - }, - trademarketcategorystyleflag={ - }, trademarketimplicitmoddisplay={ [1]={ list=false, diff --git a/src/Modules/Data.lua b/src/Modules/Data.lua index 4e220129e6..0d8dce8eb1 100644 --- a/src/Modules/Data.lua +++ b/src/Modules/Data.lua @@ -525,6 +525,8 @@ data.jewelRadii = { { inner = 0, outer = 960, col = "^xBB6600", label = "Small" }, { inner = 0, outer = 1440, col = "^x66FFCC", label = "Medium" }, { inner = 0, outer = 1800, col = "^x2222CC", label = "Large" }, + { inner = 0, outer = 2400, col = "^xC100FF", label = "Very Large" }, + { inner = 0, outer = 2880, col = "^x0B9300", label = "Massive" }, { inner = 960, outer = 1320, col = "^xD35400", label = "Variable" }, { inner = 1320, outer = 1680, col = "^x66FFCC", label = "Variable" }, diff --git a/src/Modules/ModParser.lua b/src/Modules/ModParser.lua index c80a2baa46..a07349930e 100644 --- a/src/Modules/ModParser.lua +++ b/src/Modules/ModParser.lua @@ -4177,6 +4177,7 @@ local specialModList = { ["spells [hf][ai][vr]e an additional projectile"] = { mod("ProjectileCount", "BASE", 1, nil, ModFlag.Spell) }, ["spells [hf][ai][vr]e (%d+) additional projectiles"] = function(num) return { mod("ProjectileCount", "BASE", num, nil, ModFlag.Spell) } end, ["attacks fire an additional projectile"] = { mod("ProjectileCount", "BASE", 1, nil, ModFlag.Attack) }, + ["fire at most 1 projectile"] = flag("NoAdditionalProjectiles"), ["attacks have an additional projectile when in off hand"] = { mod("ProjectileCount", "BASE", 1, nil, ModFlag.Attack, { type = "SlotNumber", num = 2 }) }, ["caustic arrow and scourge arrow fire (%d+)%% more projectiles"] = function(num) return { mod("ProjectileCount", "MORE", num, nil, { type = "SkillName", skillNameList = { "Caustic Arrow", "Scourge Arrow" }, includeTransfigured = true }) } end, ["essence drain and soulrend fire (%d+) additional projectiles"] = function(num) return { mod("ProjectileCount", "BASE", num, nil, { type = "SkillName", skillNameList = { "Essence Drain", "Soulrend" }, includeTransfigured = true }) } end, @@ -4756,16 +4757,16 @@ local specialModList = { mod("ImpossibleEscapeKeystones", "LIST", { key = name, value = true }), } end, ["passives in radius can be allocated without being connected to your tree"] = { mod("JewelData", "LIST", { key = "intuitiveLeapLike", value = true }) }, - ["affects passives in small ring"] = { mod("JewelData", "LIST", { key = "radiusIndex", value = 4 }) }, - ["affects passives in medium ring"] = { mod("JewelData", "LIST", { key = "radiusIndex", value = 5 }) }, - ["affects passives in large ring"] = { mod("JewelData", "LIST", { key = "radiusIndex", value = 6 }) }, - ["affects passives in very large ring"] = { mod("JewelData", "LIST", { key = "radiusIndex", value = 7 }) }, - ["affects passives in massive ring"] = { mod("JewelData", "LIST", { key = "radiusIndex", value = 8 }) }, - ["only affects passives in small ring"] = { mod("JewelData", "LIST", { key = "radiusIndex", value = 4 }) }, - ["only affects passives in medium ring"] = { mod("JewelData", "LIST", { key = "radiusIndex", value = 5 }) }, - ["only affects passives in large ring"] = { mod("JewelData", "LIST", { key = "radiusIndex", value = 6 }) }, - ["only affects passives in very large ring"] = { mod("JewelData", "LIST", { key = "radiusIndex", value = 7 }) }, - ["only affects passives in massive ring"] = { mod("JewelData", "LIST", { key = "radiusIndex", value = 8 }) }, + ["affects passives in small ring"] = { mod("JewelData", "LIST", { key = "radiusIndex", value = 6 }) }, + ["affects passives in medium ring"] = { mod("JewelData", "LIST", { key = "radiusIndex", value = 7 }) }, + ["affects passives in large ring"] = { mod("JewelData", "LIST", { key = "radiusIndex", value = 8 }) }, + ["affects passives in very large ring"] = { mod("JewelData", "LIST", { key = "radiusIndex", value = 9 }) }, + ["affects passives in massive ring"] = { mod("JewelData", "LIST", { key = "radiusIndex", value = 10 }) }, + ["only affects passives in small ring"] = { mod("JewelData", "LIST", { key = "radiusIndex", value = 6 }) }, + ["only affects passives in medium ring"] = { mod("JewelData", "LIST", { key = "radiusIndex", value = 7 }) }, + ["only affects passives in large ring"] = { mod("JewelData", "LIST", { key = "radiusIndex", value = 8 }) }, + ["only affects passives in very large ring"] = { mod("JewelData", "LIST", { key = "radiusIndex", value = 9 }) }, + ["only affects passives in massive ring"] = { mod("JewelData", "LIST", { key = "radiusIndex", value = 10 }) }, ["primordial"] = { mod("Multiplier:PrimordialItem", "BASE", 1) }, ["spectres have a base duration of (%d+) seconds"] = { mod("SkillData", "LIST", { key = "duration", value = 6 }, { type = "SkillName", skillName = "Raise Spectre", includeTransfigured = true }) }, ["flasks applied to you have (%d+)%% increased effect"] = function(num) return { mod("FlaskEffect", "INC", num, { type = "ActorCondition", actor = "player"}) } end, @@ -4860,6 +4861,9 @@ local specialModList = { ["spells have an additional life cost equal to (%d+)%% of your maximum life"] = function(num) return { mod("LifeCostBase", "BASE", 1, { type = "PercentStat", stat = "Life", percent = num, floor = true }, { type = "SkillType", skillType = SkillType.Spell }) } end, + ["spells cost %+(%d+)%% of life"] = function(num) return { + mod("LifeCostBase", "BASE", 1, { type = "PercentStat", stat = "Life", percent = num, floor = true }, { type = "SkillType", skillType = SkillType.Spell }) + } end, ["trigger a socketed elemental spell on block, with a ([%d%.]+) second cooldown"] = { mod("ExtraSupport", "LIST", { skillId = "SupportTriggerElementalSpellOnBlock", level = 1 }, { type = "SocketedIn", slotName = "{SlotName}" }) }, ["(%d+)%% chance to cast a? ?socketed lightning spells? on hit"] = { mod("ExtraSupport", "LIST", { skillId = "SupportUniqueMjolnerLightningSpellsCastOnHit", level = 1 }, { type = "SocketedIn", slotName = "{SlotName}" }) }, ["cast a socketed lightning spell on hit"] = { mod("ExtraSupport", "LIST", { skillId = "SupportUniqueMjolnerLightningSpellsCastOnHit", level = 1 }, { type = "SocketedIn", slotName = "{SlotName}" }) }, @@ -5366,6 +5370,8 @@ local specialModList = { ["has a crucible passive skill tree with only support passive skills"] = { }, ["crucible passive skill tree is removed if this modifier is removed"] = { }, ["all sockets are white"] = { }, + ["cannot roll (%a+) modifiers"] = { }, + ["cannot roll modifiers of non%-(%a+) damage types"] = { }, ["every (%d+) seconds, regenerate (%d+)%% of life over one second"] = function (num, _, percent) return { mod("LifeRegenPercent", "BASE", tonumber(percent), { type = "Condition", var = "LifeRegenBurstFull" }), mod("LifeRegenPercent", "BASE", tonumber(percent) / num, { type = "Condition", var = "LifeRegenBurstAvg" }),